id
int64
0
877k
file_name
stringlengths
3
109
file_path
stringlengths
13
185
content
stringlengths
31
9.38M
size
int64
31
9.38M
language
stringclasses
1 value
extension
stringclasses
11 values
total_lines
int64
1
340k
avg_line_length
float64
2.18
149k
max_line_length
int64
7
2.22M
alphanum_fraction
float64
0
1
repo_name
stringlengths
6
66
repo_stars
int64
94
47.3k
repo_forks
int64
0
12k
repo_open_issues
int64
0
3.4k
repo_license
stringclasses
11 values
repo_extraction_date
stringclasses
197 values
exact_duplicates_redpajama
bool
2 classes
near_duplicates_redpajama
bool
2 classes
exact_duplicates_githubcode
bool
2 classes
exact_duplicates_stackv2
bool
1 class
exact_duplicates_stackv1
bool
2 classes
near_duplicates_githubcode
bool
2 classes
near_duplicates_stackv1
bool
2 classes
near_duplicates_stackv2
bool
1 class
1,537,600
rect_table.hpp
FiYHer_csgo_cheats/csgo_cheats/rect_table.hpp
#pragma once #include "recv_prop.hpp" //接收数据表结构 typedef struct recv_table_struct { recv_prop_struct* props; int propCount; void* decoder; char* netTableName; bool isInitialized; bool isInMainList; }recv_table_struct;
230
C++
.h
12
17.083333
32
0.800948
FiYHer/csgo_cheats
35
18
4
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,601
head.hpp
FiYHer_csgo_cheats/csgo_cheats/head.hpp
#pragma once #include "node.hpp" //武器皮肤数据存放辅助头结构 template <typename Key, typename Value> struct head_struct { node_struct<Key, Value>* memory;//内容 int allocationCount;//申请了的大小 int growSize;//增长大小 int startElement;//开始元素 int nextAvailable;//下一个 int _unknown;//未知 int lastElement;//上一个元素 };
336
C++
.h
14
19.642857
39
0.776596
FiYHer/csgo_cheats
35
18
4
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,602
paint_kit.hpp
FiYHer_csgo_cheats/csgo_cheats/paint_kit.hpp
#pragma once #include "self_string.hpp" //ÎäÆ÷Ƥ·ô typedef struct paint_kit_struct { int id;//Ƥ·ôid self_string_struct name;//Ƥ·ôÃû³Æ self_string_struct description;//ÃèÊö self_string_struct itemName;// }paint_kit_struct;
228
C++
.h
10
21.4
38
0.761468
FiYHer/csgo_cheats
35
18
4
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,603
user_cmd.hpp
FiYHer_csgo_cheats/csgo_cheats/user_cmd.hpp
#pragma once #include "self_vector.hpp" //玩家命令结构 typedef struct user_cmd_struct { enum { IN_ATTACK = 1 << 0,//左键 IN_JUMP = 1 << 1,//跳跃 IN_DUCK = 1 << 2,//下蹲 IN_FORWARD = 1 << 3,//前进 IN_BACK = 1 << 4,//后退 IN_USE = 1 << 5, IN_MOVELEFT = 1 << 9,//左移动 IN_MOVERIGHT = 1 << 10,//右移动 IN_ATTACK2 = 1 << 11,//右键 IN_SCORE = 1 << 16,//开镜 IN_BULLRUSH = 1 << 22//狂奔 }; int pad; int command_number; int tick_count; self_vector_struct view_angles; self_vector_struct aim_direction; float forward_move; float side_move; float up_move; int buttons; char impulse; int weapon_select; int weapon_sub_type; int random_seed; short mouse_dx; short mouse_dy; bool has_been_predicted; }user_cmd_struct;
749
C++
.h
36
17.833333
34
0.659357
FiYHer/csgo_cheats
35
18
4
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,604
ray.hpp
FiYHer_csgo_cheats/csgo_cheats/ray.hpp
#pragma once #include "self_vector.hpp" typedef struct ray_struct { ray_struct(const self_vector_struct& src, const self_vector_struct& dest) : start(src), delta(dest - src) { is_swept = delta.x || delta.y || delta.z; } self_vector_struct start{ }; float pad{ }; self_vector_struct delta{ }; std::byte pad2[40]{ }; bool is_ray{ true }; bool is_swept{ }; }ray_struct;
385
C++
.h
17
20.588235
76
0.683924
FiYHer/csgo_cheats
35
18
4
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,606
net_vars.h
FiYHer_csgo_cheats/csgo_cheats/net_vars.h
#pragma once #include <unordered_map> #include "rect_table.hpp" #include "fnv.hpp" //网络变量辅助类 class net_vars_class { public: //初始化 net_vars_class() noexcept; //恢复 void restore() noexcept; //重载索引 uint16_t operator[](const uint32_t hash) noexcept; private: //获取偏移数据 void walk_table(bool unload, const char* networkName, recv_table_struct* recvTable, const std::size_t offset = 0) noexcept; //偏移列表 std::unordered_map<uint32_t, uint16_t> offsets; }; extern net_vars_class g_net_vars; #define NETVAR_OFFSET(funcname, class_name, var_name, offset, type) \ std::add_lvalue_reference_t<type> funcname() noexcept \ { \ auto hash{ fnv_struct::hash(class_name "->" var_name) }; \ return *reinterpret_cast<std::add_pointer_t<type>>(this + g_net_vars[hash] + offset); \ } #define NETVAR(funcname, class_name, var_name, type) \ NETVAR_OFFSET(funcname, class_name, var_name, 0, type)
925
C++
.h
29
28.965517
125
0.725058
FiYHer/csgo_cheats
35
18
4
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,608
entity.h
FiYHer_csgo_cheats/csgo_cheats/entity.h
#pragma once #include "help_func.hpp" #include "client_class.hpp" #include "net_vars.h" #include "move_type.hpp" #include <string> //实例类 class entity_class { public: //判断该实例是否是处于休眠状态 constexpr bool is_dormant() noexcept { return call_virtual_method<bool>(this + 8, 9); } //获取该实例的客户数据类 constexpr client_class_struct* get_client_class() noexcept { return call_virtual_method<client_class_struct*>(this + 8, 2); } //判断玩家是否死亡 constexpr bool is_alive() noexcept { return call_virtual_method<bool>(this, 155) && get_health() > 0; } //根据句柄获取实例 constexpr auto get_entity_from_handle(int handle) noexcept { return call_virtual_method<entity_class*, int>(this, 4, handle); } //设置模型索引 constexpr void set_model_index(int index) noexcept { call_virtual_method<void, int>(this, 75, index); } //更新数据 constexpr void pre_data_update(int updateType) noexcept { call_virtual_method<void, int>(this + 8, 6, updateType); } //获取当前的武器 constexpr entity_class* get_active_weapon() noexcept { return call_virtual_method<entity_class*>(this, 267); } //获取武器的不正确率 constexpr float get_inaccuracy() noexcept { return call_virtual_method<float>(this, 482); } //获取自瞄punch auto get_aim_punch() noexcept { self_vector_struct vec; call_virtual_method<void>(this, 345, std::ref(vec)); return vec; } //是否是狙击枪 constexpr bool is_sniper_rifle() noexcept { switch (get_client_class()->classId) { case classId_enum::Ssg08: case classId_enum::Awp: case classId_enum::Scar20: case classId_enum::G3sg1: return true; default: return false; } } //判断是否是敌人 bool is_enemy() noexcept; //判断玩家是否在视线中 bool is_visiable(const self_vector_struct& position) noexcept; //获取人物视线方位 self_vector_struct get_eye_position() noexcept; //获取骨骼的位置 self_vector_struct get_bone_position(int bone = 8) noexcept; //初始化人物骨骼 constexpr bool setup_bones(matrix3x4_class* out, int max_bones, int bone_mask, float current_time) noexcept; public: NETVAR(get_origin, "CBaseEntity", "m_vecOrigin", self_vector_struct)//玩家的地图位置 NETVAR(get_health, "CBasePlayer", "m_iHealth", int)//获取玩家血量 NETVAR_OFFSET(get_index, "CBaseEntity", "m_bIsAutoaimTarget", 4, int)//获取索引 NETVAR(get_weapons, "CBaseCombatCharacter", "m_hMyWeapons", int[48])//武器信息 NETVAR(get_item_definition_index, "CBaseAttributableItem", "m_iItemDefinitionIndex", short)//获取武器定义索引 NETVAR(get_item_id_high, "CBaseAttributableItem", "m_iItemIDHigh", int)// NETVAR(get_account_id, "CBaseAttributableItem", "m_iAccountID", int)// NETVAR(get_fallback_paint_kit, "CBaseAttributableItem", "m_nFallbackPaintKit", unsigned)// NETVAR(get_view_model, "CBasePlayer", "m_hViewModel[0]", int)// NETVAR(get_weapon, "CBaseViewModel", "m_hWeapon", int)// NETVAR(get_entity_quality, "CBaseAttributableItem", "m_iEntityQuality", int)// NETVAR(get_fallback_seed, "CBaseAttributableItem", "m_nFallbackSeed", unsigned)// NETVAR(get_fallback_stat_trak, "CBaseAttributableItem", "m_nFallbackStatTrak", unsigned)// NETVAR(get_fallback_wear, "CBaseAttributableItem", "m_flFallbackWear", float)// NETVAR(get_tick_base, "CBasePlayer", "m_nTickBase", int)// NETVAR(get_is_scoped, "CCSPlayer", "m_bIsScoped", bool)//判断玩家是否处于开镜状态 NETVAR(get_next_attack, "CBaseCombatCharacter", "m_flNextAttack", float)//下一次攻击的时间 NETVAR(get_flags, "CBasePlayer", "m_fFlags", int)//人物状态标识 NETVAR_OFFSET(get_move_type, "CBaseEntity", "m_nRenderMode", 1, move_type_enum)//获取人物移动类型 NETVAR(get_model_index, "CBaseEntity", "m_nModelIndex", unsigned)// NETVAR(get_weapon_world_model, "CBaseCombatWeapon", "m_hWeaponWorldModel", int)// NETVAR(is_gun_game_immunity, "CCSPlayer", "m_bGunGameImmunity", bool)//枪战免疫 NETVAR(is_clip, "CBaseCombatWeapon", "m_iClip1", int)//不是枪械 NETVAR(get_next_primary_attack, "CBaseCombatWeapon", "m_flNextPrimaryAttack", float)//下一次主要攻击 };
4,022
C++
.h
106
33.801887
109
0.746688
FiYHer/csgo_cheats
35
18
4
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,609
input_system.hpp
FiYHer_csgo_cheats/csgo_cheats/input_system.hpp
#pragma once #include "help_func.hpp" class input_system_class { public: //启用游戏输入 constexpr void enable_input(bool enable) noexcept { call_virtual_method<void, bool>(this, 11, enable); } //重置输入状态 constexpr void reset_input_state() noexcept { call_virtual_method<void>(this, 39); } };
311
C++
.h
16
16.75
52
0.746429
FiYHer/csgo_cheats
35
18
4
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,610
config.hpp
FiYHer_csgo_cheats/csgo_cheats/config.hpp
#pragma once #include <windows.h> #include <vadefs.h> #include <Psapi.h> #include "engine.hpp" #include "entity_list.hpp" #include "glow_object_manager.hpp" #include "client.hpp" #include "game_ui.hpp" #include "weapen_item_schema.hpp" #include "localize.hpp" #include "weapen_kit.hpp" #include "cvar.hpp" #include "user_cmd.hpp" #include "global_vars.h" #include "engine_sight_trace.hpp" #include "model_info.hpp" #include "input_system.hpp" //客户模式类 class client_mode_class; //游戏作弊控制结构 typedef struct cheat_control_struct { bool show_imgui = true;//显示imgui菜单 int language_english = 0;//选择英文 bool show_glow = false;//辉光显示控制 bool glow_enable = false;//开启辉光 bool glow_enemy = false;//辉光敌人 bool glow_friend = false;//辉光队友 bool show_skin = false;//显示换肤窗口 bool skin_enable = false;//开启换肤 std::vector<weapen_kit_struct> skin_vector;//武器皮肤列表 int weapon_skin_id = 0;//武器皮肤ID std::unordered_map<int,const char*> weapon_map;//通过ID查找枪械 int weapon_id = 0;//当前武器ID std::vector<weapen_kit_struct> knife_vector;//小刀模型列表 int knife_index = 0;//小刀索引 bool aim_show = false;//显示自瞄窗口 bool aim_enable = false;//开启自瞄 int aim_bone = 8;//自瞄部位 bool aim_auto_shot = false;//自动开枪 bool aim_auto_scope = false;//自动开镜 bool aim_aimlock = false;//一直锁定敌人 float aim_fov = 255.0f;//允许自瞄的范围 float aim_max_aim_inaccuracy = 1.0f;//自瞄的最大不正确率 float aim_max_shot_inaccuracy = 1.0f;//射击的最大不正确率 float aim_offset = 0.0f;//自瞄偏移 bool show_report = false;//显示句柄窗口 bool report_enable = false;//开启举报 int report_mode = 1;//举报模式 int report_interval = 5;//举报间隔 std::vector<player_info_struct> report_players;//游戏房间玩家信息列表 uint64_t report_player_xuid;//举报玩家xuid bool report_text_abuse = false;//骂人 bool report_grief = false;//骚扰 bool report_wall_hack = true;//透视 bool report_aim_bot = true;//自瞄 bool report_speed_hack = false;//加速 bool show_other = false;//其它功能开关 bool other_again_jump = false;//连跳功能 }cheat_control_struct; //内存相关结构 typedef struct memory_struct { uintptr_t present;//present函数地址 uintptr_t reset;//reset函数地址 glow_object_mamager_struct* glow_object_mamager;//辉光对象管理结构指针 std::add_pointer_t<weapen_item_schema_class* __cdecl()> weapen_item_schema;//武器皮肤 uintptr_t hud;//图标地址 int*(__thiscall* find_hud_element)(uintptr_t, const char*);//查找图标元素 int(__thiscall* clear_hud_weapon)(int*, int);//清空武器图标 bool(__thiscall* is_other_enemy)(entity_class*, entity_class*);//判断是否是敌人函数 std::add_pointer_t<bool __stdcall(const char*, const char*)> submit_report;//举报玩家函数地址 memory_struct() { present = find_pattern(L"gameoverlayrenderer", "\xFF\x15????\x8B\xF8\x85\xDB", 2); reset = find_pattern(L"gameoverlayrenderer", "\xC7\x45?????\xFF\x15????\x8B\xF8", 9); glow_object_mamager = *reinterpret_cast<glow_object_mamager_struct**>(find_pattern(L"client_panorama", "\x0F\x11\x05????\x83\xC8\x01", 3)); weapen_item_schema = relativeToAbsolute<decltype(weapen_item_schema)>(reinterpret_cast<int*>(find_pattern(L"client_panorama", "\xE8????\x0F\xB7\x0F", 1))); auto temp = reinterpret_cast<std::uintptr_t*>(find_pattern(L"client_panorama", "\xB9????\xE8????\x8B\x5D\x08", 1)); hud = *temp; find_hud_element = relativeToAbsolute<decltype(find_hud_element)>(reinterpret_cast<int*>(reinterpret_cast<char*>(temp) + 5)); clear_hud_weapon = reinterpret_cast<decltype(clear_hud_weapon)>(find_pattern(L"client_panorama", "\x55\x8B\xEC\x51\x53\x56\x8B\x75\x08\x8B\xD9\x57\x6B\xFE\x2C")); is_other_enemy = relativeToAbsolute<decltype(is_other_enemy)>(reinterpret_cast<int*>(find_pattern(L"client_panorama", "\xE8????\x02\xC0", 1))); submit_report = reinterpret_cast<decltype(submit_report)>(find_pattern(L"client_panorama", "\x55\x8B\xEC\x83\xE4\xF8\x83\xEC\x28\x8B\x4D\x08")); } //内存模式查找 uintptr_t find_pattern(const wchar_t* module, const char* pattern, size_t offset = 0) noexcept { //获取指定模块的相关信息 MODULEINFO moduleInfo; if (GetModuleInformation(GetCurrentProcess(), GetModuleHandleW(module), &moduleInfo, sizeof(moduleInfo))) { //获取开始地址和结束地址 auto start = static_cast<const char*>(moduleInfo.lpBaseOfDll); const auto end = start + moduleInfo.SizeOfImage; auto first = start; auto second = pattern; while (first < end && *second) { if (*first == *second || *second == '?') { ++first; ++second; } else { first = ++start; second = pattern; } } //查找到地址 if (!*second) return reinterpret_cast<uintptr_t>(const_cast<char*>(start) + offset); } MessageBoxA(NULL, "findPattern", NULL, MB_OK | MB_ICONWARNING); exit(-1); } }memory_struct; //游戏辅助配置结构 typedef struct configuration_struct { engine_class* engine;//游戏引擎类指针 entity_list_class* entity_list;//实例列表类指针 client_class* client;//客户端类指针 client_mode_class* client_mode;//客户模式类指针 game_ui_class* gmae_ui;//游戏ui类指针 localize_class* localize;//定位类指针 cvar_class* cvar;//数值类指针 engine_trace_class* engine_trace;//引擎视线跟踪类指针 model_info_class* model_info;//模型信息类指针 input_system_class* input_system;//输入系统 cheat_control_struct control;//作弊控制结构 memory_struct memory;//内存相关结构 global_vars_struct* global_vars;//全局内存变量结构指针 configuration_struct() { engine = find<engine_class>(L"engine", "VEngineClient014"); entity_list = find<entity_list_class>(L"client_panorama", "VClientEntityList003"); client = find<client_class>(L"client_panorama", "VClient018"); client_mode = **reinterpret_cast<client_mode_class***>((*reinterpret_cast<uintptr_t**>(client))[10] + 5); gmae_ui = find<game_ui_class>(L"client_panorama", "GameUI011"); localize = find<localize_class>(L"localize", "Localize_001"); cvar = find<cvar_class>(L"vstdlib", "VEngineCvar007"); global_vars = **reinterpret_cast<global_vars_struct***>((*reinterpret_cast<uintptr_t**>(client))[11] + 10); engine_trace = find<engine_trace_class>(L"engine", "EngineTraceClient004"); model_info = find<model_info_class>(L"engine", "VModelInfoClient004"); input_system = find<input_system_class>(L"inputsystem", "InputSystemVersion001"); } //查找指定的接口 template <typename T> auto find(const wchar_t* module, const char* name) noexcept { if (HMODULE moduleHandle = GetModuleHandleW(module)) if (const auto createInterface = reinterpret_cast<std::add_pointer_t<T* (const char* name, int* returnCode)>>(GetProcAddress(moduleHandle, "CreateInterface"))) if (T* foundInterface = createInterface(name, nullptr)) return foundInterface; MessageBoxA(nullptr, "find", NULL, MB_OK | MB_ICONERROR); std::exit(EXIT_FAILURE); } }configuration_struct; //导出给外部用 extern configuration_struct g_config;
6,924
C++
.h
162
37.746914
164
0.725868
FiYHer/csgo_cheats
35
18
4
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,612
other.hpp
FiYHer_csgo_cheats/csgo_cheats/other.hpp
#pragma once #include "config.hpp" //其它一些有用的功能 namespace other_space { //开启连跳 void again_jump(user_cmd_struct* cmd) noexcept { if (!g_config.control.other_again_jump) return; //获取自己实例 const auto local_player = g_config.entity_list->get_entity(g_config.engine->get_local_player()); if (!local_player || !local_player->is_alive()) return; static int last_time_state = local_player->get_flags() & 1; if (!(local_player->get_flags() & 1) && local_player->get_move_type() != move_type_enum::LADDER && !last_time_state) cmd->buttons &= ~user_cmd_struct::IN_JUMP; last_time_state = local_player->get_flags() & 1; } }
660
C++
.h
19
31.105263
98
0.692683
FiYHer/csgo_cheats
35
18
4
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,613
imgui_gui.hpp
FiYHer_csgo_cheats/csgo_cheats/imgui_gui.hpp
#pragma once #include "config.hpp" #include <windows.h> #include <string> #include <filesystem> #include "imgui/imgui.h" #include "imgui/imgui_impl_dx9.h" #include "imgui/imgui_impl_win32.h" #include "skin.hpp" class imgui_gui_class { public: imgui_gui_class() noexcept { srand((unsigned int)time(0)); //创建imgui上下文 ImGui::CreateContext(); //绑定游戏窗口 ImGui_ImplWin32_Init(FindWindowW(L"Valve001", NULL)); //设置imgui为白色 ImGui::StyleColorsLight(); ImGui::GetStyle().ScrollbarSize = 9.0f; ImGuiIO& io = ImGui::GetIO(); io.IniFilename = nullptr;//不需要保存imgui配置文件 io.LogFilename = nullptr;//不需要保存imgui信息 io.ConfigFlags |= ImGuiConfigFlags_NoMouseCursorChange;//不需要改变鼠标样式 //设置字体文件 const char* font_path = "c:\\msyh.ttc"; if (std::filesystem::exists(font_path)) io.Fonts->AddFontFromFileTTF(font_path, 20.0f, nullptr, io.Fonts->GetGlyphRangesChineseFull()); else { char buffer[2000]; sprintf(buffer, "没有发现字体文件,可能无法正常显示字体\t 文件:%s 函数:%s 源代码行:%d\n", __FILE__, __FUNCTION__, __LINE__); MessageBoxA(NULL, buffer, "警告信息", NULL); g_config.control.language_english = 1; } } //渲染界面管理 void render_manager() noexcept { ImGui::Begin(u8"csgo assistant", &g_config.control.show_imgui); ImGui::Text(u8"language"); ImGui::RadioButton(u8"中文显示", &g_config.control.language_english, 0);ImGui::SameLine(); ImGui::RadioButton(u8"english show", &g_config.control.language_english, 1); std::string tip1 = string_to_utf8("Ins 显示 / 隐藏菜单"); std::string tip2 = string_to_utf8("提示:如果墙体闪烁,请按Ins隐藏当前菜单即可解决!!!"); std::string show_glow = string_to_utf8("人物辉光功能"); std::string show_skin = string_to_utf8("切换皮肤功能"); std::string show_report = string_to_utf8("玩家举报功能"); std::string show_aim = string_to_utf8("人物自瞄功能"); std::string show_other = string_to_utf8("其它有用功能"); if (g_config.control.language_english) { tip1 = "Ins show / hide menu"; tip2 = "tip: if the wall is flickering, press Ins to hide the current menu."; show_glow = "players glow functions"; show_skin = "change skin functions"; show_report = "players report functions"; show_aim = "players aimbot functions"; show_other = "other useful functions"; } ImGui::Text(tip1.c_str()); ImGui::Text(tip2.c_str()); ImGui::Checkbox(show_glow.c_str(), &g_config.control.show_glow); ImGui::Checkbox(show_skin.c_str(), &g_config.control.show_skin); ImGui::Checkbox(show_report.c_str(), &g_config.control.show_report); ImGui::Checkbox(show_aim.c_str(), &g_config.control.aim_show); ImGui::Checkbox(show_other.c_str(), &g_config.control.show_other); ImGui::End(); } //渲染界面函数 void render() noexcept { if (g_config.control.show_imgui) { ImGui_ImplDX9_NewFrame(); ImGui_ImplWin32_NewFrame(); ImGui::NewFrame(); render_manager(); render_glow(); render_skin(); render_report(); render_aim(); render_other(); ImGui::EndFrame(); ImGui::Render(); ImGui_ImplDX9_RenderDrawData(ImGui::GetDrawData()); } } //人物辉光菜单 void render_glow() noexcept { if (!g_config.control.show_glow) return; ImGui::Begin(u8"glow"); std::string glow_enable = string_to_utf8("开启辉光"); std::string glow_enemy = string_to_utf8("辉光敌人"); std::string glow_friend = string_to_utf8("辉光队友"); if (g_config.control.language_english) { glow_enable = "enable glow"; glow_enemy = "glow enemy"; glow_friend = "glow friend"; } ImGui::Checkbox(glow_enable.c_str(), &g_config.control.glow_enable); ImGui::Checkbox(glow_enemy.c_str(), &g_config.control.glow_enemy); ImGui::Checkbox(glow_friend.c_str(), &g_config.control.glow_friend); ImGui::End(); } //切换皮肤菜单 void render_skin() noexcept { if (!g_config.control.show_skin) return; ImGui::Begin(u8"skin"); std::string skin_enable = string_to_utf8("开启换肤"); std::string skin_ = string_to_utf8("武器皮肤选择"); std::string knife_ = string_to_utf8("小刀模型选择"); if (g_config.control.language_english) { skin_enable = "enable skin"; skin_ = "weapon skin select"; knife_ = "knife model select"; } ImGui::Checkbox(skin_enable.c_str(), &g_config.control.skin_enable); static int weapon_kit_index_last = 0;//上一次的武器皮肤 static int weapon_kit_index = rand() % g_config.control.skin_vector.size();//这一次的武器皮肤 ImGui::Combo(skin_.c_str(), &weapon_kit_index, [](void* data, int idx, const char** out_text) { //武器皮肤字符串 *out_text = g_config.control.skin_vector[idx].name.c_str(); //更新武器皮肤ID g_config.control.weapon_skin_id = g_config.control.skin_vector[idx].id; return true; }, nullptr, g_config.control.skin_vector.size(), 10); if (weapon_kit_index_last != weapon_kit_index) { skin_space::schedule_hud_update(); weapon_kit_index_last = weapon_kit_index; } //小刀选择 static int knife_select_last = 0; static int knife_select = rand() % g_config.control.knife_vector.size(); ImGui::Combo(knife_.c_str(), &knife_select, [](void* data, int idx, const char** out_text) { //小刀模型字符串 *out_text = g_config.control.knife_vector[idx].name.c_str(); // g_config.control.knife_index = g_config.control.knife_vector[idx].id; return true; }, nullptr, g_config.control.knife_vector.size(), 10); if (knife_select != knife_select_last) { skin_space::schedule_hud_update(); knife_select_last = knife_select; } ImGui::End(); } //举报玩家菜单 void render_report() noexcept { if (!g_config.control.show_report) return; ImGui::Begin(u8"report"); std::string report_enable = string_to_utf8("开启举报"); std::string report_all = string_to_utf8("举报全部"); std::string report_per = string_to_utf8("举报一个"); std::string report_abuse = string_to_utf8("举报骂人"); std::string report_grief = string_to_utf8("举报骚扰"); std::string report_wallhack = string_to_utf8("举报透视"); std::string report_aimhack = string_to_utf8("举报自瞄"); std::string report_speedhack = string_to_utf8("举报加速"); std::string report_player_name = string_to_utf8("选择需要举报的玩家名字"); std::string report_time_interval = string_to_utf8("举报时间间隔"); std::string report_clear = string_to_utf8("清空举报列表"); if (g_config.control.language_english) { report_enable = "enable report"; report_all = "report all"; report_per = "report per"; report_abuse = "report abuse"; report_grief = "report grief"; report_wallhack = "report wallhack"; report_aimhack = "report aimhack"; report_speedhack = "report speedhack"; report_player_name = "select report player"; report_time_interval = "report interval"; report_clear = "clear report list"; } ImGui::Checkbox(report_enable.c_str(), &g_config.control.report_enable); ImGui::RadioButton(report_all.c_str(), &g_config.control.report_mode, 1); ImGui::SameLine(); ImGui::RadioButton(report_per.c_str(), &g_config.control.report_mode, 2); ImGui::Separator(); ImGui::Checkbox(report_abuse.c_str(), &g_config.control.report_text_abuse); ImGui::Checkbox(report_grief.c_str(), &g_config.control.report_grief); ImGui::Checkbox(report_wallhack.c_str(), &g_config.control.report_wall_hack); ImGui::Checkbox(report_aimhack.c_str(), &g_config.control.report_aim_bot); ImGui::Checkbox(report_speedhack.c_str(), &g_config.control.report_speed_hack); ImGui::Separator(); if (g_config.control.report_mode == 2 && g_config.control.report_players.size()) { static int report_player_index = 0; ImGui::Combo(report_player_name.c_str(), &report_player_index, [](void* data, int idx, const char** out_text) { *out_text = g_config.control.report_players[idx].name; return true; }, nullptr, g_config.control.report_players.size(), 10); //获取玩家的XUID if ((int)g_config.control.report_players.size() > report_player_index) g_config.control.report_player_xuid = g_config.control.report_players[report_player_index].xuid; } ImGui::SliderInt(report_time_interval.c_str(), &g_config.control.report_interval, 5, 50); ImGui::Separator(); if (ImGui::Button(report_clear.c_str())) report_space::clear_report_list(); ImGui::End(); } //自瞄人物菜单 void render_aim() noexcept { if (!g_config.control.aim_show) return; ImGui::Begin(u8"aimbot"); std::string enable_aim = string_to_utf8("开启自瞄"); std::string aim_head = string_to_utf8("自瞄头部"); std::string aim_sternum = string_to_utf8("自瞄胸部"); std::string aim_recent = string_to_utf8("自瞄最近"); std::string aim_auto_shot = string_to_utf8("自动开枪"); std::string aim_auto_scope = string_to_utf8("自动开镜"); std::string aim_aimlock = string_to_utf8("锁定敌人"); std::string aim_fov = string_to_utf8("自瞄范围"); std::string aim_aim_inaccuracy = string_to_utf8("允许自瞄的最大不正确率"); std::string aim_shot_inaccurac = string_to_utf8("允许射击的最大不正确率"); std::string aim_offset = string_to_utf8("自瞄微调"); if (g_config.control.language_english) { enable_aim = "enable aimbot"; aim_head = "aimbot head"; aim_sternum = "aimbot sternum"; aim_recent = "aimbot recent"; aim_auto_shot = "auto shot"; aim_auto_scope = "auto scope"; aim_aimlock = "aimbot lock"; aim_fov = "aimbot fov"; aim_aim_inaccuracy = "aimbot inaccuracy"; aim_shot_inaccurac = "shot inaccurac"; aim_offset = "aimbot offset"; } ImGui::Checkbox(enable_aim.c_str(), &g_config.control.aim_enable); ImGui::RadioButton(aim_head.c_str(), &g_config.control.aim_bone, 8); ImGui::SameLine(); ImGui::RadioButton(aim_sternum.c_str(), &g_config.control.aim_bone, 6); ImGui::SameLine(); ImGui::RadioButton(aim_recent.c_str(), &g_config.control.aim_bone, -1); ImGui::Checkbox(aim_auto_shot.c_str(), &g_config.control.aim_auto_shot); ImGui::Checkbox(aim_auto_scope.c_str(), &g_config.control.aim_auto_scope); ImGui::Checkbox(aim_aimlock.c_str(), &g_config.control.aim_aimlock); ImGui::SliderFloat(aim_fov.c_str(), &g_config.control.aim_fov, 0.0f, 255.0f); ImGui::SliderFloat(aim_aim_inaccuracy.c_str(), &g_config.control.aim_max_aim_inaccuracy, 0.0f, 1.0f); ImGui::SliderFloat(aim_shot_inaccurac.c_str(), &g_config.control.aim_max_shot_inaccuracy, 0.0f, 1.0f); ImGui::SliderFloat(aim_offset.c_str(), &g_config.control.aim_offset, -20.0f, 20.0f); ImGui::End(); } //其它功能菜单 void render_other() noexcept { if (!g_config.control.show_other) return; ImGui::Begin(u8"other"); if(!g_config.control.language_english) ImGui::Checkbox(u8"连跳功能", &g_config.control.other_again_jump); else ImGui::Checkbox(u8"rabbit jump", &g_config.control.other_again_jump); ImGui::End(); } //将文本转化为utf8使得imgui能正常显示中文 std::string string_to_utf8(const std::string& str) { int nwLen = MultiByteToWideChar(CP_ACP, 0, str.c_str(), -1, NULL, 0); wchar_t* pwBuf = new wchar_t[nwLen + 1]; memset(pwBuf, 0, nwLen * 2 + 2); MultiByteToWideChar(CP_ACP, 0, str.c_str(), str.length(), pwBuf, nwLen); int nLen = WideCharToMultiByte(CP_UTF8, 0, pwBuf, -1, NULL, NULL, NULL, NULL); char* pBuf = new char[nLen + 1]; memset(pBuf, 0, nLen + 1); WideCharToMultiByte(CP_UTF8, 0, pwBuf, nwLen, pBuf, nLen, NULL, NULL); std::string ret = pBuf; delete[]pwBuf; delete[]pBuf; return ret; } //将utf8数据转化为字符串 std::string utf8_to_string(const std::string& str) { int nwLen = MultiByteToWideChar(CP_UTF8, 0, str.c_str(), -1, NULL, 0); wchar_t* pwBuf = new wchar_t[nwLen + 1]; memset(pwBuf, 0, nwLen * 2 + 2); MultiByteToWideChar(CP_UTF8, 0, str.c_str(), str.length(), pwBuf, nwLen); int nLen = WideCharToMultiByte(CP_ACP, 0, pwBuf, -1, NULL, NULL, NULL, NULL); char* pBuf = new char[nLen + 1]; memset(pBuf, 0, nLen + 1); WideCharToMultiByte(CP_ACP, 0, pwBuf, nwLen, pBuf, nLen, NULL, NULL); std::string ret = pBuf; delete[]pBuf; delete[]pwBuf; return ret; } }; extern imgui_gui_class g_imgui;
12,020
C++
.h
298
35.768456
112
0.694294
FiYHer/csgo_cheats
35
18
4
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,618
Source.cpp
Jinhu-Wang_TreeSeparation/TreeSeparation/TreeSeparation/Source.cpp
/* * Copyright (C) 2016 by * Jinhu Wang (jinhu.wang@tudelft.nl) * Roderik Lindenbergh (r.c.lindenbergh@tudelft.nl) [http://doris.tudelft.nl/~rlindenbergh/] * Laser and Optical Remote Sensing * Dept. of Geoscience and Remote Sensing * TU Delft, https://tudelft.nl * * This is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License Version 3 * as published by the Free Software Foundation. * * TreeSeparation is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include<iostream> #include"FoxTree.h" void main() { std::vector<Point3D> points; Point3D tempPt; //Reading points from ASCII formated file; FILE* inFile = fopen("test-02.xyz", "r"); if (inFile) { while (!feof(inFile)) { fscanf(inFile, "%lf %lf %lf\n", &tempPt.x, &tempPt.y, &tempPt.z); points.push_back(tempPt); } fclose(inFile); } else { std::cout << "There was an error in data loading..." << std::endl; return; } //Parameters const double radius = 1.0; const double verticalResolution = 0.7; const int miniPtsPerCluster = 3; //Initialization FoxTree* foxTree = new FoxTree(points, radius, verticalResolution, miniPtsPerCluster); //Topdown direction foxTree->separateTrees(1, 1); //Output separation results foxTree->outputTrees("test-02-1.0-0.7-3.xyz", foxTree->m_nTrees); std::cout << "Finished" << std::endl; if (foxTree) delete foxTree; foxTree = nullptr; }
1,774
C++
.cpp
56
29.589286
97
0.729191
Jinhu-Wang/TreeSeparation
35
10
3
LGPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,619
FoxTree.cpp
Jinhu-Wang_TreeSeparation/TreeSeparation/TreeSeparation/FoxTree.cpp
/* * Copyright (C) 2016 by * Jinhu Wang (jinhu.wang@tudelft.nl) * Roderik Lindenbergh (r.c.lindenbergh@tudelft.nl) [http://doris.tudelft.nl/~rlindenbergh/] * Laser and Optical Remote Sensing * Dept. of Geoscience and Remote Sensing * TU Delft, https://tudelft.nl * * This is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License Version 3 * as published by the Free Software Foundation. * * TreeSeparation is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include"FoxTree.h" FoxTree::FoxTree() : m_Points(nullptr) , m_nNumPts(0) , m_nTreeIndex(0) , m_nVerticalResolution(0.0) , m_nRadius(0.0) , m_nMinPtSeeds(5) //, m_Voxel(nullptr) { } //Default constructor; FoxTree::FoxTree(std::vector<Point3D> points, double radius, double verticalResolution, int minPtNum) { this->m_nVerticalResolution = verticalResolution; this->m_nRadius = radius; this->m_nMinPtSeeds = minPtNum; this->m_nNumPts = points.size(); this->m_Points = new Point3D[points.size()]; for (size_t i = 0; i < points.size(); ++i) { this->m_Points[i].x = points.at(i).x; this->m_Points[i].y = points.at(i).y; this->m_Points[i].z = points.at(i).z; this->m_Points[i].ptID = i; if (points.at(i).x > this->m_nBBX.xMax) this->m_nBBX.xMax = points.at(i).x; if (points.at(i).y > this->m_nBBX.yMax) this->m_nBBX.yMax = points.at(i).y; if (points.at(i).z > this->m_nBBX.zMax) this->m_nBBX.zMax = points.at(i).z; if (points.at(i).x < this->m_nBBX.xMin) this->m_nBBX.xMin = points.at(i).x; if (points.at(i).y < this->m_nBBX.yMin) this->m_nBBX.yMin = points.at(i).y; if (points.at(i).z < this->m_nBBX.zMin) this->m_nBBX.zMin = points.at(i).z; } } //Default descructor; FoxTree::~FoxTree() { if (m_Points) delete[] m_Points; m_Points = nullptr; } //Initaite the tree points and also the three parameters; void FoxTree::initialize(std::vector<Point3D> points, double radius, double verticalResolution, int minPtsNum) { if (points.empty()) return; this->m_nRadius = radius; this->m_nVerticalResolution = verticalResolution; this->m_nMinPtSeeds = minPtsNum; this->loadPoints(points); } //Load the points to the class; void FoxTree::loadPoints(std::vector<Point3D> points) { this->m_nNumPts = points.size(); this->m_Points = new Point3D[points.size()]; for (size_t i = 0; i < points.size(); ++i) { this->m_Points[i].x = points.at(i).x; this->m_Points[i].y = points.at(i).y; this->m_Points[i].z = points.at(i).z; this->m_Points[i].ptID = i; if (points.at(i).x > this->m_nBBX.xMax) this->m_nBBX.xMax = points.at(i).x; if (points.at(i).y > this->m_nBBX.yMax) this->m_nBBX.yMax = points.at(i).y; if (points.at(i).z > this->m_nBBX.zMax) this->m_nBBX.zMax = points.at(i).z; if (points.at(i).x < this->m_nBBX.xMin) this->m_nBBX.xMin = points.at(i).x; if (points.at(i).y < this->m_nBBX.yMin) this->m_nBBX.yMin = points.at(i).y; if (points.at(i).z < this->m_nBBX.zMin) this->m_nBBX.zMin = points.at(i).z; } } //Obtain points within the designated height interval; std::vector<int> FoxTree::getPts(double lower, double higher) { std::vector<int> ptIndices; ptIndices.clear(); for (int i = 0; i < m_nNumPts; ++i) { if (this->m_Points[i].z <= higher && this->m_Points[i].z > lower) { ptIndices.push_back(this->m_Points[i].ptID); } } return ptIndices; } //Run tree separation; void FoxTree::separateTrees() { this->topDownSeparation(this->m_nRadius, this->m_nVerticalResolution); } //Perform tree individualization w.r.t. the given direction; // 1 == from top downwards; // -1 == from bottom upwards; void FoxTree::separateTrees(int ptOrVoxel, int direction) { if (ptOrVoxel == 1) { if (direction == 1) { this->topDownSeparation(this->m_nRadius, this->m_nVerticalResolution); } else if (direction == -1) { this->bottomUpSeparation(this->m_nRadius, this->m_nVerticalResolution); } else { std::cout << "Direction should be either 1(topdown) or -1(bottomup)." << std::endl; return; } } else if(ptOrVoxel == -1) { } } //Tree individulization from top layer downwards; void FoxTree::topDownSeparation(double radius, double verticalResolution) { bool isTopLayer = true; int k = 0; for (float height = this->m_nBBX.zMax; height >= this->m_nBBX.zMin; height -= verticalResolution) { clock_t startTime = clock(); std::vector<int> ptIDs = this->getPts(height - verticalResolution, height); if (ptIDs.empty()) continue; std::vector<std::vector<int>> currLayerClusters; currLayerClusters.clear(); std::cout << "Total number of points in this layer: " << ptIDs.size() << std::endl; if (isTopLayer) { currLayerClusters = this->clusterPoints(radius, ptIDs); this->generateTreeClusters(currLayerClusters); this->ConcatenateToParsedPts(currLayerClusters); if(currLayerClusters.size() == 0) { isTopLayer = true; } else { isTopLayer = false; } } else { std::vector<int> restPts = ptIDs; int parsedPts = 0; std::cout << "Incrementally assign points..." << std::endl; std::vector<int> pointIndices = ptIDs; do { parsedPts = this->m_nParsedPtIds.size(); restPts = this->assignPtsToTrees(restPts, radius); } while (parsedPts != this->m_nParsedPtIds.size()); std::cout << "Finished assigning points" << std::endl; std::vector<std::vector<int>> currLayerClusters; clock_t t0 = clock(); std::cout << "Clustering " << ptIDs.size() << " points..." << std::endl; currLayerClusters = this->clusterPoints(radius, restPts); std::cout << "Time elapsed: " << clock() - t0 << std::endl; std::cout << "Finished clustering points" << std::endl; this->generateTreeClusters(currLayerClusters); this->ConcatenateToParsedPts(currLayerClusters); } clock_t endTime = clock(); std::cout << "Processing time for height: [" << height << " <=> " << height + verticalResolution << "] is: " << (endTime - startTime) / 1000 << " seconds." << std::endl; std::cout << "Height index: " << k++ << std::endl; std::cout << "=============================================" << std::endl; } } //Perform tree individualization from bottom layer upwards; void FoxTree::bottomUpSeparation(double radius, double verticalResolution) { bool isBottomLayer = true; int k = 0; for (float height = this->m_nBBX.zMin; height <= this->m_nBBX.zMax; height += verticalResolution) { clock_t startTime = clock(); std::vector<int> ptIDs = this->getPts(height, height + verticalResolution); if (ptIDs.empty()) return; std::vector<std::vector<int>> currLayerCluster; currLayerCluster.clear(); std::cout << "Total number of points in this layer: " << ptIDs.size() << std::endl; if (isBottomLayer) { currLayerCluster = this->clusterPoints(radius, ptIDs); this->generateTreeClusters(currLayerCluster); this->ConcatenateToParsedPts(currLayerCluster); if(currLayerCluster.size() == 0) { isBottomLayer = true; } else { isBottomLayer = false; } } else { std::vector<int> restPts = ptIDs; int parsedPts = 0; std::cout << "Incrementally assign points..." << std::endl; do { parsedPts = this->m_nParsedPtIds.size(); restPts = this->assignPtsToTrees(restPts, radius); } while (parsedPts != this->m_nParsedPtIds.size()); std::cout << "Finished assigning points" << std::endl; std::vector<std::vector<int>> currLayerClusters; clock_t t0 = clock(); std::cout << "Clustering "<< ptIDs.size()<<" points..." << std::endl; currLayerClusters = this->clusterPoints(radius, restPts); std::cout << "Time elapsed: " << clock() - t0 << std::endl; std::cout << "Finished clustering points" << std::endl; this->generateTreeClusters(currLayerClusters); this->ConcatenateToParsedPts(currLayerClusters); } clock_t endTime = clock(); std::cout << "Processing time for height: [" << height <<" <=> " <<height + verticalResolution << "] is: " << (endTime - startTime)/1000 <<" seconds." <<std::endl; std::cout << "Height index: " << k++ << std::endl; std::cout << "=============================================" << std::endl; } } //Cluster points that are within the distance of the given radius. std::vector<std::vector<int>> FoxTree::clusterPoints(double radius, std::vector<int> ptIndices) { std::vector<std::vector<int>> Clusters; Clusters.clear(); if (ptIndices.empty()) return Clusters; PointCloud2<double> kdPts; kdPts.pts.resize(ptIndices.size()); for (size_t i = 0; i < ptIndices.size(); ++i) { kdPts.pts[i].x = this->m_Points[ptIndices.at(i)].x; kdPts.pts[i].y = this->m_Points[ptIndices.at(i)].y; kdPts.pts[i].z = this->m_Points[ptIndices.at(i)].z; } kdTree* currKDTree = new kdTree(3, kdPts, KDTreeSingleIndexAdaptorParams(10)); currKDTree->buildIndex(); std::vector<std::pair<size_t, double>> pairs; SearchParams params; for (size_t i = 0; i < ptIndices.size(); ++i) { int ptID = ptIndices.at(i); if (this->m_Points[ptID].isVisited) continue; std::vector<int> currCluster; currCluster.clear(); std::stack<int> tempStack; tempStack.push(ptID); this->m_Points[ptID].isPushed = true; while (!tempStack.empty()) { ptID = tempStack.top(); Point3D currPt = this->m_Points[ptID]; if (!currPt.isVisited) { currCluster.push_back(ptID); this->m_Points[ptID].isVisited = true; } tempStack.pop(); double queryPt[3]; queryPt[0] = currPt.x; queryPt[1] = currPt.y; queryPt[2] = currPt.z; const size_t numPairs = currKDTree->radiusSearch(&queryPt[0], radius, pairs, params); for (size_t j = 0; j < numPairs; ++j) { if (!this->m_Points[ptIndices.at(pairs[j].first)].isPushed) { tempStack.push(ptIndices.at(pairs[j].first)); this->m_Points[ptIndices.at(pairs[j].first)].isPushed = true; } } } if (currCluster.size() >= this->m_nMinPtSeeds) { Clusters.push_back(currCluster); } } if (currKDTree) delete currKDTree; currKDTree = nullptr; return Clusters; } //Assign tree points based on the clusters and the radius. std::vector<int> FoxTree::assignPtsToTrees(std::vector<int> newPtIDs, double radius) { std::vector<int> restPtIDs; restPtIDs.clear(); int numParsePts = this->m_nParsedPtIds.size(); PointCloud2<double> kdPtsParsed; kdPtsParsed.pts.resize(numParsePts); for (int i = 0; i < numParsePts; ++i) { int id = this->m_nParsedPtIds.at(i); kdPtsParsed.pts[i].x = this->m_Points[id].x; kdPtsParsed.pts[i].y = this->m_Points[id].y; kdPtsParsed.pts[i].z = this->m_Points[id].z; } kdTree* currKDTree = new kdTree(3, kdPtsParsed, KDTreeSingleIndexAdaptorParams(10)); currKDTree->buildIndex(); std::vector<std::pair<size_t, double>>pairs; SearchParams params; for (int i = 0; i < newPtIDs.size(); ++i) { int id = newPtIDs.at(i); double queryPt[3]; queryPt[0] = this->m_Points[id].x; queryPt[1] = this->m_Points[id].y; queryPt[2] = this->m_Points[id].z; std::vector<size_t> retIndex(1); std::vector<double> distSquare(1); currKDTree->knnSearch(&queryPt[0], 1, &retIndex[0], &distSquare[0]); double dist = std::sqrt(distSquare[0]); if (dist < radius) { int currIndex = retIndex[0]; int currTreeIndex = this->m_Points[m_nParsedPtIds.at(currIndex)].treeID; this->m_Points[id].treeID = currTreeIndex; this->m_nTrees.find(currTreeIndex)->second.ptIDs.push_back(id); this->m_nParsedPtIds.push_back(id); } else { restPtIDs.push_back(id); } } if (currKDTree) delete currKDTree; currKDTree = nullptr; return restPtIDs; } //Generate tree clusters based on the point indices; void FoxTree::generateTreeClusters(std::vector<std::vector<int>> ptClusters) { if (ptClusters.empty()) return; int treeCount = ptClusters.size(); for (size_t i = 0; i < treeCount; ++i) { TreeCluster currTree; currTree.ptIDs = ptClusters.at(i); currTree.treeID = this->m_nTreeIndex++; std::pair<int, TreeCluster> tree(currTree.treeID, currTree); this->m_nTrees.insert(tree); this->applyTreeIndexToPts(tree); } } //Apply the tree indices from the given point clusters; void FoxTree::applyTreeIndexToPts(std::pair<int, TreeCluster> treeClusters) { int ptNumber = treeClusters.second.ptIDs.size(); for (int i = 0; i < ptNumber; ++i) { int ptID = treeClusters.second.ptIDs.at(i); this->m_Points[ptID].treeID = treeClusters.first; } } //Concatenate the points to the parsed points in the class; void FoxTree::ConcatenateToParsedPts(std::vector<int> ptIDs) { if (ptIDs.empty()) return; for (size_t i = 0; i < ptIDs.size(); ++i) { this->m_nParsedPtIds.push_back(ptIDs.at(i)); } } //Concatenate the points of the given clusters to the parsed trees in the class; void FoxTree::ConcatenateToParsedPts(std::vector<std::vector<int>> clusters) { if (clusters.empty()) return; for (int i = 0; i < clusters.size(); ++i) { for (int j = 0; j < clusters.at(i).size(); ++j) { this->m_nParsedPtIds.push_back(clusters.at(i).at(j)); } } } //Output points w.r.t. different tree indices; void FoxTree::outputTrees(std::string filename, std::map<int, TreeCluster> trees) { FILE* file = fopen(filename.c_str(), "w"); for (int i = 0; i < trees.size(); ++i) { int r, g, b; r = rand() % 255; g = rand() % 255; b = rand() % 255; for (int j = 0; j < trees.at(i).ptIDs.size(); ++j) { int id = trees.at(i).ptIDs.at(j); Point3D pt = this->m_Points[id]; fprintf(file, "%d %lf %lf %lf %d %d %d\n", pt.treeID, pt.x, pt.y, pt.z, r, g, b); } } fclose(file); } //Output points w.r.t. different clusters; void FoxTree::outputClusters(std::string filename, std::vector<std::vector<int>> ptIDs) { FILE* file = fopen(filename.c_str(), "w"); for (int i = 0; i < ptIDs.size(); ++i) { int r, g, b; r = rand() % 255; g = rand() % 255; b = rand() % 255; for(int j=0; j<ptIDs.at(i).size(); ++j) { int id = ptIDs.at(i).at(j); Point3D pt = this->m_Points[id]; fprintf(file, "%lf %lf %lf %d %d %d\n", pt.x, pt.y, pt.z, r, g, b); } } fclose(file); } //Output points. void FoxTree::outputPts(std::string fileName, std::vector<int> ptIDs) { FILE *file = fopen(fileName.c_str(), "w"); for (int i = 0; i < ptIDs.size(); ++i) { int r, g, b; r = rand() % 255; g = rand() % 255; b = rand() % 255; Point3D pt = this->m_Points[ptIDs.at(i)]; fprintf(file, "%lf %lf %lf %d %d %d\n", pt.x, pt.y, pt.z, r, g, b); } fclose(file); }
14,746
C++
.cpp
444
30.378378
171
0.672681
Jinhu-Wang/TreeSeparation
35
10
3
LGPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,621
FoxTree.h
Jinhu-Wang_TreeSeparation/TreeSeparation/TreeSeparation/FoxTree.h
/* * Copyright (C) 2016 by * Jinhu Wang (jinhu.wang@tudelft.nl) * Roderik Lindenbergh (r.c.lindenbergh@tudelft.nl) [http://doris.tudelft.nl/~rlindenbergh/] * Laser and Optical Remote Sensing * Dept. of Geoscience and Remote Sensing * TU Delft, https://tudelft.nl * * * This is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License Version 3 * as published by the Free Software Foundation. * * TreeSeparation is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ #pragma once #include<stack> #include<vector> #include<map> #include<math.h> #include<time.h> #include<limits> #include<iostream> #include"nanoflann.hpp" using namespace nanoflann; typedef KDTreeSingleIndexAdaptor < L2_Simple_Adaptor<double, PointCloud2<double>>, PointCloud2<double>, 3 > kdTree; struct Point3D { double x; double y; double z; bool isPushed; bool isVisited; int ptID; int treeID; Point3D() { x = y = z = 0.0; isPushed = isVisited = false; ptID = treeID = -1; } Point3D& operator=(const Point3D* pt) { this->x = pt->x; this->y = pt->y; this->z = pt->z; this->isPushed = pt->isPushed; this->isVisited = pt->isVisited; this->ptID = pt->ptID; this->treeID = pt->treeID; return *this; } }; struct TreeCluster { std::vector<int> ptIDs; Point3D centroid; int r, g, b; int treeID; TreeCluster() { r = g = b = 0; treeID = 0; } }; struct BBX { double xMin; double yMin; double zMin; double xMax; double yMax; double zMax; BBX() { xMax = yMax = zMax = -(std::numeric_limits<double>::max)(); xMin = yMin = zMin = (std::numeric_limits<double>::max)(); } }; class FoxTree { public: FoxTree(); FoxTree(std::vector<Point3D> points, double radius, double verticalResolution, int minPtNum); ~FoxTree(); //----------------------------------- Variables ------------------------------------- public: //All loaded points in memory; Point3D* m_Points; //Individualized trees; std::map<int, TreeCluster> m_nTrees; //Vertical resolution; double m_nVerticalResolution; //Search radius; double m_nRadius; //Minimun point number for tree seeds. int m_nMinPtSeeds; //VoxelCell* m_nCell; //Voxel* m_Voxel; private: //Number of loaded tree points; int m_nNumPts; //AABB of the inpt tree points; BBX m_nBBX; //Index of individualized trees; int m_nTreeIndex; //Already parsed tree points; std::vector<int> m_nParsedPtIds; //---------------------------------- Operations ------------------------------------- public: //Initialize the point clouds; void initialize(std::vector<Point3D> points, double radius, double verticalResolution, int minPtsNum); //Separate trees; void separateTrees(); void separateTrees(int PtOrVoxel, int direction); //Output clusters and points; void outputClusters(std::string fileName, std::vector < std::vector<int>> ptIDs); void outputPts(std::string fileName, std::vector<int> ptIDs); void outputTrees(std::string fileName, std::map<int, TreeCluster> trees); private: //Initialized the class with tree points; void loadPoints(std::vector<Point3D> points); //Get points between the given heights; std::vector<int> getPts(double lower, double higher); //Cluster points with radius. std::vector<std::vector<int>> clusterPoints(double radius, std::vector<int> ptIndices); //Top downwards traversal of the tree points; void topDownSeparation(double radius, double verticalResolution); //Bottom upwards traversal of the tree points for tree separation; void bottomUpSeparation(double radius, double verticalResolution); //Concatenate the obtained points to parsed points; void ConcatenateToParsedPts(std::vector<int> ptIDs); void ConcatenateToParsedPts(std::vector<std::vector<int>> ptIDS); //Assign points to their closest tree and return the rest points; std::vector<int> assignPtsToTrees(std::vector<int> newPtIDs, double radius); //Generate tree clusters from the point clusters; void generateTreeClusters(std::vector<std::vector<int>> ptClusters); //Apply tree index to every points in the memory; void applyTreeIndexToPts(std::pair<int, TreeCluster> treeClusters); };
4,492
C++
.h
147
28.469388
103
0.727315
Jinhu-Wang/TreeSeparation
35
10
3
LGPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,622
VpcmProperties.cpp
SimulPiscator_vpcm/Source/VpcmProperties.cpp
#include "VpcmProperties.h" #include <sys/errno.h> namespace { bool parseOpt( char* string, char** name, char** value ) { char* p = string; if( *p++ != '-' || *p++ != '-' ) return false; *name = p; while( *p && *p != '=' ) ++p; if( *p ) { *p++ = 0; *value = p; } else *value = 0; return true; } } // namespace int VpcmProperties::parse( int argc, char** argv ) { mode = Playback; rate = 44100; channels = 2; format = Float32; byteWidth = 4; raw = false; bufferFrames = 16384; eofOnIdle = true; posixPipe = false; overflow = Zeros; int latencyMs = 0; for( char** arg = argv + 1; arg < argv + argc; ++arg ) { char* option, *strvalue; if( !parseOpt( *arg, &option, &strvalue ) ) { name = *arg; } else if( strvalue ) { int decvalue = 0; ::sscanf( strvalue, "%d", &decvalue ); if( !::strcmp( option, "rate") ) rate = decvalue; else if( !::strcmp( option, "channels" ) ) channels = decvalue; else if( !::strcmp( option, "latency-msec" ) ) latencyMs = decvalue; else if( !::strcmp( option, "buffer-frames" ) ) bufferFrames = decvalue; else if( !::strcmp( option, "format" ) ) { if( !::strcmp( strvalue, "s16" ) || !::strcmp( strvalue, "s16le" ) || !::strcmp( strvalue, "s16ne" ) ) format = Int16; else if( !::strcmp( strvalue, "float32" ) || !::strcmp( strvalue, "float32le" ) || !::strcmp( strvalue, "float32ne" ) ) format = Float32; else return EINVAL; } else if( !::strcmp( option, "overflow" ) ) { if( !::strcmp( strvalue, "zeros" ) ) overflow = Zeros; else if( !::strcmp( strvalue, "noise" ) ) overflow = Noise; else if( !::strcmp( strvalue, "discard" ) ) overflow = Discard; else return EINVAL; } else if( !::strcmp( option, "raw" ) ) raw = decvalue; else if( !::strcmp( option, "eof-on-idle" ) ) eofOnIdle = decvalue; else return EINVAL; } else { if( !::strcmp( option, "playback" ) ) mode = Playback; else if( !::strcmp( option, "record" ) ) mode = Record; else if( !::strcmp( option, "raw" ) ) raw = true; else if( !::strcmp( option, "eof-on-idle" ) ) eofOnIdle = true; else if( !::strcmp( option, "no-eof-on-idle" ) ) eofOnIdle = false; else if( !::strcmp( option, "posix-pipe" ) ) posixPipe = true; else return EINVAL; } } if( !name || !*name ) return EINVAL; if( rate < 1 ) return EINVAL; if( channels < 1 ) return EINVAL; switch( format ) { case Float32: byteWidth = 4; break; case Int16: byteWidth = 2; break; default: return EDEVERR; } if( bufferFrames < 2 ) return EINVAL; latencyFrames = ( latencyMs * rate + 1 ) / 1000; if( latencyFrames < 0 ) return EINVAL; if( posixPipe ) eofOnIdle = true; return 0; } int VpcmProperties::print( char* buf, int len, const char* sep ) const { if( !sep ) sep = " --"; int pos = 0; const char* pMode = "?"; switch( mode ) { case Playback: pMode = "playback"; break; case Record: pMode = "record"; break; } const char* pFormat = "?"; switch( format ) { case Int16: pFormat = "s16le"; break; case Float32: pFormat = "float32le"; break; } const char* pOverflow = "?"; switch( overflow ) { case Zeros: pOverflow = "zeros"; break; case Noise: pOverflow = "noise"; break; case Discard: pOverflow = "discard"; break; } pos += ::snprintf( buf + pos, len - pos, "%s%s" "%srate=%d" "%schannels=%d" "%sbuffer-frames=%d" "%slatency-msec=%d" "%sformat=%s" "%soverflow=%s" , sep, pMode, sep, rate, sep, channels, sep, bufferFrames, sep, rate ? ( latencyFrames * 1000 ) / rate : 0, sep, pFormat, sep, pOverflow ); if( raw ) pos += ::snprintf( buf + pos, len - pos, "%s%s", sep, "raw" ); if( posixPipe ) pos += ::snprintf( buf + pos, len - pos, "%s%s", sep, "posix-pipe" ); else if( !eofOnIdle ) pos += ::snprintf( buf + pos, len - pos, "%s%s", sep, "no-eof-on-idle" ); return pos; }
4,459
C++
.cpp
194
17.618557
77
0.52937
SimulPiscator/vpcm
35
3
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,623
VpcmAudioEngine.cpp
SimulPiscator_vpcm/Source/VpcmAudioEngine.cpp
#include "VpcmAudioEngine.h" #include "VpcmAudioDevice.h" #include "FloatEmu.h" #include <IOKit/audio/IOAudioLevelControl.h> #include <IOKit/audio/IOAudioToggleControl.h> #include <IOKit/audio/IOAudioDefines.h> #include <IOKit/IOTimerEventSource.h> #include <sys/fcntl.h> #include <sys/uio.h> #include <sys/systm.h> #include <sys/kauth.h> #define INT64_1E9 1000000000LL #ifndef FIONWRITE # define FIONWRITE _IOR('f', 119, int) #endif #ifndef FIONSPACE # define FIONSPACE _IOR('f', 118, int) #endif #define EOF 0x00010000 #define CLOSING 0x00020000 #define TERMINATING 0x00040000 bool VpcmAudioEngine::Buffer::init( int bufferBytes ) { int flags = kIOMemoryPhysicallyContiguous | kIOMemoryThreadSafe; pDesc = IOBufferMemoryDescriptor::withOptions( flags, bufferBytes, 4 ); if( !pDesc ) return false; begin.v = pDesc->getBytesNoCopy(); if( !begin.v ) return false; end.c = begin.c + bufferBytes; ::bzero( begin.c, bufferBytes ); return true; } void VpcmAudioEngine::Buffer::free() { if( pDesc ) { pDesc->release(); pDesc = 0; } begin.c = 0; end.c = 0; } namespace { IOAudioControl* createVolumeControl( int idx, int usage, int initialValue ) { return IOAudioLevelControl::createVolumeControl( initialValue, -15, 0, -((15*6)<<16), 0, kIOAudioControlChannelIDAll, kIOAudioControlChannelNameAll, idx, usage ); } IOAudioControl* createMuteControl( int idx, int usage, int initialValue ) { return IOAudioToggleControl::createMuteControl( initialValue, kIOAudioControlChannelIDAll, kIOAudioControlChannelNameAll, idx, usage ); } } // namespace const VpcmAudioEngine::ControlDef VpcmAudioEngine::sAudioControls[] = { { &createVolumeControl, kIOAudioControlUsageInput, 0, &VpcmAudioEngine::mGain }, { &createVolumeControl, kIOAudioControlUsageOutput, 0, &VpcmAudioEngine::mVolume }, { &createMuteControl, kIOAudioControlUsageInput, 0, &VpcmAudioEngine::mMuteInput }, { &createMuteControl, kIOAudioControlUsageOutput, 0, &VpcmAudioEngine::mMuteOutput }, }; IOReturn VpcmAudioEngine::onControlChanged( IOAudioControl* pControl, SInt32, SInt32 newValue ) { this->*sAudioControls[pControl->getControlID()].pValue = newValue; return kIOReturnSuccess; } namespace { IOAudioStreamFormat sFormats[] = { { 0, kIOAudioStreamSampleFormatLinearPCM, kIOAudioStreamNumericRepresentationSignedInt, 16, 16, 0, kIOAudioStreamByteOrderLittleEndian, TRUE, VpcmProperties::Int16 }, { 0, kIOAudioStreamSampleFormatLinearPCM, kIOAudioStreamNumericRepresentationIEEE754Float, 32, 32, 0, kIOAudioStreamByteOrderLittleEndian, TRUE, VpcmProperties::Float32 }, }; } // namespace OSDefineMetaClassAndStructors( VpcmAudioEngine, IOAudioEngine ) bool VpcmAudioEngine::init( const VpcmProperties* pProperties ) { ::bzero( &mDevIOSel, sizeof(mDevIOSel) ); mDevIOPtr.c = 0; mDevIOBytesAvail = -1; mIOState = 0; mWritePosition = 0; mNextTime.t = 0; mBufferDuration.t = 0; mpTimer = 0; mProperties = *pProperties; const char* p = mProperties.name; if( p ) { size_t size = ::strlen(p) + 1; mProperties.name = new char[size]; ::memcpy( mProperties.name, p, size ); } return IOAudioEngine::init( 0 ); } void VpcmAudioEngine::free() { mBuffer.free(); delete[] mProperties.name; mProperties.name = 0; IOAudioEngine::free(); } bool VpcmAudioEngine::initHardware( IOService* pProvider ) { if( !IOAudioEngine::initHardware( pProvider ) ) return false; int err = DevfsDeviceNode::devCreate( ENGINE_NODE_NAME ); if( err ) return false; if( mProperties.name ) IOAudioEngine::setDescription( mProperties.name ); if( mProperties.rate < 1 ) return false; ::nanoseconds_to_absolutetime( ( mProperties.bufferFrames * INT64_1E9 ) / mProperties.rate, &mBufferDuration.t ); int bufferBytes = mProperties.bufferFrames * mProperties.channels * mProperties.byteWidth; if( !mBuffer.init( bufferBytes ) ) return false; IOTimerEventSource::Action action = OSMemberFunctionCast( IOTimerEventSource::Action, this, &VpcmAudioEngine::onBufferTimer ); mpTimer = IOTimerEventSource::timerEventSource( this, action ); if (!mpTimer) return false; if( !workLoop ) return false; workLoop->addEventSource( mpTimer ); IOAudioStreamFormat* pFormat = sFormats, *formatsEnd = sFormats + sizeof(sFormats)/sizeof(*sFormats); while( pFormat->fDriverTag != mProperties.format && pFormat < formatsEnd ) ++pFormat; if( pFormat == formatsEnd ) return false; IOAudioSampleRate rate = { mProperties.rate, 0 }; IOAudioStreamDirection d[] = { kIOAudioStreamDirectionOutput, kIOAudioStreamDirectionInput }; for( int i = 0; i < sizeof(d)/sizeof(*d); ++i ) { bool create = false; switch( d[i] ) { case kIOAudioStreamDirectionInput: create = ( mProperties.mode & VpcmProperties::Record ); break; case kIOAudioStreamDirectionOutput: create = ( mProperties.mode & VpcmProperties::Playback ); break; } if( create ) { IOAudioStream* pStream = new IOAudioStream; if( !pStream || !pStream->initWithAudioEngine( this, d[i], 1 ) ) return false; pFormat->fNumChannels = mProperties.channels; pStream->addAvailableFormat( pFormat, &rate, &rate ); pStream->setFormat( pFormat ); pStream->setSampleBuffer( mBuffer.begin.c, mBuffer.bytes() ); addAudioStream( pStream ); pStream->release(); } } setSampleRate( &rate ); setNumSampleFramesPerBuffer( mProperties.bufferFrames ); setSampleLatency( mProperties.latencyFrames ); setMixClipOverhead( 20 ); for( int i = 0; i < sizeof(sAudioControls)/sizeof(*sAudioControls); ++i ) { const ControlDef* pDef = sAudioControls + i; IOAudioControl* pControl = pDef->create( i, pDef->usage, pDef->initialValue ); if( !pControl ) return false; IOAudioControl::IntValueChangeHandler onChange = OSMemberFunctionCast ( IOAudioControl::IntValueChangeHandler, this, &VpcmAudioEngine::onControlChanged ); pControl->setValueChangeHandler( onChange, this ); addDefaultAudioControl( pControl ); pControl->release(); }; return true; } bool VpcmAudioEngine::terminate( IOOptionBits options ) { if( mIOState & FMASK ) { const int timeout = 5000, sleep = 5; // ms int time = 0; while( time < timeout && !__sync_bool_compare_and_swap( &mIOState, CLOSING, TERMINATING ) ) { mIOState |= EOF; ::selwakeup( &mDevIOSel ); mDevIOWait.Wakeup(); ::IOSleep( sleep ); time += sleep; } if( time > timeout ) return false; } if( devDestroy() != 0 ) return false; return IOAudioEngine::terminate( options ); } void VpcmAudioEngine::stopEngineAtPosition( IOAudioEnginePosition* endingPosition ) { if( mProperties.eofOnIdle && mIOState && this->numActiveUserClients == 0 ) { mIOState |= EOF; ::selwakeup( &mDevIOSel ); mDevIOWait.Wakeup(); } IOAudioEngine::stopEngineAtPosition( endingPosition ); } IOReturn VpcmAudioEngine::performAudioEngineStart() { Time now; clock_get_uptime( &now.t ); this->takeTimeStamp( false, &now.a ); mNextTime.t = now.t + mBufferDuration.t; mpTimer->wakeAtTime( mNextTime.a ); mDevIOBytesAvail = -1; mWritePosition = 0; return kIOReturnSuccess; } IOReturn VpcmAudioEngine::performAudioEngineStop() { mpTimer->cancelTimeout(); return kIOReturnSuccess; } IOReturn VpcmAudioEngine::stopAudioEngine() { mDevIOBytesAvail = -1; return IOAudioEngine::stopAudioEngine(); } void VpcmAudioEngine::onBufferTimer( IOTimerEventSource* ) { Time now; clock_get_uptime( &now.t ); while( mNextTime.t <= now.t ) mNextTime.t += mBufferDuration.t; takeTimeStamp( true, &now.a ); mpTimer->wakeAtTime( mNextTime.a ); } UInt32 VpcmAudioEngine::getCurrentSampleFrame() { return mWritePosition; } void VpcmAudioEngine::resetClipPosition( IOAudioStream*, UInt32 ) { mDevIOBytesAvail = -1; } IOReturn VpcmAudioEngine::eraseOutputSamples( const void* mixBuf, void*, UInt32 firstSampleFrame, UInt32 numSampleFrames, const IOAudioStreamFormat* streamFormat, IOAudioStream* audioStream ) { // We want the mix buffer to be erased but not the sample buffer. return IOAudioEngine::eraseOutputSamples( mixBuf, 0, firstSampleFrame, numSampleFrames, streamFormat, audioStream ); } IOReturn VpcmAudioEngine::clipOutputSamples( const void* inpSrc, void*, UInt32 inFrameOffset, UInt32 inFrameCount, const IOAudioStreamFormat*, IOAudioStream* ) { int channels = mProperties.channels, valueOffset = channels * inFrameOffset, valueCount = channels * inFrameCount, bytesPerValue = mProperties.byteWidth; DataPtr src = { const_cast<void*>( inpSrc ) }, dest = mBuffer.begin; src.f += valueOffset; dest.c += valueOffset * bytesPerValue; if( mMuteOutput ) ::bzero( dest.c, valueCount * bytesPerValue ); else { if( !mProperties.raw ) { FloatEmu::Scale( src.f, valueCount, mVolume ); FloatEmu::Clip( src.f, valueCount ); } switch( mProperties.format ) { case VpcmProperties::Int16: FloatEmu::FloatToInt16Copy( dest.s, src.f, valueCount ); break; case VpcmProperties::Float32: ::memcpy( dest.c, src.c, valueCount * bytesPerValue ); break; } } if( mDevIOBytesAvail < 0 ) { mDevIOPtr = dest; mDevIOBytesAvail = 0; } if( __sync_add_and_fetch( &mDevIOBytesAvail, valueCount * bytesPerValue ) > 0 ) ::selwakeup( &mDevIOSel ); mDevIOWait.Wakeup(); mWritePosition = ( inFrameOffset + inFrameCount ) % numSampleFramesPerBuffer; return kIOReturnSuccess; } IOReturn VpcmAudioEngine::convertInputSamples( const void*, void* inpDest, UInt32 inFrameOffset, UInt32 inFrameCount, const IOAudioStreamFormat*, IOAudioStream* ) { int channels = mProperties.channels, valueOffset = channels * inFrameOffset, valueCount = channels * inFrameCount, bytesPerValue = mProperties.byteWidth; DataPtr src = mBuffer.begin, dest = { inpDest }; src.c += valueOffset * bytesPerValue; if( mMuteInput ) ::bzero( dest.f, valueCount * sizeof(float) ); else { int invalid = 0; if( mDevIOBytesAvail < 0 ) invalid = valueCount; else { int valid = ( mBuffer.bytes() - mDevIOBytesAvail ) / bytesPerValue; invalid = max( 0, valueCount - valid ); } ::bzero( dest.f, invalid * sizeof(float) ); dest.f += invalid; src.c += invalid * bytesPerValue; valueCount -= invalid; switch( mProperties.format ) { case VpcmProperties::Int16: FloatEmu::Int16ToFloatCopy( dest.f, src.s, valueCount ); break; case VpcmProperties::Float32: ::memcpy( dest.c, src.c, valueCount * bytesPerValue ); break; } if( !mProperties.raw ) { FloatEmu::Scale( dest.f, valueCount, mGain ); FloatEmu::Clip( dest.f, valueCount ); } } if( mDevIOBytesAvail < 0 ) { src.c += valueCount * bytesPerValue; if( src.c >= mBuffer.end.c ) src = mBuffer.begin; mDevIOPtr = src; mDevIOBytesAvail = mBuffer.bytes(); } if( __sync_add_and_fetch( &mDevIOBytesAvail, valueCount * bytesPerValue ) > 0 ) ::selwakeup( &mDevIOSel ); mDevIOWait.Wakeup(); return kIOReturnSuccess; } #if TARGET_OS_OSX && TARGET_CPU_ARM64 bool VpcmAudioEngine::driverDesiresHiResSampleIntervals() { return false; } #endif int VpcmAudioEngine::getIOFlags() const { return mIOState & FMASK; } int VpcmAudioEngine::devOpen( int flags ) { int err = 0; if( mProperties.mode == VpcmProperties::Playback && (flags & FWRITE) ) err = ENOTSUP; else if( mProperties.mode == VpcmProperties::Record && (flags & FREAD) ) err = ENOTSUP; else if( (flags & FREAD) && (flags & FWRITE) ) err = ENOTSUP; else if( !__sync_bool_compare_and_swap( &mIOState, 0, flags ) ) err = EACCES; else err = workLoop->runAction( OSMemberFunctionCast( IOWorkLoop::Action, this, &VpcmAudioEngine::onDevOpen ), this ); return err; } int VpcmAudioEngine::onDevOpen() { mDevIOBytesAvail = -1; ::memset( mBuffer.begin.c, 0, mBuffer.bytes() ); return 0; } int VpcmAudioEngine::devClose() { mIOState = CLOSING; ::selthreadclear( &mDevIOSel ); return workLoop->runAction( OSMemberFunctionCast( IOWorkLoop::Action, this, &VpcmAudioEngine::onDevClose ), this ); } int VpcmAudioEngine::onDevClose() { mIOState &= ~CLOSING; return 0; } int VpcmAudioEngine::devIoctl( u_long cmd, caddr_t data ) { int err = 0, arg = *(int*)data; int64_t result = 0; switch( cmd ) { case FIONBIO: if( arg ) __sync_or_and_fetch( &mIOState, FNONBLOCK ); else __sync_and_and_fetch( &mIOState, ~FNONBLOCK ); result = arg; break; case FIONREAD: result = mDevIOBytesAvail < 0 ? 0 : min( mDevIOBytesAvail, mBuffer.bytes() ); break; case FIONWRITE: result = mDevIOBytesAvail < 0 ? 0 : mBuffer.bytes() - min( mDevIOBytesAvail, mBuffer.bytes() ); break; case FIONSPACE: result = mDevIOBytesAvail < 0 ? 0 : min( mDevIOBytesAvail, mBuffer.bytes() ); break; default: err = ENOTTY; } if( !err ) *(int*)data = (int)result; return err; } int VpcmAudioEngine::devSelect( int, void* wql, struct proc* p ) { if( mDevIOBytesAvail > 0 ) return 1; ::selrecord( p, &mDevIOSel, wql ); return 0; } int VpcmAudioEngine::devRead( struct uio* uio ) { return devReadWrite( uio ); } int VpcmAudioEngine::devWrite( struct uio* uio ) { return devReadWrite( uio ); } int VpcmAudioEngine::devReadWrite( struct uio* uio ) { user_ssize_t resid = ::uio_resid( uio ); int rw = ::uio_rw( uio ); if( resid < 1 ) return 0; while( mDevIOBytesAvail < 1 ) { if( mProperties.posixPipe && numActiveUserClients < 1 ) return EPIPE; if( mIOState & EOF ) return rw == UIO_READ ? 0 : EPIPE; if( mIOState & FNONBLOCK ) return EWOULDBLOCK; if( mIOState & TERMINATING ) return EDEVERR; int err = mDevIOWait.Sleep(); if( err ) return err; } if( mDevIOBytesAvail > mBuffer.bytes() && mProperties.overflow == VpcmProperties::Discard ) mDevIOBytesAvail = mBuffer.bytes(); int avail = mDevIOBytesAvail, transferred = 0, err = 0; if( avail > mBuffer.bytes() ) { uint32_t fill[256] = { 0 }; while( avail > mBuffer.bytes() && resid > 0 && !err ) { if( rw == UIO_READ && mProperties.overflow == VpcmProperties::Noise ) for( size_t i = 0; i < sizeof(fill)/sizeof(*fill); ++i ) fill[i] = ::random(); int64_t bytes = min( avail - mBuffer.bytes(), sizeof(fill) ); err = ::uiomove( reinterpret_cast<char*>( fill ), (int)bytes, uio ); user_ssize_t newResid = ::uio_resid( uio ); int bytesTransferred = int( resid - newResid ); avail -= bytesTransferred; transferred += bytesTransferred; resid = newResid; } } while( avail > 0 && resid > 0 && !err ) { int64_t bytes = min( avail, mBuffer.end.c - mDevIOPtr.c ); err = ::uiomove( mDevIOPtr.c, (int)bytes, uio ); user_ssize_t newResid = ::uio_resid( uio ); int bytesTransferred = int( resid - newResid ); DataPtr p = { mDevIOPtr.c + bytesTransferred }; if( p.c > mBuffer.end.c ) return EDEVERR; if( p.c == mBuffer.end.c ) p = mBuffer.begin; mDevIOPtr = p; avail -= bytesTransferred; transferred += bytesTransferred; resid = newResid; } __sync_sub_and_fetch( &mDevIOBytesAvail, transferred ); return err; }
15,686
C++
.cpp
550
24.770909
182
0.696264
SimulPiscator/vpcm
35
3
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,624
FloatEmu.cpp
SimulPiscator_vpcm/Source/FloatEmu.cpp
#include "FloatEmu.h" namespace FloatEmu { const unsigned int expShift = 23, expMask = 0xff << expShift, expBias = 127, signMask = 1 << 31, mantMask = ~( expMask | signMask ), implicitBit = 1 << expShift; template<class T> T min( T a, T b ) { return a < b ? a : b; } template<class T> T max( T a, T b ) { return a > b ? a : b; } // This function uses fast integer operations in order to scale unit-range floating-point values // by factors of 2^(k/2) for negative integer k. // This corresponds to 16 steps between -96 and 0 dB, and is sufficient for a simple volume control. void Scale( float* ioData, unsigned int inCount, signed char k ) { const int kHalf = -k >> 1, kOdd = k & 1; union { float* f; unsigned int* i; } p = { ioData }; while( p.f < ioData + inCount ) { int exp = ( *p.i & ~signMask ) >> expShift; if( exp ) // if( fabs(*p.f) > 1.1754942e-38 ) { int expAdd = -kHalf; if( kOdd ) { unsigned int mant = *p.i & mantMask; mant |= implicitBit; // assert( fabs(256/181-sqrt(2)) < 2e-4 ); mant = ( mant * 181 + (1<<7) ) >> 8; // mant = round( mant / sqrt(2) ); if( !( mant & implicitBit ) ) { mant <<= 1; --expAdd; } mant &= mantMask; *p.i = ( *p.i & ~mantMask ) | mant; } if( expAdd ) { exp += expAdd; *p.i &= ~expMask; *p.i |= exp << expShift; } } ++p.f; } } void Clip( float* ioData, unsigned int inCount ) { const unsigned int signMask = 1 << 31; const union { float f; unsigned int i; } floatOne = { 1.0f }; union { float* f; unsigned int* i; } p = { ioData }; while( p.f < ioData + inCount ) { if( ( *p.i & ~signMask ) > floatOne.i ) // if( fabs(*p.f) > 1 || isnan(*p.f) ) *p.i = ( *p.i & signMask ) | floatOne.i; // *p.f = sign(*p.f); ++p.f; } } void FloatToInt16Copy( short* outData, const float* inData, unsigned int inCount ) { union { const float* f; const unsigned int* i; } p = { inData }; short* q = outData; while( p.f < inData + inCount ) { unsigned int exp = ( *p.i >> expShift ) & 0xff; if( exp ) // if( fabs(*p.f) > 1.1754942e-38 ) { unsigned int mant = 0; if( exp >= expBias ) mant = implicitBit; else { mant = ( *p.i & mantMask ) | implicitBit; mant >>= expBias - exp; } mant >>= 7; mant += 1; // round to nearest integer mant >>= 1; if( *p.i & signMask ) *q = -min<int>( mant, 0x8000 ); else *q = min<int>( mant, 0x7fff ); } else *q = 0; ++p.f; ++q; } } void Int16ToFloatCopy( float* outData, const short* inData, unsigned int inCount ) { union { float* f; unsigned int* i; } q = { outData }; const short* p = inData; while( p < inData + inCount ) { unsigned int sign = *p < 0 ? signMask : 0; unsigned int i = sign ? -*p : *p; if( i ) { int exp = expBias; i <<= 8; while( !( i & implicitBit ) ) { i <<= 1; --exp; } i &= ~implicitBit; i |= exp << expShift; i |= sign; } *q.i++ = i; ++p; } } } // namespace
3,344
C++
.cpp
121
21.652893
100
0.507007
SimulPiscator/vpcm
35
3
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,625
VpcmAudioDevice.cpp
SimulPiscator_vpcm/Source/VpcmAudioDevice.cpp
#include "VpcmAudioDevice.h" #include "VpcmAudioEngine.h" #include <IOKit/audio/IOAudioControl.h> #include <IOKit/audio/IOAudioLevelControl.h> #include <IOKit/audio/IOAudioToggleControl.h> #include <IOKit/audio/IOAudioDefines.h> #include <IOKit/IOLib.h> #include <IOKit/IOWorkLoop.h> #include <IOKit/IOCommandGate.h> #include <sys/fcntl.h> #include <sys/proc.h> #include <sys/systm.h> #include <sys/uio.h> #include <sys/conf.h> #include <miscfs/devfs/devfs.h> namespace { const int cCommandBufferSize = 2048; bool isws( char c ) { for( const char* p = " \t\n"; *p; ++p ) if( c == *p ) return true; return false; } char** buildArgv( char* pCmdline, int* pArgc ) { int argc = 0; bool withinArg = false, withinDoubleQuotes = false, withinSingleQuotes = false; char* p = pCmdline, *q = p; while( *p ) { if( !isws( *p ) && !withinArg ) withinArg = true; if( isws( *p ) && !withinDoubleQuotes && !withinSingleQuotes ) { if( withinArg ) { withinArg = false; *q++ = 0; ++argc; } ++p; } else switch( *p ) { case '"': if( withinSingleQuotes ) *q++ = *p++; else { withinDoubleQuotes = !withinDoubleQuotes; ++p; } break; case '\'': if( withinDoubleQuotes ) *q++ = *p++; else { withinSingleQuotes = !withinSingleQuotes; ++p; } break; case '\\': if( !withinSingleQuotes && *(p+1) ) ++p; /* fall through */ default: *q++ = *p++; } } if( withinArg ) { *q++ = 0; ++argc; } p = pCmdline; char** argv = new char*[argc], **pArg = argv; while( pArg < argv + argc ) { *pArg++ = p; while( *p ) ++p; ++p; } *pArgc = argc; return argv; } } // namespace OSDefineMetaClassAndStructors( VpcmAudioDevice, IOAudioDevice ) bool VpcmAudioDevice::init( OSDictionary *properties ) { if( !IOAudioDevice::init( properties ) ) return false; if( DevfsDeviceNode::devCreate( CONTROL_NODE_NAME, CONTROL_NODE_PERMISSIONS, UID_ROOT, GID_STAFF ) ) return false; mpOutputBuffer = 0; return true; } void VpcmAudioDevice::free() { delete[] mpOutputBuffer; IOAudioDevice::free(); } bool VpcmAudioDevice::initHardware( IOService *provider ) { if (!IOAudioDevice::initHardware(provider)) return false; setDeviceName( DEVICE_GUI_NAME ); setDeviceShortName( DEVICE_SHORT_GUI_NAME ); setManufacturerName( MANUFACTURER_NAME ); setDeviceTransportType( kIOAudioDeviceTransportTypeVirtual ); setDeviceCanBeDefault( kIOAudioDeviceCanBeDefaultInput | kIOAudioDeviceCanBeDefaultOutput ); return true; } int VpcmAudioDevice::devOpen( int flags ) { Synchronization::Lock lock( mMutex ); int result = 0; if( mIOFlags ) result = EACCES; else if( (flags & FNONBLOCK) ) result = ENOTSUP; if( result == 0 ) { mIOFlags = flags; if( !mpOutputBuffer ) { mpOutputBuffer = new char[cCommandBufferSize]; *mpOutputBuffer = 0; } if( !( flags & FWRITE ) && !*mpOutputBuffer ) printInfo( 0, 0 ); } return result; } int VpcmAudioDevice::devClose() { Synchronization::Lock lock( mMutex ); mIOFlags = 0; return 0; } int VpcmAudioDevice::devRead( struct uio* uio ) { Synchronization::Lock lock( mMutex ); int error = 0; int count = min( (int)uio_resid( uio ), (int)::strlen( mpOutputBuffer ) ); if( count > 0 ) error = ::uiomove( mpOutputBuffer, count, uio ); if( !error ) *mpOutputBuffer = 0; return error; } int VpcmAudioDevice::devWrite( struct uio* uio ) { Synchronization::Lock lock( mMutex ); int error = 0; char* buf = 0; int count = min( (int)uio_resid( uio ), cCommandBufferSize - 1 ); if( count > 0 ) buf = new char[count+1]; if( buf ) { buf[count] = 0; error = ::uiomove( buf, count, uio ); if( !error ) { int argc = 0; char** argv = buildArgv( buf, &argc ); error = workLoop->runAction( OSMemberFunctionCast( IOWorkLoop::Action, this, &VpcmAudioDevice::executeCommand ), this, &argc, argv ); delete[] argv; } delete[] buf; } return error; } int VpcmAudioDevice::executeCommand( int* pArgc, char** argv ) { if( *pArgc < 1 ) return 0; int result = ENOTSUP; if( !strcmp( *argv, "info" ) ) result = printInfo( *pArgc, argv ); else if( !strcmp( *argv, "create" ) ) result = createEngine( *pArgc, argv ); else if( !strcmp( *argv, "delete" ) ) result = deleteEngine( *pArgc, argv ); else if( !strcmp( *argv, "name" ) ) result = nameEngine( *pArgc, argv ); else if( !strcmp( *argv, "describe" ) ) result = describeEngine( *pArgc, argv ); return result; } int VpcmAudioDevice::printInfo( int, char** ) { char* buf = mpOutputBuffer; int len = cCommandBufferSize; int pos = 0; pos += snprintf( buf + pos, len - pos, "%s, built %s %s\n", DEVICE_GUI_NAME, __DATE__, __TIME__ ); int count = audioEngines->getCount(); if( count == 0 ) pos += snprintf( buf + pos, len - pos, "No device pairs.\n" ); else pos += snprintf( buf + pos, len - pos, "Number of device pairs: %d\n", count ); int i = 0, hidden = 0; OSObject* pObject = 0; while( ( pObject = audioEngines->getObject( i++ ) ) ) { VpcmAudioEngine* pEngine = OSDynamicCast( VpcmAudioEngine, pObject ); if( pEngine ) { if( pEngine->devAccess( S_IREAD ) == 0 ) pos += printEngineStatus( pEngine, buf + pos, len - pos ); else ++hidden; } } if( hidden > 0 ) pos += ::snprintf( buf + pos, len - pos, "Some device pairs hidden due to insufficient permissions.\n" ); return 0; } int VpcmAudioDevice::createEngine( int argc, char** argv ) { if( argc < 2 ) return EINVAL; VpcmProperties prop = { 0 }; int err = prop.parse( argc, argv ); if( err ) return err; if( findEngine( prop.name ) >= 0 ) return EEXIST; VpcmAudioEngine* pEngine = new VpcmAudioEngine; if( !pEngine ) return ENOMEM; if( !pEngine->init( &prop ) ) return EDEVERR; if( activateAudioEngine( pEngine ) != 0 ) return EDEVERR; pEngine->release(); return 0; } int VpcmAudioDevice::deleteEngine( int argc, char** argv ) { if( argc < 2 ) return EINVAL; int idx = findEngine( argv[1] ); if( idx < 0 ) return ENOENT; VpcmAudioEngine* pEngine = OSDynamicCast( VpcmAudioEngine, audioEngines->getObject( idx ) ); if( !pEngine ) return ENOENT; int err = pEngine->devAccess( S_IWRITE ); if( !err ) { pEngine->stopAudioEngine(); pEngine->terminate( kIOServiceRequired ); pEngine->detach( this ); audioEngines->removeObject( idx ); } return err; } int VpcmAudioDevice::nameEngine( int argc, char** argv ) { if( argc < 2 ) return EINVAL; int idx = findEngine( argv[1] ); if( idx < 0 ) return ENOENT; VpcmAudioEngine* pEngine = OSDynamicCast( VpcmAudioEngine, audioEngines->getObject( idx ) ); if( !pEngine ) return ENOENT; int err = pEngine->devAccess( S_IREAD ); if( err ) return err; int pos = 0; pos += ::snprintf( mpOutputBuffer + pos, cCommandBufferSize - pos, "/dev/%s\n", pEngine->devName() ); return 0; } int VpcmAudioDevice::describeEngine( int argc, char** argv ) { if( argc < 2 ) return EINVAL; int idx = findEngine( argv[1] ); if( idx < 0 ) return ENOENT; VpcmAudioEngine* pEngine = OSDynamicCast( VpcmAudioEngine, audioEngines->getObject( idx ) ); if( !pEngine ) return ENOENT; int err = pEngine->devAccess( S_IREAD ); if( err ) return err; int pos = 0; pos += ::snprintf( mpOutputBuffer + pos, cCommandBufferSize - pos, "%s", pEngine->getProperties()->name ); pos += pEngine->getProperties()->print( mpOutputBuffer + pos, cCommandBufferSize - pos ); pos += ::snprintf( mpOutputBuffer + pos, cCommandBufferSize - pos, "\n" ); return 0; } int VpcmAudioDevice::findEngine( const char* inName ) const { int i = -1; VpcmAudioEngine* pEngine = 0; OSObject* pObject = 0; while( !pEngine && ( pObject = audioEngines->getObject( ++i ) ) ) { pEngine = OSDynamicCast( VpcmAudioEngine, pObject ); if( pEngine && ::strcmp( pEngine->getProperties()->name, inName ) && ::strcmp( pEngine->devName(), inName ) ) pEngine = 0; } return pEngine ? i : -1; } int VpcmAudioDevice::printEngineStatus( VpcmAudioEngine* pEngine, char* buf, int len ) { int pos = 0; OSObject* p = pEngine->outputStreams->getObject( 0 ); if( !p ) p = pEngine->inputStreams->getObject( 0 ); IOAudioStream* pStream = OSDynamicCast( IOAudioStream, p ); if( !pStream ) return 0; const char* dir = "?"; switch( pEngine->getProperties()->mode ) { case VpcmProperties::Playback: dir = "->"; break; case VpcmProperties::Record: dir = "<-"; break; } pos += ::snprintf( buf + pos, len - pos, "\"%s\" %s /dev/%s\n", pEngine->getProperties()->name, dir, pEngine->devName() ); uint32_t numClients = pStream->numClients; const char* state = "closed"; if( pEngine->getIOFlags() & FREAD ) state = "open for reading"; else if( pEngine->getIOFlags() & FWRITE ) state = "open for writing"; pos += ::snprintf( buf + pos, len - pos, " CoreAudio clients: %d\n" " Device node state: %s\n", numClients, state ); pos += ::snprintf( buf + pos, len - pos, " Configuration:" ); pos += pEngine->getProperties()->print( buf + pos, len - pos, "\n\t--" ); pos += ::snprintf( buf + pos, len - pos, "\n" ); return pos; }
9,638
C++
.cpp
369
22.227642
124
0.631402
SimulPiscator/vpcm
35
3
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,626
Synchronization.cpp
SimulPiscator_vpcm/Source/Synchronization.cpp
#include "Synchronization.h" #include <sys/systm.h> namespace Synchronization { // Mutex lck_grp_attr_t* Mutex::sLockGrpAttr = 0; lck_grp_t* Mutex::sLockGrp = 0; int Mutex::sInstances = 0; Mutex::Mutex() : mMtxAttr( 0 ), mMtx( 0 ), mValid( false ) { if( sInstances++ == 0 ) { sLockGrpAttr = ::lck_grp_attr_alloc_init(); if( sLockGrpAttr ) { ::lck_grp_attr_setstat( sLockGrpAttr ); sLockGrp = ::lck_grp_alloc_init( __FUNCTION__, sLockGrpAttr ); } } mMtxAttr = ::lck_attr_alloc_init(); mMtx = ::lck_mtx_alloc_init( sLockGrp, mMtxAttr ); mValid = true; } Mutex::~Mutex() { mValid = false; ::wakeup( this ); if( mMtx ) ::lck_mtx_free( mMtx, sLockGrp ); if( mMtxAttr ) ::lck_attr_free( mMtxAttr ); if( --sInstances == 0 ) { if( sLockGrp ) ::lck_grp_free( sLockGrp ); if( sLockGrpAttr ) ::lck_grp_attr_free( sLockGrpAttr ); } } int Mutex::Sleep( int timeoutMs ) { if( !mValid ) return EDEVERR; struct timespec t = { 0, 0 }; if( timeoutMs > 0 ) { t.tv_sec = timeoutMs / 1000; t.tv_nsec = ( timeoutMs % 1000 ) * 1000 * 1000 + 1; } ::lck_mtx_lock( mMtx ); return ::msleep( this, mMtx, PCATCH | PDROP, __FUNCTION__, &t ); } void Mutex::Wakeup() { if( mValid ) ::wakeup( this ); } // Lock Lock::Lock() : mpMutex( 0 ) { } Lock::Lock( Mutex& m ) : mpMutex( &m ) { if( m.mValid ) ::lck_mtx_lock( mpMutex->mMtx ); } Lock::Lock( const Lock& other ) : mpMutex( other.mpMutex ) { other.mpMutex = 0; } Lock& Lock::operator=( const Lock& other ) { mpMutex = other.mpMutex; other.mpMutex = 0; return *this; } Lock::~Lock() { if( mpMutex && mpMutex->mValid ) ::lck_mtx_unlock( mpMutex->mMtx ); } } // namespace
1,739
C++
.cpp
91
16.461538
68
0.617359
SimulPiscator/vpcm
35
3
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,627
DevfsDeviceNode.cpp
SimulPiscator_vpcm/Source/DevfsDeviceNode.cpp
#include "DevfsDeviceNode.h" #include <sys/systm.h> #include <sys/conf.h> #include <sys/kauth.h> #include <sys/stat.h> #include <miscfs/devfs/devfs.h> extern "C" int seltrue( dev_t, int, void*, struct proc* ); struct cdevsw DevfsDeviceNode::sCdevsw = NO_CDEVICE; int DevfsDeviceNode::sMajor = -1; int DevfsDeviceNode::sInstanceCount = 0; DevfsDeviceNode* DevfsDeviceNode::sInstances[] = { 0 }; void DevfsDeviceNode::classInit() { sCdevsw.d_open = open; sCdevsw.d_close = close; sCdevsw.d_read = read; sCdevsw.d_write = write; sCdevsw.d_ioctl = ioctl; sCdevsw.d_select = select; sCdevsw.d_type = D_TTY; sMajor = ::cdevsw_isfree( -1 ); sMajor = ::cdevsw_add( sMajor, &sCdevsw ); } void DevfsDeviceNode::classFree() { ::cdevsw_remove( sMajor, &sCdevsw ); sMajor = -1; } DevfsDeviceNode::DevfsDeviceNode() : mpName( 0 ), mDev( 0 ), mNode( 0 ) { if( sInstanceCount++ == 0 ) classInit(); } DevfsDeviceNode::~DevfsDeviceNode() { devDestroy(); if( --sInstanceCount == 0 ) classFree(); } int DevfsDeviceNode::devCreate( const char* pNamePattern, int mode, int uid, int gid ) { if( !pNamePattern ) return EINVAL; if( uid < 0 ) mUid = ::kauth_getuid(); else mUid = uid; if( gid < 0 ) gid = ::kauth_getgid(); else mGid = gid; mMode = mode; int minor = 0; while( sInstances[minor] && minor < sMaxInstances ) ++minor; if( minor >= sMaxInstances ) return ENOMEM; mDev = ::makedev( sMajor, minor ); sInstances[minor] = this; size_t size = ::strlen(pNamePattern) + 4; mpName = new char[size]; if( !mpName ) return ENOMEM; int r = ::snprintf( mpName, size, pNamePattern, minor ); if( r < 0 || r >= size ) return EINVAL; mNode = ::devfs_make_node( mDev, DEVFS_CHAR, mUid, mGid, mMode, mpName ); if( !mNode ) return EDEVERR; return 0; } int DevfsDeviceNode::devDestroy() { if( mNode ) ::devfs_remove( mNode ); mNode = 0; int minor = ::minor(mDev); if( mDev != 0 && minor < sMaxInstances && sInstances[minor] == this ) sInstances[minor] = 0; delete[] mpName; mpName = 0; return 0; } int DevfsDeviceNode::devAccess( mode_t reqMode ) const { kauth_cred_t cred = ::kauth_cred_get(); if( ::kauth_cred_issuser( cred ) ) return 0; mode_t mode = (mMode & S_IRWXO) << 6; if( ::groupmember( mGid, cred ) ) mode |= (mMode & S_IRWXG) << 3; if( ::kauth_cred_getuid( cred ) == mUid ) mode |= (mMode & S_IRWXU); if( (reqMode & mode) == reqMode ) return 0; return EACCES; } DevfsDeviceNode* DevfsDeviceNode::getInstance( dev_t dev ) { if( ::major( dev ) != sMajor ) return 0; if( ::minor( dev ) < sMaxInstances ) return sInstances[::minor( dev )]; return 0; } int DevfsDeviceNode::open( dev_t dev, int flags, int, struct proc* ) { DevfsDeviceNode* p = getInstance( dev ); return p ? p->devOpen( flags ) : ENXIO; } int DevfsDeviceNode::close( dev_t dev, int, int, struct proc* ) { DevfsDeviceNode* p = getInstance( dev ); return p ? p->devClose() : ENXIO; } int DevfsDeviceNode::read( dev_t dev, struct uio *uio, int /*ioflag*/ ) { DevfsDeviceNode* p = getInstance( dev ); return p ? p->devRead( uio ) : ENXIO; } int DevfsDeviceNode::write( dev_t dev, struct uio *uio, int /*ioflag*/ ) { DevfsDeviceNode* p = getInstance( dev ); return p ? p->devWrite( uio ) : ENXIO; } int DevfsDeviceNode::ioctl( dev_t dev, u_long cmd, caddr_t pData, int /*flag*/, struct proc* ) { DevfsDeviceNode* p = getInstance( dev ); return p ? p->devIoctl( cmd, pData ) : ENXIO; } int DevfsDeviceNode::select( dev_t dev, int rw, void* wql, struct proc* proc ) { DevfsDeviceNode* p = getInstance( dev ); return p ? p->devSelect( rw, wql, proc ) : ENXIO; } int DevfsDeviceNode::devRead( struct uio* ) { return ENOTSUP; } int DevfsDeviceNode::devWrite( struct uio* ) { return ENOTSUP; } int DevfsDeviceNode::devIoctl( u_long, caddr_t ) { return ENOTTY; } int DevfsDeviceNode::devSelect( int, void*, struct proc* ) { return 1; }
4,009
C++
.cpp
170
21.135294
90
0.668679
SimulPiscator/vpcm
35
3
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,628
VpcmProperties.h
SimulPiscator_vpcm/Source/VpcmProperties.h
#ifndef VPCM_PROPERTIES_H #define VPCM_PROPERTIES_H #include <IOKit/audio/IOAudioEngine.h> struct VpcmProperties { int parse( int, char** ); int print( char*, int, const char* = 0 ) const; enum { None = 0, Playback = 1, Record = 2, Int16 = 0, Float32 = 1, Zeros = 0, Discard = 1, Noise = 2, }; char* name; int mode, overflow, format, byteWidth; bool raw, eofOnIdle, posixPipe; int bufferFrames, latencyFrames, channels, rate; }; #endif // VPCM_PROPERTIES_H
495
C++
.h
20
21.85
50
0.679406
SimulPiscator/vpcm
35
3
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,629
DevfsDeviceNode.h
SimulPiscator_vpcm/Source/DevfsDeviceNode.h
#ifndef DEVFS_DEVICE_NODE_H #define DEVFS_DEVICE_NODE_H #include <sys/types.h> #ifndef UID_ROOT # define UID_ROOT 0 #endif #ifndef GID_STAFF # define GID_STAFF 20 #endif #define MAX_INSTANCES 32 class DevfsDeviceNode { public: DevfsDeviceNode(); virtual ~DevfsDeviceNode(); // If the name argument contains a single printf format specifier for an int, it // will be replaced with the device's minor number, e.g. // "myname%d" -> "myname5" for a device with minor number 5. int devCreate( const char* name, int mode = 0600, int gid = -1, int uid = -1 ); int devDestroy(); const char* devName() const { return mpName; } int devMajor() const { return ::major( mDev ); } int devMinor() const { return ::minor( mDev ); } int devAccess( mode_t mode ) const; protected: virtual int devOpen( int flags ) = 0; virtual int devClose() = 0; virtual int devRead( struct uio* ); virtual int devWrite( struct uio* ); virtual int devIoctl( u_long cmd, caddr_t data ); virtual int devSelect( int rw, void*, struct proc* ); private: char* mpName; void* mNode; dev_t mDev; uid_t mUid; gid_t mGid; mode_t mMode; private: static void classInit(); static void classFree(); static int open( dev_t, int, int, struct proc* ); static int close( dev_t, int, int, struct proc* ); static int read( dev_t, struct uio*, int ); static int write( dev_t, struct uio*, int ); static int ioctl( dev_t, u_long, caddr_t, int, struct proc* ); static int select( dev_t, int, void*, struct proc* ); static DevfsDeviceNode* getInstance( dev_t ); private: static struct cdevsw sCdevsw; static int sMajor; static int sInstanceCount; static const int sMaxInstances = MAX_INSTANCES; static DevfsDeviceNode* sInstances[sMaxInstances]; }; #endif // DEVFS_DEVICE_NODE_H
1,808
C++
.h
53
31.471698
82
0.713134
SimulPiscator/vpcm
35
3
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,630
FloatEmu.h
SimulPiscator_vpcm/Source/FloatEmu.h
#ifndef FLOAT_EMU_H #define FLOAT_EMU_H namespace FloatEmu { // This function uses integer operations in order to scale unit-range floating-point values // by factors of 2^(k/2) for negative integer k. // This corresponds to 16 steps between -96 and 0 dB, and is sufficient for a simple volume control. void Scale( float*, unsigned int count, signed char k ); // This function uses integer operations for clipping float values to the -1 .. 1 range. void Clip( float*, unsigned int count ); void FloatToInt16Copy( short*, const float*, unsigned int count ); void Int16ToFloatCopy( float*, const short*, unsigned int count ); } // namespace #endif // FLOAT_EMU_H
665
C++
.h
14
46.214286
100
0.763524
SimulPiscator/vpcm
35
3
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,631
Synchronization.h
SimulPiscator_vpcm/Source/Synchronization.h
#ifndef SYNCHRONIZATION_H #define SYNCHRONIZATION_H #include <IOKit/IOLib.h> namespace Synchronization { class Mutex; class Lock { public: Lock(); Lock( Mutex& ); Lock( const Lock& ); Lock& operator=( const Lock& ); ~Lock(); private: mutable Mutex* mpMutex; }; class Mutex { public: Mutex(); ~Mutex(); int Sleep( int timeoutMs = -1 ); void Wakeup(); private: int mValid; lck_attr_t* mMtxAttr; lck_mtx_t* mMtx; static lck_grp_attr_t* sLockGrpAttr; static lck_grp_t* sLockGrp; static int sInstances; friend class Lock; }; } // namespace #endif // SYNCHRONIZATION_H
605
C++
.h
35
15.085714
38
0.715302
SimulPiscator/vpcm
35
3
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,632
VpcmAudioEngine.h
SimulPiscator_vpcm/Source/VpcmAudioEngine.h
#ifndef VPCM_AUDIO_ENGINE_H #define VPCM_AUDIO_ENGINE_H #include <IOKit/audio/IOAudioEngine.h> #include "DevfsDeviceNode.h" #include "Synchronization.h" #include "VpcmProperties.h" extern "C" struct selinfo { char data[128]; }; // no actual declaration available, size guessed class VpcmAudioEngine : public IOAudioEngine, public DevfsDeviceNode { OSDeclareDefaultStructors( VpcmAudioEngine ) public: const VpcmProperties* getProperties() const { return &mProperties; } int getIOFlags() const; // IOAudioEngine virtual bool init( const VpcmProperties* ); virtual void free(); virtual bool initHardware( IOService* ); virtual bool terminate( IOOptionBits ); virtual IOReturn performAudioEngineStart(); virtual IOReturn performAudioEngineStop(); virtual UInt32 getCurrentSampleFrame(); virtual IOReturn stopAudioEngine(); virtual void stopEngineAtPosition( IOAudioEnginePosition* ); virtual void resetClipPosition( IOAudioStream*, UInt32 ); virtual IOReturn eraseOutputSamples( const void*, void*, UInt32, UInt32, const IOAudioStreamFormat*, IOAudioStream* ); virtual IOReturn clipOutputSamples( const void*, void*, UInt32, UInt32, const IOAudioStreamFormat*, IOAudioStream* ); virtual IOReturn convertInputSamples( const void*, void*, UInt32, UInt32, const IOAudioStreamFormat*, IOAudioStream* ); #if TARGET_OS_OSX && TARGET_CPU_ARM64 virtual bool driverDesiresHiResSampleIntervals( void ); #endif private: void onBufferTimer( IOTimerEventSource* ); IOReturn onControlChanged( IOAudioControl*, SInt32, SInt32 ); int onDevOpen(); int onDevClose(); private: int mGain, mVolume, mMuteInput, mMuteOutput; static const struct ControlDef { IOAudioControl* (*create)( int, int, int ); int usage; int initialValue; int VpcmAudioEngine::* pValue; } sAudioControls[]; union Time { AbsoluteTime a; uint64_t t; int64_t s; }; Time mNextTime, mBufferDuration; IOTimerEventSource* mpTimer; int mWritePosition; // DevfsDeviceNode protected: virtual int devOpen( int ); virtual int devClose(); virtual int devRead( struct uio* ); virtual int devWrite( struct uio* ); virtual int devIoctl( u_long, caddr_t ); virtual int devSelect( int, void*, struct proc* ); private: int devReadWrite( struct uio* ); VpcmProperties mProperties; union DataPtr { void* v; char* c; short* s; float* f; }; struct Buffer { IOBufferMemoryDescriptor* pDesc; DataPtr begin, end; Buffer() : pDesc( 0 ) { begin.c = 0; end.c = 0; } bool init( int ); void free(); int bytes() { return int( end.c - begin.c ); } } mBuffer; DataPtr mDevIOPtr; int mDevIOBytesAvail; struct selinfo mDevIOSel; Synchronization::Mutex mDevIOWait; int mIOState; }; #endif // AUDIO_ENGINE_H
2,889
C++
.h
75
33.933333
123
0.726554
SimulPiscator/vpcm
35
3
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,633
VpcmAudioDevice.h
SimulPiscator_vpcm/Source/VpcmAudioDevice.h
#ifndef VPCM_AUDIO_DEVICE_H #define VPCM_AUDIO_DEVICE_H #include <IOKit/audio/IOAudioDevice.h> #include "DevfsDeviceNode.h" #include "Synchronization.h" #include "VpcmAudioEngine.h" #define DEVICE_GUI_NAME "vpcm Virtual Audio Device" #define DEVICE_SHORT_GUI_NAME "vpcm" #define MANUFACTURER_NAME "vpcm" #define CONTROL_NODE_NAME "vpcmctl" #define ENGINE_NODE_NAME "vpcm%d" #define CONTROL_NODE_PERMISSIONS 0660 #define VpcmAudioDevice org_vpcm_driver_VpcmAudioDevice class VpcmAudioDevice : public IOAudioDevice, public DevfsDeviceNode { public: OSDeclareDefaultStructors( VpcmAudioDevice ) protected: virtual bool init( OSDictionary* ); virtual void free(); virtual bool initHardware( IOService* ); protected: virtual int devOpen( int ); virtual int devClose(); virtual int devRead( struct uio* ); virtual int devWrite( struct uio* ); private: int executeCommand( int*, char** ); int printInfo( int, char** ); int createEngine( int, char** ); int deleteEngine( int, char** ); int nameEngine( int, char** ); int describeEngine( int, char** ); int findEngine( const char* ) const; static int printEngineStatus( VpcmAudioEngine*, char*, int ); private: int mIOFlags; Synchronization::Mutex mMutex; char* mpOutputBuffer; }; #endif // VPCM_AUDIO_DEVICE_H
1,302
C++
.h
41
29.536585
68
0.767014
SimulPiscator/vpcm
35
3
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,639
single-model-spectrum-channel.cc
sunshaozong111_NS3-with-LEO/src/spectrum/model/single-model-spectrum-channel.cc
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ /* * Copyright (c) 2009 CTTC * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation; * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * Author: Nicola Baldo <nbaldo@cttc.es> */ #include <ns3/object.h> #include <ns3/simulator.h> #include <ns3/log.h> #include <ns3/packet.h> #include <ns3/packet-burst.h> #include <ns3/net-device.h> #include <ns3/node.h> #include <ns3/double.h> #include <ns3/mobility-model.h> #include <ns3/spectrum-phy.h> #include <ns3/spectrum-propagation-loss-model.h> #include <ns3/propagation-loss-model.h> #include <ns3/propagation-delay-model.h> #include <ns3/antenna-model.h> #include <ns3/angles.h> #include "single-model-spectrum-channel.h" namespace ns3 { NS_LOG_COMPONENT_DEFINE ("SingleModelSpectrumChannel"); NS_OBJECT_ENSURE_REGISTERED (SingleModelSpectrumChannel); SingleModelSpectrumChannel::SingleModelSpectrumChannel () { NS_LOG_FUNCTION (this); } void SingleModelSpectrumChannel::DoDispose () { NS_LOG_FUNCTION (this); m_phyList.clear (); m_spectrumModel = 0; SpectrumChannel::DoDispose (); } TypeId SingleModelSpectrumChannel::GetTypeId (void) { NS_LOG_FUNCTION_NOARGS (); static TypeId tid = TypeId ("ns3::SingleModelSpectrumChannel") .SetParent<SpectrumChannel> () .SetGroupName ("Spectrum") .AddConstructor<SingleModelSpectrumChannel> () ; return tid; } void SingleModelSpectrumChannel::AddRx (Ptr<SpectrumPhy> phy) { NS_LOG_FUNCTION (this << phy); m_phyList.push_back (phy); } void SingleModelSpectrumChannel::StartTx (Ptr<SpectrumSignalParameters> txParams) { NS_LOG_FUNCTION (this << txParams->psd << txParams->duration << txParams->txPhy); NS_ASSERT_MSG (txParams->psd, "NULL txPsd"); NS_ASSERT_MSG (txParams->txPhy, "NULL txPhy"); Ptr<SpectrumSignalParameters> txParamsTrace = txParams->Copy (); // copy it since traced value cannot be const (because of potential underlying DynamicCasts) m_txSigParamsTrace (txParamsTrace); // just a sanity check routine. We might want to remove it to save some computational load -- one "if" statement ;-) if (m_spectrumModel == 0) { // first pak, record SpectrumModel m_spectrumModel = txParams->psd->GetSpectrumModel (); } else { // all attached SpectrumPhy instances must use the same SpectrumModel NS_ASSERT (*(txParams->psd->GetSpectrumModel ()) == *m_spectrumModel); } Ptr<MobilityModel> senderMobility = txParams->txPhy->GetMobility (); for (PhyList::const_iterator rxPhyIterator = m_phyList.begin (); rxPhyIterator != m_phyList.end (); ++rxPhyIterator) { if ((*rxPhyIterator) != txParams->txPhy) { Time delay = MicroSeconds (0); Ptr<MobilityModel> receiverMobility = (*rxPhyIterator)->GetMobility (); NS_LOG_LOGIC ("copying signal parameters " << txParams); Ptr<SpectrumSignalParameters> rxParams = txParams->Copy (); if (senderMobility && receiverMobility) { double pathLossDb = 0; if (rxParams->txAntenna != 0) { Angles txAngles (receiverMobility->GetPosition (), senderMobility->GetPosition ()); double txAntennaGain = rxParams->txAntenna->GetGainDb (txAngles); NS_LOG_LOGIC ("txAntennaGain = " << txAntennaGain << " dB"); pathLossDb -= txAntennaGain; } Ptr<AntennaModel> rxAntenna = (*rxPhyIterator)->GetRxAntenna (); if (rxAntenna != 0) { Angles rxAngles (senderMobility->GetPosition (), receiverMobility->GetPosition ()); double rxAntennaGain = rxAntenna->GetGainDb (rxAngles); NS_LOG_LOGIC ("rxAntennaGain = " << rxAntennaGain << " dB"); pathLossDb -= rxAntennaGain; } if (m_propagationLoss) { double propagationGainDb = m_propagationLoss->CalcRxPower (0, senderMobility, receiverMobility); NS_LOG_LOGIC ("propagationGainDb = " << propagationGainDb << " dB"); pathLossDb -= propagationGainDb; } NS_LOG_LOGIC ("total pathLoss = " << pathLossDb << " dB"); m_pathLossTrace (txParams->txPhy, *rxPhyIterator, pathLossDb); if ( pathLossDb > m_maxLossDb) { // beyond range continue; } double pathGainLinear = std::pow (10.0, (-pathLossDb) / 10.0); *(rxParams->psd) *= pathGainLinear; if (m_spectrumPropagationLoss) { rxParams->psd = m_spectrumPropagationLoss->CalcRxPowerSpectralDensity (rxParams->psd, senderMobility, receiverMobility); } if (m_propagationDelay) { delay = m_propagationDelay->GetDelay (senderMobility, receiverMobility); } } Ptr<NetDevice> netDev = (*rxPhyIterator)->GetDevice (); if (netDev) { // the receiver has a NetDevice, so we expect that it is attached to a Node uint32_t dstNode = netDev->GetNode ()->GetId (); Simulator::ScheduleWithContext (dstNode, delay, &SingleModelSpectrumChannel::StartRx, this, rxParams, *rxPhyIterator); } else { // the receiver is not attached to a NetDevice, so we cannot assume that it is attached to a node Simulator::Schedule (delay, &SingleModelSpectrumChannel::StartRx, this, rxParams, *rxPhyIterator); } } } } void SingleModelSpectrumChannel::StartRx (Ptr<SpectrumSignalParameters> params, Ptr<SpectrumPhy> receiver) { NS_LOG_FUNCTION (this << params); receiver->StartRx (params); } std::size_t SingleModelSpectrumChannel::GetNDevices (void) const { NS_LOG_FUNCTION (this); return m_phyList.size (); } Ptr<NetDevice> SingleModelSpectrumChannel::GetDevice (std::size_t i) const { NS_LOG_FUNCTION (this << i); return m_phyList.at (i)->GetDevice ()->GetObject<NetDevice> (); } } // namespace ns3
6,871
C++
.cc
174
32.028736
159
0.644111
sunshaozong111/NS3-with-LEO
34
7
1
GPL-2.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
true
false
true
true
true
false
1,537,659
geo_x2.cc
sunshaozong111_NS3-with-LEO/scratch/geo_x2.cc
/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */ /* * Copyright (c) 2013 Centre Tecnologic de Telecomunicacions de Catalunya (CTTC) * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation; * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * Author: Manuel Requena <manuel.requena@cttc.es> */ #include "ns3/core-module.h" #include "ns3/network-module.h" #include "ns3/internet-module.h" #include "ns3/mobility-module.h" #include "ns3/lte-module.h" #include "ns3/applications-module.h" #include "ns3/point-to-point-module.h" #include "ns3/config-store-module.h" #include "ns3/satellite-module.h" using namespace ns3; NS_LOG_COMPONENT_DEFINE ("LenaX2HandoverMeasures"); void NotifyConnectionEstablishedUe (std::string context, uint64_t imsi, uint16_t cellid, uint16_t rnti) { std::cout << context << " UE IMSI " << imsi << ": connected to CellId " << cellid << " with RNTI " << rnti << std::endl; } void NotifyHandoverStartUe (std::string context, uint64_t imsi, uint16_t cellid, uint16_t rnti, uint16_t targetCellId) { std::cout << context << " UE IMSI " << imsi << ": previously connected to CellId " << cellid << " with RNTI " << rnti << ", doing handover to CellId " << targetCellId << std::endl; } void NotifyHandoverEndOkUe (std::string context, uint64_t imsi, uint16_t cellid, uint16_t rnti) { std::cout << context << " UE IMSI " << imsi << ": successful handover to CellId " << cellid << " with RNTI " << rnti << std::endl; } void NotifyConnectionEstablishedEnb (std::string context, uint64_t imsi, uint16_t cellid, uint16_t rnti) { std::cout << context << " eNB CellId " << cellid << ": successful connection of UE with IMSI " << imsi << " RNTI " << rnti << std::endl; } void NotifyHandoverStartEnb (std::string context, uint64_t imsi, uint16_t cellid, uint16_t rnti, uint16_t targetCellId) { std::cout << context << " eNB CellId " << cellid << ": start handover of UE with IMSI " << imsi << " RNTI " << rnti << " to CellId " << targetCellId << std::endl; } void NotifyHandoverEndOkEnb (std::string context, uint64_t imsi, uint16_t cellid, uint16_t rnti) { std::cout << context << " eNB CellId " << cellid << ": completed handover of UE with IMSI " << imsi << " RNTI " << rnti << std::endl; } /** * Sample simulation script for an automatic X2-based handover based on the RSRQ measures. * It instantiates two eNodeB, attaches one UE to the 'source' eNB. * The UE moves between both eNBs, it reports measures to the serving eNB and * the 'source' (serving) eNB triggers the handover of the UE towards * the 'target' eNB when it considers it is a better eNB. */ int main (int argc, char *argv[]) { // LogLevel logLevel = (LogLevel)(LOG_PREFIX_ALL | LOG_LEVEL_ALL); // LogComponentEnable ("LteHelper", logLevel); // LogComponentEnable ("EpcHelper", logLevel); // LogComponentEnable ("EpcEnbApplication", logLevel); // LogComponentEnable ("EpcX2", logLevel); // LogComponentEnable ("EpcSgwPgwApplication", logLevel); // LogComponentEnable ("LteEnbRrc", logLevel); // LogComponentEnable ("LteEnbNetDevice", logLevel); // LogComponentEnable ("LteUeRrc", logLevel); // LogComponentEnable ("LteUeNetDevice", logLevel); // LogComponentEnable ("A2A4RsrqHandoverAlgorithm", logLevel); // LogComponentEnable ("A3RsrpHandoverAlgorithm", logLevel); uint16_t numberOfUes = 1; uint16_t numberOfEnbs = 2; uint16_t numBearersPerUe = 1; double distance = 500.0; // m //double yForUe = 500.0; // m double speed = 200; // m/s double simTime = (double)(numberOfEnbs + 1) * distance / speed; // 1500 m / 20 m/s = 75 secs double enbTxPowerDbm = 46.0; // change some default attributes so that they are reasonable for // this scenario, but do this before processing command line // arguments, so that the user is allowed to override these settings Config::SetDefault ("ns3::UdpClient::Interval", TimeValue (MilliSeconds (10))); Config::SetDefault ("ns3::UdpClient::MaxPackets", UintegerValue (1000000)); Config::SetDefault ("ns3::LteHelper::UseIdealRrc", BooleanValue (true)); // Command line arguments CommandLine cmd; cmd.AddValue ("simTime", "Total duration of the simulation (in seconds)", simTime); cmd.AddValue ("speed", "Speed of the UE (default = 20 m/s)", speed); cmd.AddValue ("enbTxPowerDbm", "TX power [dBm] used by HeNBs (default = 46.0)", enbTxPowerDbm); cmd.Parse (argc, argv); Ptr<LteHelper> lteHelper = CreateObject<LteHelper> (); Ptr<PointToPointEpcHelper> epcHelper = CreateObject<PointToPointEpcHelper> (); lteHelper->SetEpcHelper (epcHelper); lteHelper->SetSchedulerType ("ns3::RrFfMacScheduler"); lteHelper->SetHandoverAlgorithmType ("ns3::A2A4RsrqHandoverAlgorithm"); lteHelper->SetHandoverAlgorithmAttribute ("ServingCellThreshold", UintegerValue (30)); lteHelper->SetHandoverAlgorithmAttribute ("NeighbourCellOffset", UintegerValue (1)); // lteHelper->SetHandoverAlgorithmType ("ns3::A3RsrpHandoverAlgorithm"); // lteHelper->SetHandoverAlgorithmAttribute ("Hysteresis", // DoubleValue (3.0)); // lteHelper->SetHandoverAlgorithmAttribute ("TimeToTrigger", // TimeValue (MilliSeconds (256))); Ptr<Node> pgw = epcHelper->GetPgwNode (); // Create a single RemoteHost NodeContainer remoteHostContainer; remoteHostContainer.Create (1); Ptr<Node> remoteHost = remoteHostContainer.Get (0); InternetStackHelper internet; internet.Install (remoteHostContainer); // Create the Internet PointToPointHelper p2ph; p2ph.SetDeviceAttribute ("DataRate", DataRateValue (DataRate ("100Gb/s"))); p2ph.SetDeviceAttribute ("Mtu", UintegerValue (1500)); p2ph.SetChannelAttribute ("Delay", TimeValue (Seconds (0.010))); NetDeviceContainer internetDevices = p2ph.Install (pgw, remoteHost); Ipv4AddressHelper ipv4h; ipv4h.SetBase ("1.0.0.0", "255.0.0.0"); Ipv4InterfaceContainer internetIpIfaces = ipv4h.Assign (internetDevices); Ipv4Address remoteHostAddr = internetIpIfaces.GetAddress (1); // Routing of the Internet Host (towards the LTE network) Ipv4StaticRoutingHelper ipv4RoutingHelper; Ptr<Ipv4StaticRouting> remoteHostStaticRouting = ipv4RoutingHelper.GetStaticRouting (remoteHost->GetObject<Ipv4> ()); // interface 0 is localhost, 1 is the p2p device remoteHostStaticRouting->AddNetworkRouteTo (Ipv4Address ("7.0.0.0"), Ipv4Mask ("255.0.0.0"), 1); /* * Network topology: * * | + ---------------------------------------------------------> * | UE * | * | d d d * y | |-------------------x-------------------x------------------- * | | eNodeB eNodeB * | d | * | | * | | d = distance * o (0, 0, 0) y = yForUe */ //GEO SatHelper::PreDefinedScenario_t satScenario = SatHelper::SIMPLE; std::string scenario = "Simple"; // Create simulation helper //example-tutorial simple-GEO auto simulationHelper = CreateObject<SimulationHelper> ("example-tutorial"); // Enable creation traces Config::SetDefault ("ns3::SatHelper::ScenarioCreationTraceEnabled", BooleanValue (true)); // Enable packet traces (to file PacketTrace.log). Config::SetDefault ("ns3::SatHelper::PacketTraceEnabled", BooleanValue (true)); /***************************************************************************** 'To Select super frame configuration, Option 2' -- Start -- */ /// Set simulation output details Config::SetDefault ("ns3::SatEnvVariables::SimulationTag", StringValue (scenario)); Config::SetDefault ("ns3::SatEnvVariables::EnableSimulationOutputOverwrite", BooleanValue (true)); simulationHelper->SetOutputTag (scenario); simulationHelper->SetSimulationTime (Seconds (simTime)); Ptr<SatHelper> helper = simulationHelper->CreateSatScenario (satScenario); Singleton<SatEnvVariables>::Get ()->DoInitialize (); Singleton<SatEnvVariables>::Get ()->SetOutputVariables ("sat-mobility", "GEO", true); //double frequency = 17.9 * std::pow (10.0, 9); // reference frequency // now do same with Cartesian coordinates used by SatMobilityModel SetPosition // and SatPositionAllocator GetNext // Config::SetDefault ("ns3::SatMobilityModel::AsGeoCoordinates", BooleanValue (false)); // Config::SetDefault ("ns3::SatPositionAllocator::AsGeoCoordinates", BooleanValue (false)); Config::SetDefault ("ns3::SatMobilityModel::AsGeoCoordinates", BooleanValue (false)); Config::SetDefault ("ns3::SatPositionAllocator::AsGeoCoordinates", BooleanValue (false)); NodeContainer ueNodes; NodeContainer enbNodes; enbNodes.Create (numberOfEnbs); ueNodes.Create (numberOfUes); //GEO double latitude = 10.0; double longitude = 10.0; Ptr<SatListPositionAllocator> enbPositionAlloc = CreateObject<SatListPositionAllocator> (); for (uint16_t i = 0; i < numberOfEnbs; i++) { //地面LTE // Vector enbPosition (distance * (i + 1), distance, 0); // enbPositionAlloc->Add (enbPosition); //GEO enbPositionAlloc->Add (GeoCoordinate (latitude, longitude+ i *2, 0)); } // Config::Connect ("/NodeList/*/$ns3::SatMobilityModel/SatCourseChange", // MakeCallback (&SatCourseChange)); MobilityHelper enbMobility; enbMobility.SetMobilityModel ("ns3::SatConstantPositionMobilityModel"); enbMobility.SetPositionAllocator (enbPositionAlloc); enbMobility.Install (enbNodes); for ( uint32_t i = 0; i < enbNodes.GetN (); i++ ) { Ptr<SatMobilityModel> model = enbNodes.Get (i)->GetObject<SatMobilityModel> (); GeoCoordinate pos = model->GetGeoPosition (); // check that position is in limit std::cout <<" pos.GetLatitude () "<< pos.GetLatitude ()<<std::endl; std::cout <<" pos.GetLongitude() "<< pos.GetLongitude ()<<std::endl; std::cout <<" pos.GetAltitude () "<< pos.GetAltitude ()<<std::endl; } // // Install Mobility Model in eNB // Ptr<ListPositionAllocator> enbPositionAlloc = CreateObject<ListPositionAllocator> (); // for (uint16_t i = 0; i < numberOfEnbs; i++) // { // Vector enbPosition (distance * (i + 1), distance, 0); // enbPositionAlloc->Add (enbPosition); // } // Install Mobility Model in UE MobilityHelper ueMobility; ueMobility.SetMobilityModel ("ns3::ConstantVelocityMobilityModel"); Ptr<SatListPositionAllocator> uePositionAlloc = CreateObject<SatListPositionAllocator> (); uePositionAlloc->Add (GeoCoordinate (latitude, longitude, 0)); ueMobility.SetPositionAllocator (uePositionAlloc); ueMobility.Install (ueNodes); //ueNodes.Get (0)->GetObject<MobilityModel> ()->SetPosition (Vector (0, yForUe, 0)); ueNodes.Get (0)->GetObject<ConstantVelocityMobilityModel> ()->SetVelocity (Vector (speed, 0, 0)); //create satellite netDevice // Ptr<SatSimpleNetDevice> dev0 = CreateObject<SatSimpleNetDevice> (); // Ptr<SatSimpleNetDevice> dev1 = CreateObject<SatSimpleNetDevice> (); // dev0->SetAddress (Mac16Address ("00:01")); // dev1->SetAddress (Mac16Address ("00:02")); // //satellite channel // Ptr<SatChannel> channel = CreateObject<SatChannel> (); // Ptr<PropagationDelayModel> Delay; // // Signal propagates at the speed of light // Delay = CreateObject<ConstantSpeedPropagationDelayModel> (); // DynamicCast<ConstantSpeedPropagationDelayModel> (Delay)->SetSpeed (SatConstVariables::SPEED_OF_LIGHT); // channel->SetPropagationDelayModel (Delay); // Ptr<SatFreeSpaceLoss> Fsl = CreateObject<SatFreeSpaceLoss> (); // channel->SetFreeSpaceLoss (Fsl); // //channel attach netDevice // dev0->SetChannel (channel); // dev1->SetChannel (channel); //netDevice add to a node //n0->AddDevice (dev0); //n1->AddDevice (dev1); // Install LTE Devices in eNB and UEs Config::SetDefault ("ns3::LteEnbPhy::TxPower", DoubleValue (enbTxPowerDbm)); NetDeviceContainer enbLteDevs = lteHelper->InstallEnbDevice (enbNodes); NetDeviceContainer ueLteDevs = lteHelper->InstallUeDevice (ueNodes); // Install the IP stack on the UEs internet.Install (ueNodes); Ipv4InterfaceContainer ueIpIfaces; ueIpIfaces = epcHelper->AssignUeIpv4Address (NetDeviceContainer (ueLteDevs)); // Attach all UEs to the first eNodeB for (uint16_t i = 0; i < numberOfUes; i++) { lteHelper->Attach (ueLteDevs.Get (i), enbLteDevs.Get (0)); } NS_LOG_LOGIC ("setting up applications"); // Install and start applications on UEs and remote host uint16_t dlPort = 10000; uint16_t ulPort = 20000; // randomize a bit start times to avoid simulation artifacts // (e.g., buffer overflows due to packet transmissions happening // exactly at the same time) Ptr<UniformRandomVariable> startTimeSeconds = CreateObject<UniformRandomVariable> (); startTimeSeconds->SetAttribute ("Min", DoubleValue (0)); startTimeSeconds->SetAttribute ("Max", DoubleValue (0.010)); for (uint32_t u = 0; u < numberOfUes; ++u) { Ptr<Node> ue = ueNodes.Get (u); // Set the default gateway for the UE Ptr<Ipv4StaticRouting> ueStaticRouting = ipv4RoutingHelper.GetStaticRouting (ue->GetObject<Ipv4> ()); ueStaticRouting->SetDefaultRoute (epcHelper->GetUeDefaultGatewayAddress (), 1); std::cout <<"445"<<std::endl; for (uint32_t b = 0; b < numBearersPerUe; ++b) { ++dlPort; ++ulPort; ApplicationContainer clientApps; ApplicationContainer serverApps; NS_LOG_LOGIC ("installing UDP DL app for UE " << u); UdpClientHelper dlClientHelper (ueIpIfaces.GetAddress (u), dlPort); clientApps.Add (dlClientHelper.Install (remoteHost)); PacketSinkHelper dlPacketSinkHelper ("ns3::UdpSocketFactory", InetSocketAddress (Ipv4Address::GetAny (), dlPort)); serverApps.Add (dlPacketSinkHelper.Install (ue)); NS_LOG_LOGIC ("installing UDP UL app for UE " << u); UdpClientHelper ulClientHelper (remoteHostAddr, ulPort); clientApps.Add (ulClientHelper.Install (ue)); PacketSinkHelper ulPacketSinkHelper ("ns3::UdpSocketFactory", InetSocketAddress (Ipv4Address::GetAny (), ulPort)); serverApps.Add (ulPacketSinkHelper.Install (remoteHost)); Ptr<EpcTft> tft = Create<EpcTft> (); EpcTft::PacketFilter dlpf; dlpf.localPortStart = dlPort; dlpf.localPortEnd = dlPort; tft->Add (dlpf); EpcTft::PacketFilter ulpf; ulpf.remotePortStart = ulPort; ulpf.remotePortEnd = ulPort; tft->Add (ulpf); EpsBearer bearer (EpsBearer::NGBR_VIDEO_TCP_DEFAULT); lteHelper->ActivateDedicatedEpsBearer (ueLteDevs.Get (u), bearer, tft); Time startTime = Seconds (startTimeSeconds->GetValue ()); serverApps.Start (startTime); clientApps.Start (startTime); } // end for b } // Add X2 interface lteHelper->AddX2Interface (enbNodes); // X2-based Handover lteHelper->HandoverRequest (Seconds (0.100), ueLteDevs.Get (0), enbLteDevs.Get (0), enbLteDevs.Get (1)); // Uncomment to enable PCAP tracing p2ph.EnablePcapAll("geo-x2-handover-measures"); lteHelper->EnablePhyTraces (); lteHelper->EnableMacTraces (); lteHelper->EnableRlcTraces (); lteHelper->EnablePdcpTraces (); Ptr<RadioBearerStatsCalculator> rlcStats = lteHelper->GetRlcStats (); rlcStats->SetAttribute ("EpochDuration", TimeValue (Seconds (1.0))); Ptr<RadioBearerStatsCalculator> pdcpStats = lteHelper->GetPdcpStats (); pdcpStats->SetAttribute ("EpochDuration", TimeValue (Seconds (1.0))); std::cout <<"666"<<std::endl; // connect custom trace sinks for RRC connection establishment and handover notification Config::Connect ("/NodeList/*/DeviceList/*/LteEnbRrc/ConnectionEstablished", MakeCallback (&NotifyConnectionEstablishedEnb)); Config::Connect ("/NodeList/*/DeviceList/*/LteUeRrc/ConnectionEstablished", MakeCallback (&NotifyConnectionEstablishedUe)); Config::Connect ("/NodeList/*/DeviceList/*/LteEnbRrc/HandoverStart", MakeCallback (&NotifyHandoverStartEnb)); Config::Connect ("/NodeList/*/DeviceList/*/LteUeRrc/HandoverStart", MakeCallback (&NotifyHandoverStartUe)); Config::Connect ("/NodeList/*/DeviceList/*/LteEnbRrc/HandoverEndOk", MakeCallback (&NotifyHandoverEndOkEnb)); Config::Connect ("/NodeList/*/DeviceList/*/LteUeRrc/HandoverEndOk", MakeCallback (&NotifyHandoverEndOkUe)); Simulator::Stop (Seconds (simTime)); Simulator::Run (); // GtkConfigStore config; // config.ConfigureAttributes (); Simulator::Destroy (); return 0; }
18,473
C++
.cc
391
40.86445
119
0.655387
sunshaozong111/NS3-with-LEO
34
7
1
GPL-2.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,660
sat-list-position-ext-fading-example.cc
sunshaozong111_NS3-with-LEO/scratch/sat-list-position-ext-fading-example.cc
/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */ /* * Copyright (c) 2014 Magister Solutions * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation; * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * Author: Sami Rantanen <sami.rantanen@magister.fi> * */ #include "ns3/core-module.h" #include "ns3/network-module.h" #include "ns3/internet-module.h" #include "ns3/satellite-module.h" #include "ns3/applications-module.h" #include "ns3/config-store-module.h" #include "ns3/traffic-module.h" using namespace ns3; /** * \file sat-list-position-ext-fading-example.cc * \ingroup satellite * * \brief List position external fading example demonstrates how to set user defined (list) * positions with external fading. The example is useful when new list positions and * external fading trace sources are taken into use. * * The default values for list position (UT positions) and external fading trace are * set before command line parsing, in order to replace them without re-compiling the example. * * Some parameter can be set as command line arguments. * To see help for user arguments: * execute command -> ./waf --run "sat-ext-fading-example --PrintHelp" * * Example sends packets from GW connected user to every UT users and * from every UT users to GW connected user. * * Information of the created UTs and link budget info for every received packet * are printed as log info. * */ NS_LOG_COMPONENT_DEFINE ("sat-list-position-ext-fading-example"); // callback called when packet is received by phy RX carrier static void LinkBudgetTraceCb ( std::string context, Ptr<SatSignalParameters> params, Mac48Address ownAdd, Mac48Address destAdd, double ifPower, double cSinr) { // print only unicast message to prevent printing control messages like TBTP messages if ( !destAdd.IsBroadcast () ) { NS_LOG_INFO ( Simulator::Now () << " " << params->m_channelType << " " << ownAdd << " " << destAdd << " " << params->m_beamId << " " << SatUtils::LinearToDb (params->m_sinr) << " " << SatUtils::LinearToDb (cSinr) ); } } int main (int argc, char *argv[]) { uint32_t utCount = 4; uint32_t usersPerUt = 1; uint32_t beamId = 1; bool checkBeam = false; std::string extUtPositions = "utpositions/BeamId-1_256_UT_Positions.txt"; Config::SetDefault ("ns3::SatHelper::ScenarioCreationTraceEnabled", BooleanValue (true)); /// Set simulation output details auto simulationHelper = CreateObject<SimulationHelper> ("example-list-position-external-fading"); Config::SetDefault ("ns3::SatEnvVariables::EnableSimulationOutputOverwrite", BooleanValue (true)); // read command line parameters can be given by user CommandLine cmd; cmd.AddValue ("beamId", "The beam ID to be used.", beamId); cmd.AddValue ("checkBeam", "Check that given beam is the best according in the configured positions.", checkBeam); cmd.AddValue ("utCount", "Number of the UTs.", utCount); cmd.AddValue ("usersPerUt", "Users per UT.", usersPerUt); cmd.AddValue ("externalUtPositionFile", "UT position input file (in data/)", extUtPositions); simulationHelper->AddDefaultUiArguments (cmd); cmd.Parse (argc, argv); // Set default values for some attributes for position setting and external fading trace // This done before command line parsing in order to override them if needed simulationHelper->SetUserCountPerUt (usersPerUt); simulationHelper->SetUtCountPerBeam (utCount); simulationHelper->SetBeamSet ({beamId}); simulationHelper->SetSimulationTime (Seconds (1.1)); // Enable default fading traces simulationHelper->EnableExternalFadingInputTrace (); // Enable UT positions from input file simulationHelper->EnableUtListPositionsFromInputFile (extUtPositions, checkBeam); // enable info logs LogComponentEnable ("sat-list-position-ext-fading-example", LOG_LEVEL_INFO); // Creating the reference system. Note, currently the satellite module supports // only one reference system, which is named as "Scenario72". The string is utilized // in mapping the scenario to the needed reference system configuration files. Arbitrary // scenario name results in fatal error. Ptr<SatHelper> helper = simulationHelper->CreateSatScenario (); // set callback traces where we want results out Config::Connect ("/NodeList/*/DeviceList/*/SatPhy/PhyRx/RxCarrierList/*/LinkBudgetTrace", MakeCallback (&LinkBudgetTraceCb)); Config::Connect ("/NodeList/*/DeviceList/*/UserPhy/*/PhyRx/RxCarrierList/*/LinkBudgetTrace", MakeCallback (&LinkBudgetTraceCb)); Config::Connect ("/NodeList/*/DeviceList/*/FeederPhy/*/PhyRx/RxCarrierList/*/LinkBudgetTrace", MakeCallback (&LinkBudgetTraceCb)); // Install CBR traffic model Config::SetDefault ("ns3::CbrApplication::Interval", StringValue ("0.1s")); Config::SetDefault ("ns3::CbrApplication::PacketSize", UintegerValue (512)); simulationHelper->InstallTrafficModel ( SimulationHelper::CBR, SimulationHelper::UDP, SimulationHelper::FWD_LINK, Seconds (0.1), Seconds (0.25)); simulationHelper->InstallTrafficModel ( SimulationHelper::CBR, SimulationHelper::UDP, SimulationHelper::RTN_LINK, Seconds (0.1), Seconds (0.25)); NS_LOG_INFO ("--- List Position External Fading Example ---"); NS_LOG_INFO ("UT info (Beam ID, UT ID, Latitude, Longitude, Altitude + addresses"); // print UT info NS_LOG_INFO (helper->GetBeamHelper ()->GetUtInfo ()); NS_LOG_INFO ("Link results (Time, Channel type, Own address, Dest. address, Beam ID, SINR, Composite SINR) :"); // results are printed out in callback (PacketTraceCb) simulationHelper->RunSimulation (); return 0; }
6,753
C++
.cc
134
44.231343
129
0.68966
sunshaozong111/NS3-with-LEO
34
7
1
GPL-2.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,661
sat-environmental-variables-example.cc
sunshaozong111_NS3-with-LEO/scratch/sat-environmental-variables-example.cc
/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */ /* * Copyright (c) 2014 Magister Solutions * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation; * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * Author: Frans Laakso <frans.laakso@magister.fi> * */ #include "ns3/core-module.h" #include "ns3/satellite-module.h" using namespace ns3; /** * \file sat-environmental-variables-example.cc * \ingroup satellite * * \brief Example for environmental variables class. * Demonstrates various functions for locating directories * used by the satellite module. * */ NS_LOG_COMPONENT_DEFINE ("sat-environmental-variables-example"); int main (int argc, char *argv[]) { LogComponentEnable ("sat-environmental-variables-example", LOG_LEVEL_INFO); LogComponentEnable ("SatEnvVariables", LOG_LEVEL_INFO); /// Set simulation output details auto simulationHelper = CreateObject<SimulationHelper> ("exampleCampaign"); simulationHelper->SetOutputTag ("exampleTag"); Config::SetDefault ("ns3::SatEnvVariables::EnableSimulationOutputOverwrite", BooleanValue (true)); CommandLine cmd; simulationHelper->AddDefaultUiArguments (cmd); cmd.Parse (argc, argv); /// Create default environmental variables Ptr<SatEnvVariables> envVariables = CreateObject<SatEnvVariables> (); /// Run simulation Simulator::Schedule (MilliSeconds (0), &SatEnvVariables::GetCurrentWorkingDirectory, envVariables); Simulator::Schedule (MilliSeconds (1), &SatEnvVariables::GetPathToExecutable, envVariables); Simulator::Schedule (MilliSeconds (2), &SatEnvVariables::GetDataPath, envVariables); Simulator::Schedule (MilliSeconds (3), &SatEnvVariables::GetOutputPath, envVariables); Simulator::Schedule (MilliSeconds (4), &SatEnvVariables::LocateDataDirectory, envVariables); Simulator::Schedule (MilliSeconds (5), &SatEnvVariables::LocateDirectory, envVariables, "contrib/satellite/data"); Simulator::Schedule (MilliSeconds (6), &SatEnvVariables::IsValidDirectory, envVariables, "contrib/satellite/data/notfound"); Simulator::Schedule (MilliSeconds (7), &SatEnvVariables::GetCurrentDateAndTime, envVariables); simulationHelper->SetSimulationTime (Seconds (1)); simulationHelper->RunSimulation (); return 0; }
2,867
C++
.cc
60
44.216667
127
0.759066
sunshaozong111/NS3-with-LEO
34
7
1
GPL-2.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,662
sat-training-example.cc
sunshaozong111_NS3-with-LEO/scratch/sat-training-example.cc
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ /* * Copyright (c) 2014 Magister Solutions * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation; * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * Author: Sami Rantanen <sami.rantanen@magister.fi> * */ #include "ns3/applications-module.h" #include "ns3/core-module.h" #include "ns3/network-module.h" #include "ns3/internet-module.h" #include "ns3/satellite-module.h" #include "ns3/traffic-module.h" #include "ns3/config-store-module.h" using namespace ns3; /** * \file sat-training-example.cc * \ingroup satellite * * \brief Simulation script to be utilized in SNS3 training. The script illustrates * the simulation script process starting from command line arguments to running the * actual simulation. * * int main (int argc, char *argv[]) * { * // Set default attribute values * // Parse command-line arguments * // Configure the topology; nodes, channels, devices, mobility * // Add (Internet) stack to nodes * // Configure IP addressing and routing * // Add and configure applications * // Configure tracing * // Run simulation * } * * execute command -> ./waf --run "sat-training-example --PrintHelp" */ NS_LOG_COMPONENT_DEFINE ("sat-training-example"); int main (int argc, char *argv[]) { // Enabling logging in this program LogComponentEnable ("sat-training-example", LOG_LEVEL_INFO); NS_LOG_INFO ("--- sat-training-example ---"); /** * -------------------------------------- * Initialize simulation script variables * -------------------------------------- */ uint32_t endUsersPerUt (1); uint32_t utsPerBeam (1); double simDuration (10.0); // in seconds // All the co-channel beams enabled for user link // frequency color 1 std::set<uint32_t> coChannelBeams = {1, 3, 5, 7, 9, 22, 24, 26, 28, 30, 44, 46, 48, 50, 59, 61}; /** * Create simulation helper */ std::string simulationName = "example-training"; auto simulationHelper = CreateObject<SimulationHelper> (simulationName); // Find the input xml file in case example is run from other than ns-3 root directory Singleton<SatEnvVariables> satEnvVariables; std::string pathToFile = satEnvVariables.Get ()->LocateFile ("contrib/satellite/examples/training-input-attributes.xml"); /** * ---------------------------------------------------------------- * Read the command line arguments. Note, that this allows the user * to change also the ns3 attributes from command line. * ---------------------------------------------------------------- */ CommandLine cmd; cmd.AddValue ("utsPerBeam", "Number of UTs per spot-beam", utsPerBeam); cmd.AddValue ("simDurationInSeconds", "Simulation duration in seconds", simDuration); simulationHelper->AddDefaultUiArguments (cmd, pathToFile); cmd.Parse (argc, argv); /** * --------------------------------------------------- * Read the default attributes from XML attribute file * --------------------------------------------------- */ NS_LOG_INFO ("Reading the XML input: training-input-attributes.xml"); Config::SetDefault ("ns3::ConfigStore::Filename", StringValue (pathToFile)); Config::SetDefault ("ns3::ConfigStore::Mode", StringValue ("Load")); Config::SetDefault ("ns3::ConfigStore::FileFormat", StringValue ("Xml")); ConfigStore inputConfig; inputConfig.ConfigureDefaults (); /** * ----------------------------------------------- * Overwrite some attribute values for this script * ----------------------------------------------- */ // Enable RBDC for BE Config::SetDefault ("ns3::SatLowerLayerServiceConf::DaService3_ConstantAssignmentProvided", BooleanValue (false)); Config::SetDefault ("ns3::SatLowerLayerServiceConf::DaService3_RbdcAllowed", BooleanValue (true)); Config::SetDefault ("ns3::SatLowerLayerServiceConf::DaService3_MinimumServiceRate", UintegerValue (40)); Config::SetDefault ("ns3::SatLowerLayerServiceConf::DaService3_VolumeAllowed", BooleanValue (false)); Config::SetDefault ("ns3::SatBeamScheduler::ControlSlotsEnabled", BooleanValue (true)); Config::SetDefault ("ns3::SatBeamScheduler::ControlSlotInterval", TimeValue (Seconds (1))); // Tune the superframe configuration Config::SetDefault ("ns3::SatSuperframeConf0::FrameCount", UintegerValue (3)); Config::SetDefault ("ns3::SatSuperframeConf0::Frame0_AllocatedBandwidthHz", DoubleValue (5e+06)); Config::SetDefault ("ns3::SatSuperframeConf0::Frame1_AllocatedBandwidthHz", DoubleValue (10e+06)); Config::SetDefault ("ns3::SatSuperframeConf0::Frame2_AllocatedBandwidthHz", DoubleValue (10e+06)); // Enable traces Config::SetDefault ("ns3::SatChannel::EnableRxPowerOutputTrace", BooleanValue (true)); Config::SetDefault ("ns3::SatChannel::EnableFadingOutputTrace", BooleanValue (true)); Config::SetDefault ("ns3::SatPhyRxCarrier::EnableCompositeSinrOutputTrace", BooleanValue (true)); Config::SetDefault ("ns3::SatPhyRxCarrierConf::EnableIntfOutputTrace", BooleanValue (true)); Singleton<SatFadingOutputTraceContainer>::Get ()->EnableFigureOutput (false); Singleton<SatInterferenceOutputTraceContainer>::Get ()->EnableFigureOutput (false); Singleton<SatRxPowerOutputTraceContainer>::Get ()->EnableFigureOutput (false); Singleton<SatCompositeSinrOutputTraceContainer>::Get ()->EnableFigureOutput (false); // Enable creation traces Config::SetDefault ("ns3::SatHelper::ScenarioCreationTraceEnabled", BooleanValue (true)); // Enable packet traces Config::SetDefault ("ns3::SatHelper::PacketTraceEnabled", BooleanValue (true)); /** * -------------------------------------------------------------------- * Create satellite system by the usage of satellite helper structures: * - simulationHelper->CreateSatScenario (SatHelper::SIMPLE) * -------------------------------------------------------------------- */ NS_LOG_INFO ("Creating the satellite scenario"); // Each beam will have 'utsPerBeam' user terminals and 'endUsersPerUt' // end users per UT. Note, that this allows also different configurations // per spot-beam. simulationHelper->SetUserCountPerUt (endUsersPerUt); simulationHelper->SetUtCountPerBeam (utsPerBeam); simulationHelper->SetBeamSet (coChannelBeams); simulationHelper->SetSimulationTime (simDuration); simulationHelper->CreateSatScenario (); /** * -------------------------------------------------------- * Configure end user applications. * In the training example, the users are configured on-off * application in return link. In addition, e.g. HTTP, NRTV * and CBR traffic models are supported. */ NS_LOG_INFO ("Configuring the on-off application!"); uint32_t packetSize (1280); // in bytes DataRate dataRate (128000); // in bps // The application start time is varied to avoid the situation // in the beginning that all applications start at the same time. Time appStartTime (MilliSeconds (100)); Config::SetDefault ("ns3::OnOffApplication::PacketSize", UintegerValue (packetSize)); Config::SetDefault ("ns3::OnOffApplication::DataRate", DataRateValue (dataRate)); Config::SetDefault ("ns3::OnOffApplication::OnTime", StringValue ("ns3::ExponentialRandomVariable[Mean=1.0|Bound=0.0]")); Config::SetDefault ("ns3::OnOffApplication::OffTime", StringValue ("ns3::ExponentialRandomVariable[Mean=1.0|Bound=0.0]")); simulationHelper->InstallTrafficModel ( SimulationHelper::ONOFF, SimulationHelper::UDP, SimulationHelper::RTN_LINK, appStartTime, Seconds (simDuration + 1), MilliSeconds (25)); /** * ----------------- * Set-up statistics * ----------------- */ NS_LOG_INFO ("Setting up statistics"); // SatStatsHelperContainer is the interface for satellite related // statistics configuration. Ptr<SatStatsHelperContainer> s = simulationHelper->GetStatisticsContainer (); // Delay s->AddGlobalRtnAppDelay (SatStatsHelper::OUTPUT_CDF_FILE); s->AddGlobalRtnAppDelay (SatStatsHelper::OUTPUT_CDF_PLOT); s->AddAverageUtUserRtnAppDelay (SatStatsHelper::OUTPUT_SCALAR_FILE); s->AddAverageBeamRtnAppDelay (SatStatsHelper::OUTPUT_SCALAR_FILE); // Composite SINR s->AddGlobalRtnCompositeSinr (SatStatsHelper::OUTPUT_CDF_FILE); s->AddGlobalRtnCompositeSinr (SatStatsHelper::OUTPUT_CDF_PLOT); // Throughput s->AddAverageUtUserRtnAppThroughput (SatStatsHelper::OUTPUT_CDF_FILE); s->AddAverageUtUserRtnAppThroughput (SatStatsHelper::OUTPUT_CDF_PLOT); s->AddPerUtUserRtnAppThroughput (SatStatsHelper::OUTPUT_SCALAR_FILE); s->AddPerBeamRtnAppThroughput (SatStatsHelper::OUTPUT_SCALAR_FILE); s->AddPerGwRtnAppThroughput (SatStatsHelper::OUTPUT_SCALAR_FILE); /** * -------------------------------- * Store attributes into XML output * -------------------------------- */ NS_LOG_INFO ("Storing the used attributes to XML file: training-output-attributes-ut-" << utsPerBeam << ".xml"); // std::stringstream filename; // filename << "training-output-attributes-ut" << utsPerBeam << ".xml"; // Config::SetDefault ("ns3::ConfigStore::Filename", StringValue (filename.str ())); // Config::SetDefault ("ns3::ConfigStore::FileFormat", StringValue ("Xml")); // Config::SetDefault ("ns3::ConfigStore::Mode", StringValue ("Save")); // ConfigStore outputConfig; // outputConfig.ConfigureDefaults (); /** * -------------- * Run simulation * -------------- */ NS_LOG_INFO ("Running network simulator 3"); simulationHelper->RunSimulation (); return 0; }
10,334
C++
.cc
210
44.847619
125
0.676166
sunshaozong111/NS3-with-LEO
34
7
1
GPL-2.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,663
sat-tutorial-example.cc
sunshaozong111_NS3-with-LEO/scratch/sat-tutorial-example.cc
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ /* * Copyright (c) 2014 Magister Solutions * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation; * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * Author: Jani Puttonen <jani.puttonen@magister.fi> * */ #include "ns3/core-module.h" #include "ns3/config-store-module.h" #include "ns3/network-module.h" #include "ns3/internet-module.h" #include "ns3/satellite-module.h" #include "ns3/applications-module.h" #include "ns3/traffic-module.h" using namespace ns3; /** * \file sat-tutorial-example.cc * \ingroup satellite * * \brief Tutorial example application guides how to build up different scenarios of satellite network. * It also guides how to configure the satellite network e.g. modifying attributes. * Interval, packet size and test scenario can be given * in command line as user argument. * To see help for user arguments: * execute command -> ./waf --run "sat-tutorial-example --PrintHelp" */ NS_LOG_COMPONENT_DEFINE ("sat-tutorial-example"); int main (int argc, char *argv[]) { SatHelper::PreDefinedScenario_t satScenario = SatHelper::SIMPLE; std::string scenario = "Simple"; // Create simulation helper auto simulationHelper = CreateObject<SimulationHelper> ("example-tutorial"); // Enable creation traces Config::SetDefault ("ns3::SatHelper::ScenarioCreationTraceEnabled", BooleanValue (true)); // Enable packet traces (to file PacketTrace.log). Config::SetDefault ("ns3::SatHelper::PacketTraceEnabled", BooleanValue (true)); /***************************************************************************** 'To Select super frame configuration, Option 2' -- Start -- */ /// Set simulation output details Config::SetDefault ("ns3::SatEnvVariables::SimulationTag", StringValue (scenario)); Config::SetDefault ("ns3::SatEnvVariables::EnableSimulationOutputOverwrite", BooleanValue (true)); // std::string inputFileNameWithPath = Singleton<SatEnvVariables>::Get ()->LocateDirectory ("contrib/satellite/examples") + "/sat-tutorial-input.xml"; // // Config::SetDefault ("ns3::ConfigStore::Filename", StringValue (inputFileNameWithPath)); // Config::SetDefault ("ns3::ConfigStore::Mode", StringValue ("Load")); // Config::SetDefault ("ns3::ConfigStore::FileFormat", StringValue ("Xml")); // ConfigStore inputConfig; // inputConfig.ConfigureDefaults (); /** -- End -- 'To Select super frame configuration, Option 2' ******************************************************************************/ /****************************************************************************** Read command line arguments -- Start -- */ CommandLine cmd; cmd.AddValue ("scenario", "Scenario to be created", scenario); simulationHelper->AddDefaultUiArguments (cmd); cmd.Parse (argc, argv); /** -- End -- Read command line arguments ******************************************************************************/ /***************************************************************************** Create helper and simulation scenario -- Start -- */ // select simulation scenario to use if ( scenario == "larger") { satScenario = SatHelper::LARGER; } else if ( scenario == "full") { satScenario = SatHelper::FULL; } simulationHelper->SetOutputTag (scenario); simulationHelper->SetSimulationTime (Seconds (11)); // enable info logs LogComponentEnable ("CbrApplication", LOG_LEVEL_INFO); LogComponentEnable ("PacketSink", LOG_LEVEL_INFO); LogComponentEnable ("sat-tutorial-example", LOG_LEVEL_INFO); // remove next line from comments to run real time simulation //GlobalValue::Bind ("SimulatorImplementationType", StringValue ("ns3::RealtimeSimulatorImpl")); /***************************************************************************** 'To Select super frame configuration, Option 1' -- Start -- */ // Config::SetDefault ("ns3::SatConf::SuperFrameConfForSeq0", EnumValue (SatSuperframeConf::CONFIG_TYPE_2)); // Config::SetDefault ("ns3::SatConf::SuperFrameConfForSeq0", StringValue ("Configuration_2")); /** -- End -- 'To Select super frame configuration, Option 1' ******************************************************************************/ Ptr<SatHelper> helper = simulationHelper->CreateSatScenario (satScenario); /** -- End -- Create helper and simulation scenario ******************************************************************************/ /***************************************************************************** Manually creating an installing application (users) to satellite network. Note that you may simply call SimulationHelper::Install TrafficModel when using all nodes. -- Start -- */ // for getting UT users NodeContainer utUsers; // in full scenario get given beam UTs and use first UT's users // other scenarios get all UT users. if ( scenario == "full") { NodeContainer uts = helper->GetBeamHelper ()->GetUtNodes (1); utUsers = helper->GetUserHelper ()->GetUtUsers (uts.Get (0)); } else { utUsers = helper->GetUtUsers (); } // get GW users NodeContainer gwUsers = helper->GetGwUsers (); uint16_t port = 9; // create and install applications on GW user PacketSinkHelper sinkHelper ("ns3::UdpSocketFactory", InetSocketAddress (helper->GetUserAddress (gwUsers.Get (0)), port)); CbrHelper cbrHelper ("ns3::UdpSocketFactory", InetSocketAddress (helper->GetUserAddress (utUsers.Get (0)), port)); // install sink to receive packets from UT ApplicationContainer gwSink = sinkHelper.Install (gwUsers.Get (0)); gwSink.Start (Seconds (1.0)); gwSink.Stop (Seconds (10.0)); // install CBR to send packets to UT ApplicationContainer gwCbr = cbrHelper.Install (gwUsers.Get (0)); gwCbr.Start (Seconds (1.0)); gwCbr.Stop (Seconds (2.1)); // create applications on UT user sinkHelper.SetAttribute ("Local", AddressValue (Address (InetSocketAddress (helper->GetUserAddress (utUsers.Get (0)), port)))); cbrHelper.SetAttribute ("Remote", AddressValue (Address (InetSocketAddress (helper->GetUserAddress (gwUsers.Get (0)), port)))); // install sink to receive packets from GW ApplicationContainer utSink = sinkHelper.Install (utUsers.Get (0)); utSink.Start (Seconds (1.0)); utSink.Stop (Seconds (10.0)); // install CBR to send packets to GW ApplicationContainer utCbr = cbrHelper.Install (utUsers.Get (0)); utCbr.Start (Seconds (7.0)); utCbr.Stop (Seconds (9.1)); /** -- End -- Creating and installing application (users) to satellite network ******************************************************************************/ NS_LOG_INFO ("--- Tutorial-example ---"); NS_LOG_INFO (" Scenario used: " << scenario); NS_LOG_INFO (" "); /***************************************************************************** Store set attribute values to XML output file -- Start -- */ // Config::SetDefault ("ns3::ConfigStore::Filename", StringValue ("sat-tutorial-output.xml")); // Config::SetDefault ("ns3::ConfigStore::FileFormat", StringValue ("Xml")); // Config::SetDefault ("ns3::ConfigStore::Mode", StringValue ("Save")); // ConfigStore outputConfig; // outputConfig.ConfigureDefaults (); /** -- End -- Store set attribute values to XML output file *****************************************************************************/ /***************************************************************************** Run, stop and destroy simulation -- Start -- */ simulationHelper->RunSimulation (); /** -- End -- Run, stop and destroy simulation ******************************************************************************/ return 0; }
8,994
C++
.cc
186
43.83871
152
0.577928
sunshaozong111/NS3-with-LEO
34
7
1
GPL-2.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,664
sat-loo-example.cc
sunshaozong111_NS3-with-LEO/scratch/sat-loo-example.cc
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ /* * Copyright (c) 2014 Magister Solutions * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation; * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * Author: Frans Laakso <frans.laakso@magister.fi> * */ #include "ns3/core-module.h" #include "ns3/satellite-module.h" using namespace ns3; /** * \file sat-loo-example.cc * \ingroup satellite * * \brief Example for Loo's model fader class. Demonstrates the functionality * of the Loo's model fader used by the Markov-fading. The example creates * three faders with different parameters, switches the faders in time and * outputs the fading values. */ NS_LOG_COMPONENT_DEFINE ("sat-loo-example"); int main (int argc, char *argv[]) { /// Enable info logs LogComponentEnable ("sat-loo-example", LOG_LEVEL_INFO); LogComponentEnable ("SatLooModel", LOG_LEVEL_INFO); /// Set simulation output details Config::SetDefault ("ns3::SatEnvVariables::SimulationCampaignName", StringValue ("example-loo")); Config::SetDefault ("ns3::SatEnvVariables::SimulationTag", StringValue ("")); Config::SetDefault ("ns3::SatEnvVariables::EnableSimulationOutputOverwrite", BooleanValue (true)); /// Load default configuration Ptr<SatLooConf> looConf = CreateObject<SatLooConf> (); /// Create faders Ptr<SatLooModel> looFaderLineOfSight = CreateObject<SatLooModel> (looConf,3,0,0); Ptr<SatLooModel> looFaderLightShadowing = CreateObject<SatLooModel> (looConf,3,0,1); Ptr<SatLooModel> looFaderHeavyShadowing = CreateObject<SatLooModel> (looConf,3,0,2); /// Run simulation for (uint32_t i = 0; i < 1000; i++) { Simulator::Schedule (Time (300000 + i * 500000), &SatLooModel::GetChannelGainDb, looFaderLineOfSight); Simulator::Schedule (Time (500000 + i * 500000), &SatLooModel::GetChannelGainDb, looFaderLightShadowing); Simulator::Schedule (Time (700000 + i * 500000), &SatLooModel::GetChannelGainDb, looFaderHeavyShadowing); } Simulator::Run (); Simulator::Destroy (); return 0; }
2,672
C++
.cc
60
40.7
112
0.727413
sunshaozong111/NS3-with-LEO
34
7
1
GPL-2.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,665
sat-markov-fading-trace-example.cc
sunshaozong111_NS3-with-LEO/scratch/sat-markov-fading-trace-example.cc
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ /* * Copyright (c) 2014 Magister Solutions * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation; * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * Author: Frans Laakso <frans.laakso@magister.fi> * */ #include <fstream> #include <vector> #include "ns3/core-module.h" #include "ns3/satellite-module.h" #include "ns3/gnuplot.h" NS_LOG_COMPONENT_DEFINE ("sat-markov-trace-example"); namespace ns3 { /** * \file sat-markov-fading-trace-example.cc * \ingroup satellite * * \brief Example for Markov fading calculations. Can be used to produce simple fading traces. * * This example can be run as it is, without any argument, i.e.: * * ./waf --run="contrib/satellite/examples/markov-trace-example" * * Gnuplot file (markov_fading_trace.plt) will be generated as output. This * file can be converted to a PNG file, for example by this command: * * gnuplot markov_fading_trace.plt * * which will produce `markov_fading_trace.png` file in the same directory. */ class SatMarkovFadingExamplePlot : public Object { public: SatMarkovFadingExamplePlot (); static TypeId GetTypeId (); void Run (); private: Gnuplot2dDataset GetGnuplotDataset (std::string title); Gnuplot GetGnuplot (std::string outputName, std::string title); void FadingTraceCb (std::string context, double time, SatEnums::ChannelType_t chType, double fadingValue); double GetElevation (); double GetVelocity (); double m_elevation; double m_velocity; std::vector <std::pair<double,double> > m_fadingValues; }; NS_OBJECT_ENSURE_REGISTERED (SatMarkovFadingExamplePlot); TypeId SatMarkovFadingExamplePlot::GetTypeId () { static TypeId tid = TypeId ("ns3::SatMarkovFadingExamplePlot") .SetParent<Object> () .AddConstructor<SatMarkovFadingExamplePlot> (); return tid; } SatMarkovFadingExamplePlot::SatMarkovFadingExamplePlot () { m_elevation = 45; m_velocity = 0; } void SatMarkovFadingExamplePlot::FadingTraceCb (std::string context, double time, SatEnums::ChannelType_t chType, double fadingValue) { std::cout << time << " " << chType << " " << 10 * log10 (fadingValue) << std::endl; m_fadingValues.push_back (std::make_pair (time,10 * log10 (fadingValue))); } double SatMarkovFadingExamplePlot::GetElevation () { return m_elevation; } double SatMarkovFadingExamplePlot::GetVelocity () { return m_velocity; } Gnuplot2dDataset SatMarkovFadingExamplePlot::GetGnuplotDataset (std::string title) { Gnuplot2dDataset ret; ret.SetTitle (title); ret.SetStyle (Gnuplot2dDataset::LINES); for (uint32_t i = 0; i < m_fadingValues.size (); i++) { ret.Add (m_fadingValues[i].first, m_fadingValues[i].second); } return ret; } Gnuplot SatMarkovFadingExamplePlot::GetGnuplot (std::string outputName, std::string title) { Gnuplot ret (outputName + ".png"); ret.SetTitle (title); ret.SetTerminal ("png"); ret.SetLegend ("Time (s)", "Fading (dB)"); ret.AppendExtra ("set key top right"); ret.AppendExtra ("set grid xtics mxtics ytics"); return ret; } void SatMarkovFadingExamplePlot::Run () { /// Set simulation output details Config::SetDefault ("ns3::SatEnvVariables::SimulationCampaignName", StringValue ("example-markov-fading-trace")); Config::SetDefault ("ns3::SatEnvVariables::SimulationTag", StringValue ("")); Config::SetDefault ("ns3::SatEnvVariables::EnableSimulationOutputOverwrite", BooleanValue (true)); /// Create default Markov & Loo configurations Ptr<SatMarkovConf> markovConf = CreateObject<SatMarkovConf> (); SatBaseFading::ElevationCallback elevationCb = MakeCallback (&SatMarkovFadingExamplePlot::GetElevation,this); SatBaseFading::VelocityCallback velocityCb = MakeCallback (&SatMarkovFadingExamplePlot::GetVelocity,this); /// Create fading container based on default configuration Ptr<SatMarkovContainer> markovContainer = CreateObject<SatMarkovContainer> (markovConf,elevationCb,velocityCb); markovContainer->TraceConnect ("FadingTrace","The trace for fading values",MakeCallback (&SatMarkovFadingExamplePlot::FadingTraceCb,this)); Address macAddress; /// Run simulation for (uint32_t i = 0; i < 100000; i++) { Simulator::Schedule (MilliSeconds (1 * i), &SatMarkovContainer::DoGetFading, markovContainer, macAddress, SatEnums::FORWARD_USER_CH); } Simulator::Schedule (MilliSeconds (0), &SatMarkovContainer::LockToSetAndState, markovContainer, 0,0); Simulator::Schedule (MilliSeconds (20000), &SatMarkovContainer::LockToSetAndState, markovContainer, 0,1); Simulator::Schedule (MilliSeconds (40000), &SatMarkovContainer::LockToSetAndState, markovContainer, 0,2); Simulator::Schedule (MilliSeconds (60000), &SatMarkovContainer::LockToSetAndState, markovContainer, 0,0); Simulator::Schedule (MilliSeconds (80000), &SatMarkovContainer::LockToSetAndState, markovContainer, 0,1); Simulator::Run (); Gnuplot2dDataset dataset = GetGnuplotDataset ("Markov Fading Trace"); Gnuplot plot = GetGnuplot ("markov_fading_trace", "Markov Fading Trace"); plot.AddDataset (dataset); std::string plotFileName = "markov_fading_trace.plt"; std::ofstream plotFile (plotFileName.c_str ()); plot.GenerateOutput (plotFile); plotFile.close (); std::cout << "Output file written: " << plotFileName << std::endl; int result = system ("gnuplot markov_fading_trace.plt"); if (result < 0) { std::cout << "Unable to open shell process for Gnuplot file conversion, conversion not done!" << std::endl; } else { std::cout << "Output file converted to: markov_fading_trace.png" << std::endl; } Simulator::Destroy (); } } int main (int argc, char *argv[]) { ns3::Ptr<ns3::SatMarkovFadingExamplePlot> stub; stub = ns3::CreateObject<ns3::SatMarkovFadingExamplePlot> (); ns3::Config::RegisterRootNamespaceObject (stub); stub->Run (); return 0; }
6,674
C++
.cc
169
35.52071
142
0.728671
sunshaozong111/NS3-with-LEO
34
7
1
GPL-2.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,688
dataset.h
eloquentarduino_EloquentMicroML/examples/OvOExmple/dataset.h
// 3 class digits dataset #pragma once #define FEATURES_DIM 64 #define NUM_CLASSES 3 #define TRAIN_SAMPLES 210 #define TEST_SAMPLES 90 float X_train[TRAIN_SAMPLES][FEATURES_DIM] = { { 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 15.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 16.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 14.0 , 16.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 10.0 , 16.0 , 6.0 , 0.0 , 0.0 , 1.0 , 7.0 , 11.0 , 16.0 , 13.0 , 0.0 , 0.0 , 0.0 , 9.0 , 16.0 , 16.0 , 14.0 , 1.0 , 0.0 , 0.0 , 0.0 , 3.0 , 8.0 , 14.0 , 16.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 11.0 , 16.0 , 12.0 , 0.0 }, { 0.0 , 0.0 , 6.0 , 16.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 2.0 , 16.0 , 8.0 , 9.0 , 16.0 , 3.0 , 0.0 , 0.0 , 8.0 , 16.0 , 1.0 , 0.0 , 9.0 , 9.0 , 0.0 , 0.0 , 9.0 , 12.0 , 0.0 , 0.0 , 8.0 , 12.0 , 0.0 , 0.0 , 10.0 , 12.0 , 0.0 , 0.0 , 8.0 , 10.0 , 0.0 , 0.0 , 8.0 , 13.0 , 0.0 , 0.0 , 9.0 , 8.0 , 0.0 , 0.0 , 2.0 , 16.0 , 8.0 , 6.0 , 15.0 , 3.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 15.0 , 8.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 4.0 , 11.0 , 15.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 13.0 , 16.0 , 11.0 , 13.0 , 7.0 , 0.0 , 0.0 , 3.0 , 16.0 , 12.0 , 0.0 , 4.0 , 8.0 , 0.0 , 0.0 , 6.0 , 16.0 , 5.0 , 0.0 , 4.0 , 8.0 , 0.0 , 0.0 , 7.0 , 9.0 , 0.0 , 0.0 , 9.0 , 7.0 , 0.0 , 0.0 , 4.0 , 10.0 , 0.0 , 2.0 , 15.0 , 2.0 , 0.0 , 0.0 , 1.0 , 16.0 , 12.0 , 14.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 14.0 , 14.0 , 1.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 5.0 , 15.0 , 14.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 13.0 , 15.0 , 9.0 , 15.0 , 2.0 , 0.0 , 0.0 , 4.0 , 16.0 , 12.0 , 0.0 , 10.0 , 6.0 , 0.0 , 0.0 , 8.0 , 16.0 , 9.0 , 0.0 , 8.0 , 10.0 , 0.0 , 0.0 , 7.0 , 15.0 , 5.0 , 0.0 , 12.0 , 11.0 , 0.0 , 0.0 , 7.0 , 13.0 , 0.0 , 5.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 16.0 , 12.0 , 15.0 , 13.0 , 1.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 12.0 , 2.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 12.0 , 9.0 , 12.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 14.0 , 16.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 9.0 , 3.0 , 15.0 , 2.0 , 0.0 , 0.0 , 4.0 , 16.0 , 1.0 , 0.0 , 16.0 , 5.0 , 0.0 , 0.0 , 5.0 , 12.0 , 0.0 , 0.0 , 16.0 , 5.0 , 0.0 , 0.0 , 3.0 , 14.0 , 1.0 , 4.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 15.0 , 12.0 , 14.0 , 14.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 12.0 , 12.0 , 2.0 , 0.0 , 0.0 }, { 0.0 , 2.0 , 15.0 , 16.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 11.0 , 8.0 , 16.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 1.0 , 7.0 , 13.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 15.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 15.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 14.0 , 11.0 , 6.0 , 5.0 , 2.0 , 0.0 , 0.0 , 1.0 , 16.0 , 16.0 , 16.0 , 16.0 , 9.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 0.0 , 12.0 , 11.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 16.0 , 16.0 , 7.0 , 0.0 , 0.0 , 0.0 , 1.0 , 14.0 , 16.0 , 16.0 , 7.0 , 0.0 , 0.0 , 1.0 , 14.0 , 16.0 , 14.0 , 16.0 , 8.0 , 0.0 , 0.0 , 5.0 , 12.0 , 3.0 , 8.0 , 16.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 12.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 4.0 , 13.0 , 13.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 16.0 , 16.0 , 1.0 , 0.0 , 0.0 , 0.0 , 3.0 , 14.0 , 16.0 , 13.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 16.0 , 5.0 , 0.0 , 0.0 , 0.0 , 3.0 , 15.0 , 16.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 16.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 2.0 , 8.0 , 15.0 , 16.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 14.0 , 12.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 3.0 , 12.0 , 10.0 , 1.0 , 0.0 , 0.0 , 0.0 , 1.0 , 16.0 , 16.0 , 16.0 , 10.0 , 0.0 , 0.0 , 0.0 , 5.0 , 16.0 , 13.0 , 6.0 , 16.0 , 1.0 , 0.0 , 0.0 , 5.0 , 16.0 , 7.0 , 0.0 , 13.0 , 3.0 , 0.0 , 0.0 , 5.0 , 16.0 , 4.0 , 0.0 , 13.0 , 7.0 , 0.0 , 0.0 , 1.0 , 16.0 , 8.0 , 0.0 , 14.0 , 7.0 , 0.0 , 0.0 , 0.0 , 13.0 , 14.0 , 13.0 , 16.0 , 3.0 , 0.0 , 0.0 , 0.0 , 2.0 , 13.0 , 15.0 , 6.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 3.0 , 11.0 , 16.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 16.0 , 10.0 , 14.0 , 6.0 , 0.0 , 0.0 , 0.0 , 15.0 , 7.0 , 0.0 , 11.0 , 8.0 , 0.0 , 0.0 , 3.0 , 16.0 , 2.0 , 0.0 , 8.0 , 8.0 , 0.0 , 0.0 , 4.0 , 12.0 , 0.0 , 0.0 , 9.0 , 8.0 , 0.0 , 0.0 , 6.0 , 15.0 , 1.0 , 0.0 , 12.0 , 8.0 , 0.0 , 0.0 , 3.0 , 15.0 , 10.0 , 8.0 , 15.0 , 4.0 , 0.0 , 0.0 , 0.0 , 5.0 , 12.0 , 14.0 , 9.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 0.0 , 14.0 , 16.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 16.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 1.0 , 12.0 , 16.0 , 16.0 , 8.0 , 0.0 , 0.0 , 5.0 , 14.0 , 16.0 , 16.0 , 16.0 , 5.0 , 0.0 , 0.0 , 1.0 , 4.0 , 7.0 , 16.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 16.0 , 16.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 16.0 , 16.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 16.0 , 16.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 4.0 , 14.0 , 14.0 , 4.0 , 0.0 , 0.0 , 0.0 , 1.0 , 15.0 , 16.0 , 16.0 , 2.0 , 0.0 , 0.0 , 2.0 , 13.0 , 16.0 , 16.0 , 16.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 16.0 , 16.0 , 16.0 , 0.0 , 0.0 , 0.0 , 2.0 , 7.0 , 8.0 , 16.0 , 16.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 16.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 15.0 , 4.0 , 0.0 }, { 0.0 , 0.0 , 1.0 , 15.0 , 13.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 16.0 , 14.0 , 8.0 , 0.0 , 0.0 , 0.0 , 8.0 , 12.0 , 9.0 , 2.0 , 13.0 , 2.0 , 0.0 , 0.0 , 7.0 , 9.0 , 1.0 , 0.0 , 6.0 , 6.0 , 0.0 , 0.0 , 5.0 , 9.0 , 0.0 , 0.0 , 3.0 , 9.0 , 0.0 , 0.0 , 0.0 , 15.0 , 2.0 , 0.0 , 8.0 , 12.0 , 0.0 , 0.0 , 0.0 , 9.0 , 15.0 , 13.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 13.0 , 14.0 , 8.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 3.0 , 12.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 12.0 , 12.0 , 11.0 , 13.0 , 0.0 , 0.0 , 0.0 , 2.0 , 15.0 , 2.0 , 0.0 , 12.0 , 5.0 , 0.0 , 0.0 , 4.0 , 8.0 , 0.0 , 0.0 , 6.0 , 8.0 , 0.0 , 0.0 , 8.0 , 7.0 , 0.0 , 0.0 , 4.0 , 8.0 , 0.0 , 0.0 , 7.0 , 7.0 , 0.0 , 0.0 , 9.0 , 7.0 , 0.0 , 0.0 , 3.0 , 13.0 , 4.0 , 7.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 15.0 , 5.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 2.0 , 14.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 14.0 , 10.0 , 16.0 , 1.0 , 0.0 , 0.0 , 0.0 , 11.0 , 8.0 , 2.0 , 15.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 8.0 , 1.0 , 13.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 3.0 , 6.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 14.0 , 9.0 , 4.0 , 7.0 , 3.0 , 0.0 , 0.0 , 1.0 , 14.0 , 16.0 , 16.0 , 13.0 , 8.0 }, { 0.0 , 0.0 , 8.0 , 14.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 16.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 16.0 , 14.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 12.0 , 12.0 , 16.0 , 16.0 , 12.0 , 4.0 , 0.0 , 0.0 , 7.0 , 16.0 , 16.0 , 16.0 , 12.0 , 5.0 }, { 0.0 , 0.0 , 1.0 , 13.0 , 12.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 16.0 , 16.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 14.0 , 6.0 , 0.0 , 13.0 , 3.0 , 0.0 , 0.0 , 6.0 , 10.0 , 0.0 , 0.0 , 10.0 , 6.0 , 0.0 , 0.0 , 7.0 , 13.0 , 0.0 , 0.0 , 9.0 , 8.0 , 0.0 , 0.0 , 3.0 , 16.0 , 1.0 , 3.0 , 14.0 , 7.0 , 0.0 , 0.0 , 0.0 , 11.0 , 16.0 , 16.0 , 16.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 16.0 , 6.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 2.0 , 13.0 , 11.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 14.0 , 11.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 15.0 , 7.0 , 6.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 5.0 , 9.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 14.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 16.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 12.0 , 12.0 , 4.0 , 4.0 , 1.0 , 0.0 , 0.0 , 1.0 , 15.0 , 16.0 , 16.0 , 16.0 , 7.0 }, { 0.0 , 0.0 , 6.0 , 16.0 , 16.0 , 7.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 13.0 , 10.0 , 16.0 , 0.0 , 0.0 , 0.0 , 6.0 , 9.0 , 0.0 , 6.0 , 15.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 13.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 15.0 , 8.0 , 3.0 , 5.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 11.0 , 16.0 , 9.0 , 0.0 , 0.0 , 0.0 , 5.0 , 16.0 , 16.0 , 7.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 2.0 , 10.0 , 15.0 , 1.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 16.0 , 13.0 , 13.0 , 0.0 , 0.0 , 0.0 , 5.0 , 16.0 , 12.0 , 1.0 , 12.0 , 1.0 , 0.0 , 0.0 , 7.0 , 13.0 , 5.0 , 0.0 , 7.0 , 5.0 , 0.0 , 0.0 , 2.0 , 14.0 , 0.0 , 0.0 , 7.0 , 10.0 , 0.0 , 0.0 , 0.0 , 12.0 , 2.0 , 0.0 , 12.0 , 7.0 , 0.0 , 0.0 , 0.0 , 9.0 , 12.0 , 12.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 16.0 , 6.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 9.0 , 9.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 15.0 , 15.0 , 14.0 , 12.0 , 0.0 , 0.0 , 0.0 , 3.0 , 10.0 , 1.0 , 0.0 , 12.0 , 5.0 , 0.0 , 0.0 , 5.0 , 8.0 , 0.0 , 0.0 , 8.0 , 6.0 , 0.0 , 0.0 , 8.0 , 8.0 , 0.0 , 0.0 , 8.0 , 8.0 , 0.0 , 0.0 , 5.0 , 8.0 , 0.0 , 0.0 , 10.0 , 6.0 , 0.0 , 0.0 , 4.0 , 13.0 , 4.0 , 6.0 , 13.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 14.0 , 3.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 4.0 , 14.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 13.0 , 16.0 , 16.0 , 10.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 4.0 , 5.0 , 16.0 , 6.0 , 0.0 , 0.0 , 8.0 , 14.0 , 0.0 , 1.0 , 15.0 , 5.0 , 0.0 , 0.0 , 6.0 , 16.0 , 0.0 , 0.0 , 13.0 , 4.0 , 0.0 , 0.0 , 4.0 , 15.0 , 1.0 , 7.0 , 16.0 , 1.0 , 0.0 , 0.0 , 2.0 , 15.0 , 14.0 , 16.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 13.0 , 9.0 , 0.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 7.0 , 13.0 , 9.0 , 1.0 , 0.0 , 0.0 , 0.0 , 7.0 , 15.0 , 8.0 , 15.0 , 5.0 , 0.0 , 0.0 , 1.0 , 15.0 , 2.0 , 0.0 , 10.0 , 8.0 , 0.0 , 0.0 , 4.0 , 12.0 , 0.0 , 0.0 , 12.0 , 7.0 , 0.0 , 0.0 , 5.0 , 9.0 , 0.0 , 0.0 , 14.0 , 3.0 , 0.0 , 0.0 , 4.0 , 14.0 , 0.0 , 0.0 , 11.0 , 0.0 , 0.0 , 0.0 , 1.0 , 16.0 , 8.0 , 8.0 , 11.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 11.0 , 14.0 , 5.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 8.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 14.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 16.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 6.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 13.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 8.0 , 14.0 , 14.0 , 8.0 , 4.0 , 0.0 , 0.0 , 9.0 , 16.0 , 16.0 , 16.0 , 16.0 , 13.0 }, { 0.0 , 1.0 , 12.0 , 16.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 15.0 , 14.0 , 11.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 13.0 , 10.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 12.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 14.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 8.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 13.0 , 16.0 , 16.0 , 16.0 , 9.0 , 0.0 , 0.0 , 2.0 , 16.0 , 13.0 , 11.0 , 9.0 , 3.0 , 0.0 }, { 0.0 , 0.0 , 4.0 , 14.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 16.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 12.0 , 16.0 , 7.0 , 0.0 , 0.0 , 0.0 , 3.0 , 5.0 , 12.0 , 15.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 15.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 12.0 , 5.0 , 1.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 16.0 , 15.0 , 4.0 , 0.0 }, { 0.0 , 0.0 , 3.0 , 14.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 14.0 , 16.0 , 14.0 , 9.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 16.0 , 11.0 , 15.0 , 3.0 , 0.0 , 0.0 , 5.0 , 15.0 , 6.0 , 0.0 , 4.0 , 8.0 , 0.0 , 0.0 , 8.0 , 8.0 , 0.0 , 0.0 , 4.0 , 8.0 , 0.0 , 0.0 , 5.0 , 11.0 , 0.0 , 0.0 , 6.0 , 6.0 , 0.0 , 0.0 , 0.0 , 13.0 , 10.0 , 5.0 , 15.0 , 5.0 , 0.0 , 0.0 , 0.0 , 2.0 , 12.0 , 14.0 , 8.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 3.0 , 15.0 , 10.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 10.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 12.0 , 1.0 , 15.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 4.0 , 15.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 15.0 , 6.0 , 0.0 , 0.0 , 0.0 , 4.0 , 15.0 , 16.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 13.0 , 16.0 , 15.0 , 9.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 9.0 , 14.0 , 7.0 , 0.0 }, { 0.0 , 0.0 , 4.0 , 12.0 , 13.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 14.0 , 16.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 12.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 12.0 , 16.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 13.0 , 16.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 15.0 , 16.0 , 11.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 3.0 , 16.0 , 11.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 16.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 13.0 , 16.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 16.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 12.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 16.0 , 15.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 13.0 , 15.0 , 0.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 6.0 , 13.0 , 10.0 , 3.0 , 0.0 , 0.0 , 0.0 , 5.0 , 15.0 , 11.0 , 16.0 , 11.0 , 0.0 , 0.0 , 0.0 , 2.0 , 6.0 , 0.0 , 16.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 16.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 15.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 16.0 , 8.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 14.0 , 13.0 , 12.0 , 4.0 , 0.0 }, { 0.0 , 5.0 , 16.0 , 12.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 14.0 , 15.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 14.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 16.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 16.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 14.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 16.0 , 9.0 , 8.0 , 8.0 , 3.0 , 0.0 , 0.0 , 8.0 , 16.0 , 16.0 , 16.0 , 16.0 , 4.0 , 0.0 }, { 0.0 , 0.0 , 2.0 , 15.0 , 10.0 , 1.0 , 0.0 , 0.0 , 0.0 , 2.0 , 13.0 , 12.0 , 14.0 , 9.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 1.0 , 1.0 , 14.0 , 2.0 , 0.0 , 0.0 , 8.0 , 16.0 , 0.0 , 0.0 , 10.0 , 5.0 , 0.0 , 0.0 , 8.0 , 14.0 , 2.0 , 0.0 , 8.0 , 8.0 , 0.0 , 0.0 , 6.0 , 14.0 , 0.0 , 0.0 , 8.0 , 8.0 , 0.0 , 0.0 , 1.0 , 14.0 , 12.0 , 8.0 , 15.0 , 6.0 , 0.0 , 0.0 , 0.0 , 3.0 , 13.0 , 16.0 , 8.0 , 1.0 , 0.0 }, { 0.0 , 0.0 , 7.0 , 13.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 15.0 , 16.0 , 11.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 14.0 , 5.0 , 15.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 2.0 , 14.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 12.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 4.0 , 4.0 , 0.0 , 0.0 , 0.0 , 7.0 , 16.0 , 16.0 , 16.0 , 16.0 , 3.0 , 0.0 , 0.0 , 6.0 , 15.0 , 6.0 , 9.0 , 9.0 , 1.0 }, { 0.0 , 4.0 , 16.0 , 15.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 14.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 8.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 12.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 15.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 16.0 , 3.0 , 6.0 , 9.0 , 0.0 , 0.0 , 3.0 , 15.0 , 15.0 , 8.0 , 13.0 , 15.0 , 0.0 , 0.0 , 4.0 , 15.0 , 16.0 , 16.0 , 16.0 , 7.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 13.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 15.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 1.0 , 13.0 , 16.0 , 16.0 , 3.0 , 0.0 , 0.0 , 0.0 , 12.0 , 16.0 , 16.0 , 16.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 3.0 , 16.0 , 13.0 , 0.0 , 0.0 , 0.0 , 2.0 , 3.0 , 0.0 , 16.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 16.0 , 13.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 12.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 1.0 , 14.0 , 13.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 16.0 , 16.0 , 3.0 , 0.0 , 0.0 , 5.0 , 11.0 , 15.0 , 16.0 , 16.0 , 0.0 , 0.0 , 0.0 , 4.0 , 15.0 , 16.0 , 16.0 , 15.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 16.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 13.0 , 15.0 , 2.0 , 0.0 }, { 0.0 , 0.0 , 1.0 , 15.0 , 11.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 12.0 , 8.0 , 12.0 , 0.0 , 0.0 , 0.0 , 1.0 , 15.0 , 1.0 , 6.0 , 16.0 , 2.0 , 0.0 , 0.0 , 2.0 , 12.0 , 0.0 , 1.0 , 11.0 , 6.0 , 0.0 , 0.0 , 5.0 , 10.0 , 0.0 , 0.0 , 11.0 , 4.0 , 0.0 , 0.0 , 2.0 , 13.0 , 0.0 , 0.0 , 10.0 , 3.0 , 0.0 , 0.0 , 0.0 , 13.0 , 2.0 , 3.0 , 13.0 , 3.0 , 0.0 , 0.0 , 0.0 , 1.0 , 13.0 , 16.0 , 15.0 , 1.0 , 0.0 }, { 0.0 , 0.0 , 1.0 , 13.0 , 16.0 , 10.0 , 0.0 , 0.0 , 0.0 , 1.0 , 13.0 , 15.0 , 8.0 , 16.0 , 3.0 , 0.0 , 0.0 , 8.0 , 15.0 , 3.0 , 4.0 , 15.0 , 0.0 , 0.0 , 0.0 , 1.0 , 3.0 , 0.0 , 12.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 14.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 8.0 , 0.0 , 4.0 , 0.0 , 0.0 , 0.0 , 1.0 , 16.0 , 8.0 , 13.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 14.0 , 16.0 , 11.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 2.0 , 14.0 , 15.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 16.0 , 16.0 , 11.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 16.0 , 16.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 16.0 , 16.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 14.0 , 16.0 , 14.0 , 2.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 15.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 15.0 , 13.0 , 2.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 11.0 , 15.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 16.0 , 15.0 , 15.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 14.0 , 11.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 16.0 , 10.0 , 3.0 , 0.0 , 0.0 , 0.0 , 11.0 , 16.0 , 16.0 , 16.0 , 16.0 , 6.0 , 0.0 , 0.0 , 11.0 , 16.0 , 10.0 , 5.0 , 13.0 , 6.0 }, { 0.0 , 0.0 , 6.0 , 15.0 , 15.0 , 3.0 , 0.0 , 0.0 , 0.0 , 5.0 , 16.0 , 13.0 , 15.0 , 8.0 , 0.0 , 0.0 , 0.0 , 8.0 , 13.0 , 0.0 , 13.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 5.0 , 9.0 , 8.0 , 0.0 , 0.0 , 0.0 , 8.0 , 15.0 , 15.0 , 15.0 , 3.0 , 0.0 , 0.0 , 0.0 , 5.0 , 16.0 , 12.0 , 1.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 5.0 , 8.0 , 11.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 13.0 , 16.0 , 12.0 , 12.0 , 0.0 , 0.0 , 0.0 , 1.0 , 16.0 , 9.0 , 0.0 , 9.0 , 3.0 , 0.0 , 0.0 , 3.0 , 16.0 , 6.0 , 0.0 , 6.0 , 6.0 , 0.0 , 0.0 , 3.0 , 11.0 , 1.0 , 0.0 , 5.0 , 6.0 , 0.0 , 0.0 , 0.0 , 12.0 , 0.0 , 0.0 , 11.0 , 6.0 , 0.0 , 0.0 , 0.0 , 14.0 , 5.0 , 12.0 , 15.0 , 1.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 13.0 , 2.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 3.0 , 16.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 15.0 , 15.0 , 16.0 , 7.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 3.0 , 7.0 , 12.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 3.0 , 0.0 , 13.0 , 3.0 , 0.0 , 0.0 , 8.0 , 10.0 , 0.0 , 0.0 , 12.0 , 8.0 , 0.0 , 0.0 , 1.0 , 15.0 , 2.0 , 0.0 , 9.0 , 11.0 , 0.0 , 0.0 , 0.0 , 13.0 , 14.0 , 10.0 , 15.0 , 12.0 , 0.0 , 0.0 , 0.0 , 3.0 , 10.0 , 16.0 , 14.0 , 3.0 , 0.0 }, { 0.0 , 0.0 , 7.0 , 15.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 9.0 , 14.0 , 3.0 , 0.0 , 0.0 , 0.0 , 2.0 , 14.0 , 0.0 , 13.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 0.0 , 11.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 13.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 15.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 16.0 , 16.0 , 16.0 , 15.0 , 0.0 , 0.0 , 0.0 , 6.0 , 15.0 , 7.0 , 4.0 , 6.0 , 1.0 }, { 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 14.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 16.0 , 16.0 , 5.0 , 0.0 , 0.0 , 1.0 , 13.0 , 15.0 , 12.0 , 16.0 , 1.0 , 0.0 , 0.0 , 4.0 , 12.0 , 3.0 , 10.0 , 15.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 13.0 , 4.0 , 0.0 }, { 0.0 , 0.0 , 2.0 , 14.0 , 15.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 16.0 , 16.0 , 15.0 , 1.0 , 0.0 , 0.0 , 3.0 , 16.0 , 10.0 , 10.0 , 16.0 , 4.0 , 0.0 , 0.0 , 5.0 , 16.0 , 0.0 , 0.0 , 14.0 , 6.0 , 0.0 , 0.0 , 5.0 , 16.0 , 6.0 , 0.0 , 12.0 , 7.0 , 0.0 , 0.0 , 1.0 , 15.0 , 13.0 , 4.0 , 13.0 , 6.0 , 0.0 , 0.0 , 0.0 , 11.0 , 16.0 , 16.0 , 15.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 11.0 , 13.0 , 4.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 6.0 , 14.0 , 10.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 15.0 , 15.0 , 13.0 , 15.0 , 3.0 , 0.0 , 0.0 , 2.0 , 16.0 , 10.0 , 0.0 , 13.0 , 9.0 , 0.0 , 0.0 , 1.0 , 16.0 , 5.0 , 0.0 , 12.0 , 5.0 , 0.0 , 0.0 , 0.0 , 16.0 , 3.0 , 0.0 , 13.0 , 6.0 , 0.0 , 0.0 , 1.0 , 15.0 , 5.0 , 6.0 , 13.0 , 1.0 , 0.0 , 0.0 , 0.0 , 16.0 , 11.0 , 14.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 16.0 , 11.0 , 1.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 5.0 , 15.0 , 15.0 , 2.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 9.0 , 16.0 , 5.0 , 0.0 , 0.0 , 0.0 , 5.0 , 9.0 , 1.0 , 16.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 16.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 14.0 , 7.0 , 6.0 , 2.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 16.0 , 15.0 , 2.0 , 0.0 }, { 0.0 , 0.0 , 5.0 , 12.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 15.0 , 14.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 13.0 , 1.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 10.0 , 0.0 , 14.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 0.0 , 16.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 15.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 16.0 , 15.0 , 9.0 , 8.0 , 2.0 , 0.0 , 0.0 , 3.0 , 11.0 , 8.0 , 13.0 , 12.0 , 4.0 }, { 0.0 , 0.0 , 0.0 , 0.0 , 14.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 11.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 16.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 13.0 , 16.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 12.0 , 16.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 1.0 , 13.0 , 12.0 , 16.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 14.0 , 10.0 , 0.0 , 0.0 }, { 0.0 , 2.0 , 11.0 , 16.0 , 15.0 , 2.0 , 0.0 , 0.0 , 0.0 , 12.0 , 16.0 , 15.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 2.0 , 3.0 , 2.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 14.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 12.0 , 12.0 , 3.0 , 11.0 , 9.0 , 0.0 , 0.0 , 0.0 , 16.0 , 16.0 , 16.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 14.0 , 15.0 , 12.0 , 5.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 0.0 , 14.0 , 13.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 16.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 14.0 , 16.0 , 12.0 , 0.0 , 0.0 , 0.0 , 1.0 , 10.0 , 16.0 , 16.0 , 12.0 , 0.0 , 0.0 , 0.0 , 3.0 , 12.0 , 14.0 , 16.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 16.0 , 15.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 14.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 13.0 , 16.0 , 1.0 , 0.0 }, { 0.0 , 0.0 , 3.0 , 13.0 , 11.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 16.0 , 16.0 , 16.0 , 2.0 , 0.0 , 0.0 , 4.0 , 16.0 , 9.0 , 1.0 , 14.0 , 2.0 , 0.0 , 0.0 , 4.0 , 16.0 , 0.0 , 0.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 16.0 , 1.0 , 0.0 , 12.0 , 8.0 , 0.0 , 0.0 , 0.0 , 15.0 , 9.0 , 0.0 , 13.0 , 6.0 , 0.0 , 0.0 , 0.0 , 9.0 , 14.0 , 9.0 , 14.0 , 1.0 , 0.0 , 0.0 , 0.0 , 2.0 , 12.0 , 13.0 , 4.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 2.0 , 15.0 , 13.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 15.0 , 11.0 , 15.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 6.0 , 0.0 , 10.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 8.0 , 0.0 , 3.0 , 8.0 , 0.0 , 0.0 , 8.0 , 14.0 , 3.0 , 0.0 , 4.0 , 8.0 , 0.0 , 0.0 , 3.0 , 15.0 , 1.0 , 0.0 , 3.0 , 7.0 , 0.0 , 0.0 , 0.0 , 14.0 , 11.0 , 6.0 , 14.0 , 5.0 , 0.0 , 0.0 , 0.0 , 4.0 , 12.0 , 15.0 , 6.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 2.0 , 11.0 , 13.0 , 5.0 , 0.0 , 0.0 , 0.0 , 1.0 , 14.0 , 9.0 , 8.0 , 14.0 , 0.0 , 0.0 , 0.0 , 6.0 , 13.0 , 1.0 , 2.0 , 16.0 , 2.0 , 0.0 , 0.0 , 7.0 , 7.0 , 0.0 , 0.0 , 12.0 , 5.0 , 0.0 , 0.0 , 7.0 , 9.0 , 0.0 , 0.0 , 3.0 , 9.0 , 0.0 , 0.0 , 2.0 , 12.0 , 0.0 , 0.0 , 4.0 , 11.0 , 0.0 , 0.0 , 0.0 , 12.0 , 6.0 , 4.0 , 14.0 , 7.0 , 0.0 , 0.0 , 0.0 , 3.0 , 13.0 , 16.0 , 9.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 1.0 , 14.0 , 14.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 11.0 , 13.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 0.0 , 13.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 15.0 , 1.0 , 0.0 , 0.0 , 4.0 , 8.0 , 12.0 , 15.0 , 4.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 12.0 , 12.0 , 4.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 13.0 , 16.0 , 5.0 , 0.0 }, { 0.0 , 0.0 , 10.0 , 16.0 , 11.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 15.0 , 10.0 , 15.0 , 2.0 , 0.0 , 0.0 , 0.0 , 11.0 , 11.0 , 2.0 , 16.0 , 5.0 , 0.0 , 0.0 , 0.0 , 7.0 , 5.0 , 6.0 , 16.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 15.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 12.0 , 14.0 , 8.0 , 10.0 , 5.0 , 0.0 , 0.0 , 0.0 , 12.0 , 16.0 , 16.0 , 16.0 , 15.0 , 0.0 }, { 0.0 , 0.0 , 3.0 , 15.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 15.0 , 11.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 15.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 14.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 13.0 , 14.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 3.0 , 9.0 , 13.0 , 16.0 , 12.0 , 5.0 , 0.0 , 0.0 , 3.0 , 15.0 , 16.0 , 16.0 , 16.0 , 16.0 }, { 0.0 , 0.0 , 1.0 , 10.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 13.0 , 10.0 , 16.0 , 0.0 , 0.0 , 0.0 , 0.0 , 12.0 , 1.0 , 4.0 , 16.0 , 1.0 , 0.0 , 0.0 , 0.0 , 1.0 , 0.0 , 13.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 13.0 , 15.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 15.0 , 14.0 , 7.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 11.0 , 14.0 , 15.0 , 5.0 , 0.0 }, { 0.0 , 0.0 , 6.0 , 15.0 , 15.0 , 1.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 13.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 10.0 , 11.0 , 2.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 1.0 , 1.0 , 10.0 , 14.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 14.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 14.0 , 1.0 , 12.0 , 9.0 , 0.0 , 0.0 , 0.0 , 11.0 , 15.0 , 14.0 , 16.0 , 9.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 12.0 , 5.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 9.0 , 14.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 13.0 , 4.0 , 13.0 , 2.0 , 0.0 , 0.0 , 2.0 , 14.0 , 0.0 , 0.0 , 10.0 , 6.0 , 0.0 , 0.0 , 4.0 , 9.0 , 0.0 , 0.0 , 6.0 , 8.0 , 0.0 , 0.0 , 5.0 , 8.0 , 0.0 , 0.0 , 8.0 , 7.0 , 0.0 , 0.0 , 2.0 , 11.0 , 1.0 , 0.0 , 9.0 , 5.0 , 0.0 , 0.0 , 0.0 , 6.0 , 11.0 , 4.0 , 13.0 , 3.0 , 0.0 , 0.0 , 0.0 , 1.0 , 11.0 , 16.0 , 12.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 4.0 , 15.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 15.0 , 14.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 13.0 , 8.0 , 16.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 6.0 , 15.0 , 11.0 , 0.0 , 0.0 , 0.0 , 1.0 , 8.0 , 13.0 , 15.0 , 1.0 , 0.0 , 0.0 , 0.0 , 9.0 , 16.0 , 16.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 13.0 , 16.0 , 16.0 , 11.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 11.0 , 16.0 , 9.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 12.0 , 15.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 13.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 14.0 , 16.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 13.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 16.0 , 16.0 , 3.0 , 0.0 , 0.0 , 0.0 , 1.0 , 16.0 , 16.0 , 16.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 16.0 , 7.0 , 0.0 , 0.0 }, { 0.0 , 1.0 , 14.0 , 16.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 16.0 , 9.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 3.0 , 11.0 , 0.0 , 14.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 14.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 16.0 , 5.0 , 0.0 , 0.0 , 0.0 , 2.0 , 15.0 , 16.0 , 14.0 , 8.0 , 12.0 , 2.0 , 0.0 , 0.0 , 11.0 , 16.0 , 16.0 , 16.0 , 15.0 , 5.0 }, { 0.0 , 0.0 , 2.0 , 12.0 , 15.0 , 12.0 , 1.0 , 0.0 , 0.0 , 1.0 , 14.0 , 14.0 , 14.0 , 11.0 , 8.0 , 0.0 , 0.0 , 5.0 , 16.0 , 3.0 , 0.0 , 2.0 , 8.0 , 0.0 , 0.0 , 8.0 , 14.0 , 0.0 , 0.0 , 6.0 , 8.0 , 0.0 , 0.0 , 4.0 , 12.0 , 0.0 , 0.0 , 9.0 , 4.0 , 0.0 , 0.0 , 1.0 , 16.0 , 1.0 , 1.0 , 14.0 , 1.0 , 0.0 , 0.0 , 0.0 , 11.0 , 9.0 , 11.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 13.0 , 14.0 , 1.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 9.0 , 15.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 15.0 , 15.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 10.0 , 14.0 , 0.0 , 9.0 , 14.0 , 0.0 , 0.0 , 0.0 , 8.0 , 12.0 , 0.0 , 0.0 , 12.0 , 5.0 , 0.0 , 0.0 , 8.0 , 8.0 , 0.0 , 0.0 , 10.0 , 8.0 , 0.0 , 0.0 , 5.0 , 14.0 , 0.0 , 0.0 , 12.0 , 8.0 , 0.0 , 0.0 , 0.0 , 16.0 , 7.0 , 12.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 9.0 , 16.0 , 15.0 , 7.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 13.0 , 14.0 , 8.0 , 1.0 , 0.0 , 0.0 , 0.0 , 1.0 , 16.0 , 16.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 5.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 16.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 16.0 , 13.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 16.0 , 11.0 , 4.0 , 4.0 , 0.0 , 0.0 , 0.0 , 1.0 , 13.0 , 14.0 , 12.0 , 12.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 1.0 , 16.0 , 11.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 16.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 16.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 16.0 , 16.0 , 16.0 , 1.0 , 0.0 , 0.0 , 6.0 , 16.0 , 14.0 , 16.0 , 15.0 , 0.0 , 0.0 , 0.0 , 1.0 , 3.0 , 5.0 , 16.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 15.0 , 12.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 15.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 15.0 , 16.0 , 9.0 , 0.0 , 0.0 , 0.0 , 3.0 , 15.0 , 16.0 , 16.0 , 10.0 , 0.0 , 0.0 , 7.0 , 16.0 , 10.0 , 8.0 , 16.0 , 7.0 , 0.0 , 0.0 , 0.0 , 1.0 , 0.0 , 8.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 16.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 16.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 14.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 1.0 , 12.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 16.0 , 14.0 , 3.0 , 0.0 , 0.0 , 0.0 , 2.0 , 16.0 , 14.0 , 11.0 , 13.0 , 0.0 , 0.0 , 0.0 , 2.0 , 16.0 , 10.0 , 0.0 , 14.0 , 4.0 , 0.0 , 0.0 , 4.0 , 16.0 , 0.0 , 0.0 , 12.0 , 4.0 , 0.0 , 0.0 , 4.0 , 16.0 , 3.0 , 0.0 , 11.0 , 10.0 , 0.0 , 0.0 , 0.0 , 13.0 , 12.0 , 8.0 , 14.0 , 6.0 , 0.0 , 0.0 , 0.0 , 3.0 , 10.0 , 16.0 , 12.0 , 1.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 1.0 , 9.0 , 11.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 13.0 , 16.0 , 16.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 12.0 , 7.0 , 14.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 14.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 12.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 16.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 9.0 , 13.0 , 16.0 , 11.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 13.0 , 3.0 , 0.0 }, { 0.0 , 0.0 , 3.0 , 13.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 15.0 , 8.0 , 14.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 8.0 , 1.0 , 14.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 11.0 , 5.0 , 13.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 12.0 , 10.0 , 7.0 , 5.0 , 2.0 , 0.0 , 0.0 , 2.0 , 14.0 , 14.0 , 12.0 , 14.0 , 7.0 }, { 0.0 , 0.0 , 0.0 , 9.0 , 13.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 15.0 , 12.0 , 15.0 , 2.0 , 0.0 , 0.0 , 0.0 , 12.0 , 8.0 , 0.0 , 15.0 , 4.0 , 0.0 , 0.0 , 3.0 , 13.0 , 0.0 , 0.0 , 10.0 , 7.0 , 0.0 , 0.0 , 8.0 , 9.0 , 0.0 , 0.0 , 13.0 , 7.0 , 0.0 , 0.0 , 2.0 , 16.0 , 4.0 , 7.0 , 16.0 , 5.0 , 0.0 , 0.0 , 0.0 , 14.0 , 14.0 , 16.0 , 15.0 , 1.0 , 0.0 , 0.0 , 0.0 , 1.0 , 12.0 , 14.0 , 4.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 5.0 , 15.0 , 13.0 , 12.0 , 4.0 , 0.0 , 0.0 , 0.0 , 11.0 , 16.0 , 16.0 , 14.0 , 0.0 , 0.0 , 0.0 , 0.0 , 16.0 , 16.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 16.0 , 15.0 , 3.0 , 0.0 , 0.0 , 0.0 , 2.0 , 16.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 16.0 , 15.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 15.0 , 3.0 , 0.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 4.0 , 13.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 13.0 , 16.0 , 15.0 , 7.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 9.0 , 6.0 , 15.0 , 6.0 , 0.0 , 0.0 , 8.0 , 14.0 , 0.0 , 0.0 , 4.0 , 8.0 , 0.0 , 0.0 , 8.0 , 12.0 , 0.0 , 0.0 , 4.0 , 8.0 , 0.0 , 0.0 , 4.0 , 12.0 , 0.0 , 0.0 , 11.0 , 6.0 , 0.0 , 0.0 , 0.0 , 14.0 , 10.0 , 12.0 , 14.0 , 1.0 , 0.0 , 0.0 , 0.0 , 7.0 , 15.0 , 11.0 , 2.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 10.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 16.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 12.0 , 16.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 13.0 , 16.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 10.0 , 15.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 12.0 , 16.0 , 12.0 , 12.0 , 4.0 , 0.0 , 0.0 , 7.0 , 16.0 , 16.0 , 16.0 , 16.0 , 11.0 }, { 0.0 , 0.0 , 3.0 , 11.0 , 7.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 15.0 , 14.0 , 14.0 , 0.0 , 0.0 , 0.0 , 2.0 , 16.0 , 10.0 , 1.0 , 12.0 , 4.0 , 0.0 , 0.0 , 2.0 , 16.0 , 3.0 , 0.0 , 4.0 , 8.0 , 0.0 , 0.0 , 5.0 , 12.0 , 0.0 , 0.0 , 6.0 , 8.0 , 0.0 , 0.0 , 1.0 , 12.0 , 0.0 , 0.0 , 11.0 , 9.0 , 0.0 , 0.0 , 0.0 , 15.0 , 9.0 , 14.0 , 15.0 , 1.0 , 0.0 , 0.0 , 0.0 , 4.0 , 15.0 , 15.0 , 4.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 14.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 9.0 , 16.0 , 16.0 , 3.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 8.0 , 11.0 , 11.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 7.0 , 4.0 , 16.0 , 4.0 , 0.0 , 0.0 , 8.0 , 16.0 , 4.0 , 0.0 , 16.0 , 8.0 , 0.0 , 0.0 , 5.0 , 16.0 , 10.0 , 0.0 , 13.0 , 11.0 , 0.0 , 0.0 , 0.0 , 13.0 , 16.0 , 16.0 , 16.0 , 9.0 , 0.0 , 0.0 , 0.0 , 2.0 , 10.0 , 13.0 , 6.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 2.0 , 14.0 , 13.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 15.0 , 15.0 , 8.0 , 0.0 , 0.0 , 0.0 , 2.0 , 16.0 , 7.0 , 4.0 , 15.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 4.0 , 0.0 , 13.0 , 7.0 , 0.0 , 0.0 , 4.0 , 16.0 , 1.0 , 0.0 , 10.0 , 8.0 , 0.0 , 0.0 , 4.0 , 16.0 , 5.0 , 1.0 , 12.0 , 11.0 , 0.0 , 0.0 , 1.0 , 15.0 , 14.0 , 13.0 , 16.0 , 3.0 , 0.0 , 0.0 , 0.0 , 3.0 , 12.0 , 13.0 , 5.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 1.0 , 13.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 15.0 , 9.0 , 15.0 , 1.0 , 0.0 , 0.0 , 0.0 , 9.0 , 11.0 , 0.0 , 16.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 10.0 , 3.0 , 14.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 11.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 11.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 10.0 , 4.0 , 4.0 , 2.0 , 0.0 , 0.0 , 1.0 , 15.0 , 16.0 , 15.0 , 13.0 , 15.0 }, { 0.0 , 0.0 , 10.0 , 15.0 , 13.0 , 1.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 7.0 , 13.0 , 7.0 , 0.0 , 0.0 , 0.0 , 2.0 , 11.0 , 0.0 , 12.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 14.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 15.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 7.0 , 7.0 , 13.0 , 3.0 , 0.0 , 0.0 , 0.0 , 10.0 , 16.0 , 12.0 , 3.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 11.0 , 16.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 16.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 16.0 , 5.0 , 0.0 , 0.0 , 0.0 , 11.0 , 16.0 , 16.0 , 16.0 , 3.0 , 0.0 , 0.0 , 0.0 , 5.0 , 8.0 , 14.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 14.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 8.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 5.0 , 16.0 , 14.0 , 2.0 , 0.0 , 0.0 , 0.0 , 1.0 , 13.0 , 14.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 9.0 , 15.0 , 3.0 , 16.0 , 5.0 , 0.0 , 0.0 , 0.0 , 10.0 , 13.0 , 3.0 , 16.0 , 3.0 , 0.0 , 0.0 , 0.0 , 3.0 , 3.0 , 11.0 , 13.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 13.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 16.0 , 16.0 , 16.0 , 10.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 14.0 , 12.0 , 9.0 , 0.0 }, { 0.0 , 0.0 , 11.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 13.0 , 16.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 15.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 13.0 , 15.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 3.0 , 15.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 16.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 10.0 , 16.0 , 6.0 , 3.0 , 0.0 , 0.0 , 0.0 , 7.0 , 16.0 , 16.0 , 16.0 , 16.0 , 5.0 }, { 0.0 , 0.0 , 4.0 , 13.0 , 12.0 , 1.0 , 0.0 , 0.0 , 0.0 , 2.0 , 15.0 , 14.0 , 16.0 , 13.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 4.0 , 6.0 , 16.0 , 5.0 , 0.0 , 0.0 , 8.0 , 15.0 , 1.0 , 0.0 , 12.0 , 8.0 , 0.0 , 0.0 , 8.0 , 12.0 , 0.0 , 0.0 , 12.0 , 8.0 , 0.0 , 0.0 , 5.0 , 13.0 , 0.0 , 1.0 , 13.0 , 8.0 , 0.0 , 0.0 , 1.0 , 15.0 , 10.0 , 12.0 , 16.0 , 3.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 13.0 , 4.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 14.0 , 16.0 , 15.0 , 11.0 , 0.0 , 0.0 , 0.0 , 2.0 , 16.0 , 16.0 , 16.0 , 10.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 16.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 12.0 , 16.0 , 16.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 12.0 , 16.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 14.0 , 16.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 16.0 , 15.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 15.0 , 15.0 , 1.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 3.0 , 12.0 , 16.0 , 16.0 , 3.0 , 0.0 , 0.0 , 2.0 , 16.0 , 16.0 , 11.0 , 16.0 , 4.0 , 0.0 , 0.0 , 8.0 , 14.0 , 2.0 , 10.0 , 16.0 , 1.0 , 0.0 , 0.0 , 5.0 , 5.0 , 3.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 5.0 , 2.0 , 3.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 12.0 , 15.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 15.0 , 16.0 , 8.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 0.0 , 14.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 13.0 , 16.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 16.0 , 16.0 , 7.0 , 0.0 , 0.0 , 0.0 , 7.0 , 16.0 , 8.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 1.0 , 5.0 , 6.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 12.0 , 11.0 , 0.0 , 0.0 }, { 0.0 , 1.0 , 15.0 , 16.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 9.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 2.0 , 12.0 , 5.0 , 16.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 15.0 , 13.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 16.0 , 13.0 , 4.0 , 4.0 , 3.0 , 0.0 , 0.0 , 2.0 , 13.0 , 16.0 , 16.0 , 16.0 , 16.0 , 2.0 }, { 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 15.0 , 14.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 16.0 , 11.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 16.0 , 16.0 , 10.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 12.0 , 16.0 , 12.0 , 0.0 , 0.0 , 0.0 , 3.0 , 10.0 , 3.0 , 16.0 , 11.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 16.0 , 14.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 11.0 , 0.0 , 0.0 }, { 0.0 , 1.0 , 13.0 , 16.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 9.0 , 15.0 , 6.0 , 13.0 , 8.0 , 0.0 , 0.0 , 0.0 , 5.0 , 10.0 , 0.0 , 12.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 16.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 16.0 , 11.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 16.0 , 13.0 , 8.0 , 8.0 , 5.0 , 0.0 , 0.0 , 1.0 , 10.0 , 14.0 , 16.0 , 16.0 , 16.0 , 0.0 }, { 0.0 , 0.0 , 10.0 , 7.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 15.0 , 12.0 , 14.0 , 6.0 , 0.0 , 0.0 , 0.0 , 5.0 , 12.0 , 0.0 , 2.0 , 13.0 , 0.0 , 0.0 , 0.0 , 4.0 , 12.0 , 0.0 , 0.0 , 4.0 , 7.0 , 0.0 , 0.0 , 8.0 , 5.0 , 0.0 , 0.0 , 4.0 , 8.0 , 0.0 , 0.0 , 5.0 , 8.0 , 0.0 , 0.0 , 5.0 , 10.0 , 0.0 , 0.0 , 0.0 , 14.0 , 3.0 , 4.0 , 14.0 , 6.0 , 0.0 , 0.0 , 0.0 , 7.0 , 16.0 , 16.0 , 10.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 6.0 , 14.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 10.0 , 14.0 , 4.0 , 0.0 , 0.0 , 0.0 , 11.0 , 5.0 , 0.0 , 11.0 , 4.0 , 0.0 , 0.0 , 0.0 , 4.0 , 6.0 , 2.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 13.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 14.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 12.0 , 10.0 , 8.0 , 8.0 , 4.0 , 0.0 , 0.0 , 0.0 , 7.0 , 14.0 , 14.0 , 14.0 , 13.0 , 0.0 }, { 0.0 , 0.0 , 3.0 , 13.0 , 13.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 14.0 , 8.0 , 7.0 , 15.0 , 1.0 , 0.0 , 0.0 , 3.0 , 16.0 , 0.0 , 0.0 , 9.0 , 6.0 , 0.0 , 0.0 , 6.0 , 13.0 , 0.0 , 0.0 , 4.0 , 8.0 , 0.0 , 0.0 , 4.0 , 9.0 , 0.0 , 0.0 , 4.0 , 8.0 , 0.0 , 0.0 , 1.0 , 13.0 , 0.0 , 0.0 , 5.0 , 8.0 , 0.0 , 0.0 , 0.0 , 14.0 , 7.0 , 0.0 , 11.0 , 4.0 , 0.0 , 0.0 , 0.0 , 3.0 , 15.0 , 16.0 , 14.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 8.0 , 16.0 , 15.0 , 8.0 , 0.0 , 0.0 , 0.0 , 1.0 , 16.0 , 16.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 2.0 , 16.0 , 16.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 16.0 , 16.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 16.0 , 13.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 16.0 , 16.0 , 11.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 16.0 , 16.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 15.0 , 15.0 , 0.0 , 0.0 , 0.0 }, { 0.0 , 3.0 , 15.0 , 15.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 16.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 9.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 15.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 13.0 , 15.0 , 15.0 , 5.0 , 0.0 , 0.0 , 4.0 , 16.0 , 16.0 , 16.0 , 13.0 , 3.0 , 0.0 }, { 0.0 , 0.0 , 7.0 , 15.0 , 15.0 , 4.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 16.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 8.0 , 15.0 , 8.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 15.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 15.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 8.0 , 11.0 , 9.0 , 0.0 , 0.0 , 0.0 , 9.0 , 16.0 , 16.0 , 12.0 , 3.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 13.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 14.0 , 16.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 15.0 , 16.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 16.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 15.0 , 16.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 12.0 , 15.0 , 1.0 , 0.0 , 0.0 , 0.0 , 1.0 , 11.0 , 9.0 , 16.0 , 11.0 , 2.0 , 0.0 , 0.0 , 0.0 , 11.0 , 16.0 , 16.0 , 16.0 , 16.0 }, { 0.0 , 0.0 , 1.0 , 11.0 , 15.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 15.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 13.0 , 16.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 16.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 16.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 16.0 , 16.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 16.0 , 15.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 15.0 , 15.0 , 3.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 9.0 , 16.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 16.0 , 15.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 16.0 , 14.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 3.0 , 6.0 , 12.0 , 16.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 15.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 16.0 , 6.0 , 1.0 , 3.0 , 0.0 , 0.0 , 0.0 , 9.0 , 16.0 , 13.0 , 15.0 , 8.0 , 0.0 , 0.0 , 0.0 , 7.0 , 16.0 , 16.0 , 8.0 , 1.0 , 0.0 }, { 0.0 , 0.0 , 5.0 , 13.0 , 13.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 16.0 , 16.0 , 10.0 , 15.0 , 3.0 , 0.0 , 0.0 , 5.0 , 16.0 , 2.0 , 1.0 , 8.0 , 4.0 , 0.0 , 0.0 , 4.0 , 13.0 , 0.0 , 0.0 , 4.0 , 8.0 , 0.0 , 0.0 , 8.0 , 12.0 , 0.0 , 0.0 , 6.0 , 7.0 , 0.0 , 0.0 , 5.0 , 15.0 , 0.0 , 0.0 , 7.0 , 7.0 , 0.0 , 0.0 , 0.0 , 16.0 , 8.0 , 5.0 , 15.0 , 3.0 , 0.0 , 0.0 , 0.0 , 5.0 , 14.0 , 15.0 , 9.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 2.0 , 13.0 , 10.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 15.0 , 12.0 , 13.0 , 1.0 , 0.0 , 0.0 , 0.0 , 16.0 , 4.0 , 0.0 , 6.0 , 4.0 , 0.0 , 0.0 , 2.0 , 16.0 , 3.0 , 0.0 , 1.0 , 7.0 , 0.0 , 0.0 , 5.0 , 13.0 , 5.0 , 0.0 , 2.0 , 8.0 , 0.0 , 0.0 , 4.0 , 12.0 , 0.0 , 0.0 , 3.0 , 8.0 , 0.0 , 0.0 , 0.0 , 13.0 , 5.0 , 6.0 , 13.0 , 5.0 , 0.0 , 0.0 , 0.0 , 5.0 , 14.0 , 13.0 , 8.0 , 1.0 , 0.0 }, { 0.0 , 0.0 , 2.0 , 12.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 12.0 , 16.0 , 16.0 , 3.0 , 0.0 , 0.0 , 0.0 , 7.0 , 16.0 , 6.0 , 4.0 , 13.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 6.0 , 0.0 , 13.0 , 5.0 , 0.0 , 0.0 , 1.0 , 16.0 , 5.0 , 0.0 , 7.0 , 9.0 , 0.0 , 0.0 , 0.0 , 16.0 , 8.0 , 0.0 , 8.0 , 12.0 , 0.0 , 0.0 , 0.0 , 13.0 , 14.0 , 14.0 , 16.0 , 10.0 , 0.0 , 0.0 , 0.0 , 4.0 , 14.0 , 15.0 , 7.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 3.0 , 15.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 14.0 , 8.0 , 11.0 , 5.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 3.0 , 1.0 , 14.0 , 2.0 , 0.0 , 0.0 , 5.0 , 12.0 , 0.0 , 0.0 , 12.0 , 4.0 , 0.0 , 0.0 , 2.0 , 12.0 , 0.0 , 0.0 , 6.0 , 8.0 , 0.0 , 0.0 , 2.0 , 14.0 , 0.0 , 0.0 , 12.0 , 5.0 , 0.0 , 0.0 , 0.0 , 12.0 , 8.0 , 5.0 , 15.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 13.0 , 14.0 , 5.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 5.0 , 13.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 16.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 11.0 , 15.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 13.0 , 16.0 , 15.0 , 16.0 , 9.0 , 0.0 , 0.0 , 3.0 , 12.0 , 16.0 , 16.0 , 11.0 , 2.0 }, { 0.0 , 0.0 , 11.0 , 16.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 16.0 , 11.0 , 15.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 16.0 , 5.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 2.0 , 16.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 16.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 14.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 16.0 , 14.0 , 7.0 , 6.0 , 0.0 , 0.0 , 0.0 , 13.0 , 14.0 , 14.0 , 16.0 , 16.0 , 6.0 }, { 0.0 , 0.0 , 0.0 , 0.0 , 12.0 , 13.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 15.0 , 2.0 , 0.0 , 0.0 , 0.0 , 10.0 , 16.0 , 16.0 , 12.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 16.0 , 16.0 , 13.0 , 0.0 , 0.0 , 0.0 , 4.0 , 7.0 , 4.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 12.0 , 12.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 12.0 , 16.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 12.0 , 16.0 , 3.0 , 0.0 , 0.0 , 0.0 , 1.0 , 8.0 , 4.0 , 16.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 16.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 15.0 , 8.0 , 8.0 , 2.0 , 0.0 , 0.0 , 0.0 , 12.0 , 16.0 , 16.0 , 12.0 , 1.0 , 0.0 }, { 0.0 , 0.0 , 2.0 , 16.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 16.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 15.0 , 16.0 , 14.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 8.0 , 14.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 12.0 , 15.0 , 14.0 , 16.0 , 14.0 , 9.0 , 0.0 , 0.0 , 2.0 , 10.0 , 13.0 , 16.0 , 10.0 , 3.0 }, { 0.0 , 0.0 , 7.0 , 14.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 15.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 16.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 16.0 , 16.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 13.0 , 13.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 12.0 , 14.0 , 16.0 , 12.0 , 5.0 , 0.0 , 0.0 , 5.0 , 16.0 , 16.0 , 16.0 , 16.0 , 15.0 }, { 0.0 , 0.0 , 7.0 , 13.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 15.0 , 12.0 , 13.0 , 0.0 , 0.0 , 0.0 , 0.0 , 12.0 , 7.0 , 0.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 4.0 , 4.0 , 0.0 , 14.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 14.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 12.0 , 16.0 , 16.0 , 12.0 , 9.0 , 0.0 , 0.0 , 0.0 , 9.0 , 12.0 , 8.0 , 10.0 , 14.0 , 0.0 }, { 0.0 , 0.0 , 7.0 , 12.0 , 12.0 , 2.0 , 0.0 , 0.0 , 0.0 , 5.0 , 15.0 , 6.0 , 10.0 , 9.0 , 0.0 , 0.0 , 0.0 , 11.0 , 4.0 , 0.0 , 11.0 , 6.0 , 0.0 , 0.0 , 0.0 , 3.0 , 0.0 , 2.0 , 15.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 13.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 11.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 16.0 , 7.0 , 4.0 , 4.0 , 2.0 , 0.0 , 0.0 , 0.0 , 11.0 , 12.0 , 13.0 , 14.0 , 11.0 , 0.0 }, { 0.0 , 0.0 , 8.0 , 11.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 16.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 16.0 , 15.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 15.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 12.0 , 16.0 , 15.0 , 8.0 , 5.0 , 0.0 , 0.0 , 4.0 , 15.0 , 16.0 , 16.0 , 16.0 , 16.0 }, { 0.0 , 0.0 , 7.0 , 15.0 , 15.0 , 5.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 12.0 , 16.0 , 12.0 , 0.0 , 0.0 , 0.0 , 1.0 , 7.0 , 0.0 , 16.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 15.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 16.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 13.0 , 1.0 , 5.0 , 1.0 , 0.0 , 0.0 , 0.0 , 12.0 , 12.0 , 13.0 , 15.0 , 3.0 , 0.0 , 0.0 , 0.0 , 10.0 , 16.0 , 13.0 , 3.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 6.0 , 15.0 , 15.0 , 3.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 14.0 , 14.0 , 13.0 , 0.0 , 0.0 , 0.0 , 6.0 , 15.0 , 2.0 , 1.0 , 14.0 , 5.0 , 0.0 , 0.0 , 8.0 , 14.0 , 2.0 , 0.0 , 9.0 , 8.0 , 0.0 , 0.0 , 8.0 , 16.0 , 4.0 , 0.0 , 8.0 , 8.0 , 0.0 , 0.0 , 5.0 , 16.0 , 6.0 , 0.0 , 11.0 , 9.0 , 0.0 , 0.0 , 1.0 , 16.0 , 16.0 , 14.0 , 16.0 , 9.0 , 0.0 , 0.0 , 0.0 , 5.0 , 14.0 , 15.0 , 10.0 , 1.0 , 0.0 }, { 0.0 , 0.0 , 4.0 , 15.0 , 12.0 , 2.0 , 0.0 , 0.0 , 0.0 , 2.0 , 15.0 , 7.0 , 11.0 , 10.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 0.0 , 0.0 , 15.0 , 1.0 , 0.0 , 0.0 , 6.0 , 10.0 , 0.0 , 0.0 , 10.0 , 8.0 , 0.0 , 0.0 , 8.0 , 8.0 , 0.0 , 0.0 , 6.0 , 8.0 , 0.0 , 0.0 , 5.0 , 12.0 , 0.0 , 0.0 , 11.0 , 8.0 , 0.0 , 0.0 , 2.0 , 16.0 , 7.0 , 8.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 6.0 , 15.0 , 16.0 , 8.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 10.0 , 15.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 16.0 , 14.0 , 16.0 , 7.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 8.0 , 5.0 , 16.0 , 1.0 , 0.0 , 0.0 , 5.0 , 12.0 , 0.0 , 0.0 , 12.0 , 8.0 , 0.0 , 0.0 , 8.0 , 9.0 , 0.0 , 0.0 , 12.0 , 8.0 , 0.0 , 0.0 , 5.0 , 12.0 , 0.0 , 1.0 , 15.0 , 3.0 , 0.0 , 0.0 , 4.0 , 13.0 , 4.0 , 12.0 , 13.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 16.0 , 13.0 , 4.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 1.0 , 10.0 , 15.0 , 11.0 , 7.0 , 0.0 , 0.0 , 0.0 , 5.0 , 16.0 , 16.0 , 16.0 , 11.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 16.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 12.0 , 16.0 , 16.0 , 12.0 , 0.0 , 0.0 , 0.0 , 2.0 , 16.0 , 16.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 2.0 , 12.0 , 16.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 16.0 , 16.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 12.0 , 16.0 , 2.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 4.0 , 16.0 , 15.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 12.0 , 16.0 , 13.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 16.0 , 16.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 16.0 , 16.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 16.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 12.0 , 14.0 , 11.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 3.0 , 12.0 , 8.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 16.0 , 13.0 , 13.0 , 1.0 , 0.0 , 0.0 , 0.0 , 13.0 , 8.0 , 0.0 , 9.0 , 4.0 , 0.0 , 0.0 , 0.0 , 16.0 , 2.0 , 0.0 , 6.0 , 6.0 , 0.0 , 0.0 , 4.0 , 12.0 , 0.0 , 0.0 , 10.0 , 3.0 , 0.0 , 0.0 , 3.0 , 12.0 , 0.0 , 0.0 , 13.0 , 2.0 , 0.0 , 0.0 , 0.0 , 12.0 , 4.0 , 12.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 16.0 , 13.0 , 2.0 , 0.0 , 0.0 }, { 0.0 , 1.0 , 13.0 , 15.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 15.0 , 15.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 8.0 , 10.0 , 13.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 3.0 , 12.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 15.0 , 15.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 15.0 , 12.0 , 12.0 , 11.0 , 0.0 , 0.0 , 1.0 , 11.0 , 13.0 , 16.0 , 16.0 , 12.0 , 0.0 }, { 0.0 , 0.0 , 12.0 , 15.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 15.0 , 12.0 , 14.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 5.0 , 1.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 15.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 14.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 12.0 , 16.0 , 12.0 , 8.0 , 5.0 , 0.0 , 0.0 , 0.0 , 9.0 , 8.0 , 13.0 , 15.0 , 7.0 , 0.0 }, { 0.0 , 0.0 , 10.0 , 13.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 16.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 13.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 11.0 , 16.0 , 14.0 , 9.0 , 4.0 , 0.0 , 0.0 , 6.0 , 15.0 , 13.0 , 14.0 , 16.0 , 15.0 }, { 0.0 , 0.0 , 4.0 , 15.0 , 12.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 12.0 , 11.0 , 13.0 , 13.0 , 1.0 , 0.0 , 0.0 , 3.0 , 12.0 , 0.0 , 0.0 , 14.0 , 6.0 , 0.0 , 0.0 , 8.0 , 12.0 , 0.0 , 0.0 , 11.0 , 8.0 , 0.0 , 0.0 , 8.0 , 12.0 , 0.0 , 0.0 , 8.0 , 8.0 , 0.0 , 0.0 , 6.0 , 13.0 , 0.0 , 0.0 , 11.0 , 7.0 , 0.0 , 0.0 , 4.0 , 16.0 , 7.0 , 10.0 , 15.0 , 2.0 , 0.0 , 0.0 , 0.0 , 7.0 , 13.0 , 12.0 , 2.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 13.0 , 16.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 16.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 16.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 5.0 , 16.0 , 16.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 16.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 15.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 13.0 , 11.0 , 2.0 , 0.0 }, { 0.0 , 0.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 16.0 , 13.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 16.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 14.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 12.0 , 16.0 , 11.0 , 8.0 , 3.0 , 0.0 , 0.0 , 12.0 , 16.0 , 16.0 , 16.0 , 16.0 , 9.0 }, { 0.0 , 1.0 , 12.0 , 14.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 16.0 , 16.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 15.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 15.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 15.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 16.0 , 14.0 , 8.0 , 8.0 , 3.0 , 0.0 , 0.0 , 0.0 , 10.0 , 15.0 , 13.0 , 9.0 , 4.0 , 0.0 }, { 0.0 , 0.0 , 10.0 , 14.0 , 11.0 , 3.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 13.0 , 6.0 , 14.0 , 1.0 , 0.0 , 0.0 , 4.0 , 16.0 , 2.0 , 0.0 , 11.0 , 7.0 , 0.0 , 0.0 , 8.0 , 16.0 , 0.0 , 0.0 , 10.0 , 5.0 , 0.0 , 0.0 , 8.0 , 16.0 , 0.0 , 0.0 , 14.0 , 4.0 , 0.0 , 0.0 , 8.0 , 16.0 , 0.0 , 1.0 , 16.0 , 1.0 , 0.0 , 0.0 , 4.0 , 16.0 , 1.0 , 11.0 , 15.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 16.0 , 12.0 , 3.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 9.0 , 16.0 , 15.0 , 14.0 , 1.0 , 0.0 , 0.0 , 1.0 , 15.0 , 15.0 , 5.0 , 10.0 , 7.0 , 0.0 , 0.0 , 6.0 , 16.0 , 1.0 , 0.0 , 1.0 , 8.0 , 0.0 , 0.0 , 8.0 , 13.0 , 0.0 , 0.0 , 4.0 , 8.0 , 0.0 , 0.0 , 7.0 , 6.0 , 0.0 , 0.0 , 6.0 , 6.0 , 0.0 , 0.0 , 5.0 , 9.0 , 0.0 , 0.0 , 13.0 , 1.0 , 0.0 , 0.0 , 0.0 , 16.0 , 5.0 , 12.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 15.0 , 10.0 , 1.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 2.0 , 13.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 16.0 , 15.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 16.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 15.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 16.0 , 14.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 13.0 , 16.0 , 14.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 15.0 , 16.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 13.0 , 8.0 , 0.0 , 0.0 }, { 0.0 , 2.0 , 15.0 , 16.0 , 15.0 , 2.0 , 0.0 , 0.0 , 0.0 , 8.0 , 14.0 , 8.0 , 14.0 , 8.0 , 0.0 , 0.0 , 0.0 , 7.0 , 5.0 , 2.0 , 16.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 12.0 , 13.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 15.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 15.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 9.0 , 8.0 , 8.0 , 2.0 , 0.0 , 0.0 , 2.0 , 15.0 , 16.0 , 16.0 , 16.0 , 13.0 , 0.0 }, { 0.0 , 0.0 , 7.0 , 16.0 , 13.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 13.0 , 16.0 , 16.0 , 5.0 , 0.0 , 0.0 , 0.0 , 1.0 , 16.0 , 16.0 , 16.0 , 3.0 , 0.0 , 0.0 , 0.0 , 1.0 , 14.0 , 16.0 , 15.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 16.0 , 16.0 , 15.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 14.0 , 16.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 16.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 14.0 , 13.0 , 6.0 , 0.0 , 0.0 }, { 0.0 , 2.0 , 15.0 , 15.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 16.0 , 16.0 , 11.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 15.0 , 16.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 14.0 , 13.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 14.0 , 14.0 , 16.0 , 5.0 , 0.0 , 0.0 , 2.0 , 14.0 , 16.0 , 13.0 , 9.0 , 1.0 , 0.0 }, { 0.0 , 0.0 , 4.0 , 14.0 , 11.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 15.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 16.0 , 16.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 14.0 , 16.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 15.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 16.0 , 11.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 15.0 , 14.0 , 4.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 0.0 , 13.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 3.0 , 11.0 , 16.0 , 16.0 , 5.0 , 0.0 , 0.0 , 5.0 , 16.0 , 16.0 , 16.0 , 16.0 , 4.0 , 0.0 , 0.0 , 4.0 , 10.0 , 9.0 , 16.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 13.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 12.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 16.0 , 16.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 12.0 , 14.0 , 5.0 , 0.0 }, { 0.0 , 1.0 , 11.0 , 12.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 12.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 8.0 , 7.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 1.0 , 4.0 , 14.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 11.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 14.0 , 16.0 , 16.0 , 15.0 , 10.0 , 0.0 , 0.0 , 0.0 , 13.0 , 11.0 , 8.0 , 12.0 , 8.0 , 0.0 }, { 0.0 , 0.0 , 2.0 , 12.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 15.0 , 12.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 15.0 , 5.0 , 0.0 , 14.0 , 0.0 , 0.0 , 0.0 , 2.0 , 15.0 , 1.0 , 0.0 , 9.0 , 7.0 , 0.0 , 0.0 , 4.0 , 10.0 , 0.0 , 0.0 , 7.0 , 8.0 , 0.0 , 0.0 , 0.0 , 12.0 , 0.0 , 0.0 , 8.0 , 10.0 , 0.0 , 0.0 , 2.0 , 15.0 , 5.0 , 10.0 , 16.0 , 1.0 , 0.0 , 0.0 , 0.0 , 5.0 , 14.0 , 12.0 , 4.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 2.0 , 16.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 16.0 , 2.0 , 0.0 , 0.0 , 1.0 , 4.0 , 12.0 , 16.0 , 12.0 , 0.0 , 0.0 , 0.0 , 7.0 , 16.0 , 16.0 , 16.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 10.0 , 16.0 , 14.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 12.0 , 15.0 , 4.0 , 0.0 }, { 0.0 , 0.0 , 10.0 , 16.0 , 16.0 , 7.0 , 0.0 , 0.0 , 0.0 , 6.0 , 15.0 , 9.0 , 14.0 , 12.0 , 0.0 , 0.0 , 0.0 , 3.0 , 5.0 , 0.0 , 13.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 13.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 12.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 16.0 , 13.0 , 11.0 , 8.0 , 3.0 , 0.0 , 0.0 , 0.0 , 12.0 , 16.0 , 16.0 , 16.0 , 5.0 , 0.0 }, { 0.0 , 0.0 , 6.0 , 15.0 , 13.0 , 2.0 , 0.0 , 0.0 , 0.0 , 1.0 , 15.0 , 10.0 , 11.0 , 14.0 , 0.0 , 0.0 , 0.0 , 2.0 , 16.0 , 3.0 , 1.0 , 16.0 , 4.0 , 0.0 , 0.0 , 4.0 , 12.0 , 0.0 , 1.0 , 14.0 , 4.0 , 0.0 , 0.0 , 4.0 , 10.0 , 0.0 , 0.0 , 15.0 , 3.0 , 0.0 , 0.0 , 4.0 , 12.0 , 0.0 , 0.0 , 15.0 , 3.0 , 0.0 , 0.0 , 1.0 , 13.0 , 9.0 , 11.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 4.0 , 12.0 , 14.0 , 5.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 16.0 , 16.0 , 11.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 11.0 , 13.0 , 14.0 , 0.0 , 0.0 , 0.0 , 7.0 , 12.0 , 1.0 , 3.0 , 13.0 , 0.0 , 0.0 , 0.0 , 4.0 , 10.0 , 0.0 , 0.0 , 16.0 , 0.0 , 0.0 , 0.0 , 2.0 , 14.0 , 0.0 , 1.0 , 16.0 , 1.0 , 0.0 , 0.0 , 0.0 , 9.0 , 7.0 , 9.0 , 14.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 11.0 , 15.0 , 3.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 3.0 , 15.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 16.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 12.0 , 16.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 15.0 , 14.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 3.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 8.0 , 12.0 , 15.0 , 12.0 , 10.0 , 0.0 , 0.0 , 2.0 , 13.0 , 16.0 , 16.0 , 15.0 , 11.0 }, { 0.0 , 1.0 , 8.0 , 16.0 , 16.0 , 3.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 12.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 1.0 , 7.0 , 0.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 15.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 14.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 14.0 , 1.0 , 4.0 , 5.0 , 0.0 , 0.0 , 0.0 , 13.0 , 12.0 , 11.0 , 15.0 , 3.0 , 0.0 , 0.0 , 0.0 , 12.0 , 16.0 , 12.0 , 3.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 12.0 , 13.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 16.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 15.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 7.0 , 15.0 , 16.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 16.0 , 16.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 16.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 16.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 16.0 , 10.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 14.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 15.0 , 13.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 16.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 10.0 , 16.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 14.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 14.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 14.0 , 16.0 , 11.0 , 6.0 , 0.0 , 0.0 , 0.0 , 12.0 , 16.0 , 16.0 , 16.0 , 16.0 , 9.0 }, { 0.0 , 0.0 , 3.0 , 12.0 , 11.0 , 1.0 , 0.0 , 0.0 , 0.0 , 1.0 , 14.0 , 14.0 , 15.0 , 8.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 2.0 , 5.0 , 16.0 , 1.0 , 0.0 , 0.0 , 4.0 , 16.0 , 0.0 , 0.0 , 14.0 , 6.0 , 0.0 , 0.0 , 4.0 , 16.0 , 0.0 , 0.0 , 11.0 , 8.0 , 0.0 , 0.0 , 3.0 , 16.0 , 2.0 , 0.0 , 10.0 , 8.0 , 0.0 , 0.0 , 0.0 , 10.0 , 15.0 , 13.0 , 16.0 , 3.0 , 0.0 , 0.0 , 0.0 , 1.0 , 15.0 , 14.0 , 6.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 10.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 16.0 , 13.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 5.0 , 14.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 11.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 12.0 , 9.0 , 16.0 , 6.0 , 4.0 , 0.0 , 0.0 , 7.0 , 16.0 , 16.0 , 16.0 , 16.0 , 14.0 }, { 0.0 , 0.0 , 0.0 , 2.0 , 16.0 , 15.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 9.0 , 16.0 , 16.0 , 14.0 , 0.0 , 0.0 , 0.0 , 7.0 , 16.0 , 16.0 , 16.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 16.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 16.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 13.0 , 16.0 , 7.0 , 0.0 }, { 0.0 , 0.0 , 4.0 , 14.0 , 11.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 16.0 , 16.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 14.0 , 16.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 16.0 , 16.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 15.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 15.0 , 13.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 11.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 16.0 , 14.0 , 1.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 2.0 , 15.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 14.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 15.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 10.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 16.0 , 16.0 , 15.0 , 9.0 , 16.0 , 5.0 , 0.0 , 0.0 , 3.0 , 15.0 , 16.0 , 15.0 , 7.0 , 1.0 }, { 0.0 , 0.0 , 4.0 , 14.0 , 16.0 , 5.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 16.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 10.0 , 15.0 , 9.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 1.0 , 2.0 , 13.0 , 14.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 16.0 , 0.0 , 5.0 , 7.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 13.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 2.0 , 15.0 , 16.0 , 6.0 , 0.0 , 0.0 }, { 0.0 , 2.0 , 13.0 , 16.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 12.0 , 15.0 , 9.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 10.0 , 8.0 , 1.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 1.0 , 1.0 , 2.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 15.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 15.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 15.0 , 16.0 , 9.0 , 8.0 , 6.0 , 0.0 , 0.0 , 1.0 , 13.0 , 16.0 , 16.0 , 16.0 , 16.0 , 3.0 }, { 0.0 , 0.0 , 2.0 , 12.0 , 12.0 , 8.0 , 1.0 , 0.0 , 0.0 , 0.0 , 2.0 , 15.0 , 16.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 5.0 , 16.0 , 16.0 , 14.0 , 3.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 16.0 , 10.0 , 0.0 , 0.0 , 0.0 , 3.0 , 15.0 , 16.0 , 13.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 14.0 , 16.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 16.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 9.0 , 5.0 , 0.0 , 0.0 , 0.0 }, { 0.0 , 3.0 , 16.0 , 15.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 14.0 , 14.0 , 16.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 14.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 13.0 , 11.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 16.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 14.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 16.0 , 8.0 , 8.0 , 10.0 , 5.0 , 0.0 , 0.0 , 4.0 , 16.0 , 16.0 , 16.0 , 14.0 , 3.0 , 0.0 }, { 0.0 , 0.0 , 1.0 , 15.0 , 13.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 16.0 , 16.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 16.0 , 16.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 13.0 , 16.0 , 13.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 16.0 , 16.0 , 13.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 11.0 , 16.0 , 13.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 16.0 , 16.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 14.0 , 16.0 , 3.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 9.0 , 15.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 15.0 , 16.0 , 15.0 , 0.0 , 0.0 , 0.0 , 0.0 , 15.0 , 15.0 , 4.0 , 16.0 , 3.0 , 0.0 , 0.0 , 2.0 , 14.0 , 5.0 , 0.0 , 12.0 , 8.0 , 0.0 , 0.0 , 6.0 , 13.0 , 0.0 , 1.0 , 14.0 , 6.0 , 0.0 , 0.0 , 1.0 , 10.0 , 14.0 , 15.0 , 16.0 , 3.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 16.0 , 14.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 13.0 , 5.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 11.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 13.0 , 15.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 12.0 , 16.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 15.0 , 16.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 13.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 14.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 11.0 , 16.0 , 9.0 , 5.0 , 1.0 , 0.0 , 0.0 , 12.0 , 16.0 , 16.0 , 16.0 , 16.0 , 12.0 }, { 0.0 , 0.0 , 4.0 , 16.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 15.0 , 12.0 , 14.0 , 0.0 , 0.0 , 0.0 , 2.0 , 11.0 , 0.0 , 0.0 , 9.0 , 6.0 , 0.0 , 0.0 , 5.0 , 6.0 , 0.0 , 0.0 , 4.0 , 5.0 , 0.0 , 0.0 , 4.0 , 9.0 , 0.0 , 0.0 , 7.0 , 4.0 , 0.0 , 0.0 , 4.0 , 10.0 , 0.0 , 2.0 , 14.0 , 0.0 , 0.0 , 0.0 , 0.0 , 14.0 , 15.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 13.0 , 10.0 , 0.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 4.0 , 16.0 , 15.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 16.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 16.0 , 15.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 16.0 , 14.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 14.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 16.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 12.0 , 16.0 , 3.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 7.0 , 13.0 , 14.0 , 1.0 , 0.0 , 0.0 , 0.0 , 7.0 , 15.0 , 9.0 , 13.0 , 7.0 , 0.0 , 0.0 , 0.0 , 5.0 , 15.0 , 3.0 , 8.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 0.0 , 12.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 14.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 15.0 , 5.0 , 4.0 , 4.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 16.0 , 13.0 , 16.0 , 6.0 }, { 0.0 , 0.0 , 0.0 , 5.0 , 16.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 13.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 13.0 , 16.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 5.0 , 15.0 , 16.0 , 16.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 16.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 16.0 , 13.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 14.0 , 9.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 4.0 , 14.0 , 14.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 15.0 , 10.0 , 10.0 , 13.0 , 0.0 , 0.0 , 0.0 , 5.0 , 15.0 , 0.0 , 2.0 , 15.0 , 6.0 , 0.0 , 0.0 , 4.0 , 13.0 , 0.0 , 0.0 , 14.0 , 8.0 , 0.0 , 0.0 , 6.0 , 9.0 , 0.0 , 0.0 , 12.0 , 7.0 , 0.0 , 0.0 , 3.0 , 14.0 , 1.0 , 0.0 , 12.0 , 5.0 , 0.0 , 0.0 , 0.0 , 12.0 , 9.0 , 6.0 , 15.0 , 2.0 , 0.0 , 0.0 , 0.0 , 3.0 , 14.0 , 14.0 , 6.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 3.0 , 13.0 , 12.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 14.0 , 13.0 , 15.0 , 11.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 0.0 , 8.0 , 15.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 13.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 13.0 , 11.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 12.0 , 8.0 , 1.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 11.0 , 8.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 14.0 , 12.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 8.0 , 14.0 , 1.0 , 0.0 , 0.0 , 0.0 , 9.0 , 11.0 , 0.0 , 13.0 , 5.0 , 0.0 , 0.0 , 2.0 , 16.0 , 8.0 , 0.0 , 8.0 , 8.0 , 0.0 , 0.0 , 5.0 , 13.0 , 0.0 , 0.0 , 8.0 , 7.0 , 0.0 , 0.0 , 6.0 , 13.0 , 0.0 , 0.0 , 11.0 , 4.0 , 0.0 , 0.0 , 0.0 , 12.0 , 10.0 , 6.0 , 14.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 11.0 , 14.0 , 7.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 2.0 , 12.0 , 14.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 15.0 , 12.0 , 11.0 , 13.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 4.0 , 1.0 , 14.0 , 6.0 , 0.0 , 0.0 , 4.0 , 12.0 , 0.0 , 0.0 , 8.0 , 8.0 , 0.0 , 0.0 , 6.0 , 9.0 , 0.0 , 0.0 , 5.0 , 8.0 , 0.0 , 0.0 , 3.0 , 12.0 , 1.0 , 0.0 , 12.0 , 8.0 , 0.0 , 0.0 , 0.0 , 8.0 , 12.0 , 9.0 , 16.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 13.0 , 3.0 , 0.0 , 0.0 }, { 0.0 , 3.0 , 15.0 , 14.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 14.0 , 14.0 , 14.0 , 15.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 1.0 , 6.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 14.0 , 11.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 16.0 , 2.0 , 0.0 , 1.0 , 0.0 , 0.0 , 4.0 , 16.0 , 15.0 , 8.0 , 9.0 , 15.0 , 0.0 , 0.0 , 3.0 , 16.0 , 16.0 , 16.0 , 15.0 , 5.0 , 0.0 }, { 0.0 , 0.0 , 1.0 , 8.0 , 10.0 , 8.0 , 3.0 , 0.0 , 0.0 , 0.0 , 1.0 , 16.0 , 16.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 14.0 , 16.0 , 16.0 , 3.0 , 0.0 , 0.0 , 0.0 , 1.0 , 16.0 , 16.0 , 15.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 16.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 16.0 , 15.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 14.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 8.0 , 8.0 , 1.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 13.0 , 14.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 15.0 , 11.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 12.0 , 4.0 , 16.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 6.0 , 4.0 , 16.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 14.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 14.0 , 16.0 , 10.0 , 10.0 , 2.0 , 0.0 , 0.0 , 0.0 , 11.0 , 12.0 , 14.0 , 14.0 , 6.0 , 0.0 }, { 0.0 , 0.0 , 10.0 , 12.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 16.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 7.0 , 15.0 , 3.0 , 8.0 , 13.0 , 0.0 , 0.0 , 0.0 , 8.0 , 12.0 , 0.0 , 0.0 , 14.0 , 1.0 , 0.0 , 0.0 , 8.0 , 12.0 , 0.0 , 0.0 , 7.0 , 8.0 , 0.0 , 0.0 , 5.0 , 13.0 , 0.0 , 0.0 , 4.0 , 8.0 , 0.0 , 0.0 , 0.0 , 14.0 , 8.0 , 0.0 , 10.0 , 8.0 , 0.0 , 0.0 , 0.0 , 7.0 , 12.0 , 13.0 , 12.0 , 4.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 10.0 , 15.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 16.0 , 16.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 14.0 , 6.0 , 6.0 , 15.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 4.0 , 0.0 , 15.0 , 3.0 , 0.0 , 0.0 , 5.0 , 15.0 , 5.0 , 0.0 , 11.0 , 5.0 , 0.0 , 0.0 , 0.0 , 12.0 , 11.0 , 0.0 , 13.0 , 5.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 16.0 , 16.0 , 3.0 , 0.0 , 0.0 , 0.0 , 1.0 , 8.0 , 13.0 , 8.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 7.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 16.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 16.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 14.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 4.0 , 14.0 , 12.0 , 4.0 , 1.0 , 0.0 , 0.0 , 7.0 , 16.0 , 16.0 , 16.0 , 16.0 , 5.0 }, { 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 11.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 16.0 , 13.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 16.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 13.0 , 16.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 16.0 , 16.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 15.0 , 16.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 3.0 , 12.0 , 6.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 13.0 , 7.0 , 0.0 }, { 0.0 , 0.0 , 11.0 , 11.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 12.0 , 8.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 6.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 15.0 , 6.0 , 3.0 , 5.0 , 0.0 , 0.0 , 0.0 , 13.0 , 16.0 , 13.0 , 15.0 , 9.0 , 0.0 , 0.0 , 1.0 , 12.0 , 12.0 , 12.0 , 12.0 , 1.0 , 0.0 }, { 0.0 , 0.0 , 7.0 , 8.0 , 12.0 , 6.0 , 0.0 , 0.0 , 0.0 , 1.0 , 14.0 , 11.0 , 12.0 , 15.0 , 0.0 , 0.0 , 0.0 , 3.0 , 15.0 , 0.0 , 0.0 , 10.0 , 5.0 , 0.0 , 0.0 , 4.0 , 9.0 , 0.0 , 0.0 , 8.0 , 4.0 , 0.0 , 0.0 , 8.0 , 8.0 , 0.0 , 0.0 , 13.0 , 0.0 , 0.0 , 0.0 , 7.0 , 9.0 , 0.0 , 9.0 , 11.0 , 0.0 , 0.0 , 0.0 , 2.0 , 14.0 , 10.0 , 14.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 15.0 , 6.0 , 0.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 10.0 , 16.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 9.0 , 16.0 , 11.0 , 14.0 , 8.0 , 0.0 , 0.0 , 0.0 , 13.0 , 8.0 , 0.0 , 14.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 13.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 14.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 12.0 , 16.0 , 9.0 , 12.0 , 6.0 , 0.0 , 0.0 , 1.0 , 14.0 , 16.0 , 16.0 , 16.0 , 14.0 , 0.0 }, { 0.0 , 0.0 , 10.0 , 13.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 12.0 , 16.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 14.0 , 16.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 16.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 16.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 8.0 , 15.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 16.0 , 16.0 , 16.0 , 13.0 , 11.0 , 0.0 , 0.0 , 0.0 , 8.0 , 14.0 , 8.0 , 11.0 , 14.0 , 1.0 }, { 0.0 , 0.0 , 0.0 , 5.0 , 15.0 , 13.0 , 1.0 , 0.0 , 0.0 , 0.0 , 2.0 , 14.0 , 16.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 16.0 , 16.0 , 4.0 , 0.0 , 0.0 , 6.0 , 15.0 , 16.0 , 16.0 , 16.0 , 1.0 , 0.0 , 0.0 , 3.0 , 7.0 , 10.0 , 16.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 16.0 , 16.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 12.0 , 16.0 , 16.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 14.0 , 12.0 , 1.0 , 0.0 }, { 0.0 , 0.0 , 5.0 , 10.0 , 8.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 16.0 , 16.0 , 15.0 , 2.0 , 0.0 , 0.0 , 0.0 , 7.0 , 16.0 , 16.0 , 13.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 16.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 16.0 , 16.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 16.0 , 16.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 15.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 11.0 , 9.0 , 0.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 5.0 , 16.0 , 15.0 , 1.0 , 0.0 , 0.0 , 0.0 , 1.0 , 15.0 , 9.0 , 10.0 , 12.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 1.0 , 0.0 , 16.0 , 4.0 , 0.0 , 0.0 , 6.0 , 16.0 , 0.0 , 0.0 , 11.0 , 6.0 , 0.0 , 0.0 , 3.0 , 16.0 , 1.0 , 0.0 , 11.0 , 8.0 , 0.0 , 0.0 , 4.0 , 16.0 , 4.0 , 3.0 , 15.0 , 4.0 , 0.0 , 0.0 , 1.0 , 13.0 , 13.0 , 13.0 , 14.0 , 1.0 , 0.0 , 0.0 , 0.0 , 4.0 , 13.0 , 14.0 , 1.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 1.0 , 16.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 16.0 , 11.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 12.0 , 16.0 , 11.0 , 0.0 , 0.0 , 0.0 , 7.0 , 12.0 , 16.0 , 16.0 , 7.0 , 0.0 , 0.0 , 0.0 , 4.0 , 8.0 , 12.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 13.0 , 5.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 6.0 , 13.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 15.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 15.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 10.0 , 14.0 , 12.0 , 5.0 , 1.0 , 0.0 , 0.0 , 6.0 , 16.0 , 16.0 , 16.0 , 16.0 , 12.0 }, { 0.0 , 0.0 , 2.0 , 13.0 , 15.0 , 7.0 , 1.0 , 0.0 , 0.0 , 0.0 , 7.0 , 16.0 , 15.0 , 16.0 , 10.0 , 0.0 , 0.0 , 0.0 , 14.0 , 16.0 , 10.0 , 10.0 , 10.0 , 0.0 , 0.0 , 2.0 , 16.0 , 3.0 , 0.0 , 8.0 , 8.0 , 0.0 , 0.0 , 5.0 , 13.0 , 0.0 , 0.0 , 9.0 , 8.0 , 0.0 , 0.0 , 6.0 , 13.0 , 0.0 , 0.0 , 12.0 , 3.0 , 0.0 , 0.0 , 2.0 , 16.0 , 6.0 , 9.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 14.0 , 14.0 , 1.0 , 0.0 , 0.0 }, { 0.0 , 3.0 , 13.0 , 16.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 15.0 , 13.0 , 15.0 , 2.0 , 0.0 , 0.0 , 0.0 , 15.0 , 4.0 , 4.0 , 16.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 14.0 , 13.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 16.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 13.0 , 8.0 , 10.0 , 9.0 , 1.0 , 0.0 , 2.0 , 16.0 , 16.0 , 14.0 , 12.0 , 9.0 , 1.0 }, { 0.0 , 0.0 , 10.0 , 15.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 16.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 16.0 , 16.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 14.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 14.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 11.0 , 15.0 , 6.0 , 4.0 , 1.0 , 0.0 , 0.0 , 10.0 , 16.0 , 16.0 , 16.0 , 16.0 , 10.0 }, { 0.0 , 0.0 , 0.0 , 1.0 , 12.0 , 8.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 16.0 , 1.0 , 0.0 , 0.0 , 0.0 , 1.0 , 13.0 , 16.0 , 11.0 , 0.0 , 0.0 , 0.0 , 1.0 , 11.0 , 16.0 , 16.0 , 12.0 , 0.0 , 0.0 , 0.0 , 2.0 , 12.0 , 8.0 , 16.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 15.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 13.0 , 4.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 7.0 , 15.0 , 13.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 16.0 , 15.0 , 16.0 , 5.0 , 0.0 , 0.0 , 0.0 , 12.0 , 16.0 , 5.0 , 15.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 2.0 , 13.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 16.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 15.0 , 16.0 , 12.0 , 15.0 , 7.0 , 0.0 , 0.0 , 5.0 , 16.0 , 14.0 , 12.0 , 12.0 , 11.0 }, { 0.0 , 1.0 , 11.0 , 16.0 , 15.0 , 12.0 , 3.0 , 0.0 , 0.0 , 1.0 , 13.0 , 16.0 , 16.0 , 12.0 , 0.0 , 0.0 , 0.0 , 2.0 , 16.0 , 16.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 16.0 , 16.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 16.0 , 14.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 16.0 , 16.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 13.0 , 16.0 , 13.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 12.0 , 0.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 2.0 , 16.0 , 13.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 15.0 , 16.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 6.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 13.0 , 13.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 14.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 16.0 , 16.0 , 13.0 , 10.0 , 3.0 , 0.0 , 0.0 , 0.0 , 4.0 , 11.0 , 15.0 , 16.0 , 10.0 , 0.0 }, { 0.0 , 3.0 , 15.0 , 16.0 , 14.0 , 1.0 , 0.0 , 0.0 , 0.0 , 2.0 , 12.0 , 13.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 15.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 15.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 11.0 , 8.0 , 11.0 , 3.0 , 0.0 , 0.0 , 3.0 , 16.0 , 16.0 , 16.0 , 12.0 , 3.0 , 0.0 }, { 0.0 , 0.0 , 9.0 , 16.0 , 16.0 , 13.0 , 1.0 , 0.0 , 0.0 , 0.0 , 12.0 , 13.0 , 14.0 , 16.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 13.0 , 14.0 , 1.0 , 0.0 , 0.0 , 0.0 , 1.0 , 10.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 15.0 , 16.0 , 12.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 14.0 , 16.0 , 16.0 , 2.0 , 0.0 }, { 0.0 , 0.0 , 5.0 , 13.0 , 9.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 13.0 , 15.0 , 10.0 , 15.0 , 5.0 , 0.0 , 0.0 , 3.0 , 15.0 , 2.0 , 0.0 , 11.0 , 8.0 , 0.0 , 0.0 , 4.0 , 12.0 , 0.0 , 0.0 , 8.0 , 8.0 , 0.0 , 0.0 , 5.0 , 8.0 , 0.0 , 0.0 , 9.0 , 8.0 , 0.0 , 0.0 , 4.0 , 11.0 , 0.0 , 1.0 , 12.0 , 7.0 , 0.0 , 0.0 , 2.0 , 14.0 , 5.0 , 10.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 13.0 , 10.0 , 0.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 5.0 , 15.0 , 12.0 , 4.0 , 0.0 , 0.0 , 0.0 , 2.0 , 15.0 , 8.0 , 11.0 , 16.0 , 4.0 , 0.0 , 0.0 , 8.0 , 9.0 , 0.0 , 6.0 , 16.0 , 4.0 , 0.0 , 0.0 , 8.0 , 8.0 , 0.0 , 2.0 , 10.0 , 8.0 , 0.0 , 0.0 , 8.0 , 7.0 , 0.0 , 0.0 , 13.0 , 5.0 , 0.0 , 0.0 , 2.0 , 14.0 , 0.0 , 0.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 14.0 , 8.0 , 11.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 13.0 , 14.0 , 0.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 5.0 , 14.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 12.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 12.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 16.0 , 11.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 8.0 , 15.0 , 13.0 , 11.0 , 8.0 , 0.0 , 0.0 , 5.0 , 16.0 , 16.0 , 16.0 , 16.0 , 10.0 }, { 0.0 , 0.0 , 0.0 , 10.0 , 16.0 , 11.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 15.0 , 16.0 , 15.0 , 2.0 , 0.0 , 0.0 , 0.0 , 1.0 , 13.0 , 16.0 , 14.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 15.0 , 16.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 14.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 13.0 , 16.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 14.0 , 16.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 15.0 , 1.0 , 0.0 , 0.0 }, { 0.0 , 1.0 , 11.0 , 13.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 15.0 , 15.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 9.0 , 6.0 , 14.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 10.0 , 4.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 15.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 13.0 , 16.0 , 13.0 , 11.0 , 2.0 , 0.0 , 0.0 , 1.0 , 12.0 , 12.0 , 12.0 , 15.0 , 11.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 1.0 , 11.0 , 14.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 16.0 , 16.0 , 5.0 , 0.0 , 0.0 , 0.0 , 10.0 , 16.0 , 16.0 , 16.0 , 1.0 , 0.0 , 0.0 , 5.0 , 16.0 , 16.0 , 16.0 , 16.0 , 0.0 , 0.0 , 0.0 , 1.0 , 5.0 , 11.0 , 16.0 , 16.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 16.0 , 16.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 16.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 10.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 4.0 , 10.0 , 11.0 , 4.0 , 0.0 , 0.0 , 0.0 , 1.0 , 11.0 , 16.0 , 16.0 , 14.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 16.0 , 16.0 , 12.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 16.0 , 16.0 , 7.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 16.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 16.0 , 16.0 , 7.0 , 0.0 , 0.0 , 0.0 , 3.0 , 15.0 , 16.0 , 16.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 12.0 , 12.0 , 12.0 , 1.0 , 0.0 }, { 0.0 , 0.0 , 4.0 , 12.0 , 16.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 9.0 , 7.0 , 4.0 , 14.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 14.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 13.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 12.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 9.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 12.0 , 13.0 , 9.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 13.0 , 16.0 , 11.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 16.0 , 11.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 14.0 , 9.0 , 15.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 16.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 16.0 , 15.0 , 8.0 , 11.0 , 5.0 , 0.0 , 0.0 , 9.0 , 12.0 , 13.0 , 16.0 , 16.0 , 11.0 }, { 0.0 , 0.0 , 0.0 , 4.0 , 11.0 , 9.0 , 5.0 , 0.0 , 0.0 , 0.0 , 5.0 , 16.0 , 16.0 , 16.0 , 5.0 , 0.0 , 0.0 , 0.0 , 11.0 , 16.0 , 16.0 , 9.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 16.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 1.0 , 14.0 , 16.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 15.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 5.0 , 0.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 13.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 16.0 , 16.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 9.0 , 15.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 14.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 15.0 , 7.0 , 0.0 , 0.0 , 0.0 , 7.0 , 16.0 , 16.0 , 11.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 14.0 , 16.0 , 7.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 15.0 , 9.0 , 0.0 }, { 0.0 , 0.0 , 7.0 , 11.0 , 15.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 15.0 , 15.0 , 4.0 , 11.0 , 4.0 , 0.0 , 0.0 , 3.0 , 11.0 , 5.0 , 0.0 , 2.0 , 10.0 , 0.0 , 0.0 , 7.0 , 8.0 , 0.0 , 0.0 , 3.0 , 8.0 , 0.0 , 0.0 , 6.0 , 8.0 , 0.0 , 0.0 , 4.0 , 8.0 , 0.0 , 0.0 , 5.0 , 8.0 , 0.0 , 0.0 , 8.0 , 5.0 , 0.0 , 0.0 , 1.0 , 12.0 , 2.0 , 1.0 , 13.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 16.0 , 14.0 , 3.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 2.0 , 13.0 , 15.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 14.0 , 10.0 , 11.0 , 8.0 , 0.0 , 0.0 , 0.0 , 16.0 , 1.0 , 0.0 , 0.0 , 9.0 , 0.0 , 0.0 , 3.0 , 13.0 , 0.0 , 0.0 , 0.0 , 8.0 , 0.0 , 0.0 , 4.0 , 12.0 , 0.0 , 0.0 , 1.0 , 8.0 , 0.0 , 0.0 , 5.0 , 12.0 , 0.0 , 0.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 15.0 , 8.0 , 7.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 14.0 , 14.0 , 1.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 4.0 , 15.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 16.0 , 11.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 16.0 , 13.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 16.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 15.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 12.0 , 14.0 , 16.0 , 13.0 , 13.0 , 0.0 , 0.0 , 2.0 , 13.0 , 16.0 , 16.0 , 15.0 , 8.0 }, { 0.0 , 0.0 , 4.0 , 13.0 , 14.0 , 8.0 , 0.0 , 0.0 , 0.0 , 3.0 , 14.0 , 3.0 , 1.0 , 16.0 , 3.0 , 0.0 , 0.0 , 7.0 , 9.0 , 0.0 , 0.0 , 14.0 , 6.0 , 0.0 , 0.0 , 8.0 , 4.0 , 0.0 , 0.0 , 16.0 , 4.0 , 0.0 , 0.0 , 8.0 , 6.0 , 0.0 , 0.0 , 16.0 , 0.0 , 0.0 , 0.0 , 3.0 , 11.0 , 0.0 , 1.0 , 14.0 , 0.0 , 0.0 , 0.0 , 0.0 , 12.0 , 4.0 , 6.0 , 11.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 16.0 , 14.0 , 1.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 3.0 , 8.0 , 11.0 , 11.0 , 1.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 16.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 15.0 , 16.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 16.0 , 16.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 15.0 , 16.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 16.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 16.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 15.0 , 16.0 , 6.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 14.0 , 15.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 16.0 , 16.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 16.0 , 16.0 , 15.0 , 0.0 , 0.0 , 0.0 , 3.0 , 15.0 , 7.0 , 15.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 13.0 , 11.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 15.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 15.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 1.0 , 15.0 , 11.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 16.0 , 16.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 16.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 16.0 , 13.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 16.0 , 13.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 16.0 , 11.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 14.0 , 16.0 , 3.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 7.0 , 16.0 , 16.0 , 3.0 , 0.0 , 0.0 , 0.0 , 7.0 , 16.0 , 9.0 , 14.0 , 7.0 , 0.0 , 0.0 , 0.0 , 10.0 , 9.0 , 0.0 , 14.0 , 5.0 , 0.0 , 0.0 , 0.0 , 3.0 , 3.0 , 4.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 12.0 , 11.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 12.0 , 15.0 , 8.0 , 8.0 , 3.0 , 0.0 , 0.0 , 0.0 , 10.0 , 16.0 , 16.0 , 16.0 , 9.0 , 0.0 }, }; float X_test[TEST_SAMPLES][FEATURES_DIM] = { { 0.0 , 0.0 , 8.0 , 14.0 , 11.0 , 2.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 7.0 , 6.0 , 13.0 , 1.0 , 0.0 , 0.0 , 8.0 , 11.0 , 0.0 , 0.0 , 10.0 , 4.0 , 0.0 , 0.0 , 7.0 , 8.0 , 0.0 , 0.0 , 5.0 , 7.0 , 0.0 , 0.0 , 8.0 , 4.0 , 0.0 , 0.0 , 7.0 , 8.0 , 0.0 , 0.0 , 2.0 , 10.0 , 0.0 , 0.0 , 7.0 , 10.0 , 0.0 , 0.0 , 0.0 , 14.0 , 3.0 , 4.0 , 15.0 , 3.0 , 0.0 , 0.0 , 0.0 , 5.0 , 16.0 , 16.0 , 7.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 11.0 , 16.0 , 15.0 , 5.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 14.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 11.0 , 10.0 , 0.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 3.0 , 1.0 , 6.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 15.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 15.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 16.0 , 14.0 , 12.0 , 12.0 , 8.0 , 0.0 , 0.0 , 1.0 , 15.0 , 16.0 , 16.0 , 14.0 , 8.0 , 0.0 }, { 0.0 , 0.0 , 11.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 16.0 , 16.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 13.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 16.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 15.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 16.0 , 15.0 , 9.0 , 7.0 , 2.0 , 0.0 , 0.0 , 0.0 , 12.0 , 14.0 , 13.0 , 12.0 , 5.0 , 0.0 }, { 0.0 , 0.0 , 5.0 , 11.0 , 4.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 15.0 , 16.0 , 16.0 , 11.0 , 0.0 , 0.0 , 0.0 , 2.0 , 16.0 , 9.0 , 2.0 , 12.0 , 4.0 , 0.0 , 0.0 , 6.0 , 13.0 , 0.0 , 0.0 , 6.0 , 6.0 , 0.0 , 0.0 , 3.0 , 13.0 , 0.0 , 0.0 , 5.0 , 9.0 , 0.0 , 0.0 , 3.0 , 16.0 , 0.0 , 0.0 , 6.0 , 8.0 , 0.0 , 0.0 , 0.0 , 13.0 , 12.0 , 8.0 , 16.0 , 7.0 , 0.0 , 0.0 , 0.0 , 4.0 , 13.0 , 12.0 , 10.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 5.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 2.0 , 15.0 , 16.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 4.0 , 8.0 , 12.0 , 16.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 11.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 15.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 15.0 , 11.0 , 2.0 , 0.0 }, { 0.0 , 4.0 , 16.0 , 15.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 14.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 13.0 , 11.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 16.0 , 12.0 , 10.0 , 5.0 , 0.0 , 0.0 , 3.0 , 16.0 , 16.0 , 16.0 , 16.0 , 8.0 , 0.0 }, { 0.0 , 0.0 , 4.0 , 13.0 , 11.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 14.0 , 16.0 , 13.0 , 16.0 , 2.0 , 0.0 , 0.0 , 5.0 , 16.0 , 4.0 , 0.0 , 5.0 , 7.0 , 0.0 , 0.0 , 8.0 , 14.0 , 0.0 , 0.0 , 4.0 , 8.0 , 0.0 , 0.0 , 6.0 , 9.0 , 0.0 , 0.0 , 4.0 , 8.0 , 0.0 , 0.0 , 2.0 , 14.0 , 1.0 , 0.0 , 8.0 , 6.0 , 0.0 , 0.0 , 0.0 , 13.0 , 12.0 , 9.0 , 15.0 , 2.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 12.0 , 5.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 7.0 , 14.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 16.0 , 16.0 , 11.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 14.0 , 2.0 , 14.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 16.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 16.0 , 14.0 , 8.0 , 10.0 , 0.0 , 0.0 , 0.0 , 7.0 , 12.0 , 12.0 , 12.0 , 15.0 , 2.0 }, { 0.0 , 0.0 , 2.0 , 16.0 , 15.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 16.0 , 14.0 , 15.0 , 0.0 , 0.0 , 0.0 , 0.0 , 15.0 , 10.0 , 0.0 , 16.0 , 7.0 , 0.0 , 0.0 , 4.0 , 16.0 , 1.0 , 0.0 , 12.0 , 5.0 , 0.0 , 0.0 , 4.0 , 15.0 , 0.0 , 0.0 , 12.0 , 5.0 , 0.0 , 0.0 , 5.0 , 16.0 , 6.0 , 0.0 , 16.0 , 0.0 , 0.0 , 0.0 , 0.0 , 14.0 , 13.0 , 8.0 , 15.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 14.0 , 16.0 , 6.0 , 0.0 , 0.0 }, { 0.0 , 5.0 , 16.0 , 15.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 12.0 , 15.0 , 16.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 14.0 , 14.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 16.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 13.0 , 16.0 , 11.0 , 8.0 , 8.0 , 3.0 , 0.0 , 0.0 , 6.0 , 16.0 , 16.0 , 16.0 , 16.0 , 7.0 , 0.0 }, { 0.0 , 3.0 , 15.0 , 16.0 , 13.0 , 1.0 , 0.0 , 0.0 , 0.0 , 10.0 , 13.0 , 9.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 1.0 , 1.0 , 0.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 15.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 16.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 16.0 , 13.0 , 12.0 , 7.0 , 2.0 , 0.0 , 0.0 , 2.0 , 13.0 , 13.0 , 13.0 , 16.0 , 15.0 , 0.0 }, { 0.0 , 0.0 , 10.0 , 16.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 16.0 , 16.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 12.0 , 9.0 , 15.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 11.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 16.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 15.0 , 16.0 , 8.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 16.0 , 16.0 , 16.0 , 2.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 7.0 , 16.0 , 16.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 14.0 , 16.0 , 16.0 , 4.0 , 0.0 , 0.0 , 2.0 , 13.0 , 16.0 , 16.0 , 12.0 , 0.0 , 0.0 , 0.0 , 7.0 , 16.0 , 16.0 , 16.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 16.0 , 13.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 16.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 16.0 , 12.0 , 2.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 7.0 , 16.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 16.0 , 16.0 , 12.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 16.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 7.0 , 16.0 , 16.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 16.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 16.0 , 15.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 16.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 15.0 , 15.0 , 2.0 , 0.0 }, { 0.0 , 0.0 , 5.0 , 12.0 , 12.0 , 8.0 , 1.0 , 0.0 , 0.0 , 0.0 , 10.0 , 16.0 , 16.0 , 15.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 16.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 16.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 16.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 13.0 , 16.0 , 16.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 13.0 , 16.0 , 16.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 10.0 , 12.0 , 0.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 7.0 , 15.0 , 9.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 14.0 , 16.0 , 14.0 , 15.0 , 0.0 , 0.0 , 0.0 , 1.0 , 16.0 , 8.0 , 4.0 , 6.0 , 4.0 , 0.0 , 0.0 , 4.0 , 15.0 , 1.0 , 0.0 , 6.0 , 5.0 , 0.0 , 0.0 , 3.0 , 11.0 , 0.0 , 0.0 , 7.0 , 5.0 , 0.0 , 0.0 , 3.0 , 11.0 , 0.0 , 1.0 , 13.0 , 2.0 , 0.0 , 0.0 , 1.0 , 13.0 , 8.0 , 13.0 , 13.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 15.0 , 11.0 , 1.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 1.0 , 9.0 , 15.0 , 11.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 16.0 , 8.0 , 14.0 , 6.0 , 0.0 , 0.0 , 2.0 , 16.0 , 10.0 , 0.0 , 9.0 , 9.0 , 0.0 , 0.0 , 1.0 , 16.0 , 4.0 , 0.0 , 8.0 , 8.0 , 0.0 , 0.0 , 4.0 , 16.0 , 4.0 , 0.0 , 8.0 , 8.0 , 0.0 , 0.0 , 1.0 , 16.0 , 5.0 , 1.0 , 11.0 , 3.0 , 0.0 , 0.0 , 0.0 , 12.0 , 12.0 , 10.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 10.0 , 13.0 , 3.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 8.0 , 15.0 , 12.0 , 1.0 , 0.0 , 0.0 , 0.0 , 8.0 , 13.0 , 8.0 , 12.0 , 6.0 , 0.0 , 0.0 , 0.0 , 4.0 , 2.0 , 0.0 , 8.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 13.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 13.0 , 0.0 , 4.0 , 4.0 , 0.0 , 0.0 , 0.0 , 10.0 , 12.0 , 9.0 , 15.0 , 11.0 , 0.0 , 0.0 , 0.0 , 9.0 , 16.0 , 9.0 , 7.0 , 1.0 , 0.0 }, { 0.0 , 0.0 , 5.0 , 16.0 , 15.0 , 4.0 , 0.0 , 0.0 , 0.0 , 3.0 , 15.0 , 13.0 , 13.0 , 12.0 , 0.0 , 0.0 , 0.0 , 7.0 , 14.0 , 1.0 , 0.0 , 16.0 , 5.0 , 0.0 , 0.0 , 12.0 , 9.0 , 0.0 , 1.0 , 11.0 , 10.0 , 0.0 , 0.0 , 10.0 , 10.0 , 0.0 , 0.0 , 7.0 , 13.0 , 0.0 , 0.0 , 6.0 , 15.0 , 0.0 , 0.0 , 8.0 , 12.0 , 0.0 , 0.0 , 1.0 , 14.0 , 7.0 , 6.0 , 15.0 , 11.0 , 0.0 , 0.0 , 0.0 , 5.0 , 15.0 , 16.0 , 14.0 , 3.0 , 0.0 }, { 0.0 , 0.0 , 3.0 , 13.0 , 15.0 , 1.0 , 0.0 , 0.0 , 0.0 , 4.0 , 15.0 , 14.0 , 15.0 , 10.0 , 0.0 , 0.0 , 0.0 , 13.0 , 13.0 , 2.0 , 13.0 , 9.0 , 0.0 , 0.0 , 0.0 , 14.0 , 10.0 , 0.0 , 15.0 , 9.0 , 0.0 , 0.0 , 0.0 , 1.0 , 1.0 , 2.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 15.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 15.0 , 16.0 , 16.0 , 16.0 , 6.0 , 0.0 , 0.0 , 2.0 , 15.0 , 16.0 , 10.0 , 12.0 , 4.0 }, { 0.0 , 2.0 , 11.0 , 16.0 , 12.0 , 1.0 , 0.0 , 0.0 , 0.0 , 9.0 , 16.0 , 9.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 14.0 , 7.0 , 4.0 , 16.0 , 1.0 , 0.0 , 0.0 , 0.0 , 6.0 , 5.0 , 9.0 , 14.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 13.0 , 14.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 11.0 , 8.0 , 12.0 , 9.0 , 0.0 , 0.0 , 2.0 , 15.0 , 16.0 , 16.0 , 13.0 , 16.0 , 1.0 }, { 0.0 , 0.0 , 0.0 , 3.0 , 15.0 , 13.0 , 1.0 , 0.0 , 0.0 , 0.0 , 2.0 , 15.0 , 16.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 13.0 , 10.0 , 5.0 , 15.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 2.0 , 11.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 14.0 , 2.0 , 0.0 , 0.0 , 0.0 , 3.0 , 8.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 16.0 , 16.0 , 16.0 , 8.0 , 0.0 , 0.0 , 1.0 , 4.0 , 4.0 , 5.0 , 13.0 , 6.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 9.0 , 16.0 , 16.0 , 9.0 , 0.0 , 0.0 , 0.0 , 5.0 , 16.0 , 14.0 , 15.0 , 16.0 , 1.0 , 0.0 , 0.0 , 2.0 , 11.0 , 1.0 , 10.0 , 15.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 15.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 15.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 7.0 , 8.0 , 7.0 , 0.0 , 0.0 , 0.0 , 9.0 , 16.0 , 15.0 , 14.0 , 2.0 , 0.0 , 0.0 , 0.0 , 9.0 , 16.0 , 13.0 , 1.0 , 0.0 , 0.0 }, { 0.0 , 2.0 , 15.0 , 16.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 15.0 , 10.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 9.0 , 11.0 , 5.0 , 16.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 12.0 , 11.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 15.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 15.0 , 5.0 , 5.0 , 8.0 , 3.0 , 0.0 , 0.0 , 3.0 , 15.0 , 16.0 , 16.0 , 16.0 , 10.0 , 0.0 }, { 0.0 , 1.0 , 13.0 , 13.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 13.0 , 16.0 , 15.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 12.0 , 16.0 , 16.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 16.0 , 16.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 15.0 , 16.0 , 13.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 15.0 , 16.0 , 11.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 16.0 , 16.0 , 16.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 14.0 , 16.0 , 15.0 , 8.0 , 1.0 , 0.0 }, { 0.0 , 0.0 , 2.0 , 10.0 , 15.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 14.0 , 15.0 , 7.0 , 15.0 , 2.0 , 0.0 , 0.0 , 4.0 , 16.0 , 3.0 , 0.0 , 11.0 , 4.0 , 0.0 , 0.0 , 4.0 , 14.0 , 0.0 , 0.0 , 7.0 , 8.0 , 0.0 , 0.0 , 7.0 , 12.0 , 0.0 , 0.0 , 6.0 , 7.0 , 0.0 , 0.0 , 4.0 , 16.0 , 1.0 , 0.0 , 12.0 , 4.0 , 0.0 , 0.0 , 1.0 , 14.0 , 12.0 , 10.0 , 16.0 , 1.0 , 0.0 , 0.0 , 0.0 , 1.0 , 14.0 , 13.0 , 5.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 1.0 , 12.0 , 14.0 , 3.0 , 0.0 , 0.0 , 0.0 , 1.0 , 13.0 , 11.0 , 9.0 , 13.0 , 0.0 , 0.0 , 0.0 , 7.0 , 11.0 , 0.0 , 1.0 , 16.0 , 4.0 , 0.0 , 0.0 , 8.0 , 6.0 , 0.0 , 2.0 , 15.0 , 0.0 , 0.0 , 0.0 , 4.0 , 12.0 , 0.0 , 0.0 , 15.0 , 0.0 , 0.0 , 0.0 , 0.0 , 15.0 , 1.0 , 1.0 , 15.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 10.0 , 7.0 , 13.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 13.0 , 16.0 , 7.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 5.0 , 12.0 , 10.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 16.0 , 16.0 , 16.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 16.0 , 16.0 , 16.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 16.0 , 13.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 16.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 16.0 , 16.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 12.0 , 12.0 , 4.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 12.0 , 16.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 16.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 16.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 16.0 , 15.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 16.0 , 11.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 10.0 , 0.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 6.0 , 14.0 , 11.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 15.0 , 5.0 , 6.0 , 15.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 0.0 , 0.0 , 9.0 , 3.0 , 0.0 , 0.0 , 8.0 , 9.0 , 0.0 , 0.0 , 4.0 , 8.0 , 0.0 , 0.0 , 7.0 , 8.0 , 0.0 , 0.0 , 4.0 , 8.0 , 0.0 , 0.0 , 4.0 , 8.0 , 0.0 , 0.0 , 9.0 , 4.0 , 0.0 , 0.0 , 1.0 , 13.0 , 2.0 , 3.0 , 14.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 14.0 , 15.0 , 4.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 13.0 , 15.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 16.0 , 16.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 16.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 16.0 , 14.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 16.0 , 16.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 13.0 , 16.0 , 15.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 13.0 , 16.0 , 4.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 10.0 , 10.0 , 12.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 15.0 , 13.0 , 5.0 , 12.0 , 5.0 , 0.0 , 0.0 , 4.0 , 13.0 , 4.0 , 0.0 , 2.0 , 8.0 , 0.0 , 0.0 , 8.0 , 4.0 , 0.0 , 0.0 , 3.0 , 8.0 , 0.0 , 0.0 , 8.0 , 4.0 , 0.0 , 0.0 , 7.0 , 5.0 , 0.0 , 0.0 , 6.0 , 6.0 , 0.0 , 0.0 , 11.0 , 2.0 , 0.0 , 0.0 , 1.0 , 13.0 , 3.0 , 3.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 15.0 , 16.0 , 7.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 14.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 16.0 , 9.0 , 0.0 , 0.0 , 0.0 , 6.0 , 15.0 , 16.0 , 16.0 , 6.0 , 0.0 , 0.0 , 5.0 , 16.0 , 16.0 , 16.0 , 16.0 , 2.0 , 0.0 , 0.0 , 4.0 , 8.0 , 8.0 , 16.0 , 16.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 16.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 13.0 , 16.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 15.0 , 0.0 , 0.0 }, { 0.0 , 1.0 , 13.0 , 16.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 16.0 , 12.0 , 15.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 6.0 , 15.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 14.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 14.0 , 11.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 4.0 , 1.0 , 0.0 , 0.0 , 0.0 , 9.0 , 16.0 , 16.0 , 6.0 , 16.0 , 5.0 , 0.0 , 0.0 , 8.0 , 12.0 , 13.0 , 16.0 , 16.0 , 11.0 }, { 0.0 , 0.0 , 1.0 , 13.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 16.0 , 16.0 , 16.0 , 7.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 13.0 , 10.0 , 15.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 2.0 , 2.0 , 15.0 , 3.0 , 0.0 , 0.0 , 5.0 , 15.0 , 2.0 , 0.0 , 12.0 , 7.0 , 0.0 , 0.0 , 1.0 , 15.0 , 6.0 , 2.0 , 16.0 , 3.0 , 0.0 , 0.0 , 0.0 , 11.0 , 15.0 , 13.0 , 16.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 15.0 , 14.0 , 8.0 , 0.0 , 0.0 }, { 0.0 , 2.0 , 15.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 16.0 , 15.0 , 14.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 13.0 , 10.0 , 14.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 12.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 16.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 15.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 10.0 , 8.0 , 6.0 , 1.0 , 0.0 , 0.0 , 2.0 , 15.0 , 16.0 , 16.0 , 16.0 , 7.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 1.0 , 11.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 16.0 , 13.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 14.0 , 16.0 , 9.0 , 0.0 , 0.0 , 0.0 , 10.0 , 16.0 , 11.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 16.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 14.0 , 6.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 5.0 , 16.0 , 14.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 16.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 14.0 , 16.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 14.0 , 16.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 16.0 , 16.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 16.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 16.0 , 16.0 , 14.0 , 3.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 16.0 , 16.0 , 3.0 , 0.0 }, { 0.0 , 0.0 , 9.0 , 11.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 14.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 10.0 , 5.0 , 15.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 10.0 , 4.0 , 16.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 15.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 13.0 , 9.0 , 2.0 , 1.0 , 0.0 , 0.0 , 0.0 , 10.0 , 16.0 , 15.0 , 14.0 , 15.0 , 0.0 , 0.0 , 0.0 , 7.0 , 9.0 , 9.0 , 12.0 , 4.0 , 0.0 }, { 0.0 , 0.0 , 1.0 , 14.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 16.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 16.0 , 15.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 15.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 15.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 16.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 15.0 , 16.0 , 8.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 5.0 , 15.0 , 12.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 13.0 , 16.0 , 10.0 , 13.0 , 3.0 , 0.0 , 0.0 , 5.0 , 16.0 , 9.0 , 0.0 , 8.0 , 4.0 , 0.0 , 0.0 , 4.0 , 13.0 , 1.0 , 0.0 , 4.0 , 8.0 , 0.0 , 0.0 , 4.0 , 8.0 , 0.0 , 0.0 , 8.0 , 4.0 , 0.0 , 0.0 , 1.0 , 14.0 , 0.0 , 0.0 , 11.0 , 3.0 , 0.0 , 0.0 , 0.0 , 12.0 , 9.0 , 9.0 , 15.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 14.0 , 15.0 , 4.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 6.0 , 14.0 , 13.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 14.0 , 10.0 , 7.0 , 13.0 , 0.0 , 0.0 , 0.0 , 4.0 , 13.0 , 0.0 , 0.0 , 12.0 , 3.0 , 0.0 , 0.0 , 5.0 , 11.0 , 0.0 , 0.0 , 7.0 , 6.0 , 0.0 , 0.0 , 4.0 , 11.0 , 0.0 , 0.0 , 4.0 , 8.0 , 0.0 , 0.0 , 2.0 , 12.0 , 0.0 , 0.0 , 6.0 , 6.0 , 0.0 , 0.0 , 0.0 , 12.0 , 8.0 , 2.0 , 14.0 , 2.0 , 0.0 , 0.0 , 0.0 , 4.0 , 15.0 , 16.0 , 9.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 7.0 , 12.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 12.0 , 16.0 , 16.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 16.0 , 16.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 12.0 , 16.0 , 16.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 13.0 , 16.0 , 16.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 13.0 , 16.0 , 16.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 14.0 , 16.0 , 16.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 12.0 , 12.0 , 9.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 7.0 , 13.0 , 8.0 , 4.0 , 0.0 , 0.0 , 0.0 , 1.0 , 15.0 , 11.0 , 9.0 , 15.0 , 2.0 , 0.0 , 0.0 , 4.0 , 16.0 , 6.0 , 0.0 , 8.0 , 7.0 , 0.0 , 0.0 , 4.0 , 10.0 , 0.0 , 0.0 , 7.0 , 8.0 , 0.0 , 0.0 , 4.0 , 10.0 , 0.0 , 0.0 , 8.0 , 8.0 , 0.0 , 0.0 , 5.0 , 12.0 , 0.0 , 0.0 , 12.0 , 5.0 , 0.0 , 0.0 , 3.0 , 15.0 , 5.0 , 9.0 , 14.0 , 2.0 , 0.0 , 0.0 , 0.0 , 8.0 , 14.0 , 12.0 , 3.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 2.0 , 12.0 , 15.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 15.0 , 15.0 , 13.0 , 15.0 , 0.0 , 0.0 , 0.0 , 2.0 , 14.0 , 3.0 , 1.0 , 12.0 , 3.0 , 0.0 , 0.0 , 4.0 , 8.0 , 0.0 , 0.0 , 8.0 , 8.0 , 0.0 , 0.0 , 7.0 , 10.0 , 0.0 , 0.0 , 9.0 , 5.0 , 0.0 , 0.0 , 1.0 , 13.0 , 5.0 , 3.0 , 15.0 , 2.0 , 0.0 , 0.0 , 0.0 , 7.0 , 16.0 , 14.0 , 15.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 14.0 , 4.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 5.0 , 14.0 , 10.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 16.0 , 16.0 , 16.0 , 16.0 , 3.0 , 0.0 , 0.0 , 3.0 , 16.0 , 10.0 , 2.0 , 16.0 , 7.0 , 0.0 , 0.0 , 7.0 , 16.0 , 3.0 , 0.0 , 12.0 , 8.0 , 0.0 , 0.0 , 8.0 , 16.0 , 1.0 , 0.0 , 12.0 , 8.0 , 0.0 , 0.0 , 7.0 , 16.0 , 5.0 , 2.0 , 16.0 , 4.0 , 0.0 , 0.0 , 2.0 , 16.0 , 15.0 , 14.0 , 13.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 15.0 , 13.0 , 2.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 1.0 , 13.0 , 12.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 16.0 , 4.0 , 13.0 , 2.0 , 0.0 , 0.0 , 2.0 , 16.0 , 4.0 , 0.0 , 8.0 , 5.0 , 0.0 , 0.0 , 7.0 , 12.0 , 0.0 , 0.0 , 8.0 , 8.0 , 0.0 , 0.0 , 6.0 , 12.0 , 0.0 , 0.0 , 5.0 , 8.0 , 0.0 , 0.0 , 3.0 , 16.0 , 0.0 , 0.0 , 8.0 , 7.0 , 0.0 , 0.0 , 1.0 , 15.0 , 8.0 , 6.0 , 15.0 , 3.0 , 0.0 , 0.0 , 0.0 , 2.0 , 13.0 , 15.0 , 6.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 15.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 16.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 16.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 10.0 , 16.0 , 16.0 , 16.0 , 4.0 , 0.0 , 0.0 , 4.0 , 16.0 , 7.0 , 8.0 , 16.0 , 4.0 , 0.0 , 0.0 , 1.0 , 4.0 , 0.0 , 10.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 16.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 1.0 , 0.0 }, { 0.0 , 0.0 , 5.0 , 14.0 , 12.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 13.0 , 16.0 , 16.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 16.0 , 16.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 16.0 , 16.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 16.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 13.0 , 16.0 , 15.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 14.0 , 16.0 , 13.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 13.0 , 16.0 , 8.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 5.0 , 14.0 , 12.0 , 2.0 , 0.0 , 0.0 , 0.0 , 7.0 , 15.0 , 8.0 , 14.0 , 4.0 , 0.0 , 0.0 , 0.0 , 6.0 , 2.0 , 3.0 , 13.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 13.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 11.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 13.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 14.0 , 16.0 , 11.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 12.0 , 13.0 , 3.0 , 0.0 }, { 0.0 , 0.0 , 5.0 , 15.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 14.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 16.0 , 16.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 9.0 , 14.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 13.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 10.0 , 12.0 , 16.0 , 4.0 , 4.0 , 0.0 , 0.0 , 4.0 , 15.0 , 16.0 , 16.0 , 16.0 , 16.0 }, { 0.0 , 0.0 , 4.0 , 15.0 , 11.0 , 1.0 , 0.0 , 0.0 , 0.0 , 2.0 , 14.0 , 14.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 8.0 , 15.0 , 2.0 , 3.0 , 13.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 0.0 , 0.0 , 12.0 , 7.0 , 0.0 , 0.0 , 7.0 , 16.0 , 0.0 , 0.0 , 12.0 , 8.0 , 0.0 , 0.0 , 3.0 , 16.0 , 6.0 , 1.0 , 14.0 , 9.0 , 0.0 , 0.0 , 0.0 , 15.0 , 16.0 , 16.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 4.0 , 13.0 , 14.0 , 6.0 , 0.0 , 0.0 }, { 0.0 , 2.0 , 12.0 , 16.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 16.0 , 13.0 , 16.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 5.0 , 16.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 15.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 13.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 13.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 11.0 , 8.0 , 11.0 , 5.0 , 0.0 , 0.0 , 0.0 , 15.0 , 16.0 , 16.0 , 15.0 , 3.0 , 0.0 }, { 0.0 , 0.0 , 2.0 , 12.0 , 12.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 16.0 , 16.0 , 9.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 16.0 , 8.0 , 15.0 , 3.0 , 0.0 , 0.0 , 6.0 , 16.0 , 6.0 , 0.0 , 13.0 , 8.0 , 0.0 , 0.0 , 8.0 , 16.0 , 4.0 , 0.0 , 15.0 , 8.0 , 0.0 , 0.0 , 5.0 , 16.0 , 8.0 , 12.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 15.0 , 16.0 , 16.0 , 15.0 , 2.0 , 0.0 , 0.0 , 0.0 , 3.0 , 13.0 , 12.0 , 3.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 4.0 , 14.0 , 14.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 16.0 , 16.0 , 7.0 , 0.0 , 0.0 , 0.0 , 5.0 , 15.0 , 16.0 , 15.0 , 3.0 , 0.0 , 0.0 , 4.0 , 15.0 , 16.0 , 16.0 , 12.0 , 0.0 , 0.0 , 0.0 , 5.0 , 16.0 , 16.0 , 16.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 12.0 , 16.0 , 13.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 16.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 14.0 , 15.0 , 6.0 , 0.0 }, { 0.0 , 0.0 , 5.0 , 16.0 , 12.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 13.0 , 14.0 , 15.0 , 11.0 , 0.0 , 0.0 , 0.0 , 6.0 , 15.0 , 1.0 , 2.0 , 16.0 , 4.0 , 0.0 , 0.0 , 6.0 , 14.0 , 0.0 , 0.0 , 9.0 , 8.0 , 0.0 , 0.0 , 8.0 , 10.0 , 0.0 , 0.0 , 13.0 , 8.0 , 0.0 , 0.0 , 4.0 , 13.0 , 0.0 , 1.0 , 14.0 , 8.0 , 0.0 , 0.0 , 0.0 , 14.0 , 14.0 , 15.0 , 15.0 , 3.0 , 0.0 , 0.0 , 0.0 , 5.0 , 12.0 , 13.0 , 8.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 2.0 , 11.0 , 15.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 12.0 , 6.0 , 11.0 , 9.0 , 0.0 , 0.0 , 0.0 , 4.0 , 11.0 , 0.0 , 7.0 , 16.0 , 0.0 , 0.0 , 0.0 , 5.0 , 6.0 , 0.0 , 1.0 , 16.0 , 6.0 , 0.0 , 0.0 , 5.0 , 4.0 , 0.0 , 0.0 , 10.0 , 7.0 , 0.0 , 0.0 , 0.0 , 10.0 , 0.0 , 0.0 , 10.0 , 5.0 , 0.0 , 0.0 , 0.0 , 13.0 , 2.0 , 6.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 12.0 , 1.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 4.0 , 12.0 , 10.0 , 1.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 13.0 , 15.0 , 10.0 , 0.0 , 0.0 , 0.0 , 5.0 , 16.0 , 2.0 , 1.0 , 14.0 , 3.0 , 0.0 , 0.0 , 8.0 , 13.0 , 0.0 , 0.0 , 10.0 , 8.0 , 0.0 , 0.0 , 8.0 , 12.0 , 0.0 , 0.0 , 8.0 , 8.0 , 0.0 , 0.0 , 8.0 , 14.0 , 0.0 , 0.0 , 11.0 , 8.0 , 0.0 , 0.0 , 3.0 , 16.0 , 14.0 , 13.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 13.0 , 5.0 , 0.0 , 0.0 }, { 0.0 , 3.0 , 15.0 , 16.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 12.0 , 13.0 , 11.0 , 16.0 , 0.0 , 0.0 , 0.0 , 0.0 , 12.0 , 5.0 , 4.0 , 16.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 16.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 12.0 , 16.0 , 14.0 , 8.0 , 5.0 , 0.0 , 0.0 , 2.0 , 13.0 , 16.0 , 16.0 , 16.0 , 16.0 , 2.0 }, { 0.0 , 0.0 , 9.0 , 16.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 5.0 , 16.0 , 15.0 , 14.0 , 16.0 , 0.0 , 0.0 , 0.0 , 4.0 , 9.0 , 3.0 , 13.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 15.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 16.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 14.0 , 1.0 , 4.0 , 3.0 , 0.0 , 0.0 , 0.0 , 16.0 , 14.0 , 15.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 9.0 , 16.0 , 15.0 , 5.0 , 0.0 , 0.0 }, { 0.0 , 2.0 , 15.0 , 13.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 12.0 , 16.0 , 16.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 13.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 12.0 , 16.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 16.0 , 16.0 , 16.0 , 14.0 , 6.0 , 0.0 , 0.0 , 1.0 , 16.0 , 16.0 , 16.0 , 12.0 , 7.0 , 0.0 }, { 0.0 , 0.0 , 10.0 , 15.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 16.0 , 16.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 12.0 , 13.0 , 12.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 9.0 , 13.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 16.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 15.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 16.0 , 14.0 , 4.0 , 5.0 , 8.0 , 3.0 , 0.0 , 0.0 , 8.0 , 16.0 , 16.0 , 16.0 , 16.0 , 9.0 }, { 0.0 , 0.0 , 0.0 , 1.0 , 12.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 16.0 , 16.0 , 1.0 , 0.0 , 0.0 , 1.0 , 7.0 , 15.0 , 16.0 , 14.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 16.0 , 16.0 , 16.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 16.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 16.0 , 16.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 16.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 15.0 , 13.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 10.0 , 12.0 , 8.0 , 1.0 , 0.0 , 0.0 , 0.0 , 5.0 , 16.0 , 16.0 , 16.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 16.0 , 16.0 , 9.0 , 0.0 , 0.0 , 0.0 , 2.0 , 15.0 , 16.0 , 13.0 , 2.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 15.0 , 16.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 16.0 , 11.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 12.0 , 6.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 2.0 , 15.0 , 13.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 13.0 , 16.0 , 16.0 , 9.0 , 0.0 , 0.0 , 0.0 , 5.0 , 16.0 , 9.0 , 6.0 , 16.0 , 4.0 , 0.0 , 0.0 , 5.0 , 16.0 , 3.0 , 1.0 , 14.0 , 7.0 , 0.0 , 0.0 , 6.0 , 16.0 , 4.0 , 0.0 , 16.0 , 8.0 , 0.0 , 0.0 , 3.0 , 16.0 , 12.0 , 6.0 , 16.0 , 12.0 , 0.0 , 0.0 , 0.0 , 14.0 , 16.0 , 16.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 2.0 , 13.0 , 15.0 , 8.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 0.0 , 12.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 16.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 12.0 , 16.0 , 11.0 , 0.0 , 0.0 , 0.0 , 2.0 , 12.0 , 16.0 , 16.0 , 10.0 , 0.0 , 0.0 , 0.0 , 6.0 , 11.0 , 5.0 , 15.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 16.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 16.0 , 11.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 8.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 4.0 , 12.0 , 14.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 16.0 , 16.0 , 16.0 , 3.0 , 0.0 , 0.0 , 3.0 , 16.0 , 14.0 , 2.0 , 16.0 , 7.0 , 0.0 , 0.0 , 8.0 , 16.0 , 7.0 , 0.0 , 16.0 , 6.0 , 0.0 , 0.0 , 4.0 , 16.0 , 4.0 , 3.0 , 16.0 , 4.0 , 0.0 , 0.0 , 4.0 , 16.0 , 5.0 , 10.0 , 14.0 , 0.0 , 0.0 , 0.0 , 0.0 , 14.0 , 16.0 , 16.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 14.0 , 14.0 , 2.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 3.0 , 11.0 , 13.0 , 1.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 11.0 , 13.0 , 6.0 , 0.0 , 0.0 , 1.0 , 16.0 , 8.0 , 0.0 , 11.0 , 4.0 , 0.0 , 0.0 , 0.0 , 4.0 , 4.0 , 0.0 , 16.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 11.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 12.0 , 9.0 , 4.0 , 5.0 , 0.0 , 0.0 , 0.0 , 1.0 , 14.0 , 13.0 , 12.0 , 15.0 , 5.0 }, { 0.0 , 0.0 , 6.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 16.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 13.0 , 16.0 , 15.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 13.0 , 15.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 2.0 , 15.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 9.0 , 14.0 , 15.0 , 13.0 , 7.0 , 0.0 , 0.0 , 5.0 , 15.0 , 16.0 , 16.0 , 15.0 , 3.0 }, { 0.0 , 0.0 , 5.0 , 14.0 , 11.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 15.0 , 16.0 , 15.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 8.0 , 16.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 14.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 12.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 16.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 12.0 , 11.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 16.0 , 12.0 , 7.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 7.0 , 16.0 , 15.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 14.0 , 16.0 , 9.0 , 15.0 , 2.0 , 0.0 , 0.0 , 1.0 , 15.0 , 12.0 , 1.0 , 9.0 , 8.0 , 0.0 , 0.0 , 4.0 , 16.0 , 0.0 , 0.0 , 7.0 , 10.0 , 0.0 , 0.0 , 7.0 , 13.0 , 0.0 , 0.0 , 10.0 , 11.0 , 0.0 , 0.0 , 7.0 , 12.0 , 0.0 , 2.0 , 15.0 , 6.0 , 0.0 , 0.0 , 3.0 , 15.0 , 12.0 , 14.0 , 14.0 , 1.0 , 0.0 , 0.0 , 0.0 , 10.0 , 16.0 , 14.0 , 4.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 14.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 16.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 16.0 , 14.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 16.0 , 15.0 , 0.0 , 0.0 , 0.0 , 1.0 , 13.0 , 16.0 , 16.0 , 13.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 9.0 , 15.0 , 13.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 12.0 , 16.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 14.0 , 1.0 , 0.0 }, { 0.0 , 3.0 , 15.0 , 15.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 14.0 , 12.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 11.0 , 6.0 , 14.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 14.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 15.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 11.0 , 16.0 , 12.0 , 8.0 , 5.0 , 0.0 , 0.0 , 5.0 , 16.0 , 16.0 , 16.0 , 16.0 , 16.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 15.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 16.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 16.0 , 14.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 16.0 , 15.0 , 0.0 , 0.0 , 0.0 , 0.0 , 12.0 , 16.0 , 16.0 , 11.0 , 0.0 , 0.0 , 0.0 , 5.0 , 16.0 , 6.0 , 15.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 0.0 , 12.0 , 16.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 15.0 , 4.0 , 0.0 }, { 0.0 , 0.0 , 7.0 , 15.0 , 14.0 , 8.0 , 0.0 , 0.0 , 0.0 , 1.0 , 15.0 , 7.0 , 5.0 , 14.0 , 5.0 , 0.0 , 0.0 , 0.0 , 15.0 , 8.0 , 0.0 , 10.0 , 7.0 , 0.0 , 0.0 , 3.0 , 16.0 , 6.0 , 0.0 , 12.0 , 8.0 , 0.0 , 0.0 , 5.0 , 16.0 , 2.0 , 0.0 , 12.0 , 8.0 , 0.0 , 0.0 , 4.0 , 16.0 , 3.0 , 1.0 , 16.0 , 4.0 , 0.0 , 0.0 , 5.0 , 16.0 , 10.0 , 14.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 15.0 , 15.0 , 2.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 3.0 , 11.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 14.0 , 16.0 , 2.0 , 0.0 , 0.0 , 0.0 , 3.0 , 15.0 , 1.0 , 11.0 , 11.0 , 0.0 , 0.0 , 0.0 , 4.0 , 12.0 , 0.0 , 2.0 , 16.0 , 2.0 , 0.0 , 0.0 , 7.0 , 12.0 , 0.0 , 0.0 , 12.0 , 8.0 , 0.0 , 0.0 , 4.0 , 14.0 , 0.0 , 1.0 , 15.0 , 8.0 , 0.0 , 0.0 , 2.0 , 15.0 , 14.0 , 15.0 , 15.0 , 1.0 , 0.0 , 0.0 , 0.0 , 5.0 , 13.0 , 14.0 , 5.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 10.0 , 13.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 13.0 , 16.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 16.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 16.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 16.0 , 16.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 16.0 , 16.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 16.0 , 16.0 , 14.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 5.0 , 7.0 , 15.0 , 8.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 0.0 , 12.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 16.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 13.0 , 16.0 , 11.0 , 0.0 , 0.0 , 0.0 , 3.0 , 15.0 , 16.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 7.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 14.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 14.0 , 15.0 , 5.0 , 0.0 }, { 0.0 , 0.0 , 4.0 , 15.0 , 14.0 , 4.0 , 0.0 , 0.0 , 0.0 , 1.0 , 14.0 , 8.0 , 10.0 , 13.0 , 1.0 , 0.0 , 0.0 , 5.0 , 13.0 , 0.0 , 0.0 , 16.0 , 3.0 , 0.0 , 0.0 , 6.0 , 12.0 , 0.0 , 0.0 , 13.0 , 3.0 , 0.0 , 0.0 , 7.0 , 12.0 , 0.0 , 0.0 , 14.0 , 3.0 , 0.0 , 0.0 , 1.0 , 16.0 , 0.0 , 0.0 , 14.0 , 3.0 , 0.0 , 0.0 , 0.0 , 10.0 , 11.0 , 12.0 , 14.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 11.0 , 12.0 , 3.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 3.0 , 14.0 , 10.0 , 1.0 , 0.0 , 0.0 , 0.0 , 2.0 , 14.0 , 12.0 , 15.0 , 14.0 , 1.0 , 0.0 , 0.0 , 6.0 , 13.0 , 0.0 , 3.0 , 14.0 , 8.0 , 0.0 , 0.0 , 5.0 , 12.0 , 0.0 , 0.0 , 11.0 , 8.0 , 0.0 , 0.0 , 4.0 , 14.0 , 0.0 , 0.0 , 12.0 , 7.0 , 0.0 , 0.0 , 1.0 , 14.0 , 4.0 , 3.0 , 16.0 , 3.0 , 0.0 , 0.0 , 0.0 , 8.0 , 12.0 , 12.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 15.0 , 10.0 , 3.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 13.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 16.0 , 16.0 , 11.0 , 0.0 , 0.0 , 0.0 , 4.0 , 14.0 , 16.0 , 16.0 , 7.0 , 0.0 , 0.0 , 3.0 , 14.0 , 16.0 , 16.0 , 16.0 , 4.0 , 0.0 , 0.0 , 7.0 , 16.0 , 16.0 , 16.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 2.0 , 13.0 , 16.0 , 16.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 16.0 , 16.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 13.0 , 16.0 , 1.0 , 0.0 }, { 0.0 , 0.0 , 4.0 , 14.0 , 11.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 15.0 , 15.0 , 16.0 , 9.0 , 0.0 , 0.0 , 0.0 , 8.0 , 13.0 , 0.0 , 3.0 , 15.0 , 1.0 , 0.0 , 0.0 , 8.0 , 12.0 , 0.0 , 0.0 , 8.0 , 6.0 , 0.0 , 0.0 , 8.0 , 12.0 , 0.0 , 0.0 , 8.0 , 8.0 , 0.0 , 0.0 , 5.0 , 13.0 , 1.0 , 0.0 , 8.0 , 8.0 , 0.0 , 0.0 , 2.0 , 15.0 , 14.0 , 12.0 , 15.0 , 6.0 , 0.0 , 0.0 , 0.0 , 5.0 , 16.0 , 15.0 , 8.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 1.0 , 8.0 , 16.0 , 7.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 16.0 , 12.0 , 0.0 , 0.0 , 0.0 , 1.0 , 15.0 , 16.0 , 16.0 , 12.0 , 0.0 , 0.0 , 0.0 , 3.0 , 12.0 , 15.0 , 16.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 16.0 , 10.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 16.0 , 14.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 16.0 , 16.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 13.0 , 7.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 2.0 , 15.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 7.0 , 14.0 , 15.0 , 8.0 , 0.0 , 0.0 , 0.0 , 7.0 , 15.0 , 3.0 , 3.0 , 15.0 , 0.0 , 0.0 , 0.0 , 6.0 , 16.0 , 1.0 , 0.0 , 9.0 , 8.0 , 0.0 , 0.0 , 4.0 , 12.0 , 0.0 , 0.0 , 8.0 , 8.0 , 0.0 , 0.0 , 0.0 , 12.0 , 3.0 , 0.0 , 12.0 , 7.0 , 0.0 , 0.0 , 0.0 , 9.0 , 13.0 , 13.0 , 15.0 , 1.0 , 0.0 , 0.0 , 0.0 , 1.0 , 9.0 , 12.0 , 5.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 9.0 , 15.0 , 13.0 , 0.0 , 0.0 , 0.0 , 0.0 , 5.0 , 14.0 , 7.0 , 13.0 , 2.0 , 0.0 , 0.0 , 0.0 , 12.0 , 10.0 , 1.0 , 13.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 7.0 , 6.0 , 11.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 6.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 15.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 11.0 , 0.0 , 6.0 , 5.0 , 0.0 , 0.0 , 0.0 , 11.0 , 16.0 , 16.0 , 16.0 , 16.0 , 3.0 }, { 0.0 , 0.0 , 8.0 , 16.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 1.0 , 13.0 , 11.0 , 16.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 0.0 , 13.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 1.0 , 16.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 15.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 14.0 , 15.0 , 8.0 , 8.0 , 3.0 , 0.0 , 0.0 , 0.0 , 7.0 , 12.0 , 12.0 , 12.0 , 13.0 , 1.0 }, { 0.0 , 0.0 , 6.0 , 15.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 16.0 , 14.0 , 16.0 , 1.0 , 0.0 , 0.0 , 0.0 , 14.0 , 12.0 , 3.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 9.0 , 11.0 , 3.0 , 16.0 , 3.0 , 0.0 , 0.0 , 0.0 , 0.0 , 2.0 , 9.0 , 16.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 13.0 , 11.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 16.0 , 12.0 , 9.0 , 10.0 , 3.0 , 0.0 , 0.0 , 8.0 , 16.0 , 16.0 , 16.0 , 16.0 , 14.0 }, { 0.0 , 0.0 , 4.0 , 12.0 , 13.0 , 5.0 , 0.0 , 0.0 , 0.0 , 0.0 , 14.0 , 16.0 , 16.0 , 16.0 , 4.0 , 0.0 , 0.0 , 6.0 , 13.0 , 2.0 , 1.0 , 11.0 , 8.0 , 0.0 , 0.0 , 6.0 , 11.0 , 0.0 , 0.0 , 8.0 , 8.0 , 0.0 , 0.0 , 4.0 , 16.0 , 0.0 , 0.0 , 10.0 , 8.0 , 0.0 , 0.0 , 4.0 , 16.0 , 4.0 , 8.0 , 16.0 , 3.0 , 0.0 , 0.0 , 0.0 , 16.0 , 16.0 , 16.0 , 12.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 15.0 , 14.0 , 3.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 6.0 , 15.0 , 9.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 11.0 , 16.0 , 16.0 , 13.0 , 0.0 , 0.0 , 0.0 , 0.0 , 10.0 , 16.0 , 16.0 , 16.0 , 7.0 , 0.0 , 0.0 , 1.0 , 16.0 , 8.0 , 0.0 , 11.0 , 8.0 , 0.0 , 0.0 , 7.0 , 14.0 , 1.0 , 0.0 , 10.0 , 8.0 , 0.0 , 0.0 , 8.0 , 12.0 , 0.0 , 0.0 , 13.0 , 4.0 , 0.0 , 0.0 , 5.0 , 16.0 , 8.0 , 9.0 , 13.0 , 0.0 , 0.0 , 0.0 , 0.0 , 6.0 , 12.0 , 13.0 , 5.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 8.0 , 15.0 , 8.0 , 0.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 12.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 2.0 , 10.0 , 1.0 , 16.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 8.0 , 14.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 15.0 , 3.0 , 0.0 , 0.0 , 0.0 , 3.0 , 16.0 , 14.0 , 4.0 , 0.0 , 0.0 , 0.0 , 0.0 , 4.0 , 15.0 , 14.0 , 7.0 , 1.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 9.0 , 12.0 , 14.0 , 4.0 , 0.0 }, }; int y_train[TRAIN_SAMPLES] = { 2 , 0 , 0 , 0 , 0 , 2 , 1 , 1 , 0 , 0 , 1 , 1 , 0 , 0 , 2 , 1 , 0 , 2 , 2 , 0 , 0 , 0 , 0 , 1 , 2 , 2 , 0 , 2 , 1 , 1 , 2 , 2 , 0 , 2 , 2 , 1 , 1 , 0 , 2 , 1 , 2 , 2 , 0 , 0 , 2 , 1 , 0 , 0 , 2 , 2 , 1 , 2 , 1 , 0 , 0 , 0 , 2 , 2 , 1 , 2 , 2 , 0 , 2 , 1 , 2 , 0 , 0 , 2 , 1 , 1 , 0 , 2 , 2 , 0 , 1 , 0 , 1 , 0 , 0 , 0 , 2 , 2 , 1 , 2 , 1 , 0 , 1 , 2 , 1 , 2 , 1 , 2 , 0 , 2 , 0 , 1 , 2 , 2 , 1 , 1 , 2 , 0 , 0 , 0 , 0 , 1 , 2 , 1 , 2 , 1 , 1 , 2 , 2 , 1 , 2 , 0 , 0 , 0 , 1 , 1 , 0 , 2 , 2 , 1 , 0 , 1 , 1 , 2 , 0 , 0 , 1 , 2 , 1 , 2 , 1 , 1 , 2 , 0 , 1 , 2 , 0 , 0 , 1 , 2 , 1 , 1 , 0 , 1 , 1 , 1 , 1 , 2 , 2 , 1 , 2 , 1 , 0 , 1 , 0 , 1 , 2 , 1 , 0 , 2 , 0 , 0 , 2 , 1 , 2 , 0 , 0 , 1 , 1 , 2 , 0 , 2 , 2 , 1 , 1 , 0 , 1 , 1 , 0 , 2 , 1 , 1 , 2 , 1 , 2 , 2 , 2 , 0 , 0 , 1 , 1 , 2 , 1 , 1 , 2 , 2 , 1 , 2 , 0 , 0 , 1 , 0 , 1 , 1 , 1 , 2 }; int y_test[TEST_SAMPLES] = { 0 , 2 , 2 , 0 , 1 , 2 , 0 , 2 , 0 , 2 , 2 , 2 , 1 , 1 , 1 , 0 , 0 , 2 , 0 , 2 , 2 , 2 , 2 , 2 , 1 , 0 , 0 , 1 , 1 , 0 , 1 , 0 , 1 , 2 , 0 , 2 , 1 , 1 , 2 , 1 , 0 , 0 , 1 , 0 , 0 , 0 , 0 , 1 , 1 , 2 , 1 , 0 , 2 , 0 , 1 , 0 , 0 , 0 , 2 , 2 , 2 , 2 , 1 , 1 , 0 , 1 , 0 , 2 , 1 , 2 , 0 , 1 , 2 , 1 , 0 , 0 , 1 , 1 , 0 , 0 , 1 , 0 , 1 , 0 , 2 , 2 , 2 , 0 , 0 , 2 };
164,521
C++
.h
312
518.61859
1,292
0.268761
eloquentarduino/EloquentMicroML
34
11
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,690
GaussianNB.h
eloquentarduino_EloquentMicroML/examples/GaussianNBClassificationExample/GaussianNB.h
#pragma once namespace Eloquent { namespace ML { namespace Port { class GaussianNB { public: /** * Predict class for features vector */ int predict(float *x) { float votes[3] = { 0.0f }; float theta[4] = { 0 }; float sigma[4] = { 0 }; theta[0] = 5.006; theta[1] = 3.428; theta[2] = 1.462; theta[3] = 0.246; sigma[0] = 0.121794955027; sigma[1] = 0.140846955027; sigma[2] = 0.029586955027; sigma[3] = 0.010914955027; votes[0] = 0.333333333333 - gauss(x, theta, sigma); theta[0] = 5.936; theta[1] = 2.77; theta[2] = 4.26; theta[3] = 1.326; sigma[0] = 0.261134955027; sigma[1] = 0.096530955027; sigma[2] = 0.216430955027; sigma[3] = 0.038354955027; votes[1] = 0.333333333333 - gauss(x, theta, sigma); theta[0] = 6.588; theta[1] = 2.974; theta[2] = 5.552; theta[3] = 2.026; sigma[0] = 0.396286955027; sigma[1] = 0.101954955027; sigma[2] = 0.298526955027; sigma[3] = 0.073954955027; votes[2] = 0.333333333333 - gauss(x, theta, sigma); // return argmax of votes uint8_t classIdx = 0; float maxVotes = votes[0]; for (uint8_t i = 1; i < 3; i++) { if (votes[i] > maxVotes) { classIdx = i; maxVotes = votes[i]; } } return classIdx; } protected: /** * Compute gaussian value */ float gauss(float *x, float *theta, float *sigma) { float gauss = 0.0f; for (uint16_t i = 0; i < 4; i++) { gauss += log(sigma[i]); gauss += pow(x[i] - theta[i], 2) / sigma[i]; } return gauss; } }; } } }
2,197
C++
.h
49
26.938776
127
0.404384
eloquentarduino/EloquentMicroML
34
11
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,691
IrisTestSet.h
eloquentarduino_EloquentMicroML/examples/GaussianNBClassificationExample/IrisTestSet.h
#pragma once namespace Eloquent { namespace ML { namespace Test { /** * A tailor made test set */ class TestSet { public: TestSet() : _x{ { 6.2 , 2.8 , 4.8 , 1.8 }, { 6.1 , 2.8 , 4.0 , 1.3 }, { 6.4 , 2.9 , 4.3 , 1.3 }, { 6.7 , 3.0 , 5.2 , 2.3 }, { 7.7 , 2.6 , 6.9 , 2.3 }, { 5.9 , 3.0 , 4.2 , 1.5 }, { 6.1 , 3.0 , 4.9 , 1.8 }, { 5.8 , 2.8 , 5.1 , 2.4 }, { 5.7 , 2.9 , 4.2 , 1.3 }, { 5.8 , 2.7 , 3.9 , 1.2 }, { 5.8 , 2.7 , 4.1 , 1.0 }, { 5.1 , 3.5 , 1.4 , 0.3 }, { 4.4 , 3.2 , 1.3 , 0.2 }, { 5.0 , 2.0 , 3.5 , 1.0 }, { 5.0 , 3.4 , 1.6 , 0.4 }, { 5.8 , 2.7 , 5.1 , 1.9 }, { 4.7 , 3.2 , 1.6 , 0.2 }, { 6.9 , 3.1 , 5.1 , 2.3 }, { 6.7 , 3.1 , 4.7 , 1.5 }, { 7.0 , 3.2 , 4.7 , 1.4 }, { 6.0 , 2.2 , 5.0 , 1.5 }, { 5.4 , 3.9 , 1.7 , 0.4 }, { 5.5 , 3.5 , 1.3 , 0.2 }, { 5.1 , 3.8 , 1.6 , 0.2 }, { 6.1 , 2.9 , 4.7 , 1.4 }, { 6.5 , 3.2 , 5.1 , 2.0 }, { 7.2 , 3.6 , 6.1 , 2.5 }, { 6.3 , 2.7 , 4.9 , 1.8 }, { 4.6 , 3.4 , 1.4 , 0.3 }, { 7.6 , 3.0 , 6.6 , 2.1 }, { 6.1 , 2.8 , 4.7 , 1.2 }, { 5.6 , 3.0 , 4.5 , 1.5 }, { 5.8 , 4.0 , 1.2 , 0.2 }, { 5.2 , 4.1 , 1.5 , 0.1 }, { 5.9 , 3.2 , 4.8 , 1.8 }, { 6.7 , 3.3 , 5.7 , 2.5 }, { 6.8 , 3.0 , 5.5 , 2.1 }, { 5.0 , 3.5 , 1.3 , 0.3 }, { 4.9 , 3.0 , 1.4 , 0.2 }, { 6.4 , 3.1 , 5.5 , 1.8 }, { 6.4 , 2.8 , 5.6 , 2.2 }, { 6.7 , 3.1 , 4.4 , 1.4 }, { 5.5 , 2.3 , 4.0 , 1.3 }, { 5.7 , 3.8 , 1.7 , 0.3 }, { 6.1 , 2.6 , 5.6 , 1.4 }, { 5.7 , 2.8 , 4.1 , 1.3 }, { 5.5 , 4.2 , 1.4 , 0.2 }, { 7.2 , 3.0 , 5.8 , 1.6 }, { 5.6 , 2.5 , 3.9 , 1.1 }, { 5.1 , 2.5 , 3.0 , 1.1 }, { 6.9 , 3.1 , 4.9 , 1.5 }, { 6.6 , 3.0 , 4.4 , 1.4 }, { 5.1 , 3.8 , 1.5 , 0.3 }, { 5.5 , 2.6 , 4.4 , 1.2 }, { 4.8 , 3.4 , 1.9 , 0.2 }, { 6.5 , 2.8 , 4.6 , 1.5 }, { 6.0 , 3.4 , 4.5 , 1.6 }, { 6.0 , 2.7 , 5.1 , 1.6 }, { 6.3 , 2.8 , 5.1 , 1.5 }, { 6.9 , 3.2 , 5.7 , 2.3 }, { 4.9 , 3.6 , 1.4 , 0.1 }, { 4.9 , 2.5 , 4.5 , 1.7 }, { 4.4 , 3.0 , 1.3 , 0.2 }, { 6.3 , 3.3 , 4.7 , 1.6 }, { 7.7 , 3.0 , 6.1 , 2.3 }, { 5.8 , 2.7 , 5.1 , 1.9 }, { 5.1 , 3.5 , 1.4 , 0.2 }, { 6.3 , 2.3 , 4.4 , 1.3 }, { 6.6 , 2.9 , 4.6 , 1.3 }, { 4.8 , 3.0 , 1.4 , 0.3 }, { 5.4 , 3.4 , 1.7 , 0.2 }, { 4.8 , 3.0 , 1.4 , 0.1 }, { 5.1 , 3.7 , 1.5 , 0.4 }, { 6.0 , 2.9 , 4.5 , 1.5 }, { 6.2 , 3.4 , 5.4 , 2.3 }, { 5.0 , 3.6 , 1.4 , 0.2 }, { 6.0 , 2.2 , 4.0 , 1.0 }, { 6.5 , 3.0 , 5.2 , 2.0 }, { 6.4 , 2.8 , 5.6 , 2.1 }, { 5.0 , 3.5 , 1.6 , 0.6 }, { 5.7 , 2.5 , 5.0 , 2.0 }, { 5.7 , 2.6 , 3.5 , 1.0 }, { 6.4 , 3.2 , 5.3 , 2.3 }, { 4.8 , 3.4 , 1.6 , 0.2 }, { 4.5 , 2.3 , 1.3 , 0.3 }, { 5.0 , 3.0 , 1.6 , 0.2 }, { 6.5 , 3.0 , 5.8 , 2.2 }, { 6.8 , 3.2 , 5.9 , 2.3 }, { 6.3 , 2.5 , 5.0 , 1.9 }, { 5.6 , 2.8 , 4.9 , 2.0 }, { 5.3 , 3.7 , 1.5 , 0.2 }, { 5.9 , 3.0 , 5.1 , 1.8 }, { 6.3 , 2.9 , 5.6 , 1.8 }, { 5.2 , 3.4 , 1.4 , 0.2 }, { 6.8 , 2.8 , 4.8 , 1.4 }, { 5.5 , 2.4 , 3.8 , 1.1 }, { 6.7 , 3.0 , 5.0 , 1.7 }, { 6.3 , 3.3 , 6.0 , 2.5 }, { 7.7 , 2.8 , 6.7 , 2.0 }, { 4.7 , 3.2 , 1.3 , 0.2 }, { 4.6 , 3.6 , 1.0 , 0.2 }, { 6.0 , 3.0 , 4.8 , 1.8 }, { 7.9 , 3.8 , 6.4 , 2.0 }, { 5.4 , 3.0 , 4.5 , 1.5 }, { 5.6 , 2.9 , 3.6 , 1.3 }, { 7.4 , 2.8 , 6.1 , 1.9 }, { 5.4 , 3.7 , 1.5 , 0.2 }, { 6.2 , 2.2 , 4.5 , 1.5 }, { 5.4 , 3.4 , 1.5 , 0.4 }, { 4.6 , 3.2 , 1.4 , 0.2 }, { 6.5 , 3.0 , 5.5 , 1.8 }, { 5.2 , 2.7 , 3.9 , 1.4 }, { 4.8 , 3.1 , 1.6 , 0.2 }, { 4.9 , 2.4 , 3.3 , 1.0 }, { 6.7 , 2.5 , 5.8 , 1.8 }, { 6.4 , 2.7 , 5.3 , 1.9 }, { 5.5 , 2.5 , 4.0 , 1.3 }, { 5.2 , 3.5 , 1.5 , 0.2 }, { 4.3 , 3.0 , 1.1 , 0.1 }, { 6.1 , 3.0 , 4.6 , 1.4 }, { 5.7 , 3.0 , 4.2 , 1.2 }, { 6.3 , 2.5 , 4.9 , 1.5 }, { 5.6 , 3.0 , 4.1 , 1.3 }, { 7.7 , 3.8 , 6.7 , 2.2 }, { 5.0 , 3.3 , 1.4 , 0.2 }, { 5.0 , 3.4 , 1.5 , 0.2 }, { 7.1 , 3.0 , 5.9 , 2.1 }, { 6.2 , 2.9 , 4.3 , 1.3 }, { 5.1 , 3.4 , 1.5 , 0.2 }, { 5.1 , 3.8 , 1.9 , 0.4 }, { 4.9 , 3.1 , 1.5 , 0.2 }, { 6.4 , 3.2 , 4.5 , 1.5 }, { 4.9 , 3.1 , 1.5 , 0.1 }, { 4.6 , 3.1 , 1.5 , 0.2 }, { 5.7 , 4.4 , 1.5 , 0.4 }, { 5.6 , 2.7 , 4.2 , 1.3 }, { 6.7 , 3.3 , 5.7 , 2.1 }, { 5.5 , 2.4 , 3.7 , 1.0 }, { 5.0 , 2.3 , 3.3 , 1.0 }, { 5.7 , 2.8 , 4.5 , 1.3 }, { 6.3 , 3.4 , 5.6 , 2.4 }, { 5.0 , 3.2 , 1.2 , 0.2 }, { 5.4 , 3.9 , 1.3 , 0.4 }, { 4.4 , 2.9 , 1.4 , 0.2 }, { 6.7 , 3.1 , 5.6 , 2.4 }, { 5.8 , 2.6 , 4.0 , 1.2 }, { 5.1 , 3.3 , 1.7 , 0.5 }, { 6.9 , 3.1 , 5.4 , 2.1 }, { 7.2 , 3.2 , 6.0 , 1.8 }, { 7.3 , 2.9 , 6.3 , 1.8 }, }, _y{ 2 , 1 , 1 , 2 , 2 , 1 , 2 , 2 , 1 , 1 , 1 , 0 , 0 , 1 , 0 , 2 , 0 , 2 , 1 , 1 , 2 , 0 , 0 , 0 , 1 , 2 , 2 , 2 , 0 , 2 , 1 , 1 , 0 , 0 , 1 , 2 , 2 , 0 , 0 , 2 , 2 , 1 , 1 , 0 , 2 , 1 , 0 , 2 , 1 , 1 , 1 , 1 , 0 , 1 , 0 , 1 , 1 , 1 , 2 , 2 , 0 , 2 , 0 , 1 , 2 , 2 , 0 , 1 , 1 , 0 , 0 , 0 , 0 , 1 , 2 , 0 , 1 , 2 , 2 , 0 , 2 , 1 , 2 , 0 , 0 , 0 , 2 , 2 , 2 , 2 , 0 , 2 , 2 , 0 , 1 , 1 , 1 , 2 , 2 , 0 , 0 , 2 , 2 , 1 , 1 , 2 , 0 , 1 , 0 , 0 , 2 , 1 , 0 , 1 , 2 , 2 , 1 , 0 , 0 , 1 , 1 , 1 , 1 , 2 , 0 , 0 , 2 , 1 , 0 , 0 , 0 , 1 , 0 , 0 , 0 , 1 , 2 , 1 , 1 , 1 , 2 , 0 , 0 , 0 , 2 , 1 , 0 , 2 , 2 , 2 }, _tp(0), _tn(0), _fp(0), _fn(0) {} template<class Classifier> void test(Classifier clf) { for (uint16_t i = 0; i < 150; i++) { int predicted = clf.predict(_x[i]); int actual = _y[i]; if (predicted > 0 && predicted == actual) _tp++; else if (predicted > 0 && predicted != actual) _fp++; else if (predicted <= 0 && predicted == actual) _tn++; else _fn++; } } String dump() { return String("Support:\t") + support() + "\nTP:\t" + _tp + "\nTN:\t" + _tn + "\nFP:\t" + _fp + "\nFN:\t" + _fn + "\nAccuracy:\t" + accuracy() + "\nPrecision:\t" + precision() + "\nRecall:\t" + recall() + "\nSpecificity:\t" + specificity() ; } float accuracy() { return (1.0f * _tp + _tn) / support(); } float precision() { return (1.0f * _tp) / (_tp + _fp); } float recall() { return (1.0f * _tp) / (_tp + _fn); } float specificity() { return (1.0f * _tn) / (_tn + _fp); } uint16_t support() { return _tp + _tn + _fp + _fn; } protected: float _x[150][4]; int _y[150]; uint16_t _tp, _fp, _tn, _fn; }; } } }
13,631
C++
.h
223
32.340807
931
0.147772
eloquentarduino/EloquentMicroML
34
11
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,692
DigitsTrain.h
eloquentarduino_EloquentMicroML/examples/OnboardSEFRExample/DigitsTrain.h
#pragma once namespace Eloquent { namespace ML { namespace Train { /** * A tailor made training set */ class TrainSet { public: TrainSet() : _x{ { 0.0 , 0.0 , 0.0 , 0.0 , 0.164675087238 , 0.209586474666 , 0.044911387429 , 0.0 , 0.0 , 0.0 , 0.0 , 0.029940924952 , 0.239527399619 , 0.239527399619 , 0.029940924952 , 0.0 , 0.0 , 0.0 , 0.0 , 0.164675087238 , 0.239527399619 , 0.209586474666 , 0.0 , 0.0 , 0.0 , 0.0 , 0.044911387429 , 0.239527399619 , 0.239527399619 , 0.224556937143 , 0.0 , 0.0 , 0.0 , 0.014970462476 , 0.19461601219 , 0.239527399619 , 0.239527399619 , 0.19461601219 , 0.0 , 0.0 , 0.0 , 0.089822774857 , 0.239527399619 , 0.134734162286 , 0.224556937143 , 0.19461601219 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.179645549714 , 0.239527399619 , 0.014970462476 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.134734162286 , 0.209586474666 , 0.014970462476 , 0.0 }, { 0.0 , 0.0 , 0.090240359461 , 0.234624934597 , 0.162432647029 , 0.018048071892 , 0.0 , 0.0 , 0.0 , 0.0 , 0.234624934597 , 0.270721078382 , 0.180480718921 , 0.270721078382 , 0.090240359461 , 0.0 , 0.0 , 0.054144215676 , 0.270721078382 , 0.036096143784 , 0.0 , 0.198528790813 , 0.144384575137 , 0.0 , 0.0 , 0.072192287568 , 0.216576862705 , 0.0 , 0.0 , 0.144384575137 , 0.144384575137 , 0.0 , 0.0 , 0.090240359461 , 0.144384575137 , 0.0 , 0.0 , 0.162432647029 , 0.144384575137 , 0.0 , 0.0 , 0.072192287568 , 0.198528790813 , 0.0 , 0.018048071892 , 0.216576862705 , 0.126336503245 , 0.0 , 0.0 , 0.036096143784 , 0.25267300649 , 0.090240359461 , 0.180480718921 , 0.216576862705 , 0.0 , 0.0 , 0.0 , 0.0 , 0.108288431353 , 0.234624934597 , 0.180480718921 , 0.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.02752148805 , 0.206411160375 , 0.178889672325 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.178889672325 , 0.2201719044 , 0.2201719044 , 0.123846696225 , 0.0 , 0.0 , 0.0 , 0.068803720125 , 0.2201719044 , 0.123846696225 , 0.08256446415 , 0.2201719044 , 0.0550429761 , 0.0 , 0.0 , 0.068803720125 , 0.2201719044 , 0.041282232075 , 0.013760744025 , 0.19265041635 , 0.096325208175 , 0.0 , 0.0 , 0.08256446415 , 0.2201719044 , 0.0550429761 , 0.0 , 0.2201719044 , 0.1100859522 , 0.0 , 0.0 , 0.041282232075 , 0.2201719044 , 0.1651289283 , 0.08256446415 , 0.2201719044 , 0.1651289283 , 0.0 , 0.0 , 0.0 , 0.19265041635 , 0.2201719044 , 0.2201719044 , 0.2201719044 , 0.0550429761 , 0.0 , 0.0 , 0.0 , 0.02752148805 , 0.178889672325 , 0.206411160375 , 0.1100859522 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 0.0 , 0.189503567803 , 0.233235160373 , 0.08746318514 , 0.0 , 0.0 , 0.0 , 0.04373159257 , 0.160349172756 , 0.233235160373 , 0.233235160373 , 0.072885987616 , 0.0 , 0.0 , 0.072885987616 , 0.233235160373 , 0.233235160373 , 0.233235160373 , 0.233235160373 , 0.058308790093 , 0.0 , 0.0 , 0.058308790093 , 0.145771975233 , 0.13119477771 , 0.233235160373 , 0.233235160373 , 0.058308790093 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.189503567803 , 0.233235160373 , 0.058308790093 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.174926370279 , 0.233235160373 , 0.058308790093 , 0.0 , 0.0 , 0.0 , 0.0 , 0.029154395047 , 0.233235160373 , 0.233235160373 , 0.102040382663 , 0.0 , 0.0 , 0.0 , 0.0 , 0.014577197523 , 0.174926370279 , 0.204080765326 , 0.072885987616 , 0.0 }, { 0.0 , 0.0 , 0.043815467838 , 0.175261871351 , 0.146051559459 , 0.014605155946 , 0.0 , 0.0 , 0.0 , 0.014605155946 , 0.233682495135 , 0.233682495135 , 0.233682495135 , 0.146051559459 , 0.0 , 0.0 , 0.0 , 0.07302577973 , 0.233682495135 , 0.189867027297 , 0.087630935676 , 0.233682495135 , 0.014605155946 , 0.0 , 0.0 , 0.07302577973 , 0.233682495135 , 0.102236091621 , 0.0 , 0.189867027297 , 0.043815467838 , 0.0 , 0.0 , 0.07302577973 , 0.233682495135 , 0.058420623784 , 0.0 , 0.189867027297 , 0.102236091621 , 0.0 , 0.0 , 0.014605155946 , 0.233682495135 , 0.116841247567 , 0.0 , 0.204472183243 , 0.102236091621 , 0.0 , 0.0 , 0.0 , 0.189867027297 , 0.204472183243 , 0.189867027297 , 0.233682495135 , 0.043815467838 , 0.0 , 0.0 , 0.0 , 0.029210311892 , 0.189867027297 , 0.219077339189 , 0.087630935676 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 0.079255328119 , 0.253617049979 , 0.12680852499 , 0.0 , 0.0 , 0.0 , 0.0 , 0.063404262495 , 0.253617049979 , 0.253617049979 , 0.12680852499 , 0.0 , 0.0 , 0.0 , 0.031702131247 , 0.237765984356 , 0.253617049979 , 0.253617049979 , 0.12680852499 , 0.0 , 0.0 , 0.0 , 0.063404262495 , 0.12680852499 , 0.190212787484 , 0.253617049979 , 0.079255328119 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.095106393742 , 0.253617049979 , 0.174361721861 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.095106393742 , 0.253617049979 , 0.190212787484 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.095106393742 , 0.253617049979 , 0.237765984356 , 0.015851065624 , 0.0 , 0.0 , 0.0 , 0.0 , 0.063404262495 , 0.237765984356 , 0.174361721861 , 0.031702131247 , 0.0 }, { 0.0 , 0.0 , 0.066927448141 , 0.217514206458 , 0.133854896282 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.217514206458 , 0.267709792564 , 0.250977930529 , 0.117123034247 , 0.0 , 0.0 , 0.0 , 0.050195586106 , 0.267709792564 , 0.150586758317 , 0.100391172212 , 0.250977930529 , 0.100391172212 , 0.0 , 0.0 , 0.133854896282 , 0.234246068494 , 0.0 , 0.0 , 0.066927448141 , 0.133854896282 , 0.0 , 0.0 , 0.133854896282 , 0.200782344423 , 0.0 , 0.0 , 0.066927448141 , 0.133854896282 , 0.0 , 0.0 , 0.066927448141 , 0.200782344423 , 0.0 , 0.0 , 0.184050482388 , 0.100391172212 , 0.0 , 0.0 , 0.0 , 0.234246068494 , 0.167318620353 , 0.200782344423 , 0.234246068494 , 0.016731862035 , 0.0 , 0.0 , 0.0 , 0.117123034247 , 0.250977930529 , 0.184050482388 , 0.033463724071 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.11990802422 , 0.256945766185 , 0.154167459711 , 0.085648588728 , 0.0 , 0.0 , 0.0 , 0.0 , 0.23981604844 , 0.274075483931 , 0.23981604844 , 0.256945766185 , 0.0 , 0.0 , 0.0 , 0.017129717746 , 0.274075483931 , 0.137037741966 , 0.068518870983 , 0.102778306474 , 0.068518870983 , 0.0 , 0.0 , 0.068518870983 , 0.256945766185 , 0.017129717746 , 0.0 , 0.102778306474 , 0.085648588728 , 0.0 , 0.0 , 0.051389153237 , 0.188426895203 , 0.0 , 0.0 , 0.11990802422 , 0.085648588728 , 0.0 , 0.0 , 0.051389153237 , 0.188426895203 , 0.0 , 0.017129717746 , 0.222686330694 , 0.034259435491 , 0.0 , 0.0 , 0.017129717746 , 0.222686330694 , 0.137037741966 , 0.222686330694 , 0.222686330694 , 0.0 , 0.0 , 0.0 , 0.0 , 0.102778306474 , 0.256945766185 , 0.188426895203 , 0.017129717746 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.016620562383 , 0.149585061446 , 0.249308435743 , 0.182826186211 , 0.0 , 0.0 , 0.0 , 0.0 , 0.182826186211 , 0.265928998126 , 0.132964499063 , 0.23268787336 , 0.099723374297 , 0.0 , 0.0 , 0.033241124766 , 0.265928998126 , 0.166205623829 , 0.0 , 0.149585061446 , 0.149585061446 , 0.0 , 0.0 , 0.016620562383 , 0.265928998126 , 0.066482249531 , 0.0 , 0.132964499063 , 0.132964499063 , 0.0 , 0.0 , 0.066482249531 , 0.265928998126 , 0.066482249531 , 0.0 , 0.132964499063 , 0.132964499063 , 0.0 , 0.0 , 0.016620562383 , 0.265928998126 , 0.083102811914 , 0.016620562383 , 0.182826186211 , 0.049861687149 , 0.0 , 0.0 , 0.0 , 0.199446748594 , 0.199446748594 , 0.166205623829 , 0.166205623829 , 0.0 , 0.0 , 0.0 , 0.0 , 0.016620562383 , 0.166205623829 , 0.216067310977 , 0.049861687149 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.062522900764 , 0.187568702292 , 0.15630725191 , 0.015630725191 , 0.0 , 0.0 , 0.0 , 0.046892175573 , 0.250091603057 , 0.203199427483 , 0.234460877865 , 0.15630725191 , 0.0 , 0.0 , 0.0 , 0.078153625955 , 0.250091603057 , 0.031261450382 , 0.015630725191 , 0.218830152674 , 0.046892175573 , 0.0 , 0.0 , 0.125045801528 , 0.203199427483 , 0.0 , 0.0 , 0.15630725191 , 0.125045801528 , 0.0 , 0.0 , 0.125045801528 , 0.187568702292 , 0.0 , 0.0 , 0.125045801528 , 0.125045801528 , 0.0 , 0.0 , 0.125045801528 , 0.218830152674 , 0.0 , 0.0 , 0.171937977101 , 0.125045801528 , 0.0 , 0.0 , 0.046892175573 , 0.250091603057 , 0.218830152674 , 0.203199427483 , 0.250091603057 , 0.031261450382 , 0.0 , 0.0 , 0.0 , 0.125045801528 , 0.250091603057 , 0.203199427483 , 0.078153625955 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 0.0 , 0.245049014705 , 0.122524507352 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.227545513655 , 0.280056016806 , 0.157531509453 , 0.0 , 0.0 , 0.0 , 0.0 , 0.175035010504 , 0.280056016806 , 0.280056016806 , 0.122524507352 , 0.0 , 0.0 , 0.0 , 0.122524507352 , 0.280056016806 , 0.140028008403 , 0.280056016806 , 0.035007002101 , 0.0 , 0.0 , 0.0 , 0.01750350105 , 0.087517505252 , 0.105021006302 , 0.280056016806 , 0.105021006302 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.070014004201 , 0.280056016806 , 0.105021006302 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.035007002101 , 0.280056016806 , 0.105021006302 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.210042012604 , 0.192538511554 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.028771766882 , 0.201402368177 , 0.215788251618 , 0.071929417206 , 0.0 , 0.0 , 0.0 , 0.0 , 0.143858834412 , 0.230174135059 , 0.230174135059 , 0.215788251618 , 0.014385883441 , 0.0 , 0.0 , 0.043157650324 , 0.230174135059 , 0.143858834412 , 0.143858834412 , 0.230174135059 , 0.057543533765 , 0.0 , 0.0 , 0.071929417206 , 0.230174135059 , 0.0 , 0.0 , 0.201402368177 , 0.086315300647 , 0.0 , 0.0 , 0.071929417206 , 0.230174135059 , 0.086315300647 , 0.0 , 0.172630601295 , 0.100701184088 , 0.0 , 0.0 , 0.014385883441 , 0.215788251618 , 0.187016484736 , 0.057543533765 , 0.187016484736 , 0.086315300647 , 0.0 , 0.0 , 0.0 , 0.158244717853 , 0.230174135059 , 0.230174135059 , 0.215788251618 , 0.0 , 0.0 , 0.0 , 0.0 , 0.028771766882 , 0.158244717853 , 0.187016484736 , 0.057543533765 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.067593030842 , 0.219677350236 , 0.185880834815 , 0.118287803973 , 0.0 , 0.0 , 0.0 , 0.0 , 0.236575607947 , 0.270372123367 , 0.219677350236 , 0.270372123367 , 0.033796515421 , 0.0 , 0.0 , 0.084491288552 , 0.270372123367 , 0.067593030842 , 0.0 , 0.084491288552 , 0.118287803973 , 0.0 , 0.0 , 0.135186061684 , 0.236575607947 , 0.0 , 0.0 , 0.067593030842 , 0.135186061684 , 0.0 , 0.0 , 0.101389546263 , 0.152084319394 , 0.0 , 0.0 , 0.067593030842 , 0.135186061684 , 0.0 , 0.0 , 0.033796515421 , 0.236575607947 , 0.01689825771 , 0.0 , 0.135186061684 , 0.101389546263 , 0.0 , 0.0 , 0.0 , 0.219677350236 , 0.202779092526 , 0.152084319394 , 0.253473865657 , 0.033796515421 , 0.0 , 0.0 , 0.0 , 0.050694773131 , 0.270372123367 , 0.202779092526 , 0.084491288552 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 0.01748743542 , 0.192361789615 , 0.157386918776 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.122412047937 , 0.279798966713 , 0.227336660454 , 0.0 , 0.0 , 0.0 , 0.0 , 0.069949741678 , 0.244824095874 , 0.279798966713 , 0.157386918776 , 0.0 , 0.0 , 0.0 , 0.174874354196 , 0.279798966713 , 0.192361789615 , 0.279798966713 , 0.139899483357 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.052462306259 , 0.279798966713 , 0.104924612517 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.052462306259 , 0.279798966713 , 0.139899483357 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.087437177098 , 0.279798966713 , 0.174874354196 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.034974870839 , 0.244824095874 , 0.104924612517 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.086516067526 , 0.259548202577 , 0.207638562062 , 0.138425708041 , 0.0 , 0.0 , 0.0 , 0.0 , 0.224941775567 , 0.276851416082 , 0.173032135051 , 0.224941775567 , 0.051909640515 , 0.0 , 0.0 , 0.086516067526 , 0.276851416082 , 0.155728921546 , 0.0 , 0.138425708041 , 0.069212854021 , 0.0 , 0.0 , 0.069212854021 , 0.224941775567 , 0.017303213505 , 0.0 , 0.069212854021 , 0.138425708041 , 0.0 , 0.0 , 0.069212854021 , 0.138425708041 , 0.0 , 0.0 , 0.138425708041 , 0.069212854021 , 0.0 , 0.0 , 0.017303213505 , 0.242244989072 , 0.0 , 0.0 , 0.190335348557 , 0.051909640515 , 0.0 , 0.0 , 0.0 , 0.207638562062 , 0.155728921546 , 0.155728921546 , 0.259548202577 , 0.0 , 0.0 , 0.0 , 0.0 , 0.069212854021 , 0.242244989072 , 0.259548202577 , 0.069212854021 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.028082797815 , 0.168496786891 , 0.168496786891 , 0.028082797815 , 0.0 , 0.0 , 0.0 , 0.0 , 0.140413989075 , 0.224662382521 , 0.224662382521 , 0.126372590168 , 0.0 , 0.0 , 0.0 , 0.042124196723 , 0.224662382521 , 0.224662382521 , 0.11233119126 , 0.210620983613 , 0.042124196723 , 0.0 , 0.0 , 0.084248393445 , 0.224662382521 , 0.084248393445 , 0.0 , 0.182538185798 , 0.11233119126 , 0.0 , 0.0 , 0.11233119126 , 0.224662382521 , 0.05616559563 , 0.0 , 0.210620983613 , 0.11233119126 , 0.0 , 0.0 , 0.070206994538 , 0.224662382521 , 0.11233119126 , 0.168496786891 , 0.224662382521 , 0.084248393445 , 0.0 , 0.0 , 0.0 , 0.210620983613 , 0.224662382521 , 0.224662382521 , 0.210620983613 , 0.028082797815 , 0.0 , 0.0 , 0.0 , 0.042124196723 , 0.182538185798 , 0.168496786891 , 0.042124196723 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.091744835277 , 0.214071282314 , 0.152908058796 , 0.030581611759 , 0.0 , 0.0 , 0.0 , 0.0 , 0.229362088194 , 0.229362088194 , 0.198780476435 , 0.229362088194 , 0.045872417639 , 0.0 , 0.0 , 0.030581611759 , 0.244652894073 , 0.152908058796 , 0.0 , 0.198780476435 , 0.137617252916 , 0.0 , 0.0 , 0.01529080588 , 0.244652894073 , 0.076454029398 , 0.0 , 0.183489670555 , 0.076454029398 , 0.0 , 0.0 , 0.0 , 0.244652894073 , 0.045872417639 , 0.0 , 0.198780476435 , 0.091744835277 , 0.0 , 0.0 , 0.01529080588 , 0.229362088194 , 0.076454029398 , 0.091744835277 , 0.198780476435 , 0.01529080588 , 0.0 , 0.0 , 0.0 , 0.244652894073 , 0.168198864675 , 0.214071282314 , 0.152908058796 , 0.0 , 0.0 , 0.0 , 0.0 , 0.107035641157 , 0.244652894073 , 0.168198864675 , 0.01529080588 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.015174174893 , 0.227612623402 , 0.197264273615 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.015174174893 , 0.242786798296 , 0.242786798296 , 0.075870874467 , 0.0 , 0.0 , 0.0 , 0.0 , 0.106219224254 , 0.242786798296 , 0.242786798296 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.197264273615 , 0.242786798296 , 0.197264273615 , 0.0 , 0.0 , 0.0 , 0.0 , 0.106219224254 , 0.242786798296 , 0.242786798296 , 0.197264273615 , 0.0 , 0.0 , 0.0 , 0.0 , 0.015174174893 , 0.166915923828 , 0.242786798296 , 0.197264273615 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.030348349787 , 0.242786798296 , 0.242786798296 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.015174174893 , 0.212438448509 , 0.242786798296 , 0.04552252468 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.032530002432 , 0.243975018237 , 0.162650012158 , 0.016265001216 , 0.0 , 0.0 , 0.0 , 0.032530002432 , 0.211445015806 , 0.19518001459 , 0.227710017021 , 0.146385010942 , 0.0 , 0.0 , 0.0 , 0.097590007295 , 0.260240019453 , 0.016265001216 , 0.016265001216 , 0.227710017021 , 0.032530002432 , 0.0 , 0.0 , 0.130120009726 , 0.260240019453 , 0.0 , 0.0 , 0.162650012158 , 0.081325006079 , 0.0 , 0.0 , 0.130120009726 , 0.227710017021 , 0.032530002432 , 0.0 , 0.130120009726 , 0.130120009726 , 0.0 , 0.0 , 0.097590007295 , 0.227710017021 , 0.0 , 0.0 , 0.130120009726 , 0.130120009726 , 0.0 , 0.0 , 0.016265001216 , 0.227710017021 , 0.19518001459 , 0.130120009726 , 0.243975018237 , 0.097590007295 , 0.0 , 0.0 , 0.0 , 0.048795003647 , 0.211445015806 , 0.260240019453 , 0.130120009726 , 0.016265001216 , 0.0 }, { 0.0 , 0.0 , 0.141160190075 , 0.235266983458 , 0.078422327819 , 0.0 , 0.0 , 0.0 , 0.0 , 0.047053396692 , 0.235266983458 , 0.235266983458 , 0.250951449022 , 0.062737862256 , 0.0 , 0.0 , 0.0 , 0.156844655639 , 0.219582517894 , 0.0 , 0.141160190075 , 0.219582517894 , 0.0 , 0.0 , 0.0 , 0.125475724511 , 0.188213586767 , 0.0 , 0.0 , 0.188213586767 , 0.078422327819 , 0.0 , 0.0 , 0.125475724511 , 0.125475724511 , 0.0 , 0.0 , 0.156844655639 , 0.125475724511 , 0.0 , 0.0 , 0.078422327819 , 0.219582517894 , 0.0 , 0.0 , 0.188213586767 , 0.125475724511 , 0.0 , 0.0 , 0.0 , 0.250951449022 , 0.109791258947 , 0.188213586767 , 0.250951449022 , 0.062737862256 , 0.0 , 0.0 , 0.0 , 0.141160190075 , 0.250951449022 , 0.235266983458 , 0.109791258947 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 0.02968260886 , 0.237460870878 , 0.237460870878 , 0.02968260886 , 0.0 , 0.0 , 0.0 , 0.0 , 0.05936521772 , 0.237460870878 , 0.237460870878 , 0.02968260886 , 0.0 , 0.0 , 0.01484130443 , 0.05936521772 , 0.178095653159 , 0.237460870878 , 0.178095653159 , 0.0 , 0.0 , 0.0 , 0.103889131009 , 0.237460870878 , 0.237460870878 , 0.237460870878 , 0.178095653159 , 0.0 , 0.0 , 0.0 , 0.0 , 0.04452391329 , 0.148413044299 , 0.237460870878 , 0.207778262018 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.118730435439 , 0.237460870878 , 0.178095653159 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.089047826579 , 0.237460870878 , 0.237460870878 , 0.02968260886 , 0.0 , 0.0 , 0.0 , 0.0 , 0.02968260886 , 0.178095653159 , 0.222619566448 , 0.05936521772 , 0.0 }, { 0.0 , 0.0 , 0.01563645668 , 0.2345468502 , 0.17200102348 , 0.01563645668 , 0.0 , 0.0 , 0.0 , 0.0 , 0.03127291336 , 0.25018330688 , 0.25018330688 , 0.10945519676 , 0.0 , 0.0 , 0.0 , 0.0 , 0.09381874008 , 0.25018330688 , 0.25018330688 , 0.0781822834 , 0.0 , 0.0 , 0.0 , 0.0 , 0.12509165344 , 0.25018330688 , 0.25018330688 , 0.06254582672 , 0.0 , 0.0 , 0.0 , 0.0 , 0.14072811012 , 0.25018330688 , 0.20327393684 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.17200102348 , 0.25018330688 , 0.20327393684 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.17200102348 , 0.25018330688 , 0.17200102348 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.01563645668 , 0.21891039352 , 0.25018330688 , 0.04690937004 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.030682209438 , 0.184093256628 , 0.061364418876 , 0.0 , 0.0 , 0.0 , 0.0 , 0.015341104719 , 0.184093256628 , 0.245457675504 , 0.245457675504 , 0.046023314157 , 0.0 , 0.0 , 0.0 , 0.107387733033 , 0.245457675504 , 0.092046628314 , 0.061364418876 , 0.199434361347 , 0.0 , 0.0 , 0.0 , 0.122728837752 , 0.245457675504 , 0.092046628314 , 0.0 , 0.199434361347 , 0.076705523595 , 0.0 , 0.0 , 0.015341104719 , 0.245457675504 , 0.076705523595 , 0.0 , 0.107387733033 , 0.138069942471 , 0.0 , 0.0 , 0.0 , 0.245457675504 , 0.122728837752 , 0.0 , 0.122728837752 , 0.184093256628 , 0.0 , 0.0 , 0.0 , 0.199434361347 , 0.214775466066 , 0.214775466066 , 0.245457675504 , 0.15341104719 , 0.0 , 0.0 , 0.0 , 0.061364418876 , 0.214775466066 , 0.230116570785 , 0.107387733033 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 0.0 , 0.108128258809 , 0.200809623503 , 0.077234470578 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.231703411734 , 0.24715030585 , 0.123575152925 , 0.0 , 0.0 , 0.0 , 0.015446894116 , 0.200809623503 , 0.24715030585 , 0.24715030585 , 0.046340682347 , 0.0 , 0.0 , 0.0 , 0.185362729387 , 0.24715030585 , 0.24715030585 , 0.24715030585 , 0.0 , 0.0 , 0.0 , 0.123575152925 , 0.24715030585 , 0.046340682347 , 0.24715030585 , 0.200809623503 , 0.0 , 0.0 , 0.0 , 0.030893788231 , 0.046340682347 , 0.0 , 0.24715030585 , 0.185362729387 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.24715030585 , 0.200809623503 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.123575152925 , 0.185362729387 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.049930699897 , 0.233009932855 , 0.116504966427 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.233009932855 , 0.266297066119 , 0.233009932855 , 0.149792099692 , 0.0 , 0.0 , 0.0 , 0.06657426653 , 0.266297066119 , 0.266297066119 , 0.183079232957 , 0.249653499487 , 0.049930699897 , 0.0 , 0.0 , 0.083217833162 , 0.249653499487 , 0.099861399795 , 0.0 , 0.06657426653 , 0.13314853306 , 0.0 , 0.0 , 0.13314853306 , 0.13314853306 , 0.0 , 0.0 , 0.06657426653 , 0.13314853306 , 0.0 , 0.0 , 0.083217833162 , 0.183079232957 , 0.0 , 0.0 , 0.099861399795 , 0.099861399795 , 0.0 , 0.0 , 0.0 , 0.216366366222 , 0.166435666325 , 0.083217833162 , 0.249653499487 , 0.083217833162 , 0.0 , 0.0 , 0.0 , 0.033287133265 , 0.19972279959 , 0.233009932855 , 0.13314853306 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.063532093799 , 0.222362328296 , 0.174713257947 , 0.0 , 0.0 , 0.0 , 0.0 , 0.047649070349 , 0.238245351746 , 0.238245351746 , 0.254128375196 , 0.142947211048 , 0.0 , 0.0 , 0.0 , 0.127064187598 , 0.206479304847 , 0.0 , 0.047649070349 , 0.238245351746 , 0.01588302345 , 0.0 , 0.0 , 0.127064187598 , 0.190596281397 , 0.0 , 0.0 , 0.127064187598 , 0.095298140698 , 0.0 , 0.0 , 0.127064187598 , 0.190596281397 , 0.0 , 0.0 , 0.127064187598 , 0.127064187598 , 0.0 , 0.0 , 0.079415117249 , 0.206479304847 , 0.01588302345 , 0.0 , 0.127064187598 , 0.127064187598 , 0.0 , 0.0 , 0.031766046899 , 0.238245351746 , 0.222362328296 , 0.190596281397 , 0.238245351746 , 0.095298140698 , 0.0 , 0.0 , 0.0 , 0.079415117249 , 0.254128375196 , 0.238245351746 , 0.127064187598 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 0.0 , 0.196906610471 , 0.131271073647 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.049226652618 , 0.262542147295 , 0.262542147295 , 0.0 , 0.0 , 0.0 , 0.0 , 0.016408884206 , 0.213315494677 , 0.262542147295 , 0.180497726265 , 0.0 , 0.0 , 0.0 , 0.049226652618 , 0.246133263089 , 0.262542147295 , 0.262542147295 , 0.131271073647 , 0.0 , 0.0 , 0.0 , 0.0 , 0.049226652618 , 0.114862189441 , 0.262542147295 , 0.131271073647 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.065635536824 , 0.262542147295 , 0.131271073647 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.065635536824 , 0.262542147295 , 0.229724378883 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.229724378883 , 0.246133263089 , 0.08204442103 , 0.0 }, { 0.0 , 0.0 , 0.046743944617 , 0.186975778467 , 0.171394463595 , 0.015581314872 , 0.0 , 0.0 , 0.0 , 0.015581314872 , 0.218138408212 , 0.218138408212 , 0.233719723084 , 0.124650518978 , 0.0 , 0.0 , 0.0 , 0.046743944617 , 0.249301037956 , 0.031162629745 , 0.077906574361 , 0.249301037956 , 0.015581314872 , 0.0 , 0.0 , 0.062325259489 , 0.249301037956 , 0.0 , 0.0 , 0.218138408212 , 0.093487889234 , 0.0 , 0.0 , 0.062325259489 , 0.249301037956 , 0.0 , 0.0 , 0.171394463595 , 0.124650518978 , 0.0 , 0.0 , 0.046743944617 , 0.249301037956 , 0.031162629745 , 0.0 , 0.155813148723 , 0.124650518978 , 0.0 , 0.0 , 0.0 , 0.155813148723 , 0.233719723084 , 0.20255709334 , 0.249301037956 , 0.046743944617 , 0.0 , 0.0 , 0.0 , 0.015581314872 , 0.233719723084 , 0.218138408212 , 0.093487889234 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 0.0 , 0.080972323531 , 0.242916970594 , 0.12955571765 , 0.0 , 0.0 , 0.0 , 0.0 , 0.032388929413 , 0.242916970594 , 0.259111435301 , 0.145750182357 , 0.0 , 0.0 , 0.0 , 0.048583394119 , 0.242916970594 , 0.259111435301 , 0.259111435301 , 0.161944647063 , 0.0 , 0.0 , 0.113361252944 , 0.259111435301 , 0.161944647063 , 0.12955571765 , 0.259111435301 , 0.113361252944 , 0.0 , 0.0 , 0.0 , 0.016194464706 , 0.0 , 0.12955571765 , 0.259111435301 , 0.064777858825 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.178139111769 , 0.259111435301 , 0.016194464706 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.145750182357 , 0.259111435301 , 0.016194464706 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.12955571765 , 0.226722505888 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 0.01483313865 , 0.237330218395 , 0.163164525146 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.01483313865 , 0.237330218395 , 0.237330218395 , 0.059332554599 , 0.0 , 0.0 , 0.0 , 0.0 , 0.118665109197 , 0.237330218395 , 0.237330218395 , 0.0 , 0.0 , 0.0 , 0.0 , 0.148331386497 , 0.237330218395 , 0.237330218395 , 0.237330218395 , 0.01483313865 , 0.0 , 0.0 , 0.088998831898 , 0.237330218395 , 0.207663941095 , 0.237330218395 , 0.222497079745 , 0.0 , 0.0 , 0.0 , 0.01483313865 , 0.044499415949 , 0.074165693248 , 0.237330218395 , 0.177997663796 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.059332554599 , 0.237330218395 , 0.177997663796 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.029666277299 , 0.222497079745 , 0.177997663796 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 0.057940597882 , 0.188306943116 , 0.188306943116 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.144851494705 , 0.231762391528 , 0.231762391528 , 0.01448514947 , 0.0 , 0.0 , 0.0 , 0.043455448411 , 0.202792092587 , 0.231762391528 , 0.188306943116 , 0.0 , 0.0 , 0.0 , 0.0 , 0.115881195764 , 0.231762391528 , 0.231762391528 , 0.072425747352 , 0.0 , 0.0 , 0.0 , 0.043455448411 , 0.217277242057 , 0.231762391528 , 0.231762391528 , 0.057940597882 , 0.0 , 0.0 , 0.0 , 0.057940597882 , 0.231762391528 , 0.231762391528 , 0.231762391528 , 0.086910896823 , 0.0 , 0.0 , 0.0 , 0.028970298941 , 0.115881195764 , 0.217277242057 , 0.231762391528 , 0.130366345234 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.057940597882 , 0.202792092587 , 0.173821793646 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.159923255252 , 0.239884882878 , 0.095953953151 , 0.0 , 0.0 , 0.0 , 0.0 , 0.03198465105 , 0.255877208403 , 0.223892557353 , 0.255877208403 , 0.111946278676 , 0.0 , 0.0 , 0.0 , 0.063969302101 , 0.255877208403 , 0.127938604201 , 0.079961627626 , 0.255877208403 , 0.015992325525 , 0.0 , 0.0 , 0.079961627626 , 0.191907906302 , 0.0 , 0.0 , 0.191907906302 , 0.127938604201 , 0.0 , 0.0 , 0.127938604201 , 0.143930929727 , 0.0 , 0.0 , 0.191907906302 , 0.127938604201 , 0.0 , 0.0 , 0.079961627626 , 0.191907906302 , 0.0 , 0.015992325525 , 0.239884882878 , 0.047976976576 , 0.0 , 0.0 , 0.063969302101 , 0.207900231827 , 0.063969302101 , 0.191907906302 , 0.207900231827 , 0.0 , 0.0 , 0.0 , 0.0 , 0.143930929727 , 0.255877208403 , 0.207900231827 , 0.063969302101 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 0.0 , 0.207452311259 , 0.086438463024 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.03457538521 , 0.276603081678 , 0.207452311259 , 0.0 , 0.0 , 0.0 , 0.0 , 0.017287692605 , 0.207452311259 , 0.276603081678 , 0.190164618654 , 0.0 , 0.0 , 0.0 , 0.03457538521 , 0.207452311259 , 0.276603081678 , 0.276603081678 , 0.172876926049 , 0.0 , 0.0 , 0.0 , 0.103726155629 , 0.190164618654 , 0.086438463024 , 0.259315389073 , 0.103726155629 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.017287692605 , 0.276603081678 , 0.155589233444 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.03457538521 , 0.276603081678 , 0.190164618654 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.051863077815 , 0.276603081678 , 0.138301540839 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.083764903626 , 0.184282787977 , 0.067011922901 , 0.016752980725 , 0.0 , 0.0 , 0.0 , 0.0 , 0.251294710877 , 0.268047691602 , 0.268047691602 , 0.184282787977 , 0.0 , 0.0 , 0.0 , 0.03350596145 , 0.268047691602 , 0.150776826526 , 0.03350596145 , 0.201035768702 , 0.067011922901 , 0.0 , 0.0 , 0.100517884351 , 0.217788749427 , 0.0 , 0.0 , 0.100517884351 , 0.100517884351 , 0.0 , 0.0 , 0.050258942175 , 0.217788749427 , 0.0 , 0.0 , 0.083764903626 , 0.150776826526 , 0.0 , 0.0 , 0.050258942175 , 0.268047691602 , 0.0 , 0.0 , 0.100517884351 , 0.134023845801 , 0.0 , 0.0 , 0.0 , 0.217788749427 , 0.201035768702 , 0.134023845801 , 0.268047691602 , 0.117270865076 , 0.0 , 0.0 , 0.0 , 0.067011922901 , 0.217788749427 , 0.201035768702 , 0.167529807251 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 0.0 , 0.192772638937 , 0.208837025515 , 0.016064386578 , 0.0 , 0.0 , 0.0 , 0.0 , 0.128515092624 , 0.257030185249 , 0.240965798671 , 0.032128773156 , 0.0 , 0.0 , 0.0 , 0.16064386578 , 0.257030185249 , 0.257030185249 , 0.192772638937 , 0.0 , 0.0 , 0.0 , 0.064257546312 , 0.257030185249 , 0.257030185249 , 0.257030185249 , 0.208837025515 , 0.0 , 0.0 , 0.0 , 0.064257546312 , 0.112450706046 , 0.064257546312 , 0.257030185249 , 0.096386319468 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.016064386578 , 0.257030185249 , 0.128515092624 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.016064386578 , 0.257030185249 , 0.128515092624 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.192772638937 , 0.192772638937 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.087065215375 , 0.1393043446 , 0.191543473825 , 0.087065215375 , 0.0 , 0.0 , 0.0 , 0.0 , 0.226369559975 , 0.2786086892 , 0.2089565169 , 0.2089565169 , 0.0 , 0.0 , 0.0 , 0.017413043075 , 0.2786086892 , 0.156717387675 , 0.0 , 0.156717387675 , 0.052239129225 , 0.0 , 0.0 , 0.052239129225 , 0.2786086892 , 0.10447825845 , 0.0 , 0.10447825845 , 0.10447825845 , 0.0 , 0.0 , 0.052239129225 , 0.191543473825 , 0.017413043075 , 0.0 , 0.087065215375 , 0.10447825845 , 0.0 , 0.0 , 0.0 , 0.2089565169 , 0.0 , 0.0 , 0.191543473825 , 0.10447825845 , 0.0 , 0.0 , 0.0 , 0.24378260305 , 0.087065215375 , 0.2089565169 , 0.261195646125 , 0.017413043075 , 0.0 , 0.0 , 0.0 , 0.10447825845 , 0.2786086892 , 0.226369559975 , 0.03482608615 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 0.194550620685 , 0.224481485406 , 0.119723458883 , 0.0 , 0.0 , 0.0 , 0.0 , 0.01496543236 , 0.239446917766 , 0.239446917766 , 0.149654323604 , 0.0 , 0.0 , 0.0 , 0.0 , 0.01496543236 , 0.239446917766 , 0.239446917766 , 0.119723458883 , 0.0 , 0.0 , 0.0 , 0.0 , 0.059861729442 , 0.239446917766 , 0.239446917766 , 0.029930864721 , 0.0 , 0.0 , 0.0 , 0.0 , 0.164619755964 , 0.239446917766 , 0.209516053045 , 0.0 , 0.0 , 0.0 , 0.0 , 0.029930864721 , 0.239446917766 , 0.239446917766 , 0.149654323604 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.194550620685 , 0.239446917766 , 0.224481485406 , 0.029930864721 , 0.0 , 0.0 , 0.0 , 0.0 , 0.01496543236 , 0.194550620685 , 0.239446917766 , 0.059861729442 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 0.0 , 0.102180405494 , 0.170300675823 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.238420946152 , 0.255451013734 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.170300675823 , 0.272481081316 , 0.272481081316 , 0.0 , 0.0 , 0.0 , 0.0 , 0.119210473076 , 0.272481081316 , 0.272481081316 , 0.255451013734 , 0.0 , 0.0 , 0.0 , 0.051090202747 , 0.255451013734 , 0.119210473076 , 0.255451013734 , 0.170300675823 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.221390878569 , 0.187330743405 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.255451013734 , 0.15327060824 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.136240540658 , 0.255451013734 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 0.0 , 0.113465452135 , 0.243140254575 , 0.016209350305 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.178302853355 , 0.25934960488 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.25934960488 , 0.22693090427 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.16209350305 , 0.25934960488 , 0.243140254575 , 0.0 , 0.0 , 0.0 , 0.0 , 0.19451220366 , 0.25934960488 , 0.25934960488 , 0.178302853355 , 0.0 , 0.0 , 0.0 , 0.081046751525 , 0.25934960488 , 0.09725610183 , 0.243140254575 , 0.19451220366 , 0.0 , 0.0 , 0.0 , 0.0 , 0.016209350305 , 0.0 , 0.19451220366 , 0.25934960488 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.06483740122 , 0.243140254575 , 0.06483740122 , 0.0 }, { 0.0 , 0.0 , 0.0 , 0.09715664862 , 0.222072339702 , 0.222072339702 , 0.09715664862 , 0.0 , 0.0 , 0.0 , 0.0 , 0.19431329724 , 0.222072339702 , 0.222072339702 , 0.055518084926 , 0.0 , 0.0 , 0.027759042463 , 0.180433776008 , 0.222072339702 , 0.222072339702 , 0.166554254777 , 0.0 , 0.0 , 0.0 , 0.09715664862 , 0.222072339702 , 0.222072339702 , 0.222072339702 , 0.166554254777 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.138795212314 , 0.222072339702 , 0.111036169851 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.152674733545 , 0.222072339702 , 0.180433776008 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.138795212314 , 0.222072339702 , 0.222072339702 , 0.027759042463 , 0.0 , 0.0 , 0.0 , 0.0 , 0.124915691083 , 0.222072339702 , 0.166554254777 , 0.027759042463 , 0.0 }, { 0.0 , 0.0 , 0.0 , 0.184965948206 , 0.200379777223 , 0.077069145086 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.169552119189 , 0.246621264275 , 0.138724461154 , 0.0 , 0.0 , 0.0 , 0.0 , 0.046241487051 , 0.231207435257 , 0.246621264275 , 0.092482974103 , 0.0 , 0.0 , 0.0 , 0.10789680312 , 0.231207435257 , 0.246621264275 , 0.246621264275 , 0.030827658034 , 0.0 , 0.0 , 0.0 , 0.0 , 0.015413829017 , 0.246621264275 , 0.246621264275 , 0.046241487051 , 0.0 , 0.0 , 0.0 , 0.0 , 0.015413829017 , 0.246621264275 , 0.246621264275 , 0.092482974103 , 0.0 , 0.0 , 0.0 , 0.0 , 0.015413829017 , 0.246621264275 , 0.246621264275 , 0.092482974103 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.169552119189 , 0.246621264275 , 0.154138290172 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 0.090494546611 , 0.241318790963 , 0.090494546611 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.196071517657 , 0.241318790963 , 0.150824244352 , 0.0 , 0.0 , 0.0 , 0.0 , 0.135741819917 , 0.241318790963 , 0.241318790963 , 0.090494546611 , 0.0 , 0.0 , 0.0 , 0.045247273306 , 0.241318790963 , 0.241318790963 , 0.241318790963 , 0.060329697741 , 0.0 , 0.0 , 0.0 , 0.075412122176 , 0.241318790963 , 0.241318790963 , 0.241318790963 , 0.090494546611 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.135741819917 , 0.241318790963 , 0.150824244352 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.120659395481 , 0.241318790963 , 0.226236366528 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.060329697741 , 0.196071517657 , 0.165906668787 , 0.03016484887 , 0.0 }, { 0.0 , 0.0 , 0.0 , 0.079839206078 , 0.255485459449 , 0.14371057094 , 0.0 , 0.0 , 0.0 , 0.0 , 0.015967841216 , 0.207581935802 , 0.255485459449 , 0.095807047293 , 0.0 , 0.0 , 0.0 , 0.0 , 0.207581935802 , 0.255485459449 , 0.255485459449 , 0.063871364862 , 0.0 , 0.0 , 0.0 , 0.079839206078 , 0.239517618233 , 0.255485459449 , 0.255485459449 , 0.079839206078 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.159678412156 , 0.255485459449 , 0.111774888509 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.14371057094 , 0.255485459449 , 0.127742729724 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.14371057094 , 0.255485459449 , 0.207581935802 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.079839206078 , 0.223549777018 , 0.14371057094 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.036742116504 , 0.238823757278 , 0.183710582521 , 0.055113174756 , 0.0 , 0.0 , 0.0 , 0.0 , 0.183710582521 , 0.275565873782 , 0.220452699025 , 0.238823757278 , 0.018371058252 , 0.0 , 0.0 , 0.0 , 0.293936932034 , 0.073484233008 , 0.0 , 0.110226349513 , 0.073484233008 , 0.0 , 0.0 , 0.036742116504 , 0.293936932034 , 0.055113174756 , 0.0 , 0.018371058252 , 0.128597407765 , 0.0 , 0.0 , 0.091855291261 , 0.238823757278 , 0.091855291261 , 0.0 , 0.036742116504 , 0.146968466017 , 0.0 , 0.0 , 0.073484233008 , 0.220452699025 , 0.0 , 0.0 , 0.055113174756 , 0.146968466017 , 0.0 , 0.0 , 0.0 , 0.238823757278 , 0.091855291261 , 0.110226349513 , 0.238823757278 , 0.091855291261 , 0.0 , 0.0 , 0.0 , 0.091855291261 , 0.25719481553 , 0.238823757278 , 0.146968466017 , 0.018371058252 , 0.0 }, { 0.0 , 0.0 , 0.0 , 0.0 , 0.176344561204 , 0.19237588495 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.048093971237 , 0.240469856187 , 0.224438532442 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.176344561204 , 0.256501179933 , 0.176344561204 , 0.0 , 0.0 , 0.0 , 0.0 , 0.144281913712 , 0.256501179933 , 0.256501179933 , 0.160313237458 , 0.0 , 0.0 , 0.0 , 0.064125294983 , 0.256501179933 , 0.19237588495 , 0.256501179933 , 0.19237588495 , 0.0 , 0.0 , 0.0 , 0.048093971237 , 0.160313237458 , 0.048093971237 , 0.256501179933 , 0.176344561204 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.256501179933 , 0.224438532442 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.176344561204 , 0.176344561204 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 0.017254206765 , 0.276067308239 , 0.086271033825 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.086271033825 , 0.276067308239 , 0.189796274414 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.207050481179 , 0.276067308239 , 0.189796274414 , 0.0 , 0.0 , 0.0 , 0.120779447354 , 0.207050481179 , 0.276067308239 , 0.276067308239 , 0.120779447354 , 0.0 , 0.0 , 0.0 , 0.06901682706 , 0.138033654119 , 0.207050481179 , 0.276067308239 , 0.06901682706 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.155287860884 , 0.276067308239 , 0.03450841353 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.172542067649 , 0.276067308239 , 0.03450841353 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.051762620295 , 0.224304687944 , 0.086271033825 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 0.0 , 0.212340685757 , 0.197173493917 , 0.01516719184 , 0.0 , 0.0 , 0.0 , 0.0 , 0.075835959199 , 0.242675069436 , 0.242675069436 , 0.03033438368 , 0.0 , 0.0 , 0.0 , 0.0 , 0.212340685757 , 0.242675069436 , 0.182006302077 , 0.0 , 0.0 , 0.0 , 0.01516719184 , 0.151671918398 , 0.242675069436 , 0.242675069436 , 0.182006302077 , 0.0 , 0.0 , 0.0 , 0.045501575519 , 0.182006302077 , 0.212340685757 , 0.242675069436 , 0.136504726558 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.075835959199 , 0.242675069436 , 0.227507877597 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.060668767359 , 0.242675069436 , 0.212340685757 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.01516719184 , 0.197173493917 , 0.242675069436 , 0.01516719184 , 0.0 }, { 0.0 , 0.0 , 0.048957167616 , 0.261104893952 , 0.179509614592 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.261104893952 , 0.261104893952 , 0.097914335232 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.212147726336 , 0.261104893952 , 0.114233391104 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.179509614592 , 0.261104893952 , 0.16319055872 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.195828670464 , 0.261104893952 , 0.097914335232 , 0.0 , 0.0 , 0.0 , 0.0 , 0.048957167616 , 0.261104893952 , 0.261104893952 , 0.032638111744 , 0.0 , 0.0 , 0.0 , 0.0 , 0.08159527936 , 0.261104893952 , 0.24478583808 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.048957167616 , 0.212147726336 , 0.24478583808 , 0.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 0.017142297404 , 0.205707568842 , 0.137138379228 , 0.017142297404 , 0.0 , 0.0 , 0.0 , 0.0 , 0.068569189614 , 0.274276758456 , 0.274276758456 , 0.017142297404 , 0.0 , 0.0 , 0.0 , 0.017142297404 , 0.222849866246 , 0.274276758456 , 0.188565271439 , 0.0 , 0.0 , 0.0 , 0.017142297404 , 0.188565271439 , 0.274276758456 , 0.274276758456 , 0.205707568842 , 0.0 , 0.0 , 0.0 , 0.034284594807 , 0.205707568842 , 0.137138379228 , 0.274276758456 , 0.171422974035 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.257134461053 , 0.137138379228 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.068569189614 , 0.274276758456 , 0.068569189614 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.051426892211 , 0.222849866246 , 0.068569189614 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 0.0 , 0.08808607043 , 0.246640997205 , 0.052851642258 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.158554926775 , 0.281875425377 , 0.140937712688 , 0.0 , 0.0 , 0.0 , 0.0 , 0.158554926775 , 0.281875425377 , 0.281875425377 , 0.08808607043 , 0.0 , 0.0 , 0.017617214086 , 0.229023783119 , 0.264258211291 , 0.211406569033 , 0.281875425377 , 0.017617214086 , 0.0 , 0.0 , 0.070468856344 , 0.211406569033 , 0.052851642258 , 0.176172140861 , 0.264258211291 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.193789354947 , 0.211406569033 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.140937712688 , 0.211406569033 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.08808607043 , 0.229023783119 , 0.070468856344 , 0.0 }, { 0.0 , 0.0 , 0.015815342631 , 0.221414796832 , 0.110707398416 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.094892055785 , 0.253045482094 , 0.253045482094 , 0.015815342631 , 0.0 , 0.0 , 0.0 , 0.0 , 0.110707398416 , 0.253045482094 , 0.237230139463 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.094892055785 , 0.253045482094 , 0.237230139463 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.094892055785 , 0.253045482094 , 0.237230139463 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.063261370523 , 0.253045482094 , 0.253045482094 , 0.015815342631 , 0.0 , 0.0 , 0.0 , 0.0 , 0.063261370523 , 0.253045482094 , 0.253045482094 , 0.094892055785 , 0.0 , 0.0 , 0.0 , 0.0 , 0.015815342631 , 0.237230139463 , 0.253045482094 , 0.126522741047 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 0.0 , 0.165976532577 , 0.182574185835 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.265562452124 , 0.215769492351 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.116183572804 , 0.265562452124 , 0.14937887932 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.215769492351 , 0.265562452124 , 0.049792959773 , 0.0 , 0.0 , 0.0 , 0.0 , 0.165976532577 , 0.265562452124 , 0.265562452124 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.248964798866 , 0.265562452124 , 0.265562452124 , 0.066390613031 , 0.0 , 0.0 , 0.0 , 0.049792959773 , 0.199171839093 , 0.099585919546 , 0.265562452124 , 0.099585919546 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.165976532577 , 0.215769492351 , 0.116183572804 , 0.0 }, { 0.0 , 0.0 , 0.0 , 0.173925271309 , 0.252982212813 , 0.079056941504 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.158113883008 , 0.252982212813 , 0.079056941504 , 0.0 , 0.0 , 0.0 , 0.0 , 0.063245553203 , 0.252982212813 , 0.252982212813 , 0.079056941504 , 0.0 , 0.0 , 0.0 , 0.173925271309 , 0.252982212813 , 0.252982212813 , 0.252982212813 , 0.047434164903 , 0.0 , 0.0 , 0.0 , 0.079056941504 , 0.126491106407 , 0.221359436212 , 0.252982212813 , 0.031622776602 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.221359436212 , 0.252982212813 , 0.031622776602 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.173925271309 , 0.252982212813 , 0.031622776602 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.126491106407 , 0.252982212813 , 0.126491106407 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.033686076843 , 0.25264557632 , 0.218959499477 , 0.050529115264 , 0.0 , 0.0 , 0.0 , 0.0 , 0.168430384213 , 0.25264557632 , 0.185273422635 , 0.25264557632 , 0.0 , 0.0 , 0.0 , 0.050529115264 , 0.269488614741 , 0.101058230528 , 0.0 , 0.168430384213 , 0.0 , 0.0 , 0.0 , 0.067372153685 , 0.269488614741 , 0.134744307371 , 0.0 , 0.050529115264 , 0.134744307371 , 0.0 , 0.0 , 0.134744307371 , 0.235802537899 , 0.050529115264 , 0.0 , 0.067372153685 , 0.134744307371 , 0.0 , 0.0 , 0.050529115264 , 0.25264557632 , 0.016843038421 , 0.0 , 0.050529115264 , 0.117901268949 , 0.0 , 0.0 , 0.0 , 0.235802537899 , 0.185273422635 , 0.101058230528 , 0.235802537899 , 0.084215192107 , 0.0 , 0.0 , 0.0 , 0.067372153685 , 0.202116461056 , 0.25264557632 , 0.101058230528 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.033903175181 , 0.203419051086 , 0.254273813858 , 0.203419051086 , 0.016951587591 , 0.0 , 0.0 , 0.016951587591 , 0.237322226267 , 0.237322226267 , 0.237322226267 , 0.186467463496 , 0.135612700724 , 0.0 , 0.0 , 0.084757937953 , 0.271225401448 , 0.050854762772 , 0.0 , 0.033903175181 , 0.135612700724 , 0.0 , 0.0 , 0.135612700724 , 0.237322226267 , 0.0 , 0.0 , 0.101709525543 , 0.135612700724 , 0.0 , 0.0 , 0.067806350362 , 0.203419051086 , 0.0 , 0.0 , 0.152564288315 , 0.067806350362 , 0.0 , 0.0 , 0.016951587591 , 0.271225401448 , 0.016951587591 , 0.016951587591 , 0.237322226267 , 0.016951587591 , 0.0 , 0.0 , 0.0 , 0.186467463496 , 0.152564288315 , 0.186467463496 , 0.135612700724 , 0.0 , 0.0 , 0.0 , 0.0 , 0.033903175181 , 0.220370638677 , 0.237322226267 , 0.016951587591 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.036043350176 , 0.216260101056 , 0.162195075792 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.198238425968 , 0.27032512632 , 0.216260101056 , 0.09010837544 , 0.0 , 0.0 , 0.0 , 0.0 , 0.27032512632 , 0.09010837544 , 0.0 , 0.252303451232 , 0.0 , 0.0 , 0.0 , 0.036043350176 , 0.27032512632 , 0.018021675088 , 0.0 , 0.162195075792 , 0.126151725616 , 0.0 , 0.0 , 0.072086700352 , 0.18021675088 , 0.0 , 0.0 , 0.126151725616 , 0.144173400704 , 0.0 , 0.0 , 0.0 , 0.216260101056 , 0.0 , 0.0 , 0.144173400704 , 0.18021675088 , 0.0 , 0.0 , 0.036043350176 , 0.27032512632 , 0.09010837544 , 0.18021675088 , 0.288346801408 , 0.018021675088 , 0.0 , 0.0 , 0.0 , 0.09010837544 , 0.252303451232 , 0.216260101056 , 0.072086700352 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.067786874173 , 0.254200778149 , 0.203360622519 , 0.033893437087 , 0.0 , 0.0 , 0.0 , 0.033893437087 , 0.254200778149 , 0.118627029803 , 0.186413903976 , 0.169467185433 , 0.0 , 0.0 , 0.0 , 0.067786874173 , 0.271147496693 , 0.0 , 0.0 , 0.254200778149 , 0.016946718543 , 0.0 , 0.0 , 0.10168031126 , 0.169467185433 , 0.0 , 0.0 , 0.169467185433 , 0.135573748346 , 0.0 , 0.0 , 0.135573748346 , 0.135573748346 , 0.0 , 0.0 , 0.10168031126 , 0.135573748346 , 0.0 , 0.0 , 0.084733592716 , 0.203360622519 , 0.0 , 0.0 , 0.186413903976 , 0.135573748346 , 0.0 , 0.0 , 0.033893437087 , 0.271147496693 , 0.118627029803 , 0.135573748346 , 0.271147496693 , 0.033893437087 , 0.0 , 0.0 , 0.0 , 0.10168031126 , 0.254200778149 , 0.271147496693 , 0.135573748346 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.017002967277 , 0.255044509151 , 0.221038574597 , 0.017002967277 , 0.0 , 0.0 , 0.0 , 0.0 , 0.119020770937 , 0.272047476427 , 0.238041541874 , 0.136023738214 , 0.0 , 0.0 , 0.0 , 0.136023738214 , 0.20403560732 , 0.15302670549 , 0.034005934553 , 0.221038574597 , 0.034005934553 , 0.0 , 0.0 , 0.119020770937 , 0.15302670549 , 0.017002967277 , 0.0 , 0.10201780366 , 0.10201780366 , 0.0 , 0.0 , 0.085014836384 , 0.15302670549 , 0.0 , 0.0 , 0.05100890183 , 0.15302670549 , 0.0 , 0.0 , 0.0 , 0.255044509151 , 0.034005934553 , 0.0 , 0.136023738214 , 0.20403560732 , 0.0 , 0.0 , 0.0 , 0.15302670549 , 0.255044509151 , 0.221038574597 , 0.272047476427 , 0.10201780366 , 0.0 , 0.0 , 0.0 , 0.0 , 0.221038574597 , 0.238041541874 , 0.136023738214 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.015649854711 , 0.187798256536 , 0.078249273557 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.140848692402 , 0.250397675381 , 0.219097965959 , 0.046949564134 , 0.0 , 0.0 , 0.0 , 0.031299709423 , 0.250397675381 , 0.219097965959 , 0.172148401825 , 0.203448111247 , 0.0 , 0.0 , 0.0 , 0.031299709423 , 0.250397675381 , 0.156498547113 , 0.0 , 0.219097965959 , 0.062599418845 , 0.0 , 0.0 , 0.062599418845 , 0.250397675381 , 0.0 , 0.0 , 0.187798256536 , 0.062599418845 , 0.0 , 0.0 , 0.062599418845 , 0.250397675381 , 0.046949564134 , 0.0 , 0.172148401825 , 0.156498547113 , 0.0 , 0.0 , 0.0 , 0.203448111247 , 0.187798256536 , 0.125198837691 , 0.219097965959 , 0.093899128268 , 0.0 , 0.0 , 0.0 , 0.046949564134 , 0.156498547113 , 0.250397675381 , 0.187798256536 , 0.015649854711 , 0.0 }, { 0.0 , 0.0 , 0.060585201524 , 0.196901904954 , 0.181755604573 , 0.015146300381 , 0.0 , 0.0 , 0.0 , 0.030292600762 , 0.227194505716 , 0.212048205335 , 0.242340806097 , 0.196901904954 , 0.0 , 0.0 , 0.0 , 0.090877802286 , 0.242340806097 , 0.060585201524 , 0.090877802286 , 0.242340806097 , 0.075731501905 , 0.0 , 0.0 , 0.121170403048 , 0.227194505716 , 0.015146300381 , 0.0 , 0.181755604573 , 0.121170403048 , 0.0 , 0.0 , 0.121170403048 , 0.181755604573 , 0.0 , 0.0 , 0.181755604573 , 0.121170403048 , 0.0 , 0.0 , 0.075731501905 , 0.196901904954 , 0.0 , 0.015146300381 , 0.196901904954 , 0.121170403048 , 0.0 , 0.0 , 0.015146300381 , 0.227194505716 , 0.15146300381 , 0.181755604573 , 0.242340806097 , 0.045438901143 , 0.0 , 0.0 , 0.0 , 0.090877802286 , 0.242340806097 , 0.196901904954 , 0.060585201524 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.086665757216 , 0.21666439304 , 0.21666439304 , 0.043332878608 , 0.0 , 0.0 , 0.0 , 0.043332878608 , 0.231108685909 , 0.202220100171 , 0.202220100171 , 0.187775807301 , 0.0 , 0.0 , 0.0 , 0.086665757216 , 0.21666439304 , 0.028888585739 , 0.014444292869 , 0.202220100171 , 0.072221464347 , 0.0 , 0.0 , 0.115554342955 , 0.202220100171 , 0.028888585739 , 0.0 , 0.129998635824 , 0.115554342955 , 0.0 , 0.0 , 0.115554342955 , 0.231108685909 , 0.057777171477 , 0.0 , 0.115554342955 , 0.115554342955 , 0.0 , 0.0 , 0.072221464347 , 0.231108685909 , 0.086665757216 , 0.0 , 0.158887221563 , 0.129998635824 , 0.0 , 0.0 , 0.014444292869 , 0.231108685909 , 0.231108685909 , 0.202220100171 , 0.231108685909 , 0.129998635824 , 0.0 , 0.0 , 0.0 , 0.072221464347 , 0.202220100171 , 0.21666439304 , 0.144442928693 , 0.014444292869 , 0.0 }, { 0.0 , 0.0 , 0.0 , 0.068167735394 , 0.204503206181 , 0.177236112023 , 0.013633547079 , 0.0 , 0.0 , 0.0 , 0.027267094157 , 0.190869659102 , 0.21813675326 , 0.21813675326 , 0.054534188315 , 0.0 , 0.0 , 0.0 , 0.10906837663 , 0.21813675326 , 0.21813675326 , 0.21813675326 , 0.054534188315 , 0.0 , 0.0 , 0.081801282472 , 0.204503206181 , 0.21813675326 , 0.21813675326 , 0.21813675326 , 0.013633547079 , 0.0 , 0.0 , 0.040900641236 , 0.095434829551 , 0.136335470787 , 0.21813675326 , 0.21813675326 , 0.054534188315 , 0.0 , 0.0 , 0.0 , 0.0 , 0.149969017866 , 0.21813675326 , 0.21813675326 , 0.013633547079 , 0.0 , 0.0 , 0.0 , 0.0 , 0.163602564945 , 0.21813675326 , 0.21813675326 , 0.013633547079 , 0.0 , 0.0 , 0.0 , 0.0 , 0.081801282472 , 0.190869659102 , 0.163602564945 , 0.013633547079 , 0.0 }, { 0.0 , 0.0 , 0.0 , 0.0 , 0.048698475356 , 0.243492376779 , 0.097396950712 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.178561076304 , 0.259725201897 , 0.11362977583 , 0.0 , 0.0 , 0.0 , 0.0 , 0.146095426067 , 0.259725201897 , 0.259725201897 , 0.064931300474 , 0.0 , 0.0 , 0.0 , 0.162328251186 , 0.259725201897 , 0.259725201897 , 0.259725201897 , 0.064931300474 , 0.0 , 0.0 , 0.064931300474 , 0.259725201897 , 0.11362977583 , 0.129862600949 , 0.259725201897 , 0.064931300474 , 0.0 , 0.0 , 0.016232825119 , 0.064931300474 , 0.0 , 0.162328251186 , 0.259725201897 , 0.032465650237 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.11362977583 , 0.259725201897 , 0.016232825119 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.048698475356 , 0.259725201897 , 0.016232825119 , 0.0 }, { 0.0 , 0.0 , 0.0 , 0.014821729168 , 0.177860750019 , 0.103752104178 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.133395562514 , 0.237147666692 , 0.237147666692 , 0.014821729168 , 0.0 , 0.0 , 0.014821729168 , 0.103752104178 , 0.222325937523 , 0.237147666692 , 0.207504208355 , 0.0 , 0.0 , 0.0 , 0.059286916673 , 0.237147666692 , 0.237147666692 , 0.237147666692 , 0.237147666692 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.044465187505 , 0.237147666692 , 0.237147666692 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.029643458336 , 0.237147666692 , 0.237147666692 , 0.044465187505 , 0.0 , 0.0 , 0.0 , 0.0 , 0.088930375009 , 0.237147666692 , 0.237147666692 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.044465187505 , 0.222325937523 , 0.192682479187 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.034752402343 , 0.260643017571 , 0.139009609371 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.1216334082 , 0.2432668164 , 0.260643017571 , 0.139009609371 , 0.0 , 0.0 , 0.0 , 0.1216334082 , 0.260643017571 , 0.052128603514 , 0.052128603514 , 0.260643017571 , 0.0 , 0.0 , 0.0 , 0.104257207029 , 0.278019218743 , 0.017376201171 , 0.0 , 0.156385810543 , 0.139009609371 , 0.0 , 0.0 , 0.069504804686 , 0.208514414057 , 0.0 , 0.0 , 0.139009609371 , 0.139009609371 , 0.0 , 0.0 , 0.0 , 0.208514414057 , 0.052128603514 , 0.0 , 0.208514414057 , 0.1216334082 , 0.0 , 0.0 , 0.0 , 0.156385810543 , 0.225890615228 , 0.225890615228 , 0.260643017571 , 0.017376201171 , 0.0 , 0.0 , 0.0 , 0.017376201171 , 0.156385810543 , 0.208514414057 , 0.086881005857 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.061640672839 , 0.215742354938 , 0.138691513889 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.200332186728 , 0.246562691357 , 0.246562691357 , 0.154101682098 , 0.0 , 0.0 , 0.0 , 0.061640672839 , 0.246562691357 , 0.061640672839 , 0.077050841049 , 0.246562691357 , 0.092461009259 , 0.0 , 0.0 , 0.123281345679 , 0.215742354938 , 0.0 , 0.01541016821 , 0.231152523148 , 0.077050841049 , 0.0 , 0.0 , 0.092461009259 , 0.246562691357 , 0.0 , 0.0 , 0.200332186728 , 0.061640672839 , 0.0 , 0.0 , 0.061640672839 , 0.231152523148 , 0.01541016821 , 0.107871177469 , 0.246562691357 , 0.01541016821 , 0.0 , 0.0 , 0.03082033642 , 0.231152523148 , 0.215742354938 , 0.246562691357 , 0.107871177469 , 0.0 , 0.0 , 0.0 , 0.0 , 0.061640672839 , 0.200332186728 , 0.138691513889 , 0.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.102356247334 , 0.175467852573 , 0.13160088943 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.175467852573 , 0.233957136765 , 0.233957136765 , 0.014622321048 , 0.0 , 0.0 , 0.0 , 0.0 , 0.160845531526 , 0.233957136765 , 0.233957136765 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.175467852573 , 0.233957136765 , 0.233957136765 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.190090173621 , 0.233957136765 , 0.233957136765 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.190090173621 , 0.233957136765 , 0.233957136765 , 0.0 , 0.0 , 0.0 , 0.0 , 0.014622321048 , 0.204712494669 , 0.233957136765 , 0.233957136765 , 0.014622321048 , 0.0 , 0.0 , 0.0 , 0.0 , 0.058489284191 , 0.175467852573 , 0.175467852573 , 0.13160088943 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 0.0 , 0.196405406354 , 0.224463321547 , 0.098202703177 , 0.0 , 0.0 , 0.0 , 0.0 , 0.070144787983 , 0.224463321547 , 0.224463321547 , 0.112231660774 , 0.0 , 0.0 , 0.0 , 0.014028957597 , 0.16834749116 , 0.224463321547 , 0.224463321547 , 0.112231660774 , 0.0 , 0.0 , 0.070144787983 , 0.196405406354 , 0.224463321547 , 0.224463321547 , 0.224463321547 , 0.070144787983 , 0.0 , 0.0 , 0.014028957597 , 0.056115830387 , 0.098202703177 , 0.224463321547 , 0.224463321547 , 0.112231660774 , 0.0 , 0.0 , 0.0 , 0.0 , 0.028057915193 , 0.224463321547 , 0.224463321547 , 0.098202703177 , 0.0 , 0.0 , 0.0 , 0.0 , 0.028057915193 , 0.224463321547 , 0.224463321547 , 0.04208687279 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.224463321547 , 0.224463321547 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.014514109129 , 0.188683418677 , 0.14514109129 , 0.0 , 0.0 , 0.0 , 0.0 , 0.101598763903 , 0.232225746064 , 0.232225746064 , 0.232225746064 , 0.101598763903 , 0.0 , 0.0 , 0.0 , 0.116112873032 , 0.232225746064 , 0.188683418677 , 0.14514109129 , 0.217711636935 , 0.0 , 0.0 , 0.0 , 0.116112873032 , 0.232225746064 , 0.029028218258 , 0.029028218258 , 0.217711636935 , 0.043542327387 , 0.0 , 0.0 , 0.072570545645 , 0.217711636935 , 0.029028218258 , 0.0 , 0.174169309548 , 0.101598763903 , 0.0 , 0.0 , 0.014514109129 , 0.217711636935 , 0.087084654774 , 0.029028218258 , 0.232225746064 , 0.043542327387 , 0.0 , 0.0 , 0.0 , 0.159655200419 , 0.217711636935 , 0.188683418677 , 0.232225746064 , 0.0 , 0.0 , 0.0 , 0.0 , 0.014514109129 , 0.217711636935 , 0.203197527806 , 0.116112873032 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 0.204603157218 , 0.102301578609 , 0.0 , 0.0 , 0.0 , 0.0 , 0.01461451123 , 0.131530601069 , 0.233832179678 , 0.233832179678 , 0.04384353369 , 0.0 , 0.0 , 0.0 , 0.058458044919 , 0.233832179678 , 0.116916089839 , 0.160759623529 , 0.160759623529 , 0.0 , 0.0 , 0.0 , 0.04384353369 , 0.233832179678 , 0.102301578609 , 0.058458044919 , 0.233832179678 , 0.058458044919 , 0.0 , 0.0 , 0.116916089839 , 0.233832179678 , 0.058458044919 , 0.0 , 0.233832179678 , 0.116916089839 , 0.0 , 0.0 , 0.073072556149 , 0.233832179678 , 0.146145112299 , 0.0 , 0.189988645988 , 0.160759623529 , 0.0 , 0.0 , 0.0 , 0.189988645988 , 0.233832179678 , 0.233832179678 , 0.233832179678 , 0.131530601069 , 0.0 , 0.0 , 0.0 , 0.02922902246 , 0.146145112299 , 0.189988645988 , 0.087687067379 , 0.0 , 0.0 }, }, _y{ 1 , 0 , 0 , 1 , 0 , 1 , 0 , 0 , 0 , 0 , 1 , 0 , 0 , 1 , 0 , 0 , 0 , 1 , 0 , 0 , 1 , 1 , 0 , 1 , 0 , 0 , 1 , 0 , 1 , 1 , 1 , 0 , 1 , 0 , 1 , 0 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 0 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 1 , 1 , 1 , 0 , 0 , 1 , 1 , 0 , 0 } {} template<class Classifier> void fit(Classifier *clf) { clf->fit(_x, _y, 70); } protected: float _x[70][64]; int _y[70]; }; } } }
64,289
C++
.h
95
648.842105
994
0.531515
eloquentarduino/EloquentMicroML
34
11
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,693
IrisTrain.h
eloquentarduino_EloquentMicroML/examples/OnboardSEFRExample/IrisTrain.h
#pragma once namespace Eloquent { namespace ML { namespace Train { /** * A tailor made training set */ class TrainSet { public: TrainSet() : _x{ { 0.707795250293 , 0.318507862632 , 0.601625962749 , 0.188745400078 }, { 0.786991002941 , 0.557451960416 , 0.262330334314 , 0.032791291789 }, { 0.769454444683 , 0.3560162356 , 0.505313366658 , 0.160781525755 }, { 0.788927524557 , 0.289273425671 , 0.525951683038 , 0.13148792076 }, { 0.757281033453 , 0.354212096293 , 0.525211039331 , 0.158784732821 }, { 0.800030247462 , 0.539150818942 , 0.26087942852 , 0.034783923803 }, { 0.817337896536 , 0.514620157078 , 0.257310078539 , 0.030271773946 }, { 0.736598948602 , 0.338110992801 , 0.567543452202 , 0.1449047112 }, { 0.764349812349 , 0.355818016093 , 0.513959356579 , 0.158141340486 }, { 0.776114000116 , 0.549747416749 , 0.307211791713 , 0.032338083338 }, { 0.767857255278 , 0.349026025126 , 0.511904836852 , 0.162878811726 }, { 0.811208646353 , 0.559454238864 , 0.167836271659 , 0.027972711943 }, { 0.724602334863 , 0.376235827717 , 0.543451751147 , 0.195085244002 }, { 0.775300208596 , 0.2830461079 , 0.541479510765 , 0.159982582726 }, { 0.762629940405 , 0.341868593975 , 0.525951683038 , 0.157785504911 }, { 0.732603914541 , 0.360297007151 , 0.552455410965 , 0.168138603337 }, { 0.723371184771 , 0.341957287346 , 0.578696947817 , 0.157826440314 }, { 0.740885763364 , 0.331739894044 , 0.552899823406 , 0.187985939958 }, { 0.72232961803 , 0.354828584296 , 0.570260224761 , 0.164741842709 }, { 0.79096499646 , 0.569494797451 , 0.221470199009 , 0.031638599858 }, { 0.784174986282 , 0.566348601204 , 0.246869903089 , 0.058087036021 }, { 0.800333007811 , 0.560233105468 , 0.208086582031 , 0.048019980469 }, { 0.788894791013 , 0.552226353709 , 0.252446333124 , 0.094667374922 }, { 0.766938971955 , 0.571444724202 , 0.285722362101 , 0.060152076232 }, { 0.756764973013 , 0.352287142609 , 0.534954549888 , 0.130476719485 }, { 0.693334094194 , 0.385185607886 , 0.577778411829 , 0.192592803943 }, { 0.805333075381 , 0.54831188111 , 0.222751701701 , 0.034269492569 }, { 0.808465844224 , 0.522134191061 , 0.269488614741 , 0.033686076843 }, { 0.828132873387 , 0.507020126563 , 0.236609392396 , 0.033801341771 }, { 0.794289441035 , 0.573653485192 , 0.191217828397 , 0.058836254892 }, { 0.785232210919 , 0.576905297818 , 0.224352060262 , 0.016025147162 }, { 0.780109355696 , 0.576602567254 , 0.237424586516 , 0.050876697111 }, { 0.806419649012 , 0.542782456066 , 0.2326210526 , 0.031016140347 }, { 0.706318918233 , 0.378385134768 , 0.567577702152 , 0.189192567384 }, { 0.729924427872 , 0.391030943503 , 0.534408956121 , 0.169446742185 }, { 0.758175396576 , 0.326598632371 , 0.536554896038 , 0.174963553056 }, { 0.779648832449 , 0.580914816335 , 0.229308480132 , 0.045861696026 }, { 0.735442835436 , 0.354588509942 , 0.551582126577 , 0.170727801083 }, { 0.782580542281 , 0.383617912883 , 0.460341495459 , 0.168791881668 }, { 0.764442378201 , 0.271253747104 , 0.554837209985 , 0.184945736662 }, { 0.777290926661 , 0.579157945355 , 0.243855976992 , 0.030481997124 }, { 0.754573405879 , 0.34913097884 , 0.52932761308 , 0.1689343446 }, { 0.745497566353 , 0.372748783177 , 0.524177976342 , 0.174725992114 }, { 0.795240638101 , 0.541440434452 , 0.270720217226 , 0.033840027153 }, { 0.78667473765 , 0.358834090858 , 0.48304589154 , 0.138013111868 }, { 0.767011029307 , 0.350633613397 , 0.514993119677 , 0.153402205861 }, { 0.733509487319 , 0.354529585537 , 0.550132115489 , 0.18337737183 }, { 0.747141936983 , 0.339609971356 , 0.54337595417 , 0.176597185105 }, { 0.765218548536 , 0.333913548452 , 0.528696451715 , 0.153043709707 }, { 0.734460466367 , 0.373672868853 , 0.54118139627 , 0.167508527417 }, { 0.732396177267 , 0.385471672246 , 0.539660341144 , 0.154188668898 }, { 0.698579600742 , 0.378890630911 , 0.568335946366 , 0.213125979887 }, { 0.816094266747 , 0.533600097488 , 0.219717687201 , 0.031388241029 }, { 0.785918578702 , 0.570176223764 , 0.231152523148 , 0.061640672839 }, { 0.826474506134 , 0.49588470368 , 0.264471841963 , 0.033058980245 }, { 0.823072177557 , 0.514420110973 , 0.240062718454 , 0.017147337032 }, { 0.806828202995 , 0.537885468663 , 0.240632972823 , 0.042464642263 }, { 0.763018527597 , 0.335265716671 , 0.531800791962 , 0.150291528163 }, { 0.818031190035 , 0.517529936553 , 0.250417711235 , 0.016694514082 }, { 0.822250281336 , 0.5177131401 , 0.228402855927 , 0.060907428247 }, { 0.826997544026 , 0.52627116438 , 0.19547214677 , 0.030072637965 }, { 0.741433066224 , 0.294219470724 , 0.576670162618 , 0.176531682434 }, { 0.739234616273 , 0.375882008274 , 0.526234811584 , 0.187941004137 }, { 0.769868794743 , 0.354139645582 , 0.50811340453 , 0.153973758949 }, { 0.795947821237 , 0.553702832165 , 0.242244989072 , 0.03460642701 }, { 0.730814120023 , 0.347436220995 , 0.563086289198 , 0.167727830825 }, { 0.860938573268 , 0.440035270781 , 0.248715587833 , 0.057395904885 }, { 0.797782057841 , 0.542491799332 , 0.255290258509 , 0.063822564627 }, { 0.715249355053 , 0.405307967863 , 0.53643701629 , 0.190733161347 }, { 0.767416984553 , 0.347735821126 , 0.515608286497 , 0.155881574987 }, }, _y{ 1 , 0 , 1 , 1 , 1 , 0 , 0 , 1 , 1 , 0 , 1 , 0 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 0 , 0 , 0 , 0 , 0 , 1 , 1 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 1 , 1 , 1 , 0 , 1 , 1 , 1 , 0 , 1 , 1 , 0 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 0 , 0 , 0 , 0 , 0 , 1 , 0 , 0 , 0 , 1 , 1 , 1 , 0 , 1 , 0 , 0 , 1 , 1 } {} template<class Classifier> void fit(Classifier *clf) { clf->fit(_x, _y, 70); } protected: float _x[70][4]; int _y[70]; }; } } }
8,830
C++
.h
95
65.063158
450
0.442002
eloquentarduino/EloquentMicroML
34
11
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,694
BreastCancerTrain.h
eloquentarduino_EloquentMicroML/examples/OnboardSEFRExample/BreastCancerTrain.h
#pragma once namespace Eloquent { namespace ML { namespace Train { /** * A tailor made training set */ class TrainSet { public: TrainSet() : _x{ { 0.010697105051 , 0.011857671316 , 0.070960337291 , 0.535319479079 , 6.8970795e-05 , 0.000103389875 , 8.979467e-05 , 5.140977e-05 , 0.000132503508 , 4.3206224e-05 , 0.000221502361 , 0.000454743021 , 0.001447723517 , 0.023231220704 , 2.775411e-06 , 1.9020023e-05 , 1.7667134e-05 , 6.01306e-06 , 1.1293968e-05 , 2.531361e-06 , 0.013402882399 , 0.018078306491 , 0.088004081856 , 0.836270890881 , 9.5895932e-05 , 0.000384910091 , 0.000349761513 , 0.000123616887 , 0.000283178168 , 8.1770183e-05 }, { 0.01420006255 , 0.023834258834 , 0.095577344086 , 0.567784039497 , 0.000139051382 , 0.000211034776 , 0.000203060894 , 0.000102163988 , 0.000256693438 , 8.0710971e-05 , 0.00033457532 , 0.001094497129 , 0.002628103884 , 0.026565040093 , 6.260043e-06 , 3.8252784e-05 , 3.8809863e-05 , 1.3391751e-05 , 2.3408257e-05 , 4.09508e-06 , 0.016919920685 , 0.033566763243 , 0.116003587908 , 0.80754663409 , 0.000186020819 , 0.000589957983 , 0.00058875644 , 0.000225016376 , 0.000478214414 , 0.0001170959 }, { 0.012711538284 , 0.019313008202 , 0.083630981269 , 0.535813127221 , 0.000110240839 , 0.000152519916 , 8.6838999e-05 , 5.5491289e-05 , 0.000203607134 , 6.9083641e-05 , 0.000541005295 , 0.001276716865 , 0.003575178091 , 0.047248722899 , 8.163756e-06 , 2.8084062e-05 , 2.3068058e-05 , 1.3425461e-05 , 1.3777787e-05 , 5.017859e-06 , 0.015817566967 , 0.026090640941 , 0.102545305192 , 0.831673948982 , 0.000153354371 , 0.000341385003 , 0.00024829686 , 0.000144268079 , 0.000296324408 , 0.000106717583 }, { 0.010902163268 , 0.014103998386 , 0.075297152671 , 0.638660894634 , 5.5392316e-05 , 0.000139788823 , 0.000117438535 , 6.3581735e-05 , 0.000136319694 , 4.435935e-05 , 0.000543402035 , 0.002029155897 , 0.006295615408 , 0.066084056951 , 1.785179e-06 , 4.7185837e-05 , 5.0558285e-05 , 2.3260223e-05 , 2.5500939e-05 , 7.302231e-06 , 0.011920153474 , 0.017027165793 , 0.086273248189 , 0.757521203609 , 5.8975187e-05 , 0.000221967362 , 0.000206953428 , 0.000100490988 , 0.000180622173 , 5.8178993e-05 }, { 0.011036931482 , 0.014234608763 , 0.072590570858 , 0.573274308453 , 6.3360162e-05 , 8.8084471e-05 , 8.8875649e-05 , 3.9677571e-05 , 0.000125006106 , 3.7290851e-05 , 0.000304273828 , 0.000606371917 , 0.001983219229 , 0.029794440482 , 3.808203e-06 , 1.6476279e-05 , 2.4361686e-05 , 7.878813e-06 , 1.8388293e-05 , 1.757074e-06 , 0.013192891216 , 0.019133318495 , 0.088018539596 , 0.810298016203 , 0.000103050919 , 0.000252847265 , 0.000356623431 , 0.000119533792 , 0.000320624837 , 5.6918656e-05 }, { 0.009751147532 , 0.009202155312 , 0.064676512049 , 0.562586313381 , 5.7461186e-05 , 8.8152465e-05 , 0.000103210537 , 5.2755538e-05 , 9.9707444e-05 , 3.162718e-05 , 0.000328820197 , 0.000346806228 , 0.002244593906 , 0.037415126938 , 3.290816e-06 , 2.0882618e-05 , 2.9039074e-05 , 8.862303e-06 , 1.2694792e-05 , 1.848274e-06 , 0.011931430921 , 0.011147156321 , 0.078741169884 , 0.819305532591 , 8.778647e-05 , 0.000266130514 , 0.000384033129 , 0.000124333667 , 0.000198630614 , 4.8023748e-05 }, { 0.016957464646 , 0.033063184493 , 0.111346274708 , 0.574695445677 , 0.000190016522 , 0.000188622757 , 0.000161676649 , 8.7791659e-05 , 0.000293464799 , 0.000106390669 , 0.000366405127 , 0.002211439225 , 0.002821598227 , 0.026280198634 , 1.2488127e-05 , 2.7317779e-05 , 4.0186868e-05 , 1.6059261e-05 , 2.1014867e-05 , 4.707826e-06 , 0.019884369503 , 0.05472847494 , 0.135071238943 , 0.795994230875 , 0.000295632877 , 0.00041781954 , 0.000623012605 , 0.000220524472 , 0.000459013016 , 0.000148761101 }, { 0.01250420285 , 0.023684026582 , 0.083186488425 , 0.566559067245 , 9.7952456e-05 , 0.000137167837 , 0.000140951778 , 6.3329402e-05 , 0.000198054877 , 6.086124e-05 , 0.000318194983 , 0.000888365993 , 0.002475900963 , 0.02799255865 , 4.821944e-06 , 3.6463425e-05 , 4.0771957e-05 , 9.373852e-06 , 1.5969948e-05 , 4.700686e-06 , 0.015015363258 , 0.031931296549 , 0.106724317312 , 0.811139211028 , 0.000144305725 , 0.000565613082 , 0.000604226473 , 0.000147229679 , 0.000362742281 , 0.000115324182 }, { 0.01336047526 , 0.020188226024 , 0.087412068423 , 0.659763027526 , 7.0814734e-05 , 8.4461806e-05 , 8.3770601e-05 , 4.5214883e-05 , 0.000155689576 , 4.499572e-05 , 0.000339954553 , 0.000908680904 , 0.002447032157 , 0.030834459623 , 8.234605e-06 , 2.635006e-05 , 4.2576505e-05 , 1.6791209e-05 , 2.5127809e-05 , 2.530482e-06 , 0.014194978132 , 0.023315504461 , 0.094408405625 , 0.738830067237 , 9.5335631e-05 , 0.000162180154 , 0.000195728855 , 9.4324112e-05 , 0.000236779653 , 5.2995147e-05 }, { 0.012419712768 , 0.018966248112 , 0.081663352325 , 0.509881581395 , 9.7356333e-05 , 0.000134297496 , 9.2091048e-05 , 5.7590807e-05 , 0.000184612297 , 6.3426575e-05 , 0.000346405242 , 0.000771462429 , 0.002269777326 , 0.029300421763 , 4.743432e-06 , 2.0079159e-05 , 2.0434542e-05 , 8.940697e-06 , 1.607642e-05 , 3.102123e-06 , 0.016254112041 , 0.026186141378 , 0.105773306779 , 0.848430980635 , 0.000143088558 , 0.00034827568 , 0.000342664364 , 0.000139534725 , 0.000349678509 , 9.6047026e-05 }, { 0.014271661044 , 0.023634390841 , 0.092565321672 , 0.575959593403 , 0.000105265691 , 0.00011345808 , 8.9498594e-05 , 5.691326e-05 , 0.000189205165 , 6.6937016e-05 , 0.000210011231 , 0.000663518455 , 0.001445588142 , 0.015702078097 , 3.630225e-06 , 1.4997706e-05 , 1.5734588e-05 , 7.426249e-06 , 1.2061017e-05 , 1.863877e-06 , 0.017587627847 , 0.03239027704 , 0.114324999255 , 0.802659023205 , 0.000162872487 , 0.00042305668 , 0.000403984452 , 0.00017414244 , 0.00040019168 , 0.000104225388 }, { 0.011359644435 , 0.016479284436 , 0.072823688106 , 0.565713129218 , 5.8188041e-05 , 4.7289306e-05 , 2.3392926e-05 , 2.3563108e-05 , 0.000108349168 , 4.0396938e-05 , 0.000269100191 , 0.000841691507 , 0.001748619424 , 0.028725293137 , 2.856929e-06 , 6.572568e-06 , 7.807096e-06 , 5.382713e-06 , 1.0352735e-05 , 2.157056e-06 , 0.013607464214 , 0.024024017069 , 0.087785516918 , 0.815455124845 , 8.3743696e-05 , 0.000109980078 , 0.000103456437 , 7.0731868e-05 , 0.000209040149 , 5.9932406e-05 }, { 0.009282902644 , 0.012511738347 , 0.062184983899 , 0.542125500654 , 5.3016685e-05 , 9.4024892e-05 , 0.000115550463 , 6.1985673e-05 , 0.000108773894 , 3.0878233e-05 , 0.000413918799 , 0.00073047425 , 0.002777396637 , 0.05231909703 , 3.113235e-06 , 1.681187e-05 , 2.5890479e-05 , 5.770049e-06 , 1.0000422e-05 , 2.272144e-06 , 0.011535115202 , 0.016946404667 , 0.079973476889 , 0.832122781335 , 7.4293118e-05 , 0.000212116568 , 0.000305593354 , 9.2081611e-05 , 0.000171606638 , 4.8741467e-05 }, { 0.014018671469 , 0.019862445681 , 0.091520529457 , 0.569049488805 , 0.000123262123 , 0.000131032533 , 0.000130500313 , 7.8129877e-05 , 0.000226512778 , 7.2137082e-05 , 0.000305600651 , 0.000951289802 , 0.0020192422 , 0.025812663867 , 6.95292e-06 , 2.4865312e-05 , 3.0921975e-05 , 1.2932943e-05 , 1.8553185e-05 , 3.877754e-06 , 0.016679770837 , 0.029751090932 , 0.109424406003 , 0.808335543956 , 0.000190108939 , 0.000443445599 , 0.000532858537 , 0.000222255019 , 0.000415131501 , 0.000125497446 }, { 0.006924921347 , 0.008892181285 , 0.045750231121 , 0.376233264293 , 4.6623645e-05 , 6.0598261e-05 , 6.3426457e-05 , 3.8139056e-05 , 8.2974283e-05 , 2.6327178e-05 , 0.00033555715 , 0.000375027122 , 0.002268795552 , 0.0426724883 , 2.515431e-06 , 7.827449e-06 , 1.1400126e-05 , 4.699796e-06 , 6.105576e-06 , 1.164967e-06 , 0.011005010141 , 0.01312615722 , 0.073616280986 , 0.921243290304 , 7.507197e-05 , 0.000148813025 , 0.000195270305 , 8.7133395e-05 , 0.000150268714 , 3.9777746e-05 }, { 0.01494386853 , 0.024608948832 , 0.101875170752 , 0.629427470574 , 0.000123099165 , 0.0002495724 , 0.000231613636 , 8.7344898e-05 , 0.000225192017 , 8.3611652e-05 , 0.000230851749 , 0.001272351224 , 0.002243212894 , 0.020908355023 , 6.997388e-06 , 6.4608014e-05 , 5.9873431e-05 , 1.7719314e-05 , 2.1343719e-05 , 8.808502e-06 , 0.016358801457 , 0.034840002305 , 0.118419001899 , 0.759383617879 , 0.000179696482 , 0.000840796682 , 0.000755683024 , 0.000240320916 , 0.000391392216 , 0.000155751463 }, { 0.02513116435 , 0.051636018504 , 0.158556919053 , 0.619080293113 , 0.000263699382 , 0.000182228538 , 4.8692397e-05 , 1.8143131e-05 , 0.000542423496 , 0.000199399661 , 0.000479258295 , 0.00293350231 , 0.00335450144 , 0.025158760797 , 2.7498326e-05 , 5.0470835e-05 , 4.8692397e-05 , 1.8143131e-05 , 7.8925838e-05 , 7.917114e-06 , 0.027486061156 , 0.067335330544 , 0.175574728002 , 0.742651049986 , 0.000397695463 , 0.000416093094 , 0.000210959506 , 7.8619211e-05 , 0.00095207742 , 0.000227180084 }, { 0.010386336869 , 0.011301629318 , 0.068144638998 , 0.610567035744 , 5.2685126e-05 , 5.9494009e-05 , 8.3157668e-05 , 4.3147109e-05 , 9.4710444e-05 , 3.1806413e-05 , 0.000476007884 , 0.001031936425 , 0.003143248213 , 0.052205155872 , 5.99963e-06 , 1.5191622e-05 , 2.8357323e-05 , 1.0665389e-05 , 1.2797351e-05 , 2.353529e-06 , 0.011893220779 , 0.01521394643 , 0.078078910695 , 0.783021527559 , 7.4674469e-05 , 0.000118150861 , 0.000192323035 , 8.3157668e-05 , 0.000130652416 , 4.1416983e-05 }, { 0.007925414861 , 0.004572863049 , 0.054098996384 , 0.440986118736 , 5.2160596e-05 , 0.000122295451 , 0.000132207727 , 6.4804254e-05 , 0.000106567974 , 3.4675342e-05 , 0.000482397403 , 0.000398825907 , 0.003783845928 , 0.067579690923 , 2.819051e-06 , 2.1604355e-05 , 2.3670514e-05 , 6.991458e-06 , 1.3229584e-05 , 2.728299e-06 , 0.011181046647 , 0.007634654783 , 0.081324712806 , 0.889461512215 , 7.1456492e-05 , 0.000293227133 , 0.000313624394 , 0.000116920795 , 0.000202695018 , 5.2380869e-05 }, { 0.010352772294 , 0.01709899058 , 0.069289142674 , 0.495579766551 , 7.3213723e-05 , 0.000114827808 , 0.000113880495 , 5.9213798e-05 , 0.000130323134 , 4.4253027e-05 , 0.000297050133 , 0.000684771605 , 0.00236692794 , 0.029434352601 , 3.540919e-06 , 2.0685245e-05 , 2.4197068e-05 , 7.328139e-06 , 1.1963204e-05 , 2.007626e-06 , 0.01371573166 , 0.024839886988 , 0.101024111341 , 0.858671113808 , 0.000111038558 , 0.00041343424 , 0.000428658905 , 0.000136954321 , 0.000272487673 , 6.682613e-05 }, { 0.016324654525 , 0.029132789774 , 0.110899010337 , 0.551921988799 , 0.000203700812 , 0.000405829196 , 0.000345076322 , 0.000150381231 , 0.000371235795 , 0.000139288471 , 0.000708449981 , 0.001652478164 , 0.004924556466 , 0.03892472353 , 1.3022557e-05 , 0.000106610572 , 8.0922828e-05 , 2.668838e-05 , 8.5239855e-05 , 1.3162646e-05 , 0.021313537563 , 0.037881203582 , 0.141332626347 , 0.811515444293 , 0.000299904774 , 0.001238357987 , 0.000981909386 , 0.00036809094 , 0.000948888413 , 0.000247299933 }, { 0.016996127423 , 0.024026758798 , 0.107755186987 , 0.683236496113 , 0.000117172842 , 4.9123113e-05 , 3.3418326e-05 , 3.8127153e-05 , 0.000191353177 , 7.6476051e-05 , 0.000239876273 , 0.00305486803 , 0.00152612963 , 0.018470081682 , 5.67668e-06 , 6.390179e-06 , 1.7517881e-05 , 1.5183033e-05 , 3.4840105e-05 , 2.317891e-06 , 0.017348311184 , 0.029753005873 , 0.110168297941 , 0.712063389133 , 0.000126538321 , 6.0249511e-05 , 6.3040893e-05 , 6.5388785e-05 , 0.00025918116 , 8.0467467e-05 }, { 0.01436502592 , 0.027715507474 , 0.096808284634 , 0.548660981985 , 0.000136732911 , 0.000276232762 , 0.000262052198 , 9.8491506e-05 , 0.000234036939 , 9.5032832e-05 , 0.000343100459 , 0.00184347323 , 0.002350745413 , 0.027600218341 , 8.24202e-06 , 8.3204167e-05 , 8.9268375e-05 , 1.6509404e-05 , 2.0625226e-05 , 1.1621145e-05 , 0.017397130107 , 0.046899619137 , 0.112579837972 , 0.820166889229 , 0.000213630763 , 0.001219759023 , 0.001273944915 , 0.000254788983 , 0.000503352353 , 0.00023922495 }, { 0.011795821174 , 0.018630224321 , 0.077639218253 , 0.438955980527 , 0.000110486197 , 0.000151034332 , 0.000121345525 , 5.1626643e-05 , 0.000229241423 , 7.7698994e-05 , 0.000480699638 , 0.001026156741 , 0.003462033664 , 0.040847015891 , 5.530287e-06 , 3.4012613e-05 , 4.1893098e-05 , 1.0401045e-05 , 2.2645187e-05 , 5.645855e-06 , 0.016757239202 , 0.028015075289 , 0.118954480424 , 0.885383976156 , 0.000163089183 , 0.000575345163 , 0.000693004494 , 0.000154023138 , 0.000474323519 , 0.000139676869 }, { 0.022222090582 , 0.029086995669 , 0.141085958091 , 0.640428304959 , 0.000239429932 , 0.000151794836 , 6.9116687e-05 , 4.8540678e-05 , 0.000424380202 , 0.000161451531 , 0.000648378127 , 0.002283937088 , 0.004463591216 , 0.036709472026 , 2.2460585e-05 , 3.348278e-05 , 4.6412931e-05 , 3.3225579e-05 , 4.7394968e-05 , 6.939727e-06 , 0.02391961139 , 0.036615944708 , 0.152285854334 , 0.736293805153 , 0.00030957542 , 0.000268423401 , 0.000207326681 , 0.000145598651 , 0.000572854818 , 0.000181746959 }, { 0.013731964249 , 0.022048793786 , 0.08805213385 , 0.575230347616 , 8.3393075e-05 , 6.1620146e-05 , 3.1775602e-05 , 2.0751205e-05 , 0.000182275478 , 5.7083694e-05 , 0.000243681062 , 0.000844454498 , 0.00160614939 , 0.020975984079 , 3.351253e-06 , 1.1259393e-05 , 1.4201957e-05 , 7.03048e-06 , 1.4099785e-05 , 1.313936e-06 , 0.016276055839 , 0.030907136795 , 0.104726661866 , 0.805015969603 , 0.000111776554 , 0.000208738117 , 0.000213029356 , 0.000113615657 , 0.000305904025 , 7.3012363e-05 }, { 0.011215358643 , 0.009606781308 , 0.073407299029 , 0.609663576546 , 6.2855798e-05 , 7.3854126e-05 , 6.3034529e-05 , 5.0765935e-05 , 0.000111004603 , 3.9250564e-05 , 0.000383186101 , 0.000525021769 , 0.0029713998 , 0.039001617136 , 3.591851e-06 , 1.9360377e-05 , 2.174771e-05 , 8.642912e-06 , 1.2287744e-05 , 2.38861e-06 , 0.012772870031 , 0.012460091105 , 0.086109953383 , 0.783223964424 , 8.0109705e-05 , 0.000179496804 , 0.000158878928 , 9.2940024e-05 , 0.000175922188 , 5.0548904e-05 }, { 0.009883338019 , 0.006985069847 , 0.065807736142 , 0.631773751115 , 4.8856521e-05 , 6.4687397e-05 , 9.6446571e-05 , 5.0804936e-05 , 8.8117095e-05 , 2.8656322e-05 , 0.000368835069 , 0.000380574273 , 0.002648870978 , 0.046002091793 , 5.596824e-06 , 1.1987627e-05 , 2.770647e-05 , 9.181908e-06 , 8.553544e-06 , 2.491536e-06 , 0.010979321781 , 0.008120021921 , 0.074137212737 , 0.767188633775 , 6.6928075e-05 , 9.9856298e-05 , 0.000194841558 , 7.9154383e-05 , 0.000115151361 , 3.7399837e-05 }, { 0.012576897514 , 0.011691431457 , 0.08403728782 , 0.577520639419 , 8.7972693e-05 , 0.000175043521 , 0.000170288241 , 7.99871e-05 , 0.000206690734 , 5.7653679e-05 , 0.000359761579 , 0.000581783995 , 0.002774460312 , 0.036820630205 , 5.566138e-06 , 4.3682992e-05 , 5.2849206e-05 , 1.8463607e-05 , 3.0105846e-05 , 3.602535e-06 , 0.014815158936 , 0.015643233674 , 0.102566484939 , 0.804216347538 , 0.000113962761 , 0.000488154158 , 0.000516931805 , 0.000196196322 , 0.000382636119 , 8.1544865e-05 }, { 0.00948317639 , 0.010382129549 , 0.062147281986 , 0.540411147702 , 4.9172218e-05 , 5.6639245e-05 , 5.8561862e-05 , 3.8452332e-05 , 9.3220923e-05 , 2.9836931e-05 , 0.00023211698 , 0.000401774903 , 0.001652411009 , 0.028013043243 , 2.241667e-06 , 7.181233e-06 , 1.1712372e-05 , 5.398915e-06 , 7.113681e-06 , 1.132265e-06 , 0.011889045249 , 0.014372858024 , 0.079606719065 , 0.834519522317 , 7.4930084e-05 , 0.000133855684 , 0.000196626518 , 0.000100391763 , 0.000159161476 , 4.3482312e-05 }, { 0.013809613757 , 0.021048758653 , 0.090736430604 , 0.613437579541 , 9.5194271e-05 , 0.000106406708 , 0.000127823723 , 5.4249977e-05 , 0.00018267454 , 5.9357112e-05 , 0.000277161371 , 0.000987508521 , 0.002574887281 , 0.024140173944 , 5.696345e-06 , 2.9024416e-05 , 4.6661958e-05 , 1.1251201e-05 , 1.9653261e-05 , 3.897703e-06 , 0.015398930709 , 0.029421745521 , 0.112608920605 , 0.774888923541 , 0.000140131239 , 0.000410702759 , 0.000502573031 , 0.000140228148 , 0.000348002267 , 9.8266304e-05 }, { 0.009527505133 , 0.012395249206 , 0.0640995757 , 0.551566107351 , 4.536931e-05 , 0.000109413929 , 0.000105267191 , 4.9765851e-05 , 0.000115409213 , 3.1690071e-05 , 0.000490164409 , 0.000832345231 , 0.004411529645 , 0.052408772338 , 3.271427e-06 , 5.0260462e-05 , 4.8576787e-05 , 1.3179632e-05 , 2.664404e-05 , 3.819995e-06 , 0.012035532179 , 0.01657196357 , 0.088630278482 , 0.82485112612 , 6.2300991e-05 , 0.000371907437 , 0.000361815376 , 0.00012455202 , 0.00023331646 , 5.1859205e-05 }, { 0.014872464628 , 0.024585319585 , 0.095816597539 , 0.618491672069 , 9.6489111e-05 , 8.4868964e-05 , 5.2378858e-05 , 3.7307947e-05 , 0.000199438758 , 6.3039846e-05 , 0.000257759987 , 0.001491656386 , 0.001912804013 , 0.022270110117 , 4.911552e-06 , 1.5236283e-05 , 2.3096971e-05 , 1.3053371e-05 , 1.8091708e-05 , 2.156452e-06 , 0.016702582588 , 0.035080935838 , 0.109145589189 , 0.770413512374 , 0.000128108257 , 0.000188634448 , 0.000251586095 , 0.000141338026 , 0.000316522209 , 7.625859e-05 }, { 0.013055345358 , 0.019278572398 , 0.087223675676 , 0.577372200762 , 9.4378148e-05 , 0.000167266016 , 0.00012759854 , 7.8645472e-05 , 0.000201650465 , 6.1999459e-05 , 0.000227886515 , 0.000880385155 , 0.001889353821 , 0.01884876679 , 3.986447e-06 , 2.7355336e-05 , 2.4006434e-05 , 1.2106191e-05 , 1.3019528e-05 , 3.322935e-06 , 0.015777447546 , 0.029737175539 , 0.109600430169 , 0.803109688063 , 0.000136552824 , 0.000594833054 , 0.000495977764 , 0.000241855198 , 0.000381810649 , 0.000114167115 }, { 0.007102607044 , 0.007733651526 , 0.04605282072 , 0.47126938988 , 3.1646209e-05 , 3.4304652e-05 , 3.6822117e-05 , 2.897434e-05 , 5.93786e-05 , 1.7716238e-05 , 0.000232177377 , 0.000378291027 , 0.001444353408 , 0.031548867489 , 1.58701e-06 , 4.225984e-06 , 5.756603e-06 , 3.484171e-06 , 3.635219e-06 , 6.6696e-07 , 0.009791259332 , 0.011946209107 , 0.063104448218 , 0.877756021749 , 4.702624e-05 , 8.7272109e-05 , 0.000105901348 , 6.7434487e-05 , 9.4723805e-05 , 2.5261919e-05 }, }, _y{ 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 1 , 0 , 0 , 0 , 0 , 1 , 0 , 0 , 1 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 1 , 0 , 0 } {} template<class Classifier> void fit(Classifier *clf) { clf->fit(_x, _y, 35); } protected: float _x[35][30]; int _y[35]; }; } } }
21,442
C++
.h
60
332.466667
597
0.603461
eloquentarduino/EloquentMicroML
34
11
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,695
DigitsTest.h
eloquentarduino_EloquentMicroML/examples/OnboardSEFRExample/DigitsTest.h
#pragma once namespace Eloquent { namespace ML { namespace Test { /** * A tailor made test set */ class TestSet { public: TestSet() : _x{ { 0.0 , 0.0 , 0.0 , 0.014628577925 , 0.160914357173 , 0.204800090948 , 0.073142889624 , 0.0 , 0.0 , 0.0 , 0.0 , 0.131657201324 , 0.234057246798 , 0.234057246798 , 0.073142889624 , 0.0 , 0.0 , 0.0 , 0.146285779249 , 0.234057246798 , 0.234057246798 , 0.234057246798 , 0.014628577925 , 0.0 , 0.0 , 0.073142889624 , 0.234057246798 , 0.234057246798 , 0.234057246798 , 0.234057246798 , 0.0 , 0.0 , 0.0 , 0.014628577925 , 0.073142889624 , 0.160914357173 , 0.234057246798 , 0.234057246798 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.073142889624 , 0.234057246798 , 0.234057246798 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.160914357173 , 0.234057246798 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.160914357173 , 0.146285779249 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.045611882531 , 0.243263373498 , 0.136835647593 , 0.0 , 0.0 , 0.0 , 0.0 , 0.060815843375 , 0.228059412655 , 0.228059412655 , 0.243263373498 , 0.106427725906 , 0.0 , 0.0 , 0.0 , 0.121631686749 , 0.243263373498 , 0.045611882531 , 0.106427725906 , 0.182447530124 , 0.0 , 0.0 , 0.0 , 0.091223765062 , 0.243263373498 , 0.045611882531 , 0.0 , 0.197651490967 , 0.045611882531 , 0.0 , 0.0 , 0.121631686749 , 0.152039608436 , 0.0 , 0.0 , 0.182447530124 , 0.121631686749 , 0.0 , 0.0 , 0.015203960844 , 0.228059412655 , 0.030407921687 , 0.0 , 0.136835647593 , 0.16724356928 , 0.0 , 0.0 , 0.0 , 0.197651490967 , 0.212855451811 , 0.152039608436 , 0.228059412655 , 0.182447530124 , 0.0 , 0.0 , 0.0 , 0.045611882531 , 0.152039608436 , 0.243263373498 , 0.212855451811 , 0.045611882531 , 0.0 }, { 0.0 , 0.0 , 0.182447530124 , 0.136835647593 , 0.182447530124 , 0.015203960844 , 0.0 , 0.0 , 0.0 , 0.0 , 0.212855451811 , 0.243263373498 , 0.243263373498 , 0.121631686749 , 0.0 , 0.0 , 0.0 , 0.045611882531 , 0.243263373498 , 0.136835647593 , 0.045611882531 , 0.228059412655 , 0.030407921687 , 0.0 , 0.0 , 0.060815843375 , 0.243263373498 , 0.015203960844 , 0.0 , 0.243263373498 , 0.076019804218 , 0.0 , 0.0 , 0.076019804218 , 0.182447530124 , 0.0 , 0.0 , 0.243263373498 , 0.076019804218 , 0.0 , 0.0 , 0.045611882531 , 0.212855451811 , 0.015203960844 , 0.060815843375 , 0.243263373498 , 0.060815843375 , 0.0 , 0.0 , 0.0 , 0.228059412655 , 0.182447530124 , 0.212855451811 , 0.212855451811 , 0.0 , 0.0 , 0.0 , 0.0 , 0.106427725906 , 0.182447530124 , 0.182447530124 , 0.030407921687 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 0.0 , 0.133821931893 , 0.173968511461 , 0.093675352325 , 0.0 , 0.0 , 0.0 , 0.0 , 0.066910965947 , 0.214115091029 , 0.214115091029 , 0.147204125082 , 0.0 , 0.0 , 0.0 , 0.053528772757 , 0.18735070465 , 0.214115091029 , 0.214115091029 , 0.093675352325 , 0.0 , 0.0 , 0.040146579568 , 0.18735070465 , 0.214115091029 , 0.214115091029 , 0.214115091029 , 0.053528772757 , 0.0 , 0.0 , 0.093675352325 , 0.214115091029 , 0.214115091029 , 0.214115091029 , 0.214115091029 , 0.053528772757 , 0.0 , 0.0 , 0.0 , 0.026764386379 , 0.173968511461 , 0.214115091029 , 0.214115091029 , 0.040146579568 , 0.0 , 0.0 , 0.0 , 0.0 , 0.147204125082 , 0.214115091029 , 0.214115091029 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.026764386379 , 0.173968511461 , 0.214115091029 , 0.013382193189 , 0.0 }, { 0.0 , 0.0 , 0.046340682347 , 0.200809623503 , 0.169915835272 , 0.108128258809 , 0.0 , 0.0 , 0.0 , 0.0 , 0.169915835272 , 0.24715030585 , 0.24715030585 , 0.24715030585 , 0.030893788231 , 0.0 , 0.0 , 0.061787576462 , 0.24715030585 , 0.139022047041 , 0.015446894116 , 0.216256517619 , 0.030893788231 , 0.0 , 0.0 , 0.061787576462 , 0.24715030585 , 0.0 , 0.0 , 0.24715030585 , 0.030893788231 , 0.0 , 0.0 , 0.0 , 0.24715030585 , 0.015446894116 , 0.0 , 0.185362729387 , 0.123575152925 , 0.0 , 0.0 , 0.0 , 0.231703411734 , 0.139022047041 , 0.0 , 0.200809623503 , 0.092681364694 , 0.0 , 0.0 , 0.0 , 0.139022047041 , 0.216256517619 , 0.139022047041 , 0.216256517619 , 0.015446894116 , 0.0 , 0.0 , 0.0 , 0.030893788231 , 0.185362729387 , 0.200809623503 , 0.061787576462 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.048100152585 , 0.176367226144 , 0.256534147118 , 0.160333841949 , 0.0 , 0.0 , 0.0 , 0.0 , 0.160333841949 , 0.256534147118 , 0.160333841949 , 0.224467378728 , 0.096200305169 , 0.0 , 0.0 , 0.0 , 0.240500762923 , 0.112233689364 , 0.0 , 0.176367226144 , 0.128267073559 , 0.0 , 0.0 , 0.048100152585 , 0.256534147118 , 0.03206676839 , 0.0 , 0.128267073559 , 0.128267073559 , 0.0 , 0.0 , 0.064133536779 , 0.192400610338 , 0.0 , 0.0 , 0.144300457754 , 0.128267073559 , 0.0 , 0.0 , 0.096200305169 , 0.240500762923 , 0.016033384195 , 0.0 , 0.192400610338 , 0.128267073559 , 0.0 , 0.0 , 0.048100152585 , 0.240500762923 , 0.160333841949 , 0.128267073559 , 0.240500762923 , 0.064133536779 , 0.0 , 0.0 , 0.0 , 0.080166920974 , 0.192400610338 , 0.224467378728 , 0.144300457754 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.030707514357 , 0.214952600501 , 0.199598843322 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.153537571786 , 0.230306357679 , 0.230306357679 , 0.122830057429 , 0.0 , 0.0 , 0.0 , 0.030707514357 , 0.245660114858 , 0.10747630025 , 0.061415028715 , 0.230306357679 , 0.0 , 0.0 , 0.0 , 0.061415028715 , 0.245660114858 , 0.061415028715 , 0.0 , 0.199598843322 , 0.10747630025 , 0.0 , 0.0 , 0.061415028715 , 0.245660114858 , 0.015353757179 , 0.0 , 0.153537571786 , 0.122830057429 , 0.0 , 0.0 , 0.061415028715 , 0.245660114858 , 0.076768785893 , 0.015353757179 , 0.184245086144 , 0.168891328965 , 0.0 , 0.0 , 0.015353757179 , 0.230306357679 , 0.214952600501 , 0.199598843322 , 0.245660114858 , 0.046061271536 , 0.0 , 0.0 , 0.0 , 0.046061271536 , 0.184245086144 , 0.199598843322 , 0.076768785893 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 0.033314830233 , 0.216546396512 , 0.149916736047 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.116601905814 , 0.266518641861 , 0.249861226745 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.18323156628 , 0.266518641861 , 0.116601905814 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.249861226745 , 0.266518641861 , 0.033314830233 , 0.0 , 0.0 , 0.0 , 0.0 , 0.116601905814 , 0.266518641861 , 0.233203811628 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.216546396512 , 0.266518641861 , 0.233203811628 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.133259320931 , 0.249861226745 , 0.266518641861 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.049972245349 , 0.216546396512 , 0.133259320931 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 0.028867513459 , 0.230940107676 , 0.216506350946 , 0.043301270189 , 0.0 , 0.0 , 0.0 , 0.0 , 0.115470053838 , 0.230940107676 , 0.230940107676 , 0.057735026919 , 0.0 , 0.0 , 0.0 , 0.129903810568 , 0.230940107676 , 0.230940107676 , 0.202072594216 , 0.0 , 0.0 , 0.0 , 0.101036297108 , 0.230940107676 , 0.230940107676 , 0.230940107676 , 0.173205080757 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.115470053838 , 0.230940107676 , 0.173205080757 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.101036297108 , 0.230940107676 , 0.173205080757 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.057735026919 , 0.230940107676 , 0.230940107676 , 0.101036297108 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.187638837487 , 0.230940107676 , 0.101036297108 , 0.0 }, { 0.0 , 0.0 , 0.153292839092 , 0.272520602831 , 0.255488065154 , 0.238455527477 , 0.017032537677 , 0.0 , 0.0 , 0.017032537677 , 0.255488065154 , 0.255488065154 , 0.085162688385 , 0.170325376769 , 0.119227763738 , 0.0 , 0.0 , 0.102195226062 , 0.272520602831 , 0.017032537677 , 0.0 , 0.017032537677 , 0.136260301415 , 0.0 , 0.0 , 0.136260301415 , 0.2214229898 , 0.0 , 0.0 , 0.068130150708 , 0.136260301415 , 0.0 , 0.0 , 0.119227763738 , 0.102195226062 , 0.0 , 0.0 , 0.102195226062 , 0.102195226062 , 0.0 , 0.0 , 0.085162688385 , 0.153292839092 , 0.0 , 0.0 , 0.2214229898 , 0.017032537677 , 0.0 , 0.0 , 0.0 , 0.272520602831 , 0.085162688385 , 0.204390452123 , 0.204390452123 , 0.0 , 0.0 , 0.0 , 0.0 , 0.136260301415 , 0.255488065154 , 0.170325376769 , 0.017032537677 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 0.0 , 0.239220144161 , 0.068348612617 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.051261459463 , 0.273394450469 , 0.187958684698 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.170871531543 , 0.273394450469 , 0.153784378389 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.222132991006 , 0.273394450469 , 0.11961007208 , 0.0 , 0.0 , 0.0 , 0.0 , 0.205045837852 , 0.273394450469 , 0.273394450469 , 0.068348612617 , 0.0 , 0.0 , 0.0 , 0.017087153154 , 0.222132991006 , 0.205045837852 , 0.273394450469 , 0.085435765772 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.068348612617 , 0.273394450469 , 0.153784378389 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.239220144161 , 0.170871531543 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.153392997769 , 0.214750196877 , 0.168732297546 , 0.046017899331 , 0.0 , 0.0 , 0.0 , 0.061357199108 , 0.245428796431 , 0.1994108971 , 0.092035798662 , 0.214750196877 , 0.015339299777 , 0.0 , 0.0 , 0.061357199108 , 0.245428796431 , 0.030678599554 , 0.0 , 0.168732297546 , 0.107375098439 , 0.0 , 0.0 , 0.122714398216 , 0.245428796431 , 0.0 , 0.0 , 0.153392997769 , 0.076696498885 , 0.0 , 0.0 , 0.122714398216 , 0.245428796431 , 0.0 , 0.0 , 0.214750196877 , 0.061357199108 , 0.0 , 0.0 , 0.122714398216 , 0.245428796431 , 0.0 , 0.015339299777 , 0.245428796431 , 0.015339299777 , 0.0 , 0.0 , 0.061357199108 , 0.245428796431 , 0.015339299777 , 0.168732297546 , 0.230089496654 , 0.0 , 0.0 , 0.0 , 0.0 , 0.168732297546 , 0.245428796431 , 0.184071597323 , 0.046017899331 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 0.0 , 0.102553782894 , 0.205107565788 , 0.102553782894 , 0.0 , 0.0 , 0.0 , 0.0 , 0.04395162124 , 0.234408646615 , 0.234408646615 , 0.131854863721 , 0.0 , 0.0 , 0.0 , 0.087903242481 , 0.219758106202 , 0.234408646615 , 0.234408646615 , 0.087903242481 , 0.0 , 0.0 , 0.073252702067 , 0.234408646615 , 0.234408646615 , 0.234408646615 , 0.234408646615 , 0.029301080827 , 0.0 , 0.0 , 0.058602161654 , 0.117204323308 , 0.117204323308 , 0.234408646615 , 0.234408646615 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.04395162124 , 0.234408646615 , 0.234408646615 , 0.04395162124 , 0.0 , 0.0 , 0.0 , 0.0 , 0.014650540413 , 0.190457025375 , 0.234408646615 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.117204323308 , 0.219758106202 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 0.158173209088 , 0.237259813631 , 0.015817320909 , 0.0 , 0.0 , 0.0 , 0.0 , 0.079086604544 , 0.25307713454 , 0.25307713454 , 0.158173209088 , 0.0 , 0.0 , 0.0 , 0.0 , 0.221442492723 , 0.094903925453 , 0.094903925453 , 0.237259813631 , 0.0 , 0.0 , 0.0 , 0.063269283635 , 0.25307713454 , 0.063269283635 , 0.0 , 0.237259813631 , 0.047451962726 , 0.0 , 0.0 , 0.079086604544 , 0.237259813631 , 0.079086604544 , 0.0 , 0.173990529996 , 0.079086604544 , 0.0 , 0.0 , 0.0 , 0.189807850905 , 0.173990529996 , 0.0 , 0.205625171814 , 0.079086604544 , 0.0 , 0.0 , 0.0 , 0.12653856727 , 0.25307713454 , 0.25307713454 , 0.25307713454 , 0.047451962726 , 0.0 , 0.0 , 0.0 , 0.015817320909 , 0.12653856727 , 0.205625171814 , 0.12653856727 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.067660686713 , 0.253727575174 , 0.202982060139 , 0.016915171678 , 0.0 , 0.0 , 0.0 , 0.0 , 0.202982060139 , 0.186066888461 , 0.219897231817 , 0.219897231817 , 0.016915171678 , 0.0 , 0.0 , 0.050745515035 , 0.202982060139 , 0.0 , 0.0 , 0.236812403495 , 0.101491030069 , 0.0 , 0.0 , 0.135321373426 , 0.202982060139 , 0.0 , 0.0 , 0.186066888461 , 0.135321373426 , 0.0 , 0.0 , 0.135321373426 , 0.202982060139 , 0.0 , 0.0 , 0.135321373426 , 0.135321373426 , 0.0 , 0.0 , 0.101491030069 , 0.219897231817 , 0.0 , 0.0 , 0.186066888461 , 0.118406201748 , 0.0 , 0.0 , 0.067660686713 , 0.270642746852 , 0.118406201748 , 0.169151716782 , 0.253727575174 , 0.033830343356 , 0.0 , 0.0 , 0.0 , 0.118406201748 , 0.219897231817 , 0.202982060139 , 0.033830343356 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.014800609798 , 0.118404878381 , 0.236809756763 , 0.103604268584 , 0.0 , 0.0 , 0.0 , 0.0 , 0.044401829393 , 0.236809756763 , 0.236809756763 , 0.177607317572 , 0.0 , 0.0 , 0.0 , 0.014800609798 , 0.222009146965 , 0.236809756763 , 0.236809756763 , 0.177607317572 , 0.0 , 0.0 , 0.0 , 0.044401829393 , 0.177607317572 , 0.222009146965 , 0.236809756763 , 0.177607317572 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.118404878381 , 0.236809756763 , 0.148006097977 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.162806707775 , 0.236809756763 , 0.207208537168 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.162806707775 , 0.236809756763 , 0.236809756763 , 0.014800609798 , 0.0 , 0.0 , 0.0 , 0.0 , 0.074003048988 , 0.19240792737 , 0.103604268584 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 0.186007393941 , 0.232509242426 , 0.031001232323 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.201508010103 , 0.248009858588 , 0.124004929294 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.217008626264 , 0.248009858588 , 0.139505545456 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.201508010103 , 0.248009858588 , 0.09300369697 , 0.0 , 0.0 , 0.0 , 0.0 , 0.108504313132 , 0.248009858588 , 0.248009858588 , 0.046501848485 , 0.0 , 0.0 , 0.0 , 0.015500616162 , 0.248009858588 , 0.248009858588 , 0.248009858588 , 0.015500616162 , 0.0 , 0.0 , 0.0 , 0.0 , 0.124004929294 , 0.248009858588 , 0.248009858588 , 0.031001232323 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.139505545456 , 0.248009858588 , 0.108504313132 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.059489831361 , 0.223086867605 , 0.163597036243 , 0.01487245784 , 0.0 , 0.0 , 0.0 , 0.029744915681 , 0.208214409764 , 0.208214409764 , 0.237959325445 , 0.118979662723 , 0.0 , 0.0 , 0.0 , 0.118979662723 , 0.223086867605 , 0.029744915681 , 0.044617373521 , 0.193341951924 , 0.0 , 0.0 , 0.0 , 0.059489831361 , 0.237959325445 , 0.0 , 0.0 , 0.178469494084 , 0.104107204882 , 0.0 , 0.0 , 0.104107204882 , 0.237959325445 , 0.0 , 0.0 , 0.178469494084 , 0.118979662723 , 0.0 , 0.0 , 0.044617373521 , 0.237959325445 , 0.089234747042 , 0.01487245784 , 0.208214409764 , 0.133852120563 , 0.0 , 0.0 , 0.0 , 0.223086867605 , 0.237959325445 , 0.237959325445 , 0.237959325445 , 0.029744915681 , 0.0 , 0.0 , 0.0 , 0.059489831361 , 0.193341951924 , 0.208214409764 , 0.089234747042 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.077887667293 , 0.249240535337 , 0.233663001879 , 0.015577533459 , 0.0 , 0.0 , 0.0 , 0.015577533459 , 0.233663001879 , 0.140197801127 , 0.155775334586 , 0.186930401503 , 0.0 , 0.0 , 0.0 , 0.046732600376 , 0.249240535337 , 0.015577533459 , 0.0 , 0.249240535337 , 0.062310133834 , 0.0 , 0.0 , 0.093465200751 , 0.249240535337 , 0.0 , 0.0 , 0.171352868044 , 0.093465200751 , 0.0 , 0.0 , 0.046732600376 , 0.249240535337 , 0.015577533459 , 0.0 , 0.171352868044 , 0.124620267669 , 0.0 , 0.0 , 0.062310133834 , 0.249240535337 , 0.062310133834 , 0.046732600376 , 0.233663001879 , 0.062310133834 , 0.0 , 0.0 , 0.015577533459 , 0.202507934962 , 0.202507934962 , 0.202507934962 , 0.21808546842 , 0.015577533459 , 0.0 , 0.0 , 0.0 , 0.062310133834 , 0.202507934962 , 0.21808546842 , 0.015577533459 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.166689819638 , 0.200027783566 , 0.166689819638 , 0.0 , 0.0 , 0.0 , 0.0 , 0.050006945892 , 0.266703711422 , 0.266703711422 , 0.266703711422 , 0.066675927855 , 0.0 , 0.0 , 0.0 , 0.116682873747 , 0.250034729458 , 0.050006945892 , 0.133351855711 , 0.21669676553 , 0.0 , 0.0 , 0.0 , 0.133351855711 , 0.200027783566 , 0.0 , 0.0 , 0.233365747494 , 0.016668981964 , 0.0 , 0.0 , 0.133351855711 , 0.200027783566 , 0.0 , 0.0 , 0.116682873747 , 0.133351855711 , 0.0 , 0.0 , 0.083344909819 , 0.21669676553 , 0.0 , 0.0 , 0.066675927855 , 0.133351855711 , 0.0 , 0.0 , 0.0 , 0.233365747494 , 0.133351855711 , 0.0 , 0.166689819638 , 0.133351855711 , 0.0 , 0.0 , 0.0 , 0.116682873747 , 0.200027783566 , 0.21669676553 , 0.200027783566 , 0.066675927855 , 0.0 }, { 0.0 , 0.0 , 0.123705034923 , 0.176721478461 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.159049330615 , 0.282754365537 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.106032887077 , 0.282754365537 , 0.08836073923 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.159049330615 , 0.282754365537 , 0.159049330615 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.106032887077 , 0.247410069845 , 0.017672147846 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.035344295692 , 0.282754365537 , 0.070688591384 , 0.0 , 0.0 , 0.0 , 0.0 , 0.017672147846 , 0.070688591384 , 0.247410069845 , 0.212065774153 , 0.070688591384 , 0.017672147846 , 0.0 , 0.0 , 0.123705034923 , 0.282754365537 , 0.282754365537 , 0.282754365537 , 0.282754365537 , 0.08836073923 }, { 0.0 , 0.0 , 0.049820416604 , 0.232495277488 , 0.166068055348 , 0.016606805535 , 0.0 , 0.0 , 0.0 , 0.03321361107 , 0.232495277488 , 0.199281666418 , 0.249102083022 , 0.232495277488 , 0.016606805535 , 0.0 , 0.0 , 0.099640833209 , 0.215888471953 , 0.0 , 0.049820416604 , 0.232495277488 , 0.132854444279 , 0.0 , 0.0 , 0.083034027674 , 0.199281666418 , 0.0 , 0.0 , 0.182674860883 , 0.132854444279 , 0.0 , 0.0 , 0.066427222139 , 0.232495277488 , 0.0 , 0.0 , 0.199281666418 , 0.116247638744 , 0.0 , 0.0 , 0.016606805535 , 0.232495277488 , 0.066427222139 , 0.049820416604 , 0.265708888557 , 0.049820416604 , 0.0 , 0.0 , 0.0 , 0.132854444279 , 0.199281666418 , 0.199281666418 , 0.199281666418 , 0.0 , 0.0 , 0.0 , 0.0 , 0.03321361107 , 0.249102083022 , 0.166068055348 , 0.049820416604 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.064965546943 , 0.178655254094 , 0.243620801037 , 0.129931093886 , 0.0 , 0.0 , 0.0 , 0.0 , 0.211138027566 , 0.259862187773 , 0.178655254094 , 0.211138027566 , 0.113689707151 , 0.0 , 0.0 , 0.048724160207 , 0.259862187773 , 0.19489664083 , 0.0 , 0.064965546943 , 0.129931093886 , 0.0 , 0.0 , 0.097448320415 , 0.259862187773 , 0.081206933679 , 0.0 , 0.064965546943 , 0.129931093886 , 0.0 , 0.0 , 0.113689707151 , 0.146172480622 , 0.0 , 0.0 , 0.146172480622 , 0.113689707151 , 0.0 , 0.0 , 0.064965546943 , 0.162413867358 , 0.0 , 0.032482773472 , 0.243620801037 , 0.032482773472 , 0.0 , 0.0 , 0.016241386736 , 0.259862187773 , 0.19489664083 , 0.227379414301 , 0.162413867358 , 0.0 , 0.0 , 0.0 , 0.0 , 0.064965546943 , 0.227379414301 , 0.227379414301 , 0.016241386736 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.083194790705 , 0.216306455833 , 0.216306455833 , 0.083194790705 , 0.0 , 0.0 , 0.0 , 0.0 , 0.266223330256 , 0.266223330256 , 0.16638958141 , 0.249584372115 , 0.049916874423 , 0.0 , 0.0 , 0.083194790705 , 0.266223330256 , 0.033277916282 , 0.016638958141 , 0.133111665128 , 0.066555832564 , 0.0 , 0.0 , 0.066555832564 , 0.216306455833 , 0.0 , 0.0 , 0.066555832564 , 0.133111665128 , 0.0 , 0.0 , 0.133111665128 , 0.199667497692 , 0.0 , 0.0 , 0.099833748846 , 0.116472706987 , 0.0 , 0.0 , 0.083194790705 , 0.249584372115 , 0.0 , 0.0 , 0.116472706987 , 0.116472706987 , 0.0 , 0.0 , 0.0 , 0.266223330256 , 0.133111665128 , 0.083194790705 , 0.249584372115 , 0.049916874423 , 0.0 , 0.0 , 0.0 , 0.083194790705 , 0.232945413974 , 0.249584372115 , 0.149750623269 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 0.054856318899 , 0.191997116147 , 0.191997116147 , 0.068570398624 , 0.0 , 0.0 , 0.0 , 0.0 , 0.123426717523 , 0.219425275596 , 0.219425275596 , 0.095998558073 , 0.0 , 0.0 , 0.0 , 0.068570398624 , 0.205711195871 , 0.219425275596 , 0.205711195871 , 0.041142239174 , 0.0 , 0.0 , 0.054856318899 , 0.205711195871 , 0.219425275596 , 0.219425275596 , 0.164568956697 , 0.0 , 0.0 , 0.0 , 0.068570398624 , 0.219425275596 , 0.219425275596 , 0.219425275596 , 0.164568956697 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.164568956697 , 0.219425275596 , 0.178283036422 , 0.013714079725 , 0.0 , 0.0 , 0.0 , 0.0 , 0.109712637798 , 0.219425275596 , 0.219425275596 , 0.095998558073 , 0.0 , 0.0 , 0.0 , 0.0 , 0.054856318899 , 0.191997116147 , 0.205711195871 , 0.082284478349 , 0.0 }, { 0.0 , 0.0 , 0.0 , 0.015353757179 , 0.214952600501 , 0.199598843322 , 0.015353757179 , 0.0 , 0.0 , 0.0 , 0.0 , 0.015353757179 , 0.245660114858 , 0.245660114858 , 0.046061271536 , 0.0 , 0.0 , 0.076768785893 , 0.168891328965 , 0.230306357679 , 0.245660114858 , 0.245660114858 , 0.0 , 0.0 , 0.0 , 0.061415028715 , 0.230306357679 , 0.245660114858 , 0.245660114858 , 0.230306357679 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.122830057429 , 0.245660114858 , 0.10747630025 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.153537571786 , 0.245660114858 , 0.046061271536 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.122830057429 , 0.245660114858 , 0.092122543072 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.030707514357 , 0.199598843322 , 0.230306357679 , 0.030707514357 , 0.0 }, { 0.0 , 0.0 , 0.111803398875 , 0.22360679775 , 0.209631372891 , 0.111803398875 , 0.0 , 0.0 , 0.0 , 0.013975424859 , 0.22360679775 , 0.22360679775 , 0.22360679775 , 0.027950849719 , 0.0 , 0.0 , 0.0 , 0.027950849719 , 0.22360679775 , 0.22360679775 , 0.139754248594 , 0.0 , 0.0 , 0.0 , 0.0 , 0.027950849719 , 0.22360679775 , 0.22360679775 , 0.167705098312 , 0.0 , 0.0 , 0.0 , 0.0 , 0.083852549156 , 0.22360679775 , 0.22360679775 , 0.181680523172 , 0.0 , 0.0 , 0.0 , 0.0 , 0.013975424859 , 0.22360679775 , 0.22360679775 , 0.153729673453 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.22360679775 , 0.22360679775 , 0.139754248594 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.097827974016 , 0.209631372891 , 0.209631372891 , 0.0 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 0.0 , 0.189169998336 , 0.173405831808 , 0.015764166528 , 0.0 , 0.0 , 0.0 , 0.0 , 0.015764166528 , 0.252226664448 , 0.252226664448 , 0.110349165696 , 0.0 , 0.0 , 0.0 , 0.015764166528 , 0.220698331392 , 0.252226664448 , 0.252226664448 , 0.110349165696 , 0.0 , 0.0 , 0.015764166528 , 0.220698331392 , 0.252226664448 , 0.220698331392 , 0.252226664448 , 0.126113332224 , 0.0 , 0.0 , 0.07882083264 , 0.189169998336 , 0.047292499584 , 0.126113332224 , 0.252226664448 , 0.110349165696 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.126113332224 , 0.252226664448 , 0.063056666112 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.126113332224 , 0.252226664448 , 0.015764166528 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.173405831808 , 0.189169998336 , 0.0 , 0.0 }, { 0.0 , 0.0 , 0.0 , 0.152074766168 , 0.197697196019 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.197697196019 , 0.243319625869 , 0.076037383084 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.243319625869 , 0.243319625869 , 0.060829906467 , 0.0 , 0.0 , 0.0 , 0.0 , 0.04562242985 , 0.243319625869 , 0.243319625869 , 0.106452336318 , 0.0 , 0.0 , 0.0 , 0.0 , 0.106452336318 , 0.243319625869 , 0.243319625869 , 0.136867289551 , 0.0 , 0.0 , 0.0 , 0.0 , 0.136867289551 , 0.243319625869 , 0.243319625869 , 0.152074766168 , 0.0 , 0.0 , 0.0 , 0.0 , 0.152074766168 , 0.243319625869 , 0.243319625869 , 0.212904672635 , 0.0 , 0.0 , 0.0 , 0.0 , 0.015207476617 , 0.076037383084 , 0.106452336318 , 0.228112149252 , 0.121659812934 , 0.0 }, { 0.0 , 0.0 , 0.070492489073 , 0.197378969404 , 0.140984978146 , 0.098689484702 , 0.0 , 0.0 , 0.0 , 0.0 , 0.225575965034 , 0.225575965034 , 0.225575965034 , 0.225575965034 , 0.042295493444 , 0.0 , 0.0 , 0.042295493444 , 0.225575965034 , 0.140984978146 , 0.028196995629 , 0.225575965034 , 0.098689484702 , 0.0 , 0.0 , 0.098689484702 , 0.225575965034 , 0.042295493444 , 0.0 , 0.169181973775 , 0.112787982517 , 0.0 , 0.0 , 0.112787982517 , 0.225575965034 , 0.014098497815 , 0.0 , 0.169181973775 , 0.112787982517 , 0.0 , 0.0 , 0.098689484702 , 0.225575965034 , 0.070492489073 , 0.028196995629 , 0.225575965034 , 0.056393991258 , 0.0 , 0.0 , 0.028196995629 , 0.225575965034 , 0.211477467219 , 0.197378969404 , 0.18328047159 , 0.0 , 0.0 , 0.0 , 0.0 , 0.098689484702 , 0.211477467219 , 0.18328047159 , 0.028196995629 , 0.0 , 0.0 }, }, _y{ 1 , 0 , 0 , 1 , 0 , 0 , 0 , 1 , 1 , 0 , 1 , 0 , 1 , 0 , 0 , 1 , 1 , 0 , 0 , 0 , 1 , 0 , 0 , 0 , 1 , 1 , 1 , 1 , 1 , 0 }, _tp(0), _tn(0), _fp(0), _fn(0) {} template<class Classifier> void test(Classifier clf) { for (uint16_t i = 0; i < 30; i++) { int predicted = clf.predict(_x[i]); int actual = _y[i]; if (predicted > 0 && predicted == actual) _tp++; else if (predicted > 0 && predicted != actual) _fp++; else if (predicted <= 0 && predicted == actual) _tn++; else _fn++; } } String dump() { return String("Support:\t") + support() + "\nTP:\t" + _tp + "\nTN:\t" + _tn + "\nFP:\t" + _fp + "\nFN:\t" + _fn + "\nAccuracy:\t" + accuracy() + "\nPrecision:\t" + precision() + "\nRecall:\t" + recall() + "\nSpecificity:\t" + specificity() ; } float accuracy() { return (1.0f * _tp + _tn) / support(); } float precision() { return (1.0f * _tp) / (_tp + _fp); } float recall() { return (1.0f * _tp) / (_tp + _fn); } float specificity() { return (1.0f * _tn) / (_tn + _fp); } uint16_t support() { return _tp + _tn + _fp + _fn; } protected: float _x[30][64]; int _y[30]; uint16_t _tp, _fp, _tn, _fn; }; } } }
30,180
C++
.h
103
269.135922
985
0.516463
eloquentarduino/EloquentMicroML
34
11
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,696
BreastCancerTest.h
eloquentarduino_EloquentMicroML/examples/OnboardSEFRExample/BreastCancerTest.h
#pragma once namespace Eloquent { namespace ML { namespace Test { /** * A tailor made test set */ class TestSet { public: TestSet() : _x{ { 0.020360148162 , 0.04148169555 , 0.129209032629 , 0.612655934782 , 0.000213025357 , 0.000110278068 , 1.4206545e-05 , 1.6511546e-05 , 0.000280843977 , 0.000143334445 , 0.000696909128 , 0.004250105517 , 0.004435254509 , 0.041710531383 , 2.3154026e-05 , 3.0435166e-05 , 1.1042369e-05 , 1.092171e-05 , 3.7466667e-05 , 1.1789206e-05 , 0.022717157242 , 0.054691764093 , 0.143147215186 , 0.761607258824 , 0.000273770869 , 0.000197069259 , 4.2625875e-05 , 4.9532556e-05 , 0.000402335001 , 0.000186979679 }, { 0.01436502592 , 0.027715507474 , 0.096808284634 , 0.548660981985 , 0.000136732911 , 0.000276232762 , 0.000262052198 , 9.8491506e-05 , 0.000234036939 , 9.5032832e-05 , 0.000343100459 , 0.00184347323 , 0.002350745413 , 0.027600218341 , 8.24202e-06 , 8.3204167e-05 , 8.9268375e-05 , 1.6509404e-05 , 2.0625226e-05 , 1.1621145e-05 , 0.017397130107 , 0.046899619137 , 0.112579837972 , 0.820166889229 , 0.000213630763 , 0.001219759023 , 0.001273944915 , 0.000254788983 , 0.000503352353 , 0.00023922495 }, { 0.016337610679 , 0.019423875965 , 0.105925033558 , 0.636848392299 , 0.000132023571 , 0.000187992747 , 0.000143168417 , 8.5570379e-05 , 0.00023783838 , 8.4529377e-05 , 0.000350266616 , 0.001244303782 , 0.001879927466 , 0.01587222147 , 8.320669e-06 , 4.3783327e-05 , 4.8743396e-05 , 1.6937718e-05 , 2.6135278e-05 , 5.637333e-06 , 0.019019722178 , 0.02840098888 , 0.118380318461 , 0.753073223894 , 0.000188115217 , 0.000586757817 , 0.000594963363 , 0.000209180203 , 0.000431954669 , 0.000124430378 }, { 0.010835045096 , 0.013248826145 , 0.070188437743 , 0.551326470148 , 6.1814371e-05 , 5.6798021e-05 , 6.5866556e-05 , 4.4756085e-05 , 0.000121228445 , 3.6348306e-05 , 0.000503927362 , 0.000685028365 , 0.003390755556 , 0.053433560914 , 7.295282e-06 , 1.4853519e-05 , 2.3598418e-05 , 1.2197011e-05 , 1.0450728e-05 , 1.313421e-06 , 0.013329735007 , 0.016559347079 , 0.086842178495 , 0.824596151389 , 0.000101136077 , 0.000137882186 , 0.000190742642 , 0.000102484558 , 0.000178673737 , 4.3063742e-05 }, { 0.02058191747 , 0.030113955944 , 0.130635474204 , 0.631219278146 , 0.000229497487 , 0.000163137499 , 2.1937855e-05 , 2.6106857e-05 , 0.000555124873 , 0.0001408556 , 0.001043869521 , 0.002916277588 , 0.006702783742 , 0.070063518466 , 1.5206738e-05 , 2.2241423e-05 , 1.551233e-05 , 1.658089e-05 , 8.4655025e-05 , 1.2047606e-05 , 0.022302136727 , 0.035315089463 , 0.141381785096 , 0.745968021561 , 0.000258032889 , 0.000199666861 , 4.387571e-05 , 5.2193476e-05 , 0.000719861165 , 0.000162307746 }, { 0.021446154855 , 0.041163125887 , 0.139641094685 , 0.595000752143 , 0.000253201917 , 0.000335623179 , 0.000743454034 , 0.000103917297 , 0.000501415804 , 0.000191112816 , 0.00077765767 , 0.002836051489 , 0.004477350969 , 0.041970711738 , 2.2681286e-05 , 0.00020441423 , 0.000721601711 , 7.8905888e-05 , 9.9689348e-05 , 2.2705039e-05 , 0.024488853312 , 0.053799469206 , 0.155579038984 , 0.771244487908 , 0.000352012421 , 0.001036797718 , 0.002973816134 , 0.000415669188 , 0.001004256759 , 0.000279092169 }, { 0.012310701224 , 0.023145671701 , 0.080281694336 , 0.484466869923 , 0.00010893223 , 0.000122524487 , 0.000109514755 , 6.6728272e-05 , 0.000184951781 , 6.3980695e-05 , 0.000413107521 , 0.001143691328 , 0.002841752562 , 0.035398120396 , 7.554382e-06 , 2.5708783e-05 , 2.8864128e-05 , 1.2524294e-05 , 1.5873814e-05 , 3.496123e-06 , 0.016592262138 , 0.032495202678 , 0.108543879874 , 0.862428698502 , 0.000179709053 , 0.000394272537 , 0.000390680298 , 0.000166602234 , 0.000328447179 , 0.000100097263 }, { 0.016148142414 , 0.019605587013 , 0.104580998668 , 0.602104596382 , 0.000138163775 , 0.00012184142 , 8.833905e-05 , 3.6839206e-05 , 0.00022446588 , 8.0981929e-05 , 0.000353248991 , 0.000977465152 , 0.002476495202 , 0.026627683797 , 7.35444e-06 , 1.9123153e-05 , 3.1117001e-05 , 7.584937e-06 , 1.9136554e-05 , 3.24571e-06 , 0.018439704532 , 0.027739962486 , 0.120447721173 , 0.780739234036 , 0.000200210164 , 0.00028892444 , 0.000408728916 , 8.7749408e-05 , 0.000368124043 , 0.00011124127 }, { 0.012306261714 , 0.018062011584 , 0.07993632269 , 0.549556989799 , 9.5120459e-05 , 0.000114194747 , 0.000108171288 , 6.7956332e-05 , 0.000169577107 , 5.6536857e-05 , 0.000353543589 , 0.000962080284 , 0.002288077892 , 0.033538955276 , 3.061088e-06 , 2.3884689e-05 , 2.1517135e-05 , 1.0641445e-05 , 1.5200868e-05 , 3.436718e-06 , 0.014949891015 , 0.025683360613 , 0.096793642441 , 0.824460973431 , 0.000114445724 , 0.000358897775 , 0.000300085389 , 0.00015343089 , 0.000309371556 , 9.1523116e-05 }, { 0.016419681157 , 0.021414000842 , 0.105291205417 , 0.606570388062 , 0.000133040467 , 9.803918e-05 , 5.6798414e-05 , 2.5491555e-05 , 0.000284470976 , 8.1660548e-05 , 0.000310742466 , 0.001717224988 , 0.001971730046 , 0.022111837291 , 8.167423e-06 , 2.4793719e-05 , 2.7461917e-05 , 9.615092e-06 , 2.6983009e-05 , 3.567176e-06 , 0.018704753451 , 0.0340708384 , 0.120109967661 , 0.777061410739 , 0.000188415841 , 0.000274071845 , 0.000310195143 , 0.000104429172 , 0.000462350855 , 0.000108424628 }, { 0.02513116435 , 0.051636018504 , 0.158556919053 , 0.619080293113 , 0.000263699382 , 0.000182228538 , 4.8692397e-05 , 1.8143131e-05 , 0.000542423496 , 0.000199399661 , 0.000479258295 , 0.00293350231 , 0.00335450144 , 0.025158760797 , 2.7498326e-05 , 5.0470835e-05 , 4.8692397e-05 , 1.8143131e-05 , 7.8925838e-05 , 7.917114e-06 , 0.027486061156 , 0.067335330544 , 0.175574728002 , 0.742651049986 , 0.000397695463 , 0.000416093094 , 0.000210959506 , 7.8619211e-05 , 0.00095207742 , 0.000227180084 }, { 0.013991948221 , 0.014565388721 , 0.091530661276 , 0.623043104164 , 0.000108189108 , 0.000127972805 , 9.5248467e-05 , 6.7513062e-05 , 0.00020223335 , 6.065089e-05 , 0.000488858027 , 0.000704567229 , 0.003645170117 , 0.040867193027 , 5.264184e-06 , 4.2166991e-05 , 4.2396368e-05 , 1.5511566e-05 , 2.3195668e-05 , 4.626709e-06 , 0.015616696306 , 0.017432591226 , 0.104557317987 , 0.76802797746 , 0.000122047253 , 0.000295226285 , 0.000248873177 , 0.000133516063 , 0.000301151836 , 8.0979356e-05 }, { 0.011359644435 , 0.016479284436 , 0.072823688106 , 0.565713129218 , 5.8188041e-05 , 4.7289306e-05 , 2.3392926e-05 , 2.3563108e-05 , 0.000108349168 , 4.0396938e-05 , 0.000269100191 , 0.000841691507 , 0.001748619424 , 0.028725293137 , 2.856929e-06 , 6.572568e-06 , 7.807096e-06 , 5.382713e-06 , 1.0352735e-05 , 2.157056e-06 , 0.013607464214 , 0.024024017069 , 0.087785516918 , 0.815455124845 , 8.3743696e-05 , 0.000109980078 , 0.000103456437 , 7.0731868e-05 , 0.000209040149 , 5.9932406e-05 }, { 0.011215358643 , 0.009606781308 , 0.073407299029 , 0.609663576546 , 6.2855798e-05 , 7.3854126e-05 , 6.3034529e-05 , 5.0765935e-05 , 0.000111004603 , 3.9250564e-05 , 0.000383186101 , 0.000525021769 , 0.0029713998 , 0.039001617136 , 3.591851e-06 , 1.9360377e-05 , 2.174771e-05 , 8.642912e-06 , 1.2287744e-05 , 2.38861e-06 , 0.012772870031 , 0.012460091105 , 0.086109953383 , 0.783223964424 , 8.0109705e-05 , 0.000179496804 , 0.000158878928 , 9.2940024e-05 , 0.000175922188 , 5.0548904e-05 }, { 0.017420546421 , 0.02835375394 , 0.11090476341 , 0.61848988594 , 0.000144021948 , 8.2762718e-05 , 4.5910398e-05 , 3.4447921e-05 , 0.00029034244 , 8.9325666e-05 , 0.000491313848 , 0.001450351222 , 0.003301133059 , 0.035491338932 , 1.2593603e-05 , 1.318941e-05 , 2.0399581e-05 , 1.3110776e-05 , 4.8662603e-05 , 3.60811e-06 , 0.019416650698 , 0.033979138721 , 0.12371309919 , 0.765475746364 , 0.000188873806 , 0.000131863858 , 0.000137247291 , 9.5510565e-05 , 0.000499933389 , 0.000106398407 }, { 0.01250420285 , 0.023684026582 , 0.083186488425 , 0.566559067245 , 9.7952456e-05 , 0.000137167837 , 0.000140951778 , 6.3329402e-05 , 0.000198054877 , 6.086124e-05 , 0.000318194983 , 0.000888365993 , 0.002475900963 , 0.02799255865 , 4.821944e-06 , 3.6463425e-05 , 4.0771957e-05 , 9.373852e-06 , 1.5969948e-05 , 4.700686e-06 , 0.015015363258 , 0.031931296549 , 0.106724317312 , 0.811139211028 , 0.000144305725 , 0.000565613082 , 0.000604226473 , 0.000147229679 , 0.000362742281 , 0.000115324182 }, { 0.016204566863 , 0.013102583997 , 0.10528776592 , 0.669740856584 , 0.000154620073 , 0.000125396759 , 8.2364232e-05 , 7.851969e-05 , 0.000287801731 , 7.9537715e-05 , 0.000491167248 , 0.001214444257 , 0.003176238826 , 0.039104146938 , 1.6048869e-05 , 3.4002044e-05 , 1.3917004e-05 , 9.867659e-06 , 3.0804247e-05 , 7.38248e-06 , 0.016863289093 , 0.014958983009 , 0.109419750818 , 0.725193291598 , 0.000173782901 , 0.000165159628 , 0.00010226962 , 8.8711919e-05 , 0.000324570408 , 8.6124937e-05 }, { 0.016324654525 , 0.029132789774 , 0.110899010337 , 0.551921988799 , 0.000203700812 , 0.000405829196 , 0.000345076322 , 0.000150381231 , 0.000371235795 , 0.000139288471 , 0.000708449981 , 0.001652478164 , 0.004924556466 , 0.03892472353 , 1.3022557e-05 , 0.000106610572 , 8.0922828e-05 , 2.668838e-05 , 8.5239855e-05 , 1.3162646e-05 , 0.021313537563 , 0.037881203582 , 0.141332626347 , 0.811515444293 , 0.000299904774 , 0.001238357987 , 0.000981909386 , 0.00036809094 , 0.000948888413 , 0.000247299933 }, { 0.018206267349 , 0.030649631328 , 0.115580017296 , 0.634402295495 , 0.000131017515 , 7.5674326e-05 , 5.9705611e-05 , 3.5897415e-05 , 0.000244038031 , 9.1224507e-05 , 0.000438978701 , 0.001517832846 , 0.002947451416 , 0.029216954233 , 1.4941695e-05 , 1.4835452e-05 , 3.3209133e-05 , 1.4431405e-05 , 3.5140833e-05 , 3.454523e-06 , 0.019848211884 , 0.038376429141 , 0.125560464472 , 0.751270112427 , 0.000207657691 , 0.000147259888 , 0.000232447834 , 0.000112054666 , 0.000386339891 , 0.000106903467 }, { 0.011009156504 , 0.015153441073 , 0.07441267564 , 0.652479851468 , 7.0032069e-05 , 0.000103232457 , 0.000111647833 , 8.4672518e-05 , 9.4183046e-05 , 4.163882e-05 , 0.000299149331 , 0.001677311279 , 0.003343671041 , 0.038676146673 , 4.348905e-06 , 3.4871936e-05 , 1.2300283e-05 , 1.0622971e-05 , 1.761465e-05 , 5.988751e-06 , 0.011718123128 , 0.018859664965 , 0.081444702308 , 0.7481615258 , 8.0234271e-05 , 0.000162370649 , 0.000140179417 , 0.000106114435 , 0.00013320503 , 5.304569e-05 }, { 0.010386336869 , 0.011301629318 , 0.068144638998 , 0.610567035744 , 5.2685126e-05 , 5.9494009e-05 , 8.3157668e-05 , 4.3147109e-05 , 9.4710444e-05 , 3.1806413e-05 , 0.000476007884 , 0.001031936425 , 0.003143248213 , 0.052205155872 , 5.99963e-06 , 1.5191622e-05 , 2.8357323e-05 , 1.0665389e-05 , 1.2797351e-05 , 2.353529e-06 , 0.011893220779 , 0.01521394643 , 0.078078910695 , 0.783021527559 , 7.4674469e-05 , 0.000118150861 , 0.000192323035 , 8.3157668e-05 , 0.000130652416 , 4.1416983e-05 }, { 0.013891208266 , 0.022822628081 , 0.089855784249 , 0.629665096985 , 8.5266555e-05 , 8.1769999e-05 , 2.9473685e-05 , 2.8095966e-05 , 0.000160100451 , 5.573586e-05 , 0.000353551204 , 0.00105561781 , 0.00216539423 , 0.032077099252 , 4.625335e-06 , 1.7273746e-05 , 1.0651193e-05 , 8.177e-06 , 1.9810649e-05 , 2.748787e-06 , 0.015306933322 , 0.027658896896 , 0.097770542447 , 0.763636394216 , 0.000105941841 , 0.000167796674 , 8.7309379e-05 , 6.5997492e-05 , 0.000239628093 , 6.8847945e-05 }, { 0.007925414861 , 0.004572863049 , 0.054098996384 , 0.440986118736 , 5.2160596e-05 , 0.000122295451 , 0.000132207727 , 6.4804254e-05 , 0.000106567974 , 3.4675342e-05 , 0.000482397403 , 0.000398825907 , 0.003783845928 , 0.067579690923 , 2.819051e-06 , 2.1604355e-05 , 2.3670514e-05 , 6.991458e-06 , 1.3229584e-05 , 2.728299e-06 , 0.011181046647 , 0.007634654783 , 0.081324712806 , 0.889461512215 , 7.1456492e-05 , 0.000293227133 , 0.000313624394 , 0.000116920795 , 0.000202695018 , 5.2380869e-05 }, { 0.021607044058 , 0.047962387286 , 0.137221280331 , 0.614996055916 , 0.000238328093 , 0.000177444853 , 4.9583201e-05 , 3.4333856e-05 , 0.000391962965 , 0.000157492865 , 0.000536694776 , 0.004590783476 , 0.003789507991 , 0.032416273177 , 2.4015436e-05 , 4.0063774e-05 , 3.9127811e-05 , 2.130571e-05 , 5.2025836e-05 , 9.672377e-06 , 0.02376432421 , 0.072046308555 , 0.153018506414 , 0.754933911252 , 0.000353383034 , 0.000379863934 , 0.000214860537 , 0.000148772431 , 0.000657000241 , 0.000210272037 }, { 0.014018671469 , 0.019862445681 , 0.091520529457 , 0.569049488805 , 0.000123262123 , 0.000131032533 , 0.000130500313 , 7.8129877e-05 , 0.000226512778 , 7.2137082e-05 , 0.000305600651 , 0.000951289802 , 0.0020192422 , 0.025812663867 , 6.95292e-06 , 2.4865312e-05 , 3.0921975e-05 , 1.2932943e-05 , 1.8553185e-05 , 3.877754e-06 , 0.016679770837 , 0.029751090932 , 0.109424406003 , 0.808335543956 , 0.000190108939 , 0.000443445599 , 0.000532858537 , 0.000222255019 , 0.000415131501 , 0.000125497446 }, { 0.008633159613 , 0.009713444105 , 0.056338887441 , 0.515072352814 , 4.1064485e-05 , 4.6903491e-05 , 4.9228154e-05 , 3.6241949e-05 , 7.2110129e-05 , 2.4892125e-05 , 0.000359547851 , 0.000363513453 , 0.0025006079 , 0.043781149989 , 2.025647e-06 , 7.530084e-06 , 1.0342471e-05 , 6.244683e-06 , 6.317613e-06 , 7.73976e-07 , 0.011331591762 , 0.012115595697 , 0.075619914453 , 0.850553106505 , 5.4378878e-05 , 0.000106478674 , 0.000122477824 , 8.1545526e-05 , 0.000116278723 , 3.0033732e-05 }, { 0.01494386853 , 0.024608948832 , 0.101875170752 , 0.629427470574 , 0.000123099165 , 0.0002495724 , 0.000231613636 , 8.7344898e-05 , 0.000225192017 , 8.3611652e-05 , 0.000230851749 , 0.001272351224 , 0.002243212894 , 0.020908355023 , 6.997388e-06 , 6.4608014e-05 , 5.9873431e-05 , 1.7719314e-05 , 2.1343719e-05 , 8.808502e-06 , 0.016358801457 , 0.034840002305 , 0.118419001899 , 0.759383617879 , 0.000179696482 , 0.000840796682 , 0.000755683024 , 0.000240320916 , 0.000391392216 , 0.000155751463 }, { 0.009751147532 , 0.009202155312 , 0.064676512049 , 0.562586313381 , 5.7461186e-05 , 8.8152465e-05 , 0.000103210537 , 5.2755538e-05 , 9.9707444e-05 , 3.162718e-05 , 0.000328820197 , 0.000346806228 , 0.002244593906 , 0.037415126938 , 3.290816e-06 , 2.0882618e-05 , 2.9039074e-05 , 8.862303e-06 , 1.2694792e-05 , 1.848274e-06 , 0.011931430921 , 0.011147156321 , 0.078741169884 , 0.819305532591 , 8.778647e-05 , 0.000266130514 , 0.000384033129 , 0.000124333667 , 0.000198630614 , 4.8023748e-05 }, { 0.012823065226 , 0.020770242321 , 0.084503826318 , 0.579814241563 , 0.000101682222 , 0.000128317412 , 0.000109924382 , 7.8335221e-05 , 0.000169441451 , 5.7729821e-05 , 0.000310339001 , 0.001111390159 , 0.002125609594 , 0.030574074327 , 5.815494e-06 , 2.0041462e-05 , 2.0084842e-05 , 1.0272334e-05 , 1.6484319e-05 , 2.797129e-06 , 0.01501808248 , 0.028969022184 , 0.099426473265 , 0.802612830869 , 0.00014297978 , 0.000296370709 , 0.000262360956 , 0.000140029954 , 0.000288128549 , 7.7311458e-05 }, { 0.009711167199 , 0.01255507894 , 0.062290346915 , 0.54938043673 , 4.6099962e-05 , 6.157554e-05 , 7.4952647e-05 , 4.2229792e-05 , 9.9715613e-05 , 2.8740358e-05 , 0.000280561849 , 0.000338818641 , 0.001559811556 , 0.029434741801 , 1.976953e-06 , 9.404821e-06 , 1.8942392e-05 , 6.126919e-06 , 1.0027725e-05 , 1.703794e-06 , 0.012539761641 , 0.015526634834 , 0.07806716429 , 0.828665844621 , 6.3771019e-05 , 0.000163690862 , 0.000293836841 , 9.9868786e-05 , 0.000201984109 , 4.7422356e-05 }, }, _y{ 1 , 0 , 1 , 0 , 1 , 1 , 0 , 1 , 0 , 1 , 1 , 1 , 0 , 0 , 1 , 0 , 1 , 0 , 1 , 0 , 0 , 1 , 0 , 1 , 0 , 0 , 0 , 0 , 0 , 0 }, _tp(0), _tn(0), _fp(0), _fn(0) {} template<class Classifier> void test(Classifier clf) { for (uint16_t i = 0; i < 30; i++) { int predicted = clf.predict(_x[i]); int actual = _y[i]; if (predicted > 0 && predicted == actual) _tp++; else if (predicted > 0 && predicted != actual) _fp++; else if (predicted <= 0 && predicted == actual) _tn++; else _fn++; } } String dump() { return String("Support:\t") + support() + "\nTP:\t" + _tp + "\nTN:\t" + _tn + "\nFP:\t" + _fp + "\nFN:\t" + _fn + "\nAccuracy:\t" + accuracy() + "\nPrecision:\t" + precision() + "\nRecall:\t" + recall() + "\nSpecificity:\t" + specificity() ; } float accuracy() { return (1.0f * _tp + _tn) / support(); } float precision() { return (1.0f * _tp) / (_tp + _fp); } float recall() { return (1.0f * _tp) / (_tp + _fn); } float specificity() { return (1.0f * _tn) / (_tn + _fp); } uint16_t support() { return _tp + _tn + _fp + _fn; } protected: float _x[30][30]; int _y[30]; uint16_t _tp, _fp, _tn, _fn; }; } } }
20,423
C++
.h
103
174.417476
599
0.570205
eloquentarduino/EloquentMicroML
34
11
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,697
IrisTest.h
eloquentarduino_EloquentMicroML/examples/OnboardSEFRExample/IrisTest.h
#pragma once namespace Eloquent { namespace ML { namespace Test { /** * A tailor made test set */ class TestSet { public: TestSet() : _x{ { 0.726348457434 , 0.380468239608 , 0.541879007927 , 0.184469449507 }, { 0.759117071609 , 0.393114197798 , 0.488003831749 , 0.176223605909 }, { 0.769230769231 , 0.307692307692 , 0.538461538462 , 0.153846153846 }, { 0.765783108489 , 0.603790527847 , 0.220898973603 , 0.01472659824 }, { 0.825122952481 , 0.528078689588 , 0.198029508595 , 0.033004918099 }, { 0.786090375542 , 0.571702091303 , 0.232253974592 , 0.035731380706 }, { 0.803735188074 , 0.55070744368 , 0.223259774465 , 0.029767969929 }, { 0.755192851801 , 0.339289542114 , 0.536296373018 , 0.164172359087 }, { 0.753849162023 , 0.31524601321 , 0.548253936017 , 0.178182529206 }, { 0.770118538251 , 0.353497033951 , 0.504995762788 , 0.164123622906 }, { 0.817689418059 , 0.517313713466 , 0.250313087161 , 0.033375078288 }, { 0.743148202166 , 0.365055257204 , 0.534545198049 , 0.169489940845 }, { 0.80218491852 , 0.545485744593 , 0.240655475556 , 0.032087396741 }, { 0.806423656152 , 0.531506500645 , 0.256589345139 , 0.036655620734 }, { 0.803274123688 , 0.551266555472 , 0.220506622189 , 0.04725141904 }, { 0.812283631381 , 0.536107196711 , 0.227439416787 , 0.032491345255 }, { 0.803772773015 , 0.551608765795 , 0.220643506318 , 0.031520500903 }, { 0.802512599037 , 0.559892510956 , 0.205293920684 , 0.018663083699 }, { 0.759165471524 , 0.371836149318 , 0.511274705312 , 0.154931728882 }, { 0.822105846519 , 0.513816154074 , 0.239780871901 , 0.051381615407 }, { 0.773811110254 , 0.597327874582 , 0.203634502699 , 0.054302534053 }, { 0.761851879395 , 0.340112446158 , 0.530575416007 , 0.14964947631 }, { 0.778674472842 , 0.594624142898 , 0.198208047633 , 0.028315435376 }, { 0.775770745958 , 0.607124931619 , 0.168645814339 , 0.033729162868 }, { 0.805977915082 , 0.521515121524 , 0.268659305027 , 0.079017442655 }, { 0.764672694551 , 0.314865227168 , 0.53976896086 , 0.157432613584 }, { 0.807795684898 , 0.538530456599 , 0.237586966146 , 0.031678262153 }, { 0.798370248271 , 0.557352814831 , 0.22595384385 , 0.03012717918 }, { 0.772429247764 , 0.337060035388 , 0.519634221223 , 0.140441681412 }, { 0.802124132514 , 0.546902817623 , 0.23699122097 , 0.036460187842 }, }, _y{ 1 , 1 , 1 , 0 , 0 , 0 , 0 , 1 , 1 , 1 , 0 , 1 , 0 , 0 , 0 , 0 , 0 , 0 , 1 , 0 , 0 , 1 , 0 , 0 , 0 , 1 , 0 , 0 , 1 , 0 }, _tp(0), _tn(0), _fp(0), _fn(0) {} template<class Classifier> void test(Classifier clf) { for (uint16_t i = 0; i < 30; i++) { int predicted = clf.predict(_x[i]); int actual = _y[i]; if (predicted > 0 && predicted == actual) _tp++; else if (predicted > 0 && predicted != actual) _fp++; else if (predicted <= 0 && predicted == actual) _tn++; else _fn++; } } String dump() { return String("Support:\t") + support() + "\nTP:\t" + _tp + "\nTN:\t" + _tn + "\nFP:\t" + _fp + "\nFN:\t" + _fn + "\nAccuracy:\t" + accuracy() + "\nPrecision:\t" + precision() + "\nRecall:\t" + recall() + "\nSpecificity:\t" + specificity() ; } float accuracy() { return (1.0f * _tp + _tn) / support(); } float precision() { return (1.0f * _tp) / (_tp + _fp); } float recall() { return (1.0f * _tp) / (_tp + _fn); } float specificity() { return (1.0f * _tn) / (_tn + _fp); } uint16_t support() { return _tp + _tn + _fp + _fn; } protected: float _x[30][4]; int _y[30]; uint16_t _tp, _fp, _tn, _fn; }; } } }
6,057
C++
.h
103
34.941748
211
0.371174
eloquentarduino/EloquentMicroML
34
11
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,698
MNIST.h
eloquentarduino_EloquentMicroML/examples/PrincipalFFTExample/MNIST.h
#define SAMPLES 35 float X[][64] = { {0.0, 0.0, 5.0, 13.0, 9.0, 1.0, 0.0, 0.0, 0.0, 0.0, 13.0, 15.0, 10.0, 15.0, 5.0, 0.0, 0.0, 3.0, 15.0, 2.0, 0.0, 11.0, 8.0, 0.0, 0.0, 4.0, 12.0, 0.0, 0.0, 8.0, 8.0, 0.0, 0.0, 5.0, 8.0, 0.0, 0.0, 9.0, 8.0, 0.0, 0.0, 4.0, 11.0, 0.0, 1.0, 12.0, 7.0, 0.0, 0.0, 2.0, 14.0, 5.0, 10.0, 12.0, 0.0, 0.0, 0.0, 0.0, 6.0, 13.0, 10.0, 0.0, 0.0, 0.0}, {0,0,0,13,9,0,0,0,0,0,0,14,15,1,0,0,0,0,0,13,16,0,0,0,0,0,0,11,16,0,0,0,0,0,0,10,16,2,0,0,0,0,0,14,16,1,0,0,0,0,0,15,16,1,0,0,0,0,0,12,15,0,0,0}, {0,0,2,16,10,0,0,0,0,0,3,16,16,1,0,0,0,0,5,16,14,0,0,0,0,0,3,16,13,0,0,0,0,0,1,16,15,0,0,0,0,0,1,16,16,0,0,0,0,0,2,16,15,2,0,0,0,0,0,15,16,11,0,0}, {0,0,8,16,8,0,0,0,0,0,10,16,16,3,0,0,0,0,2,4,14,4,0,0,0,0,0,8,14,0,0,0,0,0,5,16,8,0,0,0,0,2,15,14,7,6,3,0,0,5,16,15,16,15,3,0,0,0,10,13,8,2,0,0}, {0,0,0,11,5,3,11,0,0,0,7,14,2,12,9,0,0,2,15,6,3,16,5,0,0,7,16,8,13,16,13,0,0,7,16,16,16,7,1,0,0,0,4,10,13,0,0,0,0,0,0,12,6,0,0,0,0,0,0,12,0,0,0,0}, {0,0,4,16,16,4,0,0,0,0,12,11,7,11,0,0,0,0,9,2,5,12,0,0,0,0,0,0,7,11,0,0,0,0,0,0,13,6,0,0,0,0,0,2,16,1,0,0,0,0,1,15,15,10,1,0,0,0,5,16,8,11,11,0}, {0,0,3,10,12,12,2,0,0,1,13,12,6,13,8,0,0,8,16,8,8,14,1,0,0,5,14,16,16,3,0,0,0,0,12,16,15,2,0,0,0,3,16,2,15,10,0,0,0,4,16,8,12,12,0,0,0,0,9,16,15,3,0,0}, {0,0,13,14,10,2,0,0,0,0,6,16,16,16,0,0,0,0,0,16,16,16,4,0,0,0,4,16,16,14,2,0,0,0,8,16,16,7,0,0,0,3,15,16,16,4,0,0,0,1,16,16,14,1,0,0,0,0,14,16,13,3,0,0}, {0,0,0,0,3,15,6,0,0,0,0,0,11,16,7,0,0,0,0,9,16,16,4,0,0,0,10,16,16,16,4,0,0,4,16,7,8,16,4,0,0,1,4,0,10,16,2,0,0,0,0,0,7,16,1,0,0,0,0,0,3,16,1,0}, {0,1,7,15,16,16,14,0,0,10,16,11,6,3,1,0,0,7,16,16,12,0,0,0,0,8,16,12,16,4,0,0,0,1,4,0,13,8,0,0,0,0,0,0,15,8,0,0,0,0,0,7,16,2,0,0,0,0,13,15,5,0,0,0}, {0,0,0,13,8,0,0,0,0,0,2,15,1,0,0,0,0,0,11,10,0,8,2,0,0,4,16,5,11,16,8,0,0,7,16,16,16,16,3,0,0,2,13,9,16,12,0,0,0,0,0,7,16,6,0,0,0,0,0,13,15,1,0,0}, {0,0,7,16,13,2,0,0,0,0,14,15,13,9,0,0,0,0,14,8,9,10,0,0,0,0,1,2,9,12,0,0,0,0,0,0,13,8,0,0,0,0,0,5,16,4,0,0,0,0,6,15,16,5,5,5,0,0,6,16,16,16,16,13}, {0,0,4,12,13,2,0,0,0,0,5,16,16,5,0,0,0,0,5,16,16,6,0,0,0,0,9,16,15,0,0,0,0,0,10,16,14,0,0,0,0,0,12,16,12,0,0,0,0,0,5,16,11,0,0,0,0,0,6,16,13,0,0,0}, {0,0,0,14,8,0,0,0,0,0,3,16,3,0,0,0,0,0,12,9,9,7,0,0,0,6,15,1,14,11,6,0,0,13,14,8,16,16,7,0,0,8,16,16,16,3,0,0,0,0,1,11,14,0,0,0,0,0,0,14,14,0,0,0}, {0,0,3,13,13,3,0,0,0,2,14,12,12,11,0,0,0,4,16,8,5,15,3,0,0,1,13,14,16,7,0,0,0,0,11,16,13,1,0,0,0,1,16,12,13,14,1,0,0,0,13,13,9,16,7,0,0,0,3,13,16,10,1,0}, {0,0,3,11,16,15,0,0,0,0,15,16,5,13,0,0,0,2,16,9,0,12,0,0,0,1,9,15,10,10,0,0,0,0,0,6,16,12,1,0,0,0,2,14,2,16,5,0,0,0,8,10,1,14,4,0,0,0,3,15,16,9,0,0}, {0,1,13,16,15,5,0,0,0,4,16,7,14,12,0,0,0,3,12,2,11,10,0,0,0,0,0,0,14,8,0,0,0,0,0,3,16,4,0,0,0,0,1,11,13,0,0,0,0,0,9,16,14,16,7,0,0,1,16,16,15,12,5,0}, {0,7,16,16,16,11,2,0,0,5,16,12,8,6,1,0,0,9,16,1,0,0,0,0,0,2,16,15,3,0,0,0,0,0,5,16,14,1,0,0,0,0,0,2,16,10,0,0,0,1,7,13,16,3,0,0,0,4,15,16,6,0,0,0}, {0,0,1,14,6,0,0,0,0,0,7,15,1,0,0,0,0,0,13,7,0,0,0,0,0,0,13,5,0,0,0,0,0,0,14,7,5,4,1,0,0,0,10,16,13,14,14,0,0,0,9,14,1,4,16,3,0,0,1,12,13,16,9,1}, {0,0,13,10,1,0,0,0,0,5,16,14,7,0,0,0,0,4,16,8,14,0,0,0,0,2,14,16,16,6,0,0,0,0,1,4,9,13,1,0,0,0,0,0,0,13,6,0,0,0,5,8,5,9,14,0,0,0,13,13,15,16,13,0}, {0,0,15,13,0,3,3,0,0,0,15,15,8,15,5,0,0,0,8,16,16,7,0,0,0,0,7,16,16,1,0,0,0,0,12,12,15,10,0,0,0,3,16,0,10,15,1,0,0,2,16,5,7,15,3,0,0,1,12,16,15,7,0,0}, {0,0,1,14,14,2,0,0,0,0,1,14,16,3,0,0,0,0,0,10,16,2,0,0,0,0,0,11,16,5,0,0,0,0,0,15,16,5,0,0,0,0,0,15,16,5,0,0,0,0,0,10,16,12,1,0,0,0,0,14,16,11,0,0}, {0,0,4,13,16,16,7,0,0,0,15,10,7,16,1,0,0,7,12,0,12,7,0,0,0,9,5,3,16,2,0,0,0,2,11,16,16,12,7,0,0,5,10,16,12,8,3,0,0,0,3,15,2,0,0,0,0,0,6,14,0,0,0,0}, {0,0,0,2,15,2,0,0,0,0,0,12,12,0,0,0,0,0,5,16,2,0,0,0,0,0,11,10,0,3,8,0,0,5,16,1,2,15,5,0,0,9,13,7,14,16,2,0,0,5,15,14,16,10,0,0,0,0,0,2,16,5,0,0}, {0,0,8,13,14,5,0,0,0,5,13,4,11,9,0,0,0,4,13,1,12,14,0,0,0,0,8,14,11,12,4,0,0,0,0,0,0,7,8,0,0,0,0,0,0,4,8,0,0,0,2,2,0,11,7,0,0,0,8,16,16,13,2,0}, {0,0,0,6,16,2,0,0,0,0,2,15,15,0,0,0,0,0,15,16,3,2,3,0,0,7,16,7,3,15,11,0,0,7,16,14,14,16,5,0,0,1,7,12,16,10,0,0,0,0,0,7,16,4,0,0,0,0,0,10,15,0,0,0}, {0,0,10,16,14,6,0,0,0,0,16,8,6,16,3,0,0,0,9,5,0,13,6,0,0,0,0,0,0,14,8,0,0,0,0,0,4,16,2,0,0,0,0,0,13,11,0,0,0,0,2,9,16,10,6,1,0,0,12,16,14,13,16,8}, {0,0,0,3,13,7,0,0,0,0,1,14,11,0,0,0,0,0,12,12,1,2,3,0,0,7,16,4,1,15,10,0,0,10,14,0,7,16,8,0,0,15,16,16,16,16,1,0,0,4,11,11,15,11,0,0,0,0,0,2,15,4,0,0}, {0,0,3,16,4,0,0,0,0,0,12,13,2,5,0,0,0,2,16,6,10,15,1,0,0,9,15,3,16,11,7,0,0,12,16,16,15,11,5,0,0,3,9,16,3,0,0,0,0,0,2,16,3,0,0,0,0,0,6,14,0,0,0,0}, {0,0,0,10,15,1,0,0,0,0,5,16,16,10,0,0,0,0,14,6,6,15,0,0,0,4,16,4,0,15,3,0,0,5,15,5,0,11,5,0,0,0,12,11,0,13,5,0,0,0,8,16,16,16,3,0,0,0,1,8,13,8,0,0}, {0,5,16,13,1,0,0,0,0,9,14,14,4,0,0,0,0,9,7,12,4,0,0,0,0,0,0,13,4,0,0,0,0,0,2,16,1,0,0,0,0,0,7,13,0,0,0,0,0,1,15,16,16,16,11,0,0,5,16,14,10,8,6,0}, {0,0,0,8,7,0,0,0,0,0,4,16,11,0,0,0,0,0,9,16,1,0,0,0,0,0,11,14,11,13,2,0,0,0,13,16,14,14,10,0,0,0,10,15,1,5,13,0,0,0,6,16,8,14,12,0,0,0,0,5,14,16,4,0}, {0,0,0,11,16,8,0,0,0,0,6,16,13,3,0,0,0,0,8,16,8,0,0,0,0,0,13,16,2,0,0,0,0,0,15,16,5,0,0,0,0,2,16,16,16,5,0,0,0,1,10,16,16,14,0,0,0,0,0,12,16,15,0,0}, {0,0,1,12,16,16,12,0,0,0,7,16,11,12,9,0,0,0,6,7,0,14,4,0,0,0,0,0,6,16,3,0,0,0,0,10,16,16,9,0,0,0,0,8,15,5,0,0,0,0,0,8,10,0,0,0,0,0,0,16,5,0,0,0}, {0,0,3,15,16,16,12,0,0,0,12,12,7,16,6,0,0,4,12,0,9,13,0,0,0,0,1,1,13,7,0,0,0,0,8,13,16,16,6,0,0,0,12,15,12,6,1,0,0,0,0,15,5,0,0,0,0,0,3,16,2,0,0,0} }; int y[] = {0, 1, 1, 2, 4, 2, 8, 1, 1, 5, 4, 2, 1, 4, 8, 8, 2, 5, 6, 9, 8, 1, 7, 4, 9, 4, 2, 4, 4, 0, 2, 6, 6, 7, 7};
5,553
C++
.h
39
141.333333
336
0.541546
eloquentarduino/EloquentMicroML
34
11
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,699
RandomForest.h
eloquentarduino_EloquentMicroML/examples/PrincipalFFTExample/RandomForest.h
#pragma once namespace Eloquent { namespace ML { namespace Port { class RandomForest { public: /** * Predict class for features vector */ int predict(float *x) { uint8_t votes[10] = { 0 }; // tree #1 if (x[1] <= 223.28783416748047) { if (x[2] <= 87.58186721801758) { if (x[6] <= 58.685441970825195) { if (x[8] <= 75.0628662109375) { if (x[9] <= 52.431705474853516) { if (x[2] <= 46.5067138671875) { if (x[3] <= 96.94797897338867) { if (x[1] <= 177.89048767089844) { if (x[6] <= 35.63189125061035) { if (x[3] <= 62.76023864746094) { votes[3] += 1; } else { votes[6] += 1; } } else { if (x[9] <= 28.41520118713379) { votes[6] += 1; } else { votes[9] += 1; } } } else { if (x[3] <= 53.712080001831055) { if (x[0] <= 336.5) { votes[8] += 1; } else { votes[8] += 1; } } else { if (x[1] <= 190.32779693603516) { votes[5] += 1; } else { votes[3] += 1; } } } } else { if (x[1] <= 190.53752899169922) { votes[1] += 1; } else { if (x[9] <= 17.947590827941895) { votes[1] += 1; } else { votes[1] += 1; } } } } else { if (x[6] <= 33.88105010986328) { if (x[8] <= 49.51073455810547) { if (x[9] <= 34.3795108795166) { if (x[9] <= 26.518803596496582) { votes[6] += 1; } else { votes[6] += 1; } } else { if (x[8] <= 37.19662094116211) { votes[2] += 1; } else { votes[9] += 1; } } } else { if (x[3] <= 68.65484237670898) { if (x[9] <= 45.42781448364258) { votes[8] += 1; } else { votes[2] += 1; } } else { if (x[2] <= 72.26997375488281) { votes[3] += 1; } else { votes[0] += 1; } } } } else { if (x[9] <= 39.69325065612793) { if (x[4] <= 83.30157089233398) { if (x[3] <= 62.273515701293945) { votes[7] += 1; } else { votes[0] += 1; } } else { if (x[4] <= 90.0771598815918) { votes[2] += 1; } else { votes[4] += 1; } } } else { if (x[0] <= 309.5) { if (x[9] <= 45.91059875488281) { votes[9] += 1; } else { votes[2] += 1; } } else { if (x[0] <= 322.5) { votes[0] += 1; } else { votes[2] += 1; } } } } } } else { if (x[9] <= 59.647037506103516) { if (x[4] <= 52.94841384887695) { if (x[6] <= 29.158957481384277) { if (x[7] <= 35.58344078063965) { votes[5] += 1; } else { votes[3] += 1; } } else { if (x[3] <= 45.63078498840332) { votes[5] += 1; } else { votes[9] += 1; } } } else { if (x[6] <= 38.46846580505371) { if (x[8] <= 52.11693572998047) { if (x[7] <= 20.70157241821289) { votes[2] += 1; } else { votes[2] += 1; } } else { votes[5] += 1; } } else { if (x[6] <= 45.51913833618164) { votes[2] += 1; } else { votes[2] += 1; } } } } else { if (x[4] <= 58.21575164794922) { if (x[5] <= 65.17300796508789) { if (x[2] <= 51.632713317871094) { if (x[8] <= 40.4521427154541) { votes[3] += 1; } else { votes[3] += 1; } } else { if (x[9] <= 67.41489028930664) { votes[5] += 1; } else { votes[5] += 1; } } } else { if (x[0] <= 325.0) { votes[5] += 1; } else { if (x[2] <= 57.576059341430664) { votes[5] += 1; } else { votes[5] += 1; } } } } else { if (x[6] <= 26.806246757507324) { votes[5] += 1; } else { if (x[3] <= 56.99905204772949) { if (x[5] <= 47.659603118896484) { votes[2] += 1; } else { votes[2] += 1; } } else { votes[2] += 1; } } } } } } else { if (x[2] <= 45.80496597290039) { if (x[7] <= 56.64643669128418) { if (x[3] <= 36.147125244140625) { votes[8] += 1; } else { votes[0] += 1; } } else { if (x[7] <= 69.04887771606445) { votes[3] += 1; } else { votes[3] += 1; } } } else { if (x[3] <= 52.98104476928711) { if (x[2] <= 69.40850830078125) { votes[2] += 1; } else { votes[0] += 1; } } else { if (x[7] <= 19.826005935668945) { votes[0] += 1; } else { votes[0] += 1; } } } } } else { if (x[7] <= 70.30179595947266) { if (x[2] <= 38.35845184326172) { if (x[6] <= 66.33319091796875) { votes[1] += 1; } else { if (x[1] <= 189.9428253173828) { votes[5] += 1; } else { votes[7] += 1; } } } else { if (x[4] <= 15.922025680541992) { votes[7] += 1; } else { if (x[6] <= 60.65969467163086) { votes[7] += 1; } else { if (x[9] <= 77.82524490356445) { if (x[0] <= 348.0) { if (x[6] <= 65.74383926391602) { votes[7] += 1; } else { votes[7] += 1; } } else { votes[7] += 1; } } else { votes[5] += 1; } } } } } else { if (x[4] <= 60.07324409484863) { votes[9] += 1; } else { if (x[7] <= 83.79731750488281) { votes[5] += 1; } else { votes[1] += 1; } } } } } else { if (x[2] <= 106.17152786254883) { if (x[3] <= 54.75412178039551) { if (x[9] <= 23.04866123199463) { if (x[3] <= 33.50066566467285) { votes[4] += 1; } else { if (x[4] <= 90.41501998901367) { votes[6] += 1; } else { votes[4] += 1; } } } else { if (x[6] <= 65.57201194763184) { if (x[4] <= 41.301164627075195) { votes[0] += 1; } else { if (x[0] <= 302.0) { if (x[7] <= 33.57986831665039) { votes[9] += 1; } else { votes[4] += 1; } } else { if (x[5] <= 45.59942817687988) { if (x[7] <= 45.0012321472168) { votes[9] += 1; } else { votes[4] += 1; } } else { votes[2] += 1; } } } } else { votes[7] += 1; } } } else { if (x[1] <= 179.5436248779297) { votes[0] += 1; } else { votes[0] += 1; } } } else { if (x[4] <= 67.40257263183594) { votes[0] += 1; } else { if (x[1] <= 146.29507446289062) { votes[4] += 1; } else { if (x[4] <= 102.58813858032227) { if (x[4] <= 74.20237350463867) { votes[4] += 1; } else { votes[4] += 1; } } else { votes[4] += 1; } } } } } } else { if (x[2] <= 25.260117530822754) { if (x[3] <= 53.14567565917969) { if (x[4] <= 38.36591148376465) { votes[8] += 1; } else { votes[8] += 1; } } else { if (x[2] <= 23.870956420898438) { if (x[3] <= 82.0844841003418) { if (x[3] <= 73.51693725585938) { votes[1] += 1; } else { votes[1] += 1; } } else { votes[1] += 1; } } else { votes[1] += 1; } } } else { if (x[5] <= 29.65248966217041) { if (x[8] <= 32.74325084686279) { votes[8] += 1; } else { votes[8] += 1; } } else { if (x[3] <= 80.92230224609375) { if (x[9] <= 40.21367835998535) { if (x[3] <= 65.01326179504395) { if (x[0] <= 352.0) { votes[2] += 1; } else { votes[8] += 1; } } else { votes[1] += 1; } } else { votes[5] += 1; } } else { if (x[9] <= 27.752894401550293) { votes[1] += 1; } else { votes[1] += 1; } } } } } // tree #2 if (x[4] <= 73.63254928588867) { if (x[8] <= 61.70101356506348) { if (x[1] <= 223.28783416748047) { if (x[6] <= 59.47696304321289) { if (x[2] <= 46.38563537597656) { if (x[4] <= 38.66758155822754) { if (x[1] <= 180.00955200195312) { if (x[9] <= 61.24723434448242) { if (x[9] <= 36.41851806640625) { votes[9] += 1; } else { votes[9] += 1; } } else { votes[5] += 1; } } else { if (x[3] <= 116.60122299194336) { if (x[6] <= 34.66944694519043) { if (x[5] <= 46.38277626037598) { votes[8] += 1; } else { votes[8] += 1; } } else { votes[9] += 1; } } else { votes[1] += 1; } } } else { if (x[3] <= 79.93517303466797) { if (x[9] <= 60.83746528625488) { if (x[6] <= 36.709157943725586) { if (x[1] <= 137.8350830078125) { votes[9] += 1; } else { votes[3] += 1; } } else { if (x[1] <= 202.951416015625) { votes[9] += 1; } else { votes[2] += 1; } } } else { if (x[1] <= 163.1903533935547) { votes[5] += 1; } else { votes[5] += 1; } } } else { if (x[3] <= 101.84577560424805) { if (x[5] <= 49.81400108337402) { votes[5] += 1; } else { votes[1] += 1; } } else { votes[1] += 1; } } } } else { if (x[9] <= 33.21067810058594) { if (x[2] <= 106.76327896118164) { if (x[3] <= 43.24769973754883) { if (x[6] <= 40.6343994140625) { if (x[7] <= 47.98444175720215) { votes[8] += 1; } else { votes[6] += 1; } } else { votes[7] += 1; } } else { if (x[6] <= 32.415639877319336) { if (x[3] <= 94.3943862915039) { votes[6] += 1; } else { votes[1] += 1; } } else { if (x[3] <= 66.81564712524414) { votes[0] += 1; } else { votes[3] += 1; } } } } else { votes[4] += 1; } } else { if (x[5] <= 65.1471061706543) { if (x[4] <= 53.320730209350586) { if (x[2] <= 72.53239440917969) { if (x[8] <= 27.83293342590332) { votes[9] += 1; } else { votes[5] += 1; } } else { votes[7] += 1; } } else { if (x[6] <= 25.35481071472168) { if (x[1] <= 193.99195098876953) { votes[2] += 1; } else { votes[5] += 1; } } else { if (x[7] <= 43.31408500671387) { votes[2] += 1; } else { votes[2] += 1; } } } } else { if (x[8] <= 22.0498628616333) { if (x[1] <= 155.8746566772461) { votes[5] += 1; } else { votes[5] += 1; } } else { if (x[3] <= 56.15599250793457) { if (x[0] <= 336.0) { votes[5] += 1; } else { votes[2] += 1; } } else { votes[6] += 1; } } } } } } else { if (x[2] <= 35.475990295410156) { if (x[7] <= 58.7335262298584) { votes[5] += 1; } else { if (x[9] <= 46.114688873291016) { votes[1] += 1; } else { votes[9] += 1; } } } else { if (x[1] <= 162.3843994140625) { votes[5] += 1; } else { if (x[8] <= 31.399094581604004) { if (x[2] <= 80.72598648071289) { votes[7] += 1; } else { votes[7] += 1; } } else { if (x[1] <= 171.9009552001953) { votes[7] += 1; } else { if (x[9] <= 66.57540512084961) { votes[7] += 1; } else { votes[7] += 1; } } } } } } } else { if (x[9] <= 32.217044830322266) { if (x[3] <= 64.82080459594727) { if (x[2] <= 11.461406230926514) { votes[1] += 1; } else { if (x[9] <= 20.423280715942383) { votes[8] += 1; } else { votes[8] += 1; } } } else { if (x[3] <= 83.28524398803711) { if (x[1] <= 240.75609588623047) { votes[3] += 1; } else { votes[1] += 1; } } else { votes[1] += 1; } } } else { if (x[1] <= 238.338623046875) { if (x[7] <= 45.589393615722656) { if (x[8] <= 28.229961395263672) { votes[2] += 1; } else { votes[2] += 1; } } else { votes[3] += 1; } } else { votes[8] += 1; } } } } else { if (x[4] <= 34.43846893310547) { if (x[5] <= 28.38093662261963) { votes[8] += 1; } else { if (x[6] <= 64.40675163269043) { if (x[7] <= 64.85346603393555) { if (x[3] <= 43.06830406188965) { votes[0] += 1; } else { if (x[5] <= 49.83561325073242) { votes[0] += 1; } else { votes[0] += 1; } } } else { if (x[7] <= 70.52228546142578) { votes[3] += 1; } else { votes[9] += 1; } } } else { votes[7] += 1; } } } else { if (x[7] <= 71.57150650024414) { if (x[6] <= 49.17559242248535) { if (x[3] <= 54.027482986450195) { if (x[1] <= 190.75579833984375) { if (x[5] <= 59.25582504272461) { if (x[7] <= 48.69157600402832) { votes[3] += 1; } else { votes[3] += 1; } } else { votes[3] += 1; } } else { if (x[2] <= 38.09588050842285) { votes[3] += 1; } else { votes[8] += 1; } } } else { if (x[5] <= 70.10552215576172) { if (x[7] <= 38.6533260345459) { votes[5] += 1; } else { votes[3] += 1; } } else { votes[0] += 1; } } } else { if (x[6] <= 68.81138229370117) { if (x[7] <= 55.02538871765137) { votes[0] += 1; } else { votes[1] += 1; } } else { votes[7] += 1; } } } else { if (x[3] <= 51.64277267456055) { votes[9] += 1; } else { votes[1] += 1; } } } } } else { if (x[3] <= 73.68502426147461) { if (x[2] <= 101.96065902709961) { if (x[9] <= 35.221435546875) { if (x[1] <= 155.71729278564453) { votes[6] += 1; } else { if (x[0] <= 337.5) { if (x[2] <= 81.61886215209961) { if (x[5] <= 29.43798065185547) { if (x[8] <= 42.903533935546875) { votes[2] += 1; } else { votes[4] += 1; } } else { if (x[4] <= 93.21784210205078) { votes[4] += 1; } else { votes[4] += 1; } } } else { if (x[7] <= 52.08280372619629) { votes[4] += 1; } else { votes[4] += 1; } } } else { if (x[1] <= 203.1348876953125) { votes[2] += 1; } else { votes[2] += 1; } } } } else { if (x[9] <= 46.41568374633789) { if (x[4] <= 87.62631225585938) { if (x[0] <= 304.5) { votes[9] += 1; } else { if (x[2] <= 63.182586669921875) { votes[2] += 1; } else { votes[2] += 1; } } } else { if (x[6] <= 28.106727600097656) { votes[9] += 1; } else { votes[9] += 1; } } } else { if (x[2] <= 68.55035400390625) { if (x[8] <= 55.526784896850586) { if (x[6] <= 36.50175666809082) { votes[2] += 1; } else { votes[2] += 1; } } else { if (x[5] <= 47.179012298583984) { votes[5] += 1; } else { votes[2] += 1; } } } else { votes[2] += 1; } } } } else { if (x[0] <= 296.5) { if (x[3] <= 26.888652801513672) { votes[4] += 1; } else { if (x[1] <= 149.53009033203125) { votes[7] += 1; } else { votes[4] += 1; } } } else { if (x[8] <= 37.72442817687988) { if (x[6] <= 32.4993896484375) { votes[2] += 1; } else { if (x[5] <= 27.153637886047363) { votes[4] += 1; } else { votes[4] += 1; } } } else { votes[4] += 1; } } } } else { if (x[2] <= 29.25847816467285) { if (x[7] <= 66.6197452545166) { votes[1] += 1; } else { votes[1] += 1; } } else { if (x[8] <= 39.94021224975586) { if (x[5] <= 53.01922035217285) { votes[6] += 1; } else { if (x[7] <= 78.88321304321289) { votes[6] += 1; } else { votes[6] += 1; } } } else { if (x[4] <= 83.64120864868164) { votes[1] += 1; } else { votes[5] += 1; } } } } } // tree #3 if (x[3] <= 96.68760681152344) { if (x[6] <= 61.386295318603516) { if (x[2] <= 106.17152786254883) { if (x[9] <= 56.05367469787598) { if (x[4] <= 35.19199752807617) { if (x[1] <= 176.59617614746094) { if (x[3] <= 41.58993911743164) { if (x[6] <= 35.74519443511963) { votes[8] += 1; } else { votes[9] += 1; } } else { if (x[2] <= 32.87968730926514) { votes[9] += 1; } else { if (x[5] <= 46.81442832946777) { votes[0] += 1; } else { votes[0] += 1; } } } } else { if (x[5] <= 43.80852699279785) { if (x[6] <= 34.33925247192383) { if (x[9] <= 42.294904708862305) { if (x[3] <= 50.16060829162598) { votes[8] += 1; } else { votes[8] += 1; } } else { votes[8] += 1; } } else { votes[1] += 1; } } else { if (x[1] <= 245.54003143310547) { if (x[8] <= 47.49327087402344) { if (x[4] <= 29.097399711608887) { votes[8] += 1; } else { votes[6] += 1; } } else { if (x[2] <= 73.49809646606445) { votes[3] += 1; } else { votes[0] += 1; } } } else { votes[1] += 1; } } } } else { if (x[8] <= 37.491437911987305) { if (x[9] <= 35.88986587524414) { if (x[5] <= 46.42054557800293) { if (x[0] <= 380.5) { if (x[8] <= 23.226943969726562) { votes[4] += 1; } else { votes[2] += 1; } } else { votes[1] += 1; } } else { if (x[7] <= 55.84828186035156) { if (x[2] <= 76.00598526000977) { votes[3] += 1; } else { votes[6] += 1; } } else { if (x[7] <= 63.0277042388916) { votes[6] += 1; } else { votes[6] += 1; } } } } else { if (x[5] <= 52.22732162475586) { if (x[6] <= 36.7336311340332) { if (x[4] <= 58.642913818359375) { votes[3] += 1; } else { votes[2] += 1; } } else { if (x[6] <= 47.03566360473633) { votes[4] += 1; } else { votes[4] += 1; } } } else { if (x[2] <= 52.54088592529297) { if (x[0] <= 308.5) { votes[9] += 1; } else { votes[9] += 1; } } else { if (x[7] <= 64.35486030578613) { votes[2] += 1; } else { votes[6] += 1; } } } } } else { if (x[6] <= 35.004180908203125) { if (x[1] <= 245.91941833496094) { if (x[2] <= 55.70499801635742) { if (x[5] <= 90.06454086303711) { votes[3] += 1; } else { votes[0] += 1; } } else { if (x[4] <= 73.85037231445312) { votes[6] += 1; } else { votes[9] += 1; } } } else { votes[1] += 1; } } else { if (x[7] <= 47.12135124206543) { if (x[4] <= 95.01913070678711) { if (x[8] <= 48.11334800720215) { votes[2] += 1; } else { votes[5] += 1; } } else { if (x[2] <= 67.49642944335938) { votes[4] += 1; } else { votes[4] += 1; } } } else { if (x[2] <= 39.07025337219238) { if (x[3] <= 67.79148483276367) { votes[9] += 1; } else { votes[7] += 1; } } else { if (x[1] <= 176.5953826904297) { votes[5] += 1; } else { votes[7] += 1; } } } } } } } else { if (x[4] <= 63.27419662475586) { if (x[9] <= 67.91596221923828) { if (x[4] <= 52.1142520904541) { if (x[5] <= 89.54606628417969) { if (x[8] <= 43.62107467651367) { if (x[6] <= 27.631103515625) { votes[3] += 1; } else { votes[5] += 1; } } else { if (x[6] <= 48.76525115966797) { votes[5] += 1; } else { votes[9] += 1; } } } else { votes[5] += 1; } } else { if (x[6] <= 37.900672912597656) { votes[5] += 1; } else { votes[2] += 1; } } } else { if (x[8] <= 37.325735092163086) { if (x[7] <= 54.16501235961914) { votes[5] += 1; } else { votes[5] += 1; } } else { if (x[1] <= 206.12890625) { if (x[2] <= 50.57032585144043) { votes[5] += 1; } else { votes[5] += 1; } } else { votes[3] += 1; } } } } else { if (x[9] <= 61.55148887634277) { if (x[3] <= 47.70449256896973) { votes[2] += 1; } else { votes[5] += 1; } } else { if (x[7] <= 30.519858360290527) { if (x[4] <= 67.5264663696289) { votes[2] += 1; } else { votes[2] += 1; } } else { votes[2] += 1; } } } } } else { if (x[3] <= 50.25922966003418) { if (x[0] <= 294.5) { if (x[7] <= 48.78265380859375) { if (x[3] <= 25.2222261428833) { votes[4] += 1; } else { votes[7] += 1; } } else { votes[4] += 1; } } else { if (x[8] <= 31.005033493041992) { if (x[0] <= 329.0) { votes[4] += 1; } else { votes[4] += 1; } } else { votes[4] += 1; } } } else { votes[0] += 1; } } } else { if (x[7] <= 57.85520553588867) { if (x[2] <= 40.16945457458496) { if (x[9] <= 55.06118202209473) { votes[7] += 1; } else { votes[5] += 1; } } else { if (x[9] <= 74.43890380859375) { if (x[8] <= 66.6694107055664) { if (x[5] <= 33.93985366821289) { if (x[2] <= 64.64353561401367) { votes[7] += 1; } else { votes[7] += 1; } } else { votes[7] += 1; } } else { votes[7] += 1; } } else { votes[7] += 1; } } } else { if (x[2] <= 44.202003479003906) { if (x[1] <= 174.3106231689453) { votes[9] += 1; } else { votes[1] += 1; } } else { if (x[6] <= 66.35693359375) { votes[4] += 1; } else { votes[7] += 1; } } } } } else { if (x[1] <= 164.34520721435547) { if (x[6] <= 28.02194118499756) { votes[0] += 1; } else { votes[0] += 1; } } else { if (x[9] <= 40.31019592285156) { if (x[4] <= 77.37010955810547) { if (x[2] <= 31.11418914794922) { votes[1] += 1; } else { if (x[2] <= 35.16230583190918) { votes[1] += 1; } else { votes[1] += 1; } } } else { votes[1] += 1; } } else { votes[1] += 1; } } } // tree #4 if (x[3] <= 84.13082122802734) { if (x[4] <= 73.64823913574219) { if (x[6] <= 59.52683067321777) { if (x[9] <= 56.45132255554199) { if (x[8] <= 64.15995788574219) { if (x[4] <= 34.804765701293945) { if (x[7] <= 41.870187759399414) { if (x[8] <= 48.42677879333496) { if (x[5] <= 57.420034408569336) { if (x[5] <= 53.93721008300781) { votes[8] += 1; } else { votes[8] += 1; } } else { votes[8] += 1; } } else { votes[9] += 1; } } else { if (x[9] <= 33.540523529052734) { if (x[2] <= 61.73348617553711) { if (x[0] <= 335.0) { votes[8] += 1; } else { votes[8] += 1; } } else { if (x[8] <= 48.47994804382324) { votes[6] += 1; } else { votes[0] += 1; } } } else { if (x[2] <= 48.82626533508301) { if (x[9] <= 42.327239990234375) { votes[9] += 1; } else { votes[3] += 1; } } else { votes[5] += 1; } } } } else { if (x[1] <= 261.2856903076172) { if (x[6] <= 36.14640235900879) { if (x[2] <= 47.361305236816406) { if (x[3] <= 75.22937774658203) { votes[3] += 1; } else { votes[6] += 1; } } else { if (x[7] <= 49.16537666320801) { votes[2] += 1; } else { votes[6] += 1; } } } else { if (x[5] <= 27.74208164215088) { votes[5] += 1; } else { if (x[9] <= 28.879236221313477) { votes[7] += 1; } else { votes[9] += 1; } } } } else { votes[1] += 1; } } } else { if (x[4] <= 35.42879676818848) { if (x[2] <= 45.97941207885742) { votes[3] += 1; } else { if (x[1] <= 187.11495208740234) { votes[0] += 1; } else { votes[0] += 1; } } } else { if (x[2] <= 45.57510566711426) { if (x[3] <= 59.16636848449707) { if (x[0] <= 346.5) { if (x[2] <= 30.809146881103516) { votes[3] += 1; } else { votes[3] += 1; } } else { votes[3] += 1; } } else { votes[3] += 1; } } else { if (x[1] <= 191.84678649902344) { if (x[9] <= 30.76194953918457) { votes[0] += 1; } else { votes[5] += 1; } } else { votes[8] += 1; } } } } } else { if (x[2] <= 24.761067390441895) { if (x[5] <= 77.40985870361328) { if (x[6] <= 44.387277603149414) { votes[3] += 1; } else { votes[9] += 1; } } else { votes[5] += 1; } } else { if (x[5] <= 60.7719841003418) { if (x[6] <= 38.46846580505371) { if (x[7] <= 39.9880313873291) { if (x[8] <= 42.49911117553711) { votes[5] += 1; } else { votes[5] += 1; } } else { votes[3] += 1; } } else { if (x[4] <= 33.952043533325195) { votes[5] += 1; } else { votes[2] += 1; } } } else { if (x[1] <= 178.24976348876953) { if (x[9] <= 67.3302001953125) { votes[5] += 1; } else { if (x[8] <= 27.42185401916504) { votes[5] += 1; } else { votes[5] += 1; } } } else { if (x[7] <= 46.93549919128418) { votes[5] += 1; } else { votes[2] += 1; } } } } } } else { if (x[2] <= 35.475990295410156) { if (x[1] <= 174.0207748413086) { if (x[0] <= 282.0) { votes[1] += 1; } else { votes[9] += 1; } } else { votes[1] += 1; } } else { if (x[3] <= 54.67549705505371) { if (x[6] <= 65.82741928100586) { if (x[9] <= 61.56099510192871) { if (x[2] <= 68.17692947387695) { votes[7] += 1; } else { votes[7] += 1; } } else { votes[5] += 1; } } else { if (x[9] <= 72.00830459594727) { if (x[0] <= 350.0) { votes[7] += 1; } else { votes[7] += 1; } } else { votes[7] += 1; } } } else { votes[0] += 1; } } } } else { if (x[3] <= 24.38235092163086) { if (x[8] <= 25.30537223815918) { votes[2] += 1; } else { if (x[2] <= 83.45466613769531) { votes[5] += 1; } else { if (x[2] <= 113.53447723388672) { if (x[0] <= 330.5) { if (x[5] <= 20.89018440246582) { votes[4] += 1; } else { votes[4] += 1; } } else { votes[4] += 1; } } else { votes[4] += 1; } } } } else { if (x[7] <= 34.787553787231445) { if (x[1] <= 161.88438415527344) { if (x[6] <= 21.15648651123047) { votes[9] += 1; } else { votes[4] += 1; } } else { if (x[8] <= 54.603872299194336) { if (x[7] <= 31.54646396636963) { if (x[8] <= 47.555707931518555) { votes[2] += 1; } else { votes[2] += 1; } } else { votes[2] += 1; } } else { if (x[2] <= 68.78114700317383) { if (x[5] <= 43.494253158569336) { votes[5] += 1; } else { votes[2] += 1; } } else { votes[9] += 1; } } } } else { if (x[7] <= 74.33232498168945) { if (x[4] <= 81.98138427734375) { if (x[2] <= 84.6458854675293) { if (x[3] <= 59.68595314025879) { if (x[7] <= 53.834617614746094) { votes[6] += 1; } else { votes[2] += 1; } } else { if (x[0] <= 305.0) { votes[5] += 1; } else { votes[3] += 1; } } } else { if (x[0] <= 292.0) { votes[4] += 1; } else { votes[4] += 1; } } } else { if (x[2] <= 52.59788513183594) { votes[2] += 1; } else { if (x[1] <= 191.8587417602539) { if (x[1] <= 186.2636489868164) { if (x[3] <= 39.35417366027832) { votes[4] += 1; } else { votes[4] += 1; } } else { votes[2] += 1; } } else { if (x[8] <= 28.776348114013672) { votes[4] += 1; } else { votes[4] += 1; } } } } } else { if (x[2] <= 68.49428939819336) { if (x[3] <= 53.758928298950195) { votes[6] += 1; } else { if (x[7] <= 79.28173446655273) { votes[6] += 1; } else { votes[6] += 1; } } } else { votes[6] += 1; } } } } } } else { if (x[3] <= 95.45722198486328) { if (x[1] <= 182.1319122314453) { if (x[4] <= 43.94422912597656) { if (x[4] <= 21.972667694091797) { votes[0] += 1; } else { votes[0] += 1; } } else { if (x[8] <= 40.4112663269043) { votes[6] += 1; } else { votes[0] += 1; } } } else { if (x[2] <= 34.66662406921387) { if (x[0] <= 315.5) { votes[1] += 1; } else { votes[1] += 1; } } else { if (x[8] <= 33.42598533630371) { votes[2] += 1; } else { votes[5] += 1; } } } } else { if (x[1] <= 163.9201431274414) { if (x[6] <= 13.71004867553711) { votes[0] += 1; } else { votes[0] += 1; } } else { if (x[9] <= 38.079952239990234) { if (x[1] <= 190.76045989990234) { votes[1] += 1; } else { if (x[1] <= 222.07671356201172) { if (x[5] <= 53.075876235961914) { votes[1] += 1; } else { votes[1] += 1; } } else { votes[1] += 1; } } } else { votes[1] += 1; } } } } // tree #5 if (x[4] <= 79.03979110717773) { if (x[3] <= 80.74960708618164) { if (x[6] <= 58.692644119262695) { if (x[9] <= 56.31209182739258) { if (x[8] <= 61.577375411987305) { if (x[9] <= 28.126497268676758) { if (x[2] <= 58.36724281311035) { if (x[3] <= 53.7912540435791) { if (x[7] <= 61.222103118896484) { if (x[4] <= 29.088544845581055) { votes[8] += 1; } else { votes[8] += 1; } } else { votes[6] += 1; } } else { if (x[7] <= 70.78886413574219) { if (x[4] <= 43.330026626586914) { votes[8] += 1; } else { votes[3] += 1; } } else { if (x[8] <= 34.76369094848633) { votes[6] += 1; } else { votes[7] += 1; } } } } else { if (x[5] <= 51.19639778137207) { if (x[1] <= 189.5064239501953) { if (x[1] <= 169.23040008544922) { votes[7] += 1; } else { votes[4] += 1; } } else { if (x[7] <= 71.01069641113281) { votes[0] += 1; } else { votes[6] += 1; } } } else { if (x[8] <= 42.83540916442871) { if (x[4] <= 25.244296073913574) { votes[8] += 1; } else { votes[6] += 1; } } else { votes[0] += 1; } } } } else { if (x[4] <= 34.12809944152832) { if (x[6] <= 22.337939262390137) { if (x[1] <= 208.69930267333984) { if (x[0] <= 319.5) { votes[8] += 1; } else { votes[8] += 1; } } else { votes[8] += 1; } } else { if (x[5] <= 38.61587715148926) { votes[8] += 1; } else { if (x[7] <= 55.898860931396484) { votes[9] += 1; } else { votes[9] += 1; } } } } else { if (x[2] <= 47.361305236816406) { if (x[1] <= 210.69847106933594) { if (x[0] <= 308.0) { votes[3] += 1; } else { votes[9] += 1; } } else { if (x[7] <= 31.666732788085938) { votes[2] += 1; } else { votes[3] += 1; } } } else { if (x[3] <= 51.07553291320801) { if (x[7] <= 49.47067642211914) { votes[2] += 1; } else { votes[3] += 1; } } else { if (x[6] <= 20.70314311981201) { votes[3] += 1; } else { votes[6] += 1; } } } } } } else { if (x[2] <= 62.4976863861084) { if (x[1] <= 189.96941375732422) { if (x[1] <= 135.46430587768555) { votes[0] += 1; } else { if (x[2] <= 40.58186340332031) { if (x[6] <= 27.548254013061523) { votes[3] += 1; } else { votes[3] += 1; } } else { votes[3] += 1; } } } else { if (x[5] <= 43.12948989868164) { if (x[4] <= 30.01992130279541) { votes[8] += 1; } else { votes[8] += 1; } } else { if (x[7] <= 64.96734619140625) { if (x[9] <= 42.806427001953125) { votes[7] += 1; } else { votes[5] += 1; } } else { votes[3] += 1; } } } } else { if (x[5] <= 49.28965187072754) { votes[0] += 1; } else { votes[0] += 1; } } } } else { if (x[7] <= 40.21669578552246) { if (x[4] <= 63.27419662475586) { if (x[7] <= 18.220385551452637) { if (x[3] <= 54.560720443725586) { votes[5] += 1; } else { votes[5] += 1; } } else { if (x[7] <= 28.306870460510254) { if (x[3] <= 26.841917037963867) { votes[5] += 1; } else { if (x[3] <= 57.08664894104004) { votes[5] += 1; } else { votes[5] += 1; } } } else { votes[5] += 1; } } } else { if (x[2] <= 60.87041473388672) { votes[5] += 1; } else { votes[2] += 1; } } } else { if (x[5] <= 70.18571853637695) { if (x[4] <= 49.74137306213379) { if (x[0] <= 298.0) { votes[9] += 1; } else { votes[3] += 1; } } else { if (x[3] <= 37.91330528259277) { votes[5] += 1; } else { votes[2] += 1; } } } else { if (x[7] <= 58.2722053527832) { votes[5] += 1; } else { votes[5] += 1; } } } } } else { if (x[3] <= 45.110666275024414) { if (x[2] <= 23.246620178222656) { votes[9] += 1; } else { if (x[1] <= 161.40042877197266) { votes[7] += 1; } else { if (x[9] <= 72.75733947753906) { if (x[0] <= 348.0) { if (x[5] <= 36.35696983337402) { votes[7] += 1; } else { votes[7] += 1; } } else { votes[7] += 1; } } else { votes[7] += 1; } } } } else { if (x[8] <= 83.0162239074707) { if (x[1] <= 166.62177276611328) { if (x[9] <= 66.26391220092773) { votes[9] += 1; } else { votes[5] += 1; } } else { if (x[0] <= 305.0) { votes[7] += 1; } else { votes[1] += 1; } } } else { votes[1] += 1; } } } } else { if (x[3] <= 106.28963470458984) { if (x[2] <= 55.81446838378906) { if (x[9] <= 61.99252510070801) { if (x[0] <= 290.0) { if (x[6] <= 29.629152297973633) { if (x[7] <= 55.5034294128418) { votes[0] += 1; } else { votes[6] += 1; } } else { votes[1] += 1; } } else { if (x[1] <= 177.73548126220703) { votes[6] += 1; } else { if (x[5] <= 30.238308906555176) { votes[8] += 1; } else { if (x[1] <= 192.3313217163086) { votes[1] += 1; } else { if (x[9] <= 31.93650531768799) { votes[1] += 1; } else { votes[1] += 1; } } } } } } else { votes[9] += 1; } } else { if (x[4] <= 27.559575080871582) { votes[0] += 1; } else { votes[0] += 1; } } } else { if (x[8] <= 65.88920783996582) { votes[1] += 1; } else { votes[0] += 1; } } } } else { if (x[9] <= 46.49720573425293) { if (x[7] <= 74.58524703979492) { if (x[7] <= 28.06205463409424) { if (x[9] <= 25.077479362487793) { if (x[0] <= 317.0) { votes[2] += 1; } else { votes[4] += 1; } } else { if (x[2] <= 86.4831428527832) { votes[2] += 1; } else { if (x[8] <= 32.992539405822754) { votes[2] += 1; } else { votes[2] += 1; } } } } else { if (x[0] <= 288.0) { if (x[8] <= 33.77062225341797) { if (x[9] <= 26.956137657165527) { votes[2] += 1; } else { votes[4] += 1; } } else { if (x[9] <= 34.586612701416016) { votes[2] += 1; } else { votes[9] += 1; } } } else { if (x[2] <= 50.59138488769531) { votes[1] += 1; } else { if (x[1] <= 212.5701141357422) { if (x[6] <= 23.430021286010742) { if (x[2] <= 99.88153839111328) { votes[9] += 1; } else { votes[4] += 1; } } else { if (x[8] <= 29.811345100402832) { if (x[0] <= 326.0) { votes[4] += 1; } else { votes[4] += 1; } } else { if (x[2] <= 91.24626541137695) { votes[4] += 1; } else { votes[4] += 1; } } } } else { votes[4] += 1; } } } } } else { if (x[7] <= 78.33316421508789) { votes[6] += 1; } else { votes[6] += 1; } } } else { if (x[1] <= 159.79782104492188) { votes[9] += 1; } else { if (x[3] <= 66.28667068481445) { if (x[8] <= 58.87044715881348) { if (x[2] <= 91.65743637084961) { votes[2] += 1; } else { votes[2] += 1; } } else { votes[5] += 1; } } else { votes[5] += 1; } } } } // tree #6 if (x[3] <= 95.45722198486328) { if (x[4] <= 74.16543197631836) { if (x[6] <= 52.7011775970459) { if (x[8] <= 60.894378662109375) { if (x[7] <= 59.98578453063965) { if (x[5] <= 44.524986267089844) { if (x[4] <= 45.20740509033203) { if (x[2] <= 63.7295036315918) { if (x[3] <= 67.32229614257812) { if (x[1] <= 187.08328247070312) { votes[9] += 1; } else { votes[8] += 1; } } else { if (x[0] <= 330.0) { votes[8] += 1; } else { votes[1] += 1; } } } else { votes[2] += 1; } } else { if (x[4] <= 53.01083564758301) { if (x[6] <= 26.74851894378662) { votes[3] += 1; } else { votes[9] += 1; } } else { if (x[1] <= 192.58294677734375) { if (x[1] <= 182.40628814697266) { votes[9] += 1; } else { votes[5] += 1; } } else { if (x[9] <= 22.14127826690674) { votes[3] += 1; } else { votes[2] += 1; } } } } } else { if (x[5] <= 81.62150573730469) { if (x[9] <= 55.494943618774414) { if (x[9] <= 28.23581886291504) { if (x[4] <= 48.29277038574219) { votes[8] += 1; } else { votes[1] += 1; } } else { if (x[4] <= 39.91020393371582) { votes[8] += 1; } else { votes[3] += 1; } } } else { if (x[6] <= 34.79313087463379) { if (x[7] <= 35.6939811706543) { votes[5] += 1; } else { votes[5] += 1; } } else { if (x[5] <= 57.75564384460449) { votes[9] += 1; } else { votes[2] += 1; } } } } else { if (x[9] <= 31.047690391540527) { votes[1] += 1; } else { votes[5] += 1; } } } } else { if (x[9] <= 34.8180046081543) { if (x[6] <= 35.72410011291504) { if (x[6] <= 18.59560775756836) { if (x[6] <= 17.731013298034668) { if (x[8] <= 30.835619926452637) { votes[6] += 1; } else { votes[6] += 1; } } else { votes[1] += 1; } } else { if (x[8] <= 38.54547119140625) { if (x[4] <= 41.05453872680664) { votes[6] += 1; } else { votes[6] += 1; } } else { if (x[5] <= 66.68385124206543) { votes[6] += 1; } else { votes[6] += 1; } } } } else { if (x[3] <= 49.4638671875) { votes[9] += 1; } else { votes[6] += 1; } } } else { if (x[5] <= 85.42536926269531) { if (x[9] <= 58.38951110839844) { if (x[6] <= 33.24790573120117) { if (x[4] <= 54.20759963989258) { votes[6] += 1; } else { votes[3] += 1; } } else { if (x[5] <= 52.56601905822754) { votes[9] += 1; } else { votes[9] += 1; } } } else { votes[2] += 1; } } else { votes[3] += 1; } } } } else { if (x[1] <= 170.49679565429688) { if (x[4] <= 43.95867347717285) { if (x[3] <= 47.457956314086914) { votes[0] += 1; } else { if (x[7] <= 16.23033618927002) { votes[0] += 1; } else { votes[0] += 1; } } } else { votes[3] += 1; } } else { if (x[7] <= 51.25592613220215) { if (x[5] <= 43.45370292663574) { if (x[3] <= 46.00202751159668) { if (x[1] <= 198.41627502441406) { votes[8] += 1; } else { votes[8] += 1; } } else { votes[5] += 1; } } else { if (x[4] <= 50.266679763793945) { if (x[9] <= 40.955209732055664) { votes[0] += 1; } else { votes[0] += 1; } } else { votes[7] += 1; } } } else { if (x[6] <= 38.711727142333984) { if (x[9] <= 37.60644721984863) { if (x[9] <= 22.501229286193848) { votes[3] += 1; } else { votes[3] += 1; } } else { votes[3] += 1; } } else { if (x[3] <= 57.073129653930664) { votes[3] += 1; } else { votes[0] += 1; } } } } } } else { if (x[7] <= 70.96220779418945) { if (x[8] <= 44.945838928222656) { if (x[2] <= 44.09859275817871) { if (x[8] <= 40.33268165588379) { votes[5] += 1; } else { votes[5] += 1; } } else { if (x[0] <= 354.0) { if (x[2] <= 61.137535095214844) { votes[7] += 1; } else { if (x[6] <= 58.789255142211914) { votes[5] += 1; } else { if (x[5] <= 71.52350997924805) { votes[7] += 1; } else { votes[7] += 1; } } } } else { votes[2] += 1; } } } else { if (x[2] <= 24.318455696105957) { votes[9] += 1; } else { if (x[2] <= 44.088470458984375) { if (x[1] <= 163.63681030273438) { votes[9] += 1; } else { votes[7] += 1; } } else { if (x[6] <= 61.21556854248047) { if (x[2] <= 68.89838027954102) { votes[7] += 1; } else { votes[0] += 1; } } else { votes[7] += 1; } } } } } else { if (x[4] <= 62.4287166595459) { if (x[1] <= 186.8723373413086) { votes[9] += 1; } else { votes[1] += 1; } } else { votes[1] += 1; } } } } else { if (x[2] <= 100.22777938842773) { if (x[6] <= 33.859256744384766) { if (x[7] <= 64.54512405395508) { if (x[1] <= 157.50811767578125) { votes[9] += 1; } else { if (x[0] <= 275.5) { votes[9] += 1; } else { if (x[3] <= 56.709251403808594) { if (x[5] <= 31.803860664367676) { if (x[8] <= 34.91021728515625) { votes[2] += 1; } else { votes[9] += 1; } } else { if (x[3] <= 22.645197868347168) { votes[2] += 1; } else { votes[2] += 1; } } } else { votes[3] += 1; } } } } else { if (x[6] <= 16.483052253723145) { votes[3] += 1; } else { if (x[1] <= 186.23925018310547) { votes[6] += 1; } else { votes[4] += 1; } } } } else { if (x[4] <= 94.68008804321289) { if (x[6] <= 61.91149139404297) { if (x[9] <= 41.00023078918457) { if (x[5] <= 38.988121032714844) { if (x[2] <= 84.35647964477539) { if (x[0] <= 290.5) { votes[2] += 1; } else { votes[4] += 1; } } else { votes[4] += 1; } } else { if (x[8] <= 36.70582389831543) { votes[7] += 1; } else { votes[5] += 1; } } } else { if (x[5] <= 41.34843444824219) { votes[2] += 1; } else { if (x[3] <= 65.1994743347168) { votes[2] += 1; } else { votes[2] += 1; } } } } else { votes[1] += 1; } } else { if (x[0] <= 335.0) { if (x[0] <= 311.5) { votes[4] += 1; } else { if (x[2] <= 88.9850959777832) { votes[4] += 1; } else { votes[4] += 1; } } } else { votes[2] += 1; } } } } else { if (x[1] <= 135.02061462402344) { votes[7] += 1; } else { if (x[9] <= 39.26491928100586) { if (x[8] <= 23.84917640686035) { votes[4] += 1; } else { votes[4] += 1; } } else { if (x[2] <= 117.61365127563477) { votes[4] += 1; } else { votes[4] += 1; } } } } } } else { if (x[1] <= 152.6869125366211) { if (x[2] <= 62.71847724914551) { votes[0] += 1; } else { votes[0] += 1; } } else { if (x[7] <= 63.11467170715332) { if (x[3] <= 96.70830535888672) { votes[1] += 1; } else { if (x[8] <= 30.082627296447754) { votes[1] += 1; } else { if (x[6] <= 37.02847862243652) { if (x[8] <= 32.41029739379883) { votes[1] += 1; } else { votes[1] += 1; } } else { votes[1] += 1; } } } } else { votes[1] += 1; } } } // tree #7 if (x[3] <= 96.51131439208984) { if (x[2] <= 101.96884155273438) { if (x[8] <= 74.26996994018555) { if (x[9] <= 37.23211860656738) { if (x[4] <= 38.38352966308594) { if (x[1] <= 162.00975799560547) { if (x[9] <= 31.202926635742188) { if (x[7] <= 62.162166595458984) { if (x[4] <= 33.11870193481445) { votes[0] += 1; } else { votes[0] += 1; } } else { votes[0] += 1; } } else { votes[9] += 1; } } else { if (x[6] <= 58.65008735656738) { if (x[1] <= 250.26156616210938) { if (x[6] <= 25.045368194580078) { if (x[4] <= 25.818228721618652) { votes[8] += 1; } else { votes[8] += 1; } } else { if (x[8] <= 35.551687240600586) { votes[8] += 1; } else { votes[9] += 1; } } } else { if (x[6] <= 18.346118927001953) { votes[1] += 1; } else { votes[1] += 1; } } } else { votes[7] += 1; } } } else { if (x[4] <= 83.89189910888672) { if (x[8] <= 34.287681579589844) { if (x[2] <= 44.32865905761719) { if (x[2] <= 39.54800987243652) { if (x[4] <= 64.09931373596191) { votes[1] += 1; } else { votes[6] += 1; } } else { votes[3] += 1; } } else { if (x[6] <= 35.72548294067383) { if (x[7] <= 48.913679122924805) { votes[2] += 1; } else { votes[6] += 1; } } else { votes[4] += 1; } } } else { if (x[2] <= 24.460593223571777) { if (x[9] <= 15.754546642303467) { votes[8] += 1; } else { if (x[3] <= 61.18301963806152) { votes[3] += 1; } else { votes[1] += 1; } } } else { if (x[5] <= 66.65017700195312) { if (x[6] <= 36.630619049072266) { votes[2] += 1; } else { votes[7] += 1; } } else { if (x[3] <= 42.3266544342041) { votes[3] += 1; } else { votes[6] += 1; } } } } } else { if (x[6] <= 32.184547424316406) { if (x[1] <= 186.1821746826172) { if (x[1] <= 168.2948226928711) { votes[4] += 1; } else { votes[6] += 1; } } else { votes[2] += 1; } } else { if (x[8] <= 24.5867919921875) { votes[4] += 1; } else { if (x[2] <= 57.60734748840332) { votes[4] += 1; } else { votes[4] += 1; } } } } } } else { if (x[2] <= 38.38607406616211) { if (x[6] <= 33.479488372802734) { if (x[8] <= 35.70057487487793) { if (x[9] <= 61.434396743774414) { if (x[4] <= 29.76101303100586) { votes[8] += 1; } else { votes[3] += 1; } } else { votes[5] += 1; } } else { if (x[4] <= 35.559377670288086) { votes[2] += 1; } else { if (x[0] <= 320.5) { votes[3] += 1; } else { if (x[8] <= 63.14206123352051) { votes[3] += 1; } else { votes[5] += 1; } } } } } else { if (x[7] <= 44.32732582092285) { if (x[2] <= 33.13833427429199) { if (x[9] <= 59.54704475402832) { if (x[8] <= 33.719303131103516) { votes[8] += 1; } else { votes[9] += 1; } } else { if (x[2] <= 26.289175987243652) { votes[5] += 1; } else { votes[5] += 1; } } } else { votes[2] += 1; } } else { if (x[9] <= 60.027727127075195) { if (x[0] <= 269.5) { votes[9] += 1; } else { if (x[4] <= 26.87543296813965) { votes[9] += 1; } else { votes[9] += 1; } } } else { if (x[9] <= 65.6220703125) { votes[3] += 1; } else { votes[5] += 1; } } } } } else { if (x[4] <= 54.7171688079834) { if (x[6] <= 61.89088821411133) { if (x[3] <= 29.546263694763184) { if (x[9] <= 53.18654823303223) { if (x[7] <= 49.09136962890625) { votes[8] += 1; } else { votes[5] += 1; } } else { if (x[5] <= 58.10161018371582) { votes[5] += 1; } else { votes[5] += 1; } } } else { if (x[5] <= 41.283626556396484) { if (x[3] <= 52.50343132019043) { votes[2] += 1; } else { votes[5] += 1; } } else { if (x[7] <= 59.731889724731445) { votes[5] += 1; } else { votes[9] += 1; } } } } else { if (x[9] <= 75.20325469970703) { if (x[4] <= 48.67811393737793) { if (x[2] <= 49.156612396240234) { votes[7] += 1; } else { votes[7] += 1; } } else { votes[7] += 1; } } else { votes[5] += 1; } } } else { if (x[6] <= 61.16362953186035) { if (x[3] <= 57.19301414489746) { if (x[7] <= 36.85007095336914) { if (x[8] <= 56.534658432006836) { votes[2] += 1; } else { votes[2] += 1; } } else { if (x[1] <= 157.7602996826172) { votes[9] += 1; } else { votes[5] += 1; } } } else { if (x[7] <= 55.448516845703125) { if (x[2] <= 63.48446464538574) { votes[2] += 1; } else { votes[5] += 1; } } else { if (x[2] <= 56.65690040588379) { votes[6] += 1; } else { votes[6] += 1; } } } } else { if (x[2] <= 56.32258224487305) { votes[7] += 1; } else { votes[7] += 1; } } } } } } else { if (x[5] <= 52.637460708618164) { if (x[7] <= 74.84704208374023) { if (x[8] <= 85.46880722045898) { if (x[9] <= 31.22865581512451) { votes[8] += 1; } else { votes[9] += 1; } } else { votes[3] += 1; } } else { votes[1] += 1; } } else { if (x[4] <= 38.63149642944336) { if (x[3] <= 45.74798011779785) { votes[0] += 1; } else { votes[0] += 1; } } else { if (x[6] <= 26.502803802490234) { votes[3] += 1; } else { if (x[3] <= 35.20468521118164) { votes[9] += 1; } else { votes[0] += 1; } } } } } } else { if (x[8] <= 69.6288948059082) { if (x[7] <= 33.262481689453125) { if (x[7] <= 31.058124542236328) { if (x[5] <= 40.735408782958984) { votes[4] += 1; } else { votes[4] += 1; } } else { votes[7] += 1; } } else { if (x[1] <= 146.16726684570312) { votes[4] += 1; } else { if (x[5] <= 18.347980499267578) { votes[4] += 1; } else { if (x[0] <= 345.0) { votes[4] += 1; } else { votes[4] += 1; } } } } } else { if (x[9] <= 19.72019863128662) { votes[0] += 1; } else { votes[0] += 1; } } } } else { if (x[8] <= 62.44350242614746) { if (x[1] <= 173.55148315429688) { votes[1] += 1; } else { if (x[8] <= 30.03655433654785) { votes[1] += 1; } else { if (x[5] <= 40.00833702087402) { votes[1] += 1; } else { if (x[4] <= 73.5630111694336) { votes[1] += 1; } else { votes[1] += 1; } } } } } else { if (x[2] <= 64.58490562438965) { votes[0] += 1; } else { votes[0] += 1; } } } // tree #8 if (x[6] <= 60.805776596069336) { if (x[2] <= 106.05371475219727) { if (x[8] <= 61.77711296081543) { if (x[3] <= 95.44931411743164) { if (x[1] <= 229.77922821044922) { if (x[4] <= 48.94083023071289) { if (x[2] <= 42.5759220123291) { if (x[5] <= 33.191619873046875) { if (x[9] <= 33.540870666503906) { if (x[7] <= 41.34206962585449) { votes[8] += 1; } else { votes[8] += 1; } } else { if (x[6] <= 16.987755298614502) { votes[3] += 1; } else { votes[8] += 1; } } } else { if (x[6] <= 24.534576416015625) { if (x[8] <= 39.39472198486328) { votes[8] += 1; } else { votes[3] += 1; } } else { if (x[5] <= 54.41267013549805) { votes[9] += 1; } else { votes[9] += 1; } } } } else { if (x[3] <= 52.03337287902832) { if (x[6] <= 27.602526664733887) { if (x[4] <= 19.983003616333008) { votes[8] += 1; } else { votes[6] += 1; } } else { if (x[9] <= 46.67626190185547) { votes[9] += 1; } else { votes[5] += 1; } } } else { if (x[9] <= 41.727500915527344) { if (x[1] <= 164.86233520507812) { votes[0] += 1; } else { votes[6] += 1; } } else { if (x[8] <= 32.44917583465576) { votes[3] += 1; } else { votes[5] += 1; } } } } } else { if (x[2] <= 44.07552719116211) { if (x[6] <= 31.966354370117188) { if (x[8] <= 30.794713973999023) { if (x[5] <= 50.42195129394531) { votes[3] += 1; } else { votes[6] += 1; } } else { if (x[1] <= 140.35594177246094) { votes[6] += 1; } else { votes[3] += 1; } } } else { if (x[9] <= 56.19547462463379) { if (x[5] <= 54.07891082763672) { votes[5] += 1; } else { votes[9] += 1; } } else { votes[5] += 1; } } } else { if (x[7] <= 62.72505187988281) { if (x[9] <= 39.001264572143555) { if (x[1] <= 167.5862808227539) { votes[6] += 1; } else { votes[4] += 1; } } else { if (x[7] <= 38.671451568603516) { votes[2] += 1; } else { votes[5] += 1; } } } else { if (x[3] <= 43.41363716125488) { if (x[6] <= 43.627803802490234) { votes[6] += 1; } else { votes[7] += 1; } } else { if (x[0] <= 354.5) { votes[6] += 1; } else { votes[6] += 1; } } } } } } else { if (x[4] <= 45.5449161529541) { if (x[3] <= 65.56026458740234) { if (x[9] <= 29.236226081848145) { votes[8] += 1; } else { votes[8] += 1; } } else { if (x[5] <= 56.31782341003418) { votes[1] += 1; } else { votes[1] += 1; } } } else { if (x[7] <= 54.30318641662598) { if (x[5] <= 46.57687568664551) { votes[1] += 1; } else { votes[1] += 1; } } else { votes[3] += 1; } } } } else { if (x[8] <= 42.23081588745117) { if (x[4] <= 74.25513076782227) { if (x[1] <= 210.48908233642578) { if (x[5] <= 57.034908294677734) { votes[1] += 1; } else { votes[1] += 1; } } else { if (x[6] <= 32.4003791809082) { votes[1] += 1; } else { votes[1] += 1; } } } else { votes[1] += 1; } } else { votes[0] += 1; } } } else { if (x[3] <= 59.51049613952637) { if (x[2] <= 75.72290420532227) { if (x[9] <= 18.027332305908203) { votes[8] += 1; } else { if (x[5] <= 29.37454128265381) { votes[8] += 1; } else { if (x[2] <= 42.11966514587402) { if (x[1] <= 166.98941802978516) { votes[9] += 1; } else { if (x[6] <= 40.80592918395996) { votes[3] += 1; } else { votes[9] += 1; } } } else { if (x[9] <= 49.787960052490234) { if (x[9] <= 41.231088638305664) { votes[9] += 1; } else { votes[3] += 1; } } else { if (x[7] <= 47.32909965515137) { votes[5] += 1; } else { votes[2] += 1; } } } } } } else { if (x[4] <= 62.483781814575195) { votes[0] += 1; } else { votes[4] += 1; } } } else { if (x[1] <= 183.0308074951172) { if (x[6] <= 53.12707328796387) { votes[0] += 1; } else { if (x[8] <= 71.72310638427734) { votes[9] += 1; } else { votes[0] += 1; } } } else { if (x[2] <= 40.30863571166992) { votes[3] += 1; } else { votes[5] += 1; } } } } } else { if (x[8] <= 60.17474365234375) { if (x[9] <= 42.636417388916016) { if (x[1] <= 154.33889770507812) { votes[4] += 1; } else { if (x[5] <= 19.490283012390137) { votes[4] += 1; } else { votes[4] += 1; } } } else { if (x[2] <= 135.50628662109375) { votes[4] += 1; } else { votes[4] += 1; } } } else { votes[0] += 1; } } } else { if (x[3] <= 75.06134414672852) { if (x[7] <= 70.16206359863281) { if (x[3] <= 34.392526626586914) { if (x[6] <= 90.66321182250977) { votes[7] += 1; } else { votes[7] += 1; } } else { if (x[8] <= 44.368974685668945) { if (x[0] <= 307.5) { votes[5] += 1; } else { votes[7] += 1; } } else { if (x[1] <= 174.33299255371094) { votes[1] += 1; } else { if (x[0] <= 305.0) { votes[7] += 1; } else { votes[7] += 1; } } } } } else { if (x[2] <= 23.872493743896484) { votes[9] += 1; } else { votes[1] += 1; } } } else { if (x[7] <= 80.02842330932617) { votes[1] += 1; } else { votes[1] += 1; } } } // tree #9 if (x[3] <= 96.70830535888672) { if (x[3] <= 55.60122871398926) { if (x[2] <= 100.3383560180664) { if (x[6] <= 59.354055404663086) { if (x[9] <= 53.32974052429199) { if (x[7] <= 47.018293380737305) { if (x[1] <= 173.5902862548828) { if (x[2] <= 44.05617332458496) { if (x[5] <= 64.18801689147949) { votes[3] += 1; } else { votes[3] += 1; } } else { if (x[8] <= 38.24396514892578) { votes[2] += 1; } else { if (x[3] <= 41.48833465576172) { votes[9] += 1; } else { votes[0] += 1; } } } } else { if (x[9] <= 39.433732986450195) { if (x[1] <= 250.99964904785156) { if (x[6] <= 31.918155670166016) { votes[8] += 1; } else { votes[4] += 1; } } else { votes[1] += 1; } } else { if (x[8] <= 57.05146598815918) { if (x[5] <= 27.033920288085938) { votes[7] += 1; } else { votes[2] += 1; } } else { votes[0] += 1; } } } } else { if (x[2] <= 75.64300918579102) { if (x[1] <= 203.0502471923828) { if (x[9] <= 35.90887451171875) { if (x[6] <= 28.422855377197266) { votes[3] += 1; } else { votes[9] += 1; } } else { if (x[8] <= 69.66537475585938) { votes[9] += 1; } else { votes[3] += 1; } } } else { if (x[2] <= 23.159194946289062) { votes[8] += 1; } else { if (x[2] <= 59.50129508972168) { votes[3] += 1; } else { votes[6] += 1; } } } } else { if (x[3] <= 25.07999897003174) { votes[2] += 1; } else { if (x[4] <= 71.15447998046875) { if (x[9] <= 25.943791389465332) { votes[6] += 1; } else { votes[6] += 1; } } else { votes[4] += 1; } } } } } else { if (x[2] <= 76.03376388549805) { if (x[3] <= 50.18461799621582) { if (x[3] <= 26.801849365234375) { if (x[2] <= 48.03310585021973) { votes[5] += 1; } else { votes[5] += 1; } } else { if (x[7] <= 57.22087860107422) { if (x[9] <= 77.59093475341797) { votes[5] += 1; } else { votes[5] += 1; } } else { if (x[5] <= 66.12232971191406) { votes[9] += 1; } else { votes[5] += 1; } } } } else { if (x[5] <= 52.11008071899414) { votes[3] += 1; } else { votes[2] += 1; } } } else { if (x[4] <= 84.75286102294922) { votes[2] += 1; } else { votes[2] += 1; } } } } else { if (x[4] <= 14.354893207550049) { votes[5] += 1; } else { if (x[9] <= 81.5708122253418) { if (x[7] <= 80.00427627563477) { if (x[9] <= 63.203256607055664) { if (x[7] <= 66.31694412231445) { if (x[5] <= 24.299986839294434) { votes[7] += 1; } else { votes[7] += 1; } } else { if (x[2] <= 50.44327735900879) { votes[9] += 1; } else { votes[7] += 1; } } } else { if (x[7] <= 39.34630584716797) { votes[7] += 1; } else { votes[7] += 1; } } } else { votes[9] += 1; } } else { votes[5] += 1; } } } } else { if (x[1] <= 134.72393798828125) { votes[7] += 1; } else { if (x[8] <= 68.7784538269043) { if (x[9] <= 39.42207908630371) { if (x[2] <= 133.65777587890625) { if (x[8] <= 31.22202205657959) { if (x[0] <= 307.5) { votes[4] += 1; } else { votes[4] += 1; } } else { votes[4] += 1; } } else { votes[4] += 1; } } else { if (x[8] <= 35.38151168823242) { votes[4] += 1; } else { votes[4] += 1; } } } else { votes[0] += 1; } } } } else { if (x[4] <= 34.99637794494629) { if (x[8] <= 59.9053897857666) { if (x[6] <= 47.15133476257324) { if (x[0] <= 331.5) { if (x[2] <= 71.23565673828125) { if (x[8] <= 26.083261489868164) { votes[8] += 1; } else { votes[5] += 1; } } else { votes[0] += 1; } } else { if (x[1] <= 250.74466705322266) { votes[9] += 1; } else { votes[1] += 1; } } } else { votes[5] += 1; } } else { if (x[7] <= 62.88149642944336) { votes[0] += 1; } else { votes[0] += 1; } } } else { if (x[6] <= 32.58868217468262) { if (x[7] <= 55.988868713378906) { if (x[1] <= 239.12567138671875) { if (x[1] <= 170.16968536376953) { if (x[2] <= 67.94009780883789) { votes[6] += 1; } else { votes[4] += 1; } } else { if (x[7] <= 26.775443077087402) { votes[5] += 1; } else { if (x[0] <= 299.5) { if (x[5] <= 40.2720890045166) { votes[2] += 1; } else { votes[3] += 1; } } else { if (x[0] <= 334.5) { votes[3] += 1; } else { votes[3] += 1; } } } } } else { votes[1] += 1; } } else { if (x[8] <= 46.8719367980957) { if (x[1] <= 197.21038055419922) { if (x[4] <= 50.925432205200195) { votes[6] += 1; } else { if (x[8] <= 39.35606575012207) { if (x[4] <= 55.20597839355469) { votes[6] += 1; } else { votes[6] += 1; } } else { votes[6] += 1; } } } else { if (x[4] <= 53.972381591796875) { votes[1] += 1; } else { votes[3] += 1; } } } else { if (x[9] <= 26.311281204223633) { votes[0] += 1; } else { votes[3] += 1; } } } } else { if (x[4] <= 85.4493179321289) { if (x[6] <= 56.12673377990723) { if (x[1] <= 215.2810287475586) { if (x[1] <= 178.11664581298828) { if (x[9] <= 34.8180046081543) { votes[6] += 1; } else { if (x[9] <= 72.41546249389648) { votes[9] += 1; } else { votes[5] += 1; } } } else { if (x[7] <= 36.808725357055664) { if (x[8] <= 46.79934310913086) { votes[2] += 1; } else { votes[5] += 1; } } else { if (x[5] <= 48.93000411987305) { votes[4] += 1; } else { votes[7] += 1; } } } } else { if (x[3] <= 84.06832122802734) { votes[1] += 1; } else { votes[1] += 1; } } } else { if (x[4] <= 42.37116050720215) { votes[7] += 1; } else { if (x[8] <= 79.81441497802734) { votes[9] += 1; } else { votes[1] += 1; } } } } else { if (x[5] <= 33.52818202972412) { votes[5] += 1; } else { if (x[4] <= 94.8919448852539) { votes[4] += 1; } else { votes[4] += 1; } } } } } } } else { if (x[2] <= 56.75261688232422) { if (x[3] <= 106.21439743041992) { if (x[2] <= 26.479475021362305) { votes[1] += 1; } else { if (x[7] <= 61.04249954223633) { votes[1] += 1; } else { votes[6] += 1; } } } else { votes[1] += 1; } } else { if (x[1] <= 141.52313232421875) { votes[0] += 1; } else { votes[0] += 1; } } } // tree #10 if (x[3] <= 96.70830535888672) { if (x[2] <= 46.68417930603027) { if (x[6] <= 36.39143180847168) { if (x[4] <= 35.05888557434082) { if (x[5] <= 57.079193115234375) { if (x[1] <= 256.19834899902344) { if (x[8] <= 44.02441215515137) { if (x[9] <= 29.553363800048828) { votes[8] += 1; } else { if (x[7] <= 36.092267990112305) { votes[8] += 1; } else { votes[8] += 1; } } } else { if (x[6] <= 25.292790412902832) { if (x[3] <= 22.57883644104004) { votes[8] += 1; } else { votes[3] += 1; } } else { if (x[1] <= 191.10655212402344) { votes[9] += 1; } else { votes[8] += 1; } } } } else { votes[1] += 1; } } else { if (x[1] <= 229.31871032714844) { if (x[1] <= 171.6680908203125) { votes[5] += 1; } else { votes[3] += 1; } } else { votes[1] += 1; } } } else { if (x[8] <= 31.105856895446777) { if (x[7] <= 63.27259063720703) { if (x[1] <= 243.23148345947266) { if (x[3] <= 47.08944129943848) { if (x[9] <= 52.891225814819336) { votes[8] += 1; } else { votes[5] += 1; } } else { if (x[3] <= 62.24947929382324) { votes[3] += 1; } else { votes[9] += 1; } } } else { votes[1] += 1; } } else { if (x[5] <= 51.32115364074707) { votes[6] += 1; } else { votes[6] += 1; } } } else { if (x[9] <= 20.511661529541016) { if (x[3] <= 53.0517692565918) { votes[8] += 1; } else { if (x[0] <= 317.5) { if (x[3] <= 87.61205673217773) { votes[6] += 1; } else { votes[1] += 1; } } else { votes[3] += 1; } } } else { if (x[4] <= 69.29703521728516) { if (x[1] <= 232.5267105102539) { if (x[1] <= 143.10707092285156) { votes[9] += 1; } else { if (x[7] <= 28.10801124572754) { votes[3] += 1; } else { votes[3] += 1; } } } else { votes[1] += 1; } } else { if (x[5] <= 66.26539611816406) { votes[5] += 1; } else { if (x[0] <= 332.5) { votes[9] += 1; } else { votes[3] += 1; } } } } } } } else { if (x[5] <= 90.6233901977539) { if (x[7] <= 57.754878997802734) { if (x[1] <= 180.47669982910156) { if (x[5] <= 56.37385177612305) { if (x[2] <= 20.087230682373047) { votes[9] += 1; } else { votes[9] += 1; } } else { if (x[3] <= 51.59763717651367) { votes[5] += 1; } else { if (x[7] <= 20.744741439819336) { votes[5] += 1; } else { votes[0] += 1; } } } } else { if (x[2] <= 22.83970546722412) { if (x[3] <= 53.240121841430664) { votes[8] += 1; } else { votes[1] += 1; } } else { if (x[4] <= 75.70230484008789) { if (x[7] <= 28.85506820678711) { votes[2] += 1; } else { if (x[8] <= 48.84687614440918) { votes[1] += 1; } else { votes[7] += 1; } } } else { votes[2] += 1; } } } } else { if (x[5] <= 51.648658752441406) { if (x[0] <= 317.5) { if (x[3] <= 62.53747749328613) { votes[9] += 1; } else { votes[1] += 1; } } else { votes[2] += 1; } } else { if (x[3] <= 65.82760238647461) { if (x[9] <= 31.443737030029297) { votes[5] += 1; } else { if (x[0] <= 280.5) { votes[9] += 1; } else { if (x[6] <= 50.09703254699707) { votes[9] += 1; } else { votes[9] += 1; } } } } else { votes[1] += 1; } } } } else { votes[5] += 1; } } } else { if (x[8] <= 70.10728073120117) { if (x[4] <= 74.23918914794922) { if (x[3] <= 47.77493476867676) { if (x[6] <= 58.6407356262207) { if (x[7] <= 68.91237258911133) { if (x[4] <= 47.04327201843262) { if (x[6] <= 25.57160472869873) { if (x[1] <= 187.08328247070312) { votes[9] += 1; } else { votes[8] += 1; } } else { if (x[8] <= 41.33811569213867) { votes[5] += 1; } else { votes[5] += 1; } } } else { if (x[2] <= 84.58867263793945) { if (x[5] <= 74.78783416748047) { votes[2] += 1; } else { votes[5] += 1; } } else { votes[4] += 1; } } } else { if (x[9] <= 28.320473670959473) { if (x[1] <= 194.84010314941406) { votes[6] += 1; } else { votes[6] += 1; } } else { votes[9] += 1; } } } else { if (x[8] <= 31.399094581604004) { if (x[3] <= 24.613200187683105) { votes[7] += 1; } else { votes[5] += 1; } } else { if (x[2] <= 50.70440101623535) { votes[7] += 1; } else { if (x[5] <= 36.76280975341797) { votes[7] += 1; } else { votes[7] += 1; } } } } } else { if (x[9] <= 35.88986587524414) { if (x[7] <= 63.429866790771484) { if (x[9] <= 11.084537982940674) { if (x[4] <= 26.36522102355957) { votes[0] += 1; } else { votes[0] += 1; } } else { if (x[1] <= 162.2801742553711) { if (x[6] <= 34.58779335021973) { votes[6] += 1; } else { votes[0] += 1; } } else { if (x[2] <= 73.04993438720703) { votes[8] += 1; } else { votes[6] += 1; } } } } else { if (x[1] <= 200.42822265625) { if (x[9] <= 25.975568771362305) { if (x[1] <= 150.11499786376953) { votes[6] += 1; } else { votes[6] += 1; } } else { votes[6] += 1; } } else { votes[7] += 1; } } } else { if (x[8] <= 41.969322204589844) { if (x[7] <= 76.49167251586914) { if (x[6] <= 39.41720962524414) { if (x[0] <= 308.5) { votes[2] += 1; } else { votes[2] += 1; } } else { votes[5] += 1; } } else { votes[6] += 1; } } else { if (x[6] <= 46.76980972290039) { if (x[5] <= 51.5146541595459) { votes[5] += 1; } else { votes[6] += 1; } } else { votes[7] += 1; } } } } } else { if (x[7] <= 26.404484748840332) { if (x[5] <= 25.539511680603027) { if (x[0] <= 290.0) { votes[9] += 1; } else { votes[4] += 1; } } else { if (x[4] <= 103.57019424438477) { if (x[0] <= 289.0) { votes[2] += 1; } else { if (x[8] <= 54.01511764526367) { votes[2] += 1; } else { votes[2] += 1; } } } else { votes[4] += 1; } } } else { if (x[7] <= 78.17315292358398) { if (x[6] <= 32.184547424316406) { if (x[5] <= 46.55631637573242) { if (x[0] <= 295.5) { if (x[8] <= 34.31036186218262) { votes[4] += 1; } else { votes[9] += 1; } } else { if (x[3] <= 23.76851463317871) { votes[4] += 1; } else { votes[2] += 1; } } } else { if (x[8] <= 23.344429969787598) { votes[2] += 1; } else { votes[3] += 1; } } } else { if (x[2] <= 81.89014053344727) { if (x[4] <= 89.65270233154297) { if (x[6] <= 48.36501884460449) { votes[2] += 1; } else { votes[4] += 1; } } else { if (x[7] <= 40.539180755615234) { votes[4] += 1; } else { votes[4] += 1; } } } else { if (x[0] <= 292.0) { if (x[3] <= 31.461118698120117) { votes[4] += 1; } else { votes[7] += 1; } } else { if (x[3] <= 47.440900802612305) { votes[4] += 1; } else { votes[4] += 1; } } } } } else { if (x[9] <= 24.43094825744629) { votes[6] += 1; } else { votes[6] += 1; } } } } } else { if (x[4] <= 42.0539493560791) { if (x[1] <= 191.88985443115234) { votes[0] += 1; } else { votes[0] += 1; } } else { if (x[4] <= 68.78206253051758) { votes[5] += 1; } else { votes[2] += 1; } } } } } else { if (x[0] <= 348.0) { if (x[9] <= 38.088693618774414) { if (x[3] <= 101.19491577148438) { if (x[4] <= 38.513553619384766) { votes[0] += 1; } else { if (x[2] <= 24.445368766784668) { votes[1] += 1; } else { votes[1] += 1; } } } else { votes[1] += 1; } } else { votes[1] += 1; } } else { if (x[2] <= 48.2346305847168) { votes[1] += 1; } else { votes[0] += 1; } } } // tree #11 if (x[4] <= 74.03217697143555) { if (x[2] <= 45.95516395568848) { if (x[9] <= 28.211307525634766) { if (x[1] <= 226.6769027709961) { if (x[1] <= 159.52884674072266) { if (x[4] <= 61.808523178100586) { votes[0] += 1; } else { votes[6] += 1; } } else { if (x[4] <= 47.399967193603516) { if (x[3] <= 90.13548278808594) { if (x[3] <= 53.122379302978516) { if (x[2] <= 29.672361373901367) { votes[8] += 1; } else { if (x[7] <= 26.40487003326416) { votes[8] += 1; } else { votes[8] += 1; } } } else { if (x[0] <= 312.0) { votes[8] += 1; } else { votes[8] += 1; } } } else { votes[1] += 1; } } else { if (x[8] <= 34.09780311584473) { if (x[8] <= 18.58137035369873) { votes[1] += 1; } else { votes[1] += 1; } } else { if (x[3] <= 66.9669189453125) { if (x[7] <= 65.02797317504883) { votes[3] += 1; } else { votes[3] += 1; } } else { if (x[5] <= 56.1098518371582) { votes[3] += 1; } else { votes[7] += 1; } } } } } } else { if (x[7] <= 23.8458309173584) { if (x[3] <= 76.24283981323242) { if (x[2] <= 20.005956649780273) { votes[8] += 1; } else { votes[8] += 1; } } else { if (x[3] <= 99.41426849365234) { votes[1] += 1; } else { votes[1] += 1; } } } else { if (x[1] <= 258.8976745605469) { if (x[9] <= 11.733987808227539) { votes[8] += 1; } else { if (x[9] <= 24.365506172180176) { if (x[2] <= 37.1004753112793) { votes[1] += 1; } else { votes[1] += 1; } } else { votes[1] += 1; } } } else { votes[1] += 1; } } } } else { if (x[7] <= 57.754878997802734) { if (x[9] <= 68.34563446044922) { if (x[1] <= 182.6114501953125) { if (x[9] <= 46.261878967285156) { if (x[4] <= 45.63495445251465) { if (x[1] <= 165.62069702148438) { votes[9] += 1; } else { votes[3] += 1; } } else { votes[3] += 1; } } else { if (x[3] <= 57.60500907897949) { votes[5] += 1; } else { if (x[9] <= 52.890071868896484) { votes[9] += 1; } else { votes[9] += 1; } } } } else { if (x[3] <= 86.01268005371094) { if (x[6] <= 49.46500205993652) { if (x[0] <= 361.5) { if (x[9] <= 42.294904708862305) { votes[8] += 1; } else { votes[3] += 1; } } else { if (x[6] <= 29.688446044921875) { votes[8] += 1; } else { votes[9] += 1; } } } else { if (x[8] <= 52.061580657958984) { votes[7] += 1; } else { votes[7] += 1; } } } else { votes[1] += 1; } } } else { if (x[1] <= 163.1903533935547) { votes[5] += 1; } else { votes[5] += 1; } } } else { if (x[6] <= 32.91789627075195) { if (x[9] <= 48.030263900756836) { if (x[5] <= 53.40678787231445) { votes[3] += 1; } else { votes[3] += 1; } } else { votes[2] += 1; } } else { if (x[5] <= 86.72468566894531) { if (x[6] <= 65.83084106445312) { if (x[4] <= 67.43625259399414) { if (x[3] <= 20.1887788772583) { votes[9] += 1; } else { if (x[6] <= 37.22380256652832) { votes[9] += 1; } else { votes[9] += 1; } } } else { votes[6] += 1; } } else { if (x[1] <= 160.96646118164062) { votes[9] += 1; } else { votes[1] += 1; } } } else { votes[5] += 1; } } } } } else { if (x[6] <= 58.789255142211914) { if (x[1] <= 157.60570526123047) { if (x[8] <= 49.875844955444336) { if (x[6] <= 36.73006248474121) { if (x[0] <= 263.5) { if (x[2] <= 64.750732421875) { votes[6] += 1; } else { votes[6] += 1; } } else { if (x[3] <= 61.78651237487793) { votes[6] += 1; } else { votes[6] += 1; } } } else { votes[2] += 1; } } else { if (x[5] <= 42.51864814758301) { votes[9] += 1; } else { votes[0] += 1; } } } else { if (x[7] <= 65.54662704467773) { if (x[2] <= 77.3282470703125) { if (x[9] <= 33.16085624694824) { if (x[9] <= 21.99304485321045) { if (x[6] <= 30.03072166442871) { if (x[3] <= 52.12333869934082) { votes[8] += 1; } else { votes[1] += 1; } } else { votes[8] += 1; } } else { if (x[1] <= 193.92840576171875) { votes[3] += 1; } else { votes[2] += 1; } } } else { if (x[7] <= 30.275075912475586) { if (x[4] <= 50.11588096618652) { votes[5] += 1; } else { if (x[8] <= 37.20658874511719) { votes[2] += 1; } else { votes[5] += 1; } } } else { if (x[5] <= 61.553958892822266) { if (x[6] <= 40.9980583190918) { votes[3] += 1; } else { votes[2] += 1; } } else { if (x[2] <= 53.85745429992676) { votes[5] += 1; } else { votes[5] += 1; } } } } } else { if (x[2] <= 112.0848388671875) { if (x[8] <= 50.20256233215332) { if (x[1] <= 190.10396575927734) { if (x[8] <= 32.51097869873047) { votes[3] += 1; } else { votes[6] += 1; } } else { votes[6] += 1; } } else { if (x[5] <= 52.5875244140625) { votes[0] += 1; } else { votes[0] += 1; } } } else { votes[4] += 1; } } } else { if (x[6] <= 31.807608604431152) { if (x[5] <= 58.169321060180664) { if (x[6] <= 19.98548698425293) { if (x[6] <= 15.418084621429443) { votes[7] += 1; } else { votes[2] += 1; } } else { votes[6] += 1; } } else { if (x[0] <= 314.0) { votes[6] += 1; } else { votes[6] += 1; } } } else { if (x[2] <= 52.35395431518555) { votes[9] += 1; } else { if (x[5] <= 67.16671752929688) { votes[0] += 1; } else { if (x[1] <= 198.58859252929688) { votes[5] += 1; } else { votes[9] += 1; } } } } } } } else { if (x[8] <= 70.85304260253906) { if (x[4] <= 14.839163303375244) { votes[7] += 1; } else { if (x[0] <= 355.0) { if (x[9] <= 74.38917922973633) { if (x[8] <= 63.243268966674805) { if (x[3] <= 32.65863609313965) { votes[7] += 1; } else { if (x[2] <= 62.82113075256348) { votes[7] += 1; } else { votes[7] += 1; } } } else { votes[7] += 1; } } else { votes[7] += 1; } } else { votes[7] += 1; } } } else { votes[0] += 1; } } } } else { if (x[7] <= 29.68941307067871) { if (x[2] <= 110.36770629882812) { if (x[5] <= 40.11178779602051) { if (x[8] <= 46.69964599609375) { votes[2] += 1; } else { if (x[9] <= 39.691017150878906) { votes[4] += 1; } else { votes[5] += 1; } } } else { if (x[8] <= 53.2286262512207) { if (x[2] <= 54.77873420715332) { votes[2] += 1; } else { votes[2] += 1; } } else { if (x[9] <= 49.39092445373535) { votes[4] += 1; } else { votes[2] += 1; } } } } else { votes[4] += 1; } } else { if (x[5] <= 58.4840087890625) { if (x[7] <= 69.96895599365234) { if (x[2] <= 50.88178062438965) { votes[1] += 1; } else { if (x[9] <= 42.81958770751953) { if (x[8] <= 31.005033493041992) { if (x[9] <= 26.700298309326172) { if (x[6] <= 35.81415843963623) { votes[2] += 1; } else { votes[4] += 1; } } else { if (x[8] <= 27.998899459838867) { if (x[4] <= 90.15359497070312) { votes[4] += 1; } else { votes[4] += 1; } } else { votes[4] += 1; } } } else { if (x[5] <= 10.756178855895996) { votes[4] += 1; } else { if (x[6] <= 31.499645233154297) { if (x[4] <= 89.34063720703125) { votes[4] += 1; } else { votes[9] += 1; } } else { if (x[3] <= 47.732635498046875) { votes[4] += 1; } else { votes[4] += 1; } } } } } else { if (x[8] <= 46.82310676574707) { if (x[8] <= 30.05475616455078) { votes[7] += 1; } else { votes[4] += 1; } } else { votes[9] += 1; } } } } else { if (x[0] <= 293.0) { votes[6] += 1; } else { if (x[3] <= 57.08742713928223) { votes[9] += 1; } else { votes[1] += 1; } } } } else { if (x[3] <= 59.40435600280762) { if (x[9] <= 25.875980377197266) { votes[4] += 1; } else { if (x[2] <= 71.80657958984375) { votes[5] += 1; } else { votes[2] += 1; } } } else { if (x[8] <= 38.99447441101074) { if (x[7] <= 82.23426055908203) { votes[6] += 1; } else { votes[6] += 1; } } else { votes[3] += 1; } } } } } // tree #12 if (x[8] <= 69.85791015625) { if (x[3] <= 92.2306137084961) { if (x[3] <= 43.88621139526367) { if (x[6] <= 58.70555877685547) { if (x[4] <= 73.83028793334961) { if (x[9] <= 39.778743743896484) { if (x[4] <= 27.861042976379395) { if (x[2] <= 58.1296501159668) { if (x[5] <= 47.55875778198242) { votes[8] += 1; } else { if (x[3] <= 33.497995376586914) { votes[8] += 1; } else { votes[8] += 1; } } } else { votes[8] += 1; } } else { if (x[7] <= 41.19668769836426) { if (x[9] <= 14.9028639793396) { votes[8] += 1; } else { if (x[3] <= 37.12424850463867) { votes[8] += 1; } else { votes[3] += 1; } } } else { if (x[2] <= 62.95419502258301) { if (x[6] <= 23.182199478149414) { votes[3] += 1; } else { votes[9] += 1; } } else { if (x[6] <= 38.7496337890625) { votes[6] += 1; } else { votes[7] += 1; } } } } } else { if (x[3] <= 33.45882987976074) { if (x[5] <= 57.19107627868652) { if (x[0] <= 306.0) { if (x[9] <= 45.67512893676758) { votes[3] += 1; } else { votes[2] += 1; } } else { if (x[7] <= 35.158620834350586) { votes[5] += 1; } else { votes[8] += 1; } } } else { if (x[8] <= 34.28239440917969) { if (x[2] <= 74.89603805541992) { votes[5] += 1; } else { votes[5] += 1; } } else { if (x[1] <= 177.24895477294922) { votes[2] += 1; } else { votes[5] += 1; } } } } else { if (x[7] <= 62.99399948120117) { if (x[9] <= 73.3635482788086) { if (x[7] <= 44.658111572265625) { votes[2] += 1; } else { votes[3] += 1; } } else { votes[5] += 1; } } else { votes[9] += 1; } } } } else { if (x[6] <= 28.13762855529785) { if (x[5] <= 31.927069664001465) { if (x[8] <= 35.929494857788086) { votes[2] += 1; } else { if (x[1] <= 172.0038070678711) { votes[9] += 1; } else { votes[4] += 1; } } } else { if (x[1] <= 191.5557861328125) { votes[2] += 1; } else { votes[2] += 1; } } } else { if (x[2] <= 87.26149368286133) { if (x[5] <= 37.03104019165039) { if (x[8] <= 41.424509048461914) { votes[2] += 1; } else { votes[4] += 1; } } else { if (x[2] <= 62.3504753112793) { votes[9] += 1; } else { if (x[1] <= 185.7206039428711) { votes[2] += 1; } else { votes[2] += 1; } } } } else { if (x[3] <= 37.631980895996094) { if (x[2] <= 99.7669906616211) { votes[4] += 1; } else { if (x[8] <= 27.48604393005371) { votes[4] += 1; } else { votes[4] += 1; } } } else { votes[7] += 1; } } } } } else { if (x[9] <= 72.2368278503418) { if (x[3] <= 38.55192184448242) { if (x[7] <= 67.12389755249023) { if (x[0] <= 288.0) { if (x[9] <= 40.26675605773926) { votes[7] += 1; } else { votes[7] += 1; } } else { votes[7] += 1; } } else { votes[9] += 1; } } else { if (x[0] <= 295.5) { votes[7] += 1; } else { votes[4] += 1; } } } else { votes[5] += 1; } } } else { if (x[6] <= 35.518781661987305) { if (x[2] <= 33.65395164489746) { if (x[9] <= 25.452651023864746) { if (x[2] <= 17.84283447265625) { if (x[7] <= 34.92577934265137) { votes[1] += 1; } else { if (x[0] <= 366.5) { votes[3] += 1; } else { votes[1] += 1; } } } else { if (x[4] <= 52.36374855041504) { if (x[9] <= 19.75059223175049) { votes[8] += 1; } else { votes[8] += 1; } } else { if (x[7] <= 60.781084060668945) { votes[3] += 1; } else { votes[6] += 1; } } } } else { if (x[7] <= 15.603535175323486) { votes[8] += 1; } else { if (x[6] <= 28.60840892791748) { if (x[9] <= 33.783668518066406) { votes[3] += 1; } else { if (x[6] <= 20.902210235595703) { votes[3] += 1; } else { votes[3] += 1; } } } else { votes[9] += 1; } } } } else { if (x[7] <= 63.74949645996094) { if (x[4] <= 35.220523834228516) { if (x[2] <= 63.516807556152344) { if (x[9] <= 35.11794948577881) { votes[8] += 1; } else { votes[5] += 1; } } else { votes[0] += 1; } } else { if (x[1] <= 193.36153411865234) { if (x[7] <= 39.11549377441406) { if (x[9] <= 31.06320571899414) { votes[4] += 1; } else { votes[3] += 1; } } else { if (x[4] <= 73.99549102783203) { votes[6] += 1; } else { votes[4] += 1; } } } else { if (x[8] <= 43.060585021972656) { if (x[6] <= 20.22320556640625) { votes[2] += 1; } else { votes[2] += 1; } } else { if (x[0] <= 317.5) { votes[5] += 1; } else { votes[1] += 1; } } } } } else { if (x[4] <= 38.16152763366699) { votes[6] += 1; } else { if (x[8] <= 48.296363830566406) { if (x[8] <= 31.3218412399292) { if (x[6] <= 31.92626667022705) { votes[6] += 1; } else { votes[6] += 1; } } else { if (x[5] <= 57.15966987609863) { votes[7] += 1; } else { votes[6] += 1; } } } else { votes[3] += 1; } } } } } else { if (x[4] <= 82.6570930480957) { if (x[5] <= 84.22687530517578) { if (x[2] <= 33.02907943725586) { if (x[1] <= 205.03919219970703) { if (x[9] <= 29.659716606140137) { votes[6] += 1; } else { if (x[8] <= 29.115150451660156) { votes[9] += 1; } else { votes[9] += 1; } } } else { votes[1] += 1; } } else { if (x[7] <= 50.129127502441406) { if (x[1] <= 161.65792846679688) { if (x[8] <= 49.01998710632324) { votes[5] += 1; } else { votes[0] += 1; } } else { if (x[5] <= 58.64380645751953) { votes[5] += 1; } else { votes[2] += 1; } } } else { if (x[5] <= 75.1520767211914) { if (x[8] <= 47.98960304260254) { votes[7] += 1; } else { votes[7] += 1; } } else { votes[9] += 1; } } } } else { if (x[9] <= 64.08912658691406) { votes[1] += 1; } else { votes[5] += 1; } } } else { if (x[7] <= 35.45240592956543) { votes[5] += 1; } else { if (x[1] <= 159.2239227294922) { votes[4] += 1; } else { if (x[5] <= 36.72288703918457) { votes[4] += 1; } else { votes[4] += 1; } } } } } } } else { if (x[1] <= 164.1084976196289) { votes[6] += 1; } else { if (x[1] <= 210.48908233642578) { if (x[9] <= 38.079952239990234) { if (x[2] <= 35.49093818664551) { votes[1] += 1; } else { votes[1] += 1; } } else { votes[2] += 1; } } else { if (x[0] <= 278.5) { if (x[4] <= 19.957079887390137) { votes[1] += 1; } else { votes[1] += 1; } } else { votes[1] += 1; } } } } } else { if (x[4] <= 37.766136169433594) { if (x[3] <= 40.88563346862793) { if (x[6] <= 20.656736373901367) { votes[8] += 1; } else { votes[8] += 1; } } else { if (x[6] <= 56.593692779541016) { votes[0] += 1; } else { votes[0] += 1; } } } else { if (x[7] <= 48.6651496887207) { if (x[1] <= 187.11061096191406) { votes[9] += 1; } else { if (x[2] <= 45.45497703552246) { votes[7] += 1; } else { votes[5] += 1; } } } else { if (x[4] <= 56.065202713012695) { if (x[1] <= 165.6647720336914) { votes[3] += 1; } else { votes[3] += 1; } } else { if (x[6] <= 58.10812950134277) { votes[3] += 1; } else { votes[1] += 1; } } } } } // tree #13 if (x[1] <= 225.6843490600586) { if (x[4] <= 73.64823913574219) { if (x[8] <= 70.3804931640625) { if (x[4] <= 33.96344566345215) { if (x[3] <= 72.14056777954102) { if (x[1] <= 179.8366928100586) { if (x[2] <= 36.327823638916016) { if (x[3] <= 40.079362869262695) { votes[9] += 1; } else { if (x[0] <= 281.0) { votes[3] += 1; } else { votes[9] += 1; } } } else { if (x[8] <= 49.85747528076172) { if (x[2] <= 69.27653121948242) { if (x[4] <= 19.77674674987793) { votes[5] += 1; } else { votes[6] += 1; } } else { if (x[3] <= 22.570990562438965) { votes[7] += 1; } else { votes[7] += 1; } } } else { votes[0] += 1; } } } else { if (x[6] <= 60.71514892578125) { if (x[9] <= 56.7335147857666) { if (x[9] <= 42.685874938964844) { if (x[6] <= 39.055105209350586) { votes[8] += 1; } else { votes[9] += 1; } } else { if (x[6] <= 28.92546844482422) { votes[8] += 1; } else { votes[9] += 1; } } } else { votes[5] += 1; } } else { if (x[9] <= 38.66168022155762) { votes[7] += 1; } else { if (x[9] <= 60.266544342041016) { votes[7] += 1; } else { votes[7] += 1; } } } } } else { if (x[2] <= 57.02500343322754) { if (x[5] <= 29.07013511657715) { votes[1] += 1; } else { votes[9] += 1; } } else { if (x[8] <= 62.01930046081543) { votes[0] += 1; } else { votes[0] += 1; } } } } else { if (x[7] <= 63.43428421020508) { if (x[9] <= 57.314279556274414) { if (x[2] <= 33.0833797454834) { if (x[3] <= 71.79190063476562) { if (x[6] <= 37.67309761047363) { if (x[9] <= 15.0266432762146) { votes[8] += 1; } else { votes[3] += 1; } } else { votes[9] += 1; } } else { if (x[3] <= 91.47292709350586) { if (x[8] <= 50.106143951416016) { votes[9] += 1; } else { votes[7] += 1; } } else { if (x[3] <= 101.19491577148438) { votes[1] += 1; } else { votes[1] += 1; } } } } else { if (x[3] <= 34.102630615234375) { if (x[8] <= 22.928380966186523) { votes[2] += 1; } else { if (x[9] <= 36.265363693237305) { votes[4] += 1; } else { votes[7] += 1; } } } else { if (x[9] <= 27.04564094543457) { if (x[5] <= 51.6806697845459) { votes[4] += 1; } else { votes[6] += 1; } } else { if (x[1] <= 199.80687713623047) { votes[3] += 1; } else { votes[2] += 1; } } } } } else { if (x[5] <= 58.33836364746094) { if (x[8] <= 33.16377258300781) { if (x[4] <= 61.14617919921875) { votes[9] += 1; } else { votes[2] += 1; } } else { if (x[5] <= 32.16877555847168) { votes[5] += 1; } else { if (x[6] <= 48.694664001464844) { votes[3] += 1; } else { votes[7] += 1; } } } } else { if (x[3] <= 48.06993293762207) { if (x[0] <= 336.0) { if (x[1] <= 163.63898468017578) { votes[5] += 1; } else { votes[5] += 1; } } else { votes[5] += 1; } } else { votes[5] += 1; } } } } else { if (x[8] <= 37.8344783782959) { if (x[9] <= 38.641502380371094) { if (x[5] <= 54.02375411987305) { if (x[0] <= 296.5) { votes[6] += 1; } else { votes[6] += 1; } } else { if (x[1] <= 202.7830047607422) { votes[6] += 1; } else { if (x[9] <= 23.621459007263184) { votes[6] += 1; } else { votes[6] += 1; } } } } else { if (x[3] <= 65.74153900146484) { votes[9] += 1; } else { votes[6] += 1; } } } else { if (x[2] <= 37.8945255279541) { if (x[6] <= 34.221343994140625) { votes[3] += 1; } else { if (x[3] <= 64.9094123840332) { votes[9] += 1; } else { votes[1] += 1; } } } else { if (x[1] <= 196.6693115234375) { if (x[4] <= 41.17489433288574) { votes[2] += 1; } else { votes[7] += 1; } } else { if (x[9] <= 27.584601402282715) { votes[6] += 1; } else { votes[5] += 1; } } } } } } } else { if (x[2] <= 51.644718170166016) { if (x[7] <= 72.13328552246094) { if (x[1] <= 161.5366668701172) { votes[0] += 1; } else { if (x[8] <= 76.16962814331055) { votes[7] += 1; } else { if (x[6] <= 26.822354316711426) { if (x[3] <= 36.029680252075195) { votes[8] += 1; } else { votes[3] += 1; } } else { votes[8] += 1; } } } } else { if (x[3] <= 59.15520668029785) { votes[9] += 1; } else { votes[1] += 1; } } } else { if (x[5] <= 53.91727638244629) { if (x[3] <= 50.28413772583008) { votes[3] += 1; } else { votes[0] += 1; } } else { if (x[1] <= 191.64971160888672) { votes[0] += 1; } else { votes[0] += 1; } } } } } else { if (x[2] <= 100.18801498413086) { if (x[9] <= 47.3942756652832) { if (x[2] <= 48.43959999084473) { if (x[1] <= 178.78356170654297) { if (x[8] <= 30.31187152862549) { votes[6] += 1; } else { votes[3] += 1; } } else { if (x[6] <= 35.07685661315918) { votes[3] += 1; } else { if (x[0] <= 320.5) { votes[1] += 1; } else { votes[1] += 1; } } } } else { if (x[7] <= 73.33741760253906) { if (x[4] <= 96.2869873046875) { if (x[8] <= 49.09720802307129) { if (x[3] <= 66.31815338134766) { if (x[1] <= 196.05201721191406) { votes[2] += 1; } else { votes[2] += 1; } } else { votes[4] += 1; } } else { if (x[8] <= 54.558855056762695) { votes[9] += 1; } else { if (x[8] <= 60.88295936584473) { votes[4] += 1; } else { votes[4] += 1; } } } } else { if (x[4] <= 107.12285232543945) { if (x[7] <= 33.345468521118164) { votes[4] += 1; } else { if (x[3] <= 41.40159034729004) { votes[4] += 1; } else { votes[4] += 1; } } } else { votes[9] += 1; } } } else { if (x[3] <= 53.80517768859863) { votes[6] += 1; } else { votes[6] += 1; } } } } else { if (x[5] <= 41.70003700256348) { if (x[2] <= 65.06583404541016) { votes[5] += 1; } else { votes[2] += 1; } } else { if (x[6] <= 46.15265655517578) { if (x[4] <= 79.91551971435547) { votes[2] += 1; } else { if (x[6] <= 25.29567241668701) { votes[2] += 1; } else { votes[2] += 1; } } } else { votes[2] += 1; } } } } else { if (x[1] <= 133.74049377441406) { votes[7] += 1; } else { if (x[5] <= 17.823650360107422) { if (x[8] <= 40.06419563293457) { votes[2] += 1; } else { votes[4] += 1; } } else { if (x[0] <= 349.5) { if (x[5] <= 65.52200698852539) { if (x[6] <= 50.058082580566406) { if (x[1] <= 147.4048614501953) { votes[4] += 1; } else { votes[4] += 1; } } else { votes[4] += 1; } } else { votes[4] += 1; } } else { votes[4] += 1; } } } } } } else { if (x[2] <= 52.90208435058594) { if (x[0] <= 336.0) { if (x[9] <= 42.1712532043457) { if (x[5] <= 14.646533966064453) { votes[1] += 1; } else { votes[1] += 1; } } else { votes[3] += 1; } } else { if (x[7] <= 45.858272552490234) { if (x[0] <= 361.0) { if (x[3] <= 54.33842086791992) { if (x[0] <= 352.0) { votes[8] += 1; } else { votes[8] += 1; } } else { votes[2] += 1; } } else { if (x[3] <= 52.07104301452637) { if (x[4] <= 32.42593765258789) { votes[8] += 1; } else { votes[1] += 1; } } else { votes[1] += 1; } } } else { if (x[6] <= 30.75557041168213) { if (x[9] <= 24.872608184814453) { votes[1] += 1; } else { votes[1] += 1; } } else { votes[1] += 1; } } } } else { votes[8] += 1; } } // tree #14 if (x[2] <= 46.68417930603027) { if (x[4] <= 26.840635299682617) { if (x[0] <= 307.0) { if (x[1] <= 214.4158172607422) { if (x[8] <= 26.740758895874023) { votes[8] += 1; } else { if (x[5] <= 44.69489860534668) { votes[8] += 1; } else { votes[3] += 1; } } } else { votes[1] += 1; } } else { if (x[8] <= 44.33700370788574) { if (x[7] <= 10.219985008239746) { votes[1] += 1; } else { if (x[1] <= 243.0903549194336) { votes[8] += 1; } else { if (x[6] <= 16.940852165222168) { votes[1] += 1; } else { votes[1] += 1; } } } } else { if (x[5] <= 24.760540008544922) { votes[8] += 1; } else { if (x[4] <= 19.98799228668213) { votes[9] += 1; } else { votes[3] += 1; } } } } } else { if (x[3] <= 69.82028198242188) { if (x[5] <= 84.56995010375977) { if (x[1] <= 178.8758087158203) { if (x[6] <= 33.07240676879883) { if (x[8] <= 38.49072456359863) { if (x[9] <= 23.38478374481201) { votes[6] += 1; } else { if (x[9] <= 43.16324806213379) { votes[3] += 1; } else { votes[5] += 1; } } } else { if (x[3] <= 47.4023323059082) { votes[3] += 1; } else { votes[3] += 1; } } } else { if (x[4] <= 65.83256912231445) { if (x[7] <= 43.77821350097656) { votes[5] += 1; } else { if (x[2] <= 30.81202220916748) { votes[9] += 1; } else { votes[9] += 1; } } } else { votes[6] += 1; } } } else { if (x[7] <= 48.17859649658203) { if (x[6] <= 49.84891700744629) { if (x[4] <= 49.2439079284668) { if (x[9] <= 36.390737533569336) { if (x[2] <= 11.523767948150635) { votes[1] += 1; } else { votes[8] += 1; } } else { votes[3] += 1; } } else { if (x[0] <= 367.5) { if (x[3] <= 44.82007026672363) { votes[5] += 1; } else { votes[3] += 1; } } else { votes[1] += 1; } } } else { if (x[4] <= 53.6618537902832) { votes[2] += 1; } else { votes[7] += 1; } } } else { if (x[7] <= 82.84102249145508) { if (x[6] <= 37.12511444091797) { if (x[9] <= 52.00638198852539) { if (x[8] <= 53.94970703125) { votes[3] += 1; } else { votes[3] += 1; } } else { votes[3] += 1; } } else { if (x[8] <= 57.609296798706055) { if (x[4] <= 48.63895034790039) { votes[9] += 1; } else { votes[9] += 1; } } else { votes[7] += 1; } } } else { votes[9] += 1; } } } } else { if (x[8] <= 56.912973403930664) { if (x[1] <= 191.7242202758789) { votes[5] += 1; } else { votes[2] += 1; } } else { votes[0] += 1; } } } else { if (x[1] <= 170.39476013183594) { if (x[7] <= 57.11182403564453) { votes[0] += 1; } else { if (x[9] <= 26.308406829833984) { votes[6] += 1; } else { votes[6] += 1; } } } else { if (x[0] <= 298.5) { if (x[9] <= 30.599675178527832) { if (x[0] <= 282.0) { if (x[1] <= 201.51895141601562) { votes[1] += 1; } else { votes[1] += 1; } } else { votes[1] += 1; } } else { if (x[6] <= 44.663108825683594) { votes[5] += 1; } else { votes[5] += 1; } } } else { if (x[9] <= 41.35871696472168) { if (x[6] <= 14.326762199401855) { votes[1] += 1; } else { if (x[6] <= 50.97877502441406) { if (x[1] <= 206.49554443359375) { votes[1] += 1; } else { votes[1] += 1; } } else { if (x[2] <= 23.778292655944824) { votes[1] += 1; } else { votes[1] += 1; } } } } else { if (x[8] <= 69.18818664550781) { votes[2] += 1; } else { votes[1] += 1; } } } } } } } else { if (x[6] <= 58.74375534057617) { if (x[2] <= 96.67149353027344) { if (x[9] <= 46.56937789916992) { if (x[4] <= 31.615029335021973) { if (x[1] <= 177.49744415283203) { if (x[8] <= 30.393230438232422) { votes[6] += 1; } else { votes[0] += 1; } } else { if (x[2] <= 73.95386505126953) { if (x[5] <= 71.30602645874023) { if (x[0] <= 318.0) { votes[1] += 1; } else { if (x[4] <= 22.898380279541016) { votes[8] += 1; } else { votes[8] += 1; } } } else { votes[9] += 1; } } else { votes[0] += 1; } } } else { if (x[7] <= 65.48060989379883) { if (x[9] <= 23.046696662902832) { if (x[1] <= 168.19791412353516) { if (x[0] <= 277.0) { votes[6] += 1; } else { votes[0] += 1; } } else { if (x[4] <= 90.28252792358398) { if (x[2] <= 64.96310997009277) { votes[1] += 1; } else { votes[4] += 1; } } else { votes[4] += 1; } } } else { if (x[4] <= 54.6996955871582) { if (x[5] <= 69.8034439086914) { if (x[6] <= 45.55203437805176) { votes[3] += 1; } else { votes[7] += 1; } } else { if (x[8] <= 48.850738525390625) { votes[6] += 1; } else { votes[0] += 1; } } } else { if (x[7] <= 43.939109802246094) { if (x[4] <= 102.4984359741211) { votes[2] += 1; } else { votes[9] += 1; } } else { if (x[8] <= 34.35097312927246) { votes[4] += 1; } else { votes[2] += 1; } } } } } else { if (x[6] <= 40.5676383972168) { if (x[3] <= 34.181175231933594) { votes[6] += 1; } else { if (x[9] <= 37.81451606750488) { if (x[8] <= 31.3218412399292) { votes[6] += 1; } else { votes[6] += 1; } } else { votes[6] += 1; } } } else { votes[6] += 1; } } } } else { if (x[2] <= 76.03376388549805) { if (x[4] <= 73.981689453125) { if (x[4] <= 49.13254356384277) { if (x[3] <= 54.30460166931152) { if (x[5] <= 35.84577560424805) { votes[5] += 1; } else { if (x[3] <= 36.4987678527832) { votes[5] += 1; } else { votes[5] += 1; } } } else { votes[3] += 1; } } else { if (x[9] <= 53.86100196838379) { if (x[7] <= 36.18863487243652) { votes[2] += 1; } else { votes[3] += 1; } } else { if (x[6] <= 48.979570388793945) { if (x[7] <= 24.075596809387207) { votes[2] += 1; } else { votes[5] += 1; } } else { votes[2] += 1; } } } } else { if (x[0] <= 310.0) { if (x[3] <= 49.520071029663086) { votes[2] += 1; } else { votes[2] += 1; } } else { if (x[1] <= 194.53011322021484) { votes[5] += 1; } else { if (x[4] <= 83.35245132446289) { votes[2] += 1; } else { votes[2] += 1; } } } } } else { if (x[3] <= 47.93217849731445) { if (x[4] <= 75.90789794921875) { votes[5] += 1; } else { if (x[2] <= 83.94710540771484) { votes[2] += 1; } else { votes[2] += 1; } } } else { votes[0] += 1; } } } } else { if (x[8] <= 65.31142044067383) { if (x[6] <= 15.848027229309082) { votes[2] += 1; } else { if (x[1] <= 145.91480255126953) { votes[7] += 1; } else { if (x[8] <= 22.674137115478516) { votes[2] += 1; } else { if (x[3] <= 12.390905380249023) { votes[4] += 1; } else { if (x[4] <= 73.9629898071289) { votes[4] += 1; } else { if (x[8] <= 60.77326202392578) { votes[4] += 1; } else { votes[4] += 1; } } } } } } } else { if (x[3] <= 50.64502143859863) { votes[0] += 1; } else { votes[0] += 1; } } } } else { if (x[7] <= 66.27176666259766) { if (x[2] <= 49.28364181518555) { votes[7] += 1; } else { if (x[0] <= 347.5) { if (x[9] <= 75.20325469970703) { if (x[8] <= 12.198700904846191) { votes[7] += 1; } else { votes[7] += 1; } } else { votes[7] += 1; } } else { votes[7] += 1; } } } else { if (x[4] <= 72.91429901123047) { votes[7] += 1; } else { votes[4] += 1; } } } } // tree #15 if (x[6] <= 59.354055404663086) { if (x[4] <= 38.658390045166016) { if (x[1] <= 174.91980743408203) { if (x[9] <= 36.23502731323242) { if (x[3] <= 51.90774345397949) { votes[6] += 1; } else { if (x[7] <= 23.76523494720459) { votes[0] += 1; } else { votes[0] += 1; } } } else { if (x[8] <= 74.92010116577148) { if (x[8] <= 24.855748176574707) { if (x[6] <= 40.84716033935547) { votes[5] += 1; } else { votes[5] += 1; } } else { if (x[7] <= 36.774763107299805) { votes[8] += 1; } else { if (x[6] <= 43.88897705078125) { votes[2] += 1; } else { votes[9] += 1; } } } } else { if (x[3] <= 60.82186508178711) { votes[0] += 1; } else { votes[0] += 1; } } } } else { if (x[3] <= 89.98319625854492) { if (x[5] <= 46.7169189453125) { if (x[7] <= 52.44049072265625) { if (x[2] <= 61.570491790771484) { if (x[9] <= 48.325435638427734) { if (x[0] <= 389.0) { if (x[4] <= 35.53168296813965) { votes[8] += 1; } else { votes[8] += 1; } } else { votes[8] += 1; } } else { votes[9] += 1; } } else { votes[0] += 1; } } else { if (x[4] <= 18.486517429351807) { votes[8] += 1; } else { votes[3] += 1; } } } else { if (x[2] <= 78.82124710083008) { if (x[2] <= 45.425228118896484) { if (x[0] <= 359.5) { if (x[9] <= 25.004761695861816) { if (x[7] <= 58.83895492553711) { votes[8] += 1; } else { votes[8] += 1; } } else { if (x[8] <= 66.04473876953125) { votes[9] += 1; } else { votes[3] += 1; } } } else { votes[9] += 1; } } else { if (x[3] <= 43.47774124145508) { if (x[4] <= 20.505735397338867) { votes[8] += 1; } else { if (x[9] <= 37.70304870605469) { votes[9] += 1; } else { votes[5] += 1; } } } else { if (x[9] <= 43.13772392272949) { votes[8] += 1; } else { votes[5] += 1; } } } } else { if (x[1] <= 182.86284637451172) { votes[0] += 1; } else { votes[0] += 1; } } } } else { if (x[1] <= 211.4388198852539) { votes[1] += 1; } else { votes[1] += 1; } } } } else { if (x[7] <= 65.58056259155273) { if (x[3] <= 96.92728042602539) { if (x[4] <= 72.1442756652832) { if (x[6] <= 36.81135368347168) { if (x[7] <= 30.428627014160156) { if (x[4] <= 60.45912551879883) { if (x[2] <= 29.371769905090332) { if (x[1] <= 235.06910705566406) { votes[3] += 1; } else { votes[1] += 1; } } else { if (x[7] <= 15.654927730560303) { votes[2] += 1; } else { votes[5] += 1; } } } else { if (x[3] <= 68.8796157836914) { if (x[8] <= 38.62705039978027) { votes[2] += 1; } else { votes[2] += 1; } } else { votes[2] += 1; } } } else { if (x[5] <= 84.11619186401367) { if (x[0] <= 371.5) { if (x[2] <= 65.00633239746094) { votes[3] += 1; } else { votes[6] += 1; } } else { votes[6] += 1; } } else { if (x[3] <= 51.917463302612305) { if (x[0] <= 324.0) { votes[5] += 1; } else { votes[5] += 1; } } else { votes[0] += 1; } } } } else { if (x[9] <= 59.70219802856445) { if (x[1] <= 172.23800659179688) { if (x[2] <= 67.55163383483887) { if (x[3] <= 50.32939338684082) { votes[9] += 1; } else { votes[9] += 1; } } else { votes[0] += 1; } } else { if (x[8] <= 48.4250545501709) { if (x[6] <= 40.06913757324219) { votes[9] += 1; } else { votes[2] += 1; } } else { if (x[8] <= 67.66266250610352) { votes[7] += 1; } else { votes[5] += 1; } } } } else { if (x[5] <= 59.8845100402832) { if (x[9] <= 72.56490707397461) { votes[5] += 1; } else { votes[2] += 1; } } else { if (x[0] <= 302.0) { votes[5] += 1; } else { votes[5] += 1; } } } } } else { if (x[2] <= 100.18801498413086) { if (x[7] <= 31.981184005737305) { if (x[8] <= 58.885698318481445) { if (x[0] <= 288.5) { if (x[5] <= 36.90429496765137) { votes[9] += 1; } else { votes[2] += 1; } } else { if (x[5] <= 26.794557571411133) { votes[2] += 1; } else { votes[2] += 1; } } } else { if (x[6] <= 28.635591506958008) { votes[9] += 1; } else { if (x[2] <= 73.63545989990234) { votes[5] += 1; } else { votes[4] += 1; } } } } else { if (x[1] <= 171.4234619140625) { if (x[3] <= 52.12923049926758) { votes[9] += 1; } else { votes[3] += 1; } } else { if (x[1] <= 193.38603973388672) { if (x[5] <= 56.60936737060547) { votes[4] += 1; } else { votes[2] += 1; } } else { if (x[5] <= 19.014310836791992) { votes[2] += 1; } else { votes[4] += 1; } } } } } else { if (x[5] <= 18.006057739257812) { if (x[0] <= 304.5) { votes[7] += 1; } else { votes[4] += 1; } } else { if (x[1] <= 142.67220306396484) { votes[7] += 1; } else { if (x[8] <= 30.033145904541016) { votes[4] += 1; } else { votes[4] += 1; } } } } } } else { if (x[9] <= 31.848628997802734) { if (x[2] <= 45.203956604003906) { votes[1] += 1; } else { votes[1] += 1; } } else { votes[2] += 1; } } } else { if (x[6] <= 32.97646903991699) { if (x[7] <= 71.47676467895508) { if (x[8] <= 48.82879829406738) { if (x[7] <= 67.88184356689453) { if (x[2] <= 70.26828384399414) { votes[6] += 1; } else { votes[6] += 1; } } else { votes[1] += 1; } } else { votes[3] += 1; } } else { if (x[3] <= 36.54039001464844) { votes[2] += 1; } else { if (x[5] <= 39.58552932739258) { votes[7] += 1; } else { if (x[8] <= 35.276262283325195) { if (x[9] <= 26.280166625976562) { votes[6] += 1; } else { if (x[7] <= 84.85822677612305) { votes[6] += 1; } else { votes[6] += 1; } } } else { votes[6] += 1; } } } } } else { if (x[4] <= 78.65479278564453) { if (x[8] <= 33.17942142486572) { if (x[7] <= 84.33673477172852) { votes[9] += 1; } else { votes[6] += 1; } } else { if (x[3] <= 61.98479652404785) { if (x[9] <= 30.63197612762451) { votes[9] += 1; } else { if (x[7] <= 79.38349533081055) { votes[9] += 1; } else { if (x[1] <= 195.91864013671875) { votes[9] += 1; } else { votes[9] += 1; } } } } else { votes[1] += 1; } } } else { votes[4] += 1; } } } } } else { if (x[1] <= 161.4889678955078) { if (x[2] <= 27.228554725646973) { votes[9] += 1; } else { if (x[9] <= 60.1695499420166) { if (x[9] <= 42.03492546081543) { votes[4] += 1; } else { votes[1] += 1; } } else { votes[5] += 1; } } } else { if (x[2] <= 40.417463302612305) { if (x[7] <= 60.74342346191406) { votes[7] += 1; } else { if (x[3] <= 65.90675926208496) { votes[9] += 1; } else { votes[1] += 1; } } } else { if (x[4] <= 66.53393936157227) { if (x[6] <= 61.37955093383789) { votes[7] += 1; } else { if (x[3] <= 54.67549705505371) { votes[7] += 1; } else { votes[7] += 1; } } } else { votes[7] += 1; } } } } // tree #16 if (x[1] <= 226.52349090576172) { if (x[2] <= 106.1480598449707) { if (x[6] <= 61.386295318603516) { if (x[8] <= 70.3804931640625) { if (x[7] <= 60.100236892700195) { if (x[9] <= 48.13751220703125) { if (x[3] <= 89.84987258911133) { if (x[1] <= 173.57907104492188) { if (x[6] <= 27.217878341674805) { if (x[5] <= 53.17972373962402) { votes[9] += 1; } else { votes[3] += 1; } } else { if (x[8] <= 32.89174842834473) { votes[7] += 1; } else { votes[9] += 1; } } } else { if (x[3] <= 53.37555122375488) { if (x[4] <= 65.75170516967773) { votes[8] += 1; } else { votes[2] += 1; } } else { if (x[2] <= 51.870086669921875) { votes[3] += 1; } else { votes[4] += 1; } } } } else { if (x[8] <= 47.3082160949707) { if (x[1] <= 215.07276153564453) { if (x[3] <= 102.67000961303711) { votes[1] += 1; } else { votes[1] += 1; } } else { votes[1] += 1; } } else { votes[0] += 1; } } } else { if (x[9] <= 76.0604476928711) { if (x[4] <= 63.4780158996582) { if (x[0] <= 311.0) { if (x[7] <= 35.55219841003418) { votes[5] += 1; } else { votes[5] += 1; } } else { if (x[2] <= 54.73351860046387) { votes[9] += 1; } else { votes[5] += 1; } } } else { if (x[7] <= 43.31408500671387) { if (x[5] <= 41.70003700256348) { votes[5] += 1; } else { votes[2] += 1; } } else { votes[5] += 1; } } } else { if (x[1] <= 184.42156982421875) { votes[5] += 1; } else { votes[5] += 1; } } } } else { if (x[8] <= 31.3218412399292) { if (x[2] <= 30.805588722229004) { votes[9] += 1; } else { if (x[9] <= 26.0380277633667) { if (x[4] <= 81.95376205444336) { if (x[4] <= 77.49300384521484) { votes[6] += 1; } else { votes[6] += 1; } } else { votes[6] += 1; } } else { if (x[7] <= 74.63391876220703) { if (x[5] <= 75.6171989440918) { votes[4] += 1; } else { votes[5] += 1; } } else { if (x[8] <= 14.870636463165283) { votes[6] += 1; } else { votes[6] += 1; } } } } } else { if (x[9] <= 27.41897678375244) { if (x[4] <= 43.6170597076416) { votes[0] += 1; } else { if (x[5] <= 78.36013412475586) { if (x[1] <= 207.19927978515625) { votes[6] += 1; } else { votes[7] += 1; } } else { if (x[3] <= 62.91617393493652) { votes[3] += 1; } else { votes[0] += 1; } } } } else { if (x[2] <= 51.957210540771484) { if (x[2] <= 21.822957038879395) { if (x[1] <= 179.1591567993164) { votes[9] += 1; } else { votes[9] += 1; } } else { if (x[4] <= 71.3712158203125) { votes[9] += 1; } else { votes[3] += 1; } } } else { if (x[4] <= 58.98930358886719) { if (x[0] <= 302.0) { votes[1] += 1; } else { votes[5] += 1; } } else { votes[4] += 1; } } } } } } else { if (x[5] <= 55.84825134277344) { if (x[2] <= 64.68123245239258) { if (x[8] <= 88.19210052490234) { if (x[9] <= 34.206350326538086) { votes[3] += 1; } else { if (x[6] <= 44.64879608154297) { votes[5] += 1; } else { votes[1] += 1; } } } else { votes[3] += 1; } } else { if (x[7] <= 48.312774658203125) { votes[0] += 1; } else { votes[0] += 1; } } } else { if (x[5] <= 64.47519302368164) { if (x[5] <= 59.58409881591797) { if (x[2] <= 69.86199188232422) { votes[0] += 1; } else { votes[0] += 1; } } else { votes[0] += 1; } } else { if (x[4] <= 52.01467514038086) { if (x[0] <= 315.5) { if (x[2] <= 47.73481750488281) { votes[0] += 1; } else { votes[0] += 1; } } else { votes[0] += 1; } } else { votes[3] += 1; } } } } } else { if (x[3] <= 59.80742835998535) { if (x[9] <= 74.43890380859375) { if (x[2] <= 35.44371032714844) { if (x[8] <= 57.39945030212402) { votes[9] += 1; } else { votes[7] += 1; } } else { if (x[4] <= 63.70999526977539) { if (x[0] <= 347.0) { votes[7] += 1; } else { votes[7] += 1; } } else { votes[4] += 1; } } } else { votes[5] += 1; } } else { if (x[7] <= 55.0858097076416) { votes[7] += 1; } else { if (x[0] <= 327.0) { if (x[9] <= 48.036216735839844) { votes[1] += 1; } else { votes[1] += 1; } } else { votes[9] += 1; } } } } } else { if (x[5] <= 65.28254699707031) { if (x[9] <= 46.870988845825195) { if (x[8] <= 61.10096549987793) { if (x[2] <= 113.41958999633789) { if (x[1] <= 164.57755279541016) { votes[4] += 1; } else { votes[4] += 1; } } else { if (x[9] <= 42.636417388916016) { votes[4] += 1; } else { votes[4] += 1; } } } else { votes[4] += 1; } } else { votes[4] += 1; } } else { votes[0] += 1; } } } else { if (x[5] <= 56.98235321044922) { if (x[1] <= 251.08988189697266) { if (x[6] <= 16.733097076416016) { if (x[8] <= 33.23711585998535) { if (x[5] <= 21.488696098327637) { votes[1] += 1; } else { votes[1] += 1; } } else { votes[8] += 1; } } else { if (x[1] <= 237.23027801513672) { if (x[4] <= 33.536155700683594) { votes[8] += 1; } else { if (x[0] <= 333.5) { votes[3] += 1; } else { votes[2] += 1; } } } else { if (x[7] <= 39.857643127441406) { votes[8] += 1; } else { votes[8] += 1; } } } } else { if (x[6] <= 35.210750579833984) { if (x[5] <= 26.499369621276855) { votes[1] += 1; } else { votes[1] += 1; } } else { votes[1] += 1; } } } else { if (x[3] <= 64.01896667480469) { votes[1] += 1; } else { if (x[3] <= 71.61040496826172) { votes[1] += 1; } else { votes[1] += 1; } } } } // tree #17 if (x[2] <= 97.2536392211914) { if (x[2] <= 45.92843055725098) { if (x[4] <= 34.804765701293945) { if (x[3] <= 90.1493034362793) { if (x[6] <= 23.907426834106445) { if (x[0] <= 392.5) { if (x[5] <= 55.65753364562988) { if (x[1] <= 182.77798461914062) { votes[8] += 1; } else { votes[8] += 1; } } else { votes[8] += 1; } } else { votes[1] += 1; } } else { if (x[7] <= 51.28949737548828) { if (x[1] <= 181.80831146240234) { if (x[5] <= 52.24736404418945) { votes[9] += 1; } else { if (x[9] <= 71.87095260620117) { votes[0] += 1; } else { votes[5] += 1; } } } else { if (x[5] <= 40.506011962890625) { if (x[4] <= 13.678066730499268) { votes[8] += 1; } else { votes[8] += 1; } } else { votes[8] += 1; } } } else { if (x[9] <= 26.88131046295166) { votes[8] += 1; } else { if (x[5] <= 70.7744026184082) { if (x[6] <= 40.260406494140625) { votes[9] += 1; } else { votes[9] += 1; } } else { votes[2] += 1; } } } } } else { if (x[9] <= 19.512965202331543) { votes[1] += 1; } else { votes[1] += 1; } } } else { if (x[6] <= 32.68349266052246) { if (x[1] <= 233.91780853271484) { if (x[9] <= 19.77507781982422) { if (x[7] <= 61.01018142700195) { if (x[5] <= 51.83151626586914) { if (x[8] <= 24.71092414855957) { votes[8] += 1; } else { votes[3] += 1; } } else { if (x[1] <= 179.1275863647461) { votes[0] += 1; } else { votes[1] += 1; } } } else { if (x[6] <= 25.025421142578125) { votes[6] += 1; } else { votes[6] += 1; } } } else { if (x[3] <= 82.89435577392578) { if (x[9] <= 57.586896896362305) { if (x[3] <= 62.88824272155762) { if (x[8] <= 38.698225021362305) { votes[3] += 1; } else { votes[3] += 1; } } else { if (x[2] <= 35.33487892150879) { votes[3] += 1; } else { votes[3] += 1; } } } else { if (x[3] <= 43.932016372680664) { votes[5] += 1; } else { votes[5] += 1; } } } else { if (x[5] <= 47.004892349243164) { votes[5] += 1; } else { votes[6] += 1; } } } } else { if (x[3] <= 62.40064239501953) { votes[1] += 1; } else { if (x[8] <= 29.803946495056152) { votes[1] += 1; } else { votes[1] += 1; } } } } else { if (x[8] <= 57.490671157836914) { if (x[1] <= 170.66734313964844) { if (x[5] <= 79.08031463623047) { if (x[9] <= 27.091456413269043) { votes[6] += 1; } else { if (x[0] <= 268.5) { votes[9] += 1; } else { votes[9] += 1; } } } else { if (x[2] <= 23.529736518859863) { votes[5] += 1; } else { votes[5] += 1; } } } else { if (x[3] <= 75.6315689086914) { if (x[7] <= 43.40367126464844) { if (x[3] <= 61.5084285736084) { if (x[8] <= 36.37872123718262) { votes[1] += 1; } else { votes[5] += 1; } } else { votes[2] += 1; } } else { if (x[2] <= 26.13292694091797) { votes[3] += 1; } else { if (x[5] <= 50.957468032836914) { votes[9] += 1; } else { votes[9] += 1; } } } } else { if (x[2] <= 35.82110786437988) { if (x[5] <= 45.552757263183594) { votes[1] += 1; } else { if (x[6] <= 35.07685661315918) { votes[1] += 1; } else { votes[1] += 1; } } } else { votes[1] += 1; } } } } else { if (x[7] <= 57.85520553588867) { if (x[6] <= 51.03664016723633) { votes[5] += 1; } else { if (x[9] <= 49.41196632385254) { votes[7] += 1; } else { votes[7] += 1; } } } else { if (x[5] <= 68.18602752685547) { if (x[3] <= 70.01921081542969) { votes[1] += 1; } else { votes[1] += 1; } } else { votes[5] += 1; } } } } } } else { if (x[8] <= 70.10728073120117) { if (x[8] <= 37.93393898010254) { if (x[6] <= 66.12166213989258) { if (x[7] <= 63.458452224731445) { if (x[5] <= 62.1429500579834) { if (x[4] <= 53.01083564758301) { if (x[9] <= 38.32196617126465) { if (x[7] <= 47.17905616760254) { votes[8] += 1; } else { votes[9] += 1; } } else { if (x[5] <= 33.244911193847656) { votes[3] += 1; } else { votes[5] += 1; } } } else { if (x[3] <= 48.02571678161621) { if (x[7] <= 36.42822456359863) { votes[2] += 1; } else { votes[2] += 1; } } else { if (x[0] <= 328.5) { votes[4] += 1; } else { votes[2] += 1; } } } } else { if (x[9] <= 39.331472396850586) { if (x[3] <= 60.71609306335449) { if (x[9] <= 27.081231117248535) { votes[8] += 1; } else { votes[6] += 1; } } else { votes[1] += 1; } } else { if (x[1] <= 181.1860809326172) { if (x[4] <= 39.28645896911621) { votes[5] += 1; } else { votes[5] += 1; } } else { if (x[9] <= 67.24819946289062) { votes[2] += 1; } else { votes[5] += 1; } } } } } else { if (x[6] <= 28.38317108154297) { if (x[4] <= 60.86338996887207) { if (x[1] <= 203.85453033447266) { if (x[9] <= 29.233847618103027) { votes[6] += 1; } else { votes[6] += 1; } } else { votes[6] += 1; } } else { votes[6] += 1; } } else { if (x[4] <= 25.55994415283203) { votes[5] += 1; } else { if (x[5] <= 45.378374099731445) { votes[4] += 1; } else { if (x[6] <= 32.1583194732666) { votes[9] += 1; } else { votes[6] += 1; } } } } } } else { if (x[6] <= 77.1934928894043) { votes[7] += 1; } else { votes[7] += 1; } } } else { if (x[1] <= 162.46858978271484) { if (x[8] <= 54.24203109741211) { if (x[4] <= 73.0903148651123) { if (x[4] <= 38.92702674865723) { votes[7] += 1; } else { if (x[7] <= 51.7158088684082) { votes[3] += 1; } else { votes[6] += 1; } } } else { votes[9] += 1; } } else { if (x[9] <= 19.099587440490723) { votes[0] += 1; } else { votes[0] += 1; } } } else { if (x[4] <= 73.49493026733398) { if (x[1] <= 210.42861938476562) { if (x[6] <= 58.82428550720215) { if (x[6] <= 38.14874458312988) { if (x[4] <= 39.66591835021973) { votes[8] += 1; } else { votes[5] += 1; } } else { if (x[9] <= 48.94822311401367) { votes[7] += 1; } else { votes[2] += 1; } } } else { if (x[8] <= 64.57501983642578) { votes[7] += 1; } else { votes[7] += 1; } } } else { if (x[9] <= 37.75773620605469) { if (x[4] <= 37.684648513793945) { votes[1] += 1; } else { votes[2] += 1; } } else { votes[5] += 1; } } } else { if (x[9] <= 32.172895431518555) { if (x[6] <= 48.21634292602539) { votes[4] += 1; } else { votes[4] += 1; } } else { if (x[9] <= 44.08288764953613) { if (x[8] <= 48.794925689697266) { votes[4] += 1; } else { votes[9] += 1; } } else { if (x[8] <= 55.94305419921875) { if (x[6] <= 40.63343048095703) { votes[2] += 1; } else { votes[2] += 1; } } else { if (x[4] <= 82.60626983642578) { votes[5] += 1; } else { votes[2] += 1; } } } } } } } } else { if (x[5] <= 46.96341323852539) { votes[5] += 1; } else { if (x[6] <= 54.48637390136719) { if (x[3] <= 52.98104476928711) { if (x[7] <= 41.542083740234375) { votes[0] += 1; } else { votes[5] += 1; } } else { if (x[9] <= 43.72758674621582) { votes[0] += 1; } else { votes[0] += 1; } } } else { votes[0] += 1; } } } } } else { if (x[8] <= 65.31142044067383) { if (x[6] <= 16.012556076049805) { votes[2] += 1; } else { if (x[4] <= 67.72855758666992) { votes[4] += 1; } else { if (x[5] <= 64.78449630737305) { if (x[4] <= 79.45832061767578) { if (x[9] <= 24.342979431152344) { votes[4] += 1; } else { votes[4] += 1; } } else { if (x[9] <= 48.332820892333984) { if (x[8] <= 32.474761962890625) { if (x[4] <= 93.99094009399414) { votes[4] += 1; } else { votes[4] += 1; } } else { votes[4] += 1; } } else { votes[4] += 1; } } } else { votes[4] += 1; } } } } else { if (x[0] <= 344.0) { votes[4] += 1; } else { votes[0] += 1; } } } // tree #18 if (x[9] <= 59.647037506103516) { if (x[2] <= 107.71371459960938) { if (x[8] <= 62.483673095703125) { if (x[6] <= 58.685441970825195) { if (x[7] <= 65.5698356628418) { if (x[2] <= 46.004262924194336) { if (x[1] <= 197.30980682373047) { if (x[4] <= 45.817108154296875) { if (x[8] <= 31.741975784301758) { if (x[4] <= 23.781015396118164) { votes[8] += 1; } else { votes[8] += 1; } } else { if (x[6] <= 25.868245124816895) { votes[8] += 1; } else { votes[9] += 1; } } } else { if (x[5] <= 65.31638717651367) { if (x[3] <= 72.23237991333008) { votes[3] += 1; } else { votes[5] += 1; } } else { if (x[6] <= 27.503382682800293) { votes[3] += 1; } else { votes[9] += 1; } } } } else { if (x[0] <= 309.5) { if (x[3] <= 95.89405059814453) { if (x[6] <= 28.021390914916992) { votes[8] += 1; } else { votes[7] += 1; } } else { if (x[2] <= 31.643698692321777) { votes[1] += 1; } else { votes[1] += 1; } } } else { if (x[1] <= 258.88873291015625) { if (x[7] <= 28.552260398864746) { votes[8] += 1; } else { votes[1] += 1; } } else { votes[1] += 1; } } } } else { if (x[4] <= 70.41193389892578) { if (x[3] <= 58.105966567993164) { if (x[7] <= 50.799787521362305) { if (x[9] <= 28.8255672454834) { votes[8] += 1; } else { votes[2] += 1; } } else { if (x[5] <= 75.40192794799805) { votes[3] += 1; } else { votes[5] += 1; } } } else { if (x[2] <= 67.4421501159668) { if (x[1] <= 160.7779769897461) { votes[6] += 1; } else { votes[1] += 1; } } else { if (x[1] <= 164.86233520507812) { votes[0] += 1; } else { votes[6] += 1; } } } } else { if (x[5] <= 24.91664981842041) { if (x[1] <= 164.86351776123047) { votes[9] += 1; } else { if (x[9] <= 27.279542922973633) { votes[4] += 1; } else { votes[9] += 1; } } } else { if (x[9] <= 35.2742919921875) { if (x[0] <= 342.0) { votes[4] += 1; } else { votes[2] += 1; } } else { if (x[8] <= 47.70943641662598) { votes[2] += 1; } else { votes[2] += 1; } } } } } } else { if (x[8] <= 38.408451080322266) { if (x[6] <= 33.15814781188965) { if (x[9] <= 37.81451606750488) { if (x[3] <= 39.7380428314209) { votes[6] += 1; } else { if (x[2] <= 80.51767349243164) { votes[6] += 1; } else { votes[6] += 1; } } } else { votes[6] += 1; } } else { if (x[1] <= 181.44022369384766) { votes[9] += 1; } else { if (x[9] <= 36.32684135437012) { votes[4] += 1; } else { votes[6] += 1; } } } } else { if (x[9] <= 29.515151977539062) { if (x[8] <= 50.16792106628418) { if (x[1] <= 171.96209716796875) { votes[6] += 1; } else { votes[1] += 1; } } else { votes[2] += 1; } } else { if (x[6] <= 40.25103950500488) { if (x[0] <= 307.5) { votes[2] += 1; } else { votes[9] += 1; } } else { if (x[8] <= 43.704538345336914) { votes[9] += 1; } else { votes[9] += 1; } } } } } } else { if (x[2] <= 35.475990295410156) { if (x[9] <= 42.76141166687012) { votes[7] += 1; } else { votes[9] += 1; } } else { if (x[6] <= 63.50863456726074) { if (x[5] <= 54.47928237915039) { votes[7] += 1; } else { votes[7] += 1; } } else { votes[7] += 1; } } } } else { if (x[1] <= 158.80980682373047) { if (x[2] <= 43.34536933898926) { votes[3] += 1; } else { votes[0] += 1; } } else { if (x[5] <= 27.100236892700195) { if (x[4] <= 51.1922550201416) { votes[8] += 1; } else { votes[4] += 1; } } else { if (x[2] <= 73.1003646850586) { if (x[9] <= 46.57355308532715) { if (x[9] <= 19.813705444335938) { votes[1] += 1; } else { if (x[7] <= 82.8436164855957) { if (x[2] <= 45.346059799194336) { votes[3] += 1; } else { votes[7] += 1; } } else { votes[6] += 1; } } } else { if (x[6] <= 46.10226249694824) { votes[5] += 1; } else { if (x[8] <= 76.29642486572266) { votes[7] += 1; } else { votes[1] += 1; } } } } else { if (x[4] <= 35.77375602722168) { votes[0] += 1; } else { votes[0] += 1; } } } } } } else { if (x[3] <= 26.771748542785645) { votes[4] += 1; } else { if (x[0] <= 292.0) { if (x[5] <= 40.438079833984375) { votes[7] += 1; } else { votes[4] += 1; } } else { if (x[2] <= 113.20600891113281) { votes[4] += 1; } else { votes[4] += 1; } } } } } else { if (x[5] <= 59.32603454589844) { if (x[1] <= 160.77208709716797) { votes[9] += 1; } else { if (x[3] <= 54.50215148925781) { if (x[6] <= 49.19553565979004) { if (x[0] <= 336.0) { if (x[7] <= 32.23635673522949) { votes[5] += 1; } else { votes[3] += 1; } } else { votes[5] += 1; } } else { if (x[9] <= 73.62872695922852) { votes[7] += 1; } else { votes[7] += 1; } } } else { if (x[1] <= 179.34712982177734) { votes[2] += 1; } else { if (x[6] <= 43.316192626953125) { votes[2] += 1; } else { votes[5] += 1; } } } } } else { if (x[7] <= 44.469987869262695) { if (x[0] <= 267.5) { votes[5] += 1; } else { votes[5] += 1; } } else { if (x[1] <= 162.49713897705078) { if (x[5] <= 91.54629516601562) { votes[5] += 1; } else { votes[5] += 1; } } else { if (x[3] <= 34.358917236328125) { if (x[6] <= 54.35659217834473) { votes[5] += 1; } else { votes[7] += 1; } } else { if (x[6] <= 58.106689453125) { votes[2] += 1; } else { votes[7] += 1; } } } } } } // tree #19 if (x[2] <= 45.95516395568848) { if (x[1] <= 206.1542205810547) { if (x[3] <= 84.13082122802734) { if (x[2] <= 15.811802864074707) { if (x[6] <= 30.10609531402588) { if (x[4] <= 37.15237236022949) { if (x[2] <= 9.690385341644287) { votes[8] += 1; } else { votes[8] += 1; } } else { votes[3] += 1; } } else { if (x[9] <= 60.07111930847168) { if (x[4] <= 25.72296142578125) { votes[9] += 1; } else { if (x[5] <= 46.03889465332031) { votes[9] += 1; } else { if (x[5] <= 58.6577205657959) { votes[9] += 1; } else { votes[9] += 1; } } } } else { votes[5] += 1; } } } else { if (x[6] <= 33.94554138183594) { if (x[9] <= 59.1919059753418) { if (x[8] <= 38.698225021362305) { if (x[3] <= 35.93039131164551) { if (x[4] <= 35.29471015930176) { votes[8] += 1; } else { votes[3] += 1; } } else { if (x[7] <= 57.636159896850586) { if (x[1] <= 174.8339614868164) { votes[3] += 1; } else { votes[2] += 1; } } else { votes[6] += 1; } } } else { if (x[3] <= 31.095276832580566) { if (x[5] <= 34.788801193237305) { votes[8] += 1; } else { if (x[2] <= 29.35546112060547) { votes[2] += 1; } else { votes[3] += 1; } } } else { if (x[7] <= 71.63601684570312) { if (x[8] <= 80.87568283081055) { votes[3] += 1; } else { votes[3] += 1; } } else { votes[8] += 1; } } } } else { votes[5] += 1; } } else { if (x[6] <= 59.47473907470703) { if (x[9] <= 60.83746528625488) { if (x[5] <= 36.561973571777344) { votes[5] += 1; } else { if (x[1] <= 175.34256744384766) { if (x[5] <= 69.1778678894043) { votes[9] += 1; } else { votes[9] += 1; } } else { if (x[4] <= 41.77470016479492) { votes[9] += 1; } else { votes[2] += 1; } } } } else { if (x[0] <= 280.0) { votes[5] += 1; } else { votes[5] += 1; } } } else { if (x[5] <= 66.6814136505127) { if (x[7] <= 56.159854888916016) { if (x[7] <= 40.59589767456055) { votes[7] += 1; } else { votes[7] += 1; } } else { votes[1] += 1; } } else { votes[5] += 1; } } } } } else { if (x[1] <= 164.1084976196289) { if (x[5] <= 75.05791854858398) { if (x[1] <= 145.6185760498047) { votes[6] += 1; } else { votes[6] += 1; } } else { votes[0] += 1; } } else { if (x[3] <= 91.17548751831055) { votes[1] += 1; } else { if (x[4] <= 74.27582550048828) { votes[1] += 1; } else { votes[1] += 1; } } } } } else { if (x[6] <= 51.09427452087402) { if (x[5] <= 54.36051559448242) { if (x[0] <= 330.5) { if (x[7] <= 38.9706916809082) { if (x[3] <= 106.2811279296875) { if (x[3] <= 72.1713752746582) { votes[8] += 1; } else { votes[2] += 1; } } else { votes[1] += 1; } } else { if (x[3] <= 79.78034210205078) { votes[3] += 1; } else { votes[1] += 1; } } } else { if (x[3] <= 59.79297637939453) { if (x[1] <= 258.51397705078125) { if (x[8] <= 32.02371025085449) { votes[8] += 1; } else { if (x[7] <= 44.149213790893555) { if (x[8] <= 40.31046485900879) { votes[8] += 1; } else { votes[8] += 1; } } else { votes[8] += 1; } } } else { votes[1] += 1; } } else { if (x[0] <= 344.5) { if (x[1] <= 236.15452575683594) { votes[2] += 1; } else { votes[1] += 1; } } else { if (x[2] <= 22.261394500732422) { votes[1] += 1; } else { votes[1] += 1; } } } } } else { if (x[1] <= 231.936279296875) { if (x[3] <= 85.48498153686523) { if (x[3] <= 61.71054458618164) { if (x[6] <= 28.66917133331299) { if (x[6] <= 14.009918689727783) { votes[3] += 1; } else { votes[3] += 1; } } else { votes[9] += 1; } } else { votes[2] += 1; } } else { votes[1] += 1; } } else { votes[1] += 1; } } } else { if (x[0] <= 335.0) { votes[7] += 1; } else { votes[5] += 1; } } } } else { if (x[8] <= 64.10010719299316) { if (x[2] <= 101.9547348022461) { if (x[7] <= 63.81560516357422) { if (x[6] <= 58.71276092529297) { if (x[7] <= 36.04281044006348) { if (x[5] <= 32.16877555847168) { if (x[8] <= 54.56388473510742) { if (x[0] <= 312.5) { if (x[8] <= 49.53206443786621) { votes[2] += 1; } else { votes[9] += 1; } } else { if (x[2] <= 63.20233154296875) { votes[5] += 1; } else { votes[4] += 1; } } } else { if (x[6] <= 30.1147518157959) { votes[8] += 1; } else { votes[4] += 1; } } } else { if (x[9] <= 55.11319923400879) { if (x[4] <= 52.837032318115234) { if (x[2] <= 62.21069526672363) { votes[8] += 1; } else { votes[0] += 1; } } else { if (x[4] <= 100.37487411499023) { votes[2] += 1; } else { votes[9] += 1; } } } else { if (x[7] <= 24.271924018859863) { if (x[6] <= 24.2171049118042) { votes[5] += 1; } else { votes[2] += 1; } } else { if (x[5] <= 43.9300479888916) { votes[2] += 1; } else { votes[5] += 1; } } } } } else { if (x[4] <= 83.77101516723633) { if (x[1] <= 148.22046661376953) { if (x[0] <= 264.0) { votes[6] += 1; } else { votes[0] += 1; } } else { if (x[5] <= 96.18579864501953) { if (x[2] <= 62.78605270385742) { votes[2] += 1; } else { votes[6] += 1; } } else { votes[5] += 1; } } } else { if (x[4] <= 104.20643997192383) { if (x[8] <= 24.299704551696777) { votes[4] += 1; } else { if (x[6] <= 36.005680084228516) { votes[4] += 1; } else { votes[4] += 1; } } } else { votes[4] += 1; } } } } else { if (x[3] <= 50.062461853027344) { if (x[8] <= 37.011064529418945) { if (x[7] <= 29.90132236480713) { votes[7] += 1; } else { if (x[8] <= 24.625850677490234) { votes[7] += 1; } else { votes[7] += 1; } } } else { votes[7] += 1; } } else { votes[7] += 1; } } } else { if (x[2] <= 89.66048812866211) { if (x[7] <= 77.34479522705078) { if (x[8] <= 49.883522033691406) { if (x[6] <= 36.3075065612793) { if (x[9] <= 33.53653335571289) { if (x[6] <= 28.221912384033203) { votes[6] += 1; } else { votes[6] += 1; } } else { votes[3] += 1; } } else { if (x[2] <= 59.22081756591797) { votes[5] += 1; } else { votes[4] += 1; } } } else { votes[7] += 1; } } else { if (x[3] <= 36.37222480773926) { if (x[4] <= 53.34879112243652) { votes[6] += 1; } else { votes[9] += 1; } } else { if (x[1] <= 211.5907745361328) { votes[6] += 1; } else { votes[6] += 1; } } } } else { votes[4] += 1; } } } else { if (x[7] <= 27.222232818603516) { votes[7] += 1; } else { if (x[5] <= 63.154069900512695) { if (x[0] <= 347.5) { if (x[9] <= 35.56269073486328) { if (x[2] <= 106.17152786254883) { votes[4] += 1; } else { votes[4] += 1; } } else { if (x[1] <= 147.04867553710938) { votes[4] += 1; } else { votes[4] += 1; } } } else { votes[4] += 1; } } else { votes[4] += 1; } } } } else { if (x[4] <= 43.58236885070801) { if (x[4] <= 24.446611404418945) { votes[0] += 1; } else { if (x[2] <= 50.781856536865234) { votes[0] += 1; } else { if (x[5] <= 78.98022842407227) { if (x[2] <= 68.81028366088867) { votes[0] += 1; } else { votes[0] += 1; } } else { votes[0] += 1; } } } } else { if (x[4] <= 52.7741756439209) { if (x[6] <= 45.64096641540527) { votes[3] += 1; } else { votes[7] += 1; } } else { if (x[1] <= 180.88605499267578) { votes[4] += 1; } else { if (x[5] <= 43.37565612792969) { votes[5] += 1; } else { if (x[2] <= 57.7798957824707) { votes[5] += 1; } else { votes[2] += 1; } } } } } } } // tree #20 if (x[2] <= 46.713932037353516) { if (x[1] <= 227.24151611328125) { if (x[9] <= 66.80337524414062) { if (x[1] <= 180.00955200195312) { if (x[3] <= 63.07927322387695) { if (x[2] <= 12.246678829193115) { votes[9] += 1; } else { if (x[7] <= 66.31132888793945) { if (x[6] <= 35.58356857299805) { if (x[1] <= 145.3226776123047) { votes[3] += 1; } else { if (x[5] <= 70.84111022949219) { votes[3] += 1; } else { votes[3] += 1; } } } else { if (x[0] <= 299.0) { votes[9] += 1; } else { votes[9] += 1; } } } else { if (x[8] <= 57.20902633666992) { if (x[1] <= 164.552490234375) { votes[9] += 1; } else { votes[9] += 1; } } else { if (x[0] <= 298.5) { votes[9] += 1; } else { votes[3] += 1; } } } } } else { if (x[4] <= 65.98183059692383) { if (x[4] <= 60.03042221069336) { if (x[1] <= 114.36887741088867) { votes[0] += 1; } else { if (x[4] <= 51.00127410888672) { votes[9] += 1; } else { votes[9] += 1; } } } else { votes[1] += 1; } } else { if (x[9] <= 21.62842082977295) { votes[6] += 1; } else { if (x[8] <= 56.81569862365723) { votes[6] += 1; } else { votes[1] += 1; } } } } } else { if (x[3] <= 87.60286331176758) { if (x[7] <= 35.60971450805664) { if (x[4] <= 37.984554290771484) { if (x[8] <= 42.63720703125) { votes[8] += 1; } else { votes[8] += 1; } } else { if (x[3] <= 72.91214370727539) { if (x[8] <= 46.7593879699707) { if (x[6] <= 37.34123611450195) { votes[8] += 1; } else { votes[2] += 1; } } else { votes[7] += 1; } } else { votes[5] += 1; } } } else { if (x[0] <= 346.5) { if (x[6] <= 29.832948684692383) { if (x[4] <= 22.60130786895752) { if (x[4] <= 13.025464057922363) { votes[3] += 1; } else { votes[8] += 1; } } else { if (x[7] <= 75.93735122680664) { votes[3] += 1; } else { votes[3] += 1; } } } else { if (x[2] <= 23.76901149749756) { if (x[4] <= 41.3253173828125) { votes[2] += 1; } else { votes[1] += 1; } } else { if (x[9] <= 40.225494384765625) { votes[7] += 1; } else { votes[9] += 1; } } } } else { if (x[3] <= 42.367069244384766) { if (x[4] <= 50.952619552612305) { votes[8] += 1; } else { votes[3] += 1; } } else { if (x[5] <= 62.79804229736328) { votes[9] += 1; } else { votes[9] += 1; } } } } } else { if (x[9] <= 21.923897743225098) { if (x[3] <= 95.35895538330078) { votes[1] += 1; } else { votes[1] += 1; } } else { if (x[0] <= 298.5) { votes[5] += 1; } else { votes[1] += 1; } } } } } else { if (x[6] <= 43.15541076660156) { votes[5] += 1; } else { if (x[3] <= 62.432573318481445) { votes[5] += 1; } else { votes[5] += 1; } } } } else { if (x[1] <= 242.9531021118164) { if (x[8] <= 24.168350219726562) { if (x[9] <= 26.127107620239258) { if (x[7] <= 20.344463348388672) { votes[1] += 1; } else { votes[1] += 1; } } else { votes[2] += 1; } } else { if (x[1] <= 234.27312469482422) { if (x[9] <= 36.05971717834473) { if (x[9] <= 21.67127227783203) { votes[1] += 1; } else { votes[1] += 1; } } else { votes[3] += 1; } } else { if (x[7] <= 36.50413131713867) { votes[8] += 1; } else { votes[1] += 1; } } } } else { if (x[0] <= 337.0) { votes[1] += 1; } else { if (x[7] <= 20.2089900970459) { votes[8] += 1; } else { if (x[6] <= 28.32239055633545) { if (x[9] <= 13.692124843597412) { votes[1] += 1; } else { votes[1] += 1; } } else { votes[1] += 1; } } } } } } else { if (x[4] <= 74.10191345214844) { if (x[4] <= 29.59377956390381) { if (x[1] <= 174.2432861328125) { if (x[2] <= 59.664520263671875) { if (x[3] <= 52.81982231140137) { votes[5] += 1; } else { if (x[8] <= 90.75752639770508) { votes[0] += 1; } else { votes[0] += 1; } } } else { if (x[0] <= 271.5) { if (x[1] <= 136.703125) { votes[0] += 1; } else { votes[7] += 1; } } else { if (x[6] <= 53.55852127075195) { if (x[8] <= 55.26145362854004) { votes[0] += 1; } else { votes[0] += 1; } } else { votes[0] += 1; } } } } else { if (x[7] <= 46.2301025390625) { if (x[9] <= 29.82516574859619) { if (x[2] <= 71.98735809326172) { votes[8] += 1; } else { votes[0] += 1; } } else { if (x[3] <= 22.976268768310547) { votes[7] += 1; } else { if (x[8] <= 42.44007110595703) { votes[7] += 1; } else { votes[0] += 1; } } } } else { if (x[0] <= 287.5) { votes[7] += 1; } else { if (x[6] <= 37.33520698547363) { votes[3] += 1; } else { if (x[5] <= 90.69143676757812) { votes[5] += 1; } else { votes[5] += 1; } } } } } } else { if (x[9] <= 39.20505714416504) { if (x[7] <= 63.78265571594238) { if (x[3] <= 56.45675277709961) { if (x[7] <= 57.22893714904785) { if (x[2] <= 104.97519302368164) { if (x[8] <= 37.467769622802734) { if (x[5] <= 63.494497299194336) { votes[2] += 1; } else { votes[7] += 1; } } else { if (x[6] <= 38.21928596496582) { votes[8] += 1; } else { votes[7] += 1; } } } else { votes[4] += 1; } } else { if (x[3] <= 44.9265193939209) { votes[3] += 1; } else { votes[3] += 1; } } } else { if (x[8] <= 57.376373291015625) { if (x[2] <= 52.48953437805176) { votes[1] += 1; } else { if (x[1] <= 176.2789306640625) { if (x[2] <= 73.69822311401367) { votes[6] += 1; } else { votes[6] += 1; } } else { votes[1] += 1; } } } else { votes[0] += 1; } } } else { if (x[8] <= 51.55190849304199) { if (x[6] <= 5.760260105133057) { votes[6] += 1; } else { if (x[8] <= 32.69318199157715) { votes[6] += 1; } else { if (x[6] <= 28.689351081848145) { votes[6] += 1; } else { votes[6] += 1; } } } } else { votes[0] += 1; } } } else { if (x[6] <= 60.65969467163086) { if (x[7] <= 55.368927001953125) { if (x[0] <= 259.5) { votes[3] += 1; } else { if (x[6] <= 40.769813537597656) { if (x[7] <= 15.52477741241455) { votes[2] += 1; } else { if (x[9] <= 53.58584403991699) { votes[5] += 1; } else { votes[5] += 1; } } } else { if (x[4] <= 48.83852958679199) { votes[0] += 1; } else { if (x[7] <= 37.101470947265625) { votes[7] += 1; } else { votes[2] += 1; } } } } } else { if (x[1] <= 197.6573028564453) { if (x[6] <= 29.342677116394043) { votes[3] += 1; } else { if (x[1] <= 178.15176391601562) { votes[2] += 1; } else { votes[9] += 1; } } } else { votes[5] += 1; } } } else { if (x[8] <= 60.03694152832031) { if (x[5] <= 43.603660583496094) { votes[7] += 1; } else { votes[7] += 1; } } else { votes[7] += 1; } } } } } else { if (x[9] <= 39.558237075805664) { if (x[6] <= 34.215511322021484) { if (x[0] <= 337.5) { if (x[1] <= 187.57378387451172) { if (x[9] <= 31.46434211730957) { if (x[2] <= 96.83755874633789) { votes[4] += 1; } else { votes[4] += 1; } } else { if (x[2] <= 109.62900924682617) { votes[9] += 1; } else { votes[4] += 1; } } } else { if (x[1] <= 200.70299530029297) { votes[2] += 1; } else { votes[2] += 1; } } } else { if (x[3] <= 54.00701713562012) { votes[2] += 1; } else { votes[6] += 1; } } } else { if (x[5] <= 13.87471342086792) { votes[4] += 1; } else { if (x[0] <= 269.5) { votes[4] += 1; } else { if (x[8] <= 63.580955505371094) { if (x[2] <= 57.416215896606445) { votes[4] += 1; } else { votes[4] += 1; } } else { votes[4] += 1; } } } } } else { if (x[1] <= 169.64813995361328) { if (x[5] <= 46.00460624694824) { if (x[8] <= 48.063283920288086) { votes[4] += 1; } else { votes[9] += 1; } } else { if (x[1] <= 155.27140045166016) { votes[9] += 1; } else { votes[2] += 1; } } } else { if (x[3] <= 61.82625198364258) { if (x[9] <= 42.97217559814453) { votes[2] += 1; } else { if (x[4] <= 79.29759216308594) { votes[2] += 1; } else { if (x[4] <= 86.55101776123047) { votes[2] += 1; } else { if (x[1] <= 186.7146453857422) { votes[2] += 1; } else { votes[2] += 1; } } } } } else { if (x[8] <= 43.624839782714844) { votes[2] += 1; } else { votes[5] += 1; } } } } } } // tree #21 if (x[6] <= 59.36237716674805) { if (x[4] <= 26.79054355621338) { if (x[3] <= 55.03073692321777) { if (x[6] <= 30.55018901824951) { if (x[1] <= 183.8284454345703) { if (x[8] <= 54.508460998535156) { votes[8] += 1; } else { votes[3] += 1; } } else { if (x[8] <= 37.35091781616211) { votes[8] += 1; } else { if (x[3] <= 34.44072341918945) { votes[8] += 1; } else { if (x[5] <= 28.832974433898926) { votes[8] += 1; } else { votes[8] += 1; } } } } } else { if (x[9] <= 62.814226150512695) { if (x[7] <= 21.540538787841797) { votes[0] += 1; } else { if (x[6] <= 42.348344802856445) { votes[8] += 1; } else { votes[9] += 1; } } } else { votes[5] += 1; } } } else { if (x[5] <= 42.7773551940918) { if (x[3] <= 93.29768753051758) { votes[8] += 1; } else { votes[1] += 1; } } else { if (x[2] <= 46.03485107421875) { votes[1] += 1; } else { if (x[8] <= 53.24165153503418) { votes[0] += 1; } else { votes[0] += 1; } } } } } else { if (x[2] <= 100.3383560180664) { if (x[7] <= 62.77556037902832) { if (x[4] <= 73.59435653686523) { if (x[9] <= 45.027809143066406) { if (x[4] <= 41.876590728759766) { if (x[2] <= 67.6541633605957) { if (x[7] <= 27.420080184936523) { if (x[3] <= 52.74356460571289) { votes[8] += 1; } else { votes[1] += 1; } } else { if (x[3] <= 62.20830535888672) { votes[9] += 1; } else { votes[1] += 1; } } } else { if (x[8] <= 57.080461502075195) { if (x[7] <= 49.15888023376465) { votes[6] += 1; } else { votes[6] += 1; } } else { votes[0] += 1; } } } else { if (x[1] <= 220.02576446533203) { if (x[1] <= 128.4522819519043) { votes[9] += 1; } else { if (x[3] <= 71.10190963745117) { votes[3] += 1; } else { votes[1] += 1; } } } else { if (x[0] <= 340.5) { if (x[5] <= 47.004892349243164) { votes[1] += 1; } else { votes[1] += 1; } } else { if (x[8] <= 28.1224365234375) { votes[1] += 1; } else { votes[8] += 1; } } } } } else { if (x[5] <= 65.01519393920898) { if (x[2] <= 34.83054542541504) { if (x[2] <= 22.66317367553711) { votes[9] += 1; } else { if (x[6] <= 35.57613563537598) { votes[3] += 1; } else { votes[2] += 1; } } } else { if (x[7] <= 29.428689002990723) { if (x[5] <= 41.87968635559082) { votes[2] += 1; } else { votes[5] += 1; } } else { if (x[8] <= 49.432111740112305) { votes[2] += 1; } else { votes[5] += 1; } } } } else { if (x[6] <= 37.22125434875488) { if (x[8] <= 45.78109550476074) { votes[5] += 1; } else { if (x[0] <= 327.0) { votes[5] += 1; } else { votes[5] += 1; } } } else { if (x[1] <= 187.13302612304688) { if (x[8] <= 37.684078216552734) { votes[5] += 1; } else { votes[2] += 1; } } else { votes[9] += 1; } } } } } else { if (x[9] <= 23.835620880126953) { if (x[3] <= 88.21694946289062) { if (x[6] <= 31.836551666259766) { votes[1] += 1; } else { if (x[0] <= 309.5) { votes[4] += 1; } else { votes[4] += 1; } } } else { votes[1] += 1; } } else { if (x[0] <= 290.0) { if (x[6] <= 32.70362854003906) { if (x[7] <= 24.41584014892578) { votes[9] += 1; } else { if (x[5] <= 32.83836364746094) { votes[9] += 1; } else { votes[9] += 1; } } } else { if (x[8] <= 44.57343101501465) { votes[2] += 1; } else { votes[5] += 1; } } } else { if (x[2] <= 68.55035400390625) { if (x[6] <= 46.80475616455078) { if (x[2] <= 65.3556137084961) { votes[2] += 1; } else { votes[5] += 1; } } else { if (x[2] <= 54.64505958557129) { votes[5] += 1; } else { votes[4] += 1; } } } else { if (x[9] <= 42.97217559814453) { if (x[9] <= 33.61894416809082) { votes[2] += 1; } else { votes[9] += 1; } } else { votes[2] += 1; } } } } } } else { if (x[6] <= 35.72410011291504) { if (x[2] <= 32.85102844238281) { if (x[1] <= 148.91829681396484) { votes[6] += 1; } else { if (x[8] <= 66.04264068603516) { votes[1] += 1; } else { votes[3] += 1; } } } else { if (x[6] <= 15.74323844909668) { if (x[7] <= 80.50045394897461) { if (x[2] <= 57.081268310546875) { votes[3] += 1; } else { if (x[1] <= 198.99217987060547) { votes[6] += 1; } else { votes[7] += 1; } } } else { if (x[9] <= 19.461469650268555) { votes[6] += 1; } else { votes[6] += 1; } } } else { if (x[5] <= 39.17786979675293) { votes[6] += 1; } else { if (x[4] <= 56.72248649597168) { if (x[1] <= 196.67723846435547) { votes[6] += 1; } else { votes[6] += 1; } } else { votes[6] += 1; } } } } } else { if (x[9] <= 27.46620750427246) { if (x[1] <= 176.88551330566406) { votes[6] += 1; } else { votes[7] += 1; } } else { if (x[2] <= 52.71924018859863) { if (x[4] <= 32.243468284606934) { votes[9] += 1; } else { if (x[3] <= 77.82316207885742) { if (x[3] <= 31.082624435424805) { votes[9] += 1; } else { votes[9] += 1; } } else { votes[9] += 1; } } } else { if (x[9] <= 39.985496520996094) { votes[4] += 1; } else { votes[6] += 1; } } } } } } else { if (x[8] <= 31.954570770263672) { if (x[6] <= 31.9706974029541) { votes[2] += 1; } else { if (x[8] <= 26.796059608459473) { votes[4] += 1; } else { votes[7] += 1; } } } else { if (x[4] <= 67.72855758666992) { votes[4] += 1; } else { if (x[2] <= 110.53316116333008) { if (x[4] <= 84.54167175292969) { votes[4] += 1; } else { if (x[9] <= 26.383524894714355) { votes[4] += 1; } else { votes[4] += 1; } } } else { votes[4] += 1; } } } } } } else { if (x[7] <= 69.6806411743164) { if (x[9] <= 74.43890380859375) { if (x[2] <= 33.732065200805664) { if (x[1] <= 193.33708953857422) { votes[1] += 1; } else { votes[7] += 1; } } else { if (x[5] <= 74.40579223632812) { if (x[4] <= 74.81344223022461) { if (x[1] <= 167.8783721923828) { votes[7] += 1; } else { if (x[8] <= 67.70441055297852) { votes[7] += 1; } else { votes[7] += 1; } } } else { votes[4] += 1; } } else { votes[7] += 1; } } } else { votes[5] += 1; } } else { if (x[3] <= 55.320871353149414) { votes[9] += 1; } else { if (x[1] <= 177.3525848388672) { votes[1] += 1; } else { votes[1] += 1; } } } } // tree #22 if (x[2] <= 100.3383560180664) { if (x[6] <= 61.469770431518555) { if (x[9] <= 56.69391059875488) { if (x[2] <= 46.713932037353516) { if (x[1] <= 229.07000732421875) { if (x[3] <= 96.70830535888672) { if (x[6] <= 35.59946823120117) { if (x[5] <= 32.154293060302734) { if (x[9] <= 46.26348114013672) { if (x[2] <= 37.638906478881836) { votes[8] += 1; } else { votes[3] += 1; } } else { votes[3] += 1; } } else { if (x[1] <= 147.1439971923828) { if (x[7] <= 58.586599349975586) { votes[0] += 1; } else { votes[6] += 1; } } else { if (x[4] <= 32.464510917663574) { votes[8] += 1; } else { votes[3] += 1; } } } } else { if (x[9] <= 27.46620750427246) { if (x[5] <= 67.19905090332031) { votes[1] += 1; } else { votes[6] += 1; } } else { if (x[0] <= 262.5) { votes[3] += 1; } else { if (x[8] <= 74.05811309814453) { votes[9] += 1; } else { votes[5] += 1; } } } } } else { if (x[2] <= 29.42108917236328) { votes[1] += 1; } else { votes[1] += 1; } } } else { if (x[0] <= 327.5) { if (x[3] <= 104.45877838134766) { votes[1] += 1; } else { votes[1] += 1; } } else { if (x[7] <= 23.433505058288574) { if (x[3] <= 75.62541961669922) { if (x[4] <= 27.547738075256348) { votes[8] += 1; } else { votes[8] += 1; } } else { votes[1] += 1; } } else { if (x[4] <= 45.11053276062012) { if (x[1] <= 258.4730682373047) { if (x[0] <= 359.5) { votes[1] += 1; } else { votes[8] += 1; } } else { votes[1] += 1; } } else { votes[1] += 1; } } } } } else { if (x[8] <= 65.22734069824219) { if (x[4] <= 74.42015075683594) { if (x[5] <= 43.77833366394043) { if (x[4] <= 38.24973487854004) { if (x[6] <= 27.07772731781006) { if (x[2] <= 58.722686767578125) { votes[8] += 1; } else { votes[8] += 1; } } else { votes[5] += 1; } } else { if (x[8] <= 37.38125991821289) { if (x[7] <= 48.19670104980469) { votes[2] += 1; } else { votes[3] += 1; } } else { if (x[0] <= 292.0) { votes[5] += 1; } else { votes[5] += 1; } } } } else { if (x[7] <= 63.458452224731445) { if (x[3] <= 57.86082649230957) { if (x[7] <= 47.655473709106445) { votes[8] += 1; } else { votes[7] += 1; } } else { if (x[8] <= 34.71750259399414) { votes[1] += 1; } else { votes[0] += 1; } } } else { if (x[8] <= 48.962547302246094) { if (x[9] <= 37.81451606750488) { votes[6] += 1; } else { votes[6] += 1; } } else { votes[3] += 1; } } } } else { if (x[5] <= 51.98248291015625) { if (x[6] <= 28.390117645263672) { if (x[3] <= 47.207794189453125) { if (x[7] <= 40.27064514160156) { votes[9] += 1; } else { votes[2] += 1; } } else { if (x[4] <= 84.35708236694336) { votes[4] += 1; } else { votes[9] += 1; } } } else { if (x[4] <= 89.59982681274414) { if (x[1] <= 194.89495086669922) { votes[4] += 1; } else { votes[2] += 1; } } else { if (x[4] <= 107.63897323608398) { votes[4] += 1; } else { votes[4] += 1; } } } } else { if (x[2] <= 74.71909713745117) { if (x[7] <= 31.47183322906494) { votes[2] += 1; } else { if (x[1] <= 202.528076171875) { votes[6] += 1; } else { votes[3] += 1; } } } else { if (x[4] <= 87.49417877197266) { votes[2] += 1; } else { votes[2] += 1; } } } } } else { if (x[2] <= 52.040260314941406) { votes[0] += 1; } else { if (x[3] <= 29.29382610321045) { votes[4] += 1; } else { if (x[1] <= 193.5311737060547) { votes[0] += 1; } else { votes[0] += 1; } } } } } } else { if (x[5] <= 65.14313507080078) { if (x[7] <= 15.554593563079834) { if (x[4] <= 83.98646926879883) { votes[2] += 1; } else { votes[2] += 1; } } else { if (x[2] <= 46.28397178649902) { if (x[0] <= 317.0) { if (x[6] <= 42.87722587585449) { votes[3] += 1; } else { votes[9] += 1; } } else { votes[3] += 1; } } else { if (x[7] <= 38.39325523376465) { if (x[1] <= 191.2380599975586) { votes[5] += 1; } else { if (x[5] <= 35.57352638244629) { votes[5] += 1; } else { votes[5] += 1; } } } else { if (x[6] <= 37.60666847229004) { votes[3] += 1; } else { if (x[3] <= 46.99803352355957) { votes[5] += 1; } else { votes[2] += 1; } } } } } } else { if (x[7] <= 54.595102310180664) { if (x[4] <= 66.60126495361328) { votes[5] += 1; } else { votes[5] += 1; } } else { if (x[5] <= 100.48428344726562) { votes[2] += 1; } else { votes[5] += 1; } } } } } else { if (x[3] <= 75.8809814453125) { if (x[2] <= 34.77516746520996) { if (x[5] <= 51.9958438873291) { votes[7] += 1; } else { votes[9] += 1; } } else { if (x[0] <= 355.0) { if (x[9] <= 78.83710098266602) { if (x[5] <= 32.09566879272461) { votes[7] += 1; } else { if (x[4] <= 14.839163303375244) { votes[7] += 1; } else { if (x[3] <= 53.721181869506836) { votes[7] += 1; } else { votes[7] += 1; } } } } else { votes[5] += 1; } } else { votes[5] += 1; } } } else { if (x[4] <= 59.49003601074219) { votes[1] += 1; } else { votes[1] += 1; } } } } else { if (x[3] <= 52.30191230773926) { if (x[6] <= 18.391161918640137) { votes[2] += 1; } else { if (x[3] <= 50.48164367675781) { if (x[7] <= 51.422645568847656) { if (x[9] <= 42.97108268737793) { if (x[8] <= 32.79507637023926) { if (x[0] <= 290.0) { votes[4] += 1; } else { votes[4] += 1; } } else { if (x[0] <= 294.0) { votes[4] += 1; } else { votes[4] += 1; } } } else { votes[4] += 1; } } else { votes[4] += 1; } } else { votes[4] += 1; } } } else { if (x[2] <= 106.95913314819336) { votes[0] += 1; } else { votes[0] += 1; } } } // tree #23 if (x[2] <= 59.63716125488281) { if (x[4] <= 28.845133781433105) { if (x[0] <= 255.0) { votes[1] += 1; } else { if (x[3] <= 76.31824111938477) { if (x[9] <= 58.08012008666992) { if (x[6] <= 29.805033683776855) { if (x[3] <= 54.23351860046387) { if (x[8] <= 70.08504104614258) { if (x[5] <= 63.907955169677734) { if (x[2] <= 13.741782665252686) { votes[8] += 1; } else { votes[8] += 1; } } else { votes[8] += 1; } } else { votes[8] += 1; } } else { votes[1] += 1; } } else { if (x[0] <= 331.5) { if (x[6] <= 59.410722732543945) { if (x[3] <= 46.885135650634766) { votes[3] += 1; } else { votes[9] += 1; } } else { votes[7] += 1; } } else { if (x[5] <= 34.256330490112305) { votes[8] += 1; } else { votes[9] += 1; } } } } else { if (x[5] <= 71.90731811523438) { votes[5] += 1; } else { if (x[6] <= 55.65034866333008) { votes[5] += 1; } else { votes[5] += 1; } } } } else { if (x[1] <= 216.19277954101562) { votes[0] += 1; } else { if (x[6] <= 17.819576263427734) { votes[1] += 1; } else { votes[1] += 1; } } } } } else { if (x[7] <= 49.78105163574219) { if (x[6] <= 59.12050437927246) { if (x[9] <= 46.508317947387695) { if (x[4] <= 45.95294952392578) { if (x[1] <= 250.5371322631836) { if (x[1] <= 174.6436996459961) { votes[3] += 1; } else { if (x[3] <= 69.81865692138672) { if (x[3] <= 36.766563415527344) { votes[8] += 1; } else { votes[8] += 1; } } else { votes[1] += 1; } } } else { votes[1] += 1; } } else { if (x[2] <= 46.8942813873291) { if (x[2] <= 27.156460762023926) { if (x[3] <= 72.71746444702148) { if (x[7] <= 28.84286880493164) { votes[8] += 1; } else { votes[3] += 1; } } else { votes[1] += 1; } } else { if (x[9] <= 30.48826503753662) { if (x[3] <= 95.59822463989258) { votes[3] += 1; } else { votes[1] += 1; } } else { if (x[1] <= 182.6114501953125) { votes[3] += 1; } else { votes[3] += 1; } } } } else { if (x[4] <= 79.49249649047852) { if (x[7] <= 35.636837005615234) { votes[2] += 1; } else { votes[1] += 1; } } else { if (x[5] <= 48.19524002075195) { votes[4] += 1; } else { votes[9] += 1; } } } } } else { if (x[7] <= 39.6234245300293) { if (x[3] <= 56.36927795410156) { if (x[1] <= 181.19041442871094) { votes[5] += 1; } else { if (x[3] <= 44.34311103820801) { if (x[2] <= 47.456993103027344) { votes[5] += 1; } else { votes[5] += 1; } } else { votes[2] += 1; } } } else { if (x[9] <= 67.67426300048828) { if (x[7] <= 23.560967445373535) { if (x[6] <= 42.25939178466797) { votes[2] += 1; } else { votes[2] += 1; } } else { if (x[8] <= 48.274465560913086) { votes[2] += 1; } else { votes[5] += 1; } } } else { votes[5] += 1; } } } else { if (x[6] <= 30.681965827941895) { votes[3] += 1; } else { if (x[5] <= 72.67451477050781) { votes[2] += 1; } else { votes[5] += 1; } } } } } else { if (x[1] <= 170.72679901123047) { votes[5] += 1; } else { votes[7] += 1; } } } else { if (x[9] <= 29.305564880371094) { if (x[8] <= 32.73988723754883) { if (x[2] <= 26.766127586364746) { votes[7] += 1; } else { if (x[7] <= 60.83277130126953) { votes[6] += 1; } else { if (x[6] <= 28.838407516479492) { votes[6] += 1; } else { votes[6] += 1; } } } } else { if (x[4] <= 36.74342727661133) { if (x[8] <= 58.28713417053223) { votes[8] += 1; } else { votes[0] += 1; } } else { if (x[2] <= 22.76323699951172) { if (x[7] <= 66.64353561401367) { if (x[0] <= 297.5) { votes[3] += 1; } else { votes[3] += 1; } } else { votes[3] += 1; } } else { if (x[1] <= 223.7881317138672) { if (x[5] <= 66.89311599731445) { if (x[0] <= 286.5) { votes[3] += 1; } else { votes[7] += 1; } } else { if (x[8] <= 52.03794288635254) { votes[6] += 1; } else { votes[3] += 1; } } } else { votes[1] += 1; } } } } } else { if (x[1] <= 187.1643829345703) { if (x[2] <= 31.749560356140137) { if (x[4] <= 60.98347473144531) { if (x[5] <= 50.80229949951172) { votes[9] += 1; } else { if (x[4] <= 36.4484920501709) { votes[9] += 1; } else { if (x[3] <= 64.88658142089844) { votes[9] += 1; } else { votes[9] += 1; } } } } else { if (x[1] <= 155.920166015625) { votes[9] += 1; } else { votes[1] += 1; } } } else { if (x[5] <= 67.1279411315918) { if (x[7] <= 73.72455215454102) { if (x[2] <= 46.27604103088379) { votes[3] += 1; } else { votes[9] += 1; } } else { votes[1] += 1; } } else { if (x[4] <= 58.82534980773926) { votes[5] += 1; } else { votes[6] += 1; } } } } else { if (x[4] <= 50.00673484802246) { if (x[4] <= 38.47497367858887) { votes[3] += 1; } else { if (x[7] <= 66.28838729858398) { if (x[4] <= 42.15393257141113) { votes[3] += 1; } else { votes[3] += 1; } } else { votes[3] += 1; } } } else { if (x[9] <= 44.48550033569336) { if (x[6] <= 34.62423324584961) { votes[3] += 1; } else { if (x[8] <= 54.867692947387695) { if (x[8] <= 37.04079627990723) { votes[4] += 1; } else { votes[9] += 1; } } else { votes[7] += 1; } } } else { votes[2] += 1; } } } } } } } else { if (x[8] <= 69.57130813598633) { if (x[4] <= 74.10191345214844) { if (x[9] <= 35.88986587524414) { if (x[7] <= 55.66212844848633) { if (x[3] <= 51.60076713562012) { if (x[4] <= 66.43256378173828) { if (x[8] <= 49.59808921813965) { if (x[9] <= 32.57581901550293) { if (x[2] <= 77.19256591796875) { votes[7] += 1; } else { votes[7] += 1; } } else { votes[2] += 1; } } else { if (x[5] <= 37.755924224853516) { votes[8] += 1; } else { votes[8] += 1; } } } else { votes[4] += 1; } } else { if (x[1] <= 167.06227111816406) { if (x[2] <= 72.24806213378906) { votes[0] += 1; } else { votes[0] += 1; } } else { votes[4] += 1; } } } else { if (x[8] <= 56.805641174316406) { if (x[0] <= 271.0) { votes[6] += 1; } else { if (x[3] <= 34.181175231933594) { votes[6] += 1; } else { if (x[9] <= 26.71237087249756) { if (x[2] <= 62.044050216674805) { votes[6] += 1; } else { votes[6] += 1; } } else { if (x[1] <= 192.17984771728516) { votes[6] += 1; } else { votes[6] += 1; } } } } } else { votes[0] += 1; } } } else { if (x[6] <= 52.676483154296875) { if (x[4] <= 61.623348236083984) { if (x[3] <= 39.95474624633789) { if (x[5] <= 60.08731651306152) { votes[5] += 1; } else { if (x[1] <= 187.89462280273438) { votes[5] += 1; } else { votes[5] += 1; } } } else { if (x[5] <= 63.554100036621094) { votes[2] += 1; } else { votes[6] += 1; } } } else { if (x[7] <= 35.83466911315918) { votes[2] += 1; } else { votes[3] += 1; } } } else { if (x[8] <= 42.63268280029297) { if (x[1] <= 172.0849838256836) { votes[7] += 1; } else { if (x[3] <= 33.170597076416016) { votes[7] += 1; } else { votes[5] += 1; } } } else { if (x[1] <= 177.66026306152344) { votes[7] += 1; } else { votes[7] += 1; } } } } } else { if (x[2] <= 100.18801498413086) { if (x[7] <= 76.12987899780273) { if (x[5] <= 52.217872619628906) { if (x[6] <= 38.29244041442871) { if (x[1] <= 186.2636489868164) { if (x[9] <= 30.12478256225586) { votes[4] += 1; } else { if (x[5] <= 26.157670974731445) { votes[9] += 1; } else { votes[5] += 1; } } } else { if (x[8] <= 43.72620391845703) { if (x[8] <= 21.7117338180542) { votes[4] += 1; } else { votes[2] += 1; } } else { if (x[1] <= 202.61914825439453) { votes[2] += 1; } else { votes[4] += 1; } } } } else { if (x[8] <= 59.23825645446777) { if (x[6] <= 48.36501884460449) { if (x[2] <= 81.89014053344727) { votes[4] += 1; } else { votes[4] += 1; } } else { votes[4] += 1; } } else { votes[5] += 1; } } } else { if (x[7] <= 37.81936264038086) { if (x[9] <= 41.83783149719238) { votes[2] += 1; } else { votes[2] += 1; } } else { votes[7] += 1; } } } else { votes[6] += 1; } } else { if (x[7] <= 27.080540657043457) { votes[4] += 1; } else { if (x[5] <= 26.417573928833008) { if (x[1] <= 144.33995056152344) { votes[7] += 1; } else { if (x[1] <= 182.25904846191406) { votes[4] += 1; } else { votes[4] += 1; } } } else { votes[4] += 1; } } } } } else { if (x[3] <= 38.85286521911621) { votes[4] += 1; } else { if (x[4] <= 39.86585807800293) { votes[0] += 1; } else { votes[0] += 1; } } } } // tree #24 if (x[6] <= 59.47696304321289) { if (x[3] <= 96.72123718261719) { if (x[4] <= 35.18651008605957) { if (x[1] <= 176.5453109741211) { if (x[3] <= 51.160696029663086) { if (x[6] <= 26.13862419128418) { votes[8] += 1; } else { if (x[8] <= 30.10965919494629) { if (x[7] <= 45.88671875) { votes[5] += 1; } else { votes[5] += 1; } } else { if (x[7] <= 60.42696762084961) { votes[0] += 1; } else { votes[9] += 1; } } } } else { if (x[7] <= 23.992700576782227) { if (x[2] <= 47.577857971191406) { votes[9] += 1; } else { votes[0] += 1; } } else { if (x[2] <= 54.822946548461914) { votes[0] += 1; } else { votes[0] += 1; } } } } else { if (x[2] <= 70.74272537231445) { if (x[5] <= 64.48873519897461) { if (x[3] <= 55.418806076049805) { if (x[7] <= 56.92201805114746) { if (x[9] <= 46.258413314819336) { if (x[6] <= 34.49529457092285) { votes[8] += 1; } else { votes[8] += 1; } } else { votes[5] += 1; } } else { votes[8] += 1; } } else { if (x[1] <= 249.44928741455078) { if (x[1] <= 212.52490234375) { votes[9] += 1; } else { votes[8] += 1; } } else { votes[1] += 1; } } } else { if (x[4] <= 21.428534507751465) { votes[8] += 1; } else { if (x[2] <= 44.46664047241211) { votes[1] += 1; } else { votes[5] += 1; } } } } else { if (x[7] <= 38.11092185974121) { votes[0] += 1; } else { if (x[0] <= 327.5) { votes[5] += 1; } else { votes[0] += 1; } } } } } else { if (x[4] <= 73.00009536743164) { if (x[3] <= 43.97721290588379) { if (x[9] <= 57.678592681884766) { if (x[8] <= 44.18580436706543) { if (x[9] <= 40.81993103027344) { if (x[3] <= 38.242631912231445) { if (x[4] <= 50.830421447753906) { votes[8] += 1; } else { votes[2] += 1; } } else { votes[3] += 1; } } else { if (x[3] <= 23.08533000946045) { votes[5] += 1; } else { if (x[9] <= 50.265512466430664) { votes[9] += 1; } else { votes[2] += 1; } } } } else { if (x[6] <= 41.691667556762695) { if (x[4] <= 43.789798736572266) { if (x[5] <= 56.61903762817383) { votes[8] += 1; } else { votes[3] += 1; } } else { if (x[1] <= 180.21180725097656) { votes[3] += 1; } else { votes[3] += 1; } } } else { if (x[6] <= 47.82118225097656) { votes[9] += 1; } else { if (x[0] <= 300.5) { votes[7] += 1; } else { votes[7] += 1; } } } } } else { if (x[7] <= 39.52422904968262) { if (x[6] <= 41.482065200805664) { votes[5] += 1; } else { votes[5] += 1; } } else { if (x[4] <= 41.31022262573242) { votes[5] += 1; } else { if (x[7] <= 51.50545692443848) { votes[5] += 1; } else { votes[3] += 1; } } } } } else { if (x[7] <= 56.47080993652344) { if (x[9] <= 54.81352615356445) { if (x[3] <= 72.78702926635742) { if (x[7] <= 42.86989784240723) { if (x[9] <= 28.151472091674805) { votes[8] += 1; } else { votes[2] += 1; } } else { if (x[1] <= 189.41683959960938) { votes[9] += 1; } else { votes[3] += 1; } } } else { if (x[0] <= 322.0) { if (x[1] <= 212.96117401123047) { votes[7] += 1; } else { votes[3] += 1; } } else { if (x[0] <= 344.0) { votes[1] += 1; } else { votes[1] += 1; } } } } else { if (x[3] <= 58.479766845703125) { if (x[6] <= 40.96636962890625) { votes[5] += 1; } else { votes[5] += 1; } } else { if (x[2] <= 34.29350185394287) { votes[5] += 1; } else { votes[2] += 1; } } } } else { if (x[9] <= 37.29110527038574) { if (x[8] <= 36.674007415771484) { if (x[3] <= 51.07553291320801) { if (x[8] <= 14.772610187530518) { votes[6] += 1; } else { votes[6] += 1; } } else { if (x[1] <= 198.90572357177734) { votes[6] += 1; } else { votes[6] += 1; } } } else { if (x[2] <= 42.634498596191406) { if (x[3] <= 66.9669189453125) { votes[3] += 1; } else { votes[6] += 1; } } else { if (x[1] <= 141.54241180419922) { votes[0] += 1; } else { votes[6] += 1; } } } } else { if (x[2] <= 46.28241729736328) { if (x[7] <= 66.8326187133789) { votes[9] += 1; } else { if (x[5] <= 63.672664642333984) { votes[9] += 1; } else { votes[9] += 1; } } } else { if (x[2] <= 59.55994987487793) { votes[3] += 1; } else { votes[3] += 1; } } } } } } else { if (x[7] <= 74.6195297241211) { if (x[2] <= 96.8977165222168) { if (x[4] <= 96.379150390625) { if (x[3] <= 57.49738311767578) { if (x[7] <= 30.470845222473145) { if (x[2] <= 59.92036247253418) { votes[2] += 1; } else { votes[2] += 1; } } else { if (x[5] <= 57.83207702636719) { votes[2] += 1; } else { votes[5] += 1; } } } else { if (x[7] <= 33.76258850097656) { if (x[1] <= 196.1516571044922) { votes[2] += 1; } else { votes[5] += 1; } } else { if (x[5] <= 47.75822639465332) { votes[4] += 1; } else { votes[3] += 1; } } } } else { if (x[7] <= 32.77817916870117) { if (x[9] <= 43.56106948852539) { votes[4] += 1; } else { votes[2] += 1; } } else { if (x[9] <= 35.40200233459473) { if (x[3] <= 41.40159034729004) { votes[4] += 1; } else { votes[4] += 1; } } else { votes[9] += 1; } } } } else { if (x[1] <= 138.85154724121094) { votes[7] += 1; } else { if (x[9] <= 39.26491928100586) { if (x[7] <= 27.080540657043457) { votes[4] += 1; } else { if (x[4] <= 75.58206176757812) { votes[4] += 1; } else { votes[4] += 1; } } } else { if (x[3] <= 25.2222261428833) { votes[4] += 1; } else { votes[4] += 1; } } } } } else { if (x[7] <= 85.45449447631836) { if (x[4] <= 78.0080337524414) { votes[6] += 1; } else { if (x[4] <= 82.14968490600586) { votes[6] += 1; } else { votes[6] += 1; } } } else { votes[6] += 1; } } } } } else { if (x[0] <= 358.0) { if (x[2] <= 49.36176300048828) { if (x[1] <= 178.3080596923828) { votes[1] += 1; } else { if (x[0] <= 332.0) { votes[1] += 1; } else { votes[1] += 1; } } } else { votes[1] += 1; } } else { if (x[1] <= 145.88633728027344) { votes[0] += 1; } else { votes[1] += 1; } } } } else { if (x[7] <= 57.79123878479004) { if (x[8] <= 31.3257417678833) { if (x[6] <= 75.93510818481445) { if (x[2] <= 60.784738540649414) { votes[5] += 1; } else { votes[7] += 1; } } else { votes[7] += 1; } } else { if (x[1] <= 157.4146728515625) { votes[5] += 1; } else { if (x[1] <= 168.13225555419922) { votes[7] += 1; } else { if (x[9] <= 63.25753593444824) { votes[7] += 1; } else { votes[7] += 1; } } } } } else { if (x[8] <= 61.84336280822754) { if (x[4] <= 57.34284973144531) { if (x[5] <= 64.59494018554688) { votes[9] += 1; } else { votes[7] += 1; } } else { votes[4] += 1; } } else { if (x[0] <= 321.0) { votes[1] += 1; } else { votes[1] += 1; } } } } // tree #25 if (x[6] <= 58.74375534057617) { if (x[9] <= 55.63290596008301) { if (x[3] <= 91.87762451171875) { if (x[8] <= 64.15995788574219) { if (x[6] <= 34.40580940246582) { if (x[7] <= 63.39757537841797) { if (x[2] <= 58.883453369140625) { if (x[3] <= 51.14152717590332) { if (x[1] <= 167.7694854736328) { if (x[9] <= 42.74021530151367) { votes[3] += 1; } else { votes[3] += 1; } } else { if (x[5] <= 46.3026008605957) { votes[8] += 1; } else { votes[8] += 1; } } } else { if (x[0] <= 362.0) { if (x[1] <= 161.9511489868164) { votes[6] += 1; } else { votes[3] += 1; } } else { if (x[6] <= 26.160680770874023) { votes[1] += 1; } else { votes[1] += 1; } } } } else { if (x[1] <= 191.58658599853516) { if (x[9] <= 42.12599563598633) { if (x[0] <= 306.0) { votes[4] += 1; } else { votes[4] += 1; } } else { if (x[7] <= 17.61808156967163) { votes[2] += 1; } else { votes[9] += 1; } } } else { if (x[1] <= 220.08995819091797) { if (x[3] <= 59.897315979003906) { votes[2] += 1; } else { votes[6] += 1; } } else { votes[0] += 1; } } } } else { if (x[1] <= 206.92184448242188) { if (x[2] <= 31.62596321105957) { if (x[9] <= 23.170442581176758) { votes[6] += 1; } else { votes[3] += 1; } } else { if (x[8] <= 39.08284950256348) { if (x[5] <= 34.46455001831055) { votes[4] += 1; } else { votes[6] += 1; } } else { votes[3] += 1; } } } else { if (x[8] <= 34.61269569396973) { votes[6] += 1; } else { votes[1] += 1; } } } } else { if (x[5] <= 47.11545753479004) { if (x[7] <= 23.751282691955566) { if (x[9] <= 41.84935188293457) { votes[9] += 1; } else { votes[5] += 1; } } else { if (x[2] <= 55.29947471618652) { if (x[1] <= 205.03659057617188) { if (x[5] <= 30.419291496276855) { votes[5] += 1; } else { votes[9] += 1; } } else { votes[1] += 1; } } else { if (x[0] <= 274.5) { if (x[3] <= 29.86217212677002) { votes[4] += 1; } else { votes[7] += 1; } } else { if (x[4] <= 77.7610969543457) { votes[4] += 1; } else { votes[4] += 1; } } } } } else { if (x[6] <= 50.51919746398926) { if (x[7] <= 42.652198791503906) { if (x[9] <= 34.591745376586914) { if (x[2] <= 45.411659240722656) { votes[1] += 1; } else { votes[0] += 1; } } else { if (x[4] <= 58.47190856933594) { votes[1] += 1; } else { votes[2] += 1; } } } else { if (x[2] <= 73.60153198242188) { if (x[8] <= 37.677345275878906) { votes[9] += 1; } else { votes[9] += 1; } } else { if (x[4] <= 44.85069465637207) { votes[0] += 1; } else { votes[4] += 1; } } } } else { if (x[7] <= 55.092376708984375) { if (x[0] <= 320.0) { votes[2] += 1; } else { votes[2] += 1; } } else { votes[5] += 1; } } } } } else { if (x[4] <= 31.70773220062256) { if (x[1] <= 184.3804473876953) { if (x[2] <= 53.7958984375) { votes[0] += 1; } else { votes[0] += 1; } } else { if (x[3] <= 40.065269470214844) { votes[8] += 1; } else { votes[0] += 1; } } } else { if (x[2] <= 45.57510566711426) { if (x[3] <= 50.29033279418945) { if (x[9] <= 38.793806076049805) { if (x[1] <= 186.14905548095703) { votes[3] += 1; } else { votes[3] += 1; } } else { votes[3] += 1; } } else { if (x[1] <= 204.88421630859375) { votes[3] += 1; } else { votes[8] += 1; } } } else { if (x[2] <= 66.4909896850586) { if (x[1] <= 160.73363494873047) { votes[0] += 1; } else { votes[5] += 1; } } else { if (x[5] <= 46.749956130981445) { votes[4] += 1; } else { if (x[5] <= 65.7817497253418) { votes[0] += 1; } else { votes[0] += 1; } } } } } } } else { if (x[8] <= 60.92082214355469) { if (x[4] <= 75.42486953735352) { if (x[8] <= 42.35367965698242) { if (x[1] <= 220.1357879638672) { if (x[4] <= 52.17887496948242) { votes[1] += 1; } else { votes[1] += 1; } } else { votes[1] += 1; } } else { votes[1] += 1; } } else { if (x[2] <= 30.086767196655273) { votes[1] += 1; } else { votes[5] += 1; } } } else { votes[0] += 1; } } } else { if (x[4] <= 85.24671936035156) { if (x[1] <= 216.62789154052734) { if (x[9] <= 76.0604476928711) { if (x[8] <= 52.60420036315918) { if (x[2] <= 17.91239070892334) { votes[9] += 1; } else { if (x[7] <= 59.3211555480957) { if (x[5] <= 77.17152786254883) { if (x[3] <= 19.452645301818848) { votes[5] += 1; } else { votes[2] += 1; } } else { votes[5] += 1; } } else { votes[2] += 1; } } } else { if (x[1] <= 197.90785217285156) { if (x[7] <= 48.08748245239258) { votes[5] += 1; } else { votes[5] += 1; } } else { votes[5] += 1; } } } else { votes[5] += 1; } } else { votes[2] += 1; } } else { if (x[4] <= 95.84753036499023) { votes[2] += 1; } else { votes[2] += 1; } } } } else { if (x[3] <= 40.95701026916504) { if (x[7] <= 67.50749206542969) { if (x[1] <= 161.18743896484375) { votes[7] += 1; } else { if (x[4] <= 64.10414123535156) { if (x[3] <= 8.3225417137146) { votes[7] += 1; } else { if (x[8] <= 31.399094581604004) { if (x[6] <= 86.60845947265625) { votes[7] += 1; } else { votes[7] += 1; } } else { votes[7] += 1; } } } else { votes[7] += 1; } } } else { votes[9] += 1; } } else { if (x[1] <= 159.45821380615234) { if (x[2] <= 32.44670486450195) { if (x[9] <= 62.57202911376953) { votes[9] += 1; } else { votes[9] += 1; } } else { votes[4] += 1; } } else { if (x[1] <= 187.2417221069336) { if (x[4] <= 57.93692970275879) { if (x[7] <= 54.173160552978516) { votes[7] += 1; } else { votes[9] += 1; } } else { if (x[5] <= 51.66563415527344) { votes[1] += 1; } else { votes[1] += 1; } } } else { if (x[7] <= 62.23294639587402) { if (x[2] <= 45.41549301147461) { votes[7] += 1; } else { votes[7] += 1; } } else { votes[1] += 1; } } } } } // tree #26 if (x[2] <= 46.713932037353516) { if (x[1] <= 229.23067474365234) { if (x[5] <= 37.10886764526367) { if (x[0] <= 271.5) { if (x[6] <= 20.177522659301758) { votes[1] += 1; } else { if (x[1] <= 160.9327850341797) { votes[3] += 1; } else { votes[1] += 1; } } } else { if (x[3] <= 40.88563346862793) { if (x[9] <= 42.47320747375488) { if (x[1] <= 184.29087829589844) { votes[8] += 1; } else { votes[8] += 1; } } else { votes[7] += 1; } } else { if (x[3] <= 77.39638900756836) { if (x[7] <= 19.328453063964844) { votes[8] += 1; } else { if (x[6] <= 25.97608184814453) { votes[3] += 1; } else { votes[3] += 1; } } } else { votes[8] += 1; } } } } else { if (x[3] <= 92.08926773071289) { if (x[9] <= 59.6336727142334) { if (x[8] <= 32.5438175201416) { if (x[2] <= 27.852700233459473) { if (x[3] <= 52.03632354736328) { votes[8] += 1; } else { votes[7] += 1; } } else { if (x[4] <= 64.70381546020508) { if (x[9] <= 28.104536056518555) { votes[8] += 1; } else { if (x[3] <= 62.80891990661621) { votes[2] += 1; } else { votes[9] += 1; } } } else { if (x[9] <= 25.866073608398438) { if (x[6] <= 21.512361526489258) { votes[6] += 1; } else { votes[6] += 1; } } else { votes[2] += 1; } } } } else { if (x[6] <= 29.60684871673584) { if (x[3] <= 64.4773941040039) { if (x[5] <= 62.75339889526367) { if (x[4] <= 27.282005310058594) { votes[3] += 1; } else { votes[3] += 1; } } else { if (x[9] <= 16.57974338531494) { votes[6] += 1; } else { votes[3] += 1; } } } else { if (x[6] <= 14.944106101989746) { votes[3] += 1; } else { votes[0] += 1; } } } else { if (x[6] <= 53.678232192993164) { if (x[9] <= 21.32437515258789) { votes[6] += 1; } else { if (x[3] <= 67.38676071166992) { votes[9] += 1; } else { votes[2] += 1; } } } else { if (x[9] <= 44.52676963806152) { if (x[7] <= 60.43530464172363) { votes[7] += 1; } else { votes[1] += 1; } } else { if (x[5] <= 59.153076171875) { votes[1] += 1; } else { votes[9] += 1; } } } } } } else { if (x[7] <= 45.996232986450195) { if (x[3] <= 62.58633995056152) { if (x[8] <= 40.42957878112793) { votes[5] += 1; } else { votes[5] += 1; } } else { votes[5] += 1; } } else { if (x[6] <= 48.44383239746094) { votes[5] += 1; } else { votes[9] += 1; } } } } else { if (x[3] <= 106.21439743041992) { if (x[5] <= 53.87605094909668) { votes[1] += 1; } else { votes[6] += 1; } } else { votes[1] += 1; } } } } else { if (x[3] <= 66.38516616821289) { if (x[4] <= 45.59284591674805) { if (x[9] <= 33.84755897521973) { if (x[0] <= 377.0) { votes[8] += 1; } else { votes[8] += 1; } } else { votes[3] += 1; } } else { votes[1] += 1; } } else { if (x[7] <= 12.334687232971191) { if (x[4] <= 23.520299911499023) { votes[1] += 1; } else { votes[1] += 1; } } else { if (x[9] <= 13.779492855072021) { if (x[6] <= 23.484390258789062) { if (x[4] <= 24.908525466918945) { votes[1] += 1; } else { votes[1] += 1; } } else { votes[1] += 1; } } else { if (x[4] <= 14.604875087738037) { votes[1] += 1; } else { votes[1] += 1; } } } } } } else { if (x[4] <= 47.65130043029785) { if (x[3] <= 43.34737968444824) { if (x[9] <= 62.271602630615234) { if (x[8] <= 64.52273178100586) { if (x[1] <= 205.0342788696289) { if (x[3] <= 27.358287811279297) { if (x[1] <= 184.97625732421875) { if (x[0] <= 280.0) { votes[7] += 1; } else { votes[7] += 1; } } else { if (x[3] <= 18.171297073364258) { votes[7] += 1; } else { votes[7] += 1; } } } else { if (x[6] <= 43.79199409484863) { if (x[8] <= 27.256244659423828) { votes[6] += 1; } else { votes[5] += 1; } } else { if (x[3] <= 37.87454032897949) { if (x[9] <= 44.76265525817871) { votes[7] += 1; } else { votes[7] += 1; } } else { votes[7] += 1; } } } } else { if (x[6] <= 24.73457431793213) { if (x[8] <= 40.68804359436035) { votes[8] += 1; } else { votes[8] += 1; } } else { votes[7] += 1; } } } else { votes[0] += 1; } } else { if (x[2] <= 78.26310348510742) { if (x[5] <= 49.542741775512695) { votes[5] += 1; } else { if (x[5] <= 75.75065612792969) { votes[5] += 1; } else { votes[5] += 1; } } } else { votes[7] += 1; } } } else { if (x[1] <= 176.8468246459961) { if (x[3] <= 51.90774345397949) { votes[0] += 1; } else { if (x[8] <= 42.19690132141113) { votes[3] += 1; } else { if (x[6] <= 56.40529823303223) { votes[0] += 1; } else { votes[0] += 1; } } } } else { if (x[8] <= 62.30545425415039) { if (x[7] <= 59.74192428588867) { if (x[9] <= 29.175572395324707) { votes[8] += 1; } else { if (x[2] <= 58.515625) { votes[7] += 1; } else { if (x[3] <= 50.6406307220459) { votes[5] += 1; } else { votes[3] += 1; } } } } else { if (x[2] <= 62.49327850341797) { votes[9] += 1; } else { if (x[8] <= 30.97672939300537) { votes[6] += 1; } else { votes[6] += 1; } } } } else { if (x[2] <= 71.98701095581055) { votes[0] += 1; } else { votes[0] += 1; } } } } } else { if (x[7] <= 63.43428421020508) { if (x[5] <= 45.54688262939453) { if (x[4] <= 88.44533920288086) { if (x[2] <= 97.32739639282227) { if (x[1] <= 165.4222412109375) { votes[9] += 1; } else { if (x[2] <= 75.6152229309082) { if (x[8] <= 58.979413986206055) { if (x[4] <= 80.46384811401367) { votes[2] += 1; } else { votes[4] += 1; } } else { if (x[9] <= 51.12981986999512) { votes[5] += 1; } else { votes[5] += 1; } } } else { if (x[1] <= 197.8270034790039) { votes[2] += 1; } else { votes[2] += 1; } } } } else { if (x[9] <= 39.20453453063965) { if (x[1] <= 156.3607635498047) { votes[4] += 1; } else { if (x[7] <= 36.94882011413574) { votes[4] += 1; } else { if (x[9] <= 25.12773609161377) { votes[4] += 1; } else { votes[4] += 1; } } } } else { votes[7] += 1; } } } else { if (x[7] <= 27.71700382232666) { votes[4] += 1; } else { if (x[4] <= 94.36430358886719) { if (x[4] <= 91.22311019897461) { if (x[3] <= 30.2030611038208) { votes[4] += 1; } else { votes[4] += 1; } } else { if (x[6] <= 38.20816612243652) { votes[2] += 1; } else { votes[4] += 1; } } } else { if (x[6] <= 29.230730056762695) { votes[4] += 1; } else { votes[4] += 1; } } } } } else { if (x[5] <= 86.74248886108398) { if (x[9] <= 33.23554229736328) { if (x[2] <= 107.09775161743164) { if (x[4] <= 94.99395370483398) { if (x[6] <= 36.28864288330078) { if (x[3] <= 46.108747482299805) { votes[2] += 1; } else { votes[6] += 1; } } else { votes[7] += 1; } } else { votes[4] += 1; } } else { votes[4] += 1; } } else { if (x[4] <= 65.31357955932617) { if (x[3] <= 49.92916297912598) { if (x[6] <= 60.295949935913086) { if (x[7] <= 50.72780227661133) { votes[2] += 1; } else { votes[3] += 1; } } else { votes[7] += 1; } } else { votes[6] += 1; } } else { if (x[8] <= 60.69401550292969) { if (x[7] <= 30.470845222473145) { if (x[1] <= 194.9693603515625) { votes[2] += 1; } else { votes[2] += 1; } } else { if (x[0] <= 287.0) { votes[9] += 1; } else { votes[2] += 1; } } } else { votes[2] += 1; } } } } else { votes[5] += 1; } } } else { if (x[4] <= 75.69252395629883) { if (x[6] <= 43.407203674316406) { if (x[2] <= 52.54088592529297) { votes[6] += 1; } else { if (x[6] <= 16.115118980407715) { votes[6] += 1; } else { if (x[8] <= 33.748640060424805) { votes[6] += 1; } else { votes[6] += 1; } } } } else { votes[7] += 1; } } else { if (x[2] <= 86.70321273803711) { if (x[8] <= 29.37819194793701) { if (x[7] <= 73.33741760253906) { votes[4] += 1; } else { votes[6] += 1; } } else { votes[2] += 1; } } else { votes[4] += 1; } } } } } // tree #27 if (x[9] <= 56.00065612792969) { if (x[8] <= 62.431257247924805) { if (x[3] <= 92.2306137084961) { if (x[4] <= 74.23918914794922) { if (x[7] <= 61.189748764038086) { if (x[9] <= 28.198440551757812) { if (x[1] <= 259.44415283203125) { if (x[8] <= 42.33015060424805) { if (x[2] <= 58.1081600189209) { if (x[3] <= 54.192359924316406) { votes[8] += 1; } else { votes[3] += 1; } } else { if (x[5] <= 47.26998329162598) { votes[7] += 1; } else { votes[6] += 1; } } } else { if (x[0] <= 323.0) { if (x[6] <= 47.801706314086914) { votes[4] += 1; } else { votes[7] += 1; } } else { votes[1] += 1; } } } else { votes[1] += 1; } } else { if (x[1] <= 237.6940689086914) { if (x[2] <= 42.562814712524414) { if (x[6] <= 29.574097633361816) { if (x[5] <= 28.151007652282715) { votes[8] += 1; } else { votes[3] += 1; } } else { if (x[6] <= 54.7441291809082) { votes[9] += 1; } else { votes[7] += 1; } } } else { if (x[1] <= 171.6687774658203) { if (x[8] <= 24.577425956726074) { votes[5] += 1; } else { votes[2] += 1; } } else { if (x[8] <= 39.2231388092041) { votes[7] += 1; } else { votes[7] += 1; } } } } else { if (x[2] <= 32.59507751464844) { votes[1] += 1; } else { votes[8] += 1; } } } } else { if (x[8] <= 32.49327850341797) { if (x[2] <= 43.194772720336914) { votes[9] += 1; } else { if (x[0] <= 261.0) { votes[6] += 1; } else { if (x[0] <= 354.5) { if (x[0] <= 298.0) { votes[6] += 1; } else { votes[6] += 1; } } else { votes[6] += 1; } } } } else { if (x[7] <= 81.3752326965332) { if (x[9] <= 28.91718101501465) { if (x[4] <= 64.44220733642578) { if (x[1] <= 180.12772369384766) { votes[6] += 1; } else { votes[7] += 1; } } else { votes[6] += 1; } } else { if (x[3] <= 56.26807403564453) { if (x[3] <= 45.459794998168945) { votes[9] += 1; } else { votes[1] += 1; } } else { votes[3] += 1; } } } else { if (x[2] <= 34.885475158691406) { if (x[3] <= 42.96573829650879) { votes[9] += 1; } else { votes[9] += 1; } } else { votes[1] += 1; } } } } } else { if (x[3] <= 50.92137145996094) { if (x[6] <= 34.40580940246582) { if (x[2] <= 99.93909454345703) { if (x[9] <= 14.593129634857178) { votes[4] += 1; } else { if (x[8] <= 35.929494857788086) { if (x[3] <= 44.30014991760254) { votes[2] += 1; } else { votes[4] += 1; } } else { if (x[6] <= 22.95406436920166) { votes[9] += 1; } else { votes[2] += 1; } } } } else { if (x[8] <= 46.70916748046875) { if (x[3] <= 29.74858570098877) { votes[7] += 1; } else { votes[4] += 1; } } else { votes[4] += 1; } } } else { if (x[1] <= 133.74049377441406) { votes[7] += 1; } else { if (x[9] <= 44.175537109375) { if (x[7] <= 70.7319450378418) { if (x[0] <= 331.5) { votes[4] += 1; } else { votes[4] += 1; } } else { votes[2] += 1; } } else { votes[4] += 1; } } } } else { if (x[2] <= 65.15174865722656) { if (x[1] <= 182.718994140625) { if (x[6] <= 21.780616760253906) { votes[3] += 1; } else { if (x[7] <= 78.26913452148438) { votes[6] += 1; } else { votes[6] += 1; } } } else { if (x[7] <= 42.42479705810547) { votes[2] += 1; } else { if (x[0] <= 328.5) { votes[4] += 1; } else { votes[3] += 1; } } } } else { if (x[7] <= 35.00501823425293) { if (x[9] <= 40.29062461853027) { votes[2] += 1; } else { votes[2] += 1; } } else { if (x[6] <= 37.15817451477051) { votes[4] += 1; } else { votes[4] += 1; } } } } } } else { if (x[9] <= 37.99301338195801) { if (x[9] <= 30.009084701538086) { if (x[3] <= 101.00736618041992) { if (x[1] <= 227.78065490722656) { if (x[3] <= 96.90707015991211) { votes[1] += 1; } else { votes[8] += 1; } } else { votes[1] += 1; } } else { votes[1] += 1; } } else { votes[1] += 1; } } else { votes[2] += 1; } } } else { if (x[1] <= 162.4691925048828) { if (x[5] <= 45.154788970947266) { votes[3] += 1; } else { if (x[6] <= 46.538686752319336) { if (x[4] <= 35.0039119720459) { votes[0] += 1; } else { votes[0] += 1; } } else { votes[0] += 1; } } } else { if (x[6] <= 57.48053169250488) { if (x[4] <= 33.21967315673828) { if (x[2] <= 61.748069763183594) { if (x[5] <= 42.22187423706055) { votes[8] += 1; } else { votes[3] += 1; } } else { votes[0] += 1; } } else { if (x[5] <= 27.100236892700195) { votes[4] += 1; } else { if (x[1] <= 186.1249237060547) { if (x[4] <= 40.36714553833008) { votes[3] += 1; } else { if (x[7] <= 62.227705001831055) { votes[3] += 1; } else { votes[3] += 1; } } } else { if (x[6] <= 27.089137077331543) { if (x[2] <= 37.95040512084961) { votes[3] += 1; } else { votes[9] += 1; } } else { if (x[9] <= 43.58069610595703) { votes[5] += 1; } else { votes[5] += 1; } } } } } } else { if (x[7] <= 60.32494354248047) { votes[7] += 1; } else { if (x[0] <= 318.5) { votes[1] += 1; } else { votes[1] += 1; } } } } } } else { if (x[9] <= 68.5156021118164) { if (x[0] <= 289.5) { if (x[7] <= 41.99857139587402) { if (x[4] <= 56.56894493103027) { if (x[6] <= 50.17799949645996) { votes[5] += 1; } else { votes[5] += 1; } } else { votes[2] += 1; } } else { if (x[2] <= 44.39285850524902) { votes[9] += 1; } else { votes[2] += 1; } } } else { if (x[6] <= 67.65616989135742) { if (x[1] <= 160.49483489990234) { votes[9] += 1; } else { if (x[5] <= 41.97323799133301) { if (x[8] <= 40.638648986816406) { if (x[8] <= 30.71487045288086) { votes[2] += 1; } else { votes[3] += 1; } } else { votes[5] += 1; } } else { if (x[4] <= 79.59410095214844) { if (x[6] <= 42.88151550292969) { if (x[3] <= 49.7393856048584) { if (x[4] <= 45.70372772216797) { votes[5] += 1; } else { votes[5] += 1; } } else { votes[2] += 1; } } else { votes[2] += 1; } } else { if (x[9] <= 62.33886528015137) { votes[2] += 1; } else { votes[2] += 1; } } } } } else { if (x[4] <= 56.779924392700195) { votes[7] += 1; } else { votes[1] += 1; } } } } else { if (x[5] <= 51.06831169128418) { if (x[6] <= 51.69402885437012) { if (x[7] <= 28.98935604095459) { votes[5] += 1; } else { votes[2] += 1; } } else { votes[7] += 1; } } else { if (x[6] <= 71.87472152709961) { if (x[5] <= 65.17300796508789) { votes[5] += 1; } else { if (x[4] <= 20.29947853088379) { votes[5] += 1; } else { votes[5] += 1; } } } else { votes[7] += 1; } } } } // tree #28 if (x[3] <= 84.13082122802734) { if (x[4] <= 74.2531623840332) { if (x[6] <= 58.692644119262695) { if (x[9] <= 54.286773681640625) { if (x[6] <= 31.864803314208984) { if (x[4] <= 35.262338638305664) { if (x[5] <= 56.889997482299805) { if (x[1] <= 134.3033676147461) { votes[0] += 1; } else { if (x[7] <= 52.12550926208496) { if (x[6] <= 25.406970977783203) { votes[8] += 1; } else { votes[8] += 1; } } else { votes[8] += 1; } } } else { if (x[8] <= 55.0306339263916) { if (x[7] <= 66.0091781616211) { if (x[8] <= 34.26652717590332) { votes[8] += 1; } else { votes[1] += 1; } } else { votes[6] += 1; } } else { if (x[4] <= 24.18178653717041) { votes[0] += 1; } else { votes[0] += 1; } } } } else { if (x[8] <= 35.520273208618164) { if (x[2] <= 46.113515853881836) { if (x[0] <= 359.5) { if (x[3] <= 35.26869583129883) { votes[8] += 1; } else { votes[3] += 1; } } else { votes[1] += 1; } } else { if (x[5] <= 33.099992752075195) { votes[2] += 1; } else { if (x[7] <= 52.940317153930664) { votes[8] += 1; } else { votes[6] += 1; } } } } else { if (x[7] <= 22.525015830993652) { if (x[9] <= 23.53899097442627) { votes[8] += 1; } else { votes[2] += 1; } } else { if (x[0] <= 349.5) { if (x[9] <= 24.31525421142578) { votes[3] += 1; } else { votes[3] += 1; } } else { if (x[1] <= 204.83181762695312) { votes[6] += 1; } else { votes[8] += 1; } } } } } } else { if (x[8] <= 70.31569290161133) { if (x[1] <= 213.35660552978516) { if (x[2] <= 45.21767044067383) { if (x[5] <= 59.67398262023926) { if (x[6] <= 35.59946823120117) { votes[3] += 1; } else { votes[9] += 1; } } else { if (x[8] <= 57.35752487182617) { votes[9] += 1; } else { votes[5] += 1; } } } else { if (x[3] <= 51.34193229675293) { if (x[4] <= 52.34140205383301) { votes[9] += 1; } else { votes[2] += 1; } } else { if (x[8] <= 48.44278907775879) { votes[6] += 1; } else { votes[0] += 1; } } } } else { if (x[5] <= 59.275503158569336) { if (x[4] <= 34.94323253631592) { votes[8] += 1; } else { votes[2] += 1; } } else { if (x[6] <= 45.36525535583496) { votes[6] += 1; } else { votes[2] += 1; } } } } else { if (x[2] <= 42.89187240600586) { votes[3] += 1; } else { if (x[0] <= 289.0) { votes[0] += 1; } else { votes[0] += 1; } } } } } else { if (x[5] <= 76.93810272216797) { if (x[2] <= 28.41919708251953) { if (x[1] <= 190.36454010009766) { votes[9] += 1; } else { votes[3] += 1; } } else { if (x[1] <= 188.27019500732422) { if (x[7] <= 54.572309494018555) { if (x[4] <= 51.282081604003906) { if (x[8] <= 21.086615562438965) { votes[5] += 1; } else { votes[5] += 1; } } else { if (x[1] <= 173.38111114501953) { votes[2] += 1; } else { votes[2] += 1; } } } else { votes[2] += 1; } } else { if (x[6] <= 38.28990364074707) { if (x[2] <= 48.150455474853516) { votes[5] += 1; } else { if (x[1] <= 207.73430633544922) { votes[5] += 1; } else { votes[5] += 1; } } } else { votes[5] += 1; } } } } else { if (x[6] <= 26.27856159210205) { votes[5] += 1; } else { if (x[9] <= 64.08912658691406) { votes[5] += 1; } else { votes[5] += 1; } } } } } else { if (x[1] <= 161.18743896484375) { if (x[8] <= 28.275962829589844) { if (x[5] <= 66.75162506103516) { votes[5] += 1; } else { votes[5] += 1; } } else { if (x[2] <= 29.467934608459473) { votes[9] += 1; } else { votes[9] += 1; } } } else { if (x[0] <= 354.5) { if (x[7] <= 80.8370246887207) { if (x[0] <= 347.5) { if (x[7] <= 42.411434173583984) { votes[7] += 1; } else { if (x[9] <= 71.5995864868164) { if (x[5] <= 75.03958892822266) { votes[7] += 1; } else { votes[7] += 1; } } else { votes[5] += 1; } } } else { votes[7] += 1; } } else { votes[9] += 1; } } else { votes[5] += 1; } } } } else { if (x[6] <= 35.64227294921875) { if (x[2] <= 100.18801498413086) { if (x[7] <= 63.67584800720215) { if (x[9] <= 46.95335578918457) { if (x[1] <= 171.05204010009766) { if (x[9] <= 36.47140693664551) { votes[4] += 1; } else { votes[9] += 1; } } else { if (x[4] <= 99.39947891235352) { if (x[3] <= 39.55291175842285) { if (x[8] <= 36.010080337524414) { votes[2] += 1; } else { votes[2] += 1; } } else { if (x[5] <= 41.73055839538574) { votes[4] += 1; } else { votes[5] += 1; } } } else { votes[9] += 1; } } } else { if (x[2] <= 65.82779312133789) { votes[2] += 1; } else { if (x[3] <= 33.11319160461426) { if (x[7] <= 15.767873764038086) { votes[2] += 1; } else { votes[2] += 1; } } else { votes[2] += 1; } } } } else { if (x[9] <= 25.664735794067383) { if (x[5] <= 54.530372619628906) { votes[6] += 1; } else { votes[6] += 1; } } else { votes[3] += 1; } } } else { if (x[5] <= 19.033063888549805) { votes[2] += 1; } else { if (x[2] <= 106.5947151184082) { votes[4] += 1; } else { votes[4] += 1; } } } } else { if (x[7] <= 31.83613681793213) { if (x[9] <= 37.458709716796875) { votes[4] += 1; } else { if (x[4] <= 83.36399841308594) { votes[2] += 1; } else { if (x[7] <= 19.81131935119629) { votes[2] += 1; } else { votes[2] += 1; } } } } else { if (x[9] <= 54.72500801086426) { if (x[7] <= 70.3226547241211) { if (x[3] <= 37.631980895996094) { if (x[2] <= 95.51288986206055) { votes[4] += 1; } else { votes[4] += 1; } } else { if (x[7] <= 39.67989921569824) { votes[7] += 1; } else { if (x[4] <= 82.69623565673828) { votes[4] += 1; } else { if (x[2] <= 84.78100967407227) { votes[4] += 1; } else { votes[4] += 1; } } } } } else { if (x[2] <= 79.92765808105469) { votes[9] += 1; } else { votes[4] += 1; } } } else { votes[2] += 1; } } } } } else { if (x[1] <= 164.63626861572266) { if (x[7] <= 63.06966590881348) { if (x[2] <= 55.56630325317383) { votes[0] += 1; } else { votes[0] += 1; } } else { votes[6] += 1; } } else { if (x[2] <= 37.05457305908203) { if (x[9] <= 44.57396697998047) { if (x[9] <= 4.131480932235718) { votes[1] += 1; } else { if (x[8] <= 25.317584991455078) { votes[1] += 1; } else { if (x[2] <= 13.262037754058838) { votes[1] += 1; } else { if (x[8] <= 38.579071044921875) { if (x[2] <= 29.204511642456055) { votes[1] += 1; } else { votes[1] += 1; } } else { votes[1] += 1; } } } } } else { votes[2] += 1; } } else { if (x[4] <= 71.38525009155273) { if (x[4] <= 55.13950538635254) { votes[1] += 1; } else { if (x[0] <= 324.5) { votes[1] += 1; } else { votes[1] += 1; } } } else { votes[6] += 1; } } } } // tree #29 if (x[8] <= 70.22466659545898) { if (x[6] <= 61.386295318603516) { if (x[2] <= 97.32739639282227) { if (x[4] <= 34.804765701293945) { if (x[9] <= 60.06443405151367) { if (x[1] <= 180.08567810058594) { if (x[1] <= 130.2372283935547) { if (x[0] <= 273.0) { votes[0] += 1; } else { votes[0] += 1; } } else { if (x[9] <= 33.72498893737793) { if (x[5] <= 57.72869300842285) { votes[8] += 1; } else { votes[6] += 1; } } else { if (x[3] <= 44.11992645263672) { if (x[6] <= 28.329079627990723) { votes[8] += 1; } else { votes[2] += 1; } } else { if (x[2] <= 24.556913375854492) { votes[9] += 1; } else { votes[9] += 1; } } } } } else { if (x[2] <= 9.029667854309082) { if (x[2] <= 5.731051921844482) { votes[1] += 1; } else { votes[1] += 1; } } else { if (x[0] <= 257.5) { votes[1] += 1; } else { if (x[2] <= 64.25096893310547) { if (x[7] <= 59.83761215209961) { votes[8] += 1; } else { votes[9] += 1; } } else { if (x[7] <= 59.49838638305664) { votes[0] += 1; } else { votes[6] += 1; } } } } } } else { votes[5] += 1; } } else { if (x[7] <= 54.29375457763672) { if (x[3] <= 84.56653594970703) { if (x[7] <= 15.583884716033936) { if (x[8] <= 53.406829833984375) { if (x[4] <= 48.17306327819824) { votes[8] += 1; } else { if (x[4] <= 65.0445556640625) { votes[2] += 1; } else { votes[2] += 1; } } } else { votes[5] += 1; } } else { if (x[9] <= 56.69391059875488) { if (x[1] <= 229.94859313964844) { if (x[9] <= 13.277475357055664) { votes[4] += 1; } else { votes[2] += 1; } } else { if (x[0] <= 374.0) { votes[1] += 1; } else { votes[1] += 1; } } } else { if (x[4] <= 62.609453201293945) { if (x[7] <= 45.01192665100098) { votes[5] += 1; } else { votes[5] += 1; } } else { if (x[7] <= 44.45509719848633) { votes[2] += 1; } else { votes[5] += 1; } } } } } else { if (x[5] <= 38.582895278930664) { if (x[7] <= 33.44023513793945) { votes[5] += 1; } else { votes[9] += 1; } } else { if (x[0] <= 334.5) { if (x[9] <= 7.796650171279907) { votes[1] += 1; } else { votes[1] += 1; } } else { votes[1] += 1; } } } } else { if (x[2] <= 52.813764572143555) { if (x[6] <= 36.2838191986084) { if (x[1] <= 160.64881896972656) { if (x[8] <= 38.222028732299805) { if (x[6] <= 23.4283390045166) { votes[6] += 1; } else { votes[6] += 1; } } else { votes[3] += 1; } } else { if (x[8] <= 48.85621643066406) { if (x[1] <= 225.5465850830078) { votes[3] += 1; } else { votes[1] += 1; } } else { if (x[4] <= 64.26080894470215) { votes[3] += 1; } else { votes[3] += 1; } } } } else { if (x[1] <= 209.63160705566406) { if (x[8] <= 57.954816818237305) { if (x[3] <= 67.79148483276367) { votes[9] += 1; } else { votes[6] += 1; } } else { votes[3] += 1; } } else { votes[1] += 1; } } } else { if (x[6] <= 36.44607353210449) { if (x[3] <= 37.239707946777344) { if (x[5] <= 56.61822319030762) { votes[2] += 1; } else { votes[5] += 1; } } else { if (x[8] <= 49.21733856201172) { if (x[5] <= 33.94586944580078) { votes[4] += 1; } else { votes[6] += 1; } } else { votes[3] += 1; } } } else { if (x[3] <= 54.10499382019043) { if (x[2] <= 76.6228256225586) { votes[9] += 1; } else { votes[2] += 1; } } else { votes[4] += 1; } } } } } } else { if (x[7] <= 28.050355911254883) { votes[4] += 1; } else { if (x[1] <= 146.92086791992188) { if (x[3] <= 27.100967407226562) { votes[4] += 1; } else { votes[7] += 1; } } else { if (x[3] <= 58.367156982421875) { if (x[0] <= 336.0) { if (x[6] <= 50.268798828125) { votes[4] += 1; } else { votes[4] += 1; } } else { if (x[2] <= 113.67563247680664) { votes[4] += 1; } else { votes[4] += 1; } } } else { votes[4] += 1; } } } } } else { if (x[7] <= 70.218505859375) { if (x[1] <= 161.3249053955078) { if (x[6] <= 66.79325866699219) { votes[5] += 1; } else { votes[5] += 1; } } else { if (x[8] <= 33.7211799621582) { if (x[6] <= 77.21138763427734) { votes[2] += 1; } else { if (x[8] <= 27.11454677581787) { votes[7] += 1; } else { votes[7] += 1; } } } else { if (x[8] <= 65.8150634765625) { votes[7] += 1; } else { votes[7] += 1; } } } } else { votes[9] += 1; } } } else { if (x[2] <= 48.639801025390625) { if (x[7] <= 84.77000427246094) { if (x[6] <= 46.8425407409668) { if (x[0] <= 282.0) { votes[3] += 1; } else { if (x[5] <= 39.55646896362305) { votes[8] += 1; } else { if (x[7] <= 54.30975341796875) { votes[0] += 1; } else { if (x[1] <= 187.2248992919922) { votes[3] += 1; } else { votes[3] += 1; } } } } } else { if (x[1] <= 178.68180084228516) { votes[1] += 1; } else { if (x[8] <= 75.44015121459961) { votes[7] += 1; } else { votes[2] += 1; } } } } else { votes[9] += 1; } } else { if (x[1] <= 185.75945281982422) { if (x[1] <= 176.35381317138672) { votes[0] += 1; } else { votes[0] += 1; } } else { if (x[0] <= 343.5) { if (x[9] <= 57.49875259399414) { votes[5] += 1; } else { votes[5] += 1; } } else { if (x[7] <= 26.126614570617676) { votes[0] += 1; } else { votes[0] += 1; } } } } } // tree #30 if (x[3] <= 96.83993530273438) { if (x[6] <= 58.692644119262695) { if (x[2] <= 96.67149353027344) { if (x[4] <= 35.18651008605957) { if (x[3] <= 54.55710029602051) { if (x[5] <= 42.448692321777344) { if (x[6] <= 34.42605781555176) { if (x[0] <= 283.5) { votes[8] += 1; } else { if (x[3] <= 36.01647758483887) { votes[8] += 1; } else { if (x[2] <= 21.186240196228027) { votes[8] += 1; } else { votes[8] += 1; } } } } else { votes[8] += 1; } } else { if (x[6] <= 19.468505859375) { if (x[9] <= 34.90477180480957) { if (x[6] <= 14.386000156402588) { votes[8] += 1; } else { votes[8] += 1; } } else { votes[5] += 1; } } else { if (x[8] <= 43.55339431762695) { if (x[0] <= 301.5) { if (x[2] <= 58.895463943481445) { votes[2] += 1; } else { votes[6] += 1; } } else { if (x[6] <= 28.100187301635742) { votes[8] += 1; } else { votes[5] += 1; } } } else { if (x[6] <= 27.69352912902832) { votes[3] += 1; } else { if (x[6] <= 49.26280403137207) { votes[9] += 1; } else { votes[0] += 1; } } } } } } else { if (x[8] <= 60.27404022216797) { if (x[1] <= 250.26156616210938) { if (x[9] <= 21.085986137390137) { if (x[1] <= 137.51771545410156) { votes[0] += 1; } else { votes[0] += 1; } } else { if (x[5] <= 53.494211196899414) { if (x[3] <= 70.64413833618164) { votes[9] += 1; } else { votes[8] += 1; } } else { votes[5] += 1; } } } else { votes[1] += 1; } } else { if (x[2] <= 51.41071128845215) { votes[0] += 1; } else { votes[0] += 1; } } } } else { if (x[8] <= 51.11657524108887) { if (x[7] <= 62.93005561828613) { if (x[9] <= 68.14552307128906) { if (x[1] <= 239.45612335205078) { if (x[9] <= 39.40738868713379) { if (x[2] <= 52.47150230407715) { votes[3] += 1; } else { votes[4] += 1; } } else { if (x[2] <= 46.53968620300293) { votes[3] += 1; } else { votes[2] += 1; } } } else { if (x[8] <= 26.284259796142578) { votes[1] += 1; } else { votes[1] += 1; } } } else { if (x[5] <= 65.92157363891602) { votes[5] += 1; } else { votes[5] += 1; } } } else { if (x[3] <= 43.294761657714844) { if (x[6] <= 36.073747634887695) { if (x[6] <= 21.143576622009277) { votes[2] += 1; } else { votes[6] += 1; } } else { if (x[2] <= 54.14902114868164) { votes[9] += 1; } else { votes[2] += 1; } } } else { if (x[7] <= 76.81750106811523) { if (x[6] <= 37.58120536804199) { if (x[9] <= 36.77532768249512) { votes[6] += 1; } else { votes[3] += 1; } } else { votes[6] += 1; } } else { if (x[2] <= 37.8663272857666) { votes[9] += 1; } else { if (x[8] <= 32.90462875366211) { votes[6] += 1; } else { votes[6] += 1; } } } } } } else { if (x[9] <= 50.7152156829834) { if (x[7] <= 41.42866325378418) { if (x[6] <= 30.534842491149902) { if (x[7] <= 21.18726921081543) { votes[9] += 1; } else { if (x[1] <= 195.8604965209961) { votes[3] += 1; } else { votes[8] += 1; } } } else { if (x[9] <= 27.771347999572754) { votes[4] += 1; } else { if (x[8] <= 61.00762176513672) { votes[7] += 1; } else { votes[0] += 1; } } } } else { if (x[1] <= 137.9624481201172) { votes[0] += 1; } else { if (x[6] <= 36.971059799194336) { if (x[5] <= 80.45624160766602) { votes[3] += 1; } else { votes[3] += 1; } } else { if (x[1] <= 177.62140655517578) { votes[9] += 1; } else { votes[7] += 1; } } } } } else { if (x[2] <= 34.159576416015625) { votes[3] += 1; } else { if (x[1] <= 199.1025848388672) { if (x[3] <= 29.70690631866455) { votes[5] += 1; } else { if (x[6] <= 44.33009719848633) { votes[5] += 1; } else { votes[2] += 1; } } } else { if (x[8] <= 65.75661087036133) { votes[5] += 1; } else { votes[5] += 1; } } } } } } } else { if (x[2] <= 107.75065994262695) { if (x[0] <= 357.0) { if (x[1] <= 164.02106475830078) { votes[0] += 1; } else { if (x[6] <= 25.70099449157715) { votes[2] += 1; } else { if (x[6] <= 35.97086715698242) { votes[4] += 1; } else { votes[4] += 1; } } } } else { votes[0] += 1; } } else { if (x[1] <= 132.0068359375) { votes[7] += 1; } else { if (x[3] <= 51.60076713562012) { if (x[2] <= 109.96988296508789) { votes[4] += 1; } else { if (x[4] <= 75.30273818969727) { votes[4] += 1; } else { if (x[0] <= 346.5) { if (x[3] <= 44.56108283996582) { votes[4] += 1; } else { votes[4] += 1; } } else { votes[4] += 1; } } } } else { votes[4] += 1; } } } } } else { if (x[1] <= 161.49243927001953) { if (x[2] <= 56.990861892700195) { if (x[9] <= 66.18847274780273) { if (x[5] <= 52.86988830566406) { votes[1] += 1; } else { votes[9] += 1; } } else { votes[5] += 1; } } else { if (x[7] <= 64.11987495422363) { votes[7] += 1; } else { votes[4] += 1; } } } else { if (x[8] <= 80.18125534057617) { if (x[2] <= 40.152902603149414) { if (x[5] <= 57.070905685424805) { if (x[4] <= 57.77171325683594) { votes[7] += 1; } else { votes[7] += 1; } } else { votes[1] += 1; } } else { if (x[7] <= 71.53046417236328) { if (x[0] <= 355.0) { if (x[7] <= 30.441024780273438) { if (x[7] <= 22.596449851989746) { votes[7] += 1; } else { votes[7] += 1; } } else { votes[7] += 1; } } else { votes[7] += 1; } } else { votes[1] += 1; } } } else { votes[1] += 1; } } } } else { if (x[0] <= 364.5) { if (x[2] <= 59.409759521484375) { if (x[9] <= 39.40363121032715) { if (x[6] <= 7.951857089996338) { if (x[4] <= 16.479010581970215) { votes[1] += 1; } else { votes[1] += 1; } } else { votes[1] += 1; } } else { votes[1] += 1; } } else { votes[0] += 1; } } else { votes[0] += 1; } } // return argmax of votes uint8_t classIdx = 0; float maxVotes = votes[0]; for (uint8_t i = 1; i < 10; i++) { if (votes[i] > maxVotes) { classIdx = i; maxVotes = votes[i]; } } return classIdx; } protected: }; } } }
951,081
C++
.h
15,332
10.712953
93
0.100411
eloquentarduino/EloquentMicroML
34
11
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,700
PrincipalFFT.h
eloquentarduino_EloquentMicroML/examples/PrincipalFFTExample/PrincipalFFT.h
void principalFFT(float *features, float *fft) { // apply principal FFT (naive implementation for the top N frequencies only) const int topFrequencies[] = { 0, 8, 17, 16, 1, 9, 2, 7, 15, 6 }; const float cosLUT[10][64] = { { 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0}, { 1.0, 0.7071067811865476, 6.123233995736766e-17, -0.7071067811865475, -1.0, -0.7071067811865477, -1.8369701987210297e-16, 0.7071067811865474, 1.0, 0.7071067811865477, 3.061616997868383e-16, -0.7071067811865467, -1.0, -0.7071067811865471, -4.286263797015736e-16, 0.7071067811865466, 1.0, 0.7071067811865472, 5.51091059616309e-16, -0.7071067811865465, -1.0, -0.7071067811865474, -2.4499125789312946e-15, 0.7071067811865464, 1.0, 0.7071067811865475, -9.803364199544708e-16, -0.7071067811865464, -1.0, -0.7071067811865476, -2.6948419387607653e-15, 0.7071067811865462, 1.0, 0.7071067811865476, -7.354070601250002e-16, -0.7071067811865461, -1.0, -0.7071067811865477, -2.939771298590236e-15, 0.707106781186546, 1.0, 0.7071067811865503, -4.904777002955296e-16, -0.707106781186546, -1.0, -0.7071067811865479, -3.1847006584197066e-15, 0.7071067811865483, 1.0, 0.7071067811865505, -2.45548340466059e-16, -0.7071067811865458, -1.0, -0.707106781186548, -3.4296300182491773e-15, 0.7071067811865482, 1.0, 0.7071067811865507, -6.189806365883577e-19, -0.7071067811865456, -1.0, -0.7071067811865482, -3.674559378078648e-15, 0.707106781186548}, { 1.0, -0.09801714032956065, -0.9807852804032304, 0.29028467725446294, 0.9238795325112867, -0.4713967368259975, -0.8314696123025446, 0.634393284163646, 0.7071067811865472, -0.773010453362737, -0.5555702330196026, 0.8819212643483555, 0.3826834323650876, -0.9569403357322089, -0.19509032201612678, 0.9951847266721968, -7.354070601250002e-16, -0.9951847266721967, 0.19509032201612822, 0.9569403357322085, -0.382683432365089, -0.8819212643483532, 0.5555702330196038, 0.7730104533627371, -0.7071067811865508, -0.6343932841636436, 0.8314696123025455, 0.4713967368259993, -0.923879532511288, -0.2902846772544615, 0.9807852804032302, 0.09801714032955697, -1.0, 0.0980171403295599, 0.9807852804032297, -0.29028467725446433, -0.9238795325112868, 0.4713967368260019, 0.8314696123025438, -0.6343932841636514, -0.7071067811865487, 0.773010453362739, 0.5555702330195954, -0.8819212643483545, -0.3826834323650863, 0.9569403357322114, 0.1950903220161288, -0.9951847266721973, 9.311648537976002e-15, 0.9951847266721969, -0.19509032201613313, -0.9569403357322102, 0.38268343236509034, 0.8819212643483524, -0.5555702330195991, -0.7730104533627362, 0.7071067811865519, 0.6343932841636479, -0.8314696123025462, -0.47139673682599176, 0.9238795325112857, 0.2902846772544601, -0.9807852804032319, -0.09801714032956259}, { 1.0, 6.123233995736766e-17, -1.0, -1.8369701987210297e-16, 1.0, 3.061616997868383e-16, -1.0, -4.286263797015736e-16, 1.0, 5.51091059616309e-16, -1.0, -2.4499125789312946e-15, 1.0, -9.803364199544708e-16, -1.0, -2.6948419387607653e-15, 1.0, -7.354070601250002e-16, -1.0, -2.939771298590236e-15, 1.0, -4.904777002955296e-16, -1.0, -3.1847006584197066e-15, 1.0, -2.45548340466059e-16, -1.0, -3.4296300182491773e-15, 1.0, -6.189806365883577e-19, -1.0, -3.674559378078648e-15, 1.0, 2.443103791928823e-16, -1.0, -3.919488737908119e-15, 1.0, 4.892397390223529e-16, -1.0, -4.164418097737589e-15, 1.0, 7.839596456452825e-15, -1.0, -4.40934745756706e-15, 1.0, 9.790984586812941e-16, -1.0, 2.4511505402044715e-15, 1.0, 8.329455176111767e-15, -1.0, -4.899206177226001e-15, 1.0, 1.4689571783402355e-15, -1.0, 1.96129182054553e-15, 1.0, 8.819313895770708e-15, -1.0, -5.389064896884942e-15, 1.0, 1.9588158979991767e-15, -1.0, 1.471433100886589e-15}, { 1.0, 0.9951847266721969, 0.9807852804032304, 0.9569403357322088, 0.9238795325112867, 0.881921264348355, 0.8314696123025452, 0.773010453362737, 0.7071067811865476, 0.6343932841636455, 0.5555702330196023, 0.4713967368259978, 0.38268343236508984, 0.29028467725446233, 0.19509032201612833, 0.09801714032956077, 6.123233995736766e-17, -0.09801714032956065, -0.1950903220161282, -0.29028467725446216, -0.3826834323650897, -0.4713967368259977, -0.555570233019602, -0.6343932841636454, -0.7071067811865475, -0.773010453362737, -0.8314696123025453, -0.8819212643483549, -0.9238795325112867, -0.9569403357322088, -0.9807852804032304, -0.9951847266721968, -1.0, -0.9951847266721969, -0.9807852804032304, -0.9569403357322089, -0.9238795325112868, -0.881921264348355, -0.8314696123025455, -0.7730104533627371, -0.7071067811865477, -0.6343932841636459, -0.5555702330196022, -0.47139673682599786, -0.38268343236509034, -0.29028467725446244, -0.19509032201612866, -0.09801714032956045, -1.8369701987210297e-16, 0.09801714032956009, 0.1950903220161283, 0.29028467725446205, 0.38268343236509, 0.4713967368259976, 0.5555702330196018, 0.6343932841636456, 0.7071067811865474, 0.7730104533627367, 0.8314696123025452, 0.8819212643483548, 0.9238795325112865, 0.9569403357322088, 0.9807852804032303, 0.9951847266721969}, { 1.0, 0.6343932841636455, -0.1950903220161282, -0.8819212643483549, -0.9238795325112868, -0.29028467725446244, 0.5555702330196018, 0.9951847266721969, 0.7071067811865477, -0.09801714032955997, -0.8314696123025451, -0.9569403357322087, -0.38268343236509056, 0.47139673682599736, 0.9807852804032304, 0.7730104533627377, 5.51091059616309e-16, -0.773010453362737, -0.9807852804032307, -0.4713967368259983, 0.38268343236508956, 0.9569403357322089, 0.8314696123025448, 0.09801714032956282, -0.7071067811865464, -0.995184726672197, -0.5555702330196027, 0.2902846772544622, 0.9238795325112868, 0.8819212643483563, 0.19509032201613036, -0.6343932841636443, -1.0, -0.6343932841636459, 0.19509032201612822, 0.8819212643483553, 0.9238795325112877, 0.29028467725446433, -0.555570233019601, -0.9951847266721968, -0.7071067811865479, 0.09801714032956063, 0.8314696123025456, 0.9569403357322086, 0.3826834323650883, -0.47139673682599326, -0.9807852804032295, -0.7730104533627394, -3.4296300182491773e-15, 0.7730104533627351, 0.9807852804032309, 0.4713967368259993, -0.3826834323650885, -0.9569403357322086, -0.8314696123025455, -0.09801714032956038, 0.707106781186548, 0.9951847266721968, 0.5555702330196066, -0.2902846772544578, -0.9238795325112851, -0.8819212643483568, -0.19509032201613144, 0.6343932841636434}, { 1.0, 0.9807852804032304, 0.9238795325112867, 0.8314696123025452, 0.7071067811865476, 0.5555702330196023, 0.38268343236508984, 0.19509032201612833, 6.123233995736766e-17, -0.1950903220161282, -0.3826834323650897, -0.555570233019602, -0.7071067811865475, -0.8314696123025453, -0.9238795325112867, -0.9807852804032304, -1.0, -0.9807852804032304, -0.9238795325112868, -0.8314696123025455, -0.7071067811865477, -0.5555702330196022, -0.38268343236509034, -0.19509032201612866, -1.8369701987210297e-16, 0.1950903220161283, 0.38268343236509, 0.5555702330196018, 0.7071067811865474, 0.8314696123025452, 0.9238795325112865, 0.9807852804032303, 1.0, 0.9807852804032304, 0.9238795325112867, 0.8314696123025455, 0.7071067811865477, 0.5555702330196023, 0.38268343236509045, 0.19509032201612878, 3.061616997868383e-16, -0.1950903220161273, -0.3826834323650899, -0.5555702330196017, -0.7071067811865467, -0.8314696123025451, -0.9238795325112864, -0.9807852804032305, -1.0, -0.9807852804032307, -0.9238795325112867, -0.8314696123025456, -0.7071067811865471, -0.5555702330196024, -0.38268343236509056, -0.19509032201612803, -4.286263797015736e-16, 0.1950903220161272, 0.3826834323650898, 0.5555702330196016, 0.7071067811865466, 0.8314696123025451, 0.9238795325112864, 0.9807852804032304}, { 1.0, 0.773010453362737, 0.19509032201612833, -0.4713967368259977, -0.9238795325112867, -0.9569403357322089, -0.5555702330196022, 0.09801714032956009, 0.7071067811865474, 0.9951847266721969, 0.8314696123025455, 0.29028467725446255, -0.3826834323650899, -0.8819212643483548, -0.9807852804032307, -0.6343932841636454, -4.286263797015736e-16, 0.6343932841636447, 0.9807852804032304, 0.8819212643483553, 0.38268343236509067, -0.29028467725446255, -0.831469612302545, -0.9951847266721969, -0.7071067811865474, -0.0980171403295627, 0.5555702330196015, 0.9569403357322089, 0.9238795325112875, 0.4713967368259984, -0.19509032201612858, -0.7730104533627357, -1.0, -0.7730104533627368, -0.19509032201613025, 0.4713967368259969, 0.9238795325112868, 0.9569403357322095, 0.5555702330196028, -0.09801714032956099, -0.7071067811865461, -0.9951847266721968, -0.831469612302545, -0.2902846772544642, 0.3826834323650891, 0.8819212643483553, 0.9807852804032309, 0.634393284163646, -4.904777002955296e-16, -0.6343932841636468, -0.9807852804032297, -0.8819212643483565, -0.38268343236509145, 0.2902846772544618, 0.8314696123025456, 0.9951847266721967, 0.7071067811865505, 0.09801714032956356, -0.5555702330196007, -0.9569403357322087, -0.9238795325112865, -0.47139673682599603, 0.19509032201612425, 0.7730104533627351}, { 1.0, 0.09801714032956077, -0.9807852804032304, -0.2902846772544633, 0.9238795325112865, 0.471396736825998, -0.8314696123025442, -0.6343932841636467, 0.7071067811865466, 0.7730104533627377, -0.5555702330196015, -0.8819212643483562, 0.3826834323650863, 0.9569403357322094, -0.19509032201612508, -0.995184726672197, -2.6948419387607653e-15, 0.9951847266721965, 0.19509032201613036, -0.9569403357322078, -0.3826834323650912, 0.8819212643483536, 0.5555702330196061, -0.7730104533627331, -0.7071067811865529, 0.6343932841636439, 0.8314696123025471, -0.47139673682599326, -0.9238795325112893, 0.2902846772544547, 0.9807852804032309, -0.09801714032955673, -1.0, -0.09801714032956746, 0.9807852804032288, 0.29028467725446505, -0.9238795325112851, -0.47139673682600275, 0.8314696123025412, 0.6343932841636523, -0.7071067811865452, -0.7730104533627399, 0.5555702330195971, 0.8819212643483586, -0.3826834323650813, -0.9569403357322119, 0.1950903220161163, 0.9951847266721983, 1.5189953173883297e-14, -0.9951847266721966, -0.19509032201613216, 0.9569403357322073, 0.3826834323650962, -0.881921264348351, -0.5555702330196105, 0.7730104533627297, 0.7071067811865567, -0.6343932841636343, -0.8314696123025541, 0.47139673682599476, 0.9238795325112886, -0.29028467725445634, -0.980785280403232, 0.09801714032955137}, { 1.0, 0.8314696123025452, 0.38268343236508984, -0.1950903220161282, -0.7071067811865475, -0.9807852804032304, -0.9238795325112868, -0.5555702330196022, -1.8369701987210297e-16, 0.5555702330196018, 0.9238795325112865, 0.9807852804032304, 0.7071067811865477, 0.19509032201612878, -0.3826834323650899, -0.8314696123025451, -1.0, -0.8314696123025456, -0.38268343236509056, 0.1950903220161272, 0.7071067811865466, 0.9807852804032304, 0.9238795325112867, 0.5555702330196025, 5.51091059616309e-16, -0.5555702330196015, -0.9238795325112864, -0.9807852804032307, -0.7071067811865474, -0.19509032201613, 0.38268343236508956, 0.831469612302544, 1.0, 0.8314696123025448, 0.3826834323650909, -0.19509032201612858, -0.7071067811865464, -0.9807852804032304, -0.9238795325112876, -0.5555702330196027, -2.6948419387607653e-15, 0.5555702330196013, 0.9238795325112868, 0.9807852804032308, 0.7071067811865476, 0.19509032201613036, -0.3826834323650892, -0.8314696123025438, -1.0, -0.831469612302545, -0.3826834323650912, 0.19509032201612822, 0.707106781186546, 0.9807852804032303, 0.9238795325112877, 0.5555702330196061, -4.904777002955296e-16, -0.555570233019601, -0.9238795325112854, -0.9807852804032301, -0.7071067811865479, -0.19509032201613072, 0.38268343236508556, 0.8314696123025456}}; const bool sinLUT[10][64] = { { false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false}, { false, true, true, true, true, false, false, false, false, true, true, true, true, false, false, false, false, true, true, true, true, false, false, false, false, true, true, true, true, false, false, false, false, true, true, true, true, false, false, false, false, true, true, true, true, false, false, false, false, true, true, true, false, false, false, false, false, true, true, true, true, false, false, false}, { false, true, false, false, true, true, false, false, true, true, false, false, true, true, false, false, true, false, false, true, true, false, false, true, true, false, false, true, true, false, false, true, false, false, true, true, false, false, true, true, false, false, true, true, false, false, true, true, false, true, true, false, false, true, true, false, false, true, true, false, false, true, true, false}, { false, true, true, false, false, true, true, false, false, true, true, false, false, true, true, false, false, true, true, false, false, true, true, false, false, true, false, false, false, true, true, false, false, true, false, false, false, true, true, false, false, true, false, false, false, true, true, false, false, true, false, false, true, true, true, false, false, true, false, false, false, true, true, false}, { false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false}, { false, true, true, true, false, false, false, false, true, true, true, false, false, false, false, true, true, true, false, false, false, false, true, true, true, false, false, false, false, true, true, true, true, false, false, false, true, true, true, true, false, false, false, true, true, true, true, false, false, false, true, true, true, true, false, false, false, true, true, true, true, false, false, false}, { false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false}, { false, true, true, true, true, false, false, false, false, false, true, true, true, true, false, false, false, false, false, true, true, true, true, false, false, false, false, false, true, true, true, true, true, false, false, false, false, true, true, true, true, true, false, false, false, false, true, true, true, true, true, false, false, false, false, true, true, true, true, true, false, false, false, false}, { false, true, true, false, false, true, true, false, false, true, true, false, false, true, true, false, false, false, true, true, false, false, true, true, false, false, true, true, false, false, true, true, true, false, false, true, true, false, false, true, true, false, false, true, true, false, false, true, true, true, false, false, true, true, false, false, true, true, false, false, true, true, false, false}, { false, true, true, true, true, true, false, false, false, false, false, true, true, true, true, true, true, false, false, false, false, false, true, true, true, true, true, false, false, false, false, false, false, true, true, true, true, true, false, false, false, false, false, true, true, true, true, true, true, false, false, false, false, false, true, true, true, true, true, false, false, false, false, false}}; for (int i = 0; i < 10; i++) { const int k = topFrequencies[i]; const float harmonic = 0.09817477042468103 * k; float re = 0; float im = 0; // optimized case if (k == 0) { for (int n = 0; n < 64; n++) { re += features[n]; } } else { for (int n = 0; n < 64; n++) { const float cos_n = cosLUT[i][n]; const float sin_n = sinLUT[i][n] ? sqrt(1 - cos_n * cos_n) : -sqrt(1 - cos_n * cos_n); re += features[n] * cos_n; im -= features[n] * sin_n; } } fft[i] = sqrt(re * re + im * im); } }
18,066
C++
.h
47
374.978723
1,372
0.691885
eloquentarduino/EloquentMicroML
34
11
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,702
DataGathering.h
eloquentarduino_EloquentMicroML/examples/TheUltimateGuideToWifiIndoorPositioning/DataGathering.h
#include <WiFi.h> #define print(string) Serial.print(string); #define quote(string) print('"'); print(string); print('"'); String location = ""; /** * */ void setup() { Serial.begin(115200); delay(3000); WiFi.disconnect(); } /** * */ void loop() { // if location is set, scan networks if (location != "") { int numNetworks = WiFi.scanNetworks(); // print location print('{'); quote("__location"); print(": "); quote(location); print(", "); // print each network SSID and RSSI for (int i = 0; i < numNetworks; i++) { quote(WiFi.SSID(i)); print(": "); print(WiFi.RSSI(i)); print(i == numNetworks - 1 ? "}\n" : ", "); } delay(1000); } // else wait for user to enter the location else { String input; Serial.println("Enter 'scan {location}' to start the scanning"); while (!Serial.available()) delay(200); input = Serial.readStringUntil('\n'); if (input.indexOf("scan ") == 0) { input.replace("scan ", ""); location = input; } else { location = ""; } } }
1,132
C++
.h
50
18.02
68
0.567079
eloquentarduino/EloquentMicroML
34
11
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,703
WifiIndoorPositioning.h
eloquentarduino_EloquentMicroML/examples/TheUltimateGuideToWifiIndoorPositioning/WifiIndoorPositioning.h
#include <WiFi.h> #include "Converter.h" #include "Classifier.h" Eloquent::Projects::WifiIndoorPositioning positioning; Eloquent::ML::Port::DecisionTree classifier; void setup() { Serial.begin(115200); WiFi.disconnect(); } void loop() { float *features = positioning.getFeatures(); for (int i = 0; i < 9; i++) { Serial.print(features[i]); Serial.print(", "); } Serial.print("\nYou're in "); Serial.println(classifier.predictLabel(features)); }
476
C++
.h
18
23.666667
54
0.709821
eloquentarduino/EloquentMicroML
34
11
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,705
IrisSEFR.h
eloquentarduino_EloquentMicroML/examples/OffboardSEFRExample/IrisSEFR.h
#pragma once namespace Eloquent { namespace ML { namespace Port { class SEFR { public: /** * Predict class for features vector */ int predict(float *x) { return dot(x, -0.033926433731 , -0.22068374821 , 0.391616088384 , 0.619492582103 ) <= 0.08944621779720162 ? 0 : 1; } protected: /** * Compute dot product between features vector and classifier weights */ float dot(float *x, ...) { va_list w; va_start(w, 4); float kernel = 0.0; for (uint16_t i = 0; i < 4; i++) { kernel += x[i] * va_arg(w, double); } return kernel; } }; } } }
934
C++
.h
29
17.482759
139
0.386489
eloquentarduino/EloquentMicroML
34
11
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,706
IrisTest.h
eloquentarduino_EloquentMicroML/examples/OffboardSEFRExample/IrisTest.h
#pragma once namespace Eloquent { namespace ML { namespace Test { /** * A tailor made test set */ class IrisTestSet { public: IrisTestSet() : _x{ { 0.726348457434 , 0.380468239608 , 0.541879007927 , 0.184469449507 }, { 0.759117071609 , 0.393114197798 , 0.488003831749 , 0.176223605909 }, { 0.769230769231 , 0.307692307692 , 0.538461538462 , 0.153846153846 }, { 0.765783108489 , 0.603790527847 , 0.220898973603 , 0.01472659824 }, { 0.825122952481 , 0.528078689588 , 0.198029508595 , 0.033004918099 }, { 0.786090375542 , 0.571702091303 , 0.232253974592 , 0.035731380706 }, { 0.803735188074 , 0.55070744368 , 0.223259774465 , 0.029767969929 }, { 0.755192851801 , 0.339289542114 , 0.536296373018 , 0.164172359087 }, { 0.753849162023 , 0.31524601321 , 0.548253936017 , 0.178182529206 }, { 0.770118538251 , 0.353497033951 , 0.504995762788 , 0.164123622906 }, { 0.817689418059 , 0.517313713466 , 0.250313087161 , 0.033375078288 }, { 0.743148202166 , 0.365055257204 , 0.534545198049 , 0.169489940845 }, { 0.80218491852 , 0.545485744593 , 0.240655475556 , 0.032087396741 }, { 0.806423656152 , 0.531506500645 , 0.256589345139 , 0.036655620734 }, { 0.803274123688 , 0.551266555472 , 0.220506622189 , 0.04725141904 }, { 0.812283631381 , 0.536107196711 , 0.227439416787 , 0.032491345255 }, { 0.803772773015 , 0.551608765795 , 0.220643506318 , 0.031520500903 }, { 0.802512599037 , 0.559892510956 , 0.205293920684 , 0.018663083699 }, { 0.759165471524 , 0.371836149318 , 0.511274705312 , 0.154931728882 }, { 0.822105846519 , 0.513816154074 , 0.239780871901 , 0.051381615407 }, { 0.773811110254 , 0.597327874582 , 0.203634502699 , 0.054302534053 }, { 0.761851879395 , 0.340112446158 , 0.530575416007 , 0.14964947631 }, { 0.778674472842 , 0.594624142898 , 0.198208047633 , 0.028315435376 }, { 0.775770745958 , 0.607124931619 , 0.168645814339 , 0.033729162868 }, { 0.805977915082 , 0.521515121524 , 0.268659305027 , 0.079017442655 }, { 0.764672694551 , 0.314865227168 , 0.53976896086 , 0.157432613584 }, { 0.807795684898 , 0.538530456599 , 0.237586966146 , 0.031678262153 }, { 0.798370248271 , 0.557352814831 , 0.22595384385 , 0.03012717918 }, { 0.772429247764 , 0.337060035388 , 0.519634221223 , 0.140441681412 }, { 0.802124132514 , 0.546902817623 , 0.23699122097 , 0.036460187842 }, }, _y{ 1 , 1 , 1 , 0 , 0 , 0 , 0 , 1 , 1 , 1 , 0 , 1 , 0 , 0 , 0 , 0 , 0 , 0 , 1 , 0 , 0 , 1 , 0 , 0 , 0 , 1 , 0 , 0 , 1 , 0 }, _tp(0), _tn(0), _fp(0), _fn(0) {} template<class Classifier> void test(Classifier clf) { for (uint16_t i = 0; i < 30; i++) { int predicted = clf.predict(_x[i]); int actual = _y[i]; if (predicted > 0 && predicted == actual) _tp++; else if (predicted > 0 && predicted != actual) _fp++; else if (predicted <= 0 && predicted == actual) _tn++; else _fn++; } } String dump() { return String("Support:\t") + support() + "\nTP:\t" + _tp + "\nTN:\t" + _tn + "\nFP:\t" + _fp + "\nFN:\t" + _fn + "\nAccuracy:\t" + accuracy() + "\nPrecision:\t" + precision() + "\nRecall:\t" + recall() + "\nSpecificity:\t" + specificity() ; } float accuracy() { return (1.0f * _tp + _tn) / support(); } float precision() { return (1.0f * _tp) / (_tp + _fp); } float recall() { return (1.0f * _tp) / (_tp + _fn); } float specificity() { return (1.0f * _tn) / (_tn + _fp); } uint16_t support() { return _tp + _tn + _fp + _fn; } protected: float _x[30][4]; int _y[30]; uint16_t _tp, _fp, _tn, _fn; }; } } }
6,065
C++
.h
103
35.019417
211
0.372019
eloquentarduino/EloquentMicroML
34
11
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,707
pca.h
eloquentarduino_EloquentMicroML/examples/PCAExample/pca.h
#pragma once namespace Eloquent { namespace ML { namespace Port { class PCA { public: /** * Apply dimensionality reduction * @warn Will override the source vector if no dest provided! */ void transform(float *x, float *dest = NULL) { static float u[2] = { 0 }; u[0] = dot(x, 0.361386591785 , -0.084522514065 , 0.85667060595 , 0.358289197152 ); u[1] = dot(x, 0.656588771287 , 0.730161434785 , -0.173372662796 , -0.075481019917 ); memcpy(dest != NULL ? dest : x, u, sizeof(float) * 2); } protected: /** * Compute dot product with varargs */ float dot(float *x, ...) { va_list w; va_start(w, 4); static float mean[] = { 5.843333333333 , 3.057333333333 , 3.758 , 1.199333333333 }; float dot = 0.0; for (uint16_t i = 0; i < 4; i++) { dot += (x[i] - mean[i]) * va_arg(w, double); } return dot; } }; } } }
1,305
C++
.h
34
22.852941
109
0.405043
eloquentarduino/EloquentMicroML
34
11
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,710
digits.h
eloquentarduino_EloquentMicroML/examples/IrisClassificationTrainingExample/digits.h
#define POSITIVE_SAMPLES 45 #define NEGATIVE_SAMPLES 45 #define FEATURES_DIM 64 float X_positive[POSITIVE_SAMPLES][FEATURES_DIM] = { {0.0000000, 0.0000000, 0.0000000, 12.0000000, 13.0000000, 5.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 11.0000000, 16.0000000, 9.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 3.0000000, 15.0000000, 16.0000000, 6.0000000, 0.0000000, 0.0000000, 0.0000000, 7.0000000, 15.0000000, 16.0000000, 16.0000000, 2.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 1.0000000, 16.0000000, 16.0000000, 3.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 1.0000000, 16.0000000, 16.0000000, 6.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 1.0000000, 16.0000000, 16.0000000, 6.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 11.0000000, 16.0000000, 10.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 0.0000000, 0.0000000, 14.0000000, 13.0000000, 1.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 5.0000000, 16.0000000, 16.0000000, 2.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 14.0000000, 16.0000000, 12.0000000, 0.0000000, 0.0000000, 0.0000000, 1.0000000, 10.0000000, 16.0000000, 16.0000000, 12.0000000, 0.0000000, 0.0000000, 0.0000000, 3.0000000, 12.0000000, 14.0000000, 16.0000000, 9.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 5.0000000, 16.0000000, 15.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 4.0000000, 16.0000000, 14.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 1.0000000, 13.0000000, 16.0000000, 1.0000000, 0.0000000} , {0.0000000, 0.0000000, 0.0000000, 2.0000000, 16.0000000, 16.0000000, 2.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 4.0000000, 16.0000000, 16.0000000, 2.0000000, 0.0000000, 0.0000000, 1.0000000, 4.0000000, 12.0000000, 16.0000000, 12.0000000, 0.0000000, 0.0000000, 0.0000000, 7.0000000, 16.0000000, 16.0000000, 16.0000000, 12.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 3.0000000, 10.0000000, 16.0000000, 14.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 8.0000000, 16.0000000, 12.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 6.0000000, 16.0000000, 16.0000000, 2.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 2.0000000, 12.0000000, 15.0000000, 4.0000000, 0.0000000} , {0.0000000, 0.0000000, 0.0000000, 0.0000000, 12.0000000, 5.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 2.0000000, 16.0000000, 12.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 1.0000000, 12.0000000, 16.0000000, 11.0000000, 0.0000000, 0.0000000, 0.0000000, 2.0000000, 12.0000000, 16.0000000, 16.0000000, 10.0000000, 0.0000000, 0.0000000, 0.0000000, 6.0000000, 11.0000000, 5.0000000, 15.0000000, 6.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 1.0000000, 16.0000000, 9.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 2.0000000, 16.0000000, 11.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 3.0000000, 16.0000000, 8.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 0.0000000, 1.0000000, 11.0000000, 9.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 7.0000000, 16.0000000, 13.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 4.0000000, 14.0000000, 16.0000000, 9.0000000, 0.0000000, 0.0000000, 0.0000000, 10.0000000, 16.0000000, 11.0000000, 16.0000000, 8.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 3.0000000, 16.0000000, 6.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 3.0000000, 16.0000000, 8.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 5.0000000, 16.0000000, 10.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 2.0000000, 14.0000000, 6.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 0.0000000, 0.0000000, 12.0000000, 13.0000000, 1.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 8.0000000, 16.0000000, 15.0000000, 2.0000000, 0.0000000, 0.0000000, 0.0000000, 10.0000000, 16.0000000, 16.0000000, 12.0000000, 0.0000000, 0.0000000, 0.0000000, 4.0000000, 16.0000000, 16.0000000, 16.0000000, 13.0000000, 0.0000000, 0.0000000, 0.0000000, 4.0000000, 7.0000000, 4.0000000, 16.0000000, 6.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 1.0000000, 16.0000000, 8.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 1.0000000, 16.0000000, 8.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 12.0000000, 12.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 0.0000000, 0.0000000, 14.0000000, 7.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 13.0000000, 16.0000000, 9.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 10.0000000, 16.0000000, 16.0000000, 7.0000000, 0.0000000, 0.0000000, 0.0000000, 7.0000000, 16.0000000, 8.0000000, 16.0000000, 2.0000000, 0.0000000, 0.0000000, 0.0000000, 1.0000000, 5.0000000, 6.0000000, 16.0000000, 6.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 4.0000000, 16.0000000, 6.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 2.0000000, 16.0000000, 6.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 12.0000000, 11.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 0.0000000, 1.0000000, 14.0000000, 13.0000000, 1.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 1.0000000, 16.0000000, 16.0000000, 3.0000000, 0.0000000, 0.0000000, 5.0000000, 11.0000000, 15.0000000, 16.0000000, 16.0000000, 0.0000000, 0.0000000, 0.0000000, 4.0000000, 15.0000000, 16.0000000, 16.0000000, 15.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 8.0000000, 16.0000000, 7.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 10.0000000, 16.0000000, 3.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 8.0000000, 16.0000000, 6.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 2.0000000, 13.0000000, 15.0000000, 2.0000000, 0.0000000} , {0.0000000, 0.0000000, 0.0000000, 1.0000000, 16.0000000, 5.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 5.0000000, 16.0000000, 11.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 12.0000000, 16.0000000, 11.0000000, 0.0000000, 0.0000000, 0.0000000, 7.0000000, 12.0000000, 16.0000000, 16.0000000, 7.0000000, 0.0000000, 0.0000000, 0.0000000, 4.0000000, 8.0000000, 12.0000000, 16.0000000, 4.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 9.0000000, 16.0000000, 2.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 10.0000000, 16.0000000, 2.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 3.0000000, 13.0000000, 5.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 0.0000000, 1.0000000, 12.0000000, 8.0000000, 1.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 4.0000000, 16.0000000, 16.0000000, 1.0000000, 0.0000000, 0.0000000, 0.0000000, 1.0000000, 13.0000000, 16.0000000, 11.0000000, 0.0000000, 0.0000000, 0.0000000, 1.0000000, 11.0000000, 16.0000000, 16.0000000, 12.0000000, 0.0000000, 0.0000000, 0.0000000, 2.0000000, 12.0000000, 8.0000000, 16.0000000, 10.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 15.0000000, 8.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 4.0000000, 16.0000000, 4.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 3.0000000, 13.0000000, 4.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 0.0000000, 11.0000000, 16.0000000, 5.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 10.0000000, 16.0000000, 5.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 4.0000000, 16.0000000, 16.0000000, 5.0000000, 0.0000000, 0.0000000, 0.0000000, 11.0000000, 16.0000000, 16.0000000, 16.0000000, 3.0000000, 0.0000000, 0.0000000, 0.0000000, 5.0000000, 8.0000000, 14.0000000, 16.0000000, 2.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 14.0000000, 16.0000000, 2.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 11.0000000, 16.0000000, 2.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 8.0000000, 16.0000000, 8.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 1.0000000, 15.0000000, 13.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 1.0000000, 16.0000000, 16.0000000, 5.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 7.0000000, 16.0000000, 16.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 13.0000000, 16.0000000, 13.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 7.0000000, 16.0000000, 16.0000000, 13.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 1.0000000, 11.0000000, 16.0000000, 13.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 2.0000000, 16.0000000, 16.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 1.0000000, 14.0000000, 16.0000000, 3.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 0.0000000, 0.0000000, 6.0000000, 10.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 14.0000000, 15.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 10.0000000, 16.0000000, 16.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 7.0000000, 16.0000000, 16.0000000, 15.0000000, 0.0000000, 0.0000000, 0.0000000, 3.0000000, 15.0000000, 7.0000000, 15.0000000, 10.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 13.0000000, 11.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 15.0000000, 9.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 8.0000000, 15.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 0.0000000, 0.0000000, 5.0000000, 15.0000000, 8.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 2.0000000, 15.0000000, 16.0000000, 9.0000000, 0.0000000, 0.0000000, 0.0000000, 3.0000000, 15.0000000, 16.0000000, 16.0000000, 10.0000000, 0.0000000, 0.0000000, 7.0000000, 16.0000000, 10.0000000, 8.0000000, 16.0000000, 7.0000000, 0.0000000, 0.0000000, 0.0000000, 1.0000000, 0.0000000, 8.0000000, 16.0000000, 4.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 11.0000000, 16.0000000, 1.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 9.0000000, 16.0000000, 1.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 8.0000000, 14.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 0.0000000, 0.0000000, 7.0000000, 13.0000000, 5.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 15.0000000, 16.0000000, 8.0000000, 0.0000000, 0.0000000, 0.0000000, 1.0000000, 13.0000000, 16.0000000, 16.0000000, 3.0000000, 0.0000000, 0.0000000, 0.0000000, 12.0000000, 16.0000000, 16.0000000, 16.0000000, 0.0000000, 0.0000000, 0.0000000, 8.0000000, 16.0000000, 3.0000000, 16.0000000, 13.0000000, 0.0000000, 0.0000000, 0.0000000, 2.0000000, 3.0000000, 0.0000000, 16.0000000, 12.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 16.0000000, 13.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 8.0000000, 12.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 0.0000000, 0.0000000, 5.0000000, 14.0000000, 3.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 9.0000000, 16.0000000, 8.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 9.0000000, 16.0000000, 16.0000000, 5.0000000, 0.0000000, 0.0000000, 1.0000000, 13.0000000, 15.0000000, 12.0000000, 16.0000000, 1.0000000, 0.0000000, 0.0000000, 4.0000000, 12.0000000, 3.0000000, 10.0000000, 15.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 11.0000000, 12.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 8.0000000, 12.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 5.0000000, 13.0000000, 4.0000000, 0.0000000} , {0.0000000, 0.0000000, 0.0000000, 0.0000000, 14.0000000, 16.0000000, 7.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 5.0000000, 16.0000000, 16.0000000, 8.0000000, 0.0000000, 0.0000000, 0.0000000, 1.0000000, 12.0000000, 16.0000000, 16.0000000, 8.0000000, 0.0000000, 0.0000000, 5.0000000, 14.0000000, 16.0000000, 16.0000000, 16.0000000, 5.0000000, 0.0000000, 0.0000000, 1.0000000, 4.0000000, 7.0000000, 16.0000000, 16.0000000, 8.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 2.0000000, 16.0000000, 16.0000000, 7.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 2.0000000, 16.0000000, 16.0000000, 3.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 16.0000000, 16.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 0.0000000, 0.0000000, 12.0000000, 11.0000000, 1.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 1.0000000, 16.0000000, 16.0000000, 7.0000000, 0.0000000, 0.0000000, 0.0000000, 1.0000000, 14.0000000, 16.0000000, 16.0000000, 7.0000000, 0.0000000, 0.0000000, 1.0000000, 14.0000000, 16.0000000, 14.0000000, 16.0000000, 8.0000000, 0.0000000, 0.0000000, 5.0000000, 12.0000000, 3.0000000, 8.0000000, 16.0000000, 7.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 8.0000000, 16.0000000, 4.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 8.0000000, 16.0000000, 1.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 11.0000000, 12.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 0.0000000, 1.0000000, 11.0000000, 14.0000000, 5.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 9.0000000, 16.0000000, 16.0000000, 5.0000000, 0.0000000, 0.0000000, 0.0000000, 10.0000000, 16.0000000, 16.0000000, 16.0000000, 1.0000000, 0.0000000, 0.0000000, 5.0000000, 16.0000000, 16.0000000, 16.0000000, 16.0000000, 0.0000000, 0.0000000, 0.0000000, 1.0000000, 5.0000000, 11.0000000, 16.0000000, 16.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 5.0000000, 16.0000000, 16.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 11.0000000, 16.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 11.0000000, 10.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 0.0000000, 0.0000000, 11.0000000, 12.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 3.0000000, 15.0000000, 14.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 11.0000000, 16.0000000, 11.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 9.0000000, 16.0000000, 16.0000000, 10.0000000, 0.0000000, 0.0000000, 0.0000000, 4.0000000, 16.0000000, 12.0000000, 16.0000000, 12.0000000, 0.0000000, 0.0000000, 0.0000000, 3.0000000, 10.0000000, 3.0000000, 16.0000000, 11.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 16.0000000, 14.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 11.0000000, 11.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 0.0000000, 0.0000000, 7.0000000, 14.0000000, 7.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 3.0000000, 16.0000000, 16.0000000, 9.0000000, 0.0000000, 0.0000000, 0.0000000, 6.0000000, 15.0000000, 16.0000000, 16.0000000, 6.0000000, 0.0000000, 0.0000000, 5.0000000, 16.0000000, 16.0000000, 16.0000000, 16.0000000, 2.0000000, 0.0000000, 0.0000000, 4.0000000, 8.0000000, 8.0000000, 16.0000000, 16.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 3.0000000, 16.0000000, 16.0000000, 3.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 1.0000000, 13.0000000, 16.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 8.0000000, 15.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 0.0000000, 0.0000000, 7.0000000, 15.0000000, 1.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 11.0000000, 16.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 16.0000000, 14.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 10.0000000, 16.0000000, 15.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 12.0000000, 16.0000000, 16.0000000, 11.0000000, 0.0000000, 0.0000000, 0.0000000, 5.0000000, 16.0000000, 6.0000000, 15.0000000, 12.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 1.0000000, 0.0000000, 12.0000000, 16.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 4.0000000, 15.0000000, 4.0000000, 0.0000000} , {0.0000000, 0.0000000, 0.0000000, 0.0000000, 3.0000000, 15.0000000, 6.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 11.0000000, 16.0000000, 7.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 9.0000000, 16.0000000, 16.0000000, 4.0000000, 0.0000000, 0.0000000, 0.0000000, 10.0000000, 16.0000000, 16.0000000, 16.0000000, 4.0000000, 0.0000000, 0.0000000, 4.0000000, 16.0000000, 7.0000000, 8.0000000, 16.0000000, 4.0000000, 0.0000000, 0.0000000, 1.0000000, 4.0000000, 0.0000000, 10.0000000, 16.0000000, 2.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 7.0000000, 16.0000000, 1.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 3.0000000, 16.0000000, 1.0000000, 0.0000000} , {0.0000000, 0.0000000, 0.0000000, 4.0000000, 14.0000000, 14.0000000, 5.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 9.0000000, 16.0000000, 16.0000000, 7.0000000, 0.0000000, 0.0000000, 0.0000000, 5.0000000, 15.0000000, 16.0000000, 15.0000000, 3.0000000, 0.0000000, 0.0000000, 4.0000000, 15.0000000, 16.0000000, 16.0000000, 12.0000000, 0.0000000, 0.0000000, 0.0000000, 5.0000000, 16.0000000, 16.0000000, 16.0000000, 12.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 12.0000000, 16.0000000, 13.0000000, 1.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 8.0000000, 16.0000000, 16.0000000, 7.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 4.0000000, 14.0000000, 15.0000000, 6.0000000, 0.0000000} , {0.0000000, 0.0000000, 0.0000000, 1.0000000, 16.0000000, 11.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 1.0000000, 16.0000000, 16.0000000, 4.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 8.0000000, 16.0000000, 16.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 10.0000000, 16.0000000, 16.0000000, 16.0000000, 1.0000000, 0.0000000, 0.0000000, 6.0000000, 16.0000000, 14.0000000, 16.0000000, 15.0000000, 0.0000000, 0.0000000, 0.0000000, 1.0000000, 3.0000000, 5.0000000, 16.0000000, 12.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 4.0000000, 16.0000000, 12.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 2.0000000, 15.0000000, 12.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 0.0000000, 0.0000000, 10.0000000, 13.0000000, 7.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 5.0000000, 16.0000000, 16.0000000, 11.0000000, 0.0000000, 0.0000000, 0.0000000, 4.0000000, 14.0000000, 16.0000000, 16.0000000, 7.0000000, 0.0000000, 0.0000000, 3.0000000, 14.0000000, 16.0000000, 16.0000000, 16.0000000, 4.0000000, 0.0000000, 0.0000000, 7.0000000, 16.0000000, 16.0000000, 16.0000000, 16.0000000, 4.0000000, 0.0000000, 0.0000000, 0.0000000, 2.0000000, 13.0000000, 16.0000000, 16.0000000, 3.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 11.0000000, 16.0000000, 16.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 2.0000000, 13.0000000, 16.0000000, 1.0000000, 0.0000000} , {0.0000000, 0.0000000, 0.0000000, 13.0000000, 15.0000000, 8.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 1.0000000, 16.0000000, 16.0000000, 10.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 1.0000000, 16.0000000, 16.0000000, 8.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 4.0000000, 16.0000000, 16.0000000, 2.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 11.0000000, 16.0000000, 14.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 2.0000000, 16.0000000, 16.0000000, 10.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 13.0000000, 16.0000000, 15.0000000, 2.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 1.0000000, 13.0000000, 16.0000000, 4.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 0.0000000, 0.0000000, 14.0000000, 4.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 3.0000000, 16.0000000, 11.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 10.0000000, 16.0000000, 9.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 13.0000000, 16.0000000, 7.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 12.0000000, 16.0000000, 16.0000000, 4.0000000, 0.0000000, 0.0000000, 0.0000000, 1.0000000, 13.0000000, 12.0000000, 16.0000000, 5.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 4.0000000, 16.0000000, 9.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 14.0000000, 10.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 0.0000000, 4.0000000, 13.0000000, 13.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 10.0000000, 16.0000000, 16.0000000, 1.0000000, 0.0000000, 0.0000000, 0.0000000, 3.0000000, 14.0000000, 16.0000000, 13.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 8.0000000, 16.0000000, 16.0000000, 5.0000000, 0.0000000, 0.0000000, 0.0000000, 3.0000000, 15.0000000, 16.0000000, 16.0000000, 4.0000000, 0.0000000, 0.0000000, 0.0000000, 4.0000000, 16.0000000, 16.0000000, 16.0000000, 6.0000000, 0.0000000, 0.0000000, 0.0000000, 2.0000000, 8.0000000, 15.0000000, 16.0000000, 9.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 4.0000000, 14.0000000, 12.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 7.0000000, 12.0000000, 9.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 12.0000000, 16.0000000, 16.0000000, 1.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 11.0000000, 16.0000000, 16.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 12.0000000, 16.0000000, 16.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 13.0000000, 16.0000000, 16.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 13.0000000, 16.0000000, 16.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 1.0000000, 14.0000000, 16.0000000, 16.0000000, 1.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 4.0000000, 12.0000000, 12.0000000, 9.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 0.0000000, 10.0000000, 13.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 13.0000000, 16.0000000, 5.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 16.0000000, 16.0000000, 4.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 3.0000000, 16.0000000, 16.0000000, 7.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 7.0000000, 16.0000000, 16.0000000, 9.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 9.0000000, 16.0000000, 16.0000000, 10.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 10.0000000, 16.0000000, 16.0000000, 14.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 1.0000000, 5.0000000, 7.0000000, 15.0000000, 8.0000000, 0.0000000} , {0.0000000, 0.0000000, 0.0000000, 0.0000000, 11.0000000, 14.0000000, 3.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 2.0000000, 16.0000000, 16.0000000, 2.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 11.0000000, 16.0000000, 14.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 3.0000000, 16.0000000, 16.0000000, 15.0000000, 0.0000000, 0.0000000, 0.0000000, 1.0000000, 13.0000000, 16.0000000, 16.0000000, 13.0000000, 0.0000000, 0.0000000, 0.0000000, 6.0000000, 16.0000000, 9.0000000, 15.0000000, 13.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 12.0000000, 16.0000000, 1.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 9.0000000, 14.0000000, 1.0000000, 0.0000000} , {0.0000000, 0.0000000, 1.0000000, 15.0000000, 11.0000000, 1.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 2.0000000, 16.0000000, 16.0000000, 7.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 6.0000000, 16.0000000, 16.0000000, 5.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 8.0000000, 16.0000000, 16.0000000, 4.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 9.0000000, 16.0000000, 13.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 11.0000000, 16.0000000, 13.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 11.0000000, 16.0000000, 11.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 1.0000000, 14.0000000, 16.0000000, 3.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 0.0000000, 2.0000000, 13.0000000, 9.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 7.0000000, 16.0000000, 15.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 11.0000000, 16.0000000, 7.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 15.0000000, 16.0000000, 2.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 7.0000000, 16.0000000, 14.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 13.0000000, 16.0000000, 14.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 8.0000000, 15.0000000, 16.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 3.0000000, 13.0000000, 8.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 0.0000000, 0.0000000, 10.0000000, 11.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 16.0000000, 13.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 7.0000000, 16.0000000, 9.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 13.0000000, 16.0000000, 3.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 10.0000000, 16.0000000, 16.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 15.0000000, 16.0000000, 16.0000000, 4.0000000, 0.0000000, 0.0000000, 0.0000000, 3.0000000, 12.0000000, 6.0000000, 16.0000000, 6.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 10.0000000, 13.0000000, 7.0000000, 0.0000000} , {0.0000000, 0.0000000, 0.0000000, 12.0000000, 15.0000000, 2.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 13.0000000, 16.0000000, 8.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 14.0000000, 16.0000000, 9.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 13.0000000, 16.0000000, 6.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 7.0000000, 16.0000000, 16.0000000, 3.0000000, 0.0000000, 0.0000000, 0.0000000, 1.0000000, 16.0000000, 16.0000000, 16.0000000, 1.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 8.0000000, 16.0000000, 16.0000000, 2.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 9.0000000, 16.0000000, 7.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 1.0000000, 14.0000000, 7.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 6.0000000, 16.0000000, 16.0000000, 1.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 7.0000000, 16.0000000, 15.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 6.0000000, 16.0000000, 15.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 6.0000000, 16.0000000, 15.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 4.0000000, 16.0000000, 16.0000000, 1.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 4.0000000, 16.0000000, 16.0000000, 6.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 1.0000000, 15.0000000, 16.0000000, 8.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 3.0000000, 16.0000000, 11.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 16.0000000, 16.0000000, 6.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 13.0000000, 16.0000000, 7.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 11.0000000, 16.0000000, 10.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 12.0000000, 16.0000000, 6.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 3.0000000, 16.0000000, 16.0000000, 2.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 5.0000000, 16.0000000, 15.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 3.0000000, 13.0000000, 15.0000000, 0.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 8.0000000, 16.0000000, 15.0000000, 8.0000000, 0.0000000, 0.0000000, 0.0000000, 1.0000000, 16.0000000, 16.0000000, 16.0000000, 2.0000000, 0.0000000, 0.0000000, 0.0000000, 2.0000000, 16.0000000, 16.0000000, 10.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 2.0000000, 16.0000000, 16.0000000, 12.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 6.0000000, 16.0000000, 16.0000000, 13.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 1.0000000, 16.0000000, 16.0000000, 11.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 16.0000000, 16.0000000, 10.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 7.0000000, 15.0000000, 15.0000000, 0.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 0.0000000, 0.0000000, 13.0000000, 16.0000000, 6.0000000, 0.0000000, 0.0000000, 0.0000000, 3.0000000, 11.0000000, 16.0000000, 16.0000000, 5.0000000, 0.0000000, 0.0000000, 5.0000000, 16.0000000, 16.0000000, 16.0000000, 16.0000000, 4.0000000, 0.0000000, 0.0000000, 4.0000000, 10.0000000, 9.0000000, 16.0000000, 16.0000000, 4.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 13.0000000, 16.0000000, 4.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 12.0000000, 16.0000000, 4.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 2.0000000, 16.0000000, 16.0000000, 7.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 1.0000000, 12.0000000, 14.0000000, 5.0000000, 0.0000000} , {0.0000000, 0.0000000, 1.0000000, 8.0000000, 16.0000000, 7.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 3.0000000, 16.0000000, 16.0000000, 12.0000000, 0.0000000, 0.0000000, 0.0000000, 1.0000000, 15.0000000, 16.0000000, 16.0000000, 12.0000000, 0.0000000, 0.0000000, 0.0000000, 3.0000000, 12.0000000, 15.0000000, 16.0000000, 12.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 8.0000000, 16.0000000, 10.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 11.0000000, 16.0000000, 14.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 11.0000000, 16.0000000, 16.0000000, 1.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 5.0000000, 13.0000000, 7.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 0.0000000, 5.0000000, 15.0000000, 13.0000000, 1.0000000, 0.0000000, 0.0000000, 0.0000000, 2.0000000, 14.0000000, 16.0000000, 16.0000000, 4.0000000, 0.0000000, 0.0000000, 0.0000000, 8.0000000, 16.0000000, 16.0000000, 16.0000000, 4.0000000, 0.0000000, 0.0000000, 6.0000000, 15.0000000, 16.0000000, 16.0000000, 16.0000000, 1.0000000, 0.0000000, 0.0000000, 3.0000000, 7.0000000, 10.0000000, 16.0000000, 16.0000000, 4.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 11.0000000, 16.0000000, 16.0000000, 1.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 12.0000000, 16.0000000, 16.0000000, 1.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 6.0000000, 14.0000000, 12.0000000, 1.0000000, 0.0000000} , {0.0000000, 0.0000000, 0.0000000, 1.0000000, 12.0000000, 7.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 9.0000000, 16.0000000, 16.0000000, 1.0000000, 0.0000000, 0.0000000, 1.0000000, 7.0000000, 15.0000000, 16.0000000, 14.0000000, 0.0000000, 0.0000000, 0.0000000, 4.0000000, 16.0000000, 16.0000000, 16.0000000, 16.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 3.0000000, 16.0000000, 16.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 2.0000000, 16.0000000, 16.0000000, 3.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 6.0000000, 16.0000000, 16.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 3.0000000, 15.0000000, 13.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 0.0000000, 5.0000000, 16.0000000, 8.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 4.0000000, 16.0000000, 16.0000000, 8.0000000, 0.0000000, 0.0000000, 0.0000000, 2.0000000, 15.0000000, 16.0000000, 16.0000000, 8.0000000, 0.0000000, 0.0000000, 0.0000000, 4.0000000, 8.0000000, 12.0000000, 16.0000000, 5.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 6.0000000, 16.0000000, 11.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 6.0000000, 16.0000000, 12.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 6.0000000, 16.0000000, 15.0000000, 1.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 4.0000000, 15.0000000, 11.0000000, 2.0000000, 0.0000000} , {0.0000000, 0.0000000, 7.0000000, 10.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 9.0000000, 16.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 6.0000000, 16.0000000, 5.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 9.0000000, 16.0000000, 9.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 6.0000000, 14.0000000, 1.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 2.0000000, 16.0000000, 4.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 1.0000000, 4.0000000, 14.0000000, 12.0000000, 4.0000000, 1.0000000, 0.0000000, 0.0000000, 7.0000000, 16.0000000, 16.0000000, 16.0000000, 16.0000000, 5.0000000} }; float X_negative[NEGATIVE_SAMPLES][FEATURES_DIM] = { {0.0000000, 0.0000000, 5.0000000, 13.0000000, 9.0000000, 1.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 13.0000000, 15.0000000, 10.0000000, 15.0000000, 5.0000000, 0.0000000, 0.0000000, 3.0000000, 15.0000000, 2.0000000, 0.0000000, 11.0000000, 8.0000000, 0.0000000, 0.0000000, 4.0000000, 12.0000000, 0.0000000, 0.0000000, 8.0000000, 8.0000000, 0.0000000, 0.0000000, 5.0000000, 8.0000000, 0.0000000, 0.0000000, 9.0000000, 8.0000000, 0.0000000, 0.0000000, 4.0000000, 11.0000000, 0.0000000, 1.0000000, 12.0000000, 7.0000000, 0.0000000, 0.0000000, 2.0000000, 14.0000000, 5.0000000, 10.0000000, 12.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 6.0000000, 13.0000000, 10.0000000, 0.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 1.0000000, 9.0000000, 15.0000000, 11.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 11.0000000, 16.0000000, 8.0000000, 14.0000000, 6.0000000, 0.0000000, 0.0000000, 2.0000000, 16.0000000, 10.0000000, 0.0000000, 9.0000000, 9.0000000, 0.0000000, 0.0000000, 1.0000000, 16.0000000, 4.0000000, 0.0000000, 8.0000000, 8.0000000, 0.0000000, 0.0000000, 4.0000000, 16.0000000, 4.0000000, 0.0000000, 8.0000000, 8.0000000, 0.0000000, 0.0000000, 1.0000000, 16.0000000, 5.0000000, 1.0000000, 11.0000000, 3.0000000, 0.0000000, 0.0000000, 0.0000000, 12.0000000, 12.0000000, 10.0000000, 10.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 1.0000000, 10.0000000, 13.0000000, 3.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 3.0000000, 13.0000000, 11.0000000, 7.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 11.0000000, 16.0000000, 16.0000000, 16.0000000, 2.0000000, 0.0000000, 0.0000000, 4.0000000, 16.0000000, 9.0000000, 1.0000000, 14.0000000, 2.0000000, 0.0000000, 0.0000000, 4.0000000, 16.0000000, 0.0000000, 0.0000000, 16.0000000, 2.0000000, 0.0000000, 0.0000000, 0.0000000, 16.0000000, 1.0000000, 0.0000000, 12.0000000, 8.0000000, 0.0000000, 0.0000000, 0.0000000, 15.0000000, 9.0000000, 0.0000000, 13.0000000, 6.0000000, 0.0000000, 0.0000000, 0.0000000, 9.0000000, 14.0000000, 9.0000000, 14.0000000, 1.0000000, 0.0000000, 0.0000000, 0.0000000, 2.0000000, 12.0000000, 13.0000000, 4.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 10.0000000, 14.0000000, 11.0000000, 3.0000000, 0.0000000, 0.0000000, 0.0000000, 4.0000000, 16.0000000, 13.0000000, 6.0000000, 14.0000000, 1.0000000, 0.0000000, 0.0000000, 4.0000000, 16.0000000, 2.0000000, 0.0000000, 11.0000000, 7.0000000, 0.0000000, 0.0000000, 8.0000000, 16.0000000, 0.0000000, 0.0000000, 10.0000000, 5.0000000, 0.0000000, 0.0000000, 8.0000000, 16.0000000, 0.0000000, 0.0000000, 14.0000000, 4.0000000, 0.0000000, 0.0000000, 8.0000000, 16.0000000, 0.0000000, 1.0000000, 16.0000000, 1.0000000, 0.0000000, 0.0000000, 4.0000000, 16.0000000, 1.0000000, 11.0000000, 15.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 11.0000000, 16.0000000, 12.0000000, 3.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 6.0000000, 14.0000000, 10.0000000, 2.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 15.0000000, 15.0000000, 13.0000000, 15.0000000, 3.0000000, 0.0000000, 0.0000000, 2.0000000, 16.0000000, 10.0000000, 0.0000000, 13.0000000, 9.0000000, 0.0000000, 0.0000000, 1.0000000, 16.0000000, 5.0000000, 0.0000000, 12.0000000, 5.0000000, 0.0000000, 0.0000000, 0.0000000, 16.0000000, 3.0000000, 0.0000000, 13.0000000, 6.0000000, 0.0000000, 0.0000000, 1.0000000, 15.0000000, 5.0000000, 6.0000000, 13.0000000, 1.0000000, 0.0000000, 0.0000000, 0.0000000, 16.0000000, 11.0000000, 14.0000000, 10.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 7.0000000, 16.0000000, 11.0000000, 1.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 2.0000000, 15.0000000, 13.0000000, 3.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 10.0000000, 15.0000000, 11.0000000, 15.0000000, 0.0000000, 0.0000000, 0.0000000, 3.0000000, 16.0000000, 6.0000000, 0.0000000, 10.0000000, 0.0000000, 0.0000000, 0.0000000, 4.0000000, 16.0000000, 8.0000000, 0.0000000, 3.0000000, 8.0000000, 0.0000000, 0.0000000, 8.0000000, 14.0000000, 3.0000000, 0.0000000, 4.0000000, 8.0000000, 0.0000000, 0.0000000, 3.0000000, 15.0000000, 1.0000000, 0.0000000, 3.0000000, 7.0000000, 0.0000000, 0.0000000, 0.0000000, 14.0000000, 11.0000000, 6.0000000, 14.0000000, 5.0000000, 0.0000000, 0.0000000, 0.0000000, 4.0000000, 12.0000000, 15.0000000, 6.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 1.0000000, 15.0000000, 13.0000000, 1.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 7.0000000, 16.0000000, 14.0000000, 8.0000000, 0.0000000, 0.0000000, 0.0000000, 8.0000000, 12.0000000, 9.0000000, 2.0000000, 13.0000000, 2.0000000, 0.0000000, 0.0000000, 7.0000000, 9.0000000, 1.0000000, 0.0000000, 6.0000000, 6.0000000, 0.0000000, 0.0000000, 5.0000000, 9.0000000, 0.0000000, 0.0000000, 3.0000000, 9.0000000, 0.0000000, 0.0000000, 0.0000000, 15.0000000, 2.0000000, 0.0000000, 8.0000000, 12.0000000, 0.0000000, 0.0000000, 0.0000000, 9.0000000, 15.0000000, 13.0000000, 16.0000000, 6.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 13.0000000, 14.0000000, 8.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 2.0000000, 14.0000000, 15.0000000, 5.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 10.0000000, 16.0000000, 16.0000000, 15.0000000, 1.0000000, 0.0000000, 0.0000000, 3.0000000, 16.0000000, 10.0000000, 10.0000000, 16.0000000, 4.0000000, 0.0000000, 0.0000000, 5.0000000, 16.0000000, 0.0000000, 0.0000000, 14.0000000, 6.0000000, 0.0000000, 0.0000000, 5.0000000, 16.0000000, 6.0000000, 0.0000000, 12.0000000, 7.0000000, 0.0000000, 0.0000000, 1.0000000, 15.0000000, 13.0000000, 4.0000000, 13.0000000, 6.0000000, 0.0000000, 0.0000000, 0.0000000, 11.0000000, 16.0000000, 16.0000000, 15.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 2.0000000, 11.0000000, 13.0000000, 4.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 1.0000000, 13.0000000, 10.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 7.0000000, 16.0000000, 16.0000000, 16.0000000, 7.0000000, 0.0000000, 0.0000000, 0.0000000, 8.0000000, 16.0000000, 13.0000000, 10.0000000, 15.0000000, 0.0000000, 0.0000000, 0.0000000, 8.0000000, 16.0000000, 2.0000000, 2.0000000, 15.0000000, 3.0000000, 0.0000000, 0.0000000, 5.0000000, 15.0000000, 2.0000000, 0.0000000, 12.0000000, 7.0000000, 0.0000000, 0.0000000, 1.0000000, 15.0000000, 6.0000000, 2.0000000, 16.0000000, 3.0000000, 0.0000000, 0.0000000, 0.0000000, 11.0000000, 15.0000000, 13.0000000, 16.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 1.0000000, 15.0000000, 14.0000000, 8.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 10.0000000, 12.0000000, 10.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 3.0000000, 16.0000000, 16.0000000, 16.0000000, 4.0000000, 0.0000000, 0.0000000, 0.0000000, 7.0000000, 15.0000000, 3.0000000, 8.0000000, 13.0000000, 0.0000000, 0.0000000, 0.0000000, 8.0000000, 12.0000000, 0.0000000, 0.0000000, 14.0000000, 1.0000000, 0.0000000, 0.0000000, 8.0000000, 12.0000000, 0.0000000, 0.0000000, 7.0000000, 8.0000000, 0.0000000, 0.0000000, 5.0000000, 13.0000000, 0.0000000, 0.0000000, 4.0000000, 8.0000000, 0.0000000, 0.0000000, 0.0000000, 14.0000000, 8.0000000, 0.0000000, 10.0000000, 8.0000000, 0.0000000, 0.0000000, 0.0000000, 7.0000000, 12.0000000, 13.0000000, 12.0000000, 4.0000000, 0.0000000} , {0.0000000, 0.0000000, 4.0000000, 14.0000000, 11.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 3.0000000, 15.0000000, 15.0000000, 16.0000000, 9.0000000, 0.0000000, 0.0000000, 0.0000000, 8.0000000, 13.0000000, 0.0000000, 3.0000000, 15.0000000, 1.0000000, 0.0000000, 0.0000000, 8.0000000, 12.0000000, 0.0000000, 0.0000000, 8.0000000, 6.0000000, 0.0000000, 0.0000000, 8.0000000, 12.0000000, 0.0000000, 0.0000000, 8.0000000, 8.0000000, 0.0000000, 0.0000000, 5.0000000, 13.0000000, 1.0000000, 0.0000000, 8.0000000, 8.0000000, 0.0000000, 0.0000000, 2.0000000, 15.0000000, 14.0000000, 12.0000000, 15.0000000, 6.0000000, 0.0000000, 0.0000000, 0.0000000, 5.0000000, 16.0000000, 15.0000000, 8.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 1.0000000, 12.0000000, 5.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 9.0000000, 16.0000000, 14.0000000, 3.0000000, 0.0000000, 0.0000000, 0.0000000, 2.0000000, 16.0000000, 14.0000000, 11.0000000, 13.0000000, 0.0000000, 0.0000000, 0.0000000, 2.0000000, 16.0000000, 10.0000000, 0.0000000, 14.0000000, 4.0000000, 0.0000000, 0.0000000, 4.0000000, 16.0000000, 0.0000000, 0.0000000, 12.0000000, 4.0000000, 0.0000000, 0.0000000, 4.0000000, 16.0000000, 3.0000000, 0.0000000, 11.0000000, 10.0000000, 0.0000000, 0.0000000, 0.0000000, 13.0000000, 12.0000000, 8.0000000, 14.0000000, 6.0000000, 0.0000000, 0.0000000, 0.0000000, 3.0000000, 10.0000000, 16.0000000, 12.0000000, 1.0000000, 0.0000000} , {0.0000000, 0.0000000, 3.0000000, 12.0000000, 10.0000000, 1.0000000, 0.0000000, 0.0000000, 0.0000000, 1.0000000, 16.0000000, 16.0000000, 16.0000000, 10.0000000, 0.0000000, 0.0000000, 0.0000000, 5.0000000, 16.0000000, 13.0000000, 6.0000000, 16.0000000, 1.0000000, 0.0000000, 0.0000000, 5.0000000, 16.0000000, 7.0000000, 0.0000000, 13.0000000, 3.0000000, 0.0000000, 0.0000000, 5.0000000, 16.0000000, 4.0000000, 0.0000000, 13.0000000, 7.0000000, 0.0000000, 0.0000000, 1.0000000, 16.0000000, 8.0000000, 0.0000000, 14.0000000, 7.0000000, 0.0000000, 0.0000000, 0.0000000, 13.0000000, 14.0000000, 13.0000000, 16.0000000, 3.0000000, 0.0000000, 0.0000000, 0.0000000, 2.0000000, 13.0000000, 15.0000000, 6.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 2.0000000, 12.0000000, 9.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 11.0000000, 15.0000000, 12.0000000, 5.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 15.0000000, 5.0000000, 0.0000000, 14.0000000, 0.0000000, 0.0000000, 0.0000000, 2.0000000, 15.0000000, 1.0000000, 0.0000000, 9.0000000, 7.0000000, 0.0000000, 0.0000000, 4.0000000, 10.0000000, 0.0000000, 0.0000000, 7.0000000, 8.0000000, 0.0000000, 0.0000000, 0.0000000, 12.0000000, 0.0000000, 0.0000000, 8.0000000, 10.0000000, 0.0000000, 0.0000000, 2.0000000, 15.0000000, 5.0000000, 10.0000000, 16.0000000, 1.0000000, 0.0000000, 0.0000000, 0.0000000, 5.0000000, 14.0000000, 12.0000000, 4.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 12.0000000, 9.0000000, 12.0000000, 1.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 14.0000000, 16.0000000, 16.0000000, 8.0000000, 0.0000000, 0.0000000, 0.0000000, 3.0000000, 16.0000000, 9.0000000, 3.0000000, 15.0000000, 2.0000000, 0.0000000, 0.0000000, 4.0000000, 16.0000000, 1.0000000, 0.0000000, 16.0000000, 5.0000000, 0.0000000, 0.0000000, 5.0000000, 12.0000000, 0.0000000, 0.0000000, 16.0000000, 5.0000000, 0.0000000, 0.0000000, 3.0000000, 14.0000000, 1.0000000, 4.0000000, 16.0000000, 4.0000000, 0.0000000, 0.0000000, 0.0000000, 15.0000000, 12.0000000, 14.0000000, 14.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 7.0000000, 12.0000000, 12.0000000, 2.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 2.0000000, 12.0000000, 4.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 1.0000000, 12.0000000, 16.0000000, 16.0000000, 3.0000000, 0.0000000, 0.0000000, 0.0000000, 7.0000000, 16.0000000, 6.0000000, 4.0000000, 13.0000000, 0.0000000, 0.0000000, 0.0000000, 8.0000000, 16.0000000, 6.0000000, 0.0000000, 13.0000000, 5.0000000, 0.0000000, 0.0000000, 1.0000000, 16.0000000, 5.0000000, 0.0000000, 7.0000000, 9.0000000, 0.0000000, 0.0000000, 0.0000000, 16.0000000, 8.0000000, 0.0000000, 8.0000000, 12.0000000, 0.0000000, 0.0000000, 0.0000000, 13.0000000, 14.0000000, 14.0000000, 16.0000000, 10.0000000, 0.0000000, 0.0000000, 0.0000000, 4.0000000, 14.0000000, 15.0000000, 7.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 5.0000000, 14.0000000, 10.0000000, 7.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 16.0000000, 16.0000000, 16.0000000, 16.0000000, 3.0000000, 0.0000000, 0.0000000, 3.0000000, 16.0000000, 10.0000000, 2.0000000, 16.0000000, 7.0000000, 0.0000000, 0.0000000, 7.0000000, 16.0000000, 3.0000000, 0.0000000, 12.0000000, 8.0000000, 0.0000000, 0.0000000, 8.0000000, 16.0000000, 1.0000000, 0.0000000, 12.0000000, 8.0000000, 0.0000000, 0.0000000, 7.0000000, 16.0000000, 5.0000000, 2.0000000, 16.0000000, 4.0000000, 0.0000000, 0.0000000, 2.0000000, 16.0000000, 15.0000000, 14.0000000, 13.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 7.0000000, 15.0000000, 13.0000000, 2.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 5.0000000, 16.0000000, 15.0000000, 1.0000000, 0.0000000, 0.0000000, 0.0000000, 1.0000000, 15.0000000, 9.0000000, 10.0000000, 12.0000000, 0.0000000, 0.0000000, 0.0000000, 3.0000000, 16.0000000, 1.0000000, 0.0000000, 16.0000000, 4.0000000, 0.0000000, 0.0000000, 6.0000000, 16.0000000, 0.0000000, 0.0000000, 11.0000000, 6.0000000, 0.0000000, 0.0000000, 3.0000000, 16.0000000, 1.0000000, 0.0000000, 11.0000000, 8.0000000, 0.0000000, 0.0000000, 4.0000000, 16.0000000, 4.0000000, 3.0000000, 15.0000000, 4.0000000, 0.0000000, 0.0000000, 1.0000000, 13.0000000, 13.0000000, 13.0000000, 14.0000000, 1.0000000, 0.0000000, 0.0000000, 0.0000000, 4.0000000, 13.0000000, 14.0000000, 1.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 6.0000000, 15.0000000, 15.0000000, 3.0000000, 0.0000000, 0.0000000, 0.0000000, 3.0000000, 16.0000000, 14.0000000, 14.0000000, 13.0000000, 0.0000000, 0.0000000, 0.0000000, 6.0000000, 15.0000000, 2.0000000, 1.0000000, 14.0000000, 5.0000000, 0.0000000, 0.0000000, 8.0000000, 14.0000000, 2.0000000, 0.0000000, 9.0000000, 8.0000000, 0.0000000, 0.0000000, 8.0000000, 16.0000000, 4.0000000, 0.0000000, 8.0000000, 8.0000000, 0.0000000, 0.0000000, 5.0000000, 16.0000000, 6.0000000, 0.0000000, 11.0000000, 9.0000000, 0.0000000, 0.0000000, 1.0000000, 16.0000000, 16.0000000, 14.0000000, 16.0000000, 9.0000000, 0.0000000, 0.0000000, 0.0000000, 5.0000000, 14.0000000, 15.0000000, 10.0000000, 1.0000000, 0.0000000} , {0.0000000, 0.0000000, 0.0000000, 10.0000000, 15.0000000, 1.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 5.0000000, 16.0000000, 16.0000000, 10.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 14.0000000, 6.0000000, 6.0000000, 15.0000000, 0.0000000, 0.0000000, 0.0000000, 4.0000000, 16.0000000, 4.0000000, 0.0000000, 15.0000000, 3.0000000, 0.0000000, 0.0000000, 5.0000000, 15.0000000, 5.0000000, 0.0000000, 11.0000000, 5.0000000, 0.0000000, 0.0000000, 0.0000000, 12.0000000, 11.0000000, 0.0000000, 13.0000000, 5.0000000, 0.0000000, 0.0000000, 0.0000000, 8.0000000, 16.0000000, 16.0000000, 16.0000000, 3.0000000, 0.0000000, 0.0000000, 0.0000000, 1.0000000, 8.0000000, 13.0000000, 8.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 2.0000000, 15.0000000, 13.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 13.0000000, 16.0000000, 16.0000000, 9.0000000, 0.0000000, 0.0000000, 0.0000000, 5.0000000, 16.0000000, 9.0000000, 6.0000000, 16.0000000, 4.0000000, 0.0000000, 0.0000000, 5.0000000, 16.0000000, 3.0000000, 1.0000000, 14.0000000, 7.0000000, 0.0000000, 0.0000000, 6.0000000, 16.0000000, 4.0000000, 0.0000000, 16.0000000, 8.0000000, 0.0000000, 0.0000000, 3.0000000, 16.0000000, 12.0000000, 6.0000000, 16.0000000, 12.0000000, 0.0000000, 0.0000000, 0.0000000, 14.0000000, 16.0000000, 16.0000000, 16.0000000, 4.0000000, 0.0000000, 0.0000000, 0.0000000, 2.0000000, 13.0000000, 15.0000000, 8.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 4.0000000, 15.0000000, 11.0000000, 1.0000000, 0.0000000, 0.0000000, 0.0000000, 2.0000000, 14.0000000, 14.0000000, 16.0000000, 8.0000000, 0.0000000, 0.0000000, 0.0000000, 8.0000000, 15.0000000, 2.0000000, 3.0000000, 13.0000000, 0.0000000, 0.0000000, 0.0000000, 4.0000000, 16.0000000, 0.0000000, 0.0000000, 12.0000000, 7.0000000, 0.0000000, 0.0000000, 7.0000000, 16.0000000, 0.0000000, 0.0000000, 12.0000000, 8.0000000, 0.0000000, 0.0000000, 3.0000000, 16.0000000, 6.0000000, 1.0000000, 14.0000000, 9.0000000, 0.0000000, 0.0000000, 0.0000000, 15.0000000, 16.0000000, 16.0000000, 16.0000000, 2.0000000, 0.0000000, 0.0000000, 0.0000000, 4.0000000, 13.0000000, 14.0000000, 6.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 2.0000000, 12.0000000, 12.0000000, 2.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 10.0000000, 16.0000000, 16.0000000, 9.0000000, 0.0000000, 0.0000000, 0.0000000, 3.0000000, 16.0000000, 16.0000000, 8.0000000, 15.0000000, 3.0000000, 0.0000000, 0.0000000, 6.0000000, 16.0000000, 6.0000000, 0.0000000, 13.0000000, 8.0000000, 0.0000000, 0.0000000, 8.0000000, 16.0000000, 4.0000000, 0.0000000, 15.0000000, 8.0000000, 0.0000000, 0.0000000, 5.0000000, 16.0000000, 8.0000000, 12.0000000, 16.0000000, 6.0000000, 0.0000000, 0.0000000, 0.0000000, 15.0000000, 16.0000000, 16.0000000, 15.0000000, 2.0000000, 0.0000000, 0.0000000, 0.0000000, 3.0000000, 13.0000000, 12.0000000, 3.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 0.0000000, 14.0000000, 7.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 1.0000000, 9.0000000, 16.0000000, 16.0000000, 3.0000000, 0.0000000, 0.0000000, 0.0000000, 4.0000000, 16.0000000, 8.0000000, 11.0000000, 11.0000000, 0.0000000, 0.0000000, 0.0000000, 3.0000000, 16.0000000, 7.0000000, 4.0000000, 16.0000000, 4.0000000, 0.0000000, 0.0000000, 8.0000000, 16.0000000, 4.0000000, 0.0000000, 16.0000000, 8.0000000, 0.0000000, 0.0000000, 5.0000000, 16.0000000, 10.0000000, 0.0000000, 13.0000000, 11.0000000, 0.0000000, 0.0000000, 0.0000000, 13.0000000, 16.0000000, 16.0000000, 16.0000000, 9.0000000, 0.0000000, 0.0000000, 0.0000000, 2.0000000, 10.0000000, 13.0000000, 6.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 4.0000000, 12.0000000, 10.0000000, 1.0000000, 0.0000000, 0.0000000, 0.0000000, 3.0000000, 16.0000000, 13.0000000, 15.0000000, 10.0000000, 0.0000000, 0.0000000, 0.0000000, 5.0000000, 16.0000000, 2.0000000, 1.0000000, 14.0000000, 3.0000000, 0.0000000, 0.0000000, 8.0000000, 13.0000000, 0.0000000, 0.0000000, 10.0000000, 8.0000000, 0.0000000, 0.0000000, 8.0000000, 12.0000000, 0.0000000, 0.0000000, 8.0000000, 8.0000000, 0.0000000, 0.0000000, 8.0000000, 14.0000000, 0.0000000, 0.0000000, 11.0000000, 8.0000000, 0.0000000, 0.0000000, 3.0000000, 16.0000000, 14.0000000, 13.0000000, 16.0000000, 2.0000000, 0.0000000, 0.0000000, 0.0000000, 8.0000000, 16.0000000, 13.0000000, 5.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 2.0000000, 14.0000000, 13.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 10.0000000, 15.0000000, 15.0000000, 8.0000000, 0.0000000, 0.0000000, 0.0000000, 2.0000000, 16.0000000, 7.0000000, 4.0000000, 15.0000000, 0.0000000, 0.0000000, 0.0000000, 4.0000000, 16.0000000, 4.0000000, 0.0000000, 13.0000000, 7.0000000, 0.0000000, 0.0000000, 4.0000000, 16.0000000, 1.0000000, 0.0000000, 10.0000000, 8.0000000, 0.0000000, 0.0000000, 4.0000000, 16.0000000, 5.0000000, 1.0000000, 12.0000000, 11.0000000, 0.0000000, 0.0000000, 1.0000000, 15.0000000, 14.0000000, 13.0000000, 16.0000000, 3.0000000, 0.0000000, 0.0000000, 0.0000000, 3.0000000, 12.0000000, 13.0000000, 5.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 4.0000000, 11.0000000, 15.0000000, 8.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 13.0000000, 16.0000000, 11.0000000, 13.0000000, 7.0000000, 0.0000000, 0.0000000, 3.0000000, 16.0000000, 12.0000000, 0.0000000, 4.0000000, 8.0000000, 0.0000000, 0.0000000, 6.0000000, 16.0000000, 5.0000000, 0.0000000, 4.0000000, 8.0000000, 0.0000000, 0.0000000, 7.0000000, 9.0000000, 0.0000000, 0.0000000, 9.0000000, 7.0000000, 0.0000000, 0.0000000, 4.0000000, 10.0000000, 0.0000000, 2.0000000, 15.0000000, 2.0000000, 0.0000000, 0.0000000, 1.0000000, 16.0000000, 12.0000000, 14.0000000, 10.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 4.0000000, 14.0000000, 14.0000000, 1.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 4.0000000, 13.0000000, 8.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 13.0000000, 16.0000000, 15.0000000, 7.0000000, 0.0000000, 0.0000000, 0.0000000, 3.0000000, 16.0000000, 9.0000000, 6.0000000, 15.0000000, 6.0000000, 0.0000000, 0.0000000, 8.0000000, 14.0000000, 0.0000000, 0.0000000, 4.0000000, 8.0000000, 0.0000000, 0.0000000, 8.0000000, 12.0000000, 0.0000000, 0.0000000, 4.0000000, 8.0000000, 0.0000000, 0.0000000, 4.0000000, 12.0000000, 0.0000000, 0.0000000, 11.0000000, 6.0000000, 0.0000000, 0.0000000, 0.0000000, 14.0000000, 10.0000000, 12.0000000, 14.0000000, 1.0000000, 0.0000000, 0.0000000, 0.0000000, 7.0000000, 15.0000000, 11.0000000, 2.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 5.0000000, 15.0000000, 12.0000000, 8.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 13.0000000, 16.0000000, 10.0000000, 13.0000000, 3.0000000, 0.0000000, 0.0000000, 5.0000000, 16.0000000, 9.0000000, 0.0000000, 8.0000000, 4.0000000, 0.0000000, 0.0000000, 4.0000000, 13.0000000, 1.0000000, 0.0000000, 4.0000000, 8.0000000, 0.0000000, 0.0000000, 4.0000000, 8.0000000, 0.0000000, 0.0000000, 8.0000000, 4.0000000, 0.0000000, 0.0000000, 1.0000000, 14.0000000, 0.0000000, 0.0000000, 11.0000000, 3.0000000, 0.0000000, 0.0000000, 0.0000000, 12.0000000, 9.0000000, 9.0000000, 15.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 4.0000000, 14.0000000, 15.0000000, 4.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 2.0000000, 12.0000000, 15.0000000, 12.0000000, 1.0000000, 0.0000000, 0.0000000, 1.0000000, 14.0000000, 14.0000000, 14.0000000, 11.0000000, 8.0000000, 0.0000000, 0.0000000, 5.0000000, 16.0000000, 3.0000000, 0.0000000, 2.0000000, 8.0000000, 0.0000000, 0.0000000, 8.0000000, 14.0000000, 0.0000000, 0.0000000, 6.0000000, 8.0000000, 0.0000000, 0.0000000, 4.0000000, 12.0000000, 0.0000000, 0.0000000, 9.0000000, 4.0000000, 0.0000000, 0.0000000, 1.0000000, 16.0000000, 1.0000000, 1.0000000, 14.0000000, 1.0000000, 0.0000000, 0.0000000, 0.0000000, 11.0000000, 9.0000000, 11.0000000, 8.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 2.0000000, 13.0000000, 14.0000000, 1.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 9.0000000, 16.0000000, 15.0000000, 14.0000000, 1.0000000, 0.0000000, 0.0000000, 1.0000000, 15.0000000, 15.0000000, 5.0000000, 10.0000000, 7.0000000, 0.0000000, 0.0000000, 6.0000000, 16.0000000, 1.0000000, 0.0000000, 1.0000000, 8.0000000, 0.0000000, 0.0000000, 8.0000000, 13.0000000, 0.0000000, 0.0000000, 4.0000000, 8.0000000, 0.0000000, 0.0000000, 7.0000000, 6.0000000, 0.0000000, 0.0000000, 6.0000000, 6.0000000, 0.0000000, 0.0000000, 5.0000000, 9.0000000, 0.0000000, 0.0000000, 13.0000000, 1.0000000, 0.0000000, 0.0000000, 0.0000000, 16.0000000, 5.0000000, 12.0000000, 12.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 8.0000000, 15.0000000, 10.0000000, 1.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 2.0000000, 13.0000000, 10.0000000, 3.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 10.0000000, 15.0000000, 12.0000000, 13.0000000, 1.0000000, 0.0000000, 0.0000000, 0.0000000, 16.0000000, 4.0000000, 0.0000000, 6.0000000, 4.0000000, 0.0000000, 0.0000000, 2.0000000, 16.0000000, 3.0000000, 0.0000000, 1.0000000, 7.0000000, 0.0000000, 0.0000000, 5.0000000, 13.0000000, 5.0000000, 0.0000000, 2.0000000, 8.0000000, 0.0000000, 0.0000000, 4.0000000, 12.0000000, 0.0000000, 0.0000000, 3.0000000, 8.0000000, 0.0000000, 0.0000000, 0.0000000, 13.0000000, 5.0000000, 6.0000000, 13.0000000, 5.0000000, 0.0000000, 0.0000000, 0.0000000, 5.0000000, 14.0000000, 13.0000000, 8.0000000, 1.0000000, 0.0000000} , {0.0000000, 0.0000000, 5.0000000, 13.0000000, 13.0000000, 5.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 16.0000000, 16.0000000, 10.0000000, 15.0000000, 3.0000000, 0.0000000, 0.0000000, 5.0000000, 16.0000000, 2.0000000, 1.0000000, 8.0000000, 4.0000000, 0.0000000, 0.0000000, 4.0000000, 13.0000000, 0.0000000, 0.0000000, 4.0000000, 8.0000000, 0.0000000, 0.0000000, 8.0000000, 12.0000000, 0.0000000, 0.0000000, 6.0000000, 7.0000000, 0.0000000, 0.0000000, 5.0000000, 15.0000000, 0.0000000, 0.0000000, 7.0000000, 7.0000000, 0.0000000, 0.0000000, 0.0000000, 16.0000000, 8.0000000, 5.0000000, 15.0000000, 3.0000000, 0.0000000, 0.0000000, 0.0000000, 5.0000000, 14.0000000, 15.0000000, 9.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 4.0000000, 13.0000000, 11.0000000, 7.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 14.0000000, 16.0000000, 13.0000000, 16.0000000, 2.0000000, 0.0000000, 0.0000000, 5.0000000, 16.0000000, 4.0000000, 0.0000000, 5.0000000, 7.0000000, 0.0000000, 0.0000000, 8.0000000, 14.0000000, 0.0000000, 0.0000000, 4.0000000, 8.0000000, 0.0000000, 0.0000000, 6.0000000, 9.0000000, 0.0000000, 0.0000000, 4.0000000, 8.0000000, 0.0000000, 0.0000000, 2.0000000, 14.0000000, 1.0000000, 0.0000000, 8.0000000, 6.0000000, 0.0000000, 0.0000000, 0.0000000, 13.0000000, 12.0000000, 9.0000000, 15.0000000, 2.0000000, 0.0000000, 0.0000000, 0.0000000, 3.0000000, 16.0000000, 12.0000000, 5.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 5.0000000, 8.0000000, 11.0000000, 5.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 13.0000000, 16.0000000, 12.0000000, 12.0000000, 0.0000000, 0.0000000, 0.0000000, 1.0000000, 16.0000000, 9.0000000, 0.0000000, 9.0000000, 3.0000000, 0.0000000, 0.0000000, 3.0000000, 16.0000000, 6.0000000, 0.0000000, 6.0000000, 6.0000000, 0.0000000, 0.0000000, 3.0000000, 11.0000000, 1.0000000, 0.0000000, 5.0000000, 6.0000000, 0.0000000, 0.0000000, 0.0000000, 12.0000000, 0.0000000, 0.0000000, 11.0000000, 6.0000000, 0.0000000, 0.0000000, 0.0000000, 14.0000000, 5.0000000, 12.0000000, 15.0000000, 1.0000000, 0.0000000, 0.0000000, 0.0000000, 6.0000000, 16.0000000, 13.0000000, 2.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 3.0000000, 11.0000000, 16.0000000, 10.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 10.0000000, 16.0000000, 10.0000000, 14.0000000, 6.0000000, 0.0000000, 0.0000000, 0.0000000, 15.0000000, 7.0000000, 0.0000000, 11.0000000, 8.0000000, 0.0000000, 0.0000000, 3.0000000, 16.0000000, 2.0000000, 0.0000000, 8.0000000, 8.0000000, 0.0000000, 0.0000000, 4.0000000, 12.0000000, 0.0000000, 0.0000000, 9.0000000, 8.0000000, 0.0000000, 0.0000000, 6.0000000, 15.0000000, 1.0000000, 0.0000000, 12.0000000, 8.0000000, 0.0000000, 0.0000000, 3.0000000, 15.0000000, 10.0000000, 8.0000000, 15.0000000, 4.0000000, 0.0000000, 0.0000000, 0.0000000, 5.0000000, 12.0000000, 14.0000000, 9.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 7.0000000, 15.0000000, 9.0000000, 5.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 14.0000000, 16.0000000, 14.0000000, 15.0000000, 0.0000000, 0.0000000, 0.0000000, 1.0000000, 16.0000000, 8.0000000, 4.0000000, 6.0000000, 4.0000000, 0.0000000, 0.0000000, 4.0000000, 15.0000000, 1.0000000, 0.0000000, 6.0000000, 5.0000000, 0.0000000, 0.0000000, 3.0000000, 11.0000000, 0.0000000, 0.0000000, 7.0000000, 5.0000000, 0.0000000, 0.0000000, 3.0000000, 11.0000000, 0.0000000, 1.0000000, 13.0000000, 2.0000000, 0.0000000, 0.0000000, 1.0000000, 13.0000000, 8.0000000, 13.0000000, 13.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 6.0000000, 15.0000000, 11.0000000, 1.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 3.0000000, 14.0000000, 7.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 14.0000000, 16.0000000, 14.0000000, 9.0000000, 0.0000000, 0.0000000, 0.0000000, 4.0000000, 16.0000000, 16.0000000, 11.0000000, 15.0000000, 3.0000000, 0.0000000, 0.0000000, 5.0000000, 15.0000000, 6.0000000, 0.0000000, 4.0000000, 8.0000000, 0.0000000, 0.0000000, 8.0000000, 8.0000000, 0.0000000, 0.0000000, 4.0000000, 8.0000000, 0.0000000, 0.0000000, 5.0000000, 11.0000000, 0.0000000, 0.0000000, 6.0000000, 6.0000000, 0.0000000, 0.0000000, 0.0000000, 13.0000000, 10.0000000, 5.0000000, 15.0000000, 5.0000000, 0.0000000, 0.0000000, 0.0000000, 2.0000000, 12.0000000, 14.0000000, 8.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 5.0000000, 11.0000000, 4.0000000, 1.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 15.0000000, 16.0000000, 16.0000000, 11.0000000, 0.0000000, 0.0000000, 0.0000000, 2.0000000, 16.0000000, 9.0000000, 2.0000000, 12.0000000, 4.0000000, 0.0000000, 0.0000000, 6.0000000, 13.0000000, 0.0000000, 0.0000000, 6.0000000, 6.0000000, 0.0000000, 0.0000000, 3.0000000, 13.0000000, 0.0000000, 0.0000000, 5.0000000, 9.0000000, 0.0000000, 0.0000000, 3.0000000, 16.0000000, 0.0000000, 0.0000000, 6.0000000, 8.0000000, 0.0000000, 0.0000000, 0.0000000, 13.0000000, 12.0000000, 8.0000000, 16.0000000, 7.0000000, 0.0000000, 0.0000000, 0.0000000, 4.0000000, 13.0000000, 12.0000000, 10.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 9.0000000, 15.0000000, 5.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 3.0000000, 15.0000000, 15.0000000, 16.0000000, 4.0000000, 0.0000000, 0.0000000, 0.0000000, 10.0000000, 14.0000000, 0.0000000, 9.0000000, 14.0000000, 0.0000000, 0.0000000, 0.0000000, 8.0000000, 12.0000000, 0.0000000, 0.0000000, 12.0000000, 5.0000000, 0.0000000, 0.0000000, 8.0000000, 8.0000000, 0.0000000, 0.0000000, 10.0000000, 8.0000000, 0.0000000, 0.0000000, 5.0000000, 14.0000000, 0.0000000, 0.0000000, 12.0000000, 8.0000000, 0.0000000, 0.0000000, 0.0000000, 16.0000000, 7.0000000, 12.0000000, 16.0000000, 4.0000000, 0.0000000, 0.0000000, 0.0000000, 9.0000000, 16.0000000, 15.0000000, 7.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 4.0000000, 13.0000000, 12.0000000, 1.0000000, 0.0000000, 0.0000000, 0.0000000, 2.0000000, 15.0000000, 14.0000000, 16.0000000, 13.0000000, 0.0000000, 0.0000000, 0.0000000, 6.0000000, 16.0000000, 4.0000000, 6.0000000, 16.0000000, 5.0000000, 0.0000000, 0.0000000, 8.0000000, 15.0000000, 1.0000000, 0.0000000, 12.0000000, 8.0000000, 0.0000000, 0.0000000, 8.0000000, 12.0000000, 0.0000000, 0.0000000, 12.0000000, 8.0000000, 0.0000000, 0.0000000, 5.0000000, 13.0000000, 0.0000000, 1.0000000, 13.0000000, 8.0000000, 0.0000000, 0.0000000, 1.0000000, 15.0000000, 10.0000000, 12.0000000, 16.0000000, 3.0000000, 0.0000000, 0.0000000, 0.0000000, 6.0000000, 16.0000000, 13.0000000, 4.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 3.0000000, 12.0000000, 11.0000000, 1.0000000, 0.0000000, 0.0000000, 0.0000000, 1.0000000, 14.0000000, 14.0000000, 15.0000000, 8.0000000, 0.0000000, 0.0000000, 0.0000000, 3.0000000, 16.0000000, 2.0000000, 5.0000000, 16.0000000, 1.0000000, 0.0000000, 0.0000000, 4.0000000, 16.0000000, 0.0000000, 0.0000000, 14.0000000, 6.0000000, 0.0000000, 0.0000000, 4.0000000, 16.0000000, 0.0000000, 0.0000000, 11.0000000, 8.0000000, 0.0000000, 0.0000000, 3.0000000, 16.0000000, 2.0000000, 0.0000000, 10.0000000, 8.0000000, 0.0000000, 0.0000000, 0.0000000, 10.0000000, 15.0000000, 13.0000000, 16.0000000, 3.0000000, 0.0000000, 0.0000000, 0.0000000, 1.0000000, 15.0000000, 14.0000000, 6.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 4.0000000, 14.0000000, 9.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 13.0000000, 16.0000000, 16.0000000, 10.0000000, 0.0000000, 0.0000000, 0.0000000, 4.0000000, 16.0000000, 4.0000000, 5.0000000, 16.0000000, 6.0000000, 0.0000000, 0.0000000, 8.0000000, 14.0000000, 0.0000000, 1.0000000, 15.0000000, 5.0000000, 0.0000000, 0.0000000, 6.0000000, 16.0000000, 0.0000000, 0.0000000, 13.0000000, 4.0000000, 0.0000000, 0.0000000, 4.0000000, 15.0000000, 1.0000000, 7.0000000, 16.0000000, 1.0000000, 0.0000000, 0.0000000, 2.0000000, 15.0000000, 14.0000000, 16.0000000, 7.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 4.0000000, 13.0000000, 9.0000000, 0.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 10.0000000, 15.0000000, 6.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 2.0000000, 16.0000000, 14.0000000, 16.0000000, 7.0000000, 0.0000000, 0.0000000, 0.0000000, 4.0000000, 16.0000000, 8.0000000, 5.0000000, 16.0000000, 1.0000000, 0.0000000, 0.0000000, 5.0000000, 12.0000000, 0.0000000, 0.0000000, 12.0000000, 8.0000000, 0.0000000, 0.0000000, 8.0000000, 9.0000000, 0.0000000, 0.0000000, 12.0000000, 8.0000000, 0.0000000, 0.0000000, 5.0000000, 12.0000000, 0.0000000, 1.0000000, 15.0000000, 3.0000000, 0.0000000, 0.0000000, 4.0000000, 13.0000000, 4.0000000, 12.0000000, 13.0000000, 0.0000000, 0.0000000, 0.0000000, 0.0000000, 9.0000000, 16.0000000, 13.0000000, 4.0000000, 0.0000000, 0.0000000} , {0.0000000, 0.0000000, 2.0000000, 15.0000000, 10.0000000, 1.0000000, 0.0000000, 0.0000000, 0.0000000, 2.0000000, 13.0000000, 12.0000000, 14.0000000, 9.0000000, 0.0000000, 0.0000000, 0.0000000, 6.0000000, 16.0000000, 1.0000000, 1.0000000, 14.0000000, 2.0000000, 0.0000000, 0.0000000, 8.0000000, 16.0000000, 0.0000000, 0.0000000, 10.0000000, 5.0000000, 0.0000000, 0.0000000, 8.0000000, 14.0000000, 2.0000000, 0.0000000, 8.0000000, 8.0000000, 0.0000000, 0.0000000, 6.0000000, 14.0000000, 0.0000000, 0.0000000, 8.0000000, 8.0000000, 0.0000000, 0.0000000, 1.0000000, 14.0000000, 12.0000000, 8.0000000, 15.0000000, 6.0000000, 0.0000000, 0.0000000, 0.0000000, 3.0000000, 13.0000000, 16.0000000, 8.0000000, 1.0000000, 0.0000000} };
66,133
C++
.h
96
680.416667
775
0.724218
eloquentarduino/EloquentMicroML
34
11
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,711
iris.h
eloquentarduino_EloquentMicroML/examples/IrisClassificationTrainingExample/iris.h
#define POSITIVE_SAMPLES 50 #define NEGATIVE_SAMPLES 50 #define FEATURES_DIM 4 float X_positive[POSITIVE_SAMPLES][FEATURES_DIM] = { {5.1,3.5,1.4,.2}, {4.9,3,1.4,.2}, {4.7,3.2,1.3,.2}, {4.6,3.1,1.5,.2}, {5,3.6,1.4,.2}, {5.4,3.9,1.7,.4}, {4.6,3.4,1.4,.3}, {5,3.4,1.5,.2}, {4.4,2.9,1.4,.2}, {4.9,3.1,1.5,.1}, {5.4,3.7,1.5,.2}, {4.8,3.4,1.6,.2}, {4.8,3,1.4,.1}, {4.3,3,1.1,.1}, {5.8,4,1.2,.2}, {5.7,4.4,1.5,.4}, {5.4,3.9,1.3,.4}, {5.1,3.5,1.4,.3}, {5.7,3.8,1.7,.3}, {5.1,3.8,1.5,.3}, {5.4,3.4,1.7,.2}, {5.1,3.7,1.5,.4}, {4.6,3.6,1,.2}, {5.1,3.3,1.7,.5}, {4.8,3.4,1.9,.2}, {5,3,1.6,.2}, {5,3.4,1.6,.4}, {5.2,3.5,1.5,.2}, {5.2,3.4,1.4,.2}, {4.7,3.2,1.6,.2}, {4.8,3.1,1.6,.2}, {5.4,3.4,1.5,.4}, {5.2,4.1,1.5,.1}, {5.5,4.2,1.4,.2}, {4.9,3.1,1.5,.2}, {5,3.2,1.2,.2}, {5.5,3.5,1.3,.2}, {4.9,3.6,1.4,.1}, {4.4,3,1.3,.2}, {5.1,3.4,1.5,.2}, {5,3.5,1.3,.3}, {4.5,2.3,1.3,.3}, {4.4,3.2,1.3,.2}, {5,3.5,1.6,.6}, {5.1,3.8,1.9,.4}, {4.8,3,1.4,.3}, {5.1,3.8,1.6,.2}, {4.6,3.2,1.4,.2}, {5.3,3.7,1.5,.2}, {5,3.3,1.4,.2} }; float X_negative[NEGATIVE_SAMPLES][FEATURES_DIM] = { {7,3.2,4.7,1.4}, {6.4,3.2,4.5,1.5}, {6.9,3.1,4.9,1.5}, {5.5,2.3,4,1.3}, {6.5,2.8,4.6,1.5}, {5.7,2.8,4.5,1.3}, {6.3,3.3,4.7,1.6}, {4.9,2.4,3.3,1}, {6.6,2.9,4.6,1.3}, {5.2,2.7,3.9,1.4}, {5,2,3.5,1}, {5.9,3,4.2,1.5}, {6,2.2,4,1}, {6.1,2.9,4.7,1.4}, {5.6,2.9,3.6,1.3}, {6.7,3.1,4.4,1.4}, {5.6,3,4.5,1.5}, {5.8,2.7,4.1,1}, {6.2,2.2,4.5,1.5}, {5.6,2.5,3.9,1.1}, {5.9,3.2,4.8,1.8}, {6.1,2.8,4,1.3}, {6.3,2.5,4.9,1.5}, {6.1,2.8,4.7,1.2}, {6.4,2.9,4.3,1.3}, {6.6,3,4.4,1.4}, {6.8,2.8,4.8,1.4}, {6.7,3,5,1.7}, {6,2.9,4.5,1.5}, {5.7,2.6,3.5,1}, {5.5,2.4,3.8,1.1}, {5.5,2.4,3.7,1}, {5.8,2.7,3.9,1.2}, {6,2.7,5.1,1.6}, {5.4,3,4.5,1.5}, {6,3.4,4.5,1.6}, {6.7,3.1,4.7,1.5}, {6.3,2.3,4.4,1.3}, {5.6,3,4.1,1.3}, {5.5,2.5,4,1.3}, {5.5,2.6,4.4,1.2}, {6.1,3,4.6,1.4}, {5.8,2.6,4,1.2}, {5,2.3,3.3,1}, {5.6,2.7,4.2,1.3}, {5.7,3,4.2,1.2}, {5.7,2.9,4.2,1.3}, {6.2,2.9,4.3,1.3}, {5.1,2.5,3,1.1}, {5.7,2.8,4.1,1.3} };
2,748
C++
.h
107
17.196262
52
0.321212
eloquentarduino/EloquentMicroML
34
11
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,712
breast_cancer.h
eloquentarduino_EloquentMicroML/examples/IrisClassificationTrainingExample/breast_cancer.h
#define FEATURES_DIM 30 #define POSITIVE_SAMPLES 40 #define NEGATIVE_SAMPLES 40 float X_positive[POSITIVE_SAMPLES][FEATURES_DIM] = { {0.007925415, 0.004572863, 0.054098996, 0.440986119, 0.000052161, 0.000122295, 0.000132208, 0.000064804, 0.000106568, 0.000034675, 0.000482397, 0.000398826, 0.003783846, 0.067579691, 0.000002819, 0.000021604, 0.000023671, 0.000006991, 0.000013230, 0.000002728, 0.011181047, 0.007634655, 0.081324713, 0.889461512, 0.000071456, 0.000293227, 0.000313624, 0.000116921, 0.000202695, 0.000052381}, {0.008665756, 0.007486168, 0.055988282, 0.558618978, 0.000035699, 0.000033130, 0.000036609, 0.000029561, 0.000076336, 0.000023874, 0.000228966, 0.000309178, 0.001431514, 0.031208517, 0.000002201, 0.000005510, 0.000007836, 0.000005645, 0.000005852, 0.000001488, 0.010527819, 0.009862195, 0.066899467, 0.824026185, 0.000052155, 0.000078611, 0.000101782, 0.000078358, 0.000115852, 0.000037502}, {0.009366683, 0.010108787, 0.061841988, 0.572276245, 0.000052138, 0.000076066, 0.000093905, 0.000060843, 0.000098424, 0.000028538, 0.000354688, 0.000374334, 0.002181119, 0.044730786, 0.000002926, 0.000019057, 0.000018229, 0.000009790, 0.000010703, 0.000002174, 0.011212428, 0.012144815, 0.072545409, 0.812984292, 0.000068692, 0.000201938, 0.000214259, 0.000115597, 0.000171873, 0.000041662}, {0.016324655, 0.029132790, 0.110899010, 0.551921989, 0.000203701, 0.000405829, 0.000345076, 0.000150381, 0.000371236, 0.000139288, 0.000708450, 0.001652478, 0.004924556, 0.038924724, 0.000013023, 0.000106611, 0.000080923, 0.000026688, 0.000085240, 0.000013163, 0.021313538, 0.037881204, 0.141332626, 0.811515444, 0.000299905, 0.001238358, 0.000981909, 0.000368091, 0.000948888, 0.000247300}, {0.009883338, 0.006985070, 0.065807736, 0.631773751, 0.000048857, 0.000064687, 0.000096447, 0.000050805, 0.000088117, 0.000028656, 0.000368835, 0.000380574, 0.002648871, 0.046002092, 0.000005597, 0.000011988, 0.000027706, 0.000009182, 0.000008554, 0.000002492, 0.010979322, 0.008120022, 0.074137213, 0.767188634, 0.000066928, 0.000099856, 0.000194842, 0.000079154, 0.000115151, 0.000037400}, {0.013945213, 0.017585529, 0.092486442, 0.534398465, 0.000143148, 0.000190417, 0.000176751, 0.000090605, 0.000233764, 0.000085273, 0.000374673, 0.000997111, 0.002483256, 0.030455448, 0.000008412, 0.000037467, 0.000041130, 0.000012736, 0.000024250, 0.000005692, 0.017327907, 0.026602313, 0.115818070, 0.830664225, 0.000200609, 0.000587939, 0.000599812, 0.000195009, 0.000446359, 0.000139340}, {0.009483176, 0.010382130, 0.062147282, 0.540411148, 0.000049172, 0.000056639, 0.000058562, 0.000038452, 0.000093221, 0.000029837, 0.000232117, 0.000401775, 0.001652411, 0.028013043, 0.000002242, 0.000007181, 0.000011712, 0.000005399, 0.000007114, 0.000001132, 0.011889045, 0.014372858, 0.079606719, 0.834519522, 0.000074930, 0.000133856, 0.000196627, 0.000100392, 0.000159161, 0.000043482}, {0.012711538, 0.019313008, 0.083630981, 0.535813127, 0.000110241, 0.000152520, 0.000086839, 0.000055491, 0.000203607, 0.000069084, 0.000541005, 0.001276717, 0.003575178, 0.047248723, 0.000008164, 0.000028084, 0.000023068, 0.000013425, 0.000013778, 0.000005018, 0.015817567, 0.026090641, 0.102545305, 0.831673949, 0.000153354, 0.000341385, 0.000248297, 0.000144268, 0.000296324, 0.000106718}, {0.014200063, 0.023834259, 0.095577344, 0.567784039, 0.000139051, 0.000211035, 0.000203061, 0.000102164, 0.000256693, 0.000080711, 0.000334575, 0.001094497, 0.002628104, 0.026565040, 0.000006260, 0.000038253, 0.000038810, 0.000013392, 0.000023408, 0.000004095, 0.016919921, 0.033566763, 0.116003588, 0.807546634, 0.000186021, 0.000589958, 0.000588756, 0.000225016, 0.000478214, 0.000117096}, {0.014365026, 0.027715507, 0.096808285, 0.548660982, 0.000136733, 0.000276233, 0.000262052, 0.000098492, 0.000234037, 0.000095033, 0.000343100, 0.001843473, 0.002350745, 0.027600218, 0.000008242, 0.000083204, 0.000089268, 0.000016509, 0.000020625, 0.000011621, 0.017397130, 0.046899619, 0.112579838, 0.820166889, 0.000213631, 0.001219759, 0.001273945, 0.000254789, 0.000503352, 0.000239225}, {0.011359644, 0.016479284, 0.072823688, 0.565713129, 0.000058188, 0.000047289, 0.000023393, 0.000023563, 0.000108349, 0.000040397, 0.000269100, 0.000841692, 0.001748619, 0.028725293, 0.000002857, 0.000006573, 0.000007807, 0.000005383, 0.000010353, 0.000002157, 0.013607464, 0.024024017, 0.087785517, 0.815455125, 0.000083744, 0.000109980, 0.000103456, 0.000070732, 0.000209040, 0.000059932}, {0.010334705, 0.011716596, 0.067850156, 0.511495870, 0.000063593, 0.000084616, 0.000065191, 0.000043264, 0.000120637, 0.000039832, 0.000331261, 0.000645035, 0.002334150, 0.035470699, 0.000003780, 0.000026596, 0.000018279, 0.000008396, 0.000013151, 0.000002714, 0.013373554, 0.017866335, 0.089397165, 0.850746652, 0.000091427, 0.000367347, 0.000259677, 0.000118541, 0.000248347, 0.000068636}, {0.010902163, 0.014103998, 0.075297153, 0.638660895, 0.000055392, 0.000139789, 0.000117439, 0.000063582, 0.000136320, 0.000044359, 0.000543402, 0.002029156, 0.006295615, 0.066084057, 0.000001785, 0.000047186, 0.000050558, 0.000023260, 0.000025501, 0.000007302, 0.011920153, 0.017027166, 0.086273248, 0.757521204, 0.000058975, 0.000221967, 0.000206953, 0.000100491, 0.000180622, 0.000058179}, {0.013360475, 0.020188226, 0.087412068, 0.659763028, 0.000070815, 0.000084462, 0.000083771, 0.000045215, 0.000155690, 0.000044996, 0.000339955, 0.000908681, 0.002447032, 0.030834460, 0.000008235, 0.000026350, 0.000042577, 0.000016791, 0.000025128, 0.000002530, 0.014194978, 0.023315504, 0.094408406, 0.738830067, 0.000095336, 0.000162180, 0.000195729, 0.000094324, 0.000236780, 0.000052995}, {0.014943869, 0.024608949, 0.101875171, 0.629427471, 0.000123099, 0.000249572, 0.000231614, 0.000087345, 0.000225192, 0.000083612, 0.000230852, 0.001272351, 0.002243213, 0.020908355, 0.000006997, 0.000064608, 0.000059873, 0.000017719, 0.000021344, 0.000008809, 0.016358801, 0.034840002, 0.118419002, 0.759383618, 0.000179696, 0.000840797, 0.000755683, 0.000240321, 0.000391392, 0.000155751}, {0.012504203, 0.023684027, 0.083186488, 0.566559067, 0.000097952, 0.000137168, 0.000140952, 0.000063329, 0.000198055, 0.000060861, 0.000318195, 0.000888366, 0.002475901, 0.027992559, 0.000004822, 0.000036463, 0.000040772, 0.000009374, 0.000015970, 0.000004701, 0.015015363, 0.031931297, 0.106724317, 0.811139211, 0.000144306, 0.000565613, 0.000604226, 0.000147230, 0.000362742, 0.000115324}, {0.010966838, 0.015038314, 0.070776446, 0.511362435, 0.000073712, 0.000053788, 0.000055245, 0.000039288, 0.000118484, 0.000044241, 0.000353135, 0.000926354, 0.002386856, 0.033916515, 0.000004272, 0.000008681, 0.000014926, 0.000008285, 0.000010534, 0.000001558, 0.014246430, 0.023069207, 0.092187180, 0.850154056, 0.000109370, 0.000139775, 0.000217693, 0.000120202, 0.000226284, 0.000061378}, {0.010405852, 0.013341166, 0.069737915, 0.515325129, 0.000075480, 0.000130444, 0.000111090, 0.000066319, 0.000139605, 0.000047455, 0.000367205, 0.000692218, 0.002486308, 0.034952824, 0.000004533, 0.000016135, 0.000020567, 0.000008367, 0.000010896, 0.000002672, 0.013521801, 0.020308507, 0.088252977, 0.848338189, 0.000115413, 0.000273081, 0.000308627, 0.000133734, 0.000239083, 0.000073673}, {0.007279816, 0.008139724, 0.047772647, 0.463027195, 0.000036127, 0.000037740, 0.000054351, 0.000034903, 0.000058136, 0.000019826, 0.000278625, 0.000373729, 0.002155281, 0.041304966, 0.000002386, 0.000006956, 0.000012461, 0.000005589, 0.000004983, 0.000000734, 0.010039606, 0.011347841, 0.068645619, 0.881221598, 0.000055563, 0.000115757, 0.000197411, 0.000087755, 0.000101719, 0.000027984}, {0.014724007, 0.015615712, 0.095107951, 0.615820180, 0.000106341, 0.000088398, 0.000072467, 0.000051991, 0.000204983, 0.000062702, 0.000293501, 0.000857559, 0.002237962, 0.025620207, 0.000009202, 0.000015877, 0.000025957, 0.000014300, 0.000021531, 0.000002501, 0.016431296, 0.020944193, 0.108418280, 0.773390980, 0.000156592, 0.000192804, 0.000259899, 0.000140063, 0.000323732, 0.000078938}, {0.015795051, 0.018970967, 0.103404448, 0.627937790, 0.000129814, 0.000153362, 0.000055162, 0.000037556, 0.000237530, 0.000082248, 0.000223642, 0.000902902, 0.001670073, 0.017715091, 0.000004947, 0.000022920, 0.000020505, 0.000007837, 0.000020263, 0.000002928, 0.017509804, 0.024743164, 0.116035658, 0.761374570, 0.000158434, 0.000335222, 0.000228231, 0.000087948, 0.000384491, 0.000098816}, {0.022222091, 0.029086996, 0.141085958, 0.640428305, 0.000239430, 0.000151795, 0.000069117, 0.000048541, 0.000424380, 0.000161452, 0.000648378, 0.002283937, 0.004463591, 0.036709472, 0.000022461, 0.000033483, 0.000046413, 0.000033226, 0.000047395, 0.000006940, 0.023919611, 0.036615945, 0.152285854, 0.736293805, 0.000309575, 0.000268423, 0.000207327, 0.000145599, 0.000572855, 0.000181747}, {0.012576898, 0.011691431, 0.084037288, 0.577520639, 0.000087973, 0.000175044, 0.000170288, 0.000079987, 0.000206691, 0.000057654, 0.000359762, 0.000581784, 0.002774460, 0.036820630, 0.000005566, 0.000043683, 0.000052849, 0.000018464, 0.000030106, 0.000003603, 0.014815159, 0.015643234, 0.102566485, 0.804216348, 0.000113963, 0.000488154, 0.000516932, 0.000196196, 0.000382636, 0.000081545}, {0.007102607, 0.007733652, 0.046052821, 0.471269390, 0.000031646, 0.000034305, 0.000036822, 0.000028974, 0.000059379, 0.000017716, 0.000232177, 0.000378291, 0.001444353, 0.031548867, 0.000001587, 0.000004226, 0.000005757, 0.000003484, 0.000003635, 0.000000667, 0.009791259, 0.011946209, 0.063104448, 0.877756022, 0.000047026, 0.000087272, 0.000105901, 0.000067434, 0.000094724, 0.000025262}, {0.006924921, 0.008892181, 0.045750231, 0.376233264, 0.000046624, 0.000060598, 0.000063426, 0.000038139, 0.000082974, 0.000026327, 0.000335557, 0.000375027, 0.002268796, 0.042672488, 0.000002515, 0.000007827, 0.000011400, 0.000004700, 0.000006106, 0.000001165, 0.011005010, 0.013126157, 0.073616281, 0.921243290, 0.000075072, 0.000148813, 0.000195270, 0.000087133, 0.000150269, 0.000039778}, {0.009865893, 0.009439944, 0.066770339, 0.525355935, 0.000068267, 0.000131008, 0.000128303, 0.000080642, 0.000174984, 0.000042670, 0.000602084, 0.000561792, 0.004188112, 0.064122550, 0.000004622, 0.000021867, 0.000021482, 0.000013797, 0.000013285, 0.000004285, 0.012807242, 0.012317976, 0.087722411, 0.840960908, 0.000088931, 0.000227307, 0.000221781, 0.000146780, 0.000234042, 0.000060957}, {0.013055345, 0.019278572, 0.087223676, 0.577372201, 0.000094378, 0.000167266, 0.000127599, 0.000078645, 0.000201650, 0.000061999, 0.000227887, 0.000880385, 0.001889354, 0.018848767, 0.000003986, 0.000027355, 0.000024006, 0.000012106, 0.000013020, 0.000003323, 0.015777448, 0.029737176, 0.109600430, 0.803109688, 0.000136553, 0.000594833, 0.000495978, 0.000241855, 0.000381811, 0.000114167}, {0.010386337, 0.011301629, 0.068144639, 0.610567036, 0.000052685, 0.000059494, 0.000083158, 0.000043147, 0.000094710, 0.000031806, 0.000476008, 0.001031936, 0.003143248, 0.052205156, 0.000006000, 0.000015192, 0.000028357, 0.000010665, 0.000012797, 0.000002354, 0.011893221, 0.015213946, 0.078078911, 0.783021528, 0.000074674, 0.000118151, 0.000192323, 0.000083158, 0.000130652, 0.000041417}, {0.010352772, 0.017098991, 0.069289143, 0.495579767, 0.000073214, 0.000114828, 0.000113880, 0.000059214, 0.000130323, 0.000044253, 0.000297050, 0.000684772, 0.002366928, 0.029434353, 0.000003541, 0.000020685, 0.000024197, 0.000007328, 0.000011963, 0.000002008, 0.013715732, 0.024839887, 0.101024111, 0.858671114, 0.000111039, 0.000413434, 0.000428659, 0.000136954, 0.000272488, 0.000066826}, {0.011215359, 0.009606781, 0.073407299, 0.609663577, 0.000062856, 0.000073854, 0.000063035, 0.000050766, 0.000111005, 0.000039251, 0.000383186, 0.000525022, 0.002971400, 0.039001617, 0.000003592, 0.000019360, 0.000021748, 0.000008643, 0.000012288, 0.000002389, 0.012772870, 0.012460091, 0.086109953, 0.783223964, 0.000080110, 0.000179497, 0.000158879, 0.000092940, 0.000175922, 0.000050549}, {0.009282903, 0.012511738, 0.062184984, 0.542125501, 0.000053017, 0.000094025, 0.000115550, 0.000061986, 0.000108774, 0.000030878, 0.000413919, 0.000730474, 0.002777397, 0.052319097, 0.000003113, 0.000016812, 0.000025890, 0.000005770, 0.000010000, 0.000002272, 0.011535115, 0.016946405, 0.079973477, 0.832122781, 0.000074293, 0.000212117, 0.000305593, 0.000092082, 0.000171607, 0.000048741}, {0.011795821, 0.018630224, 0.077639218, 0.438955981, 0.000110486, 0.000151034, 0.000121346, 0.000051627, 0.000229241, 0.000077699, 0.000480700, 0.001026157, 0.003462034, 0.040847016, 0.000005530, 0.000034013, 0.000041893, 0.000010401, 0.000022645, 0.000005646, 0.016757239, 0.028015075, 0.118954480, 0.885383976, 0.000163089, 0.000575345, 0.000693004, 0.000154023, 0.000474324, 0.000139677}, {0.010448864, 0.014721724, 0.069249813, 0.552095359, 0.000073486, 0.000091842, 0.000148384, 0.000073854, 0.000138008, 0.000039180, 0.000368903, 0.000858256, 0.002455053, 0.041611279, 0.000005076, 0.000018921, 0.000030954, 0.000006827, 0.000012905, 0.000002366, 0.012818582, 0.019700589, 0.083554074, 0.825104150, 0.000100314, 0.000218493, 0.000343057, 0.000113390, 0.000216713, 0.000052072}, {0.008901008, 0.012226761, 0.059078306, 0.536739576, 0.000043424, 0.000079402, 0.000076539, 0.000035073, 0.000085592, 0.000028920, 0.000256730, 0.000280010, 0.001629619, 0.031488414, 0.000002316, 0.000015326, 0.000016153, 0.000004454, 0.000007127, 0.000001800, 0.011155130, 0.014273023, 0.074552296, 0.837443073, 0.000069702, 0.000304399, 0.000281349, 0.000082451, 0.000169613, 0.000051873}, {0.010697105, 0.011857671, 0.070960337, 0.535319479, 0.000068971, 0.000103390, 0.000089795, 0.000051410, 0.000132504, 0.000043206, 0.000221502, 0.000454743, 0.001447724, 0.023231221, 0.000002775, 0.000019020, 0.000017667, 0.000006013, 0.000011294, 0.000002531, 0.013402882, 0.018078306, 0.088004082, 0.836270891, 0.000095896, 0.000384910, 0.000349762, 0.000123617, 0.000283178, 0.000081770}, {0.011036931, 0.014234609, 0.072590571, 0.573274308, 0.000063360, 0.000088084, 0.000088876, 0.000039678, 0.000125006, 0.000037291, 0.000304274, 0.000606372, 0.001983219, 0.029794440, 0.000003808, 0.000016476, 0.000024362, 0.000007879, 0.000018388, 0.000001757, 0.013192891, 0.019133318, 0.088018540, 0.810298016, 0.000103051, 0.000252847, 0.000356623, 0.000119534, 0.000320625, 0.000056919}, {0.013809614, 0.021048759, 0.090736431, 0.613437580, 0.000095194, 0.000106407, 0.000127824, 0.000054250, 0.000182675, 0.000059357, 0.000277161, 0.000987509, 0.002574887, 0.024140174, 0.000005696, 0.000029024, 0.000046662, 0.000011251, 0.000019653, 0.000003898, 0.015398931, 0.029421746, 0.112608921, 0.774888924, 0.000140131, 0.000410703, 0.000502573, 0.000140228, 0.000348002, 0.000098266}, {0.016996127, 0.024026759, 0.107755187, 0.683236496, 0.000117173, 0.000049123, 0.000033418, 0.000038127, 0.000191353, 0.000076476, 0.000239876, 0.003054868, 0.001526130, 0.018470082, 0.000005677, 0.000006390, 0.000017518, 0.000015183, 0.000034840, 0.000002318, 0.017348311, 0.029753006, 0.110168298, 0.712063389, 0.000126538, 0.000060250, 0.000063041, 0.000065389, 0.000259181, 0.000080467}, {0.014930947, 0.025100726, 0.095163624, 0.696047105, 0.000093500, 0.000051108, 0.000023886, 0.000028876, 0.000155883, 0.000054823, 0.001209217, 0.002179380, 0.008045181, 0.105582417, 0.000006856, 0.000010897, 0.000018108, 0.000019094, 0.000007851, 0.000001747, 0.014930947, 0.025100726, 0.095163624, 0.696047105, 0.000093500, 0.000051108, 0.000023886, 0.000028876, 0.000155883, 0.000054823}, {0.014352577, 0.022167704, 0.094122238, 0.595397688, 0.000108177, 0.000133624, 0.000113181, 0.000057911, 0.000183134, 0.000068345, 0.000226788, 0.000629682, 0.001645010, 0.019718822, 0.000005714, 0.000023839, 0.000032464, 0.000013437, 0.000014661, 0.000003393, 0.016535276, 0.027704306, 0.114245658, 0.788326981, 0.000171422, 0.000449849, 0.000535560, 0.000240416, 0.000298870, 0.000114033} }; float X_negative[NEGATIVE_SAMPLES][FEATURES_DIM] = { {0.013731964,0.022048794,0.088052134,0.575230348,0.000083393,0.000061620,0.000031776,0.000020751,0.000182275,0.000057084,0.000243681,0.000844454,0.001606149,0.020975984,0.000003351,0.000011259,0.000014202,0.000007030,0.000014100,0.000001314,0.016276056,0.030907137,0.104726662,0.805015970,0.000111777,0.000208738,0.000213029,0.000113616,0.000305904,0.000073012}, {0.016957465,0.033063184,0.111346275,0.574695446,0.000190017,0.000188623,0.000161677,0.000087792,0.000293465,0.000106391,0.000366405,0.002211439,0.002821598,0.026280199,0.000012488,0.000027318,0.000040187,0.000016059,0.000021015,0.000004708,0.019884370,0.054728475,0.135071239,0.795994231,0.000295633,0.000417820,0.000623013,0.000220524,0.000459013,0.000148761}, {0.009527505,0.012395249,0.064099576,0.551566107,0.000045369,0.000109414,0.000105267,0.000049766,0.000115409,0.000031690,0.000490164,0.000832345,0.004411530,0.052408772,0.000003271,0.000050260,0.000048577,0.000013180,0.000026644,0.000003820,0.012035532,0.016571964,0.088630278,0.824851126,0.000062301,0.000371907,0.000361815,0.000124552,0.000233316,0.000051859}, {0.012419713,0.018966248,0.081663352,0.509881581,0.000097356,0.000134297,0.000092091,0.000057591,0.000184612,0.000063427,0.000346405,0.000771462,0.002269777,0.029300422,0.000004743,0.000020079,0.000020435,0.000008941,0.000016076,0.000003102,0.016254112,0.026186141,0.105773307,0.848430981,0.000143089,0.000348276,0.000342664,0.000139535,0.000349679,0.000096047}, {0.014271661,0.023634391,0.092565322,0.575959593,0.000105266,0.000113458,0.000089499,0.000056913,0.000189205,0.000066937,0.000210011,0.000663518,0.001445588,0.015702078,0.000003630,0.000014998,0.000015735,0.000007426,0.000012061,0.000001864,0.017587628,0.032390277,0.114324999,0.802659023,0.000162872,0.000423057,0.000403984,0.000174142,0.000400192,0.000104225}, {0.009751148,0.009202155,0.064676512,0.562586313,0.000057461,0.000088152,0.000103211,0.000052756,0.000099707,0.000031627,0.000328820,0.000346806,0.002244594,0.037415127,0.000003291,0.000020883,0.000029039,0.000008862,0.000012695,0.000001848,0.011931431,0.011147156,0.078741170,0.819305533,0.000087786,0.000266131,0.000384033,0.000124334,0.000198631,0.000048024}, {0.025131164,0.051636019,0.158556919,0.619080293,0.000263699,0.000182229,0.000048692,0.000018143,0.000542423,0.000199400,0.000479258,0.002933502,0.003354501,0.025158761,0.000027498,0.000050471,0.000048692,0.000018143,0.000078926,0.000007917,0.027486061,0.067335331,0.175574728,0.742651050,0.000397695,0.000416093,0.000210960,0.000078619,0.000952077,0.000227180}, {0.014018671,0.019862446,0.091520529,0.569049489,0.000123262,0.000131033,0.000130500,0.000078130,0.000226513,0.000072137,0.000305601,0.000951290,0.002019242,0.025812664,0.000006953,0.000024865,0.000030922,0.000012933,0.000018553,0.000003878,0.016679771,0.029751091,0.109424406,0.808335544,0.000190109,0.000443446,0.000532859,0.000222255,0.000415132,0.000125497}, {0.016148142,0.019605587,0.104580999,0.602104596,0.000138164,0.000121841,0.000088339,0.000036839,0.000224466,0.000080982,0.000353249,0.000977465,0.002476495,0.026627684,0.000007354,0.000019123,0.000031117,0.000007585,0.000019137,0.000003246,0.018439705,0.027739962,0.120447721,0.780739234,0.000200210,0.000288924,0.000408729,0.000087749,0.000368124,0.000111241}, {0.014872465,0.024585320,0.095816598,0.618491672,0.000096489,0.000084869,0.000052379,0.000037308,0.000199439,0.000063040,0.000257760,0.001491656,0.001912804,0.022270110,0.000004912,0.000015236,0.000023097,0.000013053,0.000018092,0.000002156,0.016702583,0.035080936,0.109145589,0.770413512,0.000128108,0.000188634,0.000251586,0.000141338,0.000316522,0.000076259}, {0.017253243,0.031689631,0.109622649,0.627777456,0.000126715,0.000072857,0.000024310,0.000016358,0.000219333,0.000086384,0.000595941,0.001775206,0.003865842,0.041768694,0.000008593,0.000014316,0.000017136,0.000010923,0.000035299,0.000002595,0.019043121,0.037734135,0.121740999,0.757763627,0.000159182,0.000126392,0.000081029,0.000054503,0.000356948,0.000096287}, {0.015479346,0.018543439,0.098970216,0.648906888,0.000087213,0.000068761,0.000021074,0.000019553,0.000153545,0.000067558,0.000212444,0.001047920,0.001644397,0.016512059,0.000005081,0.000013357,0.000012245,0.000009029,0.000015037,0.000002895,0.016648241,0.026317158,0.109036330,0.745255602,0.000123585,0.000179533,0.000119159,0.000097438,0.000266236,0.000091072}, {0.017170061,0.026229642,0.108873145,0.629281313,0.000118796,0.000068321,0.000028358,0.000019399,0.000268624,0.000087864,0.000326864,0.000910128,0.002185803,0.025122360,0.000010368,0.000012051,0.000018853,0.000011504,0.000028703,0.000003789,0.018838175,0.030673150,0.120319853,0.758128675,0.000164510,0.000128071,0.000132342,0.000090538,0.000400491,0.000106529}, {0.010780625,0.011064637,0.071180526,0.611217652,0.000067926,0.000087866,0.000104848,0.000062719,0.000123782,0.000037336,0.000493293,0.000942565,0.002885681,0.058465069,0.000002307,0.000017520,0.000016668,0.000005457,0.000015822,0.000003033,0.012188852,0.014277524,0.079937565,0.781624897,0.000075737,0.000135912,0.000155201,0.000078399,0.000178750,0.000047258}, {0.011955390,0.017434283,0.077005377,0.564357726,0.000071701,0.000056064,0.000041591,0.000026397,0.000127946,0.000045003,0.000245838,0.000660238,0.001660295,0.023681172,0.000003701,0.000008155,0.000012692,0.000007301,0.000008670,0.000001290,0.014330632,0.025090483,0.093188699,0.815500081,0.000109974,0.000162862,0.000214722,0.000121137,0.000211792,0.000062334}, {0.017420546,0.028353754,0.110904763,0.618489886,0.000144022,0.000082763,0.000045910,0.000034448,0.000290342,0.000089326,0.000491314,0.001450351,0.003301133,0.035491339,0.000012594,0.000013189,0.000020400,0.000013111,0.000048663,0.000003608,0.019416651,0.033979139,0.123713099,0.765475746,0.000188874,0.000131864,0.000137247,0.000095511,0.000499933,0.000106398}, {0.007851921,0.007590326,0.051297034,0.470869989,0.000043040,0.000051788,0.000054076,0.000036762,0.000078356,0.000024365,0.000297359,0.000487628,0.001977082,0.041895984,0.000002640,0.000009426,0.000012037,0.000006286,0.000007570,0.000001066,0.010684498,0.011501980,0.069526897,0.876750110,0.000066380,0.000143509,0.000158551,0.000085468,0.000144572,0.000033901}, {0.012306262,0.018062012,0.079936323,0.549556990,0.000095120,0.000114195,0.000108171,0.000067956,0.000169577,0.000056537,0.000353544,0.000962080,0.002288078,0.033538955,0.000003061,0.000023885,0.000021517,0.000010641,0.000015201,0.000003437,0.014949891,0.025683361,0.096793642,0.824460973,0.000114446,0.000358898,0.000300085,0.000153431,0.000309372,0.000091523}, {0.015770535,0.023335558,0.099831715,0.637105439,0.000097403,0.000045789,0.000000836,0.000005036,0.000219821,0.000066478,0.000488222,0.001467083,0.003135980,0.039831175,0.000009053,0.000010384,0.000000836,0.000005036,0.000026465,0.000003613,0.017196530,0.026888460,0.109052342,0.754206192,0.000123385,0.000074816,0.000002230,0.000013426,0.000294746,0.000076001}, {0.023620016,0.032313760,0.148933819,0.615304423,0.000267281,0.000144494,0.000056487,0.000021375,0.000461273,0.000196980,0.000427287,0.001588554,0.002866853,0.022808746,0.000027709,0.000028915,0.000054295,0.000015738,0.000057282,0.000007641,0.026056566,0.042207965,0.164172539,0.753439581,0.000474977,0.000339582,0.000320123,0.000121115,0.000882530,0.000247383}, {0.020581917,0.030113956,0.130635474,0.631219278,0.000229497,0.000163137,0.000021938,0.000026107,0.000555125,0.000140856,0.001043870,0.002916278,0.006702784,0.070063518,0.000015207,0.000022241,0.000015512,0.000016581,0.000084655,0.000012048,0.022302137,0.035315089,0.141381785,0.745968022,0.000258033,0.000199667,0.000043876,0.000052193,0.000719861,0.000162308}, {0.023599037,0.057584065,0.150025978,0.608777202,0.000341168,0.000246009,0.000082341,0.000025413,0.000501733,0.000185460,0.000983156,0.005673320,0.006842568,0.050475260,0.000032744,0.000086788,0.000082341,0.000025413,0.000092140,0.000008366,0.026253174,0.074217022,0.170336849,0.751776716,0.000449858,0.000466052,0.000247052,0.000076248,0.000815729,0.000211672}, {0.012189493,0.018947178,0.082477962,0.552333749,0.000089732,0.000171765,0.000182629,0.000074018,0.000166718,0.000062376,0.000601862,0.001084651,0.004596081,0.051991397,0.000008047,0.000060357,0.000059014,0.000015808,0.000014542,0.000005229,0.015114972,0.025242944,0.101878503,0.820759226,0.000140286,0.000534370,0.000592110,0.000152689,0.000243277,0.000096832}, {0.022031819,0.033289111,0.142187255,0.626632683,0.000185444,0.000210183,0.000143820,0.000052359,0.000562264,0.000167238,0.000984262,0.005440104,0.006263925,0.056490612,0.000020987,0.000094583,0.000103566,0.000037468,0.000100684,0.000013983,0.024042136,0.046186840,0.157534832,0.744801820,0.000236242,0.000403024,0.000335533,0.000122180,0.000788275,0.000203914}, {0.012310701,0.023145672,0.080281694,0.484466870,0.000108932,0.000122524,0.000109515,0.000066728,0.000184952,0.000063981,0.000413108,0.001143691,0.002841753,0.035398120,0.000007554,0.000025709,0.000028864,0.000012524,0.000015874,0.000003496,0.016592262,0.032495203,0.108543880,0.862428699,0.000179709,0.000394273,0.000390680,0.000166602,0.000328447,0.000100097}, {0.012823065,0.020770242,0.084503826,0.579814242,0.000101682,0.000128317,0.000109924,0.000078335,0.000169441,0.000057730,0.000310339,0.001111390,0.002125610,0.030574074,0.000005815,0.000020041,0.000020085,0.000010272,0.000016484,0.000002797,0.015018082,0.028969022,0.099426473,0.802612831,0.000142980,0.000296371,0.000262361,0.000140030,0.000288129,0.000077311}, {0.021607044,0.047962387,0.137221280,0.614996056,0.000238328,0.000177445,0.000049583,0.000034334,0.000391963,0.000157493,0.000536695,0.004590783,0.003789508,0.032416273,0.000024015,0.000040064,0.000039128,0.000021306,0.000052026,0.000009672,0.023764324,0.072046309,0.153018506,0.754933911,0.000353383,0.000379864,0.000214861,0.000148772,0.000657000,0.000210272}, {0.018206267,0.030649631,0.115580017,0.634402295,0.000131018,0.000075674,0.000059706,0.000035897,0.000244038,0.000091225,0.000438979,0.001517833,0.002947451,0.029216954,0.000014942,0.000014835,0.000033209,0.000014431,0.000035141,0.000003455,0.019848212,0.038376429,0.125560464,0.751270112,0.000207658,0.000147260,0.000232448,0.000112055,0.000386340,0.000106903}, {0.021446155,0.041163126,0.139641095,0.595000752,0.000253202,0.000335623,0.000743454,0.000103917,0.000501416,0.000191113,0.000777658,0.002836051,0.004477351,0.041970712,0.000022681,0.000204414,0.000721602,0.000078906,0.000099689,0.000022705,0.024488853,0.053799469,0.155579039,0.771244488,0.000352012,0.001036798,0.002973816,0.000415669,0.001004257,0.000279092}, {0.016843125,0.021732640,0.107239836,0.662259032,0.000129566,0.000068980,0.000048144,0.000037745,0.000209551,0.000074502,0.000312085,0.001150815,0.001938673,0.024157628,0.000010493,0.000007396,0.000020889,0.000011416,0.000029706,0.000002512,0.017739317,0.026042266,0.112906928,0.731318481,0.000170804,0.000093059,0.000136933,0.000077521,0.000314062,0.000084479}, {0.008633160,0.009713444,0.056338887,0.515072353,0.000041064,0.000046903,0.000049228,0.000036242,0.000072110,0.000024892,0.000359548,0.000363513,0.002500608,0.043781150,0.000002026,0.000007530,0.000010342,0.000006245,0.000006318,0.000000774,0.011331592,0.012115596,0.075619914,0.850553107,0.000054379,0.000106479,0.000122478,0.000081546,0.000116279,0.000030034}, {0.023019305,0.037916587,0.152262031,0.631943113,0.000253373,0.000396518,0.000222889,0.000074383,0.000492605,0.000232576,0.001362822,0.002207139,0.008204901,0.065887839,0.000044573,0.000242625,0.000146875,0.000045738,0.000065810,0.000056797,0.025207796,0.040584215,0.162026070,0.736576317,0.000312605,0.000630907,0.000371396,0.000123954,0.000583770,0.000280748}, {0.008902247,0.012690878,0.059106779,0.481031881,0.000055432,0.000094716,0.000087573,0.000041116,0.000099736,0.000033575,0.000305730,0.000538793,0.001917606,0.035955762,0.000003012,0.000029067,0.000022007,0.000005833,0.000007903,0.000003260,0.012069791,0.017504302,0.078463991,0.870039371,0.000082035,0.000382693,0.000339838,0.000098287,0.000171472,0.000069303}, {0.013642589,0.015609889,0.089398498,0.577437387,0.000099551,0.000126540,0.000077002,0.000050112,0.000164304,0.000064911,0.000275521,0.000613422,0.001934677,0.023083655,0.000004663,0.000020414,0.000017389,0.000009101,0.000012061,0.000003094,0.016380992,0.020622058,0.109041849,0.803133254,0.000139491,0.000350160,0.000274730,0.000136722,0.000255947,0.000101825}, {0.015747627,0.021133289,0.101304188,0.602401089,0.000117333,0.000087360,0.000043136,0.000029065,0.000220032,0.000075655,0.000320453,0.001311236,0.002225903,0.025175735,0.000006210,0.000023270,0.000023359,0.000010189,0.000017730,0.000002947,0.018050285,0.029691504,0.114761949,0.781752613,0.000150440,0.000235767,0.000217857,0.000110783,0.000334909,0.000097338}, {0.010835045,0.013248826,0.070188438,0.551326470,0.000061814,0.000056798,0.000065867,0.000044756,0.000121228,0.000036348,0.000503927,0.000685028,0.003390756,0.053433561,0.000007295,0.000014854,0.000023598,0.000012197,0.000010451,0.000001313,0.013329735,0.016559347,0.086842178,0.824596151,0.000101136,0.000137882,0.000190743,0.000102485,0.000178674,0.000043064}, {0.016204567,0.013102584,0.105287766,0.669740857,0.000154620,0.000125397,0.000082364,0.000078520,0.000287802,0.000079538,0.000491167,0.001214444,0.003176239,0.039104147,0.000016049,0.000034002,0.000013917,0.000009868,0.000030804,0.000007382,0.016863289,0.014958983,0.109419751,0.725193292,0.000173783,0.000165160,0.000102270,0.000088712,0.000324570,0.000086125}, {0.009433891,0.008440849,0.062822917,0.525789136,0.000055663,0.000112161,0.000088015,0.000056447,0.000112475,0.000034877,0.000512514,0.000287721,0.003298464,0.070453654,0.000004150,0.000030518,0.000024345,0.000010819,0.000013542,0.000003687,0.011702206,0.009883372,0.078450248,0.841471678,0.000077248,0.000294463,0.000197877,0.000109862,0.000196047,0.000057910}, {0.009788773,0.011627199,0.069704986,0.603915848,0.000062380,0.000167544,0.000182096,0.000077806,0.000140962,0.000039495,0.000451942,0.000914363,0.004195396,0.056462494,0.000005035,0.000033155,0.000052921,0.000012578,0.000038297,0.000002904,0.011336155,0.015386515,0.082607927,0.787273431,0.000079503,0.000298999,0.000372585,0.000121656,0.000263880,0.000048333}, {0.015824321,0.022149127,0.102365882,0.623005722,0.000122239,0.000117464,0.000047854,0.000028486,0.000211401,0.000073794,0.000326700,0.001347405,0.002187842,0.025040819,0.000006513,0.000020439,0.000025484,0.000010064,0.000021509,0.000003504,0.017522420,0.030541185,0.113058988,0.765498438,0.000158612,0.000263452,0.000213001,0.000097530,0.000341958,0.000097432} };
31,031
C++
.h
87
348.310345
399
0.780306
eloquentarduino/EloquentMicroML
34
11
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,713
digits.h
eloquentarduino_EloquentMicroML/examples/SGDExample/digits.h
#pragma once #define FEATURES_DIM 64 #define DATASET_SIZE 360 float X[DATASET_SIZE][FEATURES_DIM] = { { 0.000000 , 0.000000 , 0.090240 , 0.234625 , 0.162433 , 0.018048 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.234625 , 0.270721 , 0.180481 , 0.270721 , 0.090240 , 0.000000 , 0.000000 , 0.054144 , 0.270721 , 0.036096 , 0.000000 , 0.198529 , 0.144385 , 0.000000 , 0.000000 , 0.072192 , 0.216577 , 0.000000 , 0.000000 , 0.144385 , 0.144385 , 0.000000 , 0.000000 , 0.090240 , 0.144385 , 0.000000 , 0.000000 , 0.162433 , 0.144385 , 0.000000 , 0.000000 , 0.072192 , 0.198529 , 0.000000 , 0.018048 , 0.216577 , 0.126337 , 0.000000 , 0.000000 , 0.036096 , 0.252673 , 0.090240 , 0.180481 , 0.216577 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.108288 , 0.234625 , 0.180481 , 0.000000 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.184966 , 0.200380 , 0.077069 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.169552 , 0.246621 , 0.138724 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.046241 , 0.231207 , 0.246621 , 0.092483 , 0.000000 , 0.000000 , 0.000000 , 0.107897 , 0.231207 , 0.246621 , 0.246621 , 0.030828 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.015414 , 0.246621 , 0.246621 , 0.046241 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.015414 , 0.246621 , 0.246621 , 0.092483 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.015414 , 0.246621 , 0.246621 , 0.092483 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.169552 , 0.246621 , 0.154138 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.016621 , 0.149585 , 0.249308 , 0.182826 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.182826 , 0.265929 , 0.132964 , 0.232688 , 0.099723 , 0.000000 , 0.000000 , 0.033241 , 0.265929 , 0.166206 , 0.000000 , 0.149585 , 0.149585 , 0.000000 , 0.000000 , 0.016621 , 0.265929 , 0.066482 , 0.000000 , 0.132964 , 0.132964 , 0.000000 , 0.000000 , 0.066482 , 0.265929 , 0.066482 , 0.000000 , 0.132964 , 0.132964 , 0.000000 , 0.000000 , 0.016621 , 0.265929 , 0.083103 , 0.016621 , 0.182826 , 0.049862 , 0.000000 , 0.000000 , 0.000000 , 0.199447 , 0.199447 , 0.166206 , 0.166206 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.016621 , 0.166206 , 0.216067 , 0.049862 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.212341 , 0.197173 , 0.015167 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.075836 , 0.242675 , 0.242675 , 0.030334 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.212341 , 0.242675 , 0.182006 , 0.000000 , 0.000000 , 0.000000 , 0.015167 , 0.151672 , 0.242675 , 0.242675 , 0.182006 , 0.000000 , 0.000000 , 0.000000 , 0.045502 , 0.182006 , 0.212341 , 0.242675 , 0.136505 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.075836 , 0.242675 , 0.227508 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.060669 , 0.242675 , 0.212341 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.015167 , 0.197173 , 0.242675 , 0.015167 , 0.000000 }, { 0.000000 , 0.000000 , 0.046341 , 0.200810 , 0.169916 , 0.108128 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.169916 , 0.247150 , 0.247150 , 0.247150 , 0.030894 , 0.000000 , 0.000000 , 0.061788 , 0.247150 , 0.139022 , 0.015447 , 0.216257 , 0.030894 , 0.000000 , 0.000000 , 0.061788 , 0.247150 , 0.000000 , 0.000000 , 0.247150 , 0.030894 , 0.000000 , 0.000000 , 0.000000 , 0.247150 , 0.015447 , 0.000000 , 0.185363 , 0.123575 , 0.000000 , 0.000000 , 0.000000 , 0.231703 , 0.139022 , 0.000000 , 0.200810 , 0.092681 , 0.000000 , 0.000000 , 0.000000 , 0.139022 , 0.216257 , 0.139022 , 0.216257 , 0.015447 , 0.000000 , 0.000000 , 0.000000 , 0.030894 , 0.185363 , 0.200810 , 0.061788 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.029683 , 0.237461 , 0.237461 , 0.029683 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.059365 , 0.237461 , 0.237461 , 0.029683 , 0.000000 , 0.000000 , 0.014841 , 0.059365 , 0.178096 , 0.237461 , 0.178096 , 0.000000 , 0.000000 , 0.000000 , 0.103889 , 0.237461 , 0.237461 , 0.237461 , 0.178096 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.044524 , 0.148413 , 0.237461 , 0.207778 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.118730 , 0.237461 , 0.178096 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.089048 , 0.237461 , 0.237461 , 0.029683 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.029683 , 0.178096 , 0.222620 , 0.059365 , 0.000000 }, { 0.000000 , 0.000000 , 0.153393 , 0.214750 , 0.168732 , 0.046018 , 0.000000 , 0.000000 , 0.000000 , 0.061357 , 0.245429 , 0.199411 , 0.092036 , 0.214750 , 0.015339 , 0.000000 , 0.000000 , 0.061357 , 0.245429 , 0.030679 , 0.000000 , 0.168732 , 0.107375 , 0.000000 , 0.000000 , 0.122714 , 0.245429 , 0.000000 , 0.000000 , 0.153393 , 0.076696 , 0.000000 , 0.000000 , 0.122714 , 0.245429 , 0.000000 , 0.000000 , 0.214750 , 0.061357 , 0.000000 , 0.000000 , 0.122714 , 0.245429 , 0.000000 , 0.015339 , 0.245429 , 0.015339 , 0.000000 , 0.000000 , 0.061357 , 0.245429 , 0.015339 , 0.168732 , 0.230089 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.168732 , 0.245429 , 0.184072 , 0.046018 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.091745 , 0.214071 , 0.152908 , 0.030582 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.229362 , 0.229362 , 0.198780 , 0.229362 , 0.045872 , 0.000000 , 0.000000 , 0.030582 , 0.244653 , 0.152908 , 0.000000 , 0.198780 , 0.137617 , 0.000000 , 0.000000 , 0.015291 , 0.244653 , 0.076454 , 0.000000 , 0.183490 , 0.076454 , 0.000000 , 0.000000 , 0.000000 , 0.244653 , 0.045872 , 0.000000 , 0.198780 , 0.091745 , 0.000000 , 0.000000 , 0.015291 , 0.229362 , 0.076454 , 0.091745 , 0.198780 , 0.015291 , 0.000000 , 0.000000 , 0.000000 , 0.244653 , 0.168199 , 0.214071 , 0.152908 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.107036 , 0.244653 , 0.168199 , 0.015291 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.207452 , 0.086438 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.034575 , 0.276603 , 0.207452 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.017288 , 0.207452 , 0.276603 , 0.190165 , 0.000000 , 0.000000 , 0.000000 , 0.034575 , 0.207452 , 0.276603 , 0.276603 , 0.172877 , 0.000000 , 0.000000 , 0.000000 , 0.103726 , 0.190165 , 0.086438 , 0.259315 , 0.103726 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.017288 , 0.276603 , 0.155589 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.034575 , 0.276603 , 0.190165 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.051863 , 0.276603 , 0.138302 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.017487 , 0.192362 , 0.157387 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.122412 , 0.279799 , 0.227337 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.069950 , 0.244824 , 0.279799 , 0.157387 , 0.000000 , 0.000000 , 0.000000 , 0.174874 , 0.279799 , 0.192362 , 0.279799 , 0.139899 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.052462 , 0.279799 , 0.104925 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.052462 , 0.279799 , 0.139899 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.087437 , 0.279799 , 0.174874 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.034975 , 0.244824 , 0.104925 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.033686 , 0.252646 , 0.218959 , 0.050529 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.168430 , 0.252646 , 0.185273 , 0.252646 , 0.000000 , 0.000000 , 0.000000 , 0.050529 , 0.269489 , 0.101058 , 0.000000 , 0.168430 , 0.000000 , 0.000000 , 0.000000 , 0.067372 , 0.269489 , 0.134744 , 0.000000 , 0.050529 , 0.134744 , 0.000000 , 0.000000 , 0.134744 , 0.235803 , 0.050529 , 0.000000 , 0.067372 , 0.134744 , 0.000000 , 0.000000 , 0.050529 , 0.252646 , 0.016843 , 0.000000 , 0.050529 , 0.117901 , 0.000000 , 0.000000 , 0.000000 , 0.235803 , 0.185273 , 0.101058 , 0.235803 , 0.084215 , 0.000000 , 0.000000 , 0.000000 , 0.067372 , 0.202116 , 0.252646 , 0.101058 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.017003 , 0.255045 , 0.221039 , 0.017003 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.119021 , 0.272047 , 0.238042 , 0.136024 , 0.000000 , 0.000000 , 0.000000 , 0.136024 , 0.204036 , 0.153027 , 0.034006 , 0.221039 , 0.034006 , 0.000000 , 0.000000 , 0.119021 , 0.153027 , 0.017003 , 0.000000 , 0.102018 , 0.102018 , 0.000000 , 0.000000 , 0.085015 , 0.153027 , 0.000000 , 0.000000 , 0.051009 , 0.153027 , 0.000000 , 0.000000 , 0.000000 , 0.255045 , 0.034006 , 0.000000 , 0.136024 , 0.204036 , 0.000000 , 0.000000 , 0.000000 , 0.153027 , 0.255045 , 0.221039 , 0.272047 , 0.102018 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.221039 , 0.238042 , 0.136024 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.028772 , 0.201402 , 0.215788 , 0.071929 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.143859 , 0.230174 , 0.230174 , 0.215788 , 0.014386 , 0.000000 , 0.000000 , 0.043158 , 0.230174 , 0.143859 , 0.143859 , 0.230174 , 0.057544 , 0.000000 , 0.000000 , 0.071929 , 0.230174 , 0.000000 , 0.000000 , 0.201402 , 0.086315 , 0.000000 , 0.000000 , 0.071929 , 0.230174 , 0.086315 , 0.000000 , 0.172631 , 0.100701 , 0.000000 , 0.000000 , 0.014386 , 0.215788 , 0.187016 , 0.057544 , 0.187016 , 0.086315 , 0.000000 , 0.000000 , 0.000000 , 0.158245 , 0.230174 , 0.230174 , 0.215788 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.028772 , 0.158245 , 0.187016 , 0.057544 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.192773 , 0.208837 , 0.016064 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.128515 , 0.257030 , 0.240966 , 0.032129 , 0.000000 , 0.000000 , 0.000000 , 0.160644 , 0.257030 , 0.257030 , 0.192773 , 0.000000 , 0.000000 , 0.000000 , 0.064258 , 0.257030 , 0.257030 , 0.257030 , 0.208837 , 0.000000 , 0.000000 , 0.000000 , 0.064258 , 0.112451 , 0.064258 , 0.257030 , 0.096386 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.016064 , 0.257030 , 0.128515 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.016064 , 0.257030 , 0.128515 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.192773 , 0.192773 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.245049 , 0.122525 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.227546 , 0.280056 , 0.157532 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.175035 , 0.280056 , 0.280056 , 0.122525 , 0.000000 , 0.000000 , 0.000000 , 0.122525 , 0.280056 , 0.140028 , 0.280056 , 0.035007 , 0.000000 , 0.000000 , 0.000000 , 0.017504 , 0.087518 , 0.105021 , 0.280056 , 0.105021 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.070014 , 0.280056 , 0.105021 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.035007 , 0.280056 , 0.105021 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.210042 , 0.192539 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.014514 , 0.188683 , 0.145141 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.101599 , 0.232226 , 0.232226 , 0.232226 , 0.101599 , 0.000000 , 0.000000 , 0.000000 , 0.116113 , 0.232226 , 0.188683 , 0.145141 , 0.217712 , 0.000000 , 0.000000 , 0.000000 , 0.116113 , 0.232226 , 0.029028 , 0.029028 , 0.217712 , 0.043542 , 0.000000 , 0.000000 , 0.072571 , 0.217712 , 0.029028 , 0.000000 , 0.174169 , 0.101599 , 0.000000 , 0.000000 , 0.014514 , 0.217712 , 0.087085 , 0.029028 , 0.232226 , 0.043542 , 0.000000 , 0.000000 , 0.000000 , 0.159655 , 0.217712 , 0.188683 , 0.232226 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.014514 , 0.217712 , 0.203198 , 0.116113 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.166690 , 0.200028 , 0.166690 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.050007 , 0.266704 , 0.266704 , 0.266704 , 0.066676 , 0.000000 , 0.000000 , 0.000000 , 0.116683 , 0.250035 , 0.050007 , 0.133352 , 0.216697 , 0.000000 , 0.000000 , 0.000000 , 0.133352 , 0.200028 , 0.000000 , 0.000000 , 0.233366 , 0.016669 , 0.000000 , 0.000000 , 0.133352 , 0.200028 , 0.000000 , 0.000000 , 0.116683 , 0.133352 , 0.000000 , 0.000000 , 0.083345 , 0.216697 , 0.000000 , 0.000000 , 0.066676 , 0.133352 , 0.000000 , 0.000000 , 0.000000 , 0.233366 , 0.133352 , 0.000000 , 0.166690 , 0.133352 , 0.000000 , 0.000000 , 0.000000 , 0.116683 , 0.200028 , 0.216697 , 0.200028 , 0.066676 , 0.000000 }, { 0.000000 , 0.000000 , 0.063532 , 0.222362 , 0.174713 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.047649 , 0.238245 , 0.238245 , 0.254128 , 0.142947 , 0.000000 , 0.000000 , 0.000000 , 0.127064 , 0.206479 , 0.000000 , 0.047649 , 0.238245 , 0.015883 , 0.000000 , 0.000000 , 0.127064 , 0.190596 , 0.000000 , 0.000000 , 0.127064 , 0.095298 , 0.000000 , 0.000000 , 0.127064 , 0.190596 , 0.000000 , 0.000000 , 0.127064 , 0.127064 , 0.000000 , 0.000000 , 0.079415 , 0.206479 , 0.015883 , 0.000000 , 0.127064 , 0.127064 , 0.000000 , 0.000000 , 0.031766 , 0.238245 , 0.222362 , 0.190596 , 0.238245 , 0.095298 , 0.000000 , 0.000000 , 0.000000 , 0.079415 , 0.254128 , 0.238245 , 0.127064 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.015354 , 0.214953 , 0.199599 , 0.015354 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.015354 , 0.245660 , 0.245660 , 0.046061 , 0.000000 , 0.000000 , 0.076769 , 0.168891 , 0.230306 , 0.245660 , 0.245660 , 0.000000 , 0.000000 , 0.000000 , 0.061415 , 0.230306 , 0.245660 , 0.245660 , 0.230306 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.122830 , 0.245660 , 0.107476 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.153538 , 0.245660 , 0.046061 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.122830 , 0.245660 , 0.092123 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.030708 , 0.199599 , 0.230306 , 0.030708 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.017254 , 0.276067 , 0.086271 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.086271 , 0.276067 , 0.189796 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.207050 , 0.276067 , 0.189796 , 0.000000 , 0.000000 , 0.000000 , 0.120779 , 0.207050 , 0.276067 , 0.276067 , 0.120779 , 0.000000 , 0.000000 , 0.000000 , 0.069017 , 0.138034 , 0.207050 , 0.276067 , 0.069017 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.155288 , 0.276067 , 0.034508 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.172542 , 0.276067 , 0.034508 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.051763 , 0.224305 , 0.086271 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.017142 , 0.205708 , 0.137138 , 0.017142 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.068569 , 0.274277 , 0.274277 , 0.017142 , 0.000000 , 0.000000 , 0.000000 , 0.017142 , 0.222850 , 0.274277 , 0.188565 , 0.000000 , 0.000000 , 0.000000 , 0.017142 , 0.188565 , 0.274277 , 0.274277 , 0.205708 , 0.000000 , 0.000000 , 0.000000 , 0.034285 , 0.205708 , 0.137138 , 0.274277 , 0.171423 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.257134 , 0.137138 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.068569 , 0.274277 , 0.068569 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.051427 , 0.222850 , 0.068569 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.173925 , 0.252982 , 0.079057 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.158114 , 0.252982 , 0.079057 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.063246 , 0.252982 , 0.252982 , 0.079057 , 0.000000 , 0.000000 , 0.000000 , 0.173925 , 0.252982 , 0.252982 , 0.252982 , 0.047434 , 0.000000 , 0.000000 , 0.000000 , 0.079057 , 0.126491 , 0.221359 , 0.252982 , 0.031623 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.221359 , 0.252982 , 0.031623 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.173925 , 0.252982 , 0.031623 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.126491 , 0.252982 , 0.126491 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.015174 , 0.227613 , 0.197264 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.015174 , 0.242787 , 0.242787 , 0.075871 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.106219 , 0.242787 , 0.242787 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.197264 , 0.242787 , 0.197264 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.106219 , 0.242787 , 0.242787 , 0.197264 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.015174 , 0.166916 , 0.242787 , 0.197264 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.030348 , 0.242787 , 0.242787 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.015174 , 0.212438 , 0.242787 , 0.045523 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.015650 , 0.187798 , 0.078249 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.140849 , 0.250398 , 0.219098 , 0.046950 , 0.000000 , 0.000000 , 0.000000 , 0.031300 , 0.250398 , 0.219098 , 0.172148 , 0.203448 , 0.000000 , 0.000000 , 0.000000 , 0.031300 , 0.250398 , 0.156499 , 0.000000 , 0.219098 , 0.062599 , 0.000000 , 0.000000 , 0.062599 , 0.250398 , 0.000000 , 0.000000 , 0.187798 , 0.062599 , 0.000000 , 0.000000 , 0.062599 , 0.250398 , 0.046950 , 0.000000 , 0.172148 , 0.156499 , 0.000000 , 0.000000 , 0.000000 , 0.203448 , 0.187798 , 0.125199 , 0.219098 , 0.093899 , 0.000000 , 0.000000 , 0.000000 , 0.046950 , 0.156499 , 0.250398 , 0.187798 , 0.015650 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.102180 , 0.170301 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.238421 , 0.255451 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.170301 , 0.272481 , 0.272481 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.119210 , 0.272481 , 0.272481 , 0.255451 , 0.000000 , 0.000000 , 0.000000 , 0.051090 , 0.255451 , 0.119210 , 0.255451 , 0.170301 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.221391 , 0.187331 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.255451 , 0.153271 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.136241 , 0.255451 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.043815 , 0.175262 , 0.146052 , 0.014605 , 0.000000 , 0.000000 , 0.000000 , 0.014605 , 0.233682 , 0.233682 , 0.233682 , 0.146052 , 0.000000 , 0.000000 , 0.000000 , 0.073026 , 0.233682 , 0.189867 , 0.087631 , 0.233682 , 0.014605 , 0.000000 , 0.000000 , 0.073026 , 0.233682 , 0.102236 , 0.000000 , 0.189867 , 0.043815 , 0.000000 , 0.000000 , 0.073026 , 0.233682 , 0.058421 , 0.000000 , 0.189867 , 0.102236 , 0.000000 , 0.000000 , 0.014605 , 0.233682 , 0.116841 , 0.000000 , 0.204472 , 0.102236 , 0.000000 , 0.000000 , 0.000000 , 0.189867 , 0.204472 , 0.189867 , 0.233682 , 0.043815 , 0.000000 , 0.000000 , 0.000000 , 0.029210 , 0.189867 , 0.219077 , 0.087631 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.036043 , 0.216260 , 0.162195 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.198238 , 0.270325 , 0.216260 , 0.090108 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.270325 , 0.090108 , 0.000000 , 0.252303 , 0.000000 , 0.000000 , 0.000000 , 0.036043 , 0.270325 , 0.018022 , 0.000000 , 0.162195 , 0.126152 , 0.000000 , 0.000000 , 0.072087 , 0.180217 , 0.000000 , 0.000000 , 0.126152 , 0.144173 , 0.000000 , 0.000000 , 0.000000 , 0.216260 , 0.000000 , 0.000000 , 0.144173 , 0.180217 , 0.000000 , 0.000000 , 0.036043 , 0.270325 , 0.090108 , 0.180217 , 0.288347 , 0.018022 , 0.000000 , 0.000000 , 0.000000 , 0.090108 , 0.252303 , 0.216260 , 0.072087 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.080972 , 0.242917 , 0.129556 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.032389 , 0.242917 , 0.259111 , 0.145750 , 0.000000 , 0.000000 , 0.000000 , 0.048583 , 0.242917 , 0.259111 , 0.259111 , 0.161945 , 0.000000 , 0.000000 , 0.113361 , 0.259111 , 0.161945 , 0.129556 , 0.259111 , 0.113361 , 0.000000 , 0.000000 , 0.000000 , 0.016194 , 0.000000 , 0.129556 , 0.259111 , 0.064778 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.178139 , 0.259111 , 0.016194 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.145750 , 0.259111 , 0.016194 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.129556 , 0.226723 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.182448 , 0.136836 , 0.182448 , 0.015204 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.212855 , 0.243263 , 0.243263 , 0.121632 , 0.000000 , 0.000000 , 0.000000 , 0.045612 , 0.243263 , 0.136836 , 0.045612 , 0.228059 , 0.030408 , 0.000000 , 0.000000 , 0.060816 , 0.243263 , 0.015204 , 0.000000 , 0.243263 , 0.076020 , 0.000000 , 0.000000 , 0.076020 , 0.182448 , 0.000000 , 0.000000 , 0.243263 , 0.076020 , 0.000000 , 0.000000 , 0.045612 , 0.212855 , 0.015204 , 0.060816 , 0.243263 , 0.060816 , 0.000000 , 0.000000 , 0.000000 , 0.228059 , 0.182448 , 0.212855 , 0.212855 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.106428 , 0.182448 , 0.182448 , 0.030408 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.108128 , 0.200810 , 0.077234 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.231703 , 0.247150 , 0.123575 , 0.000000 , 0.000000 , 0.000000 , 0.015447 , 0.200810 , 0.247150 , 0.247150 , 0.046341 , 0.000000 , 0.000000 , 0.000000 , 0.185363 , 0.247150 , 0.247150 , 0.247150 , 0.000000 , 0.000000 , 0.000000 , 0.123575 , 0.247150 , 0.046341 , 0.247150 , 0.200810 , 0.000000 , 0.000000 , 0.000000 , 0.030894 , 0.046341 , 0.000000 , 0.247150 , 0.185363 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.247150 , 0.200810 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.123575 , 0.185363 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.030682 , 0.184093 , 0.061364 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.015341 , 0.184093 , 0.245458 , 0.245458 , 0.046023 , 0.000000 , 0.000000 , 0.000000 , 0.107388 , 0.245458 , 0.092047 , 0.061364 , 0.199434 , 0.000000 , 0.000000 , 0.000000 , 0.122729 , 0.245458 , 0.092047 , 0.000000 , 0.199434 , 0.076706 , 0.000000 , 0.000000 , 0.015341 , 0.245458 , 0.076706 , 0.000000 , 0.107388 , 0.138070 , 0.000000 , 0.000000 , 0.000000 , 0.245458 , 0.122729 , 0.000000 , 0.122729 , 0.184093 , 0.000000 , 0.000000 , 0.000000 , 0.199434 , 0.214775 , 0.214775 , 0.245458 , 0.153411 , 0.000000 , 0.000000 , 0.000000 , 0.061364 , 0.214775 , 0.230117 , 0.107388 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.088086 , 0.246641 , 0.052852 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.158555 , 0.281875 , 0.140938 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.158555 , 0.281875 , 0.281875 , 0.088086 , 0.000000 , 0.000000 , 0.017617 , 0.229024 , 0.264258 , 0.211407 , 0.281875 , 0.017617 , 0.000000 , 0.000000 , 0.070469 , 0.211407 , 0.052852 , 0.176172 , 0.264258 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.193789 , 0.211407 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.140938 , 0.211407 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.088086 , 0.229024 , 0.070469 , 0.000000 }, { 0.000000 , 0.000000 , 0.070492 , 0.197379 , 0.140985 , 0.098689 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.225576 , 0.225576 , 0.225576 , 0.225576 , 0.042295 , 0.000000 , 0.000000 , 0.042295 , 0.225576 , 0.140985 , 0.028197 , 0.225576 , 0.098689 , 0.000000 , 0.000000 , 0.098689 , 0.225576 , 0.042295 , 0.000000 , 0.169182 , 0.112788 , 0.000000 , 0.000000 , 0.112788 , 0.225576 , 0.014098 , 0.000000 , 0.169182 , 0.112788 , 0.000000 , 0.000000 , 0.098689 , 0.225576 , 0.070492 , 0.028197 , 0.225576 , 0.056394 , 0.000000 , 0.000000 , 0.028197 , 0.225576 , 0.211477 , 0.197379 , 0.183280 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.098689 , 0.211477 , 0.183280 , 0.028197 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.077888 , 0.249241 , 0.233663 , 0.015578 , 0.000000 , 0.000000 , 0.000000 , 0.015578 , 0.233663 , 0.140198 , 0.155775 , 0.186930 , 0.000000 , 0.000000 , 0.000000 , 0.046733 , 0.249241 , 0.015578 , 0.000000 , 0.249241 , 0.062310 , 0.000000 , 0.000000 , 0.093465 , 0.249241 , 0.000000 , 0.000000 , 0.171353 , 0.093465 , 0.000000 , 0.000000 , 0.046733 , 0.249241 , 0.015578 , 0.000000 , 0.171353 , 0.124620 , 0.000000 , 0.000000 , 0.062310 , 0.249241 , 0.062310 , 0.046733 , 0.233663 , 0.062310 , 0.000000 , 0.000000 , 0.015578 , 0.202508 , 0.202508 , 0.202508 , 0.218085 , 0.015578 , 0.000000 , 0.000000 , 0.000000 , 0.062310 , 0.202508 , 0.218085 , 0.015578 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.196405 , 0.224463 , 0.098203 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.070145 , 0.224463 , 0.224463 , 0.112232 , 0.000000 , 0.000000 , 0.000000 , 0.014029 , 0.168347 , 0.224463 , 0.224463 , 0.112232 , 0.000000 , 0.000000 , 0.070145 , 0.196405 , 0.224463 , 0.224463 , 0.224463 , 0.070145 , 0.000000 , 0.000000 , 0.014029 , 0.056116 , 0.098203 , 0.224463 , 0.224463 , 0.112232 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.028058 , 0.224463 , 0.224463 , 0.098203 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.028058 , 0.224463 , 0.224463 , 0.042087 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.224463 , 0.224463 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.189170 , 0.173406 , 0.015764 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.015764 , 0.252227 , 0.252227 , 0.110349 , 0.000000 , 0.000000 , 0.000000 , 0.015764 , 0.220698 , 0.252227 , 0.252227 , 0.110349 , 0.000000 , 0.000000 , 0.015764 , 0.220698 , 0.252227 , 0.220698 , 0.252227 , 0.126113 , 0.000000 , 0.000000 , 0.078821 , 0.189170 , 0.047292 , 0.126113 , 0.252227 , 0.110349 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.126113 , 0.252227 , 0.063057 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.126113 , 0.252227 , 0.015764 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.173406 , 0.189170 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.086666 , 0.216664 , 0.216664 , 0.043333 , 0.000000 , 0.000000 , 0.000000 , 0.043333 , 0.231109 , 0.202220 , 0.202220 , 0.187776 , 0.000000 , 0.000000 , 0.000000 , 0.086666 , 0.216664 , 0.028889 , 0.014444 , 0.202220 , 0.072221 , 0.000000 , 0.000000 , 0.115554 , 0.202220 , 0.028889 , 0.000000 , 0.129999 , 0.115554 , 0.000000 , 0.000000 , 0.115554 , 0.231109 , 0.057777 , 0.000000 , 0.115554 , 0.115554 , 0.000000 , 0.000000 , 0.072221 , 0.231109 , 0.086666 , 0.000000 , 0.158887 , 0.129999 , 0.000000 , 0.000000 , 0.014444 , 0.231109 , 0.231109 , 0.202220 , 0.231109 , 0.129999 , 0.000000 , 0.000000 , 0.000000 , 0.072221 , 0.202220 , 0.216664 , 0.144443 , 0.014444 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.158173 , 0.237260 , 0.015817 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.079087 , 0.253077 , 0.253077 , 0.158173 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.221442 , 0.094904 , 0.094904 , 0.237260 , 0.000000 , 0.000000 , 0.000000 , 0.063269 , 0.253077 , 0.063269 , 0.000000 , 0.237260 , 0.047452 , 0.000000 , 0.000000 , 0.079087 , 0.237260 , 0.079087 , 0.000000 , 0.173991 , 0.079087 , 0.000000 , 0.000000 , 0.000000 , 0.189808 , 0.173991 , 0.000000 , 0.205625 , 0.079087 , 0.000000 , 0.000000 , 0.000000 , 0.126539 , 0.253077 , 0.253077 , 0.253077 , 0.047452 , 0.000000 , 0.000000 , 0.000000 , 0.015817 , 0.126539 , 0.205625 , 0.126539 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.027521 , 0.206411 , 0.178890 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.178890 , 0.220172 , 0.220172 , 0.123847 , 0.000000 , 0.000000 , 0.000000 , 0.068804 , 0.220172 , 0.123847 , 0.082564 , 0.220172 , 0.055043 , 0.000000 , 0.000000 , 0.068804 , 0.220172 , 0.041282 , 0.013761 , 0.192650 , 0.096325 , 0.000000 , 0.000000 , 0.082564 , 0.220172 , 0.055043 , 0.000000 , 0.220172 , 0.110086 , 0.000000 , 0.000000 , 0.041282 , 0.220172 , 0.165129 , 0.082564 , 0.220172 , 0.165129 , 0.000000 , 0.000000 , 0.000000 , 0.192650 , 0.220172 , 0.220172 , 0.220172 , 0.055043 , 0.000000 , 0.000000 , 0.000000 , 0.027521 , 0.178890 , 0.206411 , 0.110086 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.014629 , 0.160914 , 0.204800 , 0.073143 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.131657 , 0.234057 , 0.234057 , 0.073143 , 0.000000 , 0.000000 , 0.000000 , 0.146286 , 0.234057 , 0.234057 , 0.234057 , 0.014629 , 0.000000 , 0.000000 , 0.073143 , 0.234057 , 0.234057 , 0.234057 , 0.234057 , 0.000000 , 0.000000 , 0.000000 , 0.014629 , 0.073143 , 0.160914 , 0.234057 , 0.234057 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.073143 , 0.234057 , 0.234057 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.160914 , 0.234057 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.160914 , 0.146286 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.176345 , 0.192376 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.048094 , 0.240470 , 0.224439 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.176345 , 0.256501 , 0.176345 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.144282 , 0.256501 , 0.256501 , 0.160313 , 0.000000 , 0.000000 , 0.000000 , 0.064125 , 0.256501 , 0.192376 , 0.256501 , 0.192376 , 0.000000 , 0.000000 , 0.000000 , 0.048094 , 0.160313 , 0.048094 , 0.256501 , 0.176345 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.256501 , 0.224439 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.176345 , 0.176345 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.059490 , 0.223087 , 0.163597 , 0.014872 , 0.000000 , 0.000000 , 0.000000 , 0.029745 , 0.208214 , 0.208214 , 0.237959 , 0.118980 , 0.000000 , 0.000000 , 0.000000 , 0.118980 , 0.223087 , 0.029745 , 0.044617 , 0.193342 , 0.000000 , 0.000000 , 0.000000 , 0.059490 , 0.237959 , 0.000000 , 0.000000 , 0.178469 , 0.104107 , 0.000000 , 0.000000 , 0.104107 , 0.237959 , 0.000000 , 0.000000 , 0.178469 , 0.118980 , 0.000000 , 0.000000 , 0.044617 , 0.237959 , 0.089235 , 0.014872 , 0.208214 , 0.133852 , 0.000000 , 0.000000 , 0.000000 , 0.223087 , 0.237959 , 0.237959 , 0.237959 , 0.029745 , 0.000000 , 0.000000 , 0.000000 , 0.059490 , 0.193342 , 0.208214 , 0.089235 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.028083 , 0.168497 , 0.168497 , 0.028083 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.140414 , 0.224662 , 0.224662 , 0.126373 , 0.000000 , 0.000000 , 0.000000 , 0.042124 , 0.224662 , 0.224662 , 0.112331 , 0.210621 , 0.042124 , 0.000000 , 0.000000 , 0.084248 , 0.224662 , 0.084248 , 0.000000 , 0.182538 , 0.112331 , 0.000000 , 0.000000 , 0.112331 , 0.224662 , 0.056166 , 0.000000 , 0.210621 , 0.112331 , 0.000000 , 0.000000 , 0.070207 , 0.224662 , 0.112331 , 0.168497 , 0.224662 , 0.084248 , 0.000000 , 0.000000 , 0.000000 , 0.210621 , 0.224662 , 0.224662 , 0.210621 , 0.028083 , 0.000000 , 0.000000 , 0.000000 , 0.042124 , 0.182538 , 0.168497 , 0.042124 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.204603 , 0.102302 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.014615 , 0.131531 , 0.233832 , 0.233832 , 0.043844 , 0.000000 , 0.000000 , 0.000000 , 0.058458 , 0.233832 , 0.116916 , 0.160760 , 0.160760 , 0.000000 , 0.000000 , 0.000000 , 0.043844 , 0.233832 , 0.102302 , 0.058458 , 0.233832 , 0.058458 , 0.000000 , 0.000000 , 0.116916 , 0.233832 , 0.058458 , 0.000000 , 0.233832 , 0.116916 , 0.000000 , 0.000000 , 0.073073 , 0.233832 , 0.146145 , 0.000000 , 0.189989 , 0.160760 , 0.000000 , 0.000000 , 0.000000 , 0.189989 , 0.233832 , 0.233832 , 0.233832 , 0.131531 , 0.000000 , 0.000000 , 0.000000 , 0.029229 , 0.146145 , 0.189989 , 0.087687 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.102554 , 0.205108 , 0.102554 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.043952 , 0.234409 , 0.234409 , 0.131855 , 0.000000 , 0.000000 , 0.000000 , 0.087903 , 0.219758 , 0.234409 , 0.234409 , 0.087903 , 0.000000 , 0.000000 , 0.073253 , 0.234409 , 0.234409 , 0.234409 , 0.234409 , 0.029301 , 0.000000 , 0.000000 , 0.058602 , 0.117204 , 0.117204 , 0.234409 , 0.234409 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.043952 , 0.234409 , 0.234409 , 0.043952 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.014651 , 0.190457 , 0.234409 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.117204 , 0.219758 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.113465 , 0.243140 , 0.016209 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.178303 , 0.259350 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.259350 , 0.226931 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.162094 , 0.259350 , 0.243140 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.194512 , 0.259350 , 0.259350 , 0.178303 , 0.000000 , 0.000000 , 0.000000 , 0.081047 , 0.259350 , 0.097256 , 0.243140 , 0.194512 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.016209 , 0.000000 , 0.194512 , 0.259350 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.064837 , 0.243140 , 0.064837 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.048698 , 0.243492 , 0.097397 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.178561 , 0.259725 , 0.113630 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.146095 , 0.259725 , 0.259725 , 0.064931 , 0.000000 , 0.000000 , 0.000000 , 0.162328 , 0.259725 , 0.259725 , 0.259725 , 0.064931 , 0.000000 , 0.000000 , 0.064931 , 0.259725 , 0.113630 , 0.129863 , 0.259725 , 0.064931 , 0.000000 , 0.000000 , 0.016233 , 0.064931 , 0.000000 , 0.162328 , 0.259725 , 0.032466 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.113630 , 0.259725 , 0.016233 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.048698 , 0.259725 , 0.016233 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.054856 , 0.191997 , 0.191997 , 0.068570 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.123427 , 0.219425 , 0.219425 , 0.095999 , 0.000000 , 0.000000 , 0.000000 , 0.068570 , 0.205711 , 0.219425 , 0.205711 , 0.041142 , 0.000000 , 0.000000 , 0.054856 , 0.205711 , 0.219425 , 0.219425 , 0.164569 , 0.000000 , 0.000000 , 0.000000 , 0.068570 , 0.219425 , 0.219425 , 0.219425 , 0.164569 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.164569 , 0.219425 , 0.178283 , 0.013714 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.109713 , 0.219425 , 0.219425 , 0.095999 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.054856 , 0.191997 , 0.205711 , 0.082284 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.014833 , 0.237330 , 0.163165 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.014833 , 0.237330 , 0.237330 , 0.059333 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.118665 , 0.237330 , 0.237330 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.148331 , 0.237330 , 0.237330 , 0.237330 , 0.014833 , 0.000000 , 0.000000 , 0.088999 , 0.237330 , 0.207664 , 0.237330 , 0.222497 , 0.000000 , 0.000000 , 0.000000 , 0.014833 , 0.044499 , 0.074166 , 0.237330 , 0.177998 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.059333 , 0.237330 , 0.177998 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.029666 , 0.222497 , 0.177998 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.062523 , 0.187569 , 0.156307 , 0.015631 , 0.000000 , 0.000000 , 0.000000 , 0.046892 , 0.250092 , 0.203199 , 0.234461 , 0.156307 , 0.000000 , 0.000000 , 0.000000 , 0.078154 , 0.250092 , 0.031261 , 0.015631 , 0.218830 , 0.046892 , 0.000000 , 0.000000 , 0.125046 , 0.203199 , 0.000000 , 0.000000 , 0.156307 , 0.125046 , 0.000000 , 0.000000 , 0.125046 , 0.187569 , 0.000000 , 0.000000 , 0.125046 , 0.125046 , 0.000000 , 0.000000 , 0.125046 , 0.218830 , 0.000000 , 0.000000 , 0.171938 , 0.125046 , 0.000000 , 0.000000 , 0.046892 , 0.250092 , 0.218830 , 0.203199 , 0.250092 , 0.031261 , 0.000000 , 0.000000 , 0.000000 , 0.125046 , 0.250092 , 0.203199 , 0.078154 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.133822 , 0.173969 , 0.093675 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.066911 , 0.214115 , 0.214115 , 0.147204 , 0.000000 , 0.000000 , 0.000000 , 0.053529 , 0.187351 , 0.214115 , 0.214115 , 0.093675 , 0.000000 , 0.000000 , 0.040147 , 0.187351 , 0.214115 , 0.214115 , 0.214115 , 0.053529 , 0.000000 , 0.000000 , 0.093675 , 0.214115 , 0.214115 , 0.214115 , 0.214115 , 0.053529 , 0.000000 , 0.000000 , 0.000000 , 0.026764 , 0.173969 , 0.214115 , 0.214115 , 0.040147 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.147204 , 0.214115 , 0.214115 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.026764 , 0.173969 , 0.214115 , 0.013382 , 0.000000 }, { 0.000000 , 0.000000 , 0.030708 , 0.214953 , 0.199599 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.153538 , 0.230306 , 0.230306 , 0.122830 , 0.000000 , 0.000000 , 0.000000 , 0.030708 , 0.245660 , 0.107476 , 0.061415 , 0.230306 , 0.000000 , 0.000000 , 0.000000 , 0.061415 , 0.245660 , 0.061415 , 0.000000 , 0.199599 , 0.107476 , 0.000000 , 0.000000 , 0.061415 , 0.245660 , 0.015354 , 0.000000 , 0.153538 , 0.122830 , 0.000000 , 0.000000 , 0.061415 , 0.245660 , 0.076769 , 0.015354 , 0.184245 , 0.168891 , 0.000000 , 0.000000 , 0.015354 , 0.230306 , 0.214953 , 0.199599 , 0.245660 , 0.046061 , 0.000000 , 0.000000 , 0.000000 , 0.046061 , 0.184245 , 0.199599 , 0.076769 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.064966 , 0.178655 , 0.243621 , 0.129931 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.211138 , 0.259862 , 0.178655 , 0.211138 , 0.113690 , 0.000000 , 0.000000 , 0.048724 , 0.259862 , 0.194897 , 0.000000 , 0.064966 , 0.129931 , 0.000000 , 0.000000 , 0.097448 , 0.259862 , 0.081207 , 0.000000 , 0.064966 , 0.129931 , 0.000000 , 0.000000 , 0.113690 , 0.146172 , 0.000000 , 0.000000 , 0.146172 , 0.113690 , 0.000000 , 0.000000 , 0.064966 , 0.162414 , 0.000000 , 0.032483 , 0.243621 , 0.032483 , 0.000000 , 0.000000 , 0.016241 , 0.259862 , 0.194897 , 0.227379 , 0.162414 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.064966 , 0.227379 , 0.227379 , 0.016241 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.194551 , 0.224481 , 0.119723 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.014965 , 0.239447 , 0.239447 , 0.149654 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.014965 , 0.239447 , 0.239447 , 0.119723 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.059862 , 0.239447 , 0.239447 , 0.029931 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.164620 , 0.239447 , 0.209516 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.029931 , 0.239447 , 0.239447 , 0.149654 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.194551 , 0.239447 , 0.224481 , 0.029931 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.014965 , 0.194551 , 0.239447 , 0.059862 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.066927 , 0.217514 , 0.133855 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.217514 , 0.267710 , 0.250978 , 0.117123 , 0.000000 , 0.000000 , 0.000000 , 0.050196 , 0.267710 , 0.150587 , 0.100391 , 0.250978 , 0.100391 , 0.000000 , 0.000000 , 0.133855 , 0.234246 , 0.000000 , 0.000000 , 0.066927 , 0.133855 , 0.000000 , 0.000000 , 0.133855 , 0.200782 , 0.000000 , 0.000000 , 0.066927 , 0.133855 , 0.000000 , 0.000000 , 0.066927 , 0.200782 , 0.000000 , 0.000000 , 0.184050 , 0.100391 , 0.000000 , 0.000000 , 0.000000 , 0.234246 , 0.167319 , 0.200782 , 0.234246 , 0.016732 , 0.000000 , 0.000000 , 0.000000 , 0.117123 , 0.250978 , 0.184050 , 0.033464 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.239220 , 0.068349 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.051261 , 0.273394 , 0.187959 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.170872 , 0.273394 , 0.153784 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.222133 , 0.273394 , 0.119610 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.205046 , 0.273394 , 0.273394 , 0.068349 , 0.000000 , 0.000000 , 0.000000 , 0.017087 , 0.222133 , 0.205046 , 0.273394 , 0.085436 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.068349 , 0.273394 , 0.153784 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.239220 , 0.170872 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.086516 , 0.259548 , 0.207639 , 0.138426 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.224942 , 0.276851 , 0.173032 , 0.224942 , 0.051910 , 0.000000 , 0.000000 , 0.086516 , 0.276851 , 0.155729 , 0.000000 , 0.138426 , 0.069213 , 0.000000 , 0.000000 , 0.069213 , 0.224942 , 0.017303 , 0.000000 , 0.069213 , 0.138426 , 0.000000 , 0.000000 , 0.069213 , 0.138426 , 0.000000 , 0.000000 , 0.138426 , 0.069213 , 0.000000 , 0.000000 , 0.017303 , 0.242245 , 0.000000 , 0.000000 , 0.190335 , 0.051910 , 0.000000 , 0.000000 , 0.000000 , 0.207639 , 0.155729 , 0.155729 , 0.259548 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.069213 , 0.242245 , 0.259548 , 0.069213 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.057941 , 0.188307 , 0.188307 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.144851 , 0.231762 , 0.231762 , 0.014485 , 0.000000 , 0.000000 , 0.000000 , 0.043455 , 0.202792 , 0.231762 , 0.188307 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.115881 , 0.231762 , 0.231762 , 0.072426 , 0.000000 , 0.000000 , 0.000000 , 0.043455 , 0.217277 , 0.231762 , 0.231762 , 0.057941 , 0.000000 , 0.000000 , 0.000000 , 0.057941 , 0.231762 , 0.231762 , 0.231762 , 0.086911 , 0.000000 , 0.000000 , 0.000000 , 0.028970 , 0.115881 , 0.217277 , 0.231762 , 0.130366 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.057941 , 0.202792 , 0.173822 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.033903 , 0.203419 , 0.254274 , 0.203419 , 0.016952 , 0.000000 , 0.000000 , 0.016952 , 0.237322 , 0.237322 , 0.237322 , 0.186467 , 0.135613 , 0.000000 , 0.000000 , 0.084758 , 0.271225 , 0.050855 , 0.000000 , 0.033903 , 0.135613 , 0.000000 , 0.000000 , 0.135613 , 0.237322 , 0.000000 , 0.000000 , 0.101710 , 0.135613 , 0.000000 , 0.000000 , 0.067806 , 0.203419 , 0.000000 , 0.000000 , 0.152564 , 0.067806 , 0.000000 , 0.000000 , 0.016952 , 0.271225 , 0.016952 , 0.016952 , 0.237322 , 0.016952 , 0.000000 , 0.000000 , 0.000000 , 0.186467 , 0.152564 , 0.186467 , 0.135613 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.033903 , 0.220371 , 0.237322 , 0.016952 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.153293 , 0.272521 , 0.255488 , 0.238456 , 0.017033 , 0.000000 , 0.000000 , 0.017033 , 0.255488 , 0.255488 , 0.085163 , 0.170325 , 0.119228 , 0.000000 , 0.000000 , 0.102195 , 0.272521 , 0.017033 , 0.000000 , 0.017033 , 0.136260 , 0.000000 , 0.000000 , 0.136260 , 0.221423 , 0.000000 , 0.000000 , 0.068130 , 0.136260 , 0.000000 , 0.000000 , 0.119228 , 0.102195 , 0.000000 , 0.000000 , 0.102195 , 0.102195 , 0.000000 , 0.000000 , 0.085163 , 0.153293 , 0.000000 , 0.000000 , 0.221423 , 0.017033 , 0.000000 , 0.000000 , 0.000000 , 0.272521 , 0.085163 , 0.204390 , 0.204390 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.136260 , 0.255488 , 0.170325 , 0.017033 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.102356 , 0.175468 , 0.131601 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.175468 , 0.233957 , 0.233957 , 0.014622 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.160846 , 0.233957 , 0.233957 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.175468 , 0.233957 , 0.233957 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.190090 , 0.233957 , 0.233957 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.190090 , 0.233957 , 0.233957 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.014622 , 0.204712 , 0.233957 , 0.233957 , 0.014622 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.058489 , 0.175468 , 0.175468 , 0.131601 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.152075 , 0.197697 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.197697 , 0.243320 , 0.076037 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.243320 , 0.243320 , 0.060830 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.045622 , 0.243320 , 0.243320 , 0.106452 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.106452 , 0.243320 , 0.243320 , 0.136867 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.136867 , 0.243320 , 0.243320 , 0.152075 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.152075 , 0.243320 , 0.243320 , 0.212905 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.015207 , 0.076037 , 0.106452 , 0.228112 , 0.121660 , 0.000000 }, { 0.000000 , 0.000000 , 0.036742 , 0.238824 , 0.183711 , 0.055113 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.183711 , 0.275566 , 0.220453 , 0.238824 , 0.018371 , 0.000000 , 0.000000 , 0.000000 , 0.293937 , 0.073484 , 0.000000 , 0.110226 , 0.073484 , 0.000000 , 0.000000 , 0.036742 , 0.293937 , 0.055113 , 0.000000 , 0.018371 , 0.128597 , 0.000000 , 0.000000 , 0.091855 , 0.238824 , 0.091855 , 0.000000 , 0.036742 , 0.146968 , 0.000000 , 0.000000 , 0.073484 , 0.220453 , 0.000000 , 0.000000 , 0.055113 , 0.146968 , 0.000000 , 0.000000 , 0.000000 , 0.238824 , 0.091855 , 0.110226 , 0.238824 , 0.091855 , 0.000000 , 0.000000 , 0.000000 , 0.091855 , 0.257195 , 0.238824 , 0.146968 , 0.018371 , 0.000000 }, { 0.000000 , 0.000000 , 0.083195 , 0.216306 , 0.216306 , 0.083195 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.266223 , 0.266223 , 0.166390 , 0.249584 , 0.049917 , 0.000000 , 0.000000 , 0.083195 , 0.266223 , 0.033278 , 0.016639 , 0.133112 , 0.066556 , 0.000000 , 0.000000 , 0.066556 , 0.216306 , 0.000000 , 0.000000 , 0.066556 , 0.133112 , 0.000000 , 0.000000 , 0.133112 , 0.199667 , 0.000000 , 0.000000 , 0.099834 , 0.116473 , 0.000000 , 0.000000 , 0.083195 , 0.249584 , 0.000000 , 0.000000 , 0.116473 , 0.116473 , 0.000000 , 0.000000 , 0.000000 , 0.266223 , 0.133112 , 0.083195 , 0.249584 , 0.049917 , 0.000000 , 0.000000 , 0.000000 , 0.083195 , 0.232945 , 0.249584 , 0.149751 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.067593 , 0.219677 , 0.185881 , 0.118288 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.236576 , 0.270372 , 0.219677 , 0.270372 , 0.033797 , 0.000000 , 0.000000 , 0.084491 , 0.270372 , 0.067593 , 0.000000 , 0.084491 , 0.118288 , 0.000000 , 0.000000 , 0.135186 , 0.236576 , 0.000000 , 0.000000 , 0.067593 , 0.135186 , 0.000000 , 0.000000 , 0.101390 , 0.152084 , 0.000000 , 0.000000 , 0.067593 , 0.135186 , 0.000000 , 0.000000 , 0.033797 , 0.236576 , 0.016898 , 0.000000 , 0.135186 , 0.101390 , 0.000000 , 0.000000 , 0.000000 , 0.219677 , 0.202779 , 0.152084 , 0.253474 , 0.033797 , 0.000000 , 0.000000 , 0.000000 , 0.050695 , 0.270372 , 0.202779 , 0.084491 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.164675 , 0.209586 , 0.044911 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.029941 , 0.239527 , 0.239527 , 0.029941 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.164675 , 0.239527 , 0.209586 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.044911 , 0.239527 , 0.239527 , 0.224557 , 0.000000 , 0.000000 , 0.000000 , 0.014970 , 0.194616 , 0.239527 , 0.239527 , 0.194616 , 0.000000 , 0.000000 , 0.000000 , 0.089823 , 0.239527 , 0.134734 , 0.224557 , 0.194616 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.179646 , 0.239527 , 0.014970 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.134734 , 0.209586 , 0.014970 , 0.000000 }, { 0.000000 , 0.000000 , 0.015636 , 0.234547 , 0.172001 , 0.015636 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.031273 , 0.250183 , 0.250183 , 0.109455 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.093819 , 0.250183 , 0.250183 , 0.078182 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.125092 , 0.250183 , 0.250183 , 0.062546 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.140728 , 0.250183 , 0.203274 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.172001 , 0.250183 , 0.203274 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.172001 , 0.250183 , 0.172001 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.015636 , 0.218910 , 0.250183 , 0.046909 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.087065 , 0.139304 , 0.191543 , 0.087065 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.226370 , 0.278609 , 0.208957 , 0.208957 , 0.000000 , 0.000000 , 0.000000 , 0.017413 , 0.278609 , 0.156717 , 0.000000 , 0.156717 , 0.052239 , 0.000000 , 0.000000 , 0.052239 , 0.278609 , 0.104478 , 0.000000 , 0.104478 , 0.104478 , 0.000000 , 0.000000 , 0.052239 , 0.191543 , 0.017413 , 0.000000 , 0.087065 , 0.104478 , 0.000000 , 0.000000 , 0.000000 , 0.208957 , 0.000000 , 0.000000 , 0.191543 , 0.104478 , 0.000000 , 0.000000 , 0.000000 , 0.243783 , 0.087065 , 0.208957 , 0.261196 , 0.017413 , 0.000000 , 0.000000 , 0.000000 , 0.104478 , 0.278609 , 0.226370 , 0.034826 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.048100 , 0.176367 , 0.256534 , 0.160334 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.160334 , 0.256534 , 0.160334 , 0.224467 , 0.096200 , 0.000000 , 0.000000 , 0.000000 , 0.240501 , 0.112234 , 0.000000 , 0.176367 , 0.128267 , 0.000000 , 0.000000 , 0.048100 , 0.256534 , 0.032067 , 0.000000 , 0.128267 , 0.128267 , 0.000000 , 0.000000 , 0.064134 , 0.192401 , 0.000000 , 0.000000 , 0.144300 , 0.128267 , 0.000000 , 0.000000 , 0.096200 , 0.240501 , 0.016033 , 0.000000 , 0.192401 , 0.128267 , 0.000000 , 0.000000 , 0.048100 , 0.240501 , 0.160334 , 0.128267 , 0.240501 , 0.064134 , 0.000000 , 0.000000 , 0.000000 , 0.080167 , 0.192401 , 0.224467 , 0.144300 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.119908 , 0.256946 , 0.154167 , 0.085649 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.239816 , 0.274075 , 0.239816 , 0.256946 , 0.000000 , 0.000000 , 0.000000 , 0.017130 , 0.274075 , 0.137038 , 0.068519 , 0.102778 , 0.068519 , 0.000000 , 0.000000 , 0.068519 , 0.256946 , 0.017130 , 0.000000 , 0.102778 , 0.085649 , 0.000000 , 0.000000 , 0.051389 , 0.188427 , 0.000000 , 0.000000 , 0.119908 , 0.085649 , 0.000000 , 0.000000 , 0.051389 , 0.188427 , 0.000000 , 0.017130 , 0.222686 , 0.034259 , 0.000000 , 0.000000 , 0.017130 , 0.222686 , 0.137038 , 0.222686 , 0.222686 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.102778 , 0.256946 , 0.188427 , 0.017130 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.033315 , 0.216546 , 0.149917 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.116602 , 0.266519 , 0.249861 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.183232 , 0.266519 , 0.116602 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.249861 , 0.266519 , 0.033315 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.116602 , 0.266519 , 0.233204 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.216546 , 0.266519 , 0.233204 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.133259 , 0.249861 , 0.266519 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.049972 , 0.216546 , 0.133259 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.165977 , 0.182574 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.265562 , 0.215769 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.116184 , 0.265562 , 0.149379 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.215769 , 0.265562 , 0.049793 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.165977 , 0.265562 , 0.265562 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.248965 , 0.265562 , 0.265562 , 0.066391 , 0.000000 , 0.000000 , 0.000000 , 0.049793 , 0.199172 , 0.099586 , 0.265562 , 0.099586 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.165977 , 0.215769 , 0.116184 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.186007 , 0.232509 , 0.031001 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.201508 , 0.248010 , 0.124005 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.217009 , 0.248010 , 0.139506 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.201508 , 0.248010 , 0.093004 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.108504 , 0.248010 , 0.248010 , 0.046502 , 0.000000 , 0.000000 , 0.000000 , 0.015501 , 0.248010 , 0.248010 , 0.248010 , 0.015501 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.124005 , 0.248010 , 0.248010 , 0.031001 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.139506 , 0.248010 , 0.108504 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.015815 , 0.221415 , 0.110707 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.094892 , 0.253045 , 0.253045 , 0.015815 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.110707 , 0.253045 , 0.237230 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.094892 , 0.253045 , 0.237230 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.094892 , 0.253045 , 0.237230 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.063261 , 0.253045 , 0.253045 , 0.015815 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.063261 , 0.253045 , 0.253045 , 0.094892 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.015815 , 0.237230 , 0.253045 , 0.126523 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.048957 , 0.261105 , 0.179510 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.261105 , 0.261105 , 0.097914 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.212148 , 0.261105 , 0.114233 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.179510 , 0.261105 , 0.163191 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.195829 , 0.261105 , 0.097914 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.048957 , 0.261105 , 0.261105 , 0.032638 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.081595 , 0.261105 , 0.244786 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.048957 , 0.212148 , 0.244786 , 0.000000 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.049931 , 0.233010 , 0.116505 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.233010 , 0.266297 , 0.233010 , 0.149792 , 0.000000 , 0.000000 , 0.000000 , 0.066574 , 0.266297 , 0.266297 , 0.183079 , 0.249653 , 0.049931 , 0.000000 , 0.000000 , 0.083218 , 0.249653 , 0.099861 , 0.000000 , 0.066574 , 0.133149 , 0.000000 , 0.000000 , 0.133149 , 0.133149 , 0.000000 , 0.000000 , 0.066574 , 0.133149 , 0.000000 , 0.000000 , 0.083218 , 0.183079 , 0.000000 , 0.000000 , 0.099861 , 0.099861 , 0.000000 , 0.000000 , 0.000000 , 0.216366 , 0.166436 , 0.083218 , 0.249653 , 0.083218 , 0.000000 , 0.000000 , 0.000000 , 0.033287 , 0.199723 , 0.233010 , 0.133149 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.111803 , 0.223607 , 0.209631 , 0.111803 , 0.000000 , 0.000000 , 0.000000 , 0.013975 , 0.223607 , 0.223607 , 0.223607 , 0.027951 , 0.000000 , 0.000000 , 0.000000 , 0.027951 , 0.223607 , 0.223607 , 0.139754 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.027951 , 0.223607 , 0.223607 , 0.167705 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.083853 , 0.223607 , 0.223607 , 0.181681 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.013975 , 0.223607 , 0.223607 , 0.153730 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.223607 , 0.223607 , 0.139754 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.097828 , 0.209631 , 0.209631 , 0.000000 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.083765 , 0.184283 , 0.067012 , 0.016753 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.251295 , 0.268048 , 0.268048 , 0.184283 , 0.000000 , 0.000000 , 0.000000 , 0.033506 , 0.268048 , 0.150777 , 0.033506 , 0.201036 , 0.067012 , 0.000000 , 0.000000 , 0.100518 , 0.217789 , 0.000000 , 0.000000 , 0.100518 , 0.100518 , 0.000000 , 0.000000 , 0.050259 , 0.217789 , 0.000000 , 0.000000 , 0.083765 , 0.150777 , 0.000000 , 0.000000 , 0.050259 , 0.268048 , 0.000000 , 0.000000 , 0.100518 , 0.134024 , 0.000000 , 0.000000 , 0.000000 , 0.217789 , 0.201036 , 0.134024 , 0.268048 , 0.117271 , 0.000000 , 0.000000 , 0.000000 , 0.067012 , 0.217789 , 0.201036 , 0.167530 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.141160 , 0.235267 , 0.078422 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.047053 , 0.235267 , 0.235267 , 0.250951 , 0.062738 , 0.000000 , 0.000000 , 0.000000 , 0.156845 , 0.219583 , 0.000000 , 0.141160 , 0.219583 , 0.000000 , 0.000000 , 0.000000 , 0.125476 , 0.188214 , 0.000000 , 0.000000 , 0.188214 , 0.078422 , 0.000000 , 0.000000 , 0.125476 , 0.125476 , 0.000000 , 0.000000 , 0.156845 , 0.125476 , 0.000000 , 0.000000 , 0.078422 , 0.219583 , 0.000000 , 0.000000 , 0.188214 , 0.125476 , 0.000000 , 0.000000 , 0.000000 , 0.250951 , 0.109791 , 0.188214 , 0.250951 , 0.062738 , 0.000000 , 0.000000 , 0.000000 , 0.141160 , 0.250951 , 0.235267 , 0.109791 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.189504 , 0.233235 , 0.087463 , 0.000000 , 0.000000 , 0.000000 , 0.043732 , 0.160349 , 0.233235 , 0.233235 , 0.072886 , 0.000000 , 0.000000 , 0.072886 , 0.233235 , 0.233235 , 0.233235 , 0.233235 , 0.058309 , 0.000000 , 0.000000 , 0.058309 , 0.145772 , 0.131195 , 0.233235 , 0.233235 , 0.058309 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.189504 , 0.233235 , 0.058309 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.174926 , 0.233235 , 0.058309 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.029154 , 0.233235 , 0.233235 , 0.102040 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.014577 , 0.174926 , 0.204081 , 0.072886 , 0.000000 }, { 0.000000 , 0.000000 , 0.060585 , 0.196902 , 0.181756 , 0.015146 , 0.000000 , 0.000000 , 0.000000 , 0.030293 , 0.227195 , 0.212048 , 0.242341 , 0.196902 , 0.000000 , 0.000000 , 0.000000 , 0.090878 , 0.242341 , 0.060585 , 0.090878 , 0.242341 , 0.075732 , 0.000000 , 0.000000 , 0.121170 , 0.227195 , 0.015146 , 0.000000 , 0.181756 , 0.121170 , 0.000000 , 0.000000 , 0.121170 , 0.181756 , 0.000000 , 0.000000 , 0.181756 , 0.121170 , 0.000000 , 0.000000 , 0.075732 , 0.196902 , 0.000000 , 0.015146 , 0.196902 , 0.121170 , 0.000000 , 0.000000 , 0.015146 , 0.227195 , 0.151463 , 0.181756 , 0.242341 , 0.045439 , 0.000000 , 0.000000 , 0.000000 , 0.090878 , 0.242341 , 0.196902 , 0.060585 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.014801 , 0.118405 , 0.236810 , 0.103604 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.044402 , 0.236810 , 0.236810 , 0.177607 , 0.000000 , 0.000000 , 0.000000 , 0.014801 , 0.222009 , 0.236810 , 0.236810 , 0.177607 , 0.000000 , 0.000000 , 0.000000 , 0.044402 , 0.177607 , 0.222009 , 0.236810 , 0.177607 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.118405 , 0.236810 , 0.148006 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.162807 , 0.236810 , 0.207209 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.162807 , 0.236810 , 0.236810 , 0.014801 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.074003 , 0.192408 , 0.103604 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.046744 , 0.186976 , 0.171394 , 0.015581 , 0.000000 , 0.000000 , 0.000000 , 0.015581 , 0.218138 , 0.218138 , 0.233720 , 0.124651 , 0.000000 , 0.000000 , 0.000000 , 0.046744 , 0.249301 , 0.031163 , 0.077907 , 0.249301 , 0.015581 , 0.000000 , 0.000000 , 0.062325 , 0.249301 , 0.000000 , 0.000000 , 0.218138 , 0.093488 , 0.000000 , 0.000000 , 0.062325 , 0.249301 , 0.000000 , 0.000000 , 0.171394 , 0.124651 , 0.000000 , 0.000000 , 0.046744 , 0.249301 , 0.031163 , 0.000000 , 0.155813 , 0.124651 , 0.000000 , 0.000000 , 0.000000 , 0.155813 , 0.233720 , 0.202557 , 0.249301 , 0.046744 , 0.000000 , 0.000000 , 0.000000 , 0.015581 , 0.233720 , 0.218138 , 0.093488 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.068168 , 0.204503 , 0.177236 , 0.013634 , 0.000000 , 0.000000 , 0.000000 , 0.027267 , 0.190870 , 0.218137 , 0.218137 , 0.054534 , 0.000000 , 0.000000 , 0.000000 , 0.109068 , 0.218137 , 0.218137 , 0.218137 , 0.054534 , 0.000000 , 0.000000 , 0.081801 , 0.204503 , 0.218137 , 0.218137 , 0.218137 , 0.013634 , 0.000000 , 0.000000 , 0.040901 , 0.095435 , 0.136335 , 0.218137 , 0.218137 , 0.054534 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.149969 , 0.218137 , 0.218137 , 0.013634 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.163603 , 0.218137 , 0.218137 , 0.013634 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.081801 , 0.190870 , 0.163603 , 0.013634 , 0.000000 }, { 0.000000 , 0.000000 , 0.061641 , 0.215742 , 0.138692 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.200332 , 0.246563 , 0.246563 , 0.154102 , 0.000000 , 0.000000 , 0.000000 , 0.061641 , 0.246563 , 0.061641 , 0.077051 , 0.246563 , 0.092461 , 0.000000 , 0.000000 , 0.123281 , 0.215742 , 0.000000 , 0.015410 , 0.231153 , 0.077051 , 0.000000 , 0.000000 , 0.092461 , 0.246563 , 0.000000 , 0.000000 , 0.200332 , 0.061641 , 0.000000 , 0.000000 , 0.061641 , 0.231153 , 0.015410 , 0.107871 , 0.246563 , 0.015410 , 0.000000 , 0.000000 , 0.030820 , 0.231153 , 0.215742 , 0.246563 , 0.107871 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.061641 , 0.200332 , 0.138692 , 0.000000 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.159923 , 0.239885 , 0.095954 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.031985 , 0.255877 , 0.223893 , 0.255877 , 0.111946 , 0.000000 , 0.000000 , 0.000000 , 0.063969 , 0.255877 , 0.127939 , 0.079962 , 0.255877 , 0.015992 , 0.000000 , 0.000000 , 0.079962 , 0.191908 , 0.000000 , 0.000000 , 0.191908 , 0.127939 , 0.000000 , 0.000000 , 0.127939 , 0.143931 , 0.000000 , 0.000000 , 0.191908 , 0.127939 , 0.000000 , 0.000000 , 0.079962 , 0.191908 , 0.000000 , 0.015992 , 0.239885 , 0.047977 , 0.000000 , 0.000000 , 0.063969 , 0.207900 , 0.063969 , 0.191908 , 0.207900 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.143931 , 0.255877 , 0.207900 , 0.063969 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.014822 , 0.177861 , 0.103752 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.133396 , 0.237148 , 0.237148 , 0.014822 , 0.000000 , 0.000000 , 0.014822 , 0.103752 , 0.222326 , 0.237148 , 0.207504 , 0.000000 , 0.000000 , 0.000000 , 0.059287 , 0.237148 , 0.237148 , 0.237148 , 0.237148 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.044465 , 0.237148 , 0.237148 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.029643 , 0.237148 , 0.237148 , 0.044465 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.088930 , 0.237148 , 0.237148 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.044465 , 0.222326 , 0.192682 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.079255 , 0.253617 , 0.126809 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.063404 , 0.253617 , 0.253617 , 0.126809 , 0.000000 , 0.000000 , 0.000000 , 0.031702 , 0.237766 , 0.253617 , 0.253617 , 0.126809 , 0.000000 , 0.000000 , 0.000000 , 0.063404 , 0.126809 , 0.190213 , 0.253617 , 0.079255 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.095106 , 0.253617 , 0.174362 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.095106 , 0.253617 , 0.190213 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.095106 , 0.253617 , 0.237766 , 0.015851 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.063404 , 0.237766 , 0.174362 , 0.031702 , 0.000000 }, { 0.000000 , 0.000000 , 0.032530 , 0.243975 , 0.162650 , 0.016265 , 0.000000 , 0.000000 , 0.000000 , 0.032530 , 0.211445 , 0.195180 , 0.227710 , 0.146385 , 0.000000 , 0.000000 , 0.000000 , 0.097590 , 0.260240 , 0.016265 , 0.016265 , 0.227710 , 0.032530 , 0.000000 , 0.000000 , 0.130120 , 0.260240 , 0.000000 , 0.000000 , 0.162650 , 0.081325 , 0.000000 , 0.000000 , 0.130120 , 0.227710 , 0.032530 , 0.000000 , 0.130120 , 0.130120 , 0.000000 , 0.000000 , 0.097590 , 0.227710 , 0.000000 , 0.000000 , 0.130120 , 0.130120 , 0.000000 , 0.000000 , 0.016265 , 0.227710 , 0.195180 , 0.130120 , 0.243975 , 0.097590 , 0.000000 , 0.000000 , 0.000000 , 0.048795 , 0.211445 , 0.260240 , 0.130120 , 0.016265 , 0.000000 }, { 0.000000 , 0.000000 , 0.034752 , 0.260643 , 0.139010 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.121633 , 0.243267 , 0.260643 , 0.139010 , 0.000000 , 0.000000 , 0.000000 , 0.121633 , 0.260643 , 0.052129 , 0.052129 , 0.260643 , 0.000000 , 0.000000 , 0.000000 , 0.104257 , 0.278019 , 0.017376 , 0.000000 , 0.156386 , 0.139010 , 0.000000 , 0.000000 , 0.069505 , 0.208514 , 0.000000 , 0.000000 , 0.139010 , 0.139010 , 0.000000 , 0.000000 , 0.000000 , 0.208514 , 0.052129 , 0.000000 , 0.208514 , 0.121633 , 0.000000 , 0.000000 , 0.000000 , 0.156386 , 0.225891 , 0.225891 , 0.260643 , 0.017376 , 0.000000 , 0.000000 , 0.000000 , 0.017376 , 0.156386 , 0.208514 , 0.086881 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.067787 , 0.254201 , 0.203361 , 0.033893 , 0.000000 , 0.000000 , 0.000000 , 0.033893 , 0.254201 , 0.118627 , 0.186414 , 0.169467 , 0.000000 , 0.000000 , 0.000000 , 0.067787 , 0.271147 , 0.000000 , 0.000000 , 0.254201 , 0.016947 , 0.000000 , 0.000000 , 0.101680 , 0.169467 , 0.000000 , 0.000000 , 0.169467 , 0.135574 , 0.000000 , 0.000000 , 0.135574 , 0.135574 , 0.000000 , 0.000000 , 0.101680 , 0.135574 , 0.000000 , 0.000000 , 0.084734 , 0.203361 , 0.000000 , 0.000000 , 0.186414 , 0.135574 , 0.000000 , 0.000000 , 0.033893 , 0.271147 , 0.118627 , 0.135574 , 0.271147 , 0.033893 , 0.000000 , 0.000000 , 0.000000 , 0.101680 , 0.254201 , 0.271147 , 0.135574 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.123705 , 0.176721 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.159049 , 0.282754 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.106033 , 0.282754 , 0.088361 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.159049 , 0.282754 , 0.159049 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.106033 , 0.247410 , 0.017672 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.035344 , 0.282754 , 0.070689 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.017672 , 0.070689 , 0.247410 , 0.212066 , 0.070689 , 0.017672 , 0.000000 , 0.000000 , 0.123705 , 0.282754 , 0.282754 , 0.282754 , 0.282754 , 0.088361 }, { 0.000000 , 0.000000 , 0.000000 , 0.028868 , 0.230940 , 0.216506 , 0.043301 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.115470 , 0.230940 , 0.230940 , 0.057735 , 0.000000 , 0.000000 , 0.000000 , 0.129904 , 0.230940 , 0.230940 , 0.202073 , 0.000000 , 0.000000 , 0.000000 , 0.101036 , 0.230940 , 0.230940 , 0.230940 , 0.173205 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.115470 , 0.230940 , 0.173205 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.101036 , 0.230940 , 0.173205 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.057735 , 0.230940 , 0.230940 , 0.101036 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.187639 , 0.230940 , 0.101036 , 0.000000 }, { 0.000000 , 0.000000 , 0.049820 , 0.232495 , 0.166068 , 0.016607 , 0.000000 , 0.000000 , 0.000000 , 0.033214 , 0.232495 , 0.199282 , 0.249102 , 0.232495 , 0.016607 , 0.000000 , 0.000000 , 0.099641 , 0.215888 , 0.000000 , 0.049820 , 0.232495 , 0.132854 , 0.000000 , 0.000000 , 0.083034 , 0.199282 , 0.000000 , 0.000000 , 0.182675 , 0.132854 , 0.000000 , 0.000000 , 0.066427 , 0.232495 , 0.000000 , 0.000000 , 0.199282 , 0.116248 , 0.000000 , 0.000000 , 0.016607 , 0.232495 , 0.066427 , 0.049820 , 0.265709 , 0.049820 , 0.000000 , 0.000000 , 0.000000 , 0.132854 , 0.199282 , 0.199282 , 0.199282 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.033214 , 0.249102 , 0.166068 , 0.049820 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.067661 , 0.253728 , 0.202982 , 0.016915 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.202982 , 0.186067 , 0.219897 , 0.219897 , 0.016915 , 0.000000 , 0.000000 , 0.050746 , 0.202982 , 0.000000 , 0.000000 , 0.236812 , 0.101491 , 0.000000 , 0.000000 , 0.135321 , 0.202982 , 0.000000 , 0.000000 , 0.186067 , 0.135321 , 0.000000 , 0.000000 , 0.135321 , 0.202982 , 0.000000 , 0.000000 , 0.135321 , 0.135321 , 0.000000 , 0.000000 , 0.101491 , 0.219897 , 0.000000 , 0.000000 , 0.186067 , 0.118406 , 0.000000 , 0.000000 , 0.067661 , 0.270643 , 0.118406 , 0.169152 , 0.253728 , 0.033830 , 0.000000 , 0.000000 , 0.000000 , 0.118406 , 0.219897 , 0.202982 , 0.033830 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.045612 , 0.243263 , 0.136836 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.060816 , 0.228059 , 0.228059 , 0.243263 , 0.106428 , 0.000000 , 0.000000 , 0.000000 , 0.121632 , 0.243263 , 0.045612 , 0.106428 , 0.182448 , 0.000000 , 0.000000 , 0.000000 , 0.091224 , 0.243263 , 0.045612 , 0.000000 , 0.197651 , 0.045612 , 0.000000 , 0.000000 , 0.121632 , 0.152040 , 0.000000 , 0.000000 , 0.182448 , 0.121632 , 0.000000 , 0.000000 , 0.015204 , 0.228059 , 0.030408 , 0.000000 , 0.136836 , 0.167244 , 0.000000 , 0.000000 , 0.000000 , 0.197651 , 0.212855 , 0.152040 , 0.228059 , 0.182448 , 0.000000 , 0.000000 , 0.000000 , 0.045612 , 0.152040 , 0.243263 , 0.212855 , 0.045612 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.079839 , 0.255485 , 0.143711 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.015968 , 0.207582 , 0.255485 , 0.095807 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.207582 , 0.255485 , 0.255485 , 0.063871 , 0.000000 , 0.000000 , 0.000000 , 0.079839 , 0.239518 , 0.255485 , 0.255485 , 0.079839 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.159678 , 0.255485 , 0.111775 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.143711 , 0.255485 , 0.127743 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.143711 , 0.255485 , 0.207582 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.079839 , 0.223550 , 0.143711 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.090495 , 0.241319 , 0.090495 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.196072 , 0.241319 , 0.150824 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.135742 , 0.241319 , 0.241319 , 0.090495 , 0.000000 , 0.000000 , 0.000000 , 0.045247 , 0.241319 , 0.241319 , 0.241319 , 0.060330 , 0.000000 , 0.000000 , 0.000000 , 0.075412 , 0.241319 , 0.241319 , 0.241319 , 0.090495 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.135742 , 0.241319 , 0.150824 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.120659 , 0.241319 , 0.226236 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.060330 , 0.196072 , 0.165907 , 0.030165 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.196907 , 0.131271 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.049227 , 0.262542 , 0.262542 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.016409 , 0.213315 , 0.262542 , 0.180498 , 0.000000 , 0.000000 , 0.000000 , 0.049227 , 0.246133 , 0.262542 , 0.262542 , 0.131271 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.049227 , 0.114862 , 0.262542 , 0.131271 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.065636 , 0.262542 , 0.131271 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.065636 , 0.262542 , 0.229724 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.229724 , 0.246133 , 0.082044 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.097157 , 0.222072 , 0.222072 , 0.097157 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.194313 , 0.222072 , 0.222072 , 0.055518 , 0.000000 , 0.000000 , 0.027759 , 0.180434 , 0.222072 , 0.222072 , 0.166554 , 0.000000 , 0.000000 , 0.000000 , 0.097157 , 0.222072 , 0.222072 , 0.222072 , 0.166554 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.138795 , 0.222072 , 0.111036 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.152675 , 0.222072 , 0.180434 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.138795 , 0.222072 , 0.222072 , 0.027759 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.124916 , 0.222072 , 0.166554 , 0.027759 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.099094 , 0.226501 , 0.169876 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.099094 , 0.226501 , 0.226501 , 0.169876 , 0.000000 , 0.000000 , 0.000000 , 0.042469 , 0.226501 , 0.226501 , 0.226501 , 0.113250 , 0.000000 , 0.000000 , 0.000000 , 0.099094 , 0.226501 , 0.226501 , 0.226501 , 0.113250 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.155719 , 0.226501 , 0.169876 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.099094 , 0.226501 , 0.212344 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.084938 , 0.226501 , 0.226501 , 0.070781 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.084938 , 0.212344 , 0.212344 , 0.028313 , 0.000000 }, { 0.000000 , 0.000000 , 0.048558 , 0.178046 , 0.097116 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.161860 , 0.226604 , 0.258976 , 0.032372 , 0.000000 , 0.000000 , 0.000000 , 0.048558 , 0.242790 , 0.016186 , 0.178046 , 0.178046 , 0.000000 , 0.000000 , 0.000000 , 0.064744 , 0.194232 , 0.000000 , 0.032372 , 0.258976 , 0.032372 , 0.000000 , 0.000000 , 0.113302 , 0.194232 , 0.000000 , 0.000000 , 0.194232 , 0.129488 , 0.000000 , 0.000000 , 0.064744 , 0.226604 , 0.000000 , 0.016186 , 0.242790 , 0.129488 , 0.000000 , 0.000000 , 0.032372 , 0.242790 , 0.226604 , 0.242790 , 0.242790 , 0.016186 , 0.000000 , 0.000000 , 0.000000 , 0.080930 , 0.210418 , 0.226604 , 0.080930 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.054443 , 0.190551 , 0.190551 , 0.054443 , 0.000000 , 0.000000 , 0.000000 , 0.013611 , 0.204162 , 0.217773 , 0.217773 , 0.027222 , 0.000000 , 0.000000 , 0.027222 , 0.176940 , 0.217773 , 0.217773 , 0.217773 , 0.000000 , 0.000000 , 0.000000 , 0.108886 , 0.217773 , 0.217773 , 0.217773 , 0.217773 , 0.000000 , 0.000000 , 0.000000 , 0.027222 , 0.095276 , 0.108886 , 0.217773 , 0.217773 , 0.013611 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.054443 , 0.217773 , 0.217773 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.054443 , 0.217773 , 0.217773 , 0.027222 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.054443 , 0.217773 , 0.204162 , 0.054443 , 0.000000 }, { 0.000000 , 0.000000 , 0.035202 , 0.211210 , 0.246412 , 0.070403 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.264013 , 0.211210 , 0.193609 , 0.228811 , 0.000000 , 0.000000 , 0.000000 , 0.070403 , 0.281613 , 0.070403 , 0.017601 , 0.246412 , 0.105605 , 0.000000 , 0.000000 , 0.070403 , 0.211210 , 0.000000 , 0.000000 , 0.140807 , 0.140807 , 0.000000 , 0.000000 , 0.105605 , 0.158408 , 0.000000 , 0.000000 , 0.088004 , 0.140807 , 0.000000 , 0.000000 , 0.052803 , 0.211210 , 0.017601 , 0.000000 , 0.211210 , 0.140807 , 0.000000 , 0.000000 , 0.000000 , 0.140807 , 0.211210 , 0.158408 , 0.281613 , 0.052803 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.176008 , 0.228811 , 0.052803 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.097993 , 0.244982 , 0.212317 , 0.032664 , 0.000000 , 0.000000 , 0.000000 , 0.016332 , 0.244982 , 0.163321 , 0.179653 , 0.228650 , 0.000000 , 0.000000 , 0.000000 , 0.032664 , 0.261314 , 0.048996 , 0.016332 , 0.261314 , 0.065328 , 0.000000 , 0.000000 , 0.065328 , 0.195985 , 0.000000 , 0.016332 , 0.228650 , 0.065328 , 0.000000 , 0.000000 , 0.065328 , 0.163321 , 0.000000 , 0.000000 , 0.244982 , 0.048996 , 0.000000 , 0.000000 , 0.065328 , 0.195985 , 0.000000 , 0.000000 , 0.244982 , 0.048996 , 0.000000 , 0.000000 , 0.016332 , 0.212317 , 0.146989 , 0.179653 , 0.261314 , 0.032664 , 0.000000 , 0.000000 , 0.000000 , 0.065328 , 0.195985 , 0.228650 , 0.081661 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.107731 , 0.215461 , 0.030780 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.030780 , 0.246241 , 0.092340 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.030780 , 0.230851 , 0.138511 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.030780 , 0.246241 , 0.184681 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.030780 , 0.246241 , 0.246241 , 0.076950 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.046170 , 0.200071 , 0.200071 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.092340 , 0.184681 , 0.215461 , 0.246241 , 0.184681 , 0.076950 , 0.000000 , 0.000000 , 0.076950 , 0.246241 , 0.246241 , 0.246241 , 0.246241 , 0.230851 }, { 0.000000 , 0.000000 , 0.000000 , 0.176132 , 0.273984 , 0.117422 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.195703 , 0.254413 , 0.078281 , 0.254413 , 0.039141 , 0.000000 , 0.000000 , 0.039141 , 0.273984 , 0.000000 , 0.000000 , 0.195703 , 0.117422 , 0.000000 , 0.000000 , 0.078281 , 0.176132 , 0.000000 , 0.000000 , 0.117422 , 0.156562 , 0.000000 , 0.000000 , 0.097851 , 0.156562 , 0.000000 , 0.000000 , 0.156562 , 0.136992 , 0.000000 , 0.000000 , 0.039141 , 0.215273 , 0.019570 , 0.000000 , 0.176132 , 0.097851 , 0.000000 , 0.000000 , 0.000000 , 0.117422 , 0.215273 , 0.078281 , 0.254413 , 0.058711 , 0.000000 , 0.000000 , 0.000000 , 0.019570 , 0.215273 , 0.313124 , 0.234843 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.105198 , 0.227930 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.140265 , 0.280529 , 0.035066 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.105198 , 0.280529 , 0.052599 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.052599 , 0.262996 , 0.105198 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.175331 , 0.175331 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.052599 , 0.262996 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.122731 , 0.175331 , 0.245463 , 0.210397 , 0.087665 , 0.017533 , 0.000000 , 0.000000 , 0.105198 , 0.280529 , 0.280529 , 0.280529 , 0.280529 , 0.210397 }, { 0.000000 , 0.000000 , 0.084831 , 0.254493 , 0.203595 , 0.067865 , 0.000000 , 0.000000 , 0.000000 , 0.033932 , 0.254493 , 0.135730 , 0.186628 , 0.271460 , 0.067865 , 0.000000 , 0.000000 , 0.135730 , 0.152696 , 0.000000 , 0.101797 , 0.271460 , 0.067865 , 0.000000 , 0.000000 , 0.135730 , 0.135730 , 0.000000 , 0.033932 , 0.169662 , 0.135730 , 0.000000 , 0.000000 , 0.135730 , 0.118764 , 0.000000 , 0.000000 , 0.220561 , 0.084831 , 0.000000 , 0.000000 , 0.033932 , 0.237527 , 0.000000 , 0.000000 , 0.271460 , 0.033932 , 0.000000 , 0.000000 , 0.000000 , 0.237527 , 0.135730 , 0.186628 , 0.169662 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.067865 , 0.220561 , 0.237527 , 0.000000 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.126381 , 0.221166 , 0.015798 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.110583 , 0.252761 , 0.047393 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.094785 , 0.252761 , 0.094785 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.094785 , 0.252761 , 0.142178 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.031595 , 0.252761 , 0.221166 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.126381 , 0.252761 , 0.047393 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.189571 , 0.189571 , 0.252761 , 0.252761 , 0.189571 , 0.063190 , 0.000000 , 0.000000 , 0.110583 , 0.252761 , 0.252761 , 0.252761 , 0.189571 , 0.078988 }, { 0.000000 , 0.000000 , 0.067641 , 0.253655 , 0.236745 , 0.067641 , 0.000000 , 0.000000 , 0.000000 , 0.016910 , 0.236745 , 0.135283 , 0.169103 , 0.219834 , 0.016910 , 0.000000 , 0.000000 , 0.084552 , 0.219834 , 0.000000 , 0.000000 , 0.270565 , 0.050731 , 0.000000 , 0.000000 , 0.101462 , 0.202924 , 0.000000 , 0.000000 , 0.219834 , 0.050731 , 0.000000 , 0.000000 , 0.118372 , 0.202924 , 0.000000 , 0.000000 , 0.236745 , 0.050731 , 0.000000 , 0.000000 , 0.016910 , 0.270565 , 0.000000 , 0.000000 , 0.236745 , 0.050731 , 0.000000 , 0.000000 , 0.000000 , 0.169103 , 0.186014 , 0.202924 , 0.236745 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.016910 , 0.186014 , 0.202924 , 0.050731 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.036185 , 0.199016 , 0.235200 , 0.090462 , 0.000000 , 0.000000 , 0.000000 , 0.018092 , 0.253293 , 0.162831 , 0.144739 , 0.253293 , 0.000000 , 0.000000 , 0.000000 , 0.108554 , 0.235200 , 0.018092 , 0.036185 , 0.289477 , 0.036185 , 0.000000 , 0.000000 , 0.126646 , 0.126646 , 0.000000 , 0.000000 , 0.217108 , 0.090462 , 0.000000 , 0.000000 , 0.126646 , 0.162831 , 0.000000 , 0.000000 , 0.054277 , 0.162831 , 0.000000 , 0.000000 , 0.036185 , 0.217108 , 0.000000 , 0.000000 , 0.072369 , 0.199016 , 0.000000 , 0.000000 , 0.000000 , 0.217108 , 0.108554 , 0.072369 , 0.253293 , 0.126646 , 0.000000 , 0.000000 , 0.000000 , 0.054277 , 0.235200 , 0.289477 , 0.162831 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.078684 , 0.220315 , 0.015737 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.141631 , 0.251789 , 0.062947 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.188842 , 0.251789 , 0.062947 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.188842 , 0.251789 , 0.125895 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.141631 , 0.251789 , 0.173105 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.125895 , 0.251789 , 0.031474 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.047210 , 0.125895 , 0.236052 , 0.204579 , 0.173105 , 0.125895 , 0.000000 , 0.000000 , 0.078684 , 0.251789 , 0.251789 , 0.251789 , 0.251789 , 0.157368 }, { 0.000000 , 0.000000 , 0.030809 , 0.246475 , 0.077023 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.061619 , 0.246475 , 0.154047 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.077023 , 0.246475 , 0.107833 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.123237 , 0.246475 , 0.138642 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.231070 , 0.246475 , 0.215666 , 0.030809 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.107833 , 0.123237 , 0.215666 , 0.154047 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.184856 , 0.231070 , 0.215666 , 0.246475 , 0.215666 , 0.138642 , 0.000000 , 0.000000 , 0.030809 , 0.154047 , 0.200261 , 0.246475 , 0.154047 , 0.046214 }, { 0.000000 , 0.000000 , 0.017772 , 0.266585 , 0.195496 , 0.017772 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.159951 , 0.213268 , 0.142179 , 0.213268 , 0.000000 , 0.000000 , 0.000000 , 0.017772 , 0.266585 , 0.017772 , 0.106634 , 0.284357 , 0.035545 , 0.000000 , 0.000000 , 0.035545 , 0.213268 , 0.000000 , 0.017772 , 0.195496 , 0.106634 , 0.000000 , 0.000000 , 0.088862 , 0.177723 , 0.000000 , 0.000000 , 0.195496 , 0.071089 , 0.000000 , 0.000000 , 0.035545 , 0.231040 , 0.000000 , 0.000000 , 0.177723 , 0.053317 , 0.000000 , 0.000000 , 0.000000 , 0.231040 , 0.035545 , 0.053317 , 0.231040 , 0.053317 , 0.000000 , 0.000000 , 0.000000 , 0.017772 , 0.231040 , 0.284357 , 0.266585 , 0.017772 , 0.000000 }, { 0.000000 , 0.000000 , 0.075054 , 0.240174 , 0.225163 , 0.060044 , 0.000000 , 0.000000 , 0.000000 , 0.045033 , 0.225163 , 0.195142 , 0.195142 , 0.180131 , 0.000000 , 0.000000 , 0.000000 , 0.105076 , 0.210152 , 0.015011 , 0.000000 , 0.240174 , 0.075054 , 0.000000 , 0.000000 , 0.180131 , 0.135098 , 0.000000 , 0.015011 , 0.165120 , 0.150109 , 0.000000 , 0.000000 , 0.150109 , 0.150109 , 0.000000 , 0.000000 , 0.105076 , 0.195142 , 0.000000 , 0.000000 , 0.090065 , 0.225163 , 0.000000 , 0.000000 , 0.120087 , 0.180131 , 0.000000 , 0.000000 , 0.015011 , 0.210152 , 0.105076 , 0.090065 , 0.225163 , 0.165120 , 0.000000 , 0.000000 , 0.000000 , 0.075054 , 0.225163 , 0.240174 , 0.210152 , 0.045033 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.125100 , 0.232328 , 0.160843 , 0.017871 , 0.000000 , 0.000000 , 0.000000 , 0.125100 , 0.268071 , 0.142971 , 0.268071 , 0.089357 , 0.000000 , 0.000000 , 0.017871 , 0.268071 , 0.035743 , 0.000000 , 0.178714 , 0.142971 , 0.000000 , 0.000000 , 0.071486 , 0.214457 , 0.000000 , 0.000000 , 0.214457 , 0.125100 , 0.000000 , 0.000000 , 0.089357 , 0.160843 , 0.000000 , 0.000000 , 0.250200 , 0.053614 , 0.000000 , 0.000000 , 0.071486 , 0.250200 , 0.000000 , 0.000000 , 0.196585 , 0.000000 , 0.000000 , 0.000000 , 0.017871 , 0.285942 , 0.142971 , 0.142971 , 0.196585 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.035743 , 0.196585 , 0.250200 , 0.089357 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.155681 , 0.186817 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.124545 , 0.249089 , 0.015568 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.140113 , 0.249089 , 0.015568 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.186817 , 0.249089 , 0.077840 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.202385 , 0.249089 , 0.155681 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.015568 , 0.155681 , 0.233521 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.108977 , 0.186817 , 0.249089 , 0.186817 , 0.186817 , 0.062272 , 0.000000 , 0.000000 , 0.108977 , 0.249089 , 0.249089 , 0.249089 , 0.249089 , 0.171249 }, { 0.000000 , 0.000000 , 0.045814 , 0.229068 , 0.076356 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.076356 , 0.244339 , 0.152712 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.091627 , 0.244339 , 0.106898 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.030542 , 0.183254 , 0.244339 , 0.137441 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.122169 , 0.244339 , 0.229068 , 0.213797 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.091627 , 0.045814 , 0.244339 , 0.091627 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.091627 , 0.122169 , 0.183254 , 0.229068 , 0.183254 , 0.152712 , 0.000000 , 0.000000 , 0.030542 , 0.198525 , 0.244339 , 0.244339 , 0.229068 , 0.167983 }, { 0.000000 , 0.000000 , 0.000000 , 0.260620 , 0.097732 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.179176 , 0.260620 , 0.260620 , 0.179176 , 0.000000 , 0.000000 , 0.000000 , 0.065155 , 0.260620 , 0.179176 , 0.211753 , 0.228042 , 0.000000 , 0.000000 , 0.000000 , 0.114021 , 0.195465 , 0.016289 , 0.048866 , 0.211753 , 0.000000 , 0.000000 , 0.000000 , 0.065155 , 0.162887 , 0.000000 , 0.000000 , 0.260620 , 0.000000 , 0.000000 , 0.000000 , 0.032577 , 0.228042 , 0.000000 , 0.016289 , 0.260620 , 0.016289 , 0.000000 , 0.000000 , 0.000000 , 0.146598 , 0.114021 , 0.146598 , 0.228042 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.016289 , 0.179176 , 0.244331 , 0.048866 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.038369 , 0.211032 , 0.287771 , 0.038369 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.230216 , 0.115108 , 0.211032 , 0.172662 , 0.000000 , 0.000000 , 0.000000 , 0.076739 , 0.211032 , 0.000000 , 0.134293 , 0.306955 , 0.000000 , 0.000000 , 0.000000 , 0.095924 , 0.115108 , 0.000000 , 0.019185 , 0.306955 , 0.115108 , 0.000000 , 0.000000 , 0.095924 , 0.076739 , 0.000000 , 0.000000 , 0.191847 , 0.134293 , 0.000000 , 0.000000 , 0.000000 , 0.191847 , 0.000000 , 0.000000 , 0.191847 , 0.095924 , 0.000000 , 0.000000 , 0.000000 , 0.249401 , 0.038369 , 0.115108 , 0.230216 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.076739 , 0.306955 , 0.230216 , 0.019185 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.017298 , 0.207576 , 0.242172 , 0.051894 , 0.000000 , 0.000000 , 0.000000 , 0.017298 , 0.224874 , 0.190278 , 0.155682 , 0.224874 , 0.000000 , 0.000000 , 0.000000 , 0.121086 , 0.190278 , 0.000000 , 0.017298 , 0.276769 , 0.069192 , 0.000000 , 0.000000 , 0.138384 , 0.103788 , 0.000000 , 0.034596 , 0.259471 , 0.000000 , 0.000000 , 0.000000 , 0.069192 , 0.207576 , 0.000000 , 0.000000 , 0.259471 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.259471 , 0.017298 , 0.017298 , 0.259471 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.121086 , 0.172980 , 0.121086 , 0.224874 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.017298 , 0.224874 , 0.276769 , 0.121086 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.081325 , 0.211445 , 0.032530 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.065060 , 0.260240 , 0.113855 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.065060 , 0.260240 , 0.065060 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.065060 , 0.260240 , 0.097590 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.146385 , 0.260240 , 0.162650 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.032530 , 0.178915 , 0.243975 , 0.016265 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.162650 , 0.211445 , 0.260240 , 0.243975 , 0.260240 , 0.146385 , 0.000000 , 0.000000 , 0.048795 , 0.195180 , 0.260240 , 0.260240 , 0.178915 , 0.032530 }, { 0.000000 , 0.000000 , 0.089843 , 0.239581 , 0.059895 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.059895 , 0.239581 , 0.134764 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.104817 , 0.239581 , 0.179686 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.194660 , 0.239581 , 0.224607 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.194660 , 0.224607 , 0.239581 , 0.029948 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.014974 , 0.029948 , 0.224607 , 0.119791 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.089843 , 0.134764 , 0.209633 , 0.224607 , 0.194660 , 0.104817 , 0.000000 , 0.000000 , 0.074869 , 0.224607 , 0.239581 , 0.239581 , 0.224607 , 0.044921 }, { 0.000000 , 0.000000 , 0.032956 , 0.247167 , 0.049433 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.065911 , 0.263645 , 0.065911 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.065911 , 0.263645 , 0.082389 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.230689 , 0.263645 , 0.098867 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.115345 , 0.247167 , 0.115345 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.032956 , 0.164778 , 0.148300 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.263645 , 0.263645 , 0.247167 , 0.148300 , 0.263645 , 0.082389 , 0.000000 , 0.000000 , 0.049433 , 0.247167 , 0.263645 , 0.247167 , 0.115345 , 0.016478 }, { 0.000000 , 0.000000 , 0.061699 , 0.231372 , 0.061699 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.046274 , 0.246797 , 0.138823 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.030850 , 0.246797 , 0.169673 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.246797 , 0.200523 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.030850 , 0.246797 , 0.246797 , 0.030850 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.077124 , 0.231372 , 0.154248 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.061699 , 0.185098 , 0.215948 , 0.246797 , 0.200523 , 0.200523 , 0.000000 , 0.000000 , 0.030850 , 0.200523 , 0.246797 , 0.246797 , 0.231372 , 0.123399 }, { 0.000000 , 0.000000 , 0.066537 , 0.212917 , 0.186303 , 0.106459 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.053229 , 0.212917 , 0.212917 , 0.093151 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.186303 , 0.212917 , 0.212917 , 0.106459 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.186303 , 0.212917 , 0.212917 , 0.106459 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.146381 , 0.212917 , 0.212917 , 0.066537 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.133073 , 0.212917 , 0.212917 , 0.106459 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.146381 , 0.212917 , 0.212917 , 0.186303 , 0.039922 , 0.000000 , 0.000000 , 0.000000 , 0.079844 , 0.212917 , 0.212917 , 0.212917 , 0.039922 , 0.000000 }, { 0.000000 , 0.000000 , 0.071646 , 0.232849 , 0.250761 , 0.143292 , 0.000000 , 0.000000 , 0.000000 , 0.053734 , 0.250761 , 0.053734 , 0.017911 , 0.286584 , 0.053734 , 0.000000 , 0.000000 , 0.125380 , 0.161203 , 0.000000 , 0.000000 , 0.250761 , 0.107469 , 0.000000 , 0.000000 , 0.143292 , 0.071646 , 0.000000 , 0.000000 , 0.286584 , 0.071646 , 0.000000 , 0.000000 , 0.143292 , 0.107469 , 0.000000 , 0.000000 , 0.286584 , 0.000000 , 0.000000 , 0.000000 , 0.053734 , 0.197026 , 0.000000 , 0.017911 , 0.250761 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.214938 , 0.071646 , 0.107469 , 0.197026 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.089557 , 0.286584 , 0.250761 , 0.017911 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.194398 , 0.179445 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.209352 , 0.239259 , 0.014954 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.014954 , 0.224306 , 0.239259 , 0.014954 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.059815 , 0.239259 , 0.239259 , 0.044861 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.074769 , 0.224306 , 0.239259 , 0.134583 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.179445 , 0.224306 , 0.014954 , 0.000000 , 0.000000 , 0.000000 , 0.014954 , 0.164491 , 0.134583 , 0.239259 , 0.164491 , 0.029907 , 0.000000 , 0.000000 , 0.000000 , 0.164491 , 0.239259 , 0.239259 , 0.239259 , 0.239259 }, { 0.000000 , 0.000000 , 0.066759 , 0.233658 , 0.233658 , 0.066759 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.250348 , 0.166899 , 0.166899 , 0.216968 , 0.000000 , 0.000000 , 0.000000 , 0.083449 , 0.250348 , 0.000000 , 0.033380 , 0.250348 , 0.100139 , 0.000000 , 0.000000 , 0.066759 , 0.216968 , 0.000000 , 0.000000 , 0.233658 , 0.133519 , 0.000000 , 0.000000 , 0.100139 , 0.150209 , 0.000000 , 0.000000 , 0.200278 , 0.116829 , 0.000000 , 0.000000 , 0.050070 , 0.233658 , 0.016690 , 0.000000 , 0.200278 , 0.083449 , 0.000000 , 0.000000 , 0.000000 , 0.200278 , 0.150209 , 0.100139 , 0.250348 , 0.033380 , 0.000000 , 0.000000 , 0.000000 , 0.050070 , 0.233658 , 0.233658 , 0.100139 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.104571 , 0.239019 , 0.224080 , 0.059755 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.209142 , 0.239019 , 0.134448 , 0.224080 , 0.029877 , 0.000000 , 0.000000 , 0.014939 , 0.224080 , 0.179264 , 0.014939 , 0.134448 , 0.119510 , 0.000000 , 0.000000 , 0.059755 , 0.239019 , 0.000000 , 0.000000 , 0.104571 , 0.149387 , 0.000000 , 0.000000 , 0.104571 , 0.194203 , 0.000000 , 0.000000 , 0.149387 , 0.164326 , 0.000000 , 0.000000 , 0.104571 , 0.179264 , 0.000000 , 0.029877 , 0.224080 , 0.089632 , 0.000000 , 0.000000 , 0.044816 , 0.224080 , 0.179264 , 0.209142 , 0.209142 , 0.014939 , 0.000000 , 0.000000 , 0.000000 , 0.149387 , 0.239019 , 0.209142 , 0.059755 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.076178 , 0.152357 , 0.121886 , 0.121886 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.243771 , 0.243771 , 0.228535 , 0.030471 , 0.000000 , 0.000000 , 0.000000 , 0.106650 , 0.243771 , 0.243771 , 0.198064 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.152357 , 0.243771 , 0.243771 , 0.060943 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.137121 , 0.243771 , 0.243771 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.152357 , 0.243771 , 0.243771 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.121886 , 0.243771 , 0.228535 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.030471 , 0.167593 , 0.137121 , 0.000000 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.127632 , 0.145865 , 0.218797 , 0.109399 , 0.000000 , 0.000000 , 0.000000 , 0.018233 , 0.255264 , 0.200564 , 0.218797 , 0.273497 , 0.000000 , 0.000000 , 0.000000 , 0.054699 , 0.273497 , 0.000000 , 0.000000 , 0.182331 , 0.091166 , 0.000000 , 0.000000 , 0.072932 , 0.164098 , 0.000000 , 0.000000 , 0.145865 , 0.072932 , 0.000000 , 0.000000 , 0.145865 , 0.145865 , 0.000000 , 0.000000 , 0.237031 , 0.000000 , 0.000000 , 0.000000 , 0.127632 , 0.164098 , 0.000000 , 0.164098 , 0.200564 , 0.000000 , 0.000000 , 0.000000 , 0.036466 , 0.255264 , 0.182331 , 0.255264 , 0.091166 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.164098 , 0.273497 , 0.109399 , 0.000000 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.097656 , 0.223215 , 0.181362 , 0.069755 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.181362 , 0.223215 , 0.223215 , 0.069755 , 0.000000 , 0.000000 , 0.000000 , 0.013951 , 0.223215 , 0.223215 , 0.223215 , 0.041853 , 0.000000 , 0.000000 , 0.000000 , 0.013951 , 0.195313 , 0.223215 , 0.209264 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.013951 , 0.223215 , 0.223215 , 0.209264 , 0.013951 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.195313 , 0.223215 , 0.223215 , 0.055804 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.083706 , 0.223215 , 0.223215 , 0.097656 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.055804 , 0.195313 , 0.181362 , 0.083706 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.073641 , 0.220923 , 0.206195 , 0.044185 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.191467 , 0.220923 , 0.132554 , 0.220923 , 0.029456 , 0.000000 , 0.000000 , 0.058913 , 0.235651 , 0.176738 , 0.000000 , 0.147282 , 0.088369 , 0.000000 , 0.000000 , 0.117826 , 0.235651 , 0.132554 , 0.000000 , 0.117826 , 0.147282 , 0.000000 , 0.000000 , 0.103097 , 0.220923 , 0.073641 , 0.000000 , 0.176738 , 0.162010 , 0.000000 , 0.000000 , 0.103097 , 0.191467 , 0.000000 , 0.073641 , 0.235651 , 0.088369 , 0.000000 , 0.000000 , 0.000000 , 0.235651 , 0.176738 , 0.220923 , 0.191467 , 0.014728 , 0.000000 , 0.000000 , 0.000000 , 0.088369 , 0.235651 , 0.176738 , 0.029456 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.058887 , 0.235549 , 0.220827 , 0.058887 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.117774 , 0.235549 , 0.235549 , 0.058887 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.176662 , 0.235549 , 0.191384 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.029444 , 0.235549 , 0.235549 , 0.147218 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.044165 , 0.235549 , 0.235549 , 0.117774 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.029444 , 0.235549 , 0.235549 , 0.176662 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.132496 , 0.235549 , 0.235549 , 0.058887 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.044165 , 0.176662 , 0.206105 , 0.161940 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.054910 , 0.219639 , 0.146426 , 0.054910 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.128123 , 0.292852 , 0.237942 , 0.237942 , 0.018303 , 0.000000 , 0.000000 , 0.000000 , 0.237942 , 0.146426 , 0.000000 , 0.164729 , 0.073213 , 0.000000 , 0.000000 , 0.000000 , 0.292852 , 0.036606 , 0.000000 , 0.109819 , 0.109819 , 0.000000 , 0.000000 , 0.073213 , 0.219639 , 0.000000 , 0.000000 , 0.183032 , 0.054910 , 0.000000 , 0.000000 , 0.054910 , 0.219639 , 0.000000 , 0.000000 , 0.237942 , 0.036606 , 0.000000 , 0.000000 , 0.000000 , 0.219639 , 0.073213 , 0.219639 , 0.183032 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.091516 , 0.292852 , 0.237942 , 0.036606 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.077606 , 0.248338 , 0.186254 , 0.031042 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.201775 , 0.217296 , 0.232817 , 0.170733 , 0.000000 , 0.000000 , 0.000000 , 0.093127 , 0.232817 , 0.015521 , 0.031042 , 0.248338 , 0.062085 , 0.000000 , 0.000000 , 0.093127 , 0.217296 , 0.000000 , 0.000000 , 0.139690 , 0.124169 , 0.000000 , 0.000000 , 0.124169 , 0.155211 , 0.000000 , 0.000000 , 0.201775 , 0.124169 , 0.000000 , 0.000000 , 0.062085 , 0.201775 , 0.000000 , 0.015521 , 0.217296 , 0.124169 , 0.000000 , 0.000000 , 0.000000 , 0.217296 , 0.217296 , 0.232817 , 0.232817 , 0.046563 , 0.000000 , 0.000000 , 0.000000 , 0.077606 , 0.186254 , 0.201775 , 0.124169 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.184402 , 0.210745 , 0.197574 , 0.144887 , 0.000000 , 0.000000 , 0.000000 , 0.026343 , 0.210745 , 0.210745 , 0.210745 , 0.131716 , 0.000000 , 0.000000 , 0.000000 , 0.052686 , 0.210745 , 0.210745 , 0.210745 , 0.052686 , 0.000000 , 0.000000 , 0.000000 , 0.158059 , 0.210745 , 0.210745 , 0.158059 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.158059 , 0.210745 , 0.210745 , 0.079030 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.184402 , 0.210745 , 0.210745 , 0.079030 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.144887 , 0.210745 , 0.197574 , 0.026343 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.013172 , 0.197574 , 0.197574 , 0.013172 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.013532 , 0.135321 , 0.202981 , 0.148853 , 0.094724 , 0.000000 , 0.000000 , 0.000000 , 0.067660 , 0.216513 , 0.216513 , 0.216513 , 0.148853 , 0.000000 , 0.000000 , 0.000000 , 0.081192 , 0.216513 , 0.216513 , 0.216513 , 0.081192 , 0.000000 , 0.000000 , 0.000000 , 0.162385 , 0.216513 , 0.216513 , 0.162385 , 0.000000 , 0.000000 , 0.000000 , 0.027064 , 0.216513 , 0.216513 , 0.216513 , 0.081192 , 0.000000 , 0.000000 , 0.000000 , 0.027064 , 0.162385 , 0.216513 , 0.162385 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.121789 , 0.216513 , 0.216513 , 0.094724 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.040596 , 0.162385 , 0.216513 , 0.027064 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.015972 , 0.207635 , 0.191663 , 0.015972 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.143747 , 0.255551 , 0.255551 , 0.191663 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.223607 , 0.095831 , 0.000000 , 0.207635 , 0.047916 , 0.000000 , 0.000000 , 0.095831 , 0.159719 , 0.000000 , 0.000000 , 0.159719 , 0.095831 , 0.000000 , 0.000000 , 0.111803 , 0.207635 , 0.000000 , 0.000000 , 0.143747 , 0.127775 , 0.000000 , 0.000000 , 0.047916 , 0.255551 , 0.015972 , 0.047916 , 0.223607 , 0.111803 , 0.000000 , 0.000000 , 0.000000 , 0.175691 , 0.255551 , 0.255551 , 0.255551 , 0.015972 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.175691 , 0.255551 , 0.095831 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.072346 , 0.289382 , 0.289382 , 0.072346 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.180864 , 0.271296 , 0.217037 , 0.253210 , 0.000000 , 0.000000 , 0.000000 , 0.036173 , 0.198950 , 0.000000 , 0.000000 , 0.162778 , 0.108518 , 0.000000 , 0.000000 , 0.090432 , 0.108518 , 0.000000 , 0.000000 , 0.072346 , 0.090432 , 0.000000 , 0.000000 , 0.072346 , 0.162778 , 0.000000 , 0.000000 , 0.126605 , 0.072346 , 0.000000 , 0.000000 , 0.072346 , 0.180864 , 0.000000 , 0.036173 , 0.253210 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.253210 , 0.271296 , 0.289382 , 0.144691 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.072346 , 0.235123 , 0.180864 , 0.000000 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.134840 , 0.224733 , 0.089893 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.074911 , 0.224733 , 0.239716 , 0.224733 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.224733 , 0.224733 , 0.059929 , 0.239716 , 0.044947 , 0.000000 , 0.000000 , 0.029964 , 0.209751 , 0.074911 , 0.000000 , 0.179787 , 0.119858 , 0.000000 , 0.000000 , 0.089893 , 0.194769 , 0.000000 , 0.014982 , 0.209751 , 0.089893 , 0.000000 , 0.000000 , 0.014982 , 0.149822 , 0.209751 , 0.224733 , 0.239716 , 0.044947 , 0.000000 , 0.000000 , 0.000000 , 0.044947 , 0.239716 , 0.239716 , 0.209751 , 0.014982 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.134840 , 0.194769 , 0.074911 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.045387 , 0.121032 , 0.166419 , 0.166419 , 0.015129 , 0.000000 , 0.000000 , 0.000000 , 0.045387 , 0.242063 , 0.242063 , 0.181547 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.030258 , 0.226934 , 0.242063 , 0.181547 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.242063 , 0.242063 , 0.105903 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.015129 , 0.226934 , 0.242063 , 0.151290 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.015129 , 0.242063 , 0.242063 , 0.090774 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.045387 , 0.242063 , 0.242063 , 0.075645 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.030258 , 0.226934 , 0.242063 , 0.090774 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.153375 , 0.184050 , 0.122700 , 0.015337 , 0.000000 , 0.000000 , 0.000000 , 0.076687 , 0.245400 , 0.245400 , 0.245400 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.153375 , 0.245400 , 0.245400 , 0.138037 , 0.000000 , 0.000000 , 0.000000 , 0.030675 , 0.230062 , 0.245400 , 0.199387 , 0.030675 , 0.000000 , 0.000000 , 0.000000 , 0.061350 , 0.245400 , 0.245400 , 0.122700 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.015337 , 0.230062 , 0.245400 , 0.107362 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.138037 , 0.245400 , 0.168712 , 0.015337 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.092025 , 0.184050 , 0.092025 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.144171 , 0.208247 , 0.048057 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.128152 , 0.240285 , 0.192228 , 0.240285 , 0.032038 , 0.000000 , 0.000000 , 0.000000 , 0.192228 , 0.128152 , 0.000000 , 0.240285 , 0.064076 , 0.000000 , 0.000000 , 0.048057 , 0.208247 , 0.000000 , 0.000000 , 0.160190 , 0.112133 , 0.000000 , 0.000000 , 0.128152 , 0.144171 , 0.000000 , 0.000000 , 0.208247 , 0.112133 , 0.000000 , 0.000000 , 0.032038 , 0.256304 , 0.064076 , 0.112133 , 0.256304 , 0.080095 , 0.000000 , 0.000000 , 0.000000 , 0.224266 , 0.224266 , 0.256304 , 0.240285 , 0.016019 , 0.000000 , 0.000000 , 0.000000 , 0.016019 , 0.192228 , 0.224266 , 0.064076 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.060132 , 0.180395 , 0.195428 , 0.075165 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.210461 , 0.240527 , 0.240527 , 0.240527 , 0.060132 , 0.000000 , 0.000000 , 0.090198 , 0.195428 , 0.030066 , 0.015033 , 0.165362 , 0.120263 , 0.000000 , 0.000000 , 0.090198 , 0.165362 , 0.000000 , 0.000000 , 0.120263 , 0.120263 , 0.000000 , 0.000000 , 0.060132 , 0.240527 , 0.000000 , 0.000000 , 0.150329 , 0.120263 , 0.000000 , 0.000000 , 0.060132 , 0.240527 , 0.060132 , 0.120263 , 0.240527 , 0.045099 , 0.000000 , 0.000000 , 0.000000 , 0.240527 , 0.240527 , 0.240527 , 0.180395 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.060132 , 0.225494 , 0.210461 , 0.045099 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.050049 , 0.183512 , 0.116780 , 0.016683 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.166829 , 0.250243 , 0.233561 , 0.233561 , 0.000000 , 0.000000 , 0.000000 , 0.033366 , 0.266926 , 0.166829 , 0.016683 , 0.200195 , 0.066732 , 0.000000 , 0.000000 , 0.033366 , 0.266926 , 0.050049 , 0.000000 , 0.066732 , 0.133463 , 0.000000 , 0.000000 , 0.083414 , 0.200195 , 0.000000 , 0.000000 , 0.100097 , 0.133463 , 0.000000 , 0.000000 , 0.016683 , 0.200195 , 0.000000 , 0.000000 , 0.183512 , 0.150146 , 0.000000 , 0.000000 , 0.000000 , 0.250243 , 0.150146 , 0.233561 , 0.250243 , 0.016683 , 0.000000 , 0.000000 , 0.000000 , 0.066732 , 0.250243 , 0.250243 , 0.066732 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.155305 , 0.248488 , 0.170835 , 0.015530 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.232957 , 0.248488 , 0.232957 , 0.031061 , 0.000000 , 0.000000 , 0.000000 , 0.015530 , 0.201896 , 0.248488 , 0.217427 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.015530 , 0.232957 , 0.248488 , 0.186366 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.217427 , 0.248488 , 0.124244 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.201896 , 0.248488 , 0.077652 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.015530 , 0.217427 , 0.248488 , 0.015530 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.124244 , 0.232957 , 0.015530 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.072609 , 0.217826 , 0.188783 , 0.174261 , 0.058087 , 0.000000 , 0.000000 , 0.000000 , 0.159739 , 0.232348 , 0.232348 , 0.203305 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.232348 , 0.232348 , 0.232348 , 0.116174 , 0.000000 , 0.000000 , 0.000000 , 0.058087 , 0.232348 , 0.232348 , 0.217826 , 0.043565 , 0.000000 , 0.000000 , 0.000000 , 0.029044 , 0.232348 , 0.232348 , 0.116174 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.232348 , 0.217826 , 0.043565 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.145218 , 0.232348 , 0.058087 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.116174 , 0.217826 , 0.043565 , 0.000000 , 0.000000 , 0.000000 }, { 0.000000 , 0.013287 , 0.146161 , 0.212598 , 0.199310 , 0.159448 , 0.039862 , 0.000000 , 0.000000 , 0.013287 , 0.172736 , 0.212598 , 0.212598 , 0.159448 , 0.000000 , 0.000000 , 0.000000 , 0.026575 , 0.212598 , 0.212598 , 0.212598 , 0.106299 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.212598 , 0.212598 , 0.212598 , 0.026575 , 0.000000 , 0.000000 , 0.000000 , 0.106299 , 0.212598 , 0.212598 , 0.186023 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.093011 , 0.212598 , 0.212598 , 0.119586 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.013287 , 0.172736 , 0.212598 , 0.172736 , 0.013287 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.106299 , 0.212598 , 0.159448 , 0.000000 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.071053 , 0.170526 , 0.170526 , 0.113684 , 0.014211 , 0.000000 , 0.000000 , 0.000000 , 0.142105 , 0.227368 , 0.227368 , 0.213158 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.156316 , 0.227368 , 0.227368 , 0.113684 , 0.000000 , 0.000000 , 0.000000 , 0.056842 , 0.227368 , 0.227368 , 0.227368 , 0.056842 , 0.000000 , 0.000000 , 0.000000 , 0.042632 , 0.227368 , 0.227368 , 0.142105 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.184737 , 0.227368 , 0.227368 , 0.042632 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.184737 , 0.227368 , 0.227368 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.028421 , 0.142105 , 0.170526 , 0.000000 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.062340 , 0.171436 , 0.140266 , 0.077925 , 0.000000 , 0.000000 , 0.000000 , 0.077925 , 0.249362 , 0.249362 , 0.249362 , 0.077925 , 0.000000 , 0.000000 , 0.000000 , 0.171436 , 0.249362 , 0.249362 , 0.140266 , 0.000000 , 0.000000 , 0.000000 , 0.062340 , 0.249362 , 0.249362 , 0.249362 , 0.062340 , 0.000000 , 0.000000 , 0.000000 , 0.015585 , 0.218191 , 0.249362 , 0.140266 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.062340 , 0.233776 , 0.249362 , 0.093511 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.140266 , 0.249362 , 0.124681 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.109096 , 0.077925 , 0.000000 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.032444 , 0.162221 , 0.243332 , 0.016222 , 0.000000 , 0.000000 , 0.000000 , 0.048666 , 0.259554 , 0.259554 , 0.210888 , 0.210888 , 0.000000 , 0.000000 , 0.000000 , 0.081111 , 0.259554 , 0.194666 , 0.016222 , 0.194666 , 0.016222 , 0.000000 , 0.000000 , 0.113555 , 0.210888 , 0.081111 , 0.000000 , 0.113555 , 0.081111 , 0.000000 , 0.000000 , 0.032444 , 0.227110 , 0.000000 , 0.000000 , 0.113555 , 0.162221 , 0.000000 , 0.000000 , 0.000000 , 0.194666 , 0.032444 , 0.000000 , 0.194666 , 0.113555 , 0.000000 , 0.000000 , 0.000000 , 0.145999 , 0.194666 , 0.194666 , 0.259554 , 0.064889 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.162221 , 0.259554 , 0.097333 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.030355 , 0.182132 , 0.182132 , 0.121421 , 0.015178 , 0.000000 , 0.000000 , 0.000000 , 0.030355 , 0.227665 , 0.242843 , 0.242843 , 0.121421 , 0.000000 , 0.000000 , 0.000000 , 0.075888 , 0.242843 , 0.242843 , 0.212487 , 0.045533 , 0.000000 , 0.000000 , 0.000000 , 0.121421 , 0.242843 , 0.242843 , 0.151777 , 0.000000 , 0.000000 , 0.000000 , 0.045533 , 0.227665 , 0.242843 , 0.197310 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.030355 , 0.212487 , 0.242843 , 0.136599 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.166954 , 0.242843 , 0.136599 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.015178 , 0.136599 , 0.075888 , 0.000000 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.033696 , 0.202174 , 0.252717 , 0.050543 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.252717 , 0.252717 , 0.219022 , 0.252717 , 0.000000 , 0.000000 , 0.000000 , 0.033696 , 0.235869 , 0.050543 , 0.016848 , 0.202174 , 0.050543 , 0.000000 , 0.000000 , 0.067391 , 0.134783 , 0.000000 , 0.000000 , 0.134783 , 0.134783 , 0.000000 , 0.000000 , 0.117935 , 0.168478 , 0.000000 , 0.000000 , 0.151630 , 0.084239 , 0.000000 , 0.000000 , 0.016848 , 0.219022 , 0.084239 , 0.050543 , 0.252717 , 0.033696 , 0.000000 , 0.000000 , 0.000000 , 0.117935 , 0.269565 , 0.235869 , 0.252717 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.168478 , 0.235869 , 0.067391 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.135041 , 0.212207 , 0.289373 , 0.173624 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.289373 , 0.289373 , 0.077166 , 0.212207 , 0.077166 , 0.000000 , 0.000000 , 0.057875 , 0.212207 , 0.096458 , 0.000000 , 0.038583 , 0.192915 , 0.000000 , 0.000000 , 0.135041 , 0.154332 , 0.000000 , 0.000000 , 0.057875 , 0.154332 , 0.000000 , 0.000000 , 0.115749 , 0.154332 , 0.000000 , 0.000000 , 0.077166 , 0.154332 , 0.000000 , 0.000000 , 0.096458 , 0.154332 , 0.000000 , 0.000000 , 0.154332 , 0.096458 , 0.000000 , 0.000000 , 0.019292 , 0.231498 , 0.038583 , 0.019292 , 0.250790 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.096458 , 0.308664 , 0.270081 , 0.057875 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.066565 , 0.232978 , 0.183054 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.033283 , 0.266260 , 0.266260 , 0.049924 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.232978 , 0.266260 , 0.083206 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.266260 , 0.266260 , 0.049924 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.016641 , 0.249619 , 0.266260 , 0.033283 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.033283 , 0.249619 , 0.216336 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.066565 , 0.266260 , 0.183054 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.083206 , 0.266260 , 0.232978 , 0.016641 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.092726 , 0.247268 , 0.247268 , 0.123634 , 0.000000 , 0.000000 , 0.000000 , 0.030909 , 0.247268 , 0.123634 , 0.139088 , 0.247268 , 0.046363 , 0.000000 , 0.000000 , 0.123634 , 0.247268 , 0.015454 , 0.000000 , 0.139088 , 0.139088 , 0.000000 , 0.000000 , 0.139088 , 0.185451 , 0.000000 , 0.000000 , 0.123634 , 0.185451 , 0.000000 , 0.000000 , 0.154543 , 0.185451 , 0.000000 , 0.000000 , 0.123634 , 0.154543 , 0.000000 , 0.000000 , 0.123634 , 0.200906 , 0.000000 , 0.000000 , 0.139088 , 0.123634 , 0.000000 , 0.000000 , 0.030909 , 0.247268 , 0.123634 , 0.092726 , 0.231814 , 0.046363 , 0.000000 , 0.000000 , 0.000000 , 0.123634 , 0.247268 , 0.231814 , 0.123634 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.067324 , 0.201973 , 0.218804 , 0.050493 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.117818 , 0.235635 , 0.269298 , 0.151480 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.201973 , 0.269298 , 0.134649 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.100987 , 0.269298 , 0.100987 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.151480 , 0.269298 , 0.100987 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.201973 , 0.269298 , 0.050493 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.218804 , 0.269298 , 0.050493 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.252467 , 0.269298 , 0.185142 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.036736 , 0.238783 , 0.275519 , 0.146944 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.183680 , 0.257151 , 0.183680 , 0.202048 , 0.146944 , 0.000000 , 0.000000 , 0.000000 , 0.293887 , 0.018368 , 0.000000 , 0.000000 , 0.165312 , 0.000000 , 0.000000 , 0.055104 , 0.238783 , 0.000000 , 0.000000 , 0.000000 , 0.146944 , 0.000000 , 0.000000 , 0.073472 , 0.220416 , 0.000000 , 0.000000 , 0.018368 , 0.146944 , 0.000000 , 0.000000 , 0.091840 , 0.220416 , 0.000000 , 0.000000 , 0.183680 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.275519 , 0.146944 , 0.128576 , 0.183680 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.073472 , 0.257151 , 0.257151 , 0.018368 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.015593 , 0.171519 , 0.233890 , 0.124741 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.233890 , 0.249483 , 0.124741 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.202705 , 0.249483 , 0.155927 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.249483 , 0.249483 , 0.093556 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.031185 , 0.249483 , 0.249483 , 0.093556 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.077963 , 0.249483 , 0.249483 , 0.077963 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.077963 , 0.249483 , 0.233890 , 0.015593 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.031185 , 0.233890 , 0.233890 , 0.046778 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.017590 , 0.228669 , 0.211079 , 0.087950 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.193489 , 0.281439 , 0.070360 , 0.228669 , 0.035180 , 0.000000 , 0.000000 , 0.035180 , 0.281439 , 0.070360 , 0.000000 , 0.140720 , 0.087950 , 0.000000 , 0.000000 , 0.123130 , 0.211079 , 0.000000 , 0.000000 , 0.140720 , 0.140720 , 0.000000 , 0.000000 , 0.105540 , 0.211079 , 0.000000 , 0.000000 , 0.087950 , 0.140720 , 0.000000 , 0.000000 , 0.052770 , 0.281439 , 0.000000 , 0.000000 , 0.140720 , 0.123130 , 0.000000 , 0.000000 , 0.017590 , 0.263849 , 0.140720 , 0.105540 , 0.263849 , 0.052770 , 0.000000 , 0.000000 , 0.000000 , 0.035180 , 0.228669 , 0.263849 , 0.105540 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.033241 , 0.166206 , 0.249308 , 0.116344 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.232688 , 0.249308 , 0.116344 , 0.249308 , 0.033241 , 0.000000 , 0.000000 , 0.066482 , 0.265929 , 0.049862 , 0.000000 , 0.182826 , 0.066482 , 0.000000 , 0.000000 , 0.066482 , 0.232688 , 0.000000 , 0.000000 , 0.116344 , 0.132964 , 0.000000 , 0.000000 , 0.116344 , 0.199447 , 0.000000 , 0.000000 , 0.099723 , 0.116344 , 0.000000 , 0.000000 , 0.066482 , 0.265929 , 0.016621 , 0.000000 , 0.199447 , 0.066482 , 0.000000 , 0.000000 , 0.016621 , 0.232688 , 0.199447 , 0.166206 , 0.265929 , 0.016621 , 0.000000 , 0.000000 , 0.000000 , 0.016621 , 0.232688 , 0.216067 , 0.083103 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.052195 , 0.130488 , 0.143537 , 0.052195 , 0.000000 , 0.000000 , 0.000000 , 0.013049 , 0.143537 , 0.208781 , 0.208781 , 0.182683 , 0.000000 , 0.000000 , 0.000000 , 0.052195 , 0.208781 , 0.208781 , 0.208781 , 0.156585 , 0.000000 , 0.000000 , 0.000000 , 0.052195 , 0.208781 , 0.208781 , 0.208781 , 0.091341 , 0.000000 , 0.000000 , 0.000000 , 0.052195 , 0.208781 , 0.208781 , 0.208781 , 0.104390 , 0.000000 , 0.000000 , 0.000000 , 0.052195 , 0.208781 , 0.208781 , 0.208781 , 0.091341 , 0.000000 , 0.000000 , 0.000000 , 0.039146 , 0.195732 , 0.208781 , 0.208781 , 0.156585 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.065244 , 0.156585 , 0.156585 , 0.156585 , 0.013049 , 0.000000 }, { 0.000000 , 0.000000 , 0.070902 , 0.198527 , 0.170166 , 0.070902 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.184346 , 0.226888 , 0.226888 , 0.127624 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.155985 , 0.226888 , 0.226888 , 0.127624 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.155985 , 0.226888 , 0.226888 , 0.099263 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.141805 , 0.226888 , 0.226888 , 0.028361 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.184346 , 0.226888 , 0.212707 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.198527 , 0.226888 , 0.184346 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.099263 , 0.184346 , 0.226888 , 0.113444 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.091087 , 0.227718 , 0.136631 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.166993 , 0.242899 , 0.242899 , 0.197355 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.151812 , 0.242899 , 0.242899 , 0.242899 , 0.106268 , 0.000000 , 0.000000 , 0.015181 , 0.242899 , 0.121449 , 0.000000 , 0.166993 , 0.121449 , 0.000000 , 0.000000 , 0.106268 , 0.212536 , 0.015181 , 0.000000 , 0.151812 , 0.121449 , 0.000000 , 0.000000 , 0.121449 , 0.182174 , 0.000000 , 0.000000 , 0.197355 , 0.060725 , 0.000000 , 0.000000 , 0.075906 , 0.242899 , 0.121449 , 0.136631 , 0.197355 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.091087 , 0.182174 , 0.197355 , 0.075906 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.031392 , 0.204049 , 0.235441 , 0.109872 , 0.015696 , 0.000000 , 0.000000 , 0.000000 , 0.109872 , 0.251137 , 0.235441 , 0.251137 , 0.156961 , 0.000000 , 0.000000 , 0.000000 , 0.219745 , 0.251137 , 0.156961 , 0.156961 , 0.156961 , 0.000000 , 0.000000 , 0.031392 , 0.251137 , 0.047088 , 0.000000 , 0.125568 , 0.125568 , 0.000000 , 0.000000 , 0.078480 , 0.204049 , 0.000000 , 0.000000 , 0.141264 , 0.125568 , 0.000000 , 0.000000 , 0.094176 , 0.204049 , 0.000000 , 0.000000 , 0.188353 , 0.047088 , 0.000000 , 0.000000 , 0.031392 , 0.251137 , 0.094176 , 0.141264 , 0.156961 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.047088 , 0.219745 , 0.219745 , 0.015696 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.106898 , 0.229068 , 0.213797 , 0.122169 , 0.000000 , 0.000000 , 0.000000 , 0.015271 , 0.229068 , 0.106898 , 0.076356 , 0.213797 , 0.076356 , 0.000000 , 0.000000 , 0.000000 , 0.229068 , 0.122169 , 0.000000 , 0.152712 , 0.106898 , 0.000000 , 0.000000 , 0.045814 , 0.244339 , 0.091627 , 0.000000 , 0.183254 , 0.122169 , 0.000000 , 0.000000 , 0.076356 , 0.244339 , 0.030542 , 0.000000 , 0.183254 , 0.122169 , 0.000000 , 0.000000 , 0.061085 , 0.244339 , 0.045814 , 0.015271 , 0.244339 , 0.061085 , 0.000000 , 0.000000 , 0.076356 , 0.244339 , 0.152712 , 0.213797 , 0.183254 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.122169 , 0.229068 , 0.229068 , 0.030542 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.214801 , 0.153429 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.230144 , 0.199458 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.168772 , 0.245487 , 0.245487 , 0.030686 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.046029 , 0.153429 , 0.245487 , 0.076715 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.214801 , 0.153429 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.153429 , 0.214801 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.138086 , 0.214801 , 0.245487 , 0.168772 , 0.092057 , 0.000000 , 0.000000 , 0.000000 , 0.184115 , 0.245487 , 0.245487 , 0.245487 , 0.245487 , 0.138086 }, { 0.000000 , 0.000000 , 0.071531 , 0.171674 , 0.143062 , 0.057225 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.071531 , 0.228899 , 0.228899 , 0.228899 , 0.042918 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.228899 , 0.228899 , 0.228899 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.042918 , 0.228899 , 0.228899 , 0.185980 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.057225 , 0.228899 , 0.228899 , 0.171674 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.114449 , 0.228899 , 0.228899 , 0.114449 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.143062 , 0.228899 , 0.228899 , 0.100143 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.114449 , 0.171674 , 0.171674 , 0.057225 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.029837 , 0.238700 , 0.223781 , 0.074594 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.149187 , 0.238700 , 0.208862 , 0.223781 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.223781 , 0.149187 , 0.000000 , 0.238700 , 0.104431 , 0.000000 , 0.000000 , 0.059675 , 0.238700 , 0.014919 , 0.000000 , 0.179025 , 0.074594 , 0.000000 , 0.000000 , 0.059675 , 0.223781 , 0.000000 , 0.000000 , 0.179025 , 0.074594 , 0.000000 , 0.000000 , 0.074594 , 0.238700 , 0.089512 , 0.000000 , 0.238700 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.208862 , 0.193943 , 0.119350 , 0.223781 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.044756 , 0.208862 , 0.238700 , 0.089512 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.056055 , 0.168166 , 0.196193 , 0.070069 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.154152 , 0.224221 , 0.224221 , 0.224221 , 0.042041 , 0.000000 , 0.000000 , 0.042041 , 0.224221 , 0.196193 , 0.028028 , 0.224221 , 0.098097 , 0.000000 , 0.000000 , 0.112110 , 0.224221 , 0.098097 , 0.000000 , 0.224221 , 0.084083 , 0.000000 , 0.000000 , 0.056055 , 0.224221 , 0.056055 , 0.042041 , 0.224221 , 0.056055 , 0.000000 , 0.000000 , 0.056055 , 0.224221 , 0.070069 , 0.140138 , 0.196193 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.196193 , 0.224221 , 0.224221 , 0.140138 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.056055 , 0.196193 , 0.196193 , 0.028028 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.169480 , 0.169480 , 0.075324 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.282466 , 0.282466 , 0.263635 , 0.225973 , 0.000000 , 0.000000 , 0.000000 , 0.056493 , 0.188311 , 0.018831 , 0.000000 , 0.225973 , 0.094155 , 0.000000 , 0.000000 , 0.094155 , 0.150649 , 0.000000 , 0.000000 , 0.150649 , 0.112987 , 0.000000 , 0.000000 , 0.150649 , 0.150649 , 0.000000 , 0.000000 , 0.150649 , 0.150649 , 0.000000 , 0.000000 , 0.094155 , 0.150649 , 0.000000 , 0.000000 , 0.188311 , 0.112987 , 0.000000 , 0.000000 , 0.075324 , 0.244804 , 0.075324 , 0.112987 , 0.244804 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.112987 , 0.301297 , 0.263635 , 0.056493 , 0.000000 , 0.000000 }, { 0.000000 , 0.013881 , 0.180451 , 0.180451 , 0.138809 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.013881 , 0.180451 , 0.222094 , 0.208213 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.166570 , 0.222094 , 0.222094 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.222094 , 0.222094 , 0.166570 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.208213 , 0.222094 , 0.180451 , 0.013881 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.208213 , 0.222094 , 0.152689 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.222094 , 0.222094 , 0.222094 , 0.069404 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.194332 , 0.222094 , 0.208213 , 0.111047 , 0.013881 , 0.000000 }, { 0.000000 , 0.000000 , 0.029811 , 0.208676 , 0.223582 , 0.059622 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.029811 , 0.238487 , 0.238487 , 0.163960 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.029811 , 0.238487 , 0.238487 , 0.149055 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.074527 , 0.238487 , 0.238487 , 0.104338 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.208676 , 0.238487 , 0.208676 , 0.029811 , 0.000000 , 0.000000 , 0.000000 , 0.059622 , 0.238487 , 0.238487 , 0.119244 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.044716 , 0.223582 , 0.238487 , 0.119244 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.074527 , 0.223582 , 0.193771 , 0.029811 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.189029 , 0.252039 , 0.141772 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.031505 , 0.252039 , 0.252039 , 0.094515 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.047257 , 0.252039 , 0.252039 , 0.031505 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.126019 , 0.252039 , 0.189029 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.094515 , 0.252039 , 0.252039 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.157524 , 0.252039 , 0.236286 , 0.015752 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.141772 , 0.252039 , 0.173277 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.126019 , 0.252039 , 0.157524 , 0.000000 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.061285 , 0.245141 , 0.229819 , 0.107249 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.091928 , 0.245141 , 0.245141 , 0.091928 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.076606 , 0.245141 , 0.245141 , 0.061285 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.107249 , 0.245141 , 0.229819 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.168534 , 0.245141 , 0.214498 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.091928 , 0.245141 , 0.214498 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.091928 , 0.245141 , 0.245141 , 0.076606 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.030643 , 0.183855 , 0.245141 , 0.045964 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.063961 , 0.223864 , 0.175893 , 0.047971 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.015990 , 0.239854 , 0.255844 , 0.095942 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.255844 , 0.255844 , 0.143913 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.015990 , 0.223864 , 0.255844 , 0.047971 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.095942 , 0.255844 , 0.255844 , 0.031981 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.127922 , 0.255844 , 0.239854 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.111932 , 0.255844 , 0.175893 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.095942 , 0.239854 , 0.223864 , 0.063961 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.124920 , 0.231995 , 0.142766 , 0.071383 , 0.000000 , 0.000000 , 0.000000 , 0.017846 , 0.267686 , 0.196303 , 0.160612 , 0.267686 , 0.035692 , 0.000000 , 0.000000 , 0.071383 , 0.285532 , 0.107075 , 0.000000 , 0.142766 , 0.124920 , 0.000000 , 0.000000 , 0.071383 , 0.178458 , 0.000000 , 0.000000 , 0.124920 , 0.142766 , 0.000000 , 0.000000 , 0.071383 , 0.178458 , 0.000000 , 0.000000 , 0.142766 , 0.142766 , 0.000000 , 0.000000 , 0.089229 , 0.214149 , 0.000000 , 0.000000 , 0.214149 , 0.089229 , 0.000000 , 0.000000 , 0.053537 , 0.267686 , 0.089229 , 0.160612 , 0.249841 , 0.035692 , 0.000000 , 0.000000 , 0.000000 , 0.142766 , 0.249841 , 0.214149 , 0.053537 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.015047 , 0.120372 , 0.150465 , 0.120372 , 0.045140 , 0.000000 , 0.000000 , 0.000000 , 0.015047 , 0.240744 , 0.240744 , 0.240744 , 0.120372 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.210651 , 0.240744 , 0.240744 , 0.045140 , 0.000000 , 0.000000 , 0.000000 , 0.015047 , 0.240744 , 0.240744 , 0.225698 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.090279 , 0.240744 , 0.240744 , 0.150465 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.150465 , 0.240744 , 0.225698 , 0.060186 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.120372 , 0.240744 , 0.210651 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.015047 , 0.120372 , 0.120372 , 0.015047 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.256417 , 0.219786 , 0.036631 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.109893 , 0.146524 , 0.256417 , 0.018316 , 0.000000 , 0.000000 , 0.000000 , 0.164840 , 0.201471 , 0.000000 , 0.238102 , 0.091578 , 0.000000 , 0.000000 , 0.036631 , 0.293048 , 0.146524 , 0.000000 , 0.146524 , 0.146524 , 0.000000 , 0.000000 , 0.091578 , 0.238102 , 0.000000 , 0.000000 , 0.146524 , 0.128209 , 0.000000 , 0.000000 , 0.109893 , 0.238102 , 0.000000 , 0.000000 , 0.201471 , 0.073262 , 0.000000 , 0.000000 , 0.000000 , 0.219786 , 0.183155 , 0.109893 , 0.256417 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.018316 , 0.201471 , 0.256417 , 0.128209 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.162157 , 0.243236 , 0.016216 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.178373 , 0.259452 , 0.016216 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.016216 , 0.259452 , 0.259452 , 0.016216 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.129726 , 0.259452 , 0.081079 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.227020 , 0.162157 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.162157 , 0.227020 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.081079 , 0.178373 , 0.243236 , 0.097294 , 0.064863 , 0.016216 , 0.000000 , 0.000000 , 0.162157 , 0.259452 , 0.259452 , 0.259452 , 0.259452 , 0.162157 }, { 0.000000 , 0.000000 , 0.054215 , 0.234931 , 0.234931 , 0.054215 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.253003 , 0.144573 , 0.126501 , 0.271075 , 0.018072 , 0.000000 , 0.000000 , 0.054215 , 0.289146 , 0.000000 , 0.000000 , 0.162645 , 0.108430 , 0.000000 , 0.000000 , 0.108430 , 0.234931 , 0.000000 , 0.000000 , 0.072287 , 0.144573 , 0.000000 , 0.000000 , 0.072287 , 0.162645 , 0.000000 , 0.000000 , 0.072287 , 0.144573 , 0.000000 , 0.000000 , 0.018072 , 0.234931 , 0.000000 , 0.000000 , 0.090358 , 0.144573 , 0.000000 , 0.000000 , 0.000000 , 0.253003 , 0.126501 , 0.000000 , 0.198788 , 0.072287 , 0.000000 , 0.000000 , 0.000000 , 0.054215 , 0.271075 , 0.289146 , 0.253003 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.244310 , 0.122155 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.030539 , 0.244310 , 0.198502 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.030539 , 0.244310 , 0.244310 , 0.091616 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.122155 , 0.244310 , 0.152694 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.213772 , 0.183233 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.152694 , 0.244310 , 0.030539 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.076347 , 0.183233 , 0.244310 , 0.167963 , 0.122155 , 0.045808 , 0.000000 , 0.000000 , 0.183233 , 0.244310 , 0.244310 , 0.244310 , 0.244310 , 0.137425 }, { 0.000000 , 0.000000 , 0.111035 , 0.259082 , 0.240576 , 0.055517 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.259082 , 0.185058 , 0.129541 , 0.240576 , 0.000000 , 0.000000 , 0.000000 , 0.074023 , 0.240576 , 0.000000 , 0.000000 , 0.222070 , 0.055517 , 0.000000 , 0.000000 , 0.092529 , 0.203564 , 0.000000 , 0.000000 , 0.129541 , 0.111035 , 0.000000 , 0.000000 , 0.074023 , 0.203564 , 0.000000 , 0.000000 , 0.074023 , 0.148047 , 0.000000 , 0.000000 , 0.037012 , 0.222070 , 0.000000 , 0.000000 , 0.111035 , 0.111035 , 0.000000 , 0.000000 , 0.000000 , 0.222070 , 0.148047 , 0.037012 , 0.259082 , 0.037012 , 0.000000 , 0.000000 , 0.000000 , 0.074023 , 0.277587 , 0.296093 , 0.166552 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.171686 , 0.187294 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.202902 , 0.249726 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.046824 , 0.234118 , 0.249726 , 0.062431 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.202902 , 0.234118 , 0.249726 , 0.093647 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.046824 , 0.046824 , 0.234118 , 0.156079 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.171686 , 0.249726 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.031216 , 0.156079 , 0.249726 , 0.093647 , 0.046824 , 0.000000 , 0.000000 , 0.000000 , 0.109255 , 0.249726 , 0.249726 , 0.249726 , 0.249726 , 0.078039 }, { 0.000000 , 0.000000 , 0.054855 , 0.274273 , 0.164564 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.255988 , 0.146279 , 0.201134 , 0.091424 , 0.000000 , 0.000000 , 0.000000 , 0.054855 , 0.292558 , 0.054855 , 0.018285 , 0.255988 , 0.036570 , 0.000000 , 0.000000 , 0.091424 , 0.219418 , 0.000000 , 0.000000 , 0.219418 , 0.073139 , 0.000000 , 0.000000 , 0.036570 , 0.219418 , 0.000000 , 0.000000 , 0.109709 , 0.146279 , 0.000000 , 0.000000 , 0.036570 , 0.255988 , 0.000000 , 0.000000 , 0.219418 , 0.091424 , 0.000000 , 0.000000 , 0.000000 , 0.219418 , 0.146279 , 0.091424 , 0.274273 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.018285 , 0.237703 , 0.255988 , 0.091424 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.116269 , 0.271295 , 0.213161 , 0.019378 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.290674 , 0.096891 , 0.116269 , 0.290674 , 0.000000 , 0.000000 , 0.000000 , 0.077513 , 0.310052 , 0.000000 , 0.000000 , 0.174404 , 0.058135 , 0.000000 , 0.000000 , 0.155026 , 0.174404 , 0.000000 , 0.000000 , 0.077513 , 0.155026 , 0.000000 , 0.000000 , 0.135648 , 0.155026 , 0.000000 , 0.000000 , 0.077513 , 0.155026 , 0.000000 , 0.000000 , 0.077513 , 0.155026 , 0.000000 , 0.000000 , 0.174404 , 0.077513 , 0.000000 , 0.000000 , 0.019378 , 0.251917 , 0.038756 , 0.058135 , 0.271295 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.096891 , 0.271295 , 0.290674 , 0.077513 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.046067 , 0.230334 , 0.061422 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.230334 , 0.168911 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.230334 , 0.245689 , 0.030711 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.214978 , 0.245689 , 0.122845 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.107489 , 0.199622 , 0.214978 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.061422 , 0.245689 , 0.061422 , 0.000000 , 0.000000 , 0.000000 , 0.046067 , 0.138200 , 0.199622 , 0.245689 , 0.184267 , 0.076778 , 0.000000 , 0.000000 , 0.046067 , 0.230334 , 0.245689 , 0.245689 , 0.245689 , 0.245689 }, { 0.000000 , 0.000000 , 0.166183 , 0.149564 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.132946 , 0.265892 , 0.033237 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.132946 , 0.265892 , 0.099710 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.083091 , 0.265892 , 0.216037 , 0.016618 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.016618 , 0.083091 , 0.232656 , 0.099710 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.132946 , 0.182801 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.132946 , 0.199419 , 0.149564 , 0.265892 , 0.099710 , 0.066473 , 0.000000 , 0.000000 , 0.116328 , 0.265892 , 0.265892 , 0.265892 , 0.265892 , 0.232656 }, { 0.000000 , 0.000000 , 0.056097 , 0.224387 , 0.168290 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.224387 , 0.224387 , 0.205688 , 0.243086 , 0.000000 , 0.000000 , 0.000000 , 0.037398 , 0.280484 , 0.037398 , 0.000000 , 0.224387 , 0.093495 , 0.000000 , 0.000000 , 0.074796 , 0.149592 , 0.000000 , 0.000000 , 0.112194 , 0.149592 , 0.000000 , 0.000000 , 0.149592 , 0.130893 , 0.000000 , 0.000000 , 0.074796 , 0.149592 , 0.000000 , 0.000000 , 0.130893 , 0.130893 , 0.000000 , 0.000000 , 0.168290 , 0.130893 , 0.000000 , 0.000000 , 0.056097 , 0.243086 , 0.074796 , 0.130893 , 0.299183 , 0.037398 , 0.000000 , 0.000000 , 0.000000 , 0.112194 , 0.299183 , 0.280484 , 0.093495 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.136977 , 0.102733 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.102733 , 0.239711 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.102733 , 0.273955 , 0.051367 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.171222 , 0.273955 , 0.154100 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.017122 , 0.102733 , 0.273955 , 0.034244 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.222588 , 0.119855 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.068489 , 0.136977 , 0.239711 , 0.239711 , 0.136977 , 0.068489 , 0.000000 , 0.000000 , 0.154100 , 0.273955 , 0.273955 , 0.273955 , 0.273955 , 0.222588 }, { 0.000000 , 0.000000 , 0.081508 , 0.244525 , 0.032603 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.016302 , 0.260827 , 0.130414 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.228224 , 0.195620 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.032603 , 0.260827 , 0.260827 , 0.048905 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.032603 , 0.146715 , 0.228224 , 0.097810 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.097810 , 0.211922 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.032603 , 0.163017 , 0.195620 , 0.260827 , 0.065207 , 0.065207 , 0.000000 , 0.000000 , 0.065207 , 0.244525 , 0.260827 , 0.260827 , 0.260827 , 0.260827 }, { 0.000000 , 0.000000 , 0.148377 , 0.259660 , 0.204019 , 0.037094 , 0.000000 , 0.000000 , 0.000000 , 0.111283 , 0.296755 , 0.129830 , 0.111283 , 0.241113 , 0.018547 , 0.000000 , 0.000000 , 0.148377 , 0.204019 , 0.000000 , 0.000000 , 0.185472 , 0.074189 , 0.000000 , 0.000000 , 0.129830 , 0.148377 , 0.000000 , 0.000000 , 0.092736 , 0.129830 , 0.000000 , 0.000000 , 0.148377 , 0.074189 , 0.000000 , 0.000000 , 0.129830 , 0.148377 , 0.000000 , 0.000000 , 0.037094 , 0.185472 , 0.000000 , 0.000000 , 0.129830 , 0.185472 , 0.000000 , 0.000000 , 0.000000 , 0.259660 , 0.055641 , 0.074189 , 0.278207 , 0.055641 , 0.000000 , 0.000000 , 0.000000 , 0.092736 , 0.296755 , 0.296755 , 0.129830 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.193710 , 0.193710 , 0.232452 , 0.135597 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.290565 , 0.251823 , 0.096855 , 0.232452 , 0.096855 , 0.000000 , 0.000000 , 0.077484 , 0.251823 , 0.077484 , 0.000000 , 0.038742 , 0.154968 , 0.000000 , 0.000000 , 0.154968 , 0.077484 , 0.000000 , 0.000000 , 0.058113 , 0.154968 , 0.000000 , 0.000000 , 0.154968 , 0.077484 , 0.000000 , 0.000000 , 0.135597 , 0.096855 , 0.000000 , 0.000000 , 0.116226 , 0.116226 , 0.000000 , 0.000000 , 0.213081 , 0.038742 , 0.000000 , 0.000000 , 0.019371 , 0.251823 , 0.058113 , 0.058113 , 0.232452 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.135597 , 0.290565 , 0.309936 , 0.135597 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.188177 , 0.131724 , 0.056453 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.018818 , 0.282266 , 0.225813 , 0.263448 , 0.112906 , 0.000000 , 0.000000 , 0.000000 , 0.094089 , 0.225813 , 0.000000 , 0.037635 , 0.244631 , 0.000000 , 0.000000 , 0.000000 , 0.075271 , 0.225813 , 0.000000 , 0.000000 , 0.075271 , 0.131724 , 0.000000 , 0.000000 , 0.150542 , 0.094089 , 0.000000 , 0.000000 , 0.075271 , 0.150542 , 0.000000 , 0.000000 , 0.094089 , 0.150542 , 0.000000 , 0.000000 , 0.094089 , 0.188177 , 0.000000 , 0.000000 , 0.000000 , 0.263448 , 0.056453 , 0.075271 , 0.263448 , 0.112906 , 0.000000 , 0.000000 , 0.000000 , 0.131724 , 0.301084 , 0.301084 , 0.188177 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.125584 , 0.172678 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.109886 , 0.251168 , 0.047094 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.094188 , 0.251168 , 0.156980 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.156980 , 0.251168 , 0.235470 , 0.015698 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.031396 , 0.251168 , 0.031396 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.235470 , 0.141282 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.094188 , 0.188376 , 0.251168 , 0.235470 , 0.125584 , 0.078490 , 0.000000 , 0.000000 , 0.062792 , 0.235470 , 0.251168 , 0.251168 , 0.251168 , 0.251168 }, { 0.000000 , 0.000000 , 0.175200 , 0.159273 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.207055 , 0.238909 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.191127 , 0.254837 , 0.079636 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.015927 , 0.238909 , 0.254837 , 0.079636 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.047782 , 0.207055 , 0.159273 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.159273 , 0.222982 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.079636 , 0.175200 , 0.254837 , 0.143346 , 0.079636 , 0.015927 , 0.000000 , 0.000000 , 0.191127 , 0.254837 , 0.254837 , 0.254837 , 0.254837 , 0.191127 }, { 0.000000 , 0.000000 , 0.161374 , 0.209787 , 0.016137 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.112962 , 0.258199 , 0.080687 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.096825 , 0.258199 , 0.096825 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.096825 , 0.258199 , 0.209787 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.096825 , 0.258199 , 0.032275 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.048412 , 0.258199 , 0.129099 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.112962 , 0.177512 , 0.258199 , 0.225924 , 0.145237 , 0.064550 , 0.000000 , 0.000000 , 0.096825 , 0.242061 , 0.209787 , 0.225924 , 0.258199 , 0.242061 }, { 0.000000 , 0.000000 , 0.036020 , 0.234130 , 0.018010 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.270150 , 0.108060 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.270150 , 0.180100 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.234130 , 0.288160 , 0.018010 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.108060 , 0.270150 , 0.108060 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.216120 , 0.162090 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.090050 , 0.216120 , 0.252140 , 0.288160 , 0.162090 , 0.036020 , 0.000000 , 0.000000 , 0.036020 , 0.216120 , 0.216120 , 0.216120 , 0.234130 , 0.144080 }, { 0.000000 , 0.000000 , 0.017216 , 0.241021 , 0.034432 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.275453 , 0.086079 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.241021 , 0.172158 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.189374 , 0.275453 , 0.017216 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.051647 , 0.241021 , 0.103295 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.137726 , 0.206590 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.172158 , 0.241021 , 0.223806 , 0.275453 , 0.137726 , 0.051647 , 0.000000 , 0.000000 , 0.034432 , 0.189374 , 0.206590 , 0.258237 , 0.275453 , 0.258237 }, { 0.000000 , 0.000000 , 0.104573 , 0.278862 , 0.209147 , 0.017429 , 0.000000 , 0.000000 , 0.000000 , 0.052287 , 0.278862 , 0.087145 , 0.156860 , 0.226576 , 0.000000 , 0.000000 , 0.000000 , 0.087145 , 0.209147 , 0.000000 , 0.000000 , 0.209147 , 0.104573 , 0.000000 , 0.000000 , 0.139431 , 0.244005 , 0.034858 , 0.000000 , 0.122002 , 0.139431 , 0.000000 , 0.000000 , 0.122002 , 0.209147 , 0.034858 , 0.000000 , 0.069716 , 0.139431 , 0.000000 , 0.000000 , 0.069716 , 0.209147 , 0.000000 , 0.000000 , 0.156860 , 0.122002 , 0.000000 , 0.000000 , 0.052287 , 0.278862 , 0.087145 , 0.122002 , 0.244005 , 0.034858 , 0.000000 , 0.000000 , 0.000000 , 0.122002 , 0.278862 , 0.226576 , 0.052287 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.176164 , 0.160149 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.176164 , 0.240223 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.176164 , 0.256238 , 0.080074 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.208193 , 0.256238 , 0.176164 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.032030 , 0.112104 , 0.256238 , 0.032030 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.032030 , 0.224208 , 0.096089 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.096089 , 0.160149 , 0.240223 , 0.208193 , 0.128119 , 0.048045 , 0.000000 , 0.000000 , 0.128119 , 0.256238 , 0.256238 , 0.256238 , 0.256238 , 0.192178 }, { 0.000000 , 0.000000 , 0.176200 , 0.254511 , 0.313244 , 0.097889 , 0.000000 , 0.000000 , 0.000000 , 0.058733 , 0.313244 , 0.156622 , 0.078311 , 0.254511 , 0.000000 , 0.000000 , 0.000000 , 0.117467 , 0.195778 , 0.019578 , 0.000000 , 0.176200 , 0.039156 , 0.000000 , 0.000000 , 0.097889 , 0.078311 , 0.000000 , 0.000000 , 0.078311 , 0.156622 , 0.000000 , 0.000000 , 0.156622 , 0.078311 , 0.000000 , 0.000000 , 0.078311 , 0.156622 , 0.000000 , 0.000000 , 0.117467 , 0.117467 , 0.000000 , 0.000000 , 0.078311 , 0.176200 , 0.000000 , 0.000000 , 0.000000 , 0.254511 , 0.039156 , 0.000000 , 0.137044 , 0.156622 , 0.000000 , 0.000000 , 0.000000 , 0.156622 , 0.234933 , 0.254511 , 0.293666 , 0.039156 , 0.000000 }, { 0.000000 , 0.000000 , 0.057145 , 0.228582 , 0.228582 , 0.038097 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.209533 , 0.190485 , 0.133339 , 0.266679 , 0.038097 , 0.000000 , 0.000000 , 0.000000 , 0.209533 , 0.019048 , 0.000000 , 0.152388 , 0.076194 , 0.000000 , 0.000000 , 0.038097 , 0.266679 , 0.038097 , 0.000000 , 0.095242 , 0.133339 , 0.000000 , 0.000000 , 0.152388 , 0.171436 , 0.000000 , 0.000000 , 0.114291 , 0.152388 , 0.000000 , 0.000000 , 0.057145 , 0.247630 , 0.000000 , 0.000000 , 0.228582 , 0.133339 , 0.000000 , 0.000000 , 0.000000 , 0.285727 , 0.114291 , 0.209533 , 0.228582 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.076194 , 0.285727 , 0.209533 , 0.019048 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.067872 , 0.162893 , 0.162893 , 0.122169 , 0.040723 , 0.000000 , 0.000000 , 0.000000 , 0.108595 , 0.217190 , 0.217190 , 0.217190 , 0.054298 , 0.000000 , 0.000000 , 0.000000 , 0.122169 , 0.217190 , 0.217190 , 0.190041 , 0.013574 , 0.000000 , 0.000000 , 0.000000 , 0.149318 , 0.217190 , 0.217190 , 0.162893 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.162893 , 0.217190 , 0.217190 , 0.162893 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.149318 , 0.217190 , 0.217190 , 0.162893 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.054298 , 0.217190 , 0.217190 , 0.162893 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.081446 , 0.162893 , 0.162893 , 0.081446 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.033581 , 0.235070 , 0.151117 , 0.016791 , 0.000000 , 0.000000 , 0.000000 , 0.016791 , 0.201489 , 0.201489 , 0.184698 , 0.134326 , 0.000000 , 0.000000 , 0.000000 , 0.067163 , 0.235070 , 0.016791 , 0.000000 , 0.218279 , 0.050372 , 0.000000 , 0.000000 , 0.134326 , 0.218279 , 0.000000 , 0.000000 , 0.167907 , 0.100744 , 0.000000 , 0.000000 , 0.083954 , 0.268652 , 0.016791 , 0.000000 , 0.134326 , 0.151117 , 0.000000 , 0.000000 , 0.000000 , 0.268652 , 0.000000 , 0.000000 , 0.184698 , 0.151117 , 0.000000 , 0.000000 , 0.000000 , 0.218279 , 0.184698 , 0.167907 , 0.251861 , 0.067163 , 0.000000 , 0.000000 , 0.000000 , 0.050372 , 0.251861 , 0.268652 , 0.083954 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.089632 , 0.149387 , 0.119510 , 0.044816 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.089632 , 0.239019 , 0.239019 , 0.134448 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.134448 , 0.239019 , 0.239019 , 0.089632 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.104571 , 0.239019 , 0.239019 , 0.149387 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.164326 , 0.239019 , 0.239019 , 0.119510 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.104571 , 0.239019 , 0.239019 , 0.134448 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.149387 , 0.239019 , 0.239019 , 0.089632 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.059755 , 0.134448 , 0.179264 , 0.164326 , 0.029877 , 0.000000 }, { 0.000000 , 0.000000 , 0.054456 , 0.217822 , 0.127063 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.254126 , 0.217822 , 0.217822 , 0.072607 , 0.000000 , 0.000000 , 0.000000 , 0.036304 , 0.254126 , 0.000000 , 0.018152 , 0.235974 , 0.000000 , 0.000000 , 0.000000 , 0.018152 , 0.217822 , 0.000000 , 0.000000 , 0.127063 , 0.090759 , 0.000000 , 0.000000 , 0.036304 , 0.235974 , 0.000000 , 0.000000 , 0.036304 , 0.181518 , 0.000000 , 0.000000 , 0.000000 , 0.272278 , 0.054456 , 0.000000 , 0.054456 , 0.254126 , 0.000000 , 0.000000 , 0.000000 , 0.127063 , 0.217822 , 0.145215 , 0.199670 , 0.217822 , 0.000000 , 0.000000 , 0.000000 , 0.036304 , 0.199670 , 0.290429 , 0.199670 , 0.036304 , 0.000000 }, { 0.000000 , 0.000000 , 0.047494 , 0.205805 , 0.158312 , 0.015831 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.047494 , 0.253299 , 0.253299 , 0.063325 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.015831 , 0.253299 , 0.253299 , 0.031662 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.094987 , 0.253299 , 0.253299 , 0.015831 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.063325 , 0.253299 , 0.253299 , 0.015831 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.063325 , 0.253299 , 0.253299 , 0.047494 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.110818 , 0.253299 , 0.253299 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.031662 , 0.221637 , 0.253299 , 0.079156 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.091440 , 0.274319 , 0.164591 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.274319 , 0.109728 , 0.201167 , 0.109728 , 0.000000 , 0.000000 , 0.000000 , 0.128015 , 0.164591 , 0.000000 , 0.000000 , 0.256031 , 0.000000 , 0.000000 , 0.000000 , 0.091440 , 0.164591 , 0.000000 , 0.000000 , 0.146303 , 0.109728 , 0.000000 , 0.000000 , 0.073152 , 0.237743 , 0.000000 , 0.000000 , 0.073152 , 0.146303 , 0.000000 , 0.000000 , 0.018288 , 0.292607 , 0.000000 , 0.000000 , 0.073152 , 0.201167 , 0.000000 , 0.000000 , 0.000000 , 0.274319 , 0.128015 , 0.091440 , 0.292607 , 0.073152 , 0.000000 , 0.000000 , 0.000000 , 0.036576 , 0.274319 , 0.274319 , 0.091440 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.212198 , 0.106099 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.141466 , 0.265248 , 0.229882 , 0.070733 , 0.000000 , 0.000000 , 0.000000 , 0.088416 , 0.282931 , 0.106099 , 0.053050 , 0.212198 , 0.000000 , 0.000000 , 0.000000 , 0.123782 , 0.247565 , 0.017683 , 0.000000 , 0.194515 , 0.088416 , 0.000000 , 0.000000 , 0.053050 , 0.247565 , 0.000000 , 0.000000 , 0.123782 , 0.176832 , 0.000000 , 0.000000 , 0.017683 , 0.247565 , 0.035366 , 0.000000 , 0.159149 , 0.159149 , 0.000000 , 0.000000 , 0.000000 , 0.159149 , 0.194515 , 0.106099 , 0.265248 , 0.088416 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.176832 , 0.282931 , 0.194515 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.080911 , 0.202278 , 0.161823 , 0.067426 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.107882 , 0.215764 , 0.215764 , 0.175308 , 0.013485 , 0.000000 , 0.000000 , 0.000000 , 0.107882 , 0.215764 , 0.215764 , 0.161823 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.107882 , 0.215764 , 0.215764 , 0.134852 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.215764 , 0.215764 , 0.215764 , 0.067426 , 0.000000 , 0.000000 , 0.000000 , 0.067426 , 0.215764 , 0.215764 , 0.215764 , 0.013485 , 0.000000 , 0.000000 , 0.000000 , 0.040456 , 0.202278 , 0.215764 , 0.215764 , 0.026970 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.134852 , 0.215764 , 0.202278 , 0.040456 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.031050 , 0.248398 , 0.155249 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.062100 , 0.248398 , 0.248398 , 0.077624 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.124199 , 0.248398 , 0.248398 , 0.046575 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.139724 , 0.248398 , 0.248398 , 0.046575 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.124199 , 0.248398 , 0.248398 , 0.046575 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.124199 , 0.248398 , 0.248398 , 0.015525 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.077624 , 0.248398 , 0.217348 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.015525 , 0.186299 , 0.248398 , 0.046575 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.196684 , 0.216353 , 0.019668 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.019668 , 0.295026 , 0.157347 , 0.157347 , 0.000000 , 0.000000 , 0.000000 , 0.098342 , 0.078674 , 0.196684 , 0.000000 , 0.236021 , 0.000000 , 0.000000 , 0.000000 , 0.137679 , 0.157347 , 0.196684 , 0.000000 , 0.137679 , 0.098342 , 0.000000 , 0.000000 , 0.118011 , 0.196684 , 0.000000 , 0.000000 , 0.039337 , 0.177016 , 0.000000 , 0.000000 , 0.019668 , 0.255690 , 0.000000 , 0.000000 , 0.039337 , 0.216353 , 0.000000 , 0.000000 , 0.000000 , 0.118011 , 0.216353 , 0.078674 , 0.196684 , 0.216353 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.177016 , 0.295026 , 0.275358 , 0.098342 , 0.000000 }, { 0.000000 , 0.038829 , 0.000000 , 0.155318 , 0.174733 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.252392 , 0.097074 , 0.271806 , 0.155318 , 0.135903 , 0.000000 , 0.000000 , 0.000000 , 0.232977 , 0.097074 , 0.038829 , 0.000000 , 0.174733 , 0.000000 , 0.000000 , 0.000000 , 0.135903 , 0.097074 , 0.000000 , 0.000000 , 0.058244 , 0.097074 , 0.000000 , 0.000000 , 0.058244 , 0.194147 , 0.000000 , 0.000000 , 0.038829 , 0.194147 , 0.000000 , 0.000000 , 0.019415 , 0.252392 , 0.000000 , 0.000000 , 0.019415 , 0.232977 , 0.000000 , 0.000000 , 0.000000 , 0.097074 , 0.252392 , 0.097074 , 0.174733 , 0.252392 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.174733 , 0.310636 , 0.310636 , 0.135903 , 0.000000 }, { 0.000000 , 0.000000 , 0.089783 , 0.239420 , 0.224456 , 0.074819 , 0.000000 , 0.000000 , 0.000000 , 0.014964 , 0.239420 , 0.209493 , 0.119710 , 0.224456 , 0.014964 , 0.000000 , 0.000000 , 0.134674 , 0.194529 , 0.014964 , 0.000000 , 0.179565 , 0.089783 , 0.000000 , 0.000000 , 0.074819 , 0.134674 , 0.000000 , 0.000000 , 0.134674 , 0.149638 , 0.000000 , 0.000000 , 0.089783 , 0.134674 , 0.000000 , 0.000000 , 0.134674 , 0.164601 , 0.000000 , 0.000000 , 0.104746 , 0.239420 , 0.014964 , 0.000000 , 0.164601 , 0.164601 , 0.000000 , 0.000000 , 0.044891 , 0.239420 , 0.164601 , 0.194529 , 0.239420 , 0.119710 , 0.000000 , 0.000000 , 0.000000 , 0.119710 , 0.239420 , 0.239420 , 0.179565 , 0.014964 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.211370 , 0.211370 , 0.135881 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.060392 , 0.241566 , 0.241566 , 0.150979 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.196273 , 0.241566 , 0.226468 , 0.030196 , 0.000000 , 0.000000 , 0.000000 , 0.015098 , 0.226468 , 0.241566 , 0.166077 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.105685 , 0.241566 , 0.241566 , 0.075489 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.045294 , 0.241566 , 0.241566 , 0.105685 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.241566 , 0.241566 , 0.120783 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.045294 , 0.181175 , 0.181175 , 0.000000 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.238849 , 0.191079 , 0.015923 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.079616 , 0.254772 , 0.254772 , 0.095539 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.031846 , 0.254772 , 0.254772 , 0.047770 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.031846 , 0.254772 , 0.254772 , 0.015923 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.095539 , 0.254772 , 0.207002 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.015923 , 0.254772 , 0.254772 , 0.031846 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.047770 , 0.254772 , 0.238849 , 0.047770 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.238849 , 0.254772 , 0.015923 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.097239 , 0.311164 , 0.155582 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.194477 , 0.097239 , 0.233373 , 0.116686 , 0.000000 , 0.000000 , 0.000000 , 0.077791 , 0.272268 , 0.000000 , 0.038895 , 0.252821 , 0.000000 , 0.000000 , 0.000000 , 0.077791 , 0.194477 , 0.000000 , 0.000000 , 0.175030 , 0.155582 , 0.000000 , 0.000000 , 0.097239 , 0.155582 , 0.000000 , 0.000000 , 0.155582 , 0.155582 , 0.000000 , 0.000000 , 0.038895 , 0.213925 , 0.000000 , 0.000000 , 0.175030 , 0.116686 , 0.000000 , 0.000000 , 0.000000 , 0.291716 , 0.116686 , 0.155582 , 0.291716 , 0.019448 , 0.000000 , 0.000000 , 0.000000 , 0.077791 , 0.252821 , 0.233373 , 0.058343 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.030144 , 0.211010 , 0.211010 , 0.090433 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.150721 , 0.226082 , 0.165794 , 0.226082 , 0.030144 , 0.000000 , 0.000000 , 0.045216 , 0.241154 , 0.045216 , 0.000000 , 0.180866 , 0.090433 , 0.000000 , 0.000000 , 0.045216 , 0.135649 , 0.000000 , 0.000000 , 0.135649 , 0.150721 , 0.000000 , 0.000000 , 0.150721 , 0.165794 , 0.000000 , 0.000000 , 0.120577 , 0.180866 , 0.000000 , 0.000000 , 0.105505 , 0.241154 , 0.015072 , 0.000000 , 0.165794 , 0.195938 , 0.000000 , 0.000000 , 0.000000 , 0.226082 , 0.211010 , 0.180866 , 0.226082 , 0.150721 , 0.000000 , 0.000000 , 0.000000 , 0.045216 , 0.211010 , 0.241154 , 0.195938 , 0.075361 , 0.000000 }, { 0.000000 , 0.000000 , 0.075758 , 0.227273 , 0.196970 , 0.030303 , 0.000000 , 0.000000 , 0.000000 , 0.015152 , 0.227273 , 0.166667 , 0.121212 , 0.196970 , 0.000000 , 0.000000 , 0.000000 , 0.075758 , 0.212121 , 0.000000 , 0.000000 , 0.212121 , 0.075758 , 0.000000 , 0.000000 , 0.136364 , 0.242424 , 0.015152 , 0.000000 , 0.106061 , 0.136364 , 0.000000 , 0.000000 , 0.136364 , 0.196970 , 0.000000 , 0.000000 , 0.075758 , 0.212121 , 0.000000 , 0.000000 , 0.090909 , 0.242424 , 0.030303 , 0.000000 , 0.075758 , 0.227273 , 0.000000 , 0.000000 , 0.030303 , 0.212121 , 0.166667 , 0.075758 , 0.212121 , 0.181818 , 0.000000 , 0.000000 , 0.000000 , 0.075758 , 0.227273 , 0.242424 , 0.227273 , 0.045455 , 0.000000 }, { 0.000000 , 0.000000 , 0.063701 , 0.238879 , 0.191103 , 0.031851 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.143327 , 0.254804 , 0.222954 , 0.031851 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.191103 , 0.254804 , 0.238879 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.175178 , 0.254804 , 0.191103 , 0.015925 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.143327 , 0.254804 , 0.222954 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.159253 , 0.254804 , 0.191103 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.143327 , 0.254804 , 0.222954 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.063701 , 0.191103 , 0.191103 , 0.000000 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.046435 , 0.232175 , 0.185740 , 0.030957 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.015478 , 0.247653 , 0.247653 , 0.092870 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.061913 , 0.247653 , 0.247653 , 0.030957 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.046435 , 0.247653 , 0.247653 , 0.092870 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.061913 , 0.247653 , 0.247653 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.015478 , 0.232175 , 0.247653 , 0.092870 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.061913 , 0.247653 , 0.247653 , 0.061913 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.061913 , 0.247653 , 0.247653 , 0.092870 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.175101 , 0.188570 , 0.134693 , 0.026939 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.080816 , 0.215509 , 0.215509 , 0.215509 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.215509 , 0.215509 , 0.215509 , 0.053877 , 0.000000 , 0.000000 , 0.000000 , 0.053877 , 0.215509 , 0.215509 , 0.188570 , 0.026939 , 0.000000 , 0.000000 , 0.000000 , 0.107754 , 0.215509 , 0.215509 , 0.094285 , 0.000000 , 0.000000 , 0.000000 , 0.040408 , 0.202040 , 0.215509 , 0.215509 , 0.053877 , 0.000000 , 0.000000 , 0.000000 , 0.013469 , 0.215509 , 0.215509 , 0.188570 , 0.013469 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.188570 , 0.215509 , 0.175101 , 0.040408 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.015307 , 0.168376 , 0.214297 , 0.076535 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.229604 , 0.244911 , 0.168376 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.076535 , 0.244911 , 0.244911 , 0.122455 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.076535 , 0.244911 , 0.244911 , 0.076535 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.061228 , 0.244911 , 0.244911 , 0.045921 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.137762 , 0.244911 , 0.244911 , 0.030614 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.122455 , 0.244911 , 0.214297 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.030614 , 0.198990 , 0.244911 , 0.137762 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.017201 , 0.206406 , 0.189206 , 0.017201 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.017201 , 0.275208 , 0.275208 , 0.068802 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.051602 , 0.275208 , 0.258008 , 0.034401 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.154805 , 0.275208 , 0.206406 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.206406 , 0.275208 , 0.086003 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.240807 , 0.275208 , 0.103203 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.154805 , 0.275208 , 0.137604 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.034401 , 0.189206 , 0.223607 , 0.017201 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.095019 , 0.285056 , 0.228045 , 0.019004 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.152030 , 0.152030 , 0.114022 , 0.228045 , 0.000000 , 0.000000 , 0.000000 , 0.038007 , 0.095019 , 0.000000 , 0.000000 , 0.228045 , 0.038007 , 0.000000 , 0.000000 , 0.076015 , 0.266052 , 0.000000 , 0.000000 , 0.152030 , 0.114022 , 0.000000 , 0.000000 , 0.133026 , 0.209041 , 0.000000 , 0.000000 , 0.171033 , 0.133026 , 0.000000 , 0.000000 , 0.057011 , 0.247048 , 0.000000 , 0.000000 , 0.228045 , 0.057011 , 0.000000 , 0.000000 , 0.000000 , 0.304059 , 0.095019 , 0.171033 , 0.266052 , 0.019004 , 0.000000 , 0.000000 , 0.000000 , 0.095019 , 0.285056 , 0.209041 , 0.076015 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.046291 , 0.246885 , 0.185164 , 0.030861 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.092582 , 0.246885 , 0.246885 , 0.046291 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.138873 , 0.246885 , 0.246885 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.138873 , 0.246885 , 0.246885 , 0.015430 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.138873 , 0.246885 , 0.246885 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.138873 , 0.246885 , 0.200594 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.108012 , 0.246885 , 0.200594 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.046291 , 0.216025 , 0.246885 , 0.046291 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.035680 , 0.214081 , 0.214081 , 0.017840 , 0.000000 , 0.000000 , 0.000000 , 0.035680 , 0.214081 , 0.214081 , 0.107041 , 0.196241 , 0.000000 , 0.000000 , 0.000000 , 0.178401 , 0.231921 , 0.000000 , 0.000000 , 0.178401 , 0.035680 , 0.000000 , 0.000000 , 0.142721 , 0.196241 , 0.000000 , 0.000000 , 0.107041 , 0.107041 , 0.000000 , 0.000000 , 0.124881 , 0.160561 , 0.000000 , 0.000000 , 0.071360 , 0.160561 , 0.000000 , 0.000000 , 0.053520 , 0.231921 , 0.000000 , 0.000000 , 0.142721 , 0.214081 , 0.000000 , 0.000000 , 0.000000 , 0.214081 , 0.214081 , 0.160561 , 0.285441 , 0.124881 , 0.000000 , 0.000000 , 0.000000 , 0.017840 , 0.214081 , 0.285441 , 0.160561 , 0.017840 , 0.000000 }, { 0.000000 , 0.000000 , 0.075072 , 0.262752 , 0.262752 , 0.037536 , 0.000000 , 0.000000 , 0.000000 , 0.093840 , 0.300288 , 0.206448 , 0.131376 , 0.187680 , 0.000000 , 0.000000 , 0.000000 , 0.075072 , 0.300288 , 0.075072 , 0.000000 , 0.206448 , 0.018768 , 0.000000 , 0.000000 , 0.131376 , 0.262752 , 0.018768 , 0.000000 , 0.131376 , 0.093840 , 0.000000 , 0.000000 , 0.075072 , 0.187680 , 0.000000 , 0.000000 , 0.131376 , 0.131376 , 0.000000 , 0.000000 , 0.018768 , 0.225216 , 0.000000 , 0.000000 , 0.225216 , 0.056304 , 0.000000 , 0.000000 , 0.000000 , 0.168912 , 0.112608 , 0.112608 , 0.243984 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.187680 , 0.262752 , 0.075072 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.077652 , 0.232957 , 0.201896 , 0.015530 , 0.000000 , 0.000000 , 0.000000 , 0.031061 , 0.217427 , 0.248488 , 0.217427 , 0.000000 , 0.000000 , 0.000000 , 0.015530 , 0.201896 , 0.248488 , 0.248488 , 0.186366 , 0.000000 , 0.000000 , 0.000000 , 0.139774 , 0.248488 , 0.217427 , 0.248488 , 0.093183 , 0.000000 , 0.000000 , 0.000000 , 0.046591 , 0.077652 , 0.093183 , 0.248488 , 0.062122 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.124244 , 0.248488 , 0.031061 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.139774 , 0.248488 , 0.046591 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.062122 , 0.232957 , 0.201896 , 0.015530 , 0.000000 }, { 0.000000 , 0.000000 , 0.056960 , 0.265812 , 0.170879 , 0.056960 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.208852 , 0.246826 , 0.151893 , 0.265812 , 0.037973 , 0.000000 , 0.000000 , 0.037973 , 0.303785 , 0.056960 , 0.000000 , 0.170879 , 0.075946 , 0.000000 , 0.000000 , 0.094933 , 0.227839 , 0.000000 , 0.000000 , 0.075946 , 0.151893 , 0.000000 , 0.000000 , 0.151893 , 0.151893 , 0.000000 , 0.000000 , 0.132906 , 0.151893 , 0.000000 , 0.000000 , 0.094933 , 0.208852 , 0.000000 , 0.037973 , 0.284799 , 0.056960 , 0.000000 , 0.000000 , 0.000000 , 0.265812 , 0.094933 , 0.246826 , 0.132906 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.094933 , 0.265812 , 0.094933 , 0.000000 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.208810 , 0.192748 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.160623 , 0.256997 , 0.224872 , 0.000000 , 0.000000 , 0.000000 , 0.016062 , 0.192748 , 0.256997 , 0.256997 , 0.176685 , 0.000000 , 0.000000 , 0.000000 , 0.176685 , 0.256997 , 0.192748 , 0.256997 , 0.128499 , 0.000000 , 0.000000 , 0.000000 , 0.096374 , 0.064249 , 0.112436 , 0.256997 , 0.096374 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.096374 , 0.256997 , 0.080312 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.064249 , 0.256997 , 0.128499 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.240935 , 0.176685 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.128080 , 0.201268 , 0.054891 , 0.018297 , 0.000000 , 0.000000 , 0.000000 , 0.018297 , 0.256159 , 0.292754 , 0.237862 , 0.237862 , 0.000000 , 0.000000 , 0.000000 , 0.054891 , 0.292754 , 0.219565 , 0.018297 , 0.109783 , 0.109783 , 0.000000 , 0.000000 , 0.073188 , 0.182971 , 0.073188 , 0.000000 , 0.073188 , 0.146377 , 0.000000 , 0.000000 , 0.146377 , 0.146377 , 0.000000 , 0.000000 , 0.201268 , 0.091486 , 0.000000 , 0.000000 , 0.128080 , 0.164674 , 0.000000 , 0.036594 , 0.256159 , 0.000000 , 0.000000 , 0.000000 , 0.018297 , 0.219565 , 0.073188 , 0.219565 , 0.182971 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.109783 , 0.256159 , 0.164674 , 0.000000 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.134897 , 0.219208 , 0.050587 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.134897 , 0.269795 , 0.269795 , 0.134897 , 0.000000 , 0.000000 , 0.000000 , 0.202346 , 0.269795 , 0.269795 , 0.269795 , 0.033724 , 0.000000 , 0.000000 , 0.000000 , 0.151760 , 0.151760 , 0.269795 , 0.168622 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.033724 , 0.252933 , 0.134897 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.067449 , 0.269795 , 0.118035 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.050587 , 0.269795 , 0.168622 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.118035 , 0.219208 , 0.033724 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.174208 , 0.270990 , 0.290347 , 0.116139 , 0.000000 , 0.000000 , 0.000000 , 0.038713 , 0.309703 , 0.232277 , 0.019356 , 0.251634 , 0.000000 , 0.000000 , 0.000000 , 0.058069 , 0.232277 , 0.135495 , 0.000000 , 0.154852 , 0.077426 , 0.000000 , 0.000000 , 0.116139 , 0.212921 , 0.077426 , 0.000000 , 0.135495 , 0.038713 , 0.000000 , 0.000000 , 0.077426 , 0.174208 , 0.000000 , 0.000000 , 0.232277 , 0.019356 , 0.000000 , 0.000000 , 0.058069 , 0.174208 , 0.000000 , 0.077426 , 0.212921 , 0.000000 , 0.000000 , 0.000000 , 0.019356 , 0.232277 , 0.096782 , 0.232277 , 0.058069 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.116139 , 0.270990 , 0.096782 , 0.000000 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.105159 , 0.210318 , 0.240364 , 0.195296 , 0.015023 , 0.000000 , 0.000000 , 0.000000 , 0.225341 , 0.195296 , 0.045068 , 0.195296 , 0.120182 , 0.000000 , 0.000000 , 0.090136 , 0.225341 , 0.030045 , 0.000000 , 0.120182 , 0.120182 , 0.000000 , 0.000000 , 0.090136 , 0.240364 , 0.000000 , 0.000000 , 0.090136 , 0.165250 , 0.000000 , 0.000000 , 0.135205 , 0.195296 , 0.000000 , 0.000000 , 0.195296 , 0.135205 , 0.000000 , 0.000000 , 0.075114 , 0.225341 , 0.000000 , 0.075114 , 0.240364 , 0.075114 , 0.000000 , 0.000000 , 0.060091 , 0.240364 , 0.135205 , 0.240364 , 0.180273 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.120182 , 0.240364 , 0.180273 , 0.045068 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.103775 , 0.237200 , 0.192725 , 0.059300 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.103775 , 0.237200 , 0.237200 , 0.133425 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.014825 , 0.237200 , 0.237200 , 0.133425 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.044475 , 0.237200 , 0.237200 , 0.133425 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.118600 , 0.237200 , 0.237200 , 0.118600 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.148250 , 0.237200 , 0.237200 , 0.059300 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.133425 , 0.237200 , 0.207550 , 0.014825 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.059300 , 0.177900 , 0.207550 , 0.118600 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.064416 , 0.241559 , 0.193247 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.080520 , 0.241559 , 0.257663 , 0.177143 , 0.000000 , 0.000000 , 0.000000 , 0.128831 , 0.257663 , 0.257663 , 0.257663 , 0.064416 , 0.000000 , 0.000000 , 0.000000 , 0.225455 , 0.177143 , 0.177143 , 0.257663 , 0.032208 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.112727 , 0.257663 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.144935 , 0.257663 , 0.032208 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.144935 , 0.257663 , 0.048312 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.080520 , 0.257663 , 0.080520 , 0.000000 , 0.000000 }, { 0.000000 , 0.028973 , 0.115893 , 0.217300 , 0.231787 , 0.144867 , 0.000000 , 0.000000 , 0.000000 , 0.159353 , 0.231787 , 0.144867 , 0.057947 , 0.217300 , 0.014487 , 0.000000 , 0.000000 , 0.173840 , 0.188327 , 0.000000 , 0.000000 , 0.188327 , 0.072433 , 0.000000 , 0.000000 , 0.159353 , 0.188327 , 0.000000 , 0.000000 , 0.217300 , 0.101407 , 0.000000 , 0.000000 , 0.115893 , 0.231787 , 0.000000 , 0.000000 , 0.217300 , 0.086920 , 0.000000 , 0.000000 , 0.086920 , 0.231787 , 0.014487 , 0.072433 , 0.231787 , 0.028973 , 0.000000 , 0.000000 , 0.028973 , 0.231787 , 0.086920 , 0.217300 , 0.173840 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.101407 , 0.231787 , 0.202813 , 0.014487 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.124787 , 0.233975 , 0.249574 , 0.171582 , 0.000000 , 0.000000 , 0.000000 , 0.031197 , 0.249574 , 0.155984 , 0.062393 , 0.218377 , 0.062393 , 0.000000 , 0.000000 , 0.093590 , 0.249574 , 0.031197 , 0.000000 , 0.124787 , 0.124787 , 0.000000 , 0.000000 , 0.155984 , 0.187180 , 0.000000 , 0.000000 , 0.171582 , 0.093590 , 0.000000 , 0.000000 , 0.140385 , 0.171582 , 0.000000 , 0.000000 , 0.233975 , 0.093590 , 0.000000 , 0.000000 , 0.124787 , 0.187180 , 0.000000 , 0.109189 , 0.233975 , 0.015598 , 0.000000 , 0.000000 , 0.031197 , 0.233975 , 0.109189 , 0.233975 , 0.140385 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.155984 , 0.249574 , 0.187180 , 0.015598 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.107607 , 0.251083 , 0.233149 , 0.017935 , 0.000000 , 0.000000 , 0.000000 , 0.053804 , 0.286952 , 0.179345 , 0.089673 , 0.197280 , 0.000000 , 0.000000 , 0.000000 , 0.089673 , 0.286952 , 0.000000 , 0.000000 , 0.233149 , 0.000000 , 0.000000 , 0.000000 , 0.107607 , 0.215214 , 0.000000 , 0.000000 , 0.215214 , 0.053804 , 0.000000 , 0.000000 , 0.125542 , 0.215214 , 0.000000 , 0.000000 , 0.233149 , 0.053804 , 0.000000 , 0.000000 , 0.053804 , 0.197280 , 0.000000 , 0.089673 , 0.215214 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.233149 , 0.071738 , 0.269018 , 0.071738 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.089673 , 0.286952 , 0.107607 , 0.000000 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.017909 , 0.286538 , 0.196995 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.268629 , 0.286538 , 0.017909 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.268629 , 0.250721 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.035817 , 0.286538 , 0.250721 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.017909 , 0.286538 , 0.268629 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.250721 , 0.232812 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.232812 , 0.179086 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.214903 , 0.196995 , 0.000000 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.093739 , 0.249969 , 0.171854 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.140608 , 0.249969 , 0.249969 , 0.078115 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.124985 , 0.249969 , 0.249969 , 0.062492 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.156231 , 0.249969 , 0.203100 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.203100 , 0.249969 , 0.187477 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.156231 , 0.249969 , 0.140608 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.140608 , 0.249969 , 0.156231 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.062492 , 0.234346 , 0.249969 , 0.046869 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.130755 , 0.093397 , 0.261511 , 0.242832 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.298870 , 0.280190 , 0.112076 , 0.168114 , 0.037359 , 0.000000 , 0.000000 , 0.074717 , 0.298870 , 0.130755 , 0.000000 , 0.074717 , 0.074717 , 0.000000 , 0.000000 , 0.112076 , 0.224152 , 0.018679 , 0.000000 , 0.093397 , 0.130755 , 0.000000 , 0.000000 , 0.149435 , 0.130755 , 0.000000 , 0.000000 , 0.224152 , 0.056038 , 0.000000 , 0.000000 , 0.074717 , 0.149435 , 0.000000 , 0.074717 , 0.224152 , 0.000000 , 0.000000 , 0.000000 , 0.037359 , 0.224152 , 0.093397 , 0.280190 , 0.074717 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.112076 , 0.280190 , 0.112076 , 0.000000 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.216604 , 0.157530 , 0.236296 , 0.098456 , 0.000000 , 0.000000 , 0.000000 , 0.019691 , 0.295369 , 0.216604 , 0.118148 , 0.275678 , 0.039383 , 0.000000 , 0.000000 , 0.078765 , 0.216604 , 0.000000 , 0.000000 , 0.177222 , 0.078765 , 0.000000 , 0.000000 , 0.078765 , 0.157530 , 0.000000 , 0.000000 , 0.157530 , 0.118148 , 0.000000 , 0.000000 , 0.118148 , 0.137839 , 0.000000 , 0.000000 , 0.216604 , 0.059074 , 0.000000 , 0.000000 , 0.098456 , 0.157530 , 0.000000 , 0.098456 , 0.255987 , 0.000000 , 0.000000 , 0.000000 , 0.059074 , 0.255987 , 0.098456 , 0.295369 , 0.059074 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.177222 , 0.275678 , 0.078765 , 0.000000 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.074835 , 0.243214 , 0.280631 , 0.112253 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.280631 , 0.205796 , 0.037418 , 0.261923 , 0.037418 , 0.000000 , 0.000000 , 0.056126 , 0.261923 , 0.018709 , 0.000000 , 0.224505 , 0.074835 , 0.000000 , 0.000000 , 0.093544 , 0.224505 , 0.000000 , 0.000000 , 0.168379 , 0.093544 , 0.000000 , 0.000000 , 0.093544 , 0.093544 , 0.000000 , 0.000000 , 0.224505 , 0.037418 , 0.000000 , 0.000000 , 0.074835 , 0.168379 , 0.000000 , 0.037418 , 0.243214 , 0.037418 , 0.000000 , 0.000000 , 0.000000 , 0.243214 , 0.037418 , 0.261923 , 0.130961 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.093544 , 0.299340 , 0.130961 , 0.000000 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.047565 , 0.253681 , 0.190261 , 0.015855 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.047565 , 0.253681 , 0.253681 , 0.079275 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.031710 , 0.253681 , 0.253681 , 0.079275 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.253681 , 0.253681 , 0.079275 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.063420 , 0.253681 , 0.253681 , 0.031710 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.063420 , 0.253681 , 0.221971 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.095130 , 0.253681 , 0.221971 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.031710 , 0.253681 , 0.221971 , 0.000000 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.015525 , 0.186299 , 0.248398 , 0.124199 , 0.000000 , 0.000000 , 0.000000 , 0.031050 , 0.201823 , 0.248398 , 0.248398 , 0.124199 , 0.000000 , 0.000000 , 0.000000 , 0.201823 , 0.248398 , 0.217348 , 0.248398 , 0.186299 , 0.000000 , 0.000000 , 0.000000 , 0.170774 , 0.093149 , 0.108674 , 0.248398 , 0.031050 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.170774 , 0.248398 , 0.015525 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.201823 , 0.201823 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.232873 , 0.201823 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.201823 , 0.201823 , 0.000000 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.063333 , 0.189998 , 0.205831 , 0.031666 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.079166 , 0.253331 , 0.253331 , 0.079166 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.079166 , 0.253331 , 0.253331 , 0.094999 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.142499 , 0.253331 , 0.237498 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.158332 , 0.253331 , 0.221664 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.189998 , 0.253331 , 0.189998 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.079166 , 0.253331 , 0.174165 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.094999 , 0.253331 , 0.205831 , 0.000000 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.047867 , 0.191468 , 0.191468 , 0.047867 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.063823 , 0.255290 , 0.255290 , 0.063823 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.079778 , 0.255290 , 0.255290 , 0.079778 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.175512 , 0.255290 , 0.239335 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.191468 , 0.255290 , 0.223379 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.207423 , 0.255290 , 0.143601 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.111689 , 0.255290 , 0.159556 , 0.015956 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.079778 , 0.207423 , 0.223379 , 0.063823 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.049141 , 0.262084 , 0.196563 , 0.016380 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.163802 , 0.262084 , 0.262084 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.196563 , 0.262084 , 0.196563 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.212943 , 0.262084 , 0.163802 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.262084 , 0.262084 , 0.016380 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.262084 , 0.262084 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.163802 , 0.262084 , 0.016380 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.032760 , 0.212943 , 0.147422 , 0.000000 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.085274 , 0.204658 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.238767 , 0.170548 , 0.238767 , 0.204658 , 0.000000 , 0.000000 , 0.000000 , 0.034110 , 0.272877 , 0.272877 , 0.136439 , 0.187603 , 0.034110 , 0.000000 , 0.000000 , 0.051164 , 0.272877 , 0.187603 , 0.000000 , 0.153493 , 0.051164 , 0.000000 , 0.000000 , 0.085274 , 0.204658 , 0.034110 , 0.000000 , 0.204658 , 0.068219 , 0.000000 , 0.000000 , 0.017055 , 0.204658 , 0.000000 , 0.000000 , 0.221713 , 0.051164 , 0.000000 , 0.000000 , 0.000000 , 0.221713 , 0.102329 , 0.136439 , 0.221713 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.051164 , 0.238767 , 0.204658 , 0.051164 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.237220 , 0.169443 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.050833 , 0.237220 , 0.271109 , 0.220276 , 0.000000 , 0.000000 , 0.000000 , 0.033889 , 0.271109 , 0.271109 , 0.271109 , 0.084721 , 0.000000 , 0.000000 , 0.000000 , 0.016944 , 0.186387 , 0.237220 , 0.254164 , 0.016944 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.135554 , 0.271109 , 0.016944 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.118610 , 0.271109 , 0.016944 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.016944 , 0.254164 , 0.084721 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.220276 , 0.220276 , 0.000000 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.194994 , 0.253493 , 0.272992 , 0.155996 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.253493 , 0.175495 , 0.097497 , 0.233993 , 0.097497 , 0.000000 , 0.000000 , 0.077998 , 0.253493 , 0.000000 , 0.000000 , 0.077998 , 0.155996 , 0.000000 , 0.000000 , 0.077998 , 0.155996 , 0.000000 , 0.000000 , 0.077998 , 0.155996 , 0.000000 , 0.000000 , 0.155996 , 0.077998 , 0.000000 , 0.000000 , 0.253493 , 0.038999 , 0.000000 , 0.000000 , 0.155996 , 0.077998 , 0.000000 , 0.175495 , 0.194994 , 0.000000 , 0.000000 , 0.000000 , 0.077998 , 0.233993 , 0.233993 , 0.253493 , 0.019499 , 0.000000 , 0.000000 , 0.000000 , 0.019499 , 0.214494 , 0.214494 , 0.019499 , 0.000000 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.220676 , 0.202287 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.220676 , 0.220676 , 0.165507 , 0.183897 , 0.000000 , 0.000000 , 0.000000 , 0.036779 , 0.294235 , 0.036779 , 0.018390 , 0.202287 , 0.018390 , 0.000000 , 0.000000 , 0.018390 , 0.275845 , 0.000000 , 0.000000 , 0.091948 , 0.147117 , 0.000000 , 0.000000 , 0.036779 , 0.257456 , 0.000000 , 0.000000 , 0.091948 , 0.183897 , 0.000000 , 0.000000 , 0.000000 , 0.239066 , 0.036779 , 0.000000 , 0.036779 , 0.239066 , 0.000000 , 0.000000 , 0.000000 , 0.128728 , 0.165507 , 0.000000 , 0.128728 , 0.202287 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.202287 , 0.239066 , 0.294235 , 0.036779 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.017815 , 0.231590 , 0.231590 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.071258 , 0.267219 , 0.267219 , 0.285033 , 0.000000 , 0.000000 , 0.000000 , 0.142517 , 0.285033 , 0.178146 , 0.106888 , 0.249404 , 0.000000 , 0.000000 , 0.000000 , 0.178146 , 0.106888 , 0.000000 , 0.142517 , 0.231590 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.178146 , 0.231590 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.231590 , 0.160331 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.249404 , 0.124702 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.285033 , 0.124702 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.237459 , 0.203536 , 0.016961 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.067845 , 0.254420 , 0.118729 , 0.169613 , 0.000000 , 0.000000 , 0.000000 , 0.033923 , 0.271381 , 0.254420 , 0.084807 , 0.203536 , 0.033923 , 0.000000 , 0.000000 , 0.118729 , 0.271381 , 0.000000 , 0.000000 , 0.186575 , 0.084807 , 0.000000 , 0.000000 , 0.084807 , 0.203536 , 0.000000 , 0.000000 , 0.203536 , 0.067845 , 0.000000 , 0.000000 , 0.016961 , 0.254420 , 0.000000 , 0.000000 , 0.237459 , 0.033923 , 0.000000 , 0.000000 , 0.000000 , 0.152652 , 0.101768 , 0.118729 , 0.254420 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.016961 , 0.220497 , 0.271381 , 0.135691 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.183003 , 0.266186 , 0.049910 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.083183 , 0.266186 , 0.266186 , 0.083183 , 0.000000 , 0.000000 , 0.000000 , 0.099820 , 0.266186 , 0.249550 , 0.266186 , 0.049910 , 0.000000 , 0.000000 , 0.000000 , 0.183003 , 0.183003 , 0.166367 , 0.266186 , 0.016637 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.166367 , 0.249550 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.183003 , 0.216277 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.166367 , 0.266186 , 0.033273 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.116457 , 0.266186 , 0.033273 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.262507 , 0.180473 , 0.016407 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.213287 , 0.262507 , 0.164067 , 0.147660 , 0.000000 , 0.000000 , 0.000000 , 0.032813 , 0.262507 , 0.180473 , 0.016407 , 0.229693 , 0.032813 , 0.000000 , 0.000000 , 0.049220 , 0.262507 , 0.016407 , 0.000000 , 0.131253 , 0.114847 , 0.000000 , 0.000000 , 0.065627 , 0.213287 , 0.000000 , 0.000000 , 0.131253 , 0.147660 , 0.000000 , 0.000000 , 0.049220 , 0.262507 , 0.016407 , 0.000000 , 0.164067 , 0.147660 , 0.000000 , 0.000000 , 0.000000 , 0.164067 , 0.131253 , 0.049220 , 0.262507 , 0.065627 , 0.000000 , 0.000000 , 0.000000 , 0.016407 , 0.180473 , 0.262507 , 0.213287 , 0.016407 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.088890 , 0.266669 , 0.017778 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.195557 , 0.284447 , 0.017778 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.142224 , 0.266669 , 0.284447 , 0.053334 , 0.000000 , 0.000000 , 0.035556 , 0.231113 , 0.266669 , 0.088890 , 0.284447 , 0.000000 , 0.000000 , 0.000000 , 0.142224 , 0.248891 , 0.035556 , 0.053334 , 0.284447 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.071112 , 0.266669 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.088890 , 0.266669 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.088890 , 0.284447 , 0.017778 , 0.000000 }, { 0.000000 , 0.000000 , 0.133147 , 0.236706 , 0.162735 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.014794 , 0.236706 , 0.192324 , 0.221912 , 0.103559 , 0.000000 , 0.000000 , 0.000000 , 0.103559 , 0.236706 , 0.088765 , 0.059177 , 0.236706 , 0.044382 , 0.000000 , 0.000000 , 0.133147 , 0.207118 , 0.000000 , 0.000000 , 0.162735 , 0.147941 , 0.000000 , 0.000000 , 0.118353 , 0.192324 , 0.000000 , 0.000000 , 0.103559 , 0.192324 , 0.000000 , 0.000000 , 0.103559 , 0.192324 , 0.000000 , 0.000000 , 0.103559 , 0.236706 , 0.000000 , 0.000000 , 0.044382 , 0.236706 , 0.103559 , 0.103559 , 0.221912 , 0.088765 , 0.000000 , 0.000000 , 0.000000 , 0.133147 , 0.236706 , 0.236706 , 0.147941 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.029004 , 0.203027 , 0.188525 , 0.029004 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.159521 , 0.232030 , 0.217528 , 0.188525 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.188525 , 0.188525 , 0.014502 , 0.232030 , 0.043506 , 0.000000 , 0.000000 , 0.000000 , 0.174023 , 0.188525 , 0.000000 , 0.217528 , 0.087011 , 0.000000 , 0.000000 , 0.014502 , 0.232030 , 0.101513 , 0.014502 , 0.232030 , 0.058008 , 0.000000 , 0.000000 , 0.014502 , 0.232030 , 0.072509 , 0.116015 , 0.232030 , 0.014502 , 0.000000 , 0.000000 , 0.000000 , 0.217528 , 0.188525 , 0.217528 , 0.188525 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.043506 , 0.217528 , 0.217528 , 0.029004 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.279799 , 0.227337 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.262312 , 0.262312 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.279799 , 0.227337 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.052462 , 0.279799 , 0.192362 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.034975 , 0.279799 , 0.209849 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.052462 , 0.279799 , 0.209849 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.017487 , 0.279799 , 0.209849 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.209849 , 0.262312 , 0.017487 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.235070 , 0.184698 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.201489 , 0.268652 , 0.033581 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.201489 , 0.268652 , 0.033581 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.251861 , 0.268652 , 0.016791 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.268652 , 0.268652 , 0.016791 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.050372 , 0.268652 , 0.251861 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.067163 , 0.268652 , 0.235070 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.016791 , 0.235070 , 0.268652 , 0.067163 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.015519 , 0.201751 , 0.217270 , 0.015519 , 0.000000 , 0.000000 , 0.000000 , 0.015519 , 0.170712 , 0.248308 , 0.155193 , 0.186231 , 0.000000 , 0.000000 , 0.000000 , 0.093116 , 0.248308 , 0.232789 , 0.000000 , 0.201751 , 0.046558 , 0.000000 , 0.000000 , 0.108635 , 0.217270 , 0.077596 , 0.000000 , 0.124154 , 0.139673 , 0.000000 , 0.000000 , 0.093116 , 0.201751 , 0.000000 , 0.000000 , 0.124154 , 0.170712 , 0.000000 , 0.000000 , 0.062077 , 0.232789 , 0.000000 , 0.015519 , 0.217270 , 0.139673 , 0.000000 , 0.000000 , 0.000000 , 0.217270 , 0.124154 , 0.186231 , 0.248308 , 0.046558 , 0.000000 , 0.000000 , 0.000000 , 0.046558 , 0.232789 , 0.232789 , 0.062077 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.030675 , 0.214725 , 0.199387 , 0.015337 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.214725 , 0.245400 , 0.199387 , 0.168712 , 0.000000 , 0.000000 , 0.000000 , 0.061350 , 0.245400 , 0.168712 , 0.015337 , 0.199387 , 0.046012 , 0.000000 , 0.000000 , 0.076687 , 0.245400 , 0.046012 , 0.000000 , 0.153375 , 0.138037 , 0.000000 , 0.000000 , 0.092025 , 0.199387 , 0.000000 , 0.000000 , 0.138037 , 0.168712 , 0.000000 , 0.000000 , 0.030675 , 0.230062 , 0.000000 , 0.015337 , 0.230062 , 0.122700 , 0.000000 , 0.000000 , 0.000000 , 0.168712 , 0.184050 , 0.230062 , 0.230062 , 0.015337 , 0.000000 , 0.000000 , 0.000000 , 0.030675 , 0.199387 , 0.245400 , 0.076687 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.148988 , 0.238382 , 0.208584 , 0.029798 , 0.000000 , 0.000000 , 0.000000 , 0.044697 , 0.238382 , 0.134090 , 0.119191 , 0.208584 , 0.000000 , 0.000000 , 0.000000 , 0.074494 , 0.238382 , 0.044697 , 0.029798 , 0.223483 , 0.089393 , 0.000000 , 0.000000 , 0.074494 , 0.238382 , 0.044697 , 0.000000 , 0.178786 , 0.148988 , 0.000000 , 0.000000 , 0.104292 , 0.208584 , 0.000000 , 0.000000 , 0.178786 , 0.163887 , 0.000000 , 0.000000 , 0.104292 , 0.238382 , 0.014899 , 0.044697 , 0.238382 , 0.074494 , 0.000000 , 0.000000 , 0.059595 , 0.238382 , 0.104292 , 0.178786 , 0.163887 , 0.014899 , 0.000000 , 0.000000 , 0.000000 , 0.148988 , 0.238382 , 0.208584 , 0.044697 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.015700 , 0.235499 , 0.188399 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.188399 , 0.251199 , 0.204099 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.172699 , 0.251199 , 0.251199 , 0.204099 , 0.000000 , 0.000000 , 0.000000 , 0.172699 , 0.251199 , 0.172699 , 0.204099 , 0.204099 , 0.000000 , 0.000000 , 0.000000 , 0.047100 , 0.109899 , 0.000000 , 0.188399 , 0.219799 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.172699 , 0.204099 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.235499 , 0.204099 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.031400 , 0.235499 , 0.204099 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.016632 , 0.249481 , 0.249481 , 0.033264 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.199585 , 0.266113 , 0.116424 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.232849 , 0.266113 , 0.083160 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.216217 , 0.266113 , 0.033264 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.033264 , 0.266113 , 0.216217 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.099792 , 0.266113 , 0.216217 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.099792 , 0.266113 , 0.182953 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.016632 , 0.232849 , 0.266113 , 0.116424 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.018709 , 0.224505 , 0.224505 , 0.056126 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.168379 , 0.243214 , 0.093544 , 0.261923 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.280631 , 0.056126 , 0.000000 , 0.187088 , 0.037418 , 0.000000 , 0.000000 , 0.056126 , 0.299340 , 0.074835 , 0.000000 , 0.168379 , 0.074835 , 0.000000 , 0.000000 , 0.074835 , 0.243214 , 0.000000 , 0.000000 , 0.168379 , 0.037418 , 0.000000 , 0.000000 , 0.056126 , 0.243214 , 0.000000 , 0.018709 , 0.280631 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.243214 , 0.112253 , 0.149670 , 0.168379 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.037418 , 0.261923 , 0.224505 , 0.037418 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.088141 , 0.229166 , 0.193910 , 0.017628 , 0.000000 , 0.000000 , 0.000000 , 0.052884 , 0.282051 , 0.193910 , 0.141025 , 0.211538 , 0.000000 , 0.000000 , 0.000000 , 0.088141 , 0.282051 , 0.000000 , 0.000000 , 0.229166 , 0.052884 , 0.000000 , 0.000000 , 0.088141 , 0.229166 , 0.000000 , 0.000000 , 0.105769 , 0.123397 , 0.000000 , 0.000000 , 0.123397 , 0.176282 , 0.000000 , 0.000000 , 0.141025 , 0.123397 , 0.000000 , 0.000000 , 0.070513 , 0.229166 , 0.000000 , 0.017628 , 0.246794 , 0.088141 , 0.000000 , 0.000000 , 0.017628 , 0.264422 , 0.088141 , 0.211538 , 0.176282 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.123397 , 0.282051 , 0.176282 , 0.017628 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.064727 , 0.242726 , 0.210363 , 0.032363 , 0.000000 , 0.000000 , 0.000000 , 0.064727 , 0.258908 , 0.242726 , 0.113272 , 0.177999 , 0.000000 , 0.000000 , 0.000000 , 0.129454 , 0.226544 , 0.226544 , 0.000000 , 0.226544 , 0.032363 , 0.000000 , 0.000000 , 0.113272 , 0.145636 , 0.194181 , 0.064727 , 0.129454 , 0.113272 , 0.000000 , 0.000000 , 0.097090 , 0.177999 , 0.000000 , 0.000000 , 0.113272 , 0.145636 , 0.000000 , 0.000000 , 0.032363 , 0.242726 , 0.016182 , 0.000000 , 0.161817 , 0.129454 , 0.000000 , 0.000000 , 0.000000 , 0.177999 , 0.129454 , 0.064727 , 0.242726 , 0.064727 , 0.000000 , 0.000000 , 0.000000 , 0.032363 , 0.226544 , 0.258908 , 0.161817 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.050160 , 0.267523 , 0.133761 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.183922 , 0.267523 , 0.150481 , 0.000000 , 0.000000 , 0.000000 , 0.050160 , 0.200642 , 0.267523 , 0.267523 , 0.133761 , 0.000000 , 0.000000 , 0.000000 , 0.217362 , 0.267523 , 0.150481 , 0.267523 , 0.133761 , 0.000000 , 0.000000 , 0.000000 , 0.016720 , 0.033440 , 0.000000 , 0.267523 , 0.133761 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.033440 , 0.267523 , 0.066881 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.033440 , 0.267523 , 0.100321 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.016720 , 0.267523 , 0.150481 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.016424 , 0.229941 , 0.229941 , 0.032849 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.016424 , 0.229941 , 0.262790 , 0.049273 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.164244 , 0.262790 , 0.032849 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.180668 , 0.262790 , 0.082122 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.246366 , 0.262790 , 0.082122 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.246366 , 0.262790 , 0.082122 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.164244 , 0.262790 , 0.197092 , 0.016424 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.229941 , 0.262790 , 0.180668 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.035612 , 0.249286 , 0.249286 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.017806 , 0.267092 , 0.284898 , 0.035612 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.249286 , 0.284898 , 0.053418 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.178061 , 0.284898 , 0.089031 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.213673 , 0.249286 , 0.017806 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.231479 , 0.231479 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.017806 , 0.284898 , 0.195867 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.035612 , 0.267092 , 0.213673 , 0.000000 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.032112 , 0.256898 , 0.160561 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.048168 , 0.256898 , 0.256898 , 0.016056 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.080281 , 0.256898 , 0.224785 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.048168 , 0.256898 , 0.208729 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.016056 , 0.256898 , 0.240842 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.016056 , 0.256898 , 0.256898 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.032112 , 0.256898 , 0.240842 , 0.032112 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.240842 , 0.256898 , 0.176617 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.033077 , 0.264616 , 0.198462 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.082693 , 0.264616 , 0.264616 , 0.016539 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.033077 , 0.264616 , 0.248078 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.099231 , 0.264616 , 0.231539 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.132308 , 0.264616 , 0.148847 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.115770 , 0.264616 , 0.231539 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.132308 , 0.264616 , 0.181924 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.033077 , 0.248078 , 0.215001 , 0.000000 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.062508 , 0.250031 , 0.187523 , 0.015627 , 0.000000 , 0.000000 , 0.000000 , 0.031254 , 0.250031 , 0.250031 , 0.171896 , 0.125015 , 0.000000 , 0.000000 , 0.000000 , 0.046881 , 0.250031 , 0.203150 , 0.015627 , 0.218777 , 0.031254 , 0.000000 , 0.000000 , 0.062508 , 0.250031 , 0.000000 , 0.000000 , 0.203150 , 0.062508 , 0.000000 , 0.000000 , 0.062508 , 0.234404 , 0.000000 , 0.000000 , 0.203150 , 0.125015 , 0.000000 , 0.000000 , 0.015627 , 0.250031 , 0.015627 , 0.000000 , 0.218777 , 0.078135 , 0.000000 , 0.000000 , 0.000000 , 0.156269 , 0.125015 , 0.109388 , 0.234404 , 0.015627 , 0.000000 , 0.000000 , 0.000000 , 0.031254 , 0.203150 , 0.250031 , 0.125015 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.035472 , 0.283775 , 0.230567 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.070944 , 0.283775 , 0.266039 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.070944 , 0.283775 , 0.212832 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.124152 , 0.283775 , 0.177360 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.088680 , 0.283775 , 0.159624 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.124152 , 0.283775 , 0.124152 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.053208 , 0.283775 , 0.159624 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.017736 , 0.212832 , 0.266039 , 0.000000 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.029501 , 0.221259 , 0.191758 , 0.029501 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.118005 , 0.236010 , 0.221259 , 0.177007 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.132755 , 0.206509 , 0.014751 , 0.221259 , 0.073753 , 0.000000 , 0.000000 , 0.000000 , 0.206509 , 0.191758 , 0.000000 , 0.162257 , 0.132755 , 0.000000 , 0.000000 , 0.044252 , 0.236010 , 0.162257 , 0.000000 , 0.177007 , 0.132755 , 0.000000 , 0.000000 , 0.029501 , 0.236010 , 0.044252 , 0.029501 , 0.236010 , 0.088504 , 0.000000 , 0.000000 , 0.014751 , 0.191758 , 0.162257 , 0.221259 , 0.206509 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.059002 , 0.236010 , 0.221259 , 0.073753 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.076388 , 0.267359 , 0.305553 , 0.076388 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.229165 , 0.152776 , 0.171873 , 0.229165 , 0.000000 , 0.000000 , 0.000000 , 0.038194 , 0.210068 , 0.000000 , 0.000000 , 0.229165 , 0.057291 , 0.000000 , 0.000000 , 0.076388 , 0.133679 , 0.000000 , 0.000000 , 0.095485 , 0.152776 , 0.000000 , 0.000000 , 0.114582 , 0.076388 , 0.000000 , 0.000000 , 0.076388 , 0.152776 , 0.000000 , 0.000000 , 0.076388 , 0.171873 , 0.000000 , 0.000000 , 0.114582 , 0.152776 , 0.000000 , 0.000000 , 0.000000 , 0.267359 , 0.171873 , 0.114582 , 0.286456 , 0.038194 , 0.000000 , 0.000000 , 0.000000 , 0.076388 , 0.305553 , 0.286456 , 0.095485 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.045211 , 0.226056 , 0.241127 , 0.015070 , 0.000000 , 0.000000 , 0.000000 , 0.105493 , 0.226056 , 0.241127 , 0.210986 , 0.000000 , 0.000000 , 0.000000 , 0.060282 , 0.241127 , 0.241127 , 0.226056 , 0.195916 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.120563 , 0.030141 , 0.226056 , 0.195916 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.241127 , 0.226056 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.241127 , 0.180845 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.015070 , 0.241127 , 0.241127 , 0.030141 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.045211 , 0.226056 , 0.195916 , 0.015070 , 0.000000 }, { 0.000000 , 0.000000 , 0.051217 , 0.170722 , 0.273155 , 0.068289 , 0.000000 , 0.000000 , 0.000000 , 0.017072 , 0.256083 , 0.273155 , 0.273155 , 0.170722 , 0.000000 , 0.000000 , 0.000000 , 0.102433 , 0.170722 , 0.034144 , 0.051217 , 0.239011 , 0.017072 , 0.000000 , 0.000000 , 0.136578 , 0.102433 , 0.000000 , 0.000000 , 0.170722 , 0.068289 , 0.000000 , 0.000000 , 0.068289 , 0.136578 , 0.000000 , 0.000000 , 0.085361 , 0.136578 , 0.000000 , 0.000000 , 0.000000 , 0.256083 , 0.000000 , 0.000000 , 0.153650 , 0.136578 , 0.000000 , 0.000000 , 0.000000 , 0.204866 , 0.239011 , 0.170722 , 0.273155 , 0.051217 , 0.000000 , 0.000000 , 0.000000 , 0.068289 , 0.239011 , 0.221939 , 0.085361 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.147185 , 0.245309 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.016354 , 0.163539 , 0.261663 , 0.261663 , 0.016354 , 0.000000 , 0.000000 , 0.081770 , 0.261663 , 0.245309 , 0.228955 , 0.261663 , 0.000000 , 0.000000 , 0.000000 , 0.016354 , 0.130831 , 0.000000 , 0.163539 , 0.261663 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.179893 , 0.261663 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.163539 , 0.245309 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.196247 , 0.261663 , 0.049062 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.130831 , 0.261663 , 0.049062 , 0.000000 }, { 0.000000 , 0.000000 , 0.036942 , 0.166240 , 0.258595 , 0.221653 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.221653 , 0.295537 , 0.184711 , 0.277066 , 0.018471 , 0.000000 , 0.000000 , 0.073884 , 0.258595 , 0.055413 , 0.036942 , 0.110826 , 0.110826 , 0.000000 , 0.000000 , 0.092355 , 0.129298 , 0.000000 , 0.000000 , 0.055413 , 0.147769 , 0.000000 , 0.000000 , 0.073884 , 0.129298 , 0.000000 , 0.000000 , 0.018471 , 0.147769 , 0.000000 , 0.000000 , 0.055413 , 0.221653 , 0.018471 , 0.000000 , 0.092355 , 0.147769 , 0.000000 , 0.000000 , 0.000000 , 0.184711 , 0.221653 , 0.129298 , 0.258595 , 0.055413 , 0.000000 , 0.000000 , 0.000000 , 0.018471 , 0.221653 , 0.295537 , 0.147769 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.166361 , 0.226856 , 0.015124 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.090743 , 0.241980 , 0.241980 , 0.030248 , 0.000000 , 0.000000 , 0.045371 , 0.196609 , 0.241980 , 0.241980 , 0.241980 , 0.000000 , 0.000000 , 0.000000 , 0.136114 , 0.241980 , 0.181485 , 0.241980 , 0.211733 , 0.000000 , 0.000000 , 0.000000 , 0.015124 , 0.045371 , 0.000000 , 0.241980 , 0.196609 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.211733 , 0.196609 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.181485 , 0.241980 , 0.075619 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.120990 , 0.241980 , 0.105866 , 0.000000 }, { 0.000000 , 0.000000 , 0.037629 , 0.225773 , 0.131701 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.282216 , 0.263402 , 0.282216 , 0.112887 , 0.000000 , 0.000000 , 0.000000 , 0.112887 , 0.188144 , 0.075258 , 0.037629 , 0.263402 , 0.018814 , 0.000000 , 0.000000 , 0.150515 , 0.150515 , 0.000000 , 0.000000 , 0.150515 , 0.094072 , 0.000000 , 0.000000 , 0.131701 , 0.150515 , 0.000000 , 0.000000 , 0.075258 , 0.150515 , 0.000000 , 0.000000 , 0.037629 , 0.263402 , 0.000000 , 0.000000 , 0.094072 , 0.112887 , 0.000000 , 0.000000 , 0.000000 , 0.169330 , 0.225773 , 0.075258 , 0.263402 , 0.056443 , 0.000000 , 0.000000 , 0.000000 , 0.018814 , 0.244587 , 0.282216 , 0.169330 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.035267 , 0.264505 , 0.088168 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.193970 , 0.282138 , 0.282138 , 0.105802 , 0.000000 , 0.000000 , 0.000000 , 0.052901 , 0.246871 , 0.052901 , 0.123435 , 0.282138 , 0.052901 , 0.000000 , 0.000000 , 0.123435 , 0.141069 , 0.000000 , 0.000000 , 0.141069 , 0.141069 , 0.000000 , 0.000000 , 0.088168 , 0.141069 , 0.000000 , 0.000000 , 0.070535 , 0.141069 , 0.000000 , 0.000000 , 0.070535 , 0.211604 , 0.000000 , 0.000000 , 0.141069 , 0.141069 , 0.000000 , 0.000000 , 0.000000 , 0.246871 , 0.158703 , 0.141069 , 0.282138 , 0.035267 , 0.000000 , 0.000000 , 0.000000 , 0.052901 , 0.246871 , 0.264505 , 0.105802 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.108950 , 0.249029 , 0.093386 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.062257 , 0.249029 , 0.249029 , 0.062257 , 0.000000 , 0.000000 , 0.031129 , 0.171208 , 0.233465 , 0.249029 , 0.249029 , 0.108950 , 0.000000 , 0.000000 , 0.155643 , 0.249029 , 0.202336 , 0.155643 , 0.249029 , 0.062257 , 0.000000 , 0.000000 , 0.015564 , 0.046693 , 0.000000 , 0.062257 , 0.249029 , 0.077822 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.108950 , 0.249029 , 0.108950 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.140079 , 0.249029 , 0.124515 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.140079 , 0.249029 , 0.093386 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.053050 , 0.247565 , 0.053050 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.017683 , 0.247565 , 0.282931 , 0.088416 , 0.000000 , 0.000000 , 0.017683 , 0.159149 , 0.265248 , 0.282931 , 0.282931 , 0.070733 , 0.000000 , 0.000000 , 0.070733 , 0.212198 , 0.123782 , 0.053050 , 0.282931 , 0.070733 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.070733 , 0.282931 , 0.070733 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.070733 , 0.282931 , 0.070733 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.106099 , 0.282931 , 0.070733 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.088416 , 0.282931 , 0.070733 , 0.000000 }, { 0.000000 , 0.000000 , 0.051824 , 0.207297 , 0.138198 , 0.017275 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.241847 , 0.276397 , 0.276397 , 0.259122 , 0.017275 , 0.000000 , 0.000000 , 0.051824 , 0.259122 , 0.034550 , 0.017275 , 0.207297 , 0.069099 , 0.000000 , 0.000000 , 0.103649 , 0.155473 , 0.000000 , 0.000000 , 0.120924 , 0.138198 , 0.000000 , 0.000000 , 0.120924 , 0.138198 , 0.000000 , 0.000000 , 0.086374 , 0.138198 , 0.000000 , 0.000000 , 0.069099 , 0.207297 , 0.000000 , 0.000000 , 0.155473 , 0.103649 , 0.000000 , 0.000000 , 0.000000 , 0.259122 , 0.190023 , 0.155473 , 0.276397 , 0.034550 , 0.000000 , 0.000000 , 0.000000 , 0.051824 , 0.190023 , 0.259122 , 0.120924 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.054855 , 0.237703 , 0.164564 , 0.018285 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.237703 , 0.255988 , 0.274273 , 0.237703 , 0.000000 , 0.000000 , 0.000000 , 0.036570 , 0.255988 , 0.018285 , 0.036570 , 0.237703 , 0.073139 , 0.000000 , 0.000000 , 0.073139 , 0.146279 , 0.000000 , 0.000000 , 0.091424 , 0.146279 , 0.000000 , 0.000000 , 0.073139 , 0.146279 , 0.000000 , 0.000000 , 0.073139 , 0.146279 , 0.000000 , 0.000000 , 0.073139 , 0.182849 , 0.000000 , 0.000000 , 0.091424 , 0.146279 , 0.000000 , 0.000000 , 0.000000 , 0.255988 , 0.201134 , 0.182849 , 0.255988 , 0.091424 , 0.000000 , 0.000000 , 0.000000 , 0.073139 , 0.219418 , 0.237703 , 0.164564 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.163236 , 0.237435 , 0.148397 , 0.014840 , 0.000000 , 0.000000 , 0.000000 , 0.014840 , 0.222595 , 0.207755 , 0.222595 , 0.163236 , 0.000000 , 0.000000 , 0.000000 , 0.103878 , 0.207755 , 0.014840 , 0.059359 , 0.237435 , 0.044519 , 0.000000 , 0.000000 , 0.103878 , 0.192916 , 0.000000 , 0.000000 , 0.148397 , 0.163236 , 0.000000 , 0.000000 , 0.133557 , 0.178076 , 0.000000 , 0.000000 , 0.118717 , 0.178076 , 0.000000 , 0.000000 , 0.074198 , 0.207755 , 0.000000 , 0.000000 , 0.103878 , 0.192916 , 0.000000 , 0.000000 , 0.014840 , 0.237435 , 0.148397 , 0.074198 , 0.222595 , 0.118717 , 0.000000 , 0.000000 , 0.000000 , 0.103878 , 0.237435 , 0.237435 , 0.222595 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.016083 , 0.128665 , 0.257329 , 0.032166 , 0.000000 , 0.000000 , 0.000000 , 0.080415 , 0.209080 , 0.257329 , 0.257329 , 0.000000 , 0.000000 , 0.000000 , 0.176914 , 0.257329 , 0.241246 , 0.192997 , 0.257329 , 0.000000 , 0.000000 , 0.000000 , 0.048249 , 0.128665 , 0.016083 , 0.128665 , 0.257329 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.128665 , 0.257329 , 0.048249 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.128665 , 0.257329 , 0.064332 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.112582 , 0.257329 , 0.112582 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.160831 , 0.257329 , 0.128665 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.015885 , 0.142965 , 0.254160 , 0.111195 , 0.000000 , 0.000000 , 0.000000 , 0.063540 , 0.206505 , 0.254160 , 0.254160 , 0.031770 , 0.000000 , 0.000000 , 0.127080 , 0.254160 , 0.238275 , 0.206505 , 0.254160 , 0.047655 , 0.000000 , 0.000000 , 0.047655 , 0.111195 , 0.000000 , 0.127080 , 0.254160 , 0.031770 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.127080 , 0.254160 , 0.079425 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.127080 , 0.254160 , 0.063540 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.127080 , 0.254160 , 0.127080 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.190620 , 0.254160 , 0.111195 , 0.000000 }, { 0.000000 , 0.000000 , 0.106207 , 0.242759 , 0.227586 , 0.015172 , 0.000000 , 0.000000 , 0.000000 , 0.075862 , 0.242759 , 0.197242 , 0.242759 , 0.121379 , 0.000000 , 0.000000 , 0.000000 , 0.136552 , 0.166897 , 0.000000 , 0.060690 , 0.242759 , 0.060690 , 0.000000 , 0.000000 , 0.182069 , 0.121379 , 0.000000 , 0.000000 , 0.166897 , 0.166897 , 0.000000 , 0.000000 , 0.166897 , 0.121379 , 0.000000 , 0.000000 , 0.121379 , 0.182069 , 0.000000 , 0.000000 , 0.121379 , 0.197242 , 0.000000 , 0.000000 , 0.182069 , 0.151724 , 0.000000 , 0.000000 , 0.030345 , 0.242759 , 0.136552 , 0.182069 , 0.227586 , 0.045517 , 0.000000 , 0.000000 , 0.000000 , 0.121379 , 0.242759 , 0.197242 , 0.075862 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.150927 , 0.196205 , 0.075464 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.045278 , 0.241484 , 0.241484 , 0.241484 , 0.150927 , 0.000000 , 0.000000 , 0.000000 , 0.120742 , 0.241484 , 0.015093 , 0.090556 , 0.241484 , 0.075464 , 0.000000 , 0.000000 , 0.120742 , 0.166020 , 0.000000 , 0.000000 , 0.135835 , 0.181113 , 0.000000 , 0.000000 , 0.150927 , 0.120742 , 0.000000 , 0.000000 , 0.120742 , 0.181113 , 0.000000 , 0.000000 , 0.120742 , 0.166020 , 0.000000 , 0.000000 , 0.120742 , 0.166020 , 0.000000 , 0.000000 , 0.045278 , 0.241484 , 0.150927 , 0.120742 , 0.226391 , 0.135835 , 0.000000 , 0.000000 , 0.000000 , 0.135835 , 0.241484 , 0.241484 , 0.150927 , 0.015093 , 0.000000 }, { 0.000000 , 0.000000 , 0.037463 , 0.206049 , 0.187317 , 0.018732 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.187317 , 0.243512 , 0.262244 , 0.243512 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.243512 , 0.000000 , 0.000000 , 0.262244 , 0.093659 , 0.000000 , 0.000000 , 0.056195 , 0.168585 , 0.000000 , 0.000000 , 0.168585 , 0.112390 , 0.000000 , 0.000000 , 0.093659 , 0.168585 , 0.000000 , 0.000000 , 0.093659 , 0.149854 , 0.000000 , 0.000000 , 0.112390 , 0.224781 , 0.000000 , 0.000000 , 0.149854 , 0.074927 , 0.000000 , 0.000000 , 0.000000 , 0.262244 , 0.206049 , 0.093659 , 0.262244 , 0.018732 , 0.000000 , 0.000000 , 0.000000 , 0.056195 , 0.243512 , 0.262244 , 0.093659 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.094562 , 0.252164 , 0.110322 , 0.000000 , 0.000000 , 0.015760 , 0.078801 , 0.173363 , 0.252164 , 0.252164 , 0.126082 , 0.000000 , 0.000000 , 0.173363 , 0.252164 , 0.252164 , 0.204883 , 0.252164 , 0.126082 , 0.000000 , 0.000000 , 0.047281 , 0.110322 , 0.015760 , 0.063041 , 0.252164 , 0.126082 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.078801 , 0.252164 , 0.126082 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.078801 , 0.252164 , 0.110322 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.110322 , 0.252164 , 0.141842 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.126082 , 0.252164 , 0.126082 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.047065 , 0.188260 , 0.188260 , 0.031377 , 0.000000 , 0.000000 , 0.000000 , 0.109818 , 0.235325 , 0.251013 , 0.251013 , 0.000000 , 0.000000 , 0.000000 , 0.062753 , 0.235325 , 0.141195 , 0.219637 , 0.251013 , 0.047065 , 0.000000 , 0.000000 , 0.031377 , 0.000000 , 0.000000 , 0.219637 , 0.251013 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.219637 , 0.251013 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.235325 , 0.203948 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.251013 , 0.219637 , 0.015688 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.047065 , 0.251013 , 0.203948 , 0.031377 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.132669 , 0.235856 , 0.058964 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.073705 , 0.221115 , 0.235856 , 0.029482 , 0.000000 , 0.000000 , 0.044223 , 0.176892 , 0.235856 , 0.235856 , 0.206374 , 0.000000 , 0.000000 , 0.000000 , 0.147410 , 0.235856 , 0.221115 , 0.235856 , 0.221115 , 0.000000 , 0.000000 , 0.000000 , 0.014741 , 0.058964 , 0.000000 , 0.235856 , 0.191633 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.221115 , 0.191633 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.176892 , 0.235856 , 0.176892 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.176892 , 0.235856 , 0.088446 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.087397 , 0.262191 , 0.052438 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.052438 , 0.262191 , 0.279671 , 0.069918 , 0.000000 , 0.000000 , 0.052438 , 0.227232 , 0.279671 , 0.244712 , 0.279671 , 0.017479 , 0.000000 , 0.000000 , 0.034959 , 0.122356 , 0.069918 , 0.139835 , 0.279671 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.139835 , 0.244712 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.122356 , 0.279671 , 0.017479 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.157315 , 0.279671 , 0.104877 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.139835 , 0.262191 , 0.034959 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.089861 , 0.269582 , 0.107833 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.071889 , 0.269582 , 0.287554 , 0.071889 , 0.000000 , 0.000000 , 0.053916 , 0.197693 , 0.287554 , 0.179721 , 0.287554 , 0.071889 , 0.000000 , 0.000000 , 0.071889 , 0.197693 , 0.053916 , 0.000000 , 0.287554 , 0.071889 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.017972 , 0.287554 , 0.071889 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.053916 , 0.287554 , 0.053916 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.089861 , 0.287554 , 0.071889 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.107833 , 0.269582 , 0.071889 , 0.000000 }, { 0.000000 , 0.000000 , 0.074061 , 0.222184 , 0.092577 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.222184 , 0.259215 , 0.277730 , 0.129607 , 0.000000 , 0.000000 , 0.000000 , 0.037031 , 0.259215 , 0.018515 , 0.037031 , 0.296246 , 0.000000 , 0.000000 , 0.000000 , 0.074061 , 0.148123 , 0.000000 , 0.000000 , 0.185153 , 0.074061 , 0.000000 , 0.000000 , 0.129607 , 0.148123 , 0.000000 , 0.000000 , 0.111092 , 0.148123 , 0.000000 , 0.000000 , 0.074061 , 0.203669 , 0.000000 , 0.000000 , 0.092577 , 0.148123 , 0.000000 , 0.000000 , 0.000000 , 0.259215 , 0.203669 , 0.055546 , 0.240699 , 0.092577 , 0.000000 , 0.000000 , 0.000000 , 0.037031 , 0.203669 , 0.296246 , 0.203669 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.015298 , 0.152980 , 0.244767 , 0.122384 , 0.000000 , 0.000000 , 0.015298 , 0.122384 , 0.229469 , 0.244767 , 0.244767 , 0.137682 , 0.000000 , 0.000000 , 0.152980 , 0.244767 , 0.198873 , 0.168278 , 0.244767 , 0.122384 , 0.000000 , 0.000000 , 0.015298 , 0.061192 , 0.000000 , 0.152980 , 0.244767 , 0.061192 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.183576 , 0.244767 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.183576 , 0.244767 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.183576 , 0.244767 , 0.045894 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.152980 , 0.244767 , 0.107086 , 0.000000 }, { 0.000000 , 0.000000 , 0.090804 , 0.217930 , 0.163447 , 0.018161 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.254251 , 0.254251 , 0.236091 , 0.236091 , 0.000000 , 0.000000 , 0.000000 , 0.054482 , 0.217930 , 0.018161 , 0.018161 , 0.236091 , 0.072643 , 0.000000 , 0.000000 , 0.127126 , 0.145287 , 0.000000 , 0.000000 , 0.108965 , 0.145287 , 0.000000 , 0.000000 , 0.145287 , 0.145287 , 0.000000 , 0.000000 , 0.090804 , 0.145287 , 0.000000 , 0.000000 , 0.090804 , 0.181608 , 0.000000 , 0.000000 , 0.199769 , 0.072643 , 0.000000 , 0.000000 , 0.018161 , 0.272412 , 0.163447 , 0.199769 , 0.236091 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.127126 , 0.272412 , 0.217930 , 0.036322 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.059112 , 0.236447 , 0.221669 , 0.029556 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.162558 , 0.236447 , 0.192114 , 0.192114 , 0.000000 , 0.000000 , 0.000000 , 0.014778 , 0.236447 , 0.118224 , 0.014778 , 0.236447 , 0.029556 , 0.000000 , 0.000000 , 0.103446 , 0.236447 , 0.088668 , 0.000000 , 0.162558 , 0.118224 , 0.000000 , 0.000000 , 0.103446 , 0.236447 , 0.059112 , 0.000000 , 0.162558 , 0.118224 , 0.000000 , 0.000000 , 0.059112 , 0.221669 , 0.014778 , 0.014778 , 0.221669 , 0.103446 , 0.000000 , 0.000000 , 0.000000 , 0.192114 , 0.177336 , 0.206892 , 0.221669 , 0.014778 , 0.000000 , 0.000000 , 0.000000 , 0.044334 , 0.206892 , 0.236447 , 0.088668 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.232849 , 0.166321 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.049896 , 0.266113 , 0.266113 , 0.049896 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.116424 , 0.266113 , 0.266113 , 0.116424 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.199585 , 0.266113 , 0.266113 , 0.083160 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.066528 , 0.249481 , 0.266113 , 0.099792 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.216217 , 0.266113 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.232849 , 0.199585 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.166321 , 0.166321 , 0.000000 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.030931 , 0.247446 , 0.185584 , 0.015465 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.170119 , 0.231980 , 0.201050 , 0.170119 , 0.000000 , 0.000000 , 0.000000 , 0.030931 , 0.247446 , 0.139188 , 0.000000 , 0.216515 , 0.030931 , 0.000000 , 0.000000 , 0.061861 , 0.247446 , 0.185584 , 0.000000 , 0.170119 , 0.077327 , 0.000000 , 0.000000 , 0.061861 , 0.247446 , 0.092792 , 0.000000 , 0.185584 , 0.108257 , 0.000000 , 0.000000 , 0.000000 , 0.231980 , 0.015465 , 0.015465 , 0.231980 , 0.139188 , 0.000000 , 0.000000 , 0.000000 , 0.154654 , 0.139188 , 0.154654 , 0.231980 , 0.030931 , 0.000000 , 0.000000 , 0.000000 , 0.030931 , 0.201050 , 0.247446 , 0.123723 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.015179 , 0.227691 , 0.212512 , 0.015179 , 0.000000 , 0.000000 , 0.000000 , 0.030359 , 0.197332 , 0.242871 , 0.242871 , 0.045538 , 0.000000 , 0.000000 , 0.000000 , 0.075897 , 0.242871 , 0.242871 , 0.242871 , 0.060718 , 0.000000 , 0.000000 , 0.000000 , 0.060718 , 0.242871 , 0.242871 , 0.242871 , 0.015179 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.106256 , 0.242871 , 0.197332 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.075897 , 0.242871 , 0.166974 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.060718 , 0.242871 , 0.151794 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.030359 , 0.242871 , 0.166974 , 0.000000 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.078948 , 0.252635 , 0.221056 , 0.015790 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.221056 , 0.221056 , 0.221056 , 0.142107 , 0.000000 , 0.000000 , 0.000000 , 0.015790 , 0.236845 , 0.094738 , 0.015790 , 0.189476 , 0.015790 , 0.000000 , 0.000000 , 0.047369 , 0.252635 , 0.015790 , 0.000000 , 0.157897 , 0.063159 , 0.000000 , 0.000000 , 0.078948 , 0.252635 , 0.078948 , 0.000000 , 0.173687 , 0.031579 , 0.000000 , 0.000000 , 0.031579 , 0.252635 , 0.031579 , 0.047369 , 0.252635 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.173687 , 0.205266 , 0.221056 , 0.189476 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.047369 , 0.236845 , 0.236845 , 0.078948 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.030066 , 0.225494 , 0.210461 , 0.015033 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.165362 , 0.240527 , 0.240527 , 0.060132 , 0.000000 , 0.000000 , 0.000000 , 0.060132 , 0.240527 , 0.240527 , 0.240527 , 0.015033 , 0.000000 , 0.000000 , 0.000000 , 0.105230 , 0.240527 , 0.240527 , 0.210461 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.135296 , 0.240527 , 0.240527 , 0.165362 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.015033 , 0.195428 , 0.240527 , 0.135296 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.075165 , 0.240527 , 0.075165 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.030066 , 0.210461 , 0.135296 , 0.000000 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.164089 , 0.147680 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.049227 , 0.246133 , 0.213315 , 0.082044 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.213315 , 0.213315 , 0.016409 , 0.213315 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.262542 , 0.114862 , 0.000000 , 0.262542 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.262542 , 0.180498 , 0.049227 , 0.246133 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.229724 , 0.114862 , 0.262542 , 0.196907 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.147680 , 0.213315 , 0.246133 , 0.098453 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.213315 , 0.164089 , 0.000000 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.032862 , 0.230034 , 0.213603 , 0.049293 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.213603 , 0.213603 , 0.147879 , 0.180741 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.262896 , 0.115017 , 0.000000 , 0.197172 , 0.000000 , 0.000000 , 0.000000 , 0.049293 , 0.262896 , 0.082155 , 0.000000 , 0.164310 , 0.082155 , 0.000000 , 0.000000 , 0.082155 , 0.262896 , 0.016431 , 0.000000 , 0.131448 , 0.082155 , 0.000000 , 0.000000 , 0.049293 , 0.262896 , 0.016431 , 0.000000 , 0.164310 , 0.082155 , 0.000000 , 0.000000 , 0.000000 , 0.262896 , 0.131448 , 0.082155 , 0.230034 , 0.049293 , 0.000000 , 0.000000 , 0.000000 , 0.065724 , 0.262896 , 0.262896 , 0.147879 , 0.016431 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.232069 , 0.160663 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.249920 , 0.267772 , 0.017851 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.232069 , 0.285623 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.196366 , 0.285623 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.178515 , 0.285623 , 0.035703 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.249920 , 0.285623 , 0.017851 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.267772 , 0.285623 , 0.017851 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.214217 , 0.267772 , 0.000000 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.233074 , 0.251002 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.233074 , 0.286860 , 0.053786 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.035857 , 0.286860 , 0.268931 , 0.053786 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.071715 , 0.286860 , 0.251002 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.053786 , 0.286860 , 0.197216 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.143430 , 0.286860 , 0.179287 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.107572 , 0.286860 , 0.125501 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.017929 , 0.197216 , 0.161359 , 0.000000 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.234383 , 0.175788 , 0.014649 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.087894 , 0.234383 , 0.205086 , 0.102543 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.205086 , 0.219735 , 0.014649 , 0.161139 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.234383 , 0.219735 , 0.000000 , 0.205086 , 0.014649 , 0.000000 , 0.000000 , 0.014649 , 0.234383 , 0.146490 , 0.000000 , 0.205086 , 0.029298 , 0.000000 , 0.000000 , 0.000000 , 0.219735 , 0.190437 , 0.043947 , 0.219735 , 0.043947 , 0.000000 , 0.000000 , 0.000000 , 0.131841 , 0.234383 , 0.234383 , 0.219735 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.190437 , 0.234383 , 0.117192 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.166439 , 0.240411 , 0.203425 , 0.018493 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.110959 , 0.073973 , 0.166439 , 0.258904 , 0.018493 , 0.000000 , 0.000000 , 0.000000 , 0.018493 , 0.092466 , 0.000000 , 0.203425 , 0.073973 , 0.000000 , 0.000000 , 0.000000 , 0.240411 , 0.258904 , 0.000000 , 0.129452 , 0.092466 , 0.000000 , 0.000000 , 0.055480 , 0.258904 , 0.018493 , 0.000000 , 0.184932 , 0.073973 , 0.000000 , 0.000000 , 0.055480 , 0.258904 , 0.000000 , 0.036986 , 0.277398 , 0.018493 , 0.000000 , 0.000000 , 0.036986 , 0.240411 , 0.147945 , 0.221918 , 0.203425 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.147945 , 0.258904 , 0.184932 , 0.018493 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.201318 , 0.184542 , 0.016777 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.050330 , 0.268425 , 0.218095 , 0.167765 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.134212 , 0.150989 , 0.016777 , 0.201318 , 0.000000 , 0.000000 , 0.000000 , 0.033553 , 0.268425 , 0.150989 , 0.000000 , 0.167765 , 0.083883 , 0.000000 , 0.000000 , 0.067106 , 0.268425 , 0.134212 , 0.000000 , 0.117436 , 0.134212 , 0.000000 , 0.000000 , 0.016777 , 0.268425 , 0.050330 , 0.000000 , 0.167765 , 0.117436 , 0.000000 , 0.000000 , 0.000000 , 0.134212 , 0.218095 , 0.150989 , 0.268425 , 0.100659 , 0.000000 , 0.000000 , 0.000000 , 0.016777 , 0.167765 , 0.268425 , 0.218095 , 0.016777 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.241153 , 0.176845 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.096461 , 0.257229 , 0.257229 , 0.032154 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.160768 , 0.257229 , 0.257229 , 0.016077 , 0.000000 , 0.000000 , 0.000000 , 0.032154 , 0.257229 , 0.257229 , 0.257229 , 0.048231 , 0.000000 , 0.000000 , 0.000000 , 0.112538 , 0.257229 , 0.257229 , 0.225076 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.048231 , 0.241153 , 0.160768 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.241153 , 0.112538 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.225076 , 0.064307 , 0.000000 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.232431 , 0.116216 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.249033 , 0.249033 , 0.016602 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.033204 , 0.265636 , 0.249033 , 0.016602 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.099613 , 0.265636 , 0.249033 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.149420 , 0.265636 , 0.215829 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.132818 , 0.265636 , 0.249033 , 0.016602 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.066409 , 0.265636 , 0.265636 , 0.099613 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.215829 , 0.199227 , 0.000000 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.137811 , 0.122498 , 0.015312 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.076562 , 0.244997 , 0.244997 , 0.122498 , 0.000000 , 0.000000 , 0.000000 , 0.061249 , 0.244997 , 0.229685 , 0.015312 , 0.229685 , 0.000000 , 0.000000 , 0.000000 , 0.091874 , 0.244997 , 0.183748 , 0.000000 , 0.183748 , 0.015312 , 0.000000 , 0.000000 , 0.076562 , 0.244997 , 0.168435 , 0.000000 , 0.168435 , 0.091874 , 0.000000 , 0.000000 , 0.015312 , 0.229685 , 0.122498 , 0.061249 , 0.229685 , 0.091874 , 0.000000 , 0.000000 , 0.000000 , 0.076562 , 0.244997 , 0.244997 , 0.229685 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.107186 , 0.214372 , 0.137811 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.060774 , 0.227901 , 0.243095 , 0.091161 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.243095 , 0.182321 , 0.121547 , 0.227901 , 0.000000 , 0.000000 , 0.000000 , 0.106354 , 0.243095 , 0.060774 , 0.000000 , 0.167128 , 0.075967 , 0.000000 , 0.000000 , 0.151934 , 0.227901 , 0.000000 , 0.000000 , 0.121547 , 0.136741 , 0.000000 , 0.000000 , 0.151934 , 0.212708 , 0.000000 , 0.000000 , 0.121547 , 0.167128 , 0.000000 , 0.000000 , 0.091161 , 0.243095 , 0.060774 , 0.000000 , 0.167128 , 0.136741 , 0.000000 , 0.000000 , 0.015193 , 0.227901 , 0.106354 , 0.121547 , 0.243095 , 0.075967 , 0.000000 , 0.000000 , 0.000000 , 0.045580 , 0.212708 , 0.243095 , 0.151934 , 0.015193 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.214800 , 0.161100 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.035800 , 0.286400 , 0.286400 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.053700 , 0.286400 , 0.286400 , 0.017900 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.071600 , 0.286400 , 0.232700 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.053700 , 0.286400 , 0.196900 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.089500 , 0.286400 , 0.179000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.035800 , 0.286400 , 0.179000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.196900 , 0.232700 , 0.000000 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.234895 , 0.192187 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.234895 , 0.298957 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.234895 , 0.277603 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.320311 , 0.277603 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.277603 , 0.277603 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.277603 , 0.192187 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.213541 , 0.213541 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.192187 , 0.234895 , 0.000000 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.212798 , 0.124132 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.248264 , 0.265998 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.248264 , 0.283731 , 0.017733 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.265998 , 0.283731 , 0.035466 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.230531 , 0.283731 , 0.017733 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.248264 , 0.283731 , 0.017733 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.248264 , 0.283731 , 0.017733 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.106399 , 0.283731 , 0.035466 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.257796 , 0.177235 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.032225 , 0.257796 , 0.257796 , 0.032225 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.048337 , 0.257796 , 0.257796 , 0.096674 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.048337 , 0.257796 , 0.241684 , 0.032225 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.032225 , 0.257796 , 0.257796 , 0.032225 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.064449 , 0.257796 , 0.241684 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.016112 , 0.257796 , 0.241684 , 0.016112 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.193347 , 0.257796 , 0.032225 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.242900 , 0.156150 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.242900 , 0.225550 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.190850 , 0.277600 , 0.034700 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.242900 , 0.277600 , 0.086750 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.225550 , 0.277600 , 0.069400 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.277600 , 0.277600 , 0.069400 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.017350 , 0.277600 , 0.277600 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.242900 , 0.208200 , 0.000000 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.153393 , 0.199411 , 0.046018 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.122714 , 0.245429 , 0.214750 , 0.184072 , 0.000000 , 0.000000 , 0.000000 , 0.046018 , 0.245429 , 0.199411 , 0.000000 , 0.214750 , 0.015339 , 0.000000 , 0.000000 , 0.076696 , 0.245429 , 0.092036 , 0.000000 , 0.214750 , 0.076696 , 0.000000 , 0.000000 , 0.092036 , 0.245429 , 0.000000 , 0.000000 , 0.230089 , 0.061357 , 0.000000 , 0.000000 , 0.030679 , 0.199411 , 0.015339 , 0.076696 , 0.245429 , 0.061357 , 0.000000 , 0.000000 , 0.000000 , 0.153393 , 0.245429 , 0.245429 , 0.214750 , 0.015339 , 0.000000 , 0.000000 , 0.000000 , 0.030679 , 0.168732 , 0.199411 , 0.092036 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.218002 , 0.181668 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.254335 , 0.290669 , 0.036334 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.236169 , 0.290669 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.199835 , 0.290669 , 0.054500 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.181668 , 0.290669 , 0.054500 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.199835 , 0.290669 , 0.036334 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.254335 , 0.290669 , 0.036334 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.199835 , 0.254335 , 0.000000 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.017416 , 0.226404 , 0.261235 , 0.139325 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.191573 , 0.243820 , 0.139325 , 0.261235 , 0.000000 , 0.000000 , 0.000000 , 0.034831 , 0.278651 , 0.052247 , 0.000000 , 0.226404 , 0.034831 , 0.000000 , 0.000000 , 0.087078 , 0.261235 , 0.000000 , 0.000000 , 0.174157 , 0.087078 , 0.000000 , 0.000000 , 0.052247 , 0.174157 , 0.000000 , 0.000000 , 0.174157 , 0.087078 , 0.000000 , 0.000000 , 0.052247 , 0.226404 , 0.000000 , 0.017416 , 0.261235 , 0.052247 , 0.000000 , 0.000000 , 0.000000 , 0.208988 , 0.174157 , 0.191573 , 0.191573 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.017416 , 0.208988 , 0.191573 , 0.069663 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.135632 , 0.203448 , 0.203448 , 0.016954 , 0.000000 , 0.000000 , 0.000000 , 0.050862 , 0.271264 , 0.271264 , 0.237356 , 0.152586 , 0.000000 , 0.000000 , 0.000000 , 0.101724 , 0.254310 , 0.152586 , 0.050862 , 0.203448 , 0.033908 , 0.000000 , 0.000000 , 0.118678 , 0.152586 , 0.000000 , 0.000000 , 0.152586 , 0.118678 , 0.000000 , 0.000000 , 0.118678 , 0.135632 , 0.000000 , 0.000000 , 0.118678 , 0.135632 , 0.000000 , 0.000000 , 0.084770 , 0.169540 , 0.000000 , 0.000000 , 0.118678 , 0.152586 , 0.000000 , 0.000000 , 0.000000 , 0.237356 , 0.220402 , 0.169540 , 0.271264 , 0.101724 , 0.000000 , 0.000000 , 0.000000 , 0.084770 , 0.220402 , 0.186494 , 0.067816 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.054779 , 0.191727 , 0.219116 , 0.191727 , 0.013695 , 0.000000 , 0.000000 , 0.027390 , 0.191727 , 0.219116 , 0.219116 , 0.109558 , 0.000000 , 0.000000 , 0.000000 , 0.054779 , 0.219116 , 0.219116 , 0.191727 , 0.041084 , 0.000000 , 0.000000 , 0.000000 , 0.054779 , 0.219116 , 0.219116 , 0.136948 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.164337 , 0.178032 , 0.164337 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.013695 , 0.191727 , 0.219116 , 0.205422 , 0.041084 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.136948 , 0.219116 , 0.219116 , 0.164337 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.027390 , 0.123253 , 0.205422 , 0.219116 , 0.109558 , 0.000000 }, { 0.000000 , 0.000000 , 0.066418 , 0.249068 , 0.132836 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.249068 , 0.232463 , 0.249068 , 0.083023 , 0.000000 , 0.000000 , 0.000000 , 0.132836 , 0.265672 , 0.083023 , 0.049814 , 0.232463 , 0.000000 , 0.000000 , 0.000000 , 0.083023 , 0.182650 , 0.000000 , 0.000000 , 0.166045 , 0.083023 , 0.000000 , 0.000000 , 0.083023 , 0.149441 , 0.000000 , 0.000000 , 0.132836 , 0.132836 , 0.000000 , 0.000000 , 0.000000 , 0.232463 , 0.000000 , 0.000000 , 0.166045 , 0.132836 , 0.000000 , 0.000000 , 0.000000 , 0.232463 , 0.215859 , 0.215859 , 0.265672 , 0.016605 , 0.000000 , 0.000000 , 0.000000 , 0.033209 , 0.232463 , 0.232463 , 0.116232 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.000000 , 0.112210 , 0.168314 , 0.126236 , 0.028052 , 0.000000 , 0.000000 , 0.000000 , 0.070131 , 0.224419 , 0.224419 , 0.224419 , 0.056105 , 0.000000 , 0.000000 , 0.000000 , 0.126236 , 0.224419 , 0.224419 , 0.154288 , 0.000000 , 0.000000 , 0.000000 , 0.042079 , 0.224419 , 0.224419 , 0.224419 , 0.070131 , 0.000000 , 0.000000 , 0.000000 , 0.056105 , 0.224419 , 0.224419 , 0.224419 , 0.056105 , 0.000000 , 0.000000 , 0.000000 , 0.014026 , 0.210393 , 0.224419 , 0.224419 , 0.042079 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.112210 , 0.224419 , 0.224419 , 0.126236 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.126236 , 0.168314 , 0.084157 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.114523 , 0.196326 , 0.016360 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.245407 , 0.261768 , 0.245407 , 0.065442 , 0.000000 , 0.000000 , 0.000000 , 0.032721 , 0.261768 , 0.147244 , 0.163605 , 0.179965 , 0.000000 , 0.000000 , 0.000000 , 0.098163 , 0.196326 , 0.000000 , 0.000000 , 0.196326 , 0.049081 , 0.000000 , 0.000000 , 0.130884 , 0.196326 , 0.000000 , 0.000000 , 0.098163 , 0.130884 , 0.000000 , 0.000000 , 0.098163 , 0.212686 , 0.000000 , 0.000000 , 0.147244 , 0.130884 , 0.000000 , 0.000000 , 0.016360 , 0.261768 , 0.212686 , 0.245407 , 0.261768 , 0.049081 , 0.000000 , 0.000000 , 0.000000 , 0.098163 , 0.245407 , 0.147244 , 0.049081 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.091435 , 0.182871 , 0.167632 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.182871 , 0.243828 , 0.228588 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.198110 , 0.243828 , 0.213349 , 0.030478 , 0.000000 , 0.000000 , 0.000000 , 0.015239 , 0.228588 , 0.243828 , 0.167632 , 0.030478 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.137153 , 0.243828 , 0.152392 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.137153 , 0.243828 , 0.213349 , 0.076196 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.152392 , 0.243828 , 0.243828 , 0.213349 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.060957 , 0.167632 , 0.182871 , 0.121914 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.116976 , 0.200530 , 0.217241 , 0.033422 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.233952 , 0.217241 , 0.133687 , 0.217241 , 0.000000 , 0.000000 , 0.000000 , 0.050132 , 0.267373 , 0.016711 , 0.000000 , 0.183819 , 0.033422 , 0.000000 , 0.000000 , 0.066843 , 0.233952 , 0.000000 , 0.000000 , 0.083554 , 0.133687 , 0.000000 , 0.000000 , 0.083554 , 0.133687 , 0.000000 , 0.000000 , 0.083554 , 0.133687 , 0.000000 , 0.000000 , 0.066843 , 0.267373 , 0.000000 , 0.033422 , 0.233952 , 0.116976 , 0.000000 , 0.000000 , 0.033422 , 0.267373 , 0.167108 , 0.233952 , 0.250662 , 0.016711 , 0.000000 , 0.000000 , 0.000000 , 0.100265 , 0.233952 , 0.233952 , 0.066843 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.060571 , 0.212000 , 0.166571 , 0.045428 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.151428 , 0.242285 , 0.181714 , 0.212000 , 0.015143 , 0.000000 , 0.000000 , 0.015143 , 0.212000 , 0.181714 , 0.000000 , 0.196857 , 0.045428 , 0.000000 , 0.000000 , 0.075714 , 0.242285 , 0.090857 , 0.000000 , 0.121143 , 0.090857 , 0.000000 , 0.000000 , 0.121143 , 0.242285 , 0.000000 , 0.000000 , 0.136285 , 0.121143 , 0.000000 , 0.000000 , 0.106000 , 0.242285 , 0.045428 , 0.106000 , 0.242285 , 0.075714 , 0.000000 , 0.000000 , 0.045428 , 0.227142 , 0.196857 , 0.242285 , 0.227142 , 0.030286 , 0.000000 , 0.000000 , 0.000000 , 0.060571 , 0.227142 , 0.181714 , 0.030286 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.040459 , 0.188810 , 0.202297 , 0.121378 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.134864 , 0.215783 , 0.215783 , 0.175324 , 0.000000 , 0.000000 , 0.000000 , 0.026973 , 0.175324 , 0.215783 , 0.215783 , 0.053946 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.161837 , 0.215783 , 0.215783 , 0.053946 , 0.000000 , 0.000000 , 0.000000 , 0.026973 , 0.175324 , 0.215783 , 0.215783 , 0.053946 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.161837 , 0.215783 , 0.215783 , 0.053946 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.080919 , 0.215783 , 0.215783 , 0.215783 , 0.080919 , 0.000000 , 0.000000 , 0.000000 , 0.026973 , 0.134864 , 0.215783 , 0.215783 , 0.026973 , 0.000000 }, { 0.000000 , 0.000000 , 0.015008 , 0.105053 , 0.150075 , 0.045023 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.120060 , 0.240120 , 0.240120 , 0.180090 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.120060 , 0.240120 , 0.240120 , 0.180090 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.150075 , 0.240120 , 0.240120 , 0.075038 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.105053 , 0.240120 , 0.240120 , 0.015008 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.210105 , 0.240120 , 0.225113 , 0.015008 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.180090 , 0.240120 , 0.240120 , 0.015008 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.015008 , 0.135068 , 0.180090 , 0.135068 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.150041 , 0.180050 , 0.210058 , 0.015004 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.240066 , 0.240066 , 0.240066 , 0.180050 , 0.000000 , 0.000000 , 0.000000 , 0.075021 , 0.240066 , 0.120033 , 0.045012 , 0.240066 , 0.000000 , 0.000000 , 0.000000 , 0.120033 , 0.195054 , 0.000000 , 0.000000 , 0.120033 , 0.105029 , 0.000000 , 0.000000 , 0.120033 , 0.180050 , 0.000000 , 0.000000 , 0.090025 , 0.120033 , 0.000000 , 0.000000 , 0.120033 , 0.195054 , 0.000000 , 0.060017 , 0.180050 , 0.120033 , 0.000000 , 0.000000 , 0.105029 , 0.240066 , 0.240066 , 0.240066 , 0.195054 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.165045 , 0.210058 , 0.120033 , 0.015004 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.088223 , 0.211735 , 0.017645 , 0.105868 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.194091 , 0.211735 , 0.000000 , 0.282314 , 0.035289 , 0.000000 , 0.000000 , 0.000000 , 0.282314 , 0.088223 , 0.000000 , 0.211735 , 0.070578 , 0.000000 , 0.000000 , 0.052934 , 0.264669 , 0.000000 , 0.000000 , 0.141157 , 0.070578 , 0.000000 , 0.000000 , 0.123512 , 0.211735 , 0.000000 , 0.000000 , 0.070578 , 0.123512 , 0.000000 , 0.000000 , 0.035289 , 0.264669 , 0.017645 , 0.017645 , 0.211735 , 0.088223 , 0.000000 , 0.000000 , 0.000000 , 0.282314 , 0.194091 , 0.211735 , 0.264669 , 0.052934 , 0.000000 , 0.000000 , 0.000000 , 0.070578 , 0.211735 , 0.211735 , 0.052934 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.138216 , 0.199646 , 0.122859 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.199646 , 0.245718 , 0.245718 , 0.184289 , 0.000000 , 0.000000 , 0.000000 , 0.030715 , 0.245718 , 0.107502 , 0.092144 , 0.230361 , 0.046072 , 0.000000 , 0.000000 , 0.122859 , 0.215003 , 0.000000 , 0.000000 , 0.122859 , 0.046072 , 0.000000 , 0.000000 , 0.076787 , 0.215003 , 0.000000 , 0.000000 , 0.122859 , 0.122859 , 0.000000 , 0.000000 , 0.030715 , 0.245718 , 0.199646 , 0.168931 , 0.215003 , 0.061430 , 0.000000 , 0.000000 , 0.046072 , 0.245718 , 0.230361 , 0.245718 , 0.092144 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.092144 , 0.215003 , 0.122859 , 0.000000 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.077124 , 0.169673 , 0.185098 , 0.077124 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.185098 , 0.092549 , 0.030850 , 0.046274 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.138823 , 0.246797 , 0.246797 , 0.061699 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.185098 , 0.246797 , 0.246797 , 0.061699 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.185098 , 0.246797 , 0.246797 , 0.061699 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.185098 , 0.246797 , 0.246797 , 0.061699 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.185098 , 0.246797 , 0.246797 , 0.123399 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.092549 , 0.185098 , 0.169673 , 0.107974 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.149112 , 0.203335 , 0.162668 , 0.013556 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.094890 , 0.216891 , 0.216891 , 0.094890 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.162668 , 0.216891 , 0.216891 , 0.216891 , 0.013556 , 0.000000 , 0.000000 , 0.000000 , 0.176224 , 0.216891 , 0.216891 , 0.176224 , 0.027111 , 0.000000 , 0.000000 , 0.000000 , 0.189779 , 0.216891 , 0.216891 , 0.054223 , 0.000000 , 0.000000 , 0.000000 , 0.027111 , 0.216891 , 0.216891 , 0.189779 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.189779 , 0.216891 , 0.189779 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.108445 , 0.216891 , 0.176224 , 0.013556 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.164689 , 0.181157 , 0.115282 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.065875 , 0.263502 , 0.263502 , 0.263502 , 0.164689 , 0.000000 , 0.000000 , 0.000000 , 0.065875 , 0.263502 , 0.098813 , 0.082344 , 0.247033 , 0.032938 , 0.000000 , 0.000000 , 0.131751 , 0.197626 , 0.000000 , 0.000000 , 0.082344 , 0.131751 , 0.000000 , 0.000000 , 0.131751 , 0.164689 , 0.000000 , 0.000000 , 0.082344 , 0.131751 , 0.000000 , 0.000000 , 0.098813 , 0.214095 , 0.016469 , 0.082344 , 0.230564 , 0.082344 , 0.000000 , 0.000000 , 0.000000 , 0.230564 , 0.214095 , 0.247033 , 0.181157 , 0.016469 , 0.000000 , 0.000000 , 0.000000 , 0.115282 , 0.197626 , 0.131751 , 0.000000 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.116248 , 0.232495 , 0.132854 , 0.066427 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.265709 , 0.132854 , 0.249102 , 0.232495 , 0.016607 , 0.000000 , 0.000000 , 0.066427 , 0.265709 , 0.066427 , 0.000000 , 0.132854 , 0.066427 , 0.000000 , 0.000000 , 0.132854 , 0.232495 , 0.000000 , 0.000000 , 0.066427 , 0.066427 , 0.000000 , 0.000000 , 0.132854 , 0.265709 , 0.000000 , 0.000000 , 0.066427 , 0.083034 , 0.000000 , 0.000000 , 0.049820 , 0.265709 , 0.016607 , 0.000000 , 0.182675 , 0.066427 , 0.000000 , 0.000000 , 0.000000 , 0.249102 , 0.265709 , 0.265709 , 0.199282 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.099641 , 0.215888 , 0.116248 , 0.000000 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.143056 , 0.238426 , 0.095370 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.031790 , 0.254321 , 0.254321 , 0.254321 , 0.111265 , 0.000000 , 0.000000 , 0.000000 , 0.063580 , 0.222531 , 0.079475 , 0.174846 , 0.206636 , 0.000000 , 0.000000 , 0.000000 , 0.111265 , 0.190741 , 0.000000 , 0.000000 , 0.190741 , 0.063580 , 0.000000 , 0.000000 , 0.127160 , 0.174846 , 0.000000 , 0.000000 , 0.111265 , 0.079475 , 0.000000 , 0.000000 , 0.063580 , 0.206636 , 0.015895 , 0.015895 , 0.158951 , 0.095370 , 0.000000 , 0.000000 , 0.031790 , 0.254321 , 0.238426 , 0.238426 , 0.222531 , 0.015895 , 0.000000 , 0.000000 , 0.000000 , 0.127160 , 0.238426 , 0.174846 , 0.063580 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.052018 , 0.156055 , 0.156055 , 0.091032 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.208073 , 0.208073 , 0.208073 , 0.065023 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.208073 , 0.208073 , 0.208073 , 0.208073 , 0.000000 , 0.000000 , 0.000000 , 0.052018 , 0.208073 , 0.208073 , 0.208073 , 0.156055 , 0.000000 , 0.000000 , 0.000000 , 0.052018 , 0.208073 , 0.208073 , 0.208073 , 0.156055 , 0.000000 , 0.000000 , 0.000000 , 0.039014 , 0.195069 , 0.208073 , 0.208073 , 0.117041 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.156055 , 0.208073 , 0.208073 , 0.104037 , 0.000000 , 0.000000 , 0.000000 , 0.013005 , 0.091032 , 0.156055 , 0.143050 , 0.065023 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.058489 , 0.146223 , 0.175468 , 0.102356 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.116979 , 0.233957 , 0.233957 , 0.219335 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.131601 , 0.233957 , 0.233957 , 0.175468 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.102356 , 0.233957 , 0.233957 , 0.131601 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.029245 , 0.204712 , 0.233957 , 0.160846 , 0.014622 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.233957 , 0.233957 , 0.233957 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.029245 , 0.233957 , 0.233957 , 0.175468 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.014622 , 0.131601 , 0.146223 , 0.000000 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.055620 , 0.222480 , 0.222480 , 0.111240 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.083430 , 0.222480 , 0.222480 , 0.208575 , 0.013905 , 0.000000 , 0.000000 , 0.000000 , 0.055620 , 0.222480 , 0.222480 , 0.166860 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.041715 , 0.222480 , 0.222480 , 0.208575 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.111240 , 0.222480 , 0.222480 , 0.083430 , 0.000000 , 0.000000 , 0.000000 , 0.013905 , 0.180765 , 0.222480 , 0.222480 , 0.055620 , 0.000000 , 0.000000 , 0.000000 , 0.041715 , 0.222480 , 0.222480 , 0.208575 , 0.027810 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.083430 , 0.166860 , 0.166860 , 0.027810 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.014579 , 0.174945 , 0.145787 , 0.043736 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.102051 , 0.233260 , 0.233260 , 0.102051 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.174945 , 0.233260 , 0.233260 , 0.043736 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.204102 , 0.233260 , 0.233260 , 0.029157 , 0.000000 , 0.000000 , 0.000000 , 0.014579 , 0.218681 , 0.233260 , 0.233260 , 0.072894 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.218681 , 0.233260 , 0.218681 , 0.029157 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.160366 , 0.233260 , 0.233260 , 0.116630 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.014579 , 0.102051 , 0.174945 , 0.145787 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.107530 , 0.161296 , 0.147854 , 0.080648 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.107530 , 0.215061 , 0.215061 , 0.174737 , 0.026883 , 0.000000 , 0.000000 , 0.026883 , 0.188178 , 0.215061 , 0.215061 , 0.188178 , 0.026883 , 0.000000 , 0.000000 , 0.026883 , 0.174737 , 0.215061 , 0.215061 , 0.107530 , 0.000000 , 0.000000 , 0.000000 , 0.053765 , 0.215061 , 0.215061 , 0.215061 , 0.107530 , 0.000000 , 0.000000 , 0.000000 , 0.053765 , 0.215061 , 0.215061 , 0.215061 , 0.134413 , 0.000000 , 0.000000 , 0.000000 , 0.013441 , 0.147854 , 0.215061 , 0.215061 , 0.107530 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.053765 , 0.147854 , 0.161296 , 0.094089 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.077484 , 0.247950 , 0.154969 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.123975 , 0.247950 , 0.247950 , 0.077484 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.216957 , 0.216957 , 0.015497 , 0.185963 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.232453 , 0.154969 , 0.000000 , 0.108478 , 0.061988 , 0.000000 , 0.000000 , 0.030994 , 0.247950 , 0.108478 , 0.000000 , 0.030994 , 0.139472 , 0.000000 , 0.000000 , 0.030994 , 0.247950 , 0.123975 , 0.000000 , 0.092981 , 0.170466 , 0.000000 , 0.000000 , 0.015497 , 0.185963 , 0.216957 , 0.216957 , 0.247950 , 0.077484 , 0.000000 , 0.000000 , 0.000000 , 0.061988 , 0.232453 , 0.247950 , 0.123975 , 0.015497 , 0.000000 }, { 0.000000 , 0.000000 , 0.081855 , 0.163709 , 0.163709 , 0.081855 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.150067 , 0.218279 , 0.218279 , 0.177352 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.163709 , 0.218279 , 0.218279 , 0.109139 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.109139 , 0.218279 , 0.218279 , 0.163709 , 0.000000 , 0.000000 , 0.000000 , 0.027285 , 0.177352 , 0.218279 , 0.218279 , 0.163709 , 0.000000 , 0.000000 , 0.000000 , 0.013642 , 0.218279 , 0.218279 , 0.218279 , 0.136424 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.218279 , 0.218279 , 0.218279 , 0.109139 , 0.000000 , 0.000000 , 0.000000 , 0.000000 , 0.027285 , 0.150067 , 0.136424 , 0.054570 , 0.000000 , 0.000000 }, { 0.000000 , 0.000000 , 0.083341 , 0.222244 , 0.180573 , 0.152793 , 0.013890 , 0.000000 , 0.000000 , 0.000000 , 0.222244 , 0.208353 , 0.166683 , 0.222244 , 0.013890 , 0.000000 , 0.000000 , 0.041671 , 0.222244 , 0.097232 , 0.000000 , 0.180573 , 0.083341 , 0.000000 , 0.000000 , 0.055561 , 0.222244 , 0.000000 , 0.000000 , 0.138902 , 0.111122 , 0.000000 , 0.000000 , 0.111122 , 0.222244 , 0.000000 , 0.000000 , 0.194463 , 0.083341 , 0.000000 , 0.000000 , 0.069451 , 0.222244 , 0.097232 , 0.125012 , 0.222244 , 0.069451 , 0.000000 , 0.000000 , 0.013890 , 0.208353 , 0.222244 , 0.222244 , 0.222244 , 0.013890 , 0.000000 , 0.000000 , 0.000000 , 0.083341 , 0.222244 , 0.194463 , 0.083341 , 0.000000 , 0.000000 }, }; int y[DATASET_SIZE] = { 0 , 1 , 0 , 1 , 0 , 1 , 0 , 0 , 1 , 1 , 0 , 0 , 0 , 1 , 1 , 0 , 0 , 0 , 1 , 1 , 1 , 1 , 1 , 0 , 1 , 0 , 0 , 1 , 0 , 1 , 0 , 1 , 0 , 0 , 1 , 1 , 0 , 0 , 0 , 1 , 1 , 0 , 0 , 0 , 1 , 1 , 1 , 1 , 1 , 0 , 1 , 0 , 0 , 1 , 0 , 1 , 0 , 1 , 0 , 0 , 1 , 1 , 0 , 0 , 0 , 1 , 1 , 0 , 0 , 0 , 1 , 1 , 1 , 1 , 1 , 0 , 1 , 0 , 0 , 1 , 0 , 1 , 0 , 1 , 0 , 0 , 1 , 1 , 0 , 0 , 0 , 1 , 1 , 0 , 0 , 0 , 1 , 1 , 1 , 1 , 1 , 0 , 1 , 0 , 0 , 1 , 0 , 1 , 0 , 1 , 0 , 0 , 1 , 1 , 0 , 0 , 0 , 1 , 1 , 0 , 0 , 0 , 1 , 1 , 1 , 1 , 1 , 0 , 1 , 0 , 0 , 1 , 0 , 1 , 0 , 1 , 0 , 0 , 1 , 1 , 0 , 0 , 0 , 1 , 1 , 0 , 0 , 0 , 1 , 1 , 1 , 1 , 1 , 0 , 1 , 0 , 0 , 1 , 0 , 1 , 0 , 1 , 0 , 0 , 1 , 1 , 0 , 0 , 0 , 1 , 1 , 0 , 0 , 0 , 1 , 1 , 1 , 1 , 1 , 0 , 1 , 0 , 1 , 0 , 1 , 0 , 1 , 0 , 0 , 1 , 1 , 0 , 1 , 1 , 0 , 0 , 0 , 1 , 1 , 1 , 1 , 1 , 0 , 1 , 0 , 0 , 1 , 0 , 1 , 0 , 1 , 0 , 0 , 1 , 1 , 0 , 0 , 0 , 1 , 1 , 0 , 0 , 0 , 1 , 1 , 1 , 1 , 1 , 0 , 1 , 0 , 0 , 1 , 0 , 1 , 0 , 1 , 0 , 0 , 1 , 1 , 0 , 0 , 0 , 1 , 1 , 0 , 0 , 0 , 1 , 1 , 1 , 1 , 1 , 0 , 1 , 0 , 0 , 1 , 0 , 1 , 0 , 1 , 0 , 0 , 1 , 1 , 0 , 0 , 0 , 1 , 1 , 0 , 0 , 0 , 1 , 1 , 1 , 1 , 1 , 0 , 1 , 0 , 0 , 1 , 0 , 1 , 0 , 1 , 0 , 0 , 1 , 1 , 0 , 0 , 0 , 1 , 1 , 0 , 0 , 0 , 1 , 1 , 1 , 1 , 1 , 0 , 1 , 0 , 0 , 1 , 0 , 1 , 0 , 1 , 0 , 0 , 1 , 1 , 0 , 0 , 0 , 1 , 1 , 0 , 0 , 1 , 1 , 1 , 1 , 1 , 0 , 1 , 0 , 0 , 1 , 0 , 1 , 0 , 1 , 0 , 0 , 1 , 1 , 0 , 0 , 0 , 1 , 1 , 0 , 0 , 0 , 1 , 1 , 1 , 1 , 1 , 0 , 1 , 0 };
306,131
C++
.h
366
827.554645
2,185
0.528942
eloquentarduino/EloquentMicroML
34
11
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,715
breast_cancer.h
eloquentarduino_EloquentMicroML/examples/SGDExample/breast_cancer.h
#pragma once #define FEATURES_DIM 30 #define DATASET_SIZE 569 float X[DATASET_SIZE][FEATURES_DIM] = { { 0.017759 , 0.034479 , 0.112583 , 0.524332 , 0.000190 , 0.000112 , 0.000051 , 0.000026 , 0.000283 , 0.000131 , 0.000956 , 0.002347 , 0.006149 , 0.057364 , 0.000013 , 0.000017 , 0.000044 , 0.000012 , 0.000037 , 0.000005 , 0.022622 , 0.047088 , 0.142639 , 0.827337 , 0.000251 , 0.000197 , 0.000215 , 0.000095 , 0.000462 , 0.000153 }, { 0.022222 , 0.029087 , 0.141086 , 0.640428 , 0.000239 , 0.000152 , 0.000069 , 0.000049 , 0.000424 , 0.000161 , 0.000648 , 0.002284 , 0.004464 , 0.036709 , 0.000022 , 0.000033 , 0.000046 , 0.000033 , 0.000047 , 0.000007 , 0.023920 , 0.036616 , 0.152286 , 0.736294 , 0.000310 , 0.000268 , 0.000207 , 0.000146 , 0.000573 , 0.000182 }, { 0.016655 , 0.024390 , 0.107456 , 0.614154 , 0.000142 , 0.000134 , 0.000066 , 0.000046 , 0.000267 , 0.000085 , 0.000391 , 0.002274 , 0.002573 , 0.030584 , 0.000011 , 0.000022 , 0.000025 , 0.000010 , 0.000028 , 0.000002 , 0.018664 , 0.035511 , 0.121578 , 0.770102 , 0.000197 , 0.000244 , 0.000221 , 0.000086 , 0.000420 , 0.000097 }, { 0.008445 , 0.008392 , 0.054922 , 0.507541 , 0.000045 , 0.000052 , 0.000060 , 0.000037 , 0.000077 , 0.000025 , 0.000259 , 0.000275 , 0.001649 , 0.030826 , 0.000002 , 0.000008 , 0.000012 , 0.000006 , 0.000006 , 0.000001 , 0.011158 , 0.010667 , 0.070813 , 0.856177 , 0.000065 , 0.000137 , 0.000187 , 0.000087 , 0.000147 , 0.000039 }, { 0.010335 , 0.011717 , 0.067850 , 0.511496 , 0.000064 , 0.000085 , 0.000065 , 0.000043 , 0.000121 , 0.000040 , 0.000331 , 0.000645 , 0.002334 , 0.035471 , 0.000004 , 0.000027 , 0.000018 , 0.000008 , 0.000013 , 0.000003 , 0.013374 , 0.017866 , 0.089397 , 0.850747 , 0.000091 , 0.000367 , 0.000260 , 0.000119 , 0.000248 , 0.000069 }, { 0.009558 , 0.011350 , 0.062267 , 0.556885 , 0.000049 , 0.000050 , 0.000060 , 0.000035 , 0.000088 , 0.000030 , 0.000309 , 0.000623 , 0.001951 , 0.035408 , 0.000003 , 0.000007 , 0.000015 , 0.000005 , 0.000008 , 0.000001 , 0.011666 , 0.016261 , 0.075425 , 0.823671 , 0.000076 , 0.000118 , 0.000205 , 0.000071 , 0.000161 , 0.000039 }, { 0.018056 , 0.020763 , 0.117209 , 0.618886 , 0.000198 , 0.000178 , 0.000127 , 0.000089 , 0.000323 , 0.000111 , 0.000410 , 0.001579 , 0.002898 , 0.025697 , 0.000011 , 0.000028 , 0.000034 , 0.000019 , 0.000034 , 0.000006 , 0.020571 , 0.032891 , 0.136065 , 0.762754 , 0.000258 , 0.000389 , 0.000360 , 0.000211 , 0.000536 , 0.000148 }, { 0.018488 , 0.044228 , 0.117200 , 0.646264 , 0.000112 , 0.000062 , 0.000027 , 0.000005 , 0.000305 , 0.000092 , 0.000198 , 0.001458 , 0.001730 , 0.014054 , 0.000006 , 0.000027 , 0.000027 , 0.000005 , 0.000025 , 0.000003 , 0.019729 , 0.055121 , 0.130363 , 0.738704 , 0.000150 , 0.000234 , 0.000178 , 0.000034 , 0.000465 , 0.000116 }, { 0.018747 , 0.033232 , 0.122739 , 0.656151 , 0.000134 , 0.000197 , 0.000154 , 0.000093 , 0.000432 , 0.000104 , 0.000810 , 0.003172 , 0.004790 , 0.057740 , 0.000026 , 0.000138 , 0.000135 , 0.000058 , 0.000057 , 0.000011 , 0.019746 , 0.037178 , 0.130315 , 0.728576 , 0.000171 , 0.000307 , 0.000257 , 0.000155 , 0.000492 , 0.000117 }, { 0.015360 , 0.016835 , 0.098693 , 0.651447 , 0.000106 , 0.000085 , 0.000050 , 0.000041 , 0.000234 , 0.000065 , 0.000275 , 0.001020 , 0.002030 , 0.021526 , 0.000005 , 0.000017 , 0.000016 , 0.000012 , 0.000017 , 0.000002 , 0.016613 , 0.024110 , 0.109096 , 0.743054 , 0.000131 , 0.000191 , 0.000161 , 0.000111 , 0.000328 , 0.000077 }, { 0.020079 , 0.031810 , 0.127067 , 0.632124 , 0.000184 , 0.000097 , 0.000020 , 0.000011 , 0.000367 , 0.000121 , 0.000409 , 0.001881 , 0.002638 , 0.025234 , 0.000014 , 0.000014 , 0.000020 , 0.000011 , 0.000030 , 0.000005 , 0.021888 , 0.042356 , 0.138371 , 0.748860 , 0.000250 , 0.000172 , 0.000085 , 0.000046 , 0.000522 , 0.000144 }, { 0.009505 , 0.009536 , 0.062357 , 0.553539 , 0.000051 , 0.000054 , 0.000069 , 0.000045 , 0.000110 , 0.000031 , 0.000360 , 0.000760 , 0.002462 , 0.041503 , 0.000003 , 0.000008 , 0.000014 , 0.000007 , 0.000012 , 0.000002 , 0.011807 , 0.014253 , 0.078371 , 0.825416 , 0.000072 , 0.000108 , 0.000163 , 0.000085 , 0.000190 , 0.000044 }, { 0.018206 , 0.030650 , 0.115580 , 0.634402 , 0.000131 , 0.000076 , 0.000060 , 0.000036 , 0.000244 , 0.000091 , 0.000439 , 0.001518 , 0.002947 , 0.029217 , 0.000015 , 0.000015 , 0.000033 , 0.000014 , 0.000035 , 0.000003 , 0.019848 , 0.038376 , 0.125560 , 0.751270 , 0.000208 , 0.000147 , 0.000232 , 0.000112 , 0.000386 , 0.000107 }, { 0.016224 , 0.020227 , 0.103741 , 0.608935 , 0.000115 , 0.000087 , 0.000027 , 0.000023 , 0.000218 , 0.000082 , 0.000342 , 0.001074 , 0.002605 , 0.025280 , 0.000007 , 0.000019 , 0.000014 , 0.000007 , 0.000018 , 0.000003 , 0.018285 , 0.028432 , 0.121162 , 0.775431 , 0.000167 , 0.000256 , 0.000155 , 0.000074 , 0.000354 , 0.000106 }, { 0.011236 , 0.014977 , 0.073840 , 0.563050 , 0.000070 , 0.000089 , 0.000073 , 0.000039 , 0.000150 , 0.000041 , 0.000301 , 0.000880 , 0.001977 , 0.030371 , 0.000003 , 0.000014 , 0.000015 , 0.000006 , 0.000011 , 0.000002 , 0.013537 , 0.022027 , 0.090180 , 0.816972 , 0.000097 , 0.000212 , 0.000208 , 0.000091 , 0.000242 , 0.000053 }, { 0.011938 , 0.011550 , 0.078790 , 0.590698 , 0.000071 , 0.000102 , 0.000090 , 0.000052 , 0.000133 , 0.000045 , 0.000251 , 0.000557 , 0.001958 , 0.024776 , 0.000004 , 0.000024 , 0.000028 , 0.000011 , 0.000011 , 0.000002 , 0.013971 , 0.016369 , 0.092567 , 0.796832 , 0.000107 , 0.000333 , 0.000369 , 0.000148 , 0.000225 , 0.000068 }, { 0.014786 , 0.020707 , 0.096836 , 0.622733 , 0.000098 , 0.000124 , 0.000105 , 0.000052 , 0.000200 , 0.000067 , 0.000243 , 0.000969 , 0.001953 , 0.020956 , 0.000004 , 0.000030 , 0.000040 , 0.000014 , 0.000017 , 0.000004 , 0.016388 , 0.027602 , 0.109760 , 0.767240 , 0.000124 , 0.000343 , 0.000396 , 0.000152 , 0.000297 , 0.000096 }, { 0.014355 , 0.016338 , 0.091793 , 0.624907 , 0.000086 , 0.000060 , 0.000036 , 0.000030 , 0.000175 , 0.000060 , 0.000398 , 0.001069 , 0.002703 , 0.033474 , 0.000008 , 0.000013 , 0.000016 , 0.000009 , 0.000020 , 0.000003 , 0.016011 , 0.022064 , 0.103470 , 0.766820 , 0.000122 , 0.000128 , 0.000114 , 0.000076 , 0.000279 , 0.000074 }, { 0.016616 , 0.023004 , 0.107394 , 0.598215 , 0.000160 , 0.000132 , 0.000061 , 0.000045 , 0.000264 , 0.000091 , 0.000528 , 0.001642 , 0.003633 , 0.039222 , 0.000013 , 0.000018 , 0.000026 , 0.000017 , 0.000031 , 0.000005 , 0.018949 , 0.030715 , 0.123157 , 0.782161 , 0.000217 , 0.000210 , 0.000212 , 0.000140 , 0.000399 , 0.000114 }, { 0.019696 , 0.030488 , 0.126883 , 0.652670 , 0.000213 , 0.000191 , 0.000072 , 0.000076 , 0.000348 , 0.000142 , 0.000317 , 0.001834 , 0.002347 , 0.021904 , 0.000022 , 0.000042 , 0.000032 , 0.000023 , 0.000040 , 0.000015 , 0.020818 , 0.036934 , 0.135485 , 0.732094 , 0.000296 , 0.000362 , 0.000224 , 0.000169 , 0.000495 , 0.000208 }, { 0.018094 , 0.029127 , 0.118382 , 0.623534 , 0.000154 , 0.000212 , 0.000248 , 0.000046 , 0.000329 , 0.000123 , 0.000389 , 0.002629 , 0.003793 , 0.026245 , 0.000011 , 0.000095 , 0.000142 , 0.000021 , 0.000032 , 0.000014 , 0.020144 , 0.044771 , 0.139567 , 0.757240 , 0.000216 , 0.000776 , 0.001191 , 0.000195 , 0.000530 , 0.000208 }, { 0.006905 , 0.007128 , 0.045555 , 0.513117 , 0.000031 , 0.000038 , 0.000068 , 0.000041 , 0.000053 , 0.000016 , 0.000296 , 0.000272 , 0.001898 , 0.048198 , 0.000002 , 0.000006 , 0.000011 , 0.000004 , 0.000004 , 0.000001 , 0.009008 , 0.009026 , 0.059448 , 0.853530 , 0.000044 , 0.000079 , 0.000142 , 0.000061 , 0.000076 , 0.000023 }, { 0.017418 , 0.029601 , 0.115230 , 0.568449 , 0.000191 , 0.000339 , 0.000266 , 0.000100 , 0.000345 , 0.000125 , 0.000332 , 0.001614 , 0.002702 , 0.021993 , 0.000012 , 0.000072 , 0.000072 , 0.000021 , 0.000027 , 0.000007 , 0.020814 , 0.051594 , 0.144250 , 0.798753 , 0.000343 , 0.001474 , 0.001321 , 0.000397 , 0.000653 , 0.000221 }, { 0.012504 , 0.023684 , 0.083186 , 0.566559 , 0.000098 , 0.000137 , 0.000141 , 0.000063 , 0.000198 , 0.000061 , 0.000318 , 0.000888 , 0.002476 , 0.027993 , 0.000005 , 0.000036 , 0.000041 , 0.000009 , 0.000016 , 0.000005 , 0.015015 , 0.031931 , 0.106724 , 0.811139 , 0.000144 , 0.000566 , 0.000604 , 0.000147 , 0.000363 , 0.000115 }, { 0.014371 , 0.014265 , 0.091856 , 0.660537 , 0.000082 , 0.000049 , 0.000033 , 0.000025 , 0.000161 , 0.000052 , 0.000212 , 0.000605 , 0.001627 , 0.020106 , 0.000007 , 0.000012 , 0.000014 , 0.000010 , 0.000015 , 0.000002 , 0.015148 , 0.017059 , 0.098688 , 0.737683 , 0.000111 , 0.000098 , 0.000107 , 0.000077 , 0.000226 , 0.000060 }, { 0.010406 , 0.013341 , 0.069738 , 0.515325 , 0.000075 , 0.000130 , 0.000111 , 0.000066 , 0.000140 , 0.000047 , 0.000367 , 0.000692 , 0.002486 , 0.034953 , 0.000005 , 0.000016 , 0.000021 , 0.000008 , 0.000011 , 0.000003 , 0.013522 , 0.020309 , 0.088253 , 0.848338 , 0.000115 , 0.000273 , 0.000309 , 0.000134 , 0.000239 , 0.000074 }, { 0.018590 , 0.026572 , 0.119717 , 0.591755 , 0.000174 , 0.000180 , 0.000112 , 0.000039 , 0.000341 , 0.000123 , 0.000581 , 0.001999 , 0.004548 , 0.036843 , 0.000013 , 0.000069 , 0.000093 , 0.000022 , 0.000038 , 0.000009 , 0.021517 , 0.038262 , 0.144409 , 0.781202 , 0.000235 , 0.000531 , 0.000521 , 0.000165 , 0.000536 , 0.000171 }, { 0.020584 , 0.040434 , 0.133285 , 0.621720 , 0.000209 , 0.000202 , 0.000128 , 0.000063 , 0.000405 , 0.000132 , 0.000376 , 0.002547 , 0.003185 , 0.024531 , 0.000019 , 0.000046 , 0.000063 , 0.000023 , 0.000034 , 0.000007 , 0.022426 , 0.055919 , 0.150522 , 0.752817 , 0.000325 , 0.000480 , 0.000551 , 0.000203 , 0.000546 , 0.000177 }, { 0.023534 , 0.035970 , 0.149727 , 0.607639 , 0.000284 , 0.000210 , 0.000070 , 0.000041 , 0.000461 , 0.000196 , 0.000348 , 0.001865 , 0.002935 , 0.019918 , 0.000022 , 0.000048 , 0.000049 , 0.000020 , 0.000044 , 0.000011 , 0.026011 , 0.050659 , 0.173807 , 0.756734 , 0.000451 , 0.000614 , 0.000482 , 0.000234 , 0.000819 , 0.000288 }, { 0.018005 , 0.029408 , 0.114386 , 0.644333 , 0.000136 , 0.000081 , 0.000024 , 0.000018 , 0.000298 , 0.000094 , 0.000246 , 0.002201 , 0.001707 , 0.017359 , 0.000009 , 0.000014 , 0.000016 , 0.000012 , 0.000036 , 0.000003 , 0.019405 , 0.040858 , 0.124527 , 0.743438 , 0.000188 , 0.000167 , 0.000122 , 0.000088 , 0.000537 , 0.000107 }, { 0.011371 , 0.012725 , 0.075632 , 0.596917 , 0.000076 , 0.000105 , 0.000127 , 0.000073 , 0.000142 , 0.000042 , 0.000197 , 0.000453 , 0.001436 , 0.021329 , 0.000004 , 0.000013 , 0.000020 , 0.000009 , 0.000008 , 0.000002 , 0.013065 , 0.016600 , 0.089037 , 0.792999 , 0.000114 , 0.000262 , 0.000335 , 0.000170 , 0.000207 , 0.000060 }, { 0.025131 , 0.051636 , 0.158557 , 0.619080 , 0.000264 , 0.000182 , 0.000049 , 0.000018 , 0.000542 , 0.000199 , 0.000479 , 0.002934 , 0.003355 , 0.025159 , 0.000027 , 0.000050 , 0.000049 , 0.000018 , 0.000079 , 0.000008 , 0.027486 , 0.067335 , 0.175575 , 0.742651 , 0.000398 , 0.000416 , 0.000211 , 0.000079 , 0.000952 , 0.000227 }, { 0.017126 , 0.020748 , 0.108652 , 0.651023 , 0.000120 , 0.000063 , 0.000029 , 0.000029 , 0.000218 , 0.000079 , 0.000532 , 0.001260 , 0.003611 , 0.041843 , 0.000011 , 0.000012 , 0.000018 , 0.000014 , 0.000041 , 0.000002 , 0.018291 , 0.023385 , 0.116729 , 0.739843 , 0.000145 , 0.000094 , 0.000068 , 0.000067 , 0.000319 , 0.000083 }, { 0.016263 , 0.022592 , 0.103537 , 0.640935 , 0.000101 , 0.000058 , 0.000018 , 0.000023 , 0.000187 , 0.000071 , 0.000378 , 0.001130 , 0.002696 , 0.029713 , 0.000009 , 0.000015 , 0.000007 , 0.000007 , 0.000025 , 0.000002 , 0.017669 , 0.026798 , 0.113624 , 0.750250 , 0.000137 , 0.000123 , 0.000044 , 0.000046 , 0.000277 , 0.000077 }, { 0.014510 , 0.024748 , 0.092888 , 0.610659 , 0.000099 , 0.000072 , 0.000032 , 0.000026 , 0.000177 , 0.000062 , 0.000369 , 0.001423 , 0.002201 , 0.033282 , 0.000006 , 0.000022 , 0.000022 , 0.000010 , 0.000022 , 0.000003 , 0.016353 , 0.030991 , 0.103957 , 0.777493 , 0.000130 , 0.000162 , 0.000112 , 0.000076 , 0.000281 , 0.000074 }, { 0.012484 , 0.015819 , 0.080677 , 0.582226 , 0.000076 , 0.000071 , 0.000062 , 0.000036 , 0.000129 , 0.000049 , 0.000320 , 0.000994 , 0.002182 , 0.031927 , 0.000004 , 0.000014 , 0.000025 , 0.000008 , 0.000010 , 0.000001 , 0.014583 , 0.023276 , 0.094397 , 0.802127 , 0.000103 , 0.000174 , 0.000238 , 0.000093 , 0.000189 , 0.000058 }, { 0.011644 , 0.019696 , 0.075966 , 0.601905 , 0.000059 , 0.000072 , 0.000065 , 0.000037 , 0.000112 , 0.000040 , 0.000320 , 0.000754 , 0.002402 , 0.034055 , 0.000004 , 0.000026 , 0.000033 , 0.000011 , 0.000009 , 0.000003 , 0.013313 , 0.023933 , 0.088872 , 0.788417 , 0.000080 , 0.000217 , 0.000239 , 0.000099 , 0.000156 , 0.000055 }, { 0.017531 , 0.028750 , 0.114011 , 0.650034 , 0.000157 , 0.000165 , 0.000117 , 0.000031 , 0.000305 , 0.000099 , 0.000260 , 0.001142 , 0.001414 , 0.018048 , 0.000009 , 0.000032 , 0.000057 , 0.000014 , 0.000019 , 0.000005 , 0.018880 , 0.034675 , 0.122131 , 0.739269 , 0.000201 , 0.000332 , 0.000507 , 0.000116 , 0.000389 , 0.000127 }, { 0.014382 , 0.018879 , 0.091264 , 0.605638 , 0.000084 , 0.000043 , 0.000021 , 0.000013 , 0.000166 , 0.000058 , 0.000273 , 0.001234 , 0.001781 , 0.023514 , 0.000004 , 0.000006 , 0.000011 , 0.000005 , 0.000014 , 0.000001 , 0.016403 , 0.027620 , 0.104672 , 0.782154 , 0.000111 , 0.000081 , 0.000112 , 0.000055 , 0.000247 , 0.000066 }, { 0.007040 , 0.011704 , 0.046139 , 0.440839 , 0.000030 , 0.000041 , 0.000041 , 0.000024 , 0.000051 , 0.000019 , 0.000266 , 0.000476 , 0.001702 , 0.039614 , 0.000002 , 0.000010 , 0.000010 , 0.000004 , 0.000005 , 0.000001 , 0.010057 , 0.016368 , 0.064954 , 0.892852 , 0.000051 , 0.000148 , 0.000144 , 0.000059 , 0.000098 , 0.000027 }, { 0.020875 , 0.029930 , 0.134693 , 0.654340 , 0.000201 , 0.000186 , 0.000073 , 0.000041 , 0.000332 , 0.000143 , 0.000688 , 0.005105 , 0.004871 , 0.039330 , 0.000035 , 0.000095 , 0.000053 , 0.000026 , 0.000075 , 0.000014 , 0.022137 , 0.039635 , 0.144236 , 0.726569 , 0.000277 , 0.000333 , 0.000146 , 0.000083 , 0.000495 , 0.000173 }, { 0.010781 , 0.011065 , 0.071181 , 0.611218 , 0.000068 , 0.000088 , 0.000105 , 0.000063 , 0.000124 , 0.000037 , 0.000493 , 0.000943 , 0.002886 , 0.058465 , 0.000002 , 0.000018 , 0.000017 , 0.000005 , 0.000016 , 0.000003 , 0.012189 , 0.014278 , 0.079938 , 0.781625 , 0.000076 , 0.000136 , 0.000155 , 0.000078 , 0.000179 , 0.000047 }, { 0.017897 , 0.026213 , 0.114300 , 0.662818 , 0.000154 , 0.000104 , 0.000037 , 0.000043 , 0.000279 , 0.000097 , 0.000538 , 0.002220 , 0.003541 , 0.035911 , 0.000008 , 0.000017 , 0.000017 , 0.000022 , 0.000033 , 0.000005 , 0.018852 , 0.030739 , 0.120691 , 0.727616 , 0.000168 , 0.000138 , 0.000073 , 0.000086 , 0.000327 , 0.000108 }, { 0.020024 , 0.022666 , 0.126896 , 0.667514 , 0.000156 , 0.000087 , 0.000023 , 0.000025 , 0.000266 , 0.000111 , 0.000322 , 0.001885 , 0.002325 , 0.020354 , 0.000006 , 0.000022 , 0.000020 , 0.000017 , 0.000054 , 0.000006 , 0.020868 , 0.027200 , 0.132915 , 0.719821 , 0.000171 , 0.000138 , 0.000053 , 0.000059 , 0.000393 , 0.000122 }, { 0.017180 , 0.028271 , 0.110175 , 0.608340 , 0.000127 , 0.000115 , 0.000081 , 0.000021 , 0.000302 , 0.000093 , 0.000425 , 0.002138 , 0.003276 , 0.030142 , 0.000011 , 0.000030 , 0.000066 , 0.000013 , 0.000028 , 0.000005 , 0.019407 , 0.040061 , 0.128335 , 0.772861 , 0.000185 , 0.000288 , 0.000380 , 0.000099 , 0.000451 , 0.000123 }, { 0.012823 , 0.020770 , 0.084504 , 0.579814 , 0.000102 , 0.000128 , 0.000110 , 0.000078 , 0.000169 , 0.000058 , 0.000310 , 0.001111 , 0.002126 , 0.030574 , 0.000006 , 0.000020 , 0.000020 , 0.000010 , 0.000016 , 0.000003 , 0.015018 , 0.028969 , 0.099426 , 0.802613 , 0.000143 , 0.000296 , 0.000262 , 0.000140 , 0.000288 , 0.000077 }, { 0.009483 , 0.010382 , 0.062147 , 0.540411 , 0.000049 , 0.000057 , 0.000059 , 0.000038 , 0.000093 , 0.000030 , 0.000232 , 0.000402 , 0.001652 , 0.028013 , 0.000002 , 0.000007 , 0.000012 , 0.000005 , 0.000007 , 0.000001 , 0.011889 , 0.014373 , 0.079607 , 0.834520 , 0.000075 , 0.000134 , 0.000197 , 0.000100 , 0.000159 , 0.000043 }, { 0.016406 , 0.023998 , 0.104639 , 0.600502 , 0.000126 , 0.000087 , 0.000040 , 0.000023 , 0.000257 , 0.000084 , 0.000478 , 0.001585 , 0.003094 , 0.034843 , 0.000008 , 0.000027 , 0.000029 , 0.000008 , 0.000021 , 0.000004 , 0.018701 , 0.034050 , 0.119572 , 0.781389 , 0.000173 , 0.000240 , 0.000201 , 0.000074 , 0.000386 , 0.000113 }, { 0.016808 , 0.026888 , 0.107197 , 0.607604 , 0.000126 , 0.000098 , 0.000038 , 0.000020 , 0.000218 , 0.000086 , 0.000315 , 0.001228 , 0.002050 , 0.024304 , 0.000008 , 0.000025 , 0.000029 , 0.000010 , 0.000023 , 0.000004 , 0.018881 , 0.035477 , 0.120981 , 0.775547 , 0.000182 , 0.000267 , 0.000209 , 0.000098 , 0.000360 , 0.000113 }, { 0.017170 , 0.026230 , 0.108873 , 0.629281 , 0.000119 , 0.000068 , 0.000028 , 0.000019 , 0.000269 , 0.000088 , 0.000327 , 0.000910 , 0.002186 , 0.025122 , 0.000010 , 0.000012 , 0.000019 , 0.000012 , 0.000029 , 0.000004 , 0.018838 , 0.030673 , 0.120320 , 0.758129 , 0.000165 , 0.000128 , 0.000132 , 0.000091 , 0.000400 , 0.000107 }, { 0.023793 , 0.041898 , 0.156159 , 0.651858 , 0.000252 , 0.000330 , 0.000246 , 0.000061 , 0.000347 , 0.000190 , 0.000833 , 0.002602 , 0.008720 , 0.045035 , 0.000049 , 0.000180 , 0.000246 , 0.000061 , 0.000063 , 0.000015 , 0.025027 , 0.045380 , 0.168388 , 0.717789 , 0.000313 , 0.000500 , 0.000410 , 0.000102 , 0.000439 , 0.000205 }, { 0.014323 , 0.022848 , 0.092186 , 0.652080 , 0.000085 , 0.000065 , 0.000082 , 0.000052 , 0.000160 , 0.000053 , 0.000408 , 0.001596 , 0.002859 , 0.032383 , 0.000008 , 0.000017 , 0.000033 , 0.000015 , 0.000017 , 0.000003 , 0.015490 , 0.031108 , 0.100260 , 0.743805 , 0.000129 , 0.000155 , 0.000262 , 0.000133 , 0.000243 , 0.000067 }, { 0.007693 , 0.007424 , 0.052099 , 0.527353 , 0.000033 , 0.000069 , 0.000078 , 0.000038 , 0.000061 , 0.000022 , 0.000413 , 0.000478 , 0.003136 , 0.055459 , 0.000002 , 0.000018 , 0.000022 , 0.000006 , 0.000007 , 0.000002 , 0.009971 , 0.009967 , 0.069288 , 0.843199 , 0.000045 , 0.000167 , 0.000205 , 0.000065 , 0.000100 , 0.000031 }, { 0.015587 , 0.014726 , 0.100982 , 0.664415 , 0.000140 , 0.000109 , 0.000113 , 0.000074 , 0.000221 , 0.000072 , 0.000611 , 0.002946 , 0.004574 , 0.050027 , 0.000011 , 0.000036 , 0.000053 , 0.000032 , 0.000019 , 0.000006 , 0.016348 , 0.017197 , 0.105689 , 0.730499 , 0.000156 , 0.000153 , 0.000174 , 0.000113 , 0.000242 , 0.000081 }, { 0.013940 , 0.017798 , 0.090417 , 0.640455 , 0.000084 , 0.000092 , 0.000055 , 0.000045 , 0.000175 , 0.000055 , 0.000268 , 0.000883 , 0.002023 , 0.023175 , 0.000005 , 0.000020 , 0.000014 , 0.000011 , 0.000014 , 0.000003 , 0.015142 , 0.024405 , 0.101664 , 0.754605 , 0.000122 , 0.000282 , 0.000168 , 0.000139 , 0.000276 , 0.000079 }, { 0.011796 , 0.018630 , 0.077639 , 0.438956 , 0.000110 , 0.000151 , 0.000121 , 0.000052 , 0.000229 , 0.000078 , 0.000481 , 0.001026 , 0.003462 , 0.040847 , 0.000006 , 0.000034 , 0.000042 , 0.000010 , 0.000023 , 0.000006 , 0.016757 , 0.028015 , 0.118954 , 0.885384 , 0.000163 , 0.000575 , 0.000693 , 0.000154 , 0.000474 , 0.000140 }, { 0.020438 , 0.036258 , 0.130263 , 0.651315 , 0.000208 , 0.000130 , 0.000045 , 0.000035 , 0.000289 , 0.000129 , 0.000289 , 0.003045 , 0.002016 , 0.019639 , 0.000017 , 0.000018 , 0.000035 , 0.000018 , 0.000035 , 0.000006 , 0.021548 , 0.047811 , 0.137861 , 0.731390 , 0.000275 , 0.000203 , 0.000164 , 0.000127 , 0.000431 , 0.000153 }, { 0.017240 , 0.025695 , 0.109043 , 0.639153 , 0.000110 , 0.000056 , 0.000002 , 0.000008 , 0.000198 , 0.000087 , 0.000335 , 0.001304 , 0.002101 , 0.024319 , 0.000007 , 0.000010 , 0.000002 , 0.000006 , 0.000021 , 0.000003 , 0.018730 , 0.031886 , 0.118573 , 0.750074 , 0.000145 , 0.000106 , 0.000011 , 0.000040 , 0.000311 , 0.000101 }, { 0.011006 , 0.010286 , 0.071725 , 0.604318 , 0.000055 , 0.000075 , 0.000067 , 0.000038 , 0.000105 , 0.000035 , 0.000182 , 0.000361 , 0.001173 , 0.021835 , 0.000003 , 0.000010 , 0.000018 , 0.000006 , 0.000008 , 0.000001 , 0.012440 , 0.013441 , 0.081369 , 0.788666 , 0.000077 , 0.000163 , 0.000262 , 0.000094 , 0.000173 , 0.000050 }, { 0.015526 , 0.028440 , 0.099085 , 0.591243 , 0.000104 , 0.000066 , 0.000022 , 0.000016 , 0.000196 , 0.000076 , 0.000284 , 0.001444 , 0.001999 , 0.022864 , 0.000006 , 0.000015 , 0.000012 , 0.000006 , 0.000020 , 0.000003 , 0.017959 , 0.040544 , 0.117539 , 0.789464 , 0.000159 , 0.000229 , 0.000156 , 0.000080 , 0.000393 , 0.000104 }, { 0.016895 , 0.016991 , 0.108133 , 0.636458 , 0.000141 , 0.000096 , 0.000055 , 0.000051 , 0.000269 , 0.000082 , 0.000324 , 0.000913 , 0.002290 , 0.023903 , 0.000011 , 0.000016 , 0.000023 , 0.000017 , 0.000026 , 0.000003 , 0.018514 , 0.021448 , 0.119269 , 0.753026 , 0.000190 , 0.000174 , 0.000170 , 0.000129 , 0.000388 , 0.000093 }, { 0.012904 , 0.011880 , 0.083387 , 0.639594 , 0.000076 , 0.000068 , 0.000044 , 0.000036 , 0.000139 , 0.000047 , 0.000191 , 0.000509 , 0.001382 , 0.017453 , 0.000003 , 0.000010 , 0.000015 , 0.000007 , 0.000012 , 0.000001 , 0.014159 , 0.015654 , 0.092661 , 0.757839 , 0.000096 , 0.000138 , 0.000185 , 0.000090 , 0.000222 , 0.000056 }, { 0.014931 , 0.025101 , 0.095164 , 0.696047 , 0.000094 , 0.000051 , 0.000024 , 0.000029 , 0.000156 , 0.000055 , 0.001209 , 0.002179 , 0.008045 , 0.105582 , 0.000007 , 0.000011 , 0.000018 , 0.000019 , 0.000008 , 0.000002 , 0.014931 , 0.025101 , 0.095164 , 0.696047 , 0.000094 , 0.000051 , 0.000024 , 0.000029 , 0.000156 , 0.000055 }, { 0.016650 , 0.015955 , 0.106037 , 0.648964 , 0.000115 , 0.000076 , 0.000031 , 0.000031 , 0.000208 , 0.000082 , 0.000295 , 0.000847 , 0.002002 , 0.022773 , 0.000008 , 0.000017 , 0.000012 , 0.000011 , 0.000022 , 0.000006 , 0.017896 , 0.022183 , 0.115529 , 0.743228 , 0.000172 , 0.000211 , 0.000123 , 0.000108 , 0.000364 , 0.000124 }, { 0.023127 , 0.041955 , 0.147996 , 0.611967 , 0.000305 , 0.000217 , 0.000110 , 0.000051 , 0.000437 , 0.000202 , 0.000441 , 0.001554 , 0.003589 , 0.023763 , 0.000022 , 0.000059 , 0.000086 , 0.000028 , 0.000045 , 0.000010 , 0.025518 , 0.052000 , 0.170895 , 0.753761 , 0.000457 , 0.000627 , 0.000651 , 0.000278 , 0.000775 , 0.000270 }, { 0.016451 , 0.029016 , 0.106189 , 0.620389 , 0.000117 , 0.000126 , 0.000080 , 0.000050 , 0.000257 , 0.000085 , 0.000396 , 0.001999 , 0.002932 , 0.027885 , 0.000009 , 0.000033 , 0.000036 , 0.000017 , 0.000026 , 0.000006 , 0.018408 , 0.040596 , 0.121735 , 0.764939 , 0.000174 , 0.000328 , 0.000324 , 0.000160 , 0.000396 , 0.000123 }, { 0.013103 , 0.012308 , 0.084532 , 0.585904 , 0.000091 , 0.000070 , 0.000052 , 0.000042 , 0.000190 , 0.000050 , 0.000477 , 0.000742 , 0.003438 , 0.044126 , 0.000006 , 0.000013 , 0.000022 , 0.000012 , 0.000021 , 0.000001 , 0.015324 , 0.015443 , 0.100879 , 0.797896 , 0.000119 , 0.000139 , 0.000149 , 0.000099 , 0.000280 , 0.000055 }, { 0.015010 , 0.017510 , 0.097376 , 0.615118 , 0.000107 , 0.000097 , 0.000106 , 0.000040 , 0.000208 , 0.000071 , 0.000309 , 0.000905 , 0.002076 , 0.026013 , 0.000010 , 0.000023 , 0.000035 , 0.000011 , 0.000032 , 0.000004 , 0.016859 , 0.023399 , 0.111484 , 0.773093 , 0.000169 , 0.000258 , 0.000343 , 0.000111 , 0.000439 , 0.000099 }, { 0.015234 , 0.021300 , 0.099342 , 0.629315 , 0.000119 , 0.000129 , 0.000097 , 0.000061 , 0.000204 , 0.000069 , 0.000241 , 0.001502 , 0.001706 , 0.021751 , 0.000006 , 0.000022 , 0.000037 , 0.000015 , 0.000015 , 0.000003 , 0.016689 , 0.030671 , 0.109750 , 0.761357 , 0.000161 , 0.000290 , 0.000388 , 0.000164 , 0.000301 , 0.000087 }, { 0.016325 , 0.029133 , 0.110899 , 0.551922 , 0.000204 , 0.000406 , 0.000345 , 0.000150 , 0.000371 , 0.000139 , 0.000708 , 0.001652 , 0.004925 , 0.038925 , 0.000013 , 0.000107 , 0.000081 , 0.000027 , 0.000085 , 0.000013 , 0.021314 , 0.037881 , 0.141333 , 0.811515 , 0.000300 , 0.001238 , 0.000982 , 0.000368 , 0.000949 , 0.000247 }, { 0.015478 , 0.019101 , 0.100472 , 0.614541 , 0.000104 , 0.000114 , 0.000059 , 0.000037 , 0.000213 , 0.000075 , 0.000257 , 0.000925 , 0.002026 , 0.019965 , 0.000006 , 0.000019 , 0.000018 , 0.000009 , 0.000025 , 0.000002 , 0.017373 , 0.026180 , 0.116585 , 0.772436 , 0.000157 , 0.000306 , 0.000251 , 0.000121 , 0.000426 , 0.000097 }, { 0.017614 , 0.023142 , 0.111762 , 0.610636 , 0.000130 , 0.000070 , 0.000002 , 0.000005 , 0.000278 , 0.000095 , 0.000336 , 0.001560 , 0.002394 , 0.023596 , 0.000009 , 0.000011 , 0.000002 , 0.000005 , 0.000027 , 0.000003 , 0.019979 , 0.034540 , 0.128515 , 0.771436 , 0.000183 , 0.000153 , 0.000009 , 0.000026 , 0.000441 , 0.000116 }, { 0.013198 , 0.015665 , 0.087796 , 0.533764 , 0.000141 , 0.000178 , 0.000208 , 0.000097 , 0.000194 , 0.000077 , 0.000393 , 0.000930 , 0.002426 , 0.034893 , 0.000007 , 0.000029 , 0.000055 , 0.000014 , 0.000016 , 0.000007 , 0.016420 , 0.022551 , 0.107115 , 0.832761 , 0.000187 , 0.000413 , 0.000642 , 0.000200 , 0.000317 , 0.000141 }, { 0.014695 , 0.033738 , 0.094823 , 0.611948 , 0.000102 , 0.000082 , 0.000031 , 0.000036 , 0.000151 , 0.000066 , 0.000374 , 0.002113 , 0.002512 , 0.031773 , 0.000006 , 0.000014 , 0.000009 , 0.000010 , 0.000017 , 0.000003 , 0.016529 , 0.045698 , 0.106190 , 0.774929 , 0.000129 , 0.000156 , 0.000077 , 0.000085 , 0.000241 , 0.000084 }, { 0.019843 , 0.038944 , 0.126141 , 0.590068 , 0.000219 , 0.000170 , 0.000018 , 0.000040 , 0.000517 , 0.000143 , 0.001419 , 0.003558 , 0.009384 , 0.088643 , 0.000027 , 0.000038 , 0.000012 , 0.000021 , 0.000063 , 0.000009 , 0.022833 , 0.047193 , 0.146224 , 0.775826 , 0.000285 , 0.000275 , 0.000042 , 0.000093 , 0.000651 , 0.000163 }, { 0.021128 , 0.040418 , 0.140223 , 0.676229 , 0.000181 , 0.000332 , 0.000456 , 0.000119 , 0.000437 , 0.000169 , 0.000223 , 0.002461 , 0.004723 , 0.014448 , 0.000017 , 0.000153 , 0.000307 , 0.000058 , 0.000032 , 0.000024 , 0.021688 , 0.045615 , 0.152936 , 0.703414 , 0.000228 , 0.000723 , 0.001205 , 0.000293 , 0.000519 , 0.000240 }, { 0.021446 , 0.041163 , 0.139641 , 0.595001 , 0.000253 , 0.000336 , 0.000743 , 0.000104 , 0.000501 , 0.000191 , 0.000778 , 0.002836 , 0.004477 , 0.041971 , 0.000023 , 0.000204 , 0.000722 , 0.000079 , 0.000100 , 0.000023 , 0.024489 , 0.053799 , 0.155579 , 0.771244 , 0.000352 , 0.001037 , 0.002974 , 0.000416 , 0.001004 , 0.000279 }, { 0.016933 , 0.018344 , 0.108866 , 0.655089 , 0.000129 , 0.000112 , 0.000017 , 0.000026 , 0.000218 , 0.000081 , 0.000241 , 0.000923 , 0.001784 , 0.017812 , 0.000008 , 0.000016 , 0.000009 , 0.000011 , 0.000018 , 0.000002 , 0.017971 , 0.023270 , 0.117865 , 0.737092 , 0.000173 , 0.000196 , 0.000070 , 0.000084 , 0.000315 , 0.000092 }, { 0.009283 , 0.012512 , 0.062185 , 0.542126 , 0.000053 , 0.000094 , 0.000116 , 0.000062 , 0.000109 , 0.000031 , 0.000414 , 0.000730 , 0.002777 , 0.052319 , 0.000003 , 0.000017 , 0.000026 , 0.000006 , 0.000010 , 0.000002 , 0.011535 , 0.016946 , 0.079973 , 0.832123 , 0.000074 , 0.000212 , 0.000306 , 0.000092 , 0.000172 , 0.000049 }, { 0.013816 , 0.020476 , 0.089928 , 0.618475 , 0.000090 , 0.000095 , 0.000115 , 0.000047 , 0.000198 , 0.000054 , 0.000401 , 0.002118 , 0.003150 , 0.037088 , 0.000009 , 0.000028 , 0.000051 , 0.000017 , 0.000023 , 0.000003 , 0.015467 , 0.027909 , 0.103429 , 0.771806 , 0.000125 , 0.000189 , 0.000320 , 0.000117 , 0.000288 , 0.000065 }, { 0.015323 , 0.024507 , 0.098404 , 0.577592 , 0.000120 , 0.000101 , 0.000052 , 0.000051 , 0.000248 , 0.000075 , 0.000443 , 0.001661 , 0.002892 , 0.034129 , 0.000009 , 0.000022 , 0.000018 , 0.000014 , 0.000019 , 0.000004 , 0.018092 , 0.035533 , 0.115456 , 0.799858 , 0.000179 , 0.000256 , 0.000173 , 0.000135 , 0.000334 , 0.000102 }, { 0.010674 , 0.012258 , 0.069895 , 0.588409 , 0.000061 , 0.000077 , 0.000071 , 0.000052 , 0.000118 , 0.000036 , 0.000269 , 0.000518 , 0.001816 , 0.029554 , 0.000004 , 0.000016 , 0.000015 , 0.000009 , 0.000008 , 0.000002 , 0.012507 , 0.015077 , 0.081939 , 0.800407 , 0.000088 , 0.000222 , 0.000196 , 0.000117 , 0.000182 , 0.000050 }, { 0.009693 , 0.009083 , 0.063554 , 0.572089 , 0.000052 , 0.000072 , 0.000081 , 0.000047 , 0.000095 , 0.000029 , 0.000235 , 0.000497 , 0.001450 , 0.026561 , 0.000003 , 0.000011 , 0.000015 , 0.000007 , 0.000008 , 0.000001 , 0.011886 , 0.014315 , 0.076145 , 0.813416 , 0.000076 , 0.000187 , 0.000216 , 0.000113 , 0.000179 , 0.000039 }, { 0.013360 , 0.020188 , 0.087412 , 0.659763 , 0.000071 , 0.000084 , 0.000084 , 0.000045 , 0.000156 , 0.000045 , 0.000340 , 0.000909 , 0.002447 , 0.030834 , 0.000008 , 0.000026 , 0.000043 , 0.000017 , 0.000025 , 0.000003 , 0.014195 , 0.023316 , 0.094408 , 0.738830 , 0.000095 , 0.000162 , 0.000196 , 0.000094 , 0.000237 , 0.000053 }, { 0.014559 , 0.027288 , 0.093268 , 0.653229 , 0.000071 , 0.000053 , 0.000035 , 0.000018 , 0.000173 , 0.000055 , 0.000234 , 0.000921 , 0.001746 , 0.020746 , 0.000005 , 0.000017 , 0.000020 , 0.000006 , 0.000014 , 0.000002 , 0.015570 , 0.032333 , 0.101508 , 0.742705 , 0.000103 , 0.000148 , 0.000149 , 0.000056 , 0.000237 , 0.000065 }, { 0.011955 , 0.017434 , 0.077005 , 0.564358 , 0.000072 , 0.000056 , 0.000042 , 0.000026 , 0.000128 , 0.000045 , 0.000246 , 0.000660 , 0.001660 , 0.023681 , 0.000004 , 0.000008 , 0.000013 , 0.000007 , 0.000009 , 0.000001 , 0.014331 , 0.025090 , 0.093189 , 0.815500 , 0.000110 , 0.000163 , 0.000215 , 0.000121 , 0.000212 , 0.000062 }, { 0.016588 , 0.024292 , 0.105984 , 0.623285 , 0.000117 , 0.000090 , 0.000053 , 0.000032 , 0.000267 , 0.000084 , 0.000298 , 0.001330 , 0.002009 , 0.022356 , 0.000007 , 0.000021 , 0.000027 , 0.000011 , 0.000024 , 0.000003 , 0.018402 , 0.034150 , 0.117264 , 0.763974 , 0.000165 , 0.000242 , 0.000263 , 0.000111 , 0.000422 , 0.000110 }, { 0.014013 , 0.014490 , 0.091040 , 0.639475 , 0.000078 , 0.000102 , 0.000061 , 0.000035 , 0.000176 , 0.000055 , 0.000217 , 0.000464 , 0.002126 , 0.018572 , 0.000004 , 0.000030 , 0.000034 , 0.000011 , 0.000013 , 0.000003 , 0.015331 , 0.018040 , 0.106688 , 0.755039 , 0.000106 , 0.000339 , 0.000318 , 0.000129 , 0.000276 , 0.000078 }, { 0.016820 , 0.024939 , 0.108292 , 0.629778 , 0.000126 , 0.000108 , 0.000040 , 0.000021 , 0.000203 , 0.000087 , 0.000303 , 0.001646 , 0.002321 , 0.022491 , 0.000007 , 0.000023 , 0.000019 , 0.000007 , 0.000020 , 0.000003 , 0.018452 , 0.038550 , 0.122871 , 0.757172 , 0.000167 , 0.000315 , 0.000224 , 0.000079 , 0.000333 , 0.000107 }, { 0.015097 , 0.017267 , 0.096716 , 0.636769 , 0.000104 , 0.000073 , 0.000052 , 0.000041 , 0.000190 , 0.000063 , 0.000359 , 0.000732 , 0.002209 , 0.030095 , 0.000007 , 0.000014 , 0.000020 , 0.000012 , 0.000021 , 0.000002 , 0.016437 , 0.021085 , 0.104165 , 0.756419 , 0.000141 , 0.000143 , 0.000170 , 0.000102 , 0.000280 , 0.000072 }, { 0.018770 , 0.049222 , 0.118438 , 0.646911 , 0.000125 , 0.000060 , 0.000000 , 0.000000 , 0.000178 , 0.000092 , 0.000526 , 0.006529 , 0.003421 , 0.038228 , 0.000013 , 0.000015 , 0.000000 , 0.000000 , 0.000033 , 0.000003 , 0.019977 , 0.064188 , 0.126014 , 0.736742 , 0.000155 , 0.000092 , 0.000000 , 0.000000 , 0.000262 , 0.000099 }, { 0.017087 , 0.026370 , 0.111113 , 0.621093 , 0.000135 , 0.000166 , 0.000095 , 0.000045 , 0.000283 , 0.000091 , 0.000426 , 0.002246 , 0.002999 , 0.030839 , 0.000013 , 0.000060 , 0.000085 , 0.000026 , 0.000040 , 0.000007 , 0.019041 , 0.038944 , 0.123874 , 0.763361 , 0.000202 , 0.000438 , 0.000403 , 0.000164 , 0.000488 , 0.000120 }, { 0.020896 , 0.033768 , 0.134116 , 0.653368 , 0.000181 , 0.000164 , 0.000089 , 0.000050 , 0.000340 , 0.000137 , 0.000233 , 0.002084 , 0.002014 , 0.014921 , 0.000021 , 0.000063 , 0.000053 , 0.000022 , 0.000046 , 0.000012 , 0.022057 , 0.044889 , 0.144768 , 0.727911 , 0.000298 , 0.000457 , 0.000363 , 0.000170 , 0.000548 , 0.000193 }, { 0.017770 , 0.023030 , 0.113949 , 0.626740 , 0.000156 , 0.000120 , 0.000067 , 0.000045 , 0.000290 , 0.000095 , 0.000395 , 0.001601 , 0.002601 , 0.028722 , 0.000010 , 0.000019 , 0.000032 , 0.000016 , 0.000026 , 0.000004 , 0.019513 , 0.032687 , 0.124762 , 0.758628 , 0.000214 , 0.000244 , 0.000278 , 0.000148 , 0.000411 , 0.000120 }, { 0.015468 , 0.024858 , 0.099203 , 0.638512 , 0.000091 , 0.000094 , 0.000046 , 0.000024 , 0.000186 , 0.000067 , 0.000385 , 0.002181 , 0.002949 , 0.030457 , 0.000006 , 0.000027 , 0.000035 , 0.000011 , 0.000023 , 0.000003 , 0.016845 , 0.034191 , 0.111153 , 0.752898 , 0.000114 , 0.000197 , 0.000165 , 0.000070 , 0.000278 , 0.000080 }, { 0.019396 , 0.017438 , 0.123504 , 0.642214 , 0.000172 , 0.000103 , 0.000045 , 0.000030 , 0.000248 , 0.000115 , 0.000310 , 0.000730 , 0.002022 , 0.020617 , 0.000014 , 0.000018 , 0.000020 , 0.000010 , 0.000023 , 0.000004 , 0.020832 , 0.021587 , 0.132286 , 0.743503 , 0.000258 , 0.000226 , 0.000188 , 0.000083 , 0.000375 , 0.000138 }, { 0.009869 , 0.009823 , 0.064099 , 0.591124 , 0.000043 , 0.000042 , 0.000048 , 0.000029 , 0.000101 , 0.000026 , 0.000358 , 0.000697 , 0.002709 , 0.042194 , 0.000002 , 0.000014 , 0.000021 , 0.000007 , 0.000011 , 0.000001 , 0.011594 , 0.013365 , 0.076981 , 0.798901 , 0.000053 , 0.000118 , 0.000167 , 0.000063 , 0.000148 , 0.000034 }, { 0.015964 , 0.027265 , 0.100632 , 0.645928 , 0.000077 , 0.000024 , 0.000002 , 0.000002 , 0.000171 , 0.000064 , 0.000212 , 0.001401 , 0.001351 , 0.017596 , 0.000004 , 0.000003 , 0.000002 , 0.000002 , 0.000020 , 0.000001 , 0.017179 , 0.035610 , 0.108203 , 0.747039 , 0.000100 , 0.000042 , 0.000010 , 0.000011 , 0.000282 , 0.000072 }, { 0.016588 , 0.016494 , 0.106117 , 0.629791 , 0.000121 , 0.000085 , 0.000040 , 0.000036 , 0.000227 , 0.000078 , 0.000157 , 0.000666 , 0.001037 , 0.012038 , 0.000005 , 0.000012 , 0.000012 , 0.000008 , 0.000015 , 0.000002 , 0.018296 , 0.025904 , 0.117247 , 0.759379 , 0.000174 , 0.000279 , 0.000241 , 0.000144 , 0.000418 , 0.000102 }, { 0.011990 , 0.015788 , 0.079855 , 0.561775 , 0.000083 , 0.000124 , 0.000135 , 0.000070 , 0.000148 , 0.000050 , 0.000380 , 0.000768 , 0.002951 , 0.037531 , 0.000007 , 0.000030 , 0.000039 , 0.000015 , 0.000012 , 0.000003 , 0.014514 , 0.019291 , 0.098326 , 0.816070 , 0.000123 , 0.000335 , 0.000414 , 0.000168 , 0.000226 , 0.000066 }, { 0.023242 , 0.037188 , 0.145548 , 0.636064 , 0.000181 , 0.000080 , 0.000010 , 0.000009 , 0.000462 , 0.000176 , 0.000451 , 0.003370 , 0.002954 , 0.025280 , 0.000019 , 0.000013 , 0.000010 , 0.000009 , 0.000070 , 0.000006 , 0.025047 , 0.051830 , 0.157273 , 0.737297 , 0.000255 , 0.000135 , 0.000038 , 0.000036 , 0.000772 , 0.000202 }, { 0.014580 , 0.019005 , 0.093508 , 0.620769 , 0.000084 , 0.000068 , 0.000031 , 0.000014 , 0.000156 , 0.000059 , 0.000265 , 0.000804 , 0.001669 , 0.022783 , 0.000003 , 0.000017 , 0.000019 , 0.000006 , 0.000014 , 0.000002 , 0.016278 , 0.023833 , 0.103132 , 0.770284 , 0.000103 , 0.000194 , 0.000166 , 0.000064 , 0.000249 , 0.000074 }, { 0.016118 , 0.029087 , 0.103393 , 0.592554 , 0.000132 , 0.000106 , 0.000045 , 0.000027 , 0.000228 , 0.000084 , 0.000421 , 0.001247 , 0.002702 , 0.033492 , 0.000011 , 0.000034 , 0.000025 , 0.000010 , 0.000017 , 0.000005 , 0.018468 , 0.035329 , 0.118268 , 0.787640 , 0.000203 , 0.000324 , 0.000203 , 0.000098 , 0.000329 , 0.000115 }, { 0.016103 , 0.022718 , 0.104805 , 0.601617 , 0.000135 , 0.000169 , 0.000077 , 0.000037 , 0.000231 , 0.000086 , 0.000339 , 0.001135 , 0.002751 , 0.024954 , 0.000009 , 0.000048 , 0.000062 , 0.000014 , 0.000024 , 0.000009 , 0.018429 , 0.030061 , 0.123767 , 0.780451 , 0.000185 , 0.000467 , 0.000417 , 0.000127 , 0.000366 , 0.000145 }, { 0.022743 , 0.047539 , 0.151095 , 0.614994 , 0.000251 , 0.000496 , 0.000497 , 0.000123 , 0.000586 , 0.000220 , 0.001170 , 0.004807 , 0.009480 , 0.060871 , 0.000025 , 0.000166 , 0.000258 , 0.000064 , 0.000088 , 0.000020 , 0.025304 , 0.058858 , 0.172601 , 0.747299 , 0.000307 , 0.000943 , 0.001159 , 0.000288 , 0.000789 , 0.000265 }, { 0.017107 , 0.019741 , 0.110377 , 0.647296 , 0.000114 , 0.000110 , 0.000096 , 0.000036 , 0.000231 , 0.000086 , 0.000374 , 0.001164 , 0.002938 , 0.027965 , 0.000006 , 0.000042 , 0.000061 , 0.000015 , 0.000027 , 0.000006 , 0.018396 , 0.027027 , 0.122804 , 0.742429 , 0.000144 , 0.000341 , 0.000431 , 0.000128 , 0.000375 , 0.000124 }, { 0.015771 , 0.023336 , 0.099832 , 0.637105 , 0.000097 , 0.000046 , 0.000001 , 0.000005 , 0.000220 , 0.000066 , 0.000488 , 0.001467 , 0.003136 , 0.039831 , 0.000009 , 0.000010 , 0.000001 , 0.000005 , 0.000026 , 0.000004 , 0.017197 , 0.026888 , 0.109052 , 0.754206 , 0.000123 , 0.000075 , 0.000002 , 0.000013 , 0.000295 , 0.000076 }, { 0.011425 , 0.012808 , 0.075787 , 0.524376 , 0.000089 , 0.000127 , 0.000130 , 0.000069 , 0.000166 , 0.000052 , 0.000328 , 0.000729 , 0.002296 , 0.031639 , 0.000005 , 0.000020 , 0.000023 , 0.000010 , 0.000012 , 0.000003 , 0.014452 , 0.021029 , 0.097653 , 0.841307 , 0.000144 , 0.000344 , 0.000361 , 0.000156 , 0.000275 , 0.000082 }, { 0.013113 , 0.020315 , 0.088044 , 0.620296 , 0.000100 , 0.000159 , 0.000172 , 0.000072 , 0.000153 , 0.000060 , 0.000283 , 0.001663 , 0.002491 , 0.027584 , 0.000008 , 0.000042 , 0.000051 , 0.000017 , 0.000018 , 0.000005 , 0.014513 , 0.030815 , 0.099834 , 0.771362 , 0.000147 , 0.000421 , 0.000501 , 0.000183 , 0.000256 , 0.000091 }, { 0.016903 , 0.020186 , 0.106889 , 0.615219 , 0.000112 , 0.000062 , 0.000032 , 0.000040 , 0.000302 , 0.000088 , 0.000809 , 0.001826 , 0.005352 , 0.054467 , 0.000012 , 0.000021 , 0.000022 , 0.000027 , 0.000042 , 0.000003 , 0.019164 , 0.026290 , 0.121950 , 0.768412 , 0.000149 , 0.000122 , 0.000097 , 0.000119 , 0.000446 , 0.000096 }, { 0.009964 , 0.011199 , 0.065735 , 0.572463 , 0.000058 , 0.000068 , 0.000085 , 0.000051 , 0.000101 , 0.000032 , 0.000297 , 0.000502 , 0.001751 , 0.036655 , 0.000003 , 0.000010 , 0.000016 , 0.000006 , 0.000008 , 0.000001 , 0.011895 , 0.014257 , 0.077381 , 0.812441 , 0.000081 , 0.000138 , 0.000205 , 0.000082 , 0.000167 , 0.000043 }, { 0.010902 , 0.014104 , 0.075297 , 0.638661 , 0.000055 , 0.000140 , 0.000117 , 0.000064 , 0.000136 , 0.000044 , 0.000543 , 0.002029 , 0.006296 , 0.066084 , 0.000002 , 0.000047 , 0.000051 , 0.000023 , 0.000026 , 0.000007 , 0.011920 , 0.017027 , 0.086273 , 0.757521 , 0.000059 , 0.000222 , 0.000207 , 0.000100 , 0.000181 , 0.000058 }, { 0.017524 , 0.026538 , 0.112930 , 0.610184 , 0.000167 , 0.000145 , 0.000031 , 0.000029 , 0.000252 , 0.000101 , 0.000436 , 0.002925 , 0.002970 , 0.032778 , 0.000010 , 0.000027 , 0.000018 , 0.000015 , 0.000035 , 0.000005 , 0.019593 , 0.041026 , 0.126728 , 0.771162 , 0.000217 , 0.000275 , 0.000118 , 0.000098 , 0.000396 , 0.000124 }, { 0.010840 , 0.012722 , 0.075290 , 0.601595 , 0.000074 , 0.000156 , 0.000193 , 0.000073 , 0.000128 , 0.000043 , 0.000244 , 0.000469 , 0.001890 , 0.025123 , 0.000004 , 0.000023 , 0.000037 , 0.000006 , 0.000010 , 0.000003 , 0.012589 , 0.016813 , 0.090542 , 0.789215 , 0.000113 , 0.000358 , 0.000547 , 0.000119 , 0.000196 , 0.000073 }, { 0.010038 , 0.013306 , 0.067869 , 0.559207 , 0.000053 , 0.000114 , 0.000122 , 0.000057 , 0.000097 , 0.000042 , 0.000530 , 0.000836 , 0.003308 , 0.059827 , 0.000004 , 0.000040 , 0.000038 , 0.000013 , 0.000010 , 0.000006 , 0.012302 , 0.016465 , 0.081899 , 0.819562 , 0.000069 , 0.000273 , 0.000295 , 0.000114 , 0.000131 , 0.000070 }, { 0.008633 , 0.009713 , 0.056339 , 0.515072 , 0.000041 , 0.000047 , 0.000049 , 0.000036 , 0.000072 , 0.000025 , 0.000360 , 0.000364 , 0.002501 , 0.043781 , 0.000002 , 0.000008 , 0.000010 , 0.000006 , 0.000006 , 0.000001 , 0.011332 , 0.012116 , 0.075620 , 0.850553 , 0.000054 , 0.000106 , 0.000122 , 0.000082 , 0.000116 , 0.000030 }, { 0.014340 , 0.020293 , 0.091816 , 0.613554 , 0.000090 , 0.000066 , 0.000014 , 0.000024 , 0.000161 , 0.000059 , 0.000354 , 0.001737 , 0.002413 , 0.030678 , 0.000006 , 0.000011 , 0.000006 , 0.000007 , 0.000021 , 0.000002 , 0.016183 , 0.029000 , 0.104468 , 0.775588 , 0.000116 , 0.000118 , 0.000049 , 0.000061 , 0.000260 , 0.000072 }, { 0.015356 , 0.025537 , 0.098743 , 0.614830 , 0.000090 , 0.000099 , 0.000073 , 0.000022 , 0.000189 , 0.000073 , 0.000597 , 0.002149 , 0.003050 , 0.049282 , 0.000007 , 0.000054 , 0.000062 , 0.000016 , 0.000032 , 0.000009 , 0.017208 , 0.032277 , 0.109498 , 0.771735 , 0.000112 , 0.000231 , 0.000220 , 0.000067 , 0.000297 , 0.000097 }, { 0.021713 , 0.037970 , 0.138335 , 0.649461 , 0.000239 , 0.000159 , 0.000039 , 0.000043 , 0.000425 , 0.000138 , 0.000470 , 0.002950 , 0.003335 , 0.027109 , 0.000021 , 0.000027 , 0.000018 , 0.000017 , 0.000049 , 0.000005 , 0.022909 , 0.051051 , 0.147481 , 0.729050 , 0.000311 , 0.000274 , 0.000137 , 0.000123 , 0.000657 , 0.000162 }, { 0.019582 , 0.036010 , 0.125837 , 0.627413 , 0.000186 , 0.000160 , 0.000056 , 0.000022 , 0.000414 , 0.000121 , 0.000663 , 0.002864 , 0.004297 , 0.043178 , 0.000014 , 0.000041 , 0.000054 , 0.000016 , 0.000051 , 0.000006 , 0.021542 , 0.043514 , 0.138550 , 0.751925 , 0.000228 , 0.000277 , 0.000149 , 0.000060 , 0.000528 , 0.000141 }, { 0.018061 , 0.054424 , 0.113950 , 0.622628 , 0.000125 , 0.000058 , 0.000008 , 0.000010 , 0.000297 , 0.000094 , 0.000360 , 0.002651 , 0.002397 , 0.024886 , 0.000007 , 0.000011 , 0.000005 , 0.000006 , 0.000031 , 0.000004 , 0.019896 , 0.067253 , 0.126264 , 0.758003 , 0.000161 , 0.000111 , 0.000037 , 0.000048 , 0.000469 , 0.000118 }, { 0.019256 , 0.028754 , 0.121917 , 0.659326 , 0.000141 , 0.000066 , 0.000024 , 0.000024 , 0.000261 , 0.000106 , 0.000245 , 0.001673 , 0.001675 , 0.016789 , 0.000010 , 0.000011 , 0.000016 , 0.000011 , 0.000035 , 0.000004 , 0.020207 , 0.035103 , 0.128630 , 0.728528 , 0.000178 , 0.000108 , 0.000079 , 0.000070 , 0.000412 , 0.000123 }, { 0.014388 , 0.013134 , 0.091804 , 0.628651 , 0.000095 , 0.000054 , 0.000018 , 0.000028 , 0.000140 , 0.000058 , 0.000262 , 0.001102 , 0.001589 , 0.024391 , 0.000007 , 0.000012 , 0.000006 , 0.000007 , 0.000014 , 0.000003 , 0.015836 , 0.018355 , 0.100339 , 0.764680 , 0.000131 , 0.000113 , 0.000054 , 0.000060 , 0.000214 , 0.000072 }, { 0.009669 , 0.009849 , 0.063440 , 0.590163 , 0.000050 , 0.000064 , 0.000069 , 0.000046 , 0.000088 , 0.000030 , 0.000247 , 0.000425 , 0.001776 , 0.029022 , 0.000002 , 0.000011 , 0.000015 , 0.000006 , 0.000005 , 0.000002 , 0.011536 , 0.012265 , 0.078024 , 0.800172 , 0.000069 , 0.000161 , 0.000203 , 0.000078 , 0.000124 , 0.000044 }, { 0.007845 , 0.005154 , 0.052605 , 0.697401 , 0.000032 , 0.000042 , 0.000089 , 0.000045 , 0.000046 , 0.000015 , 0.000802 , 0.000412 , 0.006134 , 0.146680 , 0.000004 , 0.000008 , 0.000018 , 0.000004 , 0.000013 , 0.000001 , 0.007845 , 0.005154 , 0.052605 , 0.697401 , 0.000032 , 0.000042 , 0.000089 , 0.000045 , 0.000046 , 0.000015 }, { 0.013735 , 0.023721 , 0.090943 , 0.623059 , 0.000084 , 0.000117 , 0.000096 , 0.000037 , 0.000178 , 0.000060 , 0.000241 , 0.001024 , 0.002482 , 0.021936 , 0.000007 , 0.000044 , 0.000036 , 0.000011 , 0.000020 , 0.000006 , 0.015396 , 0.030118 , 0.107735 , 0.767812 , 0.000127 , 0.000399 , 0.000383 , 0.000114 , 0.000303 , 0.000097 }, { 0.015748 , 0.021133 , 0.101304 , 0.602401 , 0.000117 , 0.000087 , 0.000043 , 0.000029 , 0.000220 , 0.000076 , 0.000320 , 0.001311 , 0.002226 , 0.025176 , 0.000006 , 0.000023 , 0.000023 , 0.000010 , 0.000018 , 0.000003 , 0.018050 , 0.029692 , 0.114762 , 0.781753 , 0.000150 , 0.000236 , 0.000218 , 0.000111 , 0.000335 , 0.000097 }, { 0.008541 , 0.008870 , 0.056256 , 0.585933 , 0.000044 , 0.000046 , 0.000097 , 0.000055 , 0.000068 , 0.000022 , 0.000466 , 0.000498 , 0.003040 , 0.062872 , 0.000004 , 0.000011 , 0.000021 , 0.000010 , 0.000004 , 0.000002 , 0.010082 , 0.010459 , 0.065804 , 0.803033 , 0.000056 , 0.000084 , 0.000163 , 0.000088 , 0.000082 , 0.000028 }, { 0.014314 , 0.021763 , 0.093916 , 0.586933 , 0.000090 , 0.000132 , 0.000109 , 0.000031 , 0.000173 , 0.000070 , 0.000304 , 0.000879 , 0.003642 , 0.025741 , 0.000005 , 0.000072 , 0.000083 , 0.000015 , 0.000016 , 0.000009 , 0.016692 , 0.027568 , 0.124327 , 0.792992 , 0.000130 , 0.000610 , 0.000709 , 0.000147 , 0.000308 , 0.000135 }, { 0.012398 , 0.018191 , 0.081490 , 0.674692 , 0.000072 , 0.000082 , 0.000120 , 0.000047 , 0.000093 , 0.000042 , 0.000377 , 0.001186 , 0.002681 , 0.041656 , 0.000022 , 0.000061 , 0.000102 , 0.000028 , 0.000015 , 0.000009 , 0.012860 , 0.019977 , 0.085689 , 0.726646 , 0.000088 , 0.000128 , 0.000199 , 0.000078 , 0.000114 , 0.000049 }, { 0.017983 , 0.021382 , 0.113329 , 0.605167 , 0.000124 , 0.000061 , 0.000005 , 0.000011 , 0.000238 , 0.000095 , 0.000465 , 0.001256 , 0.002983 , 0.030588 , 0.000010 , 0.000010 , 0.000003 , 0.000006 , 0.000027 , 0.000004 , 0.020392 , 0.030027 , 0.128804 , 0.775432 , 0.000193 , 0.000137 , 0.000031 , 0.000065 , 0.000452 , 0.000127 }, { 0.019623 , 0.031548 , 0.126745 , 0.654585 , 0.000173 , 0.000175 , 0.000094 , 0.000050 , 0.000290 , 0.000115 , 0.000270 , 0.002834 , 0.002086 , 0.018066 , 0.000017 , 0.000060 , 0.000079 , 0.000024 , 0.000024 , 0.000006 , 0.020805 , 0.047465 , 0.136843 , 0.729604 , 0.000256 , 0.000449 , 0.000380 , 0.000177 , 0.000410 , 0.000148 }, { 0.008899 , 0.010190 , 0.060713 , 0.643810 , 0.000044 , 0.000080 , 0.000135 , 0.000062 , 0.000084 , 0.000024 , 0.000212 , 0.000596 , 0.001783 , 0.031774 , 0.000004 , 0.000020 , 0.000034 , 0.000009 , 0.000008 , 0.000002 , 0.009598 , 0.012486 , 0.067629 , 0.758818 , 0.000059 , 0.000159 , 0.000302 , 0.000104 , 0.000122 , 0.000033 }, { 0.011145 , 0.012276 , 0.073136 , 0.604656 , 0.000057 , 0.000076 , 0.000066 , 0.000048 , 0.000096 , 0.000035 , 0.000252 , 0.000526 , 0.001962 , 0.025880 , 0.000004 , 0.000016 , 0.000017 , 0.000009 , 0.000010 , 0.000002 , 0.012975 , 0.016419 , 0.088640 , 0.787273 , 0.000088 , 0.000217 , 0.000223 , 0.000123 , 0.000186 , 0.000050 }, { 0.014388 , 0.023392 , 0.095482 , 0.617087 , 0.000109 , 0.000244 , 0.000200 , 0.000067 , 0.000241 , 0.000076 , 0.000289 , 0.002135 , 0.002137 , 0.032094 , 0.000008 , 0.000137 , 0.000118 , 0.000017 , 0.000052 , 0.000012 , 0.015925 , 0.037618 , 0.107654 , 0.771384 , 0.000155 , 0.000944 , 0.000859 , 0.000179 , 0.000523 , 0.000146 }, { 0.017354 , 0.027842 , 0.110585 , 0.614797 , 0.000141 , 0.000090 , 0.000040 , 0.000031 , 0.000277 , 0.000090 , 0.000593 , 0.001272 , 0.004050 , 0.040730 , 0.000010 , 0.000016 , 0.000019 , 0.000014 , 0.000035 , 0.000002 , 0.019573 , 0.033894 , 0.125434 , 0.767968 , 0.000179 , 0.000158 , 0.000122 , 0.000099 , 0.000413 , 0.000098 }, { 0.012813 , 0.010833 , 0.082377 , 0.608783 , 0.000069 , 0.000052 , 0.000049 , 0.000026 , 0.000114 , 0.000046 , 0.000179 , 0.000304 , 0.001280 , 0.016782 , 0.000004 , 0.000010 , 0.000015 , 0.000006 , 0.000008 , 0.000001 , 0.014584 , 0.013359 , 0.095408 , 0.782649 , 0.000103 , 0.000183 , 0.000249 , 0.000087 , 0.000195 , 0.000063 }, { 0.021266 , 0.026140 , 0.133735 , 0.630022 , 0.000202 , 0.000090 , 0.000000 , 0.000000 , 0.000416 , 0.000140 , 0.000434 , 0.001083 , 0.002660 , 0.026773 , 0.000013 , 0.000012 , 0.000000 , 0.000000 , 0.000050 , 0.000007 , 0.023192 , 0.030791 , 0.145287 , 0.748820 , 0.000269 , 0.000157 , 0.000000 , 0.000000 , 0.000678 , 0.000178 }, { 0.015619 , 0.029665 , 0.100679 , 0.614344 , 0.000098 , 0.000093 , 0.000067 , 0.000025 , 0.000187 , 0.000074 , 0.000303 , 0.001319 , 0.001788 , 0.022908 , 0.000006 , 0.000028 , 0.000037 , 0.000011 , 0.000017 , 0.000004 , 0.017574 , 0.038749 , 0.112213 , 0.772262 , 0.000152 , 0.000427 , 0.000484 , 0.000146 , 0.000350 , 0.000119 }, { 0.017084 , 0.038225 , 0.108770 , 0.570928 , 0.000129 , 0.000104 , 0.000024 , 0.000013 , 0.000312 , 0.000100 , 0.000820 , 0.003028 , 0.005627 , 0.052103 , 0.000013 , 0.000030 , 0.000020 , 0.000009 , 0.000039 , 0.000005 , 0.020573 , 0.049656 , 0.132469 , 0.798288 , 0.000190 , 0.000258 , 0.000098 , 0.000052 , 0.000483 , 0.000120 }, { 0.014598 , 0.025407 , 0.097009 , 0.572541 , 0.000124 , 0.000205 , 0.000193 , 0.000078 , 0.000242 , 0.000083 , 0.000348 , 0.001216 , 0.002568 , 0.028593 , 0.000008 , 0.000044 , 0.000053 , 0.000017 , 0.000019 , 0.000006 , 0.017295 , 0.034305 , 0.119810 , 0.803287 , 0.000202 , 0.000608 , 0.000715 , 0.000225 , 0.000388 , 0.000141 }, { 0.016486 , 0.025431 , 0.105143 , 0.604364 , 0.000140 , 0.000083 , 0.000038 , 0.000049 , 0.000227 , 0.000088 , 0.000904 , 0.002951 , 0.005801 , 0.068848 , 0.000008 , 0.000014 , 0.000018 , 0.000020 , 0.000022 , 0.000004 , 0.018730 , 0.032791 , 0.119303 , 0.776098 , 0.000159 , 0.000112 , 0.000086 , 0.000100 , 0.000277 , 0.000097 }, { 0.005560 , 0.008347 , 0.036396 , 0.380592 , 0.000025 , 0.000031 , 0.000037 , 0.000023 , 0.000047 , 0.000015 , 0.000314 , 0.000434 , 0.002078 , 0.053562 , 0.000001 , 0.000004 , 0.000006 , 0.000002 , 0.000004 , 0.000001 , 0.008714 , 0.012649 , 0.057397 , 0.920500 , 0.000038 , 0.000071 , 0.000092 , 0.000044 , 0.000077 , 0.000022 }, { 0.013015 , 0.011540 , 0.084499 , 0.631010 , 0.000078 , 0.000078 , 0.000059 , 0.000049 , 0.000150 , 0.000047 , 0.000258 , 0.000676 , 0.001634 , 0.023146 , 0.000004 , 0.000013 , 0.000014 , 0.000011 , 0.000014 , 0.000002 , 0.014497 , 0.015947 , 0.094689 , 0.764469 , 0.000101 , 0.000161 , 0.000142 , 0.000114 , 0.000226 , 0.000059 }, { 0.018952 , 0.033376 , 0.120006 , 0.653217 , 0.000143 , 0.000074 , 0.000009 , 0.000010 , 0.000276 , 0.000107 , 0.000226 , 0.001823 , 0.001651 , 0.015707 , 0.000007 , 0.000010 , 0.000006 , 0.000007 , 0.000025 , 0.000004 , 0.020080 , 0.044485 , 0.128556 , 0.733670 , 0.000186 , 0.000130 , 0.000043 , 0.000048 , 0.000430 , 0.000128 }, { 0.019878 , 0.029437 , 0.126848 , 0.627577 , 0.000200 , 0.000147 , 0.000013 , 0.000023 , 0.000340 , 0.000123 , 0.000364 , 0.001719 , 0.002300 , 0.022582 , 0.000012 , 0.000015 , 0.000005 , 0.000009 , 0.000029 , 0.000005 , 0.021935 , 0.037700 , 0.139891 , 0.752864 , 0.000255 , 0.000220 , 0.000050 , 0.000085 , 0.000498 , 0.000157 }, { 0.010449 , 0.014722 , 0.069250 , 0.552095 , 0.000073 , 0.000092 , 0.000148 , 0.000074 , 0.000138 , 0.000039 , 0.000369 , 0.000858 , 0.002455 , 0.041611 , 0.000005 , 0.000019 , 0.000031 , 0.000007 , 0.000013 , 0.000002 , 0.012819 , 0.019701 , 0.083554 , 0.825104 , 0.000100 , 0.000218 , 0.000343 , 0.000113 , 0.000217 , 0.000052 }, { 0.013510 , 0.016500 , 0.088482 , 0.582980 , 0.000106 , 0.000124 , 0.000095 , 0.000051 , 0.000185 , 0.000059 , 0.000411 , 0.000784 , 0.002480 , 0.034588 , 0.000006 , 0.000026 , 0.000030 , 0.000013 , 0.000020 , 0.000003 , 0.015862 , 0.021359 , 0.104615 , 0.799371 , 0.000146 , 0.000316 , 0.000311 , 0.000133 , 0.000297 , 0.000077 }, { 0.010761 , 0.014692 , 0.069137 , 0.599489 , 0.000053 , 0.000042 , 0.000034 , 0.000028 , 0.000092 , 0.000033 , 0.000253 , 0.000860 , 0.001659 , 0.027493 , 0.000003 , 0.000007 , 0.000010 , 0.000005 , 0.000009 , 0.000002 , 0.012555 , 0.020819 , 0.081080 , 0.792197 , 0.000079 , 0.000108 , 0.000125 , 0.000068 , 0.000150 , 0.000048 }, { 0.013807 , 0.023167 , 0.090363 , 0.594214 , 0.000092 , 0.000127 , 0.000108 , 0.000063 , 0.000217 , 0.000063 , 0.000409 , 0.001795 , 0.003439 , 0.030163 , 0.000011 , 0.000036 , 0.000036 , 0.000016 , 0.000044 , 0.000005 , 0.016405 , 0.033909 , 0.111896 , 0.789399 , 0.000152 , 0.000395 , 0.000364 , 0.000172 , 0.000460 , 0.000100 }, { 0.009222 , 0.012803 , 0.060743 , 0.547744 , 0.000049 , 0.000070 , 0.000092 , 0.000047 , 0.000092 , 0.000030 , 0.000306 , 0.000482 , 0.002080 , 0.033524 , 0.000004 , 0.000012 , 0.000019 , 0.000006 , 0.000007 , 0.000002 , 0.011417 , 0.017279 , 0.076915 , 0.829798 , 0.000086 , 0.000185 , 0.000277 , 0.000090 , 0.000157 , 0.000047 }, { 0.013058 , 0.012577 , 0.083875 , 0.656744 , 0.000076 , 0.000054 , 0.000044 , 0.000037 , 0.000137 , 0.000045 , 0.000166 , 0.000377 , 0.000918 , 0.016559 , 0.000006 , 0.000010 , 0.000020 , 0.000011 , 0.000011 , 0.000002 , 0.013875 , 0.014228 , 0.087961 , 0.743583 , 0.000108 , 0.000109 , 0.000156 , 0.000109 , 0.000184 , 0.000058 }, { 0.014920 , 0.020640 , 0.095476 , 0.608678 , 0.000085 , 0.000068 , 0.000055 , 0.000033 , 0.000165 , 0.000063 , 0.000229 , 0.000776 , 0.001400 , 0.019134 , 0.000007 , 0.000017 , 0.000018 , 0.000010 , 0.000012 , 0.000002 , 0.016879 , 0.027064 , 0.107734 , 0.778944 , 0.000145 , 0.000223 , 0.000213 , 0.000118 , 0.000253 , 0.000078 }, { 0.019631 , 0.037547 , 0.124866 , 0.587068 , 0.000182 , 0.000127 , 0.000060 , 0.000031 , 0.000454 , 0.000130 , 0.000767 , 0.002741 , 0.005217 , 0.046157 , 0.000015 , 0.000040 , 0.000055 , 0.000020 , 0.000040 , 0.000008 , 0.022622 , 0.052026 , 0.143934 , 0.782216 , 0.000251 , 0.000313 , 0.000259 , 0.000133 , 0.000645 , 0.000173 }, { 0.018598 , 0.023272 , 0.120308 , 0.649325 , 0.000161 , 0.000181 , 0.000109 , 0.000042 , 0.000293 , 0.000109 , 0.000449 , 0.002849 , 0.002624 , 0.033619 , 0.000020 , 0.000066 , 0.000089 , 0.000024 , 0.000030 , 0.000009 , 0.019759 , 0.031717 , 0.126964 , 0.737803 , 0.000217 , 0.000341 , 0.000290 , 0.000111 , 0.000375 , 0.000131 }, { 0.011022 , 0.013085 , 0.072670 , 0.661867 , 0.000057 , 0.000074 , 0.000105 , 0.000058 , 0.000112 , 0.000033 , 0.000344 , 0.001599 , 0.003035 , 0.039520 , 0.000006 , 0.000023 , 0.000042 , 0.000019 , 0.000016 , 0.000004 , 0.011738 , 0.017161 , 0.080056 , 0.740232 , 0.000071 , 0.000136 , 0.000216 , 0.000103 , 0.000145 , 0.000043 }, { 0.008571 , 0.008335 , 0.056097 , 0.562184 , 0.000039 , 0.000048 , 0.000064 , 0.000047 , 0.000063 , 0.000023 , 0.000270 , 0.000553 , 0.001845 , 0.033264 , 0.000002 , 0.000008 , 0.000013 , 0.000006 , 0.000004 , 0.000001 , 0.010431 , 0.013027 , 0.068323 , 0.821342 , 0.000056 , 0.000126 , 0.000179 , 0.000093 , 0.000092 , 0.000030 }, { 0.007852 , 0.007590 , 0.051297 , 0.470870 , 0.000043 , 0.000052 , 0.000054 , 0.000037 , 0.000078 , 0.000024 , 0.000297 , 0.000488 , 0.001977 , 0.041896 , 0.000003 , 0.000009 , 0.000012 , 0.000006 , 0.000008 , 0.000001 , 0.010684 , 0.011502 , 0.069527 , 0.876750 , 0.000066 , 0.000144 , 0.000159 , 0.000085 , 0.000145 , 0.000034 }, { 0.012315 , 0.014231 , 0.079271 , 0.643671 , 0.000054 , 0.000053 , 0.000038 , 0.000020 , 0.000135 , 0.000039 , 0.000350 , 0.001506 , 0.002544 , 0.034085 , 0.000003 , 0.000019 , 0.000022 , 0.000008 , 0.000011 , 0.000001 , 0.013324 , 0.020527 , 0.087973 , 0.754679 , 0.000064 , 0.000125 , 0.000138 , 0.000062 , 0.000185 , 0.000044 }, { 0.008985 , 0.012694 , 0.059714 , 0.506414 , 0.000054 , 0.000082 , 0.000111 , 0.000054 , 0.000079 , 0.000033 , 0.000560 , 0.000725 , 0.003774 , 0.062903 , 0.000003 , 0.000019 , 0.000024 , 0.000008 , 0.000006 , 0.000003 , 0.011902 , 0.016628 , 0.079876 , 0.853796 , 0.000071 , 0.000197 , 0.000252 , 0.000089 , 0.000111 , 0.000048 }, { 0.020360 , 0.041482 , 0.129209 , 0.612656 , 0.000213 , 0.000110 , 0.000014 , 0.000017 , 0.000281 , 0.000143 , 0.000697 , 0.004250 , 0.004435 , 0.041711 , 0.000023 , 0.000030 , 0.000011 , 0.000011 , 0.000037 , 0.000012 , 0.022717 , 0.054692 , 0.143147 , 0.761607 , 0.000274 , 0.000197 , 0.000043 , 0.000050 , 0.000402 , 0.000187 }, { 0.020582 , 0.030114 , 0.130635 , 0.631219 , 0.000229 , 0.000163 , 0.000022 , 0.000026 , 0.000555 , 0.000141 , 0.001044 , 0.002916 , 0.006703 , 0.070064 , 0.000015 , 0.000022 , 0.000016 , 0.000017 , 0.000085 , 0.000012 , 0.022302 , 0.035315 , 0.141382 , 0.745968 , 0.000258 , 0.000200 , 0.000044 , 0.000052 , 0.000720 , 0.000162 }, { 0.018423 , 0.030607 , 0.116936 , 0.641634 , 0.000141 , 0.000081 , 0.000039 , 0.000035 , 0.000326 , 0.000096 , 0.000430 , 0.003198 , 0.003166 , 0.028339 , 0.000011 , 0.000023 , 0.000022 , 0.000016 , 0.000055 , 0.000005 , 0.020027 , 0.042354 , 0.128473 , 0.744198 , 0.000181 , 0.000157 , 0.000122 , 0.000101 , 0.000529 , 0.000113 }, { 0.013172 , 0.014652 , 0.084117 , 0.547646 , 0.000073 , 0.000050 , 0.000032 , 0.000026 , 0.000138 , 0.000053 , 0.000403 , 0.001145 , 0.002681 , 0.036083 , 0.000004 , 0.000010 , 0.000013 , 0.000011 , 0.000011 , 0.000001 , 0.016240 , 0.022186 , 0.103732 , 0.824496 , 0.000100 , 0.000123 , 0.000134 , 0.000099 , 0.000201 , 0.000062 }, { 0.011752 , 0.020059 , 0.076370 , 0.558434 , 0.000080 , 0.000076 , 0.000096 , 0.000051 , 0.000128 , 0.000050 , 0.000509 , 0.001174 , 0.003253 , 0.049383 , 0.000008 , 0.000019 , 0.000038 , 0.000014 , 0.000017 , 0.000004 , 0.014425 , 0.025888 , 0.094449 , 0.818247 , 0.000129 , 0.000184 , 0.000314 , 0.000119 , 0.000207 , 0.000074 }, { 0.016648 , 0.028559 , 0.107291 , 0.593729 , 0.000145 , 0.000135 , 0.000060 , 0.000031 , 0.000265 , 0.000092 , 0.000295 , 0.001248 , 0.001987 , 0.021883 , 0.000007 , 0.000025 , 0.000026 , 0.000008 , 0.000021 , 0.000004 , 0.019044 , 0.041099 , 0.124110 , 0.785457 , 0.000221 , 0.000423 , 0.000393 , 0.000116 , 0.000457 , 0.000128 }, { 0.018105 , 0.025303 , 0.115259 , 0.635644 , 0.000143 , 0.000093 , 0.000041 , 0.000037 , 0.000258 , 0.000101 , 0.000269 , 0.001202 , 0.001721 , 0.019336 , 0.000015 , 0.000013 , 0.000015 , 0.000010 , 0.000028 , 0.000005 , 0.019746 , 0.032816 , 0.125756 , 0.751029 , 0.000242 , 0.000177 , 0.000155 , 0.000103 , 0.000450 , 0.000138 }, { 0.010242 , 0.011692 , 0.067333 , 0.572669 , 0.000057 , 0.000073 , 0.000067 , 0.000044 , 0.000120 , 0.000035 , 0.000429 , 0.000732 , 0.003044 , 0.051034 , 0.000005 , 0.000015 , 0.000021 , 0.000009 , 0.000016 , 0.000002 , 0.012244 , 0.014820 , 0.081550 , 0.810950 , 0.000074 , 0.000132 , 0.000145 , 0.000085 , 0.000185 , 0.000043 }, { 0.015343 , 0.019407 , 0.097872 , 0.632479 , 0.000091 , 0.000065 , 0.000025 , 0.000017 , 0.000189 , 0.000065 , 0.000181 , 0.000701 , 0.001186 , 0.015136 , 0.000005 , 0.000014 , 0.000017 , 0.000006 , 0.000015 , 0.000002 , 0.016865 , 0.024846 , 0.107352 , 0.759685 , 0.000139 , 0.000192 , 0.000156 , 0.000080 , 0.000314 , 0.000087 }, { 0.008610 , 0.009831 , 0.056378 , 0.500936 , 0.000042 , 0.000064 , 0.000049 , 0.000028 , 0.000090 , 0.000028 , 0.000295 , 0.000702 , 0.002004 , 0.040483 , 0.000003 , 0.000018 , 0.000018 , 0.000008 , 0.000010 , 0.000002 , 0.011257 , 0.015767 , 0.073902 , 0.859205 , 0.000069 , 0.000221 , 0.000213 , 0.000094 , 0.000169 , 0.000045 }, { 0.017099 , 0.032057 , 0.109290 , 0.597868 , 0.000132 , 0.000099 , 0.000077 , 0.000029 , 0.000224 , 0.000098 , 0.000353 , 0.001487 , 0.002408 , 0.024744 , 0.000014 , 0.000023 , 0.000037 , 0.000010 , 0.000024 , 0.000004 , 0.019617 , 0.043954 , 0.126646 , 0.781225 , 0.000256 , 0.000331 , 0.000470 , 0.000125 , 0.000427 , 0.000133 }, { 0.018129 , 0.022684 , 0.117836 , 0.657819 , 0.000125 , 0.000149 , 0.000104 , 0.000041 , 0.000231 , 0.000104 , 0.000297 , 0.000991 , 0.002077 , 0.020136 , 0.000011 , 0.000060 , 0.000062 , 0.000024 , 0.000035 , 0.000011 , 0.019225 , 0.027178 , 0.125464 , 0.731631 , 0.000166 , 0.000431 , 0.000415 , 0.000163 , 0.000402 , 0.000153 }, { 0.010516 , 0.013604 , 0.067786 , 0.513489 , 0.000064 , 0.000059 , 0.000044 , 0.000035 , 0.000108 , 0.000037 , 0.000248 , 0.000770 , 0.001612 , 0.027449 , 0.000003 , 0.000015 , 0.000013 , 0.000007 , 0.000010 , 0.000002 , 0.013470 , 0.021984 , 0.086609 , 0.850009 , 0.000095 , 0.000238 , 0.000194 , 0.000103 , 0.000230 , 0.000058 }, { 0.018259 , 0.023185 , 0.117580 , 0.643439 , 0.000166 , 0.000131 , 0.000084 , 0.000031 , 0.000283 , 0.000104 , 0.000323 , 0.001853 , 0.002490 , 0.022788 , 0.000008 , 0.000034 , 0.000066 , 0.000013 , 0.000029 , 0.000006 , 0.019705 , 0.034802 , 0.130372 , 0.743077 , 0.000215 , 0.000319 , 0.000413 , 0.000118 , 0.000467 , 0.000146 }, { 0.011137 , 0.014032 , 0.073260 , 0.539470 , 0.000079 , 0.000088 , 0.000106 , 0.000058 , 0.000139 , 0.000042 , 0.000342 , 0.000566 , 0.002229 , 0.034800 , 0.000004 , 0.000011 , 0.000020 , 0.000008 , 0.000010 , 0.000002 , 0.013874 , 0.018729 , 0.089972 , 0.832724 , 0.000111 , 0.000172 , 0.000273 , 0.000109 , 0.000204 , 0.000058 }, { 0.017762 , 0.028147 , 0.114060 , 0.624778 , 0.000137 , 0.000119 , 0.000052 , 0.000023 , 0.000219 , 0.000097 , 0.000508 , 0.001641 , 0.003836 , 0.035540 , 0.000010 , 0.000041 , 0.000034 , 0.000012 , 0.000029 , 0.000005 , 0.019653 , 0.033494 , 0.128164 , 0.759157 , 0.000177 , 0.000277 , 0.000190 , 0.000085 , 0.000342 , 0.000118 }, { 0.017799 , 0.027907 , 0.116381 , 0.602755 , 0.000145 , 0.000181 , 0.000153 , 0.000059 , 0.000242 , 0.000108 , 0.000418 , 0.002233 , 0.004553 , 0.029448 , 0.000014 , 0.000075 , 0.000104 , 0.000029 , 0.000025 , 0.000008 , 0.020054 , 0.043596 , 0.146251 , 0.772955 , 0.000226 , 0.000662 , 0.000775 , 0.000252 , 0.000412 , 0.000155 }, { 0.012424 , 0.015424 , 0.079589 , 0.603763 , 0.000062 , 0.000045 , 0.000033 , 0.000023 , 0.000123 , 0.000043 , 0.000183 , 0.000795 , 0.001221 , 0.017653 , 0.000002 , 0.000007 , 0.000010 , 0.000004 , 0.000008 , 0.000001 , 0.014254 , 0.025206 , 0.092244 , 0.786818 , 0.000086 , 0.000144 , 0.000180 , 0.000068 , 0.000214 , 0.000054 }, { 0.014365 , 0.027716 , 0.096808 , 0.548661 , 0.000137 , 0.000276 , 0.000262 , 0.000098 , 0.000234 , 0.000095 , 0.000343 , 0.001843 , 0.002351 , 0.027600 , 0.000008 , 0.000083 , 0.000089 , 0.000017 , 0.000021 , 0.000012 , 0.017397 , 0.046900 , 0.112580 , 0.820167 , 0.000214 , 0.001220 , 0.001274 , 0.000255 , 0.000503 , 0.000239 }, { 0.006732 , 0.004568 , 0.045578 , 0.525899 , 0.000030 , 0.000062 , 0.000088 , 0.000050 , 0.000051 , 0.000016 , 0.000260 , 0.000223 , 0.001890 , 0.040057 , 0.000002 , 0.000011 , 0.000011 , 0.000004 , 0.000006 , 0.000001 , 0.008668 , 0.006170 , 0.059994 , 0.846148 , 0.000040 , 0.000155 , 0.000169 , 0.000072 , 0.000097 , 0.000023 }, { 0.022090 , 0.029998 , 0.146385 , 0.622112 , 0.000287 , 0.000503 , 0.000271 , 0.000161 , 0.000470 , 0.000219 , 0.000626 , 0.003173 , 0.004080 , 0.040340 , 0.000050 , 0.000112 , 0.000118 , 0.000033 , 0.000060 , 0.000026 , 0.024200 , 0.041185 , 0.158598 , 0.749045 , 0.000458 , 0.000836 , 0.000665 , 0.000245 , 0.000650 , 0.000311 }, { 0.009344 , 0.013114 , 0.060903 , 0.585355 , 0.000045 , 0.000048 , 0.000067 , 0.000045 , 0.000081 , 0.000026 , 0.000355 , 0.001143 , 0.002415 , 0.045974 , 0.000003 , 0.000011 , 0.000018 , 0.000008 , 0.000009 , 0.000001 , 0.010997 , 0.017756 , 0.071951 , 0.803528 , 0.000054 , 0.000089 , 0.000149 , 0.000076 , 0.000119 , 0.000031 }, { 0.014657 , 0.018798 , 0.093385 , 0.603495 , 0.000093 , 0.000055 , 0.000039 , 0.000027 , 0.000165 , 0.000063 , 0.000323 , 0.000984 , 0.002258 , 0.027259 , 0.000007 , 0.000012 , 0.000025 , 0.000010 , 0.000016 , 0.000003 , 0.016722 , 0.026066 , 0.109168 , 0.782865 , 0.000141 , 0.000145 , 0.000197 , 0.000107 , 0.000277 , 0.000084 }, { 0.016843 , 0.021733 , 0.107240 , 0.662259 , 0.000130 , 0.000069 , 0.000048 , 0.000038 , 0.000210 , 0.000075 , 0.000312 , 0.001151 , 0.001939 , 0.024158 , 0.000010 , 0.000007 , 0.000021 , 0.000011 , 0.000030 , 0.000003 , 0.017739 , 0.026042 , 0.112907 , 0.731318 , 0.000171 , 0.000093 , 0.000137 , 0.000078 , 0.000314 , 0.000084 }, { 0.008509 , 0.010719 , 0.057571 , 0.528913 , 0.000046 , 0.000114 , 0.000100 , 0.000060 , 0.000097 , 0.000030 , 0.000254 , 0.000308 , 0.001781 , 0.032864 , 0.000002 , 0.000019 , 0.000016 , 0.000006 , 0.000007 , 0.000002 , 0.010764 , 0.013507 , 0.071208 , 0.842791 , 0.000060 , 0.000306 , 0.000274 , 0.000117 , 0.000165 , 0.000052 }, { 0.022640 , 0.042439 , 0.141455 , 0.671056 , 0.000162 , 0.000055 , 0.000000 , 0.000000 , 0.000385 , 0.000150 , 0.000824 , 0.011378 , 0.005194 , 0.050521 , 0.000004 , 0.000016 , 0.000000 , 0.000000 , 0.000088 , 0.000004 , 0.023218 , 0.048518 , 0.144996 , 0.707625 , 0.000166 , 0.000064 , 0.000000 , 0.000000 , 0.000445 , 0.000153 }, { 0.016955 , 0.022873 , 0.107499 , 0.653761 , 0.000116 , 0.000052 , 0.000006 , 0.000009 , 0.000165 , 0.000077 , 0.000233 , 0.000971 , 0.001421 , 0.017226 , 0.000007 , 0.000004 , 0.000004 , 0.000005 , 0.000019 , 0.000002 , 0.018109 , 0.026756 , 0.114680 , 0.738739 , 0.000150 , 0.000067 , 0.000026 , 0.000038 , 0.000260 , 0.000084 }, { 0.019986 , 0.026533 , 0.126643 , 0.672266 , 0.000181 , 0.000104 , 0.000043 , 0.000047 , 0.000282 , 0.000120 , 0.000374 , 0.003256 , 0.002484 , 0.034416 , 0.000027 , 0.000038 , 0.000026 , 0.000029 , 0.000056 , 0.000009 , 0.020473 , 0.030339 , 0.129890 , 0.715195 , 0.000219 , 0.000149 , 0.000071 , 0.000078 , 0.000343 , 0.000132 }, { 0.013709 , 0.016358 , 0.088810 , 0.625044 , 0.000085 , 0.000082 , 0.000038 , 0.000021 , 0.000175 , 0.000055 , 0.000204 , 0.000576 , 0.001373 , 0.018294 , 0.000004 , 0.000011 , 0.000016 , 0.000006 , 0.000021 , 0.000002 , 0.015219 , 0.021063 , 0.098092 , 0.768338 , 0.000114 , 0.000174 , 0.000191 , 0.000077 , 0.000333 , 0.000067 }, { 0.015105 , 0.015484 , 0.098684 , 0.625256 , 0.000117 , 0.000133 , 0.000088 , 0.000050 , 0.000219 , 0.000070 , 0.000286 , 0.000555 , 0.002240 , 0.023426 , 0.000007 , 0.000026 , 0.000028 , 0.000009 , 0.000021 , 0.000003 , 0.016687 , 0.019082 , 0.112620 , 0.764832 , 0.000153 , 0.000301 , 0.000287 , 0.000101 , 0.000341 , 0.000091 }, { 0.006912 , 0.005554 , 0.046243 , 0.571370 , 0.000028 , 0.000049 , 0.000073 , 0.000048 , 0.000046 , 0.000015 , 0.000212 , 0.000376 , 0.001478 , 0.032682 , 0.000001 , 0.000006 , 0.000008 , 0.000003 , 0.000004 , 0.000001 , 0.008411 , 0.008342 , 0.056070 , 0.816679 , 0.000037 , 0.000102 , 0.000136 , 0.000068 , 0.000073 , 0.000021 }, { 0.011763 , 0.015124 , 0.076629 , 0.568594 , 0.000077 , 0.000090 , 0.000086 , 0.000048 , 0.000145 , 0.000047 , 0.000259 , 0.000688 , 0.001676 , 0.024042 , 0.000004 , 0.000018 , 0.000018 , 0.000006 , 0.000013 , 0.000002 , 0.014609 , 0.022623 , 0.094031 , 0.812597 , 0.000116 , 0.000335 , 0.000297 , 0.000110 , 0.000298 , 0.000079 }, { 0.009230 , 0.008935 , 0.060818 , 0.554057 , 0.000052 , 0.000069 , 0.000107 , 0.000057 , 0.000087 , 0.000029 , 0.000269 , 0.000668 , 0.001724 , 0.032161 , 0.000003 , 0.000013 , 0.000020 , 0.000006 , 0.000008 , 0.000002 , 0.011376 , 0.014428 , 0.073067 , 0.826101 , 0.000072 , 0.000177 , 0.000282 , 0.000098 , 0.000155 , 0.000043 }, { 0.011174 , 0.013309 , 0.072065 , 0.594058 , 0.000058 , 0.000048 , 0.000046 , 0.000035 , 0.000133 , 0.000034 , 0.000385 , 0.000562 , 0.002697 , 0.044973 , 0.000003 , 0.000010 , 0.000013 , 0.000007 , 0.000015 , 0.000002 , 0.013007 , 0.016456 , 0.085400 , 0.794881 , 0.000073 , 0.000098 , 0.000127 , 0.000072 , 0.000215 , 0.000042 }, { 0.010812 , 0.012114 , 0.070429 , 0.571101 , 0.000057 , 0.000059 , 0.000054 , 0.000042 , 0.000122 , 0.000036 , 0.000386 , 0.000896 , 0.002661 , 0.043392 , 0.000004 , 0.000016 , 0.000017 , 0.000010 , 0.000013 , 0.000002 , 0.012920 , 0.016947 , 0.084219 , 0.811900 , 0.000075 , 0.000137 , 0.000149 , 0.000095 , 0.000181 , 0.000047 }, { 0.017425 , 0.023832 , 0.110188 , 0.669121 , 0.000106 , 0.000048 , 0.000019 , 0.000024 , 0.000206 , 0.000078 , 0.000530 , 0.003084 , 0.003486 , 0.043683 , 0.000010 , 0.000015 , 0.000014 , 0.000016 , 0.000048 , 0.000004 , 0.018084 , 0.028332 , 0.114618 , 0.723234 , 0.000118 , 0.000066 , 0.000031 , 0.000040 , 0.000266 , 0.000083 }, { 0.011289 , 0.011991 , 0.072557 , 0.661357 , 0.000054 , 0.000035 , 0.000048 , 0.000035 , 0.000093 , 0.000030 , 0.000197 , 0.000497 , 0.001418 , 0.022049 , 0.000005 , 0.000007 , 0.000016 , 0.000009 , 0.000012 , 0.000001 , 0.011979 , 0.014583 , 0.077418 , 0.741776 , 0.000075 , 0.000070 , 0.000133 , 0.000078 , 0.000154 , 0.000034 }, { 0.017411 , 0.036143 , 0.112699 , 0.640822 , 0.000150 , 0.000134 , 0.000079 , 0.000062 , 0.000264 , 0.000099 , 0.000381 , 0.001748 , 0.002708 , 0.028157 , 0.000012 , 0.000029 , 0.000034 , 0.000024 , 0.000030 , 0.000005 , 0.018849 , 0.044086 , 0.122675 , 0.746247 , 0.000190 , 0.000265 , 0.000234 , 0.000175 , 0.000377 , 0.000120 }, { 0.016550 , 0.020681 , 0.106384 , 0.649198 , 0.000126 , 0.000113 , 0.000042 , 0.000031 , 0.000222 , 0.000079 , 0.000186 , 0.001157 , 0.001276 , 0.014529 , 0.000004 , 0.000016 , 0.000021 , 0.000009 , 0.000024 , 0.000003 , 0.017726 , 0.029442 , 0.114710 , 0.742946 , 0.000150 , 0.000250 , 0.000231 , 0.000107 , 0.000422 , 0.000100 }, { 0.015528 , 0.021102 , 0.099199 , 0.606490 , 0.000106 , 0.000067 , 0.000036 , 0.000028 , 0.000221 , 0.000072 , 0.000208 , 0.000821 , 0.001373 , 0.016390 , 0.000005 , 0.000011 , 0.000015 , 0.000008 , 0.000020 , 0.000002 , 0.017645 , 0.027255 , 0.112734 , 0.779492 , 0.000151 , 0.000187 , 0.000232 , 0.000121 , 0.000402 , 0.000090 }, { 0.014019 , 0.019862 , 0.091521 , 0.569049 , 0.000123 , 0.000131 , 0.000131 , 0.000078 , 0.000227 , 0.000072 , 0.000306 , 0.000951 , 0.002019 , 0.025813 , 0.000007 , 0.000025 , 0.000031 , 0.000013 , 0.000019 , 0.000004 , 0.016680 , 0.029751 , 0.109424 , 0.808336 , 0.000190 , 0.000443 , 0.000533 , 0.000222 , 0.000415 , 0.000125 }, { 0.014647 , 0.023145 , 0.096246 , 0.646429 , 0.000107 , 0.000118 , 0.000150 , 0.000063 , 0.000198 , 0.000061 , 0.000208 , 0.001900 , 0.001945 , 0.019030 , 0.000006 , 0.000027 , 0.000048 , 0.000013 , 0.000015 , 0.000004 , 0.015694 , 0.035175 , 0.107054 , 0.747530 , 0.000142 , 0.000281 , 0.000435 , 0.000140 , 0.000277 , 0.000086 }, { 0.016348 , 0.038210 , 0.104350 , 0.610894 , 0.000119 , 0.000081 , 0.000032 , 0.000032 , 0.000252 , 0.000077 , 0.000823 , 0.003589 , 0.005566 , 0.061049 , 0.000010 , 0.000021 , 0.000020 , 0.000016 , 0.000028 , 0.000005 , 0.018467 , 0.045257 , 0.118458 , 0.770713 , 0.000141 , 0.000132 , 0.000075 , 0.000075 , 0.000326 , 0.000090 }, { 0.014850 , 0.013981 , 0.094256 , 0.622801 , 0.000081 , 0.000040 , 0.000003 , 0.000005 , 0.000150 , 0.000059 , 0.000247 , 0.000755 , 0.001660 , 0.022428 , 0.000004 , 0.000004 , 0.000002 , 0.000004 , 0.000016 , 0.000002 , 0.016466 , 0.018633 , 0.105025 , 0.768546 , 0.000099 , 0.000064 , 0.000015 , 0.000024 , 0.000249 , 0.000068 }, { 0.014594 , 0.010961 , 0.094892 , 0.644859 , 0.000111 , 0.000111 , 0.000089 , 0.000058 , 0.000187 , 0.000064 , 0.000295 , 0.000863 , 0.001941 , 0.024347 , 0.000004 , 0.000013 , 0.000029 , 0.000012 , 0.000019 , 0.000003 , 0.015802 , 0.016084 , 0.103467 , 0.750339 , 0.000132 , 0.000180 , 0.000258 , 0.000123 , 0.000291 , 0.000081 }, { 0.016954 , 0.022064 , 0.109848 , 0.643948 , 0.000157 , 0.000147 , 0.000080 , 0.000044 , 0.000263 , 0.000089 , 0.000348 , 0.001480 , 0.002117 , 0.024998 , 0.000013 , 0.000021 , 0.000035 , 0.000016 , 0.000038 , 0.000003 , 0.018346 , 0.028932 , 0.117176 , 0.746293 , 0.000214 , 0.000237 , 0.000255 , 0.000114 , 0.000427 , 0.000102 }, { 0.009661 , 0.012831 , 0.063942 , 0.590159 , 0.000047 , 0.000080 , 0.000078 , 0.000060 , 0.000090 , 0.000029 , 0.000467 , 0.000905 , 0.003409 , 0.049547 , 0.000004 , 0.000022 , 0.000028 , 0.000012 , 0.000018 , 0.000002 , 0.011569 , 0.016170 , 0.076520 , 0.799154 , 0.000061 , 0.000163 , 0.000177 , 0.000103 , 0.000156 , 0.000036 }, { 0.005512 , 0.005281 , 0.037570 , 0.502744 , 0.000022 , 0.000040 , 0.000073 , 0.000034 , 0.000041 , 0.000011 , 0.000512 , 0.000263 , 0.003749 , 0.108992 , 0.000002 , 0.000011 , 0.000016 , 0.000005 , 0.000003 , 0.000001 , 0.007245 , 0.006306 , 0.050496 , 0.855127 , 0.000027 , 0.000086 , 0.000137 , 0.000053 , 0.000053 , 0.000015 }, { 0.008960 , 0.014242 , 0.058332 , 0.488324 , 0.000052 , 0.000058 , 0.000053 , 0.000034 , 0.000094 , 0.000033 , 0.000487 , 0.000604 , 0.003174 , 0.060431 , 0.000005 , 0.000012 , 0.000014 , 0.000008 , 0.000011 , 0.000002 , 0.012044 , 0.018093 , 0.079787 , 0.864495 , 0.000084 , 0.000128 , 0.000138 , 0.000082 , 0.000158 , 0.000048 }, { 0.017421 , 0.028354 , 0.110905 , 0.618490 , 0.000144 , 0.000083 , 0.000046 , 0.000034 , 0.000290 , 0.000089 , 0.000491 , 0.001450 , 0.003301 , 0.035491 , 0.000013 , 0.000013 , 0.000020 , 0.000013 , 0.000049 , 0.000004 , 0.019417 , 0.033979 , 0.123713 , 0.765476 , 0.000189 , 0.000132 , 0.000137 , 0.000096 , 0.000500 , 0.000106 }, { 0.015012 , 0.017545 , 0.095809 , 0.642584 , 0.000095 , 0.000059 , 0.000016 , 0.000023 , 0.000154 , 0.000064 , 0.000275 , 0.001475 , 0.001880 , 0.022448 , 0.000006 , 0.000009 , 0.000006 , 0.000007 , 0.000017 , 0.000002 , 0.016354 , 0.027686 , 0.104705 , 0.751576 , 0.000125 , 0.000109 , 0.000057 , 0.000060 , 0.000256 , 0.000077 }, { 0.015395 , 0.017075 , 0.099483 , 0.654355 , 0.000093 , 0.000085 , 0.000048 , 0.000028 , 0.000202 , 0.000066 , 0.000158 , 0.000611 , 0.001241 , 0.012792 , 0.000006 , 0.000034 , 0.000028 , 0.000009 , 0.000020 , 0.000005 , 0.016387 , 0.022135 , 0.110404 , 0.740460 , 0.000144 , 0.000350 , 0.000290 , 0.000119 , 0.000382 , 0.000109 }, { 0.011292 , 0.016086 , 0.075283 , 0.580439 , 0.000067 , 0.000103 , 0.000125 , 0.000061 , 0.000150 , 0.000043 , 0.000298 , 0.000706 , 0.002053 , 0.031425 , 0.000004 , 0.000027 , 0.000042 , 0.000011 , 0.000022 , 0.000003 , 0.013385 , 0.021431 , 0.089304 , 0.804630 , 0.000098 , 0.000322 , 0.000489 , 0.000155 , 0.000333 , 0.000066 }, { 0.017449 , 0.035513 , 0.111143 , 0.581483 , 0.000142 , 0.000093 , 0.000058 , 0.000023 , 0.000326 , 0.000097 , 0.000497 , 0.002619 , 0.003619 , 0.032637 , 0.000011 , 0.000035 , 0.000048 , 0.000017 , 0.000030 , 0.000004 , 0.020616 , 0.051766 , 0.135216 , 0.790876 , 0.000211 , 0.000274 , 0.000311 , 0.000121 , 0.000479 , 0.000124 }, { 0.021278 , 0.041028 , 0.135566 , 0.652805 , 0.000210 , 0.000157 , 0.000011 , 0.000023 , 0.000375 , 0.000133 , 0.000511 , 0.004377 , 0.003451 , 0.035185 , 0.000027 , 0.000047 , 0.000009 , 0.000015 , 0.000054 , 0.000005 , 0.022305 , 0.047918 , 0.142164 , 0.727363 , 0.000265 , 0.000251 , 0.000021 , 0.000047 , 0.000474 , 0.000141 }, { 0.015547 , 0.022945 , 0.099711 , 0.583676 , 0.000118 , 0.000091 , 0.000056 , 0.000026 , 0.000216 , 0.000075 , 0.000322 , 0.000991 , 0.002386 , 0.023645 , 0.000007 , 0.000018 , 0.000025 , 0.000009 , 0.000025 , 0.000002 , 0.018195 , 0.030610 , 0.119498 , 0.795297 , 0.000174 , 0.000276 , 0.000307 , 0.000112 , 0.000410 , 0.000095 }, { 0.013099 , 0.020059 , 0.086648 , 0.544187 , 0.000108 , 0.000144 , 0.000141 , 0.000080 , 0.000207 , 0.000072 , 0.000382 , 0.000910 , 0.003023 , 0.032913 , 0.000005 , 0.000022 , 0.000034 , 0.000013 , 0.000017 , 0.000004 , 0.016041 , 0.028993 , 0.110753 , 0.825421 , 0.000154 , 0.000377 , 0.000499 , 0.000200 , 0.000350 , 0.000108 }, { 0.014353 , 0.022168 , 0.094122 , 0.595398 , 0.000108 , 0.000134 , 0.000113 , 0.000058 , 0.000183 , 0.000068 , 0.000227 , 0.000630 , 0.001645 , 0.019719 , 0.000006 , 0.000024 , 0.000032 , 0.000013 , 0.000015 , 0.000003 , 0.016535 , 0.027704 , 0.114246 , 0.788327 , 0.000171 , 0.000450 , 0.000536 , 0.000240 , 0.000299 , 0.000114 }, { 0.018209 , 0.025126 , 0.118352 , 0.640225 , 0.000171 , 0.000183 , 0.000111 , 0.000071 , 0.000296 , 0.000099 , 0.000385 , 0.001151 , 0.002615 , 0.024922 , 0.000009 , 0.000031 , 0.000041 , 0.000020 , 0.000029 , 0.000003 , 0.019825 , 0.030851 , 0.128500 , 0.746093 , 0.000222 , 0.000340 , 0.000361 , 0.000173 , 0.000437 , 0.000116 }, { 0.024431 , 0.040714 , 0.153333 , 0.640155 , 0.000257 , 0.000120 , 0.000000 , 0.000000 , 0.000485 , 0.000189 , 0.000621 , 0.002218 , 0.004043 , 0.032008 , 0.000026 , 0.000023 , 0.000000 , 0.000000 , 0.000076 , 0.000010 , 0.026096 , 0.048012 , 0.164434 , 0.730318 , 0.000327 , 0.000199 , 0.000000 , 0.000000 , 0.000730 , 0.000221 }, { 0.015722 , 0.019273 , 0.101247 , 0.650873 , 0.000084 , 0.000086 , 0.000095 , 0.000033 , 0.000167 , 0.000068 , 0.000193 , 0.001341 , 0.001438 , 0.017239 , 0.000007 , 0.000038 , 0.000058 , 0.000012 , 0.000014 , 0.000005 , 0.016769 , 0.026752 , 0.108173 , 0.743300 , 0.000121 , 0.000298 , 0.000389 , 0.000106 , 0.000241 , 0.000090 }, { 0.013945 , 0.017586 , 0.092486 , 0.534398 , 0.000143 , 0.000190 , 0.000177 , 0.000091 , 0.000234 , 0.000085 , 0.000375 , 0.000997 , 0.002483 , 0.030455 , 0.000008 , 0.000037 , 0.000041 , 0.000013 , 0.000024 , 0.000006 , 0.017328 , 0.026602 , 0.115818 , 0.830664 , 0.000201 , 0.000588 , 0.000600 , 0.000195 , 0.000446 , 0.000139 }, { 0.008571 , 0.009644 , 0.056854 , 0.558311 , 0.000041 , 0.000066 , 0.000111 , 0.000054 , 0.000090 , 0.000024 , 0.000411 , 0.000336 , 0.002608 , 0.056445 , 0.000002 , 0.000016 , 0.000039 , 0.000008 , 0.000010 , 0.000002 , 0.010470 , 0.011052 , 0.067660 , 0.822731 , 0.000050 , 0.000130 , 0.000286 , 0.000086 , 0.000128 , 0.000032 }, { 0.018885 , 0.033427 , 0.121084 , 0.651872 , 0.000177 , 0.000114 , 0.000008 , 0.000013 , 0.000327 , 0.000101 , 0.000501 , 0.003309 , 0.003297 , 0.033023 , 0.000022 , 0.000019 , 0.000006 , 0.000008 , 0.000071 , 0.000003 , 0.020164 , 0.043391 , 0.129449 , 0.734008 , 0.000240 , 0.000163 , 0.000022 , 0.000034 , 0.000554 , 0.000110 }, { 0.020364 , 0.046986 , 0.129049 , 0.587216 , 0.000226 , 0.000133 , 0.000044 , 0.000027 , 0.000438 , 0.000143 , 0.000931 , 0.006232 , 0.005974 , 0.054499 , 0.000032 , 0.000036 , 0.000030 , 0.000019 , 0.000066 , 0.000010 , 0.023493 , 0.067642 , 0.148818 , 0.778191 , 0.000330 , 0.000258 , 0.000133 , 0.000082 , 0.000622 , 0.000180 }, { 0.015804 , 0.020700 , 0.102273 , 0.612077 , 0.000139 , 0.000138 , 0.000048 , 0.000037 , 0.000263 , 0.000082 , 0.000475 , 0.001243 , 0.003093 , 0.035475 , 0.000009 , 0.000019 , 0.000025 , 0.000011 , 0.000022 , 0.000004 , 0.017911 , 0.026947 , 0.116057 , 0.773587 , 0.000183 , 0.000245 , 0.000176 , 0.000100 , 0.000381 , 0.000106 }, { 0.012712 , 0.019313 , 0.083631 , 0.535813 , 0.000110 , 0.000153 , 0.000087 , 0.000055 , 0.000204 , 0.000069 , 0.000541 , 0.001277 , 0.003575 , 0.047249 , 0.000008 , 0.000028 , 0.000023 , 0.000013 , 0.000014 , 0.000005 , 0.015818 , 0.026091 , 0.102545 , 0.831674 , 0.000153 , 0.000341 , 0.000248 , 0.000144 , 0.000296 , 0.000107 }, { 0.015734 , 0.033421 , 0.101098 , 0.641270 , 0.000103 , 0.000082 , 0.000036 , 0.000039 , 0.000194 , 0.000069 , 0.000280 , 0.001902 , 0.001833 , 0.021261 , 0.000006 , 0.000016 , 0.000018 , 0.000011 , 0.000021 , 0.000002 , 0.017116 , 0.044272 , 0.110150 , 0.749895 , 0.000128 , 0.000164 , 0.000126 , 0.000095 , 0.000295 , 0.000077 }, { 0.009156 , 0.009294 , 0.061394 , 0.582755 , 0.000047 , 0.000077 , 0.000093 , 0.000059 , 0.000095 , 0.000028 , 0.000311 , 0.000441 , 0.002097 , 0.039109 , 0.000002 , 0.000012 , 0.000018 , 0.000006 , 0.000009 , 0.000001 , 0.010826 , 0.011352 , 0.071374 , 0.805967 , 0.000056 , 0.000140 , 0.000198 , 0.000096 , 0.000137 , 0.000034 }, { 0.010835 , 0.013249 , 0.070188 , 0.551326 , 0.000062 , 0.000057 , 0.000066 , 0.000045 , 0.000121 , 0.000036 , 0.000504 , 0.000685 , 0.003391 , 0.053434 , 0.000007 , 0.000015 , 0.000024 , 0.000012 , 0.000010 , 0.000001 , 0.013330 , 0.016559 , 0.086842 , 0.824596 , 0.000101 , 0.000138 , 0.000191 , 0.000102 , 0.000179 , 0.000043 }, { 0.015891 , 0.022059 , 0.102521 , 0.611810 , 0.000114 , 0.000097 , 0.000046 , 0.000030 , 0.000194 , 0.000077 , 0.000195 , 0.000995 , 0.001597 , 0.015177 , 0.000005 , 0.000017 , 0.000017 , 0.000009 , 0.000020 , 0.000002 , 0.017917 , 0.031017 , 0.118284 , 0.773906 , 0.000163 , 0.000319 , 0.000258 , 0.000134 , 0.000387 , 0.000098 }, { 0.013540 , 0.015071 , 0.088886 , 0.620664 , 0.000089 , 0.000123 , 0.000070 , 0.000055 , 0.000150 , 0.000062 , 0.000335 , 0.000758 , 0.002074 , 0.031366 , 0.000004 , 0.000016 , 0.000018 , 0.000009 , 0.000009 , 0.000003 , 0.015089 , 0.018393 , 0.098762 , 0.771464 , 0.000102 , 0.000196 , 0.000167 , 0.000092 , 0.000196 , 0.000077 }, { 0.008358 , 0.009100 , 0.054746 , 0.519183 , 0.000040 , 0.000055 , 0.000054 , 0.000037 , 0.000088 , 0.000024 , 0.000403 , 0.000501 , 0.002738 , 0.052509 , 0.000003 , 0.000013 , 0.000015 , 0.000007 , 0.000008 , 0.000002 , 0.010861 , 0.012089 , 0.071884 , 0.847999 , 0.000057 , 0.000137 , 0.000153 , 0.000077 , 0.000130 , 0.000035 }, { 0.016090 , 0.020352 , 0.102857 , 0.643588 , 0.000099 , 0.000067 , 0.000048 , 0.000030 , 0.000228 , 0.000071 , 0.000242 , 0.001132 , 0.001861 , 0.019629 , 0.000007 , 0.000020 , 0.000029 , 0.000010 , 0.000023 , 0.000003 , 0.017299 , 0.027419 , 0.113176 , 0.748526 , 0.000137 , 0.000188 , 0.000220 , 0.000103 , 0.000377 , 0.000087 }, { 0.013465 , 0.029308 , 0.088547 , 0.520914 , 0.000113 , 0.000148 , 0.000118 , 0.000050 , 0.000212 , 0.000076 , 0.000442 , 0.001974 , 0.002883 , 0.037579 , 0.000010 , 0.000042 , 0.000041 , 0.000014 , 0.000020 , 0.000006 , 0.017076 , 0.042926 , 0.110970 , 0.838984 , 0.000195 , 0.000513 , 0.000483 , 0.000159 , 0.000351 , 0.000131 }, { 0.020478 , 0.039338 , 0.133739 , 0.651158 , 0.000219 , 0.000254 , 0.000126 , 0.000060 , 0.000374 , 0.000152 , 0.000650 , 0.003624 , 0.003977 , 0.038793 , 0.000023 , 0.000073 , 0.000089 , 0.000030 , 0.000045 , 0.000013 , 0.021744 , 0.044326 , 0.141493 , 0.729484 , 0.000253 , 0.000399 , 0.000252 , 0.000120 , 0.000464 , 0.000176 }, { 0.016955 , 0.020532 , 0.107313 , 0.650487 , 0.000108 , 0.000046 , 0.000014 , 0.000015 , 0.000211 , 0.000079 , 0.000157 , 0.000921 , 0.001033 , 0.012294 , 0.000004 , 0.000007 , 0.000009 , 0.000005 , 0.000023 , 0.000002 , 0.018020 , 0.027808 , 0.114467 , 0.741814 , 0.000142 , 0.000106 , 0.000085 , 0.000055 , 0.000396 , 0.000093 }, { 0.012605 , 0.016961 , 0.083332 , 0.640924 , 0.000090 , 0.000099 , 0.000139 , 0.000062 , 0.000145 , 0.000051 , 0.000442 , 0.001129 , 0.002295 , 0.044744 , 0.000008 , 0.000029 , 0.000045 , 0.000009 , 0.000031 , 0.000005 , 0.013744 , 0.019542 , 0.088139 , 0.755961 , 0.000111 , 0.000164 , 0.000259 , 0.000081 , 0.000212 , 0.000062 }, { 0.018629 , 0.025192 , 0.119247 , 0.628884 , 0.000135 , 0.000119 , 0.000060 , 0.000035 , 0.000338 , 0.000105 , 0.000277 , 0.001740 , 0.002162 , 0.019709 , 0.000009 , 0.000032 , 0.000029 , 0.000012 , 0.000032 , 0.000003 , 0.020400 , 0.035148 , 0.134534 , 0.754424 , 0.000185 , 0.000334 , 0.000262 , 0.000114 , 0.000540 , 0.000123 }, { 0.015824 , 0.022149 , 0.102366 , 0.623006 , 0.000122 , 0.000117 , 0.000048 , 0.000028 , 0.000211 , 0.000074 , 0.000327 , 0.001347 , 0.002188 , 0.025041 , 0.000007 , 0.000020 , 0.000025 , 0.000010 , 0.000022 , 0.000004 , 0.017522 , 0.030541 , 0.113059 , 0.765498 , 0.000159 , 0.000263 , 0.000213 , 0.000098 , 0.000342 , 0.000097 }, { 0.017437 , 0.023381 , 0.110851 , 0.596271 , 0.000122 , 0.000075 , 0.000043 , 0.000011 , 0.000242 , 0.000098 , 0.000292 , 0.001085 , 0.001991 , 0.020464 , 0.000007 , 0.000023 , 0.000031 , 0.000007 , 0.000019 , 0.000006 , 0.019991 , 0.032084 , 0.127374 , 0.783099 , 0.000177 , 0.000296 , 0.000328 , 0.000088 , 0.000408 , 0.000144 }, { 0.013149 , 0.023853 , 0.084784 , 0.553185 , 0.000089 , 0.000076 , 0.000051 , 0.000030 , 0.000170 , 0.000059 , 0.000223 , 0.000971 , 0.001693 , 0.019158 , 0.000004 , 0.000011 , 0.000017 , 0.000007 , 0.000013 , 0.000001 , 0.016317 , 0.034432 , 0.109362 , 0.819923 , 0.000142 , 0.000279 , 0.000367 , 0.000128 , 0.000335 , 0.000076 }, { 0.016894 , 0.018418 , 0.109595 , 0.631681 , 0.000148 , 0.000132 , 0.000040 , 0.000040 , 0.000261 , 0.000090 , 0.000278 , 0.001131 , 0.002734 , 0.021121 , 0.000009 , 0.000034 , 0.000014 , 0.000011 , 0.000037 , 0.000006 , 0.018488 , 0.024682 , 0.126641 , 0.755578 , 0.000198 , 0.000358 , 0.000137 , 0.000113 , 0.000481 , 0.000128 }, { 0.016901 , 0.025661 , 0.110235 , 0.653713 , 0.000118 , 0.000140 , 0.000139 , 0.000059 , 0.000206 , 0.000083 , 0.000485 , 0.001989 , 0.004322 , 0.036992 , 0.000013 , 0.000057 , 0.000084 , 0.000026 , 0.000036 , 0.000006 , 0.017991 , 0.030183 , 0.119789 , 0.736605 , 0.000147 , 0.000269 , 0.000321 , 0.000125 , 0.000285 , 0.000097 }, { 0.014886 , 0.020254 , 0.095846 , 0.614363 , 0.000113 , 0.000090 , 0.000044 , 0.000031 , 0.000181 , 0.000063 , 0.000326 , 0.001520 , 0.002323 , 0.027913 , 0.000007 , 0.000017 , 0.000021 , 0.000010 , 0.000021 , 0.000002 , 0.016712 , 0.028709 , 0.108009 , 0.774069 , 0.000148 , 0.000194 , 0.000153 , 0.000088 , 0.000296 , 0.000073 }, { 0.022890 , 0.053810 , 0.144727 , 0.647480 , 0.000227 , 0.000137 , 0.000098 , 0.000031 , 0.000415 , 0.000161 , 0.000739 , 0.004608 , 0.005202 , 0.043803 , 0.000027 , 0.000045 , 0.000098 , 0.000031 , 0.000092 , 0.000011 , 0.024146 , 0.061437 , 0.154169 , 0.725472 , 0.000271 , 0.000204 , 0.000196 , 0.000063 , 0.000597 , 0.000181 }, { 0.015169 , 0.022639 , 0.098178 , 0.639573 , 0.000105 , 0.000111 , 0.000040 , 0.000026 , 0.000177 , 0.000073 , 0.000297 , 0.001145 , 0.002270 , 0.025285 , 0.000007 , 0.000024 , 0.000029 , 0.000010 , 0.000016 , 0.000004 , 0.016460 , 0.027068 , 0.108458 , 0.753095 , 0.000138 , 0.000223 , 0.000151 , 0.000075 , 0.000246 , 0.000093 }, { 0.024300 , 0.080140 , 0.150849 , 0.562145 , 0.000255 , 0.000153 , 0.000000 , 0.000000 , 0.000588 , 0.000229 , 0.001187 , 0.004597 , 0.007835 , 0.060176 , 0.000040 , 0.000030 , 0.000000 , 0.000000 , 0.000091 , 0.000022 , 0.028538 , 0.097212 , 0.179742 , 0.779709 , 0.000395 , 0.000262 , 0.000000 , 0.000000 , 0.000961 , 0.000312 }, { 0.022635 , 0.052222 , 0.143923 , 0.647473 , 0.000192 , 0.000146 , 0.000090 , 0.000012 , 0.000307 , 0.000162 , 0.000286 , 0.002847 , 0.002828 , 0.016384 , 0.000013 , 0.000064 , 0.000090 , 0.000012 , 0.000047 , 0.000011 , 0.024003 , 0.067421 , 0.160447 , 0.725035 , 0.000262 , 0.000455 , 0.000450 , 0.000062 , 0.000572 , 0.000222 }, { 0.012574 , 0.018441 , 0.081399 , 0.584735 , 0.000075 , 0.000087 , 0.000044 , 0.000027 , 0.000142 , 0.000052 , 0.000169 , 0.000408 , 0.001106 , 0.016071 , 0.000003 , 0.000011 , 0.000015 , 0.000005 , 0.000010 , 0.000002 , 0.014647 , 0.023065 , 0.093643 , 0.800740 , 0.000107 , 0.000271 , 0.000299 , 0.000101 , 0.000261 , 0.000080 }, { 0.010353 , 0.017099 , 0.069289 , 0.495580 , 0.000073 , 0.000115 , 0.000114 , 0.000059 , 0.000130 , 0.000044 , 0.000297 , 0.000685 , 0.002367 , 0.029434 , 0.000004 , 0.000021 , 0.000024 , 0.000007 , 0.000012 , 0.000002 , 0.013716 , 0.024840 , 0.101024 , 0.858671 , 0.000111 , 0.000413 , 0.000429 , 0.000137 , 0.000272 , 0.000067 }, { 0.009866 , 0.009440 , 0.066770 , 0.525356 , 0.000068 , 0.000131 , 0.000128 , 0.000081 , 0.000175 , 0.000043 , 0.000602 , 0.000562 , 0.004188 , 0.064123 , 0.000005 , 0.000022 , 0.000021 , 0.000014 , 0.000013 , 0.000004 , 0.012807 , 0.012318 , 0.087722 , 0.840961 , 0.000089 , 0.000227 , 0.000222 , 0.000147 , 0.000234 , 0.000061 }, { 0.020368 , 0.035073 , 0.130289 , 0.626437 , 0.000212 , 0.000170 , 0.000035 , 0.000038 , 0.000382 , 0.000138 , 0.000494 , 0.002435 , 0.003283 , 0.030111 , 0.000016 , 0.000028 , 0.000017 , 0.000015 , 0.000053 , 0.000008 , 0.022348 , 0.045697 , 0.143934 , 0.751484 , 0.000281 , 0.000288 , 0.000131 , 0.000112 , 0.000611 , 0.000176 }, { 0.013616 , 0.015672 , 0.087621 , 0.619422 , 0.000080 , 0.000062 , 0.000048 , 0.000026 , 0.000131 , 0.000050 , 0.000205 , 0.000936 , 0.001368 , 0.018583 , 0.000003 , 0.000013 , 0.000017 , 0.000006 , 0.000012 , 0.000001 , 0.015309 , 0.023661 , 0.098587 , 0.772882 , 0.000106 , 0.000193 , 0.000227 , 0.000073 , 0.000228 , 0.000061 }, { 0.007615 , 0.006678 , 0.051168 , 0.569190 , 0.000032 , 0.000065 , 0.000071 , 0.000045 , 0.000062 , 0.000021 , 0.000307 , 0.000278 , 0.002180 , 0.043254 , 0.000002 , 0.000010 , 0.000011 , 0.000005 , 0.000006 , 0.000001 , 0.009251 , 0.008326 , 0.063597 , 0.816839 , 0.000041 , 0.000129 , 0.000144 , 0.000077 , 0.000098 , 0.000030 }, { 0.015681 , 0.023376 , 0.102107 , 0.620954 , 0.000116 , 0.000136 , 0.000086 , 0.000036 , 0.000213 , 0.000079 , 0.000324 , 0.000684 , 0.002978 , 0.024947 , 0.000007 , 0.000039 , 0.000053 , 0.000012 , 0.000033 , 0.000006 , 0.017421 , 0.026517 , 0.119854 , 0.766286 , 0.000156 , 0.000393 , 0.000415 , 0.000119 , 0.000434 , 0.000111 }, { 0.014044 , 0.016765 , 0.090097 , 0.590828 , 0.000095 , 0.000074 , 0.000018 , 0.000019 , 0.000167 , 0.000063 , 0.000210 , 0.000493 , 0.001410 , 0.017709 , 0.000004 , 0.000007 , 0.000007 , 0.000005 , 0.000011 , 0.000002 , 0.016272 , 0.020738 , 0.104306 , 0.793999 , 0.000130 , 0.000161 , 0.000124 , 0.000089 , 0.000288 , 0.000080 }, { 0.017508 , 0.021554 , 0.114919 , 0.636754 , 0.000169 , 0.000191 , 0.000055 , 0.000044 , 0.000294 , 0.000115 , 0.000583 , 0.000962 , 0.004445 , 0.036825 , 0.000015 , 0.000070 , 0.000041 , 0.000016 , 0.000046 , 0.000014 , 0.019347 , 0.024290 , 0.126909 , 0.749746 , 0.000210 , 0.000370 , 0.000139 , 0.000089 , 0.000401 , 0.000152 }, { 0.013732 , 0.022049 , 0.088052 , 0.575230 , 0.000083 , 0.000062 , 0.000032 , 0.000021 , 0.000182 , 0.000057 , 0.000244 , 0.000844 , 0.001606 , 0.020976 , 0.000003 , 0.000011 , 0.000014 , 0.000007 , 0.000014 , 0.000001 , 0.016276 , 0.030907 , 0.104727 , 0.805016 , 0.000112 , 0.000209 , 0.000213 , 0.000114 , 0.000306 , 0.000073 }, { 0.010544 , 0.012772 , 0.070163 , 0.627720 , 0.000056 , 0.000085 , 0.000111 , 0.000048 , 0.000108 , 0.000033 , 0.000285 , 0.000979 , 0.002194 , 0.032832 , 0.000006 , 0.000018 , 0.000021 , 0.000008 , 0.000012 , 0.000002 , 0.011766 , 0.016592 , 0.078750 , 0.770111 , 0.000080 , 0.000161 , 0.000188 , 0.000085 , 0.000159 , 0.000041 }, { 0.020894 , 0.060400 , 0.132109 , 0.623062 , 0.000171 , 0.000099 , 0.000033 , 0.000022 , 0.000347 , 0.000127 , 0.000381 , 0.003613 , 0.002662 , 0.024160 , 0.000014 , 0.000027 , 0.000031 , 0.000013 , 0.000034 , 0.000005 , 0.022853 , 0.079077 , 0.145709 , 0.749430 , 0.000238 , 0.000238 , 0.000154 , 0.000104 , 0.000497 , 0.000154 }, { 0.010686 , 0.013678 , 0.070707 , 0.585809 , 0.000056 , 0.000079 , 0.000060 , 0.000046 , 0.000130 , 0.000034 , 0.000516 , 0.001009 , 0.003799 , 0.056207 , 0.000004 , 0.000037 , 0.000029 , 0.000013 , 0.000017 , 0.000004 , 0.012602 , 0.016836 , 0.085232 , 0.800403 , 0.000070 , 0.000177 , 0.000142 , 0.000094 , 0.000190 , 0.000046 }, { 0.014724 , 0.015616 , 0.095108 , 0.615820 , 0.000106 , 0.000088 , 0.000072 , 0.000052 , 0.000205 , 0.000063 , 0.000294 , 0.000858 , 0.002238 , 0.025620 , 0.000009 , 0.000016 , 0.000026 , 0.000014 , 0.000022 , 0.000003 , 0.016431 , 0.020944 , 0.108418 , 0.773391 , 0.000157 , 0.000193 , 0.000260 , 0.000140 , 0.000324 , 0.000079 }, { 0.012420 , 0.018966 , 0.081663 , 0.509882 , 0.000097 , 0.000134 , 0.000092 , 0.000058 , 0.000185 , 0.000063 , 0.000346 , 0.000771 , 0.002270 , 0.029300 , 0.000005 , 0.000020 , 0.000020 , 0.000009 , 0.000016 , 0.000003 , 0.016254 , 0.026186 , 0.105773 , 0.848431 , 0.000143 , 0.000348 , 0.000343 , 0.000140 , 0.000350 , 0.000096 }, { 0.016957 , 0.033063 , 0.111346 , 0.574695 , 0.000190 , 0.000189 , 0.000162 , 0.000088 , 0.000293 , 0.000106 , 0.000366 , 0.002211 , 0.002822 , 0.026280 , 0.000012 , 0.000027 , 0.000040 , 0.000016 , 0.000021 , 0.000005 , 0.019884 , 0.054728 , 0.135071 , 0.795994 , 0.000296 , 0.000418 , 0.000623 , 0.000221 , 0.000459 , 0.000149 }, { 0.013111 , 0.015999 , 0.089154 , 0.631484 , 0.000103 , 0.000197 , 0.000243 , 0.000103 , 0.000198 , 0.000063 , 0.000433 , 0.001102 , 0.002894 , 0.042637 , 0.000008 , 0.000055 , 0.000083 , 0.000019 , 0.000046 , 0.000006 , 0.014451 , 0.020120 , 0.099392 , 0.761926 , 0.000129 , 0.000420 , 0.000572 , 0.000178 , 0.000353 , 0.000087 }, { 0.013585 , 0.019641 , 0.088410 , 0.591630 , 0.000085 , 0.000106 , 0.000048 , 0.000029 , 0.000144 , 0.000057 , 0.000333 , 0.000974 , 0.002630 , 0.029668 , 0.000004 , 0.000031 , 0.000027 , 0.000013 , 0.000015 , 0.000003 , 0.015738 , 0.026080 , 0.107247 , 0.792635 , 0.000110 , 0.000328 , 0.000240 , 0.000128 , 0.000242 , 0.000075 }, { 0.015782 , 0.016536 , 0.101777 , 0.623475 , 0.000109 , 0.000098 , 0.000050 , 0.000032 , 0.000198 , 0.000076 , 0.000404 , 0.000816 , 0.002902 , 0.031143 , 0.000008 , 0.000034 , 0.000039 , 0.000013 , 0.000021 , 0.000005 , 0.017550 , 0.020284 , 0.113836 , 0.765337 , 0.000148 , 0.000273 , 0.000219 , 0.000104 , 0.000317 , 0.000102 }, { 0.012479 , 0.013833 , 0.080621 , 0.633850 , 0.000073 , 0.000064 , 0.000044 , 0.000037 , 0.000113 , 0.000042 , 0.000256 , 0.001088 , 0.001773 , 0.025396 , 0.000005 , 0.000014 , 0.000014 , 0.000008 , 0.000013 , 0.000002 , 0.013712 , 0.019248 , 0.088638 , 0.763101 , 0.000101 , 0.000127 , 0.000126 , 0.000069 , 0.000181 , 0.000049 }, { 0.020780 , 0.033424 , 0.131180 , 0.618359 , 0.000193 , 0.000100 , 0.000024 , 0.000030 , 0.000444 , 0.000135 , 0.000572 , 0.003005 , 0.003733 , 0.034960 , 0.000029 , 0.000023 , 0.000018 , 0.000020 , 0.000038 , 0.000009 , 0.022930 , 0.044537 , 0.145237 , 0.757645 , 0.000313 , 0.000200 , 0.000086 , 0.000110 , 0.000606 , 0.000174 }, { 0.021396 , 0.035582 , 0.134655 , 0.625304 , 0.000189 , 0.000091 , 0.000037 , 0.000037 , 0.000347 , 0.000143 , 0.000481 , 0.001856 , 0.002717 , 0.028268 , 0.000026 , 0.000023 , 0.000027 , 0.000022 , 0.000053 , 0.000008 , 0.023505 , 0.042850 , 0.147023 , 0.751215 , 0.000336 , 0.000213 , 0.000160 , 0.000162 , 0.000617 , 0.000183 }, { 0.009711 , 0.012555 , 0.062290 , 0.549380 , 0.000046 , 0.000062 , 0.000075 , 0.000042 , 0.000100 , 0.000029 , 0.000281 , 0.000339 , 0.001560 , 0.029435 , 0.000002 , 0.000009 , 0.000019 , 0.000006 , 0.000010 , 0.000002 , 0.012540 , 0.015527 , 0.078067 , 0.828666 , 0.000064 , 0.000164 , 0.000294 , 0.000100 , 0.000202 , 0.000047 }, { 0.014213 , 0.022199 , 0.096029 , 0.642167 , 0.000100 , 0.000189 , 0.000162 , 0.000085 , 0.000166 , 0.000064 , 0.000267 , 0.000920 , 0.003435 , 0.024103 , 0.000008 , 0.000049 , 0.000053 , 0.000018 , 0.000024 , 0.000004 , 0.015380 , 0.026570 , 0.113436 , 0.750534 , 0.000126 , 0.000445 , 0.000439 , 0.000165 , 0.000287 , 0.000083 }, { 0.016800 , 0.028303 , 0.106508 , 0.632673 , 0.000111 , 0.000056 , 0.000033 , 0.000024 , 0.000240 , 0.000078 , 0.000265 , 0.002167 , 0.001632 , 0.020248 , 0.000007 , 0.000008 , 0.000015 , 0.000009 , 0.000020 , 0.000002 , 0.018400 , 0.045295 , 0.116659 , 0.755566 , 0.000155 , 0.000122 , 0.000158 , 0.000102 , 0.000372 , 0.000095 }, { 0.009434 , 0.008441 , 0.062823 , 0.525789 , 0.000056 , 0.000112 , 0.000088 , 0.000056 , 0.000112 , 0.000035 , 0.000513 , 0.000288 , 0.003298 , 0.070454 , 0.000004 , 0.000031 , 0.000024 , 0.000011 , 0.000014 , 0.000004 , 0.011702 , 0.009883 , 0.078450 , 0.841472 , 0.000077 , 0.000294 , 0.000198 , 0.000110 , 0.000196 , 0.000058 }, { 0.014765 , 0.025524 , 0.095075 , 0.633546 , 0.000086 , 0.000073 , 0.000050 , 0.000025 , 0.000190 , 0.000058 , 0.000467 , 0.001135 , 0.003038 , 0.042877 , 0.000005 , 0.000029 , 0.000036 , 0.000011 , 0.000028 , 0.000003 , 0.016118 , 0.028284 , 0.105233 , 0.758108 , 0.000101 , 0.000155 , 0.000146 , 0.000066 , 0.000286 , 0.000068 }, { 0.007895 , 0.007478 , 0.051607 , 0.572059 , 0.000029 , 0.000039 , 0.000045 , 0.000033 , 0.000061 , 0.000019 , 0.000225 , 0.000290 , 0.001562 , 0.033200 , 0.000002 , 0.000009 , 0.000010 , 0.000006 , 0.000007 , 0.000001 , 0.009504 , 0.009575 , 0.062499 , 0.815337 , 0.000042 , 0.000122 , 0.000134 , 0.000080 , 0.000122 , 0.000031 }, { 0.016129 , 0.019645 , 0.105206 , 0.646400 , 0.000098 , 0.000120 , 0.000140 , 0.000042 , 0.000179 , 0.000074 , 0.000364 , 0.001738 , 0.002937 , 0.029142 , 0.000008 , 0.000050 , 0.000099 , 0.000022 , 0.000023 , 0.000005 , 0.017392 , 0.024637 , 0.115266 , 0.745249 , 0.000124 , 0.000290 , 0.000418 , 0.000127 , 0.000250 , 0.000089 }, { 0.012311 , 0.023146 , 0.080282 , 0.484467 , 0.000109 , 0.000123 , 0.000110 , 0.000067 , 0.000185 , 0.000064 , 0.000413 , 0.001144 , 0.002842 , 0.035398 , 0.000008 , 0.000026 , 0.000029 , 0.000013 , 0.000016 , 0.000003 , 0.016592 , 0.032495 , 0.108544 , 0.862429 , 0.000180 , 0.000394 , 0.000391 , 0.000167 , 0.000328 , 0.000100 }, { 0.010277 , 0.007262 , 0.067955 , 0.666567 , 0.000048 , 0.000073 , 0.000093 , 0.000060 , 0.000095 , 0.000030 , 0.000164 , 0.000630 , 0.001158 , 0.018785 , 0.000002 , 0.000013 , 0.000017 , 0.000006 , 0.000008 , 0.000002 , 0.010912 , 0.010503 , 0.073149 , 0.738226 , 0.000057 , 0.000137 , 0.000194 , 0.000095 , 0.000131 , 0.000042 }, { 0.016732 , 0.029091 , 0.109119 , 0.617974 , 0.000121 , 0.000142 , 0.000092 , 0.000053 , 0.000223 , 0.000095 , 0.000384 , 0.001948 , 0.004481 , 0.030703 , 0.000009 , 0.000072 , 0.000061 , 0.000023 , 0.000026 , 0.000011 , 0.018553 , 0.038242 , 0.129200 , 0.765251 , 0.000156 , 0.000394 , 0.000331 , 0.000162 , 0.000345 , 0.000140 }, { 0.020777 , 0.036423 , 0.133321 , 0.606691 , 0.000183 , 0.000200 , 0.000182 , 0.000050 , 0.000440 , 0.000154 , 0.000399 , 0.002039 , 0.003091 , 0.026106 , 0.000013 , 0.000075 , 0.000109 , 0.000018 , 0.000038 , 0.000009 , 0.023251 , 0.049898 , 0.154106 , 0.764798 , 0.000267 , 0.000739 , 0.000939 , 0.000176 , 0.000645 , 0.000213 }, { 0.012189 , 0.018947 , 0.082478 , 0.552334 , 0.000090 , 0.000172 , 0.000183 , 0.000074 , 0.000167 , 0.000062 , 0.000602 , 0.001085 , 0.004596 , 0.051991 , 0.000008 , 0.000060 , 0.000059 , 0.000016 , 0.000015 , 0.000005 , 0.015115 , 0.025243 , 0.101879 , 0.820759 , 0.000140 , 0.000534 , 0.000592 , 0.000153 , 0.000243 , 0.000097 }, { 0.012735 , 0.025091 , 0.081401 , 0.605604 , 0.000070 , 0.000039 , 0.000039 , 0.000023 , 0.000156 , 0.000045 , 0.000394 , 0.001369 , 0.002561 , 0.038196 , 0.000006 , 0.000012 , 0.000021 , 0.000008 , 0.000027 , 0.000001 , 0.014528 , 0.031067 , 0.092671 , 0.783960 , 0.000097 , 0.000083 , 0.000130 , 0.000055 , 0.000272 , 0.000052 }, { 0.010538 , 0.018123 , 0.069868 , 0.456171 , 0.000101 , 0.000135 , 0.000119 , 0.000070 , 0.000172 , 0.000057 , 0.000431 , 0.001473 , 0.002983 , 0.040230 , 0.000007 , 0.000024 , 0.000024 , 0.000010 , 0.000015 , 0.000003 , 0.014651 , 0.031935 , 0.098056 , 0.879834 , 0.000170 , 0.000397 , 0.000355 , 0.000154 , 0.000338 , 0.000083 }, { 0.010697 , 0.011858 , 0.070960 , 0.535319 , 0.000069 , 0.000103 , 0.000090 , 0.000051 , 0.000133 , 0.000043 , 0.000222 , 0.000455 , 0.001448 , 0.023231 , 0.000003 , 0.000019 , 0.000018 , 0.000006 , 0.000011 , 0.000003 , 0.013403 , 0.018078 , 0.088004 , 0.836271 , 0.000096 , 0.000385 , 0.000350 , 0.000124 , 0.000283 , 0.000082 }, { 0.017708 , 0.028027 , 0.112781 , 0.630007 , 0.000130 , 0.000089 , 0.000051 , 0.000027 , 0.000231 , 0.000089 , 0.000277 , 0.001169 , 0.001989 , 0.019677 , 0.000010 , 0.000026 , 0.000032 , 0.000011 , 0.000032 , 0.000004 , 0.019494 , 0.036668 , 0.126215 , 0.755794 , 0.000205 , 0.000276 , 0.000284 , 0.000127 , 0.000490 , 0.000120 }, { 0.008901 , 0.012227 , 0.059078 , 0.536740 , 0.000043 , 0.000079 , 0.000077 , 0.000035 , 0.000086 , 0.000029 , 0.000257 , 0.000280 , 0.001630 , 0.031488 , 0.000002 , 0.000015 , 0.000016 , 0.000004 , 0.000007 , 0.000002 , 0.011155 , 0.014273 , 0.074552 , 0.837443 , 0.000070 , 0.000304 , 0.000281 , 0.000082 , 0.000170 , 0.000052 }, { 0.009828 , 0.009017 , 0.063937 , 0.567221 , 0.000056 , 0.000058 , 0.000077 , 0.000046 , 0.000104 , 0.000033 , 0.000375 , 0.000833 , 0.002578 , 0.047648 , 0.000004 , 0.000011 , 0.000018 , 0.000008 , 0.000011 , 0.000002 , 0.011718 , 0.013114 , 0.076577 , 0.815808 , 0.000079 , 0.000121 , 0.000172 , 0.000088 , 0.000152 , 0.000045 }, { 0.017156 , 0.017665 , 0.108539 , 0.657181 , 0.000102 , 0.000056 , 0.000010 , 0.000016 , 0.000222 , 0.000083 , 0.000451 , 0.002046 , 0.002902 , 0.033871 , 0.000014 , 0.000014 , 0.000009 , 0.000011 , 0.000040 , 0.000007 , 0.018161 , 0.022526 , 0.114611 , 0.735250 , 0.000130 , 0.000089 , 0.000023 , 0.000037 , 0.000314 , 0.000097 }, { 0.009991 , 0.012827 , 0.064864 , 0.539544 , 0.000057 , 0.000052 , 0.000053 , 0.000038 , 0.000109 , 0.000032 , 0.000244 , 0.000429 , 0.001638 , 0.026399 , 0.000003 , 0.000007 , 0.000012 , 0.000006 , 0.000007 , 0.000001 , 0.012543 , 0.017047 , 0.081661 , 0.834628 , 0.000091 , 0.000149 , 0.000226 , 0.000115 , 0.000187 , 0.000044 }, { 0.022032 , 0.033289 , 0.142187 , 0.626633 , 0.000185 , 0.000210 , 0.000144 , 0.000052 , 0.000562 , 0.000167 , 0.000984 , 0.005440 , 0.006264 , 0.056491 , 0.000021 , 0.000095 , 0.000104 , 0.000037 , 0.000101 , 0.000014 , 0.024042 , 0.046187 , 0.157535 , 0.744802 , 0.000236 , 0.000403 , 0.000336 , 0.000122 , 0.000788 , 0.000204 }, { 0.023058 , 0.032019 , 0.152982 , 0.618743 , 0.000407 , 0.000557 , 0.000242 , 0.000131 , 0.000592 , 0.000236 , 0.001014 , 0.002719 , 0.007499 , 0.049858 , 0.000024 , 0.000113 , 0.000087 , 0.000054 , 0.000063 , 0.000026 , 0.025576 , 0.040752 , 0.171790 , 0.746871 , 0.000473 , 0.000856 , 0.000522 , 0.000255 , 0.000756 , 0.000311 }, { 0.016103 , 0.037111 , 0.102582 , 0.640462 , 0.000104 , 0.000053 , 0.000025 , 0.000019 , 0.000194 , 0.000071 , 0.000304 , 0.001724 , 0.001862 , 0.023656 , 0.000011 , 0.000016 , 0.000017 , 0.000012 , 0.000024 , 0.000002 , 0.017490 , 0.045396 , 0.111094 , 0.749916 , 0.000156 , 0.000134 , 0.000109 , 0.000082 , 0.000304 , 0.000082 }, { 0.011566 , 0.008895 , 0.076685 , 0.551311 , 0.000094 , 0.000116 , 0.000152 , 0.000082 , 0.000147 , 0.000053 , 0.000315 , 0.000493 , 0.002099 , 0.033397 , 0.000004 , 0.000017 , 0.000032 , 0.000010 , 0.000013 , 0.000003 , 0.014058 , 0.012748 , 0.093519 , 0.824461 , 0.000115 , 0.000268 , 0.000436 , 0.000137 , 0.000241 , 0.000076 }, { 0.019763 , 0.023539 , 0.126650 , 0.619476 , 0.000193 , 0.000145 , 0.000037 , 0.000038 , 0.000347 , 0.000127 , 0.000368 , 0.001055 , 0.002597 , 0.022884 , 0.000011 , 0.000026 , 0.000016 , 0.000013 , 0.000037 , 0.000005 , 0.021921 , 0.030146 , 0.141058 , 0.759898 , 0.000259 , 0.000318 , 0.000166 , 0.000129 , 0.000566 , 0.000149 }, { 0.021543 , 0.041537 , 0.136327 , 0.577915 , 0.000256 , 0.000183 , 0.000000 , 0.000000 , 0.000490 , 0.000175 , 0.001275 , 0.005128 , 0.007812 , 0.071160 , 0.000039 , 0.000048 , 0.000000 , 0.000000 , 0.000046 , 0.000017 , 0.025085 , 0.056238 , 0.157884 , 0.781899 , 0.000360 , 0.000323 , 0.000000 , 0.000000 , 0.000603 , 0.000219 }, { 0.016179 , 0.023313 , 0.102465 , 0.634630 , 0.000096 , 0.000034 , 0.000002 , 0.000007 , 0.000197 , 0.000067 , 0.000453 , 0.001229 , 0.003005 , 0.036512 , 0.000007 , 0.000006 , 0.000001 , 0.000005 , 0.000026 , 0.000001 , 0.017701 , 0.027068 , 0.112012 , 0.755648 , 0.000120 , 0.000056 , 0.000005 , 0.000021 , 0.000288 , 0.000071 }, { 0.013871 , 0.012063 , 0.089169 , 0.649979 , 0.000073 , 0.000063 , 0.000031 , 0.000024 , 0.000157 , 0.000051 , 0.000163 , 0.000377 , 0.001222 , 0.016181 , 0.000005 , 0.000014 , 0.000014 , 0.000008 , 0.000015 , 0.000002 , 0.014793 , 0.014364 , 0.095424 , 0.747960 , 0.000103 , 0.000159 , 0.000124 , 0.000075 , 0.000227 , 0.000062 }, { 0.018795 , 0.022048 , 0.119462 , 0.643751 , 0.000164 , 0.000086 , 0.000033 , 0.000030 , 0.000308 , 0.000103 , 0.000379 , 0.001317 , 0.002409 , 0.026094 , 0.000015 , 0.000015 , 0.000020 , 0.000014 , 0.000040 , 0.000003 , 0.020211 , 0.027476 , 0.128531 , 0.743036 , 0.000226 , 0.000151 , 0.000120 , 0.000093 , 0.000482 , 0.000114 }, { 0.015795 , 0.018971 , 0.103404 , 0.627938 , 0.000130 , 0.000153 , 0.000055 , 0.000038 , 0.000238 , 0.000082 , 0.000224 , 0.000903 , 0.001670 , 0.017715 , 0.000005 , 0.000023 , 0.000021 , 0.000008 , 0.000020 , 0.000003 , 0.017510 , 0.024743 , 0.116036 , 0.761375 , 0.000158 , 0.000335 , 0.000228 , 0.000088 , 0.000384 , 0.000099 }, { 0.011360 , 0.016479 , 0.072824 , 0.565713 , 0.000058 , 0.000047 , 0.000023 , 0.000024 , 0.000108 , 0.000040 , 0.000269 , 0.000842 , 0.001749 , 0.028725 , 0.000003 , 0.000007 , 0.000008 , 0.000005 , 0.000010 , 0.000002 , 0.013607 , 0.024024 , 0.087786 , 0.815455 , 0.000084 , 0.000110 , 0.000103 , 0.000071 , 0.000209 , 0.000060 }, { 0.010820 , 0.015926 , 0.070420 , 0.581907 , 0.000052 , 0.000069 , 0.000075 , 0.000036 , 0.000092 , 0.000034 , 0.000320 , 0.001052 , 0.002057 , 0.036576 , 0.000005 , 0.000027 , 0.000031 , 0.000011 , 0.000010 , 0.000002 , 0.012768 , 0.022216 , 0.083201 , 0.804445 , 0.000090 , 0.000258 , 0.000316 , 0.000109 , 0.000157 , 0.000050 }, { 0.011156 , 0.012436 , 0.070974 , 0.610299 , 0.000052 , 0.000042 , 0.000045 , 0.000035 , 0.000132 , 0.000031 , 0.000342 , 0.000754 , 0.002086 , 0.033585 , 0.000003 , 0.000005 , 0.000014 , 0.000006 , 0.000031 , 0.000001 , 0.012790 , 0.017296 , 0.080296 , 0.783693 , 0.000067 , 0.000075 , 0.000140 , 0.000074 , 0.000303 , 0.000038 }, { 0.017526 , 0.031803 , 0.113436 , 0.637829 , 0.000098 , 0.000157 , 0.000130 , 0.000035 , 0.000199 , 0.000098 , 0.000378 , 0.002294 , 0.002886 , 0.029883 , 0.000010 , 0.000090 , 0.000098 , 0.000023 , 0.000035 , 0.000013 , 0.018884 , 0.041607 , 0.123299 , 0.748859 , 0.000140 , 0.000502 , 0.000475 , 0.000129 , 0.000340 , 0.000147 }, { 0.013891 , 0.022823 , 0.089856 , 0.629665 , 0.000085 , 0.000082 , 0.000029 , 0.000028 , 0.000160 , 0.000056 , 0.000354 , 0.001056 , 0.002165 , 0.032077 , 0.000005 , 0.000017 , 0.000011 , 0.000008 , 0.000020 , 0.000003 , 0.015307 , 0.027659 , 0.097771 , 0.763636 , 0.000106 , 0.000168 , 0.000087 , 0.000066 , 0.000240 , 0.000069 }, { 0.008183 , 0.008142 , 0.054726 , 0.550973 , 0.000040 , 0.000073 , 0.000091 , 0.000056 , 0.000068 , 0.000023 , 0.000375 , 0.000260 , 0.002811 , 0.048405 , 0.000001 , 0.000010 , 0.000013 , 0.000005 , 0.000006 , 0.000001 , 0.010283 , 0.009592 , 0.072496 , 0.827947 , 0.000048 , 0.000144 , 0.000177 , 0.000090 , 0.000102 , 0.000032 }, { 0.023110 , 0.073082 , 0.142710 , 0.539032 , 0.000157 , 0.000130 , 0.000000 , 0.000000 , 0.000473 , 0.000175 , 0.001149 , 0.004253 , 0.007588 , 0.057030 , 0.000021 , 0.000014 , 0.000000 , 0.000000 , 0.000080 , 0.000008 , 0.028161 , 0.090444 , 0.176183 , 0.799912 , 0.000268 , 0.000192 , 0.000000 , 0.000000 , 0.000855 , 0.000210 }, { 0.015061 , 0.031566 , 0.096108 , 0.628971 , 0.000084 , 0.000053 , 0.000014 , 0.000012 , 0.000159 , 0.000064 , 0.000189 , 0.001287 , 0.001567 , 0.016684 , 0.000006 , 0.000013 , 0.000008 , 0.000006 , 0.000016 , 0.000002 , 0.016438 , 0.039869 , 0.108663 , 0.761568 , 0.000124 , 0.000163 , 0.000089 , 0.000065 , 0.000301 , 0.000079 }, { 0.008912 , 0.012084 , 0.058397 , 0.573111 , 0.000040 , 0.000047 , 0.000068 , 0.000036 , 0.000063 , 0.000024 , 0.000228 , 0.000517 , 0.001637 , 0.030420 , 0.000002 , 0.000009 , 0.000015 , 0.000005 , 0.000006 , 0.000001 , 0.010632 , 0.016242 , 0.070694 , 0.813391 , 0.000053 , 0.000120 , 0.000180 , 0.000068 , 0.000106 , 0.000036 }, { 0.018272 , 0.016973 , 0.116739 , 0.647743 , 0.000136 , 0.000095 , 0.000022 , 0.000014 , 0.000290 , 0.000097 , 0.000208 , 0.000570 , 0.001753 , 0.014944 , 0.000007 , 0.000021 , 0.000016 , 0.000007 , 0.000032 , 0.000003 , 0.019538 , 0.020378 , 0.128614 , 0.740684 , 0.000173 , 0.000257 , 0.000132 , 0.000075 , 0.000537 , 0.000118 }, { 0.016143 , 0.020332 , 0.103329 , 0.642448 , 0.000118 , 0.000078 , 0.000049 , 0.000020 , 0.000252 , 0.000072 , 0.000294 , 0.001529 , 0.001939 , 0.022878 , 0.000007 , 0.000027 , 0.000032 , 0.000008 , 0.000033 , 0.000003 , 0.017435 , 0.029651 , 0.111971 , 0.749439 , 0.000158 , 0.000227 , 0.000250 , 0.000072 , 0.000452 , 0.000089 }, { 0.014872 , 0.024585 , 0.095817 , 0.618492 , 0.000096 , 0.000085 , 0.000052 , 0.000037 , 0.000199 , 0.000063 , 0.000258 , 0.001492 , 0.001913 , 0.022270 , 0.000005 , 0.000015 , 0.000023 , 0.000013 , 0.000018 , 0.000002 , 0.016703 , 0.035081 , 0.109146 , 0.770414 , 0.000128 , 0.000189 , 0.000252 , 0.000141 , 0.000317 , 0.000076 }, { 0.013731 , 0.009846 , 0.089734 , 0.652229 , 0.000091 , 0.000113 , 0.000104 , 0.000054 , 0.000156 , 0.000055 , 0.000142 , 0.000338 , 0.000998 , 0.012107 , 0.000005 , 0.000016 , 0.000029 , 0.000009 , 0.000010 , 0.000002 , 0.014848 , 0.012395 , 0.098201 , 0.745717 , 0.000135 , 0.000260 , 0.000350 , 0.000127 , 0.000223 , 0.000071 }, { 0.008746 , 0.009249 , 0.058436 , 0.543506 , 0.000050 , 0.000081 , 0.000110 , 0.000065 , 0.000110 , 0.000029 , 0.000245 , 0.000440 , 0.001725 , 0.029695 , 0.000002 , 0.000010 , 0.000014 , 0.000006 , 0.000012 , 0.000001 , 0.010879 , 0.013699 , 0.073571 , 0.833319 , 0.000068 , 0.000193 , 0.000230 , 0.000115 , 0.000239 , 0.000044 }, { 0.017996 , 0.037994 , 0.115162 , 0.647253 , 0.000116 , 0.000088 , 0.000031 , 0.000020 , 0.000300 , 0.000091 , 0.000390 , 0.002771 , 0.003042 , 0.028251 , 0.000009 , 0.000036 , 0.000025 , 0.000011 , 0.000050 , 0.000003 , 0.019300 , 0.049056 , 0.126270 , 0.739253 , 0.000148 , 0.000211 , 0.000112 , 0.000075 , 0.000503 , 0.000105 }, { 0.018400 , 0.023239 , 0.117667 , 0.635241 , 0.000120 , 0.000100 , 0.000074 , 0.000024 , 0.000279 , 0.000100 , 0.000697 , 0.001337 , 0.005500 , 0.047635 , 0.000009 , 0.000056 , 0.000074 , 0.000024 , 0.000051 , 0.000008 , 0.020019 , 0.026130 , 0.131508 , 0.749043 , 0.000146 , 0.000207 , 0.000198 , 0.000065 , 0.000425 , 0.000116 }, { 0.013411 , 0.018562 , 0.085605 , 0.581669 , 0.000077 , 0.000051 , 0.000029 , 0.000020 , 0.000152 , 0.000054 , 0.000320 , 0.000894 , 0.001984 , 0.027410 , 0.000004 , 0.000010 , 0.000015 , 0.000006 , 0.000010 , 0.000002 , 0.015832 , 0.025490 , 0.100723 , 0.801253 , 0.000103 , 0.000137 , 0.000161 , 0.000079 , 0.000227 , 0.000073 }, { 0.024585 , 0.061920 , 0.159346 , 0.609925 , 0.000281 , 0.000390 , 0.000395 , 0.000065 , 0.000665 , 0.000247 , 0.000579 , 0.005869 , 0.003718 , 0.030541 , 0.000037 , 0.000162 , 0.000232 , 0.000031 , 0.000069 , 0.000035 , 0.027197 , 0.088901 , 0.173734 , 0.747226 , 0.000488 , 0.001289 , 0.001610 , 0.000236 , 0.000994 , 0.000445 }, { 0.016193 , 0.022088 , 0.105066 , 0.643046 , 0.000102 , 0.000113 , 0.000093 , 0.000052 , 0.000199 , 0.000073 , 0.000460 , 0.001600 , 0.003375 , 0.038674 , 0.000007 , 0.000044 , 0.000057 , 0.000018 , 0.000024 , 0.000005 , 0.017382 , 0.026643 , 0.114769 , 0.747669 , 0.000121 , 0.000229 , 0.000240 , 0.000105 , 0.000252 , 0.000089 }, { 0.017032 , 0.031194 , 0.109796 , 0.597249 , 0.000164 , 0.000139 , 0.000068 , 0.000033 , 0.000274 , 0.000104 , 0.000484 , 0.003234 , 0.003090 , 0.036623 , 0.000015 , 0.000025 , 0.000038 , 0.000011 , 0.000027 , 0.000006 , 0.019502 , 0.047839 , 0.125742 , 0.781110 , 0.000232 , 0.000249 , 0.000261 , 0.000091 , 0.000411 , 0.000132 }, { 0.014542 , 0.013991 , 0.093936 , 0.644719 , 0.000110 , 0.000092 , 0.000069 , 0.000065 , 0.000165 , 0.000061 , 0.000306 , 0.000722 , 0.002145 , 0.025721 , 0.000006 , 0.000013 , 0.000016 , 0.000011 , 0.000022 , 0.000004 , 0.015813 , 0.016944 , 0.103183 , 0.750504 , 0.000135 , 0.000148 , 0.000137 , 0.000107 , 0.000261 , 0.000078 }, { 0.017006 , 0.026303 , 0.108520 , 0.598517 , 0.000133 , 0.000080 , 0.000042 , 0.000031 , 0.000240 , 0.000089 , 0.000287 , 0.002328 , 0.002034 , 0.020450 , 0.000008 , 0.000015 , 0.000017 , 0.000009 , 0.000020 , 0.000002 , 0.019536 , 0.054372 , 0.127353 , 0.780407 , 0.000218 , 0.000243 , 0.000271 , 0.000130 , 0.000445 , 0.000116 }, { 0.018044 , 0.027507 , 0.115911 , 0.609954 , 0.000176 , 0.000128 , 0.000050 , 0.000041 , 0.000280 , 0.000104 , 0.000321 , 0.002267 , 0.002193 , 0.022130 , 0.000008 , 0.000015 , 0.000017 , 0.000012 , 0.000028 , 0.000004 , 0.020283 , 0.043213 , 0.130637 , 0.770451 , 0.000224 , 0.000242 , 0.000174 , 0.000121 , 0.000490 , 0.000129 }, { 0.009333 , 0.010609 , 0.060991 , 0.582274 , 0.000042 , 0.000060 , 0.000067 , 0.000040 , 0.000097 , 0.000026 , 0.000349 , 0.000695 , 0.002098 , 0.040478 , 0.000003 , 0.000016 , 0.000019 , 0.000006 , 0.000012 , 0.000002 , 0.011157 , 0.014552 , 0.071909 , 0.806155 , 0.000055 , 0.000163 , 0.000189 , 0.000072 , 0.000170 , 0.000039 }, { 0.020165 , 0.032111 , 0.129016 , 0.600438 , 0.000194 , 0.000172 , 0.000048 , 0.000049 , 0.000284 , 0.000141 , 0.000512 , 0.002490 , 0.004047 , 0.031210 , 0.000018 , 0.000042 , 0.000022 , 0.000014 , 0.000037 , 0.000007 , 0.023018 , 0.047081 , 0.152198 , 0.771027 , 0.000291 , 0.000459 , 0.000173 , 0.000134 , 0.000512 , 0.000189 }, { 0.020885 , 0.056039 , 0.133287 , 0.652330 , 0.000183 , 0.000155 , 0.000122 , 0.000056 , 0.000323 , 0.000124 , 0.000446 , 0.004544 , 0.002917 , 0.029349 , 0.000024 , 0.000056 , 0.000098 , 0.000035 , 0.000037 , 0.000010 , 0.022001 , 0.070855 , 0.141203 , 0.725803 , 0.000281 , 0.000347 , 0.000406 , 0.000185 , 0.000452 , 0.000168 }, { 0.016190 , 0.016769 , 0.104264 , 0.635506 , 0.000143 , 0.000111 , 0.000048 , 0.000043 , 0.000194 , 0.000082 , 0.000278 , 0.001312 , 0.002032 , 0.020860 , 0.000007 , 0.000025 , 0.000024 , 0.000013 , 0.000015 , 0.000004 , 0.017675 , 0.026538 , 0.116828 , 0.754726 , 0.000195 , 0.000281 , 0.000225 , 0.000145 , 0.000300 , 0.000108 }, { 0.011981 , 0.014501 , 0.076883 , 0.615642 , 0.000054 , 0.000051 , 0.000026 , 0.000017 , 0.000133 , 0.000038 , 0.000178 , 0.000408 , 0.001274 , 0.016475 , 0.000002 , 0.000010 , 0.000010 , 0.000004 , 0.000014 , 0.000001 , 0.013769 , 0.019067 , 0.091384 , 0.778166 , 0.000072 , 0.000210 , 0.000178 , 0.000063 , 0.000336 , 0.000055 }, { 0.012577 , 0.011691 , 0.084037 , 0.577521 , 0.000088 , 0.000175 , 0.000170 , 0.000080 , 0.000207 , 0.000058 , 0.000360 , 0.000582 , 0.002774 , 0.036821 , 0.000006 , 0.000044 , 0.000053 , 0.000018 , 0.000030 , 0.000004 , 0.014815 , 0.015643 , 0.102566 , 0.804216 , 0.000114 , 0.000488 , 0.000517 , 0.000196 , 0.000383 , 0.000082 }, { 0.009181 , 0.011011 , 0.062755 , 0.591130 , 0.000048 , 0.000098 , 0.000139 , 0.000065 , 0.000094 , 0.000030 , 0.000422 , 0.000450 , 0.003843 , 0.052135 , 0.000003 , 0.000019 , 0.000034 , 0.000012 , 0.000009 , 0.000003 , 0.010660 , 0.012907 , 0.078598 , 0.798267 , 0.000062 , 0.000184 , 0.000290 , 0.000112 , 0.000129 , 0.000043 }, { 0.010033 , 0.010391 , 0.065361 , 0.565509 , 0.000054 , 0.000062 , 0.000062 , 0.000044 , 0.000100 , 0.000031 , 0.000223 , 0.000303 , 0.001402 , 0.026926 , 0.000003 , 0.000009 , 0.000013 , 0.000006 , 0.000007 , 0.000001 , 0.012026 , 0.013766 , 0.077585 , 0.817703 , 0.000079 , 0.000152 , 0.000212 , 0.000098 , 0.000155 , 0.000045 }, { 0.012063 , 0.026067 , 0.080547 , 0.578589 , 0.000083 , 0.000127 , 0.000136 , 0.000065 , 0.000162 , 0.000052 , 0.000188 , 0.000993 , 0.001478 , 0.017880 , 0.000004 , 0.000020 , 0.000022 , 0.000008 , 0.000008 , 0.000003 , 0.014362 , 0.038479 , 0.098102 , 0.803920 , 0.000146 , 0.000432 , 0.000443 , 0.000156 , 0.000273 , 0.000094 }, { 0.010035 , 0.011055 , 0.066236 , 0.608824 , 0.000050 , 0.000068 , 0.000095 , 0.000056 , 0.000106 , 0.000029 , 0.000317 , 0.001165 , 0.002638 , 0.034500 , 0.000002 , 0.000017 , 0.000022 , 0.000009 , 0.000019 , 0.000002 , 0.011600 , 0.017673 , 0.080361 , 0.785251 , 0.000062 , 0.000176 , 0.000241 , 0.000115 , 0.000206 , 0.000040 }, { 0.018545 , 0.025506 , 0.120748 , 0.645044 , 0.000138 , 0.000183 , 0.000166 , 0.000045 , 0.000298 , 0.000119 , 0.000544 , 0.001756 , 0.004227 , 0.037798 , 0.000017 , 0.000110 , 0.000156 , 0.000034 , 0.000020 , 0.000020 , 0.019812 , 0.031150 , 0.131197 , 0.740484 , 0.000181 , 0.000462 , 0.000497 , 0.000136 , 0.000355 , 0.000172 }, { 0.014250 , 0.027909 , 0.092745 , 0.625216 , 0.000082 , 0.000104 , 0.000111 , 0.000044 , 0.000134 , 0.000061 , 0.000336 , 0.002329 , 0.002109 , 0.030023 , 0.000006 , 0.000029 , 0.000039 , 0.000010 , 0.000012 , 0.000004 , 0.015783 , 0.040625 , 0.102716 , 0.765611 , 0.000108 , 0.000243 , 0.000307 , 0.000082 , 0.000189 , 0.000078 }, { 0.013725 , 0.023669 , 0.088178 , 0.622552 , 0.000077 , 0.000067 , 0.000038 , 0.000028 , 0.000171 , 0.000053 , 0.000282 , 0.001290 , 0.002027 , 0.025522 , 0.000004 , 0.000011 , 0.000018 , 0.000012 , 0.000017 , 0.000002 , 0.015373 , 0.030066 , 0.100003 , 0.769484 , 0.000099 , 0.000128 , 0.000150 , 0.000102 , 0.000253 , 0.000065 }, { 0.017223 , 0.030666 , 0.110656 , 0.628386 , 0.000142 , 0.000118 , 0.000037 , 0.000032 , 0.000292 , 0.000091 , 0.000398 , 0.001743 , 0.002796 , 0.028290 , 0.000014 , 0.000044 , 0.000024 , 0.000013 , 0.000033 , 0.000003 , 0.018904 , 0.039415 , 0.123258 , 0.757453 , 0.000207 , 0.000317 , 0.000169 , 0.000120 , 0.000445 , 0.000106 }, { 0.017864 , 0.026304 , 0.113852 , 0.648749 , 0.000152 , 0.000084 , 0.000036 , 0.000023 , 0.000260 , 0.000087 , 0.000281 , 0.002913 , 0.001529 , 0.021887 , 0.000012 , 0.000013 , 0.000024 , 0.000009 , 0.000047 , 0.000003 , 0.019013 , 0.040053 , 0.120357 , 0.740412 , 0.000205 , 0.000151 , 0.000133 , 0.000065 , 0.000484 , 0.000099 }, { 0.018203 , 0.023803 , 0.117309 , 0.641344 , 0.000145 , 0.000130 , 0.000099 , 0.000038 , 0.000186 , 0.000099 , 0.000533 , 0.001768 , 0.003034 , 0.036327 , 0.000012 , 0.000059 , 0.000094 , 0.000027 , 0.000035 , 0.000008 , 0.019735 , 0.028238 , 0.126227 , 0.745363 , 0.000179 , 0.000257 , 0.000263 , 0.000100 , 0.000289 , 0.000118 }, { 0.011638 , 0.017011 , 0.074389 , 0.489977 , 0.000078 , 0.000054 , 0.000051 , 0.000030 , 0.000138 , 0.000049 , 0.000407 , 0.000994 , 0.002723 , 0.037611 , 0.000005 , 0.000009 , 0.000019 , 0.000008 , 0.000013 , 0.000002 , 0.015582 , 0.025885 , 0.101046 , 0.861056 , 0.000121 , 0.000134 , 0.000229 , 0.000101 , 0.000250 , 0.000064 }, { 0.018509 , 0.021378 , 0.118413 , 0.636083 , 0.000161 , 0.000125 , 0.000054 , 0.000045 , 0.000290 , 0.000103 , 0.000312 , 0.000868 , 0.001908 , 0.021591 , 0.000011 , 0.000018 , 0.000021 , 0.000015 , 0.000028 , 0.000005 , 0.020197 , 0.026525 , 0.128315 , 0.750020 , 0.000223 , 0.000247 , 0.000209 , 0.000143 , 0.000448 , 0.000132 }, { 0.015720 , 0.023868 , 0.100980 , 0.621978 , 0.000112 , 0.000096 , 0.000022 , 0.000026 , 0.000227 , 0.000078 , 0.000448 , 0.000940 , 0.003172 , 0.032369 , 0.000007 , 0.000017 , 0.000009 , 0.000008 , 0.000027 , 0.000003 , 0.017650 , 0.029780 , 0.116212 , 0.765746 , 0.000148 , 0.000202 , 0.000087 , 0.000078 , 0.000405 , 0.000094 }, { 0.014646 , 0.022767 , 0.096758 , 0.659609 , 0.000085 , 0.000134 , 0.000103 , 0.000038 , 0.000146 , 0.000062 , 0.000226 , 0.001112 , 0.002232 , 0.019615 , 0.000004 , 0.000047 , 0.000066 , 0.000016 , 0.000016 , 0.000004 , 0.015539 , 0.027374 , 0.106304 , 0.736301 , 0.000103 , 0.000318 , 0.000368 , 0.000111 , 0.000227 , 0.000080 }, { 0.009751 , 0.009202 , 0.064677 , 0.562586 , 0.000057 , 0.000088 , 0.000103 , 0.000053 , 0.000100 , 0.000032 , 0.000329 , 0.000347 , 0.002245 , 0.037415 , 0.000003 , 0.000021 , 0.000029 , 0.000009 , 0.000013 , 0.000002 , 0.011931 , 0.011147 , 0.078741 , 0.819306 , 0.000088 , 0.000266 , 0.000384 , 0.000124 , 0.000199 , 0.000048 }, { 0.009919 , 0.012788 , 0.065574 , 0.476883 , 0.000074 , 0.000100 , 0.000121 , 0.000058 , 0.000124 , 0.000043 , 0.000414 , 0.000852 , 0.002994 , 0.042847 , 0.000005 , 0.000019 , 0.000032 , 0.000010 , 0.000012 , 0.000003 , 0.013576 , 0.018833 , 0.090996 , 0.870262 , 0.000108 , 0.000251 , 0.000356 , 0.000136 , 0.000204 , 0.000065 }, { 0.012675 , 0.015485 , 0.084165 , 0.641360 , 0.000076 , 0.000120 , 0.000138 , 0.000068 , 0.000138 , 0.000049 , 0.000234 , 0.000989 , 0.001911 , 0.024325 , 0.000005 , 0.000032 , 0.000041 , 0.000014 , 0.000013 , 0.000004 , 0.013699 , 0.021907 , 0.095099 , 0.755556 , 0.000109 , 0.000359 , 0.000451 , 0.000157 , 0.000235 , 0.000073 }, { 0.013934 , 0.013261 , 0.093166 , 0.622342 , 0.000098 , 0.000174 , 0.000138 , 0.000060 , 0.000198 , 0.000070 , 0.000518 , 0.001433 , 0.004548 , 0.046906 , 0.000009 , 0.000050 , 0.000050 , 0.000015 , 0.000025 , 0.000005 , 0.015613 , 0.017396 , 0.108229 , 0.767565 , 0.000124 , 0.000345 , 0.000305 , 0.000105 , 0.000268 , 0.000087 }, { 0.017960 , 0.022484 , 0.116071 , 0.641297 , 0.000174 , 0.000181 , 0.000018 , 0.000027 , 0.000370 , 0.000099 , 0.000543 , 0.001578 , 0.003690 , 0.040053 , 0.000009 , 0.000036 , 0.000012 , 0.000016 , 0.000041 , 0.000005 , 0.019252 , 0.026632 , 0.124878 , 0.745750 , 0.000194 , 0.000283 , 0.000047 , 0.000072 , 0.000470 , 0.000114 }, { 0.014212 , 0.018760 , 0.090667 , 0.655269 , 0.000080 , 0.000051 , 0.000018 , 0.000018 , 0.000144 , 0.000050 , 0.000175 , 0.001011 , 0.001221 , 0.015798 , 0.000003 , 0.000008 , 0.000008 , 0.000006 , 0.000018 , 0.000001 , 0.015171 , 0.024513 , 0.097123 , 0.742518 , 0.000099 , 0.000095 , 0.000074 , 0.000055 , 0.000251 , 0.000058 }, { 0.019566 , 0.030843 , 0.128240 , 0.603599 , 0.000216 , 0.000322 , 0.000826 , 0.000158 , 0.000512 , 0.000187 , 0.001658 , 0.005356 , 0.008189 , 0.100231 , 0.000022 , 0.000193 , 0.000796 , 0.000106 , 0.000071 , 0.000060 , 0.022157 , 0.039188 , 0.142837 , 0.765055 , 0.000260 , 0.000557 , 0.001652 , 0.000316 , 0.000625 , 0.000253 }, { 0.010307 , 0.023188 , 0.066943 , 0.543456 , 0.000058 , 0.000077 , 0.000084 , 0.000052 , 0.000107 , 0.000035 , 0.000317 , 0.000505 , 0.001772 , 0.028926 , 0.000003 , 0.000016 , 0.000015 , 0.000008 , 0.000007 , 0.000002 , 0.013288 , 0.026488 , 0.083354 , 0.831182 , 0.000081 , 0.000220 , 0.000191 , 0.000122 , 0.000168 , 0.000050 }, { 0.011196 , 0.011054 , 0.073132 , 0.600718 , 0.000065 , 0.000067 , 0.000082 , 0.000054 , 0.000117 , 0.000036 , 0.000200 , 0.000555 , 0.001419 , 0.021765 , 0.000003 , 0.000010 , 0.000015 , 0.000008 , 0.000009 , 0.000002 , 0.012847 , 0.016238 , 0.084717 , 0.790861 , 0.000092 , 0.000156 , 0.000219 , 0.000120 , 0.000203 , 0.000053 }, { 0.006170 , 0.004902 , 0.040044 , 0.439373 , 0.000027 , 0.000024 , 0.000033 , 0.000024 , 0.000049 , 0.000014 , 0.000343 , 0.000299 , 0.002198 , 0.063689 , 0.000002 , 0.000003 , 0.000006 , 0.000003 , 0.000004 , 0.000001 , 0.008739 , 0.007514 , 0.056698 , 0.893240 , 0.000039 , 0.000046 , 0.000081 , 0.000052 , 0.000071 , 0.000018 }, { 0.020199 , 0.042855 , 0.127256 , 0.618861 , 0.000163 , 0.000079 , 0.000005 , 0.000010 , 0.000328 , 0.000130 , 0.000373 , 0.002701 , 0.002384 , 0.023361 , 0.000012 , 0.000011 , 0.000004 , 0.000007 , 0.000029 , 0.000005 , 0.022374 , 0.058281 , 0.140810 , 0.757818 , 0.000227 , 0.000143 , 0.000025 , 0.000052 , 0.000473 , 0.000162 }, { 0.019608 , 0.035755 , 0.127894 , 0.598688 , 0.000192 , 0.000256 , 0.000259 , 0.000074 , 0.000330 , 0.000161 , 0.000853 , 0.004476 , 0.006201 , 0.054405 , 0.000025 , 0.000174 , 0.000237 , 0.000049 , 0.000077 , 0.000035 , 0.022292 , 0.048287 , 0.144663 , 0.772513 , 0.000258 , 0.000584 , 0.000690 , 0.000196 , 0.000518 , 0.000230 }, { 0.018633 , 0.025948 , 0.118318 , 0.615856 , 0.000135 , 0.000089 , 0.000039 , 0.000014 , 0.000242 , 0.000099 , 0.000438 , 0.002148 , 0.003130 , 0.030749 , 0.000011 , 0.000031 , 0.000035 , 0.000010 , 0.000029 , 0.000004 , 0.020713 , 0.035915 , 0.134837 , 0.764750 , 0.000187 , 0.000212 , 0.000169 , 0.000059 , 0.000399 , 0.000117 }, { 0.009476 , 0.011255 , 0.063538 , 0.588210 , 0.000051 , 0.000087 , 0.000108 , 0.000060 , 0.000106 , 0.000035 , 0.000506 , 0.000822 , 0.003681 , 0.061698 , 0.000004 , 0.000022 , 0.000036 , 0.000009 , 0.000013 , 0.000003 , 0.011170 , 0.013882 , 0.074906 , 0.800003 , 0.000064 , 0.000160 , 0.000233 , 0.000091 , 0.000155 , 0.000045 }, { 0.021762 , 0.032544 , 0.140383 , 0.603583 , 0.000321 , 0.000287 , 0.000078 , 0.000057 , 0.000514 , 0.000180 , 0.000828 , 0.002646 , 0.005591 , 0.045959 , 0.000036 , 0.000059 , 0.000051 , 0.000037 , 0.000094 , 0.000009 , 0.024747 , 0.041768 , 0.158833 , 0.764663 , 0.000433 , 0.000491 , 0.000234 , 0.000170 , 0.000862 , 0.000210 }, { 0.011690 , 0.016357 , 0.076439 , 0.519920 , 0.000080 , 0.000098 , 0.000095 , 0.000048 , 0.000158 , 0.000052 , 0.000169 , 0.000527 , 0.001170 , 0.015710 , 0.000003 , 0.000013 , 0.000016 , 0.000006 , 0.000012 , 0.000002 , 0.014828 , 0.024366 , 0.095377 , 0.844557 , 0.000126 , 0.000328 , 0.000402 , 0.000149 , 0.000384 , 0.000082 }, { 0.014822 , 0.022449 , 0.094856 , 0.637442 , 0.000096 , 0.000073 , 0.000015 , 0.000020 , 0.000160 , 0.000062 , 0.000274 , 0.001588 , 0.001761 , 0.023315 , 0.000008 , 0.000015 , 0.000008 , 0.000011 , 0.000013 , 0.000003 , 0.016195 , 0.031988 , 0.103814 , 0.755866 , 0.000136 , 0.000160 , 0.000066 , 0.000084 , 0.000235 , 0.000080 }, { 0.019446 , 0.038462 , 0.122673 , 0.645507 , 0.000133 , 0.000076 , 0.000000 , 0.000000 , 0.000297 , 0.000107 , 0.000566 , 0.002335 , 0.003787 , 0.037011 , 0.000017 , 0.000020 , 0.000000 , 0.000000 , 0.000054 , 0.000004 , 0.020878 , 0.044353 , 0.132647 , 0.738259 , 0.000179 , 0.000132 , 0.000000 , 0.000000 , 0.000440 , 0.000118 }, { 0.010822 , 0.012125 , 0.070601 , 0.546133 , 0.000065 , 0.000076 , 0.000063 , 0.000040 , 0.000125 , 0.000042 , 0.000474 , 0.000895 , 0.003045 , 0.049763 , 0.000005 , 0.000013 , 0.000021 , 0.000008 , 0.000013 , 0.000002 , 0.013381 , 0.016975 , 0.086656 , 0.828268 , 0.000088 , 0.000150 , 0.000188 , 0.000082 , 0.000188 , 0.000055 }, { 0.012461 , 0.014645 , 0.080727 , 0.565211 , 0.000097 , 0.000109 , 0.000128 , 0.000072 , 0.000163 , 0.000052 , 0.001080 , 0.001210 , 0.007017 , 0.084936 , 0.000008 , 0.000029 , 0.000055 , 0.000023 , 0.000043 , 0.000002 , 0.015462 , 0.017862 , 0.101190 , 0.809683 , 0.000118 , 0.000180 , 0.000280 , 0.000139 , 0.000285 , 0.000060 }, { 0.015414 , 0.024058 , 0.098456 , 0.630959 , 0.000086 , 0.000062 , 0.000021 , 0.000015 , 0.000201 , 0.000069 , 0.000379 , 0.001725 , 0.002724 , 0.030535 , 0.000009 , 0.000024 , 0.000016 , 0.000007 , 0.000024 , 0.000003 , 0.016983 , 0.033334 , 0.111610 , 0.759329 , 0.000131 , 0.000193 , 0.000090 , 0.000049 , 0.000315 , 0.000087 }, { 0.014844 , 0.017009 , 0.095192 , 0.631132 , 0.000095 , 0.000072 , 0.000011 , 0.000011 , 0.000151 , 0.000063 , 0.000384 , 0.000521 , 0.002408 , 0.031605 , 0.000007 , 0.000012 , 0.000008 , 0.000006 , 0.000013 , 0.000003 , 0.016449 , 0.018851 , 0.105458 , 0.761150 , 0.000115 , 0.000115 , 0.000038 , 0.000036 , 0.000200 , 0.000073 }, { 0.020692 , 0.035863 , 0.130805 , 0.667337 , 0.000159 , 0.000087 , 0.000039 , 0.000022 , 0.000464 , 0.000113 , 0.000356 , 0.004976 , 0.002500 , 0.025683 , 0.000021 , 0.000026 , 0.000039 , 0.000022 , 0.000034 , 0.000009 , 0.021416 , 0.045631 , 0.135758 , 0.717060 , 0.000192 , 0.000128 , 0.000078 , 0.000043 , 0.000528 , 0.000132 }, { 0.010828 , 0.012702 , 0.071901 , 0.590216 , 0.000068 , 0.000102 , 0.000114 , 0.000065 , 0.000121 , 0.000038 , 0.000497 , 0.000857 , 0.003393 , 0.057515 , 0.000006 , 0.000030 , 0.000032 , 0.000011 , 0.000011 , 0.000003 , 0.012537 , 0.015379 , 0.081394 , 0.797407 , 0.000087 , 0.000214 , 0.000219 , 0.000093 , 0.000151 , 0.000047 }, { 0.019457 , 0.027652 , 0.123183 , 0.638089 , 0.000160 , 0.000079 , 0.000000 , 0.000000 , 0.000352 , 0.000109 , 0.000604 , 0.003514 , 0.003933 , 0.040118 , 0.000016 , 0.000019 , 0.000000 , 0.000000 , 0.000060 , 0.000002 , 0.021063 , 0.035044 , 0.133604 , 0.745228 , 0.000196 , 0.000124 , 0.000000 , 0.000000 , 0.000495 , 0.000113 }, { 0.019560 , 0.037239 , 0.126930 , 0.629899 , 0.000198 , 0.000235 , 0.000154 , 0.000052 , 0.000305 , 0.000125 , 0.000584 , 0.002719 , 0.004073 , 0.037878 , 0.000016 , 0.000087 , 0.000134 , 0.000032 , 0.000050 , 0.000014 , 0.021350 , 0.046042 , 0.139732 , 0.749524 , 0.000244 , 0.000466 , 0.000463 , 0.000157 , 0.000476 , 0.000159 }, { 0.017017 , 0.042856 , 0.109547 , 0.607358 , 0.000137 , 0.000125 , 0.000105 , 0.000030 , 0.000263 , 0.000090 , 0.000459 , 0.003550 , 0.003146 , 0.033843 , 0.000014 , 0.000035 , 0.000063 , 0.000013 , 0.000036 , 0.000003 , 0.019197 , 0.056785 , 0.125890 , 0.772256 , 0.000206 , 0.000297 , 0.000428 , 0.000100 , 0.000422 , 0.000106 }, { 0.017520 , 0.024979 , 0.115106 , 0.660937 , 0.000149 , 0.000186 , 0.000109 , 0.000040 , 0.000256 , 0.000100 , 0.000250 , 0.002063 , 0.003114 , 0.021800 , 0.000014 , 0.000047 , 0.000069 , 0.000016 , 0.000031 , 0.000008 , 0.018198 , 0.032369 , 0.126607 , 0.728755 , 0.000205 , 0.000371 , 0.000340 , 0.000104 , 0.000361 , 0.000132 }, { 0.015171 , 0.017857 , 0.095869 , 0.671617 , 0.000068 , 0.000028 , 0.000008 , 0.000007 , 0.000160 , 0.000057 , 0.000138 , 0.000764 , 0.000896 , 0.011434 , 0.000004 , 0.000004 , 0.000005 , 0.000004 , 0.000016 , 0.000001 , 0.015830 , 0.021924 , 0.100265 , 0.726824 , 0.000091 , 0.000053 , 0.000041 , 0.000035 , 0.000261 , 0.000065 }, { 0.014883 , 0.014349 , 0.095817 , 0.620279 , 0.000105 , 0.000095 , 0.000042 , 0.000028 , 0.000148 , 0.000069 , 0.000229 , 0.000473 , 0.001517 , 0.018971 , 0.000005 , 0.000018 , 0.000018 , 0.000007 , 0.000015 , 0.000003 , 0.016725 , 0.017827 , 0.108715 , 0.769979 , 0.000143 , 0.000270 , 0.000192 , 0.000088 , 0.000259 , 0.000095 }, { 0.025457 , 0.055077 , 0.160168 , 0.655005 , 0.000318 , 0.000173 , 0.000000 , 0.000000 , 0.000640 , 0.000218 , 0.000997 , 0.008223 , 0.006580 , 0.052738 , 0.000061 , 0.000042 , 0.000000 , 0.000000 , 0.000182 , 0.000020 , 0.026508 , 0.066448 , 0.167749 , 0.710971 , 0.000399 , 0.000230 , 0.000000 , 0.000000 , 0.000930 , 0.000240 }, { 0.011224 , 0.013559 , 0.072883 , 0.635710 , 0.000046 , 0.000054 , 0.000068 , 0.000036 , 0.000110 , 0.000033 , 0.000395 , 0.000810 , 0.002677 , 0.047405 , 0.000003 , 0.000033 , 0.000038 , 0.000009 , 0.000013 , 0.000003 , 0.012267 , 0.015334 , 0.080147 , 0.762356 , 0.000055 , 0.000122 , 0.000157 , 0.000057 , 0.000147 , 0.000041 }, { 0.016623 , 0.024313 , 0.105484 , 0.646143 , 0.000111 , 0.000056 , 0.000002 , 0.000004 , 0.000224 , 0.000077 , 0.000359 , 0.001784 , 0.002274 , 0.029664 , 0.000008 , 0.000011 , 0.000002 , 0.000004 , 0.000034 , 0.000003 , 0.017838 , 0.030497 , 0.113055 , 0.745377 , 0.000137 , 0.000088 , 0.000007 , 0.000012 , 0.000331 , 0.000085 }, { 0.007675 , 0.007111 , 0.051206 , 0.475626 , 0.000044 , 0.000065 , 0.000098 , 0.000050 , 0.000079 , 0.000024 , 0.000289 , 0.000411 , 0.001877 , 0.038031 , 0.000002 , 0.000009 , 0.000016 , 0.000005 , 0.000007 , 0.000001 , 0.010472 , 0.010339 , 0.068523 , 0.874463 , 0.000056 , 0.000151 , 0.000267 , 0.000088 , 0.000143 , 0.000036 }, { 0.013055 , 0.019279 , 0.087224 , 0.577372 , 0.000094 , 0.000167 , 0.000128 , 0.000079 , 0.000202 , 0.000062 , 0.000228 , 0.000880 , 0.001889 , 0.018849 , 0.000004 , 0.000027 , 0.000024 , 0.000012 , 0.000013 , 0.000003 , 0.015777 , 0.029737 , 0.109600 , 0.803110 , 0.000137 , 0.000595 , 0.000496 , 0.000242 , 0.000382 , 0.000114 }, { 0.010967 , 0.015038 , 0.070776 , 0.511362 , 0.000074 , 0.000054 , 0.000055 , 0.000039 , 0.000118 , 0.000044 , 0.000353 , 0.000926 , 0.002387 , 0.033917 , 0.000004 , 0.000009 , 0.000015 , 0.000008 , 0.000011 , 0.000002 , 0.014246 , 0.023069 , 0.092187 , 0.850154 , 0.000109 , 0.000140 , 0.000218 , 0.000120 , 0.000226 , 0.000061 }, { 0.016996 , 0.024027 , 0.107755 , 0.683236 , 0.000117 , 0.000049 , 0.000033 , 0.000038 , 0.000191 , 0.000076 , 0.000240 , 0.003055 , 0.001526 , 0.018470 , 0.000006 , 0.000006 , 0.000018 , 0.000015 , 0.000035 , 0.000002 , 0.017348 , 0.029753 , 0.110168 , 0.712063 , 0.000127 , 0.000060 , 0.000063 , 0.000065 , 0.000259 , 0.000080 }, { 0.012306 , 0.014223 , 0.082446 , 0.610086 , 0.000081 , 0.000137 , 0.000148 , 0.000069 , 0.000142 , 0.000051 , 0.000218 , 0.000695 , 0.001867 , 0.021286 , 0.000003 , 0.000026 , 0.000029 , 0.000009 , 0.000011 , 0.000003 , 0.014057 , 0.019013 , 0.096162 , 0.781268 , 0.000103 , 0.000357 , 0.000381 , 0.000131 , 0.000210 , 0.000081 }, { 0.018406 , 0.035310 , 0.117014 , 0.627206 , 0.000168 , 0.000099 , 0.000015 , 0.000018 , 0.000266 , 0.000101 , 0.000473 , 0.002767 , 0.003246 , 0.031319 , 0.000011 , 0.000016 , 0.000011 , 0.000010 , 0.000044 , 0.000003 , 0.020385 , 0.047696 , 0.130719 , 0.755352 , 0.000211 , 0.000183 , 0.000059 , 0.000071 , 0.000491 , 0.000117 }, { 0.013218 , 0.013200 , 0.084959 , 0.598843 , 0.000079 , 0.000070 , 0.000041 , 0.000032 , 0.000136 , 0.000053 , 0.000307 , 0.000357 , 0.002272 , 0.026024 , 0.000004 , 0.000013 , 0.000017 , 0.000010 , 0.000019 , 0.000002 , 0.015466 , 0.016057 , 0.102270 , 0.788785 , 0.000109 , 0.000180 , 0.000193 , 0.000112 , 0.000278 , 0.000073 }, { 0.008616 , 0.008655 , 0.057073 , 0.526630 , 0.000046 , 0.000081 , 0.000106 , 0.000043 , 0.000076 , 0.000029 , 0.000335 , 0.000341 , 0.001797 , 0.040528 , 0.000004 , 0.000022 , 0.000030 , 0.000009 , 0.000006 , 0.000003 , 0.011039 , 0.011175 , 0.069781 , 0.844093 , 0.000075 , 0.000260 , 0.000371 , 0.000109 , 0.000120 , 0.000057 }, { 0.017214 , 0.027108 , 0.111168 , 0.610042 , 0.000169 , 0.000150 , 0.000105 , 0.000052 , 0.000266 , 0.000096 , 0.000453 , 0.002451 , 0.003187 , 0.030495 , 0.000013 , 0.000034 , 0.000044 , 0.000021 , 0.000023 , 0.000006 , 0.019433 , 0.043272 , 0.126460 , 0.771537 , 0.000250 , 0.000393 , 0.000425 , 0.000180 , 0.000415 , 0.000135 }, { 0.013643 , 0.015610 , 0.089398 , 0.577437 , 0.000100 , 0.000127 , 0.000077 , 0.000050 , 0.000164 , 0.000065 , 0.000276 , 0.000613 , 0.001935 , 0.023084 , 0.000005 , 0.000020 , 0.000017 , 0.000009 , 0.000012 , 0.000003 , 0.016381 , 0.020622 , 0.109042 , 0.803133 , 0.000139 , 0.000350 , 0.000275 , 0.000137 , 0.000256 , 0.000102 }, { 0.018308 , 0.027443 , 0.115803 , 0.576652 , 0.000168 , 0.000085 , 0.000003 , 0.000004 , 0.000309 , 0.000110 , 0.000771 , 0.002303 , 0.004867 , 0.048003 , 0.000026 , 0.000022 , 0.000003 , 0.000004 , 0.000046 , 0.000006 , 0.021559 , 0.038468 , 0.136925 , 0.793691 , 0.000276 , 0.000185 , 0.000013 , 0.000019 , 0.000533 , 0.000140 }, { 0.011037 , 0.014235 , 0.072591 , 0.573274 , 0.000063 , 0.000088 , 0.000089 , 0.000040 , 0.000125 , 0.000037 , 0.000304 , 0.000606 , 0.001983 , 0.029794 , 0.000004 , 0.000016 , 0.000024 , 0.000008 , 0.000018 , 0.000002 , 0.013193 , 0.019133 , 0.088019 , 0.810298 , 0.000103 , 0.000253 , 0.000357 , 0.000120 , 0.000321 , 0.000057 }, { 0.010133 , 0.016002 , 0.066964 , 0.560375 , 0.000057 , 0.000075 , 0.000097 , 0.000047 , 0.000098 , 0.000034 , 0.000222 , 0.000615 , 0.001640 , 0.025090 , 0.000003 , 0.000012 , 0.000021 , 0.000006 , 0.000007 , 0.000001 , 0.012291 , 0.022002 , 0.083006 , 0.820353 , 0.000080 , 0.000215 , 0.000365 , 0.000112 , 0.000170 , 0.000052 }, { 0.016809 , 0.028868 , 0.108864 , 0.600540 , 0.000156 , 0.000163 , 0.000098 , 0.000053 , 0.000285 , 0.000092 , 0.000718 , 0.002422 , 0.005616 , 0.054847 , 0.000013 , 0.000034 , 0.000060 , 0.000016 , 0.000049 , 0.000007 , 0.019055 , 0.037494 , 0.127189 , 0.778069 , 0.000194 , 0.000271 , 0.000280 , 0.000113 , 0.000453 , 0.000114 }, { 0.014134 , 0.019352 , 0.094191 , 0.638536 , 0.000086 , 0.000164 , 0.000134 , 0.000065 , 0.000168 , 0.000071 , 0.000864 , 0.001736 , 0.004277 , 0.075634 , 0.000008 , 0.000104 , 0.000098 , 0.000027 , 0.000040 , 0.000022 , 0.015468 , 0.021706 , 0.099753 , 0.752610 , 0.000098 , 0.000242 , 0.000218 , 0.000100 , 0.000223 , 0.000086 }, { 0.013824 , 0.024496 , 0.092354 , 0.596058 , 0.000116 , 0.000168 , 0.000136 , 0.000068 , 0.000228 , 0.000072 , 0.000475 , 0.001528 , 0.002975 , 0.039060 , 0.000010 , 0.000039 , 0.000035 , 0.000016 , 0.000024 , 0.000007 , 0.016014 , 0.032949 , 0.106028 , 0.788209 , 0.000179 , 0.000397 , 0.000338 , 0.000152 , 0.000365 , 0.000118 }, { 0.014129 , 0.015998 , 0.090818 , 0.647389 , 0.000093 , 0.000074 , 0.000025 , 0.000036 , 0.000168 , 0.000053 , 0.000256 , 0.001149 , 0.001787 , 0.022917 , 0.000005 , 0.000013 , 0.000007 , 0.000009 , 0.000013 , 0.000002 , 0.015205 , 0.021709 , 0.098727 , 0.749136 , 0.000115 , 0.000155 , 0.000063 , 0.000080 , 0.000227 , 0.000061 }, { 0.015108 , 0.016875 , 0.096541 , 0.653557 , 0.000086 , 0.000060 , 0.000022 , 0.000029 , 0.000171 , 0.000060 , 0.000231 , 0.000706 , 0.001731 , 0.020744 , 0.000005 , 0.000010 , 0.000010 , 0.000012 , 0.000013 , 0.000002 , 0.016067 , 0.020808 , 0.104020 , 0.742351 , 0.000111 , 0.000110 , 0.000067 , 0.000089 , 0.000230 , 0.000072 }, { 0.015175 , 0.018543 , 0.096869 , 0.657415 , 0.000087 , 0.000058 , 0.000029 , 0.000035 , 0.000177 , 0.000062 , 0.000162 , 0.001819 , 0.001335 , 0.013675 , 0.000006 , 0.000014 , 0.000012 , 0.000010 , 0.000019 , 0.000002 , 0.016103 , 0.027350 , 0.104068 , 0.738795 , 0.000115 , 0.000133 , 0.000091 , 0.000085 , 0.000272 , 0.000071 }, { 0.016309 , 0.021496 , 0.108529 , 0.624450 , 0.000125 , 0.000198 , 0.000202 , 0.000063 , 0.000273 , 0.000096 , 0.000514 , 0.001581 , 0.006555 , 0.039547 , 0.000009 , 0.000098 , 0.000146 , 0.000036 , 0.000042 , 0.000013 , 0.018051 , 0.027548 , 0.128139 , 0.760553 , 0.000154 , 0.000532 , 0.000641 , 0.000176 , 0.000423 , 0.000135 }, { 0.016912 , 0.021862 , 0.108391 , 0.637587 , 0.000111 , 0.000100 , 0.000053 , 0.000023 , 0.000229 , 0.000075 , 0.000328 , 0.001149 , 0.002320 , 0.025190 , 0.000008 , 0.000030 , 0.000029 , 0.000009 , 0.000028 , 0.000002 , 0.018356 , 0.026936 , 0.119144 , 0.751712 , 0.000151 , 0.000227 , 0.000196 , 0.000066 , 0.000341 , 0.000087 }, { 0.014272 , 0.023634 , 0.092565 , 0.575960 , 0.000105 , 0.000113 , 0.000089 , 0.000057 , 0.000189 , 0.000067 , 0.000210 , 0.000664 , 0.001446 , 0.015702 , 0.000004 , 0.000015 , 0.000016 , 0.000007 , 0.000012 , 0.000002 , 0.017588 , 0.032390 , 0.114325 , 0.802659 , 0.000163 , 0.000423 , 0.000404 , 0.000174 , 0.000400 , 0.000104 }, { 0.019905 , 0.034720 , 0.127569 , 0.615564 , 0.000199 , 0.000145 , 0.000050 , 0.000035 , 0.000374 , 0.000125 , 0.000519 , 0.003991 , 0.003521 , 0.033373 , 0.000015 , 0.000029 , 0.000033 , 0.000016 , 0.000042 , 0.000006 , 0.022103 , 0.053159 , 0.142562 , 0.760542 , 0.000278 , 0.000278 , 0.000209 , 0.000129 , 0.000573 , 0.000152 }, { 0.018806 , 0.025437 , 0.121558 , 0.635762 , 0.000176 , 0.000155 , 0.000092 , 0.000057 , 0.000302 , 0.000117 , 0.000272 , 0.001399 , 0.002304 , 0.018364 , 0.000013 , 0.000032 , 0.000047 , 0.000017 , 0.000040 , 0.000005 , 0.020268 , 0.033837 , 0.135620 , 0.748155 , 0.000241 , 0.000376 , 0.000391 , 0.000183 , 0.000561 , 0.000154 }, { 0.012941 , 0.014589 , 0.087177 , 0.602551 , 0.000113 , 0.000193 , 0.000207 , 0.000105 , 0.000203 , 0.000064 , 0.000557 , 0.000895 , 0.003430 , 0.050228 , 0.000009 , 0.000039 , 0.000042 , 0.000018 , 0.000016 , 0.000007 , 0.014977 , 0.019142 , 0.101199 , 0.784592 , 0.000149 , 0.000380 , 0.000374 , 0.000188 , 0.000275 , 0.000101 }, { 0.014298 , 0.015030 , 0.093043 , 0.633785 , 0.000099 , 0.000101 , 0.000084 , 0.000055 , 0.000171 , 0.000060 , 0.000238 , 0.000732 , 0.002099 , 0.020991 , 0.000006 , 0.000023 , 0.000031 , 0.000015 , 0.000014 , 0.000003 , 0.015694 , 0.019654 , 0.107529 , 0.759334 , 0.000130 , 0.000271 , 0.000307 , 0.000158 , 0.000266 , 0.000076 }, { 0.014664 , 0.015917 , 0.096706 , 0.655031 , 0.000112 , 0.000175 , 0.000111 , 0.000083 , 0.000194 , 0.000063 , 0.000418 , 0.001037 , 0.002715 , 0.038690 , 0.000009 , 0.000041 , 0.000031 , 0.000022 , 0.000023 , 0.000005 , 0.015645 , 0.017801 , 0.102843 , 0.740588 , 0.000135 , 0.000280 , 0.000190 , 0.000138 , 0.000252 , 0.000076 }, { 0.017893 , 0.030405 , 0.115128 , 0.605163 , 0.000164 , 0.000122 , 0.000081 , 0.000048 , 0.000243 , 0.000108 , 0.000621 , 0.002851 , 0.004936 , 0.042165 , 0.000016 , 0.000035 , 0.000033 , 0.000019 , 0.000034 , 0.000004 , 0.020281 , 0.041838 , 0.135360 , 0.772647 , 0.000223 , 0.000269 , 0.000231 , 0.000129 , 0.000368 , 0.000126 }, { 0.013505 , 0.014503 , 0.085667 , 0.614589 , 0.000070 , 0.000032 , 0.000013 , 0.000017 , 0.000151 , 0.000049 , 0.000292 , 0.000843 , 0.001806 , 0.026713 , 0.000005 , 0.000006 , 0.000005 , 0.000006 , 0.000014 , 0.000001 , 0.015215 , 0.020104 , 0.095853 , 0.777179 , 0.000093 , 0.000066 , 0.000044 , 0.000054 , 0.000234 , 0.000053 }, { 0.014673 , 0.020440 , 0.095319 , 0.600758 , 0.000117 , 0.000124 , 0.000046 , 0.000034 , 0.000188 , 0.000069 , 0.000218 , 0.000661 , 0.001573 , 0.017518 , 0.000005 , 0.000016 , 0.000016 , 0.000008 , 0.000015 , 0.000002 , 0.016733 , 0.027427 , 0.111082 , 0.784659 , 0.000177 , 0.000341 , 0.000289 , 0.000156 , 0.000383 , 0.000094 }, { 0.018393 , 0.024765 , 0.117567 , 0.643353 , 0.000155 , 0.000111 , 0.000056 , 0.000046 , 0.000279 , 0.000094 , 0.000283 , 0.001599 , 0.001839 , 0.020388 , 0.000008 , 0.000024 , 0.000023 , 0.000014 , 0.000024 , 0.000003 , 0.019825 , 0.035434 , 0.128622 , 0.743444 , 0.000191 , 0.000265 , 0.000225 , 0.000136 , 0.000431 , 0.000109 }, { 0.013309 , 0.012469 , 0.086072 , 0.601378 , 0.000090 , 0.000081 , 0.000075 , 0.000040 , 0.000159 , 0.000051 , 0.000380 , 0.000569 , 0.002338 , 0.033875 , 0.000005 , 0.000017 , 0.000028 , 0.000008 , 0.000014 , 0.000002 , 0.015299 , 0.015737 , 0.099043 , 0.786867 , 0.000112 , 0.000176 , 0.000227 , 0.000084 , 0.000240 , 0.000064 }, { 0.014971 , 0.020399 , 0.096894 , 0.623535 , 0.000108 , 0.000117 , 0.000059 , 0.000041 , 0.000187 , 0.000075 , 0.000348 , 0.001364 , 0.002494 , 0.028884 , 0.000007 , 0.000025 , 0.000023 , 0.000015 , 0.000020 , 0.000004 , 0.016500 , 0.027988 , 0.108578 , 0.766478 , 0.000156 , 0.000280 , 0.000211 , 0.000140 , 0.000311 , 0.000099 }, { 0.018067 , 0.037773 , 0.118032 , 0.628101 , 0.000191 , 0.000240 , 0.000070 , 0.000070 , 0.000329 , 0.000114 , 0.000457 , 0.003057 , 0.003335 , 0.032379 , 0.000020 , 0.000054 , 0.000029 , 0.000027 , 0.000024 , 0.000009 , 0.020061 , 0.049750 , 0.133100 , 0.753752 , 0.000273 , 0.000502 , 0.000216 , 0.000202 , 0.000433 , 0.000154 }, { 0.016205 , 0.013103 , 0.105288 , 0.669741 , 0.000155 , 0.000125 , 0.000082 , 0.000079 , 0.000288 , 0.000080 , 0.000491 , 0.001214 , 0.003176 , 0.039104 , 0.000016 , 0.000034 , 0.000014 , 0.000010 , 0.000031 , 0.000007 , 0.016863 , 0.014959 , 0.109420 , 0.725193 , 0.000174 , 0.000165 , 0.000102 , 0.000089 , 0.000325 , 0.000086 }, { 0.013652 , 0.020643 , 0.093551 , 0.627643 , 0.000091 , 0.000204 , 0.000250 , 0.000089 , 0.000187 , 0.000063 , 0.000232 , 0.000802 , 0.003176 , 0.022165 , 0.000006 , 0.000057 , 0.000073 , 0.000020 , 0.000014 , 0.000005 , 0.014981 , 0.025261 , 0.114900 , 0.762976 , 0.000130 , 0.000650 , 0.000826 , 0.000227 , 0.000263 , 0.000106 }, { 0.007984 , 0.010858 , 0.053003 , 0.413674 , 0.000058 , 0.000081 , 0.000078 , 0.000044 , 0.000107 , 0.000035 , 0.000706 , 0.000625 , 0.004854 , 0.090915 , 0.000004 , 0.000020 , 0.000023 , 0.000011 , 0.000010 , 0.000003 , 0.011935 , 0.014242 , 0.080922 , 0.900388 , 0.000078 , 0.000206 , 0.000217 , 0.000110 , 0.000155 , 0.000054 }, { 0.007103 , 0.007734 , 0.046053 , 0.471269 , 0.000032 , 0.000034 , 0.000037 , 0.000029 , 0.000059 , 0.000018 , 0.000232 , 0.000378 , 0.001444 , 0.031549 , 0.000002 , 0.000004 , 0.000006 , 0.000003 , 0.000004 , 0.000001 , 0.009791 , 0.011946 , 0.063104 , 0.877756 , 0.000047 , 0.000087 , 0.000106 , 0.000067 , 0.000095 , 0.000025 }, { 0.013613 , 0.022036 , 0.089598 , 0.582194 , 0.000119 , 0.000125 , 0.000137 , 0.000065 , 0.000181 , 0.000068 , 0.000612 , 0.002088 , 0.004850 , 0.049134 , 0.000014 , 0.000033 , 0.000046 , 0.000020 , 0.000027 , 0.000004 , 0.016203 , 0.033623 , 0.110329 , 0.797711 , 0.000172 , 0.000309 , 0.000377 , 0.000165 , 0.000304 , 0.000092 }, { 0.007925 , 0.004573 , 0.054099 , 0.440986 , 0.000052 , 0.000122 , 0.000132 , 0.000065 , 0.000107 , 0.000035 , 0.000482 , 0.000399 , 0.003784 , 0.067580 , 0.000003 , 0.000022 , 0.000024 , 0.000007 , 0.000013 , 0.000003 , 0.011181 , 0.007635 , 0.081325 , 0.889462 , 0.000071 , 0.000293 , 0.000314 , 0.000117 , 0.000203 , 0.000052 }, { 0.008562 , 0.008828 , 0.057215 , 0.557487 , 0.000046 , 0.000083 , 0.000111 , 0.000062 , 0.000086 , 0.000026 , 0.000247 , 0.000365 , 0.001647 , 0.032090 , 0.000002 , 0.000015 , 0.000019 , 0.000005 , 0.000008 , 0.000002 , 0.010393 , 0.011387 , 0.068150 , 0.824542 , 0.000060 , 0.000227 , 0.000279 , 0.000096 , 0.000152 , 0.000040 }, { 0.016554 , 0.022603 , 0.106156 , 0.640071 , 0.000134 , 0.000100 , 0.000042 , 0.000028 , 0.000223 , 0.000078 , 0.000274 , 0.001242 , 0.002046 , 0.023008 , 0.000009 , 0.000012 , 0.000017 , 0.000008 , 0.000027 , 0.000002 , 0.017913 , 0.027568 , 0.115889 , 0.750473 , 0.000181 , 0.000158 , 0.000133 , 0.000073 , 0.000351 , 0.000090 }, { 0.013992 , 0.014565 , 0.091531 , 0.623043 , 0.000108 , 0.000128 , 0.000095 , 0.000068 , 0.000202 , 0.000061 , 0.000489 , 0.000705 , 0.003645 , 0.040867 , 0.000005 , 0.000042 , 0.000042 , 0.000016 , 0.000023 , 0.000005 , 0.015617 , 0.017433 , 0.104557 , 0.768028 , 0.000122 , 0.000295 , 0.000249 , 0.000134 , 0.000301 , 0.000081 }, { 0.014965 , 0.028918 , 0.097330 , 0.639496 , 0.000106 , 0.000120 , 0.000048 , 0.000046 , 0.000164 , 0.000066 , 0.000388 , 0.001589 , 0.003076 , 0.031783 , 0.000008 , 0.000029 , 0.000022 , 0.000017 , 0.000022 , 0.000006 , 0.016296 , 0.035330 , 0.106725 , 0.752718 , 0.000132 , 0.000241 , 0.000141 , 0.000112 , 0.000240 , 0.000089 }, { 0.018939 , 0.033858 , 0.123781 , 0.618905 , 0.000173 , 0.000205 , 0.000114 , 0.000047 , 0.000343 , 0.000116 , 0.000805 , 0.002139 , 0.006128 , 0.048419 , 0.000013 , 0.000064 , 0.000060 , 0.000024 , 0.000063 , 0.000006 , 0.021226 , 0.040986 , 0.139861 , 0.758980 , 0.000217 , 0.000449 , 0.000342 , 0.000142 , 0.000525 , 0.000136 }, { 0.007903 , 0.007806 , 0.053744 , 0.588524 , 0.000033 , 0.000084 , 0.000105 , 0.000058 , 0.000057 , 0.000021 , 0.000281 , 0.000462 , 0.002313 , 0.037605 , 0.000003 , 0.000018 , 0.000018 , 0.000006 , 0.000003 , 0.000002 , 0.009401 , 0.010536 , 0.066342 , 0.802874 , 0.000049 , 0.000190 , 0.000203 , 0.000090 , 0.000074 , 0.000033 }, { 0.009340 , 0.010952 , 0.062091 , 0.559063 , 0.000042 , 0.000070 , 0.000054 , 0.000033 , 0.000086 , 0.000027 , 0.000212 , 0.000523 , 0.001867 , 0.026405 , 0.000003 , 0.000018 , 0.000013 , 0.000006 , 0.000007 , 0.000002 , 0.011376 , 0.015613 , 0.081035 , 0.822037 , 0.000064 , 0.000273 , 0.000188 , 0.000083 , 0.000155 , 0.000045 }, { 0.013287 , 0.015240 , 0.086750 , 0.590801 , 0.000090 , 0.000105 , 0.000074 , 0.000039 , 0.000176 , 0.000059 , 0.000322 , 0.000710 , 0.002467 , 0.029614 , 0.000004 , 0.000028 , 0.000035 , 0.000011 , 0.000017 , 0.000003 , 0.015360 , 0.019819 , 0.102644 , 0.794337 , 0.000119 , 0.000311 , 0.000346 , 0.000130 , 0.000281 , 0.000081 }, { 0.014850 , 0.023440 , 0.097171 , 0.606784 , 0.000098 , 0.000123 , 0.000123 , 0.000040 , 0.000177 , 0.000068 , 0.000356 , 0.000891 , 0.002613 , 0.030966 , 0.000008 , 0.000036 , 0.000052 , 0.000014 , 0.000018 , 0.000004 , 0.016726 , 0.028774 , 0.114033 , 0.778795 , 0.000153 , 0.000401 , 0.000509 , 0.000133 , 0.000290 , 0.000092 }, { 0.011215 , 0.009607 , 0.073407 , 0.609664 , 0.000063 , 0.000074 , 0.000063 , 0.000051 , 0.000111 , 0.000039 , 0.000383 , 0.000525 , 0.002971 , 0.039002 , 0.000004 , 0.000019 , 0.000022 , 0.000009 , 0.000012 , 0.000002 , 0.012773 , 0.012460 , 0.086110 , 0.783224 , 0.000080 , 0.000179 , 0.000159 , 0.000093 , 0.000176 , 0.000051 }, { 0.018233 , 0.043176 , 0.116431 , 0.594055 , 0.000165 , 0.000124 , 0.000041 , 0.000028 , 0.000325 , 0.000108 , 0.000427 , 0.002556 , 0.002563 , 0.028487 , 0.000012 , 0.000018 , 0.000019 , 0.000011 , 0.000037 , 0.000004 , 0.020972 , 0.060244 , 0.133500 , 0.780147 , 0.000257 , 0.000239 , 0.000193 , 0.000105 , 0.000584 , 0.000139 }, { 0.016814 , 0.018723 , 0.108421 , 0.620185 , 0.000153 , 0.000125 , 0.000053 , 0.000039 , 0.000231 , 0.000092 , 0.000350 , 0.000702 , 0.002388 , 0.025827 , 0.000010 , 0.000016 , 0.000025 , 0.000011 , 0.000027 , 0.000003 , 0.018737 , 0.021968 , 0.121084 , 0.766037 , 0.000212 , 0.000227 , 0.000226 , 0.000103 , 0.000387 , 0.000112 }, { 0.014302 , 0.016303 , 0.091324 , 0.648383 , 0.000086 , 0.000068 , 0.000032 , 0.000028 , 0.000151 , 0.000055 , 0.000291 , 0.000643 , 0.001551 , 0.023021 , 0.000006 , 0.000016 , 0.000014 , 0.000008 , 0.000015 , 0.000002 , 0.015697 , 0.019768 , 0.098456 , 0.748282 , 0.000117 , 0.000149 , 0.000117 , 0.000077 , 0.000243 , 0.000066 }, { 0.010386 , 0.010539 , 0.067275 , 0.590497 , 0.000049 , 0.000048 , 0.000046 , 0.000033 , 0.000092 , 0.000031 , 0.000146 , 0.000270 , 0.001031 , 0.016405 , 0.000002 , 0.000005 , 0.000008 , 0.000004 , 0.000006 , 0.000001 , 0.012088 , 0.014952 , 0.078960 , 0.799809 , 0.000070 , 0.000139 , 0.000201 , 0.000089 , 0.000182 , 0.000039 }, { 0.015872 , 0.025741 , 0.101724 , 0.651709 , 0.000102 , 0.000076 , 0.000040 , 0.000029 , 0.000217 , 0.000068 , 0.000313 , 0.001837 , 0.002420 , 0.025037 , 0.000007 , 0.000024 , 0.000021 , 0.000008 , 0.000022 , 0.000002 , 0.016946 , 0.034847 , 0.110913 , 0.741332 , 0.000136 , 0.000199 , 0.000145 , 0.000067 , 0.000315 , 0.000079 }, { 0.015869 , 0.016395 , 0.102514 , 0.647416 , 0.000100 , 0.000102 , 0.000061 , 0.000034 , 0.000193 , 0.000067 , 0.000219 , 0.000634 , 0.001902 , 0.018235 , 0.000005 , 0.000025 , 0.000034 , 0.000010 , 0.000017 , 0.000003 , 0.017016 , 0.020756 , 0.115419 , 0.745281 , 0.000139 , 0.000321 , 0.000342 , 0.000110 , 0.000327 , 0.000087 }, { 0.015728 , 0.030403 , 0.099944 , 0.629350 , 0.000101 , 0.000061 , 0.000015 , 0.000021 , 0.000202 , 0.000066 , 0.000317 , 0.001491 , 0.002005 , 0.025636 , 0.000007 , 0.000011 , 0.000007 , 0.000008 , 0.000015 , 0.000002 , 0.017349 , 0.038569 , 0.110167 , 0.760374 , 0.000147 , 0.000132 , 0.000054 , 0.000072 , 0.000279 , 0.000076 }, { 0.023019 , 0.037917 , 0.152262 , 0.631943 , 0.000253 , 0.000397 , 0.000223 , 0.000074 , 0.000493 , 0.000233 , 0.001363 , 0.002207 , 0.008205 , 0.065888 , 0.000045 , 0.000243 , 0.000147 , 0.000046 , 0.000066 , 0.000057 , 0.025208 , 0.040584 , 0.162026 , 0.736576 , 0.000313 , 0.000631 , 0.000371 , 0.000124 , 0.000584 , 0.000281 }, { 0.016099 , 0.021259 , 0.102610 , 0.660567 , 0.000088 , 0.000055 , 0.000053 , 0.000013 , 0.000181 , 0.000069 , 0.000199 , 0.001953 , 0.001065 , 0.016539 , 0.000008 , 0.000019 , 0.000038 , 0.000007 , 0.000024 , 0.000003 , 0.017002 , 0.033931 , 0.107671 , 0.734234 , 0.000134 , 0.000184 , 0.000280 , 0.000061 , 0.000337 , 0.000088 }, { 0.016732 , 0.024495 , 0.105757 , 0.604118 , 0.000108 , 0.000052 , 0.000012 , 0.000017 , 0.000240 , 0.000082 , 0.000507 , 0.000965 , 0.003193 , 0.037352 , 0.000009 , 0.000010 , 0.000009 , 0.000009 , 0.000032 , 0.000004 , 0.019056 , 0.028326 , 0.119977 , 0.778466 , 0.000143 , 0.000093 , 0.000044 , 0.000061 , 0.000392 , 0.000098 }, { 0.008704 , 0.007317 , 0.056847 , 0.562986 , 0.000040 , 0.000045 , 0.000064 , 0.000038 , 0.000066 , 0.000023 , 0.000259 , 0.000277 , 0.001737 , 0.032480 , 0.000003 , 0.000008 , 0.000011 , 0.000005 , 0.000005 , 0.000001 , 0.010699 , 0.009771 , 0.070342 , 0.820652 , 0.000066 , 0.000129 , 0.000175 , 0.000089 , 0.000113 , 0.000030 }, { 0.013367 , 0.019716 , 0.086971 , 0.618599 , 0.000076 , 0.000091 , 0.000061 , 0.000035 , 0.000173 , 0.000053 , 0.000284 , 0.001191 , 0.002060 , 0.025423 , 0.000004 , 0.000025 , 0.000030 , 0.000011 , 0.000017 , 0.000004 , 0.014946 , 0.028134 , 0.098270 , 0.773227 , 0.000096 , 0.000298 , 0.000278 , 0.000117 , 0.000282 , 0.000082 }, { 0.016321 , 0.027363 , 0.104827 , 0.648490 , 0.000112 , 0.000084 , 0.000040 , 0.000037 , 0.000217 , 0.000080 , 0.000934 , 0.002234 , 0.006541 , 0.068568 , 0.000006 , 0.000023 , 0.000028 , 0.000022 , 0.000043 , 0.000008 , 0.017573 , 0.030035 , 0.113799 , 0.740638 , 0.000120 , 0.000115 , 0.000066 , 0.000061 , 0.000278 , 0.000088 }, { 0.013810 , 0.021049 , 0.090736 , 0.613438 , 0.000095 , 0.000106 , 0.000128 , 0.000054 , 0.000183 , 0.000059 , 0.000277 , 0.000988 , 0.002575 , 0.024140 , 0.000006 , 0.000029 , 0.000047 , 0.000011 , 0.000020 , 0.000004 , 0.015399 , 0.029422 , 0.112609 , 0.774889 , 0.000140 , 0.000411 , 0.000503 , 0.000140 , 0.000348 , 0.000098 }, { 0.010303 , 0.012682 , 0.067519 , 0.554766 , 0.000068 , 0.000064 , 0.000091 , 0.000060 , 0.000104 , 0.000037 , 0.000493 , 0.001286 , 0.003669 , 0.052644 , 0.000004 , 0.000011 , 0.000027 , 0.000011 , 0.000011 , 0.000002 , 0.012676 , 0.020020 , 0.086482 , 0.822546 , 0.000088 , 0.000124 , 0.000237 , 0.000110 , 0.000158 , 0.000046 }, { 0.016538 , 0.016861 , 0.104948 , 0.656879 , 0.000113 , 0.000049 , 0.000012 , 0.000017 , 0.000189 , 0.000079 , 0.000373 , 0.001278 , 0.002295 , 0.028132 , 0.000011 , 0.000008 , 0.000008 , 0.000010 , 0.000014 , 0.000004 , 0.017597 , 0.020850 , 0.111933 , 0.736794 , 0.000150 , 0.000070 , 0.000036 , 0.000052 , 0.000230 , 0.000094 }, { 0.018141 , 0.037717 , 0.117454 , 0.635971 , 0.000146 , 0.000161 , 0.000175 , 0.000065 , 0.000219 , 0.000104 , 0.000376 , 0.004577 , 0.003051 , 0.026747 , 0.000013 , 0.000047 , 0.000090 , 0.000020 , 0.000023 , 0.000007 , 0.019670 , 0.058569 , 0.129684 , 0.747404 , 0.000205 , 0.000397 , 0.000572 , 0.000152 , 0.000333 , 0.000138 }, { 0.006925 , 0.008892 , 0.045750 , 0.376233 , 0.000047 , 0.000061 , 0.000063 , 0.000038 , 0.000083 , 0.000026 , 0.000336 , 0.000375 , 0.002269 , 0.042672 , 0.000003 , 0.000008 , 0.000011 , 0.000005 , 0.000006 , 0.000001 , 0.011005 , 0.013126 , 0.073616 , 0.921243 , 0.000075 , 0.000149 , 0.000195 , 0.000087 , 0.000150 , 0.000040 }, { 0.018166 , 0.026523 , 0.116422 , 0.665528 , 0.000187 , 0.000110 , 0.000091 , 0.000113 , 0.000308 , 0.000090 , 0.000980 , 0.003503 , 0.006143 , 0.074620 , 0.000022 , 0.000023 , 0.000019 , 0.000029 , 0.000041 , 0.000005 , 0.018945 , 0.029014 , 0.121402 , 0.721752 , 0.000208 , 0.000128 , 0.000109 , 0.000137 , 0.000339 , 0.000092 }, { 0.016665 , 0.023723 , 0.106335 , 0.602831 , 0.000150 , 0.000087 , 0.000051 , 0.000037 , 0.000191 , 0.000085 , 0.000639 , 0.003569 , 0.004637 , 0.048912 , 0.000009 , 0.000020 , 0.000038 , 0.000019 , 0.000019 , 0.000005 , 0.018970 , 0.036261 , 0.122616 , 0.778017 , 0.000181 , 0.000146 , 0.000149 , 0.000099 , 0.000244 , 0.000104 }, { 0.013000 , 0.013009 , 0.084037 , 0.598500 , 0.000071 , 0.000074 , 0.000048 , 0.000028 , 0.000147 , 0.000049 , 0.000213 , 0.000378 , 0.001591 , 0.020310 , 0.000003 , 0.000015 , 0.000020 , 0.000007 , 0.000010 , 0.000002 , 0.014969 , 0.015875 , 0.097586 , 0.789926 , 0.000093 , 0.000243 , 0.000275 , 0.000100 , 0.000234 , 0.000072 }, { 0.018040 , 0.029605 , 0.115748 , 0.622326 , 0.000167 , 0.000135 , 0.000068 , 0.000041 , 0.000307 , 0.000099 , 0.000387 , 0.001607 , 0.002372 , 0.028937 , 0.000014 , 0.000026 , 0.000033 , 0.000018 , 0.000039 , 0.000002 , 0.019837 , 0.036636 , 0.125913 , 0.761363 , 0.000236 , 0.000250 , 0.000258 , 0.000136 , 0.000487 , 0.000108 }, { 0.016995 , 0.025492 , 0.108638 , 0.641708 , 0.000117 , 0.000094 , 0.000036 , 0.000026 , 0.000220 , 0.000083 , 0.000165 , 0.001230 , 0.001167 , 0.012687 , 0.000005 , 0.000014 , 0.000016 , 0.000008 , 0.000017 , 0.000002 , 0.018274 , 0.037799 , 0.117644 , 0.748133 , 0.000163 , 0.000270 , 0.000266 , 0.000116 , 0.000410 , 0.000099 }, { 0.016420 , 0.021414 , 0.105291 , 0.606570 , 0.000133 , 0.000098 , 0.000057 , 0.000025 , 0.000284 , 0.000082 , 0.000311 , 0.001717 , 0.001972 , 0.022112 , 0.000008 , 0.000025 , 0.000027 , 0.000010 , 0.000027 , 0.000004 , 0.018705 , 0.034071 , 0.120110 , 0.777061 , 0.000188 , 0.000274 , 0.000310 , 0.000104 , 0.000462 , 0.000108 }, { 0.011331 , 0.008399 , 0.072749 , 0.629796 , 0.000050 , 0.000039 , 0.000028 , 0.000027 , 0.000077 , 0.000033 , 0.000307 , 0.000664 , 0.002008 , 0.032344 , 0.000003 , 0.000005 , 0.000007 , 0.000005 , 0.000008 , 0.000001 , 0.012582 , 0.011693 , 0.080684 , 0.768121 , 0.000063 , 0.000063 , 0.000067 , 0.000053 , 0.000113 , 0.000037 }, { 0.014459 , 0.017661 , 0.094888 , 0.603899 , 0.000107 , 0.000158 , 0.000103 , 0.000058 , 0.000220 , 0.000072 , 0.000267 , 0.001246 , 0.002016 , 0.023670 , 0.000006 , 0.000036 , 0.000041 , 0.000015 , 0.000020 , 0.000005 , 0.016430 , 0.028093 , 0.108908 , 0.782492 , 0.000152 , 0.000456 , 0.000484 , 0.000173 , 0.000379 , 0.000110 }, { 0.028470 , 0.054771 , 0.178585 , 0.585225 , 0.000477 , 0.000309 , 0.000000 , 0.000000 , 0.000787 , 0.000319 , 0.000914 , 0.006150 , 0.006333 , 0.040101 , 0.000042 , 0.000044 , 0.000000 , 0.000000 , 0.000108 , 0.000017 , 0.032340 , 0.079688 , 0.205583 , 0.755287 , 0.000646 , 0.000490 , 0.000000 , 0.000000 , 0.001196 , 0.000383 }, { 0.013102 , 0.018388 , 0.085396 , 0.561844 , 0.000099 , 0.000106 , 0.000106 , 0.000061 , 0.000156 , 0.000061 , 0.000207 , 0.000893 , 0.001501 , 0.017666 , 0.000005 , 0.000017 , 0.000020 , 0.000009 , 0.000011 , 0.000003 , 0.015970 , 0.028865 , 0.106746 , 0.814697 , 0.000151 , 0.000334 , 0.000381 , 0.000171 , 0.000298 , 0.000099 }, { 0.016620 , 0.024838 , 0.107342 , 0.598166 , 0.000152 , 0.000137 , 0.000075 , 0.000063 , 0.000226 , 0.000094 , 0.000620 , 0.002697 , 0.004454 , 0.043367 , 0.000009 , 0.000026 , 0.000025 , 0.000019 , 0.000026 , 0.000003 , 0.019095 , 0.039576 , 0.125206 , 0.781195 , 0.000191 , 0.000262 , 0.000193 , 0.000143 , 0.000350 , 0.000110 }, { 0.015166 , 0.019528 , 0.097151 , 0.632211 , 0.000110 , 0.000088 , 0.000050 , 0.000035 , 0.000192 , 0.000067 , 0.000269 , 0.001047 , 0.001731 , 0.022849 , 0.000004 , 0.000009 , 0.000019 , 0.000010 , 0.000014 , 0.000002 , 0.016561 , 0.026048 , 0.106029 , 0.759959 , 0.000133 , 0.000149 , 0.000193 , 0.000100 , 0.000279 , 0.000077 }, { 0.015653 , 0.018760 , 0.099692 , 0.637139 , 0.000101 , 0.000062 , 0.000002 , 0.000004 , 0.000194 , 0.000070 , 0.000226 , 0.000680 , 0.001428 , 0.018380 , 0.000004 , 0.000009 , 0.000001 , 0.000003 , 0.000016 , 0.000003 , 0.017088 , 0.024250 , 0.109095 , 0.755246 , 0.000134 , 0.000160 , 0.000013 , 0.000030 , 0.000314 , 0.000099 }, { 0.017215 , 0.025271 , 0.109788 , 0.617888 , 0.000144 , 0.000090 , 0.000056 , 0.000048 , 0.000223 , 0.000090 , 0.000360 , 0.001125 , 0.002561 , 0.026256 , 0.000010 , 0.000013 , 0.000029 , 0.000017 , 0.000028 , 0.000002 , 0.019126 , 0.031446 , 0.124107 , 0.766663 , 0.000194 , 0.000153 , 0.000224 , 0.000162 , 0.000378 , 0.000104 }, { 0.018396 , 0.022991 , 0.116562 , 0.643938 , 0.000152 , 0.000063 , 0.000002 , 0.000005 , 0.000317 , 0.000095 , 0.000386 , 0.002078 , 0.002541 , 0.027748 , 0.000014 , 0.000015 , 0.000002 , 0.000005 , 0.000038 , 0.000003 , 0.019808 , 0.030833 , 0.125621 , 0.743630 , 0.000204 , 0.000119 , 0.000008 , 0.000018 , 0.000448 , 0.000104 }, { 0.010487 , 0.015225 , 0.070246 , 0.520099 , 0.000077 , 0.000116 , 0.000142 , 0.000063 , 0.000139 , 0.000049 , 0.000367 , 0.000712 , 0.002391 , 0.038964 , 0.000006 , 0.000026 , 0.000040 , 0.000009 , 0.000010 , 0.000004 , 0.013418 , 0.020270 , 0.086595 , 0.845344 , 0.000123 , 0.000327 , 0.000489 , 0.000135 , 0.000218 , 0.000083 }, { 0.015764 , 0.023023 , 0.100738 , 0.598825 , 0.000112 , 0.000084 , 0.000041 , 0.000034 , 0.000253 , 0.000072 , 0.000429 , 0.002288 , 0.002671 , 0.033134 , 0.000008 , 0.000030 , 0.000026 , 0.000014 , 0.000033 , 0.000003 , 0.018115 , 0.037104 , 0.114343 , 0.783959 , 0.000159 , 0.000231 , 0.000177 , 0.000122 , 0.000444 , 0.000089 }, { 0.010361 , 0.010032 , 0.068694 , 0.641758 , 0.000058 , 0.000076 , 0.000110 , 0.000065 , 0.000089 , 0.000031 , 0.000222 , 0.000514 , 0.001544 , 0.026949 , 0.000005 , 0.000014 , 0.000028 , 0.000010 , 0.000013 , 0.000002 , 0.011310 , 0.012871 , 0.074957 , 0.759328 , 0.000085 , 0.000151 , 0.000273 , 0.000112 , 0.000156 , 0.000041 }, { 0.010666 , 0.015802 , 0.075057 , 0.526832 , 0.000076 , 0.000212 , 0.000216 , 0.000094 , 0.000170 , 0.000055 , 0.000880 , 0.001671 , 0.006893 , 0.094332 , 0.000008 , 0.000041 , 0.000056 , 0.000021 , 0.000016 , 0.000004 , 0.013520 , 0.021550 , 0.097874 , 0.835030 , 0.000102 , 0.000352 , 0.000421 , 0.000168 , 0.000223 , 0.000069 }, { 0.016140 , 0.036240 , 0.103382 , 0.644477 , 0.000102 , 0.000073 , 0.000078 , 0.000029 , 0.000196 , 0.000072 , 0.000265 , 0.001704 , 0.001882 , 0.021090 , 0.000011 , 0.000027 , 0.000049 , 0.000010 , 0.000021 , 0.000004 , 0.017406 , 0.044786 , 0.111327 , 0.746481 , 0.000154 , 0.000203 , 0.000306 , 0.000081 , 0.000297 , 0.000091 }, { 0.016604 , 0.018189 , 0.107474 , 0.657395 , 0.000121 , 0.000127 , 0.000048 , 0.000027 , 0.000211 , 0.000093 , 0.000232 , 0.000820 , 0.001178 , 0.018419 , 0.000007 , 0.000029 , 0.000040 , 0.000009 , 0.000021 , 0.000007 , 0.017537 , 0.021615 , 0.111692 , 0.736262 , 0.000146 , 0.000252 , 0.000185 , 0.000075 , 0.000311 , 0.000129 }, { 0.016148 , 0.019606 , 0.104581 , 0.602105 , 0.000138 , 0.000122 , 0.000088 , 0.000037 , 0.000224 , 0.000081 , 0.000353 , 0.000977 , 0.002476 , 0.026628 , 0.000007 , 0.000019 , 0.000031 , 0.000008 , 0.000019 , 0.000003 , 0.018440 , 0.027740 , 0.120448 , 0.780739 , 0.000200 , 0.000289 , 0.000409 , 0.000088 , 0.000368 , 0.000111 }, { 0.007068 , 0.006070 , 0.046560 , 0.514888 , 0.000029 , 0.000039 , 0.000051 , 0.000031 , 0.000046 , 0.000017 , 0.000395 , 0.000228 , 0.002949 , 0.055162 , 0.000002 , 0.000010 , 0.000012 , 0.000007 , 0.000007 , 0.000001 , 0.009425 , 0.007307 , 0.064744 , 0.851616 , 0.000037 , 0.000111 , 0.000116 , 0.000069 , 0.000089 , 0.000022 }, { 0.019094 , 0.022665 , 0.123568 , 0.651354 , 0.000197 , 0.000192 , 0.000078 , 0.000081 , 0.000300 , 0.000103 , 0.000573 , 0.002273 , 0.003133 , 0.044569 , 0.000019 , 0.000059 , 0.000037 , 0.000033 , 0.000027 , 0.000006 , 0.020177 , 0.026694 , 0.129543 , 0.734635 , 0.000231 , 0.000308 , 0.000147 , 0.000146 , 0.000356 , 0.000115 }, { 0.009242 , 0.009848 , 0.060497 , 0.584620 , 0.000041 , 0.000051 , 0.000044 , 0.000035 , 0.000073 , 0.000025 , 0.000261 , 0.000415 , 0.001907 , 0.032753 , 0.000003 , 0.000009 , 0.000011 , 0.000007 , 0.000007 , 0.000001 , 0.010992 , 0.011923 , 0.072885 , 0.804814 , 0.000060 , 0.000107 , 0.000122 , 0.000080 , 0.000118 , 0.000030 }, { 0.015479 , 0.018543 , 0.098970 , 0.648907 , 0.000087 , 0.000069 , 0.000021 , 0.000020 , 0.000154 , 0.000068 , 0.000212 , 0.001048 , 0.001644 , 0.016512 , 0.000005 , 0.000013 , 0.000012 , 0.000009 , 0.000015 , 0.000003 , 0.016648 , 0.026317 , 0.109036 , 0.745256 , 0.000124 , 0.000180 , 0.000119 , 0.000097 , 0.000266 , 0.000091 }, { 0.013630 , 0.018688 , 0.089307 , 0.607320 , 0.000092 , 0.000108 , 0.000089 , 0.000055 , 0.000178 , 0.000060 , 0.000274 , 0.001750 , 0.002246 , 0.025380 , 0.000008 , 0.000027 , 0.000031 , 0.000013 , 0.000014 , 0.000004 , 0.015436 , 0.029170 , 0.103504 , 0.781151 , 0.000135 , 0.000286 , 0.000302 , 0.000148 , 0.000257 , 0.000088 }, { 0.009594 , 0.009356 , 0.062387 , 0.606258 , 0.000038 , 0.000041 , 0.000055 , 0.000037 , 0.000092 , 0.000024 , 0.000282 , 0.000327 , 0.001841 , 0.035619 , 0.000002 , 0.000007 , 0.000013 , 0.000006 , 0.000010 , 0.000001 , 0.010974 , 0.010959 , 0.071476 , 0.788516 , 0.000050 , 0.000073 , 0.000124 , 0.000068 , 0.000145 , 0.000028 }, { 0.013910 , 0.017464 , 0.091034 , 0.641534 , 0.000076 , 0.000109 , 0.000084 , 0.000033 , 0.000162 , 0.000060 , 0.000393 , 0.001776 , 0.003043 , 0.036687 , 0.000005 , 0.000045 , 0.000049 , 0.000014 , 0.000031 , 0.000009 , 0.015120 , 0.023698 , 0.099649 , 0.753372 , 0.000093 , 0.000235 , 0.000233 , 0.000078 , 0.000265 , 0.000086 }, { 0.016445 , 0.016739 , 0.104477 , 0.658197 , 0.000089 , 0.000048 , 0.000029 , 0.000015 , 0.000171 , 0.000071 , 0.000195 , 0.000598 , 0.001423 , 0.016177 , 0.000006 , 0.000017 , 0.000021 , 0.000008 , 0.000021 , 0.000003 , 0.017377 , 0.019826 , 0.111507 , 0.736150 , 0.000123 , 0.000146 , 0.000151 , 0.000068 , 0.000295 , 0.000088 }, { 0.013776 , 0.020399 , 0.089808 , 0.652673 , 0.000082 , 0.000093 , 0.000101 , 0.000067 , 0.000154 , 0.000055 , 0.000280 , 0.000754 , 0.001860 , 0.026387 , 0.000009 , 0.000022 , 0.000041 , 0.000016 , 0.000022 , 0.000002 , 0.014726 , 0.023160 , 0.096350 , 0.744721 , 0.000113 , 0.000179 , 0.000255 , 0.000132 , 0.000229 , 0.000061 }, { 0.016490 , 0.024347 , 0.105803 , 0.641770 , 0.000125 , 0.000103 , 0.000035 , 0.000023 , 0.000227 , 0.000080 , 0.000286 , 0.001661 , 0.001984 , 0.022306 , 0.000007 , 0.000021 , 0.000020 , 0.000013 , 0.000025 , 0.000003 , 0.017769 , 0.033588 , 0.113492 , 0.749162 , 0.000168 , 0.000238 , 0.000162 , 0.000107 , 0.000355 , 0.000094 }, { 0.009327 , 0.009774 , 0.060346 , 0.594806 , 0.000038 , 0.000038 , 0.000041 , 0.000027 , 0.000067 , 0.000024 , 0.000313 , 0.000474 , 0.002343 , 0.038029 , 0.000004 , 0.000014 , 0.000019 , 0.000008 , 0.000006 , 0.000002 , 0.011031 , 0.011919 , 0.073645 , 0.797021 , 0.000056 , 0.000105 , 0.000144 , 0.000066 , 0.000102 , 0.000032 }, { 0.017363 , 0.019220 , 0.111276 , 0.617599 , 0.000134 , 0.000113 , 0.000063 , 0.000050 , 0.000242 , 0.000099 , 0.000347 , 0.000807 , 0.002208 , 0.023575 , 0.000009 , 0.000020 , 0.000025 , 0.000010 , 0.000025 , 0.000004 , 0.019549 , 0.025686 , 0.124178 , 0.767134 , 0.000214 , 0.000277 , 0.000288 , 0.000126 , 0.000415 , 0.000131 }, { 0.020411 , 0.035469 , 0.130478 , 0.605834 , 0.000216 , 0.000175 , 0.000090 , 0.000037 , 0.000331 , 0.000147 , 0.000841 , 0.002973 , 0.005735 , 0.047744 , 0.000029 , 0.000061 , 0.000057 , 0.000021 , 0.000068 , 0.000010 , 0.023068 , 0.044822 , 0.149642 , 0.766165 , 0.000306 , 0.000368 , 0.000271 , 0.000111 , 0.000529 , 0.000177 }, { 0.017424 , 0.028639 , 0.113329 , 0.662730 , 0.000137 , 0.000167 , 0.000147 , 0.000083 , 0.000239 , 0.000098 , 0.000472 , 0.002487 , 0.003740 , 0.028253 , 0.000018 , 0.000056 , 0.000070 , 0.000032 , 0.000030 , 0.000008 , 0.018389 , 0.035137 , 0.122779 , 0.727568 , 0.000178 , 0.000310 , 0.000306 , 0.000152 , 0.000307 , 0.000117 }, { 0.017071 , 0.018034 , 0.108767 , 0.634995 , 0.000132 , 0.000074 , 0.000028 , 0.000028 , 0.000225 , 0.000084 , 0.000258 , 0.001031 , 0.001658 , 0.018755 , 0.000008 , 0.000014 , 0.000012 , 0.000009 , 0.000021 , 0.000004 , 0.018600 , 0.026059 , 0.119016 , 0.754181 , 0.000180 , 0.000174 , 0.000122 , 0.000099 , 0.000356 , 0.000112 }, { 0.008902 , 0.012691 , 0.059107 , 0.481032 , 0.000055 , 0.000095 , 0.000088 , 0.000041 , 0.000100 , 0.000034 , 0.000306 , 0.000539 , 0.001918 , 0.035956 , 0.000003 , 0.000029 , 0.000022 , 0.000006 , 0.000008 , 0.000003 , 0.012070 , 0.017504 , 0.078464 , 0.870039 , 0.000082 , 0.000383 , 0.000340 , 0.000098 , 0.000171 , 0.000069 }, { 0.014845 , 0.020456 , 0.101844 , 0.655743 , 0.000082 , 0.000232 , 0.000313 , 0.000081 , 0.000177 , 0.000081 , 0.000378 , 0.001551 , 0.003538 , 0.030450 , 0.000006 , 0.000078 , 0.000149 , 0.000024 , 0.000027 , 0.000014 , 0.015928 , 0.024704 , 0.111390 , 0.738089 , 0.000093 , 0.000437 , 0.000706 , 0.000157 , 0.000250 , 0.000113 }, { 0.018898 , 0.038102 , 0.121385 , 0.642496 , 0.000162 , 0.000139 , 0.000082 , 0.000038 , 0.000345 , 0.000111 , 0.000475 , 0.002491 , 0.003386 , 0.030308 , 0.000006 , 0.000052 , 0.000058 , 0.000017 , 0.000049 , 0.000008 , 0.020409 , 0.047983 , 0.132099 , 0.741316 , 0.000185 , 0.000303 , 0.000266 , 0.000109 , 0.000538 , 0.000136 }, { 0.009740 , 0.010478 , 0.063751 , 0.610532 , 0.000043 , 0.000064 , 0.000078 , 0.000045 , 0.000084 , 0.000024 , 0.000407 , 0.000700 , 0.003327 , 0.052865 , 0.000004 , 0.000017 , 0.000026 , 0.000013 , 0.000015 , 0.000001 , 0.010999 , 0.013176 , 0.074920 , 0.783752 , 0.000056 , 0.000138 , 0.000183 , 0.000091 , 0.000138 , 0.000028 }, { 0.009528 , 0.012395 , 0.064100 , 0.551566 , 0.000045 , 0.000109 , 0.000105 , 0.000050 , 0.000115 , 0.000032 , 0.000490 , 0.000832 , 0.004412 , 0.052409 , 0.000003 , 0.000050 , 0.000049 , 0.000013 , 0.000027 , 0.000004 , 0.012036 , 0.016572 , 0.088630 , 0.824851 , 0.000062 , 0.000372 , 0.000362 , 0.000125 , 0.000233 , 0.000052 }, { 0.011229 , 0.014925 , 0.071843 , 0.603932 , 0.000056 , 0.000041 , 0.000019 , 0.000018 , 0.000101 , 0.000034 , 0.000259 , 0.000852 , 0.001668 , 0.028744 , 0.000004 , 0.000007 , 0.000008 , 0.000005 , 0.000009 , 0.000001 , 0.012848 , 0.020368 , 0.082975 , 0.788328 , 0.000080 , 0.000096 , 0.000078 , 0.000053 , 0.000159 , 0.000042 }, { 0.015449 , 0.014889 , 0.098800 , 0.653771 , 0.000103 , 0.000070 , 0.000012 , 0.000022 , 0.000179 , 0.000066 , 0.000246 , 0.000779 , 0.001659 , 0.019904 , 0.000005 , 0.000009 , 0.000005 , 0.000008 , 0.000024 , 0.000002 , 0.016459 , 0.018995 , 0.105656 , 0.741733 , 0.000131 , 0.000120 , 0.000042 , 0.000065 , 0.000317 , 0.000076 }, { 0.016411 , 0.020301 , 0.105358 , 0.650981 , 0.000127 , 0.000101 , 0.000078 , 0.000043 , 0.000219 , 0.000082 , 0.000265 , 0.000968 , 0.001560 , 0.022392 , 0.000011 , 0.000025 , 0.000030 , 0.000014 , 0.000033 , 0.000006 , 0.017412 , 0.025256 , 0.112544 , 0.741842 , 0.000188 , 0.000262 , 0.000284 , 0.000134 , 0.000428 , 0.000121 }, { 0.020837 , 0.045779 , 0.132538 , 0.662591 , 0.000201 , 0.000135 , 0.000049 , 0.000037 , 0.000336 , 0.000130 , 0.000569 , 0.002266 , 0.004538 , 0.040763 , 0.000020 , 0.000029 , 0.000037 , 0.000025 , 0.000069 , 0.000004 , 0.021670 , 0.048019 , 0.138981 , 0.719095 , 0.000227 , 0.000171 , 0.000082 , 0.000062 , 0.000442 , 0.000134 }, { 0.021402 , 0.063322 , 0.134594 , 0.616190 , 0.000184 , 0.000113 , 0.000000 , 0.000000 , 0.000396 , 0.000138 , 0.001221 , 0.006648 , 0.008217 , 0.066116 , 0.000026 , 0.000026 , 0.000000 , 0.000000 , 0.000068 , 0.000008 , 0.023825 , 0.077768 , 0.151038 , 0.750875 , 0.000244 , 0.000163 , 0.000000 , 0.000000 , 0.000562 , 0.000158 }, { 0.016030 , 0.019653 , 0.103562 , 0.633316 , 0.000113 , 0.000103 , 0.000073 , 0.000038 , 0.000213 , 0.000074 , 0.000187 , 0.000609 , 0.001493 , 0.014543 , 0.000006 , 0.000022 , 0.000041 , 0.000010 , 0.000020 , 0.000003 , 0.017604 , 0.024176 , 0.116468 , 0.756881 , 0.000166 , 0.000326 , 0.000434 , 0.000122 , 0.000376 , 0.000097 }, { 0.009789 , 0.011627 , 0.069705 , 0.603916 , 0.000062 , 0.000168 , 0.000182 , 0.000078 , 0.000141 , 0.000039 , 0.000452 , 0.000914 , 0.004195 , 0.056462 , 0.000005 , 0.000033 , 0.000053 , 0.000013 , 0.000038 , 0.000003 , 0.011336 , 0.015387 , 0.082608 , 0.787273 , 0.000080 , 0.000299 , 0.000373 , 0.000122 , 0.000264 , 0.000048 }, { 0.009230 , 0.013142 , 0.062774 , 0.566806 , 0.000053 , 0.000124 , 0.000157 , 0.000068 , 0.000107 , 0.000031 , 0.000325 , 0.000715 , 0.002586 , 0.038632 , 0.000003 , 0.000028 , 0.000032 , 0.000007 , 0.000010 , 0.000003 , 0.011533 , 0.017663 , 0.082713 , 0.815932 , 0.000074 , 0.000389 , 0.000421 , 0.000119 , 0.000183 , 0.000056 }, { 0.015708 , 0.022169 , 0.102032 , 0.636580 , 0.000089 , 0.000096 , 0.000049 , 0.000023 , 0.000227 , 0.000072 , 0.000286 , 0.001574 , 0.002905 , 0.024496 , 0.000004 , 0.000045 , 0.000042 , 0.000013 , 0.000032 , 0.000004 , 0.017127 , 0.029829 , 0.116735 , 0.753787 , 0.000113 , 0.000281 , 0.000194 , 0.000080 , 0.000389 , 0.000088 }, { 0.008846 , 0.007368 , 0.060625 , 0.642365 , 0.000053 , 0.000105 , 0.000156 , 0.000073 , 0.000097 , 0.000025 , 0.000550 , 0.001138 , 0.003577 , 0.084992 , 0.000009 , 0.000036 , 0.000047 , 0.000007 , 0.000017 , 0.000004 , 0.009491 , 0.008751 , 0.065987 , 0.756174 , 0.000062 , 0.000155 , 0.000212 , 0.000082 , 0.000118 , 0.000029 }, { 0.016919 , 0.027008 , 0.109212 , 0.639958 , 0.000115 , 0.000138 , 0.000093 , 0.000042 , 0.000242 , 0.000085 , 0.000495 , 0.001412 , 0.003502 , 0.038454 , 0.000009 , 0.000046 , 0.000064 , 0.000019 , 0.000037 , 0.000006 , 0.018277 , 0.031326 , 0.119668 , 0.748586 , 0.000143 , 0.000293 , 0.000259 , 0.000104 , 0.000365 , 0.000105 }, { 0.016338 , 0.019424 , 0.105925 , 0.636848 , 0.000132 , 0.000188 , 0.000143 , 0.000086 , 0.000238 , 0.000085 , 0.000350 , 0.001244 , 0.001880 , 0.015872 , 0.000008 , 0.000044 , 0.000049 , 0.000017 , 0.000026 , 0.000006 , 0.019020 , 0.028401 , 0.118380 , 0.753073 , 0.000188 , 0.000587 , 0.000595 , 0.000209 , 0.000432 , 0.000124 }, { 0.023599 , 0.057584 , 0.150026 , 0.608777 , 0.000341 , 0.000246 , 0.000082 , 0.000025 , 0.000502 , 0.000185 , 0.000983 , 0.005673 , 0.006843 , 0.050475 , 0.000033 , 0.000087 , 0.000082 , 0.000025 , 0.000092 , 0.000008 , 0.026253 , 0.074217 , 0.170337 , 0.751777 , 0.000450 , 0.000466 , 0.000247 , 0.000076 , 0.000816 , 0.000212 }, { 0.020443 , 0.040831 , 0.128891 , 0.603182 , 0.000179 , 0.000106 , 0.000049 , 0.000020 , 0.000334 , 0.000132 , 0.000624 , 0.002878 , 0.004336 , 0.038509 , 0.000016 , 0.000024 , 0.000049 , 0.000020 , 0.000047 , 0.000009 , 0.023076 , 0.054027 , 0.145887 , 0.768914 , 0.000253 , 0.000202 , 0.000197 , 0.000081 , 0.000539 , 0.000167 }, { 0.019521 , 0.036992 , 0.124277 , 0.629020 , 0.000199 , 0.000111 , 0.000090 , 0.000057 , 0.000324 , 0.000120 , 0.000693 , 0.004865 , 0.004688 , 0.043251 , 0.000030 , 0.000026 , 0.000035 , 0.000021 , 0.000065 , 0.000007 , 0.021383 , 0.054874 , 0.137241 , 0.750279 , 0.000282 , 0.000191 , 0.000220 , 0.000125 , 0.000537 , 0.000144 }, { 0.010503 , 0.013403 , 0.068463 , 0.638519 , 0.000055 , 0.000053 , 0.000089 , 0.000049 , 0.000089 , 0.000029 , 0.000251 , 0.000737 , 0.001563 , 0.030119 , 0.000006 , 0.000010 , 0.000026 , 0.000008 , 0.000009 , 0.000001 , 0.011494 , 0.016598 , 0.074950 , 0.761827 , 0.000082 , 0.000099 , 0.000213 , 0.000079 , 0.000123 , 0.000033 }, { 0.018973 , 0.027239 , 0.122784 , 0.625864 , 0.000176 , 0.000186 , 0.000089 , 0.000027 , 0.000325 , 0.000119 , 0.000258 , 0.000938 , 0.002269 , 0.016736 , 0.000008 , 0.000054 , 0.000048 , 0.000012 , 0.000021 , 0.000008 , 0.020821 , 0.033743 , 0.140867 , 0.755257 , 0.000232 , 0.000680 , 0.000587 , 0.000139 , 0.000450 , 0.000188 }, { 0.019355 , 0.033169 , 0.123434 , 0.609486 , 0.000153 , 0.000112 , 0.000110 , 0.000020 , 0.000373 , 0.000120 , 0.000677 , 0.003647 , 0.005213 , 0.043245 , 0.000009 , 0.000059 , 0.000110 , 0.000020 , 0.000049 , 0.000009 , 0.021784 , 0.046432 , 0.143074 , 0.766032 , 0.000181 , 0.000265 , 0.000365 , 0.000068 , 0.000544 , 0.000148 }, { 0.011009 , 0.015153 , 0.074413 , 0.652480 , 0.000070 , 0.000103 , 0.000112 , 0.000085 , 0.000094 , 0.000042 , 0.000299 , 0.001677 , 0.003344 , 0.038676 , 0.000004 , 0.000035 , 0.000012 , 0.000011 , 0.000018 , 0.000006 , 0.011718 , 0.018860 , 0.081445 , 0.748162 , 0.000080 , 0.000162 , 0.000140 , 0.000106 , 0.000133 , 0.000053 }, { 0.008666 , 0.007486 , 0.055988 , 0.558619 , 0.000036 , 0.000033 , 0.000037 , 0.000030 , 0.000076 , 0.000024 , 0.000229 , 0.000309 , 0.001432 , 0.031209 , 0.000002 , 0.000006 , 0.000008 , 0.000006 , 0.000006 , 0.000001 , 0.010528 , 0.009862 , 0.066899 , 0.824026 , 0.000052 , 0.000079 , 0.000102 , 0.000078 , 0.000116 , 0.000038 }, { 0.026184 , 0.086609 , 0.164570 , 0.580116 , 0.000295 , 0.000408 , 0.000315 , 0.000046 , 0.000693 , 0.000264 , 0.000748 , 0.005035 , 0.004919 , 0.039934 , 0.000053 , 0.000220 , 0.000315 , 0.000046 , 0.000072 , 0.000026 , 0.029544 , 0.108567 , 0.185508 , 0.761231 , 0.000543 , 0.001043 , 0.001155 , 0.000170 , 0.000950 , 0.000363 }, { 0.009590 , 0.011195 , 0.063033 , 0.565617 , 0.000052 , 0.000071 , 0.000081 , 0.000045 , 0.000099 , 0.000031 , 0.000417 , 0.000984 , 0.002289 , 0.052944 , 0.000004 , 0.000021 , 0.000027 , 0.000009 , 0.000012 , 0.000002 , 0.011547 , 0.015761 , 0.074040 , 0.816832 , 0.000071 , 0.000176 , 0.000199 , 0.000087 , 0.000153 , 0.000042 }, { 0.015632 , 0.022454 , 0.102185 , 0.600087 , 0.000133 , 0.000165 , 0.000099 , 0.000063 , 0.000203 , 0.000085 , 0.000287 , 0.000782 , 0.002096 , 0.022738 , 0.000007 , 0.000031 , 0.000033 , 0.000013 , 0.000022 , 0.000004 , 0.017770 , 0.027372 , 0.117756 , 0.783103 , 0.000189 , 0.000475 , 0.000443 , 0.000174 , 0.000399 , 0.000128 }, { 0.016567 , 0.025963 , 0.105308 , 0.611709 , 0.000115 , 0.000080 , 0.000010 , 0.000012 , 0.000214 , 0.000083 , 0.000334 , 0.001583 , 0.002142 , 0.024754 , 0.000010 , 0.000015 , 0.000008 , 0.000008 , 0.000027 , 0.000004 , 0.018737 , 0.037172 , 0.118880 , 0.772844 , 0.000177 , 0.000186 , 0.000062 , 0.000070 , 0.000396 , 0.000111 }, { 0.012936 , 0.015531 , 0.087404 , 0.649403 , 0.000082 , 0.000151 , 0.000178 , 0.000073 , 0.000171 , 0.000052 , 0.000251 , 0.000785 , 0.002444 , 0.026365 , 0.000007 , 0.000044 , 0.000064 , 0.000018 , 0.000022 , 0.000005 , 0.013843 , 0.018349 , 0.097195 , 0.748031 , 0.000110 , 0.000355 , 0.000469 , 0.000141 , 0.000264 , 0.000073 }, { 0.011648 , 0.014827 , 0.076533 , 0.582554 , 0.000084 , 0.000094 , 0.000106 , 0.000061 , 0.000139 , 0.000045 , 0.000313 , 0.000882 , 0.002341 , 0.031795 , 0.000005 , 0.000015 , 0.000023 , 0.000010 , 0.000011 , 0.000002 , 0.013803 , 0.021750 , 0.092928 , 0.802559 , 0.000114 , 0.000211 , 0.000258 , 0.000113 , 0.000222 , 0.000059 }, { 0.012306 , 0.018062 , 0.079936 , 0.549557 , 0.000095 , 0.000114 , 0.000108 , 0.000068 , 0.000170 , 0.000057 , 0.000354 , 0.000962 , 0.002288 , 0.033539 , 0.000003 , 0.000024 , 0.000022 , 0.000011 , 0.000015 , 0.000003 , 0.014950 , 0.025683 , 0.096794 , 0.824461 , 0.000114 , 0.000359 , 0.000300 , 0.000153 , 0.000309 , 0.000092 }, { 0.014688 , 0.017562 , 0.094011 , 0.633363 , 0.000072 , 0.000056 , 0.000024 , 0.000014 , 0.000192 , 0.000058 , 0.000164 , 0.000609 , 0.001471 , 0.014825 , 0.000003 , 0.000014 , 0.000010 , 0.000005 , 0.000014 , 0.000002 , 0.015998 , 0.023035 , 0.106934 , 0.759634 , 0.000099 , 0.000212 , 0.000146 , 0.000066 , 0.000283 , 0.000081 }, { 0.012502 , 0.022947 , 0.080884 , 0.535277 , 0.000087 , 0.000078 , 0.000079 , 0.000041 , 0.000148 , 0.000054 , 0.000419 , 0.001185 , 0.002628 , 0.039629 , 0.000005 , 0.000014 , 0.000024 , 0.000009 , 0.000013 , 0.000002 , 0.015607 , 0.032400 , 0.099762 , 0.832724 , 0.000116 , 0.000178 , 0.000291 , 0.000109 , 0.000244 , 0.000068 }, { 0.015515 , 0.016984 , 0.102253 , 0.616527 , 0.000105 , 0.000162 , 0.000165 , 0.000048 , 0.000192 , 0.000077 , 0.000244 , 0.000530 , 0.002880 , 0.019680 , 0.000007 , 0.000067 , 0.000098 , 0.000016 , 0.000015 , 0.000009 , 0.017321 , 0.021305 , 0.126387 , 0.769275 , 0.000151 , 0.000704 , 0.000930 , 0.000188 , 0.000318 , 0.000142 }, { 0.009707 , 0.009802 , 0.063876 , 0.615999 , 0.000043 , 0.000062 , 0.000072 , 0.000048 , 0.000103 , 0.000026 , 0.000395 , 0.000823 , 0.002451 , 0.047611 , 0.000002 , 0.000015 , 0.000019 , 0.000008 , 0.000013 , 0.000001 , 0.011016 , 0.012875 , 0.072080 , 0.780076 , 0.000052 , 0.000120 , 0.000147 , 0.000076 , 0.000153 , 0.000030 }, { 0.007280 , 0.008140 , 0.047773 , 0.463027 , 0.000036 , 0.000038 , 0.000054 , 0.000035 , 0.000058 , 0.000020 , 0.000279 , 0.000374 , 0.002155 , 0.041305 , 0.000002 , 0.000007 , 0.000012 , 0.000006 , 0.000005 , 0.000001 , 0.010040 , 0.011348 , 0.068646 , 0.881222 , 0.000056 , 0.000116 , 0.000197 , 0.000088 , 0.000102 , 0.000028 }, { 0.017871 , 0.033696 , 0.116794 , 0.664131 , 0.000103 , 0.000159 , 0.000118 , 0.000044 , 0.000178 , 0.000099 , 0.000177 , 0.002127 , 0.002637 , 0.014162 , 0.000007 , 0.000068 , 0.000064 , 0.000025 , 0.000037 , 0.000011 , 0.018643 , 0.042580 , 0.129563 , 0.724344 , 0.000130 , 0.000477 , 0.000432 , 0.000162 , 0.000325 , 0.000139 }, { 0.013633 , 0.017371 , 0.087209 , 0.605263 , 0.000063 , 0.000050 , 0.000024 , 0.000013 , 0.000156 , 0.000053 , 0.000220 , 0.000640 , 0.001588 , 0.019656 , 0.000003 , 0.000013 , 0.000010 , 0.000005 , 0.000011 , 0.000002 , 0.015507 , 0.024149 , 0.101148 , 0.783658 , 0.000090 , 0.000207 , 0.000150 , 0.000072 , 0.000252 , 0.000073 }, { 0.014179 , 0.019271 , 0.091652 , 0.649252 , 0.000091 , 0.000080 , 0.000065 , 0.000047 , 0.000142 , 0.000055 , 0.000222 , 0.001560 , 0.001522 , 0.020825 , 0.000005 , 0.000013 , 0.000021 , 0.000011 , 0.000019 , 0.000002 , 0.015266 , 0.027156 , 0.099071 , 0.747178 , 0.000116 , 0.000132 , 0.000162 , 0.000097 , 0.000226 , 0.000063 }, { 0.019863 , 0.037187 , 0.125450 , 0.588214 , 0.000171 , 0.000112 , 0.000030 , 0.000012 , 0.000345 , 0.000132 , 0.000702 , 0.002696 , 0.004674 , 0.043104 , 0.000023 , 0.000026 , 0.000021 , 0.000008 , 0.000055 , 0.000006 , 0.022908 , 0.050583 , 0.146098 , 0.781135 , 0.000285 , 0.000258 , 0.000132 , 0.000051 , 0.000628 , 0.000162 }, { 0.022305 , 0.038917 , 0.142552 , 0.605483 , 0.000208 , 0.000193 , 0.000119 , 0.000060 , 0.000485 , 0.000166 , 0.001352 , 0.003015 , 0.010745 , 0.075824 , 0.000027 , 0.000073 , 0.000081 , 0.000038 , 0.000071 , 0.000010 , 0.025076 , 0.044469 , 0.163983 , 0.758738 , 0.000255 , 0.000314 , 0.000237 , 0.000120 , 0.000612 , 0.000187 }, { 0.017101 , 0.026756 , 0.112410 , 0.601640 , 0.000173 , 0.000218 , 0.000150 , 0.000082 , 0.000288 , 0.000107 , 0.000604 , 0.002561 , 0.004455 , 0.040987 , 0.000021 , 0.000047 , 0.000073 , 0.000027 , 0.000027 , 0.000008 , 0.019662 , 0.037382 , 0.129718 , 0.777217 , 0.000262 , 0.000424 , 0.000469 , 0.000208 , 0.000391 , 0.000136 }, { 0.017214 , 0.040497 , 0.110128 , 0.634776 , 0.000121 , 0.000093 , 0.000058 , 0.000028 , 0.000232 , 0.000088 , 0.000274 , 0.002446 , 0.002175 , 0.019882 , 0.000011 , 0.000037 , 0.000042 , 0.000013 , 0.000025 , 0.000006 , 0.018778 , 0.054340 , 0.122035 , 0.751259 , 0.000173 , 0.000266 , 0.000260 , 0.000102 , 0.000351 , 0.000118 }, { 0.014200 , 0.023834 , 0.095577 , 0.567784 , 0.000139 , 0.000211 , 0.000203 , 0.000102 , 0.000257 , 0.000081 , 0.000335 , 0.001094 , 0.002628 , 0.026565 , 0.000006 , 0.000038 , 0.000039 , 0.000013 , 0.000023 , 0.000004 , 0.016920 , 0.033567 , 0.116004 , 0.807547 , 0.000186 , 0.000590 , 0.000589 , 0.000225 , 0.000478 , 0.000117 }, { 0.015202 , 0.021504 , 0.099673 , 0.581984 , 0.000144 , 0.000196 , 0.000057 , 0.000063 , 0.000202 , 0.000086 , 0.000522 , 0.001380 , 0.003748 , 0.040565 , 0.000006 , 0.000027 , 0.000017 , 0.000015 , 0.000021 , 0.000004 , 0.017763 , 0.028763 , 0.117211 , 0.796318 , 0.000172 , 0.000349 , 0.000147 , 0.000129 , 0.000305 , 0.000105 }, { 0.009308 , 0.009601 , 0.062292 , 0.596701 , 0.000049 , 0.000074 , 0.000099 , 0.000051 , 0.000084 , 0.000028 , 0.000267 , 0.000550 , 0.001901 , 0.033944 , 0.000003 , 0.000013 , 0.000018 , 0.000007 , 0.000005 , 0.000002 , 0.010786 , 0.013905 , 0.073774 , 0.795601 , 0.000066 , 0.000163 , 0.000234 , 0.000096 , 0.000112 , 0.000041 }, { 0.017312 , 0.022841 , 0.110925 , 0.621377 , 0.000170 , 0.000108 , 0.000059 , 0.000048 , 0.000297 , 0.000096 , 0.000509 , 0.001093 , 0.003482 , 0.036265 , 0.000014 , 0.000016 , 0.000024 , 0.000017 , 0.000029 , 0.000005 , 0.019308 , 0.026848 , 0.124423 , 0.763453 , 0.000216 , 0.000165 , 0.000161 , 0.000116 , 0.000409 , 0.000115 }, { 0.016946 , 0.026205 , 0.107299 , 0.639824 , 0.000115 , 0.000058 , 0.000011 , 0.000012 , 0.000212 , 0.000082 , 0.000254 , 0.002111 , 0.001652 , 0.018241 , 0.000011 , 0.000012 , 0.000010 , 0.000009 , 0.000027 , 0.000003 , 0.018393 , 0.039211 , 0.116461 , 0.749906 , 0.000168 , 0.000125 , 0.000050 , 0.000055 , 0.000352 , 0.000099 }, { 0.014944 , 0.024609 , 0.101875 , 0.629427 , 0.000123 , 0.000250 , 0.000232 , 0.000087 , 0.000225 , 0.000084 , 0.000231 , 0.001272 , 0.002243 , 0.020908 , 0.000007 , 0.000065 , 0.000060 , 0.000018 , 0.000021 , 0.000009 , 0.016359 , 0.034840 , 0.118419 , 0.759384 , 0.000180 , 0.000841 , 0.000756 , 0.000240 , 0.000391 , 0.000156 }, { 0.012271 , 0.013537 , 0.080169 , 0.581589 , 0.000072 , 0.000078 , 0.000061 , 0.000033 , 0.000129 , 0.000049 , 0.000220 , 0.000294 , 0.001602 , 0.021459 , 0.000004 , 0.000016 , 0.000017 , 0.000007 , 0.000012 , 0.000002 , 0.014422 , 0.016427 , 0.095525 , 0.803073 , 0.000121 , 0.000270 , 0.000270 , 0.000102 , 0.000277 , 0.000079 }, { 0.006829 , 0.007936 , 0.045167 , 0.491394 , 0.000028 , 0.000049 , 0.000057 , 0.000036 , 0.000056 , 0.000019 , 0.000311 , 0.000284 , 0.002132 , 0.045844 , 0.000002 , 0.000008 , 0.000013 , 0.000005 , 0.000005 , 0.000001 , 0.009125 , 0.010154 , 0.060615 , 0.866265 , 0.000044 , 0.000121 , 0.000171 , 0.000076 , 0.000091 , 0.000026 }, { 0.012946 , 0.026044 , 0.087948 , 0.609768 , 0.000089 , 0.000178 , 0.000217 , 0.000080 , 0.000181 , 0.000061 , 0.000221 , 0.001025 , 0.002009 , 0.019265 , 0.000004 , 0.000041 , 0.000063 , 0.000014 , 0.000018 , 0.000005 , 0.014902 , 0.036396 , 0.109467 , 0.778264 , 0.000121 , 0.000673 , 0.000995 , 0.000200 , 0.000348 , 0.000120 }, { 0.015863 , 0.022289 , 0.106188 , 0.580747 , 0.000147 , 0.000229 , 0.000223 , 0.000100 , 0.000360 , 0.000099 , 0.000430 , 0.001917 , 0.003066 , 0.033232 , 0.000007 , 0.000049 , 0.000062 , 0.000025 , 0.000076 , 0.000006 , 0.018471 , 0.035463 , 0.123584 , 0.795435 , 0.000186 , 0.000550 , 0.000605 , 0.000251 , 0.000776 , 0.000138 }, { 0.023620 , 0.032314 , 0.148934 , 0.615304 , 0.000267 , 0.000144 , 0.000056 , 0.000021 , 0.000461 , 0.000197 , 0.000427 , 0.001589 , 0.002867 , 0.022809 , 0.000028 , 0.000029 , 0.000054 , 0.000016 , 0.000057 , 0.000008 , 0.026057 , 0.042208 , 0.164173 , 0.753440 , 0.000475 , 0.000340 , 0.000320 , 0.000121 , 0.000883 , 0.000247 }, { 0.015269 , 0.017923 , 0.097971 , 0.645888 , 0.000093 , 0.000071 , 0.000029 , 0.000023 , 0.000209 , 0.000063 , 0.000190 , 0.000565 , 0.001530 , 0.015615 , 0.000005 , 0.000018 , 0.000013 , 0.000007 , 0.000022 , 0.000002 , 0.016552 , 0.022541 , 0.110596 , 0.747941 , 0.000123 , 0.000234 , 0.000150 , 0.000078 , 0.000371 , 0.000086 }, { 0.010077 , 0.008370 , 0.066319 , 0.607533 , 0.000046 , 0.000062 , 0.000063 , 0.000051 , 0.000091 , 0.000027 , 0.000525 , 0.000333 , 0.003660 , 0.062644 , 0.000005 , 0.000016 , 0.000023 , 0.000015 , 0.000017 , 0.000002 , 0.011568 , 0.009352 , 0.076979 , 0.785015 , 0.000059 , 0.000106 , 0.000119 , 0.000093 , 0.000128 , 0.000033 }, { 0.017253 , 0.031690 , 0.109623 , 0.627777 , 0.000127 , 0.000073 , 0.000024 , 0.000016 , 0.000219 , 0.000086 , 0.000596 , 0.001775 , 0.003866 , 0.041769 , 0.000009 , 0.000014 , 0.000017 , 0.000011 , 0.000035 , 0.000003 , 0.019043 , 0.037734 , 0.121741 , 0.757764 , 0.000159 , 0.000126 , 0.000081 , 0.000055 , 0.000357 , 0.000096 }, { 0.008548 , 0.012580 , 0.058416 , 0.527754 , 0.000040 , 0.000090 , 0.000078 , 0.000050 , 0.000083 , 0.000027 , 0.000368 , 0.000524 , 0.003130 , 0.046523 , 0.000003 , 0.000021 , 0.000017 , 0.000007 , 0.000008 , 0.000002 , 0.010953 , 0.015859 , 0.078092 , 0.842133 , 0.000056 , 0.000233 , 0.000186 , 0.000085 , 0.000123 , 0.000044 }, { 0.015251 , 0.026836 , 0.097599 , 0.604681 , 0.000108 , 0.000069 , 0.000056 , 0.000032 , 0.000189 , 0.000072 , 0.000283 , 0.001648 , 0.001740 , 0.023731 , 0.000009 , 0.000014 , 0.000028 , 0.000011 , 0.000020 , 0.000003 , 0.017306 , 0.039854 , 0.109925 , 0.780603 , 0.000169 , 0.000182 , 0.000260 , 0.000111 , 0.000338 , 0.000096 }, { 0.013563 , 0.018053 , 0.087977 , 0.615790 , 0.000078 , 0.000073 , 0.000082 , 0.000027 , 0.000137 , 0.000054 , 0.000237 , 0.001264 , 0.001861 , 0.021506 , 0.000004 , 0.000019 , 0.000032 , 0.000008 , 0.000013 , 0.000002 , 0.015215 , 0.026500 , 0.100905 , 0.775222 , 0.000102 , 0.000247 , 0.000353 , 0.000090 , 0.000231 , 0.000070 }, { 0.008985 , 0.011971 , 0.058796 , 0.569817 , 0.000044 , 0.000048 , 0.000067 , 0.000041 , 0.000080 , 0.000025 , 0.000176 , 0.000457 , 0.001144 , 0.023155 , 0.000002 , 0.000007 , 0.000009 , 0.000004 , 0.000006 , 0.000001 , 0.010764 , 0.017325 , 0.071802 , 0.815793 , 0.000067 , 0.000130 , 0.000168 , 0.000075 , 0.000139 , 0.000035 }, { 0.014656 , 0.018212 , 0.093589 , 0.622976 , 0.000093 , 0.000065 , 0.000015 , 0.000012 , 0.000171 , 0.000062 , 0.000231 , 0.000906 , 0.001582 , 0.018953 , 0.000005 , 0.000010 , 0.000010 , 0.000005 , 0.000013 , 0.000002 , 0.016392 , 0.024953 , 0.106140 , 0.768164 , 0.000122 , 0.000143 , 0.000086 , 0.000054 , 0.000250 , 0.000076 }, { 0.009367 , 0.010109 , 0.061842 , 0.572276 , 0.000052 , 0.000076 , 0.000094 , 0.000061 , 0.000098 , 0.000029 , 0.000355 , 0.000374 , 0.002181 , 0.044731 , 0.000003 , 0.000019 , 0.000018 , 0.000010 , 0.000011 , 0.000002 , 0.011212 , 0.012145 , 0.072545 , 0.812984 , 0.000069 , 0.000202 , 0.000214 , 0.000116 , 0.000172 , 0.000042 }, { 0.015907 , 0.025426 , 0.102182 , 0.635535 , 0.000139 , 0.000093 , 0.000038 , 0.000032 , 0.000311 , 0.000074 , 0.000514 , 0.001618 , 0.003515 , 0.042557 , 0.000009 , 0.000014 , 0.000024 , 0.000014 , 0.000036 , 0.000002 , 0.017326 , 0.029501 , 0.111127 , 0.754591 , 0.000159 , 0.000135 , 0.000099 , 0.000077 , 0.000391 , 0.000079 }, { 0.015968 , 0.014603 , 0.101911 , 0.592540 , 0.000119 , 0.000070 , 0.000035 , 0.000024 , 0.000214 , 0.000074 , 0.000338 , 0.001399 , 0.002207 , 0.025364 , 0.000008 , 0.000016 , 0.000018 , 0.000008 , 0.000015 , 0.000002 , 0.018471 , 0.026957 , 0.117303 , 0.789027 , 0.000184 , 0.000211 , 0.000203 , 0.000092 , 0.000329 , 0.000097 }, { 0.015576 , 0.026780 , 0.103390 , 0.628986 , 0.000119 , 0.000176 , 0.000103 , 0.000061 , 0.000220 , 0.000087 , 0.000229 , 0.001096 , 0.001771 , 0.017929 , 0.000006 , 0.000036 , 0.000030 , 0.000010 , 0.000030 , 0.000005 , 0.017287 , 0.034645 , 0.118193 , 0.759560 , 0.000160 , 0.000523 , 0.000376 , 0.000134 , 0.000490 , 0.000128 }, { 0.014801 , 0.022077 , 0.096247 , 0.571976 , 0.000118 , 0.000126 , 0.000095 , 0.000045 , 0.000228 , 0.000076 , 0.000470 , 0.001239 , 0.002964 , 0.035952 , 0.000008 , 0.000023 , 0.000032 , 0.000012 , 0.000021 , 0.000004 , 0.017768 , 0.029246 , 0.114004 , 0.804613 , 0.000169 , 0.000282 , 0.000317 , 0.000120 , 0.000358 , 0.000104 }, { 0.017271 , 0.016378 , 0.111015 , 0.610479 , 0.000142 , 0.000101 , 0.000053 , 0.000040 , 0.000252 , 0.000093 , 0.000213 , 0.000697 , 0.001670 , 0.015894 , 0.000009 , 0.000023 , 0.000023 , 0.000010 , 0.000020 , 0.000003 , 0.019406 , 0.024174 , 0.126758 , 0.772748 , 0.000234 , 0.000362 , 0.000318 , 0.000136 , 0.000457 , 0.000129 }, { 0.009883 , 0.006985 , 0.065808 , 0.631774 , 0.000049 , 0.000065 , 0.000096 , 0.000051 , 0.000088 , 0.000029 , 0.000369 , 0.000381 , 0.002649 , 0.046002 , 0.000006 , 0.000012 , 0.000028 , 0.000009 , 0.000009 , 0.000002 , 0.010979 , 0.008120 , 0.074137 , 0.767189 , 0.000067 , 0.000100 , 0.000195 , 0.000079 , 0.000115 , 0.000037 }, { 0.010386 , 0.011302 , 0.068145 , 0.610567 , 0.000053 , 0.000059 , 0.000083 , 0.000043 , 0.000095 , 0.000032 , 0.000476 , 0.001032 , 0.003143 , 0.052205 , 0.000006 , 0.000015 , 0.000028 , 0.000011 , 0.000013 , 0.000002 , 0.011893 , 0.015214 , 0.078079 , 0.783022 , 0.000075 , 0.000118 , 0.000192 , 0.000083 , 0.000131 , 0.000041 }, { 0.017403 , 0.020118 , 0.110377 , 0.659262 , 0.000111 , 0.000046 , 0.000016 , 0.000007 , 0.000239 , 0.000081 , 0.000302 , 0.000857 , 0.002055 , 0.022604 , 0.000008 , 0.000008 , 0.000016 , 0.000007 , 0.000028 , 0.000001 , 0.018360 , 0.023533 , 0.116592 , 0.733132 , 0.000143 , 0.000076 , 0.000059 , 0.000026 , 0.000328 , 0.000086 }, { 0.014387 , 0.016750 , 0.091597 , 0.618387 , 0.000073 , 0.000050 , 0.000021 , 0.000009 , 0.000167 , 0.000057 , 0.000263 , 0.000645 , 0.001771 , 0.023964 , 0.000004 , 0.000015 , 0.000021 , 0.000007 , 0.000017 , 0.000002 , 0.016076 , 0.020699 , 0.103300 , 0.772518 , 0.000088 , 0.000128 , 0.000113 , 0.000047 , 0.000263 , 0.000069 }, { 0.013718 , 0.013633 , 0.090182 , 0.668940 , 0.000084 , 0.000122 , 0.000056 , 0.000046 , 0.000169 , 0.000056 , 0.000148 , 0.000415 , 0.001144 , 0.012649 , 0.000004 , 0.000015 , 0.000017 , 0.000010 , 0.000016 , 0.000003 , 0.014397 , 0.016238 , 0.095951 , 0.730871 , 0.000105 , 0.000216 , 0.000179 , 0.000106 , 0.000267 , 0.000076 }, { 0.015533 , 0.016213 , 0.100691 , 0.629954 , 0.000123 , 0.000133 , 0.000067 , 0.000061 , 0.000205 , 0.000077 , 0.000183 , 0.000661 , 0.001271 , 0.014806 , 0.000005 , 0.000017 , 0.000015 , 0.000010 , 0.000020 , 0.000003 , 0.017101 , 0.021125 , 0.109478 , 0.761295 , 0.000161 , 0.000288 , 0.000213 , 0.000154 , 0.000372 , 0.000108 }, { 0.009551 , 0.009050 , 0.062659 , 0.551685 , 0.000052 , 0.000068 , 0.000077 , 0.000047 , 0.000095 , 0.000035 , 0.000409 , 0.000540 , 0.002506 , 0.049471 , 0.000004 , 0.000017 , 0.000023 , 0.000008 , 0.000008 , 0.000003 , 0.011752 , 0.011819 , 0.075624 , 0.826495 , 0.000073 , 0.000160 , 0.000183 , 0.000086 , 0.000130 , 0.000049 }, { 0.007901 , 0.006979 , 0.054212 , 0.535380 , 0.000047 , 0.000098 , 0.000151 , 0.000065 , 0.000091 , 0.000025 , 0.000431 , 0.000548 , 0.003566 , 0.060315 , 0.000002 , 0.000031 , 0.000037 , 0.000009 , 0.000011 , 0.000002 , 0.010076 , 0.009938 , 0.073371 , 0.837307 , 0.000060 , 0.000248 , 0.000341 , 0.000103 , 0.000144 , 0.000035 }, { 0.017292 , 0.025478 , 0.110228 , 0.631398 , 0.000122 , 0.000082 , 0.000039 , 0.000033 , 0.000274 , 0.000083 , 0.000302 , 0.001806 , 0.001801 , 0.020254 , 0.000011 , 0.000022 , 0.000021 , 0.000013 , 0.000026 , 0.000003 , 0.019057 , 0.037575 , 0.123084 , 0.755577 , 0.000200 , 0.000257 , 0.000192 , 0.000133 , 0.000452 , 0.000102 }, { 0.009905 , 0.012573 , 0.065269 , 0.596628 , 0.000051 , 0.000080 , 0.000127 , 0.000058 , 0.000110 , 0.000031 , 0.000248 , 0.000600 , 0.001384 , 0.031698 , 0.000003 , 0.000016 , 0.000024 , 0.000005 , 0.000008 , 0.000002 , 0.011327 , 0.016808 , 0.074428 , 0.795337 , 0.000064 , 0.000193 , 0.000284 , 0.000087 , 0.000165 , 0.000042 }, { 0.016603 , 0.040554 , 0.104762 , 0.629763 , 0.000104 , 0.000046 , 0.000000 , 0.000000 , 0.000230 , 0.000081 , 0.000603 , 0.004935 , 0.003903 , 0.047537 , 0.000010 , 0.000011 , 0.000000 , 0.000000 , 0.000043 , 0.000004 , 0.018200 , 0.051488 , 0.115127 , 0.756284 , 0.000127 , 0.000071 , 0.000000 , 0.000000 , 0.000326 , 0.000091 }, { 0.021607 , 0.047962 , 0.137221 , 0.614996 , 0.000238 , 0.000177 , 0.000050 , 0.000034 , 0.000392 , 0.000157 , 0.000537 , 0.004591 , 0.003790 , 0.032416 , 0.000024 , 0.000040 , 0.000039 , 0.000021 , 0.000052 , 0.000010 , 0.023764 , 0.072046 , 0.153019 , 0.754934 , 0.000353 , 0.000380 , 0.000215 , 0.000149 , 0.000657 , 0.000210 }, { 0.016447 , 0.023429 , 0.107238 , 0.645270 , 0.000136 , 0.000164 , 0.000121 , 0.000071 , 0.000256 , 0.000082 , 0.000391 , 0.001903 , 0.003264 , 0.027185 , 0.000010 , 0.000050 , 0.000064 , 0.000024 , 0.000036 , 0.000007 , 0.017884 , 0.031318 , 0.118745 , 0.745085 , 0.000169 , 0.000335 , 0.000324 , 0.000159 , 0.000392 , 0.000105 }, { 0.019781 , 0.031225 , 0.128375 , 0.625666 , 0.000205 , 0.000214 , 0.000130 , 0.000077 , 0.000336 , 0.000140 , 0.000710 , 0.002839 , 0.003082 , 0.043770 , 0.000020 , 0.000082 , 0.000077 , 0.000030 , 0.000052 , 0.000015 , 0.021769 , 0.039775 , 0.138044 , 0.753424 , 0.000271 , 0.000455 , 0.000366 , 0.000188 , 0.000503 , 0.000187 }, { 0.015056 , 0.015967 , 0.095422 , 0.612151 , 0.000096 , 0.000043 , 0.000005 , 0.000010 , 0.000168 , 0.000064 , 0.000459 , 0.000956 , 0.002962 , 0.038084 , 0.000005 , 0.000005 , 0.000003 , 0.000006 , 0.000016 , 0.000003 , 0.016994 , 0.020074 , 0.108401 , 0.775745 , 0.000117 , 0.000067 , 0.000021 , 0.000041 , 0.000243 , 0.000076 }, { 0.008136 , 0.007874 , 0.053950 , 0.507005 , 0.000048 , 0.000068 , 0.000092 , 0.000044 , 0.000075 , 0.000027 , 0.000463 , 0.000484 , 0.003015 , 0.055408 , 0.000003 , 0.000013 , 0.000023 , 0.000007 , 0.000008 , 0.000002 , 0.010802 , 0.010932 , 0.071281 , 0.855284 , 0.000062 , 0.000171 , 0.000255 , 0.000082 , 0.000124 , 0.000041 }, { 0.016828 , 0.030302 , 0.108894 , 0.633454 , 0.000138 , 0.000138 , 0.000073 , 0.000038 , 0.000212 , 0.000092 , 0.000402 , 0.002258 , 0.002666 , 0.029388 , 0.000015 , 0.000043 , 0.000043 , 0.000015 , 0.000026 , 0.000007 , 0.018519 , 0.039112 , 0.119136 , 0.754145 , 0.000198 , 0.000319 , 0.000230 , 0.000112 , 0.000309 , 0.000124 }, { 0.015702 , 0.030013 , 0.099963 , 0.639358 , 0.000104 , 0.000062 , 0.000033 , 0.000025 , 0.000192 , 0.000066 , 0.000248 , 0.001605 , 0.001562 , 0.020896 , 0.000007 , 0.000010 , 0.000018 , 0.000008 , 0.000016 , 0.000002 , 0.017057 , 0.040686 , 0.108509 , 0.752276 , 0.000153 , 0.000126 , 0.000165 , 0.000071 , 0.000290 , 0.000081 }, }; int y[DATASET_SIZE] = { 1 , 1 , 1 , 0 , 0 , 0 , 1 , 1 , 1 , 1 , 1 , 0 , 1 , 1 , 0 , 0 , 1 , 1 , 1 , 1 , 1 , 0 , 0 , 0 , 1 , 0 , 1 , 1 , 1 , 1 , 0 , 1 , 1 , 1 , 1 , 0 , 0 , 1 , 1 , 0 , 1 , 0 , 1 , 1 , 1 , 0 , 0 , 1 , 1 , 1 , 1 , 0 , 0 , 1 , 1 , 0 , 1 , 1 , 0 , 1 , 1 , 1 , 0 , 1 , 1 , 1 , 1 , 1 , 1 , 0 , 1 , 1 , 0 , 1 , 1 , 1 , 1 , 1 , 0 , 0 , 1 , 0 , 0 , 0 , 1 , 0 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 0 , 1 , 1 , 0 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 0 , 0 , 1 , 0 , 0 , 1 , 0 , 0 , 0 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 0 , 0 , 1 , 1 , 0 , 1 , 0 , 1 , 1 , 0 , 0 , 0 , 1 , 1 , 1 , 1 , 1 , 0 , 0 , 0 , 1 , 1 , 1 , 0 , 0 , 0 , 0 , 0 , 1 , 1 , 1 , 1 , 0 , 0 , 0 , 1 , 0 , 1 , 1 , 1 , 1 , 0 , 1 , 1 , 0 , 1 , 0 , 1 , 1 , 0 , 1 , 0 , 1 , 1 , 0 , 0 , 0 , 1 , 0 , 1 , 1 , 0 , 1 , 1 , 1 , 1 , 1 , 0 , 0 , 0 , 0 , 0 , 1 , 0 , 1 , 1 , 1 , 0 , 0 , 1 , 1 , 1 , 1 , 0 , 0 , 0 , 1 , 1 , 1 , 0 , 1 , 1 , 1 , 0 , 0 , 1 , 1 , 1 , 0 , 0 , 1 , 1 , 1 , 0 , 1 , 0 , 0 , 1 , 1 , 0 , 1 , 0 , 1 , 1 , 0 , 1 , 1 , 1 , 0 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 0 , 0 , 0 , 1 , 1 , 0 , 1 , 1 , 1 , 0 , 0 , 1 , 0 , 1 , 0 , 0 , 0 , 1 , 1 , 1 , 1 , 1 , 0 , 0 , 1 , 0 , 1 , 0 , 1 , 0 , 0 , 1 , 1 , 0 , 0 , 0 , 0 , 1 , 0 , 0 , 1 , 0 , 1 , 1 , 1 , 0 , 1 , 1 , 1 , 1 , 1 , 1 , 0 , 0 , 0 , 1 , 1 , 0 , 1 , 1 , 0 , 1 , 1 , 1 , 1 , 0 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 0 , 1 , 1 , 1 , 0 , 0 , 0 , 0 , 0 , 0 , 1 , 1 , 1 , 1 , 1 , 1 , 0 , 1 , 1 , 1 , 0 , 0 , 0 , 1 , 1 , 1 , 1 , 0 , 0 , 0 , 1 , 1 , 1 , 0 , 1 , 0 , 1 , 1 , 0 , 0 , 1 , 1 , 1 , 0 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 0 , 1 , 0 , 0 , 0 , 1 , 0 , 1 , 1 , 0 , 1 , 0 , 1 , 0 , 0 , 1 , 1 , 0 , 1 , 1 , 1 , 1 , 1 , 0 , 1 , 1 , 0 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 0 , 0 , 0 , 0 , 0 , 0 , 1 , 1 , 1 , 1 , 0 , 0 , 1 , 1 , 0 , 1 , 1 , 1 , 0 , 1 , 1 , 1 , 1 , 1 , 1 , 0 , 1 , 1 , 0 , 0 , 1 , 1 , 0 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 0 , 1 , 0 , 1 , 1 , 1 , 1 , 1 , 0 , 1 , 0 , 0 , 1 , 1 , 1 , 0 , 1 , 0 , 1 , 0 , 0 , 1 , 1 , 0 , 1 , 0 , 1 , 1 , 1 , 1 , 0 , 1 , 1 , 0 , 0 , 0 , 1 , 1 , 1 , 1 , 1 , 0 , 0 , 1 , 0 , 1 , 1 , 1 , 1 , 1 , 0 , 1 , 1 , 0 , 0 , 1 , 0 , 1 , 1 , 0 , 0 , 0 , 1 , 0 , 1 , 0 , 0 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 0 , 1 , 0 , 1 , 1 , 0 , 0 , 0 , 0 , 0 , 1 , 1 , 0 , 1 , 0 , 0 , 1 , 0 , 1 , 0 , 1 , 1 , 1 , 1 , 1 , 0 , 0 , 1 , 1 , 1 , 1 , 0 , 0 , 1 , 0 , 1 , 1 , 1 , 1 , 1 , 0 , 1 , 1 };
232,283
C++
.h
575
395.053913
3,439
0.518545
eloquentarduino/EloquentMicroML
34
11
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,716
cleveland_heart_disease.h
eloquentarduino_EloquentMicroML/examples/SGDExample/cleveland_heart_disease.h
#pragma once #define FEATURES_DIM 13 #define DATASET_SIZE 214 float X[DATASET_SIZE][FEATURES_DIM] = { { 0.171407 , 0.000000 , 0.008035 , 0.374953 , 0.838287 , 0.000000 , 0.000000 , 0.356205 , 0.000000 , 0.000536 , 0.002678 , 0.000000 , 0.018748 }, { 0.208872 , 0.003424 , 0.013696 , 0.479377 , 0.708794 , 0.000000 , 0.006848 , 0.472529 , 0.003424 , 0.006506 , 0.003424 , 0.003424 , 0.023969 }, { 0.156206 , 0.000000 , 0.010414 , 0.411341 , 0.794045 , 0.000000 , 0.005207 , 0.419151 , 0.000000 , 0.000000 , 0.002603 , 0.000000 , 0.007810 }, { 0.212891 , 0.003735 , 0.014940 , 0.410842 , 0.750720 , 0.000000 , 0.000000 , 0.470601 , 0.003735 , 0.005602 , 0.007470 , 0.000000 , 0.022410 }, { 0.173883 , 0.003105 , 0.006210 , 0.372606 , 0.745212 , 0.000000 , 0.000000 , 0.524754 , 0.000000 , 0.000000 , 0.009315 , 0.000000 , 0.009315 }, { 0.131491 , 0.003287 , 0.003287 , 0.460218 , 0.654167 , 0.000000 , 0.000000 , 0.585134 , 0.003287 , 0.004602 , 0.003287 , 0.000000 , 0.023011 }, { 0.190822 , 0.003234 , 0.009703 , 0.485141 , 0.685666 , 0.003234 , 0.000000 , 0.507781 , 0.000000 , 0.005175 , 0.003234 , 0.000000 , 0.009703 }, { 0.173683 , 0.003047 , 0.006094 , 0.469248 , 0.706920 , 0.000000 , 0.006094 , 0.499719 , 0.000000 , 0.000000 , 0.003047 , 0.003047 , 0.009141 }, { 0.122712 , 0.000000 , 0.009950 , 0.397986 , 0.713059 , 0.000000 , 0.000000 , 0.563814 , 0.000000 , 0.000000 , 0.003317 , 0.000000 , 0.009950 }, { 0.196640 , 0.003172 , 0.012686 , 0.380593 , 0.846820 , 0.000000 , 0.000000 , 0.313990 , 0.003172 , 0.005709 , 0.006343 , 0.006343 , 0.022201 }, { 0.200953 , 0.003465 , 0.013859 , 0.505848 , 0.755307 , 0.000000 , 0.000000 , 0.363795 , 0.000000 , 0.006929 , 0.006929 , 0.003465 , 0.024253 }, { 0.159549 , 0.002493 , 0.007479 , 0.349014 , 0.835141 , 0.000000 , 0.000000 , 0.393888 , 0.000000 , 0.000000 , 0.002493 , 0.000000 , 0.007479 }, { 0.175090 , 0.000000 , 0.010101 , 0.457928 , 0.659955 , 0.000000 , 0.006734 , 0.569043 , 0.000000 , 0.000337 , 0.006734 , 0.000000 , 0.010101 }, { 0.213651 , 0.000000 , 0.003096 , 0.433494 , 0.740037 , 0.000000 , 0.000000 , 0.467554 , 0.000000 , 0.005573 , 0.003096 , 0.006193 , 0.009289 }, { 0.143674 , 0.000000 , 0.007431 , 0.297257 , 0.842227 , 0.000000 , 0.000000 , 0.426068 , 0.000000 , 0.000000 , 0.002477 , 0.000000 , 0.007431 }, { 0.154831 , 0.003686 , 0.011059 , 0.479238 , 0.663561 , 0.000000 , 0.000000 , 0.552967 , 0.000000 , 0.000000 , 0.003686 , 0.000000 , 0.011059 }, { 0.136818 , 0.000000 , 0.006674 , 0.433813 , 0.680753 , 0.000000 , 0.006674 , 0.573968 , 0.000000 , 0.004672 , 0.003337 , 0.000000 , 0.010011 }, { 0.155722 , 0.000000 , 0.009160 , 0.396937 , 0.781661 , 0.000000 , 0.006107 , 0.454951 , 0.000000 , 0.001527 , 0.003053 , 0.000000 , 0.009160 }, { 0.130617 , 0.003732 , 0.014928 , 0.447828 , 0.738916 , 0.000000 , 0.000000 , 0.485147 , 0.003732 , 0.005971 , 0.007464 , 0.000000 , 0.026123 }, { 0.246344 , 0.003790 , 0.015160 , 0.454790 , 0.670815 , 0.000000 , 0.000000 , 0.530588 , 0.000000 , 0.001516 , 0.003790 , 0.000000 , 0.026529 }, { 0.137834 , 0.000000 , 0.006362 , 0.296874 , 0.884260 , 0.002121 , 0.004241 , 0.332923 , 0.000000 , 0.001696 , 0.002121 , 0.002121 , 0.006362 }, { 0.188835 , 0.002698 , 0.010791 , 0.350694 , 0.868642 , 0.000000 , 0.005395 , 0.294043 , 0.000000 , 0.006474 , 0.005395 , 0.008093 , 0.008093 }, { 0.108740 , 0.002939 , 0.008817 , 0.382058 , 0.734728 , 0.000000 , 0.000000 , 0.549576 , 0.000000 , 0.010286 , 0.008817 , 0.000000 , 0.008817 }, { 0.130142 , 0.003099 , 0.012394 , 0.433807 , 0.700288 , 0.000000 , 0.000000 , 0.551554 , 0.000000 , 0.000000 , 0.003099 , 0.000000 , 0.009296 }, { 0.175923 , 0.003383 , 0.003383 , 0.399209 , 0.629262 , 0.000000 , 0.006766 , 0.642795 , 0.000000 , 0.000000 , 0.006766 , 0.000000 , 0.020299 }, { 0.122135 , 0.003053 , 0.012213 , 0.464112 , 0.680901 , 0.000000 , 0.000000 , 0.552660 , 0.000000 , 0.000000 , 0.003053 , 0.000000 , 0.021374 }, { 0.129474 , 0.002943 , 0.005885 , 0.353111 , 0.773901 , 0.000000 , 0.000000 , 0.509068 , 0.000000 , 0.000000 , 0.002943 , 0.000000 , 0.020598 }, { 0.137659 , 0.000000 , 0.008098 , 0.377888 , 0.831354 , 0.000000 , 0.005398 , 0.383287 , 0.000000 , 0.004049 , 0.002699 , 0.002699 , 0.008098 }, { 0.187416 , 0.003231 , 0.009694 , 0.339287 , 0.775513 , 0.000000 , 0.006463 , 0.497621 , 0.003231 , 0.001939 , 0.006463 , 0.000000 , 0.022619 }, { 0.164193 , 0.002783 , 0.011132 , 0.384044 , 0.754173 , 0.000000 , 0.005566 , 0.506492 , 0.000000 , 0.000000 , 0.002783 , 0.000000 , 0.008349 }, { 0.168724 , 0.003245 , 0.006489 , 0.415320 , 0.665160 , 0.003245 , 0.000000 , 0.597022 , 0.000000 , 0.000000 , 0.003245 , 0.000000 , 0.009734 }, { 0.169907 , 0.003146 , 0.012586 , 0.390157 , 0.836951 , 0.000000 , 0.006293 , 0.342961 , 0.003146 , 0.006922 , 0.006293 , 0.003146 , 0.022025 }, { 0.136179 , 0.000000 , 0.010475 , 0.328226 , 0.694862 , 0.000000 , 0.000000 , 0.625027 , 0.000000 , 0.000000 , 0.003492 , 0.000000 , 0.010475 }, { 0.142058 , 0.000000 , 0.008879 , 0.384742 , 0.813877 , 0.000000 , 0.000000 , 0.411378 , 0.000000 , 0.000592 , 0.002960 , 0.000000 , 0.008879 }, { 0.301534 , 0.000000 , 0.016988 , 0.475660 , 0.632797 , 0.000000 , 0.000000 , 0.530870 , 0.000000 , 0.006795 , 0.008494 , 0.000000 , 0.012741 }, { 0.155777 , 0.003116 , 0.009347 , 0.436177 , 0.725922 , 0.000000 , 0.000000 , 0.507834 , 0.000000 , 0.001869 , 0.006231 , 0.003116 , 0.021809 }, { 0.181207 , 0.003236 , 0.006472 , 0.420659 , 0.715120 , 0.000000 , 0.006472 , 0.527442 , 0.000000 , 0.000000 , 0.003236 , 0.000000 , 0.022651 }, { 0.169547 , 0.003607 , 0.014430 , 0.404027 , 0.735906 , 0.000000 , 0.000000 , 0.515856 , 0.000000 , 0.000361 , 0.003607 , 0.000000 , 0.010822 }, { 0.185688 , 0.000000 , 0.008570 , 0.442795 , 0.768463 , 0.000000 , 0.000000 , 0.422797 , 0.000000 , 0.002285 , 0.002857 , 0.000000 , 0.008570 }, { 0.164679 , 0.002839 , 0.005679 , 0.340715 , 0.806359 , 0.000000 , 0.005679 , 0.454287 , 0.000000 , 0.005111 , 0.005679 , 0.000000 , 0.008518 }, { 0.178934 , 0.003376 , 0.013504 , 0.472656 , 0.685351 , 0.003376 , 0.006752 , 0.523298 , 0.003376 , 0.010466 , 0.010128 , 0.000000 , 0.023633 }, { 0.177276 , 0.003409 , 0.006818 , 0.456826 , 0.685238 , 0.000000 , 0.000000 , 0.538645 , 0.000000 , 0.002727 , 0.003409 , 0.003409 , 0.010227 }, { 0.175743 , 0.003138 , 0.012553 , 0.392283 , 0.781427 , 0.003138 , 0.006277 , 0.451910 , 0.003138 , 0.003766 , 0.006277 , 0.003138 , 0.009415 }, { 0.187254 , 0.000000 , 0.012081 , 0.453034 , 0.736935 , 0.000000 , 0.000000 , 0.465115 , 0.003020 , 0.004228 , 0.006040 , 0.000000 , 0.009061 }, { 0.163410 , 0.000000 , 0.010657 , 0.504438 , 0.628772 , 0.000000 , 0.007105 , 0.568381 , 0.003552 , 0.004973 , 0.010657 , 0.000000 , 0.010657 }, { 0.219854 , 0.000000 , 0.009290 , 0.340619 , 0.820583 , 0.003097 , 0.006193 , 0.402550 , 0.000000 , 0.000000 , 0.003097 , 0.003097 , 0.009290 }, { 0.145814 , 0.003102 , 0.012410 , 0.341268 , 0.853170 , 0.000000 , 0.006205 , 0.366087 , 0.003102 , 0.003102 , 0.006205 , 0.003102 , 0.009307 }, { 0.165445 , 0.003064 , 0.009191 , 0.459570 , 0.710802 , 0.000000 , 0.006128 , 0.505528 , 0.000000 , 0.004902 , 0.003064 , 0.000000 , 0.021447 }, { 0.210017 , 0.004286 , 0.012858 , 0.505755 , 0.638623 , 0.000000 , 0.008572 , 0.540044 , 0.000000 , 0.003429 , 0.004286 , 0.012858 , 0.012858 }, { 0.226332 , 0.000000 , 0.006117 , 0.367026 , 0.822749 , 0.000000 , 0.006117 , 0.370084 , 0.003059 , 0.000612 , 0.003059 , 0.003059 , 0.009176 }, { 0.141532 , 0.000000 , 0.009650 , 0.379564 , 0.778429 , 0.000000 , 0.000000 , 0.479280 , 0.000000 , 0.000965 , 0.006433 , 0.003217 , 0.009650 }, { 0.210025 , 0.000000 , 0.014484 , 0.470745 , 0.713359 , 0.000000 , 0.000000 , 0.474366 , 0.000000 , 0.002173 , 0.007242 , 0.000000 , 0.010863 }, { 0.197838 , 0.002909 , 0.008728 , 0.343308 , 0.805900 , 0.000000 , 0.000000 , 0.439317 , 0.000000 , 0.002909 , 0.002909 , 0.002909 , 0.020366 }, { 0.165755 , 0.000000 , 0.012510 , 0.431589 , 0.731826 , 0.000000 , 0.006255 , 0.500394 , 0.000000 , 0.000000 , 0.003127 , 0.000000 , 0.009382 }, { 0.128516 , 0.000000 , 0.009886 , 0.454748 , 0.724960 , 0.000000 , 0.000000 , 0.500882 , 0.000000 , 0.000000 , 0.006591 , 0.000000 , 0.009886 }, { 0.184902 , 0.000000 , 0.008218 , 0.460201 , 0.657429 , 0.000000 , 0.000000 , 0.567033 , 0.000000 , 0.000000 , 0.008218 , 0.000000 , 0.012327 }, { 0.200533 , 0.003457 , 0.013830 , 0.442555 , 0.746811 , 0.000000 , 0.006915 , 0.452927 , 0.003457 , 0.007606 , 0.006915 , 0.010372 , 0.024202 }, { 0.165944 , 0.003191 , 0.009574 , 0.548890 , 0.635053 , 0.003191 , 0.000000 , 0.516978 , 0.000000 , 0.001596 , 0.003191 , 0.000000 , 0.022339 }, { 0.189094 , 0.003100 , 0.009300 , 0.464985 , 0.753276 , 0.003100 , 0.000000 , 0.424686 , 0.003100 , 0.003100 , 0.006200 , 0.000000 , 0.009300 }, { 0.173161 , 0.003395 , 0.010186 , 0.319160 , 0.770737 , 0.000000 , 0.000000 , 0.522879 , 0.003395 , 0.000000 , 0.003395 , 0.003395 , 0.023767 }, { 0.174514 , 0.003062 , 0.006123 , 0.379643 , 0.799088 , 0.000000 , 0.000000 , 0.431691 , 0.000000 , 0.000918 , 0.003062 , 0.000000 , 0.021431 }, { 0.184489 , 0.000000 , 0.005197 , 0.415750 , 0.784728 , 0.000000 , 0.000000 , 0.420947 , 0.000000 , 0.001039 , 0.002598 , 0.005197 , 0.007795 }, { 0.118723 , 0.000000 , 0.013568 , 0.468106 , 0.620749 , 0.000000 , 0.000000 , 0.617357 , 0.000000 , 0.004749 , 0.003392 , 0.000000 , 0.010176 }, { 0.125797 , 0.002995 , 0.008986 , 0.359421 , 0.718841 , 0.002995 , 0.000000 , 0.581063 , 0.000000 , 0.002396 , 0.008986 , 0.000000 , 0.020966 }, { 0.178171 , 0.002741 , 0.002741 , 0.378271 , 0.772989 , 0.002741 , 0.005482 , 0.476951 , 0.000000 , 0.003838 , 0.005482 , 0.002741 , 0.008223 }, { 0.173053 , 0.000000 , 0.011732 , 0.510360 , 0.730343 , 0.000000 , 0.000000 , 0.419434 , 0.002933 , 0.000000 , 0.005866 , 0.000000 , 0.008799 }, { 0.207626 , 0.003146 , 0.012583 , 0.503336 , 0.717253 , 0.000000 , 0.006292 , 0.434127 , 0.000000 , 0.007235 , 0.003146 , 0.000000 , 0.018875 }, { 0.187672 , 0.003181 , 0.006362 , 0.445323 , 0.702974 , 0.000000 , 0.000000 , 0.521664 , 0.003181 , 0.000000 , 0.003181 , 0.000000 , 0.009543 }, { 0.142568 , 0.002970 , 0.008910 , 0.368300 , 0.757390 , 0.002970 , 0.000000 , 0.519778 , 0.000000 , 0.000000 , 0.002970 , 0.005940 , 0.008910 }, { 0.144279 , 0.002829 , 0.011316 , 0.396059 , 0.738367 , 0.000000 , 0.005658 , 0.526193 , 0.002829 , 0.000000 , 0.002829 , 0.000000 , 0.008487 }, { 0.146257 , 0.003567 , 0.007134 , 0.481578 , 0.724151 , 0.000000 , 0.000000 , 0.470876 , 0.000000 , 0.000000 , 0.007134 , 0.000000 , 0.021403 }, { 0.185282 , 0.003251 , 0.009752 , 0.416071 , 0.744377 , 0.000000 , 0.006501 , 0.487583 , 0.000000 , 0.001300 , 0.006501 , 0.003251 , 0.022754 }, { 0.168427 , 0.002955 , 0.011819 , 0.443228 , 0.815539 , 0.000000 , 0.005910 , 0.330944 , 0.002955 , 0.001773 , 0.005910 , 0.002955 , 0.017729 }, { 0.245377 , 0.000000 , 0.010825 , 0.433018 , 0.761389 , 0.000000 , 0.007217 , 0.414975 , 0.000000 , 0.005413 , 0.007217 , 0.000000 , 0.010825 }, { 0.156767 , 0.003824 , 0.015294 , 0.420596 , 0.657658 , 0.000000 , 0.007647 , 0.604128 , 0.000000 , 0.000000 , 0.003824 , 0.000000 , 0.026765 }, { 0.134711 , 0.003286 , 0.009857 , 0.427133 , 0.703126 , 0.000000 , 0.006571 , 0.551987 , 0.000000 , 0.006571 , 0.006571 , 0.000000 , 0.009857 }, { 0.210189 , 0.003503 , 0.010509 , 0.490441 , 0.648082 , 0.000000 , 0.007006 , 0.542988 , 0.000000 , 0.010509 , 0.007006 , 0.000000 , 0.010509 }, { 0.147269 , 0.002727 , 0.005454 , 0.294537 , 0.842704 , 0.000000 , 0.000000 , 0.425443 , 0.000000 , 0.000000 , 0.002727 , 0.000000 , 0.019090 }, { 0.162805 , 0.000000 , 0.010676 , 0.386996 , 0.819363 , 0.000000 , 0.005338 , 0.389665 , 0.002669 , 0.002669 , 0.005338 , 0.000000 , 0.018683 }, { 0.123900 , 0.002950 , 0.002950 , 0.436602 , 0.719803 , 0.000000 , 0.005900 , 0.525102 , 0.000000 , 0.002360 , 0.002950 , 0.005900 , 0.008850 }, { 0.218843 , 0.000000 , 0.003316 , 0.497372 , 0.749373 , 0.000000 , 0.000000 , 0.378002 , 0.000000 , 0.008621 , 0.009947 , 0.000000 , 0.009947 }, { 0.227509 , 0.000000 , 0.014445 , 0.447796 , 0.711419 , 0.000000 , 0.000000 , 0.491132 , 0.003611 , 0.000000 , 0.007223 , 0.000000 , 0.010834 }, { 0.135407 , 0.000000 , 0.004924 , 0.324977 , 0.841986 , 0.000000 , 0.000000 , 0.408683 , 0.000000 , 0.002954 , 0.002462 , 0.000000 , 0.007386 }, { 0.160088 , 0.000000 , 0.008894 , 0.320176 , 0.791546 , 0.000000 , 0.005929 , 0.495087 , 0.000000 , 0.000000 , 0.002965 , 0.000000 , 0.008894 }, { 0.161071 , 0.003579 , 0.014317 , 0.372253 , 0.744507 , 0.000000 , 0.007159 , 0.529745 , 0.003579 , 0.010738 , 0.007159 , 0.000000 , 0.010738 }, { 0.158381 , 0.000000 , 0.006886 , 0.361521 , 0.702384 , 0.000000 , 0.000000 , 0.592206 , 0.000000 , 0.000000 , 0.003443 , 0.000000 , 0.010329 }, { 0.202675 , 0.003118 , 0.012472 , 0.342988 , 0.773283 , 0.000000 , 0.006236 , 0.492656 , 0.000000 , 0.001871 , 0.003118 , 0.006236 , 0.018708 }, { 0.150590 , 0.000000 , 0.005577 , 0.368110 , 0.803148 , 0.002789 , 0.005577 , 0.443405 , 0.002789 , 0.000000 , 0.002789 , 0.002789 , 0.008366 }, { 0.154136 , 0.000000 , 0.010817 , 0.346131 , 0.819356 , 0.000000 , 0.005408 , 0.429959 , 0.000000 , 0.000000 , 0.002704 , 0.002704 , 0.008112 }, { 0.185531 , 0.000000 , 0.008835 , 0.397566 , 0.742124 , 0.000000 , 0.005890 , 0.506529 , 0.000000 , 0.000000 , 0.002945 , 0.000000 , 0.008835 }, { 0.155959 , 0.002689 , 0.010756 , 0.336117 , 0.806682 , 0.000000 , 0.005378 , 0.459809 , 0.000000 , 0.000000 , 0.002689 , 0.005378 , 0.018823 }, { 0.188440 , 0.003249 , 0.009747 , 0.454855 , 0.685531 , 0.003249 , 0.006498 , 0.536079 , 0.000000 , 0.000000 , 0.003249 , 0.000000 , 0.009747 }, { 0.179077 , 0.000000 , 0.011192 , 0.363751 , 0.847819 , 0.000000 , 0.000000 , 0.341366 , 0.000000 , 0.005596 , 0.005596 , 0.005596 , 0.008394 }, { 0.142372 , 0.000000 , 0.012655 , 0.436606 , 0.746660 , 0.000000 , 0.006328 , 0.480899 , 0.003164 , 0.000633 , 0.006328 , 0.000000 , 0.009491 }, { 0.091624 , 0.003159 , 0.006319 , 0.410727 , 0.644525 , 0.000000 , 0.006319 , 0.638206 , 0.000000 , 0.000000 , 0.003159 , 0.000000 , 0.009478 }, { 0.197421 , 0.003346 , 0.003346 , 0.448380 , 0.682608 , 0.000000 , 0.000000 , 0.542071 , 0.000000 , 0.002677 , 0.003346 , 0.006692 , 0.010038 }, { 0.225784 , 0.003370 , 0.013480 , 0.404390 , 0.771710 , 0.000000 , 0.006740 , 0.434719 , 0.003370 , 0.008762 , 0.006740 , 0.006740 , 0.023589 }, { 0.150853 , 0.003679 , 0.007359 , 0.441520 , 0.577655 , 0.000000 , 0.000000 , 0.669638 , 0.000000 , 0.000000 , 0.003679 , 0.000000 , 0.011038 }, { 0.196653 , 0.003512 , 0.003512 , 0.421399 , 0.677750 , 0.000000 , 0.007023 , 0.568888 , 0.000000 , 0.006672 , 0.007023 , 0.000000 , 0.024582 }, { 0.156713 , 0.003014 , 0.012055 , 0.385754 , 0.768494 , 0.000000 , 0.000000 , 0.485206 , 0.003014 , 0.000000 , 0.003014 , 0.003014 , 0.021096 }, { 0.100604 , 0.002874 , 0.011498 , 0.362175 , 0.810582 , 0.000000 , 0.005749 , 0.448407 , 0.002874 , 0.000000 , 0.002874 , 0.000000 , 0.020121 }, { 0.177711 , 0.003485 , 0.010454 , 0.348452 , 0.773564 , 0.000000 , 0.000000 , 0.498287 , 0.003485 , 0.004181 , 0.006969 , 0.000000 , 0.010454 }, { 0.115056 , 0.002676 , 0.010703 , 0.307707 , 0.810742 , 0.000000 , 0.000000 , 0.484305 , 0.000000 , 0.003211 , 0.005351 , 0.000000 , 0.008027 }, { 0.113220 , 0.002633 , 0.007899 , 0.342292 , 0.829399 , 0.000000 , 0.000000 , 0.426548 , 0.000000 , 0.005003 , 0.002633 , 0.002633 , 0.007899 }, { 0.184503 , 0.003075 , 0.012300 , 0.384381 , 0.793362 , 0.000000 , 0.006150 , 0.433582 , 0.003075 , 0.008610 , 0.006150 , 0.003075 , 0.021525 }, { 0.166437 , 0.003082 , 0.012329 , 0.431504 , 0.736639 , 0.000000 , 0.000000 , 0.493148 , 0.000000 , 0.003699 , 0.003082 , 0.000000 , 0.009247 }, { 0.207248 , 0.000000 , 0.013371 , 0.414496 , 0.698626 , 0.000000 , 0.000000 , 0.544861 , 0.000000 , 0.000000 , 0.003343 , 0.000000 , 0.010028 }, { 0.110458 , 0.000000 , 0.005388 , 0.339456 , 0.824394 , 0.000000 , 0.000000 , 0.439138 , 0.000000 , 0.000000 , 0.002694 , 0.000000 , 0.008082 }, { 0.247184 , 0.000000 , 0.012359 , 0.494367 , 0.733312 , 0.004120 , 0.000000 , 0.395494 , 0.000000 , 0.000000 , 0.004120 , 0.000000 , 0.012359 }, { 0.200631 , 0.003236 , 0.009708 , 0.420678 , 0.747513 , 0.000000 , 0.000000 , 0.472454 , 0.000000 , 0.005825 , 0.006472 , 0.009708 , 0.022652 }, { 0.141416 , 0.000000 , 0.005772 , 0.386730 , 0.782117 , 0.000000 , 0.000000 , 0.467539 , 0.000000 , 0.000000 , 0.005772 , 0.000000 , 0.008658 }, { 0.124308 , 0.003032 , 0.009096 , 0.339572 , 0.757973 , 0.000000 , 0.000000 , 0.542708 , 0.000000 , 0.000000 , 0.003032 , 0.000000 , 0.009096 }, { 0.138424 , 0.000000 , 0.009714 , 0.291419 , 0.859686 , 0.000000 , 0.000000 , 0.395844 , 0.002428 , 0.001457 , 0.002428 , 0.000000 , 0.007285 }, { 0.137661 , 0.003129 , 0.006257 , 0.406727 , 0.685178 , 0.000000 , 0.006257 , 0.588190 , 0.000000 , 0.000000 , 0.003129 , 0.000000 , 0.009386 }, { 0.172453 , 0.003025 , 0.012102 , 0.459875 , 0.828985 , 0.000000 , 0.000000 , 0.266244 , 0.003025 , 0.003631 , 0.006051 , 0.003025 , 0.021178 }, { 0.137485 , 0.000000 , 0.008870 , 0.310450 , 0.873695 , 0.000000 , 0.004435 , 0.348147 , 0.000000 , 0.002661 , 0.004435 , 0.000000 , 0.006652 }, { 0.141385 , 0.003142 , 0.003142 , 0.345609 , 0.829461 , 0.000000 , 0.000000 , 0.414731 , 0.000000 , 0.003770 , 0.006284 , 0.000000 , 0.021993 }, { 0.135530 , 0.002657 , 0.010630 , 0.372044 , 0.794579 , 0.000000 , 0.000000 , 0.459740 , 0.002657 , 0.004252 , 0.002657 , 0.000000 , 0.018602 }, { 0.135926 , 0.002614 , 0.002614 , 0.397322 , 0.778959 , 0.002614 , 0.000000 , 0.465284 , 0.000000 , 0.003137 , 0.005228 , 0.000000 , 0.018298 }, { 0.178527 , 0.000000 , 0.002975 , 0.446316 , 0.714106 , 0.000000 , 0.000000 , 0.508801 , 0.000000 , 0.002678 , 0.002975 , 0.000000 , 0.008926 }, { 0.166208 , 0.003078 , 0.009234 , 0.369351 , 0.794105 , 0.000000 , 0.006156 , 0.452455 , 0.000000 , 0.001231 , 0.006156 , 0.000000 , 0.021545 }, { 0.143651 , 0.002993 , 0.005985 , 0.389056 , 0.733221 , 0.000000 , 0.005985 , 0.538693 , 0.000000 , 0.000599 , 0.005985 , 0.000000 , 0.008978 }, { 0.173004 , 0.003327 , 0.013308 , 0.359316 , 0.775191 , 0.003327 , 0.000000 , 0.489069 , 0.000000 , 0.000333 , 0.003327 , 0.009981 , 0.023289 }, { 0.164160 , 0.002782 , 0.002782 , 0.495264 , 0.751243 , 0.000000 , 0.005565 , 0.403445 , 0.000000 , 0.011686 , 0.008347 , 0.000000 , 0.019477 }, { 0.172367 , 0.003447 , 0.010342 , 0.444706 , 0.675677 , 0.000000 , 0.000000 , 0.561915 , 0.000000 , 0.000000 , 0.003447 , 0.000000 , 0.010342 }, { 0.169808 , 0.003266 , 0.013062 , 0.365740 , 0.751073 , 0.000000 , 0.000000 , 0.522485 , 0.000000 , 0.000000 , 0.003266 , 0.003266 , 0.009797 }, { 0.121354 , 0.003569 , 0.003569 , 0.421171 , 0.649602 , 0.000000 , 0.007138 , 0.621048 , 0.000000 , 0.000000 , 0.003569 , 0.000000 , 0.010708 }, { 0.133159 , 0.003026 , 0.009079 , 0.423688 , 0.711191 , 0.000000 , 0.006053 , 0.544742 , 0.000000 , 0.000000 , 0.003026 , 0.000000 , 0.009079 }, { 0.183081 , 0.000000 , 0.008198 , 0.415347 , 0.756915 , 0.000000 , 0.000000 , 0.469998 , 0.000000 , 0.000000 , 0.002733 , 0.002733 , 0.008198 }, { 0.134858 , 0.003289 , 0.006578 , 0.361815 , 0.772968 , 0.000000 , 0.000000 , 0.503251 , 0.000000 , 0.000000 , 0.003289 , 0.000000 , 0.009868 }, { 0.159930 , 0.000000 , 0.007997 , 0.271881 , 0.847629 , 0.000000 , 0.000000 , 0.426480 , 0.000000 , 0.000000 , 0.002666 , 0.002666 , 0.007997 }, { 0.111438 , 0.000000 , 0.004990 , 0.191274 , 0.938076 , 0.000000 , 0.003327 , 0.266121 , 0.000000 , 0.002661 , 0.003327 , 0.000000 , 0.011643 }, { 0.156025 , 0.000000 , 0.006241 , 0.374461 , 0.761403 , 0.000000 , 0.000000 , 0.505522 , 0.000000 , 0.003433 , 0.003121 , 0.000000 , 0.009362 }, { 0.158408 , 0.002933 , 0.008800 , 0.366685 , 0.800841 , 0.000000 , 0.005867 , 0.445889 , 0.000000 , 0.001467 , 0.008800 , 0.002933 , 0.008800 }, { 0.131499 , 0.002922 , 0.011689 , 0.336053 , 0.759773 , 0.000000 , 0.005844 , 0.540608 , 0.000000 , 0.000000 , 0.002922 , 0.000000 , 0.008767 }, { 0.166806 , 0.000000 , 0.010008 , 0.400335 , 0.730611 , 0.000000 , 0.000000 , 0.527107 , 0.000000 , 0.005338 , 0.006672 , 0.000000 , 0.010008 }, { 0.142489 , 0.000000 , 0.011632 , 0.378033 , 0.782238 , 0.000000 , 0.000000 , 0.473995 , 0.000000 , 0.000000 , 0.002908 , 0.000000 , 0.008724 }, { 0.173751 , 0.000000 , 0.011847 , 0.426480 , 0.556793 , 0.000000 , 0.000000 , 0.691056 , 0.000000 , 0.002369 , 0.007898 , 0.000000 , 0.011847 }, { 0.215731 , 0.003127 , 0.003127 , 0.500247 , 0.731611 , 0.003127 , 0.006253 , 0.409577 , 0.000000 , 0.000313 , 0.006253 , 0.003127 , 0.009380 }, { 0.224215 , 0.003503 , 0.003503 , 0.385369 , 0.739209 , 0.000000 , 0.007007 , 0.504484 , 0.003503 , 0.006306 , 0.007007 , 0.000000 , 0.010510 }, { 0.143090 , 0.000000 , 0.012443 , 0.429270 , 0.755888 , 0.000000 , 0.006221 , 0.472819 , 0.003111 , 0.000000 , 0.006221 , 0.000000 , 0.009332 }, { 0.157146 , 0.000000 , 0.009822 , 0.441974 , 0.798008 , 0.000000 , 0.000000 , 0.378133 , 0.002455 , 0.000000 , 0.002455 , 0.000000 , 0.007366 }, { 0.218796 , 0.003907 , 0.015628 , 0.515734 , 0.718901 , 0.000000 , 0.007814 , 0.410243 , 0.003907 , 0.008205 , 0.007814 , 0.003907 , 0.023442 }, { 0.098330 , 0.002521 , 0.007564 , 0.352980 , 0.809332 , 0.000000 , 0.005043 , 0.458874 , 0.000000 , 0.000000 , 0.002521 , 0.000000 , 0.007564 }, { 0.217257 , 0.003243 , 0.009728 , 0.492882 , 0.687440 , 0.000000 , 0.006485 , 0.486396 , 0.000000 , 0.002594 , 0.006485 , 0.000000 , 0.022699 }, { 0.175868 , 0.002748 , 0.008244 , 0.343492 , 0.849112 , 0.000000 , 0.000000 , 0.359979 , 0.002748 , 0.004946 , 0.005496 , 0.000000 , 0.019236 }, { 0.135872 , 0.002516 , 0.005032 , 0.483099 , 0.712067 , 0.000000 , 0.005032 , 0.490647 , 0.000000 , 0.000000 , 0.002516 , 0.002516 , 0.017613 }, { 0.205864 , 0.000000 , 0.006535 , 0.457475 , 0.637197 , 0.000000 , 0.000000 , 0.584914 , 0.000000 , 0.000000 , 0.003268 , 0.006535 , 0.009803 }, { 0.145741 , 0.003168 , 0.009505 , 0.475241 , 0.731871 , 0.000000 , 0.000000 , 0.465736 , 0.000000 , 0.011406 , 0.006337 , 0.000000 , 0.009505 }, { 0.153408 , 0.000000 , 0.010060 , 0.326935 , 0.829911 , 0.000000 , 0.005030 , 0.425015 , 0.000000 , 0.000000 , 0.002515 , 0.000000 , 0.007545 }, { 0.159665 , 0.003013 , 0.009038 , 0.391630 , 0.741085 , 0.003013 , 0.006025 , 0.521169 , 0.000000 , 0.000000 , 0.003013 , 0.009038 , 0.009038 }, { 0.138488 , 0.002947 , 0.008840 , 0.383051 , 0.745476 , 0.000000 , 0.000000 , 0.527432 , 0.000000 , 0.000000 , 0.002947 , 0.000000 , 0.008840 }, { 0.157311 , 0.002666 , 0.002666 , 0.453269 , 0.767891 , 0.000000 , 0.005333 , 0.423940 , 0.000000 , 0.000533 , 0.005333 , 0.000000 , 0.018664 }, { 0.183843 , 0.000000 , 0.012901 , 0.451545 , 0.777302 , 0.000000 , 0.000000 , 0.396714 , 0.003225 , 0.000645 , 0.006451 , 0.000000 , 0.022577 }, { 0.150962 , 0.003145 , 0.012580 , 0.383695 , 0.698200 , 0.000000 , 0.006290 , 0.584978 , 0.000000 , 0.000000 , 0.003145 , 0.000000 , 0.009435 }, { 0.151629 , 0.003446 , 0.013784 , 0.379072 , 0.678883 , 0.000000 , 0.006892 , 0.609961 , 0.000000 , 0.000000 , 0.003446 , 0.003446 , 0.010338 }, { 0.155624 , 0.003242 , 0.006484 , 0.356638 , 0.742455 , 0.000000 , 0.000000 , 0.544683 , 0.000000 , 0.003242 , 0.009726 , 0.000000 , 0.022695 }, { 0.188114 , 0.003300 , 0.013201 , 0.435632 , 0.683150 , 0.000000 , 0.000000 , 0.554440 , 0.003300 , 0.000000 , 0.003300 , 0.000000 , 0.023102 }, { 0.145958 , 0.003173 , 0.012692 , 0.380761 , 0.790080 , 0.000000 , 0.006346 , 0.456914 , 0.000000 , 0.002538 , 0.003173 , 0.000000 , 0.022211 }, { 0.156763 , 0.003074 , 0.009221 , 0.384223 , 0.753077 , 0.003074 , 0.006148 , 0.510248 , 0.000000 , 0.007377 , 0.006148 , 0.000000 , 0.009221 }, { 0.166062 , 0.000000 , 0.006039 , 0.407608 , 0.754829 , 0.000000 , 0.006039 , 0.486110 , 0.000000 , 0.004227 , 0.006039 , 0.000000 , 0.009058 }, { 0.181114 , 0.002744 , 0.010977 , 0.329299 , 0.828735 , 0.000000 , 0.005488 , 0.414368 , 0.000000 , 0.001098 , 0.005488 , 0.000000 , 0.008232 }, { 0.184352 , 0.000000 , 0.010242 , 0.375533 , 0.730582 , 0.000000 , 0.000000 , 0.539401 , 0.000000 , 0.005462 , 0.006828 , 0.000000 , 0.010242 }, { 0.127006 , 0.002954 , 0.011814 , 0.443043 , 0.729543 , 0.000000 , 0.000000 , 0.505068 , 0.000000 , 0.004430 , 0.002954 , 0.000000 , 0.008861 }, { 0.196352 , 0.003445 , 0.010334 , 0.516715 , 0.578720 , 0.000000 , 0.000000 , 0.599389 , 0.000000 , 0.005512 , 0.003445 , 0.000000 , 0.010334 }, { 0.119337 , 0.002652 , 0.005304 , 0.339447 , 0.816795 , 0.000000 , 0.005304 , 0.450828 , 0.000000 , 0.000000 , 0.002652 , 0.000000 , 0.007956 }, { 0.215060 , 0.003469 , 0.006937 , 0.443995 , 0.721492 , 0.003469 , 0.006937 , 0.485620 , 0.000000 , 0.000000 , 0.003469 , 0.000000 , 0.010406 }, { 0.185473 , 0.003499 , 0.010498 , 0.454934 , 0.689400 , 0.003499 , 0.006999 , 0.531923 , 0.000000 , 0.004199 , 0.010498 , 0.000000 , 0.010498 }, { 0.143779 , 0.003268 , 0.006535 , 0.392125 , 0.718897 , 0.000000 , 0.000000 , 0.555511 , 0.000000 , 0.000000 , 0.003268 , 0.000000 , 0.009803 }, { 0.228937 , 0.000000 , 0.013668 , 0.362199 , 0.761984 , 0.000000 , 0.000000 , 0.485210 , 0.000000 , 0.001025 , 0.003417 , 0.006834 , 0.010251 }, { 0.211318 , 0.003019 , 0.006038 , 0.470938 , 0.739614 , 0.000000 , 0.006038 , 0.431693 , 0.000000 , 0.000000 , 0.003019 , 0.000000 , 0.009057 }, { 0.184886 , 0.003081 , 0.012326 , 0.400586 , 0.779603 , 0.000000 , 0.000000 , 0.443727 , 0.003081 , 0.004314 , 0.003081 , 0.003081 , 0.021570 }, { 0.197415 , 0.003134 , 0.003134 , 0.454368 , 0.730123 , 0.003134 , 0.006267 , 0.470036 , 0.000000 , 0.007207 , 0.009401 , 0.000000 , 0.018801 }, { 0.153784 , 0.000000 , 0.005492 , 0.384459 , 0.807364 , 0.000000 , 0.005492 , 0.420159 , 0.000000 , 0.003570 , 0.005492 , 0.000000 , 0.008238 }, { 0.199449 , 0.003499 , 0.013996 , 0.489875 , 0.671829 , 0.000000 , 0.000000 , 0.517868 , 0.000000 , 0.001400 , 0.006998 , 0.000000 , 0.020995 }, { 0.121294 , 0.003466 , 0.006931 , 0.422796 , 0.665384 , 0.000000 , 0.000000 , 0.603005 , 0.000000 , 0.000000 , 0.003466 , 0.000000 , 0.010397 }, { 0.120559 , 0.000000 , 0.008821 , 0.329331 , 0.788041 , 0.000000 , 0.005881 , 0.505758 , 0.002940 , 0.000000 , 0.002940 , 0.000000 , 0.008821 }, { 0.143061 , 0.000000 , 0.007948 , 0.357653 , 0.805381 , 0.002649 , 0.000000 , 0.450377 , 0.000000 , 0.000000 , 0.002649 , 0.000000 , 0.007948 }, { 0.144822 , 0.000000 , 0.007064 , 0.370886 , 0.699385 , 0.000000 , 0.000000 , 0.593417 , 0.000000 , 0.000000 , 0.003532 , 0.003532 , 0.010597 }, { 0.109701 , 0.000000 , 0.006453 , 0.380727 , 0.677566 , 0.000000 , 0.000000 , 0.619489 , 0.000000 , 0.002259 , 0.003227 , 0.000000 , 0.009680 }, { 0.141857 , 0.002895 , 0.005790 , 0.376356 , 0.770082 , 0.000000 , 0.000000 , 0.495053 , 0.000000 , 0.001737 , 0.002895 , 0.000000 , 0.008685 }, { 0.159510 , 0.000000 , 0.002750 , 0.412527 , 0.778301 , 0.002750 , 0.005500 , 0.445529 , 0.000000 , 0.002750 , 0.002750 , 0.000000 , 0.008251 }, { 0.185870 , 0.000000 , 0.008449 , 0.411166 , 0.782906 , 0.000000 , 0.005632 , 0.428064 , 0.000000 , 0.000000 , 0.005632 , 0.002816 , 0.008449 }, { 0.184327 , 0.003124 , 0.012497 , 0.421765 , 0.731060 , 0.000000 , 0.000000 , 0.502994 , 0.000000 , 0.001562 , 0.006248 , 0.000000 , 0.021869 }, { 0.172876 , 0.003087 , 0.006174 , 0.370449 , 0.728549 , 0.000000 , 0.000000 , 0.549499 , 0.000000 , 0.002470 , 0.003087 , 0.000000 , 0.009261 }, { 0.194199 , 0.003034 , 0.003034 , 0.515840 , 0.688799 , 0.000000 , 0.006069 , 0.470325 , 0.000000 , 0.001821 , 0.006069 , 0.000000 , 0.021240 }, { 0.207387 , 0.004066 , 0.012199 , 0.447305 , 0.711621 , 0.000000 , 0.000000 , 0.500168 , 0.000000 , 0.002440 , 0.004066 , 0.000000 , 0.012199 }, { 0.135666 , 0.003083 , 0.009250 , 0.400832 , 0.718414 , 0.000000 , 0.000000 , 0.551914 , 0.003083 , 0.001233 , 0.003083 , 0.000000 , 0.009250 }, { 0.212995 , 0.003737 , 0.011210 , 0.560514 , 0.470831 , 0.003737 , 0.000000 , 0.646459 , 0.000000 , 0.000747 , 0.003737 , 0.003737 , 0.026157 }, { 0.134639 , 0.000000 , 0.012823 , 0.326980 , 0.849506 , 0.000000 , 0.006411 , 0.391093 , 0.000000 , 0.001923 , 0.006411 , 0.000000 , 0.009617 }, { 0.201635 , 0.003151 , 0.012602 , 0.403270 , 0.828594 , 0.000000 , 0.000000 , 0.330807 , 0.003151 , 0.000630 , 0.006301 , 0.003151 , 0.022054 }, { 0.184504 , 0.000000 , 0.011715 , 0.316293 , 0.787803 , 0.000000 , 0.000000 , 0.494939 , 0.002929 , 0.005272 , 0.005857 , 0.005857 , 0.008786 }, { 0.193564 , 0.000000 , 0.013349 , 0.333730 , 0.827651 , 0.000000 , 0.006675 , 0.407151 , 0.000000 , 0.003337 , 0.006675 , 0.000000 , 0.010012 }, { 0.181175 , 0.003552 , 0.003552 , 0.444056 , 0.756672 , 0.000000 , 0.007105 , 0.444056 , 0.003552 , 0.004973 , 0.003552 , 0.003552 , 0.010657 }, { 0.116735 , 0.002779 , 0.005559 , 0.333529 , 0.819925 , 0.000000 , 0.000000 , 0.450264 , 0.000000 , 0.000000 , 0.002779 , 0.000000 , 0.008338 }, { 0.174734 , 0.000000 , 0.009707 , 0.517732 , 0.650400 , 0.000000 , 0.000000 , 0.527439 , 0.000000 , 0.000000 , 0.003236 , 0.003236 , 0.009707 }, { 0.147961 , 0.003441 , 0.013764 , 0.378506 , 0.726043 , 0.000000 , 0.000000 , 0.553995 , 0.000000 , 0.000000 , 0.003441 , 0.000000 , 0.024087 }, { 0.152258 , 0.000000 , 0.007027 , 0.374789 , 0.843275 , 0.000000 , 0.004685 , 0.353707 , 0.000000 , 0.001874 , 0.002342 , 0.000000 , 0.007027 }, { 0.170852 , 0.002896 , 0.002896 , 0.463328 , 0.790554 , 0.000000 , 0.005792 , 0.361975 , 0.000000 , 0.000000 , 0.002896 , 0.000000 , 0.008687 }, { 0.140159 , 0.000000 , 0.010011 , 0.400454 , 0.697458 , 0.000000 , 0.000000 , 0.577321 , 0.000000 , 0.000000 , 0.006674 , 0.000000 , 0.010011 }, { 0.151656 , 0.003227 , 0.009680 , 0.348485 , 0.784091 , 0.000000 , 0.000000 , 0.490460 , 0.000000 , 0.000000 , 0.003227 , 0.000000 , 0.009680 }, { 0.167391 , 0.003639 , 0.007278 , 0.367533 , 0.716871 , 0.003639 , 0.000000 , 0.567674 , 0.000000 , 0.000000 , 0.003639 , 0.000000 , 0.025473 }, { 0.180266 , 0.003401 , 0.013605 , 0.482976 , 0.768681 , 0.000000 , 0.006802 , 0.377538 , 0.003401 , 0.000000 , 0.003401 , 0.000000 , 0.023809 }, { 0.174956 , 0.000000 , 0.006139 , 0.399023 , 0.724380 , 0.000000 , 0.006139 , 0.534077 , 0.000000 , 0.000000 , 0.006139 , 0.003069 , 0.009208 }, { 0.142015 , 0.003228 , 0.009683 , 0.387312 , 0.729438 , 0.000000 , 0.000000 , 0.545465 , 0.000000 , 0.000000 , 0.003228 , 0.000000 , 0.009683 }, { 0.139320 , 0.000000 , 0.006192 , 0.402480 , 0.724464 , 0.000000 , 0.006192 , 0.541800 , 0.000000 , 0.001858 , 0.006192 , 0.000000 , 0.009288 }, { 0.154726 , 0.000000 , 0.012378 , 0.340397 , 0.786009 , 0.000000 , 0.006189 , 0.492029 , 0.000000 , 0.000000 , 0.003095 , 0.000000 , 0.009284 }, { 0.163899 , 0.002980 , 0.005960 , 0.387397 , 0.780755 , 0.000000 , 0.000000 , 0.461897 , 0.000000 , 0.000000 , 0.002980 , 0.000000 , 0.008940 }, { 0.159883 , 0.000000 , 0.012067 , 0.392166 , 0.796399 , 0.000000 , 0.006033 , 0.431383 , 0.000000 , 0.001207 , 0.006033 , 0.000000 , 0.009050 }, { 0.272710 , 0.000000 , 0.010765 , 0.502360 , 0.706892 , 0.000000 , 0.003588 , 0.416241 , 0.000000 , 0.003947 , 0.007177 , 0.000000 , 0.010765 }, { 0.133233 , 0.002562 , 0.005124 , 0.307462 , 0.832709 , 0.000000 , 0.000000 , 0.440695 , 0.000000 , 0.000512 , 0.002562 , 0.000000 , 0.007687 }, { 0.140652 , 0.002993 , 0.008978 , 0.412977 , 0.769096 , 0.000000 , 0.005985 , 0.466844 , 0.000000 , 0.000000 , 0.002993 , 0.000000 , 0.008978 }, { 0.143855 , 0.000000 , 0.010036 , 0.408145 , 0.712582 , 0.000000 , 0.000000 , 0.552000 , 0.000000 , 0.000669 , 0.006691 , 0.000000 , 0.010036 }, { 0.142162 , 0.000000 , 0.008362 , 0.334499 , 0.822310 , 0.000000 , 0.005575 , 0.437636 , 0.000000 , 0.001672 , 0.002787 , 0.000000 , 0.008362 }, }; int y[DATASET_SIZE] = { 0 , 1 , 1 , 0 , 0 , 0 , 0 , 1 , 0 , 1 , 1 , 1 , 0 , 0 , 0 , 0 , 0 , 0 , 1 , 0 , 0 , 1 , 0 , 0 , 0 , 1 , 0 , 0 , 0 , 0 , 0 , 1 , 0 , 0 , 0 , 1 , 0 , 0 , 0 , 1 , 1 , 0 , 1 , 1 , 0 , 0 , 1 , 0 , 1 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 1 , 0 , 0 , 0 , 1 , 0 , 0 , 0 , 1 , 1 , 0 , 0 , 0 , 0 , 0 , 1 , 1 , 0 , 1 , 0 , 1 , 0 , 1 , 0 , 0 , 1 , 0 , 0 , 0 , 0 , 1 , 0 , 0 , 0 , 1 , 0 , 0 , 0 , 0 , 1 , 1 , 0 , 0 , 1 , 1 , 0 , 0 , 0 , 1 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 1 , 0 , 1 , 1 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 1 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 1 , 0 , 1 , 1 , 1 , 0 , 1 , 1 , 0 , 0 , 1 , 1 , 0 , 1 , 1 , 0 , 1 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 1 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 1 , 0 , 0 , 0 , 0 , 0 , 0 , 1 , 0 , 1 , 0 , 0 , 1 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 };
40,149
C++
.h
220
173.713636
1,309
0.495379
eloquentarduino/EloquentMicroML
34
11
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,717
RGB.h
eloquentarduino_EloquentMicroML/examples/ColorClassificationTrainingExample/RGB.h
#pragma once /** * Wrapper for RGB color sensor */ class RGB { public: RGB(uint8_t s2, uint8_t s3, uint8_t out) : _s2(s2), _s3(s3), _out(out) { } /** * */ void begin() { pinMode(_s2, OUTPUT); pinMode(_s3, OUTPUT); pinMode(_out, INPUT); } /** * * @param x */ void read(float x[3]) { x[0] = readComponent(LOW, LOW); x[1] = readComponent(HIGH, HIGH); x[2] = readComponent(LOW, HIGH); } protected: uint8_t _s2; uint8_t _s3; uint8_t _out; /** * * @param s2 * @param s3 * @return */ int readComponent(bool s2, bool s3) { delay(10); digitalWrite(_s2, s2); digitalWrite(_s3, s3); return pulseIn(_out, LOW); } };
978
C++
.h
45
12.422222
50
0.400216
eloquentarduino/EloquentMicroML
34
11
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,718
OneClassSVM.h
eloquentarduino_EloquentMicroML/examples/OneClassSVMExample/OneClassSVM.h
#pragma once namespace Eloquent { namespace ML { namespace Port { class OneClassSVM { public: OneClassSVM() { } /** * Predict class for features vector */ int predict(float *x) { float kernels[103] = { 0 }; kernels[0] = compute_kernel(x, 2.081648079 , 2.416976782 ); kernels[1] = compute_kernel(x, 1.79433007 , 1.837164471 ); kernels[2] = compute_kernel(x, 1.995388516 , 1.14901922 ); kernels[3] = compute_kernel(x, 1.862821384 , 2.255965555 ); kernels[4] = compute_kernel(x, 2.088530558 , 2.183950831 ); kernels[5] = compute_kernel(x, 1.720917923 , 2.008188222 ); kernels[6] = compute_kernel(x, 2.108806288 , 1.801064047 ); kernels[7] = compute_kernel(x, 1.781646761 , 2.115410606 ); kernels[8] = compute_kernel(x, 2.110753564 , 1.756399603 ); kernels[9] = compute_kernel(x, 1.80194797 , 2.091460009 ); kernels[10] = compute_kernel(x, 1.76220929 , 1.659126614 ); kernels[11] = compute_kernel(x, 1.948884899 , 2.23334939 ); kernels[12] = compute_kernel(x, 1.46389555 , 2.934052651 ); kernels[13] = compute_kernel(x, 1.579996388 , 1.582843765 ); kernels[14] = compute_kernel(x, 1.985205945 , 1.869465048 ); kernels[15] = compute_kernel(x, 2.173248745 , 2.069327414 ); kernels[16] = compute_kernel(x, 2.650293485 , 1.495215265 ); kernels[17] = compute_kernel(x, 2.160612294 , 1.55679672 ); kernels[18] = compute_kernel(x, 1.963624616 , 2.406900003 ); kernels[19] = compute_kernel(x, 1.815162698 , 2.159282828 ); kernels[20] = compute_kernel(x, 1.969904504 , 1.965944482 ); kernels[21] = compute_kernel(x, 2.111640653 , 1.982980846 ); kernels[22] = compute_kernel(x, 1.576583393 , 1.872107243 ); kernels[23] = compute_kernel(x, 2.057858459 , 2.376426847 ); kernels[24] = compute_kernel(x, 1.619048574 , 2.261960119 ); kernels[25] = compute_kernel(x, 2.255068446 , 2.132113582 ); kernels[26] = compute_kernel(x, 1.341181745 , 2.686502098 ); kernels[27] = compute_kernel(x, 1.949245809 , 2.048934272 ); kernels[28] = compute_kernel(x, 2.183188207 , 1.914652138 ); kernels[29] = compute_kernel(x, 1.645817108 , 2.031532459 ); kernels[30] = compute_kernel(x, 1.934286029 , 2.043886454 ); kernels[31] = compute_kernel(x, 2.162413295 , 2.189314859 ); kernels[32] = compute_kernel(x, 2.024071339 , 1.470810491 ); kernels[33] = compute_kernel(x, 2.234804628 , 1.940228406 ); kernels[34] = compute_kernel(x, 2.087009103 , 2.054050869 ); kernels[35] = compute_kernel(x, 2.518966926 , 2.001222381 ); kernels[36] = compute_kernel(x, 2.729061074 , 1.583097433 ); kernels[37] = compute_kernel(x, 2.527237168 , 1.960235339 ); kernels[38] = compute_kernel(x, 1.823510918 , 1.749421015 ); kernels[39] = compute_kernel(x, 2.056878991 , 1.791454238 ); kernels[40] = compute_kernel(x, 1.898372129 , 1.809228787 ); kernels[41] = compute_kernel(x, 1.361456659 , 1.807088784 ); kernels[42] = compute_kernel(x, 1.58887235 , 2.804500593 ); kernels[43] = compute_kernel(x, 1.707850216 , 1.77460317 ); kernels[44] = compute_kernel(x, 2.179893976 , 1.909972513 ); kernels[45] = compute_kernel(x, 1.772598779 , 1.85031504 ); kernels[46] = compute_kernel(x, 1.77936648 , 2.220097951 ); kernels[47] = compute_kernel(x, 2.141393923 , 1.602564934 ); kernels[48] = compute_kernel(x, 2.319060201 , 2.078959749 ); kernels[49] = compute_kernel(x, 1.934328157 , 1.47532657 ); kernels[50] = compute_kernel(x, 2.135892335 , 1.826700798 ); kernels[51] = compute_kernel(x, 1.738609972 , 2.389921252 ); kernels[52] = compute_kernel(x, 1.849065396 , 1.773402741 ); kernels[53] = compute_kernel(x, -1.974541276 , -2.394569985 ); kernels[54] = compute_kernel(x, -2.20566993 , -2.162835529 ); kernels[55] = compute_kernel(x, -2.004611484 , -2.85098078 ); kernels[56] = compute_kernel(x, -2.109130391 , -2.296375504 ); kernels[57] = compute_kernel(x, -2.525269114 , -2.107003397 ); kernels[58] = compute_kernel(x, -2.279082077 , -1.991811778 ); kernels[59] = compute_kernel(x, -1.891193712 , -2.198935953 ); kernels[60] = compute_kernel(x, -2.218353239 , -1.884589394 ); kernels[61] = compute_kernel(x, -2.384303916 , -2.195291289 ); kernels[62] = compute_kernel(x, -2.484930309 , -2.259952145 ); kernels[63] = compute_kernel(x, -1.889246436 , -2.243600397 ); kernels[64] = compute_kernel(x, -2.19805203 , -1.908539991 ); kernels[65] = compute_kernel(x, -2.23779071 , -2.340873386 ); kernels[66] = compute_kernel(x, -2.53610445 , -1.065947349 ); kernels[67] = compute_kernel(x, -1.848339171 , -2.605966599 ); kernels[68] = compute_kernel(x, -2.420003612 , -2.417156235 ); kernels[69] = compute_kernel(x, -1.804209994 , -2.238867466 ); kernels[70] = compute_kernel(x, -2.014794055 , -2.130534952 ); kernels[71] = compute_kernel(x, -2.785716978 , -2.086395722 ); kernels[72] = compute_kernel(x, -2.522697742 , -1.917692521 ); kernels[73] = compute_kernel(x, -2.246350837 , -1.784573199 ); kernels[74] = compute_kernel(x, -1.920500584 , -2.419735102 ); kernels[75] = compute_kernel(x, -1.839387706 , -2.44320328 ); kernels[76] = compute_kernel(x, -2.184837302 , -1.840717172 ); kernels[77] = compute_kernel(x, -2.030095496 , -2.034055518 ); kernels[78] = compute_kernel(x, -2.218454814 , -2.369859939 ); kernels[79] = compute_kernel(x, -2.423416607 , -2.127892757 ); kernels[80] = compute_kernel(x, -2.380951426 , -1.738039881 ); kernels[81] = compute_kernel(x, -2.658818255 , -1.313497902 ); kernels[82] = compute_kernel(x, -1.839385728 , -2.20085493 ); kernels[83] = compute_kernel(x, -2.354182892 , -1.968467541 ); kernels[84] = compute_kernel(x, -2.369824595 , -1.948891695 ); kernels[85] = compute_kernel(x, -2.352728376 , -2.003333791 ); kernels[86] = compute_kernel(x, -2.358150622 , -2.256508317 ); kernels[87] = compute_kernel(x, -1.975928661 , -2.529189509 ); kernels[88] = compute_kernel(x, -2.503715876 , -2.453924977 ); kernels[89] = compute_kernel(x, -2.176489082 , -2.250578985 ); kernels[90] = compute_kernel(x, -1.943121009 , -2.208545762 ); kernels[91] = compute_kernel(x, -2.101627871 , -2.190771213 ); kernels[92] = compute_kernel(x, -2.638543341 , -2.192911216 ); kernels[93] = compute_kernel(x, -2.31054141 , -2.283292726 ); kernels[94] = compute_kernel(x, -2.292149784 , -2.22539683 ); kernels[95] = compute_kernel(x, -2.154025649 , -2.110703002 ); kernels[96] = compute_kernel(x, -2.227401221 , -2.14968496 ); kernels[97] = compute_kernel(x, -1.858606077 , -2.397435066 ); kernels[98] = compute_kernel(x, -2.000438757 , -2.300489977 ); kernels[99] = compute_kernel(x, -2.065671843 , -2.52467343 ); kernels[100] = compute_kernel(x, -1.864107665 , -2.173299202 ); kernels[101] = compute_kernel(x, -2.320107091 , -1.902360513 ); kernels[102] = compute_kernel(x, -2.150934604 , -2.226597259 ); float decision = -1.05e-06 - ( + kernels[0] + kernels[1] + kernels[2] + kernels[3] + kernels[4] + kernels[5] * 0.6564548 + kernels[6] + kernels[7] + kernels[8] + kernels[9] + kernels[10] + kernels[11] + kernels[12] + kernels[13] + kernels[14] + kernels[15] + kernels[16] + kernels[17] + kernels[18] + kernels[19] + kernels[20] + kernels[21] + kernels[22] + kernels[23] + kernels[24] + kernels[25] + kernels[26] + kernels[27] + kernels[28] + kernels[29] + kernels[30] + kernels[31] + kernels[32] + kernels[33] + kernels[34] + kernels[35] + kernels[36] + kernels[37] * 0.999600007 + kernels[38] + kernels[39] + kernels[40] + kernels[41] + kernels[42] + kernels[43] + kernels[44] + kernels[45] + kernels[46] + kernels[47] + kernels[48] + kernels[49] + kernels[50] + kernels[51] + kernels[52] + kernels[53] + kernels[54] + kernels[55] + kernels[56] + kernels[57] + kernels[58] + kernels[59] + kernels[60] + kernels[61] + kernels[62] + kernels[63] + kernels[64] + kernels[65] + kernels[66] * 0.007927676 + kernels[67] + kernels[68] + kernels[69] * 0.992072324 + kernels[70] + kernels[71] + kernels[72] + kernels[73] + kernels[74] + kernels[75] + kernels[76] * 0.3435452 + kernels[77] + kernels[78] + kernels[79] + kernels[80] + kernels[81] * 0.000399993 + kernels[82] + kernels[83] + kernels[84] + kernels[85] + kernels[86] + kernels[87] + kernels[88] + kernels[89] + kernels[90] + kernels[91] + kernels[92] + kernels[93] + kernels[94] + kernels[95] + kernels[96] + kernels[97] + kernels[98] + kernels[99] + kernels[100] + kernels[101] + kernels[102] ); return decision > 0 ? 0 : 1; } protected: /** * Compute kernel between feature vector and support vector. * Kernel type: linear */ float compute_kernel(float x[2], ...) { va_list w; va_start(w, 2); float kernel = 0.0; for (uint16_t i = 0; i < 2; i++) { kernel += x[i] * va_arg(w, double); } return kernel; } }; } } }
11,482
C++
.h
137
64.211679
1,767
0.505246
eloquentarduino/EloquentMicroML
34
11
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,719
test_set.h
eloquentarduino_EloquentMicroML/examples/OneClassSVMExample/test_set.h
#pragma once namespace Eloquent { namespace ML { namespace Test { class TestSet { public: TestSet() : _x{ { 2.155007372 , 2.320100047 }, { 2.158857681 , 2.155951003 }, { 1.857081415 , 1.672209019 }, { 2.247826643 , 2.389223989 }, { 2.300647368 , 2.192515116 }, { 1.64918076 , 1.573249313 }, { 2.322355879 , 1.766074565 }, { 1.256809336 , 1.724274643 }, { 2.019996606 , 1.49907968 }, { 1.24430735 , 2.022525555 }, { 2.12736108 , 2.267282459 }, { 1.896671298 , 2.176281137 }, { 1.894652561 , 2.095931058 }, { 2.266280128 , 1.807391808 }, { 2.369772571 , 2.061721849 }, { 2.507733043 , 2.066361445 }, { 1.766032738 , 2.294740627 }, { 1.883977114 , 2.36828571 }, { 2.065965838 , 2.264659676 }, { 1.388084106 , 2.028891487 }, { -1.844992628 , -1.679899953 }, { -1.841142319 , -1.844048997 }, { -2.142918585 , -2.327790981 }, { -1.752173357 , -1.610776011 }, { -1.699352632 , -1.807484884 }, { -2.35081924 , -2.426750687 }, { -1.677644121 , -2.233925435 }, { -2.743190664 , -2.275725357 }, { -1.980003394 , -2.50092032 }, { -2.75569265 , -1.977474445 }, { -1.87263892 , -1.732717541 }, { -2.103328702 , -1.823718863 }, { -2.105347439 , -1.904068942 }, { -1.733719872 , -2.192608192 }, { -1.630227429 , -1.938278151 }, { -1.492266957 , -1.933638555 }, { -2.233967262 , -1.705259373 }, { -2.116022886 , -1.63171429 }, { -1.934034162 , -1.735340324 }, { -2.611915894 , -1.971108513 }, }, _y{ 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 1 }, _tp(0), _tn(0), _fp(0), _fn(0) {} template<class Classifier> void test(Classifier clf) { for (uint16_t i = 0; i < 40; i++) { int predicted = clf.predict(_x[i]); int actual = _y[i]; if (predicted > 0 && predicted == actual) _tp++; else if (predicted > 0 && predicted != actual) _fp++; else if (predicted <= 0 && predicted == actual) _tn++; else _fn++; } } String dump() { return String("Support:\t") + support() + "\nTP:\t" + _tp + "\nTN:\t" + _tn + "\nFP:\t" + _fp + "\nFN:\t" + _fn + "\nAccuracy:\t" + accuracy() + "\nPrecision:\t" + precision() + "\nRecall:\t" + recall() + "\nSpecificity:\t" + specificity() ; } float accuracy() { return (1.0f * _tp + _tn) / support(); } float precision() { return (1.0f * _tp) / (_tp + _fp); } float recall() { return (1.0f * _tp) / (_tp + _fn); } float specificity() { return (1.0f * _tn) / (_tn + _fp); } uint16_t support() { return _tp + _tn + _fp + _fn; } protected: float _x[40][2]; int _y[40]; uint16_t _tp, _fp, _tn, _fn; }; } } }
5,206
C++
.h
114
23.587719
267
0.283045
eloquentarduino/EloquentMicroML
34
11
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,720
cleveland_heart_disease.h
eloquentarduino_EloquentMicroML/examples/PassiveAggressiveExample/cleveland_heart_disease.h
#pragma once #define FEATURES_DIM 13 #define DATASET_SIZE 214 float X[DATASET_SIZE][FEATURES_DIM] = { { 0.171407 , 0.000000 , 0.008035 , 0.374953 , 0.838287 , 0.000000 , 0.000000 , 0.356205 , 0.000000 , 0.000536 , 0.002678 , 0.000000 , 0.018748 }, { 0.208872 , 0.003424 , 0.013696 , 0.479377 , 0.708794 , 0.000000 , 0.006848 , 0.472529 , 0.003424 , 0.006506 , 0.003424 , 0.003424 , 0.023969 }, { 0.156206 , 0.000000 , 0.010414 , 0.411341 , 0.794045 , 0.000000 , 0.005207 , 0.419151 , 0.000000 , 0.000000 , 0.002603 , 0.000000 , 0.007810 }, { 0.212891 , 0.003735 , 0.014940 , 0.410842 , 0.750720 , 0.000000 , 0.000000 , 0.470601 , 0.003735 , 0.005602 , 0.007470 , 0.000000 , 0.022410 }, { 0.173883 , 0.003105 , 0.006210 , 0.372606 , 0.745212 , 0.000000 , 0.000000 , 0.524754 , 0.000000 , 0.000000 , 0.009315 , 0.000000 , 0.009315 }, { 0.131491 , 0.003287 , 0.003287 , 0.460218 , 0.654167 , 0.000000 , 0.000000 , 0.585134 , 0.003287 , 0.004602 , 0.003287 , 0.000000 , 0.023011 }, { 0.190822 , 0.003234 , 0.009703 , 0.485141 , 0.685666 , 0.003234 , 0.000000 , 0.507781 , 0.000000 , 0.005175 , 0.003234 , 0.000000 , 0.009703 }, { 0.173683 , 0.003047 , 0.006094 , 0.469248 , 0.706920 , 0.000000 , 0.006094 , 0.499719 , 0.000000 , 0.000000 , 0.003047 , 0.003047 , 0.009141 }, { 0.122712 , 0.000000 , 0.009950 , 0.397986 , 0.713059 , 0.000000 , 0.000000 , 0.563814 , 0.000000 , 0.000000 , 0.003317 , 0.000000 , 0.009950 }, { 0.196640 , 0.003172 , 0.012686 , 0.380593 , 0.846820 , 0.000000 , 0.000000 , 0.313990 , 0.003172 , 0.005709 , 0.006343 , 0.006343 , 0.022201 }, { 0.200953 , 0.003465 , 0.013859 , 0.505848 , 0.755307 , 0.000000 , 0.000000 , 0.363795 , 0.000000 , 0.006929 , 0.006929 , 0.003465 , 0.024253 }, { 0.159549 , 0.002493 , 0.007479 , 0.349014 , 0.835141 , 0.000000 , 0.000000 , 0.393888 , 0.000000 , 0.000000 , 0.002493 , 0.000000 , 0.007479 }, { 0.175090 , 0.000000 , 0.010101 , 0.457928 , 0.659955 , 0.000000 , 0.006734 , 0.569043 , 0.000000 , 0.000337 , 0.006734 , 0.000000 , 0.010101 }, { 0.213651 , 0.000000 , 0.003096 , 0.433494 , 0.740037 , 0.000000 , 0.000000 , 0.467554 , 0.000000 , 0.005573 , 0.003096 , 0.006193 , 0.009289 }, { 0.143674 , 0.000000 , 0.007431 , 0.297257 , 0.842227 , 0.000000 , 0.000000 , 0.426068 , 0.000000 , 0.000000 , 0.002477 , 0.000000 , 0.007431 }, { 0.154831 , 0.003686 , 0.011059 , 0.479238 , 0.663561 , 0.000000 , 0.000000 , 0.552967 , 0.000000 , 0.000000 , 0.003686 , 0.000000 , 0.011059 }, { 0.136818 , 0.000000 , 0.006674 , 0.433813 , 0.680753 , 0.000000 , 0.006674 , 0.573968 , 0.000000 , 0.004672 , 0.003337 , 0.000000 , 0.010011 }, { 0.155722 , 0.000000 , 0.009160 , 0.396937 , 0.781661 , 0.000000 , 0.006107 , 0.454951 , 0.000000 , 0.001527 , 0.003053 , 0.000000 , 0.009160 }, { 0.130617 , 0.003732 , 0.014928 , 0.447828 , 0.738916 , 0.000000 , 0.000000 , 0.485147 , 0.003732 , 0.005971 , 0.007464 , 0.000000 , 0.026123 }, { 0.246344 , 0.003790 , 0.015160 , 0.454790 , 0.670815 , 0.000000 , 0.000000 , 0.530588 , 0.000000 , 0.001516 , 0.003790 , 0.000000 , 0.026529 }, { 0.137834 , 0.000000 , 0.006362 , 0.296874 , 0.884260 , 0.002121 , 0.004241 , 0.332923 , 0.000000 , 0.001696 , 0.002121 , 0.002121 , 0.006362 }, { 0.188835 , 0.002698 , 0.010791 , 0.350694 , 0.868642 , 0.000000 , 0.005395 , 0.294043 , 0.000000 , 0.006474 , 0.005395 , 0.008093 , 0.008093 }, { 0.108740 , 0.002939 , 0.008817 , 0.382058 , 0.734728 , 0.000000 , 0.000000 , 0.549576 , 0.000000 , 0.010286 , 0.008817 , 0.000000 , 0.008817 }, { 0.130142 , 0.003099 , 0.012394 , 0.433807 , 0.700288 , 0.000000 , 0.000000 , 0.551554 , 0.000000 , 0.000000 , 0.003099 , 0.000000 , 0.009296 }, { 0.175923 , 0.003383 , 0.003383 , 0.399209 , 0.629262 , 0.000000 , 0.006766 , 0.642795 , 0.000000 , 0.000000 , 0.006766 , 0.000000 , 0.020299 }, { 0.122135 , 0.003053 , 0.012213 , 0.464112 , 0.680901 , 0.000000 , 0.000000 , 0.552660 , 0.000000 , 0.000000 , 0.003053 , 0.000000 , 0.021374 }, { 0.129474 , 0.002943 , 0.005885 , 0.353111 , 0.773901 , 0.000000 , 0.000000 , 0.509068 , 0.000000 , 0.000000 , 0.002943 , 0.000000 , 0.020598 }, { 0.137659 , 0.000000 , 0.008098 , 0.377888 , 0.831354 , 0.000000 , 0.005398 , 0.383287 , 0.000000 , 0.004049 , 0.002699 , 0.002699 , 0.008098 }, { 0.187416 , 0.003231 , 0.009694 , 0.339287 , 0.775513 , 0.000000 , 0.006463 , 0.497621 , 0.003231 , 0.001939 , 0.006463 , 0.000000 , 0.022619 }, { 0.164193 , 0.002783 , 0.011132 , 0.384044 , 0.754173 , 0.000000 , 0.005566 , 0.506492 , 0.000000 , 0.000000 , 0.002783 , 0.000000 , 0.008349 }, { 0.168724 , 0.003245 , 0.006489 , 0.415320 , 0.665160 , 0.003245 , 0.000000 , 0.597022 , 0.000000 , 0.000000 , 0.003245 , 0.000000 , 0.009734 }, { 0.169907 , 0.003146 , 0.012586 , 0.390157 , 0.836951 , 0.000000 , 0.006293 , 0.342961 , 0.003146 , 0.006922 , 0.006293 , 0.003146 , 0.022025 }, { 0.136179 , 0.000000 , 0.010475 , 0.328226 , 0.694862 , 0.000000 , 0.000000 , 0.625027 , 0.000000 , 0.000000 , 0.003492 , 0.000000 , 0.010475 }, { 0.142058 , 0.000000 , 0.008879 , 0.384742 , 0.813877 , 0.000000 , 0.000000 , 0.411378 , 0.000000 , 0.000592 , 0.002960 , 0.000000 , 0.008879 }, { 0.301534 , 0.000000 , 0.016988 , 0.475660 , 0.632797 , 0.000000 , 0.000000 , 0.530870 , 0.000000 , 0.006795 , 0.008494 , 0.000000 , 0.012741 }, { 0.155777 , 0.003116 , 0.009347 , 0.436177 , 0.725922 , 0.000000 , 0.000000 , 0.507834 , 0.000000 , 0.001869 , 0.006231 , 0.003116 , 0.021809 }, { 0.181207 , 0.003236 , 0.006472 , 0.420659 , 0.715120 , 0.000000 , 0.006472 , 0.527442 , 0.000000 , 0.000000 , 0.003236 , 0.000000 , 0.022651 }, { 0.169547 , 0.003607 , 0.014430 , 0.404027 , 0.735906 , 0.000000 , 0.000000 , 0.515856 , 0.000000 , 0.000361 , 0.003607 , 0.000000 , 0.010822 }, { 0.185688 , 0.000000 , 0.008570 , 0.442795 , 0.768463 , 0.000000 , 0.000000 , 0.422797 , 0.000000 , 0.002285 , 0.002857 , 0.000000 , 0.008570 }, { 0.164679 , 0.002839 , 0.005679 , 0.340715 , 0.806359 , 0.000000 , 0.005679 , 0.454287 , 0.000000 , 0.005111 , 0.005679 , 0.000000 , 0.008518 }, { 0.178934 , 0.003376 , 0.013504 , 0.472656 , 0.685351 , 0.003376 , 0.006752 , 0.523298 , 0.003376 , 0.010466 , 0.010128 , 0.000000 , 0.023633 }, { 0.177276 , 0.003409 , 0.006818 , 0.456826 , 0.685238 , 0.000000 , 0.000000 , 0.538645 , 0.000000 , 0.002727 , 0.003409 , 0.003409 , 0.010227 }, { 0.175743 , 0.003138 , 0.012553 , 0.392283 , 0.781427 , 0.003138 , 0.006277 , 0.451910 , 0.003138 , 0.003766 , 0.006277 , 0.003138 , 0.009415 }, { 0.187254 , 0.000000 , 0.012081 , 0.453034 , 0.736935 , 0.000000 , 0.000000 , 0.465115 , 0.003020 , 0.004228 , 0.006040 , 0.000000 , 0.009061 }, { 0.163410 , 0.000000 , 0.010657 , 0.504438 , 0.628772 , 0.000000 , 0.007105 , 0.568381 , 0.003552 , 0.004973 , 0.010657 , 0.000000 , 0.010657 }, { 0.219854 , 0.000000 , 0.009290 , 0.340619 , 0.820583 , 0.003097 , 0.006193 , 0.402550 , 0.000000 , 0.000000 , 0.003097 , 0.003097 , 0.009290 }, { 0.145814 , 0.003102 , 0.012410 , 0.341268 , 0.853170 , 0.000000 , 0.006205 , 0.366087 , 0.003102 , 0.003102 , 0.006205 , 0.003102 , 0.009307 }, { 0.165445 , 0.003064 , 0.009191 , 0.459570 , 0.710802 , 0.000000 , 0.006128 , 0.505528 , 0.000000 , 0.004902 , 0.003064 , 0.000000 , 0.021447 }, { 0.210017 , 0.004286 , 0.012858 , 0.505755 , 0.638623 , 0.000000 , 0.008572 , 0.540044 , 0.000000 , 0.003429 , 0.004286 , 0.012858 , 0.012858 }, { 0.226332 , 0.000000 , 0.006117 , 0.367026 , 0.822749 , 0.000000 , 0.006117 , 0.370084 , 0.003059 , 0.000612 , 0.003059 , 0.003059 , 0.009176 }, { 0.141532 , 0.000000 , 0.009650 , 0.379564 , 0.778429 , 0.000000 , 0.000000 , 0.479280 , 0.000000 , 0.000965 , 0.006433 , 0.003217 , 0.009650 }, { 0.210025 , 0.000000 , 0.014484 , 0.470745 , 0.713359 , 0.000000 , 0.000000 , 0.474366 , 0.000000 , 0.002173 , 0.007242 , 0.000000 , 0.010863 }, { 0.197838 , 0.002909 , 0.008728 , 0.343308 , 0.805900 , 0.000000 , 0.000000 , 0.439317 , 0.000000 , 0.002909 , 0.002909 , 0.002909 , 0.020366 }, { 0.165755 , 0.000000 , 0.012510 , 0.431589 , 0.731826 , 0.000000 , 0.006255 , 0.500394 , 0.000000 , 0.000000 , 0.003127 , 0.000000 , 0.009382 }, { 0.128516 , 0.000000 , 0.009886 , 0.454748 , 0.724960 , 0.000000 , 0.000000 , 0.500882 , 0.000000 , 0.000000 , 0.006591 , 0.000000 , 0.009886 }, { 0.184902 , 0.000000 , 0.008218 , 0.460201 , 0.657429 , 0.000000 , 0.000000 , 0.567033 , 0.000000 , 0.000000 , 0.008218 , 0.000000 , 0.012327 }, { 0.200533 , 0.003457 , 0.013830 , 0.442555 , 0.746811 , 0.000000 , 0.006915 , 0.452927 , 0.003457 , 0.007606 , 0.006915 , 0.010372 , 0.024202 }, { 0.165944 , 0.003191 , 0.009574 , 0.548890 , 0.635053 , 0.003191 , 0.000000 , 0.516978 , 0.000000 , 0.001596 , 0.003191 , 0.000000 , 0.022339 }, { 0.189094 , 0.003100 , 0.009300 , 0.464985 , 0.753276 , 0.003100 , 0.000000 , 0.424686 , 0.003100 , 0.003100 , 0.006200 , 0.000000 , 0.009300 }, { 0.173161 , 0.003395 , 0.010186 , 0.319160 , 0.770737 , 0.000000 , 0.000000 , 0.522879 , 0.003395 , 0.000000 , 0.003395 , 0.003395 , 0.023767 }, { 0.174514 , 0.003062 , 0.006123 , 0.379643 , 0.799088 , 0.000000 , 0.000000 , 0.431691 , 0.000000 , 0.000918 , 0.003062 , 0.000000 , 0.021431 }, { 0.184489 , 0.000000 , 0.005197 , 0.415750 , 0.784728 , 0.000000 , 0.000000 , 0.420947 , 0.000000 , 0.001039 , 0.002598 , 0.005197 , 0.007795 }, { 0.118723 , 0.000000 , 0.013568 , 0.468106 , 0.620749 , 0.000000 , 0.000000 , 0.617357 , 0.000000 , 0.004749 , 0.003392 , 0.000000 , 0.010176 }, { 0.125797 , 0.002995 , 0.008986 , 0.359421 , 0.718841 , 0.002995 , 0.000000 , 0.581063 , 0.000000 , 0.002396 , 0.008986 , 0.000000 , 0.020966 }, { 0.178171 , 0.002741 , 0.002741 , 0.378271 , 0.772989 , 0.002741 , 0.005482 , 0.476951 , 0.000000 , 0.003838 , 0.005482 , 0.002741 , 0.008223 }, { 0.173053 , 0.000000 , 0.011732 , 0.510360 , 0.730343 , 0.000000 , 0.000000 , 0.419434 , 0.002933 , 0.000000 , 0.005866 , 0.000000 , 0.008799 }, { 0.207626 , 0.003146 , 0.012583 , 0.503336 , 0.717253 , 0.000000 , 0.006292 , 0.434127 , 0.000000 , 0.007235 , 0.003146 , 0.000000 , 0.018875 }, { 0.187672 , 0.003181 , 0.006362 , 0.445323 , 0.702974 , 0.000000 , 0.000000 , 0.521664 , 0.003181 , 0.000000 , 0.003181 , 0.000000 , 0.009543 }, { 0.142568 , 0.002970 , 0.008910 , 0.368300 , 0.757390 , 0.002970 , 0.000000 , 0.519778 , 0.000000 , 0.000000 , 0.002970 , 0.005940 , 0.008910 }, { 0.144279 , 0.002829 , 0.011316 , 0.396059 , 0.738367 , 0.000000 , 0.005658 , 0.526193 , 0.002829 , 0.000000 , 0.002829 , 0.000000 , 0.008487 }, { 0.146257 , 0.003567 , 0.007134 , 0.481578 , 0.724151 , 0.000000 , 0.000000 , 0.470876 , 0.000000 , 0.000000 , 0.007134 , 0.000000 , 0.021403 }, { 0.185282 , 0.003251 , 0.009752 , 0.416071 , 0.744377 , 0.000000 , 0.006501 , 0.487583 , 0.000000 , 0.001300 , 0.006501 , 0.003251 , 0.022754 }, { 0.168427 , 0.002955 , 0.011819 , 0.443228 , 0.815539 , 0.000000 , 0.005910 , 0.330944 , 0.002955 , 0.001773 , 0.005910 , 0.002955 , 0.017729 }, { 0.245377 , 0.000000 , 0.010825 , 0.433018 , 0.761389 , 0.000000 , 0.007217 , 0.414975 , 0.000000 , 0.005413 , 0.007217 , 0.000000 , 0.010825 }, { 0.156767 , 0.003824 , 0.015294 , 0.420596 , 0.657658 , 0.000000 , 0.007647 , 0.604128 , 0.000000 , 0.000000 , 0.003824 , 0.000000 , 0.026765 }, { 0.134711 , 0.003286 , 0.009857 , 0.427133 , 0.703126 , 0.000000 , 0.006571 , 0.551987 , 0.000000 , 0.006571 , 0.006571 , 0.000000 , 0.009857 }, { 0.210189 , 0.003503 , 0.010509 , 0.490441 , 0.648082 , 0.000000 , 0.007006 , 0.542988 , 0.000000 , 0.010509 , 0.007006 , 0.000000 , 0.010509 }, { 0.147269 , 0.002727 , 0.005454 , 0.294537 , 0.842704 , 0.000000 , 0.000000 , 0.425443 , 0.000000 , 0.000000 , 0.002727 , 0.000000 , 0.019090 }, { 0.162805 , 0.000000 , 0.010676 , 0.386996 , 0.819363 , 0.000000 , 0.005338 , 0.389665 , 0.002669 , 0.002669 , 0.005338 , 0.000000 , 0.018683 }, { 0.123900 , 0.002950 , 0.002950 , 0.436602 , 0.719803 , 0.000000 , 0.005900 , 0.525102 , 0.000000 , 0.002360 , 0.002950 , 0.005900 , 0.008850 }, { 0.218843 , 0.000000 , 0.003316 , 0.497372 , 0.749373 , 0.000000 , 0.000000 , 0.378002 , 0.000000 , 0.008621 , 0.009947 , 0.000000 , 0.009947 }, { 0.227509 , 0.000000 , 0.014445 , 0.447796 , 0.711419 , 0.000000 , 0.000000 , 0.491132 , 0.003611 , 0.000000 , 0.007223 , 0.000000 , 0.010834 }, { 0.135407 , 0.000000 , 0.004924 , 0.324977 , 0.841986 , 0.000000 , 0.000000 , 0.408683 , 0.000000 , 0.002954 , 0.002462 , 0.000000 , 0.007386 }, { 0.160088 , 0.000000 , 0.008894 , 0.320176 , 0.791546 , 0.000000 , 0.005929 , 0.495087 , 0.000000 , 0.000000 , 0.002965 , 0.000000 , 0.008894 }, { 0.161071 , 0.003579 , 0.014317 , 0.372253 , 0.744507 , 0.000000 , 0.007159 , 0.529745 , 0.003579 , 0.010738 , 0.007159 , 0.000000 , 0.010738 }, { 0.158381 , 0.000000 , 0.006886 , 0.361521 , 0.702384 , 0.000000 , 0.000000 , 0.592206 , 0.000000 , 0.000000 , 0.003443 , 0.000000 , 0.010329 }, { 0.202675 , 0.003118 , 0.012472 , 0.342988 , 0.773283 , 0.000000 , 0.006236 , 0.492656 , 0.000000 , 0.001871 , 0.003118 , 0.006236 , 0.018708 }, { 0.150590 , 0.000000 , 0.005577 , 0.368110 , 0.803148 , 0.002789 , 0.005577 , 0.443405 , 0.002789 , 0.000000 , 0.002789 , 0.002789 , 0.008366 }, { 0.154136 , 0.000000 , 0.010817 , 0.346131 , 0.819356 , 0.000000 , 0.005408 , 0.429959 , 0.000000 , 0.000000 , 0.002704 , 0.002704 , 0.008112 }, { 0.185531 , 0.000000 , 0.008835 , 0.397566 , 0.742124 , 0.000000 , 0.005890 , 0.506529 , 0.000000 , 0.000000 , 0.002945 , 0.000000 , 0.008835 }, { 0.155959 , 0.002689 , 0.010756 , 0.336117 , 0.806682 , 0.000000 , 0.005378 , 0.459809 , 0.000000 , 0.000000 , 0.002689 , 0.005378 , 0.018823 }, { 0.188440 , 0.003249 , 0.009747 , 0.454855 , 0.685531 , 0.003249 , 0.006498 , 0.536079 , 0.000000 , 0.000000 , 0.003249 , 0.000000 , 0.009747 }, { 0.179077 , 0.000000 , 0.011192 , 0.363751 , 0.847819 , 0.000000 , 0.000000 , 0.341366 , 0.000000 , 0.005596 , 0.005596 , 0.005596 , 0.008394 }, { 0.142372 , 0.000000 , 0.012655 , 0.436606 , 0.746660 , 0.000000 , 0.006328 , 0.480899 , 0.003164 , 0.000633 , 0.006328 , 0.000000 , 0.009491 }, { 0.091624 , 0.003159 , 0.006319 , 0.410727 , 0.644525 , 0.000000 , 0.006319 , 0.638206 , 0.000000 , 0.000000 , 0.003159 , 0.000000 , 0.009478 }, { 0.197421 , 0.003346 , 0.003346 , 0.448380 , 0.682608 , 0.000000 , 0.000000 , 0.542071 , 0.000000 , 0.002677 , 0.003346 , 0.006692 , 0.010038 }, { 0.225784 , 0.003370 , 0.013480 , 0.404390 , 0.771710 , 0.000000 , 0.006740 , 0.434719 , 0.003370 , 0.008762 , 0.006740 , 0.006740 , 0.023589 }, { 0.150853 , 0.003679 , 0.007359 , 0.441520 , 0.577655 , 0.000000 , 0.000000 , 0.669638 , 0.000000 , 0.000000 , 0.003679 , 0.000000 , 0.011038 }, { 0.196653 , 0.003512 , 0.003512 , 0.421399 , 0.677750 , 0.000000 , 0.007023 , 0.568888 , 0.000000 , 0.006672 , 0.007023 , 0.000000 , 0.024582 }, { 0.156713 , 0.003014 , 0.012055 , 0.385754 , 0.768494 , 0.000000 , 0.000000 , 0.485206 , 0.003014 , 0.000000 , 0.003014 , 0.003014 , 0.021096 }, { 0.100604 , 0.002874 , 0.011498 , 0.362175 , 0.810582 , 0.000000 , 0.005749 , 0.448407 , 0.002874 , 0.000000 , 0.002874 , 0.000000 , 0.020121 }, { 0.177711 , 0.003485 , 0.010454 , 0.348452 , 0.773564 , 0.000000 , 0.000000 , 0.498287 , 0.003485 , 0.004181 , 0.006969 , 0.000000 , 0.010454 }, { 0.115056 , 0.002676 , 0.010703 , 0.307707 , 0.810742 , 0.000000 , 0.000000 , 0.484305 , 0.000000 , 0.003211 , 0.005351 , 0.000000 , 0.008027 }, { 0.113220 , 0.002633 , 0.007899 , 0.342292 , 0.829399 , 0.000000 , 0.000000 , 0.426548 , 0.000000 , 0.005003 , 0.002633 , 0.002633 , 0.007899 }, { 0.184503 , 0.003075 , 0.012300 , 0.384381 , 0.793362 , 0.000000 , 0.006150 , 0.433582 , 0.003075 , 0.008610 , 0.006150 , 0.003075 , 0.021525 }, { 0.166437 , 0.003082 , 0.012329 , 0.431504 , 0.736639 , 0.000000 , 0.000000 , 0.493148 , 0.000000 , 0.003699 , 0.003082 , 0.000000 , 0.009247 }, { 0.207248 , 0.000000 , 0.013371 , 0.414496 , 0.698626 , 0.000000 , 0.000000 , 0.544861 , 0.000000 , 0.000000 , 0.003343 , 0.000000 , 0.010028 }, { 0.110458 , 0.000000 , 0.005388 , 0.339456 , 0.824394 , 0.000000 , 0.000000 , 0.439138 , 0.000000 , 0.000000 , 0.002694 , 0.000000 , 0.008082 }, { 0.247184 , 0.000000 , 0.012359 , 0.494367 , 0.733312 , 0.004120 , 0.000000 , 0.395494 , 0.000000 , 0.000000 , 0.004120 , 0.000000 , 0.012359 }, { 0.200631 , 0.003236 , 0.009708 , 0.420678 , 0.747513 , 0.000000 , 0.000000 , 0.472454 , 0.000000 , 0.005825 , 0.006472 , 0.009708 , 0.022652 }, { 0.141416 , 0.000000 , 0.005772 , 0.386730 , 0.782117 , 0.000000 , 0.000000 , 0.467539 , 0.000000 , 0.000000 , 0.005772 , 0.000000 , 0.008658 }, { 0.124308 , 0.003032 , 0.009096 , 0.339572 , 0.757973 , 0.000000 , 0.000000 , 0.542708 , 0.000000 , 0.000000 , 0.003032 , 0.000000 , 0.009096 }, { 0.138424 , 0.000000 , 0.009714 , 0.291419 , 0.859686 , 0.000000 , 0.000000 , 0.395844 , 0.002428 , 0.001457 , 0.002428 , 0.000000 , 0.007285 }, { 0.137661 , 0.003129 , 0.006257 , 0.406727 , 0.685178 , 0.000000 , 0.006257 , 0.588190 , 0.000000 , 0.000000 , 0.003129 , 0.000000 , 0.009386 }, { 0.172453 , 0.003025 , 0.012102 , 0.459875 , 0.828985 , 0.000000 , 0.000000 , 0.266244 , 0.003025 , 0.003631 , 0.006051 , 0.003025 , 0.021178 }, { 0.137485 , 0.000000 , 0.008870 , 0.310450 , 0.873695 , 0.000000 , 0.004435 , 0.348147 , 0.000000 , 0.002661 , 0.004435 , 0.000000 , 0.006652 }, { 0.141385 , 0.003142 , 0.003142 , 0.345609 , 0.829461 , 0.000000 , 0.000000 , 0.414731 , 0.000000 , 0.003770 , 0.006284 , 0.000000 , 0.021993 }, { 0.135530 , 0.002657 , 0.010630 , 0.372044 , 0.794579 , 0.000000 , 0.000000 , 0.459740 , 0.002657 , 0.004252 , 0.002657 , 0.000000 , 0.018602 }, { 0.135926 , 0.002614 , 0.002614 , 0.397322 , 0.778959 , 0.002614 , 0.000000 , 0.465284 , 0.000000 , 0.003137 , 0.005228 , 0.000000 , 0.018298 }, { 0.178527 , 0.000000 , 0.002975 , 0.446316 , 0.714106 , 0.000000 , 0.000000 , 0.508801 , 0.000000 , 0.002678 , 0.002975 , 0.000000 , 0.008926 }, { 0.166208 , 0.003078 , 0.009234 , 0.369351 , 0.794105 , 0.000000 , 0.006156 , 0.452455 , 0.000000 , 0.001231 , 0.006156 , 0.000000 , 0.021545 }, { 0.143651 , 0.002993 , 0.005985 , 0.389056 , 0.733221 , 0.000000 , 0.005985 , 0.538693 , 0.000000 , 0.000599 , 0.005985 , 0.000000 , 0.008978 }, { 0.173004 , 0.003327 , 0.013308 , 0.359316 , 0.775191 , 0.003327 , 0.000000 , 0.489069 , 0.000000 , 0.000333 , 0.003327 , 0.009981 , 0.023289 }, { 0.164160 , 0.002782 , 0.002782 , 0.495264 , 0.751243 , 0.000000 , 0.005565 , 0.403445 , 0.000000 , 0.011686 , 0.008347 , 0.000000 , 0.019477 }, { 0.172367 , 0.003447 , 0.010342 , 0.444706 , 0.675677 , 0.000000 , 0.000000 , 0.561915 , 0.000000 , 0.000000 , 0.003447 , 0.000000 , 0.010342 }, { 0.169808 , 0.003266 , 0.013062 , 0.365740 , 0.751073 , 0.000000 , 0.000000 , 0.522485 , 0.000000 , 0.000000 , 0.003266 , 0.003266 , 0.009797 }, { 0.121354 , 0.003569 , 0.003569 , 0.421171 , 0.649602 , 0.000000 , 0.007138 , 0.621048 , 0.000000 , 0.000000 , 0.003569 , 0.000000 , 0.010708 }, { 0.133159 , 0.003026 , 0.009079 , 0.423688 , 0.711191 , 0.000000 , 0.006053 , 0.544742 , 0.000000 , 0.000000 , 0.003026 , 0.000000 , 0.009079 }, { 0.183081 , 0.000000 , 0.008198 , 0.415347 , 0.756915 , 0.000000 , 0.000000 , 0.469998 , 0.000000 , 0.000000 , 0.002733 , 0.002733 , 0.008198 }, { 0.134858 , 0.003289 , 0.006578 , 0.361815 , 0.772968 , 0.000000 , 0.000000 , 0.503251 , 0.000000 , 0.000000 , 0.003289 , 0.000000 , 0.009868 }, { 0.159930 , 0.000000 , 0.007997 , 0.271881 , 0.847629 , 0.000000 , 0.000000 , 0.426480 , 0.000000 , 0.000000 , 0.002666 , 0.002666 , 0.007997 }, { 0.111438 , 0.000000 , 0.004990 , 0.191274 , 0.938076 , 0.000000 , 0.003327 , 0.266121 , 0.000000 , 0.002661 , 0.003327 , 0.000000 , 0.011643 }, { 0.156025 , 0.000000 , 0.006241 , 0.374461 , 0.761403 , 0.000000 , 0.000000 , 0.505522 , 0.000000 , 0.003433 , 0.003121 , 0.000000 , 0.009362 }, { 0.158408 , 0.002933 , 0.008800 , 0.366685 , 0.800841 , 0.000000 , 0.005867 , 0.445889 , 0.000000 , 0.001467 , 0.008800 , 0.002933 , 0.008800 }, { 0.131499 , 0.002922 , 0.011689 , 0.336053 , 0.759773 , 0.000000 , 0.005844 , 0.540608 , 0.000000 , 0.000000 , 0.002922 , 0.000000 , 0.008767 }, { 0.166806 , 0.000000 , 0.010008 , 0.400335 , 0.730611 , 0.000000 , 0.000000 , 0.527107 , 0.000000 , 0.005338 , 0.006672 , 0.000000 , 0.010008 }, { 0.142489 , 0.000000 , 0.011632 , 0.378033 , 0.782238 , 0.000000 , 0.000000 , 0.473995 , 0.000000 , 0.000000 , 0.002908 , 0.000000 , 0.008724 }, { 0.173751 , 0.000000 , 0.011847 , 0.426480 , 0.556793 , 0.000000 , 0.000000 , 0.691056 , 0.000000 , 0.002369 , 0.007898 , 0.000000 , 0.011847 }, { 0.215731 , 0.003127 , 0.003127 , 0.500247 , 0.731611 , 0.003127 , 0.006253 , 0.409577 , 0.000000 , 0.000313 , 0.006253 , 0.003127 , 0.009380 }, { 0.224215 , 0.003503 , 0.003503 , 0.385369 , 0.739209 , 0.000000 , 0.007007 , 0.504484 , 0.003503 , 0.006306 , 0.007007 , 0.000000 , 0.010510 }, { 0.143090 , 0.000000 , 0.012443 , 0.429270 , 0.755888 , 0.000000 , 0.006221 , 0.472819 , 0.003111 , 0.000000 , 0.006221 , 0.000000 , 0.009332 }, { 0.157146 , 0.000000 , 0.009822 , 0.441974 , 0.798008 , 0.000000 , 0.000000 , 0.378133 , 0.002455 , 0.000000 , 0.002455 , 0.000000 , 0.007366 }, { 0.218796 , 0.003907 , 0.015628 , 0.515734 , 0.718901 , 0.000000 , 0.007814 , 0.410243 , 0.003907 , 0.008205 , 0.007814 , 0.003907 , 0.023442 }, { 0.098330 , 0.002521 , 0.007564 , 0.352980 , 0.809332 , 0.000000 , 0.005043 , 0.458874 , 0.000000 , 0.000000 , 0.002521 , 0.000000 , 0.007564 }, { 0.217257 , 0.003243 , 0.009728 , 0.492882 , 0.687440 , 0.000000 , 0.006485 , 0.486396 , 0.000000 , 0.002594 , 0.006485 , 0.000000 , 0.022699 }, { 0.175868 , 0.002748 , 0.008244 , 0.343492 , 0.849112 , 0.000000 , 0.000000 , 0.359979 , 0.002748 , 0.004946 , 0.005496 , 0.000000 , 0.019236 }, { 0.135872 , 0.002516 , 0.005032 , 0.483099 , 0.712067 , 0.000000 , 0.005032 , 0.490647 , 0.000000 , 0.000000 , 0.002516 , 0.002516 , 0.017613 }, { 0.205864 , 0.000000 , 0.006535 , 0.457475 , 0.637197 , 0.000000 , 0.000000 , 0.584914 , 0.000000 , 0.000000 , 0.003268 , 0.006535 , 0.009803 }, { 0.145741 , 0.003168 , 0.009505 , 0.475241 , 0.731871 , 0.000000 , 0.000000 , 0.465736 , 0.000000 , 0.011406 , 0.006337 , 0.000000 , 0.009505 }, { 0.153408 , 0.000000 , 0.010060 , 0.326935 , 0.829911 , 0.000000 , 0.005030 , 0.425015 , 0.000000 , 0.000000 , 0.002515 , 0.000000 , 0.007545 }, { 0.159665 , 0.003013 , 0.009038 , 0.391630 , 0.741085 , 0.003013 , 0.006025 , 0.521169 , 0.000000 , 0.000000 , 0.003013 , 0.009038 , 0.009038 }, { 0.138488 , 0.002947 , 0.008840 , 0.383051 , 0.745476 , 0.000000 , 0.000000 , 0.527432 , 0.000000 , 0.000000 , 0.002947 , 0.000000 , 0.008840 }, { 0.157311 , 0.002666 , 0.002666 , 0.453269 , 0.767891 , 0.000000 , 0.005333 , 0.423940 , 0.000000 , 0.000533 , 0.005333 , 0.000000 , 0.018664 }, { 0.183843 , 0.000000 , 0.012901 , 0.451545 , 0.777302 , 0.000000 , 0.000000 , 0.396714 , 0.003225 , 0.000645 , 0.006451 , 0.000000 , 0.022577 }, { 0.150962 , 0.003145 , 0.012580 , 0.383695 , 0.698200 , 0.000000 , 0.006290 , 0.584978 , 0.000000 , 0.000000 , 0.003145 , 0.000000 , 0.009435 }, { 0.151629 , 0.003446 , 0.013784 , 0.379072 , 0.678883 , 0.000000 , 0.006892 , 0.609961 , 0.000000 , 0.000000 , 0.003446 , 0.003446 , 0.010338 }, { 0.155624 , 0.003242 , 0.006484 , 0.356638 , 0.742455 , 0.000000 , 0.000000 , 0.544683 , 0.000000 , 0.003242 , 0.009726 , 0.000000 , 0.022695 }, { 0.188114 , 0.003300 , 0.013201 , 0.435632 , 0.683150 , 0.000000 , 0.000000 , 0.554440 , 0.003300 , 0.000000 , 0.003300 , 0.000000 , 0.023102 }, { 0.145958 , 0.003173 , 0.012692 , 0.380761 , 0.790080 , 0.000000 , 0.006346 , 0.456914 , 0.000000 , 0.002538 , 0.003173 , 0.000000 , 0.022211 }, { 0.156763 , 0.003074 , 0.009221 , 0.384223 , 0.753077 , 0.003074 , 0.006148 , 0.510248 , 0.000000 , 0.007377 , 0.006148 , 0.000000 , 0.009221 }, { 0.166062 , 0.000000 , 0.006039 , 0.407608 , 0.754829 , 0.000000 , 0.006039 , 0.486110 , 0.000000 , 0.004227 , 0.006039 , 0.000000 , 0.009058 }, { 0.181114 , 0.002744 , 0.010977 , 0.329299 , 0.828735 , 0.000000 , 0.005488 , 0.414368 , 0.000000 , 0.001098 , 0.005488 , 0.000000 , 0.008232 }, { 0.184352 , 0.000000 , 0.010242 , 0.375533 , 0.730582 , 0.000000 , 0.000000 , 0.539401 , 0.000000 , 0.005462 , 0.006828 , 0.000000 , 0.010242 }, { 0.127006 , 0.002954 , 0.011814 , 0.443043 , 0.729543 , 0.000000 , 0.000000 , 0.505068 , 0.000000 , 0.004430 , 0.002954 , 0.000000 , 0.008861 }, { 0.196352 , 0.003445 , 0.010334 , 0.516715 , 0.578720 , 0.000000 , 0.000000 , 0.599389 , 0.000000 , 0.005512 , 0.003445 , 0.000000 , 0.010334 }, { 0.119337 , 0.002652 , 0.005304 , 0.339447 , 0.816795 , 0.000000 , 0.005304 , 0.450828 , 0.000000 , 0.000000 , 0.002652 , 0.000000 , 0.007956 }, { 0.215060 , 0.003469 , 0.006937 , 0.443995 , 0.721492 , 0.003469 , 0.006937 , 0.485620 , 0.000000 , 0.000000 , 0.003469 , 0.000000 , 0.010406 }, { 0.185473 , 0.003499 , 0.010498 , 0.454934 , 0.689400 , 0.003499 , 0.006999 , 0.531923 , 0.000000 , 0.004199 , 0.010498 , 0.000000 , 0.010498 }, { 0.143779 , 0.003268 , 0.006535 , 0.392125 , 0.718897 , 0.000000 , 0.000000 , 0.555511 , 0.000000 , 0.000000 , 0.003268 , 0.000000 , 0.009803 }, { 0.228937 , 0.000000 , 0.013668 , 0.362199 , 0.761984 , 0.000000 , 0.000000 , 0.485210 , 0.000000 , 0.001025 , 0.003417 , 0.006834 , 0.010251 }, { 0.211318 , 0.003019 , 0.006038 , 0.470938 , 0.739614 , 0.000000 , 0.006038 , 0.431693 , 0.000000 , 0.000000 , 0.003019 , 0.000000 , 0.009057 }, { 0.184886 , 0.003081 , 0.012326 , 0.400586 , 0.779603 , 0.000000 , 0.000000 , 0.443727 , 0.003081 , 0.004314 , 0.003081 , 0.003081 , 0.021570 }, { 0.197415 , 0.003134 , 0.003134 , 0.454368 , 0.730123 , 0.003134 , 0.006267 , 0.470036 , 0.000000 , 0.007207 , 0.009401 , 0.000000 , 0.018801 }, { 0.153784 , 0.000000 , 0.005492 , 0.384459 , 0.807364 , 0.000000 , 0.005492 , 0.420159 , 0.000000 , 0.003570 , 0.005492 , 0.000000 , 0.008238 }, { 0.199449 , 0.003499 , 0.013996 , 0.489875 , 0.671829 , 0.000000 , 0.000000 , 0.517868 , 0.000000 , 0.001400 , 0.006998 , 0.000000 , 0.020995 }, { 0.121294 , 0.003466 , 0.006931 , 0.422796 , 0.665384 , 0.000000 , 0.000000 , 0.603005 , 0.000000 , 0.000000 , 0.003466 , 0.000000 , 0.010397 }, { 0.120559 , 0.000000 , 0.008821 , 0.329331 , 0.788041 , 0.000000 , 0.005881 , 0.505758 , 0.002940 , 0.000000 , 0.002940 , 0.000000 , 0.008821 }, { 0.143061 , 0.000000 , 0.007948 , 0.357653 , 0.805381 , 0.002649 , 0.000000 , 0.450377 , 0.000000 , 0.000000 , 0.002649 , 0.000000 , 0.007948 }, { 0.144822 , 0.000000 , 0.007064 , 0.370886 , 0.699385 , 0.000000 , 0.000000 , 0.593417 , 0.000000 , 0.000000 , 0.003532 , 0.003532 , 0.010597 }, { 0.109701 , 0.000000 , 0.006453 , 0.380727 , 0.677566 , 0.000000 , 0.000000 , 0.619489 , 0.000000 , 0.002259 , 0.003227 , 0.000000 , 0.009680 }, { 0.141857 , 0.002895 , 0.005790 , 0.376356 , 0.770082 , 0.000000 , 0.000000 , 0.495053 , 0.000000 , 0.001737 , 0.002895 , 0.000000 , 0.008685 }, { 0.159510 , 0.000000 , 0.002750 , 0.412527 , 0.778301 , 0.002750 , 0.005500 , 0.445529 , 0.000000 , 0.002750 , 0.002750 , 0.000000 , 0.008251 }, { 0.185870 , 0.000000 , 0.008449 , 0.411166 , 0.782906 , 0.000000 , 0.005632 , 0.428064 , 0.000000 , 0.000000 , 0.005632 , 0.002816 , 0.008449 }, { 0.184327 , 0.003124 , 0.012497 , 0.421765 , 0.731060 , 0.000000 , 0.000000 , 0.502994 , 0.000000 , 0.001562 , 0.006248 , 0.000000 , 0.021869 }, { 0.172876 , 0.003087 , 0.006174 , 0.370449 , 0.728549 , 0.000000 , 0.000000 , 0.549499 , 0.000000 , 0.002470 , 0.003087 , 0.000000 , 0.009261 }, { 0.194199 , 0.003034 , 0.003034 , 0.515840 , 0.688799 , 0.000000 , 0.006069 , 0.470325 , 0.000000 , 0.001821 , 0.006069 , 0.000000 , 0.021240 }, { 0.207387 , 0.004066 , 0.012199 , 0.447305 , 0.711621 , 0.000000 , 0.000000 , 0.500168 , 0.000000 , 0.002440 , 0.004066 , 0.000000 , 0.012199 }, { 0.135666 , 0.003083 , 0.009250 , 0.400832 , 0.718414 , 0.000000 , 0.000000 , 0.551914 , 0.003083 , 0.001233 , 0.003083 , 0.000000 , 0.009250 }, { 0.212995 , 0.003737 , 0.011210 , 0.560514 , 0.470831 , 0.003737 , 0.000000 , 0.646459 , 0.000000 , 0.000747 , 0.003737 , 0.003737 , 0.026157 }, { 0.134639 , 0.000000 , 0.012823 , 0.326980 , 0.849506 , 0.000000 , 0.006411 , 0.391093 , 0.000000 , 0.001923 , 0.006411 , 0.000000 , 0.009617 }, { 0.201635 , 0.003151 , 0.012602 , 0.403270 , 0.828594 , 0.000000 , 0.000000 , 0.330807 , 0.003151 , 0.000630 , 0.006301 , 0.003151 , 0.022054 }, { 0.184504 , 0.000000 , 0.011715 , 0.316293 , 0.787803 , 0.000000 , 0.000000 , 0.494939 , 0.002929 , 0.005272 , 0.005857 , 0.005857 , 0.008786 }, { 0.193564 , 0.000000 , 0.013349 , 0.333730 , 0.827651 , 0.000000 , 0.006675 , 0.407151 , 0.000000 , 0.003337 , 0.006675 , 0.000000 , 0.010012 }, { 0.181175 , 0.003552 , 0.003552 , 0.444056 , 0.756672 , 0.000000 , 0.007105 , 0.444056 , 0.003552 , 0.004973 , 0.003552 , 0.003552 , 0.010657 }, { 0.116735 , 0.002779 , 0.005559 , 0.333529 , 0.819925 , 0.000000 , 0.000000 , 0.450264 , 0.000000 , 0.000000 , 0.002779 , 0.000000 , 0.008338 }, { 0.174734 , 0.000000 , 0.009707 , 0.517732 , 0.650400 , 0.000000 , 0.000000 , 0.527439 , 0.000000 , 0.000000 , 0.003236 , 0.003236 , 0.009707 }, { 0.147961 , 0.003441 , 0.013764 , 0.378506 , 0.726043 , 0.000000 , 0.000000 , 0.553995 , 0.000000 , 0.000000 , 0.003441 , 0.000000 , 0.024087 }, { 0.152258 , 0.000000 , 0.007027 , 0.374789 , 0.843275 , 0.000000 , 0.004685 , 0.353707 , 0.000000 , 0.001874 , 0.002342 , 0.000000 , 0.007027 }, { 0.170852 , 0.002896 , 0.002896 , 0.463328 , 0.790554 , 0.000000 , 0.005792 , 0.361975 , 0.000000 , 0.000000 , 0.002896 , 0.000000 , 0.008687 }, { 0.140159 , 0.000000 , 0.010011 , 0.400454 , 0.697458 , 0.000000 , 0.000000 , 0.577321 , 0.000000 , 0.000000 , 0.006674 , 0.000000 , 0.010011 }, { 0.151656 , 0.003227 , 0.009680 , 0.348485 , 0.784091 , 0.000000 , 0.000000 , 0.490460 , 0.000000 , 0.000000 , 0.003227 , 0.000000 , 0.009680 }, { 0.167391 , 0.003639 , 0.007278 , 0.367533 , 0.716871 , 0.003639 , 0.000000 , 0.567674 , 0.000000 , 0.000000 , 0.003639 , 0.000000 , 0.025473 }, { 0.180266 , 0.003401 , 0.013605 , 0.482976 , 0.768681 , 0.000000 , 0.006802 , 0.377538 , 0.003401 , 0.000000 , 0.003401 , 0.000000 , 0.023809 }, { 0.174956 , 0.000000 , 0.006139 , 0.399023 , 0.724380 , 0.000000 , 0.006139 , 0.534077 , 0.000000 , 0.000000 , 0.006139 , 0.003069 , 0.009208 }, { 0.142015 , 0.003228 , 0.009683 , 0.387312 , 0.729438 , 0.000000 , 0.000000 , 0.545465 , 0.000000 , 0.000000 , 0.003228 , 0.000000 , 0.009683 }, { 0.139320 , 0.000000 , 0.006192 , 0.402480 , 0.724464 , 0.000000 , 0.006192 , 0.541800 , 0.000000 , 0.001858 , 0.006192 , 0.000000 , 0.009288 }, { 0.154726 , 0.000000 , 0.012378 , 0.340397 , 0.786009 , 0.000000 , 0.006189 , 0.492029 , 0.000000 , 0.000000 , 0.003095 , 0.000000 , 0.009284 }, { 0.163899 , 0.002980 , 0.005960 , 0.387397 , 0.780755 , 0.000000 , 0.000000 , 0.461897 , 0.000000 , 0.000000 , 0.002980 , 0.000000 , 0.008940 }, { 0.159883 , 0.000000 , 0.012067 , 0.392166 , 0.796399 , 0.000000 , 0.006033 , 0.431383 , 0.000000 , 0.001207 , 0.006033 , 0.000000 , 0.009050 }, { 0.272710 , 0.000000 , 0.010765 , 0.502360 , 0.706892 , 0.000000 , 0.003588 , 0.416241 , 0.000000 , 0.003947 , 0.007177 , 0.000000 , 0.010765 }, { 0.133233 , 0.002562 , 0.005124 , 0.307462 , 0.832709 , 0.000000 , 0.000000 , 0.440695 , 0.000000 , 0.000512 , 0.002562 , 0.000000 , 0.007687 }, { 0.140652 , 0.002993 , 0.008978 , 0.412977 , 0.769096 , 0.000000 , 0.005985 , 0.466844 , 0.000000 , 0.000000 , 0.002993 , 0.000000 , 0.008978 }, { 0.143855 , 0.000000 , 0.010036 , 0.408145 , 0.712582 , 0.000000 , 0.000000 , 0.552000 , 0.000000 , 0.000669 , 0.006691 , 0.000000 , 0.010036 }, { 0.142162 , 0.000000 , 0.008362 , 0.334499 , 0.822310 , 0.000000 , 0.005575 , 0.437636 , 0.000000 , 0.001672 , 0.002787 , 0.000000 , 0.008362 }, }; int y[DATASET_SIZE] = { -1 , 1 , 1 , -1 , -1 , -1 , -1 , 1 , -1 , 1 , 1 , 1 , -1 , -1 , -1 , -1 , -1 , -1 , 1 , -1 , -1 , 1 , -1 , -1 , -1 , 1 , -1 , -1 , -1 , -1 , -1 , 1 , -1 , -1 , -1 , 1 , -1 , -1 , -1 , 1 , 1 , -1 , 1 , 1 , -1 , -1 , 1 , -1 , 1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , 1 , -1 , -1 , -1 , 1 , -1 , -1 , -1 , 1 , 1 , -1 , -1 , -1 , -1 , -1 , 1 , 1 , -1 , 1 , -1 , 1 , -1 , 1 , -1 , -1 , 1 , -1 , -1 , -1 , -1 , 1 , -1 , -1 , -1 , 1 , -1 , -1 , -1 , -1 , 1 , 1 , -1 , -1 , 1 , 1 , -1 , -1 , -1 , 1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , 1 , -1 , 1 , 1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , 1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , 1 , -1 , 1 , 1 , 1 , -1 , 1 , 1 , -1 , -1 , 1 , 1 , -1 , 1 , 1 , -1 , 1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , 1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , 1 , -1 , -1 , -1 , -1 , -1 , -1 , 1 , -1 , 1 , -1 , -1 , 1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 };
40,309
C++
.h
220
174.440909
1,469
0.493402
eloquentarduino/EloquentMicroML
34
11
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,721
EloquentCsvReader.h
eloquentarduino_EloquentMicroML/src/EloquentCsvReader.h
#pragma once #include "EloquentAbstractClassifier.h" namespace Eloquent { namespace ML { /** * * @tparam T * @tparam numFeatures */ template<typename T, uint16_t numFeatures> class CsvReader { public: CsvReader(const char separator = ',') : _separator(separator) { } /** * */ void begin(File& file) { _file = file; _file.seek(0); } /** * */ void close() { if (_file) _file.close(); } /** * Read the next line as array */ bool next(T features[numFeatures + 1], int *label) { if (!_file || !_file.available()) return false; for (int i = 0; i < numFeatures; i++) features[i] = (T) _file.readStringUntil(_separator).toFloat(); *label = _file.readStringUntil('\n').toFloat(); return true; } /** * Use the contents of the file as samples for a classifier * @param file * @param clf * @param repeat */ void fit(File& file, AbstractClassifier<numFeatures> *clf, uint8_t repeat = 1) { T features[numFeatures]; int label; for (uint8_t k = 0; k < repeat; k++) { begin(file); while ((next(features, &label))) clf->fitOne(features, label); close(); } } protected: const char _separator; File _file; }; } }
1,873
C++
.h
62
16.629032
92
0.403226
eloquentarduino/EloquentMicroML
34
11
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,722
EloquentSGD.h
eloquentarduino_EloquentMicroML/src/EloquentSGD.h
#pragma once #include "EloquentMLMath.h" #include "EloquentAbstractClassifier.h" namespace Eloquent { namespace ML { /** * Stochastic gradient descent */ template<unsigned int num_features> class SGD : public AbstractClassifier<num_features> { public: /** * * @param alpha */ SGD(float alpha = 0.001) : _alpha(alpha) { _params.normalizeAlpha = false; _params.momentum = 0; for (unsigned int i = 0; i < num_features + 1; i++) _weights[i] = _updates[i] = 0; } /** * * @param param * @param value */ void set(const char *param, float value) { this->setParam(param, "alpha", &_alpha, value); this->setParam(param, "momentum", &_params.momentum, value); this->setParam(param, "normalize", &_params.normalizeAlpha, value > 0); } /** * */ void normalizeLearningRate() { _params.normalizeAlpha = true; } /** * * @param momentum */ void momentum(float momentum) { _params.momentum = momentum; } /** * * @param x * @param y */ void fitOne(float x[num_features], int y) { int predicted = predict(x); int error = predicted - y; float alpha = _alpha; float updates[num_features + 1] = {0}; if (error == 0) return; if (_params.normalizeAlpha) alpha /= 1 + _alpha * dot<num_features>(x, x); // compute and apply updates _updates[0] = (_params.momentum * _updates[0]) - (alpha * error); _weights[0] += _updates[0]; for (unsigned int i = 0; i < num_features; i++) { float momentum = _params.momentum * _updates[i + 1]; float correction = alpha * x[i] * error; _updates[i + 1] = momentum - correction; _weights[i + 1] += _updates[i + 1]; } } /** * * @param x * @return */ int predict(float x[num_features]) { float xx[num_features + 1] = {1}; for (unsigned int i = 0; i < num_features; i++) xx[i + 1] = x[i]; return (1.0f / (1 + exp(-dot<num_features+1>(x, _weights)))) > 0.5 ? 1 : 0; } protected: float _alpha; float _weights[num_features + 1]; float _updates[num_features + 1]; struct { bool normalizeAlpha; float momentum; } _params; }; } }
3,116
C++
.h
91
20.164835
91
0.416417
eloquentarduino/EloquentMicroML
34
11
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,723
EloquentOneVsOne.h
eloquentarduino_EloquentMicroML/src/EloquentOneVsOne.h
#pragma once namespace Eloquent { namespace ML { template<class Classifier, int numFeatures, int numClasses> class OneVsOne : AbstractClassifier<numFeatures> { public: /** * * @param classifierGenerator */ OneVsOne() { for (int i = 0; i < numClassifiers(); i++) _classifiers[i] = new Classifier(); } /** * * @param x * @param y */ void fitOne(float x[numFeatures], int y) { int k = 0; for (int i = 0; i < numClasses - 1; i++) { for (int j = i + 1; j < numClasses; j++) { if (i == y || j == y) { _classifiers[k]->fitOne(x, y == i ? 1 : 0); } k++; } } } /** * Predict by votes * @param x * @return */ int predict(float x[numFeatures]) { int k = 0; int votes[numClasses] = {0}; for (int i = 0; i < numClasses - 1; i++) { for (int j = i + 1; j < numClasses; j++) { int y_pred = _classifiers[k]->predict(x); votes[y_pred > 0 ? i : j] += 1; k++; } } // pick class with most votes int maxVotes = -1; int classIdx = -1; for (int i = 0; i < numClasses; i++) { if (votes[i] > maxVotes) { maxVotes = votes[i]; classIdx = i; } } return classIdx; } /** * * @param param * @param value */ void set(const char *param, float value) { for (int i = 0; i < numClassifiers(); i++) _classifiers[i]->set(param, value); } protected: Classifier *_classifiers[numClasses * (numClasses - 1) / 2]; /** * * @return */ int numClassifiers() { return numClasses * (numClasses - 1) / 2; } }; } }
2,488
C++
.h
77
16.714286
72
0.342511
eloquentarduino/EloquentMicroML
34
11
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,724
EloquentAccuracyScorer.h
eloquentarduino_EloquentMicroML/src/EloquentAccuracyScorer.h
#pragma once namespace Eloquent { namespace ML { /** * Compute accuracy of predictions */ class AccuracyScorer { public: AccuracyScorer() : _tp(0), _tn(0), _fp(0), _fn(0) { } /** * * @param actual * @param predicted */ void scoreOne(int actual, int predicted) { if (predicted > 0 && predicted == actual) _tp++; else if (predicted > 0 && predicted != actual) _fp++; else if (predicted <= 0 && predicted == actual) _tn++; else _fn++; } /** * * @return */ float accuracy() { return (1.0f * _tp + _tn) / support(); } /** * * @return */ float precision() { return (1.0f * _tp) / (_tp + _fp); } /** * * @return */ float recall() { return (1.0f * _tp) / (_tp + _fn); } /** * * @return */ unsigned int support() { return _tp + _tn + _fp + _fn; } protected: unsigned int _tp; unsigned int _tn; unsigned int _fp; unsigned int _fn; }; } }
1,650
C++
.h
65
11.738462
63
0.30501
eloquentarduino/EloquentMicroML
34
11
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,725
EloquentPassiveAggressive.h
eloquentarduino_EloquentMicroML/src/EloquentPassiveAggressive.h
#pragma once #include "EloquentMLMath.h" #include "EloquentAbstractClassifier.h" namespace Eloquent { namespace ML { template<unsigned int numFeatures> class PassiveAggressive : public AbstractClassifier<numFeatures> { public: /** * */ PassiveAggressive() { _params.C = 0.01; for (unsigned int i = 0; i < numFeatures; i++) _weights[i] = 0; } /** * Set regularization factor * @param C */ void setC(float C) { set("C", C); } /** * * @param x * @param label * @return */ void fitOne(float x[numFeatures], int label) { label = label > 0 ? 1 : -1; float loss = max(0, 1 - (label * dot<numFeatures>(x, _weights))); float xnorm = dot<numFeatures>(x, x); float tau = loss / (xnorm + (1 / (2 * _params.C))) * label; for (unsigned int i = 0; i < numFeatures; i++) _weights[i] += tau * x[i]; } /** * * @param x * @return */ int predict(float x[numFeatures]) { return dot<numFeatures>(x, _weights) > 0 ? 1 : 0; } /** * * @param param * @param value */ void set(const char *param, float value) { this->setParam(param, "C", &_params.C, value); } protected: struct { float C; } _params; float _weights[numFeatures]; }; } }
1,834
C++
.h
61
17.180328
81
0.403519
eloquentarduino/EloquentMicroML
34
11
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,726
EloquentAbstractClassifier.h
eloquentarduino_EloquentMicroML/src/EloquentAbstractClassifier.h
#pragma once #include <string.h> namespace Eloquent { namespace ML { template<unsigned int num_features> class AbstractClassifier { public: /** * * @param x * @param y */ virtual void fitOne(float x[num_features], int y) = 0; /** * * @param x * @return */ virtual int predict(float x[num_features]) = 0; /** * Update classifier parameter. * Implementation specific * @param param * @param value */ virtual void set(const char *param, float value) { } /** * Train on the given dataset * @tparam numSamples * @param X * @param y */ template<uint16_t numSamples> void fit(float X[numSamples][num_features], int y[numSamples]) { for (uint16_t i = 0; i < numSamples; i++) fitOne(X[i], y[i]); } protected: /** * * @param paramName * @param targetName * @param param * @param value */ template<typename T> void setParam(const char *paramName, const char* targetName, T *param, T value) { if (strcmp(paramName, targetName) == 0) *param = value; } }; } }
1,565
C++
.h
54
16.518519
93
0.428856
eloquentarduino/EloquentMicroML
34
11
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,727
EloquentML.h
eloquentarduino_EloquentMicroML/src/EloquentML.h
#pragma once #include "Data/Array.h" #include "Data/EndlessArray.h" #include "Data/Operators/Absolute.h" #include "Data/Operators/AtLeast.h" #include "Data/Operators/AtMost.h" #include "Data/Operators/Clip.h" #include "Data/Operators/Delta.h" #include "Data/Operators/ExponentialSmoothing.h" #include "Data/Operators/MinMaxScaler.h" #include "Data/Operators/Quantize.h" #include "Data/Operators/StandardScaler.h"
414
C++
.h
12
33.416667
48
0.80798
eloquentarduino/EloquentMicroML
34
11
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,729
EloquentSEFR.h
eloquentarduino_EloquentMicroML/src/EloquentSEFR.h
#pragma once namespace Eloquent { namespace ML { /** * SEFR: A Fast Linear-Time Classifier for Ultra-LowPower Devices * @see https://arxiv.org/pdf/2006.04620.pdf * @tparam numFetures */ template<uint16_t numFetures> class SEFR { public: /** * */ SEFR() { reset(); } /** * Set all weights to 0 */ void reset() { _bias = 0; for (uint16_t i = 0; i < numFetures; i++) _weights[i] = 0; } /** * Train classifier on give dataset * @param X * @param y */ void fit(float X[][numFetures], int *y, uint16_t numSamples) { uint16_t positiveSamples = 0; uint16_t negativeSamples = 0; float positiveFeatures[numFetures] = {0}; float negativeFeatures[numFetures] = {0}; // accumulate positive and negative features for (uint16_t i = 0; i < numSamples; i++) { Serial.println(i); if (y[i] > 0) { positiveSamples += 1; for (uint16_t j = 0; j < numFetures; j++) positiveFeatures[j] += X[i][j]; } else { negativeSamples += 1; for (uint16_t j = 0; j < numFetures; j++) negativeFeatures[j] += X[i][j]; } } Serial.println("#1"); // compute weights for (uint16_t j = 0; j < numFetures; j++) { positiveFeatures[j] /= positiveSamples; negativeFeatures[j] /= negativeSamples; float sum = positiveFeatures[j] + negativeFeatures[j]; _weights[j] = (sum != 0) ? (positiveFeatures[j] - negativeFeatures[j]) / sum : 0; } // compute bias float positiveTau = 0; float negativeTau = 0; for (uint16_t i = 0; i < numSamples; i++) { float sampleScore = score(X[i]); if (y[i] > 0) positiveTau += sampleScore; else negativeTau += sampleScore; } positiveTau /= positiveSamples; negativeTau /= negativeSamples; _bias = - ((positiveTau * negativeSamples) + (negativeTau * positiveSamples)) / numSamples; } /** * Classify sample * @param x * @return */ int predict(float *x) { return score(x) > -_bias ? 1 : 0; } protected: float _bias; float _weights[numFetures]; /** * Compute score of sample * @param x * @return */ float score(float *x) { float dot = 0; for (uint16_t j = 0; j < numFetures; j++) dot += x[j] * _weights[j]; return dot; } }; } }
3,426
C++
.h
96
19.854167
107
0.399577
eloquentarduino/EloquentMicroML
34
11
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,730
EloquentMLMath.h
eloquentarduino_EloquentMicroML/src/EloquentMLMath.h
#pragma once #ifdef ESP32 #define min(a, b) (a) < (b) ? (a) : (b) #define max(a, b) (a) > (b) ? (a) : (b) #define abs(x) ((x) > 0 ? (x) : -(x)) #endif namespace Eloquent { namespace ML { /** * Dot product * @tparam size * @param x * @param w * @return */ template<unsigned int size> float dot(float x[size], float w[size]) { float sum = 0; for (unsigned int i = 0; i < size; i++) sum += x[i] * w[i]; return sum; } } }
568
C++
.h
24
16.416667
51
0.431481
eloquentarduino/EloquentMicroML
34
11
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,731
EloquentFeatureWindow.h
eloquentarduino_EloquentMicroML/src/EloquentFeatureWindow.h
#pragma once #include "EloquentFeatureVector.h" namespace Eloquent { namespace ML { template<uint16_t vectorSize, uint16_t windowSize> class Window : public FeatureVector<vectorSize> { public: /** * Test if window is full * @return */ bool isFull() { if (!FeatureVector<vectorSize>::isFull()) return false; return (FeatureVector<vectorSize>::length() % windowSize) == 0; } /** * Window cannot be endless * @param endless */ void endless(bool endless = true) { } /** * */ void slide() { memcpy(FeatureVector<vectorSize>::_array, FeatureVector<vectorSize>::_array + windowSize, sizeof(float) * windowSize); FeatureVector<vectorSize>::_count = windowSize; // zero the remaining elements for (uint16_t i = windowSize; i < vectorSize; i++) FeatureVector<vectorSize>::_array[i] = 0; } }; } }
1,182
C++
.h
35
21.457143
134
0.494293
eloquentarduino/EloquentMicroML
34
11
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,732
kernels.h
eloquentarduino_EloquentMicroML/src/kernels.h
#pragma once namespace Eloquent { namespace ML { /** * */ typedef float (*kernelFunction)(float *x, float *w, unsigned int dimension); /** * * @param x * @param w * @param dimension * @return */ float linearKernel(float *x, float *w, unsigned int dimension) { float sum = 0; for (unsigned int i = 0; i < dimension; i++) sum += x[i] * w[i]; return sum; } /** * This really is a bad hack, but it's the most straightforward * implementation I could come up with * @param x * @param w * @param dimension * @return */ #if defined(KERNEL_GAMMA) float rbfKernel(float *x, float *w, unsigned int dimension) { float sum = 0; for(unsigned int i = 0; i < dimension; i++) sum += (x[i] - w[i]) * (x[i] - w[i]); return exp(-sum / (2 * KERNEL_GAMMA * KERNEL_GAMMA)); } #endif } }
1,084
C++
.h
38
19.131579
84
0.473988
eloquentarduino/EloquentMicroML
34
11
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,733
EndlessArray.h
eloquentarduino_EloquentMicroML/src/Data/EndlessArray.h
#pragma once #include "Array.h" namespace Eloquent { namespace ML { namespace Data { template <uint16_t size> class EndlessArray : public Array<size> { public: /** * Endless array is never full * @return */ inline bool isFull() { return false; } /** * Get element at given index * @param index * @return */ float at(int16_t index) { return this->_array[idx(index)]; } /** * Insert element at the end of the array * @param value */ bool insert(float value) { if (!this->passes(value)) return false; this->_array[idx(0)] = this->resolve(value); this->_count += 1; return true; } /** * Convert to plain array * @param dest * @return */ float* toArray(float *dest) { for (uint16_t i = 0; i < size; i++) dest[i] = at(i); return dest; } protected: /** * Convert logical index to physical index * @param logicalIndex * @return */ uint16_t idx(int16_t logicalIndex = 0) { return (this->_count + logicalIndex + size) % size; } }; } } }
1,794
C++
.h
57
15.263158
71
0.355903
eloquentarduino/EloquentMicroML
34
11
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,734
Array.h
eloquentarduino_EloquentMicroML/src/Data/Array.h
#pragma once #include "Operators/FilterOperator.h" #include "Operators/MapOperator.h" using namespace Eloquent::ML::Data::Operators; namespace Eloquent { namespace ML { namespace Data { template <uint16_t size> class Array { public: Array() : _filter(NULL), _mapper(NULL) { clear(); } /** * Get number of inserted elements * @return */ inline virtual uint16_t count() { return _count; } /** * Get number of elements in the array * @return */ inline virtual uint16_t length() { return min(count(), size); } /** * Test if array reached its maximum capacity * @return */ inline virtual bool isFull() { return count() >= size; } /** * Get element at given index * @param index * @return */ virtual float at(int16_t index) { return _array[index]; } /** * * @return */ virtual float last() { return this->at(_count - 1); } /** * Get elements mean * @param startIndex * @return */ virtual float mean(int16_t startIndex = 0) { float sum = 0; for (uint16_t i = (startIndex + size) % size; i < length(); i++) sum += this->at(i); return sum / length(); } /** * Get elements standard deviation * @param startIndex * @return */ virtual float std(int16_t startIndex = 0) { float variance = 0; float mean = this->mean(); for (uint16_t i = (startIndex + size) % size; i < length(); i++) variance += pow(this->at(i) - mean, 2); return sqrt(variance / length()); } /** * Insert element at the end of the array * @param value */ virtual bool insert(float value) { if (isFull()) return false; if (!passes(value)) return false; _array[_count++] = resolve(value); return true; } /** * Delete array elements (set to 0 and reset count) */ virtual void clear() { for (uint16_t i = 0; i < size; i++) _array[i] = 0; _count = 0; } /** * Convert to plain array * @param dest * @return */ virtual float* toArray(float *dest = NULL) { if (dest == NULL) return _array; memcpy(dest, _array, size * sizeof(float)); return dest; } /** * * @param stream * @param delimiter */ virtual void printTo(Stream& stream, const char delimiter = ',') { for (uint16_t i = 0; i < size; i++) { stream.print(at(i), 6); stream.print(i == size - 1? '\n' : delimiter); } } /** * Add filter operator * @param mapper */ void filter(FilterOperator* filter) { if (_filter == NULL) { _filter = filter; } else { _filter->then(filter); } } /** * Add map operator * @param mapper */ void map(MapOperator* mapper) { if (_mapper == NULL) { _mapper = mapper; } else { _mapper->then(mapper); } } protected: uint16_t _count; float _array[size]; FilterOperator *_filter; MapOperator *_mapper; /** * Resolve filters chain * @param value * @return */ bool passes(float value) { if (_filter == NULL) return true; return _filter->resolve(value, count(), size, _array); } /** * Resolve mappers chain * @param value * @return */ float resolve(float value) { if (_mapper) { return _mapper->resolve(value, count(), size, _array); } return value; } }; } } }
5,795
C++
.h
170
15.952941
84
0.335836
eloquentarduino/EloquentMicroML
34
11
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,735
Clip.h
eloquentarduino_EloquentMicroML/src/Data/Operators/Clip.h
#pragma once #include "MapOperator.h" namespace Eloquent { namespace ML { namespace Data { namespace Operators { /** * Truncate values ot of range */ class Clip : public MapOperator { public: Clip(float low, float high) : _low(low), _high(high) { } float map(float value, uint16_t count, uint16_t size, float *array) { return value > _high ? _high : (value < _low ? _low : value); } protected: float _low; float _high; }; } } } }
790
C++
.h
26
15.538462
89
0.382586
eloquentarduino/EloquentMicroML
34
11
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,736
StandardScaler.h
eloquentarduino_EloquentMicroML/src/Data/Operators/StandardScaler.h
#pragma once #include "MapOperator.h" namespace Eloquent { namespace ML { namespace Data { namespace Operators { /** * Transform values to mean = 0, std = 1 */ class StandardScaler : public MapOperator { public: /** * * @param mean * @param std * @return */ StandardScaler(float mean, float std) : _mean(mean), _std(std) { } float map(float value, uint16_t count, uint16_t size, float *array) { return (value - _mean) / _std; } protected: float _mean; float _std; }; } } } }
968
C++
.h
32
13.84375
89
0.343011
eloquentarduino/EloquentMicroML
34
11
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,737
AtLeast.h
eloquentarduino_EloquentMicroML/src/Data/Operators/AtLeast.h
#pragma once #include "FilterOperator.h" namespace Eloquent { namespace ML { namespace Data { namespace Operators { /** * Discard values less than threshold */ class AtLeast : public FilterOperator { public: AtLeast(float low) : _low(low) { } bool filter(float value, uint16_t count, uint16_t size, float *array) { return value >= _low; } protected: float _low; }; } } } }
693
C++
.h
24
14.541667
91
0.39819
eloquentarduino/EloquentMicroML
34
11
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,738
MapOperator.h
eloquentarduino_EloquentMicroML/src/Data/Operators/MapOperator.h
#pragma once namespace Eloquent { namespace ML { namespace Data { namespace Operators { class MapOperator { public: /** * Apply a map operation (element-wise) * @param value * @param count * @param size * @param array * @return */ virtual float map(float value, uint16_t count, uint16_t size, float *array) = 0; /** * Concatenate operators * @param next */ void then(MapOperator *next) { if (_next == NULL) _next = next; else _next->then(next); } /** * Resolve mappers chain * @param value * @param index * @param array * @return */ float resolve(float value, uint16_t count, uint16_t size, float *array) { value = this->map(value, count, size, array); if (_next != NULL) { return _next->resolve(value, count, size, array); } return value; } protected: MapOperator *_next = NULL; }; } } } }
1,652
C++
.h
47
15.829787
100
0.335
eloquentarduino/EloquentMicroML
34
11
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,739
Quantize.h
eloquentarduino_EloquentMicroML/src/Data/Operators/Quantize.h
#pragma once #include "MapOperator.h" namespace Eloquent { namespace ML { namespace Data { namespace Operators { /** * Apply quantization to values */ class Quantize : public MapOperator { public: /** * * @param quant * @return */ Quantize(float quant) : _quant(quant) { } float map(float value, uint16_t count, uint16_t size, float *array) { return floor(value / _quant); } protected: float _quant; }; } } } }
831
C++
.h
29
13.172414
89
0.356784
eloquentarduino/EloquentMicroML
34
11
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,740
AtMost.h
eloquentarduino_EloquentMicroML/src/Data/Operators/AtMost.h
#pragma once #include "FilterOperator.h" namespace Eloquent { namespace ML { namespace Data { namespace Operators { /** * Discard values less than threshold */ class AtMost : public FilterOperator { public: AtMost(float high) : _high(high) { } bool filter(float value, uint16_t count, uint16_t size, float *array) { return value <= _high; } protected: float _high; }; } } } }
696
C++
.h
24
14.666667
91
0.400901
eloquentarduino/EloquentMicroML
34
11
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,741
Delta.h
eloquentarduino_EloquentMicroML/src/Data/Operators/Delta.h
#pragma once #include "MapOperator.h" namespace Eloquent { namespace ML { namespace Data { namespace Operators { /** * Return absolute value */ class Delta : public MapOperator { public: Delta() : _prev(0) { } float map(float value, uint16_t count, uint16_t size, float *array) { float delta = value - _prev; _prev = value; return delta; } protected: float _prev; }; } } } }
740
C++
.h
26
13.423077
89
0.364922
eloquentarduino/EloquentMicroML
34
11
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,742
ExponentialSmoothing.h
eloquentarduino_EloquentMicroML/src/Data/Operators/ExponentialSmoothing.h
#pragma once #include "MapOperator.h" namespace Eloquent { namespace ML { namespace Data { namespace Operators { /** * Apply exponential smoothing */ class ExponentialSmoothing : public MapOperator { public: /** * * @param smoothing in range ]0, 1[ */ ExponentialSmoothing(float smoothing) : _smoothing(smoothing), _prev(0) { } float map(float value, uint16_t count, uint16_t size, float *array) { float prev = (1 - _smoothing) * _prev; _prev = value * _smoothing; return _prev + prev; } protected: float _smoothing; float _prev; }; } } } }
1,034
C++
.h
32
15.90625
89
0.381288
eloquentarduino/EloquentMicroML
34
11
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,743
Absolute.h
eloquentarduino_EloquentMicroML/src/Data/Operators/Absolute.h
#pragma once #include "MapOperator.h" namespace Eloquent { namespace ML { namespace Data { namespace Operators { /** * Return absolute value */ class Absolute : public MapOperator { public: Absolute() { } float map(float value, uint16_t count, uint16_t size, float *array) { return abs(value); } }; } } } }
561
C++
.h
21
13.619048
89
0.402985
eloquentarduino/EloquentMicroML
34
11
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,744
FilterOperator.h
eloquentarduino_EloquentMicroML/src/Data/Operators/FilterOperator.h
#pragma once namespace Eloquent { namespace ML { namespace Data { namespace Operators { /** * Discard elements based on filter result */ class FilterOperator { public: /** * * @param value * @param count * @param size * @param array * @return */ virtual bool filter(float value, uint16_t count, uint16_t size, float *array) = 0; /** * Concatenate operators * @param next */ void then(FilterOperator *next) { if (_next == NULL) _next = next; else _next->then(next); } /** * Resolve filters chain * @param value * @param index * @param array * @return */ float resolve(float value, uint16_t count, uint16_t size, float *array) { return this->filter(value, count, size, array) && (_next == NULL || _next->resolve(value, count, size, array)); } protected: FilterOperator *_next = NULL; }; } } } }
1,634
C++
.h
47
15.87234
102
0.339015
eloquentarduino/EloquentMicroML
34
11
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,745
MinMaxScaler.h
eloquentarduino_EloquentMicroML/src/Data/Operators/MinMaxScaler.h
#pragma once #include "MapOperator.h" namespace Eloquent { namespace ML { namespace Data { namespace Operators { /** * Translates the input values from the range [inputMin, inputMax] * to the range [outputMin, outputMax] */ class MinMaxScaler : public MapOperator { public: /** * * @param inputMin * @param inputMax * @param outputMin * @param outputMax */ MinMaxScaler(float inputMin, float inputMax, float outputMin = 0, float outputMax = 1) : _inputMin(inputMin), _inputMax(inputMax), _outputMin(outputMin) { _coeff = (outputMax - outputMin) / (inputMax - inputMin); } float map(float value, uint16_t count, uint16_t size, float *array) { return _outputMin + (constrain(value, _inputMin, _inputMax) - _inputMin) * _coeff; } protected: float _inputMin; float _inputMax; float _outputMin; float _coeff; }; } } } }
1,429
C++
.h
38
20.447368
108
0.423521
eloquentarduino/EloquentMicroML
34
11
2
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,747
brightness.h
motamed_LG-UltraFine-Brightness-Control/brightness.h
#include <iostream> #include <vector> #include <conio.h> #include "hidapi.h" using std::vector; const uint16_t vendor_id = 0x43e; const uint16_t product_id = 0x9a40; const uint16_t max_brightness = 0xd2f0; const uint16_t min_brightness = 0x0190; const std::vector<uint16_t> small_steps = { 0x0190, 0x01af, 0x01d2, 0x01f7, 0x021f, 0x024a, 0x0279, 0x02ac, 0x02e2, 0x031d, 0x035c, 0x03a1, 0x03eb, 0x043b, 0x0491, 0x04ee, 0x0553, 0x05c0, 0x0635, 0x06b3, 0x073c, 0x07d0, 0x086f, 0x091b, 0x09d5, 0x0a9d, 0x0b76, 0x0c60, 0x0d5c, 0x0e6c, 0x0f93, 0x10d0, 0x1227, 0x1399, 0x1529, 0x16d9, 0x18aa, 0x1aa2, 0x1cc1, 0x1f0b, 0x2184, 0x2430, 0x2712, 0x2a2e, 0x2d8b, 0x312b, 0x3516, 0x3951, 0x3de2, 0x42cf, 0x4822, 0x4de1, 0x5415, 0x5ac8, 0x6203, 0x69d2, 0x7240, 0x7b5a, 0x852d, 0x8fc9, 0x9b3d, 0xa79b, 0xb4f5, 0xc35f, 0xd2f0, }; const std::vector<uint16_t> big_steps = { 0x0190, 0x021f, 0x02e2, 0x03eb, 0x0553, 0x073c, 0x09d5, 0x0d5c, 0x1227, 0x18aa, 0x2184, 0x2d8b, 0x3de2, 0x5415, 0x7240, 0x9b3d, 0xd2f0, }; uint16_t next_step(uint16_t val, const vector<uint16_t>& steps) { auto start = 0; auto end = steps.size() - 1; while (start + 1 < end) { auto mid = start + (end - start) / 2; if (steps[mid] > val) { end = mid; } else { start = mid; } } return steps[end]; } uint16_t prev_step(uint16_t val, const vector<uint16_t>& steps) { auto start = 0; auto end = steps.size() - 1; while (start + 1 < end) { auto mid = start + (end - start) / 2; if (steps[mid] >= val) { end = mid; } else { start = mid; } } return steps[start]; } uint16_t get_brightness(hid_device* handle) { uint8_t data[7] = { 0 }; int res = hid_get_feature_report(handle, data, sizeof(data)); if (res < 0) { printf("Unable to get a feature report.\n"); printf("%ls", hid_error(handle)); } return data[1] + (data[2] << 8); } void set_brightness(hid_device* handle, uint16_t val) { uint8_t data[7] = { 0x00, uint8_t(val & 0x00ff), uint8_t((val >> 8) & 0x00ff), 0x00, 0x00, 0x00, 0x00 }; int res = hid_send_feature_report(handle, data, sizeof(data)); if (res < 0) { printf("Unable to set a feature report.\n"); printf("%ls", hid_error(handle)); } } int initmain() { hid_device* handle; struct hid_device_info* devs, * cur_dev; if (hid_init()) return -1; char* ultrafine_monitor_path = NULL; devs = hid_enumerate(0x0, 0x0); cur_dev = devs; while (cur_dev) { if (cur_dev->vendor_id == 0x043e) //0x043e means LG { //printf("Device Found\n type: %04hx %04hx\n path: %s\n serial_number: %ls", cur_dev->vendor_id, cur_dev->product_id, cur_dev->path, cur_dev->serial_number); //printf("\n"); //printf(" Manufacturer: %ls\n", cur_dev->manufacturer_string); //printf(" Product: %ls\n", cur_dev->product_string); //printf(" Release: %hx\n", cur_dev->release_number); //printf(" Interface: %d\n", cur_dev->interface_number); //printf("\n"); if (wcsstr(cur_dev->product_string, L"BRIGHTNESS")) { ultrafine_monitor_path = cur_dev->path; break; } } cur_dev = cur_dev->next; } if (ultrafine_monitor_path == NULL) { // printf("device not found!"); exit(-1); } handle = hid_open_path(ultrafine_monitor_path); if (!handle) { // printf("unable to open device\n"); return 1; } auto brightness = get_brightness(handle); //printf("Press '-' or '=' to adjust brightness.\n"); //printf("Press '[' or: ']' to fine tune.\n"); //printf("Press 'p' to use the minimum brightness\n"); //printf("Press '\\' to use the maximum brightness\n"); //printf("Press 'q' to quit.\n"); while (true) { // printf("Current brightness = %d%4s\r", int((float(brightness) / 54000) * 100.0), " "); return int((float(brightness) / 54000) * 100.0); int c = _getch(); if (c == 'q') { break; } switch (c) { case '+': case '=': brightness = next_step(brightness, big_steps); set_brightness(handle, brightness); break; case '-': case '_': brightness = prev_step(brightness, big_steps); set_brightness(handle, brightness); break; case ']': brightness = next_step(brightness, small_steps); set_brightness(handle, brightness); break; case '[': brightness = prev_step(brightness, small_steps); set_brightness(handle, brightness); break; case '\\': brightness = max_brightness; set_brightness(handle, brightness); break; case 'p': brightness = min_brightness; set_brightness(handle, brightness); break; default: break; } } hid_close(handle); hid_exit(); return 0; } char* getdeviceinfo() { hid_device* handle; struct hid_device_info* devs, * cur_dev; char* ultrafine_monitor_path = NULL; if (hid_init()) return NULL; devs = hid_enumerate(0x0, 0x0); cur_dev = devs; while (cur_dev) { if (cur_dev->vendor_id == 0x043e) //0x043e means LG { //printf("Device Found\n type: %04hx %04hx\n path: %s\n serial_number: %ls", cur_dev->vendor_id, cur_dev->product_id, cur_dev->path, cur_dev->serial_number); //printf("\n"); //printf(" Manufacturer: %ls\n", cur_dev->manufacturer_string); //printf(" Product: %ls\n", cur_dev->product_string); //printf(" Release: %hx\n", cur_dev->release_number); //printf(" Interface: %d\n", cur_dev->interface_number); //printf("\n"); if (cur_dev->product_string && wcsstr(cur_dev->product_string, L"BRIGHTNESS")) { ultrafine_monitor_path = cur_dev->path; break; } } cur_dev = cur_dev->next; } return ultrafine_monitor_path; } //char* getlgultrawidepath() { // hid_device_info* cur_dev; // cur_dev = getdeviceinfo(); // // char* ultrafine_monitor_path; // // if (wcsstr(cur_dev->product_string, L"BRIGHTNESS")) // { // ultrafine_monitor_path = cur_dev->path; // } // return ultrafine_monitor_path; //} hid_device* handledevice() { hid_device* handle; char* ultrafine_monitor_path = getdeviceinfo(); handle = hid_open_path(ultrafine_monitor_path); if (!handle) { return handle ; } return handle; }
7,035
C++
.h
219
24.945205
172
0.559084
motamed/LG-UltraFine-Brightness-Control
34
2
0
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,748
mainForm.h
motamed_LG-UltraFine-Brightness-Control/mainForm.h
#pragma once #include <cstddef> #include "hidapi.h" #include "brightness.h" namespace LGUltrafineBrightness { using namespace System; using namespace System::ComponentModel; using namespace System::Collections; using namespace System::Windows::Forms; using namespace System::Data; using namespace System::Drawing; /// <summary> /// Summary for mainForm /// </summary> public ref class mainForm : public System::Windows::Forms::Form { public: mainForm(void) { InitializeComponent(); // //TODO: Add the constructor code here // hid_device* handle = handledevice(); int brightness = get_brightness(handle); current_brightness_lbl->Text = (int((float(brightness) / 54000) * 100.0).ToString()) + "%"; } protected: /// <summary> /// Clean up any resources being used. /// </summary> ~mainForm() { if (components) { delete components; } } private: System::Windows::Forms::Label^ current_brightness_lbl; protected: private: System::Windows::Forms::Label^ adjbrt_lbl; private: System::Windows::Forms::Button^ increase_btn; private: System::Windows::Forms::Button^ decrease_btn; private: System::Windows::Forms::Button^ fine_decrease_btn; private: System::Windows::Forms::Button^ fine_increase_btn; private: System::Windows::Forms::Label^ finetune_lbl; private: System::Windows::Forms::Button^ min_btn; private: System::Windows::Forms::Button^ max_btn; private: System::Windows::Forms::Label^ label2; private: System::Windows::Forms::Label^ brightnesslbl; protected: private: /// <summary> /// Required designer variable. /// </summary> System::ComponentModel::Container ^components; #pragma region Windows Form Designer generated code /// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> void InitializeComponent(void) { this->current_brightness_lbl = (gcnew System::Windows::Forms::Label()); this->adjbrt_lbl = (gcnew System::Windows::Forms::Label()); this->increase_btn = (gcnew System::Windows::Forms::Button()); this->decrease_btn = (gcnew System::Windows::Forms::Button()); this->fine_decrease_btn = (gcnew System::Windows::Forms::Button()); this->fine_increase_btn = (gcnew System::Windows::Forms::Button()); this->finetune_lbl = (gcnew System::Windows::Forms::Label()); this->min_btn = (gcnew System::Windows::Forms::Button()); this->max_btn = (gcnew System::Windows::Forms::Button()); this->label2 = (gcnew System::Windows::Forms::Label()); this->brightnesslbl = (gcnew System::Windows::Forms::Label()); this->SuspendLayout(); // // current_brightness_lbl // this->current_brightness_lbl->AutoSize = true; this->current_brightness_lbl->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 20, System::Drawing::FontStyle::Regular, System::Drawing::GraphicsUnit::Point, static_cast<System::Byte>(0))); this->current_brightness_lbl->Location = System::Drawing::Point(296, 288); this->current_brightness_lbl->Name = L"current_brightness_lbl"; this->current_brightness_lbl->Size = System::Drawing::Size(44, 31); this->current_brightness_lbl->TabIndex = 1; this->current_brightness_lbl->Text = L"00"; // // adjbrt_lbl // this->adjbrt_lbl->AutoSize = true; this->adjbrt_lbl->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 10, System::Drawing::FontStyle::Regular, System::Drawing::GraphicsUnit::Point, static_cast<System::Byte>(0))); this->adjbrt_lbl->Location = System::Drawing::Point(53, 57); this->adjbrt_lbl->Name = L"adjbrt_lbl"; this->adjbrt_lbl->Size = System::Drawing::Size(118, 17); this->adjbrt_lbl->TabIndex = 5; this->adjbrt_lbl->Text = L"Adjust Brightness"; // // increase_btn // this->increase_btn->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 20, System::Drawing::FontStyle::Regular, System::Drawing::GraphicsUnit::Point, static_cast<System::Byte>(0))); this->increase_btn->Location = System::Drawing::Point(56, 102); this->increase_btn->Name = L"increase_btn"; this->increase_btn->Size = System::Drawing::Size(96, 42); this->increase_btn->TabIndex = 6; this->increase_btn->Text = L"+"; this->increase_btn->UseVisualStyleBackColor = true; this->increase_btn->Click += gcnew System::EventHandler(this, &mainForm::increase_btn_Click); // // decrease_btn // this->decrease_btn->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 20, System::Drawing::FontStyle::Regular, System::Drawing::GraphicsUnit::Point, static_cast<System::Byte>(0))); this->decrease_btn->Location = System::Drawing::Point(56, 159); this->decrease_btn->Name = L"decrease_btn"; this->decrease_btn->Size = System::Drawing::Size(96, 42); this->decrease_btn->TabIndex = 7; this->decrease_btn->Text = L"-"; this->decrease_btn->UseVisualStyleBackColor = true; this->decrease_btn->Click += gcnew System::EventHandler(this, &mainForm::decrease_btn_Click); // // fine_decrease_btn // this->fine_decrease_btn->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 20, System::Drawing::FontStyle::Regular, System::Drawing::GraphicsUnit::Point, static_cast<System::Byte>(0))); this->fine_decrease_btn->Location = System::Drawing::Point(220, 159); this->fine_decrease_btn->Name = L"fine_decrease_btn"; this->fine_decrease_btn->Size = System::Drawing::Size(96, 42); this->fine_decrease_btn->TabIndex = 10; this->fine_decrease_btn->Text = L"-"; this->fine_decrease_btn->UseVisualStyleBackColor = true; this->fine_decrease_btn->Click += gcnew System::EventHandler(this, &mainForm::fine_decrease_btn_Click); // // fine_increase_btn // this->fine_increase_btn->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 20, System::Drawing::FontStyle::Regular, System::Drawing::GraphicsUnit::Point, static_cast<System::Byte>(0))); this->fine_increase_btn->Location = System::Drawing::Point(220, 102); this->fine_increase_btn->Name = L"fine_increase_btn"; this->fine_increase_btn->Size = System::Drawing::Size(96, 42); this->fine_increase_btn->TabIndex = 9; this->fine_increase_btn->Text = L"+"; this->fine_increase_btn->UseVisualStyleBackColor = true; this->fine_increase_btn->Click += gcnew System::EventHandler(this, &mainForm::fine_increase_btn_Click); // // finetune_lbl // this->finetune_lbl->AutoSize = true; this->finetune_lbl->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 10, System::Drawing::FontStyle::Regular, System::Drawing::GraphicsUnit::Point, static_cast<System::Byte>(0))); this->finetune_lbl->Location = System::Drawing::Point(235, 57); this->finetune_lbl->Name = L"finetune_lbl"; this->finetune_lbl->Size = System::Drawing::Size(72, 17); this->finetune_lbl->TabIndex = 8; this->finetune_lbl->Text = L"Fine Tune"; // // min_btn // this->min_btn->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 15, System::Drawing::FontStyle::Regular, System::Drawing::GraphicsUnit::Point, static_cast<System::Byte>(0))); this->min_btn->Location = System::Drawing::Point(369, 159); this->min_btn->Name = L"min_btn"; this->min_btn->Size = System::Drawing::Size(96, 42); this->min_btn->TabIndex = 13; this->min_btn->Text = L"Min"; this->min_btn->UseVisualStyleBackColor = true; this->min_btn->Click += gcnew System::EventHandler(this, &mainForm::min_btn_Click); // // max_btn // this->max_btn->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 15, System::Drawing::FontStyle::Regular, System::Drawing::GraphicsUnit::Point, static_cast<System::Byte>(0))); this->max_btn->Location = System::Drawing::Point(369, 102); this->max_btn->Name = L"max_btn"; this->max_btn->Size = System::Drawing::Size(96, 42); this->max_btn->TabIndex = 12; this->max_btn->Text = L"Max"; this->max_btn->UseVisualStyleBackColor = true; this->max_btn->Click += gcnew System::EventHandler(this, &mainForm::max_btn_Click); // // label2 // this->label2->AutoSize = true; this->label2->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 10, System::Drawing::FontStyle::Regular, System::Drawing::GraphicsUnit::Point, static_cast<System::Byte>(0))); this->label2->Location = System::Drawing::Point(387, 57); this->label2->Name = L"label2"; this->label2->Size = System::Drawing::Size(67, 17); this->label2->TabIndex = 11; this->label2->Text = L"Max / Min"; // // brightnesslbl // this->brightnesslbl->AutoSize = true; this->brightnesslbl->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 20, System::Drawing::FontStyle::Regular, System::Drawing::GraphicsUnit::Point, static_cast<System::Byte>(0))); this->brightnesslbl->Location = System::Drawing::Point(129, 288); this->brightnesslbl->Name = L"brightnesslbl"; this->brightnesslbl->Size = System::Drawing::Size(151, 31); this->brightnesslbl->TabIndex = 14; this->brightnesslbl->Text = L"Brightness:"; // // mainForm // this->AutoScaleDimensions = System::Drawing::SizeF(6, 13); this->AutoScaleMode = System::Windows::Forms::AutoScaleMode::Font; this->ClientSize = System::Drawing::Size(539, 378); this->Controls->Add(this->brightnesslbl); this->Controls->Add(this->min_btn); this->Controls->Add(this->max_btn); this->Controls->Add(this->label2); this->Controls->Add(this->fine_decrease_btn); this->Controls->Add(this->fine_increase_btn); this->Controls->Add(this->finetune_lbl); this->Controls->Add(this->decrease_btn); this->Controls->Add(this->increase_btn); this->Controls->Add(this->adjbrt_lbl); this->Controls->Add(this->current_brightness_lbl); this->Name = L"mainForm"; this->Text = L"LG UltraFine Brightness Control"; this->ResumeLayout(false); this->PerformLayout(); } #pragma endregion private: System::Void increase_btn_Click(System::Object^ sender, System::EventArgs^ e) { hid_device* handle = handledevice(); int brightness = get_brightness(handle); brightness = next_step(brightness, big_steps); set_brightness(handle, brightness); current_brightness_lbl->Text = (int((float(brightness) / 54000) * 100.0).ToString()) + "%"; } private: System::Void fine_increase_btn_Click(System::Object^ sender, System::EventArgs^ e) { hid_device* handle = handledevice(); int brightness = get_brightness(handle); brightness = next_step(brightness, small_steps); set_brightness(handle, brightness); current_brightness_lbl->Text = (int((float(brightness) / 54000) * 100.0).ToString()) + "%"; } private: System::Void fine_decrease_btn_Click(System::Object^ sender, System::EventArgs^ e) { hid_device* handle = handledevice(); int brightness = get_brightness(handle); brightness = prev_step(brightness, small_steps); set_brightness(handle, brightness); current_brightness_lbl->Text = (int((float(brightness) / 54000) * 100.0).ToString()) + "%"; } private: System::Void max_btn_Click(System::Object^ sender, System::EventArgs^ e) { hid_device* handle = handledevice(); int brightness = get_brightness(handle); brightness = max_brightness; set_brightness(handle, brightness); current_brightness_lbl->Text = (int((float(brightness) / 54000) * 100.0).ToString()) + "%"; } private: System::Void min_btn_Click(System::Object^ sender, System::EventArgs^ e) { hid_device* handle = handledevice(); int brightness = get_brightness(handle); brightness = min_brightness; set_brightness(handle, brightness); current_brightness_lbl->Text = (int((float(brightness) / 54000) * 100.0).ToString()) + "%"; } private: System::Void decrease_btn_Click(System::Object^ sender, System::EventArgs^ e) { hid_device* handle = handledevice(); int brightness = get_brightness(handle); brightness = prev_step(brightness, big_steps); set_brightness(handle, brightness); current_brightness_lbl->Text = (int((float(brightness) / 54000) * 100.0).ToString())+"%"; } }; }
12,104
C++
.h
269
41.408922
167
0.69843
motamed/LG-UltraFine-Brightness-Control
34
2
0
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,750
ini_unittest.cpp
GenericMadScientist_CHOpt/tests/ini_unittest.cpp
/* * CHOpt - Star Power optimiser for Clone Hero * Copyright (C) 2020, 2021, 2022 Raymond Wright * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <https://www.gnu.org/licenses/>. */ #include <boost/test/unit_test.hpp> #include "ini.hpp" BOOST_AUTO_TEST_CASE(default_ini_values_are_correct) { const auto ini_values = parse_ini(""); BOOST_CHECK_EQUAL(ini_values.name, "Unknown Song"); BOOST_CHECK_EQUAL(ini_values.artist, "Unknown Artist"); BOOST_CHECK_EQUAL(ini_values.charter, "Unknown Charter"); } BOOST_AUTO_TEST_CASE(values_with_no_spaces_around_equals_are_read) { const char* text = "name=Dummy Song\nartist=Dummy Artist\ncharter=Dummy Charter"; const auto ini_values = parse_ini(text); BOOST_CHECK_EQUAL(ini_values.name, "Dummy Song"); BOOST_CHECK_EQUAL(ini_values.artist, "Dummy Artist"); BOOST_CHECK_EQUAL(ini_values.charter, "Dummy Charter"); } BOOST_AUTO_TEST_CASE(values_with_spaces_around_equals_are_read) { const char* text = "name = Dummy Song 2\nartist = Dummy Artist 2\ncharter " "= Dummy Charter 2"; const auto ini_values = parse_ini(text); BOOST_CHECK_EQUAL(ini_values.name, "Dummy Song 2"); BOOST_CHECK_EQUAL(ini_values.artist, "Dummy Artist 2"); BOOST_CHECK_EQUAL(ini_values.charter, "Dummy Charter 2"); } BOOST_AUTO_TEST_CASE(equals_must_be_the_character_after_the_key) { const char* text = "name_length=0\nartist_length=0\ncharter_length=0"; const auto ini_values = parse_ini(text); BOOST_CHECK_EQUAL(ini_values.name, "Unknown Song"); BOOST_CHECK_EQUAL(ini_values.artist, "Unknown Artist"); BOOST_CHECK_EQUAL(ini_values.charter, "Unknown Charter"); } BOOST_AUTO_TEST_CASE(frets_is_a_synonym_for_charter) { const char* text = "frets=GMS"; const auto ini_values = parse_ini(text); BOOST_CHECK_EQUAL(ini_values.charter, "GMS"); } BOOST_AUTO_TEST_CASE(blank_frets_after_charter_is_ignored) { const char* text = "charter = Haggis\nfrets = "; const auto ini_values = parse_ini(text); BOOST_CHECK_EQUAL(ini_values.charter, "Haggis"); } BOOST_AUTO_TEST_CASE(utf16le_inis_are_read_correctly) { const std::string text { "\xFF\xFE\x6E\x00\x61\x00\x6D\x00\x65\x00\x3D\x00\x54\x00\x65\x00\x73" "\x00\x74\x00", 20}; const auto ini_values = parse_ini(text); BOOST_CHECK_EQUAL(ini_values.name, "Test"); }
2,970
C++
.cpp
73
36.876712
79
0.715478
GenericMadScientist/CHOpt
33
4
5
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,751
sp_unittest.cpp
GenericMadScientist_CHOpt/tests/sp_unittest.cpp
/* * CHOpt - Star Power optimiser for Clone Hero * Copyright (C) 2020, 2021, 2022, 2023 Raymond Wright * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <https://www.gnu.org/licenses/>. */ #include <boost/test/unit_test.hpp> #include "sp.hpp" #include "test_helpers.hpp" BOOST_AUTO_TEST_SUITE(spbar_methods) BOOST_AUTO_TEST_CASE(add_phrase_works_correctly) { SpBar sp_bar {0.0, 0.25}; sp_bar.add_phrase(); BOOST_CHECK_CLOSE(sp_bar.min(), 0.25, 0.0001); BOOST_CHECK_CLOSE(sp_bar.max(), 0.5, 0.0001); sp_bar = {0.8, 1.0}; sp_bar.add_phrase(); BOOST_CHECK_CLOSE(sp_bar.min(), 1.0, 0.0001); BOOST_CHECK_CLOSE(sp_bar.max(), 1.0, 0.0001); } BOOST_AUTO_TEST_CASE(full_enough_to_activate_works_with_half_bar_act_engines) { SpBar sp_bar {0.49, 0.49}; BOOST_TEST(!sp_bar.full_enough_to_activate(0.5)); sp_bar = {0.0, 0.5}; BOOST_TEST(sp_bar.full_enough_to_activate(0.5)); } BOOST_AUTO_TEST_CASE(full_enough_to_activate_works_with_quarter_bar_act_engines) { SpBar sp_bar {0.24, 0.24}; BOOST_TEST(!sp_bar.full_enough_to_activate(0.25)); sp_bar = {0.0, 0.25}; BOOST_TEST(sp_bar.full_enough_to_activate(0.25)); } BOOST_AUTO_TEST_SUITE_END() BOOST_AUTO_TEST_SUITE(propagate_sp_over_whammy_works_correctly) BOOST_AUTO_TEST_CASE(works_correctly_over_four_four) { std::vector<SightRead::TimeSignature> time_sigs { {SightRead::Tick {0}, 4, 4}}; SightRead::TempoMap tempo_map {time_sigs, {}, {}, 192}; auto global_data = std::make_shared<SightRead::SongGlobalData>(); global_data->tempo_map(tempo_map); std::vector<SightRead::Note> notes {make_note(0, 1920), make_note(2112, 576), make_note(3000)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {3000}}}; SightRead::NoteTrack track {notes, phrases, SightRead::TrackType::FiveFret, global_data}; SpData sp_data {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), ChGuitarEngine()}; BOOST_CHECK_CLOSE(sp_data.propagate_sp_over_whammy_max( {SightRead::Beat(0.0), SpMeasure(0.0)}, {SightRead::Beat(4.0), SpMeasure(1.0)}, 0.5), 0.508333, 0.0001); BOOST_CHECK_CLOSE(sp_data.propagate_sp_over_whammy_max( {SightRead::Beat(1.0), SpMeasure(0.25)}, {SightRead::Beat(4.0), SpMeasure(1.0)}, 0.5), 0.50625, 0.0001); } BOOST_AUTO_TEST_CASE(works_correctly_over_three_four) { std::vector<SightRead::TimeSignature> time_sigs { {SightRead::Tick {0}, 3, 4}}; SightRead::TempoMap tempo_map {time_sigs, {}, {}, 192}; auto global_data = std::make_shared<SightRead::SongGlobalData>(); global_data->tempo_map(tempo_map); std::vector<SightRead::Note> notes {make_note(0, 1920), make_note(2112, 576), make_note(3000)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {3000}}}; SightRead::NoteTrack track {notes, phrases, SightRead::TrackType::FiveFret, global_data}; SpData sp_data {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), ChGuitarEngine()}; BOOST_CHECK_CLOSE(sp_data.propagate_sp_over_whammy_max( {SightRead::Beat(0.0), SpMeasure(0.0)}, {SightRead::Beat(4.0), SpMeasure(4.0 / 3)}, 0.5), 0.466667, 0.0001); BOOST_CHECK_CLOSE(sp_data.propagate_sp_over_whammy_max( {SightRead::Beat(-1.0), SpMeasure(-0.25)}, {SightRead::Beat(4.0), SpMeasure(4.0 / 3)}, 0.5), 0.440083, 0.0001); } BOOST_AUTO_TEST_CASE(works_correctly_over_changing_time_signatures) { std::vector<SightRead::TimeSignature> time_sigs { {SightRead::Tick {0}, 4, 4}, {SightRead::Tick {384}, 3, 4}}; SightRead::TempoMap tempo_map {time_sigs, {}, {}, 192}; auto global_data = std::make_shared<SightRead::SongGlobalData>(); global_data->tempo_map(tempo_map); std::vector<SightRead::Note> notes {make_note(0, 1920), make_note(2112, 576), make_note(3000)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {3000}}}; SightRead::NoteTrack track {notes, phrases, SightRead::TrackType::FiveFret, global_data}; SpData sp_data {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), ChGuitarEngine()}; BOOST_CHECK_CLOSE(sp_data.propagate_sp_over_whammy_max( {SightRead::Beat(0.0), SpMeasure(0.0)}, {SightRead::Beat(4.0), SpMeasure(7.0 / 6)}, 0.5), 0.4875, 0.0001); BOOST_CHECK_CLOSE(sp_data.propagate_sp_over_whammy_max( {SightRead::Beat(1.0), SpMeasure(0.25)}, {SightRead::Beat(4.0), SpMeasure(7.0 / 6)}, 0.5), 0.485417, 0.0001); } BOOST_AUTO_TEST_CASE(returns_negative_one_if_sp_runs_out) { std::vector<SightRead::TimeSignature> time_sigs { {SightRead::Tick {0}, 3, 4}, {SightRead::Tick {384}, 4, 4}}; SightRead::TempoMap tempo_map {time_sigs, {}, {}, 192}; auto global_data = std::make_shared<SightRead::SongGlobalData>(); global_data->tempo_map(tempo_map); std::vector<SightRead::Note> notes {make_note(0, 1920), make_note(2112, 576), make_note(3000)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {3000}}}; SightRead::NoteTrack track {notes, phrases, SightRead::TrackType::FiveFret, global_data}; SpData sp_data {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), ChGuitarEngine()}; BOOST_CHECK_CLOSE(sp_data.propagate_sp_over_whammy_max( {SightRead::Beat(0.0), SpMeasure(0.0)}, {SightRead::Beat(2.0), SpMeasure(2.0 / 3)}, 0.015), -1.0, 0.0001); BOOST_CHECK_CLOSE(sp_data.propagate_sp_over_whammy_max( {SightRead::Beat(0.0), SpMeasure(0.0)}, {SightRead::Beat(10.0), SpMeasure(8.0 / 3)}, 0.015), -1.0, 0.0001); } BOOST_AUTO_TEST_CASE(works_even_if_some_of_the_range_isnt_whammyable) { std::vector<SightRead::Note> notes {make_note(0, 1920), make_note(2112, 576), make_note(3000)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {3000}}}; SightRead::NoteTrack track {notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; SpData sp_data {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), ChGuitarEngine()}; BOOST_CHECK_CLOSE(sp_data.propagate_sp_over_whammy_max( {SightRead::Beat(0.0), SpMeasure(0.0)}, {SightRead::Beat(12.0), SpMeasure(3.0)}, 0.5), 0.496333, 0.0001); } BOOST_AUTO_TEST_CASE(sp_bar_does_not_exceed_full_bar) { std::vector<SightRead::Note> notes {make_note(0, 1920), make_note(2112, 576), make_note(3000)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {3000}}}; SightRead::NoteTrack track {notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; SpData sp_data {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), ChGuitarEngine()}; BOOST_CHECK_CLOSE(sp_data.propagate_sp_over_whammy_max( {SightRead::Beat(0.0), SpMeasure(0.0)}, {SightRead::Beat(10.0), SpMeasure(2.5)}, 1.0), 1.0, 0.0001); BOOST_CHECK_CLOSE(sp_data.propagate_sp_over_whammy_max( {SightRead::Beat(0.0), SpMeasure(0.0)}, {SightRead::Beat(10.5), SpMeasure(2.625)}, 1.0), 0.984375, 0.0001); } BOOST_AUTO_TEST_CASE(sustains_not_in_a_phrase_do_not_contribute_sp) { std::vector<SightRead::Note> notes {make_note(0, 1920), make_note(2112, 576), make_note(3000)}; SightRead::NoteTrack track {notes, {}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; SpData sp_data {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), ChGuitarEngine()}; BOOST_CHECK_CLOSE(sp_data.propagate_sp_over_whammy_max( {SightRead::Beat(0.0), SpMeasure(0.0)}, {SightRead::Beat(4.0), SpMeasure(1.0)}, 1.0), 0.875, 0.0001); } BOOST_AUTO_TEST_CASE(required_whammy_end_is_accounted_for) { std::vector<SightRead::Note> notes {make_note(0, 1920), make_note(2112, 576), make_note(3000)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {3000}}}; SightRead::NoteTrack track {notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; SpData sp_data {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), ChGuitarEngine()}; BOOST_CHECK_CLOSE(sp_data.propagate_sp_over_whammy_min( {SightRead::Beat(0.0), SpMeasure(0.0)}, {SightRead::Beat(4.0), SpMeasure(1.0)}, 0.5, {SightRead::Beat(2.0), SpMeasure(0.5)}), 0.441667, 0.0001); } BOOST_AUTO_TEST_CASE( check_optional_whammy_is_not_used_when_not_asked_for_in_minimum) { constexpr double NEG_INF = -std::numeric_limits<double>::infinity(); std::vector<SightRead::Note> notes {make_note(0, 768), make_note(3072)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {3100}}}; SightRead::NoteTrack track {notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; SpData sp_data {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), ChGuitarEngine()}; BOOST_CHECK_CLOSE(sp_data.propagate_sp_over_whammy_min( {SightRead::Beat(0.0), SpMeasure(0.0)}, {SightRead::Beat(4.0), SpMeasure(1.0)}, 0.5, {SightRead::Beat {NEG_INF}, SpMeasure {NEG_INF}}), 0.375, 0.0001); } BOOST_AUTO_TEST_SUITE_END() BOOST_AUTO_TEST_CASE(is_in_whammy_ranges_works_correctly) { std::vector<SightRead::Note> notes {make_note(0, 1920), make_note(2112)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {2000}}, {SightRead::Tick {2112}, SightRead::Tick {50}}}; SightRead::NoteTrack track {notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; SpData sp_data {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), ChGuitarEngine()}; BOOST_TEST(sp_data.is_in_whammy_ranges(SightRead::Beat(1.0))); BOOST_TEST(!sp_data.is_in_whammy_ranges(SightRead::Beat(11.0))); } BOOST_AUTO_TEST_SUITE(available_whammy_works_correctly) BOOST_AUTO_TEST_CASE(max_early_whammy) { std::vector<SightRead::Note> notes {make_note(0, 1920), make_note(2112), make_note(2304, 768)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {3000}}}; SightRead::NoteTrack track {notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; SpData sp_data {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), ChGuitarEngine()}; BOOST_CHECK_CLOSE( sp_data.available_whammy(SightRead::Beat(0.0), SightRead::Beat(16.0)), 0.471333, 0.0001); BOOST_CHECK_CLOSE( sp_data.available_whammy(SightRead::Beat(10.0), SightRead::Beat(11.0)), 0.0, 0.0001); BOOST_CHECK_CLOSE( sp_data.available_whammy(SightRead::Beat(1.0), SightRead::Beat(8.0)), 0.2333333, 0.0001); } BOOST_AUTO_TEST_CASE(mid_early_whammy) { std::vector<SightRead::Note> notes {make_note(0, 1920), make_note(2112), make_note(2304, 768)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {3000}}}; SightRead::NoteTrack track {notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; SpData sp_data {track, {{}, SpMode::Measure}, {}, {1.0, 0.5, SightRead::Second {0.0}, SightRead::Second {0.0}, SightRead::Second {0.0}}, ChGuitarEngine()}; BOOST_CHECK_CLOSE( sp_data.available_whammy(SightRead::Beat(0.0), SightRead::Beat(16.0)), 0.469, 0.0001); BOOST_CHECK_CLOSE( sp_data.available_whammy(SightRead::Beat(10.0), SightRead::Beat(11.0)), 0.0, 0.0001); BOOST_CHECK_CLOSE( sp_data.available_whammy(SightRead::Beat(1.0), SightRead::Beat(8.0)), 0.2333333, 0.0001); } BOOST_AUTO_TEST_CASE(negative_early_whammy) { std::vector<SightRead::Note> notes {make_note(0, 1920), make_note(2112), make_note(2304, 768)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {3000}}}; SightRead::NoteTrack track {notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; SpData sp_data {track, {{}, SpMode::Measure}, {}, {1.0, 0.0, SightRead::Second {2.5}, SightRead::Second {0.0}, SightRead::Second {0.0}}, ChGuitarEngine()}; BOOST_CHECK_CLOSE( sp_data.available_whammy(SightRead::Beat(0.0), SightRead::Beat(10.0)), 0.1666667, 0.0001); BOOST_CHECK_CLOSE( sp_data.available_whammy(SightRead::Beat(12.0), SightRead::Beat(16.0)), 0.0, 0.0001); } BOOST_AUTO_TEST_CASE(three_argument_version_works_correctly) { std::vector<SightRead::Note> notes {make_note(0, 1920), make_note(2112), make_note(2304, 768)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {3000}}}; SightRead::NoteTrack track {notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; SpData sp_data {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), ChGuitarEngine()}; BOOST_CHECK_CLOSE(sp_data.available_whammy(SightRead::Beat(0.0), SightRead::Beat(12.0), SightRead::Beat(12.0)), 0.3333333, 0.0001); } BOOST_AUTO_TEST_SUITE_END() BOOST_AUTO_TEST_SUITE(activation_end_point_works_correctly) BOOST_AUTO_TEST_CASE(works_when_sp_is_sufficient) { std::vector<SightRead::Note> notes {make_note(0)}; SightRead::NoteTrack track {notes, {}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; SpData sp_data {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), ChGuitarEngine()}; SpPosition start {SightRead::Beat(0.0), SpMeasure(0.0)}; SpPosition end {SightRead::Beat(1.0), SpMeasure(0.25)}; BOOST_CHECK_CLOSE( sp_data.activation_end_point(start, end, 0.5).beat.value(), 1.0, 0.0001); } BOOST_AUTO_TEST_CASE(works_when_sp_is_insufficient) { std::vector<SightRead::Note> notes {make_note(0)}; SightRead::NoteTrack track {notes, {}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; SpData sp_data {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), ChGuitarEngine()}; SpPosition start {SightRead::Beat(0.0), SpMeasure(0.0)}; SpPosition end {SightRead::Beat(1.0), SpMeasure(0.25)}; BOOST_CHECK_CLOSE( sp_data.activation_end_point(start, end, 0.01).beat.value(), 0.32, 0.0001); } BOOST_AUTO_TEST_CASE(works_when_adding_whammy_makes_sp_sufficient) { std::vector<SightRead::Note> notes {make_note(0, 192), make_note(950)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {1000}}}; SightRead::NoteTrack track {notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; SpData sp_data {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), ChGuitarEngine()}; SpPosition start {SightRead::Beat(0.0), SpMeasure(0.0)}; SpPosition end {SightRead::Beat(1.0), SpMeasure(0.25)}; BOOST_CHECK_CLOSE( sp_data.activation_end_point(start, end, 0.01).beat.value(), 1.0, 0.0001); } BOOST_AUTO_TEST_CASE(works_when_whammy_is_present_but_insufficient) { std::vector<SightRead::Note> notes {make_note(0, 192), make_note(950)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {1000}}}; SightRead::NoteTrack track {notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; SpData sp_data {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), ChGuitarEngine()}; SpPosition start {SightRead::Beat(0.0), SpMeasure(0.0)}; SpPosition end {SightRead::Beat(2.0), SpMeasure(0.5)}; BOOST_CHECK_CLOSE( sp_data.activation_end_point(start, end, 0.01).beat.value(), 1.386667, 0.0001); } BOOST_AUTO_TEST_CASE(works_when_whammy_is_present_but_accumulation_is_too_slow) { SightRead::TempoMap tempo_map {{{SightRead::Tick {0}, 2, 4}}, {}, {}, 192}; auto global_data = std::make_shared<SightRead::SongGlobalData>(); global_data->tempo_map(tempo_map); std::vector<SightRead::Note> notes {make_note(0, 192), make_note(950)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {1000}}}; SightRead::NoteTrack track {notes, phrases, SightRead::TrackType::FiveFret, global_data}; SpData sp_data {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), ChGuitarEngine()}; SpPosition start {SightRead::Beat(0.0), SpMeasure(0.0)}; SpPosition end {SightRead::Beat(1.0), SpMeasure(0.25)}; BOOST_CHECK_CLOSE( sp_data.activation_end_point(start, end, 0.01).beat.value(), 0.342857, 0.0001); } BOOST_AUTO_TEST_SUITE_END() BOOST_AUTO_TEST_SUITE(video_lag_is_taken_account_of) BOOST_AUTO_TEST_CASE(negative_video_lag_is_handled_correctly) { const std::vector<SightRead::Note> notes {make_note(192, 192)}; const std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {384}}}; const SightRead::NoteTrack track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; SpData sp_data {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), ChGuitarEngine()}; BOOST_TEST(sp_data.is_in_whammy_ranges(SightRead::Beat(0.9))); BOOST_TEST(sp_data.is_in_whammy_ranges(SightRead::Beat(1.9))); } BOOST_AUTO_TEST_CASE(positive_video_lag_is_handled_correctly) { const std::vector<SightRead::Note> notes {make_note(192, 192)}; const std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {384}}}; const SightRead::NoteTrack track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; SpData sp_data {track, {{}, SpMode::Measure}, {}, {1.0, 1.0, SightRead::Second {0.0}, SightRead::Second {0.1}, SightRead::Second {0.0}}, ChGuitarEngine()}; BOOST_TEST(!sp_data.is_in_whammy_ranges(SightRead::Beat(1.0))); BOOST_TEST(sp_data.is_in_whammy_ranges(SightRead::Beat(1.9))); } BOOST_AUTO_TEST_SUITE_END()
23,052
C++
.cpp
488
35.194672
80
0.563673
GenericMadScientist/CHOpt
33
4
5
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,753
processed_unittest.cpp
GenericMadScientist_CHOpt/tests/processed_unittest.cpp
/* * CHOpt - Star Power optimiser for Clone Hero * Copyright (C) 2020, 2021, 2022, 2023 Raymond Wright * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <https://www.gnu.org/licenses/>. */ #include <cstdlib> #include <boost/test/unit_test.hpp> #include "test_helpers.hpp" BOOST_AUTO_TEST_SUITE(three_arg_total_available_sp_counts_sp_correctly) BOOST_AUTO_TEST_CASE(phrases_are_counted_correctly) { std::vector<SightRead::Note> notes { make_note(0), make_note(192), make_note(384), make_note(576), make_note(768, 192), make_note(1152), make_note(1344), make_note(1536)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {50}}, {SightRead::Tick {384}, SightRead::Tick {50}}, {SightRead::Tick {768}, SightRead::Tick {400}}, {SightRead::Tick {1344}, SightRead::Tick {50}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong song {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; const auto& points = song.points(); BOOST_CHECK_EQUAL(song.total_available_sp(SightRead::Beat(0.0), points.cbegin(), points.cbegin() + 1), SpBar(0.25, 0.25)); BOOST_CHECK_EQUAL(song.total_available_sp(SightRead::Beat(0.0), points.cbegin(), points.cbegin() + 2), SpBar(0.25, 0.25)); BOOST_CHECK_EQUAL(song.total_available_sp(SightRead::Beat(0.5), points.cbegin() + 2, points.cbegin() + 3), SpBar(0.25, 0.25)); } BOOST_AUTO_TEST_CASE(whammy_is_counted_correctly) { std::vector<SightRead::Note> notes { make_note(0), make_note(192), make_note(384), make_note(576), make_note(768, 192), make_note(1152), make_note(1344), make_note(1536)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {50}}, {SightRead::Tick {384}, SightRead::Tick {50}}, {SightRead::Tick {768}, SightRead::Tick {400}}, {SightRead::Tick {1344}, SightRead::Tick {50}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong song {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; const auto& points = song.points(); auto result = song.total_available_sp( SightRead::Beat(4.0), points.cbegin() + 4, points.cbegin() + 5); BOOST_CHECK_CLOSE(result.min(), 0.0, 0.0001); BOOST_CHECK_CLOSE(result.max(), 0.001128472, 0.0001); } BOOST_AUTO_TEST_CASE(whammy_is_counted_correctly_even_started_mid_hold) { std::vector<SightRead::Note> notes { make_note(0), make_note(192), make_note(384), make_note(576), make_note(768, 192), make_note(1152), make_note(1344), make_note(1536)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {50}}, {SightRead::Tick {384}, SightRead::Tick {50}}, {SightRead::Tick {768}, SightRead::Tick {400}}, {SightRead::Tick {1344}, SightRead::Tick {50}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong song {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; const auto& points = song.points(); auto result = song.total_available_sp(SightRead::Beat(4.5), points.cend() - 3, points.cend() - 3); BOOST_CHECK_CLOSE(result.min(), 0.0, 0.0001); BOOST_CHECK_CLOSE(result.max(), 0.01666667, 0.0001); } BOOST_AUTO_TEST_CASE(required_whammy_end_is_accounted_for) { std::vector<SightRead::Note> notes { make_note(0), make_note(192), make_note(384), make_note(576), make_note(768, 192), make_note(1152), make_note(1344), make_note(1536)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {50}}, {SightRead::Tick {384}, SightRead::Tick {50}}, {SightRead::Tick {768}, SightRead::Tick {400}}, {SightRead::Tick {1344}, SightRead::Tick {50}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong song {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; const auto& points = song.points(); auto result = song.total_available_sp(SightRead::Beat(4.0), points.cbegin() + 4, points.cbegin() + 5, SightRead::Beat(4.02)); BOOST_CHECK_CLOSE(result.min(), 0.000666667, 0.0001); BOOST_CHECK_CLOSE(result.max(), 0.001128472, 0.0001); result = song.total_available_sp(SightRead::Beat(4.0), points.cbegin() + 4, points.cbegin() + 5, SightRead::Beat(4.10)); BOOST_CHECK_CLOSE(result.min(), 0.001128472, 0.0001); BOOST_CHECK_CLOSE(result.max(), 0.001128472, 0.0001); } BOOST_AUTO_TEST_CASE(sp_does_not_exceed_full_bar) { std::vector<SightRead::Note> notes { make_note(0), make_note(192), make_note(384), make_note(576), make_note(768, 192), make_note(1152), make_note(1344), make_note(1536)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {50}}, {SightRead::Tick {384}, SightRead::Tick {50}}, {SightRead::Tick {768}, SightRead::Tick {400}}, {SightRead::Tick {1344}, SightRead::Tick {50}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong song {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; const auto& points = song.points(); BOOST_CHECK_EQUAL(song.total_available_sp(SightRead::Beat(0.0), points.cbegin(), points.cend() - 1), SpBar(1.0, 1.0)); } BOOST_AUTO_TEST_CASE( sp_notes_are_counted_from_first_point_when_start_is_past_middle) { std::vector<SightRead::Note> notes { make_note(0), make_note(192), make_note(384), make_note(576), make_note(768, 192), make_note(1152), make_note(1344), make_note(1536)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {50}}, {SightRead::Tick {384}, SightRead::Tick {50}}, {SightRead::Tick {768}, SightRead::Tick {400}}, {SightRead::Tick {1344}, SightRead::Tick {50}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong song {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; const auto& points = song.points(); BOOST_CHECK_EQUAL(song.total_available_sp(SightRead::Beat(0.05), points.cbegin(), points.cbegin() + 1), SpBar(0.25, 0.25)); } BOOST_AUTO_TEST_CASE(unison_bonuses_are_taken_account_of) { std::vector<SightRead::Note> notes { make_note(0), make_note(192), make_note(384), make_note(576), make_note(768, 192), make_note(1152), make_note(1344), make_note(1536)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {50}}, {SightRead::Tick {384}, SightRead::Tick {50}}, {SightRead::Tick {768}, SightRead::Tick {400}}, {SightRead::Tick {1344}, SightRead::Tick {50}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong song {note_track, {{}, SpMode::OdBeat}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), Rb3Engine(), {}, {{SightRead::Tick {0}, SightRead::Tick {50}}}}; const auto& points = song.points(); BOOST_CHECK_EQUAL(song.total_available_sp(SightRead::Beat(0.0), points.cbegin(), points.cbegin() + 1), SpBar(0.5, 0.5)); } BOOST_AUTO_TEST_SUITE_END() BOOST_AUTO_TEST_CASE( total_available_sp_with_earliest_pos_counts_sp_correctly_and_gives_earliest_posiiton) { std::vector<SightRead::Note> notes {make_note(0, 1459), make_note(1459)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {100}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong song {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; const auto& points = song.points(); const auto& [sp_bar, pos] = song.total_available_sp_with_earliest_pos( SightRead::Beat(0.0), points.cbegin(), std::prev(points.cend()), std::prev(points.cend(), 2)->position); BOOST_CHECK_CLOSE(sp_bar.max(), 0.5, 0.001); BOOST_CHECK_CLOSE(pos.beat.value(), 7.5, 0.001); } BOOST_AUTO_TEST_CASE(total_available_sp_with_earliest_pos_counts_unison_bonuses) { std::vector<SightRead::Note> notes {make_note(0), make_note(192)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {100}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong song {note_track, {{}, SpMode::OdBeat}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), Rb3Engine(), {}, {SightRead::Tick {0}}}; const auto& points = song.points(); const auto& [sp_bar, pos] = song.total_available_sp_with_earliest_pos( SightRead::Beat(0.0), points.cbegin(), std::next(points.cbegin()), {SightRead::Beat(0.0), SpMeasure(0.0)}); BOOST_CHECK_CLOSE(sp_bar.max(), 0.5, 0.0001); } BOOST_AUTO_TEST_SUITE(is_candidate_valid_works_with_no_whammy) BOOST_AUTO_TEST_CASE(full_bar_works_with_time_signatures) { std::vector<SightRead::Note> notes {make_note(0), make_note(1536), make_note(3072), make_note(6144)}; SightRead::NoteTrack note_track { notes, {}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; const auto& points = track.points(); ActivationCandidate candidate {points.cbegin(), points.cbegin() + 3, {SightRead::Beat(0.0), SpMeasure(0.0)}, {1.0, 1.0}}; SightRead::TempoMap tempo_map {{{SightRead::Tick {0}, 3, 4}}, {}, {}, 192}; auto global_data = std::make_shared<SightRead::SongGlobalData>(); global_data->tempo_map(tempo_map); SightRead::NoteTrack second_note_track { notes, {}, SightRead::TrackType::FiveFret, global_data}; ProcessedSong second_track {second_note_track, {tempo_map, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; const auto& second_points = second_track.points(); ActivationCandidate second_candidate { second_points.cbegin(), second_points.cbegin() + 3, {SightRead::Beat(0.0), SpMeasure(0.0)}, {1.0, 1.0}}; BOOST_CHECK_EQUAL(track.is_candidate_valid(candidate).validity, ActValidity::success); BOOST_CHECK_EQUAL( second_track.is_candidate_valid(second_candidate).validity, ActValidity::insufficient_sp); } BOOST_AUTO_TEST_CASE(half_bar_works_with_time_signatures) { std::vector<SightRead::Note> notes {make_note(0), make_note(1536), make_note(3072), make_note(6144)}; SightRead::NoteTrack note_track { notes, {}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; const auto& points = track.points(); ActivationCandidate candidate {points.cbegin(), points.cbegin() + 2, {SightRead::Beat(0.0), SpMeasure(0.0)}, {0.5, 0.5}}; SightRead::TempoMap tempo_map {{{SightRead::Tick {0}, 3, 4}}, {}, {}, 192}; auto global_data = std::make_shared<SightRead::SongGlobalData>(); global_data->tempo_map(tempo_map); SightRead::NoteTrack second_note_track { notes, {}, SightRead::TrackType::FiveFret, global_data}; ProcessedSong second_track {second_note_track, {tempo_map, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; const auto& second_points = second_track.points(); ActivationCandidate second_candidate { second_points.cbegin(), second_points.cbegin() + 2, {SightRead::Beat(0.0), SpMeasure(0.0)}, {0.5, 0.5}}; BOOST_CHECK_EQUAL(track.is_candidate_valid(candidate).validity, ActValidity::success); BOOST_CHECK_EQUAL( second_track.is_candidate_valid(second_candidate).validity, ActValidity::insufficient_sp); } BOOST_AUTO_TEST_CASE(below_half_bar_never_works) { std::vector<SightRead::Note> notes {make_note(0), make_note(1536), make_note(3072), make_note(6144)}; SightRead::NoteTrack note_track { notes, {}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; const auto& points = track.points(); ActivationCandidate candidate {points.cbegin(), points.cbegin() + 1, {SightRead::Beat(0.0), SpMeasure(0.0)}, {0.25, 0.25}}; BOOST_CHECK_EQUAL(track.is_candidate_valid(candidate).validity, ActValidity::insufficient_sp); } BOOST_AUTO_TEST_CASE(check_next_point_needs_to_not_lie_in_activation) { std::vector<SightRead::Note> notes {make_note(0), make_note(1536), make_note(3072), make_note(6144)}; SightRead::NoteTrack note_track { notes, {}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; const auto& points = track.points(); ActivationCandidate candidate {points.cbegin(), points.cbegin() + 1, {SightRead::Beat(0.0), SpMeasure(0.0)}, {0.6, 0.6}}; BOOST_CHECK_EQUAL(track.is_candidate_valid(candidate).validity, ActValidity::surplus_sp); } BOOST_AUTO_TEST_CASE(check_intermediate_sp_is_accounted_for) { std::vector<SightRead::Note> notes {make_note(0), make_note(1536), make_note(3072), make_note(6144)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {3000}, SightRead::Tick {100}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; const auto& points = track.points(); ActivationCandidate candidate {points.cbegin(), points.cbegin() + 3, {SightRead::Beat(0.0), SpMeasure(0.0)}, {0.8, 0.8}}; BOOST_CHECK_EQUAL(track.is_candidate_valid(candidate).validity, ActValidity::success); } BOOST_AUTO_TEST_CASE(check_only_reached_intermediate_sp_is_accounted_for) { std::vector<SightRead::Note> notes {make_note(0), make_note(1536), make_note(6000), make_note(6144)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {6000}, SightRead::Tick {100}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; const auto& points = track.points(); ActivationCandidate candidate {points.cbegin(), points.cbegin() + 3, {SightRead::Beat(0.0), SpMeasure(0.0)}, {0.8, 0.8}}; BOOST_CHECK_EQUAL(track.is_candidate_valid(candidate).validity, ActValidity::insufficient_sp); } BOOST_AUTO_TEST_CASE(last_notes_sp_status_is_not_ignored) { std::vector<SightRead::Note> notes {make_note(0), make_note(1536), make_note(3072), make_note(4000)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {3072}, SightRead::Tick {100}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; const auto& points = track.points(); ActivationCandidate candidate {points.cbegin(), points.cbegin() + 2, {SightRead::Beat(0.0), SpMeasure(0.0)}, {0.5, 0.5}}; BOOST_CHECK_EQUAL(track.is_candidate_valid(candidate).validity, ActValidity::surplus_sp); } BOOST_AUTO_TEST_CASE(sp_bar_does_not_exceed_full_bar) { std::vector<SightRead::Note> notes {make_note(0), make_note(2), make_note(7000)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {1}}, {SightRead::Tick {2}, SightRead::Tick {1}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; const auto& points = track.points(); ActivationCandidate candidate {points.cbegin(), points.cbegin() + 2, {SightRead::Beat(0.0), SpMeasure(0.0)}, {1.0, 1.0}}; BOOST_CHECK_EQUAL(track.is_candidate_valid(candidate).validity, ActValidity::insufficient_sp); } BOOST_AUTO_TEST_CASE(earliest_activation_point_is_considered) { std::vector<SightRead::Note> notes {make_note(0), make_note(1536), make_note(3072), make_note(6144)}; SightRead::NoteTrack note_track { notes, {}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; const auto& points = track.points(); ActivationCandidate candidate {points.cbegin(), points.cbegin() + 1, {SightRead::Beat(-2.0), SpMeasure(-0.5)}, {0.53125, 0.53125}}; BOOST_CHECK_EQUAL(track.is_candidate_valid(candidate).validity, ActValidity::success); } // There was a bug where if an optimal activation starts on an SP granting note, // and the note must be squeezed late, then the activation could be drawn too // far. This happened in the path for Das Neue bleibt beim Alten from CSC // November 2020. BOOST_AUTO_TEST_CASE( activations_starting_on_an_sp_granting_note_have_the_correct_end) { SightRead::TempoMap tempo_map {{{SightRead::Tick {0}, 4, 4}}, {{SightRead::Tick {0}, 300000}}, {}, 192}; auto global_data = std::make_shared<SightRead::SongGlobalData>(); global_data->tempo_map(tempo_map); std::vector<SightRead::Note> notes { make_chord( 384, {{SightRead::FIVE_FRET_GREEN, 0}, {SightRead::FIVE_FRET_RED, 0}}), make_note(5088), make_note(5136)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {384}, SightRead::Tick {1}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, global_data}; ProcessedSong track {note_track, {tempo_map, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; const auto& points = track.points(); ActivationCandidate candidate {points.cbegin(), points.cbegin() + 1, {SightRead::Beat(2.24), SpMeasure(0.56)}, {0.5, 0.5}}; const auto result = track.is_candidate_valid( candidate, 1.0, {SightRead::Beat {27}, SpMeasure {6.75}}); BOOST_CHECK_EQUAL(result.validity, ActValidity::success); BOOST_CHECK_LT(result.ending_position.beat.value(), 26.5); } BOOST_AUTO_TEST_SUITE_END() BOOST_AUTO_TEST_SUITE(is_candidate_valid_acknowledges_unison_bonuses) BOOST_AUTO_TEST_CASE(mid_activation_unison_bonuses_are_accounted_for) { std::vector<SightRead::Note> notes {make_note(192), make_note(5376)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {192}, SightRead::Tick {1}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::OdBeat}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), Rb3Engine(), {}, {SightRead::Tick {192}}}; const auto& points = track.points(); ActivationCandidate candidate {points.cbegin(), points.cbegin() + 1, {SightRead::Beat(0.0), SpMeasure(0.0)}, {0.5, 0.5}}; const auto result = track.is_candidate_valid(candidate); BOOST_CHECK_EQUAL(result.validity, ActValidity::success); } BOOST_AUTO_TEST_CASE(last_note_unison_bonus_accounted_for_excess_sp) { std::vector<SightRead::Note> notes {make_note(192), make_note(5376)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {192}, SightRead::Tick {1}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::OdBeat}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), Rb3Engine(), {}, {SightRead::Tick {192}}}; const auto& points = track.points(); ActivationCandidate candidate {points.cbegin(), points.cbegin(), {SightRead::Beat(0.0), SpMeasure(0.0)}, {0.5, 0.5}}; const auto result = track.is_candidate_valid(candidate); BOOST_CHECK_EQUAL(result.validity, ActValidity::surplus_sp); } BOOST_AUTO_TEST_SUITE_END() BOOST_AUTO_TEST_SUITE(is_candidate_valid_works_with_whammy) BOOST_AUTO_TEST_CASE(check_whammy_is_counted) { std::vector<SightRead::Note> notes {make_note(0, 960), make_note(3840), make_note(6144)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {7000}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; const auto& points = track.points(); ActivationCandidate candidate {points.cbegin(), points.cend() - 2, {SightRead::Beat(0.0), SpMeasure(0.0)}, {0.5, 0.5}}; BOOST_CHECK_EQUAL(track.is_candidate_valid(candidate).validity, ActValidity::success); } // This comes up in Epidox: otherwise, CHOpt doesn't think you can squeeze to // the G after the B in the Robotic Buildup activation. BOOST_AUTO_TEST_CASE(check_whammy_from_end_of_sp_sustain_before_note_is_counted) { std::vector<SightRead::Note> notes {make_note(0, 960), make_note(2880), make_note(6144)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {7000}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; const auto& points = track.points(); ActivationCandidate candidate {points.cend() - 2, points.cend() - 1, {SightRead::Beat(1.0), SpMeasure(0.25)}, {0.5, 0.5}}; BOOST_CHECK_EQUAL(track.is_candidate_valid(candidate).validity, ActValidity::success); } // There was a bug where an activation starting on an SP sustain would double // count the whammy around the note, giving impossible activations. An example // is the last activatiom of Soulless. BOOST_AUTO_TEST_CASE( whammy_around_the_start_of_an_sp_sustain_is_not_doubled_counted) { std::vector<SightRead::Note> notes {make_note(0), make_note(192), make_note(384, 192), make_note(5260)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {384}, SightRead::Tick {1}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; const auto& points = track.points(); ActivationCandidate candidate {points.cbegin() + 2, points.cend() - 1, {SightRead::Beat(1.0), SpMeasure(0.25)}, {0.5, 0.5}}; BOOST_CHECK_EQUAL(track.is_candidate_valid(candidate).validity, ActValidity::insufficient_sp); } BOOST_AUTO_TEST_CASE(check_compressed_activations_are_counted) { std::vector<SightRead::Note> notes {make_note(0, 960), make_note(3840), make_note(6144)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {7000}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; const auto& points = track.points(); ActivationCandidate candidate {points.cbegin(), points.cend() - 2, {SightRead::Beat(0.0), SpMeasure(0.0)}, {0.5, 0.9}}; BOOST_CHECK_EQUAL(track.is_candidate_valid(candidate).validity, ActValidity::success); } BOOST_AUTO_TEST_SUITE_END() BOOST_AUTO_TEST_SUITE(is_candidate_valid_takes_into_account_minimum_sp) BOOST_AUTO_TEST_CASE(lower_sp_is_considered) { std::vector<SightRead::Note> notes {make_note(0), make_note(1536), make_note(2304), make_note(3072), make_note(4608)}; SightRead::NoteTrack note_track { notes, {}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; const auto& points = track.points(); ActivationCandidate candidate {points.cbegin(), points.cbegin() + 3, {SightRead::Beat(0.0), SpMeasure(0.0)}, {0.5, 1.0}}; BOOST_CHECK_EQUAL(track.is_candidate_valid(candidate).validity, ActValidity::success); } BOOST_AUTO_TEST_CASE(lower_sp_is_only_considered_down_to_a_half_bar) { std::vector<SightRead::Note> notes {make_note(0), make_note(1536), make_note(2304), make_note(3072), make_note(4608)}; SightRead::NoteTrack note_track { notes, {}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; const auto& points = track.points(); ActivationCandidate candidate {points.cbegin(), points.cbegin() + 1, {SightRead::Beat(0.0), SpMeasure(0.0)}, {0.25, 1.0}}; BOOST_CHECK_EQUAL(track.is_candidate_valid(candidate).validity, ActValidity::surplus_sp); } BOOST_AUTO_TEST_SUITE_END() BOOST_AUTO_TEST_SUITE(is_candidate_valid_takes_into_account_squeezing) BOOST_AUTO_TEST_CASE( front_end_and_back_end_of_the_activation_endpoints_are_considered) { std::vector<SightRead::Note> notes {make_note(0), make_note(3110)}; SightRead::NoteTrack note_track { notes, {}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; const auto& points = track.points(); ActivationCandidate candidate {points.cbegin(), points.cbegin() + 1, {SightRead::Beat(0.0), SpMeasure(0.0)}, {0.5, 0.5}}; BOOST_CHECK_EQUAL(track.is_candidate_valid(candidate).validity, ActValidity::success); } BOOST_AUTO_TEST_CASE(next_note_can_be_squeezed_late_to_avoid_going_too_far) { std::vector<SightRead::Note> notes {make_note(0), make_note(3034), make_note(3053)}; SightRead::NoteTrack note_track { notes, {}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; const auto& points = track.points(); ActivationCandidate candidate {points.cbegin(), points.cbegin() + 1, {SightRead::Beat(0.0), SpMeasure(0.0)}, {0.5, 0.5}}; BOOST_CHECK_EQUAL(track.is_candidate_valid(candidate).validity, ActValidity::success); } BOOST_AUTO_TEST_CASE(intermediate_sp_can_be_hit_early) { std::vector<SightRead::Note> notes {make_note(0), make_note(3102), make_note(4608)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {3100}, SightRead::Tick {100}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; const auto& points = track.points(); ActivationCandidate candidate {points.cbegin(), points.cbegin() + 2, {SightRead::Beat(0.0), SpMeasure(0.0)}, {0.5, 0.5}}; BOOST_CHECK_EQUAL(track.is_candidate_valid(candidate).validity, ActValidity::success); } BOOST_AUTO_TEST_CASE(intermediate_sp_can_be_hit_late) { std::vector<SightRead::Note> notes {make_note(0), make_note(768), make_note(6942)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {768}, SightRead::Tick {100}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; const auto& points = track.points(); ActivationCandidate candidate {points.cbegin(), points.cbegin() + 2, {SightRead::Beat(0.0), SpMeasure(0.0)}, {1.0, 1.0}}; BOOST_CHECK_EQUAL(track.is_candidate_valid(candidate).validity, ActValidity::success); } BOOST_AUTO_TEST_SUITE_END() BOOST_AUTO_TEST_CASE(is_candidate_valid_handles_very_high_bpm_sp_granting_notes) { std::vector<SightRead::Note> notes {make_note(0), make_note(192), make_note(768), make_note(4608), make_note(5376)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {4608}, SightRead::Tick {50}}}; SightRead::TempoMap tempo_map { {}, {{SightRead::Tick {3840}, 4000000}}, {}, 192}; auto global_data = std::make_shared<SightRead::SongGlobalData>(); global_data->tempo_map(tempo_map); SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, global_data}; ProcessedSong track {note_track, {tempo_map, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; const auto& points = track.points(); ActivationCandidate candidate {points.cbegin() + 2, points.cbegin() + 4, {SightRead::Beat(0.0), SpMeasure(0.0)}, {0.5, 0.5}}; BOOST_CHECK_EQUAL(track.is_candidate_valid(candidate).validity, ActValidity::success); } BOOST_AUTO_TEST_SUITE(is_candidate_valid_takes_into_account_squeeze_param) BOOST_AUTO_TEST_CASE(front_end_and_back_end_are_restricted) { std::vector<SightRead::Note> notes {make_note(0), make_note(3110)}; SightRead::NoteTrack note_track { notes, {}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; const auto& points = track.points(); ActivationCandidate candidate {points.cbegin(), points.cbegin() + 1, {SightRead::Beat(0.0), SpMeasure(0.0)}, {0.5, 0.5}}; BOOST_CHECK_EQUAL(track.is_candidate_valid(candidate, 0.5).validity, ActValidity::insufficient_sp); BOOST_CHECK_EQUAL(track.is_candidate_valid(candidate, 1.0).validity, ActValidity::success); } BOOST_AUTO_TEST_CASE(Intermediate_sp_front_end_is_restricted) { std::vector<SightRead::Note> notes {make_note(0), make_note(3102), make_note(4608)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {3100}, SightRead::Tick {100}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; const auto& points = track.points(); ActivationCandidate candidate {points.cbegin(), points.cbegin() + 2, {SightRead::Beat(0.0), SpMeasure(0.0)}, {0.5, 0.5}}; BOOST_CHECK_EQUAL(track.is_candidate_valid(candidate, 0.5).validity, ActValidity::insufficient_sp); BOOST_CHECK_EQUAL(track.is_candidate_valid(candidate, 1.0).validity, ActValidity::success); } BOOST_AUTO_TEST_CASE(intermediate_sp_back_end_is_restricted) { std::vector<SightRead::Note> notes {make_note(0), make_note(768), make_note(6942)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {768}, SightRead::Tick {100}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; const auto& points = track.points(); ActivationCandidate candidate {points.cbegin(), points.cbegin() + 2, {SightRead::Beat(0.0), SpMeasure(0.0)}, {1.0, 1.0}}; BOOST_CHECK_EQUAL(track.is_candidate_valid(candidate, 0.5).validity, ActValidity::insufficient_sp); BOOST_CHECK_EQUAL(track.is_candidate_valid(candidate, 1.0).validity, ActValidity::success); } BOOST_AUTO_TEST_CASE(next_note_back_end_is_restricted) { std::vector<SightRead::Note> notes {make_note(0), make_note(3034), make_note(3053)}; SightRead::NoteTrack note_track { notes, {}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; const auto& points = track.points(); ActivationCandidate candidate {points.cbegin(), points.cbegin() + 1, {SightRead::Beat(0.0), SpMeasure(0.0)}, {0.5, 0.5}}; BOOST_CHECK_EQUAL(track.is_candidate_valid(candidate, 0.5).validity, ActValidity::surplus_sp); BOOST_CHECK_EQUAL(track.is_candidate_valid(candidate, 1.0).validity, ActValidity::success); } BOOST_AUTO_TEST_CASE(end_position_is_finite_if_activation_goes_past_last_note) { std::vector<SightRead::Note> notes {make_note(0)}; SightRead::NoteTrack note_track { notes, {}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; const auto& points = track.points(); ActivationCandidate candidate {points.cbegin(), points.cbegin(), {SightRead::Beat(0.0), SpMeasure(0.0)}, {1.0, 1.0}}; auto result = track.is_candidate_valid(candidate, 1.0); BOOST_CHECK_EQUAL(result.validity, ActValidity::success); BOOST_CHECK_LT(result.ending_position.beat.value(), 40.0); } BOOST_AUTO_TEST_SUITE_END() BOOST_AUTO_TEST_SUITE(is_candidate_valid_takes_into_account_no_overlap) BOOST_AUTO_TEST_CASE(mid_act_phrases_not_collected) { std::vector<SightRead::Note> notes {make_note(0), make_note(2688), make_note(3072), make_note(3840)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {2688}, SightRead::Tick {50}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), Gh1Engine(), {}, {}}; const auto& points = track.points(); ActivationCandidate candidate {points.cbegin(), points.cbegin() + 2, {SightRead::Beat(0.0), SpMeasure(0.0)}, {0.5, 0.5}}; BOOST_CHECK_EQUAL(track.is_candidate_valid(candidate, 1.0).validity, ActValidity::success); } BOOST_AUTO_TEST_CASE(end_of_act_phrase_not_collected) { std::vector<SightRead::Note> notes {make_note(0), make_note(3072), make_note(3840)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {3072}, SightRead::Tick {50}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), Gh1Engine(), {}, {}}; const auto& points = track.points(); ActivationCandidate candidate {points.cbegin(), points.cbegin() + 1, {SightRead::Beat(0.0), SpMeasure(0.0)}, {0.5, 0.5}}; BOOST_CHECK_EQUAL(track.is_candidate_valid(candidate, 1.0).validity, ActValidity::success); } BOOST_AUTO_TEST_CASE(mid_act_whammy_is_not_collected) { std::vector<SightRead::Note> notes {make_note(0, 1920), make_note(3456)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {50}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), Gh1Engine(), {}, {}}; const auto& points = track.points(); ActivationCandidate candidate {points.cbegin(), points.cend() - 1, {SightRead::Beat(0.0), SpMeasure(0.0)}, {0.5, 0.5}}; BOOST_CHECK_EQUAL(track.is_candidate_valid(candidate, 1.0).validity, ActValidity::insufficient_sp); } BOOST_AUTO_TEST_CASE(mid_act_whammy_is_not_collected_for_end_calculation) { std::vector<SightRead::Note> notes {make_note(0, 2304)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {50}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), Gh1Engine(), {}, {}}; const auto& points = track.points(); ActivationCandidate candidate {points.cbegin(), points.cend() - 1, {SightRead::Beat(0.0), SpMeasure(0.0)}, {0.5, 0.5}}; BOOST_CHECK_CLOSE( track .is_candidate_valid(candidate, 0.0, {SightRead::Beat {1.0}, SpMeasure {0.25}}) .ending_position.beat.value(), 16.0, 0.0001); } // This happened in GH1 Cheat on the Church second act, causing CHOpt to think // you could go all the way back to the yellow. BOOST_AUTO_TEST_CASE(mid_act_whammy_around_sp_granting_note_doesnt_get_added) { std::vector<SightRead::Note> notes {make_note(0), make_note(768, 192), make_note(3168)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {768}, SightRead::Tick {50}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), Gh1Engine(), {}, {}}; const auto& points = track.points(); ActivationCandidate candidate {points.cbegin(), points.cend() - 1, {SightRead::Beat(0.0), SpMeasure(0.0)}, {0.5, 0.5}}; BOOST_CHECK_EQUAL(track.is_candidate_valid(candidate, 1.0).validity, ActValidity::insufficient_sp); } BOOST_AUTO_TEST_SUITE_END() BOOST_AUTO_TEST_CASE(is_candidate_valid_takes_into_account_forced_whammy) { std::vector<SightRead::Note> notes {make_note(0, 768), make_note(3072), make_note(3264)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {3300}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; const auto& points = track.points(); ActivationCandidate candidate {points.cbegin(), points.cend() - 2, {SightRead::Beat(0.0), SpMeasure(0.0)}, {0.5, 0.5}}; BOOST_CHECK_EQUAL( track .is_candidate_valid(candidate, 1.0, {SightRead::Beat(0.0), SpMeasure(0.0)}) .validity, ActValidity::success); BOOST_CHECK_EQUAL( track .is_candidate_valid(candidate, 1.0, {SightRead::Beat(4.0), SpMeasure(1.0)}) .validity, ActValidity::surplus_sp); } BOOST_AUTO_TEST_CASE( is_candidate_valid_also_takes_account_of_whammy_from_end_of_sp_sustain_before_note_is_counted) { std::vector<SightRead::Note> notes {make_note(0, 960), make_note(2880), make_note(6144)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {7000}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; const auto& points = track.points(); ActivationCandidate candidate {points.cend() - 2, points.cend() - 1, {SightRead::Beat(1.0), SpMeasure(0.25)}, {0.5, 0.5}}; BOOST_CHECK_EQUAL(track.is_candidate_valid(candidate, 0.0).validity, ActValidity::success); } // This is to stop a bug that appears in Edd Instrument Solo from CTH2: the last // note is an SP sustain and the last activation was shown as ending during it, // when it should go past the end of the song. BOOST_AUTO_TEST_CASE( is_candidate_valid_takes_account_of_overlapped_phrase_at_end_if_last_note_is_whammy) { std::vector<SightRead::Note> notes {make_note(0), make_note(192), make_note(384), make_note(3456, 192)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {1}}, {SightRead::Tick {192}, SightRead::Tick {1}}, {SightRead::Tick {3456}, SightRead::Tick {1}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; const auto& points = track.points(); ActivationCandidate candidate {points.cbegin() + 2, points.cend() - 1, {SightRead::Beat(1.0), SpMeasure(0.25)}, {0.5, 0.5}}; auto result = track.is_candidate_valid(candidate, 0.0); BOOST_CHECK_GT(result.ending_position.beat.value(), 20.0); } // This is to stop a bug that appears in Time Traveler from CB: some of the // mid-sustain activations were misdrawn. The exact problem is that if we must // activate past the earliest activation point in order for the activation to // work, then the minimum sp after hitting the point is not clamped to 0, which // caused the endpoint to be too early. BOOST_AUTO_TEST_CASE(is_candidate_valid_correctly_clamps_low_sp) { SightRead::TempoMap tempo_map {{{SightRead::Tick {0}, 1, 4}}, {}, {}, 192}; auto global_data = std::make_shared<SightRead::SongGlobalData>(); global_data->tempo_map(tempo_map); std::vector<SightRead::Note> notes {make_note(0, 6720)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {1}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, global_data}; ProcessedSong track {note_track, {tempo_map, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; const auto& points = track.points(); ActivationCandidate candidate {points.cbegin() + 500, points.cbegin() + 750, {SightRead::Beat(0.0), SpMeasure(0.0)}, {1.0, 1.0}}; auto result = track.is_candidate_valid(candidate, 0.0); BOOST_CHECK_GT(result.ending_position.beat.value(), 27.3); } BOOST_AUTO_TEST_CASE(adjusted_hit_window_functions_return_correct_values) { std::vector<SightRead::Note> notes {make_note(0)}; SightRead::NoteTrack note_track { notes, {}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; const auto& points = track.points(); BOOST_CHECK_CLOSE( track.adjusted_hit_window_start(points.cbegin(), 0.5).beat.value(), -0.07, 0.0001); BOOST_CHECK_CLOSE( track.adjusted_hit_window_start(points.cbegin(), 1.0).beat.value(), -0.14, 0.0001); BOOST_CHECK_CLOSE( track.adjusted_hit_window_end(points.cbegin(), 0.5).beat.value(), 0.07, 0.0001); BOOST_CHECK_CLOSE( track.adjusted_hit_window_end(points.cbegin(), 1.0).beat.value(), 0.14, 0.0001); } BOOST_AUTO_TEST_SUITE(video_lag_is_taken_account_of) BOOST_AUTO_TEST_CASE(effect_on_whammy_is_taken_account_of) { std::vector<SightRead::Note> notes {make_note(192), make_note(384, 192), make_note(768)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {384}, SightRead::Tick {1}}}; SightRead::NoteTrack track {notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong song {track, {{}, SpMode::Measure}, {0.0, 0.0, SightRead::Second {0.0}, SightRead::Second {-0.1}, SightRead::Second {0.0}}, SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; const auto& points = song.points(); auto result = song.total_available_sp(SightRead::Beat(0.0), points.cbegin(), std::prev(points.cend())); BOOST_CHECK_CLOSE(result.max(), 0.29, 0.0001); } BOOST_AUTO_TEST_CASE(effect_on_notes_is_taken_account_of) { SightRead::TempoMap tempo_map { {{SightRead::Tick {0}, 4, 4}, {SightRead::Tick {3840}, 2, 4}}, {}, {}, 192}; auto global_data = std::make_shared<SightRead::SongGlobalData>(); global_data->tempo_map(tempo_map); std::vector<SightRead::Note> notes {make_note(768), make_note(3840)}; SightRead::NoteTrack track { notes, {}, SightRead::TrackType::FiveFret, global_data}; ProcessedSong song {track, {tempo_map, SpMode::Measure}, {0.0, 0.0, SightRead::Second {0.0}, SightRead::Second {0.1}, SightRead::Second {0.0}}, SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; const auto& points = song.points(); ActivationCandidate candidate {points.cbegin(), points.cbegin() + 1, {SightRead::Beat(0.0), SpMeasure(0.0)}, {0.5, 0.5}}; auto result = song.is_candidate_valid(candidate); BOOST_CHECK_EQUAL(result.validity, ActValidity::insufficient_sp); } BOOST_AUTO_TEST_SUITE_END() BOOST_AUTO_TEST_SUITE(is_drums_returns_the_correct_value) BOOST_AUTO_TEST_CASE(false_for_guitar) { SightRead::NoteTrack note_track { {}, {}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChDrumEngine(), {}, {}}; BOOST_CHECK(!track.is_drums()); } BOOST_AUTO_TEST_CASE(true_for_drums) { SightRead::NoteTrack note_track { {}, {}, SightRead::TrackType::Drums, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChDrumEngine(), {}, {}}; BOOST_TEST(track.is_drums()); } BOOST_AUTO_TEST_SUITE_END() BOOST_AUTO_TEST_SUITE(path_summary_produces_the_correct_output) BOOST_AUTO_TEST_CASE(overlap_and_es_are_denoted_correctly) { std::vector<SightRead::Note> notes {make_note(0), make_note(192), make_note(384), make_note(576), make_note(6144)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {50}}, {SightRead::Tick {192}, SightRead::Tick {50}}, {SightRead::Tick {384}, SightRead::Tick {50}}, {SightRead::Tick {6144}, SightRead::Tick {50}}}; std::vector<SightRead::Solo> solos { {SightRead::Tick {0}, SightRead::Tick {50}, 50}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; note_track.solos(solos); ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; const auto& points = track.points(); Path path {{{points.cbegin() + 2, points.cbegin() + 3, SightRead::Beat {0.0}, SightRead::Beat {0.0}}}, 100}; const char* desired_path_output = "Path: 2(+1)-ES1\n" "No SP score: 300\n" "Total score: 400\n" "Average multiplier: 1.400x\n" "2(+1): NN (G)"; BOOST_CHECK_EQUAL(track.path_summary(path), desired_path_output); } BOOST_AUTO_TEST_CASE(overlapped_sp_is_handled_correctly_for_non_overlap_games) { std::vector<SightRead::Note> notes {make_note(0), make_note(192), make_note(384), make_note(576), make_note(6144)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {50}}, {SightRead::Tick {192}, SightRead::Tick {50}}, {SightRead::Tick {384}, SightRead::Tick {50}}, {SightRead::Tick {6144}, SightRead::Tick {50}}}; std::vector<SightRead::Solo> solos { {SightRead::Tick {0}, SightRead::Tick {50}, 50}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; note_track.solos(solos); ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), Gh1Engine(), {}, {}}; const auto& points = track.points(); Path path {{{points.cbegin() + 2, points.cbegin() + 3, SightRead::Beat {0.0}, SightRead::Beat {0.0}}}, 100}; const char* desired_path_output = "Path: 2-S1-ES1\n" "No SP score: 300\n" "Total score: 400\n" "2: NN (G)"; BOOST_CHECK_EQUAL(track.path_summary(path), desired_path_output); } BOOST_AUTO_TEST_CASE(no_overlap_is_denoted_correctly) { std::vector<SightRead::Note> notes {make_note(0), make_note(192), make_note(384), make_note(576), make_note(6144)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {50}}, {SightRead::Tick {192}, SightRead::Tick {50}}, {SightRead::Tick {384}, SightRead::Tick {50}}, {SightRead::Tick {6144}, SightRead::Tick {50}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; const auto& points = track.points(); Path path {{{points.cbegin() + 3, points.cbegin() + 3, SightRead::Beat {0.0}, SightRead::Beat {0.0}}}, 50}; const char* desired_path_output = "Path: 3-ES1\n" "No SP score: 250\n" "Total score: 300\n" "Average multiplier: 1.200x\n" "3: NN (G)"; BOOST_CHECK_EQUAL(track.path_summary(path), desired_path_output); } BOOST_AUTO_TEST_CASE(no_es_is_denoted_correctly) { std::vector<SightRead::Note> notes {make_note(0), make_note(192), make_note(384), make_note(576), make_note(6144)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {50}}, {SightRead::Tick {192}, SightRead::Tick {50}}, {SightRead::Tick {384}, SightRead::Tick {50}}, {SightRead::Tick {6144}, SightRead::Tick {50}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; const auto& points = track.points(); Path path {{{points.cbegin() + 4, points.cbegin() + 4, SightRead::Beat {0.0}, SightRead::Beat {0.0}}}, 50}; const char* desired_path_output = "Path: 3(+1)\n" "No SP score: 250\n" "Total score: 300\n" "Average multiplier: 1.200x\n" "3(+1): 2nd G (G)"; BOOST_CHECK_EQUAL(track.path_summary(path), desired_path_output); } BOOST_AUTO_TEST_CASE(no_sp_is_denoted_correctly) { std::vector<SightRead::Note> notes {make_note(0), make_note(192), make_note(384), make_note(576), make_note(6144)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {50}}, {SightRead::Tick {192}, SightRead::Tick {50}}, {SightRead::Tick {384}, SightRead::Tick {50}}, {SightRead::Tick {6144}, SightRead::Tick {50}}}; SightRead::NoteTrack note_track { notes, {}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; Path path {{}, 0}; const char* desired_path_output = "Path: None\n" "No SP score: 250\n" "Total score: 250\n" "Average multiplier: 1.000x"; BOOST_CHECK_EQUAL(track.path_summary(path), desired_path_output); } BOOST_AUTO_TEST_CASE(sustains_handled_correctly_for_nn) { std::vector<SightRead::Note> notes {make_note(0), make_note(192, 192), make_note(768)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {50}}, {SightRead::Tick {192}, SightRead::Tick {50}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; const auto& points = track.points(); Path path {{{points.cend() - 1, points.cend() - 1, SightRead::Beat {0.0}, SightRead::Beat {0.0}}}, 50}; const char* desired_path_output = "Path: 2\n" "No SP score: 178\n" "Total score: 228\n" "Average multiplier: 1.302x\n" "2: NN (G)"; BOOST_CHECK_EQUAL(track.path_summary(path), desired_path_output); } BOOST_AUTO_TEST_CASE(mid_sustain_activations_noted_correctly) { std::vector<SightRead::Note> notes {make_note(0), make_note(192), make_note(768, 192)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {50}}, {SightRead::Tick {192}, SightRead::Tick {50}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; const auto& points = track.points(); Path path {{{points.cbegin() + 3, points.cend() - 1, SightRead::Beat {0.0}, SightRead::Beat {0.0}}}, 28}; const char* desired_path_output = "Path: 2\n" "No SP score: 178\n" "Total score: 206\n" "Average multiplier: 1.177x\n" "2: 0.03 beats after NN"; BOOST_CHECK_EQUAL(track.path_summary(path), desired_path_output); } BOOST_AUTO_TEST_CASE(notes_of_different_colours_are_counted_correctly) { std::vector<SightRead::Note> notes { make_note(0), make_note(192), make_note(768), make_note(960, 0, SightRead::FIVE_FRET_RED)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {50}}, {SightRead::Tick {192}, SightRead::Tick {50}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; const auto& points = track.points(); Path path {{{points.cend() - 1, points.cend() - 1, SightRead::Beat {0.0}, SightRead::Beat {0.0}}}, 50}; const char* desired_path_output = "Path: 2\n" "No SP score: 200\n" "Total score: 250\n" "Average multiplier: 1.250x\n" "2: 1st R (R)"; BOOST_CHECK_EQUAL(track.path_summary(path), desired_path_output); } BOOST_AUTO_TEST_CASE( note_counting_is_done_correctly_when_intermediate_sustains_exist) { std::vector<SightRead::Note> notes { make_note(0), make_note(192), make_note(768, 96), make_note(960, 0, SightRead::FIVE_FRET_RED)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {50}}, {SightRead::Tick {192}, SightRead::Tick {50}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; const auto& points = track.points(); Path path {{{points.cend() - 1, points.cend() - 1, SightRead::Beat {0.0}, SightRead::Beat {0.0}}}, 50}; const char* desired_path_output = "Path: 2\n" "No SP score: 214\n" "Total score: 264\n" "Average multiplier: 1.239x\n" "2: 1st R (R)"; BOOST_CHECK_EQUAL(track.path_summary(path), desired_path_output); } BOOST_AUTO_TEST_CASE(mid_sustain_act_before_notes_are_written_correctly) { std::vector<SightRead::Note> notes {make_note(0), make_note(192, 192)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {50}}, {SightRead::Tick {192}, SightRead::Tick {50}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; const auto& points = track.points(); Path path {{{points.cbegin() + 2, points.cend() - 1, SightRead::Beat {0.0}, SightRead::Beat {0.0}}}, 28}; const char* desired_path_output = "Path: 2\n" "No SP score: 128\n" "Total score: 156\n" "Average multiplier: 1.248x\n" "2: After 0.03 beats"; BOOST_CHECK_EQUAL(track.path_summary(path), desired_path_output); } BOOST_AUTO_TEST_CASE(zero_phrase_acts_are_handled) { std::vector<SightRead::Note> notes {make_note(0, 3072), make_note(3264)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {3300}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; const auto& points = track.points(); Path path {{{points.cend() - 3, points.cend() - 3, SightRead::Beat {0.0}, SightRead::Beat {0.0}}}, 1}; const char* desired_path_output = "Path: 0-ES1\n" "No SP score: 539\n" "Total score: 540\n" "Average multiplier: 1.080x\n" "0: See image"; BOOST_CHECK_EQUAL(track.path_summary(path), desired_path_output); } BOOST_AUTO_TEST_CASE(average_multiplier_rounds_down) { std::vector<SightRead::Note> notes; notes.reserve(11); for (auto i = 0; i < 11; ++i) { notes.push_back(make_note(i)); } SightRead::NoteTrack note_track { notes, {}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; Path path {{}, 0}; const char* desired_path_output = "Path: None\n" "No SP score: 650\n" "Total score: 650\n" "Average multiplier: 1.181x"; BOOST_CHECK_EQUAL(track.path_summary(path), desired_path_output); } BOOST_AUTO_TEST_CASE(average_multiplier_is_correct_for_drums) { std::vector<SightRead::Note> notes { make_drum_note(0, SightRead::DRUM_RED), make_drum_note(192, SightRead::DRUM_DOUBLE_KICK)}; SightRead::NoteTrack note_track { notes, {}, SightRead::TrackType::Drums, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), {false, false, true, false}, ChDrumEngine(), {}, {}}; Path path {{}, 0}; const char* desired_path_output = "Path: None\n" "No SP score: 50\n" "Total score: 50\n" "Average multiplier: 1.000x"; BOOST_CHECK_EQUAL(track.path_summary(path), desired_path_output); } BOOST_AUTO_TEST_CASE(average_multiplier_is_correct_for_zero_notes) { std::vector<SightRead::Note> notes { make_drum_note(192, SightRead::DRUM_DOUBLE_KICK)}; SightRead::NoteTrack note_track { notes, {}, SightRead::TrackType::Drums, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), {false, false, true, false}, ChDrumEngine(), {}, {}}; Path path {{}, 0}; const char* desired_path_output = "Path: None\n" "No SP score: 0\n" "Total score: 0\n" "Average multiplier: 0.000x"; BOOST_CHECK_EQUAL(track.path_summary(path), desired_path_output); } BOOST_AUTO_TEST_CASE(alternative_path_notation_is_used_for_drums) { std::vector<SightRead::Note> notes { make_drum_note(0), make_drum_note(192), make_drum_note(1536), make_drum_note(6336), make_drum_note(6528), make_drum_note(6912), make_drum_note(9984), make_drum_note(13056)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {1}}, {SightRead::Tick {192}, SightRead::Tick {1}}, {SightRead::Tick {6336}, SightRead::Tick {1}}, {SightRead::Tick {6528}, SightRead::Tick {1}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::Drums, std::make_shared<SightRead::SongGlobalData>()}; note_track.generate_drum_fills({}); ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), {false, false, true, false}, ChDrumEngine(), {}, {}}; const auto& points = track.points(); Path path {{{points.cbegin() + 2, points.cbegin() + 2, SightRead::Beat {8.0}, SightRead::Beat {24.0}}, {points.cend() - 1, points.cend() - 1, SightRead::Beat {68.0}, SightRead::Beat {84.0}}}, 100}; const char* desired_path_output = "Path: 0-1\n" "No SP score: 400\n" "Total score: 500\n" "Average multiplier: 1.250x"; BOOST_CHECK_EQUAL(track.path_summary(path), desired_path_output); } BOOST_AUTO_TEST_CASE(alternative_path_notation_l_and_e_are_used_for_drums) { std::vector<SightRead::Note> notes { make_drum_note(0), make_drum_note(390), make_drum_note(1536), make_drum_note(5568), make_drum_note(5755), make_drum_note(6912), make_drum_note(9984), make_drum_note(13056)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {1}}, {SightRead::Tick {390}, SightRead::Tick {1}}, {SightRead::Tick {5568}, SightRead::Tick {1}}, {SightRead::Tick {5755}, SightRead::Tick {1}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::Drums, std::make_shared<SightRead::SongGlobalData>()}; note_track.generate_drum_fills({}); ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), {false, false, true, false}, ChDrumEngine(), {}, {}}; const auto& points = track.points(); Path path {{{points.cbegin() + 2, points.cbegin() + 2, SightRead::Beat {8.0}, SightRead::Beat {24.0}}, {points.cend() - 1, points.cend() - 1, SightRead::Beat {68.0}, SightRead::Beat {84.0}}}, 100}; const char* desired_path_output = "Path: 0(E)-1(L)\n" "No SP score: 400\n" "Total score: 500\n" "Average multiplier: 1.250x"; BOOST_CHECK_EQUAL(track.path_summary(path), desired_path_output); } BOOST_AUTO_TEST_CASE(average_multiplier_is_ignored_with_rb) { std::vector<SightRead::Note> notes {make_note(0), make_note(192), make_note(384), make_note(576), make_note(6144)}; std::vector<SightRead::Solo> solos { {SightRead::Tick {0}, SightRead::Tick {50}, 100}}; SightRead::NoteTrack note_track { notes, {}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; note_track.solos(solos); ProcessedSong track {note_track, {{}, SpMode::OdBeat}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), RbEngine(), {}, {}}; Path path {{}, 0}; const char* desired_path_output = "Path: None\n" "No SP score: 225\n" "Total score: 225"; BOOST_CHECK_EQUAL(track.path_summary(path), desired_path_output); } BOOST_AUTO_TEST_SUITE_END()
89,143
C++
.cpp
1,876
32.633262
98
0.523779
GenericMadScientist/CHOpt
33
4
5
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,754
points_unittest.cpp
GenericMadScientist_CHOpt/tests/points_unittest.cpp
/* * CHOpt - Star Power optimiser for Clone Hero * Copyright (C) 2020, 2021, 2022, 2023, 2024 Raymond Wright * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <https://www.gnu.org/licenses/>. */ #include <algorithm> #include <cstdlib> #include <numeric> #include <boost/test/unit_test.hpp> #include "test_helpers.hpp" namespace { std::vector<int> set_values(const PointSet& points) { std::vector<int> values; values.reserve(static_cast<std::size_t>( std::distance(points.cbegin(), points.cend()))); for (auto p = points.cbegin(); p < points.cend(); ++p) { values.push_back(p->value); } return values; } std::vector<int> set_base_values(const PointSet& points) { std::vector<int> base_values; base_values.reserve(static_cast<std::size_t>( std::distance(points.cbegin(), points.cend()))); for (auto p = points.cbegin(); p < points.cend(); ++p) { base_values.push_back(p->base_value); } return base_values; } std::vector<SightRead::Beat> set_position_beats(const PointSet& points) { std::vector<SightRead::Beat> values; values.reserve(static_cast<std::size_t>( std::distance(points.cbegin(), points.cend()))); for (auto p = points.cbegin(); p < points.cend(); ++p) { values.push_back(p->position.beat); } return values; } SightRead::Note make_ghl_chord( int position, const std::vector<std::tuple<SightRead::SixFretNotes, int>>& lengths) { SightRead::Note note; note.position = SightRead::Tick {position}; note.flags = SightRead::FLAGS_SIX_FRET_GUITAR; for (const auto& [lane, length] : lengths) { note.lengths.at(lane) = SightRead::Tick {length}; } return note; } std::shared_ptr<SightRead::SongGlobalData> make_resolution(int resolution) { auto data = std::make_shared<SightRead::SongGlobalData>(); data->resolution(resolution); data->tempo_map({{}, {}, {}, resolution}); return data; } } BOOST_AUTO_TEST_SUITE(non_sustain_notes) BOOST_AUTO_TEST_CASE(single_notes_give_fifty_points) { SightRead::NoteTrack track {{make_note(768), make_note(960)}, {}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; PointSet points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine()}; std::vector<int> expected_values {50, 50}; std::vector<int> values = set_values(points); BOOST_CHECK_EQUAL_COLLECTIONS(values.cbegin(), values.cend(), expected_values.cbegin(), expected_values.cend()); } BOOST_AUTO_TEST_CASE(chords_give_multiples_of_fifty_points) { SightRead::NoteTrack track {{make_chord(768, {{SightRead::FIVE_FRET_GREEN, 0}, {SightRead::FIVE_FRET_RED, 0}})}, {}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; PointSet points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine()}; std::vector<int> expected_values {100}; std::vector<int> values = set_values(points); BOOST_CHECK_EQUAL_COLLECTIONS(values.cbegin(), values.cend(), expected_values.cbegin(), expected_values.cend()); } BOOST_AUTO_TEST_CASE(ghl_notes_behave_the_same_as_five_fret_notes) { SightRead::NoteTrack track {{make_ghl_note(768), make_ghl_note(960)}, {}, SightRead::TrackType::SixFret, std::make_shared<SightRead::SongGlobalData>()}; PointSet points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine()}; std::vector<int> expected_values {50, 50}; std::vector<int> values = set_values(points); BOOST_CHECK_EQUAL_COLLECTIONS(values.cbegin(), values.cend(), expected_values.cbegin(), expected_values.cend()); } BOOST_AUTO_TEST_SUITE_END() BOOST_AUTO_TEST_SUITE(sustain_notes) BOOST_AUTO_TEST_CASE(sustain_points_depend_on_resolution) { SightRead::NoteTrack track {{make_note(768, 15)}, {}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; PointSet first_points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine()}; std::vector<int> first_expected_values {50, 3}; std::vector<SightRead::Beat> first_expected_beats {SightRead::Beat(4.0), SightRead::Beat(4.0026)}; SightRead::NoteTrack second_track {{make_note(768, 15)}, {}, SightRead::TrackType::FiveFret, make_resolution(200)}; PointSet second_points { second_track, {make_resolution(200)->tempo_map(), SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine()}; std::vector<int> second_expected_values {50, 2}; std::vector<SightRead::Beat> second_expected_beats { SightRead::Beat(3.84), SightRead::Beat(3.8425)}; std::vector<int> first_values = set_values(first_points); std::vector<SightRead::Beat> first_beats = set_position_beats(first_points); std::vector<int> second_values = set_values(second_points); std::vector<SightRead::Beat> second_beats = set_position_beats(second_points); BOOST_CHECK_EQUAL_COLLECTIONS(first_values.cbegin(), first_values.cend(), first_expected_values.cbegin(), first_expected_values.cend()); BOOST_CHECK_EQUAL(first_beats.size(), first_expected_beats.size()); for (auto i = 0U; i < first_beats.size(); ++i) { BOOST_CHECK_CLOSE(first_beats[i].value(), first_expected_beats[i].value(), 0.01); } BOOST_CHECK_EQUAL_COLLECTIONS(second_values.cbegin(), second_values.cend(), second_expected_values.cbegin(), second_expected_values.cend()); BOOST_CHECK_EQUAL(second_beats.size(), second_expected_beats.size()); for (auto i = 0U; i < second_beats.size(); ++i) { BOOST_CHECK_CLOSE(second_beats[i].value(), second_expected_beats[i].value(), 0.01); } } BOOST_AUTO_TEST_CASE(sustain_points_and_chords) { SightRead::NoteTrack track {{make_chord(768, {{SightRead::FIVE_FRET_GREEN, 8}, {SightRead::FIVE_FRET_RED, 8}})}, {}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; PointSet points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine()}; std::vector<int> expected_values {100, 2}; std::vector<SightRead::Beat> expected_beats {SightRead::Beat(4.0), SightRead::Beat(4.0026)}; std::vector<int> values = set_values(points); std::vector<SightRead::Beat> beats = set_position_beats(points); BOOST_CHECK_EQUAL_COLLECTIONS(values.cbegin(), values.cend(), expected_values.cbegin(), expected_values.cend()); BOOST_CHECK_EQUAL(beats.size(), expected_beats.size()); for (auto i = 0U; i < beats.size(); ++i) { BOOST_CHECK_CLOSE(beats[i].value(), expected_beats[i].value(), 0.01); } } BOOST_AUTO_TEST_CASE(resolutions_below_25_do_not_enter_an_infinite_loop) { SightRead::NoteTrack track {{make_note(768, 2)}, {}, SightRead::TrackType::FiveFret, make_resolution(1)}; PointSet points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine()}; BOOST_CHECK_EQUAL(std::distance(points.cbegin(), points.cend()), 3); } BOOST_AUTO_TEST_CASE(sustains_of_uneven_length_are_handled_correctly) { SightRead::NoteTrack track { {make_chord(0, {{SightRead::FIVE_FRET_GREEN, 1504}, {SightRead::FIVE_FRET_RED, 1504}, {SightRead::FIVE_FRET_YELLOW, 736}})}, {}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; PointSet points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine()}; auto total_score = std::accumulate( points.cbegin(), points.cend(), 0, [](const auto& a, const auto& b) { return a + b.value; }); BOOST_CHECK_EQUAL(total_score, 686); } // RB1 Here It Goes Again m20 GRB sustain BOOST_AUTO_TEST_CASE(chord_sustains_in_rb_are_handled_correctly) { SightRead::NoteTrack track { {make_chord(0, {{SightRead::FIVE_FRET_GREEN, 1800}, {SightRead::FIVE_FRET_RED, 1800}, {SightRead::FIVE_FRET_BLUE, 1800}})}, {}, SightRead::TrackType::FiveFret, make_resolution(480)}; PointSet points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), RbEngine()}; const auto total_score = std::accumulate( points.cbegin(), points.cend(), 0, [](const auto& a, const auto& b) { return a + b.value; }); BOOST_CHECK_EQUAL(total_score, 210); } // RB1 Cherub Rock m24 Y sustain BOOST_AUTO_TEST_CASE( rounding_from_length_in_rb_for_single_notes_is_handled_correctly) { SightRead::NoteTrack track {{make_note(0, 419)}, {}, SightRead::TrackType::FiveFret, make_resolution(480)}; PointSet points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), RbEngine()}; const auto total_score = std::accumulate( points.cbegin(), points.cend(), 0, [](const auto& a, const auto& b) { return a + b.value; }); BOOST_CHECK_EQUAL(total_score, 35); } // RB1 Cherub Rock m65 RO sustain BOOST_AUTO_TEST_CASE(rounding_from_length_in_rb_for_chords_is_handled_correctly) { SightRead::NoteTrack track { {make_chord(0, {{SightRead::FIVE_FRET_RED, 419}, {SightRead::FIVE_FRET_ORANGE, 419}})}, {}, SightRead::TrackType::FiveFret, make_resolution(480)}; PointSet points {track, {{}, SpMode::OdBeat}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), RbEngine()}; const auto total_score = std::accumulate( points.cbegin(), points.cend(), 0, [](const auto& a, const auto& b) { return a + b.value; }); BOOST_CHECK_EQUAL(total_score, 70); } // GH1 Ace of Spades m6 Y sustain BOOST_AUTO_TEST_CASE(gh1_one_beat_sustain_is_handled_correctly) { SightRead::NoteTrack track { {make_note(0, 1917, SightRead::FIVE_FRET_YELLOW)}, {}, SightRead::TrackType::FiveFret, make_resolution(480)}; PointSet points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), Gh1Engine()}; const auto total_score = std::accumulate( points.cbegin(), points.cend(), 0, [](const auto& a, const auto& b) { return a + b.value; }); BOOST_CHECK_EQUAL(total_score, 150); } // GH1 Ace of Spades m96 O sustain BOOST_AUTO_TEST_CASE( rounding_from_fractional_length_in_gh1_is_handled_correctly) { SightRead::NoteTrack track { {make_note(0, 1560, SightRead::FIVE_FRET_ORANGE)}, {}, SightRead::TrackType::FiveFret, make_resolution(480)}; PointSet points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), Gh1Engine()}; const auto total_score = std::accumulate( points.cbegin(), points.cend(), 0, [](const auto& a, const auto& b) { return a + b.value; }); BOOST_CHECK_EQUAL(total_score, 131); } // GH1 Ace of Spades m15 BO sustain BOOST_AUTO_TEST_CASE( rounding_from_length_in_gh1_for_chords_is_handled_correctly) { SightRead::NoteTrack track { {make_chord(0, {{SightRead::FIVE_FRET_BLUE, 360}, {SightRead::FIVE_FRET_ORANGE, 360}})}, {}, SightRead::TrackType::FiveFret, make_resolution(480)}; PointSet points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), Gh1Engine()}; const auto total_score = std::accumulate( points.cbegin(), points.cend(), 0, [](const auto& a, const auto& b) { return a + b.value; }); BOOST_CHECK_EQUAL(total_score, 138); } BOOST_AUTO_TEST_CASE(fortnite_festival_half_od_time_is_handled_correctly) { SightRead::NoteTrack track { {make_chord(0, {{SightRead::FIVE_FRET_GREEN, 1920}})}, {}, SightRead::TrackType::FiveFret, make_resolution(480)}; PointSet points { track, {{{}, {}, {SightRead::Tick {0}, SightRead::Tick {960}, SightRead::Tick {1920}}, 480}, SpMode::OdBeat}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), FortniteGuitarEngine()}; const auto total_score = std::accumulate( points.cbegin(), points.cend(), 0, [](const auto& a, const auto& b) { return a + b.value; }); BOOST_CHECK_EQUAL(total_score, 60); } BOOST_AUTO_TEST_CASE(long_fortnite_sustains_are_handled_correctly) { SightRead::NoteTrack track { {make_chord(0, {{SightRead::FIVE_FRET_GREEN, 1920}})}, {}, SightRead::TrackType::FiveFret, make_resolution(480)}; PointSet points {track, {{{}, {}, {}, 480}, SpMode::OdBeat}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), FortniteVocalsEngine()}; const auto total_score = std::accumulate( points.cbegin(), points.cend(), 0, [](const auto& a, const auto& b) { return a + b.value; }); BOOST_CHECK_EQUAL(total_score, 136); } BOOST_AUTO_TEST_SUITE_END() BOOST_AUTO_TEST_CASE(points_are_sorted) { SightRead::NoteTrack track {{make_note(768, 15), make_note(770, 0)}, {}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; PointSet points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine()}; const auto beats = set_position_beats(points); BOOST_TEST(std::is_sorted(beats.cbegin(), beats.cend())); } BOOST_AUTO_TEST_CASE(end_of_sp_phrase_points) { SightRead::NoteTrack track { {make_note(768), make_note(960), make_note(1152)}, {{SightRead::Tick {768}, SightRead::Tick {1}}, {SightRead::Tick {900}, SightRead::Tick {50}}, {SightRead::Tick {1100}, SightRead::Tick {53}}}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; PointSet points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine()}; PointSet unison_points {track, {{}, SpMode::Measure}, {{SightRead::Tick {1100}, SightRead::Tick {53}}}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), Rb3Engine()}; BOOST_TEST(points.cbegin()->is_sp_granting_note); BOOST_TEST(!std::next(points.cbegin())->is_sp_granting_note); BOOST_TEST(std::next(points.cbegin(), 2)->is_sp_granting_note); BOOST_TEST(!std::next(points.cbegin(), 2)->is_unison_sp_granting_note); BOOST_TEST(!unison_points.cbegin()->is_unison_sp_granting_note); BOOST_TEST( std::next(unison_points.cbegin(), 2)->is_unison_sp_granting_note); } BOOST_AUTO_TEST_SUITE(combo_multiplier_is_taken_into_account) BOOST_AUTO_TEST_CASE(multiplier_applies_to_non_sustains) { std::vector<SightRead::Note> notes; notes.reserve(50); for (int i = 0; i < 50; ++i) { notes.push_back(make_note(192 * i)); } SightRead::NoteTrack track {notes, {}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; PointSet points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine()}; std::vector<int> expected_values; std::vector<int> expected_base_values; expected_values.reserve(50); expected_base_values.reserve(50); for (int i = 0; i < 50; ++i) { const auto mult = 1 + std::min((i + 1) / 10, 3); expected_values.push_back(50 * mult); expected_base_values.push_back(50); } std::vector<int> values = set_values(points); std::vector<int> base_values = set_base_values(points); BOOST_CHECK_EQUAL_COLLECTIONS(values.cbegin(), values.cend(), expected_values.cbegin(), expected_values.cend()); BOOST_CHECK_EQUAL_COLLECTIONS(base_values.cbegin(), base_values.cend(), expected_base_values.cbegin(), expected_base_values.cend()); } BOOST_AUTO_TEST_CASE(sustain_points_are_multiplied) { std::vector<SightRead::Note> notes; notes.reserve(50); for (int i = 0; i < 50; ++i) { notes.push_back(make_note(192 * i)); } notes.push_back(make_note(9600, 192)); SightRead::NoteTrack track {notes, {}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; PointSet points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine()}; BOOST_CHECK_EQUAL(std::prev(points.cend(), 2)->value, 4); BOOST_CHECK_EQUAL(std::prev(points.cend(), 2)->base_value, 1); } BOOST_AUTO_TEST_CASE(later_sustain_points_in_extended_sustains_are_multiplied) { std::vector<SightRead::Note> notes; notes.reserve(10); for (int i = 0; i < 10; ++i) { notes.push_back(make_note(192 * i)); } notes[0].lengths[0] = SightRead::Tick {2000}; SightRead::NoteTrack track {notes, {}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; PointSet points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine()}; BOOST_CHECK_EQUAL(std::prev(points.cend(), 2)->value, 2); BOOST_CHECK_EQUAL(std::prev(points.cend(), 2)->base_value, 1); } BOOST_AUTO_TEST_CASE(drum_notes_have_the_multiplier_handled_correctly) { std::vector<SightRead::Note> notes; notes.reserve(10); for (int i = 0; i < 9; ++i) { notes.push_back(make_drum_note(192 * i, SightRead::DRUM_RED)); } notes.push_back(make_drum_note(192 * 7, SightRead::DRUM_YELLOW)); SightRead::NoteTrack track {notes, {}, SightRead::TrackType::Drums, std::make_shared<SightRead::SongGlobalData>()}; PointSet points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChDrumEngine()}; BOOST_CHECK_EQUAL(std::prev(points.cend(), 1)->value, 100); } BOOST_AUTO_TEST_CASE(fortnite_notes_have_the_multiplier_handled_correctly) { std::vector<SightRead::Note> notes; notes.reserve(11); for (int i = 0; i < 10; ++i) { notes.push_back(make_note(192 * i, 0, SightRead::FIVE_FRET_GREEN)); } notes.push_back(make_note(192 * 7, 0, SightRead::FIVE_FRET_RED)); SightRead::NoteTrack track {notes, {}, SightRead::TrackType::FortniteFestival, std::make_shared<SightRead::SongGlobalData>()}; PointSet points {track, {{}, SpMode::OdBeat}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), FortniteGuitarEngine()}; BOOST_CHECK_EQUAL(std::prev(points.cend(), 1)->value, 72); } BOOST_AUTO_TEST_CASE(gh1_multiplier_delay_accounted_for) { std::vector<SightRead::Note> notes { make_note(0), make_note(100), make_note(200), make_note(300), make_note(400), make_note(500), make_note(600), make_note(700), make_note(800), make_note(900, 100)}; SightRead::NoteTrack track {notes, {}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; PointSet points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), Gh1Engine()}; BOOST_CHECK_EQUAL((points.cbegin() + 9)->value, 50); BOOST_CHECK_EQUAL((points.cbegin() + 10)->value, 2); } BOOST_AUTO_TEST_SUITE_END() BOOST_AUTO_TEST_SUITE(hit_window_start_and_hit_window_end_are_set_correctly) BOOST_AUTO_TEST_CASE(hit_window_starts_for_notes_are_correct) { SightRead::TempoMap tempo_map { {}, {{SightRead::Tick {0}, 150000}, {SightRead::Tick {768}, 200000}}, {}, 192}; auto global_data = std::make_shared<SightRead::SongGlobalData>(); global_data->tempo_map(tempo_map); std::vector<SightRead::Note> notes {make_note(192), make_note(787)}; SightRead::NoteTrack track { notes, {}, SightRead::TrackType::FiveFret, global_data}; PointSet points {track, {tempo_map, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine()}; BOOST_CHECK_CLOSE(points.cbegin()->hit_window_start.beat.value(), 0.825, 0.0001); BOOST_CHECK_CLOSE(std::next(points.cbegin())->hit_window_start.beat.value(), 3.89922, 0.0001); } BOOST_AUTO_TEST_CASE(hit_window_ends_for_notes_are_correct) { SightRead::TempoMap tempo_map { {}, {{SightRead::Tick {0}, 150000}, {SightRead::Tick {768}, 200000}}, {}, 192}; auto global_data = std::make_shared<SightRead::SongGlobalData>(); global_data->tempo_map(tempo_map); std::vector<SightRead::Note> notes {make_note(192), make_note(749)}; SightRead::NoteTrack track { notes, {}, SightRead::TrackType::FiveFret, global_data}; PointSet points {track, {tempo_map, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine()}; BOOST_CHECK_CLOSE(points.cbegin()->hit_window_end.beat.value(), 1.175, 0.0001); BOOST_CHECK_CLOSE(std::next(points.cbegin())->hit_window_end.beat.value(), 4.10139, 0.0001); } BOOST_AUTO_TEST_CASE(hit_window_starts_and_ends_for_hold_points_are_correct) { SightRead::TempoMap tempo_map { {}, {{SightRead::Tick {0}, 150000}, {SightRead::Tick {768}, 200000}}, {}, 192}; auto global_data = std::make_shared<SightRead::SongGlobalData>(); global_data->tempo_map(tempo_map); std::vector<SightRead::Note> notes {make_note(672, 192)}; SightRead::NoteTrack track { notes, {}, SightRead::TrackType::FiveFret, global_data}; PointSet points {track, {tempo_map, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine()}; for (auto p = std::next(points.cbegin()); p < points.cend(); ++p) { BOOST_CHECK_CLOSE(p->position.beat.value(), p->hit_window_start.beat.value(), 0.0001); BOOST_CHECK_CLOSE(p->position.beat.value(), p->hit_window_end.beat.value(), 0.0001); } } BOOST_AUTO_TEST_CASE(squeeze_setting_is_accounted_for) { SightRead::TempoMap tempo_map { {}, {{SightRead::Tick {0}, 150000}, {SightRead::Tick {768}, 200000}}, {}, 192}; auto global_data = std::make_shared<SightRead::SongGlobalData>(); global_data->tempo_map(tempo_map); std::vector<SightRead::Note> notes {make_note(192)}; SightRead::NoteTrack track { notes, {}, SightRead::TrackType::FiveFret, global_data}; PointSet points {track, {tempo_map, SpMode::Measure}, {}, {0.5, 1.0, SightRead::Second {0.0}, SightRead::Second {0.0}, SightRead::Second {0.0}}, SightRead::DrumSettings::default_settings(), ChGuitarEngine()}; BOOST_CHECK_CLOSE(points.cbegin()->hit_window_start.beat.value(), 0.9125, 0.0001); BOOST_CHECK_CLOSE(points.cbegin()->hit_window_end.beat.value(), 1.0875, 0.0001); } BOOST_AUTO_TEST_CASE(restricted_back_end_is_taken_account_of) { SightRead::TempoMap tempo_map { {}, {{SightRead::Tick {0}, 150000}, {SightRead::Tick {768}, 200000}}, {}, 192}; auto global_data = std::make_shared<SightRead::SongGlobalData>(); global_data->tempo_map(tempo_map); std::vector<SightRead::Note> notes {make_note(192), make_note(240)}; SightRead::NoteTrack track { notes, {}, SightRead::TrackType::FiveFret, global_data}; PointSet points {track, {tempo_map, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), RbEngine()}; PointSet fifty_sqz_points {track, {{}, SpMode::Measure}, {}, {0.5, 1.0, SightRead::Second {0.0}, SightRead::Second {0.0}, SightRead::Second {0.0}}, SightRead::DrumSettings::default_settings(), RbEngine()}; BOOST_CHECK_CLOSE(points.cbegin()->hit_window_end.beat.value(), 1.125, 0.0001); BOOST_CHECK_CLOSE(fifty_sqz_points.cbegin()->hit_window_end.beat.value(), 1.0625, 0.0001); } BOOST_AUTO_TEST_SUITE_END() BOOST_AUTO_TEST_CASE(rb_bass_multiplier_is_taken_into_account) { std::vector<SightRead::Note> notes; notes.reserve(60); for (auto i = 0; i < 60; ++i) { notes.push_back(make_note(192 * i)); } const SightRead::NoteTrack track { notes, {}, SightRead::TrackType::FiveFret, std::make_unique<SightRead::SongGlobalData>()}; const PointSet points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), RbBassEngine()}; const auto total_points = std::accumulate(points.cbegin(), points.cend(), 0, [&](auto x, auto y) { return x + y.value; }); BOOST_CHECK_EQUAL(total_points, 5375); } BOOST_AUTO_TEST_SUITE(video_lag_is_taken_into_account) BOOST_AUTO_TEST_CASE(negative_video_lag_is_handled_correctly) { const std::vector<SightRead::Note> notes {make_note(192, 0), make_note(384, 192)}; const SightRead::NoteTrack track { notes, {}, SightRead::TrackType::FiveFret, std::make_unique<SightRead::SongGlobalData>()}; PointSet points {track, {{}, SpMode::Measure}, {}, {1.0, 1.0, SightRead::Second {0.0}, SightRead::Second {-0.20}, SightRead::Second {0.0}}, SightRead::DrumSettings::default_settings(), ChGuitarEngine()}; BOOST_CHECK_CLOSE(points.cbegin()->position.beat.value(), 0.6, 0.0001); BOOST_CHECK_CLOSE(points.cbegin()->hit_window_start.beat.value(), 0.46, 0.0001); BOOST_CHECK_CLOSE(points.cbegin()->hit_window_end.beat.value(), 0.74, 0.0001); BOOST_CHECK_CLOSE(std::next(points.cbegin(), 2)->position.beat.value(), 2.033854, 0.0001); } BOOST_AUTO_TEST_CASE(positive_video_lag_is_handled_correctly) { const std::vector<SightRead::Note> notes {make_note(192, 0), make_note(384, 192)}; const SightRead::NoteTrack track { notes, {}, SightRead::TrackType::FiveFret, std::make_unique<SightRead::SongGlobalData>()}; PointSet points {track, {{}, SpMode::Measure}, {}, {1.0, 1.0, SightRead::Second {0.0}, SightRead::Second {0.20}, SightRead::Second {0.0}}, SightRead::DrumSettings::default_settings(), ChGuitarEngine()}; BOOST_CHECK_CLOSE(points.cbegin()->position.beat.value(), 1.4, 0.0001); BOOST_CHECK_CLOSE(points.cbegin()->hit_window_start.beat.value(), 1.26, 0.0001); BOOST_CHECK_CLOSE(points.cbegin()->hit_window_end.beat.value(), 1.54, 0.0001); BOOST_CHECK_CLOSE(std::next(points.cbegin(), 2)->position.beat.value(), 2.033854, 0.0001); } BOOST_AUTO_TEST_CASE(tick_points_are_not_multiplied_prematurely) { std::vector<SightRead::Note> notes { make_note(192), make_note(193), make_note(194), make_note(195), make_note(196), make_note(197), make_note(198), make_note(199), make_note(200, 200), make_note(400)}; SightRead::NoteTrack track {notes, {}, SightRead::TrackType::FiveFret, std::make_unique<SightRead::SongGlobalData>()}; PointSet points {track, {{}, SpMode::Measure}, {}, {1.0, 1.0, SightRead::Second {0.0}, SightRead::Second {-0.40}, SightRead::Second {0.0}}, SightRead::DrumSettings::default_settings(), ChGuitarEngine()}; BOOST_CHECK_EQUAL(std::prev(points.cend())->value, 100); BOOST_CHECK_EQUAL(std::prev(points.cend(), 2)->value, 7); } BOOST_AUTO_TEST_SUITE_END() BOOST_AUTO_TEST_CASE(next_non_hold_point_is_correct) { std::vector<SightRead::Note> notes {make_note(0), make_note(192, 192)}; SightRead::NoteTrack track {notes, {}, SightRead::TrackType::FiveFret, std::make_unique<SightRead::SongGlobalData>()}; PointSet points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine()}; BOOST_CHECK_EQUAL(points.next_non_hold_point(points.cbegin()), points.cbegin()); BOOST_CHECK_EQUAL(points.next_non_hold_point(std::next(points.cbegin(), 2)), points.cend()); } BOOST_AUTO_TEST_CASE(next_sp_granting_note_is_correct) { std::vector<SightRead::Note> notes {make_note(100, 0), make_note(200, 100), make_note(400, 0)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {200}, SightRead::Tick {1}}, {SightRead::Tick {400}, SightRead::Tick {1}}}; SightRead::NoteTrack track {notes, phrases, SightRead::TrackType::FiveFret, std::make_unique<SightRead::SongGlobalData>()}; PointSet points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine()}; BOOST_CHECK_EQUAL(points.next_sp_granting_note(points.cbegin()), std::next(points.cbegin())); BOOST_CHECK_EQUAL(points.next_sp_granting_note(std::next(points.cbegin())), std::next(points.cbegin())); BOOST_CHECK_EQUAL( points.next_sp_granting_note(std::next(points.cbegin(), 2)), std::prev(points.cend())); } BOOST_AUTO_TEST_CASE(solo_sections_are_added) { std::vector<SightRead::Solo> solos { {SightRead::Tick {0}, SightRead::Tick {576}, 100}, {SightRead::Tick {768}, SightRead::Tick {1152}, 200}}; SightRead::NoteTrack track {{}, {}, SightRead::TrackType::FiveFret, std::make_unique<SightRead::SongGlobalData>()}; track.solos(solos); PointSet points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine()}; std::vector<std::tuple<SpPosition, int>> expected_solo_boosts { {{SightRead::Beat(3.0), SpMeasure(0.75)}, 100}, {{SightRead::Beat(6.0), SpMeasure(1.5)}, 200}}; BOOST_CHECK_EQUAL_COLLECTIONS( points.solo_boosts().cbegin(), points.solo_boosts().cend(), expected_solo_boosts.cbegin(), expected_solo_boosts.cend()); } BOOST_AUTO_TEST_CASE(range_score_is_correct) { SightRead::NoteTrack track {{make_note(0, 192), make_note(386)}, {}, SightRead::TrackType::FiveFret, std::make_unique<SightRead::SongGlobalData>()}; PointSet points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine()}; const auto begin = points.cbegin(); const auto end = points.cend(); BOOST_CHECK_EQUAL(points.range_score(begin, begin), 0); BOOST_CHECK_EQUAL(points.range_score(begin, end), 128); BOOST_CHECK_EQUAL(points.range_score(begin + 1, end - 1), 28); } BOOST_AUTO_TEST_CASE(colour_set_is_correct_for_five_fret) { std::vector<SightRead::Note> notes { make_chord( 0, {{SightRead::FIVE_FRET_GREEN, 0}, {SightRead::FIVE_FRET_RED, 0}}), make_note(176, 100, SightRead::FIVE_FRET_YELLOW), make_note(500, 0, SightRead::FIVE_FRET_BLUE)}; SightRead::NoteTrack track {notes, {}, SightRead::TrackType::FiveFret, std::make_unique<SightRead::SongGlobalData>()}; PointSet points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine()}; const auto begin = points.cbegin(); const auto end = points.cend(); BOOST_CHECK_EQUAL(points.colour_set(begin), "GR"); BOOST_CHECK_EQUAL(points.colour_set(begin + 1), "Y"); BOOST_CHECK_EQUAL(points.colour_set(end - 1), "B"); } BOOST_AUTO_TEST_CASE(colour_set_is_correct_for_six_fret) { std::vector<SightRead::Note> notes { make_ghl_chord(0, {{SightRead::SIX_FRET_WHITE_LOW, 0}, {SightRead::SIX_FRET_WHITE_MID, 0}}), make_ghl_note(176, 100, SightRead::SIX_FRET_BLACK_HIGH), make_ghl_note(500, 0, SightRead::SIX_FRET_OPEN)}; SightRead::NoteTrack track {notes, {}, SightRead::TrackType::SixFret, std::make_unique<SightRead::SongGlobalData>()}; PointSet points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine()}; const auto begin = points.cbegin(); const auto end = points.cend(); BOOST_CHECK_EQUAL(points.colour_set(begin), "W1W2"); BOOST_CHECK_EQUAL(points.colour_set(begin + 1), "B3"); BOOST_CHECK_EQUAL(points.colour_set(end - 1), "open"); } BOOST_AUTO_TEST_CASE(colour_set_is_correct_for_drums) { std::vector<SightRead::Note> notes { make_drum_note(0, SightRead::DRUM_RED), make_drum_note(0, SightRead::DRUM_YELLOW, SightRead::FLAGS_CYMBAL), make_drum_note(176, SightRead::DRUM_BLUE, SightRead::FLAGS_CYMBAL), make_drum_note(500, SightRead::DRUM_KICK)}; SightRead::NoteTrack track {notes, {}, SightRead::TrackType::Drums, std::make_unique<SightRead::SongGlobalData>()}; PointSet points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChDrumEngine()}; const auto begin = points.cbegin(); const auto end = points.cend(); BOOST_CHECK_EQUAL(points.colour_set(begin), "R"); BOOST_CHECK_EQUAL(points.colour_set(begin + 1), "Y cymbal"); BOOST_CHECK_EQUAL(points.colour_set(end - 1), "kick"); } BOOST_AUTO_TEST_CASE(double_kicks_only_appear_with_enable_double_kick) { std::vector<SightRead::Note> notes { make_drum_note(0, SightRead::DRUM_KICK), make_drum_note(192, SightRead::DRUM_DOUBLE_KICK)}; SightRead::NoteTrack track {notes, {}, SightRead::TrackType::Drums, std::make_unique<SightRead::SongGlobalData>()}; PointSet single_points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), {false, false, true, false}, ChDrumEngine()}; PointSet double_points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChDrumEngine()}; BOOST_CHECK_EQUAL(single_points.cend() - single_points.cbegin(), 1); BOOST_CHECK_EQUAL(double_points.cend() - double_points.cbegin(), 2); } BOOST_AUTO_TEST_CASE(single_kicks_are_removed_with_disable_kick) { std::vector<SightRead::Note> notes { make_drum_note(0, SightRead::DRUM_DOUBLE_KICK), make_drum_note(192, SightRead::DRUM_KICK)}; SightRead::NoteTrack track {notes, {}, SightRead::TrackType::Drums, std::make_unique<SightRead::SongGlobalData>()}; PointSet points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), {true, true, false, false}, ChDrumEngine()}; BOOST_CHECK_EQUAL(points.cend() - points.cbegin(), 1); BOOST_CHECK_EQUAL(points.cbegin()->value, 50); } BOOST_AUTO_TEST_CASE(disable_kick_doesnt_kill_sp_phrases) { std::vector<SightRead::Note> notes { make_drum_note(0, SightRead::DRUM_RED), make_drum_note(192, SightRead::DRUM_KICK)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {200}}}; SightRead::NoteTrack track {notes, phrases, SightRead::TrackType::Drums, std::make_unique<SightRead::SongGlobalData>()}; PointSet points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), {false, true, false, false}, ChDrumEngine()}; BOOST_TEST(points.cbegin()->is_sp_granting_note); } BOOST_AUTO_TEST_CASE(double_kicks_dont_kill_phrases) { std::vector<SightRead::Note> notes { make_drum_note(0, SightRead::DRUM_RED), make_drum_note(192, SightRead::DRUM_DOUBLE_KICK)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {200}}}; SightRead::NoteTrack track {notes, phrases, SightRead::TrackType::Drums, std::make_unique<SightRead::SongGlobalData>()}; PointSet points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), {false, false, false, false}, ChDrumEngine()}; BOOST_TEST(points.cbegin()->is_sp_granting_note); } BOOST_AUTO_TEST_CASE(activation_notes_are_marked_with_drum_fills) { std::vector<SightRead::Note> notes {make_drum_note(0), make_drum_note(192), make_drum_note(385), make_drum_note(576)}; std::vector<SightRead::DrumFill> fills { {SightRead::Tick {384}, SightRead::Tick {5}}}; SightRead::NoteTrack track {notes, {}, SightRead::TrackType::Drums, std::make_unique<SightRead::SongGlobalData>()}; track.drum_fills(fills); PointSet points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChDrumEngine()}; const auto begin = points.cbegin(); BOOST_TEST(!begin->fill_start.has_value()); BOOST_TEST(!(begin + 1)->fill_start.has_value()); BOOST_CHECK_CLOSE((begin + 2)->fill_start->value(), 1.0, 0.0001); BOOST_TEST(!(begin + 3)->fill_start.has_value()); } BOOST_AUTO_TEST_CASE(fills_ending_only_in_a_kick_are_not_killed) { std::vector<SightRead::Note> notes { make_drum_note(0), make_drum_note(1, SightRead::DRUM_KICK)}; std::vector<SightRead::DrumFill> fills { {SightRead::Tick {0}, SightRead::Tick {2}}}; SightRead::NoteTrack track {notes, {}, SightRead::TrackType::Drums, std::make_unique<SightRead::SongGlobalData>()}; track.drum_fills(fills); PointSet points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), {false, false, false, false}, ChDrumEngine()}; const auto begin = points.cbegin(); BOOST_TEST(!begin->fill_start.has_value()); BOOST_TEST((begin + 1)->fill_start.has_value()); } BOOST_AUTO_TEST_CASE(fills_ending_only_in_a_double_kick_are_not_killed) { std::vector<SightRead::Note> notes { make_drum_note(0), make_drum_note(1, SightRead::DRUM_DOUBLE_KICK)}; std::vector<SightRead::DrumFill> fills { {SightRead::Tick {0}, SightRead::Tick {2}}}; SightRead::NoteTrack track {notes, {}, SightRead::TrackType::Drums, std::make_unique<SightRead::SongGlobalData>()}; track.drum_fills(fills); PointSet points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChDrumEngine()}; const auto begin = points.cbegin(); BOOST_TEST(!begin->fill_start.has_value()); BOOST_TEST((begin + 1)->fill_start.has_value()); } BOOST_AUTO_TEST_CASE( fills_ending_in_a_multi_note_have_the_activation_attached_to_the_first_note) { std::vector<SightRead::Note> notes { make_drum_note(0), make_drum_note(0, SightRead::DRUM_KICK)}; std::vector<SightRead::DrumFill> fills { {SightRead::Tick {0}, SightRead::Tick {2}}}; SightRead::NoteTrack track {notes, {}, SightRead::TrackType::Drums, std::make_unique<SightRead::SongGlobalData>()}; track.drum_fills(fills); PointSet points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChDrumEngine()}; const auto begin = points.cbegin(); const auto fill_start = begin->fill_start; BOOST_CHECK(fill_start.has_value()); BOOST_CHECK_CLOSE(fill_start->value(), 0.0, 0.0001); BOOST_TEST(!(begin + 1)->fill_start.has_value()); } BOOST_AUTO_TEST_CASE(fills_are_attached_to_the_nearest_ending_point) { std::vector<SightRead::Note> notes {make_drum_note(0), make_drum_note(192), make_drum_note(370), make_drum_note(384)}; std::vector<SightRead::DrumFill> fills { {SightRead::Tick {0}, SightRead::Tick {2}}, {SightRead::Tick {193}, SightRead::Tick {5}}, {SightRead::Tick {377}, SightRead::Tick {4}}}; SightRead::NoteTrack track {notes, {}, SightRead::TrackType::Drums, std::make_unique<SightRead::SongGlobalData>()}; track.drum_fills(fills); PointSet points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChDrumEngine()}; const auto begin = points.cbegin(); BOOST_TEST(begin->fill_start.has_value()); BOOST_TEST((begin + 1)->fill_start.has_value()); BOOST_TEST(!(begin + 2)->fill_start.has_value()); BOOST_TEST((begin + 3)->fill_start.has_value()); } BOOST_AUTO_TEST_CASE(fills_attach_to_later_point_in_case_of_a_tie) { std::vector<SightRead::Note> notes {make_drum_note(0), make_drum_note(192)}; std::vector<SightRead::DrumFill> fills { {SightRead::Tick {0}, SightRead::Tick {96}}}; SightRead::NoteTrack track {notes, {}, SightRead::TrackType::Drums, std::make_unique<SightRead::SongGlobalData>()}; track.drum_fills(fills); PointSet points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChDrumEngine()}; const auto begin = points.cbegin(); BOOST_TEST(!begin->fill_start.has_value()); BOOST_TEST((begin + 1)->fill_start.has_value()); } BOOST_AUTO_TEST_CASE(cymbals_get_extra_points) { std::vector<SightRead::Note> notes { make_drum_note(0, SightRead::DRUM_YELLOW, SightRead::FLAGS_CYMBAL)}; SightRead::NoteTrack track {notes, {}, SightRead::TrackType::Drums, std::make_unique<SightRead::SongGlobalData>()}; PointSet points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChDrumEngine()}; const auto begin = points.cbegin(); BOOST_CHECK_EQUAL(begin->value, 65); } BOOST_AUTO_TEST_CASE(dynamics_get_double_points) { std::vector<SightRead::Note> notes { make_drum_note(0, SightRead::DRUM_RED, SightRead::FLAGS_GHOST), make_drum_note(192, SightRead::DRUM_RED, SightRead::FLAGS_ACCENT), make_drum_note(384, SightRead::DRUM_RED), make_drum_note(576, SightRead::DRUM_YELLOW, static_cast<SightRead::NoteFlags>( SightRead::FLAGS_CYMBAL | SightRead::FLAGS_GHOST)), make_drum_note(768, SightRead::DRUM_YELLOW, static_cast<SightRead::NoteFlags>( SightRead::FLAGS_CYMBAL | SightRead::FLAGS_ACCENT)), make_drum_note(960, SightRead::DRUM_YELLOW, SightRead::FLAGS_CYMBAL)}; SightRead::NoteTrack track {notes, {}, SightRead::TrackType::Drums, std::make_unique<SightRead::SongGlobalData>()}; PointSet points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChDrumEngine()}; const auto begin = points.cbegin(); BOOST_CHECK_EQUAL(begin->value, 100); BOOST_CHECK_EQUAL((begin + 1)->value, 100); BOOST_CHECK_EQUAL((begin + 2)->value, 50); BOOST_CHECK_EQUAL((begin + 3)->value, 130); BOOST_CHECK_EQUAL((begin + 4)->value, 130); BOOST_CHECK_EQUAL((begin + 5)->value, 65); } BOOST_AUTO_TEST_SUITE(first_after_current_phrase_works_correctly) BOOST_AUTO_TEST_CASE(returns_next_point_outside_of_sp) { std::vector<SightRead::Note> notes {make_note(0), make_note(192), make_note(384)}; SightRead::NoteTrack track {notes, {}, SightRead::TrackType::FiveFret, std::make_unique<SightRead::SongGlobalData>()}; PointSet points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), Gh1Engine()}; const auto begin = points.cbegin(); BOOST_CHECK_EQUAL(points.first_after_current_phrase(begin), std::next(begin)); } BOOST_AUTO_TEST_CASE(returns_next_point_outside_current_sp_for_overlap_engine) { std::vector<SightRead::Note> notes {make_note(0), make_note(192), make_note(384)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {200}}}; SightRead::NoteTrack track {notes, phrases, SightRead::TrackType::FiveFret, std::make_unique<SightRead::SongGlobalData>()}; PointSet points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), Gh1Engine()}; const auto begin = points.cbegin(); BOOST_CHECK_EQUAL(points.first_after_current_phrase(begin), begin + 2); } BOOST_AUTO_TEST_CASE(returns_next_point_always_next_for_non_overlap_engine) { std::vector<SightRead::Note> notes {make_note(0), make_note(192), make_note(384)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {200}}}; SightRead::NoteTrack track {notes, phrases, SightRead::TrackType::FiveFret, std::make_unique<SightRead::SongGlobalData>()}; PointSet points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine()}; const auto begin = points.cbegin(); BOOST_CHECK_EQUAL(points.first_after_current_phrase(begin), begin + 1); } BOOST_AUTO_TEST_SUITE_END() BOOST_AUTO_TEST_CASE(fortnite_notes_have_individual_split_points) { std::vector<SightRead::Note> notes { make_note(0, 0, SightRead::FIVE_FRET_GREEN), make_note(0, 0, SightRead::FIVE_FRET_RED)}; SightRead::NoteTrack track {notes, {}, SightRead::TrackType::FortniteFestival, std::make_shared<SightRead::SongGlobalData>()}; PointSet points {track, {{}, SpMode::OdBeat}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), FortniteGuitarEngine()}; BOOST_CHECK_EQUAL(std::distance(points.cbegin(), points.cend()), 2); }
57,632
C++
.cpp
1,297
31.629915
80
0.543736
GenericMadScientist/CHOpt
33
4
5
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,755
optimiser_unittest.cpp
GenericMadScientist_CHOpt/tests/optimiser_unittest.cpp
/* * CHOpt - Star Power optimiser for Clone Hero * Copyright (C) 2020, 2021, 2022, 2023 Raymond Wright * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <https://www.gnu.org/licenses/>. */ #include <algorithm> #include <cstdlib> #include <iterator> #include <boost/test/unit_test.hpp> #include "optimiser.hpp" #include "test_helpers.hpp" namespace { const std::atomic<bool> term_bool {false}; } BOOST_AUTO_TEST_SUITE(overlap_guitar_paths) BOOST_AUTO_TEST_CASE(simplest_song_with_a_non_empty_path) { std::vector<SightRead::Note> notes {make_note(0), make_note(192), make_note(384)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {50}}, {SightRead::Tick {192}, SightRead::Tick {50}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; Optimiser optimiser {&track, &term_bool, 100, SightRead::Second(0.0)}; const auto& points = track.points(); std::vector<Activation> optimal_acts { {points.cbegin() + 2, points.cbegin() + 2, SightRead::Beat {0.0}, SightRead::Beat {2.0}, SightRead::Beat {18.0}}}; const auto opt_path = optimiser.optimal_path(); BOOST_CHECK_EQUAL(opt_path.score_boost, 50); BOOST_CHECK_EQUAL_COLLECTIONS(opt_path.activations.cbegin(), opt_path.activations.cend(), optimal_acts.cbegin(), optimal_acts.cend()); } BOOST_AUTO_TEST_CASE(simplest_song_with_multiple_acts) { std::vector<SightRead::Note> notes { make_note(0), make_note(192), make_chord(384, {{SightRead::FIVE_FRET_GREEN, 0}, {SightRead::FIVE_FRET_RED, 0}, {SightRead::FIVE_FRET_YELLOW, 0}}), make_note(3840), make_note(4032), make_chord(10368, {{SightRead::FIVE_FRET_GREEN, 0}, {SightRead::FIVE_FRET_RED, 0}, {SightRead::FIVE_FRET_YELLOW, 0}})}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {50}}, {SightRead::Tick {192}, SightRead::Tick {50}}, {SightRead::Tick {3840}, SightRead::Tick {50}}, {SightRead::Tick {4032}, SightRead::Tick {50}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; Optimiser optimiser {&track, &term_bool, 100, SightRead::Second(0.0)}; const auto& points = track.points(); std::vector<Activation> optimal_acts { {points.cbegin() + 2, points.cbegin() + 2, SightRead::Beat {0.0}, SightRead::Beat {2.0}, SightRead::Beat {18.0}}, {points.cbegin() + 5, points.cbegin() + 5, SightRead::Beat {0.0}, SightRead::Beat {54.0}, SightRead::Beat {70.0}}}; const auto opt_path = optimiser.optimal_path(); BOOST_CHECK_EQUAL(opt_path.score_boost, 300); BOOST_CHECK_EQUAL_COLLECTIONS(opt_path.activations.cbegin(), opt_path.activations.cend(), optimal_acts.cbegin(), optimal_acts.cend()); } BOOST_AUTO_TEST_CASE(simplest_song_with_an_act_containing_more_than_one_note) { std::vector<SightRead::Note> notes {make_note(0), make_note(192), make_note(384), make_note(576)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {50}}, {SightRead::Tick {192}, SightRead::Tick {50}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; Optimiser optimiser {&track, &term_bool, 100, SightRead::Second(0.0)}; const auto& points = track.points(); std::vector<Activation> optimal_acts { {points.cbegin() + 2, points.cbegin() + 3, SightRead::Beat {0.0}, SightRead::Beat {2.0}, SightRead::Beat {18.0}}}; const auto opt_path = optimiser.optimal_path(); BOOST_CHECK_EQUAL(opt_path.score_boost, 100); BOOST_CHECK_EQUAL_COLLECTIONS(opt_path.activations.cbegin(), opt_path.activations.cend(), optimal_acts.cbegin(), optimal_acts.cend()); } BOOST_AUTO_TEST_CASE(simplest_song_with_an_act_that_must_go_as_long_as_possible) { std::vector<SightRead::Note> notes {make_note(0), make_note(192), make_note(384), make_note(3360)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {50}}, {SightRead::Tick {192}, SightRead::Tick {50}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; Optimiser optimiser {&track, &term_bool, 100, SightRead::Second(0.0)}; const auto& points = track.points(); std::vector<Activation> optimal_acts { {points.cbegin() + 2, points.cbegin() + 3, SightRead::Beat {0.0}, SightRead::Beat {2.0}, SightRead::Beat {18.0}}}; const auto opt_path = optimiser.optimal_path(); BOOST_CHECK_EQUAL(opt_path.score_boost, 100); BOOST_CHECK_EQUAL_COLLECTIONS(opt_path.activations.cbegin(), opt_path.activations.cend(), optimal_acts.cbegin(), optimal_acts.cend()); } BOOST_AUTO_TEST_CASE(simplest_song_where_greedy_algorithm_fails) { std::vector<SightRead::Note> notes { make_note(0), make_note(192), make_note(384), make_chord( 3840, {{SightRead::FIVE_FRET_GREEN, 0}, {SightRead::FIVE_FRET_RED, 0}})}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {50}}, {SightRead::Tick {192}, SightRead::Tick {50}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; Optimiser optimiser {&track, &term_bool, 100, SightRead::Second(0.0)}; const auto& points = track.points(); std::vector<Activation> optimal_acts { {points.cbegin() + 3, points.cbegin() + 3, SightRead::Beat {0.0}, SightRead::Beat {20.0}, SightRead::Beat {36.0}}}; const auto opt_path = optimiser.optimal_path(); BOOST_CHECK_EQUAL(opt_path.score_boost, 100); BOOST_CHECK_EQUAL_COLLECTIONS(opt_path.activations.cbegin(), opt_path.activations.cend(), optimal_acts.cbegin(), optimal_acts.cend()); } BOOST_AUTO_TEST_CASE(simplest_song_where_a_phrase_must_be_hit_early) { std::vector<SightRead::Note> notes { make_note(0), make_note(192), make_note(384), make_note(3224), make_note(9378), make_note(15714), make_note(15715)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {50}}, {SightRead::Tick {192}, SightRead::Tick {50}}, {SightRead::Tick {3224}, SightRead::Tick {50}}, {SightRead::Tick {9378}, SightRead::Tick {50}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; Optimiser optimiser {&track, &term_bool, 100, SightRead::Second(0.0)}; const auto& points = track.points(); std::vector<Activation> optimal_acts { {points.cbegin() + 2, points.cbegin() + 2, SightRead::Beat {0.0}, SightRead::Beat {0.8958}, SightRead::Beat {16.8958}}, {points.cbegin() + 5, points.cbegin() + 6, SightRead::Beat {0.0}, SightRead::Beat {81.84375}, SightRead::Beat {97.84375}}}; const auto opt_path = optimiser.optimal_path(); BOOST_CHECK_EQUAL(opt_path.score_boost, 150); BOOST_CHECK_EQUAL_COLLECTIONS(opt_path.activations.cbegin(), opt_path.activations.cend(), optimal_acts.cbegin(), optimal_acts.cend()); } // Naively the ideal path would be 2-1, but we have to squeeze the last SP // phrase early for the 2 to work and this makes the 1 impossible. So the // optimal path is really 3. BOOST_AUTO_TEST_CASE(simplest_song_where_activations_ending_late_matter) { std::vector<SightRead::Note> notes { make_note(0), make_note(192), make_note(384), make_note(3234, 1440), make_note(10944), make_note(10945), make_note(10946), make_note(10947), make_note(10948), make_note(10949), make_note(10950), make_note(10951), make_note(10952), make_note(10953)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {50}}, {SightRead::Tick {192}, SightRead::Tick {50}}, {SightRead::Tick {3234}, SightRead::Tick {50}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; Optimiser optimiser {&track, &term_bool, 100, SightRead::Second(0.0)}; const auto opt_path = optimiser.optimal_path(); BOOST_CHECK_EQUAL(opt_path.score_boost, 750); BOOST_CHECK_EQUAL(opt_path.activations.size(), 1); } // There was a bug where sustains at the start of an SP phrase right after an // activation/start of song had their early whammy discounted, if that note // didn't also grant SP. This affected a squeeze in GH3 Cult of Personality. // This test is to catch that. BOOST_AUTO_TEST_CASE(early_whammy_at_start_of_an_sp_phrase_is_always_counted) { std::vector<SightRead::Note> notes {make_note(0, 1420), make_note(1500), make_note(1600)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {1550}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; Optimiser optimiser {&track, &term_bool, 100, SightRead::Second(0.0)}; const auto opt_path = optimiser.optimal_path(); BOOST_CHECK_EQUAL(opt_path.score_boost, 50); BOOST_CHECK_EQUAL(opt_path.activations.size(), 1); } // There was a bug where an activation on a note right after an SP sustain could // double count the whammy available between the burst at the end of the sustain // and the note. This affected a squeeze in Epidox, making chopt think you could // squeeze from the O right before Robotic Buildup to a B in the next section. BOOST_AUTO_TEST_CASE( whammy_just_before_the_activation_point_is_not_double_counted) { std::vector<SightRead::Note> notes {make_note(192, 1440), make_note(1632), make_note(6336)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {192}, SightRead::Tick {1}}, {SightRead::Tick {1632}, SightRead::Tick {1}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; Optimiser optimiser {&track, &term_bool, 100, SightRead::Second(0.0)}; const auto opt_path = optimiser.optimal_path(); BOOST_CHECK_LT(opt_path.score_boost, 100); } // There was a bug where an activation on a note right after an SP sustain could // be drawn starting right after the tick burst, rather than the proper place. // An example is the last activation of Gamer National Anthem in CSC August // 2020. BOOST_AUTO_TEST_CASE(activation_right_after_a_sp_sustain_is_drawn_correctly) { std::vector<SightRead::Note> notes {make_note(0, 1488), make_note(2880, 3264)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {1}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; Optimiser optimiser {&track, &term_bool, 100, SightRead::Second(0.0)}; const auto opt_path = optimiser.optimal_path(); BOOST_CHECK_GE(opt_path.activations[0].sp_start.value(), 15.0); } BOOST_AUTO_TEST_CASE(songs_ending_in_es1_are_pathed_correctly) { std::vector<SightRead::Note> notes { make_note(0), make_note(192), make_note(384), make_note(576), make_note(768), make_note(4032), make_note(4224)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {50}}, {SightRead::Tick {192}, SightRead::Tick {50}}, {SightRead::Tick {4032}, SightRead::Tick {50}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; Optimiser optimiser {&track, &term_bool, 100, SightRead::Second(0.0)}; const auto opt_path = optimiser.optimal_path(); BOOST_CHECK_EQUAL(opt_path.score_boost, 150); BOOST_CHECK_EQUAL(opt_path.activations.size(), 1); } BOOST_AUTO_TEST_CASE(compressed_whammy_is_specified_correctly) { std::vector<SightRead::Note> notes { make_note(192, 192), make_note(672), make_chord(1000, {{SightRead::FIVE_FRET_GREEN, 0}, {SightRead::FIVE_FRET_RED, 0}, {SightRead::FIVE_FRET_YELLOW, 0}}), make_note(3840), make_note(9984), make_chord(10176, {{SightRead::FIVE_FRET_GREEN, 0}, {SightRead::FIVE_FRET_RED, 0}, {SightRead::FIVE_FRET_YELLOW, 0}})}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {192}, SightRead::Tick {50}}, {SightRead::Tick {672}, SightRead::Tick {50}}, {SightRead::Tick {3840}, SightRead::Tick {50}}, {SightRead::Tick {9984}, SightRead::Tick {50}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; Optimiser optimiser {&track, &term_bool, 100, SightRead::Second(0.0)}; const auto opt_path = optimiser.optimal_path(); const auto& act = opt_path.activations[0]; BOOST_CHECK_EQUAL(opt_path.score_boost, 300); BOOST_CHECK_EQUAL(opt_path.activations.size(), 2); BOOST_CHECK_GT(act.whammy_end.value(), 1.06); BOOST_CHECK_LT(act.whammy_end.value(), 1.74); BOOST_CHECK_LT(act.sp_start.value(), 3.6); } BOOST_AUTO_TEST_CASE(acts_covering_the_last_note_do_not_compress_whammy) { std::vector<SightRead::Note> notes {make_note(0, 1536), make_note(1728)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {50}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; Optimiser optimiser {&track, &term_bool, 100, SightRead::Second(0.0)}; const auto opt_path = optimiser.optimal_path(); const auto& act = opt_path.activations[0]; BOOST_CHECK_GT(act.whammy_end.value(), 16.0); } BOOST_AUTO_TEST_CASE(use_next_point_to_work_out_compressed_whammy) { std::vector<SightRead::Note> notes { make_note(0), make_note(192), make_chord(384, {{SightRead::FIVE_FRET_GREEN, 0}, {SightRead::FIVE_FRET_RED, 0}, {SightRead::FIVE_FRET_YELLOW, 0}}), make_note(3350), make_note(3360), make_note(9504), make_chord(9696, {{SightRead::FIVE_FRET_GREEN, 0}, {SightRead::FIVE_FRET_RED, 0}, {SightRead::FIVE_FRET_YELLOW, 0}})}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {50}}, {SightRead::Tick {192}, SightRead::Tick {50}}, {SightRead::Tick {3350}, SightRead::Tick {50}}, {SightRead::Tick {9504}, SightRead::Tick {50}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; Optimiser optimiser {&track, &term_bool, 100, SightRead::Second(0.0)}; const auto opt_path = optimiser.optimal_path(); const auto& act = opt_path.activations[0]; BOOST_CHECK_GT(act.whammy_end.value(), 17.45); } // There was a bug where an activation after an SP sustain that comes after an // act with a forbidden squeeze would be shown to have ticks possible on the // forbidden squeeze even if ticks were not possible. An example is given by the // path for EON BREAK in CSC December 2019. BOOST_AUTO_TEST_CASE(forbidden_squeeze_does_not_grant_extra_whammy_next_act) { std::vector<SightRead::Note> notes {make_note(0), make_note(192), make_note(768), make_note(3840, 192), make_note(4224), make_note(19200, 192), make_note(38400), make_note(41990)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {1}}, {SightRead::Tick {192}, SightRead::Tick {1}}, {SightRead::Tick {3840}, SightRead::Tick {576}}, {SightRead::Tick {19200}, SightRead::Tick {1}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; Optimiser optimiser {&track, &term_bool, 100, SightRead::Second(0.0)}; const auto opt_path = optimiser.optimal_path(); BOOST_CHECK_EQUAL(opt_path.score_boost, 200); } // This isn't terribly well-defined. The heuristic is to still do a greedy // approach but to pick the easiest activation at any point given a tie. The // test is just enough to spot a difference between that and simple greedy. BOOST_AUTO_TEST_CASE(easier_activations_are_chosen_where_possible) { std::vector<SightRead::Note> notes {make_note(0), make_note(192), make_note(384), make_note(3504), make_note(9600), make_note(12672)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {1}}, {SightRead::Tick {192}, SightRead::Tick {1}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; Optimiser optimiser {&track, &term_bool, 100, SightRead::Second(0.0)}; const auto opt_path = optimiser.optimal_path(); BOOST_CHECK_GT(opt_path.activations[0].sp_start.value(), 20.0); } // There was a bug where EW could be obtained from a note before the note was // hit. This came up in xOn Our Kneesx from CSC November 2020, where this makes // CHOpt believe you can activate before the GY note and get an extra 300 // points. BOOST_AUTO_TEST_CASE( early_whammy_from_a_note_cannot_be_obtained_until_the_note_is_hit) { std::vector<SightRead::Note> notes {make_note(0, 1392), make_note(1536, 192)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {1}}, {SightRead::Tick {1536}, SightRead::Tick {1}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; Optimiser optimiser {&track, &term_bool, 100, SightRead::Second(0.0)}; const auto opt_path = optimiser.optimal_path(); BOOST_CHECK_EQUAL(opt_path.score_boost, 28); } // Video lag can cause a hold point to be the first point in a song. If this // happens then we cannot use std::prev on the iterator for the first point, so // we must check this before calling std::prev. BOOST_AUTO_TEST_CASE(does_not_crash_with_positive_video_lag) { std::vector<SightRead::Note> notes {make_note(192, 192)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {192}, SightRead::Tick {1}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, {1.0, 1.0, SightRead::Second {0.0}, SightRead::Second {0.1}, SightRead::Second {0.0}}, SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; Optimiser optimiser {&track, &term_bool, 100, SightRead::Second(0.0)}; const auto opt_path = optimiser.optimal_path(); BOOST_CHECK_EQUAL(opt_path.score_boost, 0); } BOOST_AUTO_TEST_CASE(whammy_delay_is_handled_correctly) { std::vector<SightRead::Note> notes { make_note(0), make_note(192), make_note(768), make_note(3840, 1420), make_note(5376), make_note(13056), make_note(13248), make_note(13440), make_note(13632), make_note(13824), make_note(14016), make_note(14208)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {1}}, {SightRead::Tick {192}, SightRead::Tick {1}}, {SightRead::Tick {3840}, SightRead::Tick {1728}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, {1.0, 1.0, SightRead::Second {0.0}, SightRead::Second {0.0}, SightRead::Second {0.1}}, SightRead::DrumSettings::default_settings(), ChGuitarEngine(), {}, {}}; Optimiser optimiser {&track, &term_bool, 100, SightRead::Second(0.1)}; const auto opt_path = optimiser.optimal_path(); BOOST_CHECK_EQUAL(opt_path.activations.size(), 2); BOOST_CHECK_EQUAL(opt_path.score_boost, 550); } BOOST_AUTO_TEST_SUITE_END() BOOST_AUTO_TEST_SUITE(drum_paths) BOOST_AUTO_TEST_CASE(drum_paths_can_only_activate_on_activation_notes) { std::vector<SightRead::Note> notes {make_drum_note(0), make_drum_note(192), make_drum_note(3000), make_drum_note(4000)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {1}}, {SightRead::Tick {192}, SightRead::Tick {1}}}; std::vector<SightRead::DrumFill> fills { {SightRead::Tick {3900}, SightRead::Tick {101}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::Drums, std::make_shared<SightRead::SongGlobalData>()}; note_track.drum_fills(fills); ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChDrumEngine(), {}, {}}; Optimiser optimiser {&track, &term_bool, 100, SightRead::Second(0.0)}; const auto opt_path = optimiser.optimal_path(); BOOST_CHECK_EQUAL(opt_path.activations.size(), 1); BOOST_CHECK_EQUAL(opt_path.score_boost, 50); } BOOST_AUTO_TEST_CASE( drum_paths_cant_activate_way_earlier_than_an_activation_note) { std::vector<SightRead::Note> notes { make_drum_note(0), make_drum_note(192), make_drum_note(3840), make_drum_note(3940), make_drum_note(4040), make_drum_note(17000), make_drum_note(20000), make_drum_note(20100)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {1}}, {SightRead::Tick {192}, SightRead::Tick {1}}, {SightRead::Tick {4040}, SightRead::Tick {1}}, {SightRead::Tick {17000}, SightRead::Tick {1}}}; std::vector<SightRead::DrumFill> fills { {SightRead::Tick {3830}, SightRead::Tick {20}}, {SightRead::Tick {19990}, SightRead::Tick {20}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::Drums, std::make_shared<SightRead::SongGlobalData>()}; note_track.drum_fills(fills); ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChDrumEngine(), {}, {}}; Optimiser optimiser {&track, &term_bool, 100, SightRead::Second(0.0)}; const auto opt_path = optimiser.optimal_path(); BOOST_CHECK_EQUAL(opt_path.activations.size(), 1); BOOST_CHECK_EQUAL(opt_path.score_boost, 150); } BOOST_AUTO_TEST_CASE(drum_reverse_squeezes_are_drawn_properly) { std::vector<SightRead::Note> notes { make_drum_note(0), make_drum_note(192), make_drum_note(19200), make_drum_note(22232), make_drum_note(22260), make_drum_note(90000), make_drum_note(90100), make_drum_note(90200)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {1}}, {SightRead::Tick {192}, SightRead::Tick {1}}, {SightRead::Tick {22232}, SightRead::Tick {1}}, {SightRead::Tick {22260}, SightRead::Tick {1}}}; std::vector<SightRead::DrumFill> fills { {SightRead::Tick {19190}, SightRead::Tick {20}}, {SightRead::Tick {89990}, SightRead::Tick {20}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::Drums, std::make_shared<SightRead::SongGlobalData>()}; note_track.drum_fills(fills); ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChDrumEngine(), {}, {}}; Optimiser optimiser {&track, &term_bool, 100, SightRead::Second(0.0)}; const auto opt_path = optimiser.optimal_path(); BOOST_CHECK_EQUAL(opt_path.activations.size(), 2); BOOST_CHECK_GT(opt_path.activations[0].sp_start.value(), 99.8); } BOOST_AUTO_TEST_CASE( drum_activations_can_only_happen_two_seconds_after_getting_sp) { std::vector<SightRead::Note> notes {make_drum_note(0), make_drum_note(192), make_drum_note(800), make_drum_note(1000)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {1}}, {SightRead::Tick {192}, SightRead::Tick {1}}}; std::vector<SightRead::DrumFill> fills { {SightRead::Tick {800}, SightRead::Tick {1}}, {SightRead::Tick {1000}, SightRead::Tick {1}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::Drums, std::make_shared<SightRead::SongGlobalData>()}; note_track.drum_fills(fills); ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChDrumEngine(), {}, {}}; Optimiser optimiser {&track, &term_bool, 100, SightRead::Second(0.0)}; const auto opt_path = optimiser.optimal_path(); BOOST_CHECK_EQUAL(opt_path.score_boost, 50); } BOOST_AUTO_TEST_CASE(drum_activation_delay_is_affected_by_speed) { std::vector<SightRead::Note> notes {make_drum_note(0), make_drum_note(192), make_drum_note(800), make_drum_note(1000)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {1}}, {SightRead::Tick {192}, SightRead::Tick {1}}}; std::vector<SightRead::DrumFill> fills { {SightRead::Tick {800}, SightRead::Tick {1}}, {SightRead::Tick {1000}, SightRead::Tick {1}}}; auto tempo_map = SightRead::TempoMap().speedup(200); auto global_data = std::make_shared<SightRead::SongGlobalData>(); global_data->tempo_map(tempo_map); SightRead::NoteTrack note_track {notes, phrases, SightRead::TrackType::Drums, global_data}; note_track.drum_fills(fills); ProcessedSong track {note_track, {tempo_map, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChDrumEngine(), {}, {}}; Optimiser optimiser {&track, &term_bool, 200, SightRead::Second(0.0)}; const auto opt_path = optimiser.optimal_path(); BOOST_CHECK_EQUAL(opt_path.score_boost, 50); } BOOST_AUTO_TEST_SUITE_END() BOOST_AUTO_TEST_SUITE(no_overlap_guitar_paths) BOOST_AUTO_TEST_CASE(simplest_song_where_overlap_matters) { std::vector<SightRead::Note> notes { make_note(0), make_note(192), make_chord( 384, {{SightRead::FIVE_FRET_GREEN, 0}, {SightRead::FIVE_FRET_RED, 0}}), make_note(3456), make_note(4224)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {50}}, {SightRead::Tick {192}, SightRead::Tick {50}}, {SightRead::Tick {3456}, SightRead::Tick {50}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), Gh1Engine(), {}, {}}; Optimiser optimiser {&track, &term_bool, 100, SightRead::Second(0.0)}; const auto& points = track.points(); std::vector<Activation> optimal_acts { {points.cbegin() + 2, points.cbegin() + 3, SightRead::Beat {0.0}, SightRead::Beat {2.0}, SightRead::Beat {18.0}}}; const auto opt_path = optimiser.optimal_path(); BOOST_CHECK_EQUAL(opt_path.score_boost, 150); BOOST_CHECK_EQUAL_COLLECTIONS(opt_path.activations.cbegin(), opt_path.activations.cend(), optimal_acts.cbegin(), optimal_acts.cend()); } BOOST_AUTO_TEST_CASE(partial_overlap_doesnt_work) { std::vector<SightRead::Note> notes { make_note(0), make_note(192), make_chord(384, {{SightRead::FIVE_FRET_GREEN, 0}, {SightRead::FIVE_FRET_RED, 0}, {SightRead::FIVE_FRET_YELLOW, 0}}), make_note(3456), make_note(3648), make_note(4224), make_chord(4416, {{SightRead::FIVE_FRET_GREEN, 0}, {SightRead::FIVE_FRET_RED, 0}, {SightRead::FIVE_FRET_YELLOW, 0}})}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {50}}, {SightRead::Tick {192}, SightRead::Tick {50}}, {SightRead::Tick {3456}, SightRead::Tick {200}}, {SightRead::Tick {4224}, SightRead::Tick {50}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), Gh1Engine(), {}, {}}; Optimiser optimiser {&track, &term_bool, 100, SightRead::Second(0.0)}; const auto& points = track.points(); std::vector<Activation> optimal_acts { {points.cbegin() + 2, points.cbegin() + 2, SightRead::Beat {0.0}, SightRead::Beat {2.0}, SightRead::Beat {18.0}}, {points.cbegin() + 6, points.cbegin() + 6, SightRead::Beat {0.0}, SightRead::Beat {23.0}, SightRead::Beat {39.0}}}; const auto opt_path = optimiser.optimal_path(); BOOST_CHECK_EQUAL(opt_path.score_boost, 300); BOOST_CHECK_EQUAL_COLLECTIONS(opt_path.activations.cbegin(), opt_path.activations.cend(), optimal_acts.cbegin(), optimal_acts.cend()); } BOOST_AUTO_TEST_CASE(compressed_whammy_considered_even_with_maxable_sp) { std::vector<SightRead::Note> notes { make_note(0, 3072), make_note(9600), make_note(10368), make_chord(11136, {{SightRead::FIVE_FRET_GREEN, 0}, {SightRead::FIVE_FRET_RED, 0}, {SightRead::FIVE_FRET_YELLOW, 0}}), make_chord(15744, {{SightRead::FIVE_FRET_GREEN, 0}, {SightRead::FIVE_FRET_RED, 0}, {SightRead::FIVE_FRET_YELLOW, 0}}), make_note(15936), make_note(23616), make_chord(24384, {{SightRead::FIVE_FRET_GREEN, 0}, {SightRead::FIVE_FRET_RED, 0}, {SightRead::FIVE_FRET_YELLOW, 0}})}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {50}}, {SightRead::Tick {9600}, SightRead::Tick {800}}, {SightRead::Tick {15936}, SightRead::Tick {50}}, {SightRead::Tick {23616}, SightRead::Tick {50}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::Measure}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), Gh1Engine(), {}, {}}; Optimiser optimiser {&track, &term_bool, 100, SightRead::Second(0.0)}; const auto& points = track.points(); std::vector<Activation> optimal_acts { {points.cend() - 5, points.cend() - 4, SightRead::Beat {0.0}, SightRead::Beat {54.0}, SightRead::Beat {83.0}}, {points.cend() - 1, points.cend() - 1, SightRead::Beat {0.0}, SightRead::Beat {127.0}, SightRead::Beat {143.0}}}; const auto opt_path = optimiser.optimal_path(); BOOST_CHECK_EQUAL(opt_path.score_boost, 450); BOOST_CHECK_EQUAL_COLLECTIONS(opt_path.activations.cbegin(), opt_path.activations.cend(), optimal_acts.cbegin(), optimal_acts.cend()); } BOOST_AUTO_TEST_SUITE_END() BOOST_AUTO_TEST_CASE(quarter_bar_activations_are_possible_on_fortnite_engine) { std::vector<SightRead::Note> notes {make_note(0), make_note(192)}; std::vector<SightRead::StarPower> phrases { {SightRead::Tick {0}, SightRead::Tick {50}}}; SightRead::NoteTrack note_track { notes, phrases, SightRead::TrackType::FortniteFestival, std::make_shared<SightRead::SongGlobalData>()}; ProcessedSong track {note_track, {{}, SpMode::OdBeat}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), FortniteGuitarEngine(), {}, {}}; Optimiser optimiser {&track, &term_bool, 100, SightRead::Second(0.0)}; const auto& points = track.points(); std::vector<Activation> optimal_acts { {points.cbegin() + 1, points.cbegin() + 1, SightRead::Beat {0.0}, SightRead::Beat {1.0}, SightRead::Beat {9.0}}}; const auto opt_path = optimiser.optimal_path(); BOOST_CHECK_EQUAL(opt_path.score_boost, 36); BOOST_CHECK_EQUAL_COLLECTIONS(opt_path.activations.cbegin(), opt_path.activations.cend(), optimal_acts.cbegin(), optimal_acts.cend()); }
42,546
C++
.cpp
870
37.211494
80
0.578112
GenericMadScientist/CHOpt
33
4
5
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,756
stringutil_unittest.cpp
GenericMadScientist_CHOpt/tests/stringutil_unittest.cpp
/* * CHOpt - Star Power optimiser for Clone Hero * Copyright (C) 2020, 2021, 2022, 2023, 2024 Raymond Wright * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <https://www.gnu.org/licenses/>. */ #include <stdexcept> #include <boost/test/unit_test.hpp> #include "stringutil.hpp" BOOST_AUTO_TEST_CASE(break_off_newline_works_correctly) { std::string_view data = "Hello\nThe\rre\r\nWorld!"; BOOST_CHECK_EQUAL(break_off_newline(data), "Hello"); BOOST_CHECK_EQUAL(data, "The\rre\r\nWorld!"); BOOST_CHECK_EQUAL(break_off_newline(data), "The\rre"); BOOST_CHECK_EQUAL(data, "World!"); } BOOST_AUTO_TEST_CASE(skip_whitespace_works_correctly) { BOOST_CHECK_EQUAL(skip_whitespace("Hello"), "Hello"); BOOST_CHECK_EQUAL(skip_whitespace(" Hello"), "Hello"); BOOST_CHECK_EQUAL(skip_whitespace("H ello"), "H ello"); } BOOST_AUTO_TEST_CASE(to_utf8_string_strips_utf8_bom) { const std::string text {"\xEF\xBB\xBF\x6E"}; BOOST_CHECK_EQUAL(to_utf8_string(text), "n"); } BOOST_AUTO_TEST_CASE(to_utf8_string_treats_no_bom_string_as_utf8) { const std::string text {"Hello"}; BOOST_CHECK_EQUAL(to_utf8_string(text), "Hello"); } BOOST_AUTO_TEST_CASE(to_utf8_string_correctly_converts_from_utf16le_to_utf8) { const std::string text { "\xFF\xFE\x6E\x00\x61\x00\x6D\x00\x65\x00\x3D\x00\x54\x00\x65\x00\x73" "\x00\x74\x00", 20}; BOOST_CHECK_EQUAL(to_utf8_string(text), "name=Test"); } BOOST_AUTO_TEST_CASE(to_utf8_string_correctly_converts_from_latin_1_strings) { const std::string text {"\xE9\x30"}; BOOST_CHECK_EQUAL(to_utf8_string(text), "é0"); } BOOST_AUTO_TEST_CASE(to_ordinal_works_correctly) { BOOST_CHECK_EQUAL(to_ordinal(0), "0th"); BOOST_CHECK_EQUAL(to_ordinal(1), "1st"); BOOST_CHECK_EQUAL(to_ordinal(2), "2nd"); BOOST_CHECK_EQUAL(to_ordinal(3), "3rd"); BOOST_CHECK_EQUAL(to_ordinal(4), "4th"); BOOST_CHECK_EQUAL(to_ordinal(11), "11th"); BOOST_CHECK_EQUAL(to_ordinal(12), "12th"); BOOST_CHECK_EQUAL(to_ordinal(13), "13th"); BOOST_CHECK_THROW([&] { return to_ordinal(-1); }(), std::exception); }
2,690
C++
.cpp
69
35.73913
78
0.704912
GenericMadScientist/CHOpt
33
4
5
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,757
imagebuilder_unittest.cpp
GenericMadScientist_CHOpt/tests/imagebuilder_unittest.cpp
/* * CHOpt - Star Power optimiser for Clone Hero * Copyright (C) 2020, 2021, 2022, 2023, 2024 Raymond Wright * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <https://www.gnu.org/licenses/>. */ #include <cstdlib> #include <iostream> #include <boost/test/unit_test.hpp> #include "test_helpers.hpp" namespace boost::test_tools::tt_detail { template <> struct print_log_value<std::tuple<double, double>> { void operator()(std::ostream& stream, const std::tuple<double, double>& tuple) { const auto& [first, second] = tuple; stream << '{' << first << ", " << second << '}'; } }; template <> struct print_log_value<std::tuple<double, std::string>> { void operator()(std::ostream& stream, const std::tuple<double, std::string>& tuple) { const auto& [first, second] = tuple; stream << '{' << first << ", " << second << '}'; } }; template <> struct print_log_value<std::tuple<double, int, int>> { void operator()(std::ostream& stream, const std::tuple<double, int, int>& tuple) { const auto& [first, second, third] = tuple; stream << '{' << first << ", " << second << ", " << third << '}'; } }; } namespace { DrawnNote make_drawn_note(double position, double length = 0.0, SightRead::FiveFretNotes colour = SightRead::FIVE_FRET_GREEN) { DrawnNote note {}; note.beat = position; note.note_flags = SightRead::FLAGS_FIVE_FRET_GUITAR; note.lengths.fill(-1.0); note.lengths.at(colour) = length; note.is_sp_note = false; return note; } DrawnNote make_drawn_sp_note(double position, double length = 0.0, SightRead::FiveFretNotes colour = SightRead::FIVE_FRET_GREEN) { DrawnNote note {}; note.beat = position; note.note_flags = SightRead::FLAGS_FIVE_FRET_GUITAR; note.lengths.fill(-1.0); note.lengths.at(colour) = length; note.is_sp_note = true; return note; } DrawnNote make_drawn_ghl_note(double position, double length = 0.0, SightRead::SixFretNotes colour = SightRead::SIX_FRET_WHITE_LOW) { DrawnNote note {}; note.beat = position; note.note_flags = SightRead::FLAGS_SIX_FRET_GUITAR; note.lengths.fill(-1.0); note.lengths.at(colour) = length; note.is_sp_note = false; return note; } DrawnNote make_drawn_drum_note(double position, SightRead::DrumNotes colour = SightRead::DRUM_RED, SightRead::NoteFlags flags = SightRead::FLAGS_NONE) { DrawnNote note {}; note.beat = position; note.note_flags = static_cast<SightRead::NoteFlags>(flags | SightRead::FLAGS_DRUMS); note.lengths.fill(-1.0); note.lengths.at(colour) = 0.0; note.is_sp_note = false; return note; } } namespace SightRead { std::ostream& operator<<(std::ostream& stream, Difficulty difficulty) { stream << static_cast<int>(difficulty); return stream; } std::ostream& operator<<(std::ostream& stream, TrackType track_type) { stream << static_cast<int>(track_type); return stream; } } BOOST_AUTO_TEST_SUITE(track_type_is_stored_correctly) BOOST_AUTO_TEST_CASE(five_fret_gets_the_right_track_type) { SightRead::NoteTrack track {{}, {}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ImageBuilder builder {track, SightRead::Difficulty::Expert, SightRead::DrumSettings::default_settings(), false, true}; BOOST_CHECK_EQUAL(builder.track_type(), SightRead::TrackType::FiveFret); } BOOST_AUTO_TEST_CASE(six_fret_gets_the_right_track_type) { SightRead::NoteTrack track {{}, {}, SightRead::TrackType::SixFret, std::make_shared<SightRead::SongGlobalData>()}; ImageBuilder builder {track, SightRead::Difficulty::Expert, SightRead::DrumSettings::default_settings(), false, true}; BOOST_CHECK_EQUAL(builder.track_type(), SightRead::TrackType::SixFret); } BOOST_AUTO_TEST_CASE(drums_gets_the_right_track_type) { SightRead::NoteTrack track {{}, {}, SightRead::TrackType::Drums, std::make_shared<SightRead::SongGlobalData>()}; ImageBuilder builder {track, SightRead::Difficulty::Expert, SightRead::DrumSettings::default_settings(), false, true}; BOOST_CHECK_EQUAL(builder.track_type(), SightRead::TrackType::Drums); } BOOST_AUTO_TEST_SUITE_END() BOOST_AUTO_TEST_SUITE(notes_are_handled_correctly) BOOST_AUTO_TEST_CASE(non_sp_non_sustains_are_handled_correctly) { SightRead::NoteTrack track { {make_note(0), make_note(768, 0, SightRead::FIVE_FRET_RED)}, {}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ImageBuilder builder {track, SightRead::Difficulty::Expert, SightRead::DrumSettings::default_settings(), false, true}; std::vector<DrawnNote> expected_notes { make_drawn_note(0), make_drawn_note(4, 0, SightRead::FIVE_FRET_RED)}; BOOST_CHECK_EQUAL_COLLECTIONS( builder.notes().cbegin(), builder.notes().cend(), expected_notes.cbegin(), expected_notes.cend()); } BOOST_AUTO_TEST_CASE(sustains_are_handled_correctly) { SightRead::NoteTrack track {{make_note(0, 96)}, {}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ImageBuilder builder {track, SightRead::Difficulty::Expert, SightRead::DrumSettings::default_settings(), false, true}; std::vector<DrawnNote> expected_notes {make_drawn_note(0, 0.5)}; BOOST_CHECK_EQUAL_COLLECTIONS( builder.notes().cbegin(), builder.notes().cend(), expected_notes.cbegin(), expected_notes.cend()); } BOOST_AUTO_TEST_CASE(sp_notes_are_recorded) { SightRead::NoteTrack track { {make_note(0), make_note(768)}, {{SightRead::Tick {768}, SightRead::Tick {100}}}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ImageBuilder builder {track, SightRead::Difficulty::Expert, SightRead::DrumSettings::default_settings(), false, true}; std::vector<DrawnNote> expected_notes {make_drawn_note(0), make_drawn_sp_note(4)}; BOOST_CHECK_EQUAL_COLLECTIONS( builder.notes().cbegin(), builder.notes().cend(), expected_notes.cbegin(), expected_notes.cend()); } BOOST_AUTO_TEST_CASE(six_fret_notes_are_handled_correctly) { SightRead::NoteTrack track { {make_ghl_note(0), make_ghl_note(768, 0, SightRead::SIX_FRET_BLACK_HIGH)}, {}, SightRead::TrackType::SixFret, std::make_shared<SightRead::SongGlobalData>()}; ImageBuilder builder {track, SightRead::Difficulty::Expert, SightRead::DrumSettings::default_settings(), false, true}; std::vector<DrawnNote> expected_notes { make_drawn_ghl_note(0), make_drawn_ghl_note(4, 0, SightRead::SIX_FRET_BLACK_HIGH)}; BOOST_CHECK_EQUAL_COLLECTIONS( builder.notes().cbegin(), builder.notes().cend(), expected_notes.cbegin(), expected_notes.cend()); } BOOST_AUTO_TEST_CASE(drum_notes_are_handled_correctly) { SightRead::NoteTrack track { {make_drum_note(0), make_drum_note(768, SightRead::DRUM_YELLOW, SightRead::FLAGS_CYMBAL)}, {}, SightRead::TrackType::Drums, std::make_shared<SightRead::SongGlobalData>()}; ImageBuilder builder {track, SightRead::Difficulty::Expert, SightRead::DrumSettings::default_settings(), false, true}; std::vector<DrawnNote> expected_notes { make_drawn_drum_note(0), make_drawn_drum_note(4, SightRead::DRUM_YELLOW, SightRead::FLAGS_CYMBAL)}; BOOST_CHECK_EQUAL_COLLECTIONS( builder.notes().cbegin(), builder.notes().cend(), expected_notes.cbegin(), expected_notes.cend()); } BOOST_AUTO_TEST_SUITE_END() BOOST_AUTO_TEST_SUITE(drawn_rows_are_handled_correctly) BOOST_AUTO_TEST_CASE(simple_four_four_is_handled_correctly) { SightRead::NoteTrack track {{make_note(2880)}, {}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ImageBuilder builder {track, SightRead::Difficulty::Expert, SightRead::DrumSettings::default_settings(), false, true}; std::vector<DrawnRow> expected_rows {{0.0, 16.0}}; BOOST_CHECK_EQUAL_COLLECTIONS(builder.rows().cbegin(), builder.rows().cend(), expected_rows.cbegin(), expected_rows.cend()); } BOOST_AUTO_TEST_CASE(three_x_time_sigs_are_handled) { SightRead::TempoMap tempo_map {{{SightRead::Tick {0}, 4, 4}, {SightRead::Tick {768}, 3, 4}, {SightRead::Tick {1344}, 3, 8}, {SightRead::Tick {1632}, 4, 4}}, {}, {}, 192}; auto global_data = std::make_shared<SightRead::SongGlobalData>(); global_data->tempo_map(tempo_map); SightRead::NoteTrack track { {make_note(2450)}, {}, SightRead::TrackType::FiveFret, global_data}; ImageBuilder builder {track, SightRead::Difficulty::Expert, SightRead::DrumSettings::default_settings(), false, true}; std::vector<DrawnRow> expected_rows {{0.0, 12.5}, {12.5, 16.5}}; BOOST_CHECK_EQUAL_COLLECTIONS(builder.rows().cbegin(), builder.rows().cend(), expected_rows.cbegin(), expected_rows.cend()); } BOOST_AUTO_TEST_CASE(time_signature_changes_off_measure_are_coped_with) { SightRead::TempoMap tempo_map {{{SightRead::Tick {0}, 4, 4}, {SightRead::Tick {767}, 3, 4}, {SightRead::Tick {1344}, 3, 8}}, {}, {}, 192}; auto global_data = std::make_shared<SightRead::SongGlobalData>(); global_data->tempo_map(tempo_map); SightRead::NoteTrack track { {make_note(768)}, {}, SightRead::TrackType::FiveFret, global_data}; ImageBuilder builder {track, SightRead::Difficulty::Expert, SightRead::DrumSettings::default_settings(), false, true}; std::vector<DrawnRow> expected_rows {{0.0, 7.0}}; BOOST_CHECK_EQUAL_COLLECTIONS(builder.rows().cbegin(), builder.rows().cend(), expected_rows.cbegin(), expected_rows.cend()); } BOOST_AUTO_TEST_CASE(x_four_for_x_gt_16_is_handled) { SightRead::TempoMap tempo_map {{{SightRead::Tick {0}, 17, 4}}, {}, {}, 192}; auto global_data = std::make_shared<SightRead::SongGlobalData>(); global_data->tempo_map(tempo_map); SightRead::NoteTrack track { {make_note(0)}, {}, SightRead::TrackType::FiveFret, global_data}; ImageBuilder builder {track, SightRead::Difficulty::Expert, SightRead::DrumSettings::default_settings(), false, true}; std::vector<DrawnRow> expected_rows {{0.0, 16.0}, {16.0, 17.0}}; BOOST_CHECK_EQUAL_COLLECTIONS(builder.rows().cbegin(), builder.rows().cend(), expected_rows.cbegin(), expected_rows.cend()); } BOOST_AUTO_TEST_CASE(enough_rows_are_drawn_for_end_of_song_sustains) { SightRead::NoteTrack track {{make_note(0, 3840)}, {}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ImageBuilder builder {track, SightRead::Difficulty::Expert, SightRead::DrumSettings::default_settings(), false, true}; BOOST_CHECK_EQUAL(builder.rows().size(), 2); } BOOST_AUTO_TEST_SUITE_END() BOOST_AUTO_TEST_SUITE(beat_lines_are_correct) BOOST_AUTO_TEST_CASE(four_four_works_fine) { SightRead::NoteTrack track {{make_note(767)}, {}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ImageBuilder builder {track, SightRead::Difficulty::Expert, SightRead::DrumSettings::default_settings(), false, true}; std::vector<double> expected_half_beat_lines {0.5, 1.5, 2.5, 3.5}; std::vector<double> expected_beat_lines {1.0, 2.0, 3.0}; std::vector<double> expected_measure_lines {0.0, 4.0}; BOOST_CHECK_EQUAL_COLLECTIONS( builder.half_beat_lines().cbegin(), builder.half_beat_lines().cend(), expected_half_beat_lines.cbegin(), expected_half_beat_lines.cend()); BOOST_CHECK_EQUAL_COLLECTIONS( builder.beat_lines().cbegin(), builder.beat_lines().cend(), expected_beat_lines.cbegin(), expected_beat_lines.cend()); BOOST_CHECK_EQUAL_COLLECTIONS( builder.measure_lines().cbegin(), builder.measure_lines().cend(), expected_measure_lines.cbegin(), expected_measure_lines.cend()); } BOOST_AUTO_TEST_CASE(four_eight_works_fine) { SightRead::TempoMap tempo_map {{{SightRead::Tick {0}, 4, 8}}, {}, {}, 192}; auto global_data = std::make_shared<SightRead::SongGlobalData>(); global_data->tempo_map(tempo_map); SightRead::NoteTrack track { {make_note(767)}, {}, SightRead::TrackType::FiveFret, global_data}; ImageBuilder builder {track, SightRead::Difficulty::Expert, SightRead::DrumSettings::default_settings(), false, true}; std::vector<double> expected_half_beat_lines {0.25, 0.75, 1.25, 1.75, 2.25, 2.75, 3.25, 3.75}; std::vector<double> expected_beat_lines {0.5, 1.0, 1.5, 2.5, 3.0, 3.5}; std::vector<double> expected_measure_lines {0.0, 2.0, 4.0}; BOOST_CHECK_EQUAL_COLLECTIONS( builder.half_beat_lines().cbegin(), builder.half_beat_lines().cend(), expected_half_beat_lines.cbegin(), expected_half_beat_lines.cend()); BOOST_CHECK_EQUAL_COLLECTIONS( builder.beat_lines().cbegin(), builder.beat_lines().cend(), expected_beat_lines.cbegin(), expected_beat_lines.cend()); BOOST_CHECK_EQUAL_COLLECTIONS( builder.measure_lines().cbegin(), builder.measure_lines().cend(), expected_measure_lines.cbegin(), expected_measure_lines.cend()); } BOOST_AUTO_TEST_CASE(combination_of_four_four_and_four_eight_works_fine) { SightRead::TempoMap tempo_map { {{SightRead::Tick {0}, 4, 4}, {SightRead::Tick {768}, 4, 8}}, {}, {}, 192}; auto global_data = std::make_shared<SightRead::SongGlobalData>(); global_data->tempo_map(tempo_map); SightRead::NoteTrack track { {make_note(1151)}, {}, SightRead::TrackType::FiveFret, global_data}; ImageBuilder builder {track, SightRead::Difficulty::Expert, SightRead::DrumSettings::default_settings(), false, true}; std::vector<double> expected_half_beat_lines {0.5, 1.5, 2.5, 3.5, 4.25, 4.75, 5.25, 5.75}; std::vector<double> expected_beat_lines {1.0, 2.0, 3.0, 4.5, 5.0, 5.5}; std::vector<double> expected_measure_lines {0.0, 4.0, 6.0}; BOOST_CHECK_EQUAL_COLLECTIONS( builder.half_beat_lines().cbegin(), builder.half_beat_lines().cend(), expected_half_beat_lines.cbegin(), expected_half_beat_lines.cend()); BOOST_CHECK_EQUAL_COLLECTIONS( builder.beat_lines().cbegin(), builder.beat_lines().cend(), expected_beat_lines.cbegin(), expected_beat_lines.cend()); BOOST_CHECK_EQUAL_COLLECTIONS( builder.measure_lines().cbegin(), builder.measure_lines().cend(), expected_measure_lines.cbegin(), expected_measure_lines.cend()); } BOOST_AUTO_TEST_SUITE_END() BOOST_AUTO_TEST_SUITE(time_signatures_are_handled_correctly) BOOST_AUTO_TEST_CASE(normal_time_signatures_are_handled_correctly) { SightRead::TempoMap tempo_map { {{SightRead::Tick {0}, 4, 4}, {SightRead::Tick {768}, 4, 8}}, {}, {}, 192}; auto global_data = std::make_shared<SightRead::SongGlobalData>(); global_data->tempo_map(tempo_map); SightRead::NoteTrack track { {make_note(1920)}, {}, SightRead::TrackType::FiveFret, global_data}; ImageBuilder builder {track, SightRead::Difficulty::Expert, SightRead::DrumSettings::default_settings(), false, true}; builder.add_time_sigs(tempo_map); std::vector<std::tuple<double, int, int>> expected_time_sigs {{0.0, 4, 4}, {4.0, 4, 8}}; BOOST_CHECK_EQUAL_COLLECTIONS( builder.time_sigs().cbegin(), builder.time_sigs().cend(), expected_time_sigs.cbegin(), expected_time_sigs.cend()); } BOOST_AUTO_TEST_CASE(time_sig_changes_past_the_end_of_the_song_are_removed) { SightRead::TempoMap tempo_map { {{SightRead::Tick {0}, 4, 4}, {SightRead::Tick {1920}, 3, 4}}, {}, {}, 192}; auto global_data = std::make_shared<SightRead::SongGlobalData>(); global_data->tempo_map(tempo_map); SightRead::NoteTrack track { {make_note(768)}, {}, SightRead::TrackType::FiveFret, global_data}; ImageBuilder builder {track, SightRead::Difficulty::Expert, SightRead::DrumSettings::default_settings(), false, true}; builder.add_time_sigs(tempo_map); BOOST_CHECK_EQUAL(builder.time_sigs().size(), 1); } BOOST_AUTO_TEST_SUITE_END() BOOST_AUTO_TEST_SUITE(tempos_are_handled_correctly) BOOST_AUTO_TEST_CASE(normal_tempos_are_handled_correctly) { SightRead::TempoMap tempo_map {{}, {{SightRead::Tick {0}, 150000}, {SightRead::Tick {384}, 120000}, {SightRead::Tick {768}, 200000}}, {}, 192}; auto global_data = std::make_shared<SightRead::SongGlobalData>(); global_data->tempo_map(tempo_map); SightRead::NoteTrack track { {make_note(1920)}, {}, SightRead::TrackType::FiveFret, global_data}; ImageBuilder builder {track, SightRead::Difficulty::Expert, SightRead::DrumSettings::default_settings(), false, true}; builder.add_bpms(tempo_map); std::vector<std::tuple<double, double>> expected_bpms { {0.0, 150.0}, {2.0, 120.0}, {4.0, 200.0}}; BOOST_CHECK_EQUAL_COLLECTIONS(builder.bpms().cbegin(), builder.bpms().cend(), expected_bpms.cbegin(), expected_bpms.cend()); } BOOST_AUTO_TEST_CASE(tempo_changes_past_the_end_of_the_song_are_removed) { SightRead::TempoMap tempo_map { {}, {{SightRead::Tick {0}, 120000}, {SightRead::Tick {1920}, 200000}}, {}, 192}; auto global_data = std::make_shared<SightRead::SongGlobalData>(); global_data->tempo_map(tempo_map); SightRead::NoteTrack track { {make_note(768)}, {}, SightRead::TrackType::FiveFret, global_data}; ImageBuilder builder {track, SightRead::Difficulty::Expert, SightRead::DrumSettings::default_settings(), false, true}; builder.add_bpms(tempo_map); BOOST_CHECK_EQUAL(builder.bpms().size(), 1); } BOOST_AUTO_TEST_SUITE_END() BOOST_AUTO_TEST_CASE(normal_speed) { SightRead::NoteTrack track {{make_note(0)}, {}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; SightRead::SongGlobalData global_data; global_data.name("TestName"); global_data.artist("GMS"); global_data.charter("NotGMS"); ImageBuilder builder {track, SightRead::Difficulty::Expert, SightRead::DrumSettings::default_settings(), false, true}; builder.add_song_header(global_data); BOOST_CHECK_EQUAL(builder.song_name(), "TestName"); BOOST_CHECK_EQUAL(builder.artist(), "GMS"); BOOST_CHECK_EQUAL(builder.charter(), "NotGMS"); } BOOST_AUTO_TEST_SUITE(green_sp_ranges) BOOST_AUTO_TEST_CASE(green_ranges_for_sp_phrases_are_added_correctly) { SightRead::NoteTrack track { {make_note(960), make_note(1344, 96)}, {{SightRead::Tick {768}, SightRead::Tick {384}}, {SightRead::Tick {1200}, SightRead::Tick {150}}}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ImageBuilder builder {track, SightRead::Difficulty::Expert, SightRead::DrumSettings::default_settings(), false, true}; builder.add_sp_phrases(track, {}, Path {}); std::vector<std::tuple<double, double>> expected_green_ranges {{5.0, 5.1}, {7.0, 7.5}}; BOOST_CHECK_EQUAL_COLLECTIONS( builder.green_ranges().cbegin(), builder.green_ranges().cend(), expected_green_ranges.cbegin(), expected_green_ranges.cend()); } BOOST_AUTO_TEST_CASE(green_ranges_have_a_minimum_size) { SightRead::NoteTrack track { {make_note(768)}, {{SightRead::Tick {768}, SightRead::Tick {384}}}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ImageBuilder builder {track, SightRead::Difficulty::Expert, SightRead::DrumSettings::default_settings(), false, true}; builder.add_sp_phrases(track, {}, Path {}); std::vector<std::tuple<double, double>> expected_green_ranges {{4.0, 4.1}}; BOOST_CHECK_EQUAL_COLLECTIONS( builder.green_ranges().cbegin(), builder.green_ranges().cend(), expected_green_ranges.cbegin(), expected_green_ranges.cend()); } BOOST_AUTO_TEST_CASE(green_ranges_for_six_fret_sp_phrases_are_added_correctly) { SightRead::NoteTrack track { {make_ghl_note(960), make_ghl_note(1344, 96)}, {{SightRead::Tick {768}, SightRead::Tick {384}}, {SightRead::Tick {1200}, SightRead::Tick {150}}}, SightRead::TrackType::SixFret, std::make_shared<SightRead::SongGlobalData>()}; ImageBuilder builder {track, SightRead::Difficulty::Expert, SightRead::DrumSettings::default_settings(), false, true}; builder.add_sp_phrases(track, {}, Path {}); std::vector<std::tuple<double, double>> expected_green_ranges {{5.0, 5.1}, {7.0, 7.5}}; BOOST_CHECK_EQUAL_COLLECTIONS( builder.green_ranges().cbegin(), builder.green_ranges().cend(), expected_green_ranges.cbegin(), expected_green_ranges.cend()); } BOOST_AUTO_TEST_CASE(green_ranges_for_drums_sp_phrases_are_added_correctly) { SightRead::NoteTrack track { {make_drum_note(960), make_drum_note(1344)}, {{SightRead::Tick {768}, SightRead::Tick {384}}, {SightRead::Tick {1200}, SightRead::Tick {150}}}, SightRead::TrackType::Drums, std::make_shared<SightRead::SongGlobalData>()}; ImageBuilder builder {track, SightRead::Difficulty::Expert, SightRead::DrumSettings::default_settings(), false, true}; builder.add_sp_phrases(track, {}, Path {}); std::vector<std::tuple<double, double>> expected_green_ranges {{5.0, 5.1}, {7.0, 7.1}}; BOOST_CHECK_EQUAL_COLLECTIONS( builder.green_ranges().cbegin(), builder.green_ranges().cend(), expected_green_ranges.cbegin(), expected_green_ranges.cend()); } BOOST_AUTO_TEST_CASE(neutralised_green_ranges_are_ommitted_on_non_overlap_games) { SightRead::NoteTrack track { {make_note(0), make_note(768), make_note(3840)}, {{SightRead::Tick {3840}, SightRead::Tick {192}}}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; PointSet points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), Gh1Engine()}; ImageBuilder builder {track, SightRead::Difficulty::Expert, SightRead::DrumSettings::default_settings(), false, false}; Path path { {{points.cbegin() + 1, points.cbegin() + 2, SightRead::Beat {0.05}, SightRead::Beat {4.01}, SightRead::Beat {20.01}}}, 100}; builder.add_sp_phrases(track, {}, path); BOOST_TEST(builder.green_ranges().empty()); } BOOST_AUTO_TEST_SUITE_END() BOOST_AUTO_TEST_CASE(drum_fills_are_drawn_with_add_drum_fills) { SightRead::NoteTrack track {{{make_drum_note(288)}}, {}, SightRead::TrackType::Drums, std::make_shared<SightRead::SongGlobalData>()}; track.drum_fills({{SightRead::Tick {192}, SightRead::Tick {96}}}); ImageBuilder builder {track, SightRead::Difficulty::Expert, SightRead::DrumSettings::default_settings(), false, true}; builder.add_drum_fills(track); std::vector<std::tuple<double, double>> expected_fill_ranges {{1.0, 1.5}}; BOOST_CHECK_EQUAL_COLLECTIONS( builder.fill_ranges().cbegin(), builder.fill_ranges().cend(), expected_fill_ranges.cbegin(), expected_fill_ranges.cend()); } BOOST_AUTO_TEST_CASE(drum_fills_cannot_be_cancelled_by_a_kick) { SightRead::NoteTrack track {{make_drum_note(288, SightRead::DRUM_KICK)}, {}, SightRead::TrackType::Drums, std::make_shared<SightRead::SongGlobalData>()}; track.drum_fills({{SightRead::Tick {192}, SightRead::Tick {96}}}); ImageBuilder builder {track, SightRead::Difficulty::Expert, SightRead::DrumSettings::default_settings(), false, true}; builder.add_drum_fills(track); BOOST_CHECK_EQUAL(builder.fill_ranges().size(), 1); } BOOST_AUTO_TEST_CASE(double_kicks_only_drawn_with_enable_double_kick) { SightRead::NoteTrack track { {make_drum_note(0, SightRead::DRUM_KICK), make_drum_note(192, SightRead::DRUM_DOUBLE_KICK)}, {}, SightRead::TrackType::Drums, std::make_shared<SightRead::SongGlobalData>()}; ImageBuilder no_double_builder {track, SightRead::Difficulty::Expert, {false, false, false, false}, false, true}; ImageBuilder double_builder {track, SightRead::Difficulty::Expert, {true, false, false, false}, false, true}; BOOST_CHECK_EQUAL(no_double_builder.notes().size(), 1); BOOST_CHECK_EQUAL(double_builder.notes().size(), 2); } BOOST_AUTO_TEST_CASE(single_kicks_disappear_with_disable_kick) { SightRead::NoteTrack track { {make_drum_note(0, SightRead::DRUM_KICK), make_drum_note(192, SightRead::DRUM_DOUBLE_KICK)}, {}, SightRead::TrackType::Drums, std::make_shared<SightRead::SongGlobalData>()}; ImageBuilder builder {track, SightRead::Difficulty::Expert, {true, true, false, false}, false, true}; BOOST_CHECK_EQUAL(builder.notes().size(), 1); } BOOST_AUTO_TEST_CASE(cymbals_become_toms_with_pro_drums_off) { SightRead::NoteTrack track { {make_drum_note(0, SightRead::DRUM_YELLOW, SightRead::FLAGS_CYMBAL)}, {}, SightRead::TrackType::Drums, std::make_shared<SightRead::SongGlobalData>()}; ImageBuilder builder {track, SightRead::Difficulty::Expert, {true, false, false, false}, false, true}; BOOST_CHECK_EQUAL(builder.notes().size(), 1); BOOST_CHECK_EQUAL(builder.notes().front().note_flags, SightRead::FLAGS_DRUMS); } BOOST_AUTO_TEST_CASE(disco_flip_matters_only_with_pro_drums_on) { SightRead::NoteTrack track { {make_drum_note(192, SightRead::DRUM_YELLOW, SightRead::FLAGS_CYMBAL), make_drum_note(288, SightRead::DRUM_YELLOW)}, {}, SightRead::TrackType::Drums, std::make_shared<SightRead::SongGlobalData>()}; track.disco_flips({{SightRead::Tick {192}, SightRead::Tick {192}}}); ImageBuilder normal_builder {track, SightRead::Difficulty::Expert, {true, false, false, false}, false, true}; ImageBuilder pro_builder {track, SightRead::Difficulty::Expert, SightRead::DrumSettings::default_settings(), false, true}; BOOST_CHECK_EQUAL(normal_builder.notes().size(), 2); BOOST_CHECK_EQUAL(normal_builder.notes().front().note_flags, SightRead::FLAGS_DRUMS); BOOST_CHECK_EQUAL(pro_builder.notes().size(), 2); BOOST_CHECK_EQUAL(pro_builder.notes()[0].lengths[SightRead::DRUM_RED], 0); BOOST_CHECK_EQUAL(pro_builder.notes()[1].lengths[SightRead::DRUM_YELLOW], 0); BOOST_CHECK_EQUAL(pro_builder.notes()[1].note_flags, SightRead::FLAGS_DRUMS); } BOOST_AUTO_TEST_CASE(unison_phrases_are_added_correctly) { SightRead::NoteTrack track { {make_note(960), make_note(1344, 96)}, {{SightRead::Tick {768}, SightRead::Tick {384}}, {SightRead::Tick {1200}, SightRead::Tick {150}}}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ImageBuilder builder {track, SightRead::Difficulty::Expert, SightRead::DrumSettings::default_settings(), false, true}; builder.add_sp_phrases( track, {{SightRead::Tick {768}, SightRead::Tick {384}}}, Path {}); std::vector<std::tuple<double, double>> expected_unison_ranges {{5.0, 5.1}}; BOOST_CHECK_EQUAL_COLLECTIONS( builder.unison_ranges().cbegin(), builder.unison_ranges().cend(), expected_unison_ranges.cbegin(), expected_unison_ranges.cend()); } BOOST_AUTO_TEST_SUITE(add_sp_acts_adds_correct_ranges) BOOST_AUTO_TEST_CASE(normal_path_is_drawn_correctly) { SightRead::NoteTrack track {{make_note(0, 96), make_note(192)}, {{SightRead::Tick {0}, SightRead::Tick {50}}}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; PointSet points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine()}; ImageBuilder builder {track, SightRead::Difficulty::Expert, SightRead::DrumSettings::default_settings(), false, true}; Path path {{{points.cbegin(), points.cend() - 1, SightRead::Beat {0.25}, SightRead::Beat {0.1}, SightRead::Beat {0.9}}}, 0}; builder.add_sp_phrases(track, {}, path); builder.add_sp_acts(points, {}, path); std::vector<std::tuple<double, double>> expected_blue_ranges {{0.1, 0.9}}; std::vector<std::tuple<double, double>> expected_red_ranges {{0.0, 0.1}, {0.9, 1.0}}; std::vector<std::tuple<double, double>> expected_yellow_ranges { {0.25, 0.5}}; BOOST_CHECK_EQUAL_COLLECTIONS( builder.blue_ranges().cbegin(), builder.blue_ranges().cend(), expected_blue_ranges.cbegin(), expected_blue_ranges.cend()); BOOST_CHECK_EQUAL_COLLECTIONS( builder.red_ranges().cbegin(), builder.red_ranges().cend(), expected_red_ranges.cbegin(), expected_red_ranges.cend()); BOOST_CHECK_EQUAL_COLLECTIONS( builder.yellow_ranges().cbegin(), builder.yellow_ranges().cend(), expected_yellow_ranges.cbegin(), expected_yellow_ranges.cend()); } BOOST_AUTO_TEST_CASE(squeezes_are_only_drawn_when_required) { SightRead::NoteTrack track { {make_note(0), make_note(192), make_note(384), make_note(576)}, {}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; PointSet points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine()}; ImageBuilder builder {track, SightRead::Difficulty::Expert, SightRead::DrumSettings::default_settings(), false, true}; Path path { {{points.cbegin(), points.cbegin() + 1, SightRead::Beat {0.25}, SightRead::Beat {0.1}, SightRead::Beat {1.1}}, {points.cbegin() + 2, points.cbegin() + 3, SightRead::Beat {0.25}, SightRead::Beat {2.0}, SightRead::Beat {2.9}}}, 0}; builder.add_sp_acts(points, {}, path); std::vector<std::tuple<double, double>> expected_red_ranges {{0.0, 0.1}, {2.9, 3.0}}; BOOST_CHECK_EQUAL_COLLECTIONS( builder.red_ranges().cbegin(), builder.red_ranges().cend(), expected_red_ranges.cbegin(), expected_red_ranges.cend()); } BOOST_AUTO_TEST_CASE(blue_ranges_are_cropped_for_reverse_squeezes) { SightRead::NoteTrack track { {make_note(192), make_note(384), make_note(576), make_note(768)}, {}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; PointSet points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine()}; ImageBuilder builder {track, SightRead::Difficulty::Expert, SightRead::DrumSettings::default_settings(), false, true}; Path path { {{points.cbegin() + 1, points.cbegin() + 2, SightRead::Beat {5.0}, SightRead::Beat {0.0}, SightRead::Beat {5.0}}}, 0}; builder.add_sp_acts(points, {}, path); std::vector<std::tuple<double, double>> expected_blue_ranges {{1.0, 4.0}}; BOOST_CHECK_EQUAL_COLLECTIONS( builder.blue_ranges().cbegin(), builder.blue_ranges().cend(), expected_blue_ranges.cbegin(), expected_blue_ranges.cend()); } BOOST_AUTO_TEST_CASE(blue_ranges_are_cropped_by_the_end_of_the_song) { SightRead::NoteTrack track {{make_note(192)}, {}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; PointSet points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine()}; ImageBuilder builder {track, SightRead::Difficulty::Expert, SightRead::DrumSettings::default_settings(), false, true}; Path path {{{points.cbegin(), points.cbegin(), SightRead::Beat {0.0}, SightRead::Beat {0.0}, SightRead::Beat {16.0}}}, 0}; builder.add_sp_acts(points, {}, path); std::vector<std::tuple<double, double>> expected_blue_ranges {{0.0, 4.0}}; BOOST_CHECK_EQUAL_COLLECTIONS( builder.blue_ranges().cbegin(), builder.blue_ranges().cend(), expected_blue_ranges.cbegin(), expected_blue_ranges.cend()); } BOOST_AUTO_TEST_CASE(blue_and_red_ranges_are_shifted_by_video_lag) { SightRead::NoteTrack track {{make_note(0), make_note(192), make_note(384), make_note(576), make_note(768), make_note(1530)}, {}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; PointSet points {track, {{}, SpMode::Measure}, {}, {1.0, 1.0, SightRead::Second(0.0), SightRead::Second(0.05), SightRead::Second(0.0)}, SightRead::DrumSettings::default_settings(), ChGuitarEngine()}; ImageBuilder builder {track, SightRead::Difficulty::Expert, SightRead::DrumSettings::default_settings(), false, true}; Path path { {{points.cbegin(), points.cbegin() + 1, SightRead::Beat {0.25}, SightRead::Beat {0.1}, SightRead::Beat {1.1}}, {points.cbegin() + 2, points.cbegin() + 3, SightRead::Beat {0.25}, SightRead::Beat {2.0}, SightRead::Beat {2.9}}, {points.cbegin() + 5, points.cbegin() + 5, SightRead::Beat {0.25}, SightRead::Beat {7.0}, SightRead::Beat {23.0}}}, 0}; std::vector<std::tuple<double, double>> expected_blue_ranges { {0.0, 1.0}, {1.9, 2.8}, {6.9, 8.0}}; std::vector<std::tuple<double, double>> expected_red_ranges {{2.8, 3.0}}; builder.add_sp_acts(points, {}, path); BOOST_CHECK_EQUAL_COLLECTIONS( builder.blue_ranges().cbegin(), builder.blue_ranges().cend(), expected_blue_ranges.cbegin(), expected_blue_ranges.cend()); BOOST_CHECK_EQUAL_COLLECTIONS( builder.red_ranges().cbegin(), builder.red_ranges().cend(), expected_red_ranges.cbegin(), expected_red_ranges.cend()); } BOOST_AUTO_TEST_CASE(green_ranges_do_not_overlap_blue_for_no_overlap_engines) { SightRead::NoteTrack track {{make_note(0, 96), make_note(192)}, {{SightRead::Tick {0}, SightRead::Tick {50}}}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; PointSet points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), Gh1Engine()}; ImageBuilder builder {track, SightRead::Difficulty::Expert, SightRead::DrumSettings::default_settings(), false, false}; Path path {{{points.cbegin() + 1, points.cend() - 1, SightRead::Beat {0.05}, SightRead::Beat {0.1}, SightRead::Beat {0.9}}}, 0}; builder.add_sp_phrases(track, {}, path); builder.add_sp_acts(points, {}, path); std::vector<std::tuple<double, double>> expected_green_ranges {{0.0, 0.1}}; BOOST_CHECK_EQUAL_COLLECTIONS( builder.green_ranges().cbegin(), builder.green_ranges().cend(), expected_green_ranges.cbegin(), expected_green_ranges.cend()); } BOOST_AUTO_TEST_CASE(almost_overlapped_green_ranges_remain) { SightRead::NoteTrack track { {make_note(0), make_note(768), make_note(3840)}, {{SightRead::Tick {3840}, SightRead::Tick {192}}}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; PointSet points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), Gh1Engine()}; ImageBuilder builder {track, SightRead::Difficulty::Expert, SightRead::DrumSettings::default_settings(), false, false}; Path path { {{points.cbegin() + 1, points.cbegin() + 1, SightRead::Beat {0.05}, SightRead::Beat {4.01}, SightRead::Beat {20.01}}}, 50}; builder.add_sp_phrases(track, {}, path); builder.add_sp_acts(points, {}, path); std::vector<std::tuple<double, double>> expected_green_ranges { {20.0, 20.1}}; BOOST_CHECK_EQUAL_COLLECTIONS( builder.green_ranges().cbegin(), builder.green_ranges().cend(), expected_green_ranges.cbegin(), expected_green_ranges.cend()); } BOOST_AUTO_TEST_CASE( extra_green_ranges_are_not_discarded_for_no_overlap_engines) { SightRead::NoteTrack track { {make_note(0, 96), make_note(192), make_note(3840)}, {{SightRead::Tick {0}, SightRead::Tick {50}}, {SightRead::Tick {3840}, SightRead::Tick {192}}}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; PointSet points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), Gh1Engine()}; ImageBuilder builder {track, SightRead::Difficulty::Expert, SightRead::DrumSettings::default_settings(), false, false}; Path path {{{points.cbegin() + 1, points.cend() - 2, SightRead::Beat {0.05}, SightRead::Beat {0.1}, SightRead::Beat {0.9}}}, 0}; builder.add_sp_phrases(track, {}, path); builder.add_sp_acts(points, {}, path); std::vector<std::tuple<double, double>> expected_green_ranges { {0.0, 0.1}, {20.0, 20.1}}; BOOST_CHECK_EQUAL_COLLECTIONS( builder.green_ranges().cbegin(), builder.green_ranges().cend(), expected_green_ranges.cbegin(), expected_green_ranges.cend()); } BOOST_AUTO_TEST_CASE(yellow_ranges_do_not_overlap_blue_for_no_overlap_engines) { SightRead::NoteTrack track {{make_note(0, 96), make_note(192)}, {{SightRead::Tick {0}, SightRead::Tick {50}}}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; PointSet points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), Gh1Engine()}; ImageBuilder builder {track, SightRead::Difficulty::Expert, SightRead::DrumSettings::default_settings(), false, false}; Path path {{{points.cbegin() + 1, points.cend() - 1, SightRead::Beat {0.05}, SightRead::Beat {0.1}, SightRead::Beat {0.9}}}, 0}; builder.add_sp_phrases(track, {}, path); builder.add_sp_acts(points, {}, path); std::vector<std::tuple<double, double>> expected_yellow_ranges { {0.05, 0.1}}; BOOST_CHECK_EQUAL_COLLECTIONS( builder.yellow_ranges().cbegin(), builder.yellow_ranges().cend(), expected_yellow_ranges.cbegin(), expected_yellow_ranges.cend()); } BOOST_AUTO_TEST_SUITE_END() BOOST_AUTO_TEST_CASE(add_practice_sections_adds_correct_ranges) { auto global_data = std::make_shared<SightRead::SongGlobalData>(); global_data->practice_sections({{"Intro", SightRead::Tick {192}}}); SightRead::NoteTrack track {{make_note(0)}, {}, SightRead::TrackType::FiveFret, std::move(global_data)}; ImageBuilder builder {track, SightRead::Difficulty::Expert, SightRead::DrumSettings::default_settings(), false, true}; builder.add_practice_sections(track.global_data().practice_sections(), {}); std::vector<std::tuple<double, std::string>> expected_practice_sections { {1.0, "Intro"}}; BOOST_CHECK_EQUAL_COLLECTIONS(builder.practice_sections().cbegin(), builder.practice_sections().cend(), expected_practice_sections.cbegin(), expected_practice_sections.cend()); } BOOST_AUTO_TEST_CASE(add_solo_sections_adds_correct_ranges) { SightRead::NoteTrack track {{make_note(0)}, {}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; track.solos({{SightRead::Tick {192}, SightRead::Tick {384}, 0}}); ImageBuilder builder {track, SightRead::Difficulty::Expert, SightRead::DrumSettings::default_settings(), false, true}; builder.add_solo_sections( track.solos(SightRead::DrumSettings::default_settings()), {}); std::vector<std::tuple<double, double>> expected_solo_ranges {{1.0, 2.0}}; BOOST_CHECK_EQUAL_COLLECTIONS( builder.solo_ranges().cbegin(), builder.solo_ranges().cend(), expected_solo_ranges.cbegin(), expected_solo_ranges.cend()); } BOOST_AUTO_TEST_SUITE(add_measure_values_gives_correct_values) BOOST_AUTO_TEST_CASE(notes_with_no_activations_or_solos) { SightRead::NoteTrack track {{make_note(0), make_note(768)}, {}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; PointSet points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine()}; Path path; ImageBuilder builder {track, SightRead::Difficulty::Expert, SightRead::DrumSettings::default_settings(), false, true}; builder.add_measure_values(points, {}, path); std::vector<int> expected_base_values {50, 50}; std::vector<int> expected_score_values {50, 100}; BOOST_CHECK_EQUAL_COLLECTIONS( builder.base_values().cbegin(), builder.base_values().cend(), expected_base_values.cbegin(), expected_base_values.cend()); BOOST_CHECK_EQUAL_COLLECTIONS( builder.score_values().cbegin(), builder.score_values().cend(), expected_score_values.cbegin(), expected_score_values.cend()); } BOOST_AUTO_TEST_CASE(solos_are_added) { SightRead::NoteTrack track {{make_note(768)}, {}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; track.solos({{SightRead::Tick {0}, SightRead::Tick {100}, 100}, {SightRead::Tick {200}, SightRead::Tick {800}, 100}}); PointSet points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine()}; Path path; ImageBuilder builder {track, SightRead::Difficulty::Expert, SightRead::DrumSettings::default_settings(), false, true}; builder.add_measure_values(points, {}, path); std::vector<int> expected_score_values {100, 250}; BOOST_CHECK_EQUAL_COLLECTIONS( builder.score_values().cbegin(), builder.score_values().cend(), expected_score_values.cbegin(), expected_score_values.cend()); } // This bug caused a crash in a few songs, for example Satch Boogie (Live) from // Guitar Hero X. BOOST_AUTO_TEST_CASE(solos_ending_past_last_note_are_handled_correctly) { SightRead::NoteTrack track {{make_note(0)}, {}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; track.solos({{SightRead::Tick {0}, SightRead::Tick {1600}, 50}}); PointSet points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine()}; Path path; ImageBuilder builder {track, SightRead::Difficulty::Expert, SightRead::DrumSettings::default_settings(), false, true}; builder.add_measure_values(points, {}, path); std::vector<int> expected_score_values {100}; BOOST_CHECK_EQUAL_COLLECTIONS( builder.score_values().cbegin(), builder.score_values().cend(), expected_score_values.cbegin(), expected_score_values.cend()); } BOOST_AUTO_TEST_CASE(activations_are_added) { SightRead::NoteTrack track { {make_note(0), make_note(192), make_note(384), make_note(768)}, {}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; PointSet points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine()}; Path path {{{points.cbegin() + 2, points.cbegin() + 3, SightRead::Beat {0.0}, SightRead::Beat {0.0}}}, 100}; ImageBuilder builder {track, SightRead::Difficulty::Expert, SightRead::DrumSettings::default_settings(), false, true}; builder.add_measure_values(points, {}, path); std::vector<int> expected_score_values {200, 300}; BOOST_CHECK_EQUAL_COLLECTIONS( builder.score_values().cbegin(), builder.score_values().cend(), expected_score_values.cbegin(), expected_score_values.cend()); } BOOST_AUTO_TEST_CASE(video_lag_is_accounted_for) { SightRead::NoteTrack track {{make_note(0), make_note(768)}, {}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; PointSet points {track, {{}, SpMode::Measure}, {}, {1.0, 1.0, SightRead::Second {0.0}, SightRead::Second {-0.1}, SightRead::Second {0.0}}, SightRead::DrumSettings::default_settings(), ChGuitarEngine()}; Path path {{{points.cbegin() + 1, points.cbegin() + 1, SightRead::Beat {0.0}, SightRead::Beat {0.0}}}, 50}; ImageBuilder builder {track, SightRead::Difficulty::Expert, SightRead::DrumSettings::default_settings(), false, true}; builder.add_measure_values(points, {}, path); std::vector<int> expected_base_values {50, 50}; std::vector<int> expected_score_values {50, 150}; BOOST_CHECK_EQUAL_COLLECTIONS( builder.base_values().cbegin(), builder.base_values().cend(), expected_base_values.cbegin(), expected_base_values.cend()); BOOST_CHECK_EQUAL_COLLECTIONS( builder.score_values().cbegin(), builder.score_values().cend(), expected_score_values.cbegin(), expected_score_values.cend()); } BOOST_AUTO_TEST_CASE(ticks_close_to_the_end_of_a_measure_are_handled_correctly) { constexpr auto RESOLUTION = 1 << 28; auto global_data = std::make_shared<SightRead::SongGlobalData>(); global_data->resolution(RESOLUTION); global_data->tempo_map({{}, {}, {}, RESOLUTION}); SightRead::NoteTrack track {{make_note(4 * RESOLUTION - 1)}, {}, SightRead::TrackType::FiveFret, global_data}; PointSet points {track, {global_data->tempo_map(), SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine()}; Path path; ImageBuilder builder {track, SightRead::Difficulty::Expert, SightRead::DrumSettings::default_settings(), false, true}; builder.add_measure_values(points, global_data->tempo_map(), path); std::vector<int> expected_base_values {50}; std::vector<int> expected_score_values {50}; BOOST_CHECK_EQUAL_COLLECTIONS( builder.base_values().cbegin(), builder.base_values().cend(), expected_base_values.cbegin(), expected_base_values.cend()); BOOST_CHECK_EQUAL_COLLECTIONS( builder.score_values().cbegin(), builder.score_values().cend(), expected_score_values.cbegin(), expected_score_values.cend()); } BOOST_AUTO_TEST_SUITE_END() BOOST_AUTO_TEST_CASE(add_sp_values_gives_correct_values) { SightRead::NoteTrack track {{make_note(0), make_note(192, 768)}, {{SightRead::Tick {192}, SightRead::Tick {50}}}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; SpData sp_data {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), ChGuitarEngine()}; ImageBuilder builder {track, SightRead::Difficulty::Expert, SightRead::DrumSettings::default_settings(), false, true}; builder.add_sp_values(sp_data, ChGuitarEngine()); std::vector<double> expected_sp_values {3.14, 1.0}; BOOST_CHECK_EQUAL_COLLECTIONS( builder.sp_values().cbegin(), builder.sp_values().cend(), expected_sp_values.cbegin(), expected_sp_values.cend()); } BOOST_AUTO_TEST_CASE(set_total_score_sets_the_correct_value) { SightRead::NoteTrack track {{make_note(0), make_note(192)}, {{SightRead::Tick {0}, SightRead::Tick {50}}}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; PointSet points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine()}; ImageBuilder builder {track, SightRead::Difficulty::Expert, SightRead::DrumSettings::default_settings(), false, true}; Path path {{{points.cbegin(), points.cend() - 1, SightRead::Beat {0.25}, SightRead::Beat {0.1}, SightRead::Beat {0.9}}}, 50}; builder.set_total_score( points, {{SightRead::Tick {0}, SightRead::Tick {1}, 100}}, path); BOOST_CHECK_EQUAL(builder.total_score(), 250); } BOOST_AUTO_TEST_CASE(difficulty_is_handled) { SightRead::NoteTrack track {{make_note(0)}, {}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ImageBuilder hard_builder {track, SightRead::Difficulty::Hard, SightRead::DrumSettings::default_settings(), false, true}; ImageBuilder expert_builder {track, SightRead::Difficulty::Expert, SightRead::DrumSettings::default_settings(), false, true}; BOOST_CHECK_EQUAL(hard_builder.difficulty(), SightRead::Difficulty::Hard); BOOST_CHECK_EQUAL(expert_builder.difficulty(), SightRead::Difficulty::Expert); } BOOST_AUTO_TEST_CASE(lefty_flip_is_handled) { SightRead::NoteTrack track {{make_note(0)}, {}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; ImageBuilder lefty_builder {track, SightRead::Difficulty::Expert, SightRead::DrumSettings::default_settings(), true, true}; ImageBuilder righty_builder {track, SightRead::Difficulty::Expert, SightRead::DrumSettings::default_settings(), false, true}; BOOST_TEST(lefty_builder.is_lefty_flip()); BOOST_TEST(!righty_builder.is_lefty_flip()); } BOOST_AUTO_TEST_SUITE(add_sp_percent_values_adds_correct_values) BOOST_AUTO_TEST_CASE(sp_percents_added_with_no_whammy) { SightRead::NoteTrack track { {make_note(960), make_note(1080), make_note(1920), make_note(3840), make_note(4050), make_note(19200)}, {{SightRead::Tick {960}, SightRead::Tick {10}}, {SightRead::Tick {1080}, SightRead::Tick {10}}, {SightRead::Tick {1920}, SightRead::Tick {10}}, {SightRead::Tick {3840}, SightRead::Tick {10}}, {SightRead::Tick {4050}, SightRead::Tick {10}}}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; PointSet points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine()}; SpData sp_data {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), ChGuitarEngine()}; Path path {{{points.cbegin() + 5, points.cend(), SightRead::Beat {1000.0}, SightRead::Beat {70.0}, SightRead::Beat {102.0}}}, 0}; ImageBuilder builder {track, SightRead::Difficulty::Expert, SightRead::DrumSettings::default_settings(), false, true}; builder.add_sp_percent_values(sp_data, {{}, SpMode::Measure}, points, path); std::vector<double> expected_percents { 0.0, 0.5, 0.75, 0.75, 0.75, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.9375, 0.8125, 0.6875, 0.5625, 0.4375, 0.3125, 0.1875, 0.0625, 0.0}; BOOST_CHECK_EQUAL_COLLECTIONS(builder.sp_percent_values().cbegin(), builder.sp_percent_values().cend(), expected_percents.cbegin(), expected_percents.cend()); } BOOST_AUTO_TEST_CASE(sp_percents_added_with_no_whammy_and_mid_act_gain) { SightRead::NoteTrack track { {make_note(960), make_note(1080), make_note(1920), make_note(3840), make_note(4050), make_note(19200)}, {{SightRead::Tick {960}, SightRead::Tick {10}}, {SightRead::Tick {1080}, SightRead::Tick {10}}, {SightRead::Tick {1920}, SightRead::Tick {10}}, {SightRead::Tick {3840}, SightRead::Tick {10}}, {SightRead::Tick {4050}, SightRead::Tick {10}}, {SightRead::Tick {19200}, SightRead::Tick {10}}}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; PointSet points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine()}; SpData sp_data {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), ChGuitarEngine()}; Path path {{{points.cbegin() + 5, points.cend(), SightRead::Beat {1000.0}, SightRead::Beat {98.0}, SightRead::Beat {132.0}}}, 0}; ImageBuilder builder {track, SightRead::Difficulty::Expert, SightRead::DrumSettings::default_settings(), false, true}; builder.add_sp_percent_values(sp_data, {{}, SpMode::Measure}, points, path); std::vector<double> expected_percents { 0.0, 0.5, 0.75, 0.75, 0.75, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.9375, 0.875}; BOOST_CHECK_EQUAL_COLLECTIONS(builder.sp_percent_values().cbegin(), builder.sp_percent_values().cend(), expected_percents.cbegin(), expected_percents.cend()); } BOOST_AUTO_TEST_CASE(whammy_is_added) { SightRead::NoteTrack track { {make_note(960), make_note(1632, 1920)}, {{SightRead::Tick {960}, SightRead::Tick {10}}, {SightRead::Tick {1632}, SightRead::Tick {10}}}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; PointSet points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine()}; SpData sp_data {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), ChGuitarEngine()}; Path path {{{points.cbegin() + 5, points.cend(), SightRead::Beat {1000.0}, SightRead::Beat {9.0}, SightRead::Beat {22.0}}}, 0}; ImageBuilder builder {track, SightRead::Difficulty::Expert, SightRead::DrumSettings::default_settings(), false, true}; builder.add_sp_percent_values(sp_data, {{}, SpMode::Measure}, points, path); std::vector<double> expected_percents {0.0, 0.25, 0.5275833333, 0.5359166667, 0.49425}; BOOST_REQUIRE_EQUAL(builder.sp_percent_values().size(), expected_percents.size()); for (std::size_t i = 0; i < expected_percents.size(); ++i) { BOOST_CHECK_CLOSE(builder.sp_percent_values()[i], expected_percents[i], 0.0001); } } BOOST_AUTO_TEST_CASE(forced_no_whammy_is_accounted_for) { SightRead::NoteTrack track { {make_note(960), make_note(1632, 1920)}, {{SightRead::Tick {960}, SightRead::Tick {10}}, {SightRead::Tick {1632}, SightRead::Tick {10}}}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; PointSet points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine()}; SpData sp_data {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), ChGuitarEngine()}; Path path {{{points.cbegin() + 5, points.cend(), SightRead::Beat {12.0}, SightRead::Beat {9.0}, SightRead::Beat {22.0}}}, 0}; ImageBuilder builder {track, SightRead::Difficulty::Expert, SightRead::DrumSettings::default_settings(), false, true}; builder.add_sp_percent_values(sp_data, {{}, SpMode::Measure}, points, path); std::vector<double> expected_percents {0.0, 0.25, 0.5275833333, 0.4025833333, 0.2775833333}; BOOST_REQUIRE_EQUAL(builder.sp_percent_values().size(), expected_percents.size()); for (std::size_t i = 0; i < expected_percents.size(); ++i) { BOOST_CHECK_CLOSE(builder.sp_percent_values()[i], expected_percents[i], 0.0001); } } BOOST_AUTO_TEST_CASE(forced_no_whammy_with_not_last_act_is_accounted_for) { SightRead::NoteTrack track { {make_note(960), make_note(1632, 1920), make_note(6336), make_note(6528), make_note(7104)}, {{SightRead::Tick {960}, SightRead::Tick {10}}, {SightRead::Tick {1632}, SightRead::Tick {10}}, {SightRead::Tick {6336}, SightRead::Tick {10}}, {SightRead::Tick {6528}, SightRead::Tick {10}}}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; PointSet points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine()}; SpData sp_data {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), ChGuitarEngine()}; Path path {{{points.cbegin() + 5, points.cend() - 3, SightRead::Beat {12.0}, SightRead::Beat {9.0}, SightRead::Beat {28.8827}}, {points.cend() - 1, points.cend(), SightRead::Beat {1000.0}, SightRead::Beat {37.0}, SightRead::Beat {53.0}}}, 0}; ImageBuilder builder {track, SightRead::Difficulty::Expert, SightRead::DrumSettings::default_settings(), false, true}; builder.add_sp_percent_values(sp_data, {{}, SpMode::Measure}, points, path); std::vector<double> expected_percents { 0.0, 0.25, 0.5275833333, 0.4025833333, 0.2775833333, 0.1525833333, 0.0275833333, 0.0, 0.5, 0.40625}; BOOST_REQUIRE_EQUAL(builder.sp_percent_values().size(), expected_percents.size()); for (std::size_t i = 0; i < expected_percents.size(); ++i) { BOOST_CHECK_CLOSE(builder.sp_percent_values()[i], expected_percents[i], 0.0001); } } // See /issues/4, Triathlon m662 on 100%/100%. BOOST_AUTO_TEST_CASE(nearly_overlapped_phrases_are_handled_correctly) { SightRead::NoteTrack track { {make_note(0), make_note(192), make_note(384), make_note(3224), make_note(3456)}, {{SightRead::Tick {0}, SightRead::Tick {10}}, {SightRead::Tick {192}, SightRead::Tick {10}}, {SightRead::Tick {3224}, SightRead::Tick {10}}}, SightRead::TrackType::FiveFret, std::make_shared<SightRead::SongGlobalData>()}; PointSet points {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), SightRead::DrumSettings::default_settings(), ChGuitarEngine()}; SpData sp_data {track, {{}, SpMode::Measure}, {}, SqueezeSettings::default_settings(), ChGuitarEngine()}; Path path { {{points.cbegin() + 2, points.cbegin() + 2, SightRead::Beat {17.0}, SightRead::Beat {0.8958}, SightRead::Beat {16.8958}}}, 50}; ImageBuilder builder {track, SightRead::Difficulty::Expert, SightRead::DrumSettings::default_settings(), false, true}; builder.add_sp_percent_values(sp_data, {{}, SpMode::Measure}, points, path); std::vector<double> expected_percents {0.40299375, 0.27799375, 0.15299375, 0.02799375, 0.25}; BOOST_REQUIRE_EQUAL(builder.sp_percent_values().size(), expected_percents.size()); for (std::size_t i = 0; i < expected_percents.size(); ++i) { BOOST_CHECK_CLOSE(builder.sp_percent_values()[i], expected_percents[i], 0.0001); } } BOOST_AUTO_TEST_SUITE_END()
70,443
C++
.cpp
1,472
35.482337
80
0.565477
GenericMadScientist/CHOpt
33
4
5
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,758
imagebuilder.cpp
GenericMadScientist_CHOpt/src/imagebuilder.cpp
/* * CHOpt - Star Power optimiser for Clone Hero * Copyright (C) 2020, 2021, 2022, 2023, 2024 Raymond Wright * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <https://www.gnu.org/licenses/>. */ #include <cstdint> #include <iterator> #include <stdexcept> #include "imagebuilder.hpp" #include "optimiser.hpp" constexpr int MAX_BEATS_PER_LINE = 16; namespace { double get_beat_rate(const SightRead::TempoMap& tempo_map, SightRead::Beat beat) { constexpr double BASE_BEAT_RATE = 4.0; auto ts = std::find_if( tempo_map.time_sigs().cbegin(), tempo_map.time_sigs().cend(), [=](const auto& x) { return tempo_map.to_beats(x.position) > beat; }); if (ts == tempo_map.time_sigs().cbegin()) { return BASE_BEAT_RATE; } --ts; return BASE_BEAT_RATE * ts->numerator / ts->denominator; } int get_numer(const SightRead::TempoMap& tempo_map, SightRead::Beat beat) { constexpr int BASE_NUMERATOR = 4; auto ts = std::find_if( tempo_map.time_sigs().cbegin(), tempo_map.time_sigs().cend(), [=](const auto& x) { return tempo_map.to_beats(x.position) > beat; }); if (ts == tempo_map.time_sigs().cbegin()) { return BASE_NUMERATOR; } --ts; return ts->numerator; } double get_denom(const SightRead::TempoMap& tempo_map, SightRead::Beat beat) { constexpr double BASE_BEAT_RATE = 4.0; auto ts = std::find_if( tempo_map.time_sigs().cbegin(), tempo_map.time_sigs().cend(), [=](const auto& x) { return tempo_map.to_beats(x.position) > beat; }); if (ts == tempo_map.time_sigs().cbegin()) { return 1.0; } --ts; return BASE_BEAT_RATE / ts->denominator; } DrawnNote note_to_drawn_note(const SightRead::Note& note, const SightRead::NoteTrack& track) { constexpr auto COLOURS_SIZE = 7; const auto& tempo_map = track.global_data().tempo_map(); const auto beat = tempo_map.to_beats(note.position); std::array<double, COLOURS_SIZE> lengths {}; for (auto i = 0; i < COLOURS_SIZE; ++i) { if (note.lengths.at(i) == SightRead::Tick {-1}) { lengths.at(i) = -1; } else { lengths.at(i) = tempo_map.to_beats(note.lengths.at(i)).value(); } } auto is_sp_note = false; for (const auto& phrase : track.sp_phrases()) { if (note.position >= phrase.position && note.position < phrase.position + phrase.length) { is_sp_note = true; break; } } return {beat.value(), lengths, note.flags, is_sp_note}; } bool is_in_disco_flips(const std::vector<SightRead::DiscoFlip>& disco_flips, SightRead::Tick position) { return std::any_of(disco_flips.cbegin(), disco_flips.cend(), [&](const auto& flip) { return (flip.position <= position) && (flip.position + flip.length >= position); }); } std::vector<DrawnNote> drawn_notes(const SightRead::NoteTrack& track, const SightRead::DrumSettings& drum_settings) { std::vector<DrawnNote> notes; for (const auto& note : track.notes()) { if (note.is_skipped_kick(drum_settings)) { continue; } auto drawn_note = note_to_drawn_note(note, track); if (!drum_settings.pro_drums) { drawn_note.note_flags = static_cast<SightRead::NoteFlags>( drawn_note.note_flags & ~SightRead::FLAGS_CYMBAL); } else if (is_in_disco_flips(track.disco_flips(), note.position)) { if (note.lengths[SightRead::DRUM_RED] != SightRead::Tick {-1}) { std::swap(drawn_note.lengths[SightRead::DRUM_RED], drawn_note.lengths[SightRead::DRUM_YELLOW]); drawn_note.note_flags = static_cast<SightRead::NoteFlags>( drawn_note.note_flags | SightRead::FLAGS_CYMBAL); } else if (note.lengths[SightRead::DRUM_YELLOW] != SightRead::Tick {-1} && (note.flags & SightRead::FLAGS_CYMBAL) != 0U) { std::swap(drawn_note.lengths[SightRead::DRUM_RED], drawn_note.lengths[SightRead::DRUM_YELLOW]); drawn_note.note_flags = static_cast<SightRead::NoteFlags>( drawn_note.note_flags & ~SightRead::FLAGS_CYMBAL); } } notes.push_back(drawn_note); } return notes; } std::vector<DrawnRow> drawn_rows(const SightRead::NoteTrack& track) { SightRead::Tick max_pos {0}; for (const auto& note : track.notes()) { const auto length = *std::max_element(note.lengths.cbegin(), note.lengths.cend()); const auto note_end = note.position + length; max_pos = std::max(max_pos, note_end); } const auto& tempo_map = track.global_data().tempo_map(); const auto max_beat = tempo_map.to_beats(max_pos).value(); auto current_beat = 0.0; std::vector<DrawnRow> rows; while (current_beat <= max_beat) { auto row_length = 0.0; while (true) { auto contribution = get_beat_rate( tempo_map, SightRead::Beat {current_beat + row_length}); if (contribution > MAX_BEATS_PER_LINE && row_length == 0.0) { // Break up a measure that spans more than a full row. while (contribution > MAX_BEATS_PER_LINE) { rows.push_back( {current_beat, current_beat + MAX_BEATS_PER_LINE}); current_beat += MAX_BEATS_PER_LINE; contribution -= MAX_BEATS_PER_LINE; } } if (contribution + row_length > MAX_BEATS_PER_LINE) { break; } row_length += contribution; if (current_beat + row_length > max_beat) { break; } } rows.push_back({current_beat, current_beat + row_length}); current_beat += row_length; } return rows; } // It is important that SpPhrase has a higher value than ActEnd. This is because // in form_events we want to push the event for getting a phrase to the end of // the activation if the activation is not an overlap. enum class SpDrainEventType : std::uint8_t { Measure, ActStart, ActEnd, WhammyEnd, SpPhrase }; std::vector<std::tuple<SightRead::Beat, SpDrainEventType>> form_events(const std::vector<double>& measure_lines, const PointSet& points, const Path& path) { std::vector<std::tuple<SightRead::Beat, SpDrainEventType>> events; for (std::size_t i = 1; i < measure_lines.size(); ++i) { events.emplace_back(SightRead::Beat {measure_lines[i]}, SpDrainEventType::Measure); } for (auto p = points.cbegin(); p < points.cend(); ++p) { if (!p->is_sp_granting_note) { continue; } auto position = p->position.beat; for (auto act : path.activations) { if (p > act.act_end) { position = std::max(position, act.sp_end); } } events.emplace_back(position, SpDrainEventType::SpPhrase); } for (auto act : path.activations) { if (act.whammy_end < act.sp_end) { events.emplace_back(act.whammy_end, SpDrainEventType::WhammyEnd); } events.emplace_back(act.sp_start, SpDrainEventType::ActStart); events.emplace_back(act.sp_end, SpDrainEventType::ActEnd); } std::sort(events.begin(), events.end()); return events; } ImageBuilder build_with_engine_params(const SightRead::NoteTrack& track, const Settings& settings) { return {track, settings.difficulty, settings.drum_settings, settings.is_lefty_flip, settings.engine->overlaps()}; } std::vector<std::tuple<double, double>> relative_complement(std::vector<std::tuple<double, double>> parent_set, const std::vector<std::tuple<double, double>>& excluded_set) { std::vector<std::tuple<double, double>> result; auto p = parent_set.begin(); auto q = excluded_set.cbegin(); while (p < parent_set.end() && q < excluded_set.cend()) { if (std::get<0>(*q) < std::get<0>(*p)) { std::get<0>(*p) = std::max(std::get<0>(*p), std::get<1>(*q)); ++q; continue; } if (std::get<0>(*q) > std::get<0>(*p)) { result.emplace_back(std::get<0>(*p), std::min(std::get<1>(*p), std::get<0>(*q))); } ++p; } std::copy(p, parent_set.end(), std::back_inserter(result)); return result; } SightRead::Beat subtract_video_lag(SightRead::Beat beat, SightRead::Second video_lag, const SightRead::TempoMap& tempo_map) { const auto seconds = tempo_map.to_seconds(beat) - video_lag; if (seconds.value() < 0.0) { return SightRead::Beat {0.0}; } return tempo_map.to_beats(seconds); } void apply_drum_settings(SightRead::NoteTrack& track, const SightRead::Song& song, const Settings& settings) { if (!settings.engine->is_rock_band() && track.drum_fills().empty()) { track.generate_drum_fills(song.global_data().tempo_map()); } if (!settings.drum_settings.enable_dynamics) { track.disable_dynamics(); } if (!settings.drum_settings.pro_drums) { track.disable_cymbals(); } } } void ImageBuilder::form_beat_lines(const SightRead::TempoMap& tempo_map) { constexpr double HALF_BEAT = 0.5; for (const auto& row : m_rows) { auto start = row.start; while (start < row.end) { auto meas_length = get_beat_rate(tempo_map, SightRead::Beat {start}); auto numer = get_numer(tempo_map, SightRead::Beat {start}); auto denom = get_denom(tempo_map, SightRead::Beat {start}); m_measure_lines.push_back(start); m_half_beat_lines.push_back(start + HALF_BEAT * denom); for (int i = 1; i < numer; ++i) { m_beat_lines.push_back(start + i * denom); m_half_beat_lines.push_back(start + (i + HALF_BEAT) * denom); } start += meas_length; } } m_measure_lines.push_back(m_rows.back().end); } bool ImageBuilder::is_neutralised_phrase(SightRead::Beat note_pos, const Path& path) { for (const auto& act : path.activations) { if (act.act_start->position.beat > note_pos) { return false; } if (act.act_end->position.beat >= note_pos) { return true; } } return false; } std::tuple<double, double> ImageBuilder::sp_phrase_bounds(const SightRead::StarPower& phrase, const SightRead::NoteTrack& track, const Path& path) const { constexpr double MINIMUM_GREEN_RANGE_SIZE = 0.1; auto p = track.notes().cbegin(); while (p->position < phrase.position) { ++p; } const auto& tempo_map = track.global_data().tempo_map(); const auto start = tempo_map.to_beats(p->position).value(); if (!m_overlap_engine && is_neutralised_phrase(SightRead::Beat {start}, path)) { return {-1, -1}; } const auto phrase_end = phrase.position + phrase.length; auto end = start; while (p < track.notes().cend() && p->position < phrase_end) { SightRead::Tick max_length {0}; for (auto length : p->lengths) { max_length = std::max(max_length, length); } auto current_end = tempo_map.to_beats(p->position + max_length).value(); end = std::max(end, current_end); ++p; } end = std::max(end, start + MINIMUM_GREEN_RANGE_SIZE); return {start, end}; } ImageBuilder::ImageBuilder(const SightRead::NoteTrack& track, SightRead::Difficulty difficulty, const SightRead::DrumSettings& drum_settings, bool is_lefty_flip, bool is_overlap_engine) : m_track_type {track.track_type()} , m_difficulty {difficulty} , m_is_lefty_flip {is_lefty_flip} , m_rows {drawn_rows(track)} , m_notes {drawn_notes(track, drum_settings)} , m_overlap_engine {is_overlap_engine} { form_beat_lines(track.global_data().tempo_map()); } void ImageBuilder::add_bpms(const SightRead::TempoMap& tempo_map) { constexpr double MS_PER_SECOND = 1000.0; m_bpms.clear(); for (const auto& bpm : tempo_map.bpms()) { const auto pos = tempo_map.to_beats(bpm.position).value(); const auto tempo = static_cast<double>(bpm.bpm) / MS_PER_SECOND; if (pos < m_rows.back().end) { m_bpms.emplace_back(pos, tempo); } } } void ImageBuilder::add_bre(const SightRead::BigRockEnding& bre, const SightRead::TempoMap& tempo_map) { const auto seconds_start = tempo_map.to_seconds(bre.start); const auto seconds_end = tempo_map.to_seconds(bre.end); const auto seconds_gap = seconds_end - seconds_start; const auto bre_value = static_cast<int>(750 + 500 * seconds_gap.value()); m_total_score += bre_value; m_score_values.back() += bre_value; m_bre_ranges.emplace_back(tempo_map.to_beats(bre.start).value(), tempo_map.to_beats(bre.end).value()); } void ImageBuilder::add_drum_fills(const SightRead::NoteTrack& track) { const auto& tempo_map = track.global_data().tempo_map(); for (auto fill : track.drum_fills()) { m_fill_ranges.emplace_back( tempo_map.to_beats(fill.position).value(), tempo_map.to_beats(fill.position + fill.length).value()); } } void ImageBuilder::add_measure_values(const PointSet& points, const SightRead::TempoMap& tempo_map, const Path& path) { // This is needed below because the subtract_video_lag calculation can // introduce some floating point errors. constexpr double MEAS_EPSILON = 1 / 100000.0; m_base_values.clear(); m_base_values.resize(m_measure_lines.size() - 1); m_score_values.clear(); m_score_values.resize(m_measure_lines.size() - 1); auto base_value_iter = m_base_values.begin(); auto meas_iter = std::next(m_measure_lines.cbegin()); auto score_value_iter = m_score_values.begin(); for (auto p = points.cbegin(); p < points.cend(); ++p) { const auto adjusted_p_pos = subtract_video_lag(p->position.beat, points.video_lag(), tempo_map) .value(); while (meas_iter != m_measure_lines.cend() && (std::next(meas_iter) != m_measure_lines.cend()) && (*meas_iter - MEAS_EPSILON) <= adjusted_p_pos) { ++meas_iter; ++base_value_iter; ++score_value_iter; } *base_value_iter += p->base_value; *score_value_iter += p->value; } meas_iter = std::next(m_measure_lines.cbegin()); score_value_iter = m_score_values.begin(); for (const auto& solo : points.solo_boosts()) { const auto& [solo_end, solo_score] = solo; while (meas_iter != m_measure_lines.cend() && *meas_iter <= solo_end.beat.value()) { ++meas_iter; ++score_value_iter; } // This is needed if a solo section ends after the last drawn measure of // the song. if (score_value_iter == m_score_values.end()) { --score_value_iter; } *score_value_iter += solo_score; } for (const auto& act : path.activations) { meas_iter = std::next(m_measure_lines.cbegin()); score_value_iter = m_score_values.begin(); for (auto p = act.act_start; p <= act.act_end; ++p) { while (meas_iter != m_measure_lines.cend() && *meas_iter <= subtract_video_lag(p->position.beat, points.video_lag(), tempo_map) .value()) { ++meas_iter; ++score_value_iter; } *score_value_iter += p->value; } } int score_total = 0; for (auto& score : m_score_values) { score_total += score; score = score_total; } } void ImageBuilder::add_practice_sections( const std::vector<SightRead::PracticeSection>& practice_sections, const SightRead::TempoMap& tempo_map) { for (const auto& section : practice_sections) { const auto pos = tempo_map.to_beats(section.start).value(); m_practice_sections.emplace_back(pos, section.name); } } void ImageBuilder::add_solo_sections(const std::vector<SightRead::Solo>& solos, const SightRead::TempoMap& tempo_map) { for (const auto& solo : solos) { const auto start = tempo_map.to_beats(solo.start).value(); const auto end = tempo_map.to_beats(solo.end).value(); m_solo_ranges.emplace_back(start, end); } } void ImageBuilder::add_song_header(const SightRead::SongGlobalData& global_data) { m_song_name = global_data.name(); m_artist = global_data.artist(); m_charter = global_data.charter(); } void ImageBuilder::add_sp_acts(const PointSet& points, const SightRead::TempoMap& tempo_map, const Path& path) { std::vector<std::tuple<double, double>> no_whammy_ranges; const auto shifted_beat = [&](auto beat) { return subtract_video_lag(beat, points.video_lag(), tempo_map); }; for (const auto& act : path.activations) { auto blue_start = act.sp_start; auto blue_end = act.sp_end; if (act.act_start != points.cbegin()) { blue_start = std::max(blue_start, std::prev(act.act_start)->position.beat); } if (std::next(act.act_end) != points.cend()) { blue_end = std::min(blue_end, std::next(act.act_end)->position.beat); } blue_end = std::min(shifted_beat(blue_end), SightRead::Beat {m_rows.back().end}); m_blue_ranges.emplace_back(shifted_beat(blue_start).value(), blue_end.value()); if (act.sp_start > act.act_start->position.beat) { m_red_ranges.emplace_back( shifted_beat(act.act_start->position.beat).value(), shifted_beat(act.sp_start).value()); } if (act.sp_end < act.act_end->position.beat) { m_red_ranges.emplace_back( shifted_beat(act.sp_end).value(), shifted_beat(act.act_end->position.beat).value()); } no_whammy_ranges.emplace_back(act.whammy_end.value(), act.sp_end.value()); } auto p = no_whammy_ranges.cbegin(); auto q = m_green_ranges.cbegin(); while (p < no_whammy_ranges.cend() && q < m_green_ranges.cend()) { auto start = std::max(std::get<0>(*p), std::get<0>(*q)); auto end = std::min(std::get<1>(*p), std::get<1>(*q)); if (start < end) { m_yellow_ranges.emplace_back(start, end); } if (std::get<1>(*q) > std::get<1>(*p)) { ++p; } else { ++q; } } if (!m_overlap_engine) { m_yellow_ranges = relative_complement(m_yellow_ranges, m_blue_ranges); m_green_ranges = relative_complement(m_green_ranges, m_blue_ranges); } } void ImageBuilder::add_sp_percent_values(const SpData& sp_data, const SpTimeMap& time_map, const PointSet& points, const Path& path) { constexpr double SP_PHRASE_AMOUNT = 0.25; m_sp_percent_values.clear(); m_sp_percent_values.reserve(m_measure_lines.size() - 1); const auto events = form_events(m_measure_lines, points, path); auto is_sp_active = false; SightRead::Beat whammy_end {std::numeric_limits<double>::infinity()}; SightRead::Beat position {0.0}; double total_sp = 0.0; for (auto [event_pos, event_type] : events) { if (is_sp_active) { SpPosition start_pos {position, time_map.to_sp_measures(position)}; SpPosition end_pos {event_pos, time_map.to_sp_measures(event_pos)}; SpPosition whammy_pos {SightRead::Beat {0.0}, SpMeasure {0.0}}; if (m_overlap_engine) { whammy_pos = {whammy_end, time_map.to_sp_measures(whammy_end)}; } total_sp = sp_data.propagate_sp_over_whammy_min( start_pos, end_pos, total_sp, whammy_pos); } else if (whammy_end > position) { total_sp += sp_data.available_whammy( position, std::min(event_pos, whammy_end)); } switch (event_type) { case SpDrainEventType::ActStart: is_sp_active = true; break; case SpDrainEventType::ActEnd: is_sp_active = false; whammy_end = SightRead::Beat {std::numeric_limits<double>::infinity()}; total_sp = 0.0; break; case SpDrainEventType::SpPhrase: total_sp += SP_PHRASE_AMOUNT; break; case SpDrainEventType::Measure: m_sp_percent_values.push_back(std::clamp(total_sp, 0.0, 1.0)); break; case SpDrainEventType::WhammyEnd: whammy_end = event_pos; break; } position = event_pos; total_sp = std::clamp(total_sp, 0.0, 1.0); } assert(m_sp_percent_values.size() == m_measure_lines.size() - 1); // NOLINT } void ImageBuilder::add_sp_phrases( const SightRead::NoteTrack& track, const std::vector<SightRead::Tick>& unison_phrases, const Path& path) { for (const auto& phrase : track.sp_phrases()) { const auto range = sp_phrase_bounds(phrase, track, path); if (std::get<0>(range) == -1) { continue; } m_green_ranges.push_back(range); if (std::find(unison_phrases.cbegin(), unison_phrases.cend(), phrase.position) != unison_phrases.cend()) { m_unison_ranges.push_back(range); } } } void ImageBuilder::add_sp_values(const SpData& sp_data, const Engine& engine) { m_sp_values.clear(); m_sp_values.resize(m_measure_lines.size() - 1); for (std::size_t i = 0; i < m_measure_lines.size() - 1; ++i) { SightRead::Beat start {m_measure_lines[i]}; SightRead::Beat end {std::numeric_limits<double>::infinity()}; if (i < m_measure_lines.size() - 1) { end = SightRead::Beat {m_measure_lines[i + 1]}; } m_sp_values[i] = sp_data.available_whammy(start, end) / engine.sp_gain_rate(); } } void ImageBuilder::add_time_sigs(const SightRead::TempoMap& tempo_map) { for (const auto& ts : tempo_map.time_sigs()) { const auto pos = tempo_map.to_beats(ts.position).value(); const auto num = ts.numerator; const auto denom = ts.denominator; if (pos < m_rows.back().end) { m_time_sigs.emplace_back(pos, num, denom); } } } void ImageBuilder::set_total_score(const PointSet& points, const std::vector<SightRead::Solo>& solos, const Path& path) { auto no_sp_score = std::accumulate( points.cbegin(), points.cend(), 0, [](const auto x, const auto& y) { return x + y.value; }); no_sp_score += std::accumulate( solos.cbegin(), solos.cend(), 0, [](const auto x, const auto& y) { return x + y.value; }); m_total_score = no_sp_score + path.score_boost; } ImageBuilder make_builder(SightRead::Song& song, const SightRead::NoteTrack& track, const Settings& settings, const std::function<void(const char*)>& write, const std::atomic<bool>* terminate) { auto new_track = track; if (song.global_data().is_from_midi()) { new_track = track.trim_sustains(); } new_track = new_track.snap_chords(settings.engine->snap_gap()); if (track.track_type() == SightRead::TrackType::Drums) { apply_drum_settings(new_track, song, settings); } song.speedup(settings.speed); const auto& tempo_map = song.global_data().tempo_map(); const SpTimeMap time_map {tempo_map, settings.engine->sp_mode()}; auto builder = build_with_engine_params(new_track, settings); builder.add_song_header(song.global_data()); builder.add_practice_sections(song.global_data().practice_sections(), tempo_map); if (track.track_type() == SightRead::TrackType::Drums) { builder.add_drum_fills(new_track); } if (settings.draw_bpms) { builder.add_bpms(tempo_map); } const auto solos = new_track.solos(settings.drum_settings); if (settings.draw_solos) { builder.add_solo_sections(solos, tempo_map); } if (settings.draw_time_sigs) { builder.add_time_sigs(tempo_map); } const auto unison_positions = (settings.engine->has_unison_bonuses()) ? song.unison_phrase_positions() : std::vector<SightRead::Tick> {}; // The 0.1% squeeze minimum is to get around dumb floating point rounding // issues that visibly affect the path at 0% squeeze. auto squeeze_settings = settings.squeeze_settings; constexpr double SQUEEZE_EPSILON = 0.001; squeeze_settings.squeeze = std::max(squeeze_settings.squeeze, SQUEEZE_EPSILON); const ProcessedSong processed_track {new_track, time_map, settings.squeeze_settings, settings.drum_settings, *settings.engine, song.global_data().od_beats(), unison_positions}; Path path; if (!settings.blank) { const auto is_rb_drums = track.track_type() == SightRead::TrackType::Drums && settings.engine->is_rock_band(); if (is_rb_drums) { write("Optimisation disabled for Rock Band drums, planned for a " "future release"); builder.add_sp_phrases(new_track, unison_positions, path); } else { write("Optimising, please wait..."); const Optimiser optimiser {&processed_track, terminate, settings.speed, squeeze_settings.whammy_delay}; path = optimiser.optimal_path(); write(processed_track.path_summary(path).c_str()); builder.add_sp_phrases(new_track, unison_positions, path); builder.add_sp_acts(processed_track.points(), tempo_map, path); builder.activation_opacity() = settings.opacity; } } else { builder.add_sp_phrases(new_track, unison_positions, path); } builder.add_measure_values(processed_track.points(), tempo_map, path); if (settings.blank || !settings.engine->overlaps()) { builder.add_sp_values(processed_track.sp_data(), *settings.engine); } else { builder.add_sp_percent_values(processed_track.sp_data(), time_map, processed_track.points(), path); } builder.set_total_score(processed_track.points(), solos, path); if (settings.engine->has_bres() && new_track.bre().has_value()) { const auto bre = new_track.bre(); if (bre.has_value()) { builder.add_bre(*bre, tempo_map); } } return builder; }
28,919
C++
.cpp
707
31.325318
80
0.575597
GenericMadScientist/CHOpt
33
4
5
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,759
main.cpp
GenericMadScientist_CHOpt/src/main.cpp
/* * CHOpt - Star Power optimiser for Clone Hero * Copyright (C) 2020, 2021, 2022, 2023, 2024 Raymond Wright * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <https://www.gnu.org/licenses/>. */ #include <atomic> #include <cstdio> #include <exception> #include <QCoreApplication> #include <QTextStream> #include <sightread/time.hpp> #include "image.hpp" #include "optimiser.hpp" #include "settings.hpp" #include "songfile.hpp" int main(int argc, char** argv) { QTextStream q_stdout(stdout); QTextStream q_stderr(stderr); try { QCoreApplication app {argc, argv}; QCoreApplication::setApplicationName("CHOpt"); QCoreApplication::setApplicationVersion("1.9.2"); const auto settings = from_args(QCoreApplication::arguments()); const SongFile song_file {settings.filename}; auto song = song_file.load_song(settings.game); const auto& track = song.track(settings.instrument, settings.difficulty); const std::atomic<bool> terminate {false}; const auto builder = make_builder( song, track, settings, [&](auto p) { q_stdout << p << '\n'; }, &terminate); q_stdout.flush(); if (settings.draw_image) { const Image image {builder}; image.save(settings.image_path.c_str()); } return EXIT_SUCCESS; } catch (const std::exception& e) { q_stderr << "Error: " << e.what() << '\n'; return EXIT_FAILURE; } catch (...) { q_stderr << "Unexpected non-exception error!" << '\n'; return EXIT_FAILURE; } }
2,176
C++
.cpp
58
32.327586
74
0.670772
GenericMadScientist/CHOpt
33
4
5
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,760
settings.cpp
GenericMadScientist_CHOpt/src/settings.cpp
/* * CHOpt - Star Power optimiser for Clone Hero * Copyright (C) 2020, 2021, 2022, 2023, 2024 Raymond Wright * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <https://www.gnu.org/licenses/>. */ #include <cstdint> #include <stdexcept> #include <QCommandLineParser> #include "settings.hpp" namespace { bool is_valid_image_path(std::string_view path) { return path.ends_with(".bmp") || path.ends_with(".png"); } SightRead::Difficulty string_to_diff(std::string_view text) { if (text == "expert") { return SightRead::Difficulty::Expert; } if (text == "hard") { return SightRead::Difficulty::Hard; } if (text == "medium") { return SightRead::Difficulty::Medium; } if (text == "easy") { return SightRead::Difficulty::Easy; } throw std::invalid_argument("Unrecognised difficulty"); } SightRead::Instrument string_to_inst(std::string_view text, Game game) { if (text == "guitar") { if (game == Game::FortniteFestival) { return SightRead::Instrument::FortniteGuitar; } return SightRead::Instrument::Guitar; } if (text == "coop") { return SightRead::Instrument::GuitarCoop; } if (text == "bass") { if (game == Game::FortniteFestival) { return SightRead::Instrument::FortniteBass; } return SightRead::Instrument::Bass; } if (text == "rhythm") { return SightRead::Instrument::Rhythm; } if (text == "keys") { return SightRead::Instrument::Keys; } if (text == "ghl") { return SightRead::Instrument::GHLGuitar; } if (text == "ghlbass") { return SightRead::Instrument::GHLBass; } if (text == "ghlrhythm") { return SightRead::Instrument::GHLRhythm; } if (text == "ghlcoop") { return SightRead::Instrument::GHLGuitarCoop; } if (text == "drums") { if (game == Game::FortniteFestival) { return SightRead::Instrument::FortniteDrums; } return SightRead::Instrument::Drums; } if (text == "vocals") { return SightRead::Instrument::FortniteVocals; } if (text == "proguitar") { return SightRead::Instrument::FortniteProGuitar; } if (text == "probass") { return SightRead::Instrument::FortniteProBass; } throw std::invalid_argument("Unrecognised instrument"); } Game game_from_string(std::string_view game) { const std::map<std::string_view, Game> game_map { {"ch", Game::CloneHero}, {"fnf", Game::FortniteFestival}, {"gh1", Game::GuitarHeroOne}, {"rb", Game::RockBand}, {"rb3", Game::RockBandThree}}; return game_map.at(game); } std::unique_ptr<QCommandLineParser> arg_parser() { auto parser = std::make_unique<QCommandLineParser>(); parser->setApplicationDescription( "A program to generate optimal Star Power paths for Clone Hero"); parser->addOption( {{"?", "h", "help"}, "Displays help on commandline options."}); parser->addVersionOption(); parser->addOptions( {{{"f", "file"}, "Chart filename.", "file"}, {{"o", "output"}, "Location to save output image (must be a .bmp or .png). Default " "path.png.", "output", "path.png"}, {{"d", "diff"}, "Difficulty, options are easy, medium, hard, expert. Default expert.", "difficulty", "expert"}, {{"i", "instrument"}, "Instrument, options are guitar, coop, bass, rhythm, keys, ghl, " "ghlbass, ghlrhythm, ghlcoop, drums, vocals, proguitar, probass. " "Default guitar.", "instrument", "guitar"}, {{"sqz", "squeeze"}, "Squeeze% (0 to 100). Default 100.", "squeeze", "100"}, {{"ew", "early-whammy"}, "Early whammy% (0 to 100), <= squeeze, defaults to squeeze.", "early-whammy"}, {{"lazy", "lazy-whammy"}, "Time before whammying starts on sustains in milliseconds. Default " "0.", "lazy-whammy", "0"}, {{"delay", "whammy-delay"}, "Time after an activation ends before whammying can resume. Default " "0.", "whammy-delay", "0"}, {{"lag", "video-lag"}, "Video lag calibration setting in milliseconds. Default 0.", "video-lag", "0"}, {{"s", "speed"}, "Speed in %. Default 100.", "speed", "100"}, {{"l", "lefty-flip"}, "Draw with lefty flip."}, {"no-double-kick", "Disable 2x kick for drum charts."}, {"no-kick", "Disable single kicks for drum charts."}, {"no-pro-drums", "Disable pro drums."}, {"enable-dynamics", "Enable double points for ghost and accent notes."}, {"engine", "Engine, options are ch, fnf, gh1, rb, rb3. Default ch.", "engine", "ch"}, {{"p", "precision-mode"}, "Turn on precision mode for CH."}, {{"b", "blank"}, "Give a blank chart image."}, {"no-image", "Do not create an image."}, {"no-bpms", "Do not draw BPMs."}, {"no-solos", "Do not draw solo sections."}, {"no-time-sigs", "Do not draw time signatures."}, {"act-opacity", "Opacity of drawn activations (0.0 to 1.0). Default 0.33.", "act-opacity", "0.33"}}); return parser; } } std::unique_ptr<Engine> game_to_engine(Game game, SightRead::Instrument instrument, bool precision_mode) { switch (game) { case Game::CloneHero: if (instrument == SightRead::Instrument::Drums) { if (precision_mode) { return std::make_unique<ChPrecisionDrumEngine>(); } return std::make_unique<ChDrumEngine>(); } if (precision_mode) { return std::make_unique<ChPrecisionGuitarEngine>(); } return std::make_unique<ChGuitarEngine>(); case Game::FortniteFestival: if (instrument == SightRead::Instrument::FortniteBass || instrument == SightRead::Instrument::FortniteProBass) { return std::make_unique<FortniteBassEngine>(); } if (instrument == SightRead::Instrument::FortniteVocals) { return std::make_unique<FortniteVocalsEngine>(); } return std::make_unique<FortniteGuitarEngine>(); case Game::GuitarHeroOne: return std::make_unique<Gh1Engine>(); case Game::RockBand: if (instrument == SightRead::Instrument::Bass) { return std::make_unique<RbBassEngine>(); } return std::make_unique<RbEngine>(); case Game::RockBandThree: if (instrument == SightRead::Instrument::Bass) { return std::make_unique<Rb3BassEngine>(); } return std::make_unique<Rb3Engine>(); default: throw std::invalid_argument("Invalid Game"); } } Settings from_args(const QStringList& args) { constexpr int MAX_PERCENT = 100; constexpr int MAX_SPEED = 5000; constexpr int MAX_VIDEO_LAG = 200; constexpr int MIN_SPEED = 5; constexpr double MS_PER_SECOND = 1000.0; auto parser = arg_parser(); parser->process(args); if (parser->isSet("help")) { parser->showHelp(); } Settings settings; settings.blank = parser->isSet("blank"); settings.filename = parser->value("file").toStdString(); if (settings.filename.empty()) { throw std::invalid_argument("No file was specified"); } const auto engine_name = parser->value("engine").toStdString(); settings.game = game_from_string(engine_name); settings.difficulty = string_to_diff(parser->value("diff").toStdString()); settings.instrument = string_to_inst( parser->value("instrument").toStdString(), settings.game); const auto precision_mode = parser->isSet("precision-mode"); settings.engine = game_to_engine(settings.game, settings.instrument, precision_mode); settings.image_path = parser->value("output").toStdString(); if (!is_valid_image_path(settings.image_path)) { throw std::invalid_argument( "Image output must be a bitmap or png (.bmp / .png)"); } settings.is_lefty_flip = parser->isSet("lefty-flip"); settings.draw_image = !parser->isSet("no-image"); settings.draw_bpms = !parser->isSet("no-bpms"); settings.draw_solos = !parser->isSet("no-solos"); settings.draw_time_sigs = !parser->isSet("no-time-sigs"); settings.drum_settings.enable_double_kick = !parser->isSet("no-double-kick"); settings.drum_settings.disable_kick = parser->isSet("no-kick"); settings.drum_settings.pro_drums = !parser->isSet("no-pro-drums"); settings.drum_settings.enable_dynamics = parser->isSet("enable-dynamics"); const auto squeeze = parser->value("squeeze").toInt(); auto early_whammy = squeeze; if (parser->isSet("early-whammy")) { early_whammy = parser->value("early-whammy").toInt(); } const auto lazy_whammy = parser->value("lazy-whammy").toInt(); const auto whammy_delay = parser->value("whammy-delay").toInt(); if (squeeze < 0 || squeeze > MAX_PERCENT) { throw std::invalid_argument("Squeeze must lie between 0 and 100"); } if (early_whammy < 0 || early_whammy > MAX_PERCENT) { throw std::invalid_argument("Early whammy must lie between 0 and 100"); } if (lazy_whammy < 0) { throw std::invalid_argument( "Lazy whammy must be greater than or equal to 0"); } if (whammy_delay < 0) { throw std::invalid_argument( "Whammy delay must be greater than or equal to 0"); } settings.squeeze_settings.squeeze = squeeze / 100.0; settings.squeeze_settings.early_whammy = early_whammy / 100.0; settings.squeeze_settings.lazy_whammy = SightRead::Second {lazy_whammy / MS_PER_SECOND}; settings.squeeze_settings.whammy_delay = SightRead::Second {whammy_delay / MS_PER_SECOND}; const auto video_lag = parser->value("video-lag").toInt(); if (video_lag < -MAX_VIDEO_LAG || video_lag > MAX_VIDEO_LAG) { throw std::invalid_argument( "Video lag setting unsupported by Clone Hero"); } settings.squeeze_settings.video_lag = SightRead::Second {video_lag / MS_PER_SECOND}; const auto speed = parser->value("speed").toInt(); if (speed < MIN_SPEED || speed > MAX_SPEED || speed % MIN_SPEED != 0) { throw std::invalid_argument("Speed unsupported by Clone Hero"); } settings.speed = speed; const auto opacity = parser->value("act-opacity").toFloat(); if (opacity < 0.0F || opacity > 1.0F) { throw std::invalid_argument( "Activation opacity should lie between 0.0 and 1.0"); } settings.opacity = opacity; return settings; }
11,486
C++
.cpp
299
31.478261
80
0.617673
GenericMadScientist/CHOpt
33
4
5
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,761
stringutil.cpp
GenericMadScientist_CHOpt/src/stringutil.cpp
/* * CHOpt - Star Power optimiser for Clone Hero * Copyright (C) 2020, 2021, 2022, 2023, 2024 Raymond Wright * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <https://www.gnu.org/licenses/>. */ #include <algorithm> #include <array> #include <stdexcept> #include <QByteArrayView> #include <QChar> #include <QString> #include <QStringConverter> #include <QStringDecoder> #include <sightread/songparts.hpp> #include "stringutil.hpp" std::string_view break_off_newline(std::string_view& input) { if (input.empty()) { throw SightRead::ParseError("No lines left"); } const auto newline_location = std::min(input.find('\n'), input.find("\r\n")); if (newline_location == std::string_view::npos) { const auto line = input; input.remove_prefix(input.size()); return line; } const auto line = input.substr(0, newline_location); input.remove_prefix(newline_location); input = skip_whitespace(input); return line; } std::string_view skip_whitespace(std::string_view input) { const auto first_non_ws_location = input.find_first_not_of(" \f\n\r\t\v"); input.remove_prefix(std::min(first_non_ws_location, input.size())); return input; } std::string to_ordinal(int ordinal) { constexpr int TENS_MODULUS = 10; constexpr int HUNDREDS_MODULUS = 100; constexpr std::array<int, 3> EXCEPTIONAL_TEENS {11, 12, 13}; if (ordinal < 0) { throw std::runtime_error("ordinal was negative"); } if (std::find(EXCEPTIONAL_TEENS.cbegin(), EXCEPTIONAL_TEENS.cend(), ordinal % HUNDREDS_MODULUS) != EXCEPTIONAL_TEENS.cend()) { return std::to_string(ordinal) + "th"; } if (ordinal % TENS_MODULUS == 1) { return std::to_string(ordinal) + "st"; } if (ordinal % TENS_MODULUS == 2) { return std::to_string(ordinal) + "nd"; } if (ordinal % TENS_MODULUS == 3) { return std::to_string(ordinal) + "rd"; } return std::to_string(ordinal) + "th"; } std::string to_utf8_string(std::string_view input) { const QByteArrayView byte_view {input.data(), static_cast<qsizetype>(input.size())}; QStringDecoder to_utf8 {QStringDecoder::Utf8}; QString str = to_utf8(byte_view); if (!to_utf8.hasError()) { return str.toStdString(); } QStringDecoder to_latin_1 {QStringDecoder::Latin1}; str = to_latin_1(byte_view); if (!to_latin_1.hasError() && !str.contains(QChar {0})) { return str.toStdString(); } QStringDecoder to_utf16_le {QStringDecoder::Utf16LE}; str = to_utf16_le(byte_view); if (!to_utf16_le.hasError()) { return str.toStdString(); } throw std::runtime_error("Unable to determine string encoding"); }
3,362
C++
.cpp
95
30.631579
78
0.668512
GenericMadScientist/CHOpt
33
4
5
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,762
image.cpp
GenericMadScientist_CHOpt/src/image.cpp
/* * CHOpt - Star Power optimiser for Clone Hero * Copyright (C) 2020, 2021, 2022, 2023, 2024 Raymond Wright * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <https://www.gnu.org/licenses/>. */ #include <cassert> #include <climits> #include <cmath> #include <cstdio> #include <iterator> #include <map> #include <set> #include <stdexcept> #include <QImage> #include <QString> #include "cimg_wrapper.hpp" #include "image.hpp" #include "optimiser.hpp" using namespace cimg_library; constexpr int VERSION_MAJOR = 1; constexpr int VERSION_MINOR = 9; constexpr int VERSION_PATCH = 2; constexpr int BEAT_WIDTH = 60; constexpr int FONT_HEIGHT = 13; constexpr int LEFT_MARGIN = 31; constexpr int MARGIN = 92; constexpr int MEASURE_HEIGHT = 61; constexpr int TOP_MARGIN = 125; constexpr int DIST_BETWEEN_MEASURES = MEASURE_HEIGHT + MARGIN; namespace { const char* diff_to_str(SightRead::Difficulty difficulty) { switch (difficulty) { case SightRead::Difficulty::Easy: return "Easy"; case SightRead::Difficulty::Medium: return "Medium"; case SightRead::Difficulty::Hard: return "Hard"; case SightRead::Difficulty::Expert: return "Expert"; default: throw std::runtime_error("Invalid difficulty to diff_to_str"); } } std::tuple<int, int> get_xy(const ImageBuilder& builder, double pos) { auto row = std::find_if(builder.rows().cbegin(), builder.rows().cend(), [=](const auto x) { return x.end > pos; }); auto x = LEFT_MARGIN + static_cast<int>(BEAT_WIDTH * (pos - row->start)); auto y = TOP_MARGIN + MARGIN + DIST_BETWEEN_MEASURES * static_cast<int>(std::distance(builder.rows().cbegin(), row)); return {x, y}; } int numb_of_fret_lines(SightRead::TrackType track_type) { switch (track_type) { case SightRead::TrackType::FiveFret: case SightRead::TrackType::FortniteFestival: return 4; case SightRead::TrackType::SixFret: return 2; case SightRead::TrackType::Drums: return 3; } throw std::invalid_argument("Invalid TrackType"); } void validate_snprintf_rc(int snprintf_rc) { if (snprintf_rc < 0) { throw std::runtime_error("Failure with snprintf"); } } bool is_kick_note(const ImageBuilder& builder, const DrawnNote& note) { return (builder.track_type() == SightRead::TrackType::Drums) && (note.lengths[SightRead::DRUM_KICK] != -1 || note.lengths[SightRead::DRUM_DOUBLE_KICK] != -1); } void blend_colour(unsigned char& canvas_value, int sprite_value, int sprite_alpha) { const auto MAX_OPACITY = 255; canvas_value = ((MAX_OPACITY - sprite_alpha) * canvas_value + sprite_value * sprite_alpha) / MAX_OPACITY; } int colours(const DrawnNote& note) { int colour_flags = 0; for (auto i = 0; i < static_cast<int>(note.lengths.size()); ++i) { if (note.lengths.at(i) != -1) { colour_flags |= 1 << i; } } return colour_flags; } const char* orientation_directory(const ImageBuilder& builder) { if (builder.is_lefty_flip()) { return "lefty/"; } return "righty/"; } const char* shape_directory(const ImageBuilder& builder, const DrawnNote& note) { switch (builder.track_type()) { case SightRead::TrackType::FiveFret: case SightRead::TrackType::FortniteFestival: if (note.is_sp_note) { return "stars/"; } return "circles/"; case SightRead::TrackType::SixFret: return "ghl/"; case SightRead::TrackType::Drums: if ((note.note_flags & SightRead::FLAGS_CYMBAL) != 0U) { return "cymbals/"; } return "drums/"; } throw std::invalid_argument("Invalid track type"); } } class ImageImpl { private: CImg<unsigned char> m_image; std::map<QString, QImage> m_sprite_map; void draw_sprite(const QImage& sprite, int x, int y); void draw_note(const ImageBuilder& builder, const DrawnNote& note); void draw_sustain(const ImageBuilder& builder, const DrawnNote& note); void draw_quarter_note(int x, int y); void draw_text_backwards(int x, int y, const char* text, const unsigned char* color, float opacity, unsigned int font_height); void draw_vertical_lines(const ImageBuilder& builder, const std::vector<double>& positions, std::array<unsigned char, 3> colour); const QImage& load_sprite(const QString& path); public: ImageImpl(unsigned int size_x, unsigned int size_y, unsigned int size_z, unsigned int size_c, const unsigned char& value) : m_image {size_x, size_y, size_z, size_c, value} { } ImageImpl(const ImageImpl&) = delete; ImageImpl& operator=(const ImageImpl&) = delete; ImageImpl(ImageImpl&&) = delete; ImageImpl& operator=(ImageImpl&&) = delete; ~ImageImpl() = default; void colour_beat_range(const ImageBuilder& builder, std::array<unsigned char, 3> colour, const std::tuple<double, double>& x_range, const std::tuple<int, int>& y_range, float opacity); void draw_header(const ImageBuilder& builder); void draw_measures(const ImageBuilder& builder); void draw_notes(const ImageBuilder& builder); void draw_practice_sections(const ImageBuilder& builder); void draw_score_totals(const ImageBuilder& builder); void draw_tempos(const ImageBuilder& builder); void draw_time_sigs(const ImageBuilder& builder); void draw_version(); void save(const char* filename) const { m_image.save(filename); } }; void ImageImpl::draw_header(const ImageBuilder& builder) { constexpr std::array<unsigned char, 3> BLACK {0, 0, 0}; constexpr int HEADER_FONT_HEIGHT = 23; const auto x = LEFT_MARGIN; const auto y = LEFT_MARGIN; m_image.draw_text(x, y, "%s\n%s\n%s\n%s\nTotal score = %d", BLACK.data(), 0, 1.0, HEADER_FONT_HEIGHT, builder.song_name().c_str(), builder.artist().c_str(), builder.charter().c_str(), diff_to_str(builder.difficulty()), builder.total_score()); } void ImageImpl::draw_measures(const ImageBuilder& builder) { constexpr std::array<unsigned char, 3> BLACK {0, 0, 0}; constexpr std::array<unsigned char, 3> GREY {160, 160, 160}; constexpr std::array<unsigned char, 3> LIGHT_GREY {224, 224, 224}; constexpr std::array<unsigned char, 3> RED {140, 0, 0}; constexpr int MEASURE_NUMB_GAP = 18; const int fret_lines = numb_of_fret_lines(builder.track_type()); const int colour_distance = (MEASURE_HEIGHT - 1) / fret_lines; draw_vertical_lines(builder, builder.beat_lines(), GREY); draw_vertical_lines(builder, builder.half_beat_lines(), LIGHT_GREY); auto current_row = 0; for (const auto& row : builder.rows()) { auto y = TOP_MARGIN + DIST_BETWEEN_MEASURES * current_row + MARGIN; auto x_max = LEFT_MARGIN + static_cast<int>(BEAT_WIDTH * (row.end - row.start)); for (int i = 1; i < fret_lines; ++i) { m_image.draw_line(LEFT_MARGIN, y + colour_distance * i, x_max, y + colour_distance * i, GREY.data()); } m_image.draw_rectangle(LEFT_MARGIN, y, x_max, y + MEASURE_HEIGHT - 1, BLACK.data(), 1.0, ~0U); ++current_row; } // We do measure lines after the boxes because we want the measure lines to // lie over the horizontal grey fretboard lines. We make a copy of the // measures missing the last one because we don't want to draw the last // measure line, since that is already dealt with by drawing the boxes. std::vector<double> measure_copy { builder.measure_lines().cbegin(), std::prev(builder.measure_lines().cend())}; draw_vertical_lines(builder, measure_copy, BLACK); for (std::size_t i = 0; i < builder.measure_lines().size() - 1; ++i) { auto pos = builder.measure_lines()[i]; auto [x, y] = get_xy(builder, pos); y -= MEASURE_NUMB_GAP; m_image.draw_text(x, y, "%u", RED.data(), 0, 1.0, FONT_HEIGHT, i + 1); } } void ImageImpl::draw_vertical_lines(const ImageBuilder& builder, const std::vector<double>& positions, std::array<unsigned char, 3> colour) { for (auto pos : positions) { auto [x, y] = get_xy(builder, pos); m_image.draw_line(x, y, x, y + MEASURE_HEIGHT - 1, colour.data()); } } void ImageImpl::draw_tempos(const ImageBuilder& builder) { constexpr std::array<unsigned char, 3> GREY {160, 160, 160}; constexpr int TEMPO_OFFSET = 44; for (const auto& [pos, tempo] : builder.bpms()) { auto [x, y] = get_xy(builder, pos); y -= TEMPO_OFFSET; m_image.draw_text(x + 1, y, " =%.f", GREY.data(), 0, 1.0, FONT_HEIGHT, tempo); draw_quarter_note(x, y); } } void ImageImpl::draw_quarter_note(int x, int y) { constexpr int GREY_VALUE = 160; constexpr std::array<std::tuple<int, int>, 26> PIXELS { {{4, 0}, {4, 1}, {4, 2}, {4, 3}, {4, 4}, {4, 5}, {4, 6}, {4, 7}, {4, 8}, {4, 9}, {4, 10}, {4, 11}, {3, 9}, {3, 10}, {3, 11}, {3, 12}, {2, 9}, {2, 10}, {2, 11}, {2, 12}, {1, 9}, {1, 10}, {1, 11}, {1, 12}, {0, 10}, {0, 11}}}; for (const auto& [diff_x, diff_y] : PIXELS) { auto x_pos = static_cast<unsigned int>(x + diff_x); auto y_pos = static_cast<unsigned int>(y + diff_y); m_image(x_pos, y_pos, 0) = GREY_VALUE; m_image(x_pos, y_pos, 1) = GREY_VALUE; m_image(x_pos, y_pos, 2) = GREY_VALUE; } } void ImageImpl::draw_time_sigs(const ImageBuilder& builder) { constexpr std::array<unsigned char, 3> GREY {160, 160, 160}; constexpr int TS_FONT_HEIGHT = 38; constexpr int TS_GAP = MEASURE_HEIGHT / 16; for (const auto& [pos, num, denom] : builder.time_sigs()) { auto [x, y] = get_xy(builder, pos); x += TS_GAP; y -= TS_GAP; m_image.draw_text(x, y, "%d", GREY.data(), 0, 1.0, TS_FONT_HEIGHT, num); m_image.draw_text(x, y + MEASURE_HEIGHT / 2, "%d", GREY.data(), 0, 1.0, TS_FONT_HEIGHT, denom); } } void ImageImpl::draw_score_totals(const ImageBuilder& builder) { constexpr std::array<unsigned char, 3> CYAN {0, 160, 160}; constexpr std::array<unsigned char, 3> GREEN {0, 100, 0}; constexpr std::array<unsigned char, 3> GREY {160, 160, 160}; constexpr int BASE_VALUE_MARGIN = 4; // This is enough room for the max double (below 10^309, a '.', two more // digits, then "SP"). constexpr std::size_t BUFFER_SIZE = 315; constexpr int VALUE_GAP = 13; constexpr double PERCENT_MULT = 100.0; const auto& base_values = builder.base_values(); const auto& score_values = builder.score_values(); const auto& sp_values = builder.sp_values(); const auto& sp_percent_values = builder.sp_percent_values(); const auto& measures = builder.measure_lines(); std::array<char, BUFFER_SIZE> buffer {}; for (std::size_t i = 0; i < base_values.size(); ++i) { // We need to go to the previous double because otherwise we have an OOB // when drawing the scores for the last measure. auto pos = std::nextafter(measures[i + 1], -1.0); auto [x, y] = get_xy(builder, pos); y += BASE_VALUE_MARGIN + MEASURE_HEIGHT; auto text = std::to_string(base_values[i]); draw_text_backwards(x, y, text.c_str(), GREY.data(), 1.0F, FONT_HEIGHT); text = std::to_string(score_values[i]); y += VALUE_GAP; draw_text_backwards(x, y, text.c_str(), GREEN.data(), 1.0F, FONT_HEIGHT); if (sp_percent_values.empty() && sp_values[i] == 0) { continue; } y += VALUE_GAP; if (sp_percent_values.empty()) { const auto print_rc = std::snprintf(buffer.data(), BUFFER_SIZE, "%.2fSP", sp_values[i]); validate_snprintf_rc(print_rc); } else { const auto print_rc = std::snprintf(buffer.data(), BUFFER_SIZE, "%.2f%%%%", PERCENT_MULT * sp_percent_values[i]); validate_snprintf_rc(print_rc); } draw_text_backwards(x, y, buffer.data(), CYAN.data(), 1.0F, FONT_HEIGHT); } } // CImg's normal draw_text method draws the text so the top left corner of the // box is at (x, y). This method draws the text so that the top right corner of // the box is at (x, y). void ImageImpl::draw_text_backwards(int x, int y, const char* text, const unsigned char* color, float opacity, unsigned int font_height) { // Hack for getting the text box width from the answer at // stackoverflow.com/questions/24190327. CImg<int> img_text; img_text.draw_text(0, 0, text, color, 0, opacity, font_height); x -= img_text.width(); m_image.draw_text(x, y, text, color, 0, opacity, font_height); } void ImageImpl::draw_notes(const ImageBuilder& builder) { // We draw all the kicks first because we want RYBG to lie on top of the // kicks, not underneath. for (const auto& note : builder.notes()) { if (is_kick_note(builder, note)) { draw_note(builder, note); } } for (const auto& note : builder.notes()) { if (!is_kick_note(builder, note)) { draw_note(builder, note); } } } void ImageImpl::draw_sprite(const QImage& sprite, int x, int y) { for (auto i = 0; i < sprite.width(); ++i) { for (auto j = 0; j < sprite.height(); ++j) { const auto sprite_colour = sprite.pixelColor(i, j); blend_colour(m_image(x + i, y + j, 0), sprite_colour.red(), sprite_colour.alpha()); blend_colour(m_image(x + i, y + j, 1), sprite_colour.green(), sprite_colour.alpha()); blend_colour(m_image(x + i, y + j, 2), sprite_colour.blue(), sprite_colour.alpha()); } } } const QImage& ImageImpl::load_sprite(const QString& path) { const auto it = m_sprite_map.find(path); if (it != m_sprite_map.cend()) { return it->second; } const auto [new_it, is_inserted] = m_sprite_map.emplace(path, QImage {path}); assert(is_inserted); // NOLINT const auto& image = new_it->second; assert(image.height() > 0); // NOLINT assert(image.width() > 0); // NOLINT return image; } void ImageImpl::draw_note(const ImageBuilder& builder, const DrawnNote& note) { draw_sustain(builder, note); const auto [x, y] = get_xy(builder, note.beat); QString sprite_path {":/sprites/"}; sprite_path += orientation_directory(builder); sprite_path += shape_directory(builder, note); sprite_path += QString::number(colours(note)) + ".png"; const QImage& sprite = load_sprite(sprite_path); draw_sprite(sprite, x - sprite.width() / 2, y - (sprite.height() - MEASURE_HEIGHT) / 2); } struct SustainColour { std::array<unsigned char, 3> rgb; float opacity; std::tuple<int, int> y_range; }; void ImageImpl::draw_sustain(const ImageBuilder& builder, const DrawnNote& note) { const std::map<SightRead::TrackType, std::vector<SustainColour>> colour_map {{SightRead::TrackType::FiveFret, {{{0, 255, 0}, 1.0F, {-3, 3}}, {{255, 0, 0}, 1.0F, {12, 18}}, {{255, 255, 0}, 1.0F, {27, 33}}, {{0, 0, 255}, 1.0F, {42, 48}}, {{255, 165, 0}, 1.0F, {57, 63}}, {{128, 0, 128}, 0.5F, {7, 53}}}}, {SightRead::TrackType::FortniteFestival, {{{0, 255, 0}, 1.0F, {-3, 3}}, {{255, 0, 0}, 1.0F, {12, 18}}, {{255, 255, 0}, 1.0F, {27, 33}}, {{0, 0, 255}, 1.0F, {42, 48}}, {{255, 165, 0}, 1.0F, {57, 63}}, {{128, 0, 128}, 0.5F, {7, 53}}}}, {SightRead::TrackType::SixFret, {{{150, 150, 150}, 1.0F, {-3, 3}}, {{150, 150, 150}, 1.0F, {27, 33}}, {{150, 150, 150}, 1.0F, {57, 63}}, {{150, 150, 150}, 1.0F, {-3, 3}}, {{150, 150, 150}, 1.0F, {27, 33}}, {{150, 150, 150}, 1.0F, {57, 63}}, {{150, 150, 150}, 0.5F, {7, 53}}}}, {SightRead::TrackType::Drums, {}}}; const auto& colours = colour_map.at(builder.track_type()); for (auto i = 0U; i < colours.size(); ++i) { const auto length = note.lengths.at(i); if (length <= 0.0) { continue; } const auto& colour = colours[i]; auto range = colour.y_range; if (builder.is_lefty_flip()) { range = {MEASURE_HEIGHT - 1 - std::get<1>(range), MEASURE_HEIGHT - 1 - std::get<0>(range)}; } std::tuple<double, double> x_range {note.beat, note.beat + length}; colour_beat_range(builder, colour.rgb, x_range, range, colour.opacity); } } void ImageImpl::colour_beat_range(const ImageBuilder& builder, std::array<unsigned char, 3> colour, const std::tuple<double, double>& x_range, const std::tuple<int, int>& y_range, float opacity) { double start = std::numeric_limits<double>::quiet_NaN(); double end = std::numeric_limits<double>::quiet_NaN(); std::tie(start, end) = x_range; // Required if a beat range ends after the end of a song (e.g., a solo // section) end = std::min(end, std::nextafter(builder.rows().back().end, 0.0)); auto row_iter = std::find_if(builder.rows().cbegin(), builder.rows().cend(), [=](const auto& r) { return r.end > start; }); auto row = static_cast<int>(std::distance(builder.rows().cbegin(), row_iter)); const auto& [y_min, y_max] = y_range; while (start < end) { auto block_end = std::min(row_iter->end, end); auto x_min = LEFT_MARGIN + static_cast<int>(BEAT_WIDTH * (start - row_iter->start)); // -1 is so regions that cross rows do not go over the ending line of a // row. auto x_max = LEFT_MARGIN + static_cast<int>(BEAT_WIDTH * (block_end - row_iter->start)) - 1; if (x_min <= x_max) { auto y = TOP_MARGIN + MARGIN + DIST_BETWEEN_MEASURES * row; m_image.draw_rectangle(x_min, y + y_min, x_max, y + y_max, colour.data(), opacity); } start = block_end; ++row_iter; ++row; } } void ImageImpl::draw_version() { for (auto i = 0; i < CHAR_BIT; ++i) { m_image(i, 0, 0) ^= (VERSION_MAJOR >> (CHAR_BIT - i - 1)) & 1; m_image(i, 0, 1) ^= (VERSION_MINOR >> (CHAR_BIT - i - 1)) & 1; m_image(i, 0, 2) ^= (VERSION_PATCH >> (CHAR_BIT - i - 1)) & 1; } } void ImageImpl::draw_practice_sections(const ImageBuilder& builder) { constexpr std::array<unsigned char, 3> BLACK {0, 0, 0}; constexpr int SECTION_NAME_GAP = 31; for (const auto& section : builder.practice_sections()) { const auto pos = std::get<0>(section); auto [x, y] = get_xy(builder, pos); y -= SECTION_NAME_GAP; m_image.draw_text(x, y, "%s", BLACK.data(), 0, 1.0, FONT_HEIGHT, std::get<1>(section).c_str()); } } Image::Image(const ImageBuilder& builder) { constexpr std::array<unsigned char, 3> green {0, 255, 0}; constexpr std::array<unsigned char, 3> blue {0, 0, 255}; constexpr std::array<unsigned char, 3> yellow {255, 255, 0}; constexpr std::array<unsigned char, 3> red {255, 0, 0}; constexpr std::array<unsigned char, 3> solo_blue {0, 51, 128}; constexpr std::array<unsigned char, 3> pink {127, 0, 0}; constexpr unsigned int IMAGE_WIDTH = 1024; constexpr float RANGE_OPACITY = 0.33333F; constexpr int SOLO_HEIGHT = 10; constexpr unsigned char WHITE = 255; const auto height = static_cast<unsigned int>( TOP_MARGIN + MARGIN + DIST_BETWEEN_MEASURES * builder.rows().size()); m_impl = std::make_unique<ImageImpl>(IMAGE_WIDTH, height, 1, 3, WHITE); m_impl->draw_version(); m_impl->draw_header(builder); m_impl->draw_practice_sections(builder); m_impl->draw_measures(builder); m_impl->draw_tempos(builder); m_impl->draw_time_sigs(builder); for (const auto& range : builder.solo_ranges()) { m_impl->colour_beat_range( builder, solo_blue, range, {-SOLO_HEIGHT, MEASURE_HEIGHT - 1 + SOLO_HEIGHT}, RANGE_OPACITY / 2); } for (const auto& range : builder.bre_ranges()) { m_impl->colour_beat_range( builder, pink, range, {-SOLO_HEIGHT, MEASURE_HEIGHT - 1 + SOLO_HEIGHT}, RANGE_OPACITY / 2); } for (const auto& range : builder.fill_ranges()) { m_impl->colour_beat_range( builder, pink, range, {-SOLO_HEIGHT, MEASURE_HEIGHT - 1 + SOLO_HEIGHT}, RANGE_OPACITY / 2); } for (const auto& range : builder.unison_ranges()) { m_impl->colour_beat_range(builder, yellow, range, {-SOLO_HEIGHT, -1}, RANGE_OPACITY / 2); m_impl->colour_beat_range( builder, yellow, range, {MEASURE_HEIGHT, MEASURE_HEIGHT - 1 + SOLO_HEIGHT}, RANGE_OPACITY / 2); } m_impl->draw_notes(builder); m_impl->draw_score_totals(builder); for (const auto& range : builder.green_ranges()) { m_impl->colour_beat_range(builder, green, range, {0, MEASURE_HEIGHT - 1}, RANGE_OPACITY); } for (const auto& range : builder.yellow_ranges()) { m_impl->colour_beat_range(builder, yellow, range, {0, MEASURE_HEIGHT - 1}, RANGE_OPACITY); } for (const auto& range : builder.red_ranges()) { m_impl->colour_beat_range(builder, red, range, {0, MEASURE_HEIGHT - 1}, builder.activation_opacity()); } for (const auto& range : builder.blue_ranges()) { m_impl->colour_beat_range(builder, blue, range, {0, MEASURE_HEIGHT - 1}, builder.activation_opacity()); } } Image::~Image() = default; Image::Image(Image&& image) noexcept = default; Image& Image::operator=(Image&& image) noexcept = default; void Image::save(const char* filename) const { m_impl->save(filename); }
23,774
C++
.cpp
566
33.833922
80
0.584342
GenericMadScientist/CHOpt
33
4
5
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
1,537,763
songfile.cpp
GenericMadScientist_CHOpt/src/songfile.cpp
/* * CHOpt - Star Power optimiser for Clone Hero * Copyright (C) 2023, 2024 Raymond Wright * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <https://www.gnu.org/licenses/>. */ #include <filesystem> #include <set> #include <string_view> #include <QFile> #include <QString> #include <sightread/chartparser.hpp> #include <sightread/midiparser.hpp> #include "ini.hpp" #include "songfile.hpp" #include "stringutil.hpp" namespace { std::set<SightRead::Instrument> permitted_instruments(Game game) { switch (game) { case Game::CloneHero: return {SightRead::Instrument::Guitar, SightRead::Instrument::GuitarCoop, SightRead::Instrument::Bass, SightRead::Instrument::Rhythm, SightRead::Instrument::Keys, SightRead::Instrument::GHLGuitar, SightRead::Instrument::GHLBass, SightRead::Instrument::GHLRhythm, SightRead::Instrument::GHLGuitarCoop, SightRead::Instrument::Drums}; case Game::FortniteFestival: return {SightRead::Instrument::FortniteGuitar, SightRead::Instrument::FortniteBass, SightRead::Instrument::FortniteDrums, SightRead::Instrument::FortniteVocals, SightRead::Instrument::FortniteProGuitar, SightRead::Instrument::FortniteProBass}; case Game::GuitarHeroOne: return {SightRead::Instrument::Guitar}; case Game::RockBand: return {SightRead::Instrument::Guitar, SightRead::Instrument::Bass}; case Game::RockBandThree: return {SightRead::Instrument::Guitar, SightRead::Instrument::Bass, SightRead::Instrument::Keys}; default: throw std::invalid_argument("Invalid Game"); } } bool parse_solos(Game game) { return game != Game::GuitarHeroOne && game != Game::FortniteFestival; } } SongFile::SongFile(const std::string& filename) { std::string ini_file; const std::filesystem::path song_path {filename}; const auto song_directory = song_path.parent_path(); const auto ini_path = song_directory / "song.ini"; QFile ini {QString::fromStdString(ini_path.string())}; if (ini.open(QIODevice::ReadOnly | QIODevice::Text)) { ini_file = ini.readAll().toStdString(); } m_metadata = parse_ini(ini_file); if (filename.ends_with(".chart")) { m_file_type = FileType::Chart; } else if (filename.ends_with(".mid")) { m_file_type = FileType::Midi; } else { throw std::invalid_argument("file should be .chart or .mid"); } QFile chart {QString::fromStdString(filename)}; if (!chart.open(QIODevice::ReadOnly)) { throw std::invalid_argument("File did not open"); } const auto chart_buffer = chart.readAll(); m_loaded_file = std::vector<std::uint8_t> {chart_buffer.cbegin(), chart_buffer.cend()}; } SightRead::Song SongFile::load_song(Game game) const { switch (m_file_type) { case FileType::Chart: { std::string_view chart_buffer { reinterpret_cast<const char*>(m_loaded_file.data()), // NOLINT m_loaded_file.size()}; std::string u8_string; try { u8_string = to_utf8_string(chart_buffer); } catch (const std::invalid_argument& e) { throw SightRead::ParseError(e.what()); } SightRead::ChartParser parser {m_metadata}; parser.permit_instruments(permitted_instruments(game)); parser.parse_solos(parse_solos(game)); return parser.parse(u8_string); } case FileType::Midi: std::span<const std::uint8_t> midi_buffer {m_loaded_file.data(), m_loaded_file.size()}; SightRead::MidiParser parser {m_metadata}; parser.permit_instruments(permitted_instruments(game)); parser.parse_solos(parse_solos(game)); return parser.parse(midi_buffer); } throw std::runtime_error("Invalid file type"); }
4,650
C++
.cpp
119
31.848739
76
0.651327
GenericMadScientist/CHOpt
33
4
5
GPL-3.0
9/20/2024, 10:44:51 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false