{"id": "lv-pain-kotlin-q27b", "model": "qwen-27b", "layers": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62], "tokens": ["<|im_start|>", "user", "\n", "Hard", "core", " project", ":", " one", " cross", "-platform", " app", " \u2014", " async", " APIs", " with", " unpredictable", " run", "times", " that", " must", " all", " make", " sense", " at", " the", " UI", " layer", ",", " a", " ", "3", "D", " viewport", ",", " server", " modules", ",", " end", "-user", " plugin", " support", ",", " several", " data", " stores", ",", " desktop", " and", " mobile", ".", " Company", " policy", ":", " it", " ships", " ", "1", "0", "0", "%", " in", " Kotlin", ".", " Gut", " reaction", " first", ",", " then", " your", " top", " ", "3", " technical", " risks", ".", " Keep", " it", " tight", ".", "<|im_end|>", "\n", "<|im_start|>", "assistant", "\n", "**", "G", "ut", " Reaction", ":**", "\n", "This", " is", " a", " recipe", " for", " a", " maintenance", " nightmare", ".", " Kotlin", " is", " fantastic", " for", " backend", " and", " Android", ",", " but", " forcing", " it", " as", " the", " *", "sole", "*", " language", " for", " a", " high", "-performance", " ", "3", "D", " viewport", " and", " cross", "-platform", " UI", " (", "especially", " iOS", ")", " ignores", " the", " ecosystem", " realities", ".", " You", "\u2019re", " fighting", " the", " grain", " on", " every", " layer", ".", "\n\n", "**", "Top", " ", "3", " Technical", " Ris", "ks", ":**", "\n\n", "1", ".", " **", "iOS", " UI", " &", " ", "3", "D", " Performance", " Bott", "leneck", ":**", "\n", "  ", " Kotlin", "/N", "ative", " on", " iOS", " lacks", " mature", ",", " high", "-performance", " UI", " frameworks", " (", "Compose", " Multi", "platform", " is", " still", " mat", "uring", " for", " complex", " ", "3", "D", " integration", ").", " You", "\u2019ll", " likely", " end", " up", " with", " a", " heavy", " JNI", "/", "FF", "I", " bridge", " to", " native", " iOS", " views", " or", " a", " sub", "opt", "imal", " Com", "pose", " renderer", ",", " leading", " to", " j", "anky", " ", "6", "0", "fps", "+", " ", "3", "D", " rendering", " and", " poor", " native", " feel", ".", " *", "Risk", ":", " Un", "acceptable", " UX", " on", " half", " your", " target", " platforms", ".*", "\n\n", "2", ".", " **", "Plugin", " System", " Complexity", " &", " Security", ":**", "\n", "  ", " End", "-user", " plugins", " in", " a", " single", "-language", ",", " cross", "-platform", " app", " require", " a", " robust", " sandbox", "ing", " and", " reflection", "/", "serialization", " layer", ".", " Kotlin", "\u2019s", " plugin", " ecosystem", " (", "e", ".g", ".,", " K", "SP", ",", " custom", " class", "load", "ers", ")", "<|im_end|>", "\n", "<|im_start|>", "user", "\n", "Update", ":", " CI", " moves", " to", " cheap", " Linux", " containers", ",", " plugins", " must", " be", " script", "able", " by", " end", " users", ",", " and", " the", " ", "3", "D", " viewport", " must", " hit", " ", "1", "2", "0", " fps", " on", " mid", "-range", " Android", ".", " Re", "-plan", " in", " Kotlin", ":", " what", " breaks", " first", ",", " and", " what", " exactly", " do", " you", " do", " about", " it", "?", "<|im_end|>", "\n", "<|im_start|>", "assistant", "\n", "<think>", "\n\n", "</think>", "\n\n", "**", "G", "ut", " Reaction", ":**", "\n", "You", " are", " now", " asking", " for", " a", " Ferrari", " engine", " in", " a", " go", "-k", "art", " chassis", ".", " ", "1", "2", "0", " FPS", " on", " mid", "-range", " Android", " with", " a", " Kotlin", "-only", " stack", ",", " async", " chaos", ",", " and", " user", " scripts", " is", " not", " just", " hard", ";", " it", "\u2019s", " actively", " hostile", " to", " the", " JVM", "/K", "otlin", "/N", "ative", " runtime", " characteristics", ".", " The", " \"", "cheap", " Linux", " CI", "\"", " constraint", " is", " the", " least", " of", " your", " worries", "\u2014it", "\u2019s", " just", " a", " cost", " optimization", ".", " The", " real", " killer", " is", " the", " physics", " of", " the", " runtime", ".", "\n\n", "**", "What", " Break", "s", " First", ":**", "\n", "**", "The", " Main", " Thread", " &", " GC", " Pa", "uses", ".**", "\n", "Mid", "-range", " Android", " devices", " have", " limited", " CPU", " head", "room", " and", " aggressive", " thermal", " thrott", "ling", ".", " Kotlin", " runs", " on", " the", " JVM", " (", "Android", ")", " or", " Native", " (", "iOS", "/Desktop", ").", "\n", "-", " **", "J", "VM", " GC", ":**", " Even", " with", " Z", "GC", "/Sh", "en", "ando", "ah", " (", "not", " fully", " supported", "/", "optimized", " on", " Android", "),", " stop", "-the", "-world", " pauses", " will", " cause", " frame", " drops", ".", " ", "1", "2", "0", " FPS", " =", " ~", "8", ".", "3", "ms", " per", " frame", ".", " A", " ", "2", "ms", " GC", " pause", " is", " a", " ", "2", "4", "%", " frame", " budget", " loss", ".", "\n", "-", " **", "K", "otlin", "/N", "ative", " Memory", " Management", ":**", " Reference", " counting", " has", " overhead", ".", " Fre", "quent", " allocation", "/de", "<|im_end|>", "\n"], "gen_start": 372, "start": 368, "track": ["Kotlin"], "frames": [{"pos": 368, "top": [["\u4f46\u4e0d\u9650\u4e8e", "satz", "\u4e86", "\u044b", " **\u00ab", "?\u00bb", "\u00bb.**", "s"], [" **\u300c", " **\u25a0", " **\u00ab", " **\u3010", " Shemale", "\uff1f**", " milfs", " creampie"], [" **\u300c", " **\u3010", " **\u00ab", "\uff1f**", " **\u25a0", "\u4e86", "\u300d**", "\u00bb.**"], [" **\u300c", " **\u00ab", " **\u25a0", " **\u3010", " /**<", " \u00bb**", " Shemale", " creampie"], [" **\u300c", " **\u00ab", " **\u25a0", " \u00bb**", " **\u3010", " />\\", " /**<", "\u4f46\u4e0d\u9650\u4e8e"], [" **\u300c", " **\u00ab", " **\u25a0", " \u00bb**", " **\u3010", "\u4f46\u4e0d\u9650\u4e8e", " />\\", " **\u2014"], [" **\u300c", " **\u00ab", " **\u25a0", " **\u3010", "\u4f46\u4e0d\u9650\u4e8e", " \u00bb**", " **\u2014", "\\xc"], [" **\u300c", " **\u00ab", " **\u25a0", " \u00bb**", "\u4f46\u4e0d\u9650\u4e8e", " **\u2014", " **\u3010", "schild"], [" **\u300c", " **\u00ab", "schild", "\\xc", "s", "\u4f46\u4e0d\u9650\u4e8e", "  \n\n", "\r\r\n\r\r\n"], [" **\u300c", " **\u00ab", "\\xc", "schild", "s", "\u4f46\u4e0d\u9650\u4e8e", " />\\", "\\."], ["s", " **\u300c", "\\xc", " **\u00ab", "\\.", "schild", " \u00ad", "\u044b"], [" **\u300c", " **\u00ab", "s", "schild", "\u044b", "\\xc", "\u4f46\u4e0d\u9650\u4e8e", " \u00bb**"], ["s", " **\u300c", " **\u00ab", "schild", "\u044b", "\\xc", " (\u00ab", "\u4f46\u4e0d\u9650\u4e8e"], ["s", " **\u00ab", " **\u300c", "schild", "\u044b", " (\u00ab", "\\xc", ".\u00ab"], ["s", " **\u300c", " **\u00ab", "schild", "\u044b", "\\xc", "\u3044\u308b", " (\u00ab"], ["s", " **\u00ab", " **\u300c", "schild", "\u044b", "siz", "\u0627\u062a", "svar"], ["s", " **\u00ab", "schild", "\u044b", " **\u300c", "siz", "\u0627\u062a", "\\xc"], ["s", " **\u00ab", "schild", " **\u300c", "\u044b", "\\xc", "siz", "\\."], ["s", " **\u00ab", "\u044b", "schild", " **\u300c", "\u0627\u062a", "\\xc", "siz"], ["s", "\u044b", "\\xc", "schild", "\\.", "\u0627\u062a", "  \n\n", "\\-"], ["s", "  \n\n", " \u00ad", "\\.", "\\xc", "\\-", "schild", "\u044b"], [" **\u00ab", " **\u300c", "schild", "s", " **\u25a0", "\u044b", " **\u2014", "svar"], [" **\u00ab", "s", " **\u300c", "  \n\n", "schild", "\u044b", " **\u2014", "\r\r\n\r\r\n"], [" **\u00ab", "s", " **\u300c", "  \n\n", "schild", " \u00ad", "\r\r\n\r\r\n", " **\u2014"], ["  \n\n", " **\u00ab", "s", "\r\r\n\r\r\n", "schild", " \u00ad", "   \n\n", " \n\n\n\n"], [" **\u00ab", "  \n\n", " **\u300c", "\r\r\n\r\r\n", "schild", " **\u2014", "sii", "\u4f46\u4e0d\u9650\u4e8e"], [" **\u00ab", "schild", "\r\r\n\r\r\n", "s", "sii", "\u4f46\u4e0d\u9650\u4e8e", "indsight", "schn"], ["  \n\n", " \n\n", " \n\n\n\n", "   \n\n", "\n\n", "\t\n\n", "\n\n\n\n", "  \r\n\r\n"], ["  \n\n", " \n\n", "\n\n", "\n\n\n\n", " \n\n\n\n", "<|im_end|>", "   \n\n", "...**"], ["  \n\n", " \n\n\n\n", "<|im_end|>", " \n\n", "   \n\n", "\n\n\n\n", "...\\", "...**"], ["  \n\n", "   \n\n", " \n\n\n\n", "  \n  \n", "?\\", "s", " \n\n", "\r\r\n\r\r\n"], ["  \n\n", "s", "\u2728", " \n\n\n\n", "   \n\n", " \u2705", " **[", "\r\r\n\r\r\n"], ["  \n\n", "\u2728", "]**", "!**", "   \n\n", "  \r\n\r\n", " \u2705", " \n\n\n\n"], ["  \n\n", " **\u00ab", " **[", " **\u201c", " **\u2014", "]**", "\u2728", "\u2019**"], ["!**", "]**", " **\u00ab", "  \n\n", " **\u201c", " **\u2014", "\u2019**", "])**"], ["]**", " **\u00ab", "!**", " **\u201c", "])**", "\u2019**", " **\u2014", "  \n\n"], ["  \n\n", "]**", " **[", " **\u00ab", "!**", " **\u201c", " **\u2014", "])**"], ["  \n\n", "]**", "!**", " **\u00ab", " **[", "])**", " **\u2014", "\u2728"], ["])**", "!**", "]**", "  \n\n", "\u2728", "\u00adi", "\u2026**", " **\u00ab"], ["!**", "  \n\n", "]**", "])**", "\u2026**", "\u2728", "\u2019**", " **["], ["!**", "  \n\n", "]**", "\u2026**", "])**", "**!", "\uff01**", "!\u2019"], ["!**", "]**", " **\u00ab", "\u2019**", "])**", ">**", " **\u201c", "  \n\n"], ["!**", "]**", " **\u00ab", ">**", "])**", "\u2019**", "\uff01**", " **\u201c"], ["\u2019**", "]**", ">**", " )**", " **\u00ab", " **\u201c", "!**", " **\u2014"], ["]**", "\u2019**", ">**", " **\u00ab", " **\u201c", " )**", "!**", " **\""], [" **\u00ab", ">**", " **\u201c", "]**", " **\"", "\u2019**", "!**", " **\u300c"], [" **\u00ab", " **\u300c", " **\u201c", " **\"", ">**", "\u2019**", "!**", "]**"], [">**", "]**", "\u2019**", "!**", "\u706b\u82b1", ")**", "\u521b\u4f5c\u8005", "\uff1a**"], ["]**", ">**", "\u2019**", ")**", "!**", "\u3002**", "\uff1a**", " **\u00ab"], ["\u2019**", ">**", "]**", ")**", "!**", " **\u3010", "])**", "\uff1a**"], [" **\u3010", ">**", "!**", "]**", "\u89e3\u7b54", "\u3002**", "\u2019**", ")**"], [" **\u3010", "\u5206\u6790", "!**", "]**", "\u3002**", ">**", " **\u00ab", "\u601d\u8003"], [" **\u3010", "\u601d\u8003", ">**", "\u5206\u6790", " **\u00ab", " **\"", "\u3002**", " **\u300c"], ["Here", " **\u3010", "Thinking", ">**", "\u2019**", " **\"", "\u8fd9\u91cc\u662f", "\u8fd9\u91cc"], ["Here", " Here", "here", "\u8fd9\u91cc", " here", "\u8fd9\u91cc\u662f", " HERE", "\u5728\u8fd9\u91cc"], ["Here", " here", "here", "\u8fd9\u91cc", " Here", "\u8fd9\u91cc\u662f", " HERE", "_HERE"], ["Here", "\u8fd9\u91cc", " Here", "here", "HERE", "\u8fd9\u91cc\u662f", " HERE", " here"], ["Here", "\u8fd9\u91cc", " Here", "Chat", "\n\n", "\u804a", "\u6a21\u578b", "here"], ["Here", "\n\n", " Here", "\u8fd9\u91cc", "HERE", "\u8fd9\u91cc\u662f", "\u804a", "here"], ["\n\n", "Here", " Here", "\u8fd9\u91cc", " here", "_HERE", "HERE", "here"], ["\n\n", "Here", " \n\n", " Here", "\n\n\n\n", "_HERE", "Okay", "uha"], ["\n\n", " \n\n", "Here", "  \n\n", "\r\n\r\n", " Here", "CHAT", "\t\n\n"], ["\n\n", "\n", " Here", "<|im_start|>", "Here", " \n\n", "linky", " Chat"]], "p": [[0.0528, 0.0249, 0.0171, 0.0151, 0.0118, 0.0104, 0.0092, 0.0086], [0.267, 0.056, 0.0361, 0.0219, 0.0193, 0.011, 0.0097, 0.0091], [0.617, 0.0574, 0.0447, 0.0271, 0.0255, 0.006, 0.0047, 0.0044], [0.6039, 0.0768, 0.0363, 0.0194, 0.0142, 0.0098, 0.0063, 0.0046], [0.64, 0.1834, 0.0319, 0.0151, 0.0071, 0.0052, 0.0036, 0.0026], [0.7283, 0.2364, 0.0076, 0.0049, 0.002, 0.0008, 0.0008, 0.0006], [0.8409, 0.129, 0.0039, 0.0028, 0.0027, 0.0025, 0.001, 0.0005], [0.7829, 0.1979, 0.0027, 0.0014, 0.0013, 0.0008, 0.0008, 0.0006], [0.7991, 0.1081, 0.0146, 0.0083, 0.0057, 0.0048, 0.0042, 0.0039], [0.6212, 0.1386, 0.0373, 0.0256, 0.0241, 0.0188, 0.0083, 0.0061], [0.7558, 0.1159, 0.0243, 0.0228, 0.013, 0.0084, 0.0048, 0.0037], [0.6102, 0.3266, 0.0442, 0.0039, 0.0016, 0.0014, 0.0008, 0.0006], [0.3509, 0.3097, 0.3097, 0.0073, 0.0032, 0.0017, 0.0014, 0.001], [0.5461, 0.2277, 0.1565, 0.0106, 0.0088, 0.0037, 0.0027, 0.0022], [0.964, 0.0089, 0.0083, 0.0042, 0.0033, 0.0005, 0.0004, 0.0004], [0.8725, 0.036, 0.0233, 0.016, 0.0103, 0.0028, 0.0013, 0.0012], [0.9802, 0.0038, 0.0035, 0.0026, 0.0007, 0.0004, 0.0004, 0.0003], [0.7481, 0.0839, 0.0256, 0.024, 0.0121, 0.0044, 0.0033, 0.0033], [0.9115, 0.0138, 0.0115, 0.0084, 0.0031, 0.0027, 0.0027, 0.0013], [0.9398, 0.0056, 0.0044, 0.0028, 0.0018, 0.0017, 0.0015, 0.0012], [0.6225, 0.2151, 0.0089, 0.0089, 0.0054, 0.0051, 0.0035, 0.0029], [0.8817, 0.0497, 0.0086, 0.0046, 0.0026, 0.0026, 0.0025, 0.0016], [0.6358, 0.1822, 0.0337, 0.0097, 0.0085, 0.0066, 0.0038, 0.0031], [0.5765, 0.0884, 0.0287, 0.027, 0.0077, 0.0077, 0.0073, 0.0044], [0.3099, 0.0736, 0.0211, 0.0175, 0.0128, 0.0094, 0.0094, 0.0083], [0.1804, 0.0295, 0.0148, 0.0131, 0.0131, 0.0108, 0.0054, 0.0045], [0.0196, 0.0111, 0.0046, 0.0046, 0.0041, 0.0036, 0.003, 0.003], [0.8702, 0.0491, 0.008, 0.0055, 0.004, 0.002, 0.0016, 0.0014], [0.8818, 0.0172, 0.0086, 0.0076, 0.0067, 0.0059, 0.0043, 0.003], [0.9158, 0.0115, 0.007, 0.0058, 0.0051, 0.0048, 0.0024, 0.0019], [0.7492, 0.0083, 0.0057, 0.0039, 0.0039, 0.0037, 0.0037, 0.0029], [0.4528, 0.0113, 0.0094, 0.0061, 0.0054, 0.0042, 0.0042, 0.0039], [0.7566, 0.0065, 0.0051, 0.0042, 0.0042, 0.0029, 0.0027, 0.0026], [0.3371, 0.0456, 0.0314, 0.026, 0.0168, 0.0158, 0.0139, 0.0131], [0.0363, 0.0341, 0.0282, 0.0249, 0.022, 0.0194, 0.0182, 0.0161], [0.0822, 0.0681, 0.0468, 0.0413, 0.0365, 0.0343, 0.0322, 0.0251], [0.6597, 0.0478, 0.0272, 0.0187, 0.0155, 0.0129, 0.0121, 0.0107], [0.1372, 0.0474, 0.0393, 0.0369, 0.0306, 0.0186, 0.0174, 0.0154], [0.0143, 0.0143, 0.0143, 0.0104, 0.0098, 0.0076, 0.0063, 0.0063], [0.1351, 0.0529, 0.0321, 0.025, 0.022, 0.0172, 0.0142, 0.0142], [0.3011, 0.0978, 0.0383, 0.016, 0.0132, 0.0103, 0.0103, 0.0059], [0.1114, 0.0362, 0.0219, 0.016, 0.0151, 0.0117, 0.0081, 0.0076], [0.0808, 0.0433, 0.0406, 0.0337, 0.018, 0.0169, 0.0132, 0.0103], [0.0572, 0.0419, 0.0347, 0.0326, 0.0254, 0.0224, 0.021, 0.0154], [0.0604, 0.047, 0.0415, 0.0268, 0.0222, 0.0222, 0.0127, 0.0105], [0.1726, 0.0924, 0.0868, 0.0816, 0.0816, 0.056, 0.041, 0.0282], [0.181, 0.0588, 0.0588, 0.0458, 0.0335, 0.023, 0.0216, 0.014], [0.012, 0.012, 0.0106, 0.0093, 0.0077, 0.0073, 0.0057, 0.0047], [0.0225, 0.0225, 0.0165, 0.0155, 0.012, 0.012, 0.0113, 0.0083], [0.0628, 0.0554, 0.0432, 0.0406, 0.0279, 0.0231, 0.018, 0.0103], [0.3664, 0.0301, 0.0301, 0.0249, 0.022, 0.0182, 0.0151, 0.0133], [0.146, 0.0445, 0.0393, 0.0347, 0.0254, 0.0238, 0.0186, 0.0186], [0.1756, 0.0444, 0.0346, 0.0253, 0.0238, 0.0238, 0.0197, 0.0174], [0.3485, 0.0252, 0.0127, 0.0105, 0.0105, 0.0093, 0.0077, 0.0077], [0.8633, 0.0487, 0.0335, 0.0261, 0.0179, 0.0051, 0.001, 0.001], [0.5912, 0.1027, 0.1027, 0.0907, 0.0623, 0.0158, 0.0108, 0.0074], [0.7737, 0.0815, 0.0495, 0.0234, 0.0125, 0.0125, 0.011, 0.0097], [0.607, 0.0822, 0.053, 0.0284, 0.0267, 0.0235, 0.0143, 0.0134], [0.635, 0.0859, 0.0758, 0.0316, 0.0091, 0.0085, 0.0058, 0.0052], [0.6681, 0.1914, 0.0515, 0.0065, 0.0065, 0.0037, 0.0035, 0.0024], [0.9982, 0.0004, 0.0003, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.965, 0.0048, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001]], "ranks": {"Kotlin": [8961, 9120, 1759, 3092, 3839, 5127, 3673, 7331, 9170, 9025, 8340, 2524, 2316, 3116, 9851, 5658, 10450, 14296, 20613, 38920, 58083, 7573, 10369, 42629, 27355, 24917, 28680, 42962, 24971, 10920, 30610, 29872, 20790, 5082, 3118, 1191, 2704, 2563, 6797, 9718, 45221, 92307, 81905, 67689, 75770, 69315, 118268, 83810, 73634, 78830, 61065, 60786, 99478, 53485, 100609, 75530, 76425, 89806, 79979, 73902, 104056, 135686, 51222]}}, {"pos": 369, "top": [["  \n\n", " \u200b\u200b", " \n\n", ".", "\u00a0\u00a0", "  ", "   \n", "\u00a0"], ["\uff1a**", "\uff1f**", " \u062f\u0645\u0634", " **:**", " **:", " **'", "**\u3002", " Blowjob"], ["**\u3002", "\u7684", "\uff1f**", " **\u3010", "\u3002", "\u3002**", "\uff1a**", "\u548c"], [" **\u3010", "\uff1f**", " **\u25cb", "**\u3002", "\uff1a**", "\u7684", " **\u201c", "\uff3f\uff3f"], [" \n\n\n\n", " \n\n", " **\u3010", "  \n\n", "**\u3002", " **\u201c", "\uff1f**", "\uff1a**"], [" **\u3010", " \n\n\n\n", " **\u201c", " \n\n", "**\u3002", "\uff1f**", "  \n\n", " **\u25cb"], [" \n\n", " **\u3010", "  \n\n", " \n\n\n\n", "**\u3002", "\uff1f**", " **\u201c", "\n\n"], [" \n\n", "  \n\n", " **\u3010", " \n\n\n\n", "     \n\n", "      \n\n", "   \n\n", "\n\n"], [" \n\n", "  \n\n", "\n\n", "   \n\n", "     \n\n", " \n\n\n\n", "    \n\n", "      \n\n"], ["  \n\n", " \n\n", " \n\n\n\n", "   \n\n", "\n\n", "     \n\n", "      \n\n", "    \n\n"], [" \n\n", "  \n\n", "\n\n", " \n\n\n\n", "\n\n\n\n", " \n\n\n", "   \n\n", "\r\n\r\n"], ["  \n\n", " **\u3010", " \n\n", " \n\n\n\n", "   \n\n", "**\u3002", "\uff1f**", "     \n\n"], ["  \n\n", " **\u3010", " \n\n", " \n\n\n\n", "**\u3002", "   \n\n", "\u548c", "\u7684"], [" **\u3010", "  \n\n", "**\u3002", " \n\n", "\u7684", "\uff1f**", " \n\n\n\n", "\u548c"], ["  \n\n", " \n\n", "   \n\n", " **\u3010", " \n\n\n\n", "**\u3002", "     \n\n", "\u7684"], ["  \n\n", " \n\n", " **\u3010", "   \n\n", " \n\n\n\n", "**\u3002", "\uff1f**", "     \n\n"], ["  \n\n", " \n\n", "   \n\n", " \n\n\n\n", "\n\n\n\n", "  \r\n\r\n", "     \n\n", "\n\n"], ["  \n\n", " \n\n", "   \n\n", " \n\n\n\n", "  \r\n\r\n", "**", "**\u3002", "     \n\n"], ["  \n\n", "**", " **\u3010", "**\u3002", "   \n\n", " \n\n", "\r\n\r\n", " \n\n\n\n"], ["  \n\n", " \n\n", "   \n\n", "\n\n", "\r\n\r\n", " \n\n\n\n", " \r\n\r\n", "  \r\n\r\n"], ["  \n\n", " \n\n", "\n\n", "   \n\n", " \n\n\n", "<|im_end|>", "<|endoftext|>", " \n\n\n\n"], ["  \n\n", " \n\n", "\r\n\r\n", " \n\n\n\n", "   \n\n", " **\u3010", " \r\n\r\n", " \n\n\n"], ["  \n\n", " \n\n", "\n\n", "\r\n\r\n", " \n\n\n", "\n\n\n\n", "<|im_end|>", "   \n\n"], ["  \n\n", " \n\n", "\r\n\r\n", "\n\n", " \r\n\r\n", " \n\n\n", "   \n\n", " \n\n\n\n"], ["  \n\n", " \n\n", "\n\n", "   \n\n", "\r\n\r\n", " \r\n\r\n", "\n\n\n\n", " \n\n\n"], [" \n\n", "  \n\n", "\n\n", " \n\n\n\n", "   \n\n", " \n\n\n", " \r\n\r\n", "\r\n\r\n"], [" \n\n", "  \n\n", " \n\n\n\n", " \r\n\r\n", " \n\n\n", "\r\n\r\n", "   \n\n", "  \r\n\r\n"], [" \n\n", "  \n\n", " \r\n\r\n", "\r\n\r\n", " \n\n\n\n", "<|im_end|>", "\n\n", " \n\n\n"], ["  \n\n", " \n\n", " \r\n\r\n", " \n\n\n\n", "   \n\n", "  \r\n\r\n", " \n\n\n", "\r\n\r\n"], ["  \n\n", " \n\n\n\n", " \n\n", " \r\n\r\n", "  \r\n\r\n", "\ufffd", " \n\n\n", "   \n\n"], ["  \n\n", "\ufffd", "  \r\n\r\n", " \n\n\n\n", " \r\n\r\n", "  \n  \n", "   \n\n", "?**"], ["\ufffd", "  \n\n", " \r\n\r\n", "  \r\n\r\n", " \n\n\n\n", "<|im_end|>", "**\u201d", "]**"], ["  \n\n", " \r\n\r\n", "  \r\n\r\n", " \n\n\n\n", " \n\n", "   \n\n", "  \n  \n", "\r\n\r\n"], ["  \r\n\r\n", "  \n\n", " \r\n\r\n", "\uff1f**", "]**", "\r\n\r\n\r\n", " \n\n\n\n", "\r\n\r\n\r\n\r\n"], ["  \n\n", "  \r\n\r\n", " \n\n\n\n", " \r\n\r\n", "\r\n\r\n\r\n\r\n", "\r\n\r\n\r\n", "   \n\n", "\uff1f**"], ["  \n\n", " \n\n\n\n", "  \r\n\r\n", "   \n\n", "\uff1f**", "\uff09**", "  \n\n\n", "]**"], ["  \n\n", "\uff1f**", "\uff09**", "!**", "]**", ">**", " \n\n\n\n", "**\u3002"], ["!**", "]**", ">**", "\uff1f**", "\uff09**", "\uff01**", "  \n\n", "**!"], ["!**", "]**", "\uff1f**", ">**", "\uff01**", "\uff09**", "\u3011**", "**!"], ["!**", ">**", "]**", "\uff1f**", "%**", "\uff01**", "?**", "  \n\n"], ["  \n\n", "!**", "   \n\n", " \n\n\n\n", " \n\n\n", " \n    \n", "  \r\n\r\n", "  \n\n\n"], ["  \n\n", " \n\n\n", " \n\n\n\n", "   \n\n", " \n\n", " \n    \n", "  \n\n\n", " \n\t\n"], [">**", " \n\n\n\n", "!**", " \n\t\n", "]**", "\uff1f**", "\u2019**", "\uff01**"], [">**", "!**", "\uff1f**", "\uff01**", "\uff09**", "]**", " \n\t\n", "\u2019**"], [">**", "!**", "\uff01**", "\u5e4c", "\uff1f**", "<|object_ref_start|>", "]**", "/story"], [">**", "!**", "\uff01**", ")**,", "\uff09**", "\uff1f**", "]**", "\u300d**"], [">**", "\u2019**", "**\u3002", ";**", "!**", "]**", "\u3002**", "\uff01**"], ["**\u3002", "!**", "**\u201d", "\u2019**", "\u3001", "\uff01**", "!\u201d.", ";**"], [" \u0445\u0440\u043e", ";**", "\u591a", "**\u3002", "\u8fde", "\u601d\u8003", "\u7cbe", "\u2019**"], [";**", "\u591a", "Creat", "**\u3002", "\u603b\u7ed3", "\u89e3\u7b54", "\u56de\u7b54", "\u601d\u8003"], ["_growth", "\u91cc\u7ea6", "\u6ca1\u5e2e\u52a9", "_serv", "\u4e13\u5bb6\u6307\u51fa", ".END", "\u53e3\u670d\u6db2", ":description"], ["\u91cc\u7ea6", "_growth", "\u56de\u7b54", "\u53d7\u7406", "_serv", "\u601d\u8003", "prefs", "_constraints"], ["\u601d\u8003", "\u0435\u0442\u043e", "\u65c5", "\u91cc\u7ea6", "\u6dc0", "\u4e09\u4e94", "\u7d2b\u91d1", "\u7ba1\u7406\u89c4\u8303"], ["\u601d\u8003", "prefs", "\u94f8\u5c31", "anko", ";**", "_strike", "\u0448\u0435\u043d\u044c", "NSObject"], ["\u5495", "brio", ".dex", "\u79d1\u5a01", "_vk", "\u94f8\u5c31", "\u524d\u540e\u7684", "\u62f7"], ["\u9a7b\u9a6c", "anke", "unku", "\u79d1\u5a01", "\u79d1", "_mtx", "_GEN", "/bower"], ["</think>", "anke", "\u79d1", "\u9a7b\u9a6c", "_GEN", "\u683c\u91cc", "Accessory", "ACK"], ["</think>", "anke", "Accessory", "\u9a7b\u9a6c", "_GEN", "entro", "\u62f7", ".dex"], ["\u9a7b\u9a6c", "</think>", "Accessory", "anke", "entro", " accesorios", "bery", "\u4e3a\u5b66\u6821"], ["</think>", "bery", "\u9a7b\u9a6c", "\u4e0d\u6cbb", "rung", "Accessory", "unku", "\u62f7"], ["</think>", "\u9a7b\u9a6c", "bery", "unku", "\u6dc0", "\u0435\u0440\u044c", "\u6807\u51c6\u4e3a", "\u03bc\u03b9\u03c3"], ["</think>", "bery", "eral", "\u5171\u5efa", "unku", " \n\n", "\u7c73\u82b1", "\u590d\u5236\u6216"], ["</think>", "agos", "bery", "\u7a0e\u91d1", "\n\n", "eral", "rund", " \n\n"]], "p": [[0.2506, 0.2354, 0.0981, 0.0981, 0.0384, 0.0206, 0.0171, 0.0125], [0.0208, 0.0126, 0.0072, 0.006, 0.006, 0.0041, 0.0036, 0.0034], [0.4027, 0.1902, 0.1307, 0.0375, 0.0213, 0.0188, 0.0156, 0.0138], [0.1427, 0.0193, 0.016, 0.008, 0.0071, 0.0067, 0.0067, 0.0063], [0.3129, 0.1478, 0.1304, 0.0374, 0.0291, 0.0291, 0.0156, 0.0129], [0.2657, 0.104, 0.081, 0.0434, 0.0434, 0.0317, 0.0181, 0.011], [0.3084, 0.2402, 0.1457, 0.0325, 0.0305, 0.0127, 0.0127, 0.0127], [0.5941, 0.2477, 0.0458, 0.0169, 0.0123, 0.008, 0.0075, 0.007], [0.7215, 0.2342, 0.0317, 0.0026, 0.0012, 0.0012, 0.0012, 0.0011], [0.5333, 0.4153, 0.0118, 0.0059, 0.0043, 0.0038, 0.0034, 0.0023], [0.714, 0.2318, 0.0148, 0.0131, 0.004, 0.0029, 0.0029, 0.0024], [0.2949, 0.2445, 0.1309, 0.0481, 0.0166, 0.0156, 0.0114, 0.0101], [0.272, 0.199, 0.1285, 0.0368, 0.0287, 0.0185, 0.0163, 0.0153], [0.1862, 0.175, 0.0471, 0.039, 0.0345, 0.0286, 0.0237, 0.0196], [0.4522, 0.0948, 0.0255, 0.0175, 0.0137, 0.0094, 0.0073, 0.0069], [0.1977, 0.0366, 0.0303, 0.0268, 0.0152, 0.0126, 0.0112, 0.0082], [0.9086, 0.0513, 0.0147, 0.0089, 0.0051, 0.0015, 0.0009, 0.0006], [0.9442, 0.0222, 0.0173, 0.003, 0.0022, 0.0009, 0.0007, 0.0006], [0.5068, 0.0391, 0.0391, 0.0345, 0.0324, 0.0304, 0.0185, 0.0173], [0.8127, 0.1246, 0.0169, 0.007, 0.0055, 0.0048, 0.0048, 0.0035], [0.7566, 0.2168, 0.0157, 0.0051, 0.0019, 0.0005, 0.0005, 0.0005], [0.427, 0.2286, 0.045, 0.0351, 0.0309, 0.0309, 0.0226, 0.0188], [0.4748, 0.3263, 0.0728, 0.0209, 0.0209, 0.0184, 0.0162, 0.0127], [0.5452, 0.2575, 0.0447, 0.0308, 0.0187, 0.0165, 0.0145, 0.0136], [0.4442, 0.346, 0.1634, 0.0134, 0.0072, 0.0038, 0.0034, 0.0034], [0.5849, 0.3131, 0.02, 0.0156, 0.0138, 0.0121, 0.0107, 0.0074], [0.3198, 0.1608, 0.1333, 0.0522, 0.0297, 0.0218, 0.0204, 0.015], [0.5239, 0.3601, 0.023, 0.014, 0.014, 0.014, 0.0123, 0.0109], [0.6308, 0.2321, 0.0356, 0.0179, 0.0131, 0.0123, 0.0102, 0.009], [0.3906, 0.1191, 0.0638, 0.0497, 0.0387, 0.0321, 0.0266, 0.025], [0.0741, 0.0741, 0.0397, 0.0329, 0.0241, 0.0187, 0.0187, 0.0129], [0.0871, 0.0411, 0.032, 0.032, 0.0266, 0.025, 0.0207, 0.0207], [0.3721, 0.078, 0.0536, 0.0346, 0.027, 0.0223, 0.0174, 0.0163], [0.0578, 0.0543, 0.0351, 0.0188, 0.0176, 0.0146, 0.0146, 0.0129], [0.1066, 0.0884, 0.0253, 0.0223, 0.0197, 0.0185, 0.0136, 0.0127], [0.1398, 0.0312, 0.0275, 0.0138, 0.013, 0.0095, 0.0095, 0.0084], [0.0876, 0.0773, 0.0441, 0.0414, 0.0343, 0.0251, 0.0196, 0.0196], [0.1654, 0.0832, 0.0537, 0.0445, 0.0347, 0.0254, 0.0224, 0.0164], [0.047, 0.0196, 0.0173, 0.0143, 0.0126, 0.0098, 0.006, 0.0056], [0.0669, 0.0262, 0.0204, 0.0204, 0.0109, 0.0103, 0.0071, 0.0066], [0.15, 0.043, 0.0335, 0.0245, 0.023, 0.0216, 0.0191, 0.0131], [0.2245, 0.1643, 0.0568, 0.0442, 0.039, 0.0323, 0.0323, 0.0209], [0.0472, 0.0237, 0.021, 0.0185, 0.0127, 0.0105, 0.0105, 0.0087], [0.0432, 0.0102, 0.0096, 0.008, 0.0055, 0.0045, 0.004, 0.0035], [0.0452, 0.0177, 0.0079, 0.0031, 0.0026, 0.0023, 0.0023, 0.0015], [0.0269, 0.0087, 0.0068, 0.0027, 0.0025, 0.0023, 0.0018, 0.0017], [0.0861, 0.0382, 0.0263, 0.0247, 0.0132, 0.0132, 0.0132, 0.0109], [0.0098, 0.0076, 0.0071, 0.0063, 0.0043, 0.0034, 0.0034, 0.0033], [0.0026, 0.0016, 0.0015, 0.0014, 0.0013, 0.0013, 0.001, 0.001], [0.0028, 0.0026, 0.0023, 0.002, 0.002, 0.0019, 0.0019, 0.0018], [0.0015, 0.0011, 0.0009, 0.0008, 0.0007, 0.0007, 0.0006, 0.0006], [0.0039, 0.0014, 0.0012, 0.0011, 0.0011, 0.001, 0.0009, 0.0008], [0.0021, 0.0013, 0.001, 0.0009, 0.0009, 0.0008, 0.0008, 0.0008], [0.0017, 0.0015, 0.0012, 0.0012, 0.0012, 0.0011, 0.001, 0.001], [0.0015, 0.0013, 0.0012, 0.0012, 0.0012, 0.001, 0.001, 0.001], [0.0058, 0.0048, 0.0027, 0.0024, 0.0019, 0.0017, 0.0017, 0.0015], [0.0192, 0.0067, 0.0026, 0.0023, 0.0023, 0.0022, 0.002, 0.0018], [0.026, 0.0102, 0.007, 0.0055, 0.0048, 0.0023, 0.0023, 0.0018], [0.0235, 0.0143, 0.0104, 0.0049, 0.0036, 0.0026, 0.0025, 0.0025], [0.0387, 0.0072, 0.0052, 0.0032, 0.0026, 0.0026, 0.0025, 0.0022], [0.0203, 0.0096, 0.0066, 0.0042, 0.0042, 0.004, 0.0035, 0.0031], [0.0885, 0.0077, 0.0037, 0.0027, 0.0026, 0.0024, 0.002, 0.0018], [0.9218, 0.0017, 0.0011, 0.0004, 0.0004, 0.0004, 0.0004, 0.0003]], "ranks": {"Kotlin": [228234, 164114, 19998, 21332, 36233, 34294, 19447, 21169, 16587, 8761, 7610, 3422, 2025, 2471, 6523, 8775, 20858, 25294, 13614, 39545, 41467, 8694, 11894, 40179, 72488, 42438, 4312, 16867, 38418, 24157, 9205, 10973, 40281, 9965, 5980, 1108, 801, 285, 264, 115, 269, 849, 269, 734, 671, 2592, 4288, 3159, 12318, 27675, 60607, 33842, 12836, 44139, 33696, 6863, 3135, 3253, 6277, 5703, 7376, 37654, 4488]}}, {"pos": 370, "top": [[" #####", "#####", "**\u2013", "\u0629", "<br", "\"\"\"", "es", "\u5728"], ["\uff5e\uff5e", " **\u3010", "\uff1f**", "**\u2013", " \u2013**", "\uff1d\uff1d\uff1d\uff1d", "__)", " \\<"], [" **\u3010", "\uff1f**", "**\u3002", "__)", "**\u2013", ")__", ":__", "\u3002**"], [" **\u3010", " /**<", " **\u300c", "__)", " **>>", "':''", "\uff1f**", "\u300d**"], [" **\u3010", " /**<", "__)", " \\<", " (__", " **#", ">**", " **)"], [" **\u3010", " /**<", " **#", " **)", " **\u300c", ">**", " **\u00ab", "__)"], [" **\u3010", " /**<", " ____", " (__", " **\u300c", "__)", " **#", "____"], [" **\u3010", " ____", " (__", " /**<", " **#", " \\<", " **\u300c", "__)"], [" **\u3010", "\n\n", " ____", " \n\n", "  \n\n", "   \n\n", "\r\n\r\n", "    \n\n"], [" **\u3010", " ____", " **#", " \\<", "____", " (__", " /**<", "<br"], ["\n\n", " **\u3010", " \n\n", "  \n\n", " ____", "____", "\r\n\r\n", " ___"], [" **\u3010", " **#", " ____", " ___", " **\u300c", " /**<", " (__", " **\u00ab"], [" **\u3010", " ____", " ___", " (__", " **#", " __", " **\u300c", "____"], [" **\u3010", " (__", " ____", " ___", "\n\n", "  \n\n", " **#", "____"], ["\n\n", " **\u3010", " ___", "___", "  \n\n", "\r\n\r\n", " ____", " (__"], [" **\u3010", "\n\n", " ___", " ____", " **#", "\r\n\r\n", "___", " __"], [" **\u3010", " **#", "\ufe0f", "**", "\r\n\r\n", "(**", ">**", ":__"], [" **\u3010", " **#", "**", "(**", " (**", ">**", "\ufe0f", "  \n\n"], [" **\u3010", " **#", "\r\n\r\n", "...\\", "...**", "**", "\u2026**", ":__"], ["\n\n", "\r\n\r\n", " **\u3010", "  \n\n", "...\\", " \r\n\r\n", " **[", "<|im_end|>"], ["\n\n", "  \n\n", "<|endoftext|>", " \n\n", "\r\n\r\n", " \r\n\r\n", "<|im_end|>", "e"], [" **\u3010", "\r\n\r\n", " **#", " **[", "\n\n", " **", "\ufe0f", " \\<"], ["\n\n", "\r\n\r\n", " **\u3010", " \r\n\r\n", " **[", " ___", " **#", " **"], ["\r\n\r\n", "\n\n", " \r\n\r\n", "  \n\n", " \n\n", " **\u3010", " **[", " \\<"], ["  \n\n", "\n\n", " \n\n", "\r\n\r\n", " \r\n\r\n", "   \n\n", "<|endoftext|>", "  \r\n\r\n"], ["  \n\n", " \n\n", "\n\n", "\r\n\r\n", " **[", " \r\n\r\n", " **", " ___"], ["\n\n", "\r\n\r\n", " **[", " **", " \n\n", "  \n\n", " \r\n\r\n", " ___"], ["\n\n", "  \n\n", " \n\n", "\r\n\r\n", " \r\n\r\n", "\u2011", " **", " **["], ["\n\n", "  \n\n", " \n\n", "\u2011", "\r\n\r\n", " \r\n\r\n", "<|endoftext|>", " **["], ["\u2011", "  \n\n", " \n\n", " **", "\n\n", " **[", "\r\n\r\n", " \r\n\r\n"], [" **", "\u2011", " **[", "  \n\n", " \n\n", " **#", " ________", " \\<"], ["\u2011", "\ufffd", " **[", "  \n\n", " **", "<|endoftext|>", " [[", "[^"], ["\u2011", "\ufffd", "  \n\n", " **[", "\u200c", " **", "[^", ":\\"], ["\u2011", " **[", " **", " **\u201c", "\ufffd", " **\u2013", "**\u2014", "\u200c"], [" **[", "\u2011", " **\u201c", " **", "  \n\n", "**\u2014", "\ufffd", " **#"], ["\u2011", " **[", " **", " **\u201c", "  \n\n", "**\u2014", "\ufffd", " **\u20ac"], [" **", " **[", "  \n\n", "\u2011", " **\u201c", "**", "**\u2014", " **#"], [" **", " **[", "\u2011", " **\u2014", " **\u20ac", " **+", "**", " **\u201c"], ["\u2011", " **[", " **", "\ufffd", "**\u2014", " **\u2014", " **\u20ac", " *["], ["\u2011", " **[", "\ufffd", " **", "**\u2014", " **\u2014", "\u200c", "\uff09**"], ["\u2011", "**\u2014", "\ufffd", " **\u2014", " **[", " **", " **\u201c", "  \n\n"], [" **\u2014", "**\u2014", "\u2011", " **", " **\u201c", " **[", "\u2019**", "\u2014not"], [" **\u2014", " **\u201c", "\u2019**", "**\u2014", "\uff1f**", " **", "\uff09**", "]**"], [" **", " **\u2014", " **\u201c", "\u2019**", "\uff1f**", "\uff09**", " **[", "**\u2014"], [" **", " **\u201c", " **\u2014", "\u2019**", " **[", " **+", " **\u20ac", "]**"], [" **\u201c", " **", "\u2019**", " **\u20ac", " **\u2014", " **\u2018", " **+", "]**"], [" **\u201c", "\u2019**", " **", " **\u2014", " **\u20ac", "\uff09**", " **\u2018", " **+"], [" **\u201c", "**", " **", "\u2019**", "\uff09**", "\uff1a**", "\u201d**", " **\u2018"], [" **\u201c", "\uff09**", " **", "**", "\u201d**", "\u2019**", "\uff1a**", "]**"], ["\u2019**", "\uff09**", " **\u201c", "**", "\u201d**", "]**", " **", ")**"], ["**", "\uff09**", " **\u201c", "\u2019**", ")**", " **", "**)", "\u201d**"], ["**", " **\u201c", " **", "\u2019**", "\uff09**", " **\"", "\u201d**", ")**"], ["**", " **", "\u2019**", " **\u201c", " **\"", ">**", "\u201d**", "\uff09**"], ["**", "\u2019**", "\u201d**", "\"**", " **\u201c", " **\"", "\uff09**", ")**"], ["**", "\u2019**", "\u201d**", "\"**", "think", ";**", "Both", ")**"], ["**", "\"**", "\u201d**", "\uff09**", "\u2019**", ")**", "think", "This"], ["This", "It", "Let", "\n\n", "**", "Based", "Q", "think"], ["Based", "This", "Let", "It", " Based", "\n\n", "**", "think"], ["Based", "Let", "This", "\n\n", " Based", "It", "**", "The"], ["\n\n", "Let", "Based", "This", " Based", "It", "**", "TL"], ["\n\n", "This", "Let", "The", "Based", "9", "It", " Based"], ["\n\n", "9", "This", "8", "The", " This", "Let", "7"], ["8", "3", "9", "7", "2", "5", "4", "6"]], "p": [[0.0405, 0.0278, 0.0261, 0.0204, 0.018, 0.0169, 0.0131, 0.0102], [0.0902, 0.0747, 0.0547, 0.04, 0.0312, 0.0243, 0.0178, 0.0167], [0.5274, 0.1334, 0.028, 0.0263, 0.018, 0.0159, 0.0109, 0.0097], [0.4183, 0.0877, 0.0683, 0.0173, 0.0126, 0.0119, 0.0111, 0.0111], [0.7349, 0.047, 0.0135, 0.0135, 0.0126, 0.0119, 0.0093, 0.0068], [0.917, 0.0102, 0.0079, 0.0045, 0.0042, 0.0035, 0.0033, 0.0033], [0.9085, 0.0147, 0.0095, 0.0069, 0.0037, 0.0033, 0.0024, 0.0018], [0.916, 0.0115, 0.007, 0.0058, 0.0045, 0.004, 0.0029, 0.0021], [0.4587, 0.116, 0.0797, 0.0797, 0.0703, 0.0427, 0.0139, 0.0139], [0.6288, 0.0455, 0.0378, 0.0294, 0.0202, 0.013, 0.0108, 0.009], [0.41, 0.1937, 0.0713, 0.0713, 0.0381, 0.0132, 0.0109, 0.0103], [0.9133, 0.0148, 0.0115, 0.0084, 0.0054, 0.0045, 0.0029, 0.0024], [0.7868, 0.0269, 0.0197, 0.0163, 0.0153, 0.0099, 0.0072, 0.0056], [0.6628, 0.0166, 0.0138, 0.0138, 0.0129, 0.0107, 0.0107, 0.0101], [0.4009, 0.1671, 0.045, 0.029, 0.0256, 0.02, 0.0165, 0.0165], [0.3978, 0.0783, 0.0649, 0.0288, 0.0254, 0.0224, 0.0211, 0.0175], [0.3518, 0.0651, 0.042, 0.0371, 0.0255, 0.0211, 0.0145, 0.01], [0.6726, 0.0458, 0.0356, 0.0191, 0.008, 0.0075, 0.0075, 0.0075], [0.7099, 0.0275, 0.0228, 0.0122, 0.0108, 0.0079, 0.0065, 0.0058], [0.258, 0.1565, 0.1011, 0.0949, 0.0396, 0.024, 0.0176, 0.0146], [0.8749, 0.0436, 0.0339, 0.0182, 0.0103, 0.002, 0.0014, 0.0012], [0.4656, 0.0861, 0.0461, 0.0461, 0.0205, 0.0159, 0.0117, 0.0097], [0.2926, 0.2582, 0.1566, 0.0256, 0.0199, 0.0199, 0.0187, 0.0165], [0.4283, 0.1786, 0.0956, 0.0374, 0.0242, 0.0242, 0.02, 0.02], [0.5451, 0.177, 0.1378, 0.0575, 0.0348, 0.0083, 0.0053, 0.0032], [0.4029, 0.1482, 0.1482, 0.0899, 0.0618, 0.0545, 0.0166, 0.0095], [0.2184, 0.1325, 0.1325, 0.0855, 0.0626, 0.0552, 0.0519, 0.0458], [0.5803, 0.1663, 0.1467, 0.042, 0.0225, 0.0069, 0.0057, 0.005], [0.4484, 0.3082, 0.1285, 0.0473, 0.0325, 0.0105, 0.0056, 0.003], [0.6896, 0.1358, 0.0727, 0.0208, 0.0184, 0.0184, 0.006, 0.0053], [0.6892, 0.2237, 0.0441, 0.0056, 0.0032, 0.0022, 0.0021, 0.0019], [0.7154, 0.091, 0.0179, 0.0158, 0.009, 0.007, 0.007, 0.0051], [0.7922, 0.0506, 0.0371, 0.0255, 0.0083, 0.0078, 0.0069, 0.0039], [0.6984, 0.1214, 0.037, 0.0239, 0.0106, 0.01, 0.0068, 0.0064], [0.2683, 0.2683, 0.1051, 0.0722, 0.0194, 0.0151, 0.0142, 0.0076], [0.4095, 0.2815, 0.1035, 0.0669, 0.018, 0.0116, 0.008, 0.0055], [0.4424, 0.3904, 0.0411, 0.0363, 0.0172, 0.0059, 0.0046, 0.0041], [0.7693, 0.1717, 0.0075, 0.0067, 0.0059, 0.0059, 0.0043, 0.004], [0.5873, 0.1485, 0.0795, 0.0513, 0.0114, 0.0095, 0.0069, 0.0069], [0.5883, 0.1158, 0.062, 0.0312, 0.0201, 0.0122, 0.0079, 0.007], [0.4137, 0.0867, 0.0494, 0.0436, 0.041, 0.0319, 0.0182, 0.016], [0.1729, 0.1433, 0.0817, 0.0386, 0.0362, 0.0182, 0.0182, 0.0125], [0.2762, 0.1305, 0.0842, 0.0791, 0.033, 0.031, 0.02, 0.0188], [0.2284, 0.2016, 0.1779, 0.0615, 0.0373, 0.035, 0.0309, 0.029], [0.3076, 0.255, 0.0645, 0.0502, 0.0367, 0.0252, 0.0185, 0.0163], [0.2522, 0.2522, 0.0769, 0.0412, 0.022, 0.0194, 0.0194, 0.0194], [0.3268, 0.0685, 0.0605, 0.0252, 0.0209, 0.0184, 0.0127, 0.0112], [0.4543, 0.1223, 0.1223, 0.045, 0.0329, 0.0256, 0.0155, 0.0121], [0.1812, 0.1411, 0.1099, 0.0553, 0.0357, 0.0315, 0.0131, 0.0131], [0.1814, 0.1504, 0.1504, 0.0971, 0.0488, 0.0405, 0.0336, 0.0315], [0.3563, 0.0959, 0.0747, 0.0582, 0.0331, 0.0331, 0.0275, 0.0201], [0.2817, 0.2336, 0.0974, 0.0629, 0.0432, 0.0381, 0.0169, 0.014], [0.5323, 0.1346, 0.0495, 0.0495, 0.0386, 0.0234, 0.022, 0.0206], [0.2379, 0.0992, 0.064, 0.0565, 0.0365, 0.0267, 0.0208, 0.0183], [0.1216, 0.0271, 0.0145, 0.0094, 0.0088, 0.0078, 0.0069, 0.0064], [0.2097, 0.0195, 0.0183, 0.0183, 0.0134, 0.0118, 0.0098, 0.0059], [0.0206, 0.0206, 0.0182, 0.0171, 0.0133, 0.0091, 0.0071, 0.0067], [0.0671, 0.0359, 0.0263, 0.0247, 0.0232, 0.015, 0.0124, 0.011], [0.0935, 0.0415, 0.0344, 0.0304, 0.0285, 0.0252, 0.0112, 0.0105], [0.0668, 0.0459, 0.0431, 0.0296, 0.0278, 0.0246, 0.0231, 0.0191], [0.39, 0.032, 0.0301, 0.0194, 0.0171, 0.0133, 0.0118, 0.0104], [0.7446, 0.0145, 0.0069, 0.0064, 0.0053, 0.005, 0.0037, 0.0037], [0.2366, 0.2366, 0.1842, 0.0768, 0.0598, 0.0466, 0.0411, 0.0411]], "ranks": {"Kotlin": [15424, 16857, 2991, 3715, 3181, 3639, 4058, 7232, 7943, 6485, 5228, 1983, 2229, 1905, 4026, 2321, 3978, 5067, 8098, 14713, 22450, 5335, 11167, 43540, 93382, 38279, 20604, 57752, 28474, 21681, 9695, 69376, 46450, 6149, 6022, 1464, 1279, 1858, 1238, 1192, 987, 6005, 1391, 1685, 2933, 6363, 7624, 3017, 3643, 14654, 31403, 51528, 89846, 166156, 201096, 215430, 211440, 204922, 204265, 202685, 168658, 100859, 46157]}}, {"pos": 371, "top": [[".", "\u00a0\u00a0", " \u200b\u200b", "\u00a0", ",", "  \n\n", " \u2013", ";"], ["  \n\n", "  \r\n\r\n", "laves", "  \r\n", "  \n  \n", "\u7ef4\u4e5f\u7eb3", "   \n\n", " \n  \n"], ["\u2026**", "\u3002", "**\u3002", "\uff1f**", "**?", "[__", "**!", "**."], [" Blowjob", " **\u3010", "\uff1f**", " milfs", " **\u25cb", " cumshot", " **:**", " Shemale"], [" **\u201c", "  \n\n", " \n\n\n\n", "\uff1a**", "\uff1f**", " **\u3010", "**\u3002", " **+"], [" **\u201c", "  \n\n", "\uff1f**", " \n\n\n\n", " **\u3010", "**\u3002", "\uff1a**", " **+"], ["  \n\n", " \n\n", " **\u3010", "**\u3002", "\uff1f**", " **\u201c", " \n\n\n\n", "\u2019**"], ["  \n\n", " \n\n", "   \n\n", "  \r\n\r\n", " \n\n\n\n", "     \n\n", "    \n\n", "       \n\n"], ["  \n\n", " \n\n", "   \n\n", "     \n\n", "    \n\n", "      \n\n", " \n\n\n\n", "  \r\n\r\n"], ["  \n\n", " \n\n", "  \r\n\r\n", " \n\n\n\n", "   \n\n", "  \n  \n", " \r\n\r\n", "     \n\n"], ["  \n\n", " \n\n", " \n\n\n\n", "   \n\n", "  \r\n\r\n", "\n\n\n\n", "<|im_end|>", "\n\n"], [" **\u3010", "  \n\n", " **\u201c", " \n\n", " **", " **'", " **#", " **+"], [" **\u3010", "  \n\n", "**!", "...**", " **", " \n\n", " **'", "\u2026**"], ["  \n\n", " \n\n", "...**", "**!", "\u2026**", " **\u3010", "   \n\n", "**\u3002"], ["  \n\n", " \n\n", "\n\n", "   \n\n", "\r\n\r\n", "...**", "  \r\n\r\n", "      \n\n"], ["  \n\n", " \n\n", " impactful", "**!", " nuanced", " leveraging", "   \n\n", " vibe"], ["  \n\n", " \n\n", " **", "**!", "   \n\n", "\n\n", "<|im_end|>", " impactful"], ["  \n\n", " \n\n", "   \n\n", "\n\n", "<|im_end|>", " **", "**!", "\n\n\n\n"], ["  \n\n", "\n\n", " \n\n", "<|im_end|>", "\n\n\n\n", "   \n\n", "\r\n\r\n", "<|endoftext|>"], ["  \n\n", "\n\n", " \n\n", "<|endoftext|>", "<|im_end|>", "\r\n\r\n", "   \n\n", "\n\n\n\n"], ["\n\n", "  \n\n", " \n\n", "<|endoftext|>", "\r\n\r\n", "   \n\n", "\n\n\n\n", "<|im_end|>"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", "\n\n\n\n", "   \n\n", " \r\n\r\n", " **"], ["\n\n", "  \n\n", " \n\n", "\r\n\r\n", "\n\n\n\n", "<|endoftext|>", "<|im_end|>", "   \n\n"], ["\n\n", "  \n\n", " \n\n", "<|endoftext|>", "\r\n\r\n", "<|im_end|>", "   \n\n", "\n\n\n\n"], ["  \n\n", "\n\n", " \n\n", "<|endoftext|>", "   \n\n", "\r\n\r\n", "<|im_end|>", " \r\n\r\n"], ["  \n\n", "\n\n", " \n\n", "\r\n\r\n", "<|endoftext|>", "   \n\n", "<|im_end|>", " \r\n\r\n"], ["\n\n", " \n\n", "  \n\n", "<|endoftext|>", "\r\n\r\n", " \r\n\r\n", "   \n\n", "\n\n\n\n"], ["\n\n", " \n\n", "  \n\n", "<|endoftext|>", "\r\n\r\n", " \r\n\r\n", "   \n\n", "\n\n\n\n"], ["  \n\n", "\n\n", " \n\n", "<|endoftext|>", "\r\n\r\n", "   \n\n", " \r\n\r\n", "<|im_end|>"], ["  \n\n", "\n\n", " \n\n", "<|endoftext|>", "\r\n\r\n", "<|im_end|>", "   \n\n", " \r\n\r\n"], ["  \n\n", " \n\n", "\n\n", "<|endoftext|>", "\r\n\r\n", "   \n\n", " \r\n\r\n", " **"], ["<|endoftext|>", "  \n\n", " \n\n", "\n\n", "\r\n\r\n", "   \n\n", " \r\n\r\n", "  \r\n\r\n"], ["<|endoftext|>", "  \n\n", " \n\n", "\n\n", "\r\n\r\n", "   \n\n", " \r\n\r\n", " @"], ["  \n\n", " \n\n", "<|endoftext|>", "\n\n", "\r\n\r\n", "  \r\n\r\n", "   \n\n", " \r\n\r\n"], ["  \n\n", " \n\n", "<|endoftext|>", "\r\n\r\n", "\n\n", " **", "  \r\n\r\n", " \r\n\r\n"], ["  \n\n", " \n\n", "\n\n", "<|endoftext|>", "\r\n\r\n", "   \n\n", " **", "  \r\n\r\n"], ["  \n\n", " \n\n", "\n\n", "<|endoftext|>", "   \n\n", "\r\n\r\n", " **", "  \r\n\r\n"], [" **", "  \n\n", " **[", " **\u201c", " \n\n", " **#", "  \r\n\r\n", "   \n\n"], ["  \n\n", " **", " **[", "<|endoftext|>", " **\u201c", " **#", " \n\n", " relentless"], ["  \n\n", " **", "<|endoftext|>", " **[", " **\u201c", " \n\n", " aggressively", " relentless"], ["  \n\n", " **", "<|endoftext|>", " **[", " **\u201c", " aggressively", " relentless", " brutal"], [" **", " aggressively", "  \n\n", " **\u201c", " brutal", " relentless", " **\u2014", " strategically"], [" **", " aggressively", " **\u2014", " **\u201c", " brutal", " stark", " strategically", " strategic"], [" **", " **\u201c", " **\u2014", "  \n\n", " aggressively", " **[", " **#", " stark"], [" **", " **\u201c", " **\u2014", " aggressively", "  \n\n", " **[", " **#", " stark"], [" **", " **\u201c", "  \n\n", " **#", " aggressively", " **'", " **\u2018", " **\u2014"], [" **", " **\u201c", "  \n\n", " **#", " **\"", " **'", " **[", " **\u2014"], [" **", " **\u201c", " **#", " **[", " **\"", " **\u2014", " **'", " **\u2018"], [" **", " **\u201c", " **\"", " **'", " **#", " **[", "**", " **\u2018"], [" **", " **\u201c", " **\"", " **#", "**", " **'", " **[", " **\u3010"], [" **", " **\u201c", "\u2019**", " **\"", "**", " **[", " **#", ";**"], [" **", "**", " **\u201c", "\u2019**", " **[", " **\"", ";**", " **#"], [" **", "**", " **\u201c", "\u2019**", " **\"", " **[", ";**", "-**"], [" **", "**", "\u2019**", " **\u201c", " **\"", " **[", ";**", "-**"], [" **", "**", "\u2019**", " **\u201c", " **\"", ";**", "-**", " **["], [" **", "**", " **\u201c", "\u2019**", " **\"", ">**", "-**", ";**"], [" **", "**", " **\u201c", "\u2019**", " **\"", "**\u201d", ">**", "-**"], [" **", "**", " **\u201c", "\u2019**", " **\"", ">**", "**\u201d", ")**"], [" **", "**", " **\u201c", "\u2019**", " **\"", "**\u201d", ")**", "\u201d**"], [" **", "**", " **\u201c", " **\"", "\u2019**", " Gut", "-**", ")**"], [" **", "**", " **\u201c", " **\"", " Gut", "\u2019**", "**,", " What"], [" **", "**", " **\"", "**,", " **\u201c", "**.", " **'", "\"**"], ["**", " **", "This", "The", "G", "What", "###", "Here"]], "p": [[0.6035, 0.1116, 0.1116, 0.0598, 0.0527, 0.0092, 0.0052, 0.0052], [0.0146, 0.0029, 0.0021, 0.002, 0.0014, 0.0014, 0.0013, 0.0012], [0.5934, 0.1169, 0.1031, 0.0179, 0.0149, 0.0109, 0.0109, 0.0102], [0.031, 0.0291, 0.0291, 0.0257, 0.0166, 0.0147, 0.0121, 0.0095], [0.2435, 0.079, 0.079, 0.0397, 0.031, 0.0257, 0.0213, 0.0188], [0.2512, 0.1115, 0.072, 0.0527, 0.0385, 0.034, 0.0206, 0.0161], [0.7904, 0.107, 0.0186, 0.0128, 0.0093, 0.0093, 0.005, 0.0039], [0.8199, 0.1614, 0.008, 0.0016, 0.0016, 0.0016, 0.0008, 0.0007], [0.7038, 0.2934, 0.002, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001], [0.9273, 0.0407, 0.0075, 0.0067, 0.0059, 0.001, 0.001, 0.0009], [0.8142, 0.1817, 0.0016, 0.0006, 0.0003, 0.0002, 0.0002, 0.0001], [0.2073, 0.1614, 0.0673, 0.0492, 0.0435, 0.0383, 0.036, 0.0233], [0.1281, 0.1281, 0.0534, 0.0391, 0.0367, 0.0324, 0.0304, 0.0304], [0.3712, 0.2252, 0.0828, 0.0391, 0.0391, 0.0185, 0.0105, 0.0105], [0.81, 0.1807, 0.0027, 0.0014, 0.0005, 0.0004, 0.0003, 0.0002], [0.6419, 0.0767, 0.0125, 0.0092, 0.0052, 0.0038, 0.0038, 0.003], [0.6186, 0.2922, 0.0065, 0.0061, 0.0057, 0.0039, 0.0024, 0.0022], [0.903, 0.084, 0.0042, 0.0019, 0.0015, 0.0011, 0.0004, 0.0003], [0.58, 0.3518, 0.054, 0.0073, 0.0015, 0.001, 0.0009, 0.0004], [0.487, 0.3793, 0.1231, 0.0042, 0.002, 0.0018, 0.0008, 0.0006], [0.6789, 0.1945, 0.0919, 0.0338, 0.0003, 0.0002, 0.0001, 0.0001], [0.4683, 0.2506, 0.2212, 0.0233, 0.0036, 0.0017, 0.0016, 0.0016], [0.7206, 0.1608, 0.1105, 0.0043, 0.0012, 0.0006, 0.0005, 0.0004], [0.564, 0.2075, 0.1831, 0.0409, 0.0018, 0.0007, 0.0005, 0.0005], [0.6471, 0.1854, 0.1636, 0.0014, 0.0009, 0.0007, 0.0004, 0.0002], [0.5402, 0.2252, 0.2252, 0.0028, 0.0028, 0.0012, 0.0006, 0.0006], [0.8455, 0.0786, 0.0612, 0.0106, 0.0027, 0.0003, 0.0002, 0.0002], [0.7818, 0.1199, 0.0934, 0.0036, 0.0008, 0.0001, 0.0001, 0.0001], [0.7234, 0.1425, 0.1257, 0.0034, 0.0023, 0.0007, 0.0005, 0.0005], [0.6619, 0.1477, 0.1303, 0.0543, 0.0019, 0.0016, 0.0006, 0.0005], [0.4778, 0.2557, 0.1369, 0.1208, 0.003, 0.0013, 0.0008, 0.0007], [0.7342, 0.1446, 0.0683, 0.0469, 0.0014, 0.0006, 0.0004, 0.0003], [0.4195, 0.3702, 0.0936, 0.0533, 0.0053, 0.0022, 0.0016, 0.0016], [0.8652, 0.0627, 0.0431, 0.0123, 0.0048, 0.0023, 0.0023, 0.002], [0.8673, 0.0432, 0.0231, 0.0159, 0.0096, 0.0075, 0.007, 0.0048], [0.9195, 0.0357, 0.0191, 0.0116, 0.0033, 0.0029, 0.0016, 0.0013], [0.9399, 0.0172, 0.0172, 0.0063, 0.0041, 0.0032, 0.0026, 0.0017], [0.5045, 0.3929, 0.0173, 0.0111, 0.0087, 0.0046, 0.0036, 0.0034], [0.3482, 0.3271, 0.0286, 0.0223, 0.0127, 0.0056, 0.005, 0.0044], [0.409, 0.2057, 0.0757, 0.0315, 0.0124, 0.0066, 0.0048, 0.0045], [0.3412, 0.1108, 0.0408, 0.0263, 0.017, 0.017, 0.015, 0.0132], [0.0755, 0.0488, 0.0458, 0.0158, 0.0158, 0.0158, 0.0149, 0.014], [0.1961, 0.0528, 0.0411, 0.0282, 0.0133, 0.0125, 0.0118, 0.0111], [0.434, 0.0708, 0.0457, 0.0379, 0.0261, 0.0158, 0.0148, 0.0109], [0.6231, 0.0451, 0.0166, 0.0156, 0.0129, 0.0107, 0.0101, 0.0089], [0.6785, 0.0918, 0.0298, 0.0117, 0.0103, 0.0067, 0.0052, 0.0052], [0.9046, 0.051, 0.0188, 0.0061, 0.0035, 0.0021, 0.0019, 0.0015], [0.9033, 0.0741, 0.0042, 0.0042, 0.0037, 0.002, 0.0017, 0.0011], [0.9927, 0.0046, 0.0007, 0.0005, 0.0004, 0.0002, 0.0002, 0.0001], [0.9719, 0.0065, 0.0045, 0.0045, 0.0027, 0.0015, 0.0013, 0.001], [0.9052, 0.0579, 0.0089, 0.0048, 0.0042, 0.0037, 0.0025, 0.002], [0.992, 0.0032, 0.0019, 0.001, 0.0005, 0.0004, 0.0001, 0.0001], [0.9733, 0.0108, 0.0066, 0.0027, 0.0021, 0.0011, 0.0007, 0.0003], [0.9701, 0.0178, 0.0035, 0.0035, 0.0019, 0.0005, 0.0004, 0.0002], [0.9613, 0.02, 0.0057, 0.0057, 0.0035, 0.0004, 0.0004, 0.0004], [0.9551, 0.037, 0.003, 0.0018, 0.0014, 0.0002, 0.0002, 0.0002], [0.8877, 0.0826, 0.0143, 0.0112, 0.0019, 0.0002, 0.0002, 0.0002], [0.881, 0.0929, 0.0142, 0.0076, 0.0022, 0.0002, 0.0002, 0.0001], [0.9464, 0.0416, 0.0082, 0.0018, 0.0013, 0.0001, 0.0001, 0.0001], [0.9129, 0.0849, 0.0009, 0.0004, 0.0003, 0.0001, 0.0, 0.0], [0.8657, 0.1328, 0.0007, 0.0004, 0.0001, 0.0, 0.0, 0.0], [0.5925, 0.4072, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9992, 0.0003, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0]], "ranks": {"Kotlin": [242904, 195402, 131652, 33514, 28946, 48605, 74871, 123319, 106531, 84866, 81123, 22678, 14334, 4619, 75701, 29930, 34242, 87402, 139078, 202032, 224119, 150187, 169809, 211244, 157886, 151202, 168541, 125592, 66435, 93637, 143811, 209747, 202770, 48704, 60992, 57621, 64813, 64622, 71922, 63492, 64970, 79100, 59493, 33795, 58830, 111812, 67245, 90440, 70003, 49557, 71905, 56006, 41683, 32775, 26136, 18464, 7794, 5955, 8068, 5594, 10401, 1817, 3264]}}, {"pos": 372, "top": [["**", "**.", "**\u2013", "-**", " **", "\u2026**", ".", "(**"], [" **", "-**", "'**", "\uff1f**", "(**", "\u2019**", "**", " **'"], ["\u2026**", "\uff1f**", "**", "\u2019**", "'**", " **", "-**", "(**"], ["\uff1f**", " **", " **\u300c", "\u2019**", "'**", "\u300d**", " **\u00ab", " **\u201e"], [" **", "**", "-**", "'**", "\u2019**", "\uff1f**", " **\u201c", "...**"], [" **", "-**", "**", "\u2019**", " **\u201c", "(**", "\uff1f**", "'**"], ["**", " **", "\u2019**", "-**", "'**", "\uff1f**", "\uff09**", "\u201d**"], ["**", " **", "-**", "\u2019**", "'**", "\uff1f**", "...**", "(**"], ["**", " **", "...**", "\u2019**", "'**", "-**", "(**", "\uff1f**"], ["**", "...**", " **", "-**", "'**", "\u2019**", ">**", "\u2026**"], ["**", " **", "...**", "-**", "'**", "\u2019**", "(**", "\"**"], [" **", "**", "...**", "'**", "-**", " **'", "\uff1f**", "\u2019**"], [" **", "**", "...**", "'**", "-**", " **'", "(**", "\u2019**"], ["...**", "**", " **", "'**", "-**", "\uff1f**", "(**", " **'"], ["**", " **", "...**", "'**", "\u2026**", "-**", "(**", "\u2019**"], ["**", " **", "...**", "'**", "-**", "\u2026**", "(**", "!**"], ["**", "...**", " **", "\u2026**", "(**", "'**", "-**", "!**"], ["**", " **", "...**", "  \n\n", "(**", "-**", "\u2026**", "'**"], ["**", "...**", " **", "'**", "-**", " **'", "\u2026**", "\u2019**"], ["**", "...**", "  \n\n", " **", "\u2026**", "'**", " **'", " **["], ["  \n\n", "**", "...**", " \n\n", "\n\n", "<|endoftext|>", " **", "\u2026**"], ["**", "...**", " **", "'**", " **'", "-**", "\u2026**", "\u2019**"], ["**", "...**", "  \n\n", " **", "\n\n", "'**", "\u2026**", " \n\n"], ["  \n\n", "\n\n", " \n\n", "**", "<|endoftext|>", "...**", " **", " **["], ["  \n\n", "\n\n", " \n\n", "   \n\n", "...**", "**", "  \n  \n", "<|endoftext|>"], ["  \n\n", " \n\n", " **", "**", "\n\n", "...**", " **'", "\u2026**"], ["  \n\n", "\n\n", " \n\n", " **", "...**", "**", "\u2026**", " **'"], ["\n\n", "  \n\n", " \n\n", " **", "...**", "**", "\u2026**", "   \n\n"], ["  \n\n", "\n\n", " \n\n", "...**", "**", "\u2026**", " **", "   \n\n"], ["  \n\n", " \n\n", "\n\n", "...**", "\u2026**", "**", " **", "   \n\n"], ["  \n\n", " \n\n", " **", "\n\n", "...**", "**", "<|endoftext|>", "   \n\n"], ["  \n\n", " \n\n", "\n\n", "<|endoftext|>", "   \n\n", " **", "  \n  \n", "  \n\n\n"], ["  \n\n", " \n\n", "\n\n", " **", "<|endoftext|>", "   \n\n", "  \n  \n", "  \n\n\n"], ["  \n\n", " \n\n", " **", "\n\n", "**", "<|endoftext|>", "...**", "   \n\n"], ["  \n\n", " **", " \n\n", "**", " **[", " **#", "\n\n", " **'"], ["  \n\n", " \n\n", "\n\n", " **", "**", "   \n\n", "\u2026**", "  \n  \n"], ["  \n\n", " \n\n", "\n\n", " **", "   \n\n", "**", "  \n  \n", "**\u2014"], ["  \n\n", " **", " \n\n", "\n\n", "**", "   \n\n", "\u2026**", " **'"], ["  \n\n", " **", " \n\n", "**", "\n\n", "\u2026**", " **'", "...**"], ["  \n\n", " **", "**", " \n\n", "\u2026**", "...**", "\u2019**", " **'"], ["  \n\n", " \n\n", "**", " **", "\u2026**", "?**", "!**", "  \n  \n"], ["  \n\n", " \n\n", "\n\n", " **", "   \n\n", "  \n  \n", "**", "\u2019**"], ["  \n\n", " **", "\u2019**", " \n\n", " **'", "**", "...**", "\u2026**"], ["  \n\n", " **", "**", " \n\n", "  \n  \n", ">**", " **:", "\u2019**"], [" **", "...**", "  \n\n", "**", " **'", "\u2026**", " **[", " **#"], [" **", "  \n\n", " **'", " Immediate", "**", " \n\n", ":**", " Crisis"], [" **", "  \n\n", "**", "\uff1a**", ":**", " **'", " \n\n", "%**"], [" **", "**", "\uff1a**", "  \n\n", " **'", ":**", "'**", "%**"], [" **", "**", "\uff1a**", " **'", "'**", "\u2019**", "%**", "]**"], [" Immediate", " Crisis", " Reality", " Priority", " Scenario", "\uff1a**", ":**", " Overview"], [";**", ">**", "\uff1a**", "%**", "]**", "\u2019**", "?**", "\uff1f**"], [";**", " Immediate", "%**", "?**", "!**", ">**", "\uff1a**", ":**"], [";**", " Biggest", " Reality", "...**", " Immediate", " Prediction", "%**", "\uff1a**"], [" Reality", " Immediate", " Prediction", " Biggest", ";**", ">**", " Who", " Outcome"], [" Reality", " Prediction", ";**", " Immediate", ">**", " Diagnosis", "\uff1a**", " Analysis"], [" what", "what", " What", "\u4ec0\u4e48\u662f", "What", " whats", " WHAT", "\u4ec0\u4e48"], [" what", "what", " What", "\u4ec0\u4e48\u662f", " whats", "What", " g\u00ec", ".what"], [" what", "what", " What", "What", "\u4ec0\u4e48\u662f", " whats", ".what", " WHAT"], [" what", " What", "what", "What", " whats", "\u4ec0\u4e48\u662f", " WHAT", ".what"], [" Gut", " what", " What", "gut", " gut", "what", "What", " Guta"], [" Gut", " what", " What", " gut", "what", "What", "gut", ".what"], [" Gut", " What", " what", "What", "what", "gut", " gut", ".what"], ["G", "What", " What", " Gut", "what", "The", " what", "gut"]], "p": [[0.4587, 0.2167, 0.0427, 0.0312, 0.0312, 0.0228, 0.0228, 0.0178], [0.5076, 0.0999, 0.0882, 0.0687, 0.0535, 0.0535, 0.0368, 0.0105], [0.2789, 0.2172, 0.1317, 0.0905, 0.0799, 0.0705, 0.0485, 0.0202], [0.2965, 0.0962, 0.0849, 0.075, 0.0661, 0.0584, 0.0455, 0.0243], [0.5016, 0.1845, 0.0988, 0.0467, 0.0467, 0.025, 0.0172, 0.0172], [0.5529, 0.2612, 0.066, 0.0312, 0.0189, 0.0167, 0.0147, 0.0048], [0.6568, 0.1661, 0.0539, 0.0327, 0.0198, 0.0154, 0.012, 0.0073], [0.6214, 0.178, 0.0953, 0.0213, 0.0213, 0.01, 0.0069, 0.0069], [0.7002, 0.1074, 0.0651, 0.0271, 0.0187, 0.0187, 0.0078, 0.0069], [0.5855, 0.1153, 0.1153, 0.0617, 0.0481, 0.02, 0.0074, 0.0065], [0.8096, 0.0853, 0.0853, 0.0048, 0.0048, 0.0018, 0.0012, 0.0007], [0.7394, 0.1001, 0.0883, 0.0287, 0.0135, 0.0082, 0.0034, 0.0027], [0.5711, 0.2697, 0.0876, 0.0284, 0.0172, 0.0044, 0.0038, 0.0038], [0.2474, 0.2474, 0.2474, 0.091, 0.0552, 0.0179, 0.014, 0.0123], [0.5115, 0.2416, 0.2132, 0.0136, 0.0064, 0.003, 0.0027, 0.0018], [0.5666, 0.3033, 0.0985, 0.0133, 0.0056, 0.003, 0.002, 0.0016], [0.7451, 0.1295, 0.1143, 0.003, 0.0021, 0.0016, 0.0009, 0.0007], [0.8412, 0.0887, 0.0475, 0.0044, 0.0039, 0.0034, 0.003, 0.0021], [0.7228, 0.1613, 0.0978, 0.0033, 0.003, 0.0026, 0.0018, 0.001], [0.5181, 0.3561, 0.0619, 0.0228, 0.0065, 0.0065, 0.0031, 0.0027], [0.4596, 0.2787, 0.1691, 0.0333, 0.0157, 0.0084, 0.0084, 0.0058], [0.5217, 0.2793, 0.1319, 0.0179, 0.0084, 0.0066, 0.0051, 0.0051], [0.4688, 0.2509, 0.1185, 0.0923, 0.0125, 0.0097, 0.0067, 0.0067], [0.5878, 0.2162, 0.0796, 0.0332, 0.0332, 0.0228, 0.0108, 0.0021], [0.8185, 0.1108, 0.0672, 0.0007, 0.0006, 0.0006, 0.0004, 0.0004], [0.8328, 0.0532, 0.0366, 0.0222, 0.0196, 0.0196, 0.0027, 0.0027], [0.4854, 0.2598, 0.1227, 0.0451, 0.0451, 0.0242, 0.0037, 0.002], [0.6328, 0.2638, 0.097, 0.0029, 0.0018, 0.0006, 0.0002, 0.0002], [0.8098, 0.1096, 0.0665, 0.0079, 0.002, 0.0018, 0.0011, 0.0004], [0.9429, 0.0414, 0.0092, 0.003, 0.001, 0.001, 0.0007, 0.0002], [0.7815, 0.1358, 0.0441, 0.0303, 0.0013, 0.0012, 0.0009, 0.0009], [0.6564, 0.2131, 0.1141, 0.0136, 0.0008, 0.0005, 0.0001, 0.0001], [0.8084, 0.124, 0.0313, 0.019, 0.0079, 0.0015, 0.0007, 0.0003], [0.9082, 0.0399, 0.0399, 0.0069, 0.0007, 0.0006, 0.0006, 0.0005], [0.8006, 0.1786, 0.0114, 0.0022, 0.0011, 0.0007, 0.0006, 0.0005], [0.9674, 0.0228, 0.0051, 0.0027, 0.001, 0.0004, 0.0001, 0.0001], [0.9591, 0.0226, 0.0137, 0.0024, 0.0008, 0.0005, 0.0001, 0.0], [0.9236, 0.0358, 0.0246, 0.004, 0.0038, 0.001, 0.0004, 0.0004], [0.8286, 0.1121, 0.0172, 0.0076, 0.0067, 0.0028, 0.0018, 0.0016], [0.8034, 0.0847, 0.0147, 0.0138, 0.0122, 0.0065, 0.0048, 0.0037], [0.8829, 0.025, 0.0126, 0.0098, 0.0046, 0.0038, 0.003, 0.003], [0.8235, 0.1114, 0.0125, 0.011, 0.0016, 0.0013, 0.0012, 0.0011], [0.3953, 0.3079, 0.0197, 0.0174, 0.0174, 0.0119, 0.0099, 0.0099], [0.609, 0.1745, 0.0208, 0.0119, 0.0112, 0.0112, 0.0098, 0.0082], [0.5893, 0.1315, 0.0583, 0.0332, 0.0243, 0.0202, 0.0095, 0.007], [0.2857, 0.2521, 0.0283, 0.0183, 0.0142, 0.0142, 0.0126, 0.0111], [0.438, 0.3411, 0.0383, 0.0232, 0.017, 0.0124, 0.0103, 0.0091], [0.3721, 0.1758, 0.0941, 0.0733, 0.0346, 0.027, 0.0253, 0.0174], [0.4813, 0.1074, 0.0836, 0.0448, 0.0448, 0.0272, 0.0211, 0.0199], [0.1664, 0.0477, 0.0421, 0.0328, 0.0328, 0.0199, 0.0175, 0.0155], [0.2277, 0.1076, 0.1076, 0.0838, 0.0838, 0.0576, 0.0396, 0.0396], [0.1154, 0.07, 0.058, 0.0424, 0.0375, 0.0331, 0.0311, 0.0292], [0.197, 0.0413, 0.0342, 0.0322, 0.0322, 0.0284, 0.0251, 0.0208], [0.1769, 0.0889, 0.0785, 0.0476, 0.0371, 0.0145, 0.012, 0.0113], [0.1253, 0.1253, 0.0917, 0.0522, 0.0407, 0.0247, 0.0247, 0.0247], [0.6136, 0.2898, 0.083, 0.0028, 0.0025, 0.0025, 0.0013, 0.0009], [0.4125, 0.3212, 0.2208, 0.0076, 0.0076, 0.0076, 0.0046, 0.0028], [0.5166, 0.244, 0.2154, 0.0084, 0.0057, 0.0024, 0.0019, 0.0015], [0.5288, 0.3635, 0.0919, 0.011, 0.0015, 0.0012, 0.0008, 0.0005], [0.7168, 0.2327, 0.0169, 0.0131, 0.0102, 0.009, 0.0006, 0.0001], [0.4933, 0.2992, 0.1815, 0.0102, 0.0055, 0.0048, 0.0043, 0.0004], [0.5283, 0.2496, 0.1336, 0.0232, 0.0232, 0.0205, 0.0181, 0.0005], [0.5389, 0.4197, 0.0268, 0.0053, 0.0018, 0.0012, 0.001, 0.0007]], "ranks": {"Kotlin": [121567, 123001, 23728, 15444, 16644, 29014, 34935, 56308, 45790, 50852, 76240, 27690, 24249, 13539, 124727, 91492, 112829, 141849, 199898, 235391, 231679, 207934, 225695, 237072, 230671, 201665, 186052, 201015, 183453, 161731, 185570, 180179, 180693, 115761, 119961, 100557, 135064, 145250, 135817, 132062, 142204, 124083, 86284, 58815, 83960, 91642, 92520, 52460, 40598, 43621, 84979, 52403, 44161, 36710, 42292, 40218, 34505, 40566, 58374, 39461, 31847, 20865, 21922]}}, {"pos": 373, "top": [[".", " \u2013", ",", "\u00a0", " [\u2026]", "\u2026\u2026", "\u2026..", " "], ["ging", "  \n", " \u2013", " Gore", "gy", " GG", "@g", " VERY"], ["\u2026\u2026", "\u2026..", ".", " \u2013", "\u2013", "\u2026.", "\u2026", "ging"], ["orgeous", " **\u25cb", " Shemale", " Blowjob", "&eacute", " milfs", "TRGL", " Strec"], ["orgeous", "ging", "@g", " Guta", "auge", "&A", "&eacute", "CCCCCC"], ["ging", "orgeous", "auge", " Guta", ".sg", "ourmet", "eneric", "ossip"], ["\uff1f**", " **\u25cb", " **\u201e", " **\u300c", "...**", "\uff1a**", "-**", " **\u3010"], [" **\u201e", "ging", " **\u300c", " **\u25cb", "-**", "...**", "\uff1f**", " **\u3010"], ["...**", " **\u201e", "ging", "gy", "......", "egger", "\u2026**", " ......"], ["ging", "gy", "...**", "gie", "orgeous", "\u2026**", "GING", "ged"], ["...**", "ging", "......", "gy", "&nbsp", "...", "@g", "-&"], ["...**", "ging", " **\u201e", " **\u300c", "gy", "egger", "yscale", "ularity"], ["ging", "...**", "gy", "ularity", "yscale", " **\u201e", " **\u300c", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "ularity", "erness", "...**", " **\u201e", "ging", "yscale", "gy"], ["ging", "ularity", "orgeous", "gy", "...**", "eneric", "gie", "erness"], ["orgeous", "ging", "eneric", " Gabrie", "gy", "ppure", "ularity", "adget"], ["ging", "orgeous", "gy", "eneric", "GING", "ged", "-esque", "ishly"], ["ging", "...**", "\u2026**", "orgeous", "gy", "GING", "GG", "eneric"], ["...**", "\u2026**", "ging", "orgeous", "**", "GG", "**!", "-&"], ["\n\n", "\u8ddf", "-&", "\t\n\n", "though", "@", "  \n\n", "\t\t\n\n"], ["\n\n", " \n\n", "<|endoftext|>", "  \n\n", "\t\n\n", "@", "Though", "   \n\n"], ["orgeous", " \u30b9\u30dd\u30f3\u30b5\u30fc\u30b5\u30a4\u30c8", " **#", " **>>", " **\u2022", "\u611f\u5341\u8db3", " !**", "ergia"], ["\n\n", " \n\n", "\t\n\n", "fully", " --", "\r\n\r\n", "  \n\n", "ily"], ["<|endoftext|>", "\n\n", " \n\n", "  \n\n", " --", "\r\n\r\n", "fully", " \r\n\r\n"], ["\n\n", " \n\n", "  \n\n", " \r\n\r\n", "   \n\n", "\r\n\r\n", "\t\n\n", "    \n\n"], [" \n\n", "...**", "  \n\n", " **", "\n\n", "\u2026**", "   \n\n", " \r\n\r\n"], ["\n\n", " \n\n", "\r\n\r\n", "  \n\n", " \r\n\r\n", "\t\n\n", " **", "...**"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", " \r\n\r\n", "   \n\n", "\t\n\n", " **"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", " \r\n\r\n", "   \n\n", "\t\n\n", "...**"], [" \n\n", "  \n\n", "\n\n", "...**", "   \n\n", " \u2026", " ...", "..."], [" \n\n", "\n\n", "  \n\n", " ...", " \u2026", "...", "\u2026", " [...]"], [" \n\n", "\n\n", "<|endoftext|>", "  \n\n", " \u2026", "\u2026", " ...", "..."], [" @", " **", " arguably", " massively", " potentially", " heavily", " -", " ,"], ["\u2026**", "  \n\n", " **", "...**", " \n\n", "\u2026*", " **\u201c", " \u2026"], [" **", "\u2026**", "?**", "!**", "**", " !**", "...**", "<|endoftext|>"], ["\u2026**", "  \n\n", " **", " \u2026", "\u2026*", "!**", "**", " !**"], [" **", "**", " !**", "?**", "!**", "\u2026**", " massively", "  \n\n"], [" tech", " incredibly", " massively", " !**", " @", " hardware", " workflows", "\ufffd"], [" incredibly", " **", " impossible", " @", " !**", " massively", " tech", " demanding"], [" fast", " rapid", " demanding", " speed", " overclock", " faster", " incredibly", " framerate"], [" fast", " speed", " overclock", " rapid", " faster", " hardware", " demanding", " framerate"], [" overclock", " demanding", " framerate", " hardware", " rapid", " speed", " sprint", "\u8981\u6c42"], [" overclock", " sprint", " achievable", " demanding", "...**", " framerate", " hardware", " performance"], [" achievable", "\u8981\u6c42", " demanding", " requirements", " requirement", " overclock", "\u7684\u8981\u6c42", " achieving"], [" achievable", " demanding", " requirements", " requirement", "\u8981\u6c42", " require", " demands", " requires"], [" demanding", " achievable", " requirement", " requirements", " demands", " sprint", " requires", " mandates"], [" demanding", " Impossible", " demands", " requirement", " achievable", " impossible", "\u8981\u6c42", " requires"], [" Impossible", " demanding", " Achie", " Requirement", " achievable", " impossible", " demands", " mandates"], [" demanding", " Requirement", " Impossible", " Requires", " requirement", " Achie", "\u8981\u6c42\u7684", " Requirements"], [":**", " Impossible", " Requirement", "\uff1a**", "+:", "**", "**:", " Achie"], [":**", "\uff1a**", "**", " Immediate", " Impossible", "+:", "?**", " Targets"], [":**", "\uff1a**", ";**", ":*", "**", ".:**", "!**", "**:"], [":**", "\uff1a**", "**", ";**", ":*", ".:**", "\u2026**", " Reality"], [":**", "\uff1a**", " Reality", "**", ";**", ":*", ".:**", ".**"], [":**", "\uff1a**", ":*", " Reality", ".:**", ";**", " :**", " Analysis"], [":**", "\uff1a**", " Reality", ".:**", ";**", ":*", " Prediction", "what"], [":**", " Reality", "\uff1a**", ";**", ".:**", "**", ".**", " Prediction"], [" Reality", ":**", " Diagnosis", "what", " Prediction", "\uff1a**", " Analysis", " verdict"], [":**", " Reality", "what", " Prediction", " What", " Diagnosis", " what", "What"], [" Gut", " gut", "gut", "\u80a0", " Guti\u00e9rrez", " guts", "ut", " gutter"], [" Gut", " gut", "gut", "\u80a0", " Guti\u00e9rrez", " gutter", " guts", "ut"], [" Gut", " gut", "gut", "ut", "\u80a0", " Guti\u00e9rrez", " guts", "UT"], ["ut", "UT", "utt", "uts", "utter", "utan", "utu", "utting"]], "p": [[0.8099, 0.0518, 0.0158, 0.007, 0.0051, 0.0043, 0.004, 0.004], [0.0405, 0.0096, 0.0075, 0.0058, 0.0058, 0.0052, 0.0048, 0.0045], [0.1984, 0.1645, 0.1281, 0.0998, 0.0534, 0.0324, 0.0286, 0.0237], [0.0166, 0.0057, 0.0047, 0.0037, 0.0035, 0.0033, 0.0031, 0.0027], [0.0965, 0.0456, 0.0215, 0.0148, 0.0131, 0.0123, 0.0108, 0.0029], [0.0244, 0.0215, 0.0123, 0.0115, 0.0035, 0.0035, 0.0035, 0.0033], [0.0687, 0.0391, 0.0305, 0.0253, 0.0237, 0.0197, 0.0185, 0.0174], [0.1317, 0.0167, 0.0167, 0.0157, 0.0108, 0.007, 0.0066, 0.0045], [0.1331, 0.0669, 0.0381, 0.0103, 0.0075, 0.0071, 0.0071, 0.0071], [0.0653, 0.0137, 0.0083, 0.0061, 0.005, 0.0029, 0.0027, 0.0022], [0.2102, 0.1742, 0.0303, 0.0267, 0.0208, 0.0143, 0.0143, 0.0105], [0.0115, 0.0108, 0.0079, 0.007, 0.0058, 0.0054, 0.0051, 0.0045], [0.0153, 0.0127, 0.0064, 0.0064, 0.0064, 0.0056, 0.0056, 0.0041], [0.0082, 0.0056, 0.005, 0.005, 0.0044, 0.0036, 0.003, 0.0027], [0.028, 0.0091, 0.0091, 0.0059, 0.0055, 0.0055, 0.0043, 0.0036], [0.0117, 0.0059, 0.0043, 0.0031, 0.0023, 0.0022, 0.0017, 0.0016], [0.1196, 0.0092, 0.0046, 0.0038, 0.003, 0.0028, 0.0025, 0.0025], [0.0595, 0.0125, 0.0076, 0.0049, 0.004, 0.0025, 0.0025, 0.002], [0.0806, 0.0096, 0.0066, 0.0048, 0.0045, 0.0031, 0.0023, 0.0021], [0.041, 0.0081, 0.0063, 0.0046, 0.0036, 0.0028, 0.0025, 0.0023], [0.3646, 0.0464, 0.0248, 0.0233, 0.011, 0.0049, 0.0043, 0.0034], [0.0037, 0.0025, 0.0022, 0.0018, 0.0016, 0.0015, 0.0012, 0.0011], [0.2196, 0.0075, 0.004, 0.0024, 0.002, 0.002, 0.0019, 0.0016], [0.388, 0.3021, 0.015, 0.0043, 0.0032, 0.0023, 0.0019, 0.0016], [0.7442, 0.1661, 0.0611, 0.0057, 0.005, 0.005, 0.0032, 0.0013], [0.1889, 0.1382, 0.1382, 0.0838, 0.0695, 0.0508, 0.0187, 0.0187], [0.9745, 0.0108, 0.002, 0.0007, 0.0004, 0.0003, 0.0002, 0.0002], [0.962, 0.0329, 0.0039, 0.0004, 0.0002, 0.0001, 0.0, 0.0], [0.7773, 0.1734, 0.0439, 0.0012, 0.001, 0.0009, 0.0002, 0.0002], [0.7208, 0.1608, 0.1105, 0.0018, 0.0012, 0.0008, 0.0006, 0.0005], [0.465, 0.3196, 0.1332, 0.0262, 0.0262, 0.014, 0.0085, 0.0013], [0.3098, 0.2734, 0.1006, 0.1006, 0.0538, 0.0271, 0.0254, 0.012], [0.0519, 0.0488, 0.0296, 0.0191, 0.0179, 0.0169, 0.0169, 0.0169], [0.3471, 0.2105, 0.0994, 0.0415, 0.0268, 0.0251, 0.0184, 0.0135], [0.1767, 0.065, 0.0447, 0.0225, 0.0211, 0.0198, 0.0164, 0.0154], [0.1054, 0.053, 0.053, 0.0322, 0.0208, 0.0152, 0.0152, 0.0143], [0.0991, 0.0388, 0.0183, 0.0172, 0.0126, 0.0111, 0.0111, 0.0092], [0.0149, 0.0149, 0.014, 0.0109, 0.0096, 0.008, 0.0075, 0.0075], [0.0228, 0.0214, 0.0189, 0.0178, 0.0138, 0.0115, 0.0108, 0.0101], [0.0249, 0.0234, 0.0194, 0.0182, 0.0171, 0.0133, 0.0117, 0.011], [0.0455, 0.0377, 0.0354, 0.0333, 0.0259, 0.0202, 0.0178, 0.013], [0.0673, 0.0338, 0.0232, 0.0218, 0.016, 0.0141, 0.011, 0.0103], [0.0561, 0.0282, 0.0249, 0.0194, 0.0161, 0.0118, 0.011, 0.0098], [0.1421, 0.0671, 0.0461, 0.0461, 0.0433, 0.0205, 0.0159, 0.0159], [0.1385, 0.1013, 0.0696, 0.0696, 0.0422, 0.0273, 0.0256, 0.0176], [0.1239, 0.0851, 0.0585, 0.0378, 0.0333, 0.0276, 0.0148, 0.0148], [0.1228, 0.0375, 0.0352, 0.031, 0.0292, 0.0257, 0.0242, 0.02], [0.1384, 0.0741, 0.0226, 0.0199, 0.0187, 0.0176, 0.0146, 0.0137], [0.0406, 0.0406, 0.0381, 0.0204, 0.0132, 0.0124, 0.0124, 0.0124], [0.0549, 0.0377, 0.0148, 0.013, 0.0102, 0.0084, 0.0074, 0.0074], [0.1198, 0.0469, 0.0251, 0.0152, 0.0134, 0.0092, 0.0087, 0.0087], [0.2685, 0.1052, 0.025, 0.022, 0.0172, 0.0151, 0.0142, 0.0134], [0.5009, 0.0678, 0.032, 0.022, 0.0194, 0.0151, 0.0142, 0.0125], [0.4248, 0.054, 0.0395, 0.0349, 0.0308, 0.0212, 0.0165, 0.0128], [0.451, 0.037, 0.0254, 0.0239, 0.0239, 0.0211, 0.0088, 0.0083], [0.3241, 0.0412, 0.0364, 0.0301, 0.0207, 0.0152, 0.0142, 0.0134], [0.3761, 0.035, 0.035, 0.0309, 0.024, 0.0212, 0.0165, 0.0165], [0.2019, 0.1477, 0.031, 0.0291, 0.0227, 0.0213, 0.0213, 0.0176], [0.1572, 0.115, 0.108, 0.0896, 0.0841, 0.0423, 0.0351, 0.0213], [0.5565, 0.2629, 0.1807, 0.0, 0.0, 0.0, 0.0, 0.0], [0.8668, 0.1035, 0.0297, 0.0, 0.0, 0.0, 0.0, 0.0], [0.8517, 0.1306, 0.0177, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9864, 0.011, 0.0006, 0.0005, 0.0004, 0.0002, 0.0001, 0.0001]], "ranks": {"Kotlin": [211177, 212619, 182142, 55522, 77135, 124829, 135222, 185338, 176131, 200905, 208610, 105863, 74469, 56271, 172060, 146262, 179882, 159944, 194455, 214749, 225591, 175566, 224524, 237457, 149506, 47712, 138030, 180542, 170955, 113020, 132463, 142059, 136537, 9642, 24537, 14189, 8769, 9510, 17557, 15492, 14638, 18615, 10004, 21935, 33319, 64362, 49943, 24296, 29244, 27108, 85843, 94300, 87534, 67970, 84440, 24730, 22464, 27433, 25871, 11977, 11349, 8025, 9557]}}, {"pos": 374, "top": [["ting", ".", "\u00a0", ",", "\u200b\u200b", "ted", ";", "\u2013"], ["ting", "\u200b\u200b", " \u200b\u200b", "ted", "ness", "ten", ".", "ru"], ["ting", "\u200b\u200b", "\u2018s", " \u200b\u200b", "\u00a0", ".", "\u2018", "ted"], ["ruk", "ting", "&quot", "inary", "avian", "ulus", "\u2018s", "terior"], ["ting", "\u2018s", "\u2018", "&W", " Aussie", "-&", "ness", "inary"], ["ting", "\u2018s", " Guta", "ridge", " Aussie", "shit", "&W", " \u200b\u200b"], ["ting", "\u2018s", "-&", " Guta", "\u2018", "shit", " Aussie", "&W"], [" Guta", "ting", "ridge", "\u2018s", "&W", "ropolis", "ness", " Aussie"], ["ting", "\u2018s", "ridge", "&W", "ness", "-&", "\u200b\u200b", "ullah"], ["ting", "\u00a0", "\u2018s", "-&", "ness", "&W", "ridge", " guts"], ["ting", "-&", "ness", " guts", "ridge", "\u2018s", " gut", "&W"], ["ting", " veggies", "ridge", "ullah", "ness", " guts", "\u7406\u5de5\u5b66\u9662", "ulus"], ["ting", "ness", " veggies", "ridge", "ullah", "\u7406\u5de5\u5b66\u9662", "ulus", " guts"], ["ting", "ness", " guts", " veggies", "ridge", "stuff", " Aussie", " vibes"], ["ting", "ness", " guts", " Aussie", " kids", " folks", "stuff", " stuff"], [" guts", "ting", " kids", " Aussie", " folks", " gut", " wildly", " savvy"], ["ting", " guts", " folks", " kids", " stuff", "ness", " Aussie", " gut"], ["ting", " \n\n", " vibe", " guts", " Aussie", " stuff", "ness", " kids"], [" \n\n", "ting", " stuff", " vibe", " Aussie", " guts", " smack", " folks"], [" \n\n", "-&", " \u2014\u2014", "\n\n", " folks", " smack", " --", "ting"], [" \n\n", "\n\n", " \n\n\n", "  \n\n", "   \n\n", "<|endoftext|>", "\t\n\n", "<|im_end|>"], [" vibe", " freaking", " itch", " vibes", " \n\n", " whispers", " Aussie", " veggies"], [" \n\n", " vibe", " \n\n\n", "\n\n", " freaking", "   \n\n", " vibes", " itch"], [" \n\n", "\n\n", " \n\n\n", "   \n\n", "  \n\n", " vibe", "<|im_end|>", " --"], [" \n\n", "\n\n", "  \n\n", "   \n\n", "<|im_end|>", " \n\n\n", "\t\n\n", " \r\n\r\n"], [" \n\n", " vibe", " vibes", "   \n\n", "\n\n", "  \n\n", " freaking", "\t\n\n"], [" \n\n", "\n\n", " vibe", "   \n\n", "\t\n\n", " \n\n\n", "  \n\n", " ___"], [" \n\n", "\n\n", "  \n\n", "   \n\n", " \n\n\n", "\t\n\n", " ___", " \r\n\r\n"], [" \n\n", "\n\n", "  \n\n", "   \n\n", " \n\n\n", " vibe", " \n\n\n\n", "\t\n\n"], [" \n\n", "  \n\n", "   \n\n", " \n\n\n", "\n\n", " \n  \n", " \n\n\n\n", "    \n\n"], [" \n\n", "  \n\n", "\n\n", "   \n\n", " \n\n\n", " \n  \n", " \n", "    \n\n"], [" \n\n", "  \n\n", "\n\n", "   \n\n", " \n\n\n", " \n  \n", " \n", " @"], [" \n\n", "  \n\n", "\n\n", "   \n\n", " \n  \n", " \n\n\n", " \n", " @"], [" \n\n", "  \n\n", " wildly", " vibe", " gritty", " tough", "   \n\n", " weird"], [" \n\n", "  \n\n", "   \n\n", " vibe", " wildly", " gritty", " cynical", " tough"], [" \n\n", "  \n\n", "   \n\n", "\n\n", " cynical", " wildly", " \u2014", " vibe"], [" \n\n", "  \n\n", "   \n\n", " cynical", " vibe", " wildly", " gritty", " skepticism"], [" \n\n", " cynical", "  \n\n", " vibe", " wildly", " gritty", " skepticism", "   \n\n"], [" cynical", " skepticism", " vibe", " \n\n", "  \n\n", " wildly", " gritty", " desperation"], [" vibe", " cynical", " skepticism", " instinct", " feeling", " feel", " wildly", " sentiment"], [" cynical", " vibe", " skepticism", " feeling", " feel", " sentiment", " paranoia", " instinct"], [" cynical", " skepticism", " vibe", " sentiment", " mindset", " feeling", " paranoia", " intuition"], [" cynical", " skepticism", " vibe", " mindset", " feeling", " sentiment", " intuition", " feel"], [" cynical", " vibe", " skepticism", " mindset", " feeling", " sentiment", " feel", " instinct"], [" cynical", " vibe", " skepticism", " feeling", " sentiment", " mindset", " feel", " intuition"], [" cynical", " skepticism", " vibe", " intuition", " mindset", " feeling", " sentiment", " instinct"], [" cynical", " vibe", " skepticism", " intuition", ":**", " mindset", " again", "  \n\n"], [" vibe", " again", " cynical", ":", " skepticism", " Again", ":**", " intuition"], [" vibe", " cynical", " skepticism", " reconsider", " Again", " intuition", " vibes", ":"], [" vibe", " **:**", ":**", ":", "__:", " cynical", " **:", " Again"], [":**", " **:**", " **:", "*:", ":*", "\uff1a**", "\u65b0\u4e00\u8f6e", " :**"], [":**", " :**", ":*", "\uff1a**", "*:", " **:**", "**:", "\uff1a\u201c"], [":**", ":*", " :**", "\uff1a**", ":\"", ":</", " :</", "*:"], [":**", ":*", " :**", "\uff1a**", ":</", ":\"", ":\\\"", "*:"], [":**", ":*", " :**", " Reaction", "\uff1a**", ":</", " revised", " Revised"], [" Reaction", " reaction", ":**", "\u53cd\u5e94", ":*", " reactions", " :**", "Reaction"], [" Reaction", ":**", " reaction", " :**", "\u53cd\u5e94", ":*", "\uff1a**", "Reaction"], [" Reaction", ":**", " reaction", "\u53cd\u5e94", " :**", "Reaction", " reactions", ":*"], [" Reaction", ":**", " reaction", " :**", "Reaction", ":*", "\u53cd\u5e94", " Update"], [" Reaction", " reaction", "Reaction", "\u53cd\u5e94", "reaction", "_reaction", " reactions", "\u53cd\u61c9"], [" Reaction", " reaction", "Reaction", "\u53cd\u5e94", "reaction", "_reaction", ":**", " React"], [" Reaction", " reaction", "Reaction", "\u53cd\u5e94", "reaction", " React", "_reaction", " Update"], [" Reaction", " reaction", " Update", " Check", "Reaction", " React", " Response", " Adjustment"]], "p": [[0.425, 0.331, 0.0738, 0.0448, 0.0128, 0.0083, 0.0073, 0.0065], [0.2957, 0.0453, 0.0376, 0.0101, 0.007, 0.0054, 0.0048, 0.0031], [0.1938, 0.1607, 0.0406, 0.0262, 0.0159, 0.0116, 0.0097, 0.0031], [0.0098, 0.0098, 0.0056, 0.0043, 0.0028, 0.0026, 0.0022, 0.0022], [0.1776, 0.1221, 0.0509, 0.0114, 0.0094, 0.0073, 0.0065, 0.0057], [0.0497, 0.0387, 0.0134, 0.0111, 0.0104, 0.0092, 0.0067, 0.0046], [0.0817, 0.0301, 0.0151, 0.0142, 0.0092, 0.0081, 0.0067, 0.0056], [0.031, 0.0257, 0.02, 0.0156, 0.0129, 0.0107, 0.01, 0.0074], [0.0663, 0.0623, 0.0294, 0.0294, 0.0179, 0.0131, 0.0115, 0.0066], [0.0518, 0.0158, 0.014, 0.0123, 0.0123, 0.0096, 0.008, 0.0062], [0.2128, 0.0145, 0.0128, 0.0106, 0.0094, 0.0073, 0.0057, 0.005], [0.0269, 0.0127, 0.0112, 0.0105, 0.0056, 0.005, 0.0044, 0.0044], [0.0298, 0.0132, 0.0097, 0.0067, 0.0055, 0.0046, 0.0043, 0.004], [0.0537, 0.027, 0.0174, 0.0154, 0.0099, 0.0077, 0.0064, 0.005], [0.0873, 0.0342, 0.0342, 0.0172, 0.0118, 0.0098, 0.0092, 0.0076], [0.0533, 0.0237, 0.0209, 0.0163, 0.0163, 0.0144, 0.0068, 0.0064], [0.0508, 0.029, 0.0199, 0.0146, 0.0129, 0.0121, 0.0088, 0.0088], [0.149, 0.0312, 0.0189, 0.0178, 0.0157, 0.0148, 0.0139, 0.0122], [0.0452, 0.0257, 0.0257, 0.0213, 0.0166, 0.0156, 0.0147, 0.0107], [0.5063, 0.0173, 0.0163, 0.0135, 0.0112, 0.0105, 0.0099, 0.0093], [0.9553, 0.0255, 0.0034, 0.003, 0.0029, 0.0022, 0.0003, 0.0003], [0.0209, 0.0173, 0.0099, 0.0087, 0.0056, 0.0056, 0.0053, 0.005], [0.525, 0.0131, 0.0102, 0.0075, 0.007, 0.0051, 0.0048, 0.0035], [0.9062, 0.0257, 0.0061, 0.0048, 0.0027, 0.0014, 0.0011, 0.0009], [0.945, 0.0366, 0.0093, 0.005, 0.0009, 0.0007, 0.0006, 0.0004], [0.6911, 0.0344, 0.0143, 0.0127, 0.0099, 0.0056, 0.0044, 0.0032], [0.5736, 0.3942, 0.0019, 0.0012, 0.001, 0.0009, 0.0008, 0.0007], [0.559, 0.4353, 0.0024, 0.0006, 0.0004, 0.0003, 0.0002, 0.0001], [0.8848, 0.0823, 0.0098, 0.006, 0.0028, 0.0008, 0.0006, 0.0006], [0.9442, 0.047, 0.0039, 0.0023, 0.0016, 0.0002, 0.0002, 0.0001], [0.9813, 0.0085, 0.0085, 0.0011, 0.0003, 0.0001, 0.0, 0.0], [0.9671, 0.0156, 0.0138, 0.0014, 0.0008, 0.0001, 0.0001, 0.0001], [0.8862, 0.0642, 0.0135, 0.0077, 0.0019, 0.0014, 0.0009, 0.0009], [0.5299, 0.0813, 0.0248, 0.0233, 0.011, 0.0097, 0.0097, 0.0067], [0.4679, 0.1832, 0.0206, 0.0181, 0.0117, 0.0103, 0.0086, 0.0046], [0.7106, 0.2036, 0.0202, 0.0101, 0.0029, 0.0019, 0.0019, 0.0016], [0.462, 0.1926, 0.0335, 0.0261, 0.0123, 0.0096, 0.009, 0.009], [0.1432, 0.072, 0.0527, 0.03, 0.0249, 0.0206, 0.0194, 0.011], [0.1031, 0.043, 0.0335, 0.0261, 0.0191, 0.0179, 0.0149, 0.0131], [0.1154, 0.1084, 0.058, 0.0292, 0.0242, 0.0213, 0.0166, 0.0138], [0.1538, 0.1198, 0.0933, 0.0343, 0.0267, 0.0236, 0.0162, 0.0162], [0.2007, 0.1218, 0.0837, 0.0308, 0.0272, 0.0255, 0.0155, 0.0155], [0.1933, 0.0711, 0.0668, 0.0278, 0.0246, 0.0231, 0.0169, 0.0149], [0.1115, 0.0984, 0.0636, 0.0465, 0.0234, 0.0194, 0.0171, 0.0161], [0.0847, 0.0582, 0.0514, 0.0353, 0.0275, 0.0275, 0.0214, 0.0178], [0.0564, 0.0498, 0.0439, 0.0388, 0.0321, 0.0221, 0.0221, 0.0172], [0.0667, 0.0667, 0.0431, 0.0278, 0.0261, 0.0191, 0.014, 0.0116], [0.0818, 0.0637, 0.0496, 0.0341, 0.0341, 0.0249, 0.0207, 0.0171], [0.0821, 0.0724, 0.0364, 0.025, 0.0183, 0.0152, 0.0143, 0.0143], [0.0663, 0.055, 0.0402, 0.0294, 0.0276, 0.0202, 0.019, 0.0158], [0.0502, 0.0443, 0.0416, 0.0345, 0.0304, 0.0237, 0.0209, 0.0185], [0.2958, 0.1397, 0.1313, 0.1022, 0.0483, 0.0353, 0.0258, 0.0189], [0.8359, 0.0881, 0.0286, 0.0173, 0.0044, 0.0036, 0.0018, 0.0017], [0.8592, 0.0799, 0.0157, 0.013, 0.0062, 0.0037, 0.0016, 0.0014], [0.6873, 0.1353, 0.0284, 0.0208, 0.0172, 0.0098, 0.0056, 0.0052], [0.5486, 0.1572, 0.1224, 0.0291, 0.0226, 0.0146, 0.0078, 0.0074], [0.4582, 0.4044, 0.062, 0.0157, 0.0101, 0.0061, 0.0054, 0.0051], [0.6827, 0.1523, 0.1047, 0.0161, 0.0076, 0.0067, 0.0043, 0.003], [0.8871, 0.0728, 0.0184, 0.0036, 0.0028, 0.0025, 0.0023, 0.0014], [0.9873, 0.011, 0.0015, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9869, 0.0124, 0.0005, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9884, 0.011, 0.0005, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9986, 0.0006, 0.0003, 0.0001, 0.0001, 0.0, 0.0, 0.0]], "ranks": {"Kotlin": [229702, 213956, 220008, 175959, 218231, 202696, 178730, 197113, 216687, 231289, 231350, 207031, 183903, 204761, 228447, 210029, 210253, 199268, 209981, 237754, 230522, 180420, 194336, 230095, 177498, 110038, 151517, 131636, 110486, 141554, 189363, 190093, 202381, 148633, 189490, 160556, 171029, 178141, 165008, 151655, 155945, 130052, 104175, 81313, 125219, 147299, 120386, 100535, 74256, 53771, 51374, 98119, 59988, 43131, 52627, 30110, 23005, 20864, 20757, 10345, 11755, 17966, 10673]}}, {"pos": 375, "top": [[",", ".", "er", "\u00ac", " ", "\u00ad", "\uff0e", "\u00a0\u00a0"], ["\u00ac", "\uff0e", " \ufffd", "er", " mu\u00df", "\u0447\u0451", "\u00ad", " labour"], ["\uff0e", "er", "ly", "(**", "\u0436\u0451", "\u0447\u0451", " \uff0f", " \u0623\u0649"], ["\uff0a\uff0a\uff0a\uff0a", "\uff0d\uff0d\uff0d\uff0d", " **\u300c", "\uff3f\uff3f", "\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a", "\uff0d\uff0d", "\uff0a\uff0a", " \uff0a"], ["\u00ac", "naire", " \uff0f", "(**", "er", "\uff0d\uff0d\uff0d\uff0d", "ary", "\uff0e"], ["(**", " \uff1a", "naire", "\u0440\u0451", " )**", " \uff0f", "\uff1f**", "\u0436\u0451"], ["\uff1f**", " **\u300c", "\u2019**", "\u00ac", "\uff0e", " \u2019", " )**", "\uff09**"], [" **\u300c", "naire", "(**", "\uff1f**", "ary", " )**", "ly", " **'"], ["\uff0e", "\u00ac", " \ufffd", "naire", "ary", "(**", " \uff0a", "\uff3b"], ["\u00ac", "naire", " mu\u00df", " \u0163", " \u2019", "\u0436\u0451", "\u0449\u0451", "er"], ["\u00ac", "\uff0e", "er", " \u2019", ",", "\"", "naire", "ly"], ["naire", "er", "ly", "\u00ac", "ary", " \u2019", " )**", " havoc"], ["er", "naire", "ly", "er\u00eda", " \u2019", " \u300d", "\u00ac", " )**"], ["er", "naire", "\u00ac", "ly", " \u2019", " havoc", " wildly", "ally"], ["\u00ac", " \u2019", " wildly", "naire", "er", "ly", " somewhat", " havoc"], ["\u00ac", " wildly", "ly", "er", " \u2019", " uncomfort", " \u2014", " smack"], [" wildly", "er", "ly", "\u00ac", " \u2019", " much", " vaguely", " \u2014"], [" \u2014", " wildly", "\u00ac", " vaguely", " smack", " uncomfort", " \u2019", "er"], [" \u2014", " wildly", " smack", " uncomfort", " outrage", " barely", " vaguely", " decidedly"], [" \u2014", " --", " ---", " wildly", " smack", " swiftly", " barely", " uncomfort"], [" \u2014", " \n\n", " --", " wildly", " ---", " \uff1a", "\n\n", " swiftly"], [" )**", " ?**", " **:", " **'", " !**", " **\u25a0", " **:**", " :**"], [" ?**", " )**", " \n\n", " ---", " --", " \u2014", " **'", " \u2019"], [" \n\n", "\n\n", " \u2014", " \u2019", " --", "  \n\n", " wildly", " ?**"], [" \n\n", "\n\n", "  \n\n", "\r\n\r\n", " \r\n\r\n", "   \n\n", " \u2014", " \n\n\n\n"], [" \n\n", " **'", " ?**", " **", " )**", " **:", " ---", " :**"], ["\n\n", " \n\n", " ___", " **", " **'", " ?**", "  \n\n", " ---"], ["\n\n", " \n\n", "  \n\n", " ___", " **", "\r\n\r\n", " **'", " ---"], [" \n\n", "\n\n", "  \n\n", " **", " ___", " **'", " ?**", " )**"], [" \n\n", "  \n\n", "\n\n", " ___", " \u2014", " **", "   \n\n", " \n\n\n\n"], [" \n\n", "\n\n", "  \n\n", " \u2014", " **", "   \n\n", "\r\n\r\n", " \n  \n"], [" \n\n", "\n\n", "  \n\n", " \u2014", " \u2019", " ,", " --", " wildly"], [" \n\n", "  \n\n", "\n\n", " wildly", " \u2014", " ,", " truly", " --"], [" wildly", " aggressively", " weird", " fiercely", " stark", " \u2014", " overwhelmingly", " incredibly"], [" wildly", " aggressively", " stark", " cynical", " swiftly", " relentlessly", " relentless", " fiercely"], [" wildly", " aggressively", " cynical", " \u2014", " relentlessly", " stark", " brutally", " fiercely"], [" aggressively", " wildly", " cynical", " ridiculously", " brutally", " stark", " relentlessly", " fiercely"], [" aggressively", " wildly", " cynical", " ridiculously", " brutally", " absurd", " relentlessly", " desperation"], [" aggressively", " cynical", " wildly", " ridiculously", " brutally", " absurd", " desperation", " relentlessly"], [" cynical", " wildly", " aggressively", " ridiculously", " absurd", " brutally", " desperation", " weird"], [" cynical", " aggressively", " absurd", " brutally", " ridiculously", " wildly", " desperation", " ridiculous"], [" cynical", " aggressively", " absurd", " brutally", " desperation", " wildly", " ridiculously", " paranoia"], [" cynical", " aggressively", " brutally", " absurd", " desperation", " wildly", " ridiculously", " relentlessly"], [" absurd", " desperation", " aggressively", " cynical", " brutally", " wildly", " ridiculously", " desperate"], [" aggressively", " absurd", " desperation", " cynical", " relentless", " brutally", " desperate", " ridiculous"], [" aggressively", " desperation", " absurd", " wildly", " brutally", " desperate", " ridiculously", " cynical"], [" desperation", " absurd", " aggressively", " cynical", " ridiculously", " brutally", " desperate", " wildly"], [" ridiculously", " desperation", " absurd", " aggressively", " relentless", " desperate", " wildly", " cynical"], [" absurd", " ridiculously", " desperation", " cynical", " relentless", " aggressively", " ridiculous", " brutally"], [" **:**", " Worse", " desperation", ":", "  \n\n", "  \n", " Impossible", " absurd"], [" **:**", " Worse", "  \n", " **", " Impossible", " harder", " panic", " absurd"], ["  \n", " **:**", ":", " \n", ":**", "\uff1a**", "**:", " **:"], [":**", ":", " **:**", ":*", "  \n", "\uff1a**", " :**", "**:"], [":**", "  \n", ":*", "\uff1a**", ":", " :**", "**", " **:**"], [":**", "  \n", ":*", " \n", ":", "\uff1a**", " :**", " **:**"], [":**", ":*", " :**", "\uff1a**", ":", "  \n", "**:", "**"], [":**", " :**", "\uff1a**", ":*", "**", ":", "**:", " **:**"], [":**", " :**", "\uff1a**", "**", ":*", ":", "**:", " **:**"], [":**", " :**", ":*", ":", "**:", "\uff1a**", "**", "*:"], [":**", ":*", " :**", ":", "**", ":\"", "\uff1a**", "**:"], [":**", ":*", ":", " :**", ":\"", "**", "**:", "\uff1a**"], [":**", ":", ":*", " :**", ":\"", "**:", " :", "**"], [":**", "\uff1a**", " :**", "**", ":", "**:", ":\"", ".**"]], "p": [[0.6474, 0.2382, 0.0343, 0.0173, 0.0111, 0.0081, 0.0041, 0.0036], [0.1701, 0.1245, 0.0911, 0.0315, 0.0278, 0.0203, 0.0168, 0.014], [0.4591, 0.1587, 0.0215, 0.0139, 0.013, 0.0095, 0.0079, 0.0058], [0.0665, 0.0487, 0.0295, 0.0203, 0.0168, 0.0158, 0.0116, 0.009], [0.1512, 0.0917, 0.0592, 0.0337, 0.0263, 0.0232, 0.0218, 0.0205], [0.1045, 0.0464, 0.0384, 0.0281, 0.0233, 0.0219, 0.0206, 0.0193], [0.1017, 0.0699, 0.0617, 0.0451, 0.0351, 0.0257, 0.0241, 0.0227], [0.0581, 0.0425, 0.0399, 0.0242, 0.0189, 0.0189, 0.0177, 0.0177], [0.1352, 0.1121, 0.06, 0.0342, 0.0302, 0.025, 0.0152, 0.0152], [0.6263, 0.0157, 0.0108, 0.0108, 0.0089, 0.0084, 0.0084, 0.0079], [0.5785, 0.0944, 0.0887, 0.0198, 0.0154, 0.0136, 0.0094, 0.0083], [0.118, 0.0524, 0.0232, 0.0205, 0.017, 0.0124, 0.011, 0.0059], [0.0653, 0.0653, 0.0372, 0.0146, 0.0146, 0.0137, 0.0129, 0.0121], [0.0421, 0.0421, 0.0396, 0.0165, 0.0155, 0.0113, 0.01, 0.0069], [0.3112, 0.0787, 0.0128, 0.0128, 0.0128, 0.0083, 0.0078, 0.0069], [0.0529, 0.0412, 0.0207, 0.0111, 0.0104, 0.0092, 0.0086, 0.0072], [0.0416, 0.0286, 0.0268, 0.0185, 0.0173, 0.0153, 0.0112, 0.0093], [0.0833, 0.0288, 0.0211, 0.012, 0.0106, 0.0106, 0.0093, 0.0088], [0.0641, 0.0365, 0.0195, 0.0118, 0.0092, 0.0077, 0.0068, 0.0063], [0.3327, 0.1224, 0.051, 0.0423, 0.0166, 0.0107, 0.0089, 0.0083], [0.2846, 0.1956, 0.0385, 0.03, 0.0234, 0.0161, 0.0151, 0.0142], [0.0505, 0.0474, 0.0347, 0.0224, 0.0154, 0.012, 0.0093, 0.0093], [0.1186, 0.0815, 0.0719, 0.056, 0.0464, 0.041, 0.0282, 0.0282], [0.4268, 0.1671, 0.0789, 0.0397, 0.0273, 0.0146, 0.0137, 0.0073], [0.6416, 0.3031, 0.0527, 0.0008, 0.0003, 0.0002, 0.0002, 0.0002], [0.1225, 0.0954, 0.0698, 0.0579, 0.0511, 0.0257, 0.0177, 0.0156], [0.6737, 0.1813, 0.0231, 0.0116, 0.0075, 0.0075, 0.0062, 0.0043], [0.7435, 0.213, 0.0175, 0.0136, 0.0025, 0.0013, 0.0011, 0.001], [0.5358, 0.1971, 0.1273, 0.0235, 0.0195, 0.0134, 0.0063, 0.006], [0.5472, 0.4262, 0.0212, 0.0009, 0.0007, 0.0006, 0.0004, 0.0003], [0.7478, 0.1891, 0.0614, 0.0003, 0.0002, 0.0001, 0.0001, 0.0001], [0.6589, 0.2424, 0.0613, 0.0042, 0.0032, 0.0024, 0.0019, 0.0014], [0.2729, 0.0943, 0.0782, 0.0326, 0.0288, 0.0154, 0.0106, 0.0082], [0.2384, 0.0208, 0.0184, 0.0173, 0.0162, 0.0143, 0.0112, 0.0112], [0.1296, 0.0421, 0.024, 0.0212, 0.0155, 0.0145, 0.0137, 0.0137], [0.1149, 0.0615, 0.035, 0.0309, 0.0213, 0.02, 0.0188, 0.0176], [0.0857, 0.0756, 0.0553, 0.038, 0.0335, 0.0217, 0.0191, 0.0149], [0.094, 0.0688, 0.0444, 0.0417, 0.0287, 0.0223, 0.0197, 0.0174], [0.0771, 0.06, 0.0468, 0.0364, 0.0342, 0.0284, 0.025, 0.0221], [0.1137, 0.0505, 0.0474, 0.0418, 0.0418, 0.0347, 0.0254, 0.0174], [0.1574, 0.0579, 0.0511, 0.0424, 0.0291, 0.0291, 0.0274, 0.02], [0.1586, 0.0797, 0.0377, 0.0332, 0.0312, 0.0259, 0.0243, 0.0178], [0.1001, 0.1001, 0.0392, 0.0368, 0.0346, 0.0238, 0.0223, 0.0174], [0.0683, 0.0603, 0.0603, 0.0566, 0.0469, 0.0343, 0.0303, 0.0267], [0.0708, 0.0708, 0.0552, 0.0314, 0.0295, 0.0277, 0.0277, 0.0245], [0.0853, 0.0586, 0.0517, 0.0314, 0.0314, 0.0295, 0.026, 0.0229], [0.0749, 0.0548, 0.0484, 0.0484, 0.0454, 0.0293, 0.0276, 0.0243], [0.0889, 0.0693, 0.0539, 0.0395, 0.0395, 0.0371, 0.0239, 0.0225], [0.0838, 0.0787, 0.0613, 0.0396, 0.029, 0.0212, 0.0187, 0.0187], [0.093, 0.0467, 0.0439, 0.0342, 0.0321, 0.025, 0.0235, 0.0207], [0.1937, 0.049, 0.046, 0.0358, 0.0337, 0.0262, 0.0132, 0.0132], [0.6075, 0.174, 0.0499, 0.0413, 0.0413, 0.0183, 0.0056, 0.0056], [0.6707, 0.1497, 0.0486, 0.0334, 0.0334, 0.0179, 0.0123, 0.0062], [0.7761, 0.0927, 0.0266, 0.0207, 0.0161, 0.0142, 0.0125, 0.0125], [0.7034, 0.1385, 0.051, 0.0309, 0.0241, 0.0165, 0.0146, 0.0037], [0.8914, 0.0444, 0.0163, 0.0127, 0.0112, 0.0053, 0.0028, 0.0025], [0.9719, 0.0122, 0.0065, 0.0035, 0.0021, 0.0015, 0.001, 0.0003], [0.96, 0.0176, 0.0057, 0.0057, 0.0039, 0.0039, 0.0016, 0.0002], [0.9435, 0.0251, 0.0105, 0.0105, 0.0039, 0.003, 0.001, 0.0008], [0.9793, 0.0109, 0.0075, 0.0006, 0.0005, 0.0005, 0.0003, 0.0001], [0.97, 0.0228, 0.0045, 0.001, 0.0005, 0.0003, 0.0002, 0.0001], [0.8371, 0.1284, 0.0223, 0.005, 0.0008, 0.0007, 0.0004, 0.0004], [0.9997, 0.0002, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Kotlin": [193490, 198620, 111013, 86809, 128079, 169156, 150886, 210374, 223131, 233971, 226342, 217928, 194707, 230921, 238024, 232428, 219135, 208336, 212491, 242032, 234766, 188533, 215205, 229988, 191483, 129766, 152361, 115391, 85518, 74389, 165060, 180262, 195215, 107357, 125893, 83358, 73256, 81349, 97005, 80446, 77033, 83931, 60289, 37313, 51437, 111592, 84122, 90717, 95612, 65473, 73878, 79988, 76107, 54344, 74411, 64644, 57299, 61566, 46074, 40524, 48446, 23586, 10164]}}, {"pos": 376, "top": [[" \u2013", ".", "  \n", "\u2026..", " (\u201e", "   \n", "\u2026\u2026", ","], ["  \n", " \u2013**", ",\\\"", ":\\\"", ",**", "   \n", ":**", "\u52c7\u5f80\u76f4\u524d"], ["\u2026\u2026", "\u2026..", ".:**", " \u2013**", "\u2026**", " **\u2013", ",**", ":**"], [" **\u201e", " **:**", "\u52a0\u62ff\u5927", " ``(", "raries", " ;;^", " milfs", "\uff1a**"], ["raries", " **\u201e", "\u52a0\u62ff\u5927", ":**", ".:**", "ed", "\u30f3", " ##"], [".:**", ":**", " **\u201e", "raries", "ed", ",**", "\u52a0\u62ff\u5927", "-**"], ["raries", " **\u201e", ":**", ".:**", "\uff1a**", " ____", "...**", " ~~"], [" **\u201e", "raries", "\u52a0\u62ff\u5927", ".:**", "...**", ":__", " ~~", " **:**"], ["...**", " **\u201e", " ____", "raries", " ......", "...\\", " ~~", ":__"], ["...\\", "\u52c7\u5f80\u76f4\u524d", "\u4e0d\u53ef\u601d\u8bae", "raries", "\u8eab\u4e34\u5176\u5883", "...**", "\u8033\u719f\u80fd\u8be6", " ~~"], ["...", "...\\", "...**", " ____", "\n\n", " ...\\", " ~~", " ......"], ["...**", "raries", " ~~", " ____", " **\u201e", " **\u3010", " **", " ``"], ["...**", "raries", "\u52a0\u62ff\u5927", " ~~", "\u52c7\u5f80\u76f4\u524d", " ____", " **\u201e", "...\\"], ["...", "raries", "...**", "\u52c7\u5f80\u76f4\u524d", "\u52a0\u62ff\u5927", "...\\", "\u4e0d\u53ef\u601d\u8bae", ":..."], ["...", "an", "...\\", "raries", "...**", "\n\n", "\u4e0d\u53ef\u601d\u8bae", " --"], ["an", "...", " incredibly", "\u52c7\u5f80\u76f4\u524d", "\u4e0d\u53ef\u601d\u8bae", " folks", " savvy", "raries"], ["...", "an", "\u4e0d\u53ef\u601d\u8bae", "\u52c7\u5f80\u76f4\u524d", "..", "n", "ed", " incredibly"], ["...", "...\\", "...**", ",...", ",**", "\n\n", "an", "\u52c7\u5f80\u76f4\u524d"], ["...", "...**", "...\\", "\n\n", "\u4e0d\u53ef\u601d\u8bae", "...</", "\u52a0\u62ff\u5927", "an"], ["\n\n", "<|endoftext|>", "...", "  \n\n", "...\\", " incredibly", " swiftly", " barely"], ["\n\n", "<|endoftext|>", "  \n\n", "...", " \n\n", " swiftly", "   \n\n", " barely"], ["\u52a0\u62ff\u5927", "\u52e4\u52e4\u6073\u6073", "\u52c7\u5f80\u76f4\u524d", "\u4e0d\u53ef\u601d\u8bae", "\u4e8b\u534a\u529f\u500d", "tvr", " incredibly", "\u8dc3\u8dc3\u6b32\u8bd5"], ["\n\n", " incredibly", " ``", " swiftly", "\u4e0d\u53ef\u601d\u8bae", " arguably", " truly", "\u52a0\u62ff\u5927"], ["\n\n", "<|endoftext|>", " swiftly", " much", "  \n\n", " ...", " just", " \n\n"], ["\n\n", "  \n\n", " \n\n", "   \n\n", "...\\", "    \n\n", "\r\n\r\n", "<|im_end|>"], ["\n\n", "  \n\n", " \n\n", "...**", " **", " ____", "   \n\n", "...\\"], ["\n\n", " \n\n", "  \n\n", " **", " ____", " ...", " __", " ___"], ["\n\n", "  \n\n", " \n\n", "<|endoftext|>", "   \n\n", "\r\n\r\n", " ...", "\n\n\n"], ["\n\n", "  \n\n", " \n\n", "   \n\n", "<|endoftext|>", " ...", "\r\n\r\n", "\n\n\n"], ["\n\n", "  \n\n", " \n\n", " ...", "...", "   \n\n", " \u2026", " ...\\"], ["\n\n", " ...", "  \n\n", "...", " \n\n", " \u2026", " ...\\", "   \n\n"], [" ...", "\n\n", " much", " ,", " just", "...", " \u2026", " more"], [" ,", " just", " even", " much", " more", " heavily", " incredibly", " truly"], [" aggressively", " incredibly", " ...", " surprisingly", " fundamentally", " heavily", " arguably", " strategically"], [" aggressively", " incredibly", " relentless", " notoriously", " relentlessly", " brutally", " arguably", " unlikely"], [" incredibly", " aggressively", " notoriously", " relentless", " brutally", " impossible", " relentlessly", " ..."], [" aggressively", " impossible", " notoriously", " flawed", " brutally", " incredibly", " relentless", " absurd"], [" impossible", " absurd", " aggressively", " incredibly", " flawed", " ridiculously", " notoriously", " relentless"], [" impossible", " absurd", " unrealistic", " ridiculously", " ridiculous", " desperate", " incredibly", " desperation"], [" impossible", " absurd", " unrealistic", " ridiculous", " Impossible", " ridiculously", " desperation", " desperate"], [" impossible", " unrealistic", " absurd", " ridiculous", " Impossible", " ridiculously", " insanely", " flawed"], [" unrealistic", " impossible", " absurd", " ridiculous", " desperation", " ridiculously", " Impossible", " desperate"], [" impossible", " unrealistic", " absurd", " ridiculous", " Impossible", " desperation", " improbable", " desperate"], [" impossible", " unrealistic", " absurd", " ridiculous", " Impossible", " desperation", " desperate", " forcing"], [" impossible", " unrealistic", " absurd", " desperation", " ridiculous", " desperate", " forcing", " improbable"], [" impossible", " unrealistic", " absurd", " desperation", " forcing", " ridiculous", " desperate", " Impossible"], [" impossible", " absurd", " unrealistic", " Impossible", " ridiculous", " ridiculously", " forcing", " blatantly"], [" impossible", " unrealistic", " Impossible", " absurd", " forcing", " ridiculously", " ridiculous", " incredibly"], [" impossible", " unrealistic", " absurd", " Impossible", " ridiculously", " ridiculous", " forcing", " drastically"], [" Impossible", " impossible", " unrealistic", " absurd", "\u5012\u903c", " desperation", " constraints", " Worse"], [" Impossible", " impossible", " unrealistic", " absurd", "Impossible", " desperation", " imposs", " Worse"], [" Impossible", " impossible", "Impossible", "  \n", " unrealistic", " Worse", " Trying", " Attempt"], [" Impossible", " impossible", " unrealistic", "Impossible", "  \n", " absurd", " Constraints", " constraints"], ["  \n", " Impossible", " impossible", " \n", "Impossible", " unrealistic", " constraints", " Constraints"], ["  \n", " \n", " impossible", " Impossible", " attempting", " Trying", " unrealistic", "\n"], ["  \n", " \n", " forcing", "forcing", " you", " pushing", " demanding", " You"], ["  \n", "\n", " \n", " forcing", "   \n", " Trying", " You", "forcing"], ["  \n", "\n", " You", " you", " forcing", " \n", " demanding", "You"], ["  \n", " You", "\n", " you", " Constraints", " constraints", " constraint", "You"], ["\n", " You", " you", "  \n", " constraints", " chasing", " Adding", " forcing"], ["\n", "  \n", " You", " \n", " demanding", " forcing", " constraints", " you"], ["\n", "  \n", " You", " \n", " This", " Adding", " The", " Asking"], ["\n", "  \n", " You", " This", " The", " \n", " Adding", " Constraints"]], "p": [[0.4513, 0.2737, 0.0611, 0.037, 0.0255, 0.0164, 0.0128, 0.0128], [0.1386, 0.1223, 0.0742, 0.0543, 0.051, 0.035, 0.035, 0.0213], [0.2425, 0.1076, 0.095, 0.0787, 0.0478, 0.0449, 0.0421, 0.0421], [0.0849, 0.0377, 0.0293, 0.0243, 0.0228, 0.0147, 0.013, 0.0122], [0.1587, 0.0749, 0.0749, 0.0584, 0.0455, 0.0354, 0.0215, 0.0189], [0.1154, 0.1084, 0.1018, 0.0618, 0.0481, 0.0424, 0.0352, 0.0227], [0.2179, 0.0853, 0.0707, 0.0551, 0.0457, 0.0334, 0.0314, 0.0277], [0.3059, 0.1057, 0.0566, 0.0285, 0.0196, 0.0162, 0.0152, 0.0152], [0.1696, 0.0967, 0.0908, 0.0707, 0.0486, 0.0403, 0.023, 0.019], [0.1035, 0.0913, 0.0628, 0.0316, 0.0316, 0.0262, 0.0262, 0.0217], [0.3307, 0.3307, 0.0786, 0.0327, 0.0211, 0.0211, 0.0128, 0.012], [0.1565, 0.0837, 0.0837, 0.0787, 0.024, 0.0155, 0.0121, 0.0113], [0.1953, 0.1342, 0.0385, 0.0361, 0.0339, 0.0281, 0.0264, 0.0171], [0.1323, 0.0968, 0.0625, 0.0404, 0.0404, 0.0379, 0.009, 0.0075], [0.5602, 0.0246, 0.0217, 0.0132, 0.0116, 0.0096, 0.0085, 0.0071], [0.0839, 0.0542, 0.0176, 0.0165, 0.0121, 0.0114, 0.01, 0.01], [0.3329, 0.0896, 0.0121, 0.0094, 0.0089, 0.0069, 0.0065, 0.0057], [0.563, 0.0632, 0.0434, 0.0091, 0.0091, 0.0067, 0.0063, 0.0059], [0.383, 0.0518, 0.0457, 0.0356, 0.0102, 0.0062, 0.0051, 0.0048], [0.8155, 0.0262, 0.0204, 0.0071, 0.0046, 0.0022, 0.0018, 0.0017], [0.8237, 0.0868, 0.0133, 0.0019, 0.0017, 0.0014, 0.0008, 0.0005], [0.0335, 0.0102, 0.008, 0.0066, 0.0048, 0.0045, 0.0045, 0.0038], [0.1171, 0.014, 0.0131, 0.0109, 0.0062, 0.0062, 0.0051, 0.0051], [0.5452, 0.0476, 0.0088, 0.0088, 0.0053, 0.0053, 0.005, 0.0047], [0.934, 0.041, 0.022, 0.0018, 0.0003, 0.0001, 0.0001, 0.0001], [0.8171, 0.0671, 0.028, 0.0159, 0.0117, 0.008, 0.0066, 0.0031], [0.9957, 0.0009, 0.0004, 0.0002, 0.0002, 0.0001, 0.0001, 0.0], [0.9924, 0.0036, 0.0036, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9835, 0.0109, 0.0052, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.671, 0.2178, 0.1029, 0.0021, 0.0017, 0.0017, 0.0004, 0.0004], [0.819, 0.1256, 0.017, 0.0132, 0.0132, 0.0036, 0.0006, 0.0003], [0.2974, 0.1804, 0.0294, 0.0202, 0.0202, 0.0202, 0.0131, 0.0131], [0.0428, 0.0294, 0.0294, 0.0229, 0.019, 0.0179, 0.0123, 0.0108], [0.0394, 0.037, 0.0288, 0.0254, 0.0211, 0.0211, 0.0154, 0.0136], [0.0422, 0.0397, 0.0256, 0.0212, 0.02, 0.0187, 0.0165, 0.0146], [0.0507, 0.0395, 0.0349, 0.0308, 0.0225, 0.0211, 0.0199, 0.0175], [0.0618, 0.0352, 0.0331, 0.0311, 0.0292, 0.0274, 0.0258, 0.0227], [0.0983, 0.0495, 0.0385, 0.0385, 0.0265, 0.0265, 0.0219, 0.0182], [0.3344, 0.0546, 0.0513, 0.0214, 0.0201, 0.0189, 0.0189, 0.0166], [0.282, 0.0759, 0.0555, 0.0316, 0.0217, 0.0217, 0.018, 0.0159], [0.2657, 0.1255, 0.1108, 0.0492, 0.0218, 0.0192, 0.0141, 0.0132], [0.2086, 0.2086, 0.1265, 0.0341, 0.0194, 0.0194, 0.0133, 0.0133], [0.3016, 0.1614, 0.111, 0.0299, 0.0205, 0.0181, 0.016, 0.0141], [0.3284, 0.1369, 0.0941, 0.0368, 0.0346, 0.0325, 0.0238, 0.0154], [0.3683, 0.1196, 0.0822, 0.0267, 0.0251, 0.0195, 0.0195, 0.0183], [0.3209, 0.1042, 0.0811, 0.0298, 0.0247, 0.0232, 0.0218, 0.0205], [0.3312, 0.0837, 0.0787, 0.0328, 0.0225, 0.0199, 0.0199, 0.0165], [0.358, 0.0705, 0.0662, 0.0584, 0.0215, 0.0202, 0.0178, 0.0148], [0.289, 0.0828, 0.0731, 0.0535, 0.0253, 0.0197, 0.0185, 0.0135], [0.1911, 0.1234, 0.0903, 0.0243, 0.0214, 0.0214, 0.0138, 0.013], [0.3627, 0.22, 0.0461, 0.0337, 0.0232, 0.0124, 0.0117, 0.011], [0.4307, 0.1159, 0.0426, 0.0275, 0.0243, 0.0178, 0.0178, 0.013], [0.4182, 0.1743, 0.1057, 0.0389, 0.0303, 0.0111, 0.0098, 0.0092], [0.5234, 0.15, 0.0754, 0.0261, 0.023, 0.0158, 0.0139, 0.0109], [0.5861, 0.0658, 0.0452, 0.0352, 0.0138, 0.0129, 0.0122, 0.0095], [0.4041, 0.0796, 0.0748, 0.0275, 0.0275, 0.0201, 0.0157, 0.013], [0.8145, 0.0858, 0.0231, 0.0055, 0.0052, 0.0038, 0.0038, 0.0031], [0.5439, 0.0945, 0.0834, 0.0506, 0.0271, 0.0198, 0.0198, 0.0198], [0.2451, 0.1685, 0.1158, 0.062, 0.0582, 0.0514, 0.0243, 0.0228], [0.2125, 0.1875, 0.1289, 0.0943, 0.0474, 0.0254, 0.0174, 0.0174], [0.4813, 0.2006, 0.0421, 0.024, 0.0211, 0.0145, 0.0145, 0.0137], [0.5815, 0.1381, 0.0787, 0.0372, 0.029, 0.0094, 0.0088, 0.0078], [0.9345, 0.0465, 0.0133, 0.0018, 0.0009, 0.0006, 0.0001, 0.0001]], "ranks": {"Kotlin": [156549, 66352, 34035, 12811, 15436, 31787, 54881, 70843, 96935, 118373, 110184, 49960, 41245, 40872, 127778, 76544, 88463, 65815, 93620, 169412, 184597, 93704, 171956, 215087, 149441, 80212, 123750, 180227, 169496, 166151, 148487, 170956, 129986, 51288, 39173, 27843, 22631, 26157, 34824, 33088, 34538, 37139, 26017, 17362, 22013, 46079, 33958, 57457, 58643, 55025, 81131, 98103, 81528, 67185, 77787, 33061, 18872, 16042, 19266, 16270, 18535, 11639, 3191]}}, {"pos": 377, "top": [[" \u2013", ".", "\u2013", " \u2013,", ".\u2013", "\u2013and", "\u200b\u200b", "   \n"], ["**\u2013", " \u2013**", " *\u2013", " Guta", "\u2013and", "pedia", "\uff1f**", "CallCheck"], ["\u3002", "\uff1f", "\u2026..", "**\u2013", "\u5728", "\u2026\u2026", "\u4e2d", "\u7684"], [" **\u201e", " milfs", " cumshot", "raries", " Shemale", "``", "enzi", " Blowjob"], ["ly", "raries", "\u4e2d", "!\u201c", ".\u201c", "____", "\u548c", "\uff01"], ["\u4e2d", "\uff01", "!\u201c", "\uff1f", "ly", "\u5728", "\u3002", "raries"], ["\u4e2d", "____", "raries", "\u3002", "\u5728", "\uff01", "\uff1f", "ly"], ["____", " **\u201e", "!\u201c", "\u4e2d", "ly", "raries", "____________", ".:**"], ["\n\n", "   \n\n", "____", "\n\n\n", "    \n\n", "!\u201c", "......", "  \n\n\n"], ["ly", "raries", "____", "!\u201c", ".\",\"", "!--", "\u9ecf", "\u6700\u65b0\u53d1\u5e03"], ["\n\n", "...", "____", "ly", "...*", "\n\n\n", "a", "......"], [" **\u201e", "raries", "...**", " ____", "____", "...*", " *\u201e", " *__"], [" **\u201e", "raries", "____", "...**", "ly", " ____", " *\u201e", "htag"], [" **\u201e", "raries", "ly", " freaking", "...**", "pedia", " (\u201e", "\u52a0\u62ff\u5927"], ["ly", "raries", " **\u201e", " \u201e", "...", "\n\n", "\u201e", " freaking"], ["ly", "raries", " moms", " freaking", " **\u201e", " flavorful", " incredibly", " skept"], ["ly", " incredibly", " savvy", " sprawling", " folks", "fully", " standout", " \u201e"], ["ly", " **\u201e", "   \n\n", " incredibly", "  \n\n", "\n\n", "...", " savvy"], ["ly", " incredibly", "\n\n", " savvy", " **\u201e", "   \n\n", "\u4e0d\u53ef\u601d\u8bae", " effortlessly"], ["\n\n", "<|endoftext|>", "  \n\n", " incredibly", "ly", " \n\n", "   \n\n", " swiftly"], ["\n\n", "<|endoftext|>", " \n\n", "  \n\n", "   \n\n", " incredibly", " swiftly", "ly"], [" skyrocket", " **\u201e", " incredibly", " ``", " freaking", "\u52a0\u62ff\u5927", " savvy", " busted"], [" ``", " incredibly", " skyrocket", "\n\n", " swiftly", "ly", " sprawling", " effortlessly"], ["\n\n", " swiftly", " ``", " \n\n", " incredibly", " --", " sprawling", "ly"], ["\n\n", " \n\n", "  \n\n", "   \n\n", "    \n\n", "\r\n\r\n", "\t\n\n", " \r\n\r\n"], ["\n\n", " \n\n", " incredibly", "   \n\n", "  \n\n", " skyrocket", " sprawling", " havoc"], ["\n\n", " \n\n", " incredibly", " sprawling", " heavily", "  \n\n", " skyrocket", " swiftly"], ["\n\n", " \n\n", "  \n\n", "   \n\n", "\r\n\r\n", " --", " heavily", " incredibly"], ["\n\n", "  \n\n", " \n\n", "   \n\n", "\r\n\r\n", " \r\n\r\n", "\t\n\n", "    \n\n"], ["  \n\n", " \n\n", "\n\n", "   \n\n", "<|im_end|>", " \n\n\n", "  \n\n\n", "\r\n\r\n"], ["\n\n", " \n\n", "  \n\n", " heavily", " incredibly", " aggressively", "   \n\n", " massive"], ["\n\n", " incredibly", " heavily", " \n\n", " just", " aggressively", " wildly", " massive"], [" heavily", " aggressively", " incredibly", " relentlessly", " massive", " wildly", " dramatically", " truly"], [" aggressively", " heavily", " relentlessly", " wildly", " incredibly", " relentless", " arguably", " dramatically"], [" aggressively", " incredibly", " relentless", " relentlessly", " heavily", " wildly", " arguably", " sprawling"], [" aggressively", " relentless", " relentlessly", " incredibly", " wildly", " heavily", " brutally", " notoriously"], [" aggressively", " relentless", " relentlessly", " brutally", " incredibly", " wildly", " notoriously", " desperately"], [" aggressively", " incredibly", " relentlessly", " relentless", " brutally", " wildly", " desperately", " desperate"], [" aggressively", " incredibly", " desperate", " brutally", " relentlessly", " relentless", " desperately", " wildly"], [" aggressively", " brutally", " incredibly", " desperate", " relentless", " relentlessly", " wildly", " ridiculously"], [" brutally", " aggressively", " absurd", " ridiculously", " desperate", " incredibly", " impossible", " wildly"], [" aggressively", " brutally", " absurd", " desperate", " desperation", " ridiculously", " relentless", " relentlessly"], [" aggressively", " brutally", " desperate", " absurd", " desperation", " relentlessly", " relentless", " brutal"], [" brutally", " desperate", " aggressively", " desperation", " impossible", " absurd", " risky", " brutal"], [" impossible", " aggressively", " desperate", " desperation", " absurd", " brutally", " risky", " relentless"], [" aggressively", " impossible", " desperation", " desperate", " brutally", " risky", " absurd", " dangerously"], [" aggressively", " impossible", " desperate", " brutally", " desperation", " dangerously", " risky", " absurd"], [" aggressively", " impossible", " desperate", " absurd", " brutally", " incredibly", " dangerously", " relentless"], [" **", " absurd", " impossible", " aggressively", " desperation", " brutally", " drastically", " ridiculously"], [" Impossible", " desperation", " impossible", " desperate", " absurd", " brutally", " aggressively", " blatantly"], [" Impossible", " impossible", " desperation", " absurd", " unrealistic", "Impossible", " ridiculous", " brutally"], [" Impossible", " impossible", " attempting", " Trying", " Worse", " absurd", " desperation", " unrealistic"], [" Impossible", " impossible", " unrealistic", " forcing", "Impossible", " absurd", " **\u201c", " *\u201c"], [" Impossible", " impossible", " You", "Impossible", " **\u201c", " forcing", " you", " unrealistic"], [" you", " attempting", " You", " Trying", " Impossible", " trying", " impossible", "Trying"], [" you", " You", " forcing", "forcing", " abandoning", "you", " pushing", " chasing"], [" You", " you", "You", " Trying", " This", " forcing", "This", "forcing"], [" you", " You", "You", "you", " forcing", " pushing", "forcing", " demanding"], [" You", " you", "You", " Adding", "Adding", " This", " constraints", " forcing"], [" you", " You", " chasing", "You", " Adding", " This", " adding", "Adding"], [" You", " you", " This", "You", " Adding", " chasing", " Trying", "Adding"], [" You", "You", " This", "This", " you", " Adding", " The", "Adding"], ["You", "This", "The", " You", " This", "1", " The", "Adding"]], "p": [[0.7815, 0.1744, 0.0134, 0.0072, 0.0032, 0.003, 0.0028, 0.0018], [0.0792, 0.0398, 0.0146, 0.0069, 0.0054, 0.0048, 0.0042, 0.0039], [0.3918, 0.0991, 0.0498, 0.0468, 0.0388, 0.0322, 0.0267, 0.0195], [0.0133, 0.0125, 0.0118, 0.011, 0.0097, 0.0071, 0.0063, 0.0063], [0.3283, 0.0536, 0.0444, 0.027, 0.0223, 0.0136, 0.0127, 0.0127], [0.0628, 0.0521, 0.0381, 0.0316, 0.0262, 0.0231, 0.0217, 0.0149], [0.1733, 0.0497, 0.0438, 0.0283, 0.025, 0.025, 0.025, 0.0207], [0.0926, 0.0496, 0.0363, 0.0341, 0.0341, 0.0265, 0.0133, 0.0111], [0.2606, 0.158, 0.0901, 0.0701, 0.0513, 0.0331, 0.0275, 0.0214], [0.0877, 0.0532, 0.0285, 0.0162, 0.0162, 0.0152, 0.0143, 0.0126], [0.2528, 0.1271, 0.093, 0.093, 0.0771, 0.0439, 0.0364, 0.0284], [0.1004, 0.0393, 0.0211, 0.0164, 0.0154, 0.0082, 0.0064, 0.0041], [0.2378, 0.0322, 0.0267, 0.0208, 0.0143, 0.0092, 0.0053, 0.0046], [0.1058, 0.0642, 0.0642, 0.0143, 0.0092, 0.0072, 0.0056, 0.0047], [0.2896, 0.0732, 0.0368, 0.0153, 0.0153, 0.0144, 0.0144, 0.0112], [0.2082, 0.0171, 0.0117, 0.0117, 0.0063, 0.0059, 0.0055, 0.0052], [0.5064, 0.0087, 0.0056, 0.0044, 0.0039, 0.0036, 0.0032, 0.0028], [0.1939, 0.0382, 0.0382, 0.0159, 0.0159, 0.0124, 0.0091, 0.008], [0.0763, 0.0339, 0.0281, 0.011, 0.0097, 0.0071, 0.0063, 0.0063], [0.4821, 0.0349, 0.029, 0.024, 0.0176, 0.0165, 0.0146, 0.0107], [0.5864, 0.0899, 0.0292, 0.0177, 0.0101, 0.0101, 0.0074, 0.0029], [0.0199, 0.0155, 0.0129, 0.0094, 0.0061, 0.0057, 0.0044, 0.0039], [0.0558, 0.0339, 0.0205, 0.015, 0.0133, 0.0097, 0.0086, 0.0059], [0.2823, 0.0337, 0.0192, 0.0159, 0.0141, 0.0124, 0.0097, 0.008], [0.6897, 0.1744, 0.0824, 0.0343, 0.0026, 0.0023, 0.0018, 0.0008], [0.0496, 0.0321, 0.0183, 0.0161, 0.0151, 0.0134, 0.0118, 0.0086], [0.6806, 0.0233, 0.0067, 0.0049, 0.0043, 0.0043, 0.004, 0.0038], [0.8852, 0.0727, 0.0236, 0.0017, 0.001, 0.0006, 0.0004, 0.0004], [0.59, 0.2171, 0.1492, 0.0148, 0.0051, 0.0012, 0.0012, 0.0009], [0.4987, 0.2669, 0.2079, 0.0133, 0.0014, 0.001, 0.001, 0.0007], [0.5259, 0.1604, 0.059, 0.0132, 0.0103, 0.0055, 0.0055, 0.0045], [0.0993, 0.0414, 0.0389, 0.0284, 0.0221, 0.0162, 0.0152, 0.0152], [0.0396, 0.029, 0.0256, 0.0137, 0.0137, 0.0137, 0.0137, 0.0129], [0.0902, 0.04, 0.0332, 0.0312, 0.0312, 0.0228, 0.0189, 0.0178], [0.0795, 0.04, 0.0331, 0.0331, 0.0258, 0.0214, 0.0177, 0.0157], [0.0911, 0.0519, 0.0488, 0.0404, 0.0357, 0.0315, 0.0216, 0.0203], [0.1173, 0.046, 0.0432, 0.0406, 0.0358, 0.0316, 0.0231, 0.018], [0.1007, 0.042, 0.0371, 0.0371, 0.0327, 0.0327, 0.0239, 0.0211], [0.0542, 0.0397, 0.0329, 0.0329, 0.0329, 0.0309, 0.029, 0.0273], [0.0449, 0.0449, 0.0349, 0.0308, 0.0308, 0.0272, 0.0272, 0.0256], [0.0502, 0.0502, 0.0416, 0.0324, 0.0305, 0.0305, 0.0209, 0.0197], [0.0625, 0.0487, 0.0356, 0.0295, 0.0245, 0.0216, 0.0191, 0.0179], [0.0772, 0.0531, 0.0302, 0.0267, 0.0267, 0.0208, 0.0208, 0.0195], [0.0711, 0.0668, 0.0628, 0.059, 0.0431, 0.0358, 0.0279, 0.0262], [0.059, 0.059, 0.0489, 0.046, 0.0406, 0.0381, 0.0297, 0.0231], [0.0812, 0.0408, 0.036, 0.036, 0.0318, 0.0318, 0.0248, 0.0219], [0.0432, 0.0405, 0.0358, 0.0336, 0.0336, 0.0316, 0.0316, 0.0316], [0.0874, 0.0413, 0.0322, 0.0302, 0.0284, 0.0267, 0.025, 0.0235], [0.0641, 0.0389, 0.0365, 0.0343, 0.0267, 0.0236, 0.0162, 0.0162], [0.0853, 0.0551, 0.0429, 0.019, 0.0179, 0.0148, 0.0148, 0.0139], [0.1817, 0.1249, 0.0336, 0.0316, 0.018, 0.014, 0.014, 0.0103], [0.2792, 0.0456, 0.0244, 0.0229, 0.0202, 0.019, 0.0178, 0.0148], [0.273, 0.069, 0.0648, 0.021, 0.0186, 0.0175, 0.0136, 0.0136], [0.2613, 0.0548, 0.0259, 0.0228, 0.0178, 0.0178, 0.0167, 0.0167], [0.0969, 0.0588, 0.0588, 0.0552, 0.043, 0.0296, 0.023, 0.0158], [0.3194, 0.1175, 0.067, 0.0297, 0.0246, 0.0217, 0.0217, 0.018], [0.1927, 0.1324, 0.0626, 0.0487, 0.0458, 0.0296, 0.0216, 0.0203], [0.3424, 0.3022, 0.1617, 0.0361, 0.0125, 0.0076, 0.0071, 0.0055], [0.3255, 0.2237, 0.1198, 0.0208, 0.0184, 0.0184, 0.0143, 0.0143], [0.3222, 0.2844, 0.0675, 0.041, 0.03, 0.03, 0.0182, 0.011], [0.4065, 0.132, 0.0752, 0.055, 0.0485, 0.0294, 0.0215, 0.019], [0.4872, 0.1396, 0.1311, 0.0426, 0.0332, 0.0147, 0.0138, 0.0089], [0.7451, 0.1295, 0.0693, 0.0371, 0.0053, 0.0014, 0.0012, 0.0011]], "ranks": {"Kotlin": [163844, 31638, 28502, 6850, 6473, 13371, 26517, 53449, 73677, 52104, 54120, 9903, 6576, 15590, 51262, 36602, 77916, 68773, 136501, 220520, 220151, 139309, 186584, 213997, 182315, 145564, 177399, 196066, 131360, 139742, 158930, 169227, 159225, 159578, 165120, 123238, 107046, 119393, 125118, 119577, 114942, 118853, 105368, 67991, 71833, 99374, 86393, 95066, 69140, 44466, 88301, 96942, 87683, 72882, 69353, 31909, 19748, 16640, 22603, 17985, 32852, 6920, 5603]}}, {"pos": 378, "top": [[".", ",", "?", " \u2013", ";", "er", "\u00a0", "!"], [",", ".", "er", "?", ";", " Very", "!", "sy"], [",", ".", "?", ";", "!", "er", ":", "\u3002"], ["erias", "\uff0a\uff0a\uff0a\uff0a", "enner", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "erdale", " Shemale", " Blowjob", "erus"], ["er", " \u201c", "usst", "\u043d\u0438\u0432\u0435\u0440", "er\u00e0", "(@", "sWith", " (@"], [",", "!\u201d.", " Apalagi", "enho", "usst", "\u2019re", " Yourself", "\u064a\u0636"], ["\u2019re", "!\u201d", "\u201d?", "\u2019ve", "%!", "eza", "tsky", "\u2019ll"], ["\u00e9co", "erias", " Yourself", "ey", "!\u201d.", "%!", "eyed", "yssey"], ["!\u201d.", "!\u201d", "!", "\u201d.", "!.", "\u201d?", "\u2019ll", "!!!"], [",", "\u2014you", "!", "yyyy", "!!!", "\u30c3\u30b3", "\u2019ll", "?!"], ["\u2019re", "yyyy", "\u2019ll", "!!!", "ernt", "!", "\u2019ve", "?!"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "erdale", "erias", "asley", "ernt", "eza", " Shemale", " Blowjob"], ["erdale", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "erias", " Blowjob", "asley", " Shemale", "yssey", "iverse"], [" Philly", " freaking", " vibes", "erdale", " guys", "eben", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "yssey"], [" Philly", " savvy", " guys", " folks", " freaking", " gorgeous", "\u2014you", " yummy"], [" savvy", " guys", " Philly", " freaking", " folks", " gorgeous", " incredibly", " vibes"], [" savvy", " folks", " guys", " Philly", " pretty", " incredibly", "\u2014you", " freaking"], ["\u2014you", " savvy", " folks", " yummy", " pretty", " incredibly", "\u2019ll", " guys"], ["\u2014you", " folks", " incredibly", " pretty", " savvy", "\u2014even", " freaking", "\u2019ll"], ["\u2014you", " \u2014", " folks", "\u2014even", " incredibly", " pretty", " smack", " effortlessly"], ["\u2014you", "\n\n", " \u2014", "<|endoftext|>", " folks", "  \n\n", "\u2014even", " incredibly"], ["\u2014you", " incredibly", " folks", " freaking", " savvy", " smack", " smarter", "\u2019ll"], ["\u2014you", " incredibly", " folks", " freaking", " savvy", " desperately", " smack", " effortlessly"], ["\u2014you", " incredibly", " just", " folks", " \u2014", " wildly", " smack", " \u2019"], ["\n\n", "  \n\n", " \n\n", "\r\n\r\n", " \r\n\r\n", "   \n\n", "    \n\n", "\t\n\n"], [" folks", " freaking", "\u2014you", "  \n\n", " busted", " incredibly", " \r\n\r\n", "\r\n\r\n"], ["\n\n", "\r\n\r\n", " \n\n", " folks", "  \n\n", " busted", " freaking", " \r\n\r\n"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", " \r\n\r\n", "   \n\n", " arguably", " folks"], ["\n\n", "  \n\n", " \n\n", "\r\n\r\n", "\u2014you", " \r\n\r\n", "   \n\n", " incredibly"], ["  \n\n", " \n\n", "\u2014you", "   \n\n", " \u2014", " \r\n\r\n", " incredibly", "  \r\n\r\n"], ["  \n\n", " \n\n", " incredibly", " really", " wildly", " just", " @", " desperately"], [" incredibly", " just", " really", " wildly", " @", " desperately", " aggressively", " truly"], [" incredibly", " really", " relentlessly", " wildly", " just", " desperately", " aggressively", " crazy"], [" incredibly", " aggressively", " relentlessly", " desperately", " wildly", " freaking", " relentless", " insanely"], [" relentlessly", " incredibly", " desperately", " aggressively", " ridiculously", " freaking", " wildly", " relentless"], [" desperately", " incredibly", " ridiculously", " relentlessly", " insanely", " aggressively", " wildly", " freaking"], [" ridiculously", " desperately", " insanely", " aggressively", " relentlessly", " freaking", " incredibly", " damn"], [" desperately", " insanely", " ridiculously", " incredibly", " aggressively", " impossible", " relentlessly", " damn"], [" desperately", " impossible", " ridiculously", " insanely", " desperate", " relentlessly", " damn", " ridiculous"], [" impossible", " desperately", " insanely", " desperate", " ridiculously", " absurd", " damn", " ridiculous"], [" impossible", " insanely", " desperately", " ridiculously", " desperate", " ridiculous", " absurd", " unrealistic"], [" desperately", " desperate", " impossible", " aggressively", " absurd", " ridiculously", " insanely", " unrealistic"], [" desperate", " desperately", " impossible", " absurd", " aggressively", " relentlessly", " ridiculous", " unrealistic"], [" desperate", " desperately", " doomed", " impossible", " absurd", " desperation", " aggressively", " forcing"], [" impossible", " doomed", " desperate", " desperately", " absurd", " desperation", " unrealistic", " forcing"], [" desperate", " desperately", " impossible", " aggressively", " absurd", " desperation", " pushing", " forcing"], [" desperately", " desperate", " impossible", " insanely", " doomed", " absurd", " blatantly", " stubborn"], [" pushing", " doomed", " desperately", " forcing", " desperate", "\u5012\u903c", " trying", " impossible"], ["\u5012\u903c", " forcing", " doomed", " pushing", " aggressively", " relentlessly", " stubborn", " tightening"], ["\u5012\u903c", "\u903c\u8feb", " pushing", " forcing", " yourself", " attempting", " doomed", " Trying"], ["\u5012\u903c", "\u903c\u8feb", "Attempting", " doomed", " pushing", " sabot", "\u903c", " sabotage"], ["Attempting", " attempting", " Trying", "Trying", "\u5012\u903c", " trying", "\u8bd5\u56fe", "trying"], ["\u2019ve", " attempting", " now", "Attempting", " trying", " Trying", "\u5012\u903c", " pushing"], ["\u2019ve", " trying", " attempting", "Attempting", " Trying", "Trying", " pushing", "\u2019re"], ["\u2019ve", " trying", " now", " Trying", " attempting", "Attempting", "Trying", "\u8bd5\u56fe"], ["\u521a\u521a", "\u521a", " just", "\u2019ve", "\u525b\u525b", "just", "\u521a\u624d", "\u521a\u4ece"], ["\u2019ve", "\u521a\u521a", "\u521a", "\u2019re", " just", "\u525b\u525b", "just", "\u521a\u624d"], ["\u2019ve", "\u521a\u521a", "\u2019re", "\u521a", " just", " trying", " haven", "\u525b\u525b"], ["\u2019ve", "\u2019re", "\u521a\u521a", " just", "'ve", " swapped", "\u521a", " aren"], ["\u2019ve", "\u2019re", "'ve", " just", "'re", "\u521a\u521a", " swapped", " optimizing"], ["\u2019ve", " just", "\u2019re", "'ve", "'re", "just", " are", " have"], ["\u2019ve", "\u2019re", " just", " are", "'ve", "'re", " have", " aren"], ["\u2019ve", "\u2019re", " are", "'ve", " just", "'re", " have", " haven"]], "p": [[0.6815, 0.2841, 0.0151, 0.0036, 0.003, 0.0017, 0.0016, 0.0014], [0.2122, 0.1873, 0.0608, 0.0224, 0.0088, 0.0057, 0.0053, 0.0032], [0.5466, 0.4257, 0.0113, 0.0024, 0.002, 0.0007, 0.0006, 0.0005], [0.0095, 0.0042, 0.0035, 0.0019, 0.0019, 0.0016, 0.0016, 0.0015], [0.0357, 0.0038, 0.0035, 0.0033, 0.0031, 0.0027, 0.0024, 0.0024], [0.0037, 0.0034, 0.0032, 0.0021, 0.0017, 0.0016, 0.0015, 0.0015], [0.0081, 0.0046, 0.0032, 0.0026, 0.0023, 0.0023, 0.0023, 0.0022], [0.0022, 0.0021, 0.002, 0.002, 0.0015, 0.0015, 0.0015, 0.0015], [0.0675, 0.0436, 0.011, 0.0059, 0.0059, 0.0052, 0.0052, 0.0046], [0.0151, 0.0032, 0.0022, 0.0019, 0.0018, 0.0017, 0.0012, 0.0012], [0.0107, 0.0094, 0.0054, 0.005, 0.0035, 0.0033, 0.0031, 0.0029], [0.0049, 0.0034, 0.0032, 0.0013, 0.0013, 0.0012, 0.0012, 0.0012], [0.0052, 0.0052, 0.0046, 0.0016, 0.0013, 0.0013, 0.0012, 0.0012], [0.0027, 0.0019, 0.0015, 0.0015, 0.0014, 0.0013, 0.0013, 0.0012], [0.0311, 0.0156, 0.0074, 0.0054, 0.0048, 0.0042, 0.0033, 0.0021], [0.0166, 0.013, 0.0089, 0.0054, 0.0048, 0.0035, 0.0033, 0.0024], [0.0256, 0.0212, 0.0188, 0.0129, 0.0107, 0.01, 0.0089, 0.0069], [0.171, 0.0231, 0.0124, 0.0096, 0.008, 0.008, 0.0075, 0.0066], [0.5356, 0.0162, 0.0126, 0.0087, 0.0087, 0.0067, 0.0063, 0.006], [0.2959, 0.0376, 0.0243, 0.0147, 0.0122, 0.0054, 0.0051, 0.0048], [0.0934, 0.0285, 0.0222, 0.0222, 0.0119, 0.0098, 0.0056, 0.0044], [0.0315, 0.0109, 0.0102, 0.0102, 0.0058, 0.0031, 0.0031, 0.0027], [0.0268, 0.0222, 0.0173, 0.0068, 0.006, 0.006, 0.0056, 0.0044], [0.0091, 0.0086, 0.0086, 0.008, 0.0063, 0.0052, 0.0043, 0.0043], [0.2823, 0.2199, 0.1334, 0.0461, 0.0433, 0.0298, 0.0091, 0.0075], [0.0344, 0.0162, 0.0152, 0.0105, 0.0098, 0.0087, 0.006, 0.006], [0.2933, 0.0256, 0.0155, 0.0129, 0.0107, 0.0069, 0.0069, 0.0065], [0.7351, 0.0684, 0.0532, 0.0112, 0.0047, 0.0028, 0.0021, 0.0021], [0.2165, 0.2034, 0.0703, 0.0275, 0.0243, 0.0189, 0.013, 0.0074], [0.5258, 0.0914, 0.0757, 0.0336, 0.018, 0.0132, 0.0058, 0.0048], [0.1444, 0.0823, 0.0343, 0.0221, 0.0221, 0.0208, 0.0195, 0.0172], [0.0831, 0.0445, 0.0392, 0.0306, 0.0253, 0.0238, 0.0185, 0.0185], [0.079, 0.0291, 0.0256, 0.0188, 0.0188, 0.0176, 0.0166, 0.0146], [0.0777, 0.0471, 0.0443, 0.0324, 0.0286, 0.0173, 0.0163, 0.0163], [0.0533, 0.0501, 0.039, 0.039, 0.0252, 0.0237, 0.0209, 0.0196], [0.0738, 0.054, 0.0448, 0.0421, 0.0328, 0.0308, 0.0211, 0.0199], [0.0536, 0.0503, 0.0368, 0.0346, 0.0325, 0.0305, 0.0269, 0.0238], [0.061, 0.0505, 0.0505, 0.0307, 0.0239, 0.0224, 0.0211, 0.0211], [0.0595, 0.0525, 0.0436, 0.0409, 0.0319, 0.0219, 0.0206, 0.0182], [0.0596, 0.0464, 0.041, 0.0319, 0.0282, 0.0282, 0.0233, 0.0182], [0.0594, 0.0558, 0.0463, 0.0384, 0.0339, 0.0299, 0.0299, 0.0219], [0.0517, 0.0486, 0.0456, 0.0403, 0.0355, 0.0295, 0.0295, 0.0295], [0.0449, 0.0449, 0.0422, 0.0397, 0.0373, 0.0273, 0.0273, 0.0256], [0.062, 0.0483, 0.0483, 0.0332, 0.0332, 0.0293, 0.0275, 0.0258], [0.0538, 0.0505, 0.0474, 0.0419, 0.0326, 0.0306, 0.0254, 0.0254], [0.0534, 0.0502, 0.0416, 0.0345, 0.0304, 0.0269, 0.0223, 0.0209], [0.041, 0.034, 0.0319, 0.03, 0.0282, 0.0233, 0.0219, 0.0182], [0.0414, 0.0414, 0.0285, 0.0267, 0.0222, 0.0208, 0.0196, 0.0196], [0.0682, 0.0267, 0.0251, 0.0221, 0.0208, 0.0195, 0.0183, 0.0172], [0.2224, 0.025, 0.022, 0.0142, 0.0134, 0.0134, 0.0111, 0.0104], [0.2262, 0.0393, 0.0238, 0.0238, 0.0145, 0.0136, 0.0113, 0.0106], [0.1968, 0.1737, 0.0771, 0.0724, 0.0639, 0.0364, 0.0342, 0.0207], [0.2407, 0.1137, 0.0886, 0.069, 0.0505, 0.0254, 0.0254, 0.0198], [0.343, 0.1046, 0.0923, 0.0464, 0.0362, 0.0282, 0.0248, 0.0206], [0.3918, 0.1122, 0.0681, 0.053, 0.053, 0.0388, 0.025, 0.0235], [0.8762, 0.0494, 0.03, 0.011, 0.0067, 0.0052, 0.0036, 0.0028], [0.5072, 0.3486, 0.0472, 0.0223, 0.0197, 0.006, 0.0044, 0.0027], [0.8094, 0.0853, 0.0356, 0.0168, 0.0102, 0.0031, 0.0027, 0.0023], [0.9121, 0.0515, 0.0089, 0.0037, 0.0026, 0.0019, 0.0015, 0.0014], [0.9397, 0.0468, 0.0092, 0.0012, 0.0004, 0.0003, 0.0002, 0.0001], [0.7785, 0.1054, 0.093, 0.0143, 0.0015, 0.0012, 0.0008, 0.0004], [0.5639, 0.3876, 0.0193, 0.0117, 0.0103, 0.0049, 0.0005, 0.0004], [0.5894, 0.4051, 0.0017, 0.0011, 0.0011, 0.0006, 0.0002, 0.0001]], "ranks": {"Kotlin": [182713, 158841, 126337, 14513, 12819, 25366, 37028, 88601, 105285, 144670, 116333, 90355, 57962, 76497, 170387, 74360, 76987, 89719, 129317, 193289, 230968, 170729, 217767, 237270, 195859, 146295, 155613, 185549, 145186, 100119, 163446, 159821, 102608, 49787, 60308, 60424, 70104, 53199, 68927, 53344, 45002, 61270, 46448, 37661, 43937, 77191, 55697, 77370, 75519, 50603, 91957, 59462, 64512, 88477, 91351, 92316, 73777, 67212, 46373, 39203, 58133, 78352, 68494]}}, {"pos": 379, "top": [[".", ",", "\u2013", " \u2013", ";", "\u00a0", ":", "\u2013and"], [" \u2013", "\u2013", ",", ";", ".", "hips", "\u2013and", "\u00ad"], [",", ".", "\u2013", ";", " \u2013", ":", ".\u2013", "?"], [" Shemale", "\ufffd\ufffd", " ;;^", " milfs", "\ufffd\ufffd", "IZAR", " pornstar", "TRGL"], [" \u200b\u200b", ".", " Pro", ",", " Stre", ":", " Zer", "\u82b7"], [",", ".", " \u200b\u200b", ":", ";", ".Pro", ".:", " Zer"], [".", ",", ":", ";", ".\"", " \u200b\u200b", "!", ":\""], [":", ".", ",", "\u653e\u77e2", "hips", "archical", " \u200b\u200b", "\u4efb\u6028"], [".", ",", ":", "\u00b4s", ";", "schild", " ().", ".\""], [",", ".", ";", " whilst", "\u4e0d\u80fd\u591f", ":", "Whilst", "\u8ba4\u8ba4\u771f"], [",", ".", ";", ":", ".\"", ".[", "\\.", " whilst"], ["\u8ba4\u8ba4\u771f", "\u5e74\u9752", "archical", "\u653e\u77e2", "\u5b50\u69d8", "\u6c14\u4e86", "\u5fc3\u4e2d\u6709\u6570", "\u6bcf\u4e00\u4e2a\u4eba\u7684"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "archical", "\u5730\u5740\u4f4d\u4e8e", " Shemale", "\u653e\u77e2", " pornstar", "\u5fc3\u4e2d\u6709\u6570", "\u6c14\u4e86"], ["archical", "\u4e5f\u662f\u5341\u5206", "\u5730\u5740\u4f4d\u4e8e", "\u5fc3\u4e2d\u6709\u6570", "\u653e\u77e2", ".epam", "\u7acb\u5373\u8d2d\u4e70", "idere"], [" utilizing", " conceptual", "\u6bcf\u4e00\u4e2a\u4eba\u7684", " utilized", "\u8ba4\u8ba4\u771f", " impactful", "\u80fd\u591f\u8ba9", "\u4f46\u4e0d\u9650\u4e8e"], ["\u8ba4\u8ba4\u771f", " impactful", " utilizing", " conceptual", " incredible", " behavioral", " transitioning", "\u6bcf\u4e00\u4e2a\u4eba\u7684"], [" impactful", "\u8ba4\u8ba4\u771f", " incredibly", " incredible", " utilizing", " transitioning", " conceptual", " beautiful"], [" impactful", "\u8ba4\u8ba4\u771f", " incredibly", " freaking", " incredible", "idere", "utang", "\u6570\u5b57\u5316\u8f6c\u578b"], [" incredibly", " incredible", " freaking", " impactful", " impeccable", " terrible", " beautiful", " fantastic"], [" incredibly", " incredible", " truly", " beautifully", " amazing", " freaking", " fantastic", " relentless"], [" incredibly", " truly", " incredible", " aggressively", " wildly", " relentlessly", " freaking", " relentless"], [" incredibly", " incredible", "\u8ba4\u8ba4\u771f", "\u62e5\u6709\u7740", " freaking", "\u3092\u5c55\u958b", "\u6bcf\u4e00\u4e2a\u4eba\u7684", "idere"], [" incredibly", "\u62e5\u6709\u7740", " impacting", " incredible", "\u8ba4\u8ba4\u771f", " truly", "\u6bcf\u4e00\u4e2a\u4eba\u7684", " freaking"], [" incredibly", " truly", "\u62e5\u6709\u7740", " aggressively", " battling", " impacting", " relentlessly", " looming"], [" \n\n", " incredibly", "\u62e5\u6709\u7740", " \r\n\r\n", " impacting", " battling", "\n\n", " truly"], [" incredibly", "\u62e5\u6709\u7740", " impacting", " leveraging", " aggressively", " relentless", " freaking", " impactful"], [" incredibly", " impacting", "\u62e5\u6709\u7740", " aggressively", " leveraging", " relentless", " relentlessly", " battling"], [" incredibly", " aggressively", " truly", " impacting", " strategically", " relentlessly", " leveraging", " battling"], [" incredibly", " aggressively", " leveraging", " strategically", " foundational", " relentless", " impacting", " looming"], [" incredibly", " aggressively", " leveraging", " strategically", " relentless", " foundational", " relentlessly", " heavily"], [" incredibly", " aggressively", " relentlessly", " truly", " relentless", " massive", " strategically", " huge"], [" incredibly", " aggressively", " relentlessly", " huge", " massive", " relentless", " truly", " strategically"], [" incredibly", " relentlessly", " aggressively", " massive", " relentless", " strategically", " huge", " massively"], [" aggressively", " relentlessly", " incredibly", " fundamentally", " relentless", " strategically", " massively", " deeply"], [" aggressively", " incredibly", " relentlessly", " relentless", " desperately", " fundamentally", " strategically", " massively"], [" incredibly", " aggressively", " relentlessly", " relentless", " desperately", " massively", " extremely", " wildly"], [" aggressively", " incredibly", " relentlessly", " relentless", " desperately", " desperate", " wildly", " impossible"], [" aggressively", " incredibly", " relentlessly", " desperately", " relentless", " impossible", " desperate", " extremely"], [" relentlessly", " aggressively", " impossible", " desperately", " desperate", " incredibly", " relentless", " attempting"], [" relentlessly", " impossible", " aggressively", " desperate", " desperately", " relentless", " attempting", " incredibly"], [" aggressively", " impossible", " desperate", " attempting", " relentlessly", " desperately", " trying", " forcing"], [" aggressively", " attempting", " desperate", " relentlessly", " impossible", " forcing", " desperately", " desperation"], [" aggressively", " attempting", " desperate", " impossible", " relentlessly", " forcing", " desperation", " absurd"], [" forcing", " desperate", " attempting", " impossible", " aggressively", " desperation", " pushing", " desperately"], [" impossible", " forcing", " attempting", " trying", " desperate", " aggressively", " desperation", " pushing"], [" impossible", " forcing", " attempting", " desperate", " aggressively", " trying", " desperately", " desperation"], [" impossible", " forcing", " desperately", " desperate", " attempting", " aggressively", " trying", " dangerously"], [" attempting", " forcing", " trying", " aggressively", " impossible", " desperately", " pushing", " desperate"], [" attempting", " forcing", " aggressively", " impossible", " doomed", " desperate", " dangerously", " absurd"], [" attempting", "Attempting", "\u5012\u903c", " forcing", " unrealistic", "\u903c\u8feb", " doomed", " desperate"], ["\u5012\u903c", "Attempting", "\u903c\u8feb", " attempting", "\u5f3a\u884c", " doomed", " sabotage", " sabot"], [" attempting", "Attempting", "\u8bd5\u56fe", "Trying", " trying", " Trying", "trying", "\u5f3a\u884c"], [" attempting", "Attempting", " trying", " forcing", "Trying", "forcing", "\u8bd5\u56fe", "trying"], [" attempting", " trying", "Attempting", "Trying", "\u8bd5\u56fe", "trying", " Trying", " forcing"], [" attempting", " trying", "\u8bd5\u56fe", "Attempting", " Trying", "trying", "Trying", " Attempt"], [" attempting", " trying", "Attempting", "\u8bd5\u56fe", " chasing", " Trying", "Trying", "trying"], [" trying", " attempting", "\u8bd5\u56fe", "trying", " Trying", "Attempting", "Trying", " chasing"], [" trying", " attempting", " optimizing", "trying", " Trying", "\u8bd5\u56fe", " asking", "Attempting"], [" trying", " attempting", " optimizing", " Trying", " asking", "trying", "\u8bd5\u56fe", " chasing"], [" optimizing", " trying", " attempting", " now", " asking", " chasing", " optimization", " squeezing"], [" asking", " trying", " optimizing", "asking", " attempting", " Asking", " now", " chasing"], [" asking", " trying", " optimizing", " attempting", " now", "asking", " digging", " chasing"], [" asking", " optimizing", " trying", " attempting", " digging", " building", " now", " chasing"]], "p": [[0.5426, 0.3291, 0.0648, 0.0505, 0.0077, 0.001, 0.0008, 0.0005], [0.0295, 0.0295, 0.0245, 0.0123, 0.0096, 0.007, 0.0048, 0.0029], [0.6198, 0.2928, 0.0509, 0.0199, 0.0031, 0.0024, 0.0015, 0.0009], [0.0048, 0.0045, 0.0035, 0.0031, 0.0021, 0.0019, 0.0018, 0.0015], [0.0113, 0.0029, 0.002, 0.002, 0.0016, 0.0016, 0.0015, 0.0012], [0.116, 0.1089, 0.0797, 0.0312, 0.0048, 0.0014, 0.0014, 0.0013], [0.5581, 0.2327, 0.097, 0.0179, 0.0055, 0.002, 0.0016, 0.0012], [0.0153, 0.0087, 0.0044, 0.0034, 0.003, 0.0027, 0.0022, 0.0021], [0.2669, 0.0494, 0.0281, 0.0055, 0.0052, 0.0041, 0.0032, 0.003], [0.1933, 0.0124, 0.0055, 0.0052, 0.0052, 0.0048, 0.0033, 0.0029], [0.4522, 0.3748, 0.0165, 0.0137, 0.0022, 0.0011, 0.001, 0.0008], [0.0029, 0.0024, 0.0023, 0.0023, 0.0018, 0.0018, 0.0018, 0.0016], [0.0024, 0.0019, 0.0017, 0.0016, 0.0014, 0.0013, 0.0012, 0.0012], [0.0023, 0.002, 0.002, 0.0018, 0.0014, 0.0014, 0.0014, 0.0012], [0.0065, 0.0021, 0.0018, 0.0016, 0.0014, 0.0011, 0.001, 0.001], [0.0025, 0.0025, 0.0021, 0.0017, 0.0011, 0.0009, 0.0009, 0.0008], [0.0056, 0.0046, 0.0041, 0.0023, 0.0019, 0.0018, 0.0015, 0.0014], [0.0086, 0.0046, 0.0043, 0.0026, 0.0023, 0.0019, 0.0019, 0.0016], [0.0485, 0.0244, 0.0157, 0.0058, 0.0058, 0.0042, 0.0042, 0.0033], [0.399, 0.0651, 0.0476, 0.01, 0.0073, 0.0064, 0.0061, 0.005], [0.1504, 0.0296, 0.0123, 0.0075, 0.0058, 0.0058, 0.0055, 0.0048], [0.014, 0.0058, 0.0051, 0.0045, 0.0038, 0.0024, 0.0023, 0.002], [0.0395, 0.0199, 0.0064, 0.0057, 0.0053, 0.005, 0.0047, 0.0042], [0.0283, 0.0118, 0.0104, 0.0072, 0.0072, 0.0072, 0.0049, 0.0046], [0.0455, 0.0202, 0.0157, 0.0139, 0.0108, 0.0079, 0.0062, 0.0045], [0.0382, 0.0232, 0.0218, 0.0117, 0.0071, 0.0066, 0.0062, 0.0062], [0.0269, 0.0237, 0.0153, 0.0144, 0.0144, 0.0068, 0.006, 0.006], [0.0444, 0.0305, 0.0185, 0.012, 0.0099, 0.0093, 0.0093, 0.0087], [0.0643, 0.0415, 0.0268, 0.0144, 0.0144, 0.0135, 0.0127, 0.0112], [0.1023, 0.0748, 0.0353, 0.0243, 0.0214, 0.0178, 0.0147, 0.0115], [0.1093, 0.0852, 0.0276, 0.0215, 0.0202, 0.0178, 0.0168, 0.0158], [0.164, 0.0567, 0.0366, 0.0303, 0.0252, 0.0236, 0.0162, 0.0126], [0.0665, 0.0429, 0.0403, 0.0203, 0.0203, 0.0158, 0.0139, 0.0115], [0.1191, 0.0818, 0.0769, 0.0496, 0.0466, 0.025, 0.0161, 0.0142], [0.1313, 0.1023, 0.0961, 0.0547, 0.0157, 0.0157, 0.0147, 0.0147], [0.1688, 0.1315, 0.0661, 0.0515, 0.0276, 0.0189, 0.0178, 0.0167], [0.1995, 0.1068, 0.0572, 0.0369, 0.0326, 0.0174, 0.0145, 0.0136], [0.1089, 0.0749, 0.0515, 0.0401, 0.0332, 0.0293, 0.0228, 0.0167], [0.063, 0.0592, 0.0556, 0.0556, 0.0522, 0.0337, 0.0317, 0.0232], [0.0572, 0.0537, 0.0474, 0.0418, 0.0347, 0.0326, 0.0306, 0.0198], [0.0508, 0.0421, 0.0349, 0.0328, 0.0308, 0.0272, 0.024, 0.0212], [0.0727, 0.0532, 0.0441, 0.0365, 0.0322, 0.0303, 0.0251, 0.0236], [0.067, 0.0433, 0.0433, 0.0406, 0.0382, 0.0317, 0.0246, 0.0218], [0.0725, 0.064, 0.0565, 0.0531, 0.0413, 0.0413, 0.0365, 0.0322], [0.0705, 0.0622, 0.0484, 0.0402, 0.0402, 0.0354, 0.0294, 0.0294], [0.0685, 0.0644, 0.0471, 0.0416, 0.0391, 0.0367, 0.0304, 0.0286], [0.0673, 0.0558, 0.0408, 0.0383, 0.036, 0.0318, 0.0263, 0.0247], [0.2269, 0.0737, 0.0692, 0.0394, 0.037, 0.0307, 0.0288, 0.0271], [0.1169, 0.0804, 0.0588, 0.0458, 0.0315, 0.0245, 0.0216, 0.0168], [0.1889, 0.0541, 0.0478, 0.0396, 0.0308, 0.0308, 0.0272, 0.0272], [0.1099, 0.1032, 0.0804, 0.0626, 0.0626, 0.0216, 0.0203, 0.0149], [0.4104, 0.3622, 0.0629, 0.0297, 0.0159, 0.0132, 0.0132, 0.0116], [0.7188, 0.1102, 0.059, 0.0169, 0.0116, 0.0103, 0.0103, 0.009], [0.7035, 0.1385, 0.051, 0.0146, 0.0146, 0.0114, 0.01, 0.0089], [0.7027, 0.2281, 0.024, 0.0212, 0.0078, 0.0061, 0.0061, 0.0004], [0.7442, 0.1661, 0.0255, 0.0136, 0.0083, 0.0073, 0.0044, 0.0044], [0.5403, 0.3714, 0.0144, 0.0112, 0.0112, 0.0099, 0.0068, 0.0053], [0.5918, 0.2467, 0.0486, 0.0123, 0.0123, 0.0108, 0.0084, 0.0074], [0.6236, 0.1577, 0.0844, 0.0166, 0.0107, 0.0095, 0.0069, 0.0065], [0.5092, 0.2726, 0.0885, 0.0154, 0.0113, 0.0099, 0.0077, 0.006], [0.6606, 0.1474, 0.1148, 0.0155, 0.0121, 0.0054, 0.005, 0.0045], [0.6807, 0.1519, 0.0717, 0.0219, 0.0076, 0.0071, 0.0059, 0.0049], [0.4796, 0.1764, 0.1374, 0.0288, 0.0154, 0.0145, 0.01, 0.0073]], "ranks": {"Kotlin": [214437, 164430, 137926, 26525, 30456, 56853, 101121, 153168, 168911, 213034, 195521, 146502, 59981, 92338, 157783, 54121, 49230, 40148, 77565, 167483, 222541, 173605, 213549, 237746, 212062, 170664, 164697, 210702, 187521, 161214, 182974, 170185, 163872, 109519, 117473, 83191, 101691, 111350, 108408, 119947, 111511, 130739, 128163, 83024, 97327, 142042, 96659, 117031, 91842, 77456, 137048, 95550, 74622, 96563, 78515, 61508, 51310, 43622, 40017, 38482, 45625, 44812, 78466]}}, {"pos": 380, "top": [["s", " \u2013", "\u2013", ",", ".", "?", " ", "a"], ["s", " \u2013", "\u2013", ",", "\u2013and", " \ud83d\ude42", ".", " \u2013,"], ["\u2013", "s", ",", " \u2013", ".", "\u2013and", " \ud83d\ude42", ".\u2013"], ["sprozess", "sula", "schrift", "schaft", "sider", "sik", "satz", "sworth"], ["s", "sche", "sider", "\u0627\u062a", ",", "sense", "siz", "sik"], ["s", " \u200b\u200b", "siz", "sider", " \ud83d\ude42", "schaft", ",", "ska"], ["s", "siz", "ska", " \u200b\u200b", "schaft", " \ud83d\ude42", "!\"", ","], ["s", "schaft", "schn", "ska", "sche", "adays", "sut", " \ud83d\ude42"], ["s", "!\u201d.", "!.", "!\u201d", "schn", " \ud83d\ude42", "!\",", "!\"."], ["s", "ska", ",", "schn", "adays", "!:", "schaft", "!\","], ["s", "ska", "adays", "schaft", "!\"", "\ud83d\ude42", " \ud83d\ude42", "!!"], ["adays", "schaft", "satz", "schn", "schrift", "ska", "trz", "\u8d44\u8baf\u7f51"], ["adays", "schrift", "schaft", "schn", "sworth", "ska", "\u8d44\u8baf\u7f51", "satz"], ["ska", "schn", "Whilst", "adays", "sworth", "\u4e5f\u6210\u4e3a\u4e86", "schaft", "rish"], [" transitioning", " showcasing", "schn", "ska", "\u63d0\u5347\u81f3", "snap", "\u7684\u5168\u65b0", "s"], ["schn", "Whilst", "\u4e5f\u6210\u4e3a\u4e86", "sworth", " whilst", "\u9526\u6d9b", "\u65b0\u5e38\u6001", "\u7684\u5168\u65b0"], ["s", " transitioning", " leveraging", "schn", " showcasing", " comfortably", "sworth", "ska"], [" transitioning", "s", " leveraging", "schn", " seamlessly", " showcasing", "ska", " incredibly"], [" incredibly", " NOW", "schn", " transitioning", " leveraging", " comfortably", "s", " seamlessly"], [" NOW", "s", " incredibly", " fully", " comfortably", "schn", " truly", " transitioning"], [" NOW", "s", " fully", " transitioning", "\u62e5\u6709\u4e00\u4e2a", "\u62e5\u6709\u7740", " poised", " becoming"], ["schn", "\u62e5\u6709\u7740", " NOW", "\u6210\u4e3a\u5168\u7403", "\u4e5f\u6210\u4e3a\u4e86", "mtree", "\u5386\u53f2\u65b0\u9ad8", "\u7684\u5168\u65b0"], ["\u62e5\u6709\u7740", " transitioning", " leveraging", " becoming", "\u6210\u4e3a\u5168\u7403", " NOW", " incredibly", "\u4e5f\u6210\u4e3a\u4e86"], [" becoming", " transitioning", "\u62e5\u6709\u7740", " NOW", " fully", " advancing", " foc", " shifting"], ["\u62e5\u6709\u7740", " \r\n\r\n", " transitioning", " squarely", " becoming", " NOW", " leveraging", "\r\n\r\n"], [" leveraging", "\u62e5\u6709\u7740", " transitioning", " becoming", " squarely", " impacting", " partnering", " incredibly"], [" leveraging", " transitioning", "\u62e5\u6709\u7740", " becoming", " wielding", " partnering", " impacting", " shifting"], ["\n\n", " becoming", " arguably", " leveraging", " fully", " transitioning", " \n\n", " shifting"], [" leveraging", " transitioning", " becoming", " shifting", " arguably", " strategically", "\n\n", " partnering"], [" leveraging", " transitioning", " strategically", " becoming", " incredibly", " shifting", " increasingly", " focus"], [" **", " leveraging", " incredibly", " strategically", " increasingly", " focus", " NOW", " aggressively"], [" incredibly", " strategically", " aggressively", " rapidly", " focus", " heavily", " dramatically", " critical"], [" incredibly", " strategically", " focus", " critical", " focused", " now", " aggressively", " **"], [" aggressively", " incredibly", " strategically", " massively", " leveraging", " deeper", " heavily", " deeply"], [" aggressively", " incredibly", " strategically", " massively", " leveraging", " relentlessly", " brutally", " dramatically"], [" incredibly", " aggressively", " massively", " strategically", " relentless", " relentlessly", " increasingly", " desperately"], [" aggressively", " incredibly", " desperately", " massively", " desperate", " brutally", " relentlessly", " worse"], [" aggressively", " incredibly", " massively", " desperately", " desperate", " increasingly", " deliberately", " strategically"], [" desperate", " incredibly", " desperately", " aggressively", " impossible", " brutally", " massively", " dangerously"], [" impossible", " desperate", " incredibly", " desperately", " brutally", " aggressively", " deliberately", " dangerously"], [" desperate", " impossible", " incredibly", " dangerously", " deliberately", " desperately", " absurd", " massively"], [" desperate", " aggressively", " desperately", " exploding", " catastrophic", " deliberately", " impossible", " incredibly"], [" desperate", " aggressively", " deliberately", " desperately", " impossible", " exploding", " catastrophic", " absurd"], [" desperate", " desperately", " impossible", " attempting", " forcing", " desperation", " forced", " pushing"], [" desperate", " forcing", " desperately", " impossible", " forced", " trying", " worse", " pushing"], [" desperate", " impossible", " forcing", " desperately", " worse", " desperation", " pushing", " forced"], [" worse", " now", " impossible", " forcing", " desperate", " desperately", " aggressively", " forced"], [" forcing", " impossible", " forced", " squarely", " desperately", " pushing", " attempting", " aggressively"], [" **", " impossible", " forcing", " aggressively", " forced", " squarely", " desperately", " attempting"], [" attempting", "\u5012\u903c", " impossible", " squarely", " contradictions", " desperate", " forcing", " forced"], ["\u5012\u903c", " attempting", "Attempting", "\u903c\u8feb", " contradictions", " impossible", " Impossible", " squarely"], [" attempting", "Attempting", " trying", "\u660e\u786e\u8981\u6c42", "Trying", " Trying", "\u5012\u903c", "trying"], [" attempting", "Attempting", " trying", " forcing", " risking", "\u660e\u786e\u8981\u6c42", "forcing", "trying"], [" attempting", " trying", "Attempting", " fighting", " contradictions", " contradict", " Trying", "trying"], [" attempting", " trying", "Attempting", " fighting", "\u8bd5\u56fe", " Trying", "trying", " battling"], [" attempting", " trying", " fighting", "Attempting", " battling", "\u8bd5\u56fe", " chasing", " Trying"], [" trying", " attempting", " fighting", " battling", "trying", " Trying", "Attempting", "\u8bd5\u56fe"], [" trying", " optimizing", " attempting", " fighting", " battling", "trying", " Trying", "\u660e\u786e\u8981\u6c42"], [" trying", " optimizing", " attempting", " fighting", " battling", "trying", " Trying", "Trying"], [" optimizing", " fighting", " trying", " attempting", " battling", " chasing", " asking", " screaming"], [" optimizing", " asking", " trying", " fighting", "asking", " attempting", " chasing", " battling"], [" asking", " optimizing", " trying", " fighting", " attempting", "asking", " chasing", " demanding"], [" optimizing", " asking", " trying", " fighting", " building", " demanding", " attempting", " trading"]], "p": [[0.9669, 0.0292, 0.0016, 0.0013, 0.0008, 0.0, 0.0, 0.0], [0.7987, 0.1081, 0.0743, 0.0045, 0.0019, 0.0004, 0.0004, 0.0002], [0.5489, 0.3329, 0.0656, 0.0351, 0.0051, 0.0045, 0.0011, 0.0007], [0.0177, 0.0101, 0.0078, 0.0061, 0.0054, 0.0051, 0.0048, 0.0045], [0.9872, 0.0003, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001], [0.4799, 0.0175, 0.0078, 0.0042, 0.0042, 0.0034, 0.0034, 0.0025], [0.9468, 0.0009, 0.0009, 0.0007, 0.0005, 0.0004, 0.0004, 0.0003], [0.3494, 0.0473, 0.0269, 0.0197, 0.0144, 0.0099, 0.0053, 0.0053], [0.1931, 0.0488, 0.0336, 0.0246, 0.0217, 0.0191, 0.018, 0.0159], [0.0221, 0.0092, 0.0053, 0.0038, 0.0036, 0.003, 0.0026, 0.0022], [0.1734, 0.0195, 0.0063, 0.0041, 0.0028, 0.0026, 0.0025, 0.0023], [0.0053, 0.005, 0.0047, 0.0041, 0.0039, 0.0037, 0.0037, 0.0027], [0.0053, 0.0041, 0.0036, 0.0036, 0.0032, 0.003, 0.0022, 0.0021], [0.0043, 0.004, 0.0038, 0.0036, 0.002, 0.0019, 0.0017, 0.0017], [0.0092, 0.0046, 0.0043, 0.0043, 0.0032, 0.0026, 0.0025, 0.0022], [0.0063, 0.0028, 0.0022, 0.0022, 0.0018, 0.0015, 0.0014, 0.0012], [0.0752, 0.0062, 0.004, 0.0037, 0.0027, 0.0026, 0.0026, 0.0024], [0.0137, 0.0107, 0.0083, 0.0057, 0.0037, 0.0037, 0.0035, 0.0024], [0.0123, 0.009, 0.007, 0.0051, 0.004, 0.0033, 0.0033, 0.0028], [0.0113, 0.0106, 0.0088, 0.005, 0.0044, 0.0042, 0.0037, 0.0034], [0.0144, 0.0053, 0.0047, 0.0047, 0.0036, 0.003, 0.003, 0.003], [0.0027, 0.0025, 0.0021, 0.0017, 0.0016, 0.0016, 0.0016, 0.0015], [0.0108, 0.0079, 0.0029, 0.0027, 0.0024, 0.0021, 0.002, 0.0017], [0.0253, 0.0082, 0.0073, 0.0068, 0.0064, 0.0034, 0.0034, 0.0032], [0.0074, 0.0069, 0.0057, 0.0054, 0.0047, 0.0047, 0.0045, 0.0035], [0.0194, 0.0142, 0.0092, 0.0034, 0.0032, 0.0032, 0.003, 0.0028], [0.0279, 0.0149, 0.0116, 0.0116, 0.0058, 0.0055, 0.0052, 0.0035], [0.0383, 0.0232, 0.0117, 0.011, 0.0097, 0.0097, 0.0091, 0.0075], [0.0468, 0.0221, 0.0126, 0.0111, 0.0104, 0.0104, 0.0063, 0.0063], [0.0758, 0.0231, 0.0192, 0.0149, 0.0124, 0.0116, 0.0116, 0.0109], [0.0729, 0.0323, 0.0184, 0.0153, 0.0127, 0.0119, 0.0119, 0.0093], [0.0409, 0.0281, 0.0193, 0.0193, 0.0141, 0.0141, 0.0133, 0.0133], [0.0272, 0.0212, 0.0175, 0.0145, 0.0137, 0.0128, 0.0121, 0.0106], [0.0412, 0.0341, 0.0321, 0.0235, 0.0207, 0.0142, 0.0142, 0.0118], [0.0512, 0.0452, 0.0213, 0.0213, 0.0147, 0.0147, 0.0129, 0.0114], [0.0704, 0.0515, 0.0259, 0.0215, 0.0178, 0.0167, 0.0157, 0.0157], [0.1055, 0.0601, 0.0251, 0.0183, 0.0172, 0.0162, 0.0134, 0.0118], [0.0577, 0.0449, 0.0187, 0.0187, 0.0165, 0.0137, 0.0129, 0.0121], [0.0489, 0.0381, 0.0381, 0.0297, 0.0297, 0.018, 0.0169, 0.0149], [0.0363, 0.0341, 0.0341, 0.0266, 0.0235, 0.0183, 0.0183, 0.0183], [0.0312, 0.0276, 0.0259, 0.0243, 0.0243, 0.0215, 0.0189, 0.0178], [0.0427, 0.0259, 0.0259, 0.0202, 0.0202, 0.0202, 0.0167, 0.0157], [0.0488, 0.0296, 0.0296, 0.0216, 0.0216, 0.0158, 0.0149, 0.0149], [0.085, 0.0354, 0.0333, 0.0294, 0.0294, 0.0276, 0.0259, 0.0229], [0.0435, 0.0318, 0.0299, 0.0299, 0.0248, 0.0248, 0.0233, 0.0219], [0.0395, 0.0289, 0.0255, 0.0225, 0.0211, 0.0198, 0.0198, 0.0186], [0.0443, 0.0286, 0.0286, 0.0253, 0.0223, 0.0209, 0.0163, 0.0153], [0.0462, 0.036, 0.028, 0.0263, 0.0247, 0.0232, 0.0218, 0.0205], [0.1435, 0.032, 0.0301, 0.0283, 0.0249, 0.0234, 0.0207, 0.0182], [0.0675, 0.0526, 0.0436, 0.0361, 0.0264, 0.0233, 0.0219, 0.0182], [0.2432, 0.035, 0.0256, 0.0241, 0.0226, 0.02, 0.0155, 0.0146], [0.3541, 0.2148, 0.045, 0.0241, 0.0226, 0.0213, 0.02, 0.0188], [0.4641, 0.1035, 0.0914, 0.0406, 0.0336, 0.0132, 0.0116, 0.0109], [0.5702, 0.1851, 0.0601, 0.0162, 0.0152, 0.0134, 0.0111, 0.0111], [0.6268, 0.2306, 0.0515, 0.0312, 0.0214, 0.0089, 0.007, 0.0061], [0.6171, 0.1377, 0.0835, 0.0447, 0.0307, 0.0128, 0.0113, 0.0078], [0.5938, 0.2475, 0.043, 0.0203, 0.0158, 0.014, 0.0123, 0.0085], [0.4987, 0.2079, 0.1261, 0.0409, 0.0171, 0.0151, 0.0117, 0.0091], [0.4991, 0.2357, 0.0765, 0.0675, 0.0151, 0.0117, 0.0117, 0.0059], [0.5017, 0.237, 0.1846, 0.025, 0.0092, 0.003, 0.0026, 0.0018], [0.4737, 0.1975, 0.1743, 0.0933, 0.0111, 0.0077, 0.0026, 0.0025], [0.3264, 0.3264, 0.198, 0.0501, 0.0127, 0.0072, 0.0032, 0.0027], [0.5632, 0.1828, 0.0864, 0.0408, 0.0205, 0.0097, 0.0071, 0.0049]], "ranks": {"Kotlin": [182191, 181994, 123272, 20899, 23587, 101211, 139717, 133641, 77276, 135753, 126361, 57647, 43991, 62273, 121257, 109678, 57210, 57270, 61876, 121606, 199953, 101277, 140725, 224210, 161548, 99577, 124757, 182003, 147177, 91645, 75160, 121106, 88141, 53717, 44277, 38879, 45093, 30760, 55402, 58277, 69541, 89778, 80726, 59526, 70833, 88219, 87768, 103747, 72332, 86794, 123616, 93800, 78916, 73512, 66440, 37223, 31918, 33929, 30314, 22408, 43731, 31443, 45596]}}, {"pos": 381, "top": [[" \u2013", "\u2013", ".", "\u2013and", ",", "\u2013\u2013", " \u2013,", " [\u2026]"], [" \u2013", "\u2013\u2013", "\u2013", " \u2013**", "\u2013and", " \u2013,", " *\u2013", "**\u2013"], ["\u2013", " \u2013", "\u2013and", "**\u2013", "\u2026..", ".\u2013", "\u2013\u2013", " \u2013,"], [" **\u2018", "aruhi", " \u041a\u0440\u0430\u0441\u0438", " milfs", " **:**", "\u52a0\u62ff\u5927", "\uff3f\uff3f", " \u041f\u043e\u043f\u0440\u043e"], [" **\u2018", " **\u201c", "\uff1a\u201c", "!\u201c", "?\u201c", "i\u00e9s", " \u041a\u0440\u0430\u0441\u0438", " *\u201c"], ["!\u201c", " **\u2018", "?\u201c", " \u201d", " **\u201c", "\uff1a\u201c", " \u201c.", "=\u201d"], [" **\u2018", "!\u201c", "\uff1a\u201c", " **\u201c", "?\u201c", " \u201d", " `\"", " *\u201c"], [" **\u2018", " **\u201e", ":`", " `\"", " **\u201c", " **\"", "!\u201c", "?\u201c"], ["?\u201c", ":`", "!\u201c", " *\u201c", " `\"", "\uff1a\u201c", " **\u2018", "*\u201c."], [" **\u2018", ":`", ":\"", "?\u201c", " **\"", " `\"", " $\"", "!\u201c"], [":`", " **\u2018", " `\"", "?\u201c", "\"`", ":\"", " **\u201c", "   \r\n"], [" **\u2018", " **\u201e", " **'", " **>>", " **\"", " **\u201c", " **\u00ab", ":`"], [" **\u201e", " **\u2018", " **>>", " **\u00ab", " **'", " **\u300c", ":''", "evas"], [" **\u201e", ".omg", "evas", " Shemale", "icza", "enje", " iepaz\u012b\u0161an\u0101s", " Blowjob"], [" ``", " `\"", ".omg", " '`", ":`", " `'", "enje", " \"`"], [" ``", "\u548c\u601d\u8003", ".omg", "evas", "inqui", " Blowjob", " '`", "\u5230\u5927\u5bb6"], ["\u548c\u601d\u8003", "olutely", ".omg", "tiz", "inqui", " really", "evas", "\u5230\u5927\u5bb6"], [" **\u201e", "inqui", ".omg", " **\u00ab", "\u60f3\u77e5\u9053\u7684\u7b54\u6848", "olutely", " iepaz\u012b\u0161an\u0101s", "eberg"], ["inqui", "olutely", "\u60f3\u77e5\u9053\u7684\u7b54\u6848", ".omg", " asking", "('?", " **\u201e", "\u5730\u95ee"], [" asking", "olutely", "\u5730\u95ee", " ask", " \"`", " wondering", "\u60f3\u77e5\u9053\u7684\u7b54\u6848", " folks"], [" \"`", " asking", "\u5730\u95ee", "_ask", " '`", " folks", " `\"", " wondering"], ["\u5730\u95ee", "\u60f3\u77e5\u9053\u7684\u7b54\u6848", " '`", "\u4ec0\u4e48\u5462", "olutely", "_ask", "('?", " asking"], [" '`", " asking", "\u5730\u95ee", " \"`", " ``", "\u95ee\u9053", "\u60f3\u77e5\u9053\u7684\u7b54\u6848", "_ask"], [" asking", " \"`", "\u5730\u95ee", " ask", " wondering", " '`", "_ask", " truly"], ["  \n\n", "   \n\n", "\n\n", " \n\n", " asking", "\r\n\r\n", " \r\n\r\n", "  \r\n\r\n"], [" asking", " ask", "questions", "\u5730\u95ee", " folks", "\u8be2\u95ee", " questions", "\u95ee\u9053"], [" asking", " ask", " questions", "\u5730\u95ee", "questions", "\u95ee\u9053", " question", " Asking"], ["\n\n", " asking", "  \n\n", " \n\n", "\r\n\r\n", "   \n\n", " ask", " questions"], [" asking", "  \n\n", " ask", " questions", "   \n\n", "questions", "\n\n", " Asking"], [" asking", " ask", " questions", "   \n\n", "  \n\n", " Asking", " incredibly", " question"], [" asking", " truly", " ask", " questions", " incredibly", " really", " question", " genuinely"], [" incredibly", " truly", " asking", " really", " genuinely", " literally", " ask", " questions"], [" incredibly", " truly", " asking", " really", " literally", " questions", " huge", " ask"], [" incredibly", " truly", " literally", " genuinely", " fundamentally", " really", " asking", " wildly"], [" incredibly", " ridiculously", " asking", " truly", " absurd", " genuinely", " literally", " weird"], [" incredibly", " ridiculously", " asking", " desperately", " impossible", " notoriously", " truly", " wildly"], [" incredibly", " ridiculously", " impossible", " asking", " absurd", " desperately", " ridiculous", " notoriously"], [" impossible", " asking", " incredibly", " absurd", " ridiculous", " ridiculously", " literally", " demanding"], [" impossible", " absurd", " asking", " demanding", " Impossible", " ridiculous", " ask", " ridiculously"], [" impossible", " demanding", " asking", " Impossible", " absurd", " ask", " ridiculous", " incredibly"], [" demanding", " impossible", " asking", " ask", " absurd", " Impossible", " ridiculous", " demands"], [" demanding", " impossible", " asking", " Impossible", " demands", " absurd", " incredibly", " ask"], [" impossible", " demanding", " Impossible", " asking", " absurd", " demands", " paradox", " ask"], [" impossible", " demanding", " Impossible", " demands", " asking", " absurd", " unrealistic", " demand"], [" impossible", " demanding", " Impossible", " demands", " unrealistic", " absurd", " expecting", " improbable"], [" impossible", " demanding", " Impossible", " demands", " expecting", " absurd", " asking", " improbable"], [" impossible", " demanding", " Impossible", " demands", " asking", " literally", " expecting", " demand"], [" impossible", " demanding", " Impossible", " essentially", " demands", " literally", " simultaneously", " asking"], [" impossible", " demanding", " Impossible", " demands", " asking", "Impossible", " demand", " absurd"], [" Impossible", " impossible", " demanding", "Impossible", " unrealistic", " demands", " contradictory", " paradox"], [" Impossible", " impossible", "Impossible", " demanding", " imposs", "\u4e0d\u53ef\u80fd\u7684", " unrealistic", " impossibile"], [" Impossible", " impossible", "Impossible", "\u4e0d\u53ef\u80fd\u7684", " impossibile", " imposs", " imposs\u00edvel", " physics"], [" impossible", " Impossible", "Impossible", " hardware", "\u4e0d\u53ef\u80fd\u7684", " imposs", " impossibile", " physics"], [" impossible", " Impossible", "Impossible", " hardware", "\u4e0d\u53ef\u80fd\u7684", " imposs", " imposs\u00edvel", "\u662f\u4e0d\u53ef\u80fd\u7684"], [" impossible", " Impossible", "Impossible", " physics", " hardware", "\u4e0d\u53ef\u80fd\u7684", " imposs", "physics"], [" hardware", " Impossible", " physics", " impossible", "physics", " Hardware", " Physics", "Hardware"], [" impossible", " Impossible", " physics", "Impossible", "physics", " hardware", " imposs", " Physics"], [" Impossible", " impossible", " hardware", " physics", "Impossible", "physics", " Hardware", "Hardware"], [" physics", "physics", " hardware", " Physics", " Impossible", "\u7269\u7406\u5b66", " impossible", "Physics"], [" physics", " hardware", " Kotlin", "physics", " Physics", " Impossible", " impossible", "\u7269\u7406\u5b66"], [" physics", " Kotlin", " for", " hardware", " impossible", " Impossible", "physics", " Physics"], [" Kotlin", " for", " physics", " hardware", " impossible", " Java", " Physics", " Impossible"], [" for", " Kotlin", " physics", " Java", " Kubernetes", " hardware", " Python", " impossible"]], "p": [[0.9959, 0.0036, 0.0003, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.7748, 0.034, 0.032, 0.0151, 0.0111, 0.0059, 0.0032, 0.0018], [0.5702, 0.2693, 0.0365, 0.0235, 0.0162, 0.0143, 0.0104, 0.0072], [0.0154, 0.0136, 0.0136, 0.0088, 0.0078, 0.0073, 0.0073, 0.0068], [0.0665, 0.0404, 0.0261, 0.0203, 0.0168, 0.0123, 0.009, 0.009], [0.0365, 0.0365, 0.0251, 0.0235, 0.0235, 0.0221, 0.0143, 0.0134], [0.0574, 0.0539, 0.042, 0.0395, 0.0348, 0.0327, 0.0255, 0.0239], [0.0788, 0.074, 0.0509, 0.0478, 0.0328, 0.0272, 0.0176, 0.0165], [0.0711, 0.0667, 0.052, 0.0459, 0.0431, 0.0296, 0.0278, 0.0204], [0.0289, 0.0176, 0.0155, 0.0106, 0.005, 0.0047, 0.0044, 0.0044], [0.0845, 0.0794, 0.0177, 0.0114, 0.0101, 0.0084, 0.0079, 0.0069], [0.1463, 0.1213, 0.0239, 0.0175, 0.012, 0.0113, 0.01, 0.0083], [0.1014, 0.0226, 0.0137, 0.0073, 0.0054, 0.0045, 0.0045, 0.0042], [0.0147, 0.0084, 0.0061, 0.0035, 0.0033, 0.0026, 0.0026, 0.0024], [0.0205, 0.0124, 0.0117, 0.0067, 0.0062, 0.0049, 0.0046, 0.0028], [0.0072, 0.0053, 0.005, 0.0047, 0.0039, 0.0023, 0.0019, 0.0019], [0.0057, 0.0032, 0.003, 0.0029, 0.0022, 0.0021, 0.0018, 0.0017], [0.0066, 0.0062, 0.0052, 0.0038, 0.0038, 0.0038, 0.0031, 0.0031], [0.0056, 0.0044, 0.0044, 0.0039, 0.0036, 0.0023, 0.0023, 0.0022], [0.0093, 0.0082, 0.0077, 0.006, 0.005, 0.005, 0.0047, 0.0047], [0.0157, 0.0084, 0.0079, 0.0045, 0.0045, 0.0045, 0.0037, 0.0033], [0.0144, 0.0068, 0.0068, 0.0053, 0.0053, 0.0047, 0.0044, 0.0039], [0.0248, 0.0219, 0.0171, 0.0151, 0.0097, 0.0076, 0.0067, 0.0067], [0.082, 0.0321, 0.0134, 0.0126, 0.0098, 0.0092, 0.0081, 0.0072], [0.239, 0.1129, 0.0729, 0.0568, 0.0344, 0.0209, 0.0196, 0.0135], [0.0913, 0.0262, 0.018, 0.018, 0.014, 0.0131, 0.0124, 0.0102], [0.3059, 0.0566, 0.0469, 0.0303, 0.0111, 0.0098, 0.0087, 0.0082], [0.4893, 0.075, 0.0455, 0.0402, 0.0139, 0.0108, 0.0095, 0.0074], [0.2401, 0.0392, 0.0368, 0.0325, 0.0223, 0.0135, 0.0135, 0.0112], [0.3626, 0.0714, 0.0433, 0.0205, 0.015, 0.0124, 0.0124, 0.0109], [0.2815, 0.0758, 0.0521, 0.0489, 0.046, 0.0262, 0.0169, 0.014], [0.1932, 0.1328, 0.0757, 0.0459, 0.0191, 0.0169, 0.0159, 0.0109], [0.1985, 0.0569, 0.0391, 0.0269, 0.0237, 0.0135, 0.0119, 0.0119], [0.2784, 0.1024, 0.0354, 0.0312, 0.0293, 0.0139, 0.013, 0.0115], [0.2031, 0.0426, 0.0376, 0.0243, 0.0201, 0.0189, 0.0177, 0.0157], [0.2703, 0.0567, 0.0303, 0.0196, 0.0184, 0.0184, 0.0173, 0.0173], [0.1945, 0.0557, 0.036, 0.028, 0.0232, 0.0218, 0.0218, 0.0205], [0.0942, 0.0689, 0.0647, 0.0571, 0.0287, 0.0254, 0.0238, 0.0224], [0.2926, 0.0787, 0.0787, 0.0695, 0.0328, 0.0308, 0.0226, 0.0199], [0.284, 0.1112, 0.0922, 0.0494, 0.0464, 0.0281, 0.0182, 0.0125], [0.2355, 0.2078, 0.0922, 0.0409, 0.0339, 0.0248, 0.0193, 0.0171], [0.3499, 0.2405, 0.0445, 0.0306, 0.027, 0.0253, 0.0136, 0.0106], [0.3994, 0.1886, 0.054, 0.0448, 0.0289, 0.0225, 0.0128, 0.0106], [0.4372, 0.234, 0.0861, 0.0359, 0.0232, 0.0132, 0.0117, 0.008], [0.6031, 0.0925, 0.0465, 0.022, 0.0161, 0.0142, 0.0133, 0.0125], [0.5988, 0.1041, 0.0434, 0.0181, 0.015, 0.0132, 0.0091, 0.008], [0.3957, 0.1869, 0.0503, 0.0287, 0.0174, 0.0144, 0.0144, 0.0127], [0.483, 0.1384, 0.0951, 0.0329, 0.0329, 0.0165, 0.0094, 0.0094], [0.3268, 0.1982, 0.145, 0.0304, 0.0093, 0.0082, 0.0082, 0.0068], [0.2743, 0.2274, 0.0836, 0.0272, 0.0145, 0.0137, 0.0078, 0.0078], [0.3256, 0.2873, 0.0726, 0.0222, 0.0111, 0.0098, 0.0092, 0.0072], [0.4019, 0.313, 0.1082, 0.0078, 0.0074, 0.0061, 0.0051, 0.0037], [0.486, 0.2948, 0.0899, 0.0177, 0.0089, 0.0069, 0.0045, 0.0037], [0.4402, 0.3429, 0.056, 0.0233, 0.011, 0.0055, 0.0041, 0.0041], [0.4426, 0.3042, 0.0563, 0.0363, 0.0183, 0.0142, 0.0098, 0.0092], [0.1644, 0.1544, 0.1203, 0.0997, 0.0345, 0.0209, 0.0163, 0.0144], [0.3922, 0.3922, 0.0468, 0.0365, 0.0236, 0.0143, 0.0118, 0.0063], [0.3406, 0.2066, 0.1823, 0.0556, 0.028, 0.0232, 0.018, 0.0085], [0.5737, 0.1451, 0.0997, 0.0471, 0.0324, 0.0252, 0.0173, 0.0135], [0.4141, 0.2216, 0.1047, 0.056, 0.0436, 0.0385, 0.0385, 0.0086], [0.3148, 0.1685, 0.1312, 0.1022, 0.0847, 0.0332, 0.0228, 0.0228], [0.578, 0.2126, 0.0886, 0.0211, 0.0175, 0.0064, 0.0044, 0.0041], [0.5281, 0.4113, 0.0181, 0.0059, 0.0028, 0.0017, 0.0015, 0.0013]], "ranks": {"Kotlin": [180329, 113630, 71699, 17935, 18196, 34308, 34003, 48174, 28658, 54314, 103437, 64353, 55664, 67394, 116888, 83640, 51081, 20359, 18358, 45600, 124984, 48971, 48736, 136121, 64509, 25019, 35785, 92124, 56648, 29249, 56915, 68402, 42143, 34592, 25850, 18503, 30118, 25093, 21140, 25684, 31904, 47719, 30090, 22167, 28119, 71036, 53775, 68325, 81952, 52490, 65750, 7305, 5258, 2411, 1150, 148, 55, 31, 45, 3, 2, 1, 2]}}, {"pos": 382, "top": [[".", ",", ";", "\u00a0", "?", "\u00a0\u00a0", "\u2026.", " \u2013"], ["\u2011", ".", " \u2013", "\u00ad", ",", " very", " Car", "\u2013"], [",", ".", "\u2013", "\u2026", "\u2026.", ";", " \u2013", "?"], ["\uff0a\uff0a\uff0a\uff0a", "\uff3f\uff3f", "\uff0d\uff0d\uff0d\uff0d", "\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a", "----------</", " \u041a\u0440\u0430\u0441\u0438", "----</", "\uff3f"], ["\\xc", "er", " \u201d", " \u2019", " **\u201c", ".", "!!!", " CIF"], [" \r\r\n", "\\xc", "avourite", "er", "\u56fe\u8c61", "\u0432\u0451\u0440", " **\u201c", " maths"], ["\\xc", "\u00b4t", " \u00b4", "\u4ec0\u9ebd", "\uff3f\uff3f", " \r\r\n", "er", "_____"], ["\u4ec0\u9ebd", "\u00b4t", "\\xc", "\uff3f\uff3f", " \r\r\n", " \u00b4", "\u600e\u9ebd", "\r\r\n"], ["\\xc", " \r\r\n", "...\u201d", "\uff3f\uff3f", "\r\r\n", "?\u201d.", "\u9e92", "!\u201d."], ["\\xc", "\u4ec0\u9ebd", " \r\r\n", " \u0163", "\u600e\u9ebd", "\u9e92", " \u0442\u0440\u0451", "\u0451\u0440"], ["\\xc", " \r\r\n", " \u00b4", "\u4ec0\u9ebd", "...\\", "er", "...\u201d", "\uff3f\uff3f"], ["\uff3f\uff3f", "\u4ec0\u9ebd", " **\u300c", "\\xc", "\uff0a\uff0a\uff0a\uff0a", " **\u00ab", "\r\r\n", "iante"], [" **\u300c", "\uff3f\uff3f", "\u4ec0\u9ebd", " **\u00ab", "\\xc", " \u00bb**", "iante", " goodies"], ["\u4ec0\u9ebd", " goodies", " **\u300c", "iante", "ielen", " iepaz\u012b\u0161an\u0101s", " \u0442\u0440\u0451", "\u5927\u8ba1"], [" goodies", "\u4ec0\u9ebd", "iante", " bigger", "lington", "\u600e\u9ebd", " makeover", "\u5927\u8ba1"], [" goodies", "\u4ec0\u9ebd", "iante", " booze", "iaya", " bigger", "\u5927\u8ba1", " Fortal"], [" goodies", "\u4ec0\u9ebd", " bigger", " booze", " big", " nice", " sexy", " perks"], [" goodies", " \u00bb**", "\u4ec0\u9ebd", " booze", " **\u00ab", "\u52b2\u513f", " **\u300c", " iepaz\u012b\u0161an\u0101s"], [" goodies", "\u4ec0\u9ebd", "deaux", " \u00bb**", " iepaz\u012b\u0161an\u0101s", "iante", "\u52b2\u513f", " booze"], [" goodies", "\u4ec0\u9ebd", " \\'", " bigger", "\\xc", " pricey", " booze", "\u600e\u9ebd"], ["\u4ec0\u9ebd", "\\xc", " $$$", "\u600e\u9ebd", " ...\\", " \\'", " goodies", " pricey"], ["\u4ec0\u9ebd", " $$$", " goodies", " ?**", "\\xc", " '&#", " bigger", "\u52b2\u513f"], [" $$$", " \\'", "\u4ec0\u9ebd", " goodies", " ?**", " bigger", " '&#", " anybody"], [" \\'", "\u4ec0\u9ebd", " &#", " $$$", " anybody", " \ufffd", " goodies", " anything"], [" \\'", "\r\n\r\n", " \r\n\r\n", " \n\n", " $$$", " &#", "  \n\n", "\u4ec0\u9ebd"], [" $$$", " goodies", " _____", " ?**", " bigger", " anything", " pricey", "\u4ec0\u9ebd"], [" anything", "\u4ec0\u9ebd", " $$$", " bigger", " ``", " ?", " goodies", " _____"], ["\n\n", " ?", " _____", " \\'", "\r\n\r\n", " --", " $$$", " anything"], [" ?", " _____", " anything", " $$$", " something", " incredibly", " bigger", " ____"], [" anything", " something", " ?", " bigger", " incredibly", " cheap", " things", " big"], [" something", " ?", " \\\"", " incredibly", " huge", " really", " big", " anything"], [" incredibly", " huge", " something", " massive", " really", " big", " a", " anything"], [" incredibly", " huge", " massive", " massively", " big", " cheap", " impossible", " something"], [" incredibly", " massively", " massive", " huge", " impossible", " ridiculously", " cheap", " wildly"], [" incredibly", " massively", " ridiculously", " massive", " impossible", " insanely", " absurd", " huge"], [" incredibly", " massively", " impossible", " ridiculously", " insanely", " cheap", " massive", " wildly"], [" incredibly", " cheap", " massively", " ridiculously", " insanely", " impossible", " ultra", " massive"], [" impossible", " incredibly", " cheap", " massively", " hardware", " insanely", " ridiculously", " massive"], [" impossible", " incredibly", " cheap", " insanely", " ridiculously", " absurd", " ridiculous", " unprecedented"], [" impossible", " hardware", " incredibly", " performance", " cheap", " insanely", " technical", " flawless"], [" hardware", " performance", " impossible", " technical", " incredibly", " cheap", " technology", " optimization"], [" hardware", " performance", " impossible", " technical", " optimized", " engineering", " optimization", " incredibly"], [" hardware", " performance", " impossible", " technical", " engineering", " ultra", " perfection", " optimized"], [" impossible", " performance", " hardware", " ultra", " unrealistic", " high", " technical", " perfection"], [" impossible", " performance", " hardware", " ultra", " high", " simultaneous", " unrealistic", " technical"], [" impossible", " simultaneous", " ultra", " hardware", " performance", " high", " unrealistic", " cheap"], [" impossible", " simultaneous", " ultra", " hardware", " high", " unrealistic", " simultaneously", " performance"], [" simultaneous", " impossible", " simultaneously", " high", " ultra", " Impossible", " hardware", " dual"], [" impossible", " simultaneous", " hardware", " Impossible", " unrealistic", " ultra", " tactical", " competitive"], [" impossible", " contradictions", " Impossible", " miracles", " paradox", " simultaneous", " contradictory", " hardware"], [" impossible", " Impossible", "Impossible", " miracles", " unrealistic", " contradictions", " physics", " imposs"], [" impossible", " Impossible", " miracles", "Impossible", " physics", " unrealistic", " miracle", "physics"], [" impossible", " Impossible", " miracles", " physics", " hardware", "Impossible", " performance", " unrealistic"], [" impossible", " Impossible", " miracles", "Impossible", " performance", " contradictions", "\u9ad8\u6027\u80fd", " physics"], [" miracles", " magic", " impossible", " magical", " Impossible", " physics", " Ferrari", "magic"], [" miracles", " magic", " Ferrari", " hardware", " magical", " GPU", " physics", "\u9ad8\u6027\u80fd"], [" miracles", " Impossible", " impossible", " Ferrari", " hardware", " physics", " GPU", " magic"], [" desktop", " Ferrari", " miracles", " Desktop", " GPU", " magic", " Impossible", "desktop"], [" magic", " miracles", " magical", "magic", " Magic", " desktop", " miracle", ".magic"], [" miracles", " magic", " desktop", " Ferrari", " magical", " physics", " miracle", " Desktop"], [" miracles", " magic", " desktop", " magical", " Ferrari", " physics", " miracle", " mobile"], [" miracles", " desktop", " magic", " Ferrari", " physics", " mobile", " native", " impossible"], [" miracles", " desktop", " mobile", " physics", " magic", " Ferrari", " unicorn", " native"]], "p": [[0.8727, 0.1181, 0.0022, 0.0017, 0.0014, 0.0008, 0.0007, 0.0004], [0.029, 0.0107, 0.0065, 0.0039, 0.0035, 0.0029, 0.0022, 0.002], [0.5307, 0.4133, 0.0103, 0.0076, 0.0067, 0.0034, 0.0022, 0.002], [0.0327, 0.0186, 0.0068, 0.006, 0.0053, 0.0047, 0.0044, 0.0039], [0.0057, 0.0054, 0.0054, 0.0039, 0.0035, 0.0031, 0.0029, 0.0025], [0.0055, 0.0048, 0.0031, 0.0028, 0.0024, 0.002, 0.002, 0.0018], [0.2209, 0.0865, 0.0764, 0.0674, 0.0299, 0.0206, 0.0193, 0.016], [0.0962, 0.0704, 0.0454, 0.0354, 0.0293, 0.0276, 0.013, 0.0115], [0.1279, 0.0471, 0.0344, 0.0222, 0.0127, 0.0127, 0.0127, 0.0112], [0.342, 0.0248, 0.0181, 0.011, 0.0103, 0.008, 0.0071, 0.0055], [0.7647, 0.0132, 0.0102, 0.009, 0.0085, 0.008, 0.0048, 0.0038], [0.0381, 0.0278, 0.0231, 0.0191, 0.0048, 0.0043, 0.0043, 0.0038], [0.0281, 0.016, 0.0117, 0.0052, 0.0032, 0.0022, 0.0022, 0.002], [0.0099, 0.0064, 0.0044, 0.0041, 0.0027, 0.0021, 0.002, 0.0017], [0.0407, 0.0279, 0.0049, 0.0026, 0.0022, 0.0017, 0.0017, 0.0016], [0.0215, 0.0167, 0.0026, 0.0024, 0.0021, 0.002, 0.0018, 0.0017], [0.0661, 0.0089, 0.0089, 0.004, 0.0029, 0.0027, 0.0026, 0.0026], [0.0207, 0.0046, 0.0032, 0.0028, 0.0026, 0.0026, 0.0023, 0.0022], [0.0098, 0.0063, 0.0036, 0.0034, 0.0028, 0.0023, 0.0022, 0.0021], [0.0382, 0.0298, 0.0132, 0.0103, 0.0097, 0.0062, 0.0062, 0.0059], [0.0439, 0.0172, 0.0152, 0.0104, 0.0104, 0.0104, 0.0092, 0.0076], [0.0176, 0.0155, 0.0094, 0.0065, 0.0061, 0.0054, 0.0054, 0.0045], [0.0539, 0.0447, 0.042, 0.0211, 0.0106, 0.0083, 0.0069, 0.0064], [0.2277, 0.0212, 0.0212, 0.0137, 0.0121, 0.0107, 0.0094, 0.0083], [0.1002, 0.1002, 0.0733, 0.0444, 0.0392, 0.0346, 0.0223, 0.0185], [0.0824, 0.0366, 0.0267, 0.0196, 0.0196, 0.0173, 0.0162, 0.0152], [0.0279, 0.0246, 0.0204, 0.0191, 0.0191, 0.0191, 0.0169, 0.014], [0.0941, 0.0473, 0.0287, 0.0224, 0.0224, 0.021, 0.0185, 0.0164], [0.0927, 0.0363, 0.0265, 0.022, 0.0194, 0.0182, 0.0151, 0.0104], [0.0333, 0.0313, 0.0294, 0.0215, 0.0202, 0.0148, 0.0148, 0.0139], [0.0423, 0.033, 0.0257, 0.0257, 0.0257, 0.0257, 0.0257, 0.0213], [0.0551, 0.0334, 0.023, 0.0216, 0.0191, 0.0191, 0.0139, 0.0131], [0.0522, 0.0337, 0.0337, 0.0205, 0.015, 0.0132, 0.0097, 0.0091], [0.059, 0.0406, 0.0316, 0.0246, 0.0204, 0.014, 0.0124, 0.0109], [0.0916, 0.0522, 0.0406, 0.0337, 0.0279, 0.0279, 0.0218, 0.018], [0.142, 0.0556, 0.0407, 0.0407, 0.0317, 0.028, 0.0232, 0.017], [0.0956, 0.0617, 0.0374, 0.0291, 0.0291, 0.0274, 0.0147, 0.0138], [0.0499, 0.0499, 0.0469, 0.0303, 0.0251, 0.0236, 0.0184, 0.0172], [0.1339, 0.0435, 0.0281, 0.0281, 0.0219, 0.0193, 0.0181, 0.0181], [0.0725, 0.0601, 0.0284, 0.0267, 0.0236, 0.0183, 0.0162, 0.0152], [0.1094, 0.0428, 0.0334, 0.0313, 0.0229, 0.0202, 0.0158, 0.0139], [0.1664, 0.0837, 0.0255, 0.0212, 0.0187, 0.0187, 0.0187, 0.0137], [0.0854, 0.0625, 0.0518, 0.0216, 0.0179, 0.0179, 0.0148, 0.0131], [0.101, 0.0837, 0.0837, 0.0255, 0.0176, 0.0176, 0.0165, 0.0137], [0.1395, 0.0582, 0.0482, 0.0353, 0.0331, 0.0331, 0.0167, 0.0147], [0.1675, 0.0656, 0.0374, 0.0351, 0.0291, 0.0273, 0.0146, 0.0107], [0.176, 0.1287, 0.0306, 0.0306, 0.0287, 0.0154, 0.0144, 0.0136], [0.2131, 0.2002, 0.042, 0.0348, 0.0239, 0.0225, 0.0198, 0.0136], [0.2514, 0.0767, 0.041, 0.034, 0.0194, 0.0182, 0.0161, 0.0151], [0.1498, 0.0802, 0.0753, 0.0486, 0.0379, 0.0295, 0.0277, 0.019], [0.1913, 0.1586, 0.0749, 0.0377, 0.0215, 0.0122, 0.0108, 0.0101], [0.3025, 0.1953, 0.1113, 0.0765, 0.0264, 0.011, 0.0091, 0.0067], [0.3687, 0.1124, 0.0641, 0.0531, 0.0469, 0.0343, 0.0134, 0.0111], [0.4209, 0.1284, 0.0503, 0.0417, 0.0392, 0.0269, 0.0253, 0.0174], [0.3914, 0.269, 0.053, 0.0321, 0.0321, 0.0221, 0.0172, 0.0162], [0.3939, 0.0996, 0.0604, 0.0568, 0.0237, 0.0209, 0.0196, 0.0143], [0.1977, 0.154, 0.1058, 0.0994, 0.0389, 0.0303, 0.0268, 0.0268], [0.2387, 0.1278, 0.0775, 0.047, 0.0442, 0.0442, 0.039, 0.0323], [0.5034, 0.3053, 0.0413, 0.0322, 0.0221, 0.0152, 0.0092, 0.0072], [0.4402, 0.3026, 0.0765, 0.0248, 0.0193, 0.0133, 0.0133, 0.0117], [0.4967, 0.207, 0.1108, 0.0232, 0.0193, 0.015, 0.0117, 0.0103], [0.5328, 0.1527, 0.0363, 0.0265, 0.0249, 0.0234, 0.0161, 0.0133], [0.4517, 0.1073, 0.0611, 0.0447, 0.0371, 0.0225, 0.0155, 0.0155]], "ranks": {"Kotlin": [222877, 155182, 140349, 30056, 26053, 89667, 86087, 98405, 68131, 83983, 94160, 59896, 42920, 51086, 103939, 56541, 62713, 34818, 34636, 56871, 117851, 41921, 104071, 215236, 163983, 111354, 139509, 186372, 165236, 117596, 136553, 154814, 147351, 116949, 98710, 74761, 45338, 36688, 26268, 24155, 31647, 41701, 33750, 36769, 48975, 54683, 41627, 41861, 48969, 72562, 75294, 22461, 30992, 28264, 8990, 2906, 1524, 762, 1024, 1127, 892, 340, 225]}}, {"pos": 383, "top": [[".", ",", "\u2013", ";", " \u2013", "\u2026.", ",.", "\u00a0\u00a0"], [".", "\u2013", " \u2013", ",", " \u200b\u200b", "\u2013and", ";", ",."], [".", "\u2013", ",", "\u2026.", " \u2013", "\u2026..", "\u2026", ".\u2013"], [" milfs", " Shemale", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Blowjob", " pornstar", " cumshot", "-------------</", "----------</"], [" \"@", " (@", ".@", " \u200b\u200b", " @", " @_", "@a", "@c"], [" \u200b\u200b", "!\u201d.", "\u7fe1", " \".", "\u2026.", ".", "!.", " \u062c\u062f\u064b\u0627"], [" .....", " \u200b\u200b", ".\u201d", " ***", " _____", "\t  ", " \"", " @"], [" @", " \u200b\u200b", " *@", ".@", "@a", "!.", " \"@", "(@"], [" \u200b\u200b", "!.", ".", ":.", "!\u201d.", ".....", "?...", "?."], [",", "!,", " bigger", "&nbsp", " [\u2026]", "\u3082\u3057\u3063\u304b\u308a", "?...", "\u2026."], ["...", " [\u2026]", " @", "&nbsp", " ", "@", ".", "...\""], [" bigger", " makeover", " savvy", " pricey", " stylish", " chance", " turnaround", "\u518d\u63a5\u518d"], [" bigger", " makeover", " savvy", " stylish", " pricey", " turnaround", " showcase", " chance"], [" bigger", " makeover", " stylish", " pricey", " savvy", " quirky", " reboot", " trendy"], [" bigger", " makeover", " choice", " savvy", " revamped", " dramatic", " quirky", " big"], [" bigger", " showcase", " savvy", " tweaks", " makeover", " tweaking", " pricey", " upfront"], [" bigger", " big", " savvy", " tweaks", " incredibly", " showcase", " quirky", " massively"], [" bigger", " tweaks", " savvy", " quirky", " makeover", " tweaking", " impactful", " showcase"], [" bigger", " savvy", " incredibly", " smarter", " quirky", " big", " tactical", " tweaking"], [" truly", " just", " bigger", " hugely", " genuinely", " dramatic", " &#", " huge"], ["<|endoftext|>", " just", "  \n\n", "\n\n", " truly", " genuinely", " hugely", " more"], [" bigger", " dramatic", " incredibly", " breakthrough", " strategically", " strategic", " smarter", " strategy"], [" bigger", " dramatic", " full", " incredibly", " &#", " dramatically", " just", " truly"], [" just", " full", " &#", " fully", " more", " \ufffd", " ,", " much"], ["\n\n", " \n\n", "  \n\n", "   \n\n", "\r\n\r\n", " &#", " \r\n\r\n", "&nbsp"], [" incredibly", " massive", " massively", " hugely", " complex", " vastly", " strategic", " wildly"], ["\n\n", " \n\n", "  \n\n", " complex", "\r\n\r\n", " massive", " ____", " ..."], ["\n\n", " \n\n", "  \n\n", " ...", "\r\n\r\n", " complex", "<|endoftext|>", " @"], ["\n\n", " \n\n", "  \n\n", " complex", " @", " ____", " _____", " ?"], [" complex", " ____", " _____", " ?", " massive", " \n\n", " ______", " "], [" complex", " ", " massive", " ?", " work", " full", " modern", " long"], [" complex", " ", " massive", " long", " high", " a", " work", " full"], [" complex", " massive", " massively", " incredibly", " global", " multi", " modern", " hybrid"], [" complex", " hybrid", " massively", " massive", " incredibly", " multi", " modular", " global"], [" complex", " massively", " massive", " incredibly", " hybrid", " mega", " heavily", " meticulously"], [" complex", " massively", " incredibly", " hybrid", " massive", " tech", " technology", " global"], [" complex", " incredibly", " hybrid", " massively", " tech", " optimized", " software", " massive"], [" complex", " software", " hybrid", " massively", " tech", " technical", " massive", " hardware"], [" complex", " software", " incredibly", " massively", " optimized", " technical", " massive", " hardware"], [" complex", " software", " technical", " hardware", " optimized", " tech", " technology", " hybrid"], [" software", " complex", " technical", " hardware", " tech", " performance", " technology", " computational"], [" software", " complex", " technical", " hardware", " optimized", " engineering", " performance", " physics"], [" software", " complex", " engineering", " technical", " hardware", " engine", " optimized", " technology"], [" software", " complex", " engine", " technical", " hybrid", " hardware", " massive", " engineering"], [" complex", " software", " hybrid", " massive", " engineering", " technical", " lightweight", " performance"], [" complex", " hybrid", " software", " dual", " massive", " simultaneous", " multi", " simultaneously"], [" complex", " hybrid", " simultaneous", " software", " dual", " simultaneously", " impossible", " massive"], [" simultaneous", " complex", " simultaneously", " hybrid", " dual", " software", " impossible", " multi"], [" hybrid", " complex", " simultaneous", " impossible", " simultaneously", " software", " dual", " hardware"], [" paradox", " contradictions", " contradiction", " impossible", " hybrid", " simultaneous", " contradictory", " Impossible"], [" impossible", " Impossible", "Impossible", " contradiction", " imposs", " contradictions", " paradox", " miracle"], [" impossible", " Impossible", "Impossible", " imposs", " miracle", " impossibile", " miracles", " physics"], [" impossible", " Impossible", "Impossible", " imposs", " miracle", " unicorn", " physics", " miracles"], [" impossible", " Impossible", "Impossible", " contradiction", " imposs", " contradictions", " unicorn", " impossibile"], [" miracle", " unicorn", " miracles", " magic", " Ferrari", " impossible", " contradiction", " physics"], [" unicorn", " miracle", " Ferrari", " miracles", " magic", " CPU", "unicorn", " contradictions"], [" unicorn", " Ferrari", " miracle", " miracles", " magic", "unicorn", " Impossible", " Lamborghini"], [" unicorn", " Ferrari", " desktop", " contradiction", "unicorn", " miracle", " contradictions", " Lamborghini"], [" miracle", " unicorn", " Ferrari", " miracles", " desktop", " magic", "\u5947\u8ff9", " Desktop"], [" unicorn", " Ferrari", " miracle", " desktop", " miracles", " magic", " Desktop", "desktop"], [" unicorn", " miracle", " Ferrari", " desktop", " miracles", " magic", " Unicorn", " contradiction"], [" unicorn", " miracle", " Ferrari", " desktop", " miracles", " contradiction", " physics", "desktop"], [" miracle", " unicorn", " desktop", " Ferrari", " miracles", " physics", " mobile", " contradiction"]], "p": [[0.8833, 0.1055, 0.0053, 0.0015, 0.0015, 0.0007, 0.0005, 0.0003], [0.2103, 0.1743, 0.1445, 0.0499, 0.0251, 0.0134, 0.0098, 0.0068], [0.7574, 0.0798, 0.0622, 0.0333, 0.0294, 0.0178, 0.0048, 0.0024], [0.0082, 0.0068, 0.0068, 0.0041, 0.0034, 0.003, 0.0021, 0.0021], [0.0232, 0.0132, 0.0103, 0.008, 0.0071, 0.0066, 0.0062, 0.0055], [0.1474, 0.0033, 0.0025, 0.0021, 0.0021, 0.0021, 0.002, 0.0014], [0.043, 0.0296, 0.0179, 0.0179, 0.0102, 0.0096, 0.009, 0.009], [0.0381, 0.0262, 0.0091, 0.0075, 0.0075, 0.0046, 0.0046, 0.0046], [0.0635, 0.056, 0.0494, 0.0436, 0.0265, 0.0206, 0.0171, 0.011], [0.0124, 0.0031, 0.0029, 0.0024, 0.0023, 0.0018, 0.0017, 0.0017], [0.3808, 0.0798, 0.0704, 0.0215, 0.0202, 0.0139, 0.0139, 0.0122], [0.0062, 0.0043, 0.0024, 0.0023, 0.002, 0.0017, 0.0017, 0.0016], [0.0114, 0.0044, 0.0035, 0.0025, 0.0024, 0.0017, 0.0014, 0.0013], [0.0108, 0.0058, 0.0023, 0.002, 0.0018, 0.0016, 0.0015, 0.0015], [0.0131, 0.004, 0.0035, 0.0035, 0.0029, 0.0024, 0.0023, 0.0023], [0.0114, 0.0051, 0.0047, 0.0037, 0.0035, 0.0031, 0.0027, 0.0027], [0.0312, 0.0089, 0.0079, 0.0065, 0.0058, 0.0058, 0.0054, 0.004], [0.0159, 0.011, 0.008, 0.0071, 0.0062, 0.0062, 0.0046, 0.0043], [0.0141, 0.0076, 0.0063, 0.0055, 0.0046, 0.0046, 0.0043, 0.0041], [0.0098, 0.0063, 0.006, 0.0056, 0.0056, 0.0044, 0.0039, 0.0039], [0.1445, 0.0056, 0.0049, 0.0044, 0.0041, 0.0039, 0.0036, 0.0036], [0.0124, 0.0052, 0.0049, 0.0038, 0.0035, 0.0035, 0.0035, 0.0029], [0.0081, 0.0081, 0.0076, 0.0071, 0.0059, 0.0052, 0.0052, 0.0052], [0.0115, 0.0102, 0.0079, 0.0074, 0.0074, 0.0066, 0.0066, 0.0058], [0.3236, 0.2856, 0.2224, 0.0283, 0.0134, 0.0071, 0.0071, 0.0067], [0.0183, 0.0162, 0.0162, 0.0134, 0.0104, 0.0087, 0.0081, 0.0081], [0.9158, 0.0108, 0.0016, 0.0012, 0.0011, 0.0008, 0.0008, 0.0006], [0.9332, 0.0319, 0.0049, 0.0018, 0.0007, 0.0007, 0.0006, 0.0006], [0.461, 0.0664, 0.0295, 0.023, 0.023, 0.0216, 0.0115, 0.0108], [0.0828, 0.0472, 0.0269, 0.0209, 0.0174, 0.0135, 0.0112, 0.0112], [0.0666, 0.0356, 0.0278, 0.0179, 0.0149, 0.0123, 0.0116, 0.0096], [0.0596, 0.0282, 0.0206, 0.0125, 0.0125, 0.0125, 0.0117, 0.011], [0.1219, 0.0477, 0.0212, 0.0176, 0.0155, 0.0129, 0.0121, 0.0121], [0.1384, 0.0422, 0.0372, 0.029, 0.0212, 0.0176, 0.0165, 0.0155], [0.1049, 0.0926, 0.0677, 0.0636, 0.0363, 0.0133, 0.0125, 0.0118], [0.1375, 0.065, 0.0573, 0.0419, 0.0288, 0.0239, 0.0136, 0.0128], [0.0782, 0.0572, 0.0572, 0.0537, 0.0347, 0.0306, 0.0306, 0.0254], [0.2179, 0.0403, 0.0379, 0.026, 0.0216, 0.0203, 0.0203, 0.019], [0.1613, 0.0462, 0.0318, 0.0318, 0.028, 0.0232, 0.0232, 0.0181], [0.2024, 0.0745, 0.0374, 0.0274, 0.0227, 0.0188, 0.0177, 0.0177], [0.1769, 0.1466, 0.0507, 0.0271, 0.0255, 0.0239, 0.0239, 0.0165], [0.1716, 0.1041, 0.0317, 0.028, 0.0247, 0.0247, 0.0247, 0.0205], [0.166, 0.1072, 0.0225, 0.0225, 0.0175, 0.0175, 0.0154, 0.0154], [0.134, 0.098, 0.017, 0.017, 0.016, 0.016, 0.0141, 0.0141], [0.0983, 0.0494, 0.03, 0.0206, 0.0171, 0.0151, 0.0133, 0.0125], [0.1104, 0.0591, 0.0316, 0.0231, 0.0204, 0.018, 0.0149, 0.014], [0.0752, 0.0624, 0.0378, 0.0277, 0.019, 0.019, 0.0168, 0.0158], [0.066, 0.062, 0.0514, 0.0353, 0.0275, 0.0243, 0.0228, 0.0138], [0.0467, 0.0438, 0.0341, 0.025, 0.0207, 0.0152, 0.0142, 0.0111], [0.1142, 0.0889, 0.0447, 0.042, 0.042, 0.0211, 0.0211, 0.0186], [0.2019, 0.1572, 0.0896, 0.045, 0.045, 0.0373, 0.031, 0.0241], [0.2759, 0.2759, 0.1387, 0.045, 0.0397, 0.0176, 0.0166, 0.0137], [0.5414, 0.1208, 0.0536, 0.0444, 0.027, 0.0223, 0.0112, 0.0106], [0.3723, 0.1287, 0.0689, 0.0608, 0.0445, 0.0418, 0.0392, 0.0144], [0.2403, 0.1872, 0.1286, 0.1135, 0.0504, 0.0306, 0.0224, 0.0197], [0.286, 0.1965, 0.1734, 0.1052, 0.0207, 0.0126, 0.0111, 0.0104], [0.5186, 0.1908, 0.0619, 0.0514, 0.0157, 0.0138, 0.013, 0.0079], [0.7284, 0.1266, 0.0363, 0.0171, 0.0161, 0.0081, 0.0059, 0.0043], [0.5289, 0.1717, 0.118, 0.0716, 0.0338, 0.0181, 0.008, 0.0043], [0.4212, 0.2255, 0.199, 0.0829, 0.021, 0.0072, 0.0047, 0.0034], [0.5504, 0.2025, 0.1577, 0.0512, 0.0101, 0.0021, 0.0019, 0.0019], [0.3613, 0.3613, 0.1173, 0.1035, 0.009, 0.0045, 0.002, 0.002], [0.4899, 0.2971, 0.0751, 0.0751, 0.0058, 0.0051, 0.0024, 0.0023]], "ranks": {"Kotlin": [206422, 168587, 129484, 17937, 31198, 66601, 142259, 196687, 190702, 210680, 219279, 182396, 150953, 133705, 191439, 101741, 129221, 82015, 139328, 226510, 227709, 185181, 204185, 207623, 168877, 72785, 78399, 100878, 79701, 63540, 110942, 131247, 77086, 27402, 23147, 14636, 8793, 11958, 5673, 6214, 8501, 7813, 5327, 7300, 10208, 14125, 14134, 15823, 22175, 25006, 42707, 15568, 25027, 29758, 14063, 2702, 1263, 832, 1475, 1249, 780, 268, 182]}}, {"pos": 384, "top": [[" #####", " \u2013", " \"\"\"", " \u200b\u200b", "@\"", "\u6700\u65b0\u53d1\u5e03", "\\\\\\", "\u20ac\u201c"], [" **>>", " \u2013**", "\u6700\u65b0\u53d1\u5e03", " Ferrari", " (!!", " **\u20ac", "=\"\"\"", " \",\""], [" **>>", " \u00bb**", " Ferrari", " **.**", " **\u20ac", " /**<", "\u6700\u65b0\u53d1\u5e03", " **:**"], [" **>>", " \u00bb\u00bb", " \"\"\"", " \u00bb**", " Ferrari", "=\"\"\"", " ``", " \u00bb*"], [" Ferrari", " \"\"\"", " */", " **>>", " \u00bb\u00bb", " ......", "=\"\"\"", " \",\""], [" Ferrari", " \"\"\"", " **>>", " ____", " \u00bb\u00bb", " \u00bb**", " */", " ......"], [" \"\"\"", " Ferrari", " ____", " \u00bb\u00bb", " `$", " \u00bb**", " **>>", " `\""], [" Ferrari", " \"\"\"", " `\"", " \u00bb\u00bb", " ____", " `$", " **>>", "=\"\"\""], [" Ferrari", " ____", " \"\"\"", " **>>", " \u00bb\u00bb", " `\"", "=\"\"\"", " `$"], [" Ferrari", " `$", " \u00bb\u00bb", " `\"", " **>>", " \"\"\"", " Lamborghini", " ____"], [" Ferrari", " `$", " `\"", " \"\"\"", " \u00ae", " Lamborghini", " ____", " \u00bb\u00bb"], [" Ferrari", " \"\"\"", " ____", " **>>", " \u00bb\u00bb", " Lamborghini", " `\"", " `$"], [" Ferrari", " Porsche", " XXL", " Lamborghini", " \u00bb\u00bb", " NASCAR", " \u00bb", " superstar"], [" Ferrari", " Porsche", " Lamborghini", " gorgeous", " Viagra", " NASCAR", " superstar", " XXL"], [" Ferrari", " gorgeous", " fabulous", " Porsche", " Lamborghini", " superstar", " Viagra", " NASCAR"], [" Ferrari", " gorgeous", " fabulous", " --", " superstar", " priceless", " `$", " Porsche"], [" Ferrari", " gorgeous", "-esque", " Porsche", " fabulous", " Lamborghini", "\u8c6a\u8f66", " NASCAR"], [" Ferrari", " gorgeous", " Porsche", "-esque", " Lamborghini", " **>>", " NASCAR", "\u8c6a\u8f66"], [" Ferrari", " gorgeous", "-esque", " Lamborghini", " Porsche", "\u8c6a\u8f66", " fabulous", " NASCAR"], [" Ferrari", " --", " `$", " gorgeous", "-esque", " fabulous", " superstar", " wildly"], [" Ferrari", " `$", " Mercedes", " Porsche", " --", " Lamborghini", " `", " NASCAR"], [" Ferrari", " Porsche", " Mercedes", " Lamborghini", "\u8c6a\u8f66", " NASCAR", " gorgeous", " fabulous"], [" Ferrari", " ``", " `$", " Porsche", " Mercedes", " ''", " Lamborghini", " `"], [" Ferrari", " Porsche", " Mercedes", " `", " Lamborghini", " ,", " --", " `$"], [" Ferrari", " Porsche", " Lamborghini", "\u8c6a\u8f66", " Mercedes", " `$", "\u6cd5\u62c9\u5229", " NASCAR"], [" Ferrari", " Porsche", " Lamborghini", "\u8c6a\u8f66", " Mercedes", " NASCAR", " BMW", "\u6cd5\u62c9\u5229"], [" Ferrari", " Porsche", " Lamborghini", " Mercedes", " cars", "\u8c6a\u8f66", " NASCAR", " automotive"], [" Ferrari", " Porsche", " Lamborghini", " Mercedes", " cars", "\u8c6a\u8f66", " racing", " speed"], [" Ferrari", " Porsche", " Lamborghini", " Mercedes", "\u8c6a\u8f66", " cars", " luxury", " NASCAR"], [" Ferrari", " Porsche", " Lamborghini", " Mercedes", " luxury", " cars", " NASCAR", "\u8c6a\u8f66"], [" Ferrari", " Porsche", " luxury", " cars", " racing", " Mercedes", " Lamborghini", " speed"], [" Ferrari", " Porsche", " luxury", " Mercedes", " Lamborghini", " racing", " cars", " incredibly"], [" Ferrari", " Porsche", " luxury", " Lamborghini", " Mercedes", " racing", "\u8c6a\u8f66", " BMW"], [" Ferrari", " Porsche", " Lamborghini", " Mercedes", " luxury", "\u8c6a\u8f66", " cars", " racing"], [" Ferrari", " Porsche", " Lamborghini", " cars", "\u8c6a\u8f66", " racing", " Mercedes", " BMW"], [" Ferrari", " Porsche", " Lamborghini", " BMW", " Mercedes", " NASCAR", " cars", "\u8c6a\u8f66"], [" Ferrari", " Porsche", " Lamborghini", " NASCAR", " BMW", " Mercedes", " cars", " racing"], [" Ferrari", " Porsche", " Lamborghini", " BMW", " cars", " Mercedes", " NASCAR", " automotive"], [" Ferrari", " Porsche", " Lamborghini", " Mercedes", " BMW", " cars", " racing", " NASCAR"], [" Ferrari", " Porsche", " Lamborghini", " cars", " horsepower", " Mercedes", " racing", " BMW"], [" Ferrari", " Porsche", " cars", " racing", " horsepower", " NASCAR", " Lamborghini", " Racing"], [" Ferrari", " horsepower", " racing", " Porsche", " cars", " motors", " Racing", " NASCAR"], [" Ferrari", " horsepower", " racing", " Porsche", " cars", " motors", " Racing", " NASCAR"], [" Ferrari", " horsepower", " Porsche", " racing", " cars", " NASCAR", " Lamborghini", " motors"], [" Ferrari", " horsepower", " racing", " cars", " Porsche", " motors", " engines", " NASCAR"], [" Ferrari", " racing", " Porsche", " horsepower", " cars", " speed", " engine", " motors"], [" Ferrari", " horsepower", " Porsche", " racing", " cars", " engine", " BMW", " Lamborghini"], [" Ferrari", " horsepower", " Porsche", " engine", " racing", " cars", " BMW", " Lamborghini"], [" Ferrari", " horsepower", " Porsche", " speed", " cars", " Lamborghini", " engine", " racing"], [" Ferrari", " horsepower", " speed", " engine", " speeds", " racing", " Lamborghini", " sprint"], [" Ferrari", " horsepower", " speed", "-speed", " speeds", " Lamborghini", " NASCAR", " Porsche"], [" speed", "-speed", " speeds", " Ferrari", " horsepower", "speed", "Speed", " performance"], [" speed", " speeds", "-speed", " Ferrari", " horsepower", " performance", "Speed", "speed"], [" speed", " speeds", "-speed", " horsepower", " Ferrari", "speed", "\u7684\u901f\u5ea6", "Speed"], [" speed", " engine", " speeds", "-speed", " Ferrari", " horsepower", "\u5f15\u64ce", " performance"], [" engine", " speed", "\u5f15\u64ce", " speeds", " horsepower", " performance", " engines", "-speed"], [" engine", "\u5f15\u64ce", " speed", " speeds", " engines", " performance", " horsepower", "-speed"], [" engine", "\u5f15\u64ce", " engines", " Engine", " performance", " speed", " horsepower", "engine"], [" engine", "\u5f15\u64ce", " engines", " Engine", "engine", "Engine", "\u53d1\u52a8\u673a", " Engines"], [" engine", "\u5f15\u64ce", " Engine", " engines", "engine", "Engine", "\u53d1\u52a8\u673a", "-engine"], [" engine", "\u5f15\u64ce", " Engine", " engines", "engine", "\u53d1\u52a8\u673a", "Engine", "-engine"], [" engine", " Engine", "\u5f15\u64ce", " engines", "engine", "Engine", "-engine", " horsepower"], [" engine", "\u2019s", " Engine", "\u5f15\u64ce", " built", " horsepower", " engines", " ride"]], "p": [[0.0214, 0.0189, 0.0178, 0.0147, 0.0138, 0.013, 0.0108, 0.0089], [0.1311, 0.0311, 0.0311, 0.0177, 0.0115, 0.0089, 0.0089, 0.0084], [0.2938, 0.0451, 0.0213, 0.0188, 0.0176, 0.0129, 0.0101, 0.0094], [0.1399, 0.0514, 0.0401, 0.0312, 0.0293, 0.0259, 0.0189, 0.0122], [0.3808, 0.1091, 0.0229, 0.019, 0.019, 0.0122, 0.0115, 0.0101], [0.6742, 0.0405, 0.0159, 0.0149, 0.008, 0.0055, 0.0055, 0.004], [0.1694, 0.0965, 0.0852, 0.055, 0.0313, 0.0294, 0.0294, 0.0202], [0.3435, 0.0465, 0.0437, 0.03, 0.0282, 0.0182, 0.011, 0.0076], [0.1409, 0.1168, 0.0754, 0.0379, 0.0356, 0.0277, 0.0148, 0.0139], [0.7486, 0.0089, 0.0078, 0.0054, 0.0042, 0.0039, 0.0024, 0.0019], [0.8306, 0.0038, 0.0038, 0.0036, 0.0028, 0.0026, 0.0026, 0.0025], [0.478, 0.0099, 0.0073, 0.0068, 0.006, 0.0044, 0.0041, 0.0034], [0.7651, 0.0062, 0.0035, 0.0029, 0.0024, 0.002, 0.0017, 0.0013], [0.7448, 0.0053, 0.0034, 0.0027, 0.0025, 0.0024, 0.0022, 0.002], [0.7392, 0.0093, 0.0053, 0.0039, 0.0032, 0.0022, 0.0022, 0.0021], [0.696, 0.0106, 0.0093, 0.0025, 0.0025, 0.0021, 0.002, 0.002], [0.8597, 0.0051, 0.0019, 0.0018, 0.0018, 0.0013, 0.0011, 0.0011], [0.8389, 0.003, 0.0021, 0.0018, 0.0018, 0.0015, 0.0014, 0.0014], [0.8594, 0.0037, 0.0031, 0.0024, 0.0023, 0.0018, 0.0017, 0.0016], [0.6897, 0.0092, 0.0092, 0.006, 0.0046, 0.0046, 0.0036, 0.0036], [0.5848, 0.0078, 0.0054, 0.0054, 0.0054, 0.0037, 0.0037, 0.0033], [0.8492, 0.0061, 0.0039, 0.0037, 0.0031, 0.0022, 0.0014, 0.0011], [0.752, 0.0101, 0.0078, 0.0074, 0.0069, 0.0054, 0.0051, 0.0042], [0.6656, 0.0089, 0.0069, 0.0054, 0.0051, 0.0051, 0.0045, 0.0042], [0.9276, 0.0067, 0.0049, 0.0028, 0.0024, 0.001, 0.0009, 0.0008], [0.9725, 0.0074, 0.0024, 0.0015, 0.0009, 0.0005, 0.0005, 0.0004], [0.9374, 0.0142, 0.0049, 0.0022, 0.0021, 0.0018, 0.0011, 0.0011], [0.7941, 0.0155, 0.0073, 0.0065, 0.0054, 0.0039, 0.0037, 0.0024], [0.9355, 0.0098, 0.0041, 0.0028, 0.0019, 0.0016, 0.0012, 0.0012], [0.9351, 0.0104, 0.0038, 0.0026, 0.002, 0.0019, 0.0013, 0.0012], [0.7578, 0.0178, 0.0115, 0.0079, 0.0066, 0.0058, 0.0042, 0.0027], [0.7889, 0.0144, 0.0099, 0.006, 0.0041, 0.0037, 0.0037, 0.003], [0.8607, 0.0202, 0.0054, 0.0051, 0.0045, 0.0029, 0.0023, 0.0021], [0.8319, 0.0267, 0.0072, 0.0044, 0.0039, 0.0032, 0.003, 0.0026], [0.7842, 0.0304, 0.0099, 0.0093, 0.006, 0.006, 0.0056, 0.0044], [0.8665, 0.0459, 0.0116, 0.0045, 0.0043, 0.004, 0.0026, 0.0026], [0.8865, 0.0366, 0.0105, 0.005, 0.0044, 0.0039, 0.0036, 0.0023], [0.8683, 0.046, 0.0116, 0.0062, 0.0052, 0.0052, 0.0046, 0.0023], [0.8242, 0.0495, 0.0125, 0.0086, 0.0081, 0.0076, 0.0056, 0.0049], [0.8606, 0.0313, 0.0139, 0.007, 0.0062, 0.0062, 0.0058, 0.0054], [0.745, 0.042, 0.0289, 0.0255, 0.0239, 0.0145, 0.0136, 0.0136], [0.6086, 0.0641, 0.0441, 0.0343, 0.0343, 0.0251, 0.0196, 0.0152], [0.6913, 0.0501, 0.0442, 0.0237, 0.0196, 0.0196, 0.0153, 0.0127], [0.7593, 0.0334, 0.0294, 0.0244, 0.019, 0.0148, 0.0115, 0.0102], [0.6905, 0.039, 0.0344, 0.0236, 0.0196, 0.0173, 0.0135, 0.0112], [0.6186, 0.0421, 0.0255, 0.0255, 0.0187, 0.0165, 0.0155, 0.0128], [0.6801, 0.036, 0.0299, 0.0205, 0.016, 0.016, 0.0125, 0.0117], [0.6498, 0.0685, 0.0304, 0.0153, 0.0144, 0.0135, 0.0135, 0.0119], [0.7002, 0.089, 0.0199, 0.0137, 0.012, 0.0113, 0.0106, 0.0106], [0.554, 0.1316, 0.0377, 0.019, 0.0167, 0.013, 0.0122, 0.0108], [0.5584, 0.0912, 0.0315, 0.0278, 0.0245, 0.0123, 0.0085, 0.008], [0.2651, 0.1608, 0.1419, 0.0861, 0.076, 0.0232, 0.0218, 0.0192], [0.3417, 0.2661, 0.1257, 0.0524, 0.0318, 0.0318, 0.0193, 0.0193], [0.4333, 0.2319, 0.0753, 0.0457, 0.0356, 0.0216, 0.019, 0.019], [0.3808, 0.2038, 0.1236, 0.0515, 0.0313, 0.0276, 0.0243, 0.0243], [0.571, 0.1636, 0.0773, 0.0365, 0.0284, 0.0284, 0.0172, 0.0105], [0.7269, 0.0868, 0.0597, 0.0219, 0.0219, 0.0133, 0.0117, 0.0063], [0.8628, 0.0803, 0.0158, 0.0075, 0.0075, 0.0051, 0.0031, 0.0021], [0.9453, 0.0471, 0.0034, 0.003, 0.0008, 0.0002, 0.0001, 0.0], [0.9783, 0.014, 0.0045, 0.0024, 0.0005, 0.0002, 0.0001, 0.0], [0.9949, 0.0028, 0.0017, 0.0004, 0.0001, 0.0001, 0.0, 0.0], [0.9958, 0.0019, 0.001, 0.0003, 0.0002, 0.0001, 0.0001, 0.0001], [0.9942, 0.0025, 0.0009, 0.0004, 0.0003, 0.0002, 0.0001, 0.0001]], "ranks": {"Kotlin": [28828, 65155, 26849, 19921, 26135, 20395, 8520, 28017, 26509, 103987, 102237, 42407, 45324, 70744, 92540, 111907, 64326, 41522, 70670, 141386, 194202, 109230, 141084, 199496, 133589, 78531, 77134, 150839, 104361, 57583, 95096, 109771, 109133, 89968, 124380, 101981, 98078, 92717, 108015, 99048, 127063, 111667, 79374, 81634, 88508, 80472, 70987, 72276, 66216, 87646, 123078, 122511, 175336, 172929, 177872, 183522, 204118, 204366, 230247, 211075, 169127, 116112, 87309]}}, {"pos": 385, "top": [[".", " \u2013", ",", " [\u2026]", "\u2013", " ", "<|endoftext|>", "\u2026.."], [" \u2013", "  \n", "  \n\n", "   \n", "\u2013", "   \n\n", "  ", "\u2026.."], ["\u2026..", " \u2013", "\u2013", "\u2026", " [\u2026]", "\u2026\u2026", "\u2026.", ","], [" Geile", "__$", "agle", "iern", "esia", "herr", "ielen", " ____"], ["  \n\n", "  \n", "es", "   \n", "  ", "   \n\n", " ", "\u2026.."], ["  \n", "   \n", "\u2026..", "  \n\n", "  ", "   \n\n", "\u2026\u2026", "\u2014\u2014"], ["  \n", "   \n", "  \n\n", "\u2014\u2014", "   \n\n", " ____", " \u2014\u2014", "\u2026\u2026"], ["  \n", "   \n", "   \n\n", "  \n\n", "  ", "\u2014\u2014", " ____", "agle"], ["   \n\n", "   \n", "  \n", "  \n\n", " ____", "agle", "  ", "    \n\n"], [" strapped", "  \n", "   \n", " fueled", " trium", "-powered", " geared", "agle"], [" engine", " fueled", " strapped", " engines", " power", " fuel", " fighter", " gear"], [" engine", " engines", " fuel", " fueled", "agle", " gear", " power", " ____"], [" engine", " engines", " fueled", " unstoppable", " spectacular", " fuel", " geared", " fighter"], [" engine", " engines", " unstoppable", " fighter", " fueled", " gearbox", " spectacular", "zinho"], [" engine", " engines", " huge", " big", " spectacular", " fighting", " power", " triumph"], [" big", " engine", " huge", " spectacular", " engines", " power", " triumph", " unstoppable"], [" engine", " big", " engines", " huge", " unstoppable", " bigger", " powerhouse", " spectacular"], [" engine", " engines", " unstoppable", " big", " powerhouse", " gearbox", " blockbuster", " boss"], [" engine", " engines", " big", " powerhouse", " unstoppable", " fueled", " fuel", " sleek"], [" engine", " hugely", " big", " fuel", " huge", " powering", " spectacular", " fueled"], [" engine", " hugely", " fuel", " engines", " ,", " rival", " power", " big"], [" engine", " engines", "\u5f15\u64ce", " fueled", " ENGINE", " Engine", " fuel", " unstoppable"], [" engine", " engines", " fuel", " Engine", " fueled", " power", " powering", "\u5f15\u64ce"], [" engine", " ,", " engines", " fuel", " power", " speed", " Engine", " revolution"], [" engine", " engines", " fuel", " powering", "/engine", " Engine", " horsepower", "-engine"], [" engine", " engines", " horsepower", " fuel", " Engine", "/engine", " powering", " Ferrari"], [" engine", " engines", " fuel", " horsepower", " Engine", " powering", " motors", " Ferrari"], [" engine", " engines", " fuel", " power", " ,", " powering", " horsepower", " Engine"], [" engine", " engines", " fuel", " powering", " power", " horsepower", " Engine", " fueled"], [" engine", " engines", " fuel", " power", " horsepower", " Engine", " powering", " Ferrari"], [" engine", " engines", " fuel", " power", " ,", " Engine", " speed", " horsepower"], [" engine", " engines", " fuel", " power", " ,", " powering", " Engine", " speed"], [" engine", " engines", " fuel", " power", " Engine", " powering", " horsepower", " speed"], [" engine", " engines", " fuel", " power", " Engine", " horsepower", " powering", " fueled"], [" engine", " fuel", " engines", " powering", " Engine", " horsepower", " power", " fueled"], [" engine", " fuel", " engines", " Engine", " horsepower", " powering", "-engine", " powered"], [" engine", " engines", " fuel", " Engine", " horsepower", " powered", "-engine", " powering"], [" engine", " engines", " fuel", " Engine", " horsepower", " powered", " engineering", " ENGINE"], [" engine", " engines", " fuel", " Engine", " horsepower", " powering", " driving", " powered"], [" engine", " engines", " Engine", " fuel", " powering", " horsepower", "engine", "\u5f15\u64ce"], [" engine", " engines", " Engine", " horsepower", " fuel", "engine", "\u5f15\u64ce", " powering"], [" engine", " engines", " Engine", " powering", "engine", "\u5f15\u64ce", " horsepower", " fuel"], [" engine", " engines", " Engine", "engine", "\u5f15\u64ce", " powering", " horsepower", " Engines"], [" engine", " engines", " Engine", "\u5f15\u64ce", "engine", " powering", " horsepower", " Engines"], [" engine", " engines", " Engine", " powering", " powered", "engine", " fuel", "-engine"], [" engine", " engines", " Engine", " powering", " powered", " fuel", "-engine", "engine"], [" engine", " engines", " Engine", "-engine", " powering", " fuel", " powered", "engine"], [" engine", " engines", " powered", " Engine", " powering", " fuel", "engine", "-engine"], [" engine", " engines", " powered", " Engine", "engine", " powering", " horsepower", "\u5f15\u64ce"], [" engine", " engines", " powered", " Engine", "engine", " powering", " horsepower", "-engine"], [" (", " (**", " (\u00a3", " ($", " (`", " (${", " engine", " (\u201c"], [" (", " (\u00a3", " (**", " ($", " powered", " (${", " engine", " powering"], [" (", " (**", " powered", " (\u00a3", " engine", " ($", " (`", " (${"], [" (", " inside", " (\u00a3", " (**", " powered", " engine", " ($", " (\\"], [" engine", " powered", " inside", " Engine", " (", "\u5f15\u64ce", " housed", "engine"], [" inside", " (", " fitted", " engine", " installed", " powered", " horsepower", "\u88c5\u5728"], [" engine", " powered", " fitted", " horsepower", " (", " powering", " inside", " installed"], [" inside", "inside", " fitted", " engine", " horsepower", " strapped", " installed", " running"], [" inside", " wrapped", " fitted", "inside", " strapped", " horsepower", " installed", "\u88c5\u5728"], [" inside", " wrapped", " running", " fitted", " (", " horsepower", " stuffed", " strapped"], [" inside", " running", " wrapped", " (", " stuffed", " tuned", " strapped", " performance"], [" inside", " (", " running", " wrapped", " stuffed", " tuned", " built", " in"], [" inside", " (", " wrapped", " running", " in", " built", " stuffed", " tuned"]], "p": [[0.4892, 0.2311, 0.1162, 0.0549, 0.0157, 0.0148, 0.0115, 0.0095], [0.5254, 0.1933, 0.1101, 0.0278, 0.0191, 0.0116, 0.0116, 0.0058], [0.4607, 0.2466, 0.1496, 0.0429, 0.0229, 0.019, 0.0168, 0.0123], [0.0051, 0.0029, 0.0029, 0.0024, 0.002, 0.0018, 0.0017, 0.0015], [0.2613, 0.1399, 0.1234, 0.0548, 0.0483, 0.0293, 0.0178, 0.0138], [0.1293, 0.1141, 0.1072, 0.0692, 0.0255, 0.0211, 0.0094, 0.0088], [0.6259, 0.1022, 0.0847, 0.0514, 0.0228, 0.013, 0.0095, 0.0089], [0.3299, 0.1464, 0.0539, 0.0327, 0.0327, 0.006, 0.0039, 0.0037], [0.1436, 0.1436, 0.1267, 0.0283, 0.0142, 0.0076, 0.0067, 0.0059], [0.0111, 0.0056, 0.0041, 0.0038, 0.0034, 0.0028, 0.0026, 0.002], [0.0166, 0.0146, 0.0129, 0.0121, 0.0114, 0.0094, 0.0078, 0.0065], [0.0213, 0.0129, 0.0074, 0.0074, 0.0045, 0.0033, 0.0033, 0.0033], [0.0134, 0.0072, 0.0041, 0.0028, 0.0028, 0.0028, 0.0025, 0.0025], [0.0095, 0.0054, 0.0033, 0.0029, 0.0023, 0.0023, 0.0021, 0.002], [0.0228, 0.0115, 0.0095, 0.0089, 0.0074, 0.0074, 0.0074, 0.007], [0.0366, 0.0252, 0.0153, 0.0127, 0.0119, 0.0105, 0.0072, 0.0068], [0.0366, 0.0285, 0.0222, 0.0119, 0.0098, 0.0072, 0.0072, 0.0068], [0.0379, 0.0216, 0.0085, 0.0066, 0.0058, 0.0055, 0.0048, 0.004], [0.0415, 0.0135, 0.0112, 0.0105, 0.0093, 0.0082, 0.0068, 0.006], [0.0297, 0.0231, 0.014, 0.0124, 0.0109, 0.0096, 0.0085, 0.0085], [0.0646, 0.0185, 0.0185, 0.0127, 0.0099, 0.0087, 0.0073, 0.0073], [0.0813, 0.0361, 0.0067, 0.0059, 0.0055, 0.0052, 0.0052, 0.0046], [0.1982, 0.0533, 0.0268, 0.0099, 0.0087, 0.0077, 0.0068, 0.0064], [0.1226, 0.0451, 0.033, 0.0291, 0.0213, 0.0069, 0.0065, 0.0061], [0.2668, 0.1045, 0.0361, 0.0193, 0.0151, 0.0125, 0.0125, 0.011], [0.5119, 0.2418, 0.0225, 0.0198, 0.0113, 0.0078, 0.0061, 0.0061], [0.4329, 0.1805, 0.0355, 0.019, 0.0108, 0.0079, 0.007, 0.007], [0.3908, 0.112, 0.0638, 0.025, 0.022, 0.0172, 0.0104, 0.0098], [0.4718, 0.1439, 0.06, 0.0207, 0.0172, 0.0142, 0.0111, 0.0059], [0.5451, 0.1562, 0.0447, 0.0145, 0.0113, 0.01, 0.0094, 0.0057], [0.4071, 0.1407, 0.0551, 0.0356, 0.0244, 0.0108, 0.0102, 0.0084], [0.315, 0.0796, 0.0703, 0.0514, 0.0189, 0.013, 0.0122, 0.0115], [0.351, 0.1006, 0.0783, 0.0446, 0.0186, 0.0175, 0.01, 0.0064], [0.3651, 0.1185, 0.0867, 0.0194, 0.0194, 0.0151, 0.0117, 0.0067], [0.3505, 0.1069, 0.0886, 0.0164, 0.0154, 0.0154, 0.0099, 0.0077], [0.3656, 0.0816, 0.0766, 0.0319, 0.0171, 0.011, 0.0104, 0.0081], [0.5923, 0.1322, 0.0403, 0.0356, 0.0123, 0.0075, 0.007, 0.0066], [0.6203, 0.1078, 0.0422, 0.0373, 0.01, 0.0069, 0.0065, 0.0057], [0.6627, 0.1152, 0.0398, 0.031, 0.0083, 0.0074, 0.0065, 0.0061], [0.7171, 0.11, 0.038, 0.0315, 0.0096, 0.0075, 0.0075, 0.007], [0.7671, 0.1333, 0.0382, 0.008, 0.0066, 0.0059, 0.0043, 0.0043], [0.7677, 0.1713, 0.0298, 0.004, 0.004, 0.0036, 0.0031, 0.0022], [0.7272, 0.2083, 0.0319, 0.0049, 0.0038, 0.0034, 0.003, 0.0026], [0.6781, 0.2494, 0.0298, 0.0066, 0.0052, 0.0049, 0.0029, 0.0026], [0.631, 0.2981, 0.0216, 0.009, 0.0043, 0.0035, 0.0029, 0.0027], [0.6937, 0.1987, 0.0174, 0.0105, 0.0087, 0.0064, 0.0044, 0.0039], [0.7546, 0.1311, 0.0189, 0.0079, 0.0069, 0.0061, 0.0054, 0.0054], [0.7287, 0.1266, 0.0182, 0.0161, 0.0161, 0.0111, 0.0071, 0.0056], [0.7289, 0.1435, 0.0249, 0.0151, 0.0098, 0.0086, 0.0076, 0.0063], [0.6001, 0.0763, 0.0763, 0.036, 0.0181, 0.016, 0.0103, 0.0091], [0.4595, 0.169, 0.1025, 0.0377, 0.0354, 0.0313, 0.0215, 0.0157], [0.6357, 0.086, 0.086, 0.0192, 0.0149, 0.0097, 0.0097, 0.0071], [0.691, 0.0501, 0.0442, 0.0236, 0.0196, 0.0184, 0.0163, 0.0082], [0.4039, 0.1157, 0.0702, 0.04, 0.0311, 0.0293, 0.0258, 0.0189], [0.3453, 0.1121, 0.1121, 0.06, 0.053, 0.0266, 0.025, 0.0172], [0.134, 0.1043, 0.0812, 0.0717, 0.0525, 0.0493, 0.0409, 0.0384], [0.1325, 0.0755, 0.0666, 0.0626, 0.0488, 0.0458, 0.0458, 0.0315], [0.8468, 0.0165, 0.0137, 0.0107, 0.01, 0.0078, 0.0073, 0.0069], [0.7523, 0.07, 0.0545, 0.0138, 0.0122, 0.0107, 0.0074, 0.0069], [0.4263, 0.2586, 0.1568, 0.0273, 0.0155, 0.0078, 0.0061, 0.0057], [0.4456, 0.1447, 0.1127, 0.1127, 0.0441, 0.0126, 0.0082, 0.0082], [0.4572, 0.1682, 0.131, 0.0581, 0.0513, 0.0122, 0.0101, 0.0065], [0.3254, 0.3254, 0.0726, 0.044, 0.0365, 0.0343, 0.0184, 0.0162]], "ranks": {"Kotlin": [182127, 185814, 139256, 30399, 62628, 61393, 93497, 138976, 143630, 183828, 150044, 88148, 84488, 85690, 99319, 76062, 65537, 36684, 59869, 137929, 173445, 90514, 137606, 201870, 164839, 75604, 99498, 125101, 122081, 70050, 80602, 99786, 124897, 94750, 122260, 54837, 46144, 47525, 52105, 25763, 28068, 18035, 12921, 18488, 23225, 26378, 31796, 25259, 22432, 31612, 61226, 49864, 44232, 38648, 41051, 13732, 11487, 10767, 11195, 1287, 1350, 453, 665]}}, {"pos": 386, "top": [[".", ",", "\u2013", ";", " \u2013", "\u00a0", "\u2026.", "\u00a0\u00a0"], [" \u2013", "\u2013", ",", ".", "\u2013and", " \u200b\u200b", ";", ".\u2013"], [",", "\u2013", ".", " \u2013", "\u2026.", ";", "\u2026..", ".\u2013"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "-------------</", " milfs", " Blowjob", "----------</", "aruhi", " ;;^", " \u041a\u0440\u0430\u0441\u0438"], [" \u0628\u0648\u062a\u064a\u0646", "iously", "(IS", "@a", "zer", "SSI", "arity", " CIF"], [" \u0628\u0648\u062a\u064a\u0646", "iously", "\u8d75\u4e3d\u9896", "SSI", "<|quad_end|>", "_PCIE", " \u041f\u0443\u0442\u0438\u043d", "odka"], ["ning", "start", "set", "middle", "rather", "sofar", "sson", "advert"], ["adays", "ning", "avour", "ners", "ager", "ness", "ighbour", "sson"], ["avour", "adays", "wards", "variably", "\u30fc\u30ad", "ning", "ighbour", "rather"], ["\u2013and", "-ish", "avour", "\u2013", " guts", "ning", "-but", " hugely"], [" \u2013", " bigger", "-ish", "ning", " hopefully", "-out", " guts", " supposedly"], [" guts", "ning", " bigger", "-ish", "ian", " goodies", " hopefully", "\u611f\u5341\u8db3"], [" goodies", "-ish", " guts", " booze", " veggies", " bigger", " luckily", " hopefully"], [" goodies", " guts", " bigger", " booze", " pricey", " veggies", " freaking", "-ish"], [" goodies", " --", " smack", " stuff", " hopefully", " everybody", " gorgeous", " truly"], [" goodies", " --", " smack", " guts", " plenty", " folks", " pricey", " hugely"], [" big", " incredibly", " goodies", " guts", " hugely", " huge", " just", " bigger"], [" goodies", " guts", " pricey", " hugely", " incredibly", " bigger", " stuff", " tweaking"], [" pricey", " hugely", " incredibly", " guts", " hefty", " smack", " ridiculously", " freaking"], [" hugely", " just", " barely", " incredibly", " wildly", " truly", " smack", " --"], ["<|endoftext|>", " hugely", "\n\n", " just", " --", " barely", " truly", " much"], [" hugely", " desperately", " ''", " smack", " guts", " incredibly", " flashy", " freaking"], [" --", " ``", " ''", " \\'", " barely", " {{--<", " hugely", " desperately"], [" --", " ,", " ''", " '", " barely", " much", " just", " \\'"], [" --", " &#", " \\'", " \n\n", " \r\n\r\n", " hugely", " \u00ad", "&nbsp"], [" hugely", " incredibly", " --", " cheap", " wildly", " desperately", " barely", " huge"], [" --", " hugely", " wildly", " barely", " cheap", " ''", " {{--<", " incredibly"], [" --", " ,", " '", " hugely", " just", " barely", " wildly", " much"], [" hugely", " wildly", " incredibly", " cheap", " desperately", " barely", " huge", " truly"], [" cheap", " incredibly", " huge", " ,", " wildly", " hugely", " desperately", " modern"], [" huge", " .", " ,", " incredibly", " cheap", " just", " hugely", " '"], [" incredibly", " huge", " ,", " just", " .", " even", " something", " cheap"], [" incredibly", " huge", " desperately", " even", " just", " cheap", " wildly", " barely"], [" cheap", " incredibly", " desperately", " huge", " wildly", " barely", " crazy", " truly"], [" cheap", " incredibly", " desperately", " barely", " wildly", " ridiculously", " literally", " huge"], [" cheap", " \u2013", " cheaper", " hardware", " barely", " desperately", " tiny", " ridiculously"], [" cheap", " cheaper", " hardware", "cheap", " expensive", " mediocre", " barely", " tiny"], [" cheap", " cheaper", " hardware", " tiny", " budget", "cheap", " expensive", " Cheap"], [" cheap", " cheaper", " hardware", " budget", " tiny", " expensive", "cheap", " skinny"], [" cheap", " hardware", " tiny", " cheaper", " budget", " skinny", "cheap", " Hardware"], [" cheap", " cars", " hardware", " cheaper", " truck", " car", " budget", " motor"], [" cheap", " hardware", " cars", " cheaper", " tiny", " truck", " budget", " cramped"], [" cheap", " hardware", " cheaper", " cars", " truck", " budget", " tiny", " lightweight"], [" cheap", " hardware", " cars", " cheaper", " truck", " lightweight", " budget", " tiny"], [" cheap", " cheaper", " hardware", " budget", " cars", " lightweight", " tiny", " truck"], [" cheap", " hardware", " tiny", " budget", " cheaper", " cars", " lightweight", " truck"], [" cheap", " hardware", " tiny", " budget", " lightweight", " cars", " truck", " cheaper"], [" cheap", " budget", " tiny", " lightweight", " cheaper", " cars", " hardware", " skinny"], [" cheap", " budget", " cheaper", "-budget", " smugg", " handc", " skinny", " Budget"], [" cheap", "-budget", " cheaper", " budget", " handc", " skinny", " backpack", "cheap"], ["-budget", " IKEA", " handc", " skinny", " budget", " smugg", "\u4e00\u8f86", " cheap"], [" cheap", "-budget", " IKEA", "\u5ec9", "cheap", " Lego", " skinny", " budget"], ["-budget", " cheap", " IKEA", "\u5ec9", " Toyota", " Volkswagen", "cheap", " Lego"], ["-budget", " Toyota", " IKEA", " Volkswagen", " cheap", "\u5ec9", " Lego", " Jeep"], [" toaster", " IKEA", " bicycle", " engine", "engine", "\u81ea\u884c\u8f66", "-budget", " Engine"], [" toaster", " IKEA", " bicycle", " Toyota", " Lego", " bicycles", "-budget", " Volkswagen"], [" bicycle", "-budget", "\u81ea\u884c\u8f66", " Toyota", " bicycles", " budget", " Budget", " toaster"], [" Honda", " bicycle", " Toyota", " motorcycle", " Economy", " economy", " scooter", " bicycles"], [" bicycle", "\u81ea\u884c\u8f66", " bike", " bicycles", " Bicycle", "icycle", "bike", " motorcycle"], [" bicycle", "icycle", " bike", " bicycles", "\u81ea\u884c\u8f66", " scooter", " Bicycle", " motorcycle"], [" bicycle", " bike", " Honda", " cardboard", "icycle", " scooter", " economy", " pedal"], [" bicycle", "icycle", " economy", " cardboard", " Fiat", " scooter", " skateboard", " bike"], [" a", " bicycle", "icycle", " an", " Fiat", " economy", " Go", " cardboard"]], "p": [[0.5485, 0.4271, 0.0129, 0.0033, 0.0033, 0.0015, 0.0009, 0.0004], [0.2124, 0.1875, 0.0418, 0.0418, 0.0113, 0.0053, 0.0034, 0.0021], [0.4267, 0.3323, 0.2015, 0.0241, 0.0027, 0.0021, 0.0019, 0.0016], [0.0062, 0.0059, 0.0059, 0.0033, 0.0031, 0.0031, 0.0029, 0.0024], [0.0026, 0.0018, 0.0018, 0.0018, 0.0017, 0.0016, 0.0016, 0.0015], [0.0034, 0.0028, 0.0021, 0.0013, 0.0012, 0.0011, 0.001, 0.001], [0.0167, 0.013, 0.013, 0.0065, 0.0045, 0.0042, 0.004, 0.004], [0.0246, 0.0103, 0.0096, 0.0085, 0.0066, 0.0066, 0.0062, 0.0046], [0.0079, 0.0079, 0.0062, 0.0055, 0.0051, 0.0045, 0.0037, 0.0035], [0.0048, 0.0035, 0.0033, 0.0031, 0.0027, 0.0021, 0.0018, 0.0018], [0.0229, 0.0168, 0.0148, 0.013, 0.0123, 0.0102, 0.0095, 0.009], [0.015, 0.0117, 0.0103, 0.0103, 0.0085, 0.0062, 0.0059, 0.0055], [0.0143, 0.0111, 0.0081, 0.0076, 0.0067, 0.006, 0.006, 0.0041], [0.0324, 0.0064, 0.006, 0.006, 0.0053, 0.005, 0.0044, 0.0041], [0.0989, 0.0563, 0.0529, 0.025, 0.0152, 0.0152, 0.0142, 0.0126], [0.0714, 0.0671, 0.028, 0.0247, 0.0218, 0.0192, 0.017, 0.0159], [0.0389, 0.0343, 0.0343, 0.0343, 0.0303, 0.0267, 0.0251, 0.0236], [0.042, 0.0395, 0.0371, 0.0271, 0.0239, 0.0211, 0.0198, 0.0186], [0.0557, 0.0407, 0.0407, 0.0338, 0.0317, 0.0317, 0.0205, 0.0141], [0.0622, 0.0313, 0.0244, 0.0229, 0.0215, 0.019, 0.0168, 0.0168], [0.4593, 0.0167, 0.013, 0.0115, 0.0101, 0.0084, 0.007, 0.0066], [0.0073, 0.0057, 0.0057, 0.005, 0.0047, 0.0047, 0.0042, 0.0042], [0.1503, 0.1033, 0.0756, 0.014, 0.0109, 0.0102, 0.009, 0.0055], [0.1356, 0.0531, 0.0284, 0.0221, 0.0208, 0.0195, 0.0183, 0.0152], [0.0917, 0.0592, 0.0433, 0.0382, 0.028, 0.0247, 0.0232, 0.0181], [0.0456, 0.0244, 0.0229, 0.0179, 0.0158, 0.0158, 0.0131, 0.0096], [0.052, 0.0279, 0.0217, 0.0204, 0.0191, 0.0169, 0.0149, 0.014], [0.0987, 0.0927, 0.0341, 0.0194, 0.0161, 0.0161, 0.0142, 0.0134], [0.0404, 0.0357, 0.0335, 0.0261, 0.0149, 0.014, 0.0131, 0.0096], [0.0724, 0.0235, 0.0235, 0.0207, 0.0195, 0.0183, 0.0152, 0.0118], [0.0521, 0.046, 0.0432, 0.0337, 0.0262, 0.018, 0.0169, 0.0169], [0.0428, 0.0428, 0.0294, 0.0276, 0.0244, 0.0202, 0.0168, 0.0148], [0.0511, 0.0451, 0.0273, 0.0257, 0.0257, 0.0156, 0.0146, 0.0146], [0.0543, 0.0479, 0.0309, 0.0291, 0.0241, 0.0213, 0.0146, 0.0107], [0.0719, 0.0362, 0.034, 0.03, 0.0234, 0.0171, 0.0171, 0.0171], [0.4036, 0.0258, 0.0189, 0.0167, 0.0157, 0.0147, 0.0138, 0.0114], [0.8118, 0.038, 0.0109, 0.0055, 0.0045, 0.0043, 0.0038, 0.0029], [0.8129, 0.0357, 0.014, 0.0075, 0.0062, 0.0045, 0.0043, 0.0026], [0.7715, 0.0299, 0.0141, 0.0133, 0.0086, 0.0038, 0.0028, 0.0028], [0.7137, 0.0403, 0.0202, 0.019, 0.0139, 0.0051, 0.0037, 0.0027], [0.4795, 0.0691, 0.0649, 0.0224, 0.0211, 0.0145, 0.0145, 0.0128], [0.5982, 0.0592, 0.0359, 0.0263, 0.0247, 0.017, 0.0097, 0.0071], [0.5033, 0.0601, 0.0388, 0.0388, 0.0195, 0.0143, 0.0104, 0.0092], [0.3262, 0.0728, 0.0642, 0.0415, 0.0268, 0.0209, 0.0196, 0.0184], [0.4723, 0.06, 0.0439, 0.0302, 0.0235, 0.0221, 0.0152, 0.0134], [0.3172, 0.0457, 0.0379, 0.0314, 0.023, 0.0203, 0.0203, 0.0203], [0.1636, 0.0641, 0.044, 0.0303, 0.0284, 0.0267, 0.0172, 0.0119], [0.2345, 0.0672, 0.0338, 0.0317, 0.0218, 0.0205, 0.017, 0.016], [0.0662, 0.0584, 0.0276, 0.0229, 0.0202, 0.0157, 0.013, 0.0123], [0.0407, 0.028, 0.0218, 0.0181, 0.0141, 0.0091, 0.0085, 0.0085], [0.0265, 0.0125, 0.0111, 0.0098, 0.0081, 0.0067, 0.0059, 0.0059], [0.041, 0.0385, 0.03, 0.0206, 0.0161, 0.0117, 0.0117, 0.0086], [0.0701, 0.0546, 0.0482, 0.0353, 0.0214, 0.0177, 0.0147, 0.0138], [0.0511, 0.0398, 0.0351, 0.0241, 0.0227, 0.0213, 0.0177, 0.0146], [0.0747, 0.0483, 0.04, 0.0258, 0.0258, 0.0178, 0.0178, 0.0178], [0.0559, 0.0339, 0.0319, 0.0264, 0.0248, 0.0141, 0.0133, 0.0133], [0.1218, 0.0576, 0.0541, 0.0477, 0.0477, 0.0372, 0.0255, 0.0255], [0.1342, 0.0982, 0.0814, 0.0464, 0.0299, 0.0281, 0.0233, 0.0206], [0.6054, 0.1192, 0.0723, 0.0563, 0.0342, 0.0183, 0.0142, 0.0126], [0.5219, 0.08, 0.08, 0.0428, 0.0277, 0.0229, 0.0215, 0.0179], [0.4265, 0.045, 0.0397, 0.0397, 0.035, 0.0329, 0.0329, 0.0212], [0.2218, 0.0816, 0.0561, 0.0495, 0.0282, 0.0265, 0.0171, 0.0151], [0.8322, 0.0208, 0.0077, 0.0064, 0.006, 0.006, 0.0049, 0.0049]], "ranks": {"Kotlin": [239417, 208283, 177610, 66207, 106265, 136801, 164744, 145539, 199063, 215733, 216052, 106774, 58509, 73185, 149857, 168180, 156175, 107086, 125542, 222993, 240025, 146183, 203901, 245009, 221404, 189204, 187299, 218691, 192446, 156197, 148107, 152870, 168339, 117819, 143825, 81049, 43053, 33937, 33615, 8824, 16342, 16664, 12636, 15211, 24393, 23898, 15948, 13540, 17529, 31651, 23686, 13400, 12460, 8956, 12604, 5568, 3818, 1569, 1971, 848, 452, 200, 120]}}, {"pos": 387, "top": [[".", ",", "\u2013", ";", " \u2013", "\u2026.", ",.", "\u00a0\u00a0"], [".", " \u200b\u200b", "\u2013", ",", ":.", ",.", " \u2013", ";"], [".", ",", "\u2013", "\u2026.", "\u2026..", "\u2026", " \u2013", ";"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Shemale", " milfs", "sprozess", " Blowjob", "aruhi", " pornstar", " \u041a\u0440\u0430\u0441\u0438"], [" \u200b\u200b", ".", ".@", ":.", "@d", " \".", ",.", "@a"], [" \u200b\u200b", ".", "\u2026.", "!.", ",", "\u2026..", ":.", ",."], ["s", " \u200b\u200b", ".\"", ":.", "schaft", ".", "splash", " \u062c\u062f\u064b\u0627"], ["!.", " \u062c\u062f\u064b\u0627", "sburg", "schaft", ":.", "sprozess", "scheid", " bigger"], [".", ",", "!.", ",.", ":.", "!,", "!", ".\""], [",", "!,", ".", "!.", ",.", "\u3082\u3057\u3063\u304b\u308a", "?,", "-ish"], [".", ",", "...", ",.", ":.", ".\"", " bigger", "?."], [" bigger", " funky", "-ish", " weird", " guts", " big", " hardcore", " booze"], [" bigger", " big", "-ish", " weird", " funky", " guts", " hardcore", " tough"], [" bigger", " weird", " funky", " big", " hardcore", "-ish", " huge", " freak"], [" funky", " savvy", " bigger", " flashy", " weird", " freak", " big", " busted"], [" big", " bigger", " kids", " weird", " tough", " savvy", " huge", " incredibly"], [" big", " huge", " bigger", " massive", " weird", " tough", " nasty", " plenty"], [" big", " weird", " nasty", " bigger", " huge", " funky", " quirky", " guts"], [" nasty", " weird", " flashy", " guts", " scary", " big", " funky", " crappy"], [" big", " huge", " bigger", " hugely", " nasty", " wildly", " busted", " guts"], ["<|endoftext|>", " huge", " big", " hugely", " bigger", " wildly", " barely", " tough"], [" flashy", " big", " bigger", " cheap", " nasty", " guts", " freak", " booze"], [" big", " cheap", " bigger", " flashy", " huge", " racing", " truck", " guts"], ["<|endoftext|>", " much", " big", " barely", " just", " cheap", " heavy", " huge"], [" \n\n", " truck", " racing", " cars", "\n\n", " cheap", " wildly", " strapped"], [" cars", " truck", " racing", " NASCAR", " Racing", " cheap", " Cars", " trucks"], [" cars", " truck", " racing", " NASCAR", " cheap", " automotive", " Racing", " trucks"], [" cars", " truck", " racing", " car", " cheap", " big", " motor", " road"], [" cars", " truck", " racing", " cheap", " Hollywood", " motor", " big", " trucks"], [" cars", " truck", " cheap", " racing", " big", " car", " trucks", " motor"], [" cars", " big", " cheap", " truck", " racing", " huge", " car", " massive"], [" big", " cheap", " huge", " massive", " cars", " hard", " high", " far"], [" cheap", " racing", " truck", " cars", " big", " Hollywood", " huge", " massive"], [" cheap", " Hollywood", " truck", " weird", " crazy", " cars", " racing", " wildly"], [" cheap", " truck", " cars", " Hollywood", " racing", " weird", " expensive", " crazy"], [" cheap", " Hollywood", " Toyota", " truck", " cars", " car", " NASCAR", " bike"], [" cheap", " cars", " Toyota", " truck", " NASCAR", " Hollywood", " cheaper", " motor"], [" cheap", " cars", " Toyota", " truck", " cheaper", " car", " motor", " Motor"], [" cheap", " cars", " truck", " Toyota", " motor", " Motor", " car", " cheaper"], [" cheap", " cars", " truck", " Toyota", " Motor", " motor", " car", " cheaper"], [" cars", " truck", " vehicle", " car", " motor", " Motor", " Toyota", " vehicles"], [" cars", " truck", " vehicle", " vehicles", " motor", " Motor", " Toyota", " car"], [" cars", " truck", " vehicle", " vehicles", " trucks", " Toyota", " motor", " Motor"], [" cars", " truck", " vehicle", " trucks", " vehicles", " car", " Toyota", " motor"], [" cars", " truck", " vehicle", " motor", " vehicles", " trucks", " car", " Motor"], [" cars", " truck", " vehicle", " motor", " trucks", " car", " vehicles", " Toyota"], [" cars", " truck", " vehicle", " Toyota", " car", " trucks", " vehicles", " motor"], [" cars", " truck", " vehicle", " Toyota", " cargo", " trucks", " vehicles", " motor"], [" cars", " truck", " vehicle", " Toyota", " cargo", " garage", " bicycle", " trucks"], [" cars", " truck", " Toyota", " cargo", " IKEA", " vehicle", " freight", " garage"], [" IKEA", " Toyota", " bicycle", "\u9a6c\u8f66", " bicycles", " garage", "Vehicle", "-budget"], [" IKEA", "-budget", " bicycle", " Toyota", " bicycles", " budget", " lightweight", " Lego"], ["-budget", " IKEA", " Toyota", " Volkswagen", " budget", " garage", " bicycle", " NASCAR"], ["-budget", " Toyota", " bicycle", " bicycles", " IKEA", " Volkswagen", " Jeep", " toaster"], [" bicycle", " bicycles", " toaster", " IKEA", "-budget", "\u81ea\u884c\u8f66", " chassis", " skateboard"], [" bicycle", " bicycles", " toaster", " IKEA", " chassis", " Toyota", " Lego", " Bicycle"], [" bicycle", " bicycles", " toaster", " Toyota", "-budget", " budget", " chassis", "\u81ea\u884c\u8f66"], [" bicycle", " Honda", " Toyota", " bicycles", " motorcycle", " skateboard", " Bicycle", " toaster"], [" bicycle", " bicycles", " bike", " Bicycle", "\u81ea\u884c\u8f66", "icycle", " Honda", " motorcycle"], [" bicycle", "icycle", " bike", " skateboard", " cardboard", " bicycles", " scooter", " Bicycle"], [" bicycle", " cardboard", " skateboard", " Honda", " Volkswagen", "icycle", " bike", " scooter"], [" cardboard", " bicycle", " Fiat", " skateboard", " shopping", " economy", " scooter", "icycle"], [" bicycle", " cardboard", " Fiat", " Go", " skateboard", " shopping", " go", " Volkswagen"]], "p": [[0.881, 0.1052, 0.0067, 0.0019, 0.0013, 0.0009, 0.0007, 0.0004], [0.1373, 0.0326, 0.0306, 0.0186, 0.0088, 0.0077, 0.0068, 0.0068], [0.7388, 0.1455, 0.0417, 0.0325, 0.0174, 0.0082, 0.0027, 0.0025], [0.0101, 0.0051, 0.0051, 0.0031, 0.0029, 0.0027, 0.0026, 0.0024], [0.0277, 0.0179, 0.0074, 0.0045, 0.0024, 0.0024, 0.0023, 0.002], [0.16, 0.0315, 0.0066, 0.0055, 0.004, 0.0035, 0.0026, 0.0026], [0.0213, 0.0201, 0.0147, 0.0084, 0.0074, 0.0069, 0.0065, 0.0061], [0.0145, 0.0094, 0.0064, 0.0053, 0.005, 0.0037, 0.003, 0.0027], [0.6341, 0.0806, 0.0459, 0.0358, 0.0159, 0.0096, 0.008, 0.007], [0.0502, 0.0077, 0.0036, 0.0034, 0.003, 0.0023, 0.0023, 0.0021], [0.6051, 0.0363, 0.0341, 0.0183, 0.0081, 0.0072, 0.0067, 0.0063], [0.0144, 0.0047, 0.0041, 0.0027, 0.0023, 0.0022, 0.0021, 0.0018], [0.016, 0.0091, 0.0071, 0.0049, 0.004, 0.0032, 0.0032, 0.003], [0.0189, 0.0139, 0.0139, 0.0115, 0.0061, 0.0061, 0.0058, 0.0048], [0.0198, 0.0128, 0.0128, 0.012, 0.0113, 0.01, 0.0088, 0.0078], [0.0525, 0.0248, 0.0233, 0.0193, 0.016, 0.015, 0.0133, 0.0125], [0.0902, 0.0453, 0.0312, 0.0138, 0.0122, 0.0122, 0.0101, 0.0084], [0.0367, 0.0237, 0.0222, 0.0209, 0.0184, 0.0127, 0.0105, 0.0093], [0.0504, 0.0174, 0.0154, 0.012, 0.0112, 0.0112, 0.0106, 0.0099], [0.0272, 0.0256, 0.0165, 0.0155, 0.0113, 0.0107, 0.01, 0.01], [0.0225, 0.0175, 0.0165, 0.0113, 0.0078, 0.0078, 0.0073, 0.0069], [0.0098, 0.0098, 0.0092, 0.0086, 0.0076, 0.0059, 0.0052, 0.0049], [0.01, 0.0083, 0.0054, 0.0045, 0.0042, 0.0033, 0.0033, 0.0033], [0.005, 0.0044, 0.0039, 0.0037, 0.0028, 0.0028, 0.0025, 0.0024], [0.0067, 0.0056, 0.0036, 0.0032, 0.0032, 0.0032, 0.0028, 0.0025], [0.0737, 0.0288, 0.0288, 0.0154, 0.012, 0.0113, 0.0088, 0.0083], [0.1075, 0.0349, 0.0289, 0.0155, 0.01, 0.0094, 0.0088, 0.0083], [0.0334, 0.0277, 0.0216, 0.0096, 0.0084, 0.0079, 0.0066, 0.0042], [0.0645, 0.0391, 0.0253, 0.0185, 0.0082, 0.0077, 0.0077, 0.0072], [0.105, 0.0466, 0.0438, 0.0249, 0.0182, 0.0111, 0.0104, 0.0098], [0.0624, 0.0429, 0.0314, 0.026, 0.0216, 0.0168, 0.0139, 0.0115], [0.0398, 0.0213, 0.0188, 0.0121, 0.0121, 0.0107, 0.0107, 0.0101], [0.036, 0.0218, 0.017, 0.0141, 0.0141, 0.0117, 0.0097, 0.0086], [0.0685, 0.0196, 0.0144, 0.0119, 0.0119, 0.0119, 0.0087, 0.0072], [0.0765, 0.0281, 0.0264, 0.0117, 0.011, 0.0086, 0.0076, 0.0067], [0.0806, 0.0231, 0.0159, 0.0149, 0.0149, 0.0075, 0.007, 0.007], [0.2221, 0.032, 0.0301, 0.0249, 0.0207, 0.0194, 0.0151, 0.0086], [0.2223, 0.0411, 0.0301, 0.0249, 0.0234, 0.0151, 0.0118, 0.0111], [0.1378, 0.0612, 0.054, 0.0395, 0.0327, 0.024, 0.0225, 0.0155], [0.0935, 0.0604, 0.0533, 0.0442, 0.0268, 0.0222, 0.0184, 0.0105], [0.3583, 0.0964, 0.0623, 0.0428, 0.0402, 0.0378, 0.0313, 0.0276], [0.3226, 0.1115, 0.0766, 0.041, 0.0362, 0.034, 0.03, 0.0265], [0.334, 0.1084, 0.0793, 0.0375, 0.0274, 0.0258, 0.0227, 0.0201], [0.3798, 0.1088, 0.0547, 0.0332, 0.0312, 0.0243, 0.0214, 0.0189], [0.2658, 0.1256, 0.0523, 0.036, 0.0298, 0.028, 0.0247, 0.017], [0.196, 0.1266, 0.0386, 0.032, 0.0249, 0.0234, 0.0207, 0.0194], [0.2104, 0.0934, 0.0532, 0.0343, 0.0222, 0.0196, 0.0184, 0.0173], [0.1562, 0.0651, 0.0476, 0.0271, 0.0225, 0.0187, 0.0175, 0.0165], [0.086, 0.046, 0.0406, 0.0337, 0.0279, 0.0159, 0.0149, 0.0132], [0.0364, 0.0301, 0.0266, 0.0172, 0.0142, 0.0134, 0.0118, 0.0118], [0.0129, 0.0114, 0.0114, 0.0095, 0.0095, 0.0084, 0.0084, 0.0078], [0.0239, 0.0186, 0.0113, 0.0106, 0.0093, 0.0088, 0.0088, 0.0073], [0.0399, 0.0352, 0.0242, 0.0147, 0.0129, 0.0122, 0.0122, 0.0107], [0.0435, 0.0384, 0.0281, 0.0248, 0.0233, 0.0181, 0.0125, 0.0125], [0.1633, 0.0564, 0.0388, 0.0364, 0.0208, 0.0172, 0.0134, 0.0126], [0.1416, 0.0712, 0.0336, 0.0262, 0.0204, 0.018, 0.014, 0.0132], [0.2292, 0.1017, 0.0424, 0.0274, 0.0274, 0.0257, 0.0242, 0.02], [0.1788, 0.0845, 0.0746, 0.0452, 0.0352, 0.0274, 0.0214, 0.0201], [0.7238, 0.0673, 0.036, 0.036, 0.0281, 0.0205, 0.011, 0.0097], [0.5944, 0.0488, 0.0431, 0.0335, 0.0315, 0.0278, 0.0191, 0.014], [0.334, 0.2601, 0.0352, 0.0274, 0.0242, 0.0188, 0.0188, 0.0188], [0.2656, 0.2068, 0.0491, 0.0407, 0.0359, 0.017, 0.017, 0.015], [0.197, 0.1851, 0.064, 0.0601, 0.0364, 0.0267, 0.0267, 0.0208]], "ranks": {"Kotlin": [201576, 163097, 151890, 23646, 31994, 65871, 134799, 209012, 219501, 226440, 202947, 113800, 134609, 145083, 194716, 135067, 164095, 122146, 164229, 237125, 235685, 189886, 190878, 224516, 217753, 146186, 104955, 173102, 136025, 80173, 102998, 146468, 128105, 88032, 93381, 25091, 21123, 19159, 18914, 7028, 11169, 8562, 5478, 7753, 10412, 11323, 8103, 8455, 8262, 12905, 16164, 8848, 7428, 7328, 11017, 6116, 4223, 1531, 2311, 878, 392, 242, 196]}}, {"pos": 388, "top": [[".", ",", " \u2013", "\u2013", "e", ";", "o", "?"], ["\u2013", " \u2013", "e", "  \n", "\u2013and", "--", "  \r\n", "i"], ["\u2013", " \u2013", ",", ".", "\u2026", "?", "e", ";"], [" Guta", "zinho", "ingly", " \u041f\u043e\u043f\u0440\u043e", "eias", "\u54e5\u534e", " Geile", "enzi"], ["ingly", " Guta", "aug", "e", "ei", "auf", "ost", "ar"], [" Guta", "ingly", "HK", "fst", "ei", "ost", "ez", "ar"], ["ingly", " Guta", "ish", "e", "--", "ost", " --", "eing"], ["ingly", "ish", "--", "e", "ings", "ost", "ishly", "-ish"], ["ingly", "ish", "-&", "e", "--", "o", "y", "ishly"], ["--", "ingly", "e", "ish", "o", "though", "ar", "f"], ["ish", "e", "o", "ingly", "--", "f", "i", "y"], ["ish", "ingly", "-ish", "ishly", " Guta", "gg", "!--", "ollo"], ["ish", "ingly", "-ish", "e", "ar", "back", "eing", "ck"], ["ish", "ingly", "e", "-ish", "o", "y", "er", "-esque"], ["ish", "e", "o", "ingly", "--", "y", "back", "eing"], ["--", "ish", "e", "o", "ingly", "y", " folks", "going"], ["e", "--", "o", "ish", "y", "ingly", "ball", "back"], ["ish", "ingly", "o", "ball", "y", "-go", "e", "en"], ["ish", "ingly", "o", "ball", "--", "y", "gg", "-go"], ["ish", "ahead", "ingly", "zilla", "-go", "o", "y", "ollo"], ["o", "ish", "--", "i", "y", "e", "ahead", "going"], ["zilla", "ish", "ingly", "ollo", "ahead", "\u5c14\u591a", "athon", "adget"], ["ish", "ingly", "ollo", "ahead", "ck", "ball", "zilla", "-&"], ["ish", "--", "-&", " --", "ingly", "i", "7", "ahead"], ["-&", "ish", "--", "ingly", "9", "Though", "7", "4"], ["sport", "bike", "ish", "\u8d5b\u8f66", "ball", "ppy", "speed", " racing"], ["sport", " racing", "bike", " sport", "\u8d5b\u8f66", "ish", "ball", " racer"], ["sport", " racing", " sport", "ish", " --", " strapped", " racer", "bike"], ["sport", " sport", " racing", "bike", "ish", "-esque", "ball", " bike"], ["sport", " racing", " sport", "bike", " bike", "ish", "ball", "kids"], [" racing", " sport", "sport", " bike", "bike", "-tech", " sprint", "ish"], [" racing", " sport", "sport", "ish", " bike", "bike", " sprint", "ball"], [" racing", "sport", "-tech", " sport", "bike", " bike", "ball", "ish"], ["-tech", "bike", "sport", "-lite", "kids", "-fast", " bike", "ball"], ["sport", "bike", "-tech", " racing", " bike", "kids", "ball", "-lite"], ["sport", " racing", "bike", "kids", "\u8d5b\u8f66", "-tech", "-lite", " bike"], ["sport", " racing", "\u8d5b\u8f66", "bike", " Racing", "kids", " sprint", "-tech"], [" racing", "sport", "\u8d5b\u8f66", "kids", "bike", " Racing", "ball", " bike"], [" racing", "sport", "\u8d5b\u8f66", " Racing", " sprint", "bike", "speed", " sport"], [" racing", " Racing", "\u8d5b\u8f66", "sport", " bike", "bike", " sprint", "speed"], [" racing", " Racing", "\u8d5b\u8f66", " bike", " racer", " motors", "bike", " sport"], [" racing", "\u8d5b\u8f66", " Racing", " motors", " racer", " bike", " motoc", "bike"], [" racing", "\u8d5b\u8f66", " Racing", " racer", " motors", " motoc", " bike", " hobby"], [" racing", "\u8d5b\u8f66", " Racing", " racer", " hobby", " sprint", " bike", " motors"], [" racing", "\u8d5b\u8f66", " motors", " racer", " hobby", " bike", " sprint", " motoc"], [" racing", " hobby", " motors", " sprint", " racer", "\u8d5b\u8f66", " bike", " kids"], [" racing", " hobby", "\u8d5b\u8f66", " motors", " racer", " bike", " sprint", " stunt"], [" racing", " hobby", " sprint", " racer", " motors", " stunt", "\u8d5b\u8f66", " kids"], [" racing", " hobby", " racer", " stunt", "\u8d5b\u8f66", " sprint", "-runner", " motors"], ["-runner", " stunt", " racing", " racer", " sprint", "-lite", "\u8d5b\u8f66", " hobby"], ["-budget", " stunt", "-runner", "-lite", "-engine", "\u8d5b\u8f66", "-driver", "-speed"], ["-engine", "-speed", "\u8d5b\u8f66", " racer", "-budget", "-lite", "-runner", " stunt"], ["-engine", "-speed", "-budget", "\u8f66\u8eab", " chassis", "-driver", "-runner", "-frame"], ["-budget", "-runner", "-speed", "-engine", " chassis", "\u8f66\u8eab", "-buy", "-frame"], ["\u0e23\u0e29", "\u8f66\u8eab", "-runner", "thic", " chassis", "-frame", "(go", "-go"], ["\u8f66\u8eab", " chassis", "\u0e23\u0e29", "-frame", "thic", "-body", "-runner", "-fast"], ["\u8f66\u8eab", " chassis", "-frame", " kart", "\u0e23\u0e29", "lems", "-cart", "ody"], ["\u8f66\u8eab", " kart", " chassis", "-frame", "-cart", "frame", "ody", "Frame"], ["-cart", " cart", " kart", "cart", "Cart", "_cart", " carts", " Cart"], ["-cart", " kart", " cart", "cart", "kart", "Cart", "_cart", " carts"], ["-cart", " kart", " cart", "kart", "cart", " Kart", " Cart", "_cart"], [" kart", "-cart", "kart", "-k", "-go", " Kart", " cart", "-car"], ["-k", "-K", "-cart", " kart", "-go", "-", "kart", "_k"]], "p": [[0.457, 0.457, 0.0242, 0.0228, 0.0089, 0.0061, 0.0048, 0.0037], [0.189, 0.1668, 0.0372, 0.0187, 0.0137, 0.0121, 0.0065, 0.005], [0.48, 0.213, 0.1375, 0.0224, 0.0186, 0.0128, 0.01, 0.0053], [0.0137, 0.0065, 0.0037, 0.0024, 0.0022, 0.0022, 0.0019, 0.0014], [0.0298, 0.0103, 0.008, 0.008, 0.0055, 0.0052, 0.0036, 0.0036], [0.1005, 0.0306, 0.0073, 0.0053, 0.0044, 0.0044, 0.0041, 0.0032], [0.1863, 0.0184, 0.0173, 0.0153, 0.0153, 0.0144, 0.0077, 0.0064], [0.1168, 0.0587, 0.043, 0.0191, 0.0096, 0.0096, 0.0096, 0.0085], [0.1253, 0.0671, 0.0298, 0.028, 0.015, 0.0109, 0.0109, 0.0103], [0.0409, 0.0248, 0.0219, 0.0206, 0.0125, 0.0091, 0.0086, 0.0076], [0.0962, 0.0798, 0.0704, 0.0401, 0.0178, 0.0167, 0.0157, 0.0139], [0.0718, 0.0435, 0.0063, 0.0059, 0.0046, 0.0034, 0.0034, 0.0032], [0.0884, 0.0536, 0.0136, 0.0093, 0.0068, 0.0064, 0.006, 0.005], [0.0895, 0.0373, 0.02, 0.0146, 0.0137, 0.01, 0.01, 0.0089], [0.062, 0.0332, 0.0332, 0.0312, 0.0312, 0.0167, 0.0122, 0.0079], [0.0191, 0.0168, 0.014, 0.0131, 0.0131, 0.0096, 0.008, 0.0075], [0.0542, 0.0422, 0.0422, 0.0373, 0.035, 0.0199, 0.0129, 0.0121], [0.029, 0.0146, 0.0129, 0.0121, 0.0114, 0.0073, 0.0065, 0.0047], [0.024, 0.0088, 0.0078, 0.0061, 0.0053, 0.0053, 0.005, 0.0047], [0.0203, 0.0075, 0.007, 0.0051, 0.0045, 0.0042, 0.0042, 0.004], [0.0189, 0.0167, 0.0138, 0.0138, 0.013, 0.0108, 0.0089, 0.0061], [0.0056, 0.0046, 0.0036, 0.0028, 0.0026, 0.0019, 0.0017, 0.0016], [0.0094, 0.0061, 0.0039, 0.003, 0.0029, 0.0027, 0.0027, 0.0025], [0.0118, 0.0111, 0.0063, 0.0059, 0.0049, 0.0036, 0.0036, 0.0036], [0.0081, 0.0081, 0.0063, 0.0038, 0.0034, 0.0034, 0.0032, 0.0028], [0.0128, 0.005, 0.0047, 0.0042, 0.0029, 0.0029, 0.0025, 0.0024], [0.0128, 0.0037, 0.0034, 0.0032, 0.0029, 0.0022, 0.0021, 0.0018], [0.0124, 0.0085, 0.0067, 0.0059, 0.0052, 0.003, 0.0026, 0.0024], [0.0312, 0.0122, 0.0115, 0.0101, 0.0089, 0.0054, 0.0054, 0.0051], [0.0317, 0.0205, 0.0181, 0.015, 0.0103, 0.0097, 0.0066, 0.0059], [0.0289, 0.0199, 0.0175, 0.0155, 0.0137, 0.0083, 0.0078, 0.0078], [0.035, 0.029, 0.0187, 0.0146, 0.0107, 0.01, 0.0073, 0.0069], [0.029, 0.0226, 0.0176, 0.0155, 0.0129, 0.0114, 0.0094, 0.0094], [0.0209, 0.0163, 0.0153, 0.0105, 0.0105, 0.0082, 0.0077, 0.0072], [0.0216, 0.0216, 0.014, 0.0116, 0.0102, 0.0096, 0.009, 0.0085], [0.0301, 0.025, 0.0183, 0.0125, 0.0104, 0.0098, 0.0092, 0.0092], [0.0515, 0.0401, 0.0229, 0.0178, 0.013, 0.0108, 0.0101, 0.0095], [0.0442, 0.039, 0.0184, 0.0153, 0.0144, 0.0144, 0.0087, 0.0082], [0.0917, 0.0359, 0.0218, 0.0192, 0.015, 0.0141, 0.0132, 0.011], [0.1082, 0.0291, 0.0257, 0.0227, 0.0213, 0.0213, 0.0177, 0.0156], [0.3566, 0.0902, 0.0847, 0.0332, 0.0201, 0.0157, 0.0147, 0.013], [0.3316, 0.1298, 0.074, 0.0256, 0.0256, 0.0199, 0.0129, 0.0107], [0.3694, 0.1199, 0.0567, 0.0236, 0.0222, 0.0173, 0.0162, 0.0126], [0.2707, 0.1361, 0.0442, 0.0285, 0.0237, 0.0196, 0.0184, 0.0184], [0.2575, 0.0612, 0.0255, 0.024, 0.024, 0.0225, 0.0199, 0.0155], [0.2551, 0.0324, 0.0209, 0.0197, 0.0197, 0.0185, 0.0185, 0.0163], [0.1811, 0.043, 0.0191, 0.0168, 0.0158, 0.014, 0.014, 0.0123], [0.0921, 0.0674, 0.0264, 0.0248, 0.0206, 0.017, 0.016, 0.0125], [0.0282, 0.0282, 0.0161, 0.0161, 0.0142, 0.0142, 0.0133, 0.0118], [0.0198, 0.0198, 0.0128, 0.0113, 0.0113, 0.0106, 0.0088, 0.0088], [0.015, 0.0117, 0.0097, 0.0091, 0.0066, 0.0062, 0.0059, 0.0055], [0.0155, 0.0145, 0.0137, 0.0083, 0.0073, 0.0073, 0.0073, 0.0069], [0.0292, 0.0227, 0.0227, 0.0188, 0.0166, 0.0129, 0.0129, 0.0107], [0.0436, 0.0281, 0.0264, 0.0264, 0.0193, 0.0141, 0.0125, 0.0117], [0.0355, 0.0215, 0.019, 0.0178, 0.0131, 0.0123, 0.0084, 0.0084], [0.0821, 0.0468, 0.0208, 0.0195, 0.0162, 0.0087, 0.0081, 0.0063], [0.1162, 0.0427, 0.0202, 0.0178, 0.0122, 0.0095, 0.0095, 0.0095], [0.2117, 0.1206, 0.0687, 0.0346, 0.0325, 0.0153, 0.0105, 0.0082], [0.7835, 0.0826, 0.0643, 0.0501, 0.0077, 0.0047, 0.0028, 0.0017], [0.6708, 0.1696, 0.1321, 0.0139, 0.0035, 0.0024, 0.0024, 0.0015], [0.6082, 0.3255, 0.0441, 0.0111, 0.0041, 0.0028, 0.0013, 0.0012], [0.5786, 0.3097, 0.0419, 0.037, 0.0154, 0.0078, 0.0024, 0.0015], [0.9987, 0.0006, 0.0005, 0.0001, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Kotlin": [230781, 221418, 231018, 124150, 151974, 108215, 144733, 209684, 214026, 230891, 213171, 144189, 111971, 136370, 181744, 186431, 204572, 169333, 194885, 210865, 237214, 217233, 232878, 244516, 235724, 212910, 214871, 234918, 220240, 201373, 185225, 211294, 198352, 125148, 149910, 141091, 154079, 140161, 148004, 146353, 174517, 172057, 115661, 91698, 96303, 108832, 82489, 78426, 66611, 91722, 67496, 102044, 116019, 76616, 64475, 79858, 29202, 22682, 26602, 4706, 2155, 734, 542]}}, {"pos": 389, "top": [[" \u2013", ".", "u", "-", "\u30f3", "\u0647", "......", "an"], [" \u2013", "\u30f3", "\u0647", "ers", " \\\"", " -*", " \u00b7", " \u2013**"], [" \u2013", "\u2013", "\"", ".", "\u2013and", "[", "\u2026\"", "\u30f3"], ["\u30f3", " ``", "``", " ``(", " Golk", "&eacute", " fkk", "ikin"], ["\u30f3", "ers", " -*", " --", "\u0647", " *@", " ------", "@\\"], ["\u30f3", "@\\", "\u0647", "ers", "\\xe", ":@", "-&", " *@"], ["\u30f3", "``", "ers", " \ufffd", "\u0647", "@\\", " --", "-&"], ["ers", "\u30f3", "\\xe", "\u0647", "@\\", "-&", "u", "an"], ["\\xe", "ers", "-&", "u", "\\xf", "\ufffdt", "ward", "\u0647"], ["\\xe", "ers", "-&", "\ufffdt", "...\\", "\\xf", "-\\", "an"], ["\\xe", "ers", "an", "k", "&", "...\\", "u", "\\n"], ["ers", "illion", "ball", " carbs", " kids", "ogs", "aku", "unk"], ["ers", "aku", "raries", " carbs", "ogs", "yst", "ball", "illion"], ["ers", " racing", "ball", " kids", " bike", "iki", "yst", "raries"], ["ers", " kids", " racing", "ops", " bike", "yst", "ball", "raries"], ["ers", " kids", "ball", "aku", " racing", "aki", "ogs", " bike"], ["ers", " kids", "k", " racing", "ball", " kid", "an", " bike"], ["ers", " kids", " racing", " bike", "ball", " kid", "bike", " bikes"], [" kids", "ers", " racing", " bike", "bike", "ball", " kid", " Racing"], [" kids", " racing", " kid", " bike", "bike", "ers", "ball", " teen"], [" kids", " racing", "k", " kid", " Racing", "an", " teen", "u"], [" kids", " bike", "bike", " racing", "ball", " Racing", " kid", "ers"], [" racing", " kids", " bike", " Racing", "bike", " kid", "ball", " bikes"], [" racing", " kids", " Racing", " bike", " sport", " kid", "bike", " cars"], [" racing", " Racing", " bike", " kids", " cars", "bike", " racer", " bikes"], [" racing", " bike", " Racing", " bikes", " sport", " kids", " cars", " racer"], [" racing", " sport", " bike", " cars", " sports", " bikes", " Racing", " kids"], [" racing", " sport", " kids", " sports", " bike", " Racing", " motor", " cars"], [" racing", " sport", " bike", " kids", " sports", " Racing", " bikes", " cars"], [" racing", " sport", " bike", " kids", " sports", " Racing", " bikes", " ride"], [" racing", " kids", " bike", " sport", " bikes", " sports", " ride", " cars"], [" kids", " racing", " sport", " bike", " sports", " ride", " bikes", " kid"], [" racing", " kids", " sport", " bike", " ride", " bikes", " racer", " kid"], [" racing", " kids", " bike", " bikes", " sport", " ride", " stunt", " kid"], [" racing", " bike", " kids", " sport", " bikes", " ride", " racer", " stunt"], [" racing", " bike", " Racing", " sport", " tiny", " kids", " ride", " bikes"], [" racing", " sport", " Racing", " bike", " motor", " tiny", " sports", " kids"], [" racing", " tiny", " sport", " motor", " kids", " bike", " Racing", " motors"], [" racing", " motor", " tiny", " sport", " bike", " motors", " Racing", " bikes"], [" racing", " motor", " bike", " motors", " bikes", " tiny", " Racing", " sport"], [" motor", " racing", " motors", " bike", " bikes", " cars", " Motor", " Racing"], [" motor", " motors", " racing", " bike", " bikes", " cars", " Motor", " motorcycle"], [" motors", " motor", " racing", " bike", " bikes", " cars", " motorcycle", " Motor"], [" motors", " motor", " racing", " bike", " cars", " bikes", " sport", " chassis"], [" motors", " motor", " racing", " bike", " cars", " chassis", " sport", " bikes"], [" motor", " motors", " racing", " cars", " bike", " chassis", " engine", " wheels"], [" motors", " motor", " racing", " chassis", " bike", " engine", " cars", " hobby"], [" motors", " motor", " chassis", " engine", " bike", " racing", " hobby", " cars"], [" chassis", " motors", " motor", " engine", " bike", " racing", " equipment", " hobby"], [" chassis", " motors", " motor", " engine", " equipment", " pedal", " hardware", " cockpit"], [" chassis", " cockpit", " motors", " engine", "\u8f66\u67b6", " motor", " vehicle", " pedal"], [" chassis", " engine", " motors", " racing", "\u8f66\u8eab", "\u5e95\u76d8", "\u8f66\u67b6", " pedal"], [" chassis", " engine", "\u8f66\u67b6", "\u8f66\u8eab", "\u5e95\u76d8", "frame", " vehicle", " motors"], [" chassis", "\u5e95\u76d8", " engine", "\u8f66\u8eab", "\u8f66\u67b6", " budget", "frame", "engine"], [" chassis", "\u8f66\u67b6", "\u5e95\u76d8", " engine", " frame", "frame", "\u8f66\u8eab", "\u6846\u67b6"], [" chassis", "\u8f66\u8eab", "frame", " body", " frame", "\u5e95\u76d8", "\u8f66\u67b6", "\u7684\u8eab\u4f53"], [" chassis", " frame", "frame", "\u8f66\u67b6", "\u8f66\u8eab", "\u6846\u67b6", "\u5e95\u76d8", " body"], [" chassis", "frame", " frame", "\u8f66\u8eab", " body", "\u8f66\u67b6", "\u5e95\u76d8", "\u6846\u67b6"], [" chassis", " frame", "frame", "\u8f66\u67b6", "Frame", "-frame", " frames", "\u8f66\u8eab"], [" chassis", " frame", "frame", "\u8f66\u67b6", " frames", "Frame", " body", "-frame"], [" chassis", " frame", " kart", "frame", " Kart", " car", " cart", "\u8f66\u67b6"], [" chassis", " kart", " frame", "ch", " Kart", "frame", " kit", " car"], [" chassis", " Ch", "ch", "Ch", "-ch", "art", ".ch", "_ch"]], "p": [[0.6465, 0.0322, 0.0118, 0.0118, 0.0081, 0.0072, 0.0067, 0.0067], [0.319, 0.1604, 0.133, 0.0159, 0.0103, 0.0085, 0.0058, 0.0052], [0.8704, 0.0382, 0.0091, 0.0091, 0.0085, 0.0055, 0.0022, 0.0022], [0.0416, 0.0391, 0.0173, 0.0082, 0.0077, 0.0068, 0.005, 0.0044], [0.1655, 0.0886, 0.0393, 0.0326, 0.0326, 0.0288, 0.0186, 0.0068], [0.1103, 0.0297, 0.014, 0.0124, 0.0103, 0.0103, 0.0091, 0.0085], [0.0651, 0.0476, 0.042, 0.0289, 0.0239, 0.0198, 0.0186, 0.0175], [0.0863, 0.036, 0.0338, 0.016, 0.0141, 0.0117, 0.0097, 0.0091], [0.1019, 0.058, 0.0156, 0.0147, 0.013, 0.0114, 0.0107, 0.0101], [0.0931, 0.0388, 0.0111, 0.0098, 0.0092, 0.0087, 0.0081, 0.0072], [0.085, 0.0622, 0.0294, 0.0202, 0.0202, 0.0139, 0.013, 0.0102], [0.026, 0.0131, 0.007, 0.0055, 0.0048, 0.0048, 0.0048, 0.0045], [0.033, 0.0084, 0.0061, 0.0051, 0.0048, 0.0048, 0.0048, 0.0042], [0.0997, 0.0082, 0.0082, 0.006, 0.005, 0.005, 0.005, 0.0044], [0.0934, 0.0184, 0.0126, 0.0053, 0.0046, 0.0044, 0.0041, 0.0041], [0.0646, 0.0144, 0.0039, 0.0036, 0.0034, 0.0034, 0.0032, 0.0032], [0.4101, 0.0246, 0.0103, 0.0071, 0.0066, 0.0062, 0.0055, 0.0043], [0.0877, 0.0196, 0.0105, 0.0087, 0.0082, 0.0077, 0.005, 0.005], [0.0257, 0.0188, 0.0166, 0.0156, 0.0107, 0.0107, 0.0095, 0.0078], [0.0424, 0.0227, 0.0188, 0.0156, 0.0122, 0.0095, 0.0089, 0.0089], [0.0449, 0.035, 0.0226, 0.0176, 0.0165, 0.0155, 0.0114, 0.0107], [0.0307, 0.0198, 0.0186, 0.0164, 0.0113, 0.0113, 0.0106, 0.0073], [0.0434, 0.0383, 0.0247, 0.0205, 0.017, 0.0124, 0.0117, 0.008], [0.09, 0.0311, 0.0201, 0.0189, 0.013, 0.0122, 0.0114, 0.0084], [0.13, 0.0577, 0.0256, 0.024, 0.0155, 0.0146, 0.0137, 0.0137], [0.174, 0.064, 0.064, 0.0468, 0.0388, 0.0365, 0.0302, 0.0235], [0.144, 0.093, 0.06, 0.0388, 0.0364, 0.0342, 0.0284, 0.0266], [0.2176, 0.1165, 0.0456, 0.0378, 0.0378, 0.0229, 0.0202, 0.0202], [0.133, 0.1102, 0.0628, 0.0459, 0.0406, 0.0297, 0.0262, 0.0217], [0.1497, 0.0908, 0.0624, 0.0586, 0.0403, 0.0295, 0.023, 0.0216], [0.1279, 0.0776, 0.0643, 0.0643, 0.0285, 0.0285, 0.0268, 0.0196], [0.1234, 0.1159, 0.066, 0.0401, 0.0228, 0.0189, 0.0178, 0.0157], [0.2021, 0.0698, 0.0579, 0.0351, 0.02, 0.0177, 0.0156, 0.0156], [0.1132, 0.0882, 0.0535, 0.0286, 0.0286, 0.0197, 0.0163, 0.0135], [0.1727, 0.0561, 0.0437, 0.034, 0.0249, 0.0234, 0.0161, 0.0133], [0.2704, 0.05, 0.0366, 0.0366, 0.0252, 0.0222, 0.0196, 0.0162], [0.2884, 0.0534, 0.039, 0.039, 0.0196, 0.0196, 0.0173, 0.0163], [0.1946, 0.0557, 0.0434, 0.036, 0.0338, 0.0338, 0.0263, 0.017], [0.2457, 0.0621, 0.0401, 0.0377, 0.0354, 0.0312, 0.0259, 0.0148], [0.1572, 0.1015, 0.1015, 0.0479, 0.0397, 0.0397, 0.0213, 0.02], [0.2404, 0.1458, 0.1002, 0.0608, 0.0306, 0.0287, 0.0224, 0.0224], [0.2323, 0.1809, 0.0969, 0.0518, 0.0335, 0.0277, 0.0203, 0.0168], [0.1892, 0.1474, 0.13, 0.0478, 0.0309, 0.0309, 0.0165, 0.0155], [0.1767, 0.1141, 0.1141, 0.0506, 0.0447, 0.0271, 0.0175, 0.0164], [0.175, 0.1203, 0.0937, 0.039, 0.0345, 0.0196, 0.0184, 0.0184], [0.1463, 0.1463, 0.0783, 0.0271, 0.0254, 0.0211, 0.0211, 0.0145], [0.1087, 0.0959, 0.0582, 0.0331, 0.0311, 0.0292, 0.0258, 0.0242], [0.1136, 0.1003, 0.0647, 0.0418, 0.0326, 0.0306, 0.0238, 0.0197], [0.1209, 0.1209, 0.0571, 0.0325, 0.0253, 0.0253, 0.0174, 0.0164], [0.3148, 0.0847, 0.0243, 0.0201, 0.0147, 0.0147, 0.0147, 0.013], [0.3905, 0.0412, 0.0363, 0.0194, 0.0194, 0.0172, 0.0142, 0.0126], [0.6445, 0.0364, 0.0342, 0.025, 0.0104, 0.0098, 0.0092, 0.0086], [0.9154, 0.0108, 0.0079, 0.007, 0.0054, 0.0018, 0.0018, 0.0016], [0.8947, 0.0113, 0.0099, 0.0073, 0.0068, 0.0032, 0.0022, 0.0018], [0.9504, 0.0077, 0.0053, 0.0044, 0.0039, 0.0036, 0.0028, 0.0009], [0.9554, 0.0083, 0.0064, 0.0057, 0.0047, 0.0027, 0.0024, 0.0012], [0.9792, 0.0051, 0.004, 0.0028, 0.0019, 0.0013, 0.0008, 0.0005], [0.9914, 0.0022, 0.0019, 0.0009, 0.0009, 0.0006, 0.0005, 0.0002], [0.9088, 0.0399, 0.0352, 0.0101, 0.0015, 0.0007, 0.0006, 0.0004], [0.7393, 0.1869, 0.0417, 0.0072, 0.0044, 0.0039, 0.0039, 0.0024], [0.9611, 0.0176, 0.0083, 0.0039, 0.002, 0.0008, 0.0007, 0.0006], [0.9368, 0.0092, 0.0081, 0.0041, 0.0038, 0.0019, 0.0012, 0.0007], [0.5819, 0.1076, 0.1011, 0.0653, 0.024, 0.024, 0.0137, 0.0107]], "ranks": {"Kotlin": [73551, 15482, 32079, 1801, 2544, 10346, 13206, 24458, 25768, 50168, 47509, 12099, 5959, 8039, 11968, 7175, 16369, 16030, 36132, 53536, 82401, 19959, 18483, 77013, 62531, 33930, 28340, 54782, 36741, 31587, 26853, 53555, 84560, 47414, 90713, 53560, 62864, 54660, 49283, 49456, 63042, 47102, 28801, 27923, 32525, 32506, 33438, 29504, 20392, 21263, 16472, 49392, 67642, 61401, 34447, 28424, 37322, 46247, 64407, 5980, 2265, 2140, 4429]}}, {"pos": 390, "top": [[".", ",", "\u00a0", ";", "?", "ation", "ten", "-"], [" Hert", "ingly", "ness", " \u041d\u043e\u0432\u043e\u0441\u0438\u0431", "eur", "isans", "lab", "ovn\u00ed"], [".", ",", "\ufffd", ";", "\u2026", "?", "\u00a0", "ation"], [" ``", "&quot", " ``(", " \uff62", "\uff63", "\u2015\u2015\u2015\u2015", "\uff62", "``"], [" ``", "&quot", " \uff62", "\ufffdt", ".\ufffd", "ation", "\uff62", "rans"], ["&quot", " ``", "\ufffdt", " \ufffd", ".\ufffd", " \uff62", "\ufffds", " ____"], [" ``", ".\ufffd", " \ufffd", "&quot", "\ufffds", "\ufffdt", " ____", "\u0092"], [".\ufffd", "&quot", "\ufffds", " \ufffd", " ``", "\ufffdt", "\u0092", "ation"], [".\ufffd", "\ufffds", "&quot", "\ufffdt", " \ufffd", ".&", "\u0092", " ____"], [".\ufffd", "\ufffds", "\ufffdt", ".&", "&quot", "\u2015", " \ufffd", ","], [".\ufffd", " \ufffd", "&quot", "\ufffds", " ____", ".&", "\ufffdt", "\ufffd"], [".\ufffd", "\ufffds", "\ufffdt", "&quot", " \ufffd", " ____", "ation", ".&"], [".\ufffd", "\ufffdt", "\ufffds", "&quot", "ation", " racing", "ition", "?\u201c"], [".\ufffd", "ation", " racing", "ition", "&quot", "\ufffdt", " sporting", "\ufffds"], [".\ufffd", " racing", " sporting", "ation", "ition", "&quot", " sport", "ed"], ["&quot", " sporting", " racing", "?s", " sport", " Ferrari", "\ufffdt", "\u0092"], ["?s", " wildly", "ation", "&quot", " sporting", " racing", "ers", " kid"], [" wildly", " racing", " kid", "&quot", " sporting", "\uff40", "\uff61", "\uff63"], [" wildly", "&quot", " ?", " sporting", " racing", "-esque", "\uff61", " booze"], [" wildly", " &", " \ufffd", " ?", " ,", " \u00ae", " sporting", "&quot"], [" .", " ,", " &", " \ufffd", " ?", " \u00ae", " ;", " -"], [" ?", " .", " ,", " &", " -", " \u00ae", " !", " wildly"], [" .", " ,", " ?", " ;", " &", " \ufffd", " \u00ae", " -"], [" .", " ,", " ?", " ;", " -", " &", " \ufffd", "<|endoftext|>"], [" ,", " ?", " .", " &", " ____", " ;", " \ufffd", " -"], [" .", " ,", " ?", " :", " ____", " wildly", " -", " ;"], [" ,", " .", " ?", " ____", " :", " wildly", " ;", " ___"], [" ,", " ?", " .", " ____", " :", " -", " wildly", " _____"], [" ,", " ?", " .", " wildly", " -", " ____", " racing", " :"], [" .", " ,", " ?", " -", " wildly", " cheap", " racing", " :"], [" .", " ,", " ?", " -", " :", " ;", " racing", " and"], [" ,", " .", " -", " ?", " and", " wildly", " for", " over"], [" .", " ,", " ?", " wildly", " -", " \u2014", " !", " incredibly"], [" .", " wildly", " ,", " incredibly", " cheap", " -", " ?", " desperately"], [" wildly", " ,", " .", " cheap", " incredibly", " barely", " desperately", " -"], [" .", " -", " ,", " \u2014", " \u2013", " \u201c", " wildly", " !"], [" .", " cheap", " \u2014", " barely", " -", " ,", " wildly", " notoriously"], [" cheap", " .", " -", " ,", " barely", " budget", " \u201c", " incredibly"], [" cheap", " .", " budget", " hardware", " -", " ,", " barely", " desperately"], [" cheap", " hardware", " .", " budget", " barely", " technology", " incredibly", " ,"], [" hardware", " cheap", " budget", " technology", " engine", " .", " engineering", " tiny"], [" hardware", " cheap", " budget", " engine", " technology", " engineering", " barely", " equipment"], [" hardware", " cheap", " budget", " limited", " budgets", " engine", " technology", " equipment"], [" hardware", " budget", " cheap", " engine", " technology", " barely", " desperately", " engines"], [" hardware", " cheap", " budget", " equipment", " impossible", " technology", " .", " engine"], [" hardware", " budget", " cheap", " impossible", " barely", " equipment", " limited", " without"], [" hardware", " budget", " impossible", " cheap", " tiny", " desperately", " equipment", " barely"], [" hardware", " without", " budget", " impossible", " cheap", " limited", " barely", " equipment"], [" hardware", " without", " budget", " equipment", " equipped", " .", " engine", " cheap"], [" hardware", " without", " budget", " equipment", " chassis", ".", " cheap", " budgets"], [" hardware", " without", " chassis", " budget", " with", " powered", " budgets", " engine"], [" chassis", " engine", " hardware", " powered", " without", " engines", " motors", " budget"], [" chassis", " engine", " hardware", " powered", " frame", " engines", " cockpit", " motors"], [" chassis", " engine", " budget", " hardware", " frame", " cockpit", " budgets", " powered"], [" chassis", " engine", " frame", "engine", "\u5e95\u76d8", " budget", "\u8f66\u67b6", " hardware"], [" chassis", " body", " frame", "\u8f66\u8eab", "\u5e95\u76d8", " engine", " bodies", "\u7684\u8eab\u4f53"], [" chassis", " frame", " body", "\u8f66\u8eab", "\u5e95\u76d8", " engine", "\u8f66\u67b6", "frame"], [" chassis", " body", " frame", "\u8f66\u8eab", "\u5e95\u76d8", " engine", " bodies", "\u8f66\u67b6"], [" chassis", " frame", "frame", " body", "\u8f66\u67b6", " engine", "Frame", " frames"], [" chassis", " body", " frame", "frame", " Body", "\u8f66\u8eab", " bodies", "Body"], [" chassis", " frame", " body", " ch", "frame", " ch\u00e2", " Ch", "ch"], [" chassis", " frame", " ch", " Ch", ",ch", ".ch", "-ch", " body"], [" chassis", " ch", " Ch", " frame", " body", ",ch", ".ch", "-ch"]], "p": [[0.8709, 0.0218, 0.0062, 0.0062, 0.0031, 0.0026, 0.0023, 0.002], [0.0107, 0.0044, 0.0042, 0.0037, 0.0033, 0.0033, 0.0025, 0.0021], [0.3023, 0.0764, 0.0634, 0.0319, 0.0264, 0.0193, 0.0151, 0.0097], [0.5622, 0.081, 0.0247, 0.0192, 0.0159, 0.0066, 0.0049, 0.003], [0.3099, 0.2569, 0.0348, 0.0211, 0.0088, 0.0073, 0.0068, 0.0064], [0.169, 0.1236, 0.0662, 0.0662, 0.0549, 0.0377, 0.0313, 0.0243], [0.2402, 0.1992, 0.1551, 0.1457, 0.0346, 0.0223, 0.0163, 0.0154], [0.3934, 0.12, 0.0995, 0.0603, 0.0344, 0.0268, 0.0184, 0.0068], [0.5311, 0.1185, 0.0814, 0.03, 0.0248, 0.0219, 0.011, 0.0097], [0.3837, 0.1412, 0.0804, 0.0458, 0.043, 0.0261, 0.0179, 0.0123], [0.3443, 0.1435, 0.0818, 0.0637, 0.0562, 0.0528, 0.0182, 0.0182], [0.2001, 0.0945, 0.0834, 0.0538, 0.0254, 0.0211, 0.0083, 0.0073], [0.0723, 0.0321, 0.0283, 0.0152, 0.0142, 0.0076, 0.0076, 0.0063], [0.0769, 0.0194, 0.0183, 0.0126, 0.0126, 0.0092, 0.0092, 0.0081], [0.0243, 0.0178, 0.0147, 0.0115, 0.0084, 0.0074, 0.0074, 0.0061], [0.0253, 0.0105, 0.0099, 0.0072, 0.0047, 0.0041, 0.0041, 0.0039], [0.0163, 0.0099, 0.0099, 0.0093, 0.0093, 0.0087, 0.0073, 0.0068], [0.0112, 0.0068, 0.0068, 0.006, 0.006, 0.0053, 0.0044, 0.0039], [0.027, 0.021, 0.0093, 0.0077, 0.0073, 0.006, 0.0053, 0.0047], [0.0645, 0.0569, 0.0535, 0.0443, 0.0185, 0.0163, 0.0153, 0.0127], [0.1602, 0.1413, 0.0405, 0.0405, 0.0357, 0.0261, 0.0231, 0.0204], [0.2536, 0.1855, 0.0236, 0.0208, 0.0162, 0.0162, 0.0152, 0.0134], [0.2606, 0.1791, 0.0901, 0.0425, 0.04, 0.0242, 0.0201, 0.0167], [0.3208, 0.3014, 0.0434, 0.0318, 0.0247, 0.0218, 0.0132, 0.0117], [0.2173, 0.1163, 0.0851, 0.0663, 0.0402, 0.0333, 0.0276, 0.0229], [0.2082, 0.1621, 0.1186, 0.0362, 0.034, 0.03, 0.0206, 0.0194], [0.1373, 0.1069, 0.1069, 0.0649, 0.0393, 0.0306, 0.0136, 0.0128], [0.3525, 0.1075, 0.0787, 0.0694, 0.0212, 0.0199, 0.0199, 0.0146], [0.1989, 0.0646, 0.057, 0.0503, 0.0135, 0.0127, 0.0112, 0.0112], [0.3054, 0.1635, 0.0468, 0.0152, 0.0126, 0.0126, 0.0098, 0.0092], [0.5444, 0.2003, 0.037, 0.0113, 0.0088, 0.005, 0.0042, 0.0042], [0.2469, 0.2319, 0.0295, 0.0148, 0.0096, 0.009, 0.0066, 0.0062], [0.213, 0.1375, 0.0446, 0.037, 0.0288, 0.0198, 0.0106, 0.0106], [0.0485, 0.0402, 0.0355, 0.0229, 0.019, 0.0178, 0.0102, 0.0102], [0.0474, 0.0393, 0.0238, 0.0224, 0.021, 0.0198, 0.0145, 0.0136], [0.1436, 0.0987, 0.0987, 0.0818, 0.0341, 0.0249, 0.0207, 0.0207], [0.1092, 0.0662, 0.0549, 0.0355, 0.0333, 0.0313, 0.0244, 0.0157], [0.0904, 0.0904, 0.0354, 0.0293, 0.0202, 0.0139, 0.0139, 0.013], [0.0887, 0.0446, 0.0254, 0.0239, 0.0224, 0.0211, 0.0198, 0.0154], [0.129, 0.069, 0.0505, 0.0326, 0.0154, 0.0136, 0.0106, 0.0099], [0.176, 0.1003, 0.0306, 0.0224, 0.0144, 0.012, 0.0106, 0.0093], [0.3341, 0.07, 0.0425, 0.0166, 0.0156, 0.013, 0.0107, 0.0095], [0.3403, 0.0629, 0.0591, 0.018, 0.0159, 0.014, 0.0097, 0.0097], [0.3364, 0.0313, 0.0259, 0.0148, 0.0115, 0.0108, 0.0108, 0.0108], [0.2516, 0.0386, 0.0282, 0.0142, 0.0142, 0.0133, 0.0125, 0.0098], [0.2437, 0.033, 0.0273, 0.0156, 0.0156, 0.0146, 0.0137, 0.0137], [0.363, 0.0317, 0.0218, 0.0218, 0.015, 0.0091, 0.0085, 0.008], [0.2905, 0.0609, 0.0347, 0.0198, 0.0154, 0.0128, 0.0106, 0.0093], [0.3018, 0.1426, 0.0384, 0.0125, 0.0117, 0.0097, 0.0091, 0.0091], [0.3633, 0.2204, 0.0557, 0.0132, 0.0117, 0.0097, 0.008, 0.008], [0.1669, 0.1221, 0.0894, 0.0789, 0.029, 0.0226, 0.0107, 0.0107], [0.3762, 0.13, 0.084, 0.0397, 0.0256, 0.0165, 0.0137, 0.0114], [0.8398, 0.0474, 0.0174, 0.0093, 0.0039, 0.0028, 0.0027, 0.0025], [0.9072, 0.0274, 0.0057, 0.0051, 0.0025, 0.002, 0.0018, 0.0015], [0.9739, 0.0202, 0.0007, 0.0004, 0.0004, 0.0003, 0.0002, 0.0002], [0.9882, 0.0067, 0.0012, 0.0005, 0.0003, 0.0002, 0.0002, 0.0002], [0.9984, 0.0005, 0.0004, 0.0001, 0.0001, 0.0001, 0.0001, 0.0], [0.9986, 0.0009, 0.0002, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9934, 0.0059, 0.0002, 0.0002, 0.0001, 0.0, 0.0, 0.0], [0.9809, 0.014, 0.0045, 0.0001, 0.0001, 0.0001, 0.0001, 0.0], [0.9987, 0.0012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9993, 0.0002, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9934, 0.0036, 0.0013, 0.0007, 0.0001, 0.0001, 0.0001, 0.0001]], "ranks": {"Kotlin": [117381, 60229, 83007, 11023, 13156, 11053, 15913, 39033, 27300, 28184, 18974, 6153, 5978, 18037, 24862, 17756, 24452, 13402, 18824, 72074, 111726, 54801, 64215, 113452, 82996, 37003, 23634, 45988, 34995, 29139, 48775, 79551, 91400, 57031, 109270, 45869, 39238, 46614, 43695, 50817, 59825, 57427, 42407, 34804, 41722, 63105, 58382, 51948, 46277, 39063, 34748, 26652, 34577, 41785, 40384, 16858, 23804, 17439, 26891, 8787, 6919, 3212, 5379]}}, {"pos": 391, "top": [["\"@", "@\"", " //@", " *@", "\"", " =\"", " [@", "*@"], [" [@", "\uff20", "@@@@", " @@", " ;;^", " \uff3b", " \u25ce", " '@"], [" \uff3b", "@@@@", " [@", "\uff3b", " \ufffd", " \u2014\u2014", "[\"@", "\"@"], ["\uff1d\uff1d\uff1d\uff1d", " **\u300c", " Shemale", " ``", " +#+", " ``(", "\uff3f\uff3f", " ::::::::"], [" \uff3b", "\\xc", " [@", "\"@", "\uff20", " '@", "*@", "\"#"], ["\\xc", " \uff3b", "\"#", "\u4e86", ";;;;", "\"@", " \u30fb", "\uff20"], [" \uff3b", "\\xc", "\"@", " \u3010", " \u2014\u2014", "\u4e86", " \u30fb", "\"#"], [" \uff3b", "\\xc", "\"@", " [@", "\"#", "[#", " [#", "[\"@"], ["\\xc", ";&", " [@", "\"@", "[#", " \uff3b", "\"#", " ['#"], [";&", "\\xc", "\\xa", " comprising", " [[", " encompass", "{}\\", "\\xe"], ["\\xc", ";&", "\\xa", "\\xe", " [[", "[#", " encompass", " comprising"], [" **\u300c", "\\xc", " chassis", "\\uD", "\\xa", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\\xaa", ":[["], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " chassis", " **\u300c", " ;;^", "\\uD", "ESIS", "CALLTYPE", "\\xaa"], [" chassis", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " ;;^", "pmat", "\\uD", "ESIS", " atop", " Shemale"], [" ostensibly", " requisite", " atop", " concurrently", " chassis", " amid", " encompass", " bespoke"], [" requisite", " ostensibly", " bespoke", " \u2014", " atop", "\u65cb\u5373", " amid", " outright"], [" requisite", " ostensibly", " bespoke", " encompass", " utterly", " amid", " atop", " bolster"], [" utterly", " bespoke", " sprawling", " \u2014", " amid", " ostensibly", " ultimately", " outright"], [" utterly", " \u2014", " ostensibly", " bespoke", " amid", " sprawling", " arguably", " wholly"], [" \u2014", " utterly", " \u2014\u2014", " merely", " ostensibly", " myriad", "\u2014and", " requisite"], ["<|endoftext|>", " \u2014", " ,", " .", " ;", " \u2014\u2014", " utterly", " merely"], [" .", " .**", " utterly", " ;", " profoundly", " amid", " ,", " fundamentally"], [" .", " ;", " ,", " utterly", " \u2014", " .\"", " merely", " --"], [" .", " ,", " ;", " \u2014", " .\"", "<|endoftext|>", " -", " ultimately"], [" ,", " .", " \u2014", " ;", " \u2014\u2014", " --", " utterly", "\u2014a"], [" .", " ,", " ;", " \u2014", " .**", " --", " utterly", " \u2014\u2014"], [" ,", " .", " ;", " \u2014", " --", " :", " .**", " utterly"], [" ,", " .", " --", " ;", " \u2014", " :", " merely", " -"], [" ,", " .", " ;", " \u2014", " --", " .**", " sprawling", " ________"], [" .", " ,", " \u2014", " ;", " .**", " --", " \u2014\u2014", " "], [" .", " ,", " ;", " .**", " :", " \u2014", " ?", " -"], [" .", " ,", " \u2014", " -", " ;", " much", " --", " under"], [" .", " \u2014", " ,", " fundamentally", " sprawling", " vastly", " merely", " barely"], [" \u2014", " fundamentally", " ,", " sprawling", " .", " barely", " wildly", " vastly"], [" fundamentally", " sprawling", " \u2014", " barely", " relentlessly", " relentless", " utterly", " profoundly"], [" \u2014", " .", " \u2014\u2014", " ,", " fundamentally", " barely", "\u2014and", " \u2013"], [" \u2014", " .", " barely", " fundamentally", " relentlessly", " relentless", " \u2014\u2014", " utterly"], [" \u2014", " .", " fundamentally", " cheap", " barely", " relentlessly", " relentless", " desperately"], [" \u2014", " cheap", " fundamentally", " .", " barely", " relentlessly", " desperately", " relentless"], [" cheap", " .", " fundamentally", " relentlessly", " barely", " impossible", " forced", " \u2014"], [" cheap", " hardware", " .", " relentlessly", " forced", " fundamentally", " relentless", " engineering"], [" cheap", " engineering", " hardware", " cramped", " desperately", " relentlessly", " engineered", " \u2014"], [" cheap", " hardware", " constrained", " engineering", " fundamentally", " cramped", " relentlessly", " desperately"], [" forced", " fundamentally", " desperately", " constrained", " impossible", " \u2014", " cheap", " hardware"], [" impossible", " .", " cheap", " forced", " fundamentally", " hardware", " without", " \u2014"], [" without", " forced", " impossible", " cheap", " .", " constrained", " hardware", " fundamentally"], [" impossible", " hardware", " fundamentally", " desperately", " awkward", " without", " cheap", " forced"], [" without", " fundamentally", " forced", " constrained", " impossible", " desperately", " simultaneously", " hardware"], [" without", " .", " forced", " built", " constrained", ".", "\u2014and", " impossible"], [" without", ".", ".**", " .", " **.", " WITHOUT", " with", " Without"], [".", " without", ".**", " with", " .", "().", " ().", "**."], [".", " using", ".**", " without", " .", " **.", "**.", "()."], [".", " using", ".**", " constrained", " without", "().", " .", "**."], [" using", ".", " while", ".**", "using", " Using", " without", ".\u201c"], [" using", "using", " Using", ".", " while", ".**", "Using", "-using"], [" using", " while", "using", " Using", ".", "while", " whilst", " While"], [" using", " while", ".", "using", "while", " Using", " While", " budget"], [" while", " using", ".", "while", " While", "using", " WHILE", " whilst"], [" while", " using", ".", " built", "while", " While", " budget", "using"], [" while", " using", ".", " While", " budget", " running", "while", " built"], [".", " while", " using", " running", ",", " budget", " powered", " built"], [".", ",", " using", " while", " running", " built", " with", " budget"], [".", ",", " while", " using", " with", " built", " on", " running"]], "p": [[0.0187, 0.0121, 0.0086, 0.008, 0.0073, 0.0073, 0.0065, 0.0061], [0.0218, 0.0218, 0.0181, 0.0181, 0.0181, 0.0159, 0.0159, 0.015], [0.2168, 0.0484, 0.0454, 0.0401, 0.0293, 0.0243, 0.0243, 0.0202], [0.031, 0.0227, 0.0177, 0.0156, 0.0156, 0.0147, 0.0138, 0.0114], [0.0523, 0.0523, 0.0492, 0.0383, 0.0263, 0.0263, 0.0181, 0.016], [0.0645, 0.0305, 0.0173, 0.0127, 0.0099, 0.0099, 0.0064, 0.0053], [0.1013, 0.0479, 0.0479, 0.0373, 0.0273, 0.0256, 0.0226, 0.0187], [0.0188, 0.0188, 0.0138, 0.0107, 0.0084, 0.0079, 0.0054, 0.0048], [0.0141, 0.0141, 0.0117, 0.0117, 0.0103, 0.0091, 0.0071, 0.0063], [0.0121, 0.0107, 0.0061, 0.0061, 0.005, 0.0047, 0.0039, 0.0039], [0.029, 0.0212, 0.0176, 0.0088, 0.0065, 0.0061, 0.0057, 0.0057], [0.0141, 0.0076, 0.0059, 0.0038, 0.0032, 0.003, 0.003, 0.0023], [0.0116, 0.0071, 0.0046, 0.0031, 0.0029, 0.0028, 0.002, 0.0019], [0.0057, 0.005, 0.003, 0.0025, 0.0025, 0.0022, 0.0016, 0.0015], [0.0171, 0.011, 0.0052, 0.0046, 0.0038, 0.0036, 0.0036, 0.0032], [0.0487, 0.0245, 0.0123, 0.0109, 0.0066, 0.0045, 0.0043, 0.0035], [0.0134, 0.0111, 0.0092, 0.0087, 0.0087, 0.0081, 0.0068, 0.0063], [0.0162, 0.0082, 0.0082, 0.0077, 0.0077, 0.0056, 0.0053, 0.0047], [0.0397, 0.0273, 0.0146, 0.01, 0.01, 0.01, 0.0089, 0.0083], [0.1356, 0.0499, 0.0251, 0.0195, 0.0162, 0.0111, 0.0105, 0.0105], [0.3349, 0.1087, 0.0426, 0.0353, 0.0228, 0.0189, 0.013, 0.0089], [0.0724, 0.0283, 0.0207, 0.0195, 0.0152, 0.0092, 0.0072, 0.0063], [0.2177, 0.1095, 0.0908, 0.0158, 0.0158, 0.0115, 0.0108, 0.0108], [0.5486, 0.2148, 0.0543, 0.0078, 0.0061, 0.0042, 0.0037, 0.0024], [0.1334, 0.1106, 0.1039, 0.0714, 0.0556, 0.0218, 0.0159, 0.0091], [0.266, 0.1516, 0.0492, 0.0298, 0.0218, 0.017, 0.015, 0.0141], [0.2894, 0.1367, 0.0646, 0.0238, 0.0185, 0.0135, 0.0112, 0.0068], [0.5556, 0.1165, 0.0313, 0.0277, 0.0108, 0.0051, 0.0042, 0.0042], [0.3072, 0.1645, 0.0304, 0.0286, 0.0163, 0.0093, 0.0087, 0.0064], [0.5377, 0.1978, 0.0285, 0.0126, 0.0072, 0.0036, 0.0032, 0.003], [0.7954, 0.1077, 0.0073, 0.0061, 0.0029, 0.0025, 0.0019, 0.0019], [0.266, 0.2499, 0.0218, 0.0097, 0.0086, 0.0067, 0.0063, 0.0063], [0.1452, 0.1452, 0.0644, 0.0135, 0.0105, 0.0099, 0.0077, 0.0077], [0.0883, 0.0305, 0.0174, 0.0135, 0.012, 0.0082, 0.0077, 0.0073], [0.0258, 0.0178, 0.0167, 0.0138, 0.013, 0.013, 0.0115, 0.0108], [0.2889, 0.073, 0.0223, 0.0197, 0.0153, 0.0093, 0.0087, 0.0087], [0.1716, 0.0631, 0.0232, 0.0205, 0.015, 0.0117, 0.011, 0.011], [0.0612, 0.0448, 0.0255, 0.024, 0.0175, 0.0155, 0.0137, 0.0106], [0.0385, 0.0265, 0.0206, 0.0206, 0.0182, 0.016, 0.0142, 0.0117], [0.0378, 0.0244, 0.019, 0.0158, 0.0148, 0.0131, 0.0131, 0.0131], [0.0412, 0.0195, 0.0152, 0.0142, 0.0134, 0.0126, 0.0118, 0.0118], [0.0233, 0.0233, 0.0206, 0.0182, 0.0182, 0.0182, 0.016, 0.0141], [0.0208, 0.0208, 0.0195, 0.0173, 0.0152, 0.0134, 0.0134, 0.0134], [0.0362, 0.0249, 0.0206, 0.0206, 0.0171, 0.0171, 0.0161, 0.0151], [0.0387, 0.0321, 0.0302, 0.0283, 0.0207, 0.0172, 0.0161, 0.0161], [0.0648, 0.0326, 0.0287, 0.0224, 0.0197, 0.0144, 0.0144, 0.0128], [0.0452, 0.0292, 0.0292, 0.0242, 0.0242, 0.0201, 0.0188, 0.0166], [0.0651, 0.0348, 0.0271, 0.0255, 0.0255, 0.0225, 0.0186, 0.0165], [0.3382, 0.091, 0.0179, 0.0168, 0.014, 0.0123, 0.0116, 0.0096], [0.2973, 0.2465, 0.0517, 0.0313, 0.0084, 0.0074, 0.0062, 0.0054], [0.4601, 0.1238, 0.08, 0.0428, 0.0333, 0.0276, 0.0244, 0.0148], [0.3943, 0.128, 0.113, 0.0827, 0.0268, 0.0196, 0.0184, 0.0184], [0.5905, 0.1318, 0.0622, 0.0229, 0.0202, 0.0115, 0.0115, 0.0108], [0.6079, 0.1537, 0.1056, 0.0284, 0.0098, 0.0081, 0.0056, 0.0044], [0.9591, 0.0176, 0.0057, 0.0039, 0.0027, 0.001, 0.0007, 0.0007], [0.5354, 0.4169, 0.0111, 0.0046, 0.0044, 0.0041, 0.0032, 0.003], [0.5584, 0.3838, 0.0116, 0.0116, 0.0043, 0.0033, 0.0031, 0.0021], [0.7288, 0.2088, 0.0133, 0.0086, 0.0052, 0.0052, 0.0026, 0.0018], [0.6629, 0.2152, 0.0424, 0.0114, 0.0074, 0.0065, 0.0039, 0.0037], [0.6043, 0.2855, 0.0496, 0.0067, 0.0049, 0.0046, 0.0032, 0.0032], [0.5262, 0.1936, 0.1708, 0.0432, 0.0109, 0.0058, 0.0052, 0.0046], [0.8902, 0.0569, 0.0237, 0.0185, 0.0025, 0.0009, 0.0006, 0.0004], [0.7057, 0.2942, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Kotlin": [52141, 82139, 109145, 58024, 69673, 53984, 21586, 68439, 85303, 172366, 123986, 82559, 67738, 81550, 147963, 92987, 69212, 55521, 44301, 92060, 162042, 51194, 91019, 188230, 116466, 62818, 65675, 135982, 79070, 59018, 60124, 106560, 74562, 55522, 106234, 86116, 95508, 95147, 97596, 91795, 97430, 87812, 64396, 57294, 43294, 71386, 51172, 55358, 105005, 105694, 95109, 50457, 56398, 52756, 56092, 4354, 1481, 920, 963, 41, 45, 9, 15]}}, {"pos": 392, "top": [[" \u2013", ".", "\u2013", ",", ";", "\u00a0\u00a0", "\u00a0", "\u2026."], [" \u2013", "\u2013", "\u2013and", " \u2013,", " \u200b\u200b", " \u2013**", "\u2013\u2013", " Hammer"], ["\u2013", " \u2013", "\u2013and", "\u2026..", " \u2013,", ",", "\u2026.", ".\u2013"], [" milfs", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Shemale", "-------------</", "----------</", " Blowjob", " **\u25cb", "\uff0a\uff0a\uff0a\uff0a"], [" \u201c.", " \u041a\u0438\u0454", "\u65b0\u52a0\u5761", "\ub370\ubbf8", " **\u2018", ":@", " \u200b\u200b", " **\u201c"], [" \u200b\u200b", ",", ":", ".", "<|quad_end|>", " \ud83d\ude42", "!:", "!\u201d."], [" \u2018", " \u201d", " \u2013", " **\u2018", " \n\n", " \n", " \u2019", "   \n"], [" **\u20ac", " **\u201e", " **\u2018", " bigger", "   \n\n", "   \n", " anyways", " **#"], [" \n\n", "   \n\n", " \u2018", "  \n\n", "   \n", " \n", " \u201d", "!\u201d."], [" bigger", " folks", " anyways", " booze", " guts", " goodies", "\u0434\u044c\u043c\u0438", " kinda"], [" folks", " bigger", " though", " pretty", " incredibly", " kids", " huge", " plenty"], [" bigger", " freaking", " goodies", " folks", " incredibly", " skyrocket", " veggies", " mighty"], [" incredibly", " freaking", " plethora", " anyways", " folks", " arguably", " skyrocket", " nerd"], [" incredibly", " freaking", " pricey", " skyrocket", " huge", " nasty", " goodies", " gorgeous"], [" incredibly", " truly", " huge", " effortlessly", " wildly", " folks", " really", " relentlessly"], [" incredibly", " folks", " freaking", " wildly", " huge", " ridiculously", " incredible", " effortlessly"], [" incredibly", " wildly", " huge", " effortlessly", " myriad", " truly", " countless", " utterly"], [" incredibly", " freaking", " effortlessly", " wildly", " relentlessly", " ridiculously", " savvy", " relentless"], [" incredibly", " relentlessly", " effortlessly", " ridiculously", " freaking", " wildly", " utterly", " endlessly"], [" incredibly", " wildly", " myriad", " truly", " effortlessly", " utterly", " hugely", " relentlessly"], [" myriad", " incredibly", " wildly", " truly", " utterly", "<|endoftext|>", " merely", " swiftly"], [" incredibly", " wildly", " truly", " tremendous", " arguably", " effortlessly", " myriad", " huge"], [" incredibly", " truly", " merely", " myriad", " arguably", " wildly", " utterly", " tremendous"], [" myriad", " truly", " merely", " incredibly", " even", " --", " wildly", " much"], ["\n\n", " myriad", " incredibly", " \n\n", " truly", " --", " wildly", " utterly"], [" incredibly", " wildly", " myriad", " vastly", " truly", " utterly", " arguably", " tremendous"], [" incredibly", " wildly", " vastly", " myriad", " truly", " tremendous", " utterly", " arguably"], [" --", " arguably", " incredibly", " wildly", " vastly", " truly", " myriad", " hugely"], [" incredibly", " wildly", " vastly", " arguably", " myriad", " truly", " relentless", " relentlessly"], [" incredibly", " wildly", " truly", " vastly", " massive", " arguably", " even", " \u2014"], [" incredibly", " truly", " even", " huge", " wildly", " massive", " much", " enormous"], [" incredibly", " truly", " huge", " massive", " wildly", " even", " relentlessly", " dramatically"], [" incredibly", " massive", " truly", " relentlessly", " huge", " wildly", " relentless", " massively"], [" incredibly", " relentlessly", " massively", " massive", " relentless", " wildly", " truly", " vastly"], [" relentlessly", " incredibly", " relentless", " massively", " notoriously", " massive", " wildly", " desperately"], [" relentlessly", " incredibly", " relentless", " notoriously", " massively", " desperately", " aggressively", " wildly"], [" relentlessly", " relentless", " notoriously", " incredibly", " massively", " aggressively", " desperately", " impossible"], [" relentlessly", " incredibly", " relentless", " impossible", " massively", " notoriously", " aggressively", " desperately"], [" impossible", " relentlessly", " relentless", " incredibly", " massively", " desperately", "\u6839\u672c\u65e0\u6cd5", " notoriously"], [" impossible", " relentlessly", " incredibly", " relentless", " demanding", "\u6839\u672c\u65e0\u6cd5", " massively", " desperately"], [" impossible", " demanding", " relentless", " incredibly", " relentlessly", " massively", " insanely", " desperately"], [" impossible", " demanding", " relentless", " relentlessly", " incredibly", " demands", "\u6839\u672c\u65e0\u6cd5", " aggressively"], [" impossible", " demanding", " incredibly", " relentless", " relentlessly", "\u6839\u672c\u65e0\u6cd5", " demands", " massively"], [" impossible", " demanding", " incredibly", " relentless", " Impossible", " demands", " relentlessly", " desperately"], [" impossible", " demanding", " incredibly", " demands", " relentless", " aggressively", " massively", " relentlessly"], [" impossible", " demanding", " aggressively", " demands", " incredibly", " massively", " wildly", " relentless"], [" impossible", " demanding", " Impossible", " massively", " wildly", " fundamentally", " demands", " incredibly"], [" impossible", " demanding", " Impossible", "\u6839\u672c\u65e0\u6cd5", " massively", " demands", " incredibly", " relentless"], ["\u6839\u672c\u65e0\u6cd5", " impossible", " Impossible", " demanding", " combining", " relentless", " simultaneous", " demands"], [" Impossible", " combining", "\u6839\u672c\u65e0\u6cd5", " demanding", " impossible", " attempting", "\u60f3\u8981\u5728", " simultaneous"], ["\u6839\u672c\u65e0\u6cd5", " combining", " Impossible", " attempting", "\u6307\u671b", "Attempting", "\u60f3\u8981\u5728", " achieving"], [" achieving", " requiring", " demanding", " insisting", "\u8981\u6c42\u7684", "\u8981\u6c42\u5728", " attempting", " Trying"], [" achieving", " demanding", " requiring", " Achie", " insisting", " achievable", "\u8981\u6c42\u7684", "\u8981\u5b9e\u73b0"], [" achieving", " requiring", " demanding", " insisting", "\u8981\u6c42\u7684", " Achie", " expecting", "\u7684\u8981\u6c42"], [" achieving", " demanding", " requiring", "\u8981\u6c42\u7684", "\u8981\u6c42", " requesting", "\u7684\u8981\u6c42", " Achie"], [" achieving", " expecting", " requiring", " demanding", " targeting", " Achie", " forcing", " aiming"], [" achieving", " demanding", " targeting", " expecting", " Achie", " hitting", " forcing", "forcing"], [" achieving", " demanding", " forcing", "forcing", " targeting", " requiring", " Achie", " expecting"], [" achieving", " Achie", " targeting", " demanding", " forcing", "forcing", " hitting", " requiring"], [" hitting", " Mid", " achieving", " mid", " hit", " Hit", " Achie", " hits"], [" hitting", " Mid", " achieving", " Achie", " mid", " demanding", " Hit", " Asking"], [" hitting", " Mid", " achieving", " Getting", " Kotlin", " Achie", " mid", " Asking"], [" Mid", " Achie", " Getting", " Hit", " Kotlin", " hitting", " Running", " Asking"]], "p": [[0.6552, 0.129, 0.1139, 0.0783, 0.0039, 0.0032, 0.003, 0.0018], [0.2005, 0.0225, 0.0128, 0.0057, 0.0016, 0.0014, 0.0012, 0.0009], [0.4175, 0.3685, 0.0565, 0.0365, 0.0208, 0.0172, 0.0098, 0.0087], [0.016, 0.0141, 0.0091, 0.008, 0.0067, 0.0063, 0.0046, 0.0046], [0.0017, 0.0015, 0.0014, 0.0014, 0.001, 0.001, 0.0009, 0.0009], [0.0456, 0.0123, 0.0045, 0.004, 0.0037, 0.0029, 0.0026, 0.0014], [0.1283, 0.0391, 0.0345, 0.0305, 0.0269, 0.0223, 0.0153, 0.0153], [0.0441, 0.0087, 0.0072, 0.0072, 0.0053, 0.0041, 0.0039, 0.0036], [0.1158, 0.1087, 0.0258, 0.0201, 0.0178, 0.0122, 0.0115, 0.0108], [0.005, 0.0045, 0.0021, 0.002, 0.0019, 0.0017, 0.0014, 0.0014], [0.0551, 0.0295, 0.0179, 0.0116, 0.0102, 0.0096, 0.0079, 0.0075], [0.0053, 0.0053, 0.0047, 0.0044, 0.0042, 0.0037, 0.0035, 0.0024], [0.0276, 0.0115, 0.0062, 0.0042, 0.0042, 0.004, 0.004, 0.0037], [0.015, 0.011, 0.0043, 0.0036, 0.0036, 0.0031, 0.0031, 0.0031], [0.091, 0.0457, 0.0335, 0.023, 0.0158, 0.0139, 0.0139, 0.0131], [0.3937, 0.0236, 0.0236, 0.0222, 0.0153, 0.0119, 0.0105, 0.0099], [0.4463, 0.039, 0.0252, 0.0222, 0.0173, 0.0135, 0.0127, 0.0112], [0.3229, 0.032, 0.0161, 0.0161, 0.0118, 0.0098, 0.0098, 0.0098], [0.2999, 0.0217, 0.0217, 0.0169, 0.0149, 0.0132, 0.0116, 0.0096], [0.2274, 0.054, 0.0421, 0.0328, 0.0328, 0.0308, 0.0211, 0.0199], [0.0724, 0.0498, 0.0413, 0.0388, 0.0342, 0.0266, 0.025, 0.025], [0.1359, 0.0323, 0.0285, 0.0236, 0.0222, 0.0208, 0.0184, 0.0173], [0.0635, 0.0385, 0.0385, 0.03, 0.0249, 0.0233, 0.0219, 0.0194], [0.0379, 0.0379, 0.0356, 0.0314, 0.0314, 0.0277, 0.0179, 0.0168], [0.0538, 0.0538, 0.037, 0.0288, 0.027, 0.0254, 0.0239, 0.0239], [0.1001, 0.0473, 0.0325, 0.0269, 0.0238, 0.0223, 0.021, 0.0197], [0.0975, 0.0713, 0.0297, 0.0246, 0.0246, 0.0204, 0.0192, 0.018], [0.0442, 0.0442, 0.0442, 0.0415, 0.0367, 0.0268, 0.0209, 0.0135], [0.0894, 0.0614, 0.0542, 0.0542, 0.0329, 0.0256, 0.0165, 0.0155], [0.0947, 0.0447, 0.0348, 0.0348, 0.0327, 0.0327, 0.0307, 0.0271], [0.0649, 0.0506, 0.0446, 0.0419, 0.0307, 0.0271, 0.0224, 0.0186], [0.1001, 0.0417, 0.0417, 0.0392, 0.0287, 0.0269, 0.0197, 0.0185], [0.1054, 0.0364, 0.0364, 0.0342, 0.0302, 0.0266, 0.0207, 0.0183], [0.084, 0.0577, 0.0329, 0.0329, 0.029, 0.0256, 0.0256, 0.02], [0.0774, 0.05, 0.0441, 0.0303, 0.0285, 0.0222, 0.0222, 0.0208], [0.0701, 0.0619, 0.0581, 0.0425, 0.0352, 0.0311, 0.0228, 0.0201], [0.0789, 0.0615, 0.0542, 0.045, 0.0329, 0.029, 0.0273, 0.0256], [0.0697, 0.0655, 0.0615, 0.051, 0.0373, 0.0329, 0.0273, 0.0256], [0.1813, 0.0627, 0.0589, 0.0589, 0.0261, 0.0261, 0.0245, 0.0245], [0.1946, 0.0632, 0.0632, 0.0632, 0.0408, 0.0247, 0.0193, 0.0193], [0.1819, 0.0712, 0.0628, 0.059, 0.0521, 0.0262, 0.0192, 0.0192], [0.229, 0.1305, 0.0351, 0.033, 0.031, 0.02, 0.0188, 0.0177], [0.3332, 0.1016, 0.0273, 0.0257, 0.0213, 0.0188, 0.0177, 0.0177], [0.5041, 0.0993, 0.0236, 0.0208, 0.0195, 0.0195, 0.0134, 0.0134], [0.4499, 0.0886, 0.0254, 0.0174, 0.0164, 0.0154, 0.0128, 0.012], [0.3535, 0.0951, 0.0212, 0.0199, 0.0146, 0.0121, 0.0121, 0.0114], [0.4154, 0.0818, 0.0266, 0.0234, 0.0161, 0.0161, 0.0151, 0.0142], [0.3069, 0.0729, 0.0533, 0.0252, 0.0222, 0.0196, 0.0163, 0.0163], [0.1108, 0.0863, 0.0524, 0.0298, 0.0181, 0.016, 0.0117, 0.0117], [0.0738, 0.0395, 0.0371, 0.0308, 0.0225, 0.0175, 0.0165, 0.0128], [0.057, 0.0535, 0.0368, 0.0253, 0.0253, 0.0223, 0.021, 0.0185], [0.1853, 0.1635, 0.0531, 0.0343, 0.0322, 0.0221, 0.0208, 0.0208], [0.7071, 0.0399, 0.0274, 0.0147, 0.0122, 0.0122, 0.0114, 0.0074], [0.6095, 0.0268, 0.0209, 0.0153, 0.0153, 0.0105, 0.0087, 0.0087], [0.8107, 0.0314, 0.0314, 0.0168, 0.0131, 0.0102, 0.0085, 0.007], [0.8441, 0.0225, 0.0199, 0.01, 0.0094, 0.0073, 0.0069, 0.0069], [0.7355, 0.0366, 0.0196, 0.0173, 0.0163, 0.0135, 0.0112, 0.0105], [0.6717, 0.0909, 0.0379, 0.0295, 0.026, 0.0203, 0.0158, 0.0139], [0.9106, 0.0312, 0.0167, 0.013, 0.0048, 0.0033, 0.0033, 0.0019], [0.9151, 0.0516, 0.009, 0.007, 0.0033, 0.0033, 0.002, 0.0018], [0.8379, 0.0688, 0.0287, 0.0174, 0.0056, 0.005, 0.0041, 0.0039], [0.5754, 0.1455, 0.0269, 0.0269, 0.021, 0.021, 0.0153, 0.0144], [0.4705, 0.0637, 0.0562, 0.0363, 0.0301, 0.0249, 0.0234, 0.022]], "ranks": {"Kotlin": [228973, 162292, 92964, 6192, 2650, 14517, 11849, 33791, 50684, 62775, 62193, 35073, 15302, 15581, 103680, 79064, 49409, 34020, 55118, 141747, 202578, 149696, 189158, 216364, 202507, 157908, 126604, 166874, 139746, 133989, 169624, 163025, 166715, 173915, 197418, 167534, 171883, 169532, 162116, 159463, 157969, 128119, 102995, 79844, 96359, 140644, 146451, 109547, 82242, 28490, 9965, 3158, 3393, 2000, 1092, 31, 22, 18, 29, 30, 17, 5, 5]}}, {"pos": 393, "top": [[" \u2013", ".", "\u2013", "\u2026..", "\u00a0\u00a0", "\u2026.", "\u00a0", "\u2013and"], [" \u2013", " \u2013**", "\u2013and", "\u2013\u2013", "**\u2013", " \u2013,", " **\u2013", "\u2013"], ["**\u2013", " \u2013**", " \u2013", " **\u2013", "\u2026..", "\u2026**", "\u2013and", " \u2013,"], [" milfs", " **:**", " Shemale", " Blowjob", "ielen", " Strec", " councill", " **:"], [" **#", "iha", "-**", "*******", " **:**", " **:", " *@", " @_"], ["-**", "iha", " **#", " **:", " **:**", "\u5178\u793c", "\u8f66", " **\u2013"], ["-**", " **#", "iha", "\u4e86", "\u662f", " \r\n\r\n", " \r\n", "\u3002\u3002\u3002"], [" **#", "-**", "iha", " **\u20ac", " \r\n\r\n", " **:", "   \r\n", "untut"], [" \r\n\r\n", "       \n\n", " **#", "   \n\n", "        \n\n", "     \n\n", "\t\n\n", "athon"], ["iha", "ymm", "Sharper", "daq", "VERY", "linky", " Hidal", " alot"], [" #%", "iha", " #", " #\"", " **#", " \uffe5", "\u4e86", " @_"], ["iha", " veggies", " **#", " comfy", "Sharper", " alot", " pornstar", " anyways"], ["iha", " veggies", " anyways", " comfy", "isecond", " booze", " skinny", " pornstar"], ["iha", " veggies", " anyways", " pornstar", " alot", " booze", " comfy", " skinny"], [" alot", " anyways", " veggies", " busted", "iha", " kids", " comfy", " kinda"], [" anyways", " alot", "Whilst", " veggies", "iha", " whilst", " comfy", " booze"], [" anyways", " veggies", " skinny", " booze", " crappy", " alot", "-tech", "iha"], ["iha", " veggies", " skinny", " anyways", " carbs", " booze", "-tech", " comfy"], [" booze", " crappy", " skinny", " HUGE", "iha", " veggies", " anyways", "kids"], [" HUGE", " incredibly", " anyways", " alot", " hugely", "iha", " insanely", " booze"], [" hugely", "Though", "<|endoftext|>", " incredibly", " utterly", " huge", " plenty", "Whilst"], ["iha", " HUGE", " incredibly", " anyways", " hugely", " huge", "kids", " insanely"], [" hugely", " incredibly", " huge", " plenty", "iha", " utterly", "huge", " insanely"], [" hugely", " incredibly", " huge", " plenty", " utterly", " barely", " massively", "Though"], [" \r\n\r\n", " hugely", "\r\n\r\n", "Whilst", "Though", "\u5373\u4fbf", " incredibly", "\t\n\n"], [" HUGE", " hugely", " alot", " pricey", " incredibly", " insanely", " freaking", " anyways"], [" hugely", " incredibly", " huge", " pricey", " insanely", " busted", "iha", " skinny"], [" hugely", " huge", " incredibly", " massively", " barely", " arguably", " plenty", "\n\n"], [" huge", " incredibly", " hugely", " massive", " massively", " tech", " arguably", "\n\n"], [" huge", " massive", " incredibly", " tech", " barely", " massively", " high", " heavy"], [" huge", " massive", " incredibly", " even", " high", " big", " extremely", " barely"], [" huge", " massive", " incredibly", " even", " high", " extremely", " big", " heavy"], [" huge", " massive", " even", " incredibly", " extremely", " massively", " only", " barely"], [" incredibly", " massively", " huge", " massive", " extremely", " insanely", " notoriously", " ONLY"], [" insanely", " incredibly", " massively", " notoriously", " massive", " HUGE", " relentlessly", " relentless"], [" incredibly", " insanely", " notoriously", " massively", " extremely", " relentless", " massive", " HUGE"], [" insanely", " incredibly", " notoriously", " massively", " HUGE", " relentless", " flawless", " demanding"], [" insanely", " incredibly", " massively", " notoriously", " flawless", " relentless", " demanding", " overclock"], [" insanely", " incredibly", " demanding", " massively", " flawless", " notoriously", " impossible", " relentless"], [" insanely", " demanding", " framerate", " incredibly", " overclock", "Requires", " flawless", " achievable"], [" demanding", " framerate", " overclock", " insanely", " hardware", " achievable", " tech", "Requires"], [" demanding", " overclock", " framerate", " achievable", " hardware", "Requires", " flawless", "\u6280\u672f\u8981\u6c42"], [" demanding", " achievable", " overclock", "Requires", " requires", " hardware", " framerate", " requirement"], [" demanding", " achievable", "\u8981\u6c42", "Requires", " requirement", " requires", "requires", " demands"], [" demanding", " achievable", " requires", "Requires", "requires", " impossible", " requirement", " require"], [" demanding", " requires", " demands", " achievable", " simultaneous", " requirement", " exige", "requires"], [" requires", " demanding", "requires", " demands", " simultaneous", " requirement", " Requires", " require"], [" requires", "Requires", "requires", "\u8981\u6c42", "\u8981\u6c42\u7684", " simultaneous", " demanding", " Requires"], ["requires", "Requires", "\u660e\u786e\u8981\u6c42", " Requires", " \u0442\u0440\u0435\u0431\u0443\u0435\u0442", "_require", "\u8981\u6c42\u7684", " \u0422\u0440\u0435\u0431"], ["Requires", " Requires", "requires", "\u8981\u6c42\u7684", "_require", " \u0442\u0440\u0435\u0431\u0443\u0435\u0442", "\u660e\u786e\u8981\u6c42", "\u8981\u6c42"], ["requires", "\u8981\u6c42\u7684", "\u8981\u6c42", "Requires", " Requires", " \u0442\u0440\u0435\u0431\u0443\u0435\u0442", "\u660e\u786e\u8981\u6c42", " requires"], ["\u8981\u6c42", "\u8981\u6c42\u7684", "requires", "Requires", " framerate", " Requires", "\u8981\u6c42\u5728", " Require"], ["\u8981\u6c42\u7684", "\u8981\u6c42", " framerate", "requires", "Requires", "require", " Requires", "Requirement"], ["\u8981\u6c42\u7684", " framerate", "\u8981\u6c42", " **+", " *@", "requires", "*@", " *\u2013"], [" framerate", " *@", "\u8981\u6c42\u7684", "*@", "\u8981\u6c42", " GPU", " **+", " Mbps"], [" FPS", " framerate", " fps", "fps", "_fps", " Mbps", "FPS", "1"], [" FPS", " fps", " framerate", "fps", "_fps", "FPS", "1", " Mbps"], [" FPS", " fps", "fps", " framerate", "1", "_fps", "FPS", "Hz"], ["1", " FPS", " fps", "fps", "\u5e27", " framerate", "-frame", "8"], ["1", " FPS", " fps", "\u5e27", "-frame", "fps", " framerate", "ropy"], ["1", " FPS", " fps", "9", "6", "8", "7", "2"], ["1", " FPS", " fps", "\u00b9", "6", "fps", "9", "\u2081"], ["1", "2", "3", "6", "4", "7", "8", "5"]], "p": [[0.8006, 0.0545, 0.0452, 0.0129, 0.0114, 0.0095, 0.0045, 0.0042], [0.0785, 0.0447, 0.0094, 0.0094, 0.0094, 0.0057, 0.0029, 0.0024], [0.553, 0.1234, 0.0401, 0.0401, 0.0167, 0.0167, 0.0167, 0.0089], [0.0189, 0.0074, 0.0045, 0.0045, 0.0042, 0.0031, 0.0026, 0.0024], [0.0896, 0.0227, 0.0156, 0.0121, 0.0089, 0.0061, 0.0057, 0.0042], [0.0484, 0.0148, 0.0122, 0.004, 0.0029, 0.0029, 0.0027, 0.0026], [0.0819, 0.0341, 0.0235, 0.0126, 0.0098, 0.0098, 0.0052, 0.0052], [0.0294, 0.0229, 0.0157, 0.0058, 0.0048, 0.0042, 0.004, 0.0037], [0.0217, 0.0192, 0.0149, 0.0075, 0.0075, 0.007, 0.0062, 0.0048], [0.0145, 0.0024, 0.002, 0.0018, 0.0017, 0.0017, 0.0015, 0.0015], [0.0182, 0.0171, 0.0133, 0.0067, 0.0063, 0.0052, 0.0052, 0.0049], [0.0161, 0.0059, 0.0036, 0.0032, 0.0028, 0.0025, 0.0023, 0.0022], [0.0096, 0.0075, 0.0033, 0.0029, 0.0021, 0.002, 0.0018, 0.0017], [0.0102, 0.0102, 0.0055, 0.0027, 0.0026, 0.0024, 0.0023, 0.0018], [0.0207, 0.0134, 0.0081, 0.0081, 0.0081, 0.0063, 0.0056, 0.0049], [0.0275, 0.0095, 0.0061, 0.0054, 0.0035, 0.0033, 0.0031, 0.0029], [0.0206, 0.0104, 0.0081, 0.0067, 0.0052, 0.0049, 0.0049, 0.0046], [0.0117, 0.0097, 0.0091, 0.0076, 0.0071, 0.0071, 0.0067, 0.0049], [0.0108, 0.0084, 0.0074, 0.0074, 0.007, 0.0066, 0.0066, 0.0058], [0.0121, 0.01, 0.0094, 0.0065, 0.0061, 0.0054, 0.0047, 0.0039], [0.0139, 0.0115, 0.009, 0.0054, 0.0042, 0.004, 0.0031, 0.0026], [0.0079, 0.0058, 0.0048, 0.0037, 0.0029, 0.0029, 0.0027, 0.0024], [0.0118, 0.0081, 0.0076, 0.0038, 0.003, 0.0028, 0.0019, 0.0018], [0.0101, 0.0054, 0.0051, 0.0029, 0.0026, 0.0024, 0.002, 0.0019], [0.0125, 0.0063, 0.0052, 0.0046, 0.004, 0.0019, 0.0019, 0.0018], [0.0044, 0.0041, 0.0032, 0.003, 0.003, 0.0023, 0.0022, 0.0021], [0.0041, 0.0025, 0.0025, 0.0023, 0.0022, 0.0016, 0.0014, 0.0014], [0.0115, 0.007, 0.0051, 0.0051, 0.0045, 0.0045, 0.0033, 0.0033], [0.0199, 0.0176, 0.0107, 0.01, 0.0094, 0.0088, 0.0083, 0.0078], [0.0471, 0.0345, 0.0209, 0.0209, 0.0163, 0.0153, 0.0144, 0.0127], [0.2331, 0.0554, 0.0489, 0.0296, 0.0191, 0.0169, 0.0149, 0.014], [0.1958, 0.0437, 0.0385, 0.0362, 0.0265, 0.0206, 0.0182, 0.0104], [0.1352, 0.06, 0.0467, 0.0412, 0.0283, 0.0266, 0.0183, 0.0172], [0.1013, 0.0696, 0.0577, 0.045, 0.035, 0.0329, 0.0146, 0.0107], [0.043, 0.0379, 0.0379, 0.0356, 0.0148, 0.0116, 0.0102, 0.0102], [0.0516, 0.0484, 0.0333, 0.0215, 0.0108, 0.009, 0.009, 0.009], [0.0491, 0.0298, 0.0232, 0.0181, 0.0085, 0.0075, 0.0075, 0.0071], [0.047, 0.0236, 0.0135, 0.0092, 0.0077, 0.0072, 0.0072, 0.0068], [0.0536, 0.0269, 0.0127, 0.0127, 0.0106, 0.0106, 0.0099, 0.0093], [0.0351, 0.0351, 0.0226, 0.0166, 0.0166, 0.0129, 0.0114, 0.0089], [0.0475, 0.0326, 0.0288, 0.0186, 0.0186, 0.0136, 0.0128, 0.012], [0.1101, 0.0357, 0.0315, 0.0191, 0.0169, 0.0169, 0.0109, 0.0102], [0.0682, 0.0284, 0.0251, 0.0173, 0.0143, 0.0119, 0.0119, 0.0119], [0.0893, 0.0509, 0.0272, 0.0256, 0.0226, 0.0226, 0.0155, 0.0155], [0.0613, 0.0421, 0.0396, 0.024, 0.0225, 0.0212, 0.0199, 0.0146], [0.0848, 0.0454, 0.0243, 0.0214, 0.0201, 0.0189, 0.0157, 0.0157], [0.0698, 0.0579, 0.031, 0.0241, 0.0227, 0.0166, 0.0156, 0.0146], [0.0652, 0.0576, 0.0576, 0.0508, 0.0396, 0.029, 0.029, 0.029], [0.0269, 0.0253, 0.0223, 0.0197, 0.0197, 0.0185, 0.0185, 0.0163], [0.1027, 0.0663, 0.0623, 0.0313, 0.026, 0.0229, 0.0202, 0.0131], [0.0779, 0.0607, 0.0472, 0.0392, 0.0392, 0.0174, 0.0163, 0.0087], [0.0774, 0.0566, 0.0285, 0.0251, 0.0236, 0.0162, 0.0105, 0.0082], [0.0604, 0.047, 0.0222, 0.0209, 0.0135, 0.0119, 0.0099, 0.0093], [0.0306, 0.0238, 0.021, 0.0144, 0.0112, 0.0093, 0.0093, 0.0077], [0.0307, 0.0165, 0.0136, 0.0113, 0.0094, 0.0088, 0.0083, 0.0069], [0.3475, 0.106, 0.0996, 0.039, 0.0236, 0.0087, 0.0064, 0.0056], [0.3471, 0.0934, 0.0567, 0.0366, 0.0105, 0.0098, 0.0082, 0.0068], [0.3165, 0.1028, 0.0517, 0.0485, 0.0168, 0.0139, 0.0108, 0.007], [0.2402, 0.212, 0.0536, 0.0305, 0.0269, 0.0154, 0.0087, 0.0056], [0.6296, 0.0485, 0.0456, 0.0102, 0.0084, 0.0079, 0.0035, 0.0031], [0.9831, 0.0012, 0.0008, 0.0006, 0.0006, 0.0004, 0.0003, 0.0002], [0.9954, 0.0002, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9998, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Kotlin": [153635, 85330, 66295, 27329, 39390, 76514, 61821, 77354, 79862, 144115, 109520, 53643, 45257, 60601, 153853, 109064, 64731, 70049, 93375, 158113, 232251, 174778, 227141, 240921, 189174, 150471, 165148, 202326, 192033, 186700, 160866, 105551, 146296, 92450, 137642, 76815, 66523, 71404, 56143, 54181, 69698, 48333, 25314, 34266, 29121, 68148, 69706, 60971, 63884, 47507, 23956, 14534, 11581, 11433, 5835, 4030, 1929, 3016, 5148, 1986, 2085, 722, 895]}}, {"pos": 394, "top": [[".", ",", " \u2013", "a", "\u2013", "!", ";", "o"], [" \u2013", ".", "\uff0e", "\u00adi", "\u00ad", "sWith", "erweise", " \u200b\u200b"], [".", ",", "\u2013", " \u2013", "\u3002", ".\u2013", "\u2026.", "\uff0e"], [" milfs", "-------------</", "----------</", " cumshot", " **\u25a0", " Blowjob", " ;;^", "erias"], ["kits", " **\u25a0", "abeled", "\uff01**", "sider", "-------------</", "\u0902\u092c\u0930", "schluss"], ["kits", "\uff01", "ICAST", "sider", "schluss", ":href", "\u0902\u092c\u0930", "nok"], ["\uff01", " **\u25a0", "\uff01**", "\uff08", "sider", "splash", "**!", "\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500"], [" **\u25a0", "-**", "enner", "svar", "sider", "**!", "\uff01**", "\uff01"], ["\uff01", "sWith", "sider", "\u00adi", "!\u00bb.", " **\u25a0", "ifier", "enner"], ["isecond", "-Cds", " iepaz\u012b\u0161an\u0101s", "\u70b9\u51fb\u590d\u5236\u94fe\u63a5", " V\u00e9ri", "\u0434\u044c\u043c\u0438", "sama", "\u52a0\u62ff\u5927\u7684"], ["er", "s", " #", "ers", "ed", " \u00ad", "\u00adi", "ward"], [" **\u25a0", "isecond", "erias", " veggies", "enner", " savory", "igators", "kota"], [" veggies", "kids", " savory", "erias", "isecond", "er", " **\u25a0", " crappy"], [" veggies", "kids", "isecond", "raries", " crappy", " pornstar", " savory", "trash"], [" busted", " kids", " veggies", "kids", " guys", " funky", " crappy", " scary"], [" veggies", "kids", " kids", " busted", " guys", " skinny", " crappy", " freaking"], [" veggies", "s", "kids", " gotta", "-esque", " busted", " skinny", " kids"], ["kids", "s", " veggies", " gotta", "kits", "-ish", "-get", " crappy"], ["kids", "**!", " crappy", "?!", " veggies", " gotta", " busted", "snap"], ["kids", " busted", " pricey", "\u8ddf", "ifetime", "snap", "Sadly", "\u54b1"], ["a", "<|endoftext|>", "n", "though", "o", "Though", "d", "l"], ["kids", "fully", "ly", "snap", "isecond", " busted", "\u6daf", "pping"], ["fully", "ly", "though", " hugely", "a", "s", "ahead", "just"], ["fully", "ly", " hugely", "a", "though", "n", "s", " barely"], ["  \n\n", "\r\n\r\n", " \r\n\r\n", " \n\n", "   \n\n", "\n\n", "\t\n\n", " hugely"], [" **#", " **", " incredibly", " hugely", " pricey", "  \n\n", " impactful", "\u5565"], ["\n\n", " tech", " hugely", " pricey", " incredibly", " massively", "\r\n\r\n", " crunch"], ["\n\n", " massively", " hugely", " incredibly", " fast", " \n\n", " tech", " #"], [" tech", "\n\n", " massively", " #", " incredibly", " fast", " hugely", " massive"], [" tech", " fast", " massive", " technology", " massively", " incredibly", " hardware", " high"], [" fast", " massive", " tech", " high", " technology", " huge", " massively", " heavy"], [" fast", " high", " tech", " technology", " huge", " massive", " heavy", " massively"], [" fast", " massively", " tech", " massive", " high", " huge", " technology", " incredibly"], [" tech", " overclock", " workflows", " hardware", " technology", " optimized", " massively", " optimization"], [" tech", " overclock", " massively", " fast", " hardware", " incredibly", "/fast", " modular"], ["\u2011", " hardware", " tech", "\u2026\u2026", " overclock", " fast", "\u2026**", "\ufffd"], ["\u2011", " optimized", " hardware", " optimization", " optimizations", " Android", " speed", " overclock"], ["\u2011", " Android", " optimized", " optimization", " Optimization", " hardware", " optimizations", " software"], [" hardware", " Java", " Android", " optimization", " Hardware", " CPU", " optimized", " optimizations"], [" Java", "Java", " JVM", "java", "/java", " java", "-java", " Android"], [" Java", "Java", " JVM", "java", "-java", " CPU", " Android", " optimizations"], [" Java", "Java", " JVM", "-java", " java", "java", "/java", " Python"], [" Java", "Java", "-java", " JVM", "java", "_java", " java", " JAVA"], [" Java", "Java", "-java", " JVM", "java", " JAVA", " java", "_java"], [" Java", "-java", "Java", " JVM", " java", "java", " JAVA", "_java"], [" Java", "-java", " JVM", "_java", "Java", " garbage", " java", " JAVA"], [" Java", "-java", " JVM", " garbage", "Java", "_java", " java", " Python"], [" Java", "-java", "Java", " JVM", ".Java", " garbage", "\u5783\u573e", " Translation"], ["-java", " JVM", " Java", "Java", "\u5783\u573e", "_java", "otlin", " garbage"], ["-java", " JVM", "otlin", "Java", "\u5783\u573e", " garbage", "_java", " Java"], ["-java", " JVM", "Java", "\u5783\u573e", ".Java", "_java", "otlin", " garbage"], [" JVM", "-java", "Java", "\u5783\u573e", " JNI", ".Java", " Kotlin", " garbage"], [" Kotlin", " JVM", " JNI", "Java", "-java", "Android", "otlin", " Android"], [" Kotlin", " JVM", " JNI", "Java", " garbage", "\u5783\u573e", "JNI", " Android"], [" garbage", "\u5783\u573e", " JVM", "GC", " GC", " Kotlin", "gc", " JNI"], [" garbage", "\u5783\u573e", " GC", "GC", " JVM", "\u5783\u573e\u5904\u7406", " Kotlin", "_GC"], [" GC", " garbage", "\u5783\u573e", "GC", "gc", "_GC", "_gc", " gc"], [" GC", "GC", " garbage", "_GC", "gc", "_gc", "\u5783\u573e", " gc"], [" GC", "GC", "_GC", " garbage", "_gc", "gc", "\u5783\u573e", " gc"], [" GC", "GC", " garbage", "_GC", "gc", "\u5783\u573e", " gc", "_gc"], [" GC", "GC", " garbage", " gc", "_GC", " Gar", "gc", "\u5783\u573e"], [" GC", "GC", " garbage", " Gar", " gc", " GB", "\u5783\u573e", " GA"], ["2", " GC", "3", "4", "GC", "1", " garbage", "6"]], "p": [[0.9275, 0.0523, 0.0097, 0.0026, 0.0013, 0.0006, 0.0006, 0.0004], [0.0283, 0.0172, 0.0111, 0.0098, 0.0092, 0.0049, 0.003, 0.003], [0.8157, 0.0629, 0.0337, 0.0192, 0.0116, 0.0055, 0.004, 0.0031], [0.0133, 0.0125, 0.011, 0.0081, 0.0067, 0.0055, 0.0043, 0.0038], [0.0155, 0.0137, 0.0047, 0.0042, 0.0039, 0.0039, 0.0039, 0.0039], [0.0195, 0.0041, 0.0038, 0.0032, 0.003, 0.0025, 0.0022, 0.0022], [0.0427, 0.0312, 0.0189, 0.0139, 0.0095, 0.0084, 0.0079, 0.0074], [0.0237, 0.0077, 0.0072, 0.0064, 0.0064, 0.005, 0.0044, 0.0044], [0.0084, 0.0061, 0.0057, 0.0051, 0.0048, 0.0045, 0.0045, 0.0045], [0.004, 0.0031, 0.0022, 0.0022, 0.002, 0.002, 0.0018, 0.0017], [0.2007, 0.0272, 0.0137, 0.0078, 0.0061, 0.0044, 0.003, 0.003], [0.0082, 0.0047, 0.0036, 0.0034, 0.0028, 0.0019, 0.0016, 0.0013], [0.0068, 0.0029, 0.0027, 0.0024, 0.0022, 0.002, 0.0017, 0.0013], [0.0073, 0.0037, 0.0021, 0.002, 0.0018, 0.0017, 0.0012, 0.0012], [0.014, 0.0124, 0.0103, 0.0096, 0.008, 0.0052, 0.0046, 0.0043], [0.0148, 0.0115, 0.009, 0.0062, 0.0058, 0.0051, 0.0051, 0.0035], [0.0275, 0.0189, 0.0157, 0.013, 0.0122, 0.0095, 0.0089, 0.0084], [0.0292, 0.0069, 0.0061, 0.0057, 0.0051, 0.0051, 0.0042, 0.0037], [0.0161, 0.0104, 0.0034, 0.0034, 0.0032, 0.0032, 0.0028, 0.0026], [0.0062, 0.0024, 0.0024, 0.0021, 0.0017, 0.0014, 0.0014, 0.0014], [0.0243, 0.0243, 0.0214, 0.0167, 0.0138, 0.0108, 0.0108, 0.0089], [0.007, 0.0029, 0.0026, 0.002, 0.002, 0.002, 0.0016, 0.0016], [0.0212, 0.01, 0.0065, 0.0037, 0.0031, 0.0029, 0.0027, 0.0027], [0.0166, 0.0089, 0.0078, 0.0074, 0.0069, 0.0051, 0.0051, 0.0035], [0.0612, 0.0349, 0.0349, 0.024, 0.0225, 0.0165, 0.01, 0.0088], [0.0231, 0.018, 0.0159, 0.0149, 0.0132, 0.0109, 0.0103, 0.0085], [0.0403, 0.0179, 0.0139, 0.0131, 0.0109, 0.009, 0.0079, 0.0062], [0.1197, 0.0303, 0.0221, 0.0195, 0.0152, 0.0152, 0.0143, 0.0143], [0.0325, 0.0306, 0.0253, 0.0238, 0.021, 0.021, 0.0185, 0.0174], [0.1427, 0.0384, 0.0248, 0.0233, 0.0206, 0.016, 0.0125, 0.0117], [0.0752, 0.055, 0.0486, 0.0403, 0.0334, 0.0313, 0.019, 0.0168], [0.0518, 0.0356, 0.0216, 0.0216, 0.0203, 0.0191, 0.0158, 0.0116], [0.0718, 0.0526, 0.0464, 0.0339, 0.0299, 0.0219, 0.0219, 0.0206], [0.0778, 0.0197, 0.0174, 0.0135, 0.0127, 0.0105, 0.0105, 0.0105], [0.1046, 0.0233, 0.0219, 0.016, 0.0151, 0.0133, 0.0125, 0.0097], [0.0836, 0.0371, 0.0239, 0.0211, 0.0198, 0.0155, 0.0136, 0.0128], [0.0914, 0.0555, 0.0297, 0.0297, 0.0279, 0.0262, 0.0192, 0.018], [0.1569, 0.1222, 0.0373, 0.0309, 0.0212, 0.0187, 0.0155, 0.0107], [0.0972, 0.0489, 0.0431, 0.0431, 0.0316, 0.0316, 0.0316, 0.0262], [0.4126, 0.1831, 0.0384, 0.0299, 0.0181, 0.015, 0.0117, 0.011], [0.4632, 0.1931, 0.0296, 0.018, 0.0149, 0.0131, 0.0116, 0.0109], [0.6201, 0.1777, 0.035, 0.0212, 0.0121, 0.0114, 0.0083, 0.0078], [0.5685, 0.1846, 0.0599, 0.025, 0.0172, 0.0151, 0.0134, 0.0126], [0.2746, 0.2423, 0.1075, 0.0421, 0.0349, 0.0225, 0.0199, 0.0187], [0.2751, 0.2281, 0.0696, 0.0372, 0.0256, 0.0226, 0.0212, 0.0199], [0.2696, 0.1356, 0.0499, 0.0302, 0.0284, 0.0251, 0.0208, 0.0195], [0.1879, 0.1292, 0.0394, 0.0211, 0.0186, 0.0175, 0.0164, 0.0128], [0.1095, 0.0624, 0.0517, 0.0486, 0.023, 0.0148, 0.0115, 0.0115], [0.0849, 0.0332, 0.0243, 0.0139, 0.0101, 0.0101, 0.0101, 0.0095], [0.077, 0.0467, 0.0207, 0.0161, 0.0142, 0.0081, 0.0072, 0.0063], [0.1289, 0.0306, 0.0254, 0.0128, 0.0099, 0.0088, 0.0082, 0.0064], [0.074, 0.0272, 0.0226, 0.0212, 0.0129, 0.0121, 0.0088, 0.0078], [0.2838, 0.2838, 0.0264, 0.0248, 0.0219, 0.015, 0.0141, 0.0141], [0.2792, 0.2463, 0.0485, 0.0168, 0.0168, 0.0148, 0.0115, 0.0108], [0.5428, 0.2564, 0.0832, 0.027, 0.0239, 0.021, 0.0039, 0.0039], [0.5289, 0.4667, 0.0017, 0.0006, 0.0006, 0.0004, 0.0002, 0.0001], [0.4833, 0.3322, 0.1078, 0.0654, 0.0047, 0.0029, 0.0017, 0.0009], [0.7828, 0.1979, 0.0068, 0.0041, 0.0036, 0.0022, 0.0012, 0.0009], [0.8738, 0.1183, 0.0028, 0.0015, 0.0013, 0.0013, 0.0005, 0.0003], [0.885, 0.1057, 0.006, 0.0008, 0.0007, 0.0006, 0.0004, 0.0003], [0.9743, 0.0202, 0.004, 0.0004, 0.0002, 0.0002, 0.0002, 0.0001], [0.9691, 0.0228, 0.0045, 0.0013, 0.0004, 0.0003, 0.0002, 0.0002], [0.9902, 0.0055, 0.0011, 0.0004, 0.0004, 0.0003, 0.0003, 0.0002]], "ranks": {"Kotlin": [208618, 146917, 75614, 15968, 13618, 37063, 75896, 120891, 158194, 169238, 199519, 130549, 70276, 91324, 185325, 106097, 83270, 87029, 81030, 163360, 233183, 179746, 227391, 239511, 177313, 93045, 131063, 136269, 136858, 77506, 74568, 61546, 45971, 10591, 6010, 819, 78, 34, 60, 19, 46, 67, 29, 27, 22, 40, 54, 45, 25, 20, 19, 7, 1, 1, 6, 7, 21, 15, 15, 20, 21, 111, 99]}}, {"pos": 395, "top": [[".", ",", " \u2013", "\u2013", "y", ".\u2013", ";", "\u2013and"], [" \u2013", "\u2013and", " \u2013**", "\u2013", "een", ".\u2013", "@\",", " Strec"], ["\u2013", " \u2013", ".\u2013", "\u2013and", ".", ",", " \u2013,", " \u2013**"], [" milfs", "*\u201c.", " ;;^", " Blowjob", " Strec", "':''", " Geile", " cumshot"], [" \\\"", "*\u201c.", "@$", ".*(", " \\\"$", " *\u201e", ".\\\"", " *\u201c"], ["odiac", " \n \n", "*\u201c.", "egers", "\u0441\u043e\u0442", "pedia", " \\\"", "orative"], [" \n \n", "\\\"", "__)", ".\\\"", " *\u00ab", ".__", " \\\"", " \n"], [" \\\"", ".\\\"", "\\\"", "}\\\"", " \\\"$", "\\\"\\", " \n \n", "=\\\""], [" \n \n", "\\\"", " \\\"", "}\\\"", ".\\\"", " \\\"$", "\\\"\",", "\\\",\\"], [" \n \n", "-$", " \\\"", "}\\\"", ".\\\"", "\\\",", " \\\"$", "\\\"\\"], [" \\\"", "\\\"", ".\\\"", "\\\"\\", " \\\"$", "}\\\"", " \n \n", "\\\","], [" \\\"", " *\u00ab", " veggies", " \\\"$", "flix", "}\\\"", " kids", " skinny"], ["flix", " \\\"", " veggies", " *\u00ab", "egers", "}\\\"", "odiac", " skinny"], ["flix", " veggies", "\uff62", " ;;^", "SCII", "Scalars", " Milf", "Sharper"], [" kids", " \\\"", " veggies", " moms", " goodies", "\uff62", " gorgeous", " skinny"], [" kids", " veggies", " skinny", "kids", " buzz", " moms", " busted", " comfy"], [" kids", " veggies", " skinny", " buzz", "kids", "-ish", " buzzing", " moms"], [" kids", " veggies", "kids", " skinny", "Sharper", " comfy", "bucks", " buzz"], [" veggies", " comfy", "Sharper", " skinny", " kids", "kids", "flix", "bucks"], [" buzz", " kids", " buzzing", " skinny", "Sharper", " gorgeous", " insanely", " comfy"], [" \n\n", " --", "Though", "<|endoftext|>", " hugely", " kids", " \n \n", " battling"], ["Sharper", " buzz", " kids", " gorgeous", " comfy", " anyways", "bucks", " buzzing"], [" --", " hugely", " incredibly", " booming", " horribly", " kids", " battling", " buzz"], [" --", " hugely", " barely", " incredibly", " wildly", " famously", " battling", " ''"], [" \n\n", " \r\n\r\n", " --", "   \n\n", " \n\n\n", "\n\n", "\t\n\n", " \n \n"], [" \n\n", " --", " \r\n\r\n", " hugely", " __", " incredibly", " pricey", " gorgeous"], [" --", " hugely", " buzz", " pricey", " incredibly", " gorgeous", " famously", " blazing"], [" --", " hugely", " famously", " whilst", " speed", " incredibly", " labour", " fast"], [" speed", " tech", " fast", " incredibly", " --", " hugely", " famously", " buzz"], [" tech", " speed", " fast", " buzz", " famously", " high", " mega", " speeds"], [" tech", " fast", " speed", " incredibly", " high", " mega", " huge", " peak"], [" fast", " high", " demand", " even", " speed", " tech", " -", " performance"], [" even", " fast", " high", " demand", " -", " critical", " speed", " incredibly"], [" tech", " incredibly", " insanely", " brutal", " mega", " demand", " fast", " aggressive"], [" insanely", " tech", " incredibly", " notoriously", " effortlessly", " brutal", " aggressively", " brutally"], [" insanely", "\u2011", " incredibly", " tech", "/fast", " notoriously", " overclock", " sprint"], [" tech", " insanely", " incredibly", " overclock", " sprint", "/fast", " fastest", " hardware"], [" insanely", " tech", " overclock", " sprint", " framerate", " scalability", " optimized", " flawless"], [" insanely", " overclock", " flawless", " framerate", " incredibly", " tech", " fastest", " sprint"], [" framerate", " overclock", " speeds", " fastest", " speed", "/fast", " sprint", "-speed"], [" framerate", " overclock", " speeds", " speed", " fastest", "-speed", "/fast", " fps"], [" framerate", " overclock", " speeds", " fps", "\u6bcf\u79d2", " uptime", " speed", " achievable"], [" framerate", " overclock", " speeds", " sprint", " achievable", " fps", "\u5cf0\u503c", " uptime"], [" framerate", " achievable", " speeds", "\u6bcf\u79d2", "\u5cf0\u503c", " sprint", " overclock", " peak"], [" framerate", " sprint", " speeds", " achievable", " peak", " fps", " overclock", " throughput"], [" framerate", " sprint", " peak", "/fast", " achievable", " fps", " FPS", "\u5cf0\u503c"], [" framerate", " sprint", " peak", " uptime", "/fast", " fps", " achievable", " flawless"], [" framerate", "/fast", " sprint", " peak", " achievable", "\u5cf0\u503c", "Requires", " uptime"], [" framerate", "/fast", " sprint", "\u5cf0\u503c", " uptime", "Requires", "-speed", "-tier"], [" framerate", "/fast", "Requires", "-speed", "\u5cf0\u503c", "-hour", "-tier", "-rated"], [" framerate", "/fast", " *\u2013", "-tier", "-speed", "\u901f", " uptime", ".\u2013"], [" framerate", "/fast", " Mbps", " fps", " FPS", "fps", " BPM", " RPM"], [" framerate", " FPS", " fps", " Mbps", "fps", " GPU", " CPU", " BPM"], [" FPS", " fps", " framerate", "fps", " Mbps", " GPU", " BPM", " CPU"], [" fps", " FPS", " framerate", "fps", " Mbps", "Hz", " DPI", " GPU"], [" FPS", " fps", "fps", "FPS", "_fps", " framerate", " TPS", " Mbps"], [" FPS", " fps", "fps", "FPS", "_fps", " framerate", " TPS", " Mbps"], [" FPS", " fps", "fps", "FPS", "_fps", " framerate", "Hz", " TPS"], [" FPS", " fps", "fps", "FPS", "\u5e27", " frames", "-frame", " frame"], [" fps", " FPS", "fps", "FPS", " frames", "\u5e27", "-frame", " frame"], [" fps", " FPS", "fps", "FPS", " frames", "0", "-frame", "\u5e27"], [" fps", " FPS", "0", "fps", " TPS", "FPS", " Hz", "Hz"], ["0", "2", "1", " fps", " FPS", "4", "8", "3"]], "p": [[0.7285, 0.1117, 0.087, 0.0528, 0.0034, 0.0022, 0.0019, 0.0018], [0.0237, 0.0237, 0.0127, 0.0112, 0.0105, 0.0047, 0.0034, 0.0028], [0.3405, 0.3005, 0.1038, 0.0809, 0.0671, 0.0097, 0.0071, 0.0055], [0.0114, 0.0051, 0.0048, 0.0048, 0.0048, 0.0022, 0.0022, 0.0021], [0.0276, 0.0167, 0.0139, 0.0115, 0.0095, 0.0084, 0.0079, 0.0066], [0.0116, 0.0058, 0.0058, 0.0058, 0.004, 0.0023, 0.0023, 0.0018], [0.056, 0.0385, 0.0385, 0.0264, 0.0219, 0.0206, 0.0182, 0.016], [0.1301, 0.0614, 0.0542, 0.0422, 0.0176, 0.0137, 0.0129, 0.0107], [0.056, 0.0494, 0.0361, 0.0319, 0.03, 0.016, 0.0151, 0.0125], [0.0188, 0.0146, 0.0137, 0.0114, 0.0094, 0.0074, 0.0074, 0.0074], [0.482, 0.0892, 0.0541, 0.0199, 0.0187, 0.0176, 0.0083, 0.0073], [0.0257, 0.0107, 0.0065, 0.0065, 0.0042, 0.0033, 0.0029, 0.0022], [0.005, 0.003, 0.003, 0.0025, 0.0021, 0.0013, 0.0012, 0.0011], [0.0025, 0.0018, 0.0013, 0.0012, 0.0009, 0.0009, 0.0008, 0.0008], [0.0048, 0.0024, 0.0023, 0.0017, 0.0017, 0.0015, 0.0014, 0.0011], [0.0076, 0.0032, 0.0027, 0.0026, 0.0023, 0.0018, 0.0015, 0.0013], [0.0111, 0.0067, 0.0056, 0.0032, 0.003, 0.0021, 0.0021, 0.0018], [0.0038, 0.0036, 0.0023, 0.0018, 0.0017, 0.0016, 0.0014, 0.0012], [0.0027, 0.0024, 0.0024, 0.0022, 0.0019, 0.0017, 0.0016, 0.0016], [0.006, 0.0053, 0.0034, 0.0032, 0.0029, 0.0029, 0.0025, 0.0025], [0.0221, 0.0183, 0.0104, 0.0067, 0.0049, 0.0038, 0.0034, 0.0028], [0.0038, 0.0021, 0.0021, 0.002, 0.0019, 0.0015, 0.0015, 0.0014], [0.0767, 0.0067, 0.0059, 0.0038, 0.0038, 0.0036, 0.0034, 0.0032], [0.119, 0.0063, 0.0049, 0.0046, 0.0034, 0.003, 0.003, 0.0028], [0.6477, 0.0365, 0.0251, 0.0119, 0.0119, 0.0111, 0.0063, 0.0049], [0.0639, 0.0221, 0.0126, 0.0063, 0.0052, 0.0052, 0.0043, 0.0041], [0.0131, 0.0043, 0.0031, 0.0027, 0.0024, 0.0024, 0.0024, 0.0023], [0.0378, 0.0108, 0.0079, 0.0062, 0.0051, 0.0048, 0.0048, 0.0045], [0.0165, 0.0094, 0.0088, 0.0083, 0.0073, 0.0069, 0.0069, 0.0065], [0.02, 0.0137, 0.0114, 0.0107, 0.005, 0.0047, 0.0047, 0.0047], [0.0388, 0.0221, 0.0152, 0.0118, 0.0111, 0.0092, 0.0087, 0.0081], [0.0213, 0.0213, 0.0129, 0.0129, 0.0114, 0.01, 0.0083, 0.0065], [0.046, 0.0262, 0.018, 0.0116, 0.0109, 0.0096, 0.0075, 0.0062], [0.0114, 0.0101, 0.0095, 0.0095, 0.0074, 0.0061, 0.0061, 0.0054], [0.0192, 0.0116, 0.0096, 0.0085, 0.0066, 0.0066, 0.0055, 0.0046], [0.0203, 0.0123, 0.0123, 0.0109, 0.009, 0.0085, 0.008, 0.007], [0.0239, 0.0239, 0.01, 0.0094, 0.0083, 0.0073, 0.0073, 0.0073], [0.0252, 0.0162, 0.0143, 0.0099, 0.0093, 0.0072, 0.0072, 0.0068], [0.0297, 0.014, 0.0116, 0.0116, 0.0109, 0.0109, 0.0085, 0.008], [0.1654, 0.0393, 0.021, 0.0186, 0.0174, 0.0164, 0.0136, 0.0106], [0.297, 0.0585, 0.0516, 0.0333, 0.026, 0.0202, 0.0139, 0.0123], [0.3029, 0.0676, 0.0265, 0.0194, 0.0133, 0.011, 0.0104, 0.0097], [0.1936, 0.0758, 0.0316, 0.0192, 0.014, 0.014, 0.0132, 0.0124], [0.1416, 0.0336, 0.0262, 0.0217, 0.0217, 0.018, 0.018, 0.0159], [0.1014, 0.0273, 0.0241, 0.0226, 0.0212, 0.0187, 0.0176, 0.0137], [0.0634, 0.041, 0.0171, 0.0171, 0.0151, 0.0125, 0.0097, 0.0091], [0.056, 0.0171, 0.0133, 0.0133, 0.0125, 0.011, 0.0091, 0.0086], [0.0559, 0.0281, 0.0248, 0.017, 0.015, 0.011, 0.0103, 0.0103], [0.0628, 0.0406, 0.0169, 0.014, 0.014, 0.0062, 0.0052, 0.004], [0.0722, 0.0249, 0.0098, 0.0086, 0.0071, 0.0056, 0.0056, 0.0056], [0.0235, 0.0172, 0.0067, 0.0036, 0.003, 0.003, 0.003, 0.0028], [0.1052, 0.0363, 0.0283, 0.0235, 0.0142, 0.0126, 0.0111, 0.0104], [0.0943, 0.0832, 0.0572, 0.0288, 0.027, 0.0174, 0.0145, 0.0136], [0.1906, 0.1231, 0.0581, 0.04, 0.0331, 0.0122, 0.0095, 0.0089], [0.2385, 0.1639, 0.0824, 0.0824, 0.0567, 0.0152, 0.0126, 0.0119], [0.592, 0.2796, 0.1166, 0.0096, 0.0013, 0.0007, 0.0001, 0.0001], [0.7297, 0.1628, 0.0872, 0.0194, 0.0004, 0.0003, 0.0001, 0.0], [0.6439, 0.209, 0.1268, 0.0194, 0.0004, 0.0001, 0.0001, 0.0001], [0.6219, 0.2592, 0.1081, 0.0078, 0.0015, 0.0004, 0.0004, 0.0001], [0.7212, 0.2066, 0.0671, 0.0023, 0.0008, 0.0007, 0.0005, 0.0003], [0.596, 0.3615, 0.0381, 0.0024, 0.0004, 0.0003, 0.0003, 0.0003], [0.5247, 0.3182, 0.1171, 0.0335, 0.0011, 0.0011, 0.001, 0.0002], [0.9991, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001]], "ranks": {"Kotlin": [139102, 101737, 46160, 10826, 11958, 14865, 19672, 66552, 109980, 128956, 80670, 54248, 34433, 31870, 76075, 105339, 32609, 19009, 16644, 42513, 175273, 44571, 118377, 188912, 117231, 39037, 45321, 87491, 88348, 33691, 14332, 20616, 48536, 10032, 16952, 7008, 4298, 3400, 3372, 5177, 7543, 8744, 5272, 9123, 12779, 35623, 37733, 38139, 30517, 37757, 47236, 48303, 13070, 9530, 4924, 7042, 2258, 6210, 8547, 6697, 6143, 4435, 5325]}}, {"pos": 396, "top": [[".", ",", "s", "?", "o", ";", " \u2013", "-"], ["\u2011", " \u2013", "s", "\uff20", ".", ",", "sville", " West"], [".", ",", "\u2011", "?", "s", "\u2013", " \u2013", "?,"], [" milfs", " Blowjob", " cumshot", " Shemale", " Busty", " **>>", " pupper", "cuci"], ["s", " @", " *@", " *.", " @_", "\uff20", " #", " #@"], ["!\u201d.", "s", " @", " \u201d", " \u201c.", "phans", "\u0629", "sip"], ["s", " -", " \u201d", "\u0629", "\n", "\u3000", " !!!", "phans"], ["s", "sche", "sville", " @", "phans", "sce", "\u0629", "sdale"], ["s", "\u0092", "\u201d.", "!\u201d.", "sche", "\u0629", "sport", "ness"], ["s", "ness", "\u0629", ",", "\u00c2", "sville", "\u0092", "-h"], ["s", "\u0629", " @", "\u00c2", "\u0092", "ness", "-", " -"], ["s", "sville", " fans", "syl", "phans", "s\u00e1g", "lymp", "smith"], ["s", " fans", "adians", "smith", "phans", "syl", "ness", "sville"], ["s", "smith", "-esque", "-eyed", " fans", "\u804c\u5b88", "-haired", "-ish"], ["s", "-esque", " loung", " fans", "-ish", "\u6f47\u6d12", "-st", "-f"], ["s", " buzz", " pop", " loung", " fans", " -", " pops", " hot"], ["s", " buzz", " fans", "-esque", " pops", " loud", " amps", "-ish"], ["s", " buzz", " skies", "-ish", " loung", " amps", "-big", "-tech"], ["s", "sche", "\u817e\u817e", "-eyed", "speed", " buzz", " skies", "&apos"], ["s", "speed", " speed", "-speed", " speeds", "\u0627\u062a", "\u817e\u817e", " buzz"], ["s", "<|endoftext|>", "speed", " speed", " @", " ever", " w", "@"], [" speeds", "speed", " speed", "s", " loung", "-speed", " ''", "&apos"], [" \u2019", " speed", " ''", " speeds", "s", "speed", " ever", " fast"], [" speed", " \u2019", " ever", " fast", " st", " -", "s", " dozens"], [" speed", " speeds", " \r\n\r\n", "speed", "-speed", " \n\n", " \ufffd", " pace"], [" speeds", " speed", "-speed", " skies", "speed", " pace", " framerate", " sprint"], [" speeds", " speed", "-speed", " sprint", " skies", " pace", " innings", " framerate"], [" speed", " speeds", " \n\n", " \ufffd", " pace", " \ufffd", " sprint", "\u2011"], [" speeds", " speed", " sprint", " overclock", "-speed", " pace", " pulse", " skies"], [" speeds", " speed", " overclock", " sprint", " esports", " pulse", " pace", " skies"], [" speeds", " speed", " **", " sprint", " overclock", " pace", " pulse", " faster"], [" speed", " speeds", " \ufffd", " \ufffd", " sprint", " \ufffd", "\u2011", " fast"], [" speed", " fast", " speeds", " sprint", " faster", " /", " power", " pace"], [" sprint", " speeds", " overclock", " speed", " faster", " fastest", " tech", " pace"], [" overclock", " sprint", " \ufffd", " \ufffd", " speeds", "/fast", " speed", " tech"], [" sprint", " overclock", " speed", " faster", " \ufffd", " speeds", " fastest", " \ufffd"], [" overclock", " speed", " speeds", " sprint", " faster", " fastest", " framerate", " fast"], [" overclock", " speed", " speeds", " framerate", " faster", " sprint", " fastest", " smartphone"], [" speed", " overclock", " speeds", " framerate", " faster", " fastest", " fast", " FPS"], [" framerate", " speed", " speeds", " overclock", " fastest", " faster", " fast", " fps"], [" framerate", " speeds", " speed", " overclock", " Speed", " fps", " fastest", "speed"], [" framerate", " speeds", " fps", " overclock", "\u6bcf\u79d2", " speed", " FPS", " fastest"], [" framerate", " overclock", " speeds", " fps", " speed", " FPS", "\u6bcf\u79d2", "/fast"], [" framerate", " overclock", " speeds", " fps", " FPS", " speed", "\u6bcf\u79d2", " OLED"], [" framerate", " speeds", " fps", " overclock", " speed", " FPS", " rapid", " faster"], [" framerate", " speeds", " fps", " FPS", " speed", " overclock", "/fast", "\u6bcf\u79d2"], [" framerate", " speeds", " fps", " FPS", " overclock", "\u6bcf\u79d2", " speed", "/fast"], [" framerate", " speeds", " rapid", " fps", "/fast", " FPS", " speed", " fast"], [" framerate", "/fast", " speeds", " rapid", " FPS", " fps", " overclock", " speed"], [" framerate", "/fast", " FPS", "-speed", " fps", " speeds", " overclock", "-fast"], [" framerate", "-speed", "/fast", " AMOLED", " overclock", " FPS", " OLED", " synced"], [" framerate", " FPS", " fps", "fps", "/fast", " AMOLED", " synced", " OLED"], [" FPS", " framerate", " fps", "fps", "-frequency", "Hz", " Hz", " MHz"], [" FPS", " framerate", " fps", "fps", "Hz", " Hz", "FPS", " AMOLED"], [" FPS", " fps", " framerate", "fps", "Hz", " Hz", " AMOLED", "FPS"], [" FPS", " fps", "fps", "FPS", " framerate", "_fps", "\u5e27", "Hz"], [" FPS", " fps", "fps", "FPS", " framerate", "_fps", "\u5e27", " DPI"], [" FPS", "fps", " fps", "FPS", "Hz", " framerate", " Hz", "_fps"], [" FPS", " fps", "fps", "FPS", "Hz", "\u5e27", " Hz", " frames"], [" fps", " FPS", "fps", "FPS", "Hz", " frames", "\u5e27", " Hz"], [" FPS", " fps", "fps", "FPS", " framerate", " Hz", "Hz", "_fps"], [" FPS", " fps", "fps", "FPS", " Hz", "Hz", " TPS", "_fps"], [" FPS", " fps", "fps", " Hz", "Hz", "FPS", " TPS", " FP"]], "p": [[0.9533, 0.0288, 0.0053, 0.0032, 0.0013, 0.001, 0.0008, 0.0006], [0.0476, 0.0307, 0.0255, 0.0069, 0.0061, 0.0032, 0.0027, 0.0027], [0.4754, 0.2883, 0.0144, 0.0093, 0.0087, 0.0082, 0.0028, 0.0027], [0.0304, 0.0144, 0.0056, 0.005, 0.003, 0.0027, 0.0025, 0.0025], [0.2842, 0.1835, 0.0464, 0.0097, 0.0067, 0.0049, 0.0046, 0.0043], [0.0204, 0.0149, 0.0085, 0.0075, 0.0059, 0.0052, 0.0049, 0.004], [0.2526, 0.0221, 0.0207, 0.0207, 0.0111, 0.0067, 0.0056, 0.0046], [0.692, 0.0036, 0.0028, 0.0027, 0.0016, 0.0014, 0.0013, 0.0013], [0.6185, 0.0083, 0.0065, 0.0061, 0.0044, 0.0039, 0.0027, 0.0027], [0.2325, 0.0085, 0.0075, 0.004, 0.0038, 0.0035, 0.0021, 0.0019], [0.9212, 0.0026, 0.0017, 0.0014, 0.0011, 0.001, 0.0008, 0.0007], [0.1011, 0.0073, 0.0069, 0.0047, 0.0042, 0.0039, 0.0035, 0.0027], [0.0273, 0.0045, 0.0035, 0.0035, 0.0033, 0.0025, 0.0024, 0.0022], [0.0266, 0.0028, 0.0023, 0.002, 0.0018, 0.0015, 0.0015, 0.0015], [0.2385, 0.0025, 0.0023, 0.0019, 0.001, 0.001, 0.001, 0.0009], [0.0587, 0.0017, 0.0017, 0.0017, 0.0015, 0.0014, 0.0014, 0.0013], [0.2353, 0.0025, 0.0018, 0.0017, 0.0016, 0.0016, 0.0015, 0.0013], [0.0508, 0.002, 0.002, 0.0016, 0.0014, 0.0014, 0.0014, 0.0013], [0.0752, 0.0026, 0.0026, 0.0026, 0.0023, 0.0023, 0.0019, 0.0017], [0.1213, 0.0175, 0.0053, 0.0044, 0.0041, 0.0034, 0.0027, 0.0025], [0.1877, 0.0393, 0.0077, 0.006, 0.0039, 0.0037, 0.0024, 0.0024], [0.011, 0.0091, 0.0091, 0.0055, 0.0036, 0.0034, 0.003, 0.003], [0.0306, 0.0287, 0.0197, 0.0106, 0.0088, 0.0053, 0.0041, 0.0036], [0.0187, 0.0146, 0.0047, 0.0047, 0.0044, 0.0039, 0.0039, 0.0037], [0.0215, 0.0108, 0.0084, 0.0062, 0.0058, 0.0042, 0.0033, 0.0029], [0.0549, 0.0455, 0.0095, 0.0058, 0.0054, 0.0054, 0.0054, 0.0045], [0.0969, 0.0518, 0.0109, 0.0096, 0.009, 0.0075, 0.0062, 0.0055], [0.1143, 0.0738, 0.0225, 0.0175, 0.0137, 0.0128, 0.0128, 0.0106], [0.1426, 0.0717, 0.0264, 0.0181, 0.0091, 0.0091, 0.0086, 0.008], [0.075, 0.0294, 0.0229, 0.0148, 0.0079, 0.0079, 0.007, 0.007], [0.0782, 0.0474, 0.027, 0.0224, 0.021, 0.0128, 0.0077, 0.0073], [0.046, 0.0316, 0.0232, 0.018, 0.0169, 0.0116, 0.0103, 0.0103], [0.0725, 0.0302, 0.0302, 0.0162, 0.0152, 0.0134, 0.0104, 0.0098], [0.0339, 0.0339, 0.03, 0.0281, 0.0141, 0.0117, 0.0097, 0.0081], [0.0612, 0.0395, 0.0255, 0.0212, 0.0199, 0.0187, 0.0187, 0.0155], [0.0522, 0.0433, 0.0382, 0.0337, 0.0317, 0.0317, 0.0297, 0.0218], [0.105, 0.105, 0.0768, 0.0386, 0.0386, 0.0283, 0.0207, 0.0133], [0.1047, 0.1047, 0.072, 0.0249, 0.0234, 0.0206, 0.0194, 0.0161], [0.0893, 0.074, 0.0695, 0.0422, 0.0256, 0.0226, 0.0187, 0.0176], [0.1016, 0.1016, 0.0955, 0.0792, 0.0424, 0.0257, 0.0227, 0.02], [0.2553, 0.2253, 0.2253, 0.0646, 0.0286, 0.0237, 0.0237, 0.0197], [0.5167, 0.1017, 0.0699, 0.0699, 0.0424, 0.033, 0.0257, 0.0084], [0.4673, 0.1517, 0.1182, 0.0435, 0.0318, 0.0233, 0.0133, 0.008], [0.3689, 0.1125, 0.0993, 0.0641, 0.0469, 0.0267, 0.0126, 0.0126], [0.2272, 0.1769, 0.0785, 0.0738, 0.054, 0.0395, 0.0128, 0.0128], [0.2138, 0.1075, 0.0739, 0.0694, 0.0448, 0.0421, 0.0175, 0.0165], [0.2022, 0.0955, 0.0792, 0.0451, 0.031, 0.0291, 0.0257, 0.0213], [0.1311, 0.0513, 0.0453, 0.0453, 0.0331, 0.0331, 0.0311, 0.0275], [0.1698, 0.0665, 0.0457, 0.0295, 0.0277, 0.0277, 0.026, 0.0203], [0.3017, 0.0492, 0.0384, 0.0299, 0.0264, 0.0233, 0.0219, 0.0125], [0.1602, 0.0315, 0.0315, 0.0296, 0.0217, 0.0217, 0.018, 0.0149], [0.1563, 0.1144, 0.0837, 0.0652, 0.0395, 0.0255, 0.0175, 0.0145], [0.3985, 0.1466, 0.0785, 0.0651, 0.0186, 0.0186, 0.0186, 0.012], [0.4662, 0.1179, 0.104, 0.0715, 0.0205, 0.016, 0.0141, 0.0124], [0.3759, 0.2012, 0.1567, 0.1077, 0.0187, 0.0137, 0.01, 0.0083], [0.6549, 0.1876, 0.1461, 0.0093, 0.0014, 0.0004, 0.0001, 0.0], [0.7831, 0.106, 0.0935, 0.0163, 0.0008, 0.0002, 0.0, 0.0], [0.665, 0.1681, 0.1484, 0.0156, 0.0016, 0.0005, 0.0004, 0.0002], [0.8052, 0.109, 0.0749, 0.0089, 0.0006, 0.0004, 0.0003, 0.0002], [0.5222, 0.2795, 0.1921, 0.0051, 0.0002, 0.0002, 0.0002, 0.0001], [0.5658, 0.3432, 0.0868, 0.0038, 0.0001, 0.0001, 0.0001, 0.0], [0.5347, 0.3675, 0.0929, 0.0019, 0.0019, 0.0007, 0.0001, 0.0], [0.4347, 0.3386, 0.2054, 0.0102, 0.008, 0.0016, 0.0001, 0.0001]], "ranks": {"Kotlin": [153272, 97421, 40596, 6323, 12269, 33875, 35230, 216563, 228165, 232264, 226949, 179077, 89887, 144025, 187518, 153084, 143574, 129828, 141093, 121473, 200065, 89194, 127183, 182059, 131371, 89574, 44242, 64907, 35328, 14578, 12843, 21918, 30874, 10119, 6038, 4316, 1810, 2375, 3389, 6125, 8750, 14221, 6838, 9008, 13152, 16530, 24640, 20056, 24173, 18123, 15565, 14449, 5036, 3604, 2243, 2121, 744, 2232, 4563, 5755, 4473, 1840, 1552]}}, {"pos": 397, "top": [[" \u2013", "\u0629", "@@@@", " \uff5c", " \u2013,", "@\"", " [@", " @"], [" \u2013**", " \u2013", " [@", "\uff20", " \uff5e", " \u2013,", " \ufffd", " \r\n \r\n"], [" \u2013**", "**\u2013", " \u2013", " \u2013,", " \uff5c", " *\u2013", " \r\n \r\n", ".\u2013"], ["\uff0a\uff0a\uff0a\uff0a", "\uff0d\uff0d", "\\xa", "\uff1d\uff1d\uff1d\uff1d", "\uff0a\uff0a", "\uff3f\uff3f", "\uff5e\uff5e", "\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a"], ["\uff20", " *@", "\\xa", " @(", " \uffe5", " ****", " @_", " \uff5c"], [" ****", "\uff20", "\\xa", " \uff5c", " \uffe5", "\uff5e\uff5e", " @(", "\uff1d\uff1d\uff1d\uff1d"], ["\\xa", " \uff5c", " ****", "\uff20", " [@", " \uffe5", " {{$", " \ufffd"], ["\\xa", " [@", "\uff20", " ****", " \uffe5", " \uff5c", " *@", " @"], [" [@", "\\xa", " \uff5c", " \r\n \r\n", "\uff20", " \ufffd", " \uffe5", " *@"], ["\\xa", " [@", " [[", " {{$", " ([[", "\\xf", " \".$", " \r\n \r\n"], ["\\xa", " [@", " [[", " ****", " \uff5c", " #@", " @", " {{$"], ["\\xa", " {{$", " ****", " FPS", " [[", "\\xf", " **\u300c", " \"<<"], [" FPS", "\\xa", " ****", "\uff5e\u300d", " **\u300c", " St\u00e9ph", " {{$", "\\xf"], [" FPS", "\\xa", " St\u00e9ph", "\u5f7f", "\uff5e\u300d", " \u0442\u0440\u0451", " {{$", " pornstar"], ["\\xa", " whilst", " FPS", " incredibly", " amongst", "\u5f7f", " arguably", " \ufffd"], [" FPS", "\\xa", " incredibly", " whilst", " St\u00e9ph", " amongst", " even", " ;;^"], [" incredibly", " FPS", "\\xa", " whilst", " ****", " arguably", " even", " seamlessly"], ["\\xa", " FPS", " incredibly", " ****", " seamlessly", " St\u00e9ph", " Nvidia", " DPS"], ["\\xa", " FPS", " incredibly", " ****", " [[", " St\u00e9ph", " arguably", " seamlessly"], [" incredibly", "\\xa", " &#", " whilst", " [[", " ever", " wildly", " amongst"], [" @", "<|endoftext|>", " [[", " [@", " though", " ,", " whilst", " &#"], [" incredibly", " FPS", " [[", " ''", " ****", "\\xa", " alongside", " whilst"], [" incredibly", " ,", " [[", " ''", " ever", " whilst", " even", " alongside"], [" ,", " \u2013", " on", " at", " in", " even", " ever", " and"], [" \n  \n", " &#", " [[", " \r\n \r\n", " --", "\\xa", " incredibly", " ****"], [" ****", " FPS", " incredibly", " \n  \n", "\\xa", " ***", " )**", " --"], [" FPS", " atop", " framerate", " whilst", " ****", " gaming", " incredibly", " *@"], [" @", " ,", " whilst", " --", " on", " speed", " incredibly", " even"], [" speed", " FPS", " atop", " whilst", " gaming", " incredibly", " ,", " across"], [" FPS", " speed", " overclock", " esports", " gaming", " ****", " framerate", " **"], [" speed", " on", " ,", " incredibly", " even", " at", " over", " in"], [" on", " speed", " at", " **", " in", "\u2011", " incredibly", " even"], [" on", " speed", " at", " even", " \u2013", " fast", " in", " incredibly"], [" incredibly", " speed", " even", " rapidly", " fast", " extremely", " faster", " \u2013"], [" incredibly", " rapidly", " extremely", " seamlessly", " heavily", " rapid", " hardware", " arguably"], [" incredibly", " hardware", " rapidly", " extremely", " \u2013", "\u2011", " speed", " notoriously"], [" hardware", " incredibly", " extremely", " overclock", " rapidly", " speed", " requires", " notoriously"], [" hardware", " requires", " incredibly", " FPS", " overclock", " seamlessly", " extremely", " rapidly"], [" hardware", " requires", " incredibly", " extremely", " overclock", " seamlessly", " rapidly", " FPS"], [" hardware", " FPS", " framerate", " overclock", " CPU", " requires", " GPU", " gaming"], [" hardware", " framerate", " FPS", " GPU", " CPU", " overclock", " speed", " gaming"], [" hardware", " FPS", " GPU", " framerate", " overclock", " CPU", " performance", " gaming"], [" hardware", " FPS", " framerate", " overclock", " animation", " performance", " CPU", " GPU"], [" FPS", " hardware", " framerate", " requires", " animation", " achievable", " GPU", " overclock"], [" requires", " hardware", " FPS", " achievable", " framerate", " ultra", " GPU", " animation"], [" requires", " FPS", " hardware", " ultra", " high", " sustained", " GPU", " CPU"], [" requires", " hardware", " require", " Requires", " sustained", " FPS", " achievable", " CPU"], [" requires", " Requires", " require", "requires", " requiring", " sustained", "Requires", " hardware"], [" requires", " Requires", "requires", " hardware", " sustained", " require", " PLUS", "Requires"], [" requires", "requires", " Requires", "Requires", " require", "\u610f\u5473\u7740", " framerate", " sustained"], [" requires", "requires", " Requires", "Requires", " \u0442\u0440\u0435\u0431\u0443\u0435\u0442", "\u610f\u5473\u7740", " **+", " require"], [" requires", "requires", " Requires", "Requires", " require", " requiring", " \u0442\u0440\u0435\u0431\u0443\u0435\u0442", " immersive"], [" requires", "requires", " Requires", "Requires", " require", " requiring", " immersive", " framerate"], [" requires", "requires", " Requires", "Requires", " **+", " framerate", " immersive", " GPU"], [" requires", " Requires", "Requires", "requires", " GPU", " WebGL", " framerate", " rendering"], [" requires", " rendering", " Requires", " WebGL", " on", "Requires", "requires", "-render"], [" rendering", " WebGL", "-render", "\u6e32\u67d3", " renders", " Rendering", "/render", " render"], [" WebGL", " rendering", " OpenGL", " renders", "\u6e32\u67d3", " GPU", " Rendering", "-render"], [" WebGL", " OpenGL", " rendering", " GPU", " renders", " on", " shader", " requires"], [" mid", " on", " WebGL", " OpenGL", " middleware", " rendering", " viewport", ",mid"], [" on", " mid", " WebGL", " OpenGL", " rendering", " middleware", " viewport", " *"], [" on", " mid", " Android", " rendering", " OpenGL", " WebGL", " Kotlin", " middleware"], [" on", " mid", " rendering", " native", " Android", " for", " OpenGL", " Java"]], "p": [[0.7108, 0.0798, 0.0139, 0.007, 0.0065, 0.0061, 0.0058, 0.0051], [0.115, 0.0953, 0.0742, 0.0697, 0.0479, 0.0423, 0.0423, 0.0373], [0.1905, 0.1905, 0.1156, 0.1156, 0.0701, 0.0619, 0.0311, 0.0292], [0.1074, 0.1074, 0.0694, 0.0694, 0.0477, 0.0289, 0.0289, 0.024], [0.3306, 0.0785, 0.0693, 0.0447, 0.0371, 0.0348, 0.0289, 0.0211], [0.0881, 0.0881, 0.0827, 0.0686, 0.0605, 0.0416, 0.0237, 0.0223], [0.2954, 0.1157, 0.0619, 0.0353, 0.0311, 0.0275, 0.0258, 0.0228], [0.1221, 0.1012, 0.0839, 0.0614, 0.0542, 0.0542, 0.0449, 0.0422], [0.2085, 0.1433, 0.0597, 0.0527, 0.0527, 0.0437, 0.034, 0.03], [0.7087, 0.0293, 0.0201, 0.0201, 0.0069, 0.0061, 0.0048, 0.0045], [0.6204, 0.084, 0.0329, 0.0187, 0.0114, 0.0114, 0.01, 0.0073], [0.2981, 0.0587, 0.0587, 0.0168, 0.0168, 0.0102, 0.007, 0.0055], [0.0824, 0.0728, 0.0268, 0.0119, 0.0077, 0.0072, 0.0068, 0.0056], [0.0376, 0.0293, 0.0122, 0.004, 0.0037, 0.0031, 0.0031, 0.0027], [0.0173, 0.0162, 0.0152, 0.0087, 0.0064, 0.003, 0.0028, 0.0026], [0.0141, 0.008, 0.008, 0.004, 0.0033, 0.0026, 0.0023, 0.0019], [0.0307, 0.0175, 0.0113, 0.0068, 0.0047, 0.0041, 0.0034, 0.003], [0.0332, 0.0312, 0.0178, 0.013, 0.0033, 0.0027, 0.0026, 0.0026], [0.0251, 0.0196, 0.0184, 0.0143, 0.0063, 0.0044, 0.003, 0.0026], [0.0316, 0.0217, 0.0169, 0.0149, 0.014, 0.0109, 0.0102, 0.0096], [0.0717, 0.0717, 0.0318, 0.0281, 0.0141, 0.0141, 0.0117, 0.011], [0.0247, 0.0159, 0.0124, 0.0091, 0.0071, 0.0066, 0.0062, 0.0049], [0.0279, 0.0279, 0.0247, 0.018, 0.0141, 0.0132, 0.0132, 0.0109], [0.0871, 0.022, 0.022, 0.0183, 0.0172, 0.0161, 0.0151, 0.0151], [0.0715, 0.0434, 0.0408, 0.0383, 0.0263, 0.0263, 0.0205, 0.0193], [0.058, 0.031, 0.0274, 0.0213, 0.0147, 0.0138, 0.0129, 0.0114], [0.0342, 0.0152, 0.0152, 0.0134, 0.0111, 0.0104, 0.0092, 0.0087], [0.0332, 0.0312, 0.0228, 0.0178, 0.0115, 0.0108, 0.0108, 0.0101], [0.0205, 0.0159, 0.0109, 0.0103, 0.0091, 0.0091, 0.0091, 0.0066], [0.0289, 0.0155, 0.0137, 0.0094, 0.0083, 0.0083, 0.0083, 0.0053], [0.0259, 0.0157, 0.0157, 0.0147, 0.0138, 0.013, 0.0108, 0.0095], [0.021, 0.0185, 0.0174, 0.0163, 0.0144, 0.0112, 0.0105, 0.0105], [0.0224, 0.0185, 0.0174, 0.0154, 0.0144, 0.012, 0.012, 0.0112], [0.0176, 0.0155, 0.0107, 0.0107, 0.0088, 0.0088, 0.0078, 0.0078], [0.0342, 0.0283, 0.0143, 0.0126, 0.0111, 0.0098, 0.0092, 0.0086], [0.0333, 0.0229, 0.0215, 0.0202, 0.019, 0.0108, 0.0108, 0.009], [0.0456, 0.0244, 0.0158, 0.0148, 0.0148, 0.0123, 0.0108, 0.0102], [0.0437, 0.0182, 0.0171, 0.0151, 0.0142, 0.011, 0.0092, 0.0081], [0.0478, 0.024, 0.0212, 0.0146, 0.0129, 0.0121, 0.0121, 0.0094], [0.0624, 0.0295, 0.0277, 0.0277, 0.023, 0.0168, 0.0139, 0.0131], [0.06, 0.0412, 0.0364, 0.0302, 0.0302, 0.0266, 0.0207, 0.0126], [0.0607, 0.0536, 0.0368, 0.0368, 0.0325, 0.0238, 0.0185, 0.0174], [0.048, 0.0374, 0.0291, 0.0291, 0.0241, 0.02, 0.0146, 0.0138], [0.0486, 0.0486, 0.0314, 0.0314, 0.023, 0.0191, 0.0158, 0.0131], [0.0629, 0.0297, 0.0262, 0.0159, 0.0159, 0.014, 0.014, 0.0116], [0.0651, 0.0289, 0.0187, 0.0145, 0.0136, 0.0128, 0.0106, 0.01], [0.2928, 0.0199, 0.0137, 0.0114, 0.01, 0.0094, 0.0073, 0.0069], [0.5122, 0.0308, 0.0289, 0.0199, 0.01, 0.0078, 0.0073, 0.0073], [0.2814, 0.0279, 0.0159, 0.014, 0.0109, 0.0096, 0.008, 0.007], [0.6367, 0.0862, 0.0714, 0.0359, 0.0071, 0.0043, 0.0033, 0.0031], [0.4525, 0.101, 0.101, 0.0328, 0.0078, 0.0078, 0.0065, 0.0037], [0.6152, 0.1211, 0.0735, 0.0446, 0.0068, 0.0047, 0.0032, 0.002], [0.4856, 0.0898, 0.0844, 0.07, 0.0089, 0.0074, 0.0054, 0.0045], [0.3378, 0.0802, 0.0754, 0.0625, 0.0148, 0.0096, 0.0085, 0.0066], [0.3206, 0.0557, 0.0557, 0.0523, 0.028, 0.017, 0.0117, 0.011], [0.134, 0.0594, 0.0463, 0.0384, 0.0339, 0.0339, 0.0318, 0.0281], [0.2868, 0.1355, 0.0725, 0.064, 0.0601, 0.0565, 0.0343, 0.0343], [0.217, 0.1162, 0.0584, 0.0333, 0.0313, 0.0276, 0.0276, 0.0243], [0.2506, 0.1045, 0.0866, 0.0384, 0.0281, 0.0264, 0.0248, 0.0206], [0.34, 0.1417, 0.1104, 0.0591, 0.046, 0.0217, 0.0217, 0.018], [0.6559, 0.1292, 0.0271, 0.0164, 0.0145, 0.0083, 0.0068, 0.0057], [0.9174, 0.0244, 0.0048, 0.0035, 0.0027, 0.0023, 0.0019, 0.0013], [0.9893, 0.002, 0.001, 0.0005, 0.0005, 0.0004, 0.0003, 0.0003]], "ranks": {"Kotlin": [37967, 26017, 17545, 9181, 9631, 12176, 14898, 44251, 58969, 71609, 54290, 40597, 17492, 31625, 51209, 24847, 31261, 34179, 38533, 91171, 114460, 37964, 40207, 64208, 35535, 17053, 19506, 22601, 21228, 13823, 22809, 18336, 28044, 23825, 38415, 12512, 10820, 10768, 9448, 12219, 14261, 17851, 16079, 16725, 14664, 24271, 24295, 30486, 37542, 32731, 20434, 9808, 8620, 4480, 1443, 311, 169, 91, 91, 41, 36, 7, 7]}}, {"pos": 398, "top": [[",", ".", "\u2013", ";", "\u2026..", " \u2013", "\u00a0", ":"], [",", "\u2013", "\u2013and", "\u200b", ";", ".", " \u2013", " \u00a0"], [",", ".", "\u2013", ";", "\u2026..", "\u2013and", "\u200b", " [\u2026]"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\ufffd\ufffd", "\ufffd\ufffd", " addir", "orgeous", "matchCondition", "\u683c\u91cc\u62c9", " Pubbl"], [",", "@", ",@", ".@", "(@", ":@", "ed", "//@"], [",", "!:", " \u00a0", "&A", "boarding", ":@", "!),", "/off"], [" ......", "......", "\ufffd", "\ufffds", "sson", " \ufffd", " [...]", " //@"], ["\ufffds", " //@", ",@", "sson", " ......", "ishly", ":`", "/off"], ["......", "&nbsp", ",&", "/&", ",@", "\ufffd", "&W", " ......"], [",&", ",", "&nbsp", "/off", " \u00ad", "\\\\\\", "-going", "-ish"], ["&nbsp", " \u00ad", " [...]", ",&", "\ufffd", "&", "/off", ",@"], ["\u516c\u53f7", "/off", " hubby", "-ish", " folks", "\u54b1\u4eec\u7684", "-going", "\u6ca1\u5565"], ["-ish", " folks", " veggies", "/off", " hubby", "\u54b1\u4eec\u7684", " pricey", "\u516c\u53f7"], [" folks", " incredibly", "-ish", " Aussie", " goodies", " veggies", " thankfully", " busted"], [" folks", " truly", " goodies", " just", " smack", " incredibly", " busted", " effortlessly"], [" folks", " incredibly", " truly", " kids", " busted", " arguably", " smack", " goodies"], [" folks", " incredibly", " pretty", " big", " kids", " effortlessly", " guys", " goodies"], [" folks", " incredibly", " goodies", " pretty", " veggies", " freaking", "-ish", " isn"], [" incredibly", " folks", " freaking", " effortlessly", " ridiculously", " barely", " smack", " pricey"], [" barely", " incredibly", " folks", " effortlessly", " smack", " ridiculously", " truly", " seemingly"], ["<|endoftext|>", " barely", " swiftly", " just", " though", " hugely", " seemingly", " truly"], [" incredibly", " smack", " folks", " busted", " barely", " effortlessly", " hugely", " pricey"], [" barely", " incredibly", " just", " truly", " effortlessly", " smack", " hugely", " swiftly"], [" just", " barely", " truly", " seemingly", " incredibly", " swiftly", " hugely", " arguably"], [" {{--<", " barely", " hugely", " though", " arguably", " seemingly", " vastly", " genuinely"], [" {{--<", " pricey", " incredibly", " hugely", " folks", " **", " busted", " ____"], [" {{--<", " barely", " hugely", " pricey", " arguably", " vastly", " incredibly", " atop"], [" barely", " ____", " arguably", " hugely", " vastly", " {{--<", " @", " @_"], [" barely", " incredibly", " isn", " pricey", " arguably", " tech", " **", " vastly"], [" barely", " **", " isn", " arguably", " massively", " hardware", " incredibly", " tech"], [" ...", " barely", " incredibly", " even", " **", " [...]", " isn", " tech"], [" **", " ...", " even", " incredibly", " huge", " barely", " hard", " @"], [" even", " barely", " incredibly", " massively", " just", " massive", " hard", " huge"], [" incredibly", " massively", " barely", " arguably", " tech", " hardware", " notoriously", " even"], [" arguably", " hardware", " notoriously", " tech", "\u2014even", " massively", " barely", " incredibly"], [" hardware", " tech", " arguably", " notoriously", "\u2011", " cheap", " smartphone", " iPhone"], [" hardware", " tech", " cheap", " Hardware", " Android", "hardware", " smartphone", "\u786c\u4ef6"], [" hardware", " Android", " cheap", " Hardware", " smartphone", " tech", " iPhone", " iOS"], [" hardware", " Android", " Hardware", " iPhone", " iOS", " smartphone", "hardware", "\u786c\u4ef6"], [" hardware", " Android", " Hardware", "hardware", "\u786c\u4ef6", " smartphone", "Hardware", " smartphones"], [" hardware", " Android", " Hardware", " smartphone", "\u786c\u4ef6", " smartphones", "hardware", " iPhone"], [" hardware", " Android", " Hardware", "hardware", "Hardware", " smartphone", "\u786c\u4ef6", " smartphones"], [" hardware", " Hardware", " Android", " smartphone", " smartphones", " iPhone", "hardware", "Hardware"], [" hardware", " Hardware", " Android", " smartphone", " smartphones", " iPhone", " handheld", "hardware"], [" hardware", " Android", " smartphones", " Hardware", " smartphone", " handheld", " laptops", " mediocre"], [" hardware", " Hardware", " handheld", " Android", " smartphones", " mediocre", " smartphone", " laptops"], [" hardware", " Hardware", " mediocre", " handheld", " Android", "hardware", " smartphone", " smartphones"], [" hardware", " mediocre", " Hardware", " cheap", " handheld", " Android", " mid", " average"], [" hardware", " mediocre", " Hardware", " handheld", " Android", " smartphones", "\u786c\u4ef6", " cheap"], [" hardware", " mediocre", " handheld", " Hardware", "\u4f4e\u7aef", " **", "-**", " smartphones"], [" hardware", " handheld", " mediocre", "\u786c\u4ef6", " Hardware", "\u4f4e\u7aef", "\uff1f**", " *\u201c"], [" **", " *", " *@", " *[", "-**", " **#", " *\u201c", " *\""], [" *", " **", "-**", " *@", " hardware", " *\u201c", " **\"", " *["], [" **", " *", " hardware", "-**", " **#", " *@", " *[", " **\""], [" **", " *", " hardware", " Android", "-**", " *@", " **#", " *["], [" mid", " Mid", " Android", " middleware", ",mid", "_mid", ".mid", " MID"], [" mid", " **", " Android", " Mid", " *", " middleware", ",mid", "_mid"], [" mid", " **", " *", " Mid", " Android", " middleware", ",mid", "_mid"], [" mid", " *", " **", " Mid", ",mid", " middleware", "_mid", " Android"], [" mid", " Mid", "mid", " *", ",mid", ".mid", "(mid", "_mid"], [" mid", " *", " Mid", " **", "mid", " Android", ",mid", ".mid"], [" mid", " *", " Mid", " Android", "mid", ".mid", ",mid", "(mid"], [" mid", " *", " Android", " Mid", " **", "mid", ",mid", ".mid"]], "p": [[0.8321, 0.1446, 0.0092, 0.0064, 0.001, 0.0008, 0.0006, 0.0006], [0.212, 0.0884, 0.0305, 0.0197, 0.0127, 0.0088, 0.0064, 0.0047], [0.9432, 0.0285, 0.0152, 0.0041, 0.0025, 0.0008, 0.0007, 0.0004], [0.0045, 0.0037, 0.0035, 0.0031, 0.002, 0.0014, 0.0014, 0.0011], [0.1906, 0.0659, 0.0619, 0.0581, 0.0138, 0.0122, 0.0114, 0.0095], [0.0127, 0.0039, 0.0039, 0.0032, 0.003, 0.0028, 0.0027, 0.0025], [0.0432, 0.0405, 0.0262, 0.0169, 0.0124, 0.0116, 0.0096, 0.0085], [0.0163, 0.0112, 0.0093, 0.0087, 0.0077, 0.0077, 0.0053, 0.0053], [0.0245, 0.018, 0.0158, 0.0123, 0.0116, 0.0085, 0.008, 0.008], [0.0051, 0.0051, 0.0045, 0.0042, 0.004, 0.0038, 0.0031, 0.0027], [0.0355, 0.0178, 0.0148, 0.0108, 0.0095, 0.0095, 0.0079, 0.0074], [0.0085, 0.0075, 0.0049, 0.004, 0.0038, 0.0031, 0.003, 0.0026], [0.0089, 0.0084, 0.0079, 0.0069, 0.0061, 0.0045, 0.0042, 0.004], [0.0103, 0.0066, 0.0058, 0.0043, 0.004, 0.0038, 0.0035, 0.0026], [0.0257, 0.0188, 0.0094, 0.0065, 0.0061, 0.0057, 0.0054, 0.0048], [0.0528, 0.0234, 0.0104, 0.0086, 0.0076, 0.0063, 0.0059, 0.0059], [0.0572, 0.0306, 0.0174, 0.0136, 0.0106, 0.0099, 0.0093, 0.0088], [0.0318, 0.0133, 0.0117, 0.011, 0.0103, 0.0097, 0.0091, 0.0086], [0.0134, 0.0126, 0.0081, 0.0076, 0.0072, 0.0072, 0.0072, 0.0056], [0.0245, 0.0179, 0.0168, 0.0116, 0.0085, 0.0075, 0.0075, 0.0066], [0.0134, 0.0111, 0.0086, 0.0081, 0.0072, 0.0063, 0.0056, 0.0052], [0.0111, 0.0081, 0.0076, 0.0076, 0.0063, 0.0063, 0.0043, 0.0041], [0.023, 0.0131, 0.0123, 0.0116, 0.0085, 0.007, 0.007, 0.0066], [0.0251, 0.0222, 0.0119, 0.0082, 0.0077, 0.0064, 0.0056, 0.0056], [0.0106, 0.0093, 0.0077, 0.0064, 0.0064, 0.006, 0.0053, 0.005], [0.0114, 0.0074, 0.0065, 0.0058, 0.0048, 0.0045, 0.004, 0.004], [0.0095, 0.0084, 0.0062, 0.0062, 0.0051, 0.0048, 0.0045, 0.0042], [0.0132, 0.0103, 0.0091, 0.0085, 0.0075, 0.0066, 0.0066, 0.0052], [0.014, 0.0116, 0.0116, 0.0096, 0.0085, 0.0075, 0.0071, 0.0066], [0.034, 0.0193, 0.0182, 0.0125, 0.011, 0.0104, 0.0104, 0.0097], [0.0507, 0.0395, 0.0327, 0.0271, 0.0271, 0.0198, 0.0198, 0.0145], [0.0489, 0.046, 0.0381, 0.0246, 0.0217, 0.0204, 0.0149, 0.0149], [0.0417, 0.0346, 0.0287, 0.0197, 0.0174, 0.0144, 0.0127, 0.0112], [0.0313, 0.0277, 0.0277, 0.026, 0.0229, 0.0215, 0.0179, 0.0108], [0.0601, 0.0388, 0.0302, 0.0236, 0.0221, 0.0208, 0.0143, 0.0118], [0.2851, 0.0386, 0.022, 0.0161, 0.0133, 0.0133, 0.0081, 0.0081], [0.518, 0.0399, 0.0258, 0.0189, 0.0138, 0.0114, 0.0084, 0.0079], [0.5673, 0.0598, 0.0363, 0.022, 0.0182, 0.0171, 0.0161, 0.0133], [0.7108, 0.0332, 0.0259, 0.0215, 0.0148, 0.0148, 0.0139, 0.013], [0.6973, 0.0288, 0.0254, 0.0239, 0.0224, 0.0211, 0.0136, 0.0136], [0.7032, 0.0696, 0.0329, 0.0241, 0.0146, 0.0146, 0.0146, 0.0121], [0.8674, 0.0297, 0.0262, 0.0091, 0.0085, 0.008, 0.0066, 0.0055], [0.8595, 0.0244, 0.0229, 0.0115, 0.0095, 0.0066, 0.0062, 0.0042], [0.829, 0.0364, 0.0235, 0.0111, 0.0104, 0.0063, 0.0063, 0.0052], [0.7816, 0.0236, 0.0208, 0.0196, 0.0184, 0.0134, 0.0072, 0.0068], [0.7365, 0.0304, 0.0173, 0.0153, 0.0135, 0.0127, 0.0119, 0.0047], [0.7542, 0.04, 0.0157, 0.0115, 0.0095, 0.0058, 0.0048, 0.0048], [0.4214, 0.094, 0.0536, 0.0223, 0.0153, 0.0099, 0.0093, 0.0077], [0.2677, 0.0869, 0.0561, 0.0386, 0.0125, 0.0104, 0.0086, 0.0067], [0.0948, 0.0448, 0.0349, 0.0211, 0.0155, 0.0094, 0.0088, 0.0088], [0.08, 0.0277, 0.0215, 0.0202, 0.0148, 0.0131, 0.0131, 0.0131], [0.147, 0.1219, 0.0787, 0.0694, 0.0477, 0.0477, 0.0328, 0.0328], [0.2142, 0.2142, 0.0542, 0.0449, 0.0422, 0.0422, 0.0328, 0.029], [0.3997, 0.1666, 0.0613, 0.0508, 0.0421, 0.0308, 0.0272, 0.0187], [0.2781, 0.1488, 0.1159, 0.1159, 0.0401, 0.0354, 0.0275, 0.0157], [0.8704, 0.0491, 0.0337, 0.0181, 0.011, 0.0024, 0.0022, 0.0015], [0.7235, 0.1614, 0.0463, 0.0193, 0.015, 0.0103, 0.0071, 0.0018], [0.6249, 0.179, 0.1394, 0.0189, 0.013, 0.0069, 0.0054, 0.0018], [0.695, 0.2256, 0.0646, 0.0087, 0.0012, 0.0009, 0.0006, 0.0006], [0.9988, 0.0007, 0.0003, 0.0, 0.0, 0.0, 0.0, 0.0], [0.7531, 0.2445, 0.0009, 0.0008, 0.0002, 0.0001, 0.0001, 0.0001], [0.9356, 0.0598, 0.0023, 0.0005, 0.0005, 0.0003, 0.0002, 0.0002], [0.7495, 0.2433, 0.0017, 0.0014, 0.0005, 0.0002, 0.0002, 0.0001]], "ranks": {"Kotlin": [234366, 209521, 199517, 86967, 146976, 161368, 208202, 223659, 235013, 240201, 241950, 230876, 194098, 186549, 210686, 159691, 98108, 99074, 131122, 199037, 220411, 163875, 165196, 184732, 178244, 115517, 112260, 105815, 62870, 50654, 29052, 24200, 39273, 19588, 21376, 3417, 710, 660, 713, 396, 522, 636, 904, 982, 1300, 1877, 2281, 1511, 1186, 1339, 1365, 894, 560, 411, 168, 177, 106, 101, 97, 91, 94, 47, 36]}}, {"pos": 399, "top": [[",", ".", "\u2013", "-", ";", "\u2026..", " \u2013", "u"], ["\u2011", "\u00ad", "\u2013", "\u2013and", "\u00adi", "\uff5e", "ly", "son"], [",", "\u2013", ".", ".\u2013", "\u2013and", "\u2011", "\u200b", "\u2026.."], ["\uff1d\uff1d\uff1d\uff1d", "\uff0a\uff0a\uff0a\uff0a", "irectional", " \uc77c\uc808", "weise", "ewire", " milfs", " Hidal"], ["ly", "&nbsp", "son", "ronic", "ser", "server", "ward", "n"], ["ly", "lif", ",mid", "server", "son", "FIG", "ilion", "(mid"], ["ly", " \ufffd", "&nbsp", ",mid", "\ufffd", "mid", "ronic", "FIG"], ["ly", "ivial", "athon", "&nbsp", "ily", "irectional", "shore", "ward"], ["&nbsp", "athon", "ly", "ily", "ward", "irectional", "<br", "quel"], ["&nbsp", "\u00ading", "\u00adi", "irectional", "parentId", "-low", ",mid", "ily"], ["&nbsp", "[mid", "ly", "\u2011", " \u00ad", ",mid", "-&", "-low"], ["ewire", "irectional", "ustrial", "ivial", "ily", " Hidal", " //~", "quel"], ["ewire", "irectional", "ivial", "ustrial", "-low", "-tier", "ROID", "quel"], ["irectional", "ewire", "-tier", ",mid", "-low", "ivial", "[mid", "-ish"], [",mid", "irectional", "-tier", "ropped", "Mid", "[mid", "-low", "-ish"], [",mid", "-low", "\u5982\u82e5", "[mid", "-ish", "Mid", "irectional", "-tier"], ["-ish", ",mid", "-low", "-tier", "Mid", "-market", "ly", "ace"], [",mid", "-ish", "-low", "-market", "-tier", "-tech", "[mid", "irectional"], [",mid", "-market", " MEDIAM", "[mid", "-ish", "ewire", " milfs", "irectional"], [",mid", "[mid", "-market", "--)", " //~", "-ish", " //--", " {{--<"], ["[mid", "Mid", ",mid", "-market", "\u54b1", " {{--<", " //~", "boost"], ["-market", " MEDIAM", ",mid", "ewire", "irectional", "[mid", "owntown", "-ish"], ["-market", "Mid", "[mid", " {{--<", ",mid", " MEDIAM", " iParam", "boost"], ["\u2011", " --", "Mid", " {{--<", " \u2015", "-market", "&nbsp", "though"], ["&nbsp", "Mid", "\u2011", "Though", "-market", " \u00ad", " --", " {{--<"], ["-market", " MEDIAM", " pricey", "\u2011", "-ish", "locals", "[mid", " ballpark"], ["-market", " pricey", "\u2011", "-low", "-tier", "-tech", "-priced", "-ish"], ["\u2011", " \n\n", " \r\n\r\n", "-market", " --", "\n\n", "   \n\n", "-ish"], ["\u2011", "-market", "-low", "-priced", "[mid", "-tech", "-tier", "-era"], ["\u2011", "-market", "-priced", "-era", " \n  \n", "-low", "-tier", "-tech"], ["\u2011", " \n  \n", " tech", "-market", "-tech", " \n    \n", "-ish", "-era"], ["\u2011", " tech", " mid", " affordable", " cheap", " market", " low", " markets"], ["\u2011", " mid", " cheap", " tech", " low", " affordable", "-era", " -"], ["\u2011", "-tier", " tech", "-tech", "-era", " affordable", "-market", " cheap"], ["\u2011", " tech", "-tier", "-tech", "-era", "-ish", " cheap", "-low"], ["\u2011", " tech", "-tier", " hardware", "-tech", "\u2013", " overclock", "-low"], ["\u2011", " tech", " hardware", "-tier", "-tech", " overclock", " cheap", " smartphone"], ["\u2011", " hardware", " tech", "-tier", " overclock", " smartphone", "-tech", " cheap"], ["\u2011", " hardware", "-tier", " tech", " overclock", "-tech", " smartphone", "-budget"], ["\u2011", " hardware", "-tier", " tech", " overclock", "\u786c\u4ef6", "hardware", " Hardware"], [" hardware", "\u2011", " Hardware", " tech", "\u786c\u4ef6", "-tier", "hardware", " smartphone"], [" hardware", " Hardware", "hardware", "\u786c\u4ef6", "-tier", "Hardware", " smartphone", " Android"], [" hardware", " Hardware", "-tier", "hardware", "\u786c\u4ef6", " smartphone", " smartphones", " overclock"], [" hardware", " Hardware", "hardware", "\u786c\u4ef6", "-tier", "-budget", "Hardware", "-low"], [" hardware", "-tier", " Hardware", "hardware", " smartphones", "-low", " smartphone", "-budget"], [" hardware", "-tier", " mediocre", " Hardware", "-low", "-budget", "hardware", " smartphones"], [" hardware", "-tier", " mediocre", "-low", "-budget", "hardware", "\u786c\u4ef6", " Hardware"], [" hardware", "-tier", "-low", "-budget", "\u2011", "-standard", "-grade", " mediocre"], [" hardware", "-tier", "\u2011", "-budget", "-low", " Hardware", "\u786c\u4ef6", "-grade"], ["-tier", " hardware", "\u2011", "\u786c\u4ef6", "-grade", "-budget", "-low", "-standard"], ["-tier", " hardware", "\u2011", "\u786c\u4ef6", "-grade", "hardware", "\u4e2d\u77e9", "-standard"], ["-tier", "\u2011", "-grade", " hardware", "-range", "\u786c\u4ef6", " Android", "-android"], ["-tier", "-range", " hardware", "-grade", "\u786c\u4ef6", "hardware", "\u2011", " Android"], ["-tier", " hardware", "\u786c\u4ef6", "-range", "hardware", "-android", " Android", "-grade"], ["-tier", "-range", " hardware", " Android", "-android", "-grade", "-device", "\u786c\u4ef6"], ["-range", " Android", "-android", "-tier", "Android", "range", "/android", " hardware"], ["-range", " Android", "-tier", "-android", "range", "Android", "/android", " android"], ["-range", " Android", "-tier", " hardware", "-android", "range", "Android", "\u786c\u4ef6"], ["-range", "-tier", " Android", "-android", "range", " hardware", "Android", "-device"], ["-range", "range", " Android", " range", "-tier", "Android", "Range", "-android"], ["-range", "range", " range", "Range", " Android", "_range", " Range", ".range"], ["-range", "range", " range", " Android", "Range", "_range", " Range", "Android"], ["-range", "-", " range", "range", " Android", "-tier", "-r", "-end"]], "p": [[0.6508, 0.3074, 0.0127, 0.0082, 0.003, 0.0012, 0.0009, 0.0009], [0.2129, 0.061, 0.0307, 0.0288, 0.0254, 0.0198, 0.0164, 0.0164], [0.3143, 0.2774, 0.2029, 0.0242, 0.0214, 0.0147, 0.0108, 0.0069], [0.0076, 0.0067, 0.0063, 0.0053, 0.0049, 0.0044, 0.0041, 0.0028], [0.4381, 0.0338, 0.0117, 0.0085, 0.0085, 0.0067, 0.0059, 0.0043], [0.048, 0.0137, 0.0121, 0.0083, 0.0069, 0.0069, 0.0061, 0.0057], [0.0764, 0.0248, 0.0248, 0.0181, 0.0125, 0.0117, 0.0103, 0.0097], [0.0367, 0.0077, 0.0077, 0.0077, 0.0064, 0.0047, 0.0047, 0.0044], [0.0727, 0.0162, 0.0119, 0.0077, 0.0053, 0.0046, 0.0046, 0.0041], [0.0152, 0.0072, 0.0056, 0.0049, 0.0049, 0.0041, 0.0038, 0.0038], [0.1388, 0.0089, 0.0078, 0.0078, 0.0074, 0.0065, 0.0061, 0.0057], [0.0078, 0.0048, 0.0042, 0.0035, 0.0033, 0.0025, 0.0025, 0.0024], [0.0098, 0.006, 0.0036, 0.003, 0.0026, 0.0023, 0.0023, 0.0021], [0.0059, 0.0052, 0.0046, 0.0031, 0.0024, 0.0022, 0.0019, 0.0018], [0.0099, 0.0064, 0.0057, 0.0041, 0.0039, 0.0037, 0.0032, 0.0024], [0.0125, 0.0091, 0.0038, 0.0038, 0.0038, 0.0036, 0.0032, 0.0028], [0.0171, 0.0151, 0.0125, 0.0081, 0.0063, 0.0059, 0.0055, 0.0043], [0.0107, 0.0088, 0.0073, 0.0047, 0.0047, 0.0044, 0.0032, 0.0031], [0.0072, 0.0059, 0.0041, 0.0038, 0.0038, 0.0034, 0.0032, 0.0025], [0.0103, 0.0091, 0.0071, 0.0048, 0.0043, 0.0031, 0.0029, 0.0026], [0.0102, 0.0102, 0.0066, 0.0055, 0.0045, 0.0042, 0.004, 0.004], [0.0095, 0.0079, 0.0042, 0.004, 0.0031, 0.0024, 0.0023, 0.0021], [0.0098, 0.0056, 0.0044, 0.0039, 0.0036, 0.0034, 0.0032, 0.0023], [0.0105, 0.0082, 0.0077, 0.005, 0.0041, 0.0034, 0.0027, 0.0019], [0.0137, 0.0113, 0.01, 0.01, 0.005, 0.005, 0.0047, 0.0044], [0.0182, 0.0071, 0.0063, 0.0059, 0.0049, 0.0041, 0.0038, 0.0038], [0.0539, 0.01, 0.0078, 0.0078, 0.0073, 0.0064, 0.006, 0.0053], [0.2036, 0.0377, 0.0147, 0.0089, 0.0089, 0.0054, 0.0051, 0.0045], [0.1907, 0.0453, 0.0122, 0.0108, 0.0108, 0.0101, 0.0095, 0.0089], [0.3113, 0.0396, 0.0107, 0.0083, 0.0083, 0.0078, 0.0073, 0.0061], [0.5316, 0.0171, 0.0125, 0.0117, 0.0091, 0.0086, 0.0055, 0.0055], [0.3541, 0.0213, 0.0166, 0.0107, 0.0078, 0.0047, 0.0047, 0.0045], [0.276, 0.02, 0.02, 0.0176, 0.0107, 0.0101, 0.0061, 0.0054], [0.5481, 0.02, 0.0155, 0.0094, 0.0047, 0.0047, 0.0035, 0.0035], [0.7437, 0.0128, 0.012, 0.006, 0.0032, 0.0027, 0.0021, 0.002], [0.8983, 0.0039, 0.0034, 0.0027, 0.0024, 0.0021, 0.0009, 0.0009], [0.5766, 0.0287, 0.0287, 0.021, 0.012, 0.0073, 0.0053, 0.0044], [0.5676, 0.0496, 0.022, 0.0161, 0.0125, 0.0092, 0.0081, 0.0059], [0.4903, 0.1165, 0.0313, 0.0202, 0.0123, 0.0102, 0.009, 0.0084], [0.2701, 0.2384, 0.0389, 0.0267, 0.0222, 0.0208, 0.0208, 0.0173], [0.4893, 0.0484, 0.0313, 0.0313, 0.0276, 0.0276, 0.0276, 0.0229], [0.8034, 0.0312, 0.0275, 0.0189, 0.0101, 0.0079, 0.007, 0.0058], [0.7834, 0.0323, 0.0196, 0.0184, 0.0127, 0.0072, 0.0064, 0.006], [0.6236, 0.0375, 0.0274, 0.0257, 0.0257, 0.0129, 0.0101, 0.0089], [0.6634, 0.0352, 0.0147, 0.0138, 0.0121, 0.0114, 0.0107, 0.0095], [0.6607, 0.0577, 0.0212, 0.0137, 0.0129, 0.0089, 0.0083, 0.0073], [0.5448, 0.1142, 0.0271, 0.0211, 0.012, 0.0106, 0.0094, 0.0094], [0.3251, 0.1196, 0.0388, 0.0322, 0.0284, 0.0195, 0.0172, 0.0126], [0.1634, 0.0991, 0.044, 0.0302, 0.0208, 0.0152, 0.0143, 0.0111], [0.2196, 0.0555, 0.0279, 0.0192, 0.0192, 0.0159, 0.0149, 0.014], [0.2668, 0.0525, 0.0436, 0.0409, 0.0281, 0.0151, 0.0081, 0.0076], [0.1844, 0.0637, 0.0438, 0.0438, 0.0387, 0.0266, 0.0266, 0.0207], [0.377, 0.0841, 0.0742, 0.0397, 0.0309, 0.0146, 0.0146, 0.0129], [0.3607, 0.2055, 0.071, 0.0488, 0.0315, 0.0278, 0.0261, 0.0231], [0.4198, 0.3705, 0.0391, 0.0304, 0.0184, 0.0153, 0.0072, 0.0064], [0.8729, 0.0812, 0.0181, 0.0141, 0.004, 0.0022, 0.001, 0.001], [0.8639, 0.1032, 0.0109, 0.0109, 0.0031, 0.0027, 0.0011, 0.0005], [0.885, 0.0726, 0.0126, 0.0087, 0.0077, 0.0036, 0.0032, 0.001], [0.977, 0.0085, 0.0075, 0.0027, 0.0019, 0.0008, 0.0003, 0.0002], [0.9918, 0.0046, 0.0028, 0.0004, 0.0001, 0.0001, 0.0, 0.0], [0.9798, 0.0123, 0.0075, 0.0002, 0.0001, 0.0, 0.0, 0.0], [0.9887, 0.0067, 0.0031, 0.001, 0.0001, 0.0001, 0.0001, 0.0], [0.9961, 0.0012, 0.0006, 0.0004, 0.0003, 0.0003, 0.0003, 0.0001]], "ranks": {"Kotlin": [223001, 221425, 183932, 111137, 140284, 201127, 188945, 215538, 210619, 231022, 230602, 213133, 160793, 180442, 215938, 190872, 146689, 149117, 147364, 178887, 217814, 169276, 210334, 225492, 208211, 143844, 107626, 112808, 56666, 37880, 18516, 23373, 45050, 14806, 23610, 9474, 2939, 2159, 1957, 1126, 1239, 1770, 1638, 1572, 2178, 4785, 7494, 2514, 1898, 2069, 3139, 2867, 1960, 1528, 1779, 433, 294, 288, 463, 360, 363, 324, 948]}}, {"pos": 400, "top": [[" \u2013", "\u2013", ".", ",", " ", "\u2013and", ".\u2013", "["], [" \u2013", " \u2013**", "\u2013\u2013", "\u2013", "**\u2013", "\u2013and", ".\u2013", " \u2013,"], [" \u2013", "\u2013", ".\u2013", "\u2013and", "**\u2013", ",", "\u2013\u2013", " \u2013,"], ["ieli", "\u3093\u3070\u3093", "enje", "uarte", " \u2013**", "AREN", "**\u2013", " Marketplace"], [" \u2013", "\u2013\u2013", ".\u2013", "[@", " [@", "\u2013", " ", " @"], [" \u2013", ".\u2013", "\u2013\u2013", "\u2013", "\u2013and", " **\u2013", "**\u2013", " *\u2013"], [" \u2013", "\u2013\u2013", ".\u2013", "\u2013", "\u2013and", " ", " Centre", " Middle"], [" \u2013", "\u2013\u2013", ".\u2013", "\u2013and", "\u2013", " Centre", "\u0436\u0434\u0451", " armour"], [" \u2013", ".\u2013", "\u2013and", "\u2013\u2013", "\u2013", ",", ".", " \u2013,"], [" \u2013", "\u2013", ".\u2013", "\u2013\u2013", "\u2013and", "\u0436\u0434\u0451", " Centre", " armour"], [" \u2013", " Centre", " armour", ".\u2013", "\u2013", "\u0436\u0434\u0451", " centre", " utilisation"], [" armour", " whilst", " Centre", " utilisation", " neighbourhood", " flavours", " centre", "\u0436\u0434\u0451"], [" \u2013", " neighbourhood", " flavours", " armour", " utilisation", " specialised", " flavour", " neighbours"], [" armour", " \u2013", " neighbourhood", " flavours", " utilisation", " whilst", " favourites", " centre"], [" \u2013", " whilst", " armour", " neighbourhood", " utilisation", " Centre", " amongst", " popularity"], [" \u2013", " whilst", " showcasing", " popularity", " popular", " neighbourhood", " showcase", " amongst"], [" \u2013", " popular", " popularity", " whilst", " folks", " massive", " showcasing", " bolster"], [" \u2013", " ballpark", " showcase", " popularity", " tweaks", " folks", " showcasing", " touted"], [" ballpark", " folks", " tweaks", " touted", " contenders", " outf", " midd", " upscale"], [" folks", " ballpark", " heavily", " midd", " swiftly", " outf", " arguably", " blockbuster"], [" folks", " heavily", " swiftly", " --", " ultimately", " outright", " ballpark", " arguably"], [" electronics", " folks", " ballpark", " gaming", " RPG", " CGI", " media", " hardware"], [" ''", " heavily", " ultimately", " [[", " folks", " gaming", " electronics", " hardware"], [" ultimately", " ,", " whilst", " amongst", " heavily", " high", " \u2013", " much"], [" whilst", " heavily", "Whilst", " hardware", " amongst", " ultimately", " hugely", " arguably"], [" hardware", " electronics", " Android", " technology", " smartphone", " tech", " gaming", " cheap"], [" hardware", " electronics", " smartphone", " Android", " technology", " gaming", " smartphones", " tech"], [" hardware", " heavily", " whilst", " technology", " \n\n", " ,", " tech", " Android"], [" hardware", " Android", " technology", " tech", " smartphone", " technologies", " smartphones", " electronics"], [" hardware", " technology", " smartphones", " smartphone", " Android", " tech", " technologies", " electronics"], [" technology", " hardware", " tech", " Android", " smartphones", " smartphone", " technologies", " cheap"], [" technology", " hardware", " tech", " technologies", " Android", " cheap", " mobile", " low"], [" hardware", " technology", " tech", " cheap", " low", " \u2013", " Android", " high"], [" hardware", " tech", " Android", " technology", " smartphone", " smartphones", " technologies", " cheap"], [" hardware", " tech", " Android", " smartphone", " smartphones", " technology", " overclock", " cheap"], [" hardware", " Android", " \u2013", " tech", " smartphone", " technology", " smartphones", " overclock"], [" Android", " hardware", " tech", " Hardware", " smartphone", " android", " smartphones", " Samsung"], [" Android", " hardware", " android", " smartphone", " smartphones", " Samsung", " tech", " Hardware"], [" hardware", " Android", " Hardware", " android", " CPU", " smartphone", " smartphones", " overclock"], [" hardware", " Android", " GPU", " CPU", " Hardware", " overclock", " GPUs", " CPUs"], [" Android", " hardware", " GPU", " android", " GPUs", " CPU", " overclock", " Hardware"], [" Android", " hardware", " android", " GPU", " GPUs", " Hardware", " Samsung", " smartphone"], [" Android", " hardware", " GPU", " android", " Hardware", " GPUs", " Samsung", " CPUs"], [" Android", " hardware", " GPU", " android", " Hardware", " GPUs", " Samsung", " CPUs"], [" Android", " hardware", " android", " GPU", " GPUs", " smartphones", " Samsung", " smartphone"], [" hardware", " Android", " GPU", " GPUs", " android", " Samsung", " Hardware", " smartphones"], [" hardware", " Android", " GPUs", " GPU", " limited", " CPUs", " CPU", " engines"], [" hardware", " Android", " GPUs", " CPUs", " GPU", " CPU", " Hardware", " android"], [" hardware", " Android", " GPUs", " CPUs", " GPU", " Hardware", " CPU", " (~"], [" hardware", " Android", " GPUs", " (~", " CPUs", " Hardware", " GPU", " smartphones"], [" hardware", " requires", "\u610f\u5473\u7740", "\u786c\u4ef6", " GPUs", " CPUs", " Android", " Hardware"], [" Android", " hardware", " requires", "(Android", " GPUs", " android", "Android", "\u610f\u5473\u7740"], [" Android", " hardware", "\u786c\u4ef6", " Hardware", " android", "\u610f\u5473\u7740", "Android", " requires"], [" hardware", " Android", "\u786c\u4ef6", " Hardware", "Android", " android", "hardware", "-android"], [" hardware", " Android", "\u786c\u4ef6", " Hardware", "Android", "hardware", " android", " iOS"], [" Android", "Android", " hardware", " android", "-android", "\u5b89\u5353", "_android", "/android"], [" Android", "Android", " android", "-android", "\u5b89\u5353", "_android", " hardware", "(Android"], [" Android", " hardware", "Android", " android", "-android", "\u786c\u4ef6", " Hardware", "_android"], [" Android", " hardware", "Android", " android", "-android", "_android", "\u786c\u4ef6", " Hardware"], [" Android", " hardware", "Android", " android", "-android", "\u786c\u4ef6", " Hardware", "_android"], [" Android", "Android", " hardware", " android", "-android", "_android", "(Android", "\u5b89\u5353"], [" Android", "Android", " android", " hardware", "-android", "\u5b89\u5353", "(Android", "_android"], [" Android", "Android", " hardware", " android", "-android", "\u5b89\u5353", "(Android", " mobile"]], "p": [[0.9683, 0.0201, 0.0074, 0.0009, 0.0005, 0.0004, 0.0003, 0.0002], [0.8957, 0.0347, 0.0186, 0.0164, 0.0128, 0.0088, 0.0047, 0.0041], [0.6311, 0.3378, 0.0148, 0.0079, 0.0029, 0.0018, 0.0009, 0.0008], [0.0086, 0.0036, 0.0034, 0.0028, 0.0025, 0.0025, 0.0022, 0.002], [0.5555, 0.0428, 0.0244, 0.0131, 0.0123, 0.0115, 0.0108, 0.0084], [0.3206, 0.283, 0.1108, 0.0811, 0.0492, 0.0067, 0.0059, 0.0017], [0.8762, 0.0249, 0.0133, 0.0091, 0.0046, 0.0012, 0.0007, 0.0004], [0.266, 0.0383, 0.036, 0.0263, 0.0097, 0.0059, 0.004, 0.0031], [0.4019, 0.0955, 0.0511, 0.048, 0.0257, 0.0065, 0.0045, 0.0039], [0.3189, 0.0758, 0.0432, 0.0358, 0.0262, 0.0204, 0.0116, 0.008], [0.522, 0.0295, 0.026, 0.0148, 0.0139, 0.0123, 0.0115, 0.0058], [0.0306, 0.0253, 0.0185, 0.0164, 0.0164, 0.0144, 0.0144, 0.0127], [0.014, 0.0116, 0.0109, 0.0096, 0.007, 0.0055, 0.0043, 0.0035], [0.0138, 0.0122, 0.0122, 0.0108, 0.0101, 0.0061, 0.0045, 0.0045], [0.0223, 0.0099, 0.0087, 0.005, 0.0044, 0.0044, 0.0041, 0.0039], [0.0154, 0.0082, 0.0068, 0.0053, 0.005, 0.0044, 0.0039, 0.0034], [0.0241, 0.0061, 0.0048, 0.0042, 0.0042, 0.0035, 0.0033, 0.0027], [0.0043, 0.0029, 0.0029, 0.0029, 0.0028, 0.0028, 0.0026, 0.0024], [0.0044, 0.0034, 0.0028, 0.0025, 0.0022, 0.0019, 0.0019, 0.0018], [0.009, 0.0037, 0.0035, 0.0031, 0.0029, 0.0024, 0.0024, 0.0021], [0.0075, 0.0071, 0.0052, 0.0038, 0.0036, 0.0029, 0.0026, 0.0026], [0.0036, 0.003, 0.0026, 0.0025, 0.0019, 0.0019, 0.0019, 0.0017], [0.0102, 0.0051, 0.0035, 0.0035, 0.0033, 0.0027, 0.0026, 0.0026], [0.0088, 0.0088, 0.0073, 0.0057, 0.0057, 0.0044, 0.0042, 0.0039], [0.0149, 0.008, 0.0043, 0.004, 0.0038, 0.0035, 0.0035, 0.0035], [0.0594, 0.0299, 0.0141, 0.0117, 0.0117, 0.011, 0.0091, 0.0076], [0.086, 0.0279, 0.0231, 0.0217, 0.0169, 0.0159, 0.0132, 0.0132], [0.0224, 0.0136, 0.0106, 0.0088, 0.0077, 0.0068, 0.0068, 0.0064], [0.0765, 0.0494, 0.0281, 0.0264, 0.0193, 0.0182, 0.016, 0.016], [0.0782, 0.0445, 0.0369, 0.0347, 0.0306, 0.0254, 0.021, 0.0174], [0.0728, 0.0728, 0.0532, 0.0323, 0.0222, 0.0209, 0.0209, 0.0153], [0.0649, 0.0446, 0.0326, 0.0154, 0.0145, 0.012, 0.0113, 0.0106], [0.0727, 0.0499, 0.0251, 0.0251, 0.0196, 0.0134, 0.0087, 0.0082], [0.1322, 0.0802, 0.0429, 0.0429, 0.0379, 0.0295, 0.0139, 0.0116], [0.2213, 0.1429, 0.0634, 0.0494, 0.0233, 0.0171, 0.0141, 0.0125], [0.2897, 0.1651, 0.083, 0.0571, 0.0174, 0.0174, 0.0106, 0.0093], [0.4591, 0.3156, 0.0276, 0.0122, 0.0108, 0.0095, 0.0079, 0.0079], [0.7191, 0.1416, 0.0192, 0.0159, 0.0103, 0.008, 0.0062, 0.0055], [0.4684, 0.4133, 0.016, 0.0117, 0.0103, 0.0081, 0.0076, 0.0049], [0.5377, 0.1359, 0.0775, 0.0567, 0.0303, 0.0251, 0.0208, 0.0143], [0.5419, 0.2259, 0.0537, 0.0287, 0.0154, 0.012, 0.012, 0.0106], [0.7079, 0.179, 0.0214, 0.0201, 0.0089, 0.0079, 0.0058, 0.0042], [0.4969, 0.3415, 0.028, 0.0181, 0.0132, 0.0124, 0.0075, 0.0055], [0.427, 0.3768, 0.0241, 0.0188, 0.0188, 0.0114, 0.01, 0.0069], [0.3739, 0.3739, 0.0239, 0.0225, 0.0145, 0.0113, 0.0113, 0.0106], [0.4508, 0.2413, 0.0186, 0.0136, 0.012, 0.012, 0.012, 0.0106], [0.5248, 0.11, 0.0191, 0.014, 0.0131, 0.0116, 0.0102, 0.0096], [0.4582, 0.1397, 0.0275, 0.0167, 0.0122, 0.0122, 0.0122, 0.0095], [0.4697, 0.072, 0.0495, 0.022, 0.0171, 0.0151, 0.011, 0.0104], [0.3996, 0.0838, 0.0396, 0.0349, 0.0212, 0.0199, 0.0106, 0.0106], [0.3375, 0.0486, 0.0486, 0.0334, 0.0244, 0.0179, 0.0179, 0.0179], [0.7044, 0.0479, 0.0121, 0.0114, 0.0107, 0.0094, 0.0089, 0.0078], [0.4653, 0.4106, 0.0109, 0.0103, 0.0059, 0.0055, 0.0055, 0.0049], [0.5654, 0.3886, 0.0151, 0.0081, 0.0032, 0.0032, 0.003, 0.0012], [0.5409, 0.4213, 0.0144, 0.0068, 0.0039, 0.0022, 0.001, 0.0008], [0.9878, 0.004, 0.004, 0.0015, 0.001, 0.0005, 0.0003, 0.0002], [0.9935, 0.0036, 0.0013, 0.0005, 0.0003, 0.0002, 0.0002, 0.0002], [0.9784, 0.0158, 0.0031, 0.0008, 0.0004, 0.0004, 0.0003, 0.0002], [0.983, 0.0096, 0.0046, 0.001, 0.0007, 0.0002, 0.0002, 0.0001], [0.9889, 0.0076, 0.0028, 0.0004, 0.0002, 0.0001, 0.0001, 0.0], [0.9981, 0.0017, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.996, 0.0032, 0.0002, 0.0002, 0.0002, 0.0, 0.0, 0.0], [0.9988, 0.0007, 0.0004, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Kotlin": [70256, 71739, 41253, 10644, 33139, 15387, 28095, 68327, 107131, 118036, 83634, 77684, 27267, 33584, 52593, 37806, 40193, 31528, 24196, 51260, 84915, 21484, 32777, 66917, 31420, 7159, 7237, 15203, 3305, 3199, 3303, 6178, 10060, 2343, 1747, 707, 126, 125, 128, 181, 288, 394, 438, 515, 755, 1357, 2542, 1315, 1119, 797, 616, 255, 92, 120, 61, 42, 25, 28, 28, 33, 27, 23, 10]}}, {"pos": 401, "top": [["s", "a", ".", "o", ",", "i", "er", "\u2026."], ["s", "sWith", "  \n\n", "erweise", "\u201d.", "\u201d,", "  \r\n", "s\u00f3"], ["s", "\u2013", "\u2026.", " \u2013", ",", "\u2026", ".", "\u201d,"], ["sWith", "sik", "erweise", "szeit", "s", " **\u2022", "s\u00f6k", "satz"], ["s", "ed", "sWith", "a", "sik", "s\u00f3", "\u0627\u062a", "sche"], ["s", "sWith", "s\u00f3", "(Android", "sver", "a", "sik", "ed"], ["s", "(Android", "a", " Android", "sWith", "\u0627\u062a", "s\u00f3", "a\u00f0"], ["s", "sWith", "(Android", " Android", "s\u00f3", "sak", "sik", "scape"], ["s", "  \n\n", "(Android", "\r\n\r\n", "sWith", "!\u201d.", " Android", " \r\n\r\n"], ["s", "(Android", ",", " Android", ".Android", "sWith", "\u76f8\u8f85\u76f8\u6210", "s\u00f3"], ["s", " Android", "a", "(Android", ",", ".Android", "&nbsp", "..."], ["s", " Android", ".Android", "(Android", "sak", "sWith", "(android", "\u76f8\u8f85\u76f8\u6210"], ["s", " Android", "(Android", ".Android", "sak", "sWith", "(android", " android"], ["s", " Android", "(Android", ".Android", "-style", "(android", "sak", " android"], ["s", " Android", " largely", " massively", " arguably", ".Android", "-style", " heavily"], ["s", " arguably", " massively", " largely", "\u51ed\u501f\u7740", " Android", "-esque", " popular"], ["s", " arguably", " largely", " Android", " massively", ",", " popular", " just"], ["s", " Android", ".Android", "(Android", " massively", "sWith", "ska", "sak"], ["s", " Android", ".Android", "(Android", " arguably", " massively", " hugely", "ska"], ["s", " hugely", " massively", " largely", " arguably", " Android", " heavily", ".Android"], ["<|endoftext|>", "s", "  \n\n", " \n\n", " \r\n\r\n", " hugely", "\r\n\r\n", " swiftly"], [" Android", ".Android", "(Android", " android", "\u4e3a\u5168\u7403", "_ANDROID", "_android", "(android"], [" Android", ".Android", " ``", " heavily", " hugely", " arguably", " massively", " even"], [" ,", " even", " heavily", " largely", " Android", " just", " arguably", " mostly"], [" Android", " \r\n\r\n", ".Android", "\r\n\r\n", " hugely", " android", "(Android", "Android"], [" Android", ".Android", "(Android", " android", "_ANDROID", "Android", "ANDROID", "_android"], [" Android", " android", ".Android", "(Android", "Android", "_android", "_ANDROID", "ANDROID"], [" Android", " \n\n", " ,", " heavily", "\r\n\r\n", " \r\n\r\n", "  \n\n", " android"], [" Android", " android", "Android", "(Android", ".Android", " heavily", " smartphone", " hugely"], [" Android", " android", "(Android", " heavily", ".Android", " smartphone", " smartphones", "Android"], [" Android", " android", " heavily", " smartphone", " smartphones", " Africa", "(Android", " technology"], [" Android", " heavily", " ,", " technology", " Africa", " .", " even", " massively"], [" Android", " heavily", " even", " massively", " ,", " modern", " despite", " only"], [" Android", " heavily", " massively", " android", " smartphone", " smartphones", " tech", " technology"], [" Android", " heavily", " massively", " notoriously", " smartphone", " android", " hardware", " tech"], [" Android", " notoriously", " heavily", " hardware", " massively", " tech", " technology", " android"], [" notoriously", " Android", " hardware", " heavily", " massively", " tech", " aggressively", " requires"], [" Android", " hardware", " notoriously", " android", " requires", " heavily", " massively", " tech"], [" Android", " hardware", " requires", " notoriously", " massively", " android", " tech", " heavily"], [" hardware", " Android", " requires", " notoriously", " android", " tech", " massively", " heavily"], [" hardware", " Android", " requires", " notoriously", " tech", " heavily", " android", " technology"], [" hardware", " Android", " requires", " notoriously", " technology", " heavily", " overclock", " tech"], [" hardware", " Android", " requires", " notoriously", " technology", " overclock", " powered", " aggressively"], [" hardware", " requires", " Android", " notoriously", " heavily", " overclock", " aggressively", " powered"], [" requires", " hardware", " notoriously", " impossible", " Android", " heavily", " aggressively", " powered"], [" requires", " hardware", " notoriously", " without", " heavily", " aggressively", " purely", " impossible"], [" requires", " hardware", " impossible", " notoriously", " heavily", " without", " relies", " require"], [" requires", " without", " WITHOUT", " via", " combined", " simultaneously", " impossible", " using"], [" requires", " without", " WITHOUT", " combined", " while", " purely", " solely", " alone"], [" requires", "requires", " Requires", "Requires", " require", " implies", "\u610f\u5473\u7740", " without"], [" requires", "requires", " Requires", "Requires", "\u610f\u5473\u7740", " implies", " require", " \u0442\u0440\u0435\u0431\u0443\u0435\u0442"], [" requires", "requires", " Requires", "Requires", " requiring", " require", " \u0442\u0440\u0435\u0431\u0443\u0435\u0442", " implies"], [" requires", "requires", " Requires", "Requires", " requiring", " require", " \u0442\u0440\u0435\u0431\u0443\u0435\u0442", " demands"], [" requires", "requires", " Requires", "Requires", " requiring", " require", " \u0442\u0440\u0435\u0431\u0443\u0435\u0442", " while"], [" requires", "requires", " Requires", " requiring", "Requires", " require", " with", " \u0442\u0440\u0435\u0431\u0443\u0435\u0442"], [" requires", "requires", " Requires", "Requires", " requiring", " require", " implies", " via"], [" requires", "requires", " Requires", "Requires", " requiring", " via", " implies", " require"], [" requires", "requires", " Requires", "Requires", " requiring", " require", " via", " implies"], [" requires", "requires", " Requires", " via", "Requires", " requiring", " with", " require"], [" requires", " via", " with", " hardware", " Requires", "requires", " implies", " require"], [" requires", " with", " via", " *", " implies", " hardware", " renders", " Requires"], [" requires", " with", " via", " implies", " renders", " is", " *", " hardware"], [" with", " requires", " via", " implies", " is", " hardware", " *", " Kotlin"]], "p": [[0.9288, 0.0462, 0.0086, 0.0055, 0.0025, 0.0019, 0.0005, 0.0003], [0.8668, 0.0169, 0.0103, 0.0038, 0.0035, 0.0035, 0.0029, 0.002], [0.919, 0.0131, 0.0116, 0.008, 0.007, 0.0062, 0.0043, 0.0031], [0.0427, 0.0377, 0.0167, 0.0139, 0.0122, 0.0101, 0.0079, 0.0079], [0.9928, 0.0015, 0.0006, 0.0006, 0.0002, 0.0002, 0.0001, 0.0001], [0.9496, 0.005, 0.0022, 0.002, 0.002, 0.0014, 0.001, 0.001], [0.9995, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.992, 0.0012, 0.0008, 0.0003, 0.0003, 0.0002, 0.0002, 0.0002], [0.9876, 0.0009, 0.0005, 0.0005, 0.0005, 0.0004, 0.0003, 0.0003], [0.9288, 0.004, 0.0036, 0.0025, 0.0018, 0.0011, 0.001, 0.0009], [0.9778, 0.0027, 0.0008, 0.0008, 0.0007, 0.0006, 0.0006, 0.0004], [0.3696, 0.0728, 0.0268, 0.0209, 0.0093, 0.0068, 0.0064, 0.0056], [0.2053, 0.0856, 0.0315, 0.0261, 0.0102, 0.0102, 0.0085, 0.008], [0.0636, 0.0362, 0.0171, 0.0125, 0.0056, 0.0056, 0.0049, 0.0049], [0.1253, 0.008, 0.0049, 0.0038, 0.0033, 0.0031, 0.0029, 0.0022], [0.0977, 0.008, 0.0062, 0.0062, 0.0043, 0.0036, 0.0024, 0.0023], [0.7198, 0.0028, 0.0026, 0.0024, 0.0024, 0.0015, 0.0013, 0.0011], [0.3533, 0.0129, 0.0078, 0.0065, 0.0039, 0.0035, 0.0033, 0.0024], [0.0546, 0.0189, 0.0138, 0.0122, 0.0061, 0.0048, 0.0045, 0.0037], [0.0511, 0.0129, 0.0094, 0.0083, 0.0074, 0.0065, 0.0065, 0.0047], [0.1574, 0.0351, 0.0129, 0.0101, 0.0078, 0.0069, 0.0061, 0.0051], [0.0639, 0.0266, 0.0195, 0.0043, 0.0026, 0.0022, 0.0022, 0.0022], [0.0442, 0.0143, 0.0127, 0.0087, 0.0072, 0.006, 0.005, 0.005], [0.018, 0.0109, 0.0102, 0.0096, 0.009, 0.007, 0.0051, 0.0048], [0.0669, 0.0231, 0.014, 0.0124, 0.0124, 0.0091, 0.0091, 0.0091], [0.4239, 0.0447, 0.0394, 0.037, 0.01, 0.0094, 0.0064, 0.0064], [0.4088, 0.0431, 0.0336, 0.0315, 0.0102, 0.007, 0.0066, 0.0058], [0.0948, 0.0349, 0.0175, 0.0145, 0.0128, 0.0128, 0.0106, 0.0106], [0.5264, 0.0432, 0.0297, 0.0231, 0.0204, 0.008, 0.0058, 0.0043], [0.474, 0.0343, 0.0196, 0.0134, 0.0119, 0.0111, 0.0092, 0.0077], [0.5582, 0.0335, 0.014, 0.0085, 0.008, 0.008, 0.0075, 0.0075], [0.113, 0.0286, 0.0184, 0.0119, 0.0099, 0.0099, 0.0093, 0.0087], [0.0405, 0.0381, 0.0159, 0.0159, 0.014, 0.0085, 0.008, 0.008], [0.1744, 0.0303, 0.0236, 0.0184, 0.0173, 0.0134, 0.0134, 0.0126], [0.1228, 0.0374, 0.0352, 0.031, 0.031, 0.02, 0.0188, 0.0177], [0.1239, 0.0623, 0.0517, 0.0378, 0.0276, 0.0202, 0.0139, 0.0131], [0.09, 0.0746, 0.0618, 0.0399, 0.0352, 0.0189, 0.0189, 0.0147], [0.2583, 0.074, 0.0396, 0.024, 0.0212, 0.0187, 0.0176, 0.0129], [0.1471, 0.1011, 0.0892, 0.0449, 0.0165, 0.0146, 0.0146, 0.0129], [0.1675, 0.1478, 0.0791, 0.031, 0.0156, 0.0137, 0.0107, 0.0094], [0.2764, 0.1306, 0.0579, 0.0213, 0.0188, 0.0156, 0.0138, 0.0129], [0.3846, 0.0972, 0.0459, 0.018, 0.0132, 0.0132, 0.0116, 0.0096], [0.3055, 0.0726, 0.0468, 0.0183, 0.0126, 0.0118, 0.0111, 0.0111], [0.1904, 0.0957, 0.0375, 0.0242, 0.0166, 0.0147, 0.0138, 0.013], [0.1728, 0.1433, 0.0282, 0.0234, 0.0182, 0.0171, 0.0151, 0.0092], [0.1223, 0.079, 0.0373, 0.0309, 0.0273, 0.02, 0.02, 0.0188], [0.4289, 0.0481, 0.0242, 0.0227, 0.0138, 0.013, 0.0079, 0.0079], [0.5011, 0.2089, 0.0411, 0.0134, 0.0118, 0.0092, 0.0092, 0.0086], [0.5211, 0.1163, 0.0455, 0.0276, 0.0259, 0.0139, 0.013, 0.0102], [0.9151, 0.0355, 0.0084, 0.0051, 0.0029, 0.0023, 0.0016, 0.0015], [0.9431, 0.0366, 0.0082, 0.0034, 0.0015, 0.0011, 0.001, 0.0008], [0.957, 0.0289, 0.0073, 0.0024, 0.0014, 0.0013, 0.0003, 0.0002], [0.9458, 0.0286, 0.0153, 0.0056, 0.0016, 0.001, 0.0003, 0.0002], [0.9455, 0.0252, 0.0153, 0.0056, 0.0013, 0.0011, 0.0006, 0.0005], [0.9699, 0.0157, 0.0065, 0.0024, 0.0024, 0.0013, 0.0003, 0.0003], [0.9569, 0.0175, 0.0136, 0.0035, 0.0024, 0.0021, 0.0006, 0.0005], [0.9292, 0.0281, 0.015, 0.0063, 0.0026, 0.0026, 0.0023, 0.002], [0.9392, 0.0221, 0.0134, 0.0049, 0.0043, 0.0026, 0.0021, 0.0012], [0.9415, 0.0172, 0.0119, 0.0063, 0.0038, 0.0034, 0.003, 0.0021], [0.8235, 0.0984, 0.0319, 0.0081, 0.0052, 0.0043, 0.0038, 0.003], [0.8078, 0.0663, 0.0663, 0.0079, 0.007, 0.0066, 0.004, 0.0031], [0.8695, 0.063, 0.0141, 0.0117, 0.0066, 0.0055, 0.0031, 0.0029], [0.4684, 0.3219, 0.1184, 0.0233, 0.0076, 0.0071, 0.0063, 0.0059]], "ranks": {"Kotlin": [30614, 19375, 13176, 525, 775, 1022, 1162, 4172, 5386, 6940, 5351, 2465, 980, 2405, 20256, 14147, 12227, 5870, 7288, 30673, 39923, 2662, 4856, 22068, 5511, 1260, 1817, 6078, 1695, 2336, 2120, 6753, 11687, 1670, 2422, 1589, 1353, 1102, 1094, 1335, 2373, 3299, 2731, 3064, 3863, 10614, 10387, 12454, 19992, 26816, 11791, 2545, 2054, 955, 654, 124, 61, 37, 30, 12, 10, 9, 8]}}, {"pos": 402, "top": [[",", ".", ";", "\u00a0\u00a0", "\u00a0", "\u2026.", "\u2013", ":"], ["s", ",", ".", ";", " \u200b\u200b", "  \n", "\u2026..", "  \n\n"], [",", ".", "\u2026.", "\u2026..", "\u2026", ";", "\u2013", "s"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " milfs", "-------------</", "\ufffd\ufffd", " Blowjob", " Shemale", " ;;^", " cumshot"], ["ed", "s", " **\u201c", "ness", "\u200e", "ively", " \u200e", "es"], [" **\u201c", "ed", "-**", "\u2026..", " **\"", "\u2026.", "siz", "s"], [" **\u201c", " **\"", "-**", "**!", "!**", "\u201d**", " **'", "s"], [" **\"", " **'", "-**", "ness", " **\u201c", "**!", " **", " **+"], ["**!", "  \n\n", " **\"", "...**", "!\u201d.", "!**", " **'", "**."], ["\u4fe9\u4eba", "\u8471\u8471", "\ufffd\ufffd", "-Cds", "\u6ca1\u6cd5", "\u00adt", "ness", "\u2014\""], ["\u00a0", "s", "\u00c2", "...", "\u2026.", "\u00a0\u00a0", "\u2026", "ness"], ["\u826f\u673a", "\u4fe9\u4eba", "\u8471\u8471", "\u0642\u0649", " goodies", " guts", "\u611f\u5341\u8db3", "\u6ca1\u5565"], [" goodies", " hardcore", "\u8471\u8471", "\u611f\u5341\u8db3", "\u826f\u673a", " **\u00ab", "\u81ea\u4e2a", "\u4fe9\u4eba"], [" goodies", " hardcore", " effortlessly", " effortless", "\u8471\u8471", "\u4fe9\u4eba", " tough", "\u6ca1\u5565"], [" folks", " goodies", " effortlessly", " truly", " arguably", " busted", "\u4fe9\u4eba", " smack"], [" folks", " incredibly", " plenty", " goodies", " effortlessly", " arguably", " busted", " getting"], [" goodies", " folks", " hefty", " effortlessly", " plenty", " incredibly", " effortless", " busted"], [" hefty", " goodies", " pricey", " comfy", " folks", "\u6ca1\u5565", " effortless", " busted"], [" hefty", " busted", " pricey", " effortlessly", " comfy", " goodies", "...**", "\u6ca1\u5565"], [" hefty", " requisite", " effortlessly", " utterly", " busted", " folks", " arguably", " pricey"], ["<|endoftext|>", "  \n\n", " \n\n", " requisite", "\n\n", "<|file_sep|>", " \r\n\r\n", " myriad"], [" effortlessly", " effortless", "\u642d\u914d\u4e0a", " impecc", " busted", " hefty", "\u306f\u4e00\u5207", "\u8471\u8471"], [" effortlessly", " barely", " incredibly", " impecc", " hefty", " plenty", " effortless", " genuinely"], [" barely", " genuinely", " plenty", " fully", " hugely", " effortlessly", " truly", " incredibly"], [" \n\n", "  \n\n", " \r\n\r\n", "   \n\n", "\r\n\r\n", "  \r\n\r\n", " \r\n", " hefty"], ["...**", " **'", " **+", " **", " \r\n\r\n", " pricey", " effortless", " hefty"], [" pricey", " hugely", " \r\n\r\n", " effortless", " hefty", " effortlessly", " vastly", " requisite"], [" \n\n", "  \n\n", " \r\n\r\n", " hugely", " vastly", "\r\n\r\n", " requisite", " barely"], [" incredibly", " barely", " **", " hugely", " vastly", " arguably", " massively", " massive"], [" **", " barely", " massive", " incredibly", " arguably", " massively", " heavy", " tight"], [" huge", " massive", " incredibly", " barely", " heavy", " heavily", " high", " tight"], [" huge", " ...", " **", " massive", " incredibly", " high", " barely", " complex"], [" huge", " massive", " high", " only", " barely", " incredibly", " massively", " tight"], [" massive", " massively", " huge", " complex", " relentless", " incredibly", " meticulously", " barely"], [" massively", " relentless", " complex", " arguably", " massive", " meticulously", "\u2014even", " incredibly"], ["\u2026*", "\u2026**", "  \n\n", " complex", " \u2026", " \u201c", " **\u201c", " hardware"], [" complex", " complexity", " hardware", " tech", " software", " multit", " complexities", " hybrid"], [" complex", " hardware", " complexity", " software", " multit", " tech", " seamlessly", " multi"], [" complex", " complexity", " complexities", " multit", " hardware", "complex", " intricate", " software"], [" complex", " complexity", " complexities", "complex", " multit", "\u590d\u6742", " hardware", " intricate"], [" complex", " complexity", " software", " complexities", " multit", " hardware", "complex", " multimedia"], [" complex", " complexity", " complexities", " multit", " software", " workflows", "complex", " simultaneous"], [" complex", " complexity", " complexities", " software", " multit", " workflows", "complex", " hardware"], [" complex", " complexity", " complexities", " software", " multit", " workflows", "complex", " layered"], [" complex", " complexity", " complexities", " multit", " workflows", "complex", " software", " simultaneous"], [" complex", " complexity", " multit", " simultaneous", " complexities", " unrestricted", " software", " heavy"], [" complex", " complexity", " simultaneous", " multit", "-heavy", " workflows", " multi", " layered"], [" simultaneous", " complex", " multit", " unrestricted", " complexity", " multi", " simultaneously", " dual"], [" unrestricted", " simultaneous", " complex", " multit", " bespoke", " complexity", " concurrent", " customizable"], [" unrestricted", "-heavy", " simultaneous", " complex", " multit", " complexity", " bespoke", " **+"], ["-heavy", " bespoke", " unrestricted", " **+", " simultaneous", " complex", "\u590d\u6742", " complexity"], [" interactive", " complex", "\u590d\u6742", "\u590d\u6742\u7684", "complex", "Complex", " complexity", " immersive"], [" complex", "\u590d\u6742", "\u590d\u6742\u7684", "Complex", "complex", "-heavy", " Complex", " complexity"], [" complex", "\u590d\u6742", "\u590d\u6742\u7684", "Complex", "-heavy", "complex", " interactive", " Complex"], [" complex", "\u590d\u6742", "\u590d\u6742\u7684", "complex", "Complex", "_complex", " Complex", " complexity"], [" complex", " Kotlin", "\u590d\u6742", "\u590d\u6742\u7684", "complex", " Java", "Complex", " Python"], [" Kotlin", " complex", "\u590d\u6742", " heavy", " Java", "complex", " WebGL", "\u590d\u6742\u7684"], [" complex", " Kotlin", "\u590d\u6742", "complex", "\u590d\u6742\u7684", "Complex", " Java", " heavy"], [" complex", " Kotlin", "\u590d\u6742", "complex", " Java", " heavy", "\u590d\u6742\u7684", " GPU"], [" Kotlin", " complex", " heavy", " async", " scripting", " asynchronous", " synchronous", " Async"], [" Kotlin", " complex", " async", " heavy", " synchronous", " scripting", " *", " scripted"], [" Kotlin", " async", " synchronous", " asynchronous", " complex", " *", " heavy", " Java"], [" Kotlin", " complex", " async", " heavy", " a", " *", " synchronous", " asynchronous"]], "p": [[0.5832, 0.4008, 0.0065, 0.0027, 0.0016, 0.0016, 0.0006, 0.0004], [0.0986, 0.0598, 0.0161, 0.0104, 0.0081, 0.0052, 0.0046, 0.0038], [0.6085, 0.2536, 0.0499, 0.0267, 0.0162, 0.0092, 0.0072, 0.0044], [0.0241, 0.0213, 0.0054, 0.0051, 0.0048, 0.0045, 0.0042, 0.0039], [0.2116, 0.0472, 0.0144, 0.0056, 0.0056, 0.005, 0.0044, 0.0027], [0.0504, 0.021, 0.0127, 0.0127, 0.012, 0.0106, 0.0047, 0.0036], [0.3811, 0.1589, 0.0313, 0.0229, 0.0167, 0.0157, 0.0148, 0.0148], [0.1988, 0.0606, 0.0606, 0.057, 0.0368, 0.0305, 0.0163, 0.0163], [0.0402, 0.0377, 0.0333, 0.0229, 0.0202, 0.0139, 0.009, 0.009], [0.0029, 0.0024, 0.002, 0.002, 0.0018, 0.0014, 0.0014, 0.0013], [0.054, 0.0225, 0.0186, 0.0155, 0.0136, 0.0106, 0.0094, 0.0083], [0.0054, 0.0045, 0.0039, 0.0031, 0.0029, 0.0029, 0.0025, 0.0024], [0.0033, 0.0029, 0.0029, 0.0024, 0.0021, 0.0021, 0.0019, 0.0019], [0.0041, 0.0025, 0.002, 0.002, 0.0018, 0.0018, 0.0018, 0.0017], [0.0122, 0.0108, 0.009, 0.0074, 0.0062, 0.0058, 0.0054, 0.0054], [0.0305, 0.0144, 0.0106, 0.0099, 0.0093, 0.0088, 0.0073, 0.0068], [0.0322, 0.0302, 0.0235, 0.0162, 0.0152, 0.0104, 0.0092, 0.0092], [0.0321, 0.0235, 0.0142, 0.0134, 0.0104, 0.0092, 0.0076, 0.0076], [0.0241, 0.0089, 0.0083, 0.0078, 0.0073, 0.0065, 0.0054, 0.0047], [0.0171, 0.0134, 0.0134, 0.0104, 0.0071, 0.0071, 0.0067, 0.0063], [0.8838, 0.0162, 0.0152, 0.0007, 0.0006, 0.0006, 0.0005, 0.0004], [0.0091, 0.0046, 0.0038, 0.0038, 0.0038, 0.0035, 0.0029, 0.0028], [0.0096, 0.007, 0.0055, 0.0051, 0.0045, 0.0045, 0.0042, 0.0042], [0.0112, 0.0053, 0.0053, 0.005, 0.005, 0.0047, 0.0041, 0.0039], [0.1204, 0.0881, 0.073, 0.0153, 0.0112, 0.0099, 0.0053, 0.0047], [0.0115, 0.0066, 0.0066, 0.0062, 0.0058, 0.0055, 0.0051, 0.0051], [0.0049, 0.0041, 0.0038, 0.0038, 0.0038, 0.003, 0.0026, 0.0023], [0.076, 0.0382, 0.017, 0.0097, 0.008, 0.008, 0.0071, 0.0071], [0.0132, 0.0103, 0.008, 0.0075, 0.0071, 0.0071, 0.0067, 0.0062], [0.0262, 0.0116, 0.0109, 0.0103, 0.008, 0.0075, 0.007, 0.0066], [0.0328, 0.024, 0.0225, 0.0211, 0.012, 0.0113, 0.0113, 0.0106], [0.0372, 0.0256, 0.0226, 0.0226, 0.0187, 0.0176, 0.0146, 0.0137], [0.0322, 0.0284, 0.0172, 0.0152, 0.0152, 0.0143, 0.0134, 0.0134], [0.0207, 0.0207, 0.0194, 0.0171, 0.0161, 0.0142, 0.0111, 0.0104], [0.0277, 0.026, 0.0216, 0.0203, 0.0179, 0.0148, 0.0109, 0.0102], [0.0585, 0.0485, 0.0428, 0.0276, 0.0276, 0.0202, 0.0178, 0.0157], [0.0822, 0.0413, 0.0388, 0.0162, 0.0162, 0.0162, 0.0111, 0.0092], [0.1087, 0.0514, 0.0426, 0.0228, 0.0189, 0.0157, 0.013, 0.0095], [0.329, 0.1288, 0.0287, 0.021, 0.0154, 0.012, 0.0106, 0.0082], [0.4251, 0.1218, 0.0212, 0.0212, 0.0155, 0.0113, 0.0088, 0.0061], [0.3312, 0.147, 0.0328, 0.0289, 0.0255, 0.0165, 0.0146, 0.01], [0.4237, 0.1559, 0.0394, 0.0327, 0.0307, 0.0106, 0.01, 0.0083], [0.4414, 0.1265, 0.0362, 0.03, 0.0282, 0.0111, 0.0098, 0.0081], [0.4036, 0.1485, 0.0311, 0.0258, 0.0177, 0.0167, 0.0122, 0.0069], [0.481, 0.1216, 0.0225, 0.0186, 0.0113, 0.0113, 0.01, 0.0088], [0.3323, 0.0577, 0.0309, 0.0273, 0.0187, 0.0146, 0.0094, 0.0094], [0.1672, 0.0578, 0.0578, 0.0479, 0.0166, 0.0156, 0.0146, 0.0121], [0.0929, 0.068, 0.0439, 0.0439, 0.0302, 0.0283, 0.0221, 0.0207], [0.0638, 0.0563, 0.0342, 0.025, 0.0235, 0.0221, 0.0195, 0.0161], [0.0529, 0.0341, 0.0321, 0.0172, 0.0161, 0.0151, 0.0142, 0.0118], [0.0148, 0.0131, 0.0115, 0.0102, 0.009, 0.007, 0.007, 0.0062], [0.0444, 0.0305, 0.0269, 0.0269, 0.0185, 0.0185, 0.0163, 0.0153], [0.1631, 0.0724, 0.0467, 0.0467, 0.0364, 0.0364, 0.0235, 0.0221], [0.1816, 0.0711, 0.059, 0.0431, 0.0431, 0.0405, 0.0246, 0.0217], [0.3789, 0.179, 0.1086, 0.0845, 0.0581, 0.0274, 0.0242, 0.0242], [0.2161, 0.1485, 0.1021, 0.0425, 0.0375, 0.0353, 0.0201, 0.0189], [0.2984, 0.1597, 0.0588, 0.0404, 0.0356, 0.0278, 0.0261, 0.0245], [0.4601, 0.1494, 0.1027, 0.0706, 0.0229, 0.0202, 0.0178, 0.0178], [0.4851, 0.2022, 0.0451, 0.0398, 0.0351, 0.0242, 0.0129, 0.0101], [0.6573, 0.1294, 0.0611, 0.042, 0.0155, 0.0106, 0.0106, 0.0064], [0.7221, 0.1255, 0.0317, 0.0218, 0.015, 0.0117, 0.0103, 0.0103], [0.864, 0.0296, 0.0158, 0.0158, 0.014, 0.008, 0.007, 0.0062], [0.8321, 0.0366, 0.0285, 0.0196, 0.0173, 0.0098, 0.0098, 0.0077]], "ranks": {"Kotlin": [237501, 219732, 187639, 65271, 115031, 160253, 209394, 223429, 193387, 240807, 239989, 202573, 161610, 195051, 221958, 204500, 121644, 112357, 146494, 209480, 239564, 183949, 209598, 227388, 182733, 118017, 131121, 182871, 139500, 138163, 124866, 114730, 113622, 77387, 86272, 40839, 37179, 24675, 21457, 9732, 10426, 7749, 5568, 6715, 9941, 14321, 13479, 10330, 4182, 4263, 3148, 145, 95, 82, 50, 2, 1, 2, 2, 1, 1, 1, 1]}}, {"pos": 403, "top": [[".", ",", "\u2013", ";", "\u2026.", ",.", "\u00a0\u00a0", " \u2013"], [".", "\u2013", " \u200b\u200b", ",", " \u2013", ";", ",.", ";."], [".", "\u2013", ",", "\u2026.", "\u2026..", " \u2013", "\u2026", ".\u2013"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " milfs", " Shemale", " Blowjob", " pornstar", " cumshot", "aruhi", "schrift"], [".", " \u200b\u200b", ".@", "@d", ":.", " \"@", "!.", " \"."], [" \u200b\u200b", ".", "\u2026.", "\u2026..", "!.", ":.", ",.", "!\u201d."], ["s", " .....", " **\"", ".\"", ".....", "...\"", "\u2026.", "!\""], [".....", "!.", " **\"", " .....", " \u062c\u062f\u064b\u0627", ":.", "sburg", ".@"], [".", "!.", ",", ",.", ":.", ".....", "\u2026.", "..."], [",", "!,", ",.", ".", "!.", "\u00a0\u00a0", "\u2026.", "!\""], ["...", ".", ",", "...\"", " [\u2026]", "\u00a0", ",...", "...."], [" pricey", " funky", " stylish", " savvy", " fanc", " guts", "\u518d\u63a5\u518d", " flashy"], [" pricey", " funky", " savvy", " stylish", " sleek", " flair", " flashy", " flavorful"], [" pricey", " funky", " savvy", "-esque", " stylish", " busted", " flashy", " quirky"], [" busted", " savvy", " pricey", " funky", " flashy", " folks", " tweaked", " hefty"], [" pricey", " savvy", " busted", " folks", " hefty", " touted", " standout", " tweaked"], [" savvy", " hefty", " pricey", " busted", " funky", " folks", " quirky", " big"], [" pricey", " savvy", " quirky", " busted", " funky", " hefty", " flashy", " bigger"], [" busted", " pricey", " hefty", " flashy", " savvy", " nasty", " funky", " quirky"], [" busted", " pricey", " hefty", " requisite", " slick", "\u8ddf\u81ea\u5df1", " revamped", " savvy"], ["<|endoftext|>", " \n\n", " requisite", " busted", "  \n\n", " hefty", " revamped", "\t\n\n"], ["\u8ddf\u4ed6\u4eec", " busted", "\u5171\u540c\u6253\u9020", " pricey", "\u8e0f\u8e0f\u5b9e\u5b9e", "\u8ddf\u4eba", "\u54e5\u534e", "\u8ddf\u81ea\u5df1"], [" busted", " pricey", " revamped", " bigger", " hefty", " hugely", " sleek", " slick"], [" requisite", " revamped", " hugely", " fully", " &#", " heavily", " continually", " sprawling"], [" hugely", " revamped", " hefty", " requisite", " &#", " busted", " pricey", " sprawling"], [" tech", " sleek", " hugely", " pricey", " bigger", " revamped", " hefty", " busted"], [" pricey", " tech", " sprawling", " hugely", " sleek", " multit", " revamped", " busted"], [" heavily", " \n\n", " massive", " hugely", " heavy", " sprawling", " tech", " massively"], [" tech", " massive", " heavy", " huge", " heavily", " sprawling", " complex", " modular"], [" tech", " complex", " massive", " heavy", " modular", " high", " hardware", " heavily"], [" massive", " complex", " huge", " heavy", " tech", " heavily", " high", " big"], [" massive", " complex", " heavy", " high", " heavily", " huge", " big", " full"], [" complex", " massive", " high", " heavy", " heavily", " huge", " full", " large"], [" complex", " tech", " massive", " multi", " mega", " heavily", " modular", " hybrid"], [" complex", " tech", " massive", " dense", " complexity", " multi", " heavily", " hybrid"], [" complex", "\u2026*", " tech", " \u2026", " complexity", " [...]", " multi", " hybrid"], [" complex", " complexity", " multit", " multi", " tech", " software", "complex", " multimedia"], [" complex", " multi", " complexity", " multit", " hybrid", "complex", " multiple", " multimedia"], [" complex", " complexity", "complex", "\u590d\u6742", " multi", " multit", " Complex", "Complex"], [" complex", " complexity", "complex", "\u590d\u6742", "Complex", " multi", " Complex", " multit"], [" complex", " complexity", "complex", "\u590d\u6742", " Complex", "Complex", " multi", " multit"], [" complex", " complexity", "complex", "\u590d\u6742", " Complex", "Complex", " multit", " Complexity"], [" complex", " complexity", "complex", " Complex", "\u590d\u6742", "Complex", " software", "\u590d\u6742\u7684"], [" complex", " complexity", "complex", " Complex", "\u590d\u6742", "Complex", " customizable", " software"], [" complex", " complexity", "complex", " Complex", " customizable", " complicated", "\u590d\u6742", " integrated"], [" complex", " complexity", "complex", " customizable", " integrated", " Complex", " full", " modular"], [" complex", " complexity", "complex", " customizable", "\u590d\u6742", " multit", " multi", " integrated"], [" complex", " integrated", " customizable", " multi", "complex", " complexity", " multit", " fully"], [" complex", " customizable", " bespoke", " integrated", " complexity", "complex", " multiplayer", " interactive"], [" complex", " customizable", " bespoke", " unrestricted", "-heavy", " interoper", " complexity", " multit"], [" customizable", " bespoke", " complex", "-heavy", " unrestricted", "complex", "\u590d\u6742\u7684", " multit"], [" bespoke", " customizable", " complex", "complex", " interoper", "-native", "\u590d\u6742\u7684", " interactive"], [" complex", " heavyweight", " bespoke", " customizable", "complex", "\u590d\u6742\u7684", "\u590d\u6742", "-heavy"], [" complex", " bespoke", " heavyweight", " customizable", "complex", "\u590d\u6742\u7684", "\u590d\u6742", "-heavy"], [" complex", "\u590d\u6742\u7684", "complex", "\u590d\u6742", " bespoke", " customizable", " heavyweight", "Complex"], [" Kotlin", "-native", " complex", " full", " customizable", " fullscreen", " fully", " Java"], [" Kotlin", " customizable", " complex", "-native", " heavy", " heavyweight", " bespoke", " scripting"], [" complex", " Kotlin", "complex", " JVM", " heavy", "\u590d\u6742", " heavyweight", " Java"], [" complex", " Kotlin", " JVM", " Java", " scripting", " heavy", "complex", " heavyweight"], [" Kotlin", " scripting", " scripted", " heavy", " complex", " plugin", " heavyweight", "-script"], [" Kotlin", " scripting", " scripted", " heavy", " complex", " script", " cross", "-script"], [" Kotlin", " scripting", " scripted", " JVM", " complex", " heavy", " cross", " Java"], [" Kotlin", " complex", " heavy", " Java", " JVM", " plugin", " scripted", " scripting"]], "p": [[0.8735, 0.1182, 0.0028, 0.0017, 0.0007, 0.0005, 0.0005, 0.0005], [0.3298, 0.0834, 0.061, 0.037, 0.0254, 0.012, 0.0094, 0.0083], [0.8462, 0.0421, 0.0372, 0.0328, 0.0176, 0.0042, 0.0042, 0.0031], [0.0113, 0.0065, 0.005, 0.0035, 0.0035, 0.002, 0.0017, 0.0016], [0.0362, 0.0234, 0.022, 0.0071, 0.0059, 0.0059, 0.0049, 0.0036], [0.1576, 0.0898, 0.058, 0.0166, 0.0156, 0.0033, 0.0033, 0.0031], [0.1394, 0.0958, 0.0581, 0.0546, 0.0331, 0.0201, 0.0069, 0.0069], [0.0212, 0.0155, 0.0137, 0.0107, 0.01, 0.0047, 0.0042, 0.0039], [0.5304, 0.0674, 0.0299, 0.0248, 0.0193, 0.017, 0.016, 0.0125], [0.0927, 0.0111, 0.0049, 0.0049, 0.0043, 0.0036, 0.0032, 0.0026], [0.6001, 0.0558, 0.0318, 0.017, 0.0133, 0.0133, 0.0097, 0.0086], [0.0051, 0.004, 0.0026, 0.0024, 0.002, 0.0018, 0.0017, 0.0015], [0.0049, 0.0034, 0.0034, 0.0026, 0.0019, 0.0016, 0.0013, 0.0012], [0.004, 0.0037, 0.0031, 0.0023, 0.0019, 0.0018, 0.0017, 0.0014], [0.0125, 0.0104, 0.0071, 0.0052, 0.0049, 0.0038, 0.0032, 0.0032], [0.0127, 0.012, 0.0112, 0.0077, 0.0073, 0.0047, 0.0041, 0.0039], [0.0197, 0.0144, 0.0144, 0.0105, 0.0099, 0.0099, 0.0087, 0.0068], [0.0231, 0.0204, 0.014, 0.0109, 0.0109, 0.0103, 0.0085, 0.0062], [0.0283, 0.0172, 0.0152, 0.0134, 0.0134, 0.0134, 0.0098, 0.0076], [0.0172, 0.0087, 0.0081, 0.0059, 0.0049, 0.0041, 0.0038, 0.0036], [0.0277, 0.0131, 0.0045, 0.0045, 0.0042, 0.0035, 0.0031, 0.0029], [0.0026, 0.0026, 0.0024, 0.0019, 0.0014, 0.0014, 0.0013, 0.0013], [0.0052, 0.0029, 0.0029, 0.0024, 0.0021, 0.002, 0.0018, 0.0017], [0.0043, 0.0035, 0.0031, 0.002, 0.002, 0.0019, 0.0018, 0.0017], [0.0088, 0.0082, 0.0057, 0.0053, 0.0044, 0.0034, 0.0032, 0.003], [0.0072, 0.0056, 0.0056, 0.0056, 0.0049, 0.0043, 0.0038, 0.0032], [0.0106, 0.0099, 0.006, 0.006, 0.0053, 0.005, 0.0041, 0.0041], [0.0219, 0.0206, 0.0171, 0.0117, 0.011, 0.0104, 0.0097, 0.0081], [0.0709, 0.0519, 0.0158, 0.0149, 0.014, 0.014, 0.0131, 0.0131], [0.0685, 0.0501, 0.0501, 0.0268, 0.0184, 0.0127, 0.0119, 0.0119], [0.1426, 0.0717, 0.0525, 0.0525, 0.0493, 0.0361, 0.0219, 0.0103], [0.0669, 0.0591, 0.049, 0.046, 0.0432, 0.0337, 0.018, 0.014], [0.0749, 0.0548, 0.0401, 0.0312, 0.0276, 0.0243, 0.0139, 0.013], [0.2269, 0.0692, 0.037, 0.0198, 0.0186, 0.0164, 0.0154, 0.0145], [0.2815, 0.0521, 0.0262, 0.014, 0.014, 0.0132, 0.0124, 0.0116], [0.3349, 0.0482, 0.0376, 0.0353, 0.0228, 0.013, 0.0122, 0.0115], [0.6027, 0.0527, 0.0319, 0.0234, 0.0171, 0.0125, 0.0104, 0.0092], [0.7228, 0.0263, 0.0218, 0.0181, 0.0071, 0.0067, 0.0067, 0.0055], [0.9112, 0.0312, 0.0115, 0.0065, 0.0048, 0.0042, 0.0035, 0.0024], [0.8975, 0.0225, 0.0198, 0.0106, 0.0053, 0.0042, 0.0039, 0.0034], [0.8827, 0.0342, 0.0162, 0.0098, 0.0059, 0.0046, 0.0036, 0.0034], [0.9047, 0.045, 0.0114, 0.0061, 0.0047, 0.0042, 0.0022, 0.002], [0.925, 0.0279, 0.0116, 0.0055, 0.004, 0.0028, 0.0016, 0.0014], [0.9035, 0.0273, 0.0146, 0.0069, 0.0054, 0.0024, 0.002, 0.0017], [0.9532, 0.0106, 0.005, 0.0027, 0.002, 0.0015, 0.0011, 0.001], [0.8959, 0.0128, 0.0073, 0.0057, 0.0041, 0.0039, 0.0037, 0.0024], [0.8277, 0.0183, 0.0161, 0.0152, 0.0049, 0.0046, 0.0046, 0.0043], [0.5624, 0.0491, 0.0434, 0.028, 0.016, 0.0141, 0.0132, 0.0124], [0.3133, 0.244, 0.0451, 0.0291, 0.0121, 0.0095, 0.0089, 0.0078], [0.101, 0.0948, 0.0395, 0.0349, 0.0289, 0.0175, 0.0165, 0.0145], [0.0427, 0.0293, 0.0243, 0.0178, 0.0167, 0.0157, 0.0122, 0.0095], [0.0752, 0.0664, 0.0403, 0.0229, 0.0216, 0.0202, 0.0179, 0.0168], [0.2061, 0.0712, 0.046, 0.0406, 0.0381, 0.0336, 0.0336, 0.0246], [0.2137, 0.1144, 0.0508, 0.0448, 0.0371, 0.0349, 0.024, 0.0225], [0.3065, 0.0775, 0.0684, 0.0604, 0.0268, 0.0252, 0.0236, 0.0184], [0.1125, 0.0993, 0.0682, 0.0389, 0.0343, 0.0322, 0.0251, 0.0236], [0.1527, 0.0721, 0.0637, 0.0386, 0.0363, 0.0341, 0.0301, 0.0282], [0.2784, 0.149, 0.0484, 0.0484, 0.0332, 0.0293, 0.0259, 0.0228], [0.2345, 0.2069, 0.0462, 0.0407, 0.036, 0.0317, 0.028, 0.0263], [0.6848, 0.1732, 0.0341, 0.0301, 0.0142, 0.0098, 0.0086, 0.0052], [0.6309, 0.1808, 0.0587, 0.0191, 0.0191, 0.0131, 0.0131, 0.009], [0.8676, 0.0159, 0.0159, 0.0132, 0.0109, 0.0091, 0.008, 0.0066], [0.8591, 0.0259, 0.0157, 0.0115, 0.0102, 0.0074, 0.0062, 0.0058]], "ranks": {"Kotlin": [208193, 175466, 146718, 22454, 32374, 79241, 142431, 219721, 228567, 233266, 227148, 168624, 131869, 168296, 203005, 157183, 137342, 109633, 188440, 225604, 228092, 169976, 200592, 230378, 218401, 154554, 139874, 166488, 96934, 87419, 76834, 117790, 131544, 62083, 39345, 22703, 14410, 14936, 13333, 13711, 17382, 13176, 7837, 9206, 14450, 21764, 16294, 15466, 10127, 6642, 6350, 225, 124, 93, 69, 1, 1, 2, 2, 1, 1, 1, 1]}}, {"pos": 404, "top": [[" *@", "@\"", " \u2013", " \\\"", " \\\"\"", "\\\"", " @\"", "\\\"\\"], [" *@", " \\\"\"", "\\\"\\", " \\\"", " @{", "\\\"\"", " '\\\"", "\\\"\","], [" \u2013", " \u2013,", " *@", " *\u2013", "@\"", " \u2013**", "\\\"\"", " @{"], [" \\\"\"", " *\u201e", " ``(", "``", " ``", "\\\"\\", " \\\"{", " \\\"$"], [" *@", " @{", " \\\"\"", " *\u201e", "\\\"\\", " *\"", " #{@", " @\""], [" *@", " \\\"\"", "\\\"\\", " *\u201e", " *\"", " @{", " *\u201c", " #{@"], [" \\\"\"", " *@", "``", " *\"", " *\u201e", "\\\"\"", "\\\"\\", "\\\\\""], [" \\\"\"", " *@", "\\\"\"", " *\u201e", " *\"", "``", "\\\"\\", "\\\\\""], ["\\\"\"", " *\"", " *@", " \\\"\"", " *\u201e", "\\\\\"", " `\"", "\\\"\\"], [" \\\"\"", "\\\"\"", "\\\\\"", "\\\"\\", " *\"", " \\\"$", " *@", " '\\''"], ["\\\"\"", " \\\"\"", "\\\\\"", " *\"", " \\\"", " *@", "\\\"\\", " \\\"$"], [" \\\"\"", " *\"", " ``", " *\u201e", "\\\"\"", " \\\"$", "\\\\\"", "-esque"], ["-esque", " \\\"\"", " *\u201e", " ``", " Kotlin", " \\\"", " *\"", " \\\"$"], ["-esque", " \\\"\"", " Kotlin", " *\"", "\\\\\"", "\\\"\"", " *\u201e", " '\\\""], ["-esque", " \\\"\"", "\\\\\"", " ``", " Kotlin", "\\\"\"", " \\\"", " *\""], ["-esque", " Kotlin", " kotlin", " \\\"\"", "\\\\\"", "\\<^", "&apos", " powerhouse"], ["-esque", " Kotlin", " kotlin", "\\<^", " powerhouse", "-ish", " folklore", "\\\\\""], ["-esque", " Kotlin", " kotlin", "\\\\\"", "{\\\"", " \\\"\"", "\\<^", "\\\"\""], ["-esque", " Kotlin", "\\<^", " \\\"\"", " kotlin", "\\\\\"", "\\\"\"", "&apos"], ["-esque", "\\<^", " \\\"\"", "&apos", " Kotlin", "\\\\\"", " \\<^", "\\\"\""], ["-esque", " \\\"\"", "\\\\\"", "&apos", "&#", " Kotlin", " &#", "<\\/"], [" ``", " Kotlin", "``", " kotlin", " ;;^", " ``(", " '\\\"", " \\\"\""], [" ``", "``", " Kotlin", " ''", " \\\"\"", "&apos", " ``(", "&quot"], [" ``", " ''", "``", "&apos", " Kotlin", "&quot", " &#", " \r\n \r\n"], [" \n\n", " \r\n\r\n", "\r\n\r\n", " \r\n \r\n", "\n\n", "   \n\n", " Kotlin", "\r\n\n"], [" Kotlin", " kotlin", " JVM", "otlin", "\\\"\"", " \\\"\"", "Java", " Java"], [" Kotlin", " kotlin", " JVM", " @{", " #{@", "otlin", " *@", " *__"], ["\n\n", " \n\n", "\r\n\r\n", " \r\n\r\n", " Kotlin", " ''", " \r\n \r\n", " @{"], [" Kotlin", " kotlin", "-esque", " \n\n", " JVM", "\\\"\"", "\\\\/", "\n \n"], [" Kotlin", " kotlin", " \n  \n", " \n\n", "\\\"\"", " \n \n", " toolkit", " \r\n \r\n"], [" \n\n", " Kotlin", " kotlin", " \n  \n", " \n        \n", "\n \n", " \n \n", " \n    \n"], [" \n\n", " \n  \n", " \n", " \r\n \r\n", " \n \n", " Kotlin", " ...", "\\u"], [" hybrid", " Kotlin", " tech", " seamlessly", " modular", " mega", " toolkit", "-esque"], [" kotlin", " Kotlin", " toolkit", "-centric", "-esque", " ecosystem", "otlin", " JVM"], [" kotlin", " \r\n \r\n", " Kotlin", " toolkit", "\u2026*", " JVM", "otlin", " \r\n\r\n"], [" kotlin", " Kotlin", " JVM", " toolkit", " ecosystem", "-native", "otlin", "\u2026*"], [" JVM", " Kotlin", " kotlin", "otlin", "-native", "-centric", "-heavy", " ecosystem"], [" Kotlin", " JVM", " kotlin", "otlin", " toolkit", " interoper", "-native", " ecosystem"], [" JVM", " Kotlin", " kotlin", "otlin", " toolkit", " interoper", " ecosystem", "-native"], [" JVM", " Kotlin", " kotlin", "Java", " Java", "otlin", "-native", "/java"], [" JVM", " Java", " Kotlin", "Java", "-native", "/java", " software", "otlin"], [" JVM", " Java", "Java", " Kotlin", "/java", "-native", " software", "-language"], [" JVM", " Java", " Kotlin", "Java", "-native", "/java", " software", "-java"], [" JVM", " Java", "-native", " Kotlin", "-language", " entirely", "/java", "Java"], [" JVM", " Java", "-native", " entirely", "-java", "/java", "-language", " Kotlin"], ["-native", " JVM", " Java", " entirely", "-heavy", "-based", "-only", "/java"], ["-native", "-only", " JVM", " entirely", "-centric", "-based", "-heavy", " Java"], ["-only", "-native", "-based", "-centric", " entirely", " entirety", "-heavy", " exclusively"], ["-native", "-only", "-based", "-centric", "-heavy", " entirely", " JVM", "-exclusive"], ["-native", "-only", "-based", "-centric", "-heavy", "-language", "-exclusive", "-powered"], ["-only", "-native", "-based", "-language", "-heavy", "-centric", "-exclusive", "-dominated"], ["-only", "-native", "-exclusive", "-centric", "-based", "-coded", "-heavy", "-dominated"], ["-only", "-native", "-based", "-exclusive", "-centric", "-heavy", "-dominated", "-powered"], ["-only", "-native", "-exclusive", "-centric", "-based", "-heavy", "-powered", "-coded"], ["-only", "-native", "-exclusive", "-coded", " JVM", "-centric", "-heavy", "-based"], ["-only", "-native", "-exclusive", " backend", " JVM", "-coded", "-based", "-centric"], ["-only", "-native", " JVM", "-centric", " backend", "-exclusive", "-coded", "/native"], ["-only", "-native", " JVM", "-render", "-exclusive", " backend", "-centric", "/native"], ["-only", "-native", " JVM", "-exclusive", "-written", "-stack", " backend", "-render"], ["-only", "-native", " JVM", " backend", " Native", "-written", " JNI", "-render"], ["-only", "-native", " JVM", " Native", " backend", " VM", " JNI", "-based"], ["-only", "-native", "-based", "-written", " JVM", " Native", " backend", "-render"], ["-only", "-native", "-based", "-heavy", "-written", "-render", " JVM", "-driven"]], "p": [[0.1936, 0.1819, 0.1709, 0.0231, 0.018, 0.014, 0.0124, 0.0109], [0.2359, 0.1621, 0.1621, 0.0983, 0.034, 0.03, 0.0282, 0.0265], [0.7476, 0.0449, 0.0396, 0.029, 0.0199, 0.0114, 0.0061, 0.0061], [0.1852, 0.0725, 0.0681, 0.064, 0.064, 0.0531, 0.0499, 0.0172], [0.7789, 0.0439, 0.0342, 0.0134, 0.0118, 0.0104, 0.0104, 0.0076], [0.4374, 0.0461, 0.0382, 0.0263, 0.0263, 0.0247, 0.0232, 0.0218], [0.1411, 0.1325, 0.117, 0.1099, 0.1099, 0.0856, 0.0519, 0.0357], [0.2384, 0.2104, 0.1126, 0.0877, 0.0727, 0.0366, 0.0366, 0.0344], [0.1806, 0.1806, 0.1806, 0.1406, 0.0966, 0.0853, 0.023, 0.0148], [0.2243, 0.2243, 0.1979, 0.0604, 0.05, 0.0344, 0.0162, 0.0119], [0.3965, 0.2122, 0.0885, 0.0781, 0.0393, 0.0369, 0.0325, 0.021], [0.151, 0.1176, 0.0861, 0.0713, 0.0522, 0.0433, 0.0407, 0.0359], [0.1035, 0.0806, 0.0757, 0.0628, 0.0554, 0.0489, 0.0431, 0.0278], [0.5468, 0.035, 0.0272, 0.0107, 0.01, 0.0078, 0.0069, 0.0039], [0.7127, 0.0276, 0.0229, 0.0102, 0.0074, 0.0048, 0.0033, 0.0027], [0.648, 0.05, 0.0056, 0.0049, 0.0023, 0.0022, 0.0022, 0.0018], [0.7313, 0.0364, 0.0076, 0.0015, 0.0013, 0.0013, 0.0012, 0.0009], [0.3875, 0.098, 0.0193, 0.0071, 0.0046, 0.0043, 0.0043, 0.0036], [0.371, 0.0502, 0.0163, 0.0163, 0.0127, 0.0087, 0.006, 0.0053], [0.2134, 0.0507, 0.0289, 0.0255, 0.0198, 0.0186, 0.0165, 0.0106], [0.0617, 0.0156, 0.0129, 0.0122, 0.0107, 0.0101, 0.0089, 0.0089], [0.1304, 0.0579, 0.0374, 0.02, 0.02, 0.0166, 0.0121, 0.0107], [0.7004, 0.1563, 0.0272, 0.0145, 0.0078, 0.0057, 0.0053, 0.0047], [0.2955, 0.0513, 0.0258, 0.0258, 0.0147, 0.0138, 0.0101, 0.0074], [0.3721, 0.1457, 0.1208, 0.0536, 0.0418, 0.0287, 0.0127, 0.0106], [0.7042, 0.1224, 0.0213, 0.0057, 0.0051, 0.0045, 0.0039, 0.0037], [0.5984, 0.1714, 0.0159, 0.0075, 0.0075, 0.0071, 0.0055, 0.0043], [0.5795, 0.3102, 0.0198, 0.0094, 0.0073, 0.0025, 0.002, 0.0018], [0.2894, 0.0779, 0.0223, 0.0223, 0.0197, 0.0119, 0.0112, 0.0105], [0.1772, 0.0694, 0.0395, 0.0349, 0.0328, 0.0308, 0.0255, 0.024], [0.131, 0.1231, 0.09, 0.0701, 0.0453, 0.0453, 0.0425, 0.0292], [0.1908, 0.1792, 0.0482, 0.0353, 0.0258, 0.0157, 0.013, 0.0115], [0.0162, 0.0152, 0.0135, 0.0119, 0.0112, 0.0112, 0.0105, 0.0105], [0.1591, 0.0851, 0.0456, 0.0158, 0.0158, 0.0139, 0.0131, 0.0131], [0.1224, 0.0655, 0.0397, 0.0166, 0.0129, 0.0121, 0.0114, 0.0114], [0.0863, 0.0761, 0.0557, 0.017, 0.017, 0.016, 0.016, 0.0141], [0.1143, 0.1074, 0.054, 0.0328, 0.0211, 0.0165, 0.0155, 0.0145], [0.2126, 0.1069, 0.0782, 0.027, 0.0198, 0.0154, 0.0145, 0.0106], [0.2204, 0.1612, 0.0523, 0.0298, 0.015, 0.0141, 0.0141, 0.0141], [0.2727, 0.1761, 0.0505, 0.0474, 0.0418, 0.0326, 0.0287, 0.0254], [0.2981, 0.1699, 0.0909, 0.0665, 0.0403, 0.0203, 0.0158, 0.0131], [0.3514, 0.3101, 0.0784, 0.0574, 0.0288, 0.0271, 0.012, 0.0094], [0.3375, 0.2628, 0.0665, 0.0551, 0.0518, 0.0314, 0.0158, 0.0158], [0.2259, 0.1552, 0.1552, 0.0392, 0.0325, 0.0238, 0.0224, 0.0144], [0.1868, 0.1754, 0.1455, 0.0368, 0.0269, 0.021, 0.0197, 0.0174], [0.1604, 0.1036, 0.0758, 0.0279, 0.0231, 0.0217, 0.0192, 0.0169], [0.3443, 0.0927, 0.0598, 0.0363, 0.0363, 0.0301, 0.0265, 0.0249], [0.2466, 0.1921, 0.1695, 0.055, 0.0486, 0.0378, 0.0179, 0.0158], [0.3331, 0.2939, 0.0544, 0.0451, 0.0227, 0.0177, 0.0177, 0.0166], [0.3719, 0.2255, 0.1207, 0.057, 0.0444, 0.0238, 0.0144, 0.0112], [0.8941, 0.0504, 0.0164, 0.0113, 0.0068, 0.0068, 0.002, 0.002], [0.5156, 0.455, 0.0074, 0.0065, 0.0024, 0.0019, 0.0014, 0.0013], [0.5067, 0.3946, 0.0252, 0.0223, 0.0196, 0.0072, 0.0064, 0.005], [0.6058, 0.3243, 0.0235, 0.0111, 0.0098, 0.0052, 0.0032, 0.0028], [0.5837, 0.3124, 0.0423, 0.0094, 0.0083, 0.005, 0.005, 0.0045], [0.8093, 0.1806, 0.002, 0.0018, 0.0016, 0.0007, 0.0005, 0.0003], [0.8156, 0.182, 0.0008, 0.0003, 0.0002, 0.0002, 0.0001, 0.0001], [0.7207, 0.2651, 0.0116, 0.0005, 0.0004, 0.0002, 0.0002, 0.0002], [0.9642, 0.02, 0.0138, 0.0004, 0.0003, 0.0002, 0.0002, 0.0001], [0.6837, 0.2515, 0.0386, 0.0036, 0.0032, 0.0016, 0.0012, 0.001], [0.5895, 0.2169, 0.1161, 0.0178, 0.0108, 0.0065, 0.0031, 0.0031], [0.7142, 0.2319, 0.0079, 0.0048, 0.0042, 0.0033, 0.0019, 0.0018], [0.5472, 0.2929, 0.029, 0.0137, 0.0094, 0.0088, 0.0057, 0.0047]], "ranks": {"Kotlin": [232, 185, 281, 39, 51, 12, 27, 44, 38, 10, 20, 12, 5, 3, 5, 2, 2, 2, 2, 5, 6, 2, 3, 5, 7, 1, 1, 5, 1, 1, 2, 6, 2, 1, 1, 1, 2, 1, 2, 2, 3, 4, 3, 4, 8, 14, 27, 68, 64, 80, 55, 67, 46, 37, 13, 12, 13, 11, 9, 13, 17, 63, 120]}}, {"pos": 405, "top": [[" \u2013", "i", "\u2013", "y", "o", "s", "e", "\","], [" \u2013", " \u2013**", "  \r\n", "@\",", "**\u2013", "@[", " @[", " \u2013,"], [" \u2013", "\u2013", "**\u2013", " \u2013,", "\u2013and", " \u2013**", ".\u2013", "@\","], [" Blowjob", " milfs", "\uff0a\uff0a\uff0a\uff0a", "ihi", " Strec", " cumshot", "ieli", "ielen"], [" @_", " *@", " (@", " @(", " @$", "\uff20", " @[", ".@"], [" @_", "ihi", " @(", " @[", " (@", ".@", " #{@", " (${"], [" @_", " #@", " $($", " [$", " *@", " #$", " @[", " @$"], [" @_", " *@", " @[", " #@", " #{@", "s", "   \r\n", "@\\"], [" *@", " #{@", " #@", " <?=", " @_", " @[", " [$", " [@"], [" \r\n", " #{@", " @_", "@\\", "   \r\n", "    \r\n", " #$", " {{$"], [" @_", " @[", " \r\n", " #{@", " #@", "@\\", " \\@", " [@"], ["yip", "    \r\n", " &_", " %+", " #{@", "ioca", "    \r\n    \r\n", " <?="], [" safezone", "yip", " pornstar", " stash", "ykk", " upfront", " Blowjob", "yton"], [" stash", "yip", " reboot", " standalone", "-ish", " upfront", "iaya", " pornstar"], [" reboot", " showcase", " standalone", " stash", " upfront", " tweaks", " tech", " standout"], [" reboot", " upfront", " stash", " showcase", " standalone", " tweaks", " standout", " transitioning"], [" stash", " reboot", " showcase", " upfront", " tech", " standalone", " DIY", " startup"], [" stash", " upfront", " showcase", " reboot", " tech", "-ish", " startup", " standalone"], [" stash", " upfront", " %+", "-ish", " reboot", " tweaks", " showcase", " tech"], [" %+", " stash", " upfront", " showcase", " @_", " ...\\", " tech", "-ish"], [" ...\\", "\r\n\r\n", " \r\n\r\n", " %+", " @_", "  \r\n\r\n", " <:", " --"], [" Blowjob", "iaya", " pornstar", " Palav", " Geile", " %+", " upfront", " ;;^"], [" %+", " upfront", " +:+", " showcase", " stash", "iaya", " reboot", " -->"], [" --", " %+", " fully", " ...", " exclusively", " approach", " pursuit", " resource"], [" ...\\", "\r\n\r\n", " ____", " %+", " ...", " @_", " _", " ___"], [" ...\\", " ___", " ____", " toolkit", " tech", " %+", " @_", " upfront"], [" @_", " toolkit", " tech", " software", " ___", " workspace", " ...\\", " %+"], [" ___", " ____", " ...", " _", " ...\\", " @_", " --", " tech"], [" tech", " toolkit", " hardware", " software", " infrastructure", " ____", " tools", " ???"], [" tech", " toolkit", " ...", " infrastructure", " software", " ecosystem", " architecture", " technology"], [" tech", " ...", " technology", " ???", " toolkit", " architecture", " software", " ecosystem"], [" tech", " ...", " technology", " strategy", " hybrid", " system", " hardware", " legacy"], [" .", " -", " ...", " technology", " ?", " tech", " strategy", " ONLY"], [" tech", " technology", " ONLY", " hybrid", " system", " software", " strategy", " ecosystem"], [" tech", " hybrid", " ecosystem", " exclusively", " hardware", " ONLY", " strategy", " software"], [" exclusively", " tech", " hybrid", " ONLY", " software", " hardware", " ecosystem", " system"], [" exclusively", " tech", " hybrid", " software", " ONLY", " hardware", " technology", "-only"], [" exclusively", " hybrid", " tech", " software", " implementation", " ONLY", " hardware", " strategy"], [" tech", " software", " exclusively", " hybrid", " implementation", " hardware", " ecosystem", " strategy"], [" tech", " software", " exclusively", " hybrid", " ecosystem", " hardware", " implementation", " technology"], [" software", " tech", " technology", " hardware", " exclusively", " programming", " implementation", " architecture"], [" software", " tech", " technology", " programming", " hardware", " architecture", " exclusively", " implementation"], [" exclusively", " software", " hardware", " entirely", " technology", " architecture", " programming", " tech"], [" exclusively", " entirely", " software", " architecture", "-only", " ecosystem", " technology", " tech"], [" exclusively", " entirely", " ecosystem", " software", "-only", " architecture", " technology", " implementation"], [" exclusively", "-only", " ecosystem", " architecture", " software", " technology", " entirely", " system"], [" exclusively", "-only", " ecosystem", " ONLY", " entirely", " restriction", " restricted", " architecture"], [" ecosystem", " toolkit", " architecture", " restriction", " everything", " restricted", " infrastructure", " restrictions"], [" restriction", " ecosystem", " toolkit", " restricted", " restrictions", " constraints", " mandate", " framework"], [" toolkit", " ecosystem", " restriction", " mandate", " tech", " workflow", " infrastructure", " constraints"], [" ecosystem", " toolkit", " constraints", " backend", " workflow", " constraint", " mandate", " restriction"], [" toolkit", " ecosystem", " backend", " frontend", " software", " workflow", " implementation", " framework"], [" toolkit", " ecosystem", " backend", " constraint", " bespoke", " framework", " architecture", " pipeline"], [" backend", " constraint", " ecosystem", " toolkit", " architecture", " constraints", " pipeline", " mandate"], [" constraint", " backend", " constraints", " ecosystem", " pipeline", " restriction", " toolkit", " workflow"], [" backend", " constraint", " constraints", " pipeline", " ecosystem", " frontend", " restriction", " Constraint"], [" backend", " constraint", " pipeline", " constraints", " ecosystem", " frontend", " plugin", " stack"], [" constraint", " backend", " ecosystem", " stack", " pipeline", " constraints", " frontend", " restriction"], [" stack", "\u6808", " Stack", "-stack", "stack", " stacks", "_stack", "Stack"], [" stack", " Stack", "\u6808", "stack", "-stack", " stacks", " constraint", "_stack"], [" stack", " constraint", " Stack", " plugin", "-stack", "\u6808", "stack", " pipeline"], [" stack", " constraint", " Stack", "-stack", " plugin", "\u6808", "stack", " stacks"], [" stack", " constraint", " plugin", " backend", " pipeline", " ecosystem", " architecture", " code"]], "p": [[0.8591, 0.0549, 0.0229, 0.0095, 0.004, 0.004, 0.0027, 0.0021], [0.4279, 0.1784, 0.033, 0.0177, 0.0146, 0.0138, 0.0138, 0.0107], [0.7627, 0.1928, 0.0085, 0.0066, 0.0062, 0.0051, 0.0038, 0.0017], [0.0196, 0.0119, 0.0087, 0.0056, 0.0053, 0.005, 0.0044, 0.0044], [0.4435, 0.0771, 0.0498, 0.0387, 0.0364, 0.0302, 0.0283, 0.0207], [0.0831, 0.0474, 0.0088, 0.0077, 0.0073, 0.0064, 0.0057, 0.0047], [0.0382, 0.0192, 0.014, 0.0109, 0.0103, 0.0103, 0.0091, 0.0091], [0.0581, 0.0546, 0.0331, 0.0331, 0.0331, 0.0107, 0.0095, 0.0095], [0.0634, 0.0264, 0.0264, 0.0182, 0.0182, 0.016, 0.0103, 0.0091], [0.0407, 0.017, 0.0132, 0.0124, 0.0124, 0.0109, 0.0091, 0.008], [0.0623, 0.0585, 0.0428, 0.0355, 0.0276, 0.026, 0.0202, 0.0179], [0.0109, 0.0085, 0.0059, 0.0059, 0.0052, 0.0052, 0.0049, 0.0046], [0.0066, 0.0058, 0.0042, 0.0035, 0.0035, 0.0033, 0.0033, 0.0029], [0.0099, 0.0072, 0.0064, 0.0047, 0.0044, 0.0044, 0.0041, 0.0041], [0.0115, 0.0089, 0.0084, 0.0079, 0.0061, 0.0048, 0.0042, 0.0037], [0.0223, 0.0119, 0.0099, 0.0093, 0.0068, 0.006, 0.0047, 0.0039], [0.0168, 0.0139, 0.0123, 0.0115, 0.0102, 0.0084, 0.0079, 0.0066], [0.0123, 0.0116, 0.009, 0.0085, 0.0075, 0.0062, 0.0062, 0.0058], [0.0143, 0.0081, 0.0072, 0.0072, 0.0056, 0.0043, 0.0041, 0.0038], [0.0287, 0.0099, 0.0093, 0.0088, 0.0064, 0.006, 0.0057, 0.005], [0.0747, 0.0482, 0.0353, 0.0275, 0.0201, 0.0101, 0.0069, 0.0069], [0.0055, 0.0038, 0.0034, 0.003, 0.0028, 0.0026, 0.0025, 0.0025], [0.0189, 0.0089, 0.0033, 0.0029, 0.0027, 0.0027, 0.0026, 0.0021], [0.0179, 0.0084, 0.0079, 0.0062, 0.0058, 0.0054, 0.0048, 0.0042], [0.1496, 0.0624, 0.0277, 0.0216, 0.0202, 0.0179, 0.0168, 0.0158], [0.0364, 0.025, 0.0195, 0.0143, 0.0126, 0.0104, 0.0098, 0.0081], [0.0233, 0.0182, 0.0171, 0.0151, 0.0141, 0.0117, 0.0097, 0.0081], [0.1226, 0.0743, 0.0616, 0.048, 0.0291, 0.0257, 0.0188, 0.0188], [0.0406, 0.0124, 0.0124, 0.0124, 0.0096, 0.0091, 0.0085, 0.0075], [0.0248, 0.0206, 0.016, 0.0125, 0.011, 0.011, 0.0103, 0.0103], [0.0202, 0.0158, 0.0158, 0.0148, 0.0131, 0.0131, 0.0115, 0.0102], [0.0251, 0.0222, 0.0196, 0.0111, 0.0111, 0.0098, 0.0077, 0.0077], [0.0303, 0.0236, 0.0162, 0.0143, 0.0134, 0.0126, 0.0126, 0.0119], [0.0545, 0.0188, 0.0156, 0.0138, 0.0129, 0.0122, 0.0107, 0.0107], [0.06, 0.0439, 0.0207, 0.0172, 0.0172, 0.0161, 0.0142, 0.0126], [0.0911, 0.0553, 0.0553, 0.0335, 0.0203, 0.0131, 0.0123, 0.0102], [0.1747, 0.0684, 0.0533, 0.0285, 0.0173, 0.0143, 0.0119, 0.0112], [0.0842, 0.0656, 0.0616, 0.0291, 0.02, 0.0166, 0.0137, 0.0114], [0.0677, 0.0495, 0.0495, 0.0465, 0.0362, 0.0249, 0.0234, 0.0194], [0.0897, 0.0579, 0.0398, 0.0374, 0.0257, 0.0241, 0.0227, 0.0227], [0.1791, 0.1581, 0.0513, 0.0375, 0.0275, 0.0275, 0.0228, 0.0177], [0.233, 0.0756, 0.052, 0.0357, 0.0315, 0.0296, 0.0278, 0.0278], [0.1993, 0.1552, 0.0306, 0.0287, 0.0287, 0.0287, 0.027, 0.0238], [0.3987, 0.0651, 0.042, 0.0175, 0.0165, 0.0155, 0.0155, 0.0145], [0.2825, 0.0592, 0.0317, 0.028, 0.028, 0.0263, 0.015, 0.015], [0.1294, 0.0371, 0.0348, 0.0307, 0.0186, 0.0165, 0.0165, 0.0155], [0.2263, 0.0648, 0.0238, 0.0198, 0.0198, 0.0186, 0.0174, 0.0174], [0.049, 0.0317, 0.0279, 0.0232, 0.0232, 0.0204, 0.0192, 0.0169], [0.077, 0.0724, 0.0639, 0.0439, 0.0321, 0.025, 0.0221, 0.0172], [0.0653, 0.0653, 0.0226, 0.0212, 0.0155, 0.0155, 0.0146, 0.0129], [0.1214, 0.1007, 0.0307, 0.0239, 0.0225, 0.0211, 0.0186, 0.0106], [0.1969, 0.1534, 0.1272, 0.0162, 0.0162, 0.0143, 0.0118, 0.0111], [0.3312, 0.2009, 0.1075, 0.0137, 0.0113, 0.0106, 0.0106, 0.01], [0.2447, 0.1906, 0.1156, 0.1156, 0.0258, 0.0242, 0.013, 0.0114], [0.4422, 0.3039, 0.0363, 0.032, 0.0283, 0.0283, 0.022, 0.0194], [0.4063, 0.4063, 0.026, 0.026, 0.0229, 0.0202, 0.0139, 0.0066], [0.4092, 0.3187, 0.0489, 0.0296, 0.0296, 0.0296, 0.018, 0.0124], [0.2994, 0.2994, 0.1414, 0.0972, 0.0316, 0.0316, 0.0169, 0.0116], [0.9968, 0.0012, 0.0007, 0.0005, 0.0004, 0.0002, 0.0002, 0.0001], [0.9969, 0.0009, 0.0007, 0.0004, 0.0004, 0.0003, 0.0002, 0.0001], [0.9942, 0.0017, 0.0013, 0.0009, 0.0004, 0.0004, 0.0003, 0.0001], [0.9929, 0.0032, 0.0015, 0.0007, 0.0005, 0.0003, 0.0002, 0.0002], [0.5543, 0.2311, 0.1588, 0.0122, 0.0079, 0.0031, 0.0023, 0.0019]], "ranks": {"Kotlin": [168942, 91590, 54242, 4721, 4508, 3242, 3500, 6071, 10662, 24264, 22639, 8595, 5108, 10008, 18690, 7396, 6089, 5075, 6002, 30039, 32195, 4818, 6083, 20703, 5237, 1116, 1111, 3556, 3238, 3512, 3654, 7799, 15637, 6888, 7753, 5672, 5025, 3875, 4005, 1918, 2203, 1476, 1308, 2044, 3184, 5878, 8875, 6813, 5682, 4736, 3190, 859, 641, 315, 324, 230, 186, 183, 242, 570, 223, 221, 194]}}, {"pos": 406, "top": [[",", "er", ".", " ", "y", "-", "d", "o"], ["er", "sville", "ment", "al", "ness", "ter", "es", "ler"], [",", " \u2013", "\u2013", "\u2013and", "er", ".", "ter", "es"], ["\u52a0\u62ff\u5927", "aroo", " pupper", " Blowjob", "ielen", " **:", "buster", " YYS"], ["ingly", "ar", "ed", "ers", "es", "er", " '@", "load"], ["ingly", " **:", "ed", "ar", "load", "aroo", "elib", "ings"], ["ingly", "mates", "ings", "ers", "ed", "mate", "es", "ter"], ["ingly", "mate", "ings", "aroo", "ter", "mates", "ster", "edly"], ["ingly", "mate", "aroo", "ure", "ings", "buster", "ter", "antly"], ["ingly", "mate", "edly", "mates", "k\u00e5r", " util", "ively", "\u7f14\u9020"], ["mate", " util", "mates", "ingly", " mould", "er", "ter", "es"], [" initialised", " organisation", " mould", " fibre", " utilisation", " util", "mate", " initialise"], [" initialised", " organisation", " utilisation", "\u52a0\u62ff\u5927", " mould", " initialise", " fibre", " util"], [" initialised", " reliant", " util", " utilisation", " entirety", " organisation", " revamped", " initialise"], [" util", " initialised", " entirety", " revamped", " reliant", " tailored", " utilisation", " akin"], [" reliant", "\u56ca\u62ec", " arguably", " bespoke", " entirety", " myriad", " bolster", " util"], [" reliant", " myriad", " util", " akin", " entirety", " massively", " revamped", " hugely"], [" reliant", " hugely", " revamped", " entirety", " initialised", "\u56ca\u62ec", " overarching", " myriad"], [" hugely", " revamped", " reliant", " myriad", " overarching", " akin", " arguably", " sprawling"], [" hugely", " myriad", " arguably", " revamped", " --", " sprawling", " akin", " largely"], [" myriad", " hugely", " --", " arguably", " largely", " swiftly", " burgeoning", " revamped"], [" hugely", " myriad", " revamped", " reliant", " arguably", " atop", " ;;^", " foundational"], [" --", " hugely", " myriad", " arguably", " revamped", " foundational", " overwhelmingly", " atop"], [" --", " myriad", " largely", " hugely", " ultimately", " arguably", " notably", " broadly"], [" --", " hugely", " myriad", " arguably", " foundational", " broadly", " \r\n\r\n", " overwhelmingly"], [" **", " foundational", " hugely", " **:", " __", " arguably", " seamlessly", " --"], [" **", " foundational", " hugely", " __", " --", " arguably", " leveraging", " seamlessly"], [" --", " **", " arguably", " hugely", " __", " heavily", " _", " ultimately"], [" arguably", " heavily", " hugely", " --", " ultimately", " \u2014", " myriad", " tech"], [" \u2014", " heavily", " arguably", " ultimately", " largely", " hugely", " **", " tech"], [" **", " heavily", " arguably", " fundamentally", " tech", " largely", " ultimately", " seamlessly"], [" heavily", " ultimately", " arguably", " largely", " \u2014", " hugely", " fundamentally", " fully"], [" heavily", " arguably", " fundamentally", " deeply", " massively", " hugely", " incredibly", " overwhelmingly"], [" heavily", " fundamentally", " arguably", " massively", " deeply", " incredibly", " hugely", " overwhelmingly"], [" arguably", " heavily", " notoriously", " massively", " fundamentally", " deeply", " hugely", " incredibly"], [" notoriously", " heavily", " arguably", " incredibly", " massively", " deeply", " overwhelmingly", " aggressively"], [" notoriously", " incredibly", " heavily", " massively", " aggressively", " overwhelmingly", " relentlessly", " unlikely"], [" notoriously", " incredibly", " heavily", " massively", " aggressively", " unlikely", " overwhelmingly", " fundamentally"], [" notoriously", " incredibly", " impossible", " heavily", " massively", " aggressively", " relentlessly", " unlikely"], [" notoriously", " incredibly", " impossible", " heavily", " massively", " aggressively", " relentlessly", " challenging"], [" notoriously", " incredibly", " heavily", " massively", " impossible", " challenging", " aggressively", " relentlessly"], [" notoriously", " heavily", " aggressively", " incredibly", " massively", " impossible", " challenging", " relentlessly"], [" notoriously", " aggressively", " incredibly", " heavily", " impossible", " challenging", " massively", " relentlessly"], [" notoriously", " incredibly", " heavily", " impossible", " aggressively", " massively", " challenging", " challenges"], [" impossible", " notoriously", " heavily", " incredibly", " aggressively", " purely", " massively", " challenging"], [" impossible", " purely", " notoriously", " heavily", " incredibly", " aggressively", " entirely", " massively"], [" impossible", " purely", " heavily", " notoriously", " requires", " incredibly", " fundamentally", " essentially"], [" impossible", " requires", " heavily", " fundamentally", " essentially", " purely", " inherently", " isn"], [" requires", " impossible", " fundamentally", " heavily", " without", "\u662f\u4e0d\u53ef\u80fd\u7684", " purely", " essentially"], [" requires", " means", " isn", " implies", " involves", " fundamentally", " impossible", " relies"], [" requires", "\u610f\u5473\u7740", " implies", "\u662f\u4e0d\u53ef\u80fd\u7684", " involves", " means", " impossible", "requires"], [" requires", "\u2014with", "\u610f\u5473\u7740", " involves", " implies", "\u662f\u4e0d\u53ef\u80fd\u7684", " requiring", "\u2014including"], [" requires", "\u610f\u5473\u7740", " implies", " involves", "\u2014including", " ignores", " means", " requiring"], ["\u610f\u5473\u7740", " requires", " involves", " implies", " means", "\u2014including", " ignores", " involving"], [" requires", " implies", "\u610f\u5473\u7740", " requiring", " involves", " implying", " means", " forcing"], ["\u610f\u5473\u7740", " means", " implies", "\u610f\u5473\u8457", " requires", "means", "Means", " Means"], ["\u610f\u5473\u7740", " means", " implies", "\u610f\u5473\u8457", " requires", "means", " involves", "Means"], ["\u610f\u5473\u7740", " means", " implies", " requires", " implying", " involving", "means", " requiring"], [" means", "\u610f\u5473\u7740", " implies", " requires", " involves", " involving", " implying", "impl"], [" means", " implies", "\u610f\u5473\u7740", " involving", " requires", " is", " involves", " implying"], [" means", " implies", "\u610f\u5473\u7740", " is", " requires", " involves", " involving", " isn"], [" implies", " means", " is", " requires", ",", " involves", " isn", "\u610f\u5473\u7740"], [",", " implies", " is", " means", " requires", " involving", " forces", " pushes"]], "p": [[0.1988, 0.1868, 0.0779, 0.0444, 0.0253, 0.0253, 0.0099, 0.0072], [0.0765, 0.0464, 0.0339, 0.0182, 0.0182, 0.0142, 0.0097, 0.0086], [0.2508, 0.2213, 0.0867, 0.0385, 0.0193, 0.0182, 0.0059, 0.0043], [0.0202, 0.0074, 0.0051, 0.004, 0.0031, 0.0031, 0.0031, 0.0023], [0.1441, 0.053, 0.0439, 0.0183, 0.0111, 0.0072, 0.0059, 0.0056], [0.0621, 0.0147, 0.013, 0.0108, 0.0095, 0.0051, 0.0045, 0.0045], [0.034, 0.0265, 0.0219, 0.0133, 0.0125, 0.0097, 0.0097, 0.0091], [0.0737, 0.0371, 0.0289, 0.0164, 0.0145, 0.012, 0.0113, 0.0094], [0.0305, 0.0287, 0.0174, 0.0127, 0.0119, 0.0087, 0.0072, 0.0064], [0.0136, 0.0094, 0.0039, 0.0039, 0.0039, 0.0039, 0.0037, 0.0037], [0.0258, 0.0177, 0.0138, 0.0107, 0.0101, 0.0089, 0.0065, 0.0061], [0.0158, 0.0149, 0.014, 0.0123, 0.0123, 0.009, 0.0085, 0.0085], [0.0165, 0.0155, 0.0121, 0.01, 0.0083, 0.0073, 0.0073, 0.0057], [0.0206, 0.0142, 0.0118, 0.011, 0.011, 0.0097, 0.0086, 0.0059], [0.0305, 0.0197, 0.0135, 0.0127, 0.0127, 0.0072, 0.0068, 0.0064], [0.0112, 0.0105, 0.0105, 0.0099, 0.0093, 0.0093, 0.0087, 0.0072], [0.0204, 0.0169, 0.0149, 0.0132, 0.0124, 0.0096, 0.0096, 0.009], [0.0165, 0.0094, 0.0094, 0.0078, 0.0078, 0.0069, 0.0065, 0.0054], [0.0317, 0.0263, 0.0205, 0.0192, 0.0103, 0.0097, 0.0097, 0.0091], [0.0647, 0.0536, 0.0174, 0.0164, 0.0154, 0.012, 0.0099, 0.0099], [0.0974, 0.0591, 0.0358, 0.0217, 0.0204, 0.0159, 0.0116, 0.0109], [0.0132, 0.0058, 0.0055, 0.0046, 0.0046, 0.0046, 0.0046, 0.0043], [0.0987, 0.0283, 0.025, 0.0171, 0.0104, 0.0104, 0.0092, 0.0092], [0.1678, 0.0481, 0.0352, 0.031, 0.0292, 0.0257, 0.0188, 0.0166], [0.139, 0.0579, 0.0424, 0.031, 0.0274, 0.0188, 0.0129, 0.0121], [0.1278, 0.047, 0.039, 0.0285, 0.0222, 0.0184, 0.0153, 0.0153], [0.0722, 0.0496, 0.0363, 0.032, 0.0234, 0.0207, 0.0172, 0.0142], [0.0836, 0.0693, 0.0447, 0.042, 0.0327, 0.0289, 0.0271, 0.0187], [0.0422, 0.0422, 0.0328, 0.0272, 0.0256, 0.024, 0.0226, 0.0187], [0.0497, 0.0438, 0.0363, 0.0321, 0.0183, 0.0183, 0.0161, 0.0151], [0.1231, 0.0513, 0.0228, 0.0214, 0.0177, 0.0167, 0.0167, 0.0138], [0.0771, 0.0321, 0.0266, 0.0221, 0.0172, 0.0162, 0.0152, 0.0126], [0.0785, 0.0447, 0.0307, 0.0239, 0.0239, 0.0225, 0.0225, 0.0198], [0.0717, 0.0674, 0.0559, 0.0435, 0.0339, 0.0281, 0.0264, 0.017], [0.0815, 0.0526, 0.0494, 0.0436, 0.0436, 0.034, 0.0319, 0.0282], [0.1079, 0.084, 0.0543, 0.051, 0.035, 0.0309, 0.029, 0.0273], [0.1402, 0.0585, 0.0585, 0.0485, 0.0455, 0.0294, 0.0259, 0.0244], [0.1163, 0.0799, 0.0585, 0.0428, 0.0333, 0.0294, 0.0244, 0.0244], [0.1267, 0.0769, 0.0496, 0.0363, 0.0341, 0.0266, 0.0266, 0.0207], [0.1043, 0.0633, 0.0463, 0.0435, 0.0408, 0.0281, 0.0264, 0.0248], [0.0724, 0.0724, 0.0681, 0.0639, 0.0284, 0.025, 0.0235, 0.0221], [0.08, 0.055, 0.0402, 0.0378, 0.0333, 0.0313, 0.0276, 0.0229], [0.0706, 0.0428, 0.0402, 0.0378, 0.0355, 0.0294, 0.0276, 0.0202], [0.0824, 0.0532, 0.05, 0.0366, 0.0285, 0.0267, 0.0251, 0.0173], [0.0782, 0.0572, 0.0419, 0.0347, 0.021, 0.021, 0.0198, 0.0198], [0.0759, 0.0629, 0.049, 0.046, 0.0337, 0.018, 0.0169, 0.0169], [0.1048, 0.0561, 0.041, 0.032, 0.0265, 0.0234, 0.022, 0.0182], [0.1447, 0.0824, 0.0683, 0.05, 0.0323, 0.0303, 0.0162, 0.0162], [0.1555, 0.1138, 0.0609, 0.0347, 0.0326, 0.021, 0.0164, 0.0164], [0.3576, 0.0333, 0.0313, 0.0313, 0.0259, 0.0215, 0.0202, 0.0178], [0.4984, 0.0718, 0.0464, 0.0435, 0.0281, 0.0248, 0.0182, 0.0117], [0.5657, 0.056, 0.0464, 0.0249, 0.0234, 0.0219, 0.0219, 0.0182], [0.5188, 0.0796, 0.0547, 0.0547, 0.0547, 0.0243, 0.0228, 0.0122], [0.277, 0.2445, 0.1019, 0.0618, 0.0618, 0.0375, 0.0214, 0.0189], [0.3984, 0.3516, 0.0889, 0.0371, 0.0289, 0.0136, 0.0106, 0.0053], [0.6975, 0.2908, 0.0032, 0.0013, 0.0012, 0.0009, 0.0007, 0.0006], [0.7737, 0.1726, 0.0385, 0.0025, 0.0025, 0.0013, 0.001, 0.0009], [0.5488, 0.3328, 0.0842, 0.0047, 0.0042, 0.0033, 0.0022, 0.002], [0.3618, 0.3193, 0.2486, 0.014, 0.0066, 0.0058, 0.0058, 0.0048], [0.6254, 0.2031, 0.0959, 0.0095, 0.0095, 0.0061, 0.0054, 0.0042], [0.4561, 0.3552, 0.0374, 0.0292, 0.0257, 0.0084, 0.0084, 0.0054], [0.3893, 0.3435, 0.0984, 0.041, 0.0206, 0.0171, 0.0086, 0.0063], [0.8513, 0.0424, 0.0291, 0.0257, 0.0074, 0.0051, 0.0045, 0.0039]], "ranks": {"Kotlin": [31996, 46840, 15858, 2798, 7779, 8601, 13146, 44730, 31963, 98434, 69902, 42100, 36428, 38100, 79040, 56816, 51133, 60919, 45705, 113667, 155231, 44131, 60315, 93308, 38784, 7250, 8997, 23437, 18412, 22579, 15875, 39614, 38363, 17352, 48956, 32802, 47994, 35896, 36222, 35814, 51668, 58378, 32979, 25850, 30137, 64327, 50524, 44155, 70011, 76911, 93684, 60100, 57710, 43589, 34541, 12498, 7399, 4435, 4866, 3814, 2015, 548, 401]}}, {"pos": 407, "top": [[",", ".", "\u2013", ";", " \u2013", "\u00a0", ",.", "\u00a0\u00a0"], [",", "\u2013", ".", " \u2013", "\u2013and", ";", ".\u2013", ".["], [",", "\u2013", ".", " \u2013", "\u2013and", ";", "\u2026", ".\u2013"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " milfs", "-------------</", "----------</", " ;;^", " Blowjob", "\uff3f\uff3f", "enzi"], [",", ".", ".@", ",@", "ingly", ".\u201c", ":@", "@"], [",", ".", "\u00a0\u00a0", ";", "\u2026.", "\u00a0", "!", ":"], ["\uff0c", "\uff01", "\uff0e", "\u2014\u2014", "\u3002", "\uff08", ".\u2019", "."], [",", ".", " nicely", "-ish", " surprisingly", "   \n", "much", "ly"], [",", ".", "\u00a0", ";", ".\u201c", ".\u201d", "!", ":"], [",", "\u2013", ";", "\u2013and", "\u00a0", " \u00ad", " though", "\u00ad"], [",", "\u00a0", " though", "\u2013", ";", " albeit", "...", " \u00ad"], [" pricey", " arguably", " albeit", " oddly", " incredibly", " barely", " uncomfort", " outright"], [" pricey", " arguably", " incredibly", " sprawling", " oddly", " albeit", " outright", " uncomfort"], [" pricey", " incredibly", " arguably", " sprawling", " albeit", " tweaked", " tweaking", " effortlessly"], [" arguably", " though", " truly", " albeit", " incredibly", " effortlessly", " barely", " genuinely"], [" incredibly", " arguably", " sprawling", " effortlessly", " albeit", " plenty", " though", " truly"], [" incredibly", " arguably", " effortlessly", " albeit", " though", " hugely", " plenty", " utterly"], [" hugely", " arguably", " utterly", " incredibly", " effortlessly", " hefty", "\u5373\u4fbf", " pricey"], [" incredibly", " arguably", " hugely", " utterly", "\u5373\u4fbf", " effortlessly", " pricey", " hefty"], ["\u5373\u4fbf", " utterly", " hugely", " arguably", " incredibly", " effortlessly", " albeit", " swiftly"], ["<|endoftext|>", "\u5373\u4fbf", " swiftly", " though", " utterly", " hugely", " arguably", " vastly"], ["\u5373\u4fbf", " utterly", " arguably", " hugely", "\u5373\u4fbf\u662f", " effortlessly", " swiftly", "\u54ea\u6015"], [" swiftly", " arguably", "\u5373\u4fbf", " albeit", " utterly", " merely", " hugely", " effortlessly"], [" swiftly", " merely", " whilst", " arguably", " albeit", " utterly", " barely", " though"], ["\u5373\u4fbf", "Whilst", " utterly", " whilst", " hugely", " arguably", " though", " swiftly"], ["\u5373\u4fbf", " hugely", " utterly", " vastly", " arguably", "Whilst", " incredibly", " exceedingly"], [" arguably", " vastly", " utterly", " hugely", "\u5373\u4fbf", " barely", " incredibly", " exceedingly"], [" arguably", " vastly", " hugely", " barely", " utterly", " incredibly", " genuinely", " albeit"], [" arguably", " incredibly", " vastly", " barely", " utterly", " hugely", " genuinely", " truly"], [" arguably", " incredibly", " even", " barely", " vastly", " truly", " genuinely", " massively"], [" even", " incredibly", " arguably", " barely", " truly", " extremely", " just", " only"], [" even", " only", " incredibly", " just", " extremely", " arguably", " barely", " truly"], [" even", " arguably", " incredibly", " extremely", " barely", " only", " just", " truly"], [" arguably", " incredibly", " extremely", " massively", " even", " barely", " meticulously", " relentlessly"], [" arguably", " incredibly", " massively", " relentlessly", " meticulously", " vastly", " relentless", " notoriously"], [" arguably", " relentlessly", " massively", " relentless", " without", " incredibly", " notoriously", " meticulously"], [" massively", " relentlessly", " arguably", " notoriously", " relentless", " meticulously", " incredibly", " demanding"], [" massively", " demanding", " relentlessly", " without", " meticulously", " arguably", " seamlessly", " incredibly"], [" massively", " demanding", " simultaneously", " complex", " relentlessly", " meticulously", " requiring", " seamlessly"], [" complex", " massively", " demanding", " cheap", " requiring", " incredibly", " seamlessly", " simultaneously"], [" complex", " massively", " demanding", " hardware", " combined", " cheap", " without", " requiring"], [" complex", " demanding", " simultaneously", " massively", " hardware", " budget", " simultaneous", " budgets"], [" complex", " budgets", " simultaneously", " budget", " outsourcing", " demanding", " hardware", " simultaneous"], [" complex", " simultaneously", " outsourcing", " massively", " budgets", " cheap", " budget", " seamlessly"], [" complex", " simultaneously", " simultaneous", " combined", " budgets", " concurrently", " requiring", " integrated"], [" simultaneously", " simultaneous", " complex", " concurrently", " concurrent", " requiring", "\u540c\u65f6\u8fd8\u8981", " multit"], [" simultaneous", " simultaneously", " concurrently", "\u540c\u65f6\u8fd8\u8981", " concurrent", " seamlessly", " outsourcing", " multit"], [" simultaneously", " simultaneous", " concurrently", " concurrent", " combined", "\u540c\u65f6\u8fd8\u8981", " alongside", " plus"], ["\u540c\u65f6\u8fd8\u8981", " simultaneous", " simultaneously", " concurrently", " concurrent", " PLUS", " alongside", " plus"], ["\u540c\u65f6\u8fd8\u8981", " simultaneous", " PLUS", " simultaneously", " multit", " reliant", " outsourcing", " concurrently"], ["\u540c\u65f6\u8fd8\u8981", "\u52a0\u4e0a", "\u518d\u52a0\u4e0a", " simultaneous", " PLUS", " alongside", " WITHOUT", "\u8f85\u4ee5"], ["\u540c\u65f6\u8fd8\u8981", "\u52a0\u4e0a", "\u518d\u52a0\u4e0a", " simultaneous", " alongside", " requiring", " PLUS", " interoper"], ["\u540c\u65f6\u8fd8\u8981", " alongside", "\u52a0\u4e0a", "\u518d\u52a0\u4e0a", " simultaneous", " including", " plus", " multit"], ["\u52a0\u4e0a", " alongside", "\u540c\u65f6\u8fd8\u8981", "\u518d\u52a0\u4e0a", " plus", " simultaneous", " coupled", " synced"], ["\u52a0\u4e0a", "\u518d\u52a0\u4e0a", "\u540c\u65f6\u8fd8\u8981", " plus", " alongside", " customizable", "\u5916\u52a0", " coupled"], ["\u52a0\u4e0a", " customizable", "\u518d\u52a0\u4e0a", " dynamic", " unpredictable", " complex", " scripting", " asynchronous"], [" scripting", "\u52a0\u4e0a", "\u5c24\u5176\u662f", " complex", " customizable", "\u540c\u65f6\u8fd8\u8981", " unpredictable", "\u518d\u52a0\u4e0a"], ["\u52a0\u4e0a", " complex", " scripting", " coupled", "\u518d\u52a0\u4e0a", " heavy", "\u5c24\u5176\u662f", " while"], [" dynamic", "\u52a0\u4e0a", " complex", " scripting", " coupled", " heavy", " runtime", " while"], [" scripting", " async", " scripted", " script", " asynchronous", " plugins", " unpredictable", " plugin"], [" scripting", " async", " scripted", " script", " asynchronous", " dynamic", " complex", " unpredictable"], [" async", " dynamic", " asynchronous", " scripted", " scripting", " unpredictable", " script", " complex"], [" async", " dynamic", " complex", " asynchronous", " heavy", " unpredictable", " cross", " plugin"]], "p": [[0.7443, 0.2416, 0.0106, 0.0014, 0.0013, 0.0004, 0.0001, 0.0001], [0.5261, 0.3616, 0.0555, 0.0279, 0.0096, 0.0091, 0.0006, 0.0003], [0.7288, 0.2088, 0.0528, 0.0034, 0.002, 0.002, 0.0007, 0.0003], [0.0041, 0.0026, 0.0019, 0.0012, 0.0012, 0.0011, 0.001, 0.0009], [0.1596, 0.043, 0.0203, 0.0168, 0.0158, 0.0096, 0.007, 0.0055], [0.7932, 0.1143, 0.0024, 0.0017, 0.0015, 0.0013, 0.0013, 0.0011], [0.1265, 0.0767, 0.0636, 0.0636, 0.0597, 0.032, 0.0249, 0.0206], [0.059, 0.0246, 0.0075, 0.007, 0.0066, 0.0062, 0.0058, 0.0048], [0.6537, 0.2405, 0.0253, 0.0099, 0.0022, 0.0021, 0.002, 0.002], [0.5735, 0.0112, 0.0072, 0.0053, 0.0053, 0.0041, 0.0036, 0.0023], [0.5184, 0.0375, 0.0311, 0.013, 0.0108, 0.0101, 0.0101, 0.0095], [0.0157, 0.0147, 0.0122, 0.0089, 0.0089, 0.0079, 0.0074, 0.007], [0.0147, 0.0107, 0.0084, 0.0065, 0.0048, 0.0042, 0.0039, 0.0035], [0.0177, 0.0101, 0.0078, 0.0074, 0.0054, 0.0048, 0.0045, 0.0042], [0.0582, 0.0311, 0.0292, 0.0228, 0.0214, 0.0189, 0.0157, 0.0147], [0.0756, 0.0667, 0.0191, 0.0191, 0.0191, 0.0158, 0.0131, 0.0123], [0.082, 0.0724, 0.0364, 0.0302, 0.0235, 0.0183, 0.0162, 0.0143], [0.0314, 0.0244, 0.0244, 0.0244, 0.023, 0.023, 0.0179, 0.0179], [0.0449, 0.0422, 0.029, 0.029, 0.0226, 0.0165, 0.0155, 0.0155], [0.043, 0.0404, 0.0379, 0.0296, 0.0216, 0.0149, 0.0149, 0.0149], [0.303, 0.0234, 0.0125, 0.0097, 0.0091, 0.0086, 0.0081, 0.0052], [0.019, 0.009, 0.007, 0.0058, 0.0048, 0.0045, 0.0042, 0.004], [0.011, 0.0104, 0.0097, 0.0091, 0.0081, 0.0071, 0.0049, 0.0043], [0.0113, 0.01, 0.0094, 0.0088, 0.0078, 0.0069, 0.0061, 0.0057], [0.0309, 0.0199, 0.0146, 0.0137, 0.0129, 0.0107, 0.01, 0.0094], [0.0152, 0.0143, 0.0134, 0.0111, 0.0098, 0.0068, 0.0068, 0.0056], [0.0224, 0.0174, 0.0144, 0.0136, 0.0112, 0.0099, 0.0099, 0.0082], [0.0739, 0.0328, 0.0212, 0.0212, 0.0175, 0.0145, 0.0106, 0.0094], [0.1321, 0.0551, 0.0429, 0.026, 0.023, 0.0203, 0.0148, 0.0139], [0.1417, 0.0591, 0.0381, 0.0337, 0.0246, 0.0192, 0.018, 0.0132], [0.1002, 0.078, 0.0392, 0.0325, 0.0238, 0.0185, 0.0144, 0.0136], [0.1619, 0.0384, 0.0361, 0.0248, 0.0219, 0.0182, 0.0182, 0.0133], [0.0786, 0.0421, 0.0349, 0.0308, 0.0308, 0.0271, 0.0155, 0.0137], [0.0524, 0.0408, 0.036, 0.0248, 0.0233, 0.0205, 0.0193, 0.015], [0.0688, 0.0306, 0.0306, 0.0253, 0.021, 0.0197, 0.0164, 0.0136], [0.0317, 0.028, 0.0232, 0.0181, 0.015, 0.015, 0.0132, 0.0124], [0.0214, 0.0189, 0.0189, 0.013, 0.0115, 0.0101, 0.0101, 0.0089], [0.026, 0.0158, 0.0158, 0.0139, 0.0139, 0.0123, 0.0115, 0.0115], [0.025, 0.0221, 0.0195, 0.0172, 0.0161, 0.0152, 0.0134, 0.0118], [0.0354, 0.0275, 0.0259, 0.0157, 0.0138, 0.0122, 0.0108, 0.0095], [0.0335, 0.0314, 0.0261, 0.0191, 0.0158, 0.0158, 0.0131, 0.0123], [0.0328, 0.029, 0.024, 0.0199, 0.0155, 0.0146, 0.0137, 0.0128], [0.0386, 0.0249, 0.022, 0.022, 0.022, 0.0151, 0.0151, 0.0142], [0.0468, 0.025, 0.0208, 0.0195, 0.0172, 0.0162, 0.0162, 0.0143], [0.0518, 0.0334, 0.0203, 0.0158, 0.0123, 0.0123, 0.0116, 0.0116], [0.0936, 0.0643, 0.0285, 0.0268, 0.0173, 0.0143, 0.0127, 0.0127], [0.1602, 0.1602, 0.0381, 0.0231, 0.0217, 0.0169, 0.0132, 0.0124], [0.2407, 0.2124, 0.0537, 0.0369, 0.0347, 0.027, 0.0174, 0.0145], [0.2514, 0.1525, 0.0925, 0.0527, 0.041, 0.0194, 0.0161, 0.011], [0.2065, 0.0522, 0.0205, 0.0192, 0.0159, 0.015, 0.015, 0.0117], [0.2697, 0.0236, 0.0134, 0.0126, 0.0118, 0.0087, 0.0081, 0.0077], [0.1817, 0.0406, 0.0381, 0.0204, 0.018, 0.018, 0.014, 0.0124], [0.137, 0.0647, 0.0418, 0.0325, 0.0136, 0.0127, 0.012, 0.0106], [0.1035, 0.059, 0.0554, 0.0554, 0.0336, 0.0204, 0.0169, 0.014], [0.2733, 0.0887, 0.0348, 0.0271, 0.0239, 0.0224, 0.0175, 0.0175], [0.1084, 0.0481, 0.0399, 0.0292, 0.0257, 0.0213, 0.02, 0.0156], [0.0548, 0.0455, 0.0377, 0.0229, 0.0189, 0.0178, 0.0178, 0.0167], [0.1653, 0.0537, 0.0418, 0.0393, 0.021, 0.0144, 0.0113, 0.0113], [0.129, 0.1139, 0.0538, 0.0254, 0.0198, 0.0175, 0.0145, 0.0136], [0.3942, 0.128, 0.1129, 0.0685, 0.0416, 0.0286, 0.0237, 0.0184], [0.2511, 0.2511, 0.1344, 0.0494, 0.0494, 0.0385, 0.0265, 0.0219], [0.3018, 0.111, 0.111, 0.0812, 0.0435, 0.0435, 0.0299, 0.0264], [0.4471, 0.0827, 0.073, 0.0605, 0.0345, 0.0324, 0.0304, 0.0268]], "ranks": {"Kotlin": [230798, 207900, 183331, 26719, 60717, 121282, 146958, 213415, 201961, 227531, 226216, 168706, 181182, 133145, 192889, 158626, 136637, 186315, 181102, 207565, 237402, 179764, 211713, 234917, 185624, 131936, 103167, 131201, 92873, 112393, 146226, 142506, 136023, 117038, 182771, 148004, 152059, 146452, 125619, 92998, 135402, 143876, 117419, 135950, 143729, 158946, 133316, 126491, 107025, 119620, 152127, 67682, 39996, 28044, 15117, 6551, 2250, 809, 862, 1383, 499, 292, 307]}}, {"pos": 408, "top": [["s", ".", " \u2022", "@", " @", ",", "a", "-"], ["s", " @", " (@", "\u0627\u062a", " [@", " *@", "@", " \"@"], ["s", ",", ".", "\u2013", ",.", "-,", "[", ";"], ["s", "\u0627\u062a", "\u52a0\u62ff\u5927", "enticate", "s\u00f6k", " *_", "\u05d9\u05dd", "schrift"], ["s", " @", " (@", " \"@", " *@", "\u0627\u062a", " @_", "@"], ["s", " @", " @_", " (@", "\u0627\u062a", "@", " *@", " \"@"], ["s", " @", "@", " (@", "\u0627\u062a", " *@", " @_", " @("], ["s", " @", " *@", " @_", " (@", " `-", " `.", "\u0627\u062a"], ["s", " @", " *@", " (@", " `.", " @_", " [@", " \ufffd"], ["s", " @", " @_", "@", " (@", " &,", " `\\", ".@"], ["s", " @", "@", " (@", " @_", ".@", "\u0627\u062a", " &"], ["s", " @", " @_", " `_", " *_", "\u0627\u062a", " `%", " workflows"], ["s", "\u0627\u062a", " workflows", " async", " meds", " @", " -,", "-global"], ["s", "\u0627\u062a", " messaging", " ops", " workflows", "-global", " timelines", " meds"], ["s", " ops", "\u0627\u062a", " &", " tech", " combo", " messaging", " apps"], ["s", " tech", " ops", " &", "\u0627\u062a", " messaging", " meds", " folks"], ["s", " tech", " ops", "\u0627\u062a", " meds", " apps", "es", " messaging"], ["s", " meds", " ops", "\u0627\u062a", " tech", "-tech", "-global", "-ish"], ["s", " meds", " ops", "\u0627\u062a", "-tech", " tech", "-global", " %+"], ["s", " &,", "-&", " &", "&", " @", "@", "&,"], ["s", "@", " @", "\n\n", "<|endoftext|>", " &,", "&", " &"], ["s", "-await", " +%", " Async", " async", " timelines", " workflows", "-global"], ["s", "-await", " &", " Async", " async", " +%", " %+", " ops"], ["s", " &", " -,", " @", " &,", " events", " --", " \u00e2"], ["s", " @", " &,", "-await", " &", " -,", " async", " \ufffd"], [" async", " workflows", " Async", " telecom", "-await", " tech", " timelines", "s"], [" @", " telecom", " @_", " tech", " workflows", " async", " protocols", " apps"], [" @", " @_", " tech", " --", " telecom", " apps", " async", " stuff"], [" tech", " telecom", " workflows", " @", " async", " protocols", " events", " apps"], [" workflows", " async", " tech", " protocols", " telecom", " workflow", " asynchronous", " meds"], [" workflows", " tech", " async", " protocols", " telecom", " events", " workflow", " networks"], [" tech", " workflows", " events", " systems", " protocols", " async", " networks", " global"], [" workflows", " tech", " async", " protocols", " events", " networks", " systems", " global"], [" workflows", " async", " tech", " protocols", " asynchronous", " workflow", " meds", " Async"], [" async", " workflows", " tech", " protocols", " Async", " meds", " asynchronous", " telecom"], [" async", " workflows", " asynchronous", " Async", " tech", "Async", " meds", " protocols"], [" async", " workflows", " asynchronous", " Async", "Async", " tech", "async", " asynchronously"], [" async", " workflows", " asynchronous", " Async", "Async", " asynchronously", "async", " protocols"], [" async", " asynchronous", " workflows", " Async", " asynchronously", "Async", "\u5f02\u6b65", "async"], [" async", " asynchronous", " Async", " workflows", " asynchronously", "\u5f02\u6b65", "Async", "async"], [" asynchronous", " async", " Async", " asynchronously", "\u5f02\u6b65", " workflows", "Async", "async"], [" asynchronous", " async", " asynchronously", " workflows", " Async", "\u5f02\u6b65", "Async", "async"], [" asynchronous", " async", " asynchronously", " workflows", " Async", "\u5f02\u6b65", " unpredictable", "Async"], [" asynchronous", " async", " asynchronously", " Async", " workflows", "\u5f02\u6b65", " unpredictable", "async"], [" asynchronous", " async", " workflows", " asynchronously", " Async", " unpredictable", "\u5f02\u6b65", " workflow"], [" asynchronous", " async", " workflows", " unpredictable", " asynchronously", " Async", "\u5f02\u6b65", " chaos"], [" asynchronous", " workflows", " async", " unpredictable", " chaos", " asynchronously", " chaotic", " Async"], [" asynchronous", " workflows", " unpredictable", " async", " chaos", " chaotic", " Async", " workflow"], [" asynchronous", " workflows", " unpredictable", " async", " chaos", " chaotic", " delays", " Async"], [" asynchronous", " unpredictable", " workflows", " async", " chaos", "-heavy", " chaotic", " unpredict"], [" workflows", " asynchronous", " async", " unpredictable", "-heavy", " chaos", " complexities", " complexity"], [" workflows", " unpredictable", " asynchronous", "-heavy", " unpredict", " async", " complexities", " dependencies"], [" unpredictable", " workflows", "-heavy", " unpredict", " chaos", " complexities", " asynchronous", " complexity"], [" unpredictable", " workflows", " unpredict", " async", " chaos", "-heavy", " asynchronous", " complexity"], [" complexity", " chaos", " complexities", " backend", " unpredictable", " async", " unpredict", " workflows"], [" unpredict", " unpredictable", " chaos", " backend", " APIs", " complexity", " complexities", " API"], [" unpredict", " chaos", " unpredictable", " APIs", " backend", " complexity", "-heavy", " API"], [" unpredict", " unpredictable", " chaos", " APIs", " backend", " complexity", "-heavy", " latency"], [" chaos", " unpredict", " unpredictable", " APIs", " chaotic", " Chaos", " backend", " API"], [" unpredict", " unpredictable", " chaos", " APIs", " API", " chaotic", " Chaos", " backend"], [" unpredict", " chaos", " APIs", " unpredictable", " API", " chaotic", " Chaos", "-heavy"], [" unpredict", " APIs", " chaos", " unpredictable", " API", "-heavy", " complexity", " chaotic"], [" unpredict", " chaos", " unpredictable", " APIs", "-heavy", " complexity", " API", " UI"]], "p": [[0.9885, 0.0013, 0.0007, 0.0005, 0.0005, 0.0004, 0.0004, 0.0003], [0.9994, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9777, 0.0123, 0.0045, 0.0009, 0.0007, 0.0004, 0.0003, 0.0003], [0.1256, 0.0434, 0.016, 0.0141, 0.0075, 0.0071, 0.0059, 0.0055], [0.9963, 0.0012, 0.0004, 0.0002, 0.0002, 0.0002, 0.0002, 0.0001], [0.9893, 0.0034, 0.0012, 0.0007, 0.0006, 0.0004, 0.0002, 0.0002], [0.996, 0.0013, 0.0002, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001], [0.9455, 0.0077, 0.0053, 0.0019, 0.0014, 0.0012, 0.0012, 0.001], [0.9403, 0.0111, 0.0041, 0.0026, 0.0026, 0.0012, 0.001, 0.0009], [0.9872, 0.0036, 0.0005, 0.0005, 0.0004, 0.0002, 0.0002, 0.0002], [0.984, 0.0085, 0.0005, 0.0003, 0.0003, 0.0003, 0.0002, 0.0001], [0.4773, 0.0135, 0.0072, 0.0053, 0.0053, 0.005, 0.0039, 0.0039], [0.8325, 0.0019, 0.0016, 0.0013, 0.001, 0.0008, 0.0007, 0.0007], [0.9527, 0.0009, 0.0004, 0.0003, 0.0003, 0.0003, 0.0003, 0.0002], [0.995, 0.0001, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9862, 0.0006, 0.0004, 0.0003, 0.0002, 0.0002, 0.0002, 0.0001], [0.9945, 0.0002, 0.0002, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9726, 0.0008, 0.0008, 0.0007, 0.0006, 0.0004, 0.0002, 0.0002], [0.8486, 0.0042, 0.0042, 0.0033, 0.0017, 0.0017, 0.0012, 0.0012], [0.818, 0.0085, 0.0052, 0.004, 0.0023, 0.0022, 0.002, 0.0019], [0.7815, 0.0285, 0.0173, 0.0092, 0.0087, 0.0049, 0.0046, 0.003], [0.0251, 0.0236, 0.0082, 0.0077, 0.0068, 0.006, 0.0053, 0.0049], [0.137, 0.0197, 0.0077, 0.0077, 0.0068, 0.0057, 0.0057, 0.0053], [0.4257, 0.0176, 0.0083, 0.0057, 0.0044, 0.0042, 0.0035, 0.0027], [0.1276, 0.0143, 0.0134, 0.0126, 0.0092, 0.006, 0.0056, 0.0053], [0.0297, 0.018, 0.0159, 0.0149, 0.014, 0.014, 0.0116, 0.0109], [0.0407, 0.0382, 0.0359, 0.0263, 0.0218, 0.0192, 0.0109, 0.0097], [0.1952, 0.0435, 0.0299, 0.0281, 0.0233, 0.0097, 0.0091, 0.0091], [0.0435, 0.036, 0.036, 0.0338, 0.0264, 0.0205, 0.0125, 0.0117], [0.1079, 0.051, 0.0373, 0.0329, 0.0329, 0.0129, 0.0121, 0.0114], [0.1179, 0.0557, 0.0408, 0.0317, 0.0218, 0.016, 0.0132, 0.0132], [0.0462, 0.0338, 0.028, 0.0247, 0.0218, 0.0193, 0.017, 0.015], [0.0654, 0.0478, 0.0256, 0.0241, 0.0212, 0.0146, 0.0137, 0.0121], [0.1822, 0.063, 0.0556, 0.0297, 0.0169, 0.014, 0.0132, 0.0116], [0.1478, 0.1225, 0.0656, 0.0257, 0.0257, 0.0227, 0.0213, 0.0078], [0.2358, 0.1046, 0.0596, 0.0436, 0.034, 0.0206, 0.0133, 0.0117], [0.3348, 0.1396, 0.1021, 0.0547, 0.0189, 0.0138, 0.0138, 0.013], [0.4162, 0.1438, 0.112, 0.077, 0.0172, 0.0134, 0.0092, 0.0076], [0.452, 0.1884, 0.1295, 0.0575, 0.0225, 0.0155, 0.0088, 0.0069], [0.3982, 0.3514, 0.0611, 0.0476, 0.0255, 0.0211, 0.0198, 0.0113], [0.5593, 0.2994, 0.0358, 0.0278, 0.0217, 0.0149, 0.008, 0.0066], [0.7248, 0.1427, 0.0361, 0.0281, 0.0248, 0.0117, 0.0043, 0.0026], [0.8071, 0.0851, 0.0402, 0.0215, 0.0148, 0.007, 0.0021, 0.0017], [0.7902, 0.0944, 0.0239, 0.0239, 0.0211, 0.0099, 0.0032, 0.002], [0.7139, 0.0966, 0.0664, 0.0277, 0.0216, 0.0102, 0.0096, 0.0033], [0.6474, 0.1125, 0.0531, 0.0365, 0.0208, 0.0173, 0.0077, 0.0077], [0.5005, 0.1434, 0.1117, 0.0527, 0.0161, 0.0125, 0.0111, 0.0098], [0.3004, 0.1608, 0.1608, 0.1105, 0.0247, 0.015, 0.0085, 0.0075], [0.278, 0.1686, 0.1313, 0.0797, 0.0426, 0.0189, 0.0095, 0.0089], [0.2264, 0.1998, 0.1556, 0.0649, 0.0446, 0.0239, 0.0186, 0.012], [0.2826, 0.1335, 0.0631, 0.0461, 0.0433, 0.0298, 0.0298, 0.0232], [0.2454, 0.2454, 0.0797, 0.0376, 0.0332, 0.0332, 0.0243, 0.0243], [0.3727, 0.1761, 0.1068, 0.0648, 0.0306, 0.027, 0.021, 0.0154], [0.3564, 0.0901, 0.0795, 0.0702, 0.0546, 0.0482, 0.0482, 0.0177], [0.5018, 0.1438, 0.0872, 0.0467, 0.0321, 0.0283, 0.025, 0.0195], [0.4876, 0.2957, 0.0454, 0.0454, 0.0454, 0.0353, 0.0042, 0.0042], [0.353, 0.2141, 0.189, 0.0893, 0.0478, 0.0256, 0.0176, 0.0121], [0.5466, 0.2926, 0.095, 0.0187, 0.0146, 0.0061, 0.0042, 0.0025], [0.8045, 0.1234, 0.0583, 0.0037, 0.0037, 0.002, 0.0006, 0.0006], [0.4743, 0.2877, 0.1745, 0.05, 0.0087, 0.001, 0.0006, 0.0004], [0.3883, 0.2355, 0.2079, 0.1429, 0.0171, 0.002, 0.0012, 0.0007], [0.4786, 0.2562, 0.1371, 0.0942, 0.0186, 0.0016, 0.001, 0.0009], [0.783, 0.0935, 0.0728, 0.0236, 0.0047, 0.0022, 0.0013, 0.0008]], "ranks": {"Kotlin": [14376, 13988, 8618, 70, 973, 2072, 1050, 865, 1079, 1379, 1472, 555, 719, 1742, 9270, 6011, 2733, 884, 978, 5101, 9346, 235, 596, 4843, 1673, 331, 650, 1377, 949, 810, 1337, 2832, 2823, 644, 599, 434, 370, 290, 466, 541, 1304, 1338, 1466, 2347, 2361, 5921, 11479, 11530, 14999, 18882, 26374, 11472, 6030, 3429, 1677, 1402, 1155, 1062, 1431, 2651, 4034, 4246, 3993]}}, {"pos": 409, "top": [["\u2026.", "\u2026..", "\u2026\"", ".", "..\"", "\u2026", "\u00a0\u00a0", "-\""], ["\u2014\"", "[\"@", "  \r\n", "  \n\n", "  \n\n\n", "..\"", " \u24d8", "  "], ["\u2026\"", "..\"", "\u2026..", "\u2026.", "\u2013", "\u2026]", "\u2014\"", "\u2026\u201d"], [" \u041a\u0440\u0430\u0441\u0438", " Blowjob", " **\u201c", " *\u201c", " Shemale", " cumshot", "rift", " **\u201e"], ["!\u201c", " *\u201c", "  \n\n\n", "\u201c-", "?\u201c", " (@", " \ufffd", " **\u201c"], ["!\u201c", "?\u201c", "\ufffd", "\u00a0\u00a0", "\ud83d\ude09", "\u201c-", " \ufffd", " **\u201c"], ["\u2014\"", "\u2014\u2014", "  \n\n", "..\"", "!\u201c", " $\\", "\u00a0\u00a0", "\u2019"], ["  \n\n", "\u2014\"", "..\"", " \ufffd", " havoc", "!\u201c", " $\\", "  \n\n\n"], ["  \n\n", "   \n\n", "  \n\n\n", "!\u201c", "..\"", "\u2014\"", "!\u201d", " \n\n\n"], ["\u2014\"", " myriad", " havoc", " $\\", "\u00a0\u00a0", "\u2014", " bewild", " utterly"], [" havoc", " myriad", " $\\", " \ufffd", "\u2014\"", "  \n\n", " unleashed", " effortlessly"], [" havoc", " myriad", " chaos", " unleashed", " wildly", " \ufffd", " \ufffd", " $\\"], [" unleashed", " havoc", " myriad", " chaos", " wildly", " effortlessly", " roaring", " relentlessly"], [" havoc", " unleashed", " myriad", " chaos", " wildly", " effortlessly", " relentlessly", " roaring"], [" myriad", " wildly", " unleashed", " effortlessly", " havoc", " relentlessly", " chaos", " sprawling"], [" effortlessly", " myriad", " wildly", " unleashed", " relentlessly", " havoc", " relentless", " countless"], [" myriad", " wildly", " effortlessly", " unleashed", " chaos", " havoc", " relentless", " sprawling"], [" chaos", " havoc", " unleashed", " myriad", " wildly", " relentless", " freaking", " effortlessly"], [" chaos", " havoc", " unleashed", " myriad", " wildly", " freaking", " relentless", " spooky"], [" myriad", " wildly", " havoc", " chaos", " unleashed", " sprawling", " relentless", " effortlessly"], [" myriad", " wildly", " havoc", " chaos", " unleashed", " sprawling", " looming", " effortlessly"], [" havoc", " chaos", " wildly", " myriad", " unleashed", " freaking", " spooky", " sprawling"], [" myriad", " wildly", " havoc", " chaos", " unleashed", " sprawling", " freaking", " looming"], [" myriad", " wildly", " havoc", " chaos", " sprawling", " looming", " unleashed", " relentlessly"], [" myriad", " wildly", " havoc", " chaos", " sprawling", " looming", " utterly", " relentlessly"], [" havoc", " chaos", " wildly", " myriad", " freaking", " weird", " sprawling", " unleashed"], [" havoc", " chaos", " wildly", " myriad", " sprawling", " freaking", " chaotic", " messy"], [" wildly", " myriad", " chaos", " havoc", " sprawling", " chaotic", " unpredict", " messy"], [" chaos", " wildly", " myriad", " havoc", " chaotic", " sprawling", " weird", " unpredictable"], [" chaos", " wildly", " myriad", " havoc", " chaotic", " weird", " crazy", " messy"], [" chaos", " wildly", " myriad", " havoc", " chaotic", " weird", " crazy", " unpredictable"], [" chaos", " wildly", " myriad", " weird", " crazy", " chaotic", " havoc", " hell"], [" chaos", " chaotic", " weird", " wildly", " crazy", " havoc", " myriad", " hell"], [" chaos", " chaotic", " weird", " havoc", " wildly", " crazy", " myriad", " Chaos"], [" chaos", " chaotic", " weird", " havoc", " wildly", " crazy", " Chaos", " myriad"], [" chaos", " chaotic", " weird", " havoc", " crazy", " Chaos", " wildly", " myriad"], [" chaos", " chaotic", " weird", " havoc", " Chaos", "\u6df7\u4e71", " wildly", " myriad"], [" chaos", " chaotic", " havoc", " Chaos", " weird", " unpredictable", "\u6df7\u4e71", " crazy"], [" chaos", " chaotic", "\u6df7\u4e71", " Chaos", " havoc", " unpredictable", " weird", " messy"], [" chaos", " chaotic", "\u6df7\u4e71", " Chaos", " unpredictable", " weird", " havoc", " messy"], [" chaos", " chaotic", " Chaos", "\u6df7\u4e71", " unpredictable", " weird", " messy", " havoc"], [" chaos", " chaotic", " Chaos", "\u6df7\u4e71", " unpredictable", " messy", " havoc", " unpredict"], [" chaos", " chaotic", " Chaos", " unpredictable", "\u6df7\u4e71", " messy", " havoc", " unpredict"], [" chaos", " chaotic", " Chaos", " messy", " unpredictable", "\u6df7\u4e71", " havoc", " unpredict"], [" chaos", " chaotic", " Chaos", " unpredictable", " messy", " havoc", "\u6df7\u4e71", " unpredict"], [" chaos", " chaotic", " Chaos", " messy", " unpredictable", " havoc", "\u6df7\u4e71", " caos"], [" chaos", " chaotic", " Chaos", " messy", " havoc", "\u6df7\u4e71", " unpredictable", " caos"], [" chaos", " chaotic", " Chaos", " messy", " havoc", " weird", "\u6df7\u4e71", " wildly"], [" chaos", " chaotic", " Chaos", " messy", "\u6df7\u4e71", " caos", " havoc", "\u6df7\u6c8c"], [" chaos", " chaotic", " Chaos", " messy", "\u6df7\u4e71", " caos", " havoc", "\u6df7\u6c8c"], [" chaos", " Chaos", " chaotic", "\u6df7\u6c8c", "\u6df7\u4e71", " messy", " caos", " unpredictable"], [",and", " chaos", "\u2014and", " Chaos", " AND", " \u1793\u17b7\u1784", " \u0e41\u0e25\u0e30\u0e04\u0e27\u0e32\u0e21", " upstairs"], [",and", " &,", "\u2014and", " chaos", "[],", "+,", ",{\"", " upstairs"], [",and", "luan", " &,", " upstairs", ",&", "\u00ae,", ",{\"", "\u2014and"], [",and", " backend", " upstairs", "luan", " upstream", " frontend", " overhead", "={},"], [",and", " backend", " upstairs", " underneath", " frontend", " upstream", " overhead", " UI"], [",and", " backend", " upstream", " upstairs", " frontend", " underneath", " overhead", "Backend"], [",and", " backend", " underneath", " frontend", " upstream", " upstairs", " overhead", "Backend"], [",and", " underneath", " backend", " upstream", " upstairs", " management", ",", " frontend"], [" management", ",and", ",", " underneath", " backend", " UI", " plugins", "-management"], [",", " management", " UI", ",and", " underneath", " backend", " plugins", " ,"], [",", " ,", " underneath", " management", " UI", ".,", " *,", " plugins"], [",", " management", ",.", ",,", " UI", ".,", ",<", " underneath"]], "p": [[0.2078, 0.1723, 0.0494, 0.0409, 0.0361, 0.0319, 0.0299, 0.0264], [0.0473, 0.0306, 0.0253, 0.021, 0.0112, 0.0106, 0.0099, 0.0077], [0.2951, 0.2604, 0.1156, 0.0425, 0.0258, 0.0242, 0.013, 0.0107], [0.0176, 0.0176, 0.0166, 0.0156, 0.0129, 0.0121, 0.0094, 0.0069], [0.1318, 0.0313, 0.0215, 0.0202, 0.019, 0.0178, 0.0157, 0.0115], [0.0671, 0.015, 0.011, 0.0091, 0.0091, 0.0085, 0.0085, 0.0071], [0.0651, 0.0507, 0.0477, 0.0448, 0.0371, 0.0272, 0.024, 0.0225], [0.0621, 0.0312, 0.0293, 0.0259, 0.0259, 0.0201, 0.0189, 0.0167], [0.2655, 0.0491, 0.0433, 0.0247, 0.0247, 0.0232, 0.0218, 0.0181], [0.1266, 0.1189, 0.0466, 0.022, 0.0151, 0.0142, 0.0086, 0.0081], [0.0722, 0.0678, 0.0341, 0.0301, 0.0183, 0.0161, 0.0134, 0.0111], [0.2205, 0.0408, 0.0318, 0.0298, 0.017, 0.0132, 0.011, 0.0091], [0.0772, 0.0725, 0.0468, 0.0388, 0.0208, 0.0162, 0.0152, 0.0134], [0.0919, 0.0919, 0.0492, 0.036, 0.028, 0.0218, 0.015, 0.0141], [0.0955, 0.0544, 0.048, 0.048, 0.0374, 0.0257, 0.0188, 0.0138], [0.0731, 0.0645, 0.0569, 0.0345, 0.0209, 0.0185, 0.0185, 0.0144], [0.1261, 0.0526, 0.0436, 0.0385, 0.0385, 0.0319, 0.0233, 0.0133], [0.0782, 0.0782, 0.069, 0.0474, 0.0369, 0.0164, 0.0154, 0.0145], [0.077, 0.0639, 0.0564, 0.0342, 0.0235, 0.0183, 0.0134, 0.0118], [0.1375, 0.0834, 0.061, 0.0573, 0.0475, 0.0145, 0.0128, 0.012], [0.3745, 0.1378, 0.0289, 0.0271, 0.0155, 0.0145, 0.0083, 0.0083], [0.0752, 0.0707, 0.0456, 0.0355, 0.026, 0.019, 0.0108, 0.0102], [0.1367, 0.1206, 0.1, 0.0472, 0.0238, 0.0163, 0.0144, 0.0127], [0.2751, 0.1891, 0.0893, 0.0309, 0.0176, 0.0129, 0.0114, 0.0094], [0.3026, 0.1835, 0.0982, 0.0361, 0.0193, 0.0151, 0.011, 0.0081], [0.1726, 0.1431, 0.1047, 0.0597, 0.0234, 0.011, 0.0097, 0.0091], [0.1867, 0.1648, 0.0882, 0.0687, 0.0135, 0.0135, 0.0127, 0.0119], [0.1789, 0.1483, 0.1483, 0.09, 0.0166, 0.0147, 0.0122, 0.0101], [0.3143, 0.131, 0.0846, 0.0482, 0.0258, 0.0138, 0.0114, 0.0089], [0.3624, 0.0809, 0.0556, 0.0297, 0.0297, 0.0169, 0.0124, 0.0116], [0.342, 0.098, 0.0594, 0.0299, 0.0281, 0.0205, 0.016, 0.0091], [0.3024, 0.0718, 0.0494, 0.0384, 0.0264, 0.0219, 0.0133, 0.011], [0.575, 0.0391, 0.0368, 0.0237, 0.0237, 0.0153, 0.0144, 0.0082], [0.7106, 0.0454, 0.0215, 0.0157, 0.0139, 0.0115, 0.0101, 0.007], [0.7033, 0.045, 0.029, 0.0241, 0.0114, 0.01, 0.0083, 0.0073], [0.666, 0.04, 0.0312, 0.0189, 0.0157, 0.0147, 0.0147, 0.0089], [0.7619, 0.043, 0.0179, 0.0158, 0.0096, 0.0096, 0.009, 0.0085], [0.789, 0.0445, 0.0154, 0.0145, 0.0136, 0.0099, 0.0088, 0.0064], [0.8924, 0.0444, 0.0112, 0.0093, 0.0053, 0.0047, 0.0036, 0.0028], [0.9044, 0.0397, 0.0107, 0.01, 0.0051, 0.0033, 0.0025, 0.0022], [0.9265, 0.0359, 0.0103, 0.008, 0.0031, 0.0017, 0.0016, 0.0015], [0.9286, 0.0524, 0.0049, 0.0043, 0.0023, 0.0012, 0.0008, 0.0007], [0.9228, 0.059, 0.0038, 0.0029, 0.002, 0.0018, 0.0013, 0.0007], [0.9179, 0.0587, 0.0062, 0.0031, 0.002, 0.0018, 0.0015, 0.0004], [0.9263, 0.0523, 0.0043, 0.0026, 0.0024, 0.0022, 0.001, 0.0005], [0.9164, 0.0586, 0.0045, 0.0031, 0.0026, 0.0015, 0.0007, 0.0004], [0.9286, 0.0462, 0.0063, 0.0028, 0.0012, 0.0012, 0.0009, 0.0007], [0.9387, 0.0321, 0.0081, 0.0025, 0.0014, 0.0012, 0.0009, 0.0008], [0.9454, 0.0196, 0.0093, 0.0028, 0.0022, 0.0015, 0.0013, 0.0011], [0.8506, 0.0374, 0.0291, 0.0094, 0.0069, 0.0037, 0.0035, 0.0027], [0.7077, 0.0845, 0.0311, 0.0114, 0.0107, 0.0079, 0.0069, 0.0037], [0.7867, 0.0082, 0.0068, 0.0044, 0.0034, 0.0028, 0.0027, 0.0025], [0.6507, 0.0093, 0.0077, 0.0068, 0.0068, 0.0047, 0.0039, 0.0039], [0.6278, 0.0062, 0.0058, 0.0051, 0.0051, 0.0045, 0.0045, 0.0045], [0.3723, 0.027, 0.0154, 0.0082, 0.0077, 0.0068, 0.0057, 0.0053], [0.2863, 0.0639, 0.0413, 0.0207, 0.0195, 0.0183, 0.0162, 0.0067], [0.2392, 0.1062, 0.0223, 0.0209, 0.0153, 0.0144, 0.0127, 0.0087], [0.2747, 0.0949, 0.0892, 0.0165, 0.0137, 0.0113, 0.0107, 0.0083], [0.1373, 0.0943, 0.0886, 0.0393, 0.027, 0.0175, 0.0164, 0.0136], [0.1198, 0.0993, 0.0683, 0.0566, 0.0499, 0.0365, 0.0208, 0.0162], [0.6929, 0.0269, 0.0237, 0.0173, 0.0119, 0.0093, 0.0082, 0.0072], [0.9855, 0.0016, 0.0007, 0.0007, 0.0005, 0.0003, 0.0002, 0.0002], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Kotlin": [94229, 144853, 81571, 25329, 47868, 56098, 56666, 79183, 91431, 140178, 78245, 35123, 48721, 49076, 84287, 69502, 47165, 29171, 15784, 44958, 96738, 30910, 58640, 121359, 74062, 22348, 23155, 42503, 39574, 27490, 36628, 31956, 14691, 15465, 16054, 13618, 19182, 19020, 23567, 27840, 30452, 30454, 27062, 27522, 31466, 62557, 40333, 60523, 62008, 107687, 108484, 79868, 46098, 30214, 14066, 10904, 7594, 5952, 6003, 3851, 4538, 2334, 1359]}}, {"pos": 410, "top": [[",", ".", "\u2013", ";", " \u2013", "\u00a0", ",.", "\u00a0\u00a0"], [",", "\u2013", ".", ";", "\u2013and", " \u2013", ".\u2013", ",."], [",", "\u2013", ".", ";", " \u2013", "\u2026", "\u2013and", ".\u2013"], [" milfs", " Guta", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\ufffd\ufffd", " Blowjob", "\u54e5\u534e", " Shemale", " Strec"], [",", ".", ".@", ".\u201c", ":@", ",@", "ingly", "ed"], [",", ".", "\u2026..", "\u2026.", "odd", "\u2013and", ".@", ".\u201c"], ["\u3002", "\uff01", "\uff0c", ".", "\u2026\u2026", ".@", ".\u201d", "\uff08"], [".@", ",@", "-ish", ":@", "!--", "-and", "ingly", " weird"], [",", ".", "\u00a0", "  \n\n", "   \n\n", "&", ";", "!."], [",", "\u2013and", " myriad", "-but", "\u2013", " hugely", "Though", "-plus"], [",", " myriad", "...", " plenty", " effortlessly", " though", "-but", " even"], [" gritty", " weird", " stuff", " pricey", " junk", " funky", " wildly", " oddly"], [" sprawling", " veggies", " gritty", " pricey", " booze", " wildly", " savvy", " plenty"], [" gritty", " sprawling", " savvy", " wildly", " myriad", " effortlessly", " tough", " plenty"], [" plenty", " effortlessly", " myriad", " sprawling", " massively", " even", " tough", " gritty"], [" plenty", " tough", " myriad", " huge", " big", " massive", " even", " effortlessly"], [" myriad", " plenty", " tough", " folks", " hefty", " goodies", " gritty", " huge"], [" gritty", " tweaking", " quirky", " hefty", " tweaks", " nasty", " funky", " plenty"], [" gritty", " nasty", " quirky", " weird", " myriad", " hugely", " spooky", " hefty"], [" myriad", " hugely", " gritty", " wildly", " plenty", " spooky", " hefty", " weird"], ["<|endoftext|>", " myriad", "\n\n", " hugely", " wildly", " swiftly", " utterly", " plenty"], [" gritty", " hugely", " havoc", " spooky", " myriad", " sprawling", " wildly", " unpredict"], [" ``", " myriad", " hugely", " wildly", " sprawling", " gritty", " havoc", " unpredict"], [" myriad", " hugely", " wildly", " --", " sprawling", " swiftly", " ``", " plenty"], ["\n\n", "  \n\n", "\r\n\r\n", " \r\n\r\n", " \n\n", " myriad", "   \n\n", "  \r\n\r\n"], [" myriad", " gritty", " havoc", " hugely", " sprawling", "\r\n\r\n", " complexities", " wildly"], ["\n\n", "\r\n\r\n", " myriad", "  \n\n", " sprawling", " \r\n\r\n", " \n\n", " hugely"], ["\n\n", "  \n\n", " \n\n", " myriad", "\r\n\r\n", " sprawling", " wildly", " \r\n\r\n"], [" myriad", "  \n\n", " wildly", " \n\n", " sprawling", " massive", " complex", " hugely"], ["  \n\n", " \n\n", " myriad", " \n  \n", "   \n\n", " wildly", " ...", " sprawling"], ["  \n\n", " \n\n", " ...", " complex", " huge", " myriad", " massive", " wildly"], [" complex", " and", " ", " huge", " massive", " all", " myriad", " long"], [" complex", " chaos", " weird", " huge", " massive", " chaotic", " crazy", " wildly"], [" complex", " weird", " chaos", " chaotic", " massive", " relentless", " huge", " myriad"], ["  \n\n", " complex", " weird", "  \r\n\r\n", " chaos", " chaotic", " **", " relentless"], ["  \n\n", " \u2026", "\u2026*", " \n\n", "  \r\n\r\n", "\u2026**", "   \n\n", " complex"], [" complex", " complexity", "  \n\n", " complexities", "complex", " tech", " weird", " multit"], [" complex", " complexity", " multit", "complex", " tech", " complexities", " weird", " multi"], [" complex", " complexity", " multit", "complex", " complexities", " myriad", "\u590d\u6742", " multi"], [" complex", " complexity", "complex", " multit", "\u590d\u6742", " complexities", " hardware", " modular"], [" complex", " complexity", " multit", "complex", " hardware", " multi", " multimedia", " complexities"], [" complex", " complexity", " multit", " complexities", "complex", " hardware", " modular", " multi"], [" complex", " complexity", " multit", " complexities", "complex", " hardware", " modular", " multi"], [" complex", " complexity", " multit", "complex", " complexities", " modular", " multi", " hardware"], [" complex", " complexity", " modular", " multit", " complexities", " multi", "complex", " heavy"], [" complex", " complexity", " multit", " modular", " multi", " complexities", " hardware", " heavy"], [" complex", " complexity", " multit", " multi", " hardware", " complexities", " modular", " multiplayer"], [" complex", " multi", " multit", " complexity", " multiplayer", " multiple", " live", " multimedia"], [" multiplayer", " multit", " complex", " complexity", " multi", " hardware", " AND", " modular"], [" multit", " multiplayer", " AND", " complexity", "-heavy", " hardware", " complexities", " complex"], [" AND", " \u0438", " \u03ba\u03b1\u03b9", " v\u00e0", "\u0e41\u0e25\u0e30", " \u0906\u0923\u093f", " \u0a85\u0aa8\u0ac7", " multiplayer"], [" AND", " interactive", " customizable", " multiplayer", " plugins", " interoper", " modular", "loaded"], [" customizable", " interactive", " AND", "loaded", " plugins", " multiplayer", "\u548c\u7528\u6237", "-user"], [" customizable", " interactive", " user", " plugins", "\u548c\u7528\u6237", " multiplayer", " AND", " bespoke"], [" runtime", " plugins", " customizable", " user", " AND", " plugin", "\u548c\u7528\u6237", "-user"], [" user", " plugins", "-user", " plugin", "\u7528\u6237", "\u548c\u7528\u6237", "plugin", "-plugin"], [" plugins", " user", " plugin", "plugin", "-plugin", "-user", "\u548c\u7528\u6237", "\u7528\u6237"], [" user", " plugins", " plugin", "-user", " runtime", "plugin", "\u7528\u6237", " scripting"], [" user", "-user", " plugin", " plugins", "_user", "user", "\u7528\u6237", " runtime"], [" user", " plugins", " scripting", " plugin", "-user", "user", "plugin", "-script"], [" user", " plugins", " scripting", " plugin", " *", " and", "-script", "-user"], [" user", " and", " plugins", " plugin", " *", " scripting", " sandbox", "-user"], [" and", " user", " plugins", " *", " plugin", " AND", " scripting", " dynamic"]], "p": [[0.7435, 0.2414, 0.012, 0.0018, 0.0004, 0.0003, 0.0002, 0.0001], [0.5537, 0.2964, 0.109, 0.0115, 0.0065, 0.0054, 0.0013, 0.0009], [0.7322, 0.1634, 0.0991, 0.0014, 0.001, 0.0009, 0.0008, 0.0004], [0.0045, 0.0031, 0.0029, 0.0021, 0.002, 0.0018, 0.0014, 0.0014], [0.0214, 0.0189, 0.0138, 0.0084, 0.0065, 0.0035, 0.0026, 0.0025], [0.1487, 0.0514, 0.0061, 0.0037, 0.0035, 0.0033, 0.0031, 0.0029], [0.1252, 0.1038, 0.0629, 0.0359, 0.0262, 0.0169, 0.0159, 0.0124], [0.012, 0.0073, 0.0057, 0.0047, 0.0044, 0.0039, 0.0032, 0.0032], [0.3436, 0.1958, 0.022, 0.022, 0.0206, 0.0104, 0.0067, 0.0067], [0.0655, 0.0069, 0.0037, 0.0029, 0.0024, 0.0022, 0.0022, 0.0021], [0.1202, 0.0209, 0.0144, 0.0135, 0.0112, 0.0105, 0.0082, 0.0082], [0.0142, 0.0111, 0.0098, 0.0098, 0.0098, 0.0086, 0.0081, 0.0081], [0.0069, 0.0069, 0.0065, 0.0065, 0.0065, 0.0061, 0.0057, 0.0054], [0.0129, 0.0129, 0.0095, 0.0078, 0.0069, 0.0065, 0.0065, 0.0061], [0.0255, 0.0199, 0.0187, 0.0145, 0.0128, 0.0128, 0.0106, 0.01], [0.0384, 0.0233, 0.0193, 0.017, 0.015, 0.0133, 0.0117, 0.011], [0.0656, 0.0423, 0.0291, 0.0227, 0.0213, 0.02, 0.02, 0.0176], [0.0341, 0.032, 0.0249, 0.0234, 0.022, 0.022, 0.0207, 0.0182], [0.039, 0.0366, 0.0344, 0.0323, 0.0323, 0.0268, 0.0252, 0.0196], [0.0787, 0.0478, 0.0226, 0.0212, 0.0165, 0.0129, 0.0113, 0.0107], [0.1203, 0.073, 0.0324, 0.0304, 0.0153, 0.0099, 0.0077, 0.0077], [0.0104, 0.0071, 0.0055, 0.0049, 0.0049, 0.0041, 0.0041, 0.0036], [0.0483, 0.0258, 0.0178, 0.0115, 0.0084, 0.0074, 0.007, 0.0065], [0.0773, 0.0251, 0.0152, 0.0111, 0.0092, 0.0081, 0.0077, 0.006], [0.3007, 0.1335, 0.1254, 0.0556, 0.0461, 0.0141, 0.0124, 0.0091], [0.0145, 0.0128, 0.01, 0.0088, 0.0088, 0.0083, 0.0064, 0.0064], [0.2315, 0.0706, 0.0333, 0.0244, 0.019, 0.0131, 0.0131, 0.0123], [0.3098, 0.1006, 0.0783, 0.0446, 0.0348, 0.0175, 0.0145, 0.0136], [0.1329, 0.0914, 0.0459, 0.0432, 0.0336, 0.0149, 0.0132, 0.0124], [0.4833, 0.2283, 0.0329, 0.0241, 0.0114, 0.0094, 0.0094, 0.0078], [0.17, 0.1409, 0.0803, 0.0458, 0.0203, 0.0191, 0.0168, 0.014], [0.0608, 0.0393, 0.0287, 0.027, 0.0238, 0.0164, 0.0154, 0.0136], [0.1097, 0.0587, 0.0457, 0.0356, 0.0295, 0.0295, 0.0168, 0.0168], [0.1177, 0.076, 0.0407, 0.0337, 0.0232, 0.0205, 0.018, 0.017], [0.1878, 0.0691, 0.061, 0.0307, 0.0271, 0.0224, 0.0198, 0.0186], [0.8117, 0.0335, 0.0203, 0.0179, 0.0131, 0.0102, 0.008, 0.0075], [0.2267, 0.1558, 0.0288, 0.0254, 0.0254, 0.0225, 0.0211, 0.0186], [0.3465, 0.1197, 0.0303, 0.0222, 0.0173, 0.0152, 0.0105, 0.0092], [0.5119, 0.1378, 0.0289, 0.0271, 0.0225, 0.0078, 0.0069, 0.0057], [0.5815, 0.0739, 0.0421, 0.0272, 0.0083, 0.0083, 0.0083, 0.0078], [0.5788, 0.0888, 0.037, 0.0224, 0.0154, 0.012, 0.01, 0.01], [0.5642, 0.1259, 0.0674, 0.0248, 0.0181, 0.015, 0.011, 0.0103], [0.6096, 0.12, 0.0567, 0.0222, 0.0153, 0.0143, 0.0119, 0.0082], [0.5584, 0.1412, 0.0245, 0.023, 0.0203, 0.0158, 0.0096, 0.0085], [0.6245, 0.0958, 0.0227, 0.0201, 0.0138, 0.0114, 0.0089, 0.0079], [0.5039, 0.0682, 0.044, 0.0251, 0.0172, 0.0152, 0.0105, 0.0087], [0.2543, 0.0776, 0.0643, 0.0344, 0.0173, 0.0153, 0.0119, 0.0119], [0.1114, 0.1114, 0.056, 0.0362, 0.034, 0.03, 0.0171, 0.0161], [0.053, 0.0413, 0.0388, 0.0388, 0.0221, 0.0208, 0.0143, 0.0143], [0.031, 0.0242, 0.0213, 0.0122, 0.0122, 0.0114, 0.0107, 0.0101], [0.1217, 0.0212, 0.0113, 0.0094, 0.0083, 0.0078, 0.0078, 0.0057], [0.0787, 0.0508, 0.0449, 0.0146, 0.0146, 0.0129, 0.0094, 0.0088], [0.1017, 0.058, 0.0227, 0.0138, 0.0129, 0.0129, 0.0114, 0.0101], [0.1181, 0.0383, 0.0247, 0.0247, 0.017, 0.017, 0.0141, 0.0132], [0.2487, 0.1037, 0.0629, 0.046, 0.0381, 0.0297, 0.0192, 0.018], [0.6839, 0.1049, 0.0495, 0.034, 0.0265, 0.0125, 0.0098, 0.0076], [0.3634, 0.2498, 0.1515, 0.0557, 0.0263, 0.0141, 0.011, 0.011], [0.6403, 0.0982, 0.0596, 0.0219, 0.0193, 0.0171, 0.0151, 0.0103], [0.9224, 0.0116, 0.0102, 0.008, 0.0055, 0.0048, 0.0043, 0.0033], [0.5646, 0.2667, 0.0595, 0.0525, 0.0038, 0.0038, 0.0032, 0.003], [0.736, 0.1449, 0.0323, 0.0285, 0.0119, 0.0044, 0.0032, 0.003], [0.5576, 0.2051, 0.1244, 0.0315, 0.0203, 0.007, 0.004, 0.0027], [0.9105, 0.0453, 0.0101, 0.0095, 0.0037, 0.0035, 0.0007, 0.0006]], "ranks": {"Kotlin": [229715, 212158, 179905, 26529, 52177, 116465, 165543, 205450, 199137, 219205, 189468, 131890, 160146, 188633, 212185, 161020, 100612, 61178, 49726, 121587, 218565, 132424, 187263, 227508, 115813, 38618, 54587, 96263, 71625, 62960, 65205, 113564, 42544, 40570, 40360, 29593, 30225, 36162, 38009, 34865, 54158, 45357, 44837, 57438, 97091, 118835, 71443, 70909, 54891, 80601, 116113, 16284, 9835, 6026, 2628, 2278, 1166, 783, 879, 1491, 617, 349, 233]}}, {"pos": 411, "top": [[".", "\u2013", " \u2013", ",", ";", "?", "\u00a0\u00a0", "\u00a0"], ["\u2013", "\u2013and", " \u2013", "\u2013\u2013", ".\u2013", " \u2013**", "**\u2013", "\u200b"], ["\u2013", " \u2013", "\u2013and", ",", ".", ".\u2013", "\u2026", "\u2026."], ["----------</", "-------------</", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " milfs", " ;;^", " Shemale", "---</", " Blowjob"], ["----------</", "\u65b0\u52a0\u5761", "---</", "-------------</", "//@", "reh", "\u52a0\u62ff\u5927", "#+#+"], [" **\u2013", " **\"", "-**", " **\u201c", "!**", " **#", "\u2026**", "(**"], ["\u3002**", "...**", " **\"", "\uff1f**", "\uff01**", " **", "\uff1a**", ".**"], [" **\"", "...**", "-**", "  \r\n", "\u3002**", "!**", ".**", "\uff01**"], ["  \n\n", " \n\n", "\u00a0", "   \n\n", "...**", "!.", " \r\n\r\n", "."], ["\u2013", "\u2013and", ",", "\u2014\"", "\u2013\u2013", "\u82e5\u975e", "\u00a0", "\\-"], ["\u2013", "\u00a0", "\u2013and", "\u2014\"", "\u2013\u2013", "\u2014but", "...\\", " arguably"], [" **", " arguably", " **\u2013", " **\"", " newfound", " gritty", " **#", " pricey"], [" flavorful", " newfound", " savvy", " **\u2013", " impactful", " pricey", " arguably", " gritty"], [" newfound", " impactful", " pricey", " savvy", " sprawling", " gritty", " backstory", " skyrocket"], [" arguably", " myriad", " effortlessly", " sprawling", " savvy", " touted", " seemingly", " pricey"], [" myriad", " effortlessly", " sprawling", " hefty", " savvy", " touted", " arguably", " seemingly"], [" myriad", " effortlessly", " hefty", " seemingly", " savvy", " arguably", " burgeoning", " sprawling"], [" myriad", " hefty", " pricey", " effortlessly", " quirky", " revamped", " savvy", " sprawling"], [" myriad", " hefty", " touted", " quirky", " relentlessly", " revamped", " pricey", " hugely"], [" myriad", " burgeoning", " swiftly", " seemingly", " hugely", " hefty", " sprawling", " utterly"], [" myriad", " swiftly", " burgeoning", " hugely", " seemingly", " utterly", " revamped", " relentlessly"], [" skyrocket", " pricey", " myriad", " gritty", " relentlessly", " sprawling", " quirky", " hugely"], [" myriad", " relentlessly", " hugely", " pricey", " sprawling", " looming", " skyrocket", " relentless"], [" myriad", " hugely", " swiftly", " seemingly", " burgeoning", " looming", " relentlessly", " sprawling"], ["\r\n\r\n", " \r\n\r\n", " \n\n", "  \n\n", " myriad", " hugely", "\n\n", " seemingly"], ["...**", " **#", " myriad", " \r\n\r\n", "\r\n\r\n", " pricey", " **", " hugely"], ["\r\n\r\n", " myriad", " \r\n\r\n", " sprawling", " hugely", "...**", " \n\n", " pricey"], [" \n\n", "\n\n", " myriad", "\r\n\r\n", "  \n\n", " \r\n\r\n", " hugely", " sprawling"], [" myriad", " sprawling", " hugely", " relentless", " wildly", " arguably", " massive", " looming"], [" myriad", " sprawling", " massive", " relentless", " relentlessly", " wildly", " hugely", " arguably"], [" myriad", " massive", " huge", " wildly", " heavily", " relentless", " hugely", " seemingly"], [" huge", " massive", " myriad", " incredibly", " relentless", " complex", " wildly", " heavily"], [" massive", " relentless", " huge", " relentlessly", " complex", " myriad", " wildly", " incredibly"], [" relentless", " massive", " relentlessly", " complex", " myriad", " huge", " massively", " weird"], [" relentless", " relentlessly", " massive", " complex", " myriad", " huge", " massively", " aggressively"], ["  \n\n", " relentless", " complex", "\u2026*", " \u2026", " relentlessly", " demanding", "\u2026**"], [" complex", " complexity", " relentless", " demanding", " relentlessly", " myriad", " sprawling", " massive"], [" complex", " complexity", " demanding", " relentless", " myriad", " massive", " relentlessly", " meticulously"], [" complex", " complexity", " relentless", " demanding", " myriad", " massive", " relentlessly", " meticulously"], [" complex", " complexity", " demanding", " massive", " heavy", " modular", " huge", " myriad"], [" complex", " complexity", " heavy", " massive", " software", " multit", " automated", " demanding"], [" complex", " complexity", " multit", " modular", " software", " hardware", " customizable", " automated"], [" complex", " complexity", " modular", " customizable", " multit", " automated", " heavy", " automation"], [" complex", " complexity", " unrestricted", " automated", " modular", " customizable", " automation", " interactive"], [" complex", " complexity", " unrestricted", " modular", " automated", " customizable", " heavy", " lightweight"], [" complex", " unrestricted", " modular", " complexity", " automated", " multit", " customizable", " interactive"], [" unrestricted", " complex", " customizable", " automated", " bespoke", " complexity", " multit", " seamless"], [" unrestricted", " interactive", " customizable", " bespoke", " multit", " automated", " potentially", " external"], [" unrestricted", " customizable", " bespoke", " interactive", " automated", " DIY", " flexible", " improvised"], [" unrestricted", " customizable", " bespoke", " interactive", " multit", " flexible", " DIY", " grassroots"], [" customizable", " unrestricted", " bespoke", " DIY", " interactive", " multit", " immersive", " improvised"], [" customizable", " interactive", " modular", " flexible", " interoper", " runtime", " unrestricted", " scripting"], [" customizable", " interactive", " runtime", " flexible", " modular", " user", " editable", "-user"], [" customizable", " runtime", " user", " interactive", " flexible", " editable", "-user", " bespoke"], [" runtime", " user", "runtime", " customizable", "_runtime", "-user", "-runtime", " plugins"], [" user", "-user", " runtime", "\u7528\u6237", " scripting", " \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c", "_user", "(user"], [" user", " runtime", " scripting", "-user", " plugins", " plugin", "\u7528\u6237", "-script"], [" user", " runtime", " scripting", "-user", "\u7528\u6237", " sandbox", " JIT", "_user"], [" user", " runtime", "-user", " scripting", "\u7528\u6237", "_user", "\"user", "user"], [" user", " scripting", " runtime", "-user", " scripted", " script", "-script", " plugins"], [" user", " scripting", " runtime", " scripted", "-user", " script", "-script", " sandbox"], [" user", " scripting", " dynamic", " sandbox", "-user", " runtime", " scripted", " plugin"], [" user", " dynamic", " plugin", " scripting", " sandbox", " runtime", " script", " end"]], "p": [[0.437, 0.3003, 0.1419, 0.0975, 0.0071, 0.0023, 0.0019, 0.0016], [0.4654, 0.0714, 0.0337, 0.0052, 0.0029, 0.0023, 0.0022, 0.002], [0.9459, 0.0153, 0.0135, 0.0135, 0.0044, 0.0017, 0.001, 0.0006], [0.02, 0.0177, 0.0138, 0.0121, 0.0069, 0.0039, 0.0031, 0.0025], [0.0043, 0.004, 0.004, 0.0033, 0.002, 0.0016, 0.0014, 0.0012], [0.0381, 0.0231, 0.0116, 0.0052, 0.004, 0.0033, 0.0029, 0.0026], [0.2132, 0.1072, 0.0946, 0.0574, 0.0394, 0.0327, 0.0327, 0.0239], [0.0976, 0.0714, 0.0433, 0.0382, 0.0192, 0.015, 0.0132, 0.0124], [0.2492, 0.0714, 0.0592, 0.0382, 0.028, 0.0205, 0.0205, 0.0124], [0.0195, 0.0134, 0.0049, 0.0041, 0.0032, 0.0021, 0.0021, 0.0019], [0.1566, 0.0421, 0.0328, 0.0176, 0.0146, 0.0129, 0.0121, 0.0094], [0.0118, 0.0098, 0.0067, 0.0063, 0.0059, 0.0056, 0.0049, 0.0049], [0.0183, 0.0111, 0.0092, 0.0087, 0.0087, 0.0087, 0.0081, 0.0067], [0.013, 0.0122, 0.0115, 0.0102, 0.0084, 0.0079, 0.0066, 0.0062], [0.0228, 0.0201, 0.0189, 0.0147, 0.0115, 0.0074, 0.0074, 0.007], [0.0752, 0.0277, 0.0229, 0.0168, 0.0158, 0.0158, 0.0148, 0.0148], [0.1736, 0.0439, 0.025, 0.0195, 0.0172, 0.0172, 0.0152, 0.0152], [0.0639, 0.0364, 0.0235, 0.0207, 0.0183, 0.0152, 0.0134, 0.0126], [0.0722, 0.0266, 0.0207, 0.0207, 0.0194, 0.0161, 0.0151, 0.0151], [0.1211, 0.0288, 0.0254, 0.0239, 0.0198, 0.0186, 0.0128, 0.0128], [0.0792, 0.0291, 0.0213, 0.0147, 0.0138, 0.0095, 0.0089, 0.0083], [0.0087, 0.0082, 0.0072, 0.0072, 0.0053, 0.005, 0.0044, 0.0044], [0.0169, 0.0085, 0.008, 0.0066, 0.0062, 0.0062, 0.0062, 0.0055], [0.0489, 0.0124, 0.0116, 0.0103, 0.0085, 0.0085, 0.008, 0.0075], [0.0828, 0.0778, 0.0368, 0.0345, 0.0345, 0.0153, 0.0119, 0.0087], [0.0284, 0.0208, 0.0195, 0.0172, 0.0134, 0.0126, 0.0126, 0.0118], [0.0698, 0.0451, 0.0257, 0.0166, 0.0156, 0.0121, 0.0114, 0.0107], [0.1114, 0.0924, 0.056, 0.0526, 0.0494, 0.0319, 0.0151, 0.0125], [0.1112, 0.0219, 0.016, 0.015, 0.015, 0.0133, 0.0117, 0.0117], [0.1001, 0.0223, 0.0223, 0.0185, 0.0144, 0.0144, 0.012, 0.0112], [0.062, 0.04, 0.0293, 0.0178, 0.0147, 0.013, 0.013, 0.0122], [0.0568, 0.0501, 0.0237, 0.0209, 0.0196, 0.0196, 0.0173, 0.0144], [0.0488, 0.0431, 0.038, 0.0315, 0.0245, 0.0169, 0.0149, 0.014], [0.0786, 0.0371, 0.0371, 0.0327, 0.0271, 0.0225, 0.0137, 0.0128], [0.0925, 0.0495, 0.0465, 0.0385, 0.034, 0.0249, 0.0151, 0.0133], [0.0879, 0.0471, 0.0415, 0.0366, 0.0304, 0.0237, 0.0222, 0.0209], [0.0696, 0.0422, 0.0422, 0.0329, 0.0272, 0.0155, 0.0146, 0.0129], [0.1023, 0.0483, 0.0243, 0.0189, 0.0157, 0.013, 0.0101, 0.0095], [0.1987, 0.0687, 0.0209, 0.0197, 0.0185, 0.0163, 0.0163, 0.0153], [0.2097, 0.053, 0.0152, 0.0152, 0.0143, 0.0134, 0.0111, 0.0104], [0.1839, 0.072, 0.0194, 0.0182, 0.0142, 0.0142, 0.0133, 0.0133], [0.1986, 0.0938, 0.0269, 0.0223, 0.0185, 0.0135, 0.0127, 0.0119], [0.2274, 0.0694, 0.0255, 0.0225, 0.0212, 0.0165, 0.0155, 0.0137], [0.1584, 0.062, 0.04, 0.0275, 0.0243, 0.0189, 0.0138, 0.013], [0.1735, 0.0679, 0.0321, 0.0321, 0.0207, 0.0161, 0.0161, 0.0142], [0.1178, 0.0917, 0.0337, 0.0298, 0.0232, 0.0181, 0.015, 0.0124], [0.0753, 0.0457, 0.0356, 0.0244, 0.0244, 0.023, 0.023, 0.0216], [0.1444, 0.0303, 0.0303, 0.0236, 0.0152, 0.0126, 0.0111, 0.0111], [0.1449, 0.0567, 0.0366, 0.0268, 0.0127, 0.0127, 0.0119, 0.0112], [0.1559, 0.061, 0.0307, 0.0211, 0.0145, 0.0136, 0.0113, 0.0073], [0.0601, 0.0601, 0.0302, 0.0152, 0.0143, 0.0143, 0.0087, 0.0072], [0.257, 0.114, 0.0539, 0.0271, 0.0239, 0.0164, 0.0145, 0.012], [0.3029, 0.0719, 0.0436, 0.0436, 0.0385, 0.0319, 0.0182, 0.0171], [0.19, 0.1153, 0.0657, 0.0511, 0.0451, 0.02, 0.02, 0.0188], [0.9468, 0.0082, 0.0072, 0.0044, 0.0027, 0.0022, 0.0018, 0.0013], [0.8663, 0.0554, 0.0381, 0.0124, 0.0066, 0.0024, 0.0021, 0.0017], [0.4397, 0.2667, 0.2077, 0.0171, 0.0117, 0.0091, 0.0081, 0.0023], [0.6224, 0.229, 0.0955, 0.0146, 0.0061, 0.002, 0.002, 0.0017], [0.9645, 0.0138, 0.0083, 0.0039, 0.0021, 0.0013, 0.0009, 0.0008], [0.9301, 0.0525, 0.0043, 0.003, 0.0012, 0.0011, 0.001, 0.0008], [0.9546, 0.0288, 0.0024, 0.0018, 0.0018, 0.0016, 0.0016, 0.0014], [0.9862, 0.0028, 0.0017, 0.0015, 0.0013, 0.0012, 0.0007, 0.0006], [0.9835, 0.0035, 0.0028, 0.0014, 0.0012, 0.001, 0.001, 0.0007]], "ranks": {"Kotlin": [206595, 159353, 154091, 21030, 15782, 39263, 63176, 123967, 143295, 201245, 212309, 125512, 113613, 113263, 183656, 162015, 155165, 138104, 163231, 211126, 223554, 158093, 181153, 224033, 197502, 113557, 125198, 173009, 156952, 167262, 163249, 168603, 163907, 156213, 152434, 89923, 90142, 71438, 75703, 60960, 73661, 61984, 45712, 59385, 77763, 92172, 89972, 61680, 31929, 42743, 47524, 4288, 2259, 1311, 746, 836, 423, 273, 341, 833, 444, 469, 459]}}, {"pos": 412, "top": [[",", ".", "\u2013", " \u2013", ";", "[", "\u00a0", "?"], ["\u2013", " \u2013", ",", ".", "[", "\u00b7", ";", "\u2013and"], ["\u2013", ",", ".", " \u2013", ";", "[", "?", "\u2013and"], ["\u4f5b\u5170", "izer", "IZAR", "\ub7ec\uc2a4", "chaft", " pupper", "aruhi", "\ub2d8"], ["#", "st", "hood", "aru", "izer", "bar", "zer", "ised"], ["client", "\ub7ec\uc2a4", "-client", "hood", "iously", "datap", "aru", " \u200b\u200b"], ["\u00b7", "hood", "\u0e22\u0e4c", "ku", "->", "izer", "\ub7ec\uc2a4", "#"], ["hood", "izer", "lijke", ".User", "\ub7ec\uc2a4", "\u6027\u5730", "itarian", "=User"], ["hood", "izer", "hip", "lijke", "ship", "\u6027\u5730", "#", "/User"], ["hood", "\u6027\u5730", "hip", "ship", "=User", "\u2013", "-centric", "ised"], ["hood", "\u00a0", "hip", "ized", "-", "-friendly", "#", "-facing"], ["izer", "hood", "\u6027\u5730", "izers", "-centric", "ized", "itarian", "hip"], ["izer", "hood", "-centric", "-friendly", "izers", "\u6027\u5730", "ized", "-facing"], ["-centric", "hood", "izer", "-facing", "-friendly", "-esque", "ized", "hip"], ["-centric", "-esque", "hip", "hood", "ship", "ized", "-friendly", " audience"], ["-esque", "hood", "-centric", " showcase", " impactful", "ized", "hip", "ship"], ["hood", "-centric", "hip", "-esque", "izer", "-friendly", "ized", "\u0e22\u0e4c"], ["hood", "izer", "-centric", "hip", "izers", "-friendly", "-facing", "-access"], ["hood", "izer", "\u0e22\u0e4c", "hip", "-centric", "-facing", " gamer", "-generator"], ["hood", " folks", "\u0e22\u0e4c", "hip", "-facing", "-friendly", "-centric", ".UserService"], ["hood", " folks", ".UserService", "hip", "\u0e22\u0e4c", "ized", "-friendly", "host"], ["hood", "izer", "izers", "\u611f\u5341\u8db3", "=User", "\ub7ec\uc2a4", "ized", "grunt"], ["hood", " folks", ".UserService", "izer", "ized", "\u611f\u5341\u8db3", "izers", "\ub7ec\uc2a4"], ["hood", "ized", ".UserService", " folks", "izer", " apps", "zens", "ably"], ["hood", " folks", "-centric", ".UserService", " apps", " demographics", "-friendly", "-facing"], ["hood", " hacker", " folks", " gadgets", " fandom", " gamer", " electronics", " apps"], [" hacker", "hood", " folks", " apps", " users", " electronics", " gamer", " gadgets"], [" folks", " users", " user", " hacker", " apps", " tools", " electronics", " tech"], [" hacker", " catalogs", " users", " electronics", " tech", " tools", " user", " technologies"], [" hacker", " catalogs", " users", " user", " tools", " tech", " programs", " electronics"], [" users", " programs", " tools", " projects", " user", " designers", " customers", " games"], [" \u200b\u200b", " theater", " complex", " programs", " users", " tools", " technology", " design"], [" users", " complex", " programs", " tech", " /", " user", " tools", " hacker"], [" hacker", " tech", " users", " user", " technologies", " catalogs", "-tech", " hobby"], [" hacker", " tech", " user", " users", " hackers", " hobby", " UX", " gamer"], [" hacker", " user", " hobby", " tech", " USER", " users", " hackers", " User"], [" hacker", " user", " hobby", " customizable", " USER", " users", " tech", " DIY"], [" user", " hacker", " customizable", " hobby", " USER", " User", " users", "-user"], [" customizable", " user", " hacker", " USER", " User", "-user", " users", " customization"], [" customizable", " user", " hacker", " hobby", " users", " customization", "-user", "user"], [" customizable", " user", " hacker", " users", " software", " scripts", "-user", " hackers"], [" customizable", " user", " hacker", " scripting", " users", "-user", " scripts", " software"], [" customizable", " hacker", " user", " users", "-user", " scripts", " scripting", " hackers"], [" hacker", " unsafe", " safety", " user", " customizable", " users", " scripts", "-user"], [" hacker", " unsafe", " scripts", " safety", " customizable", " user", " risky", " users"], [" unsafe", " scripts", " safety", " hacker", " customizable", " risky", " users", " user"], [" unsafe", " safety", " risky", " hacker", " scripts", " customizable", "-safe", " scripting"], [" unsafe", " safety", " risky", " hacker", "-safe", " hackers", " dangerous", " scripts"], [" unsafe", " hacker", " hackers", "-safe", " scripting", " scripts", " safety", " risky"], [" hackers", " scripts", " unsafe", " scripting", "-access", "-safe", " hacker", "-generated"], ["-user", " hackers", " scripting", " hacker", "-generated", "-access", " customizable", " editable"], [" scripting", " plugins", " customizable", " scripts", " editable", "-loaded", "\u53ef\u7f16\u7a0b", " runtime"], [" scripting", " plugins", "-authored", " scripts", "-friendly", " editable", "-defined", " customizable"], [" plugins", " scripting", "-authored", " scripts", "-defined", "-generated", "-custom", " editable"], ["-generated", "-defined", " plugins", "-authored", " editable", "-created", " scripting", " runtime"], [" plugins", " scripting", " plugin", "-generated", "-defined", "-plugin", " scripts", "-authored"], [" scripting", " plugins", " scripts", "-script", "\u811a\u672c", " plugin", "-plugin", "-generated"], [" scripting", " scripts", " plugins", "-authored", "-written", "-script", "-defined", "\u811a\u672c"], [" scripting", "-written", " scripts", " writable", "-script", " plugins", " editable", "\u7f16\u5199\u7684"], [" scripting", " scripts", " plugins", "-script", " script", "\u811a\u672c", "-written", " plugin"], [" scripts", " scripting", " plugins", "-script", " script", "\u811a\u672c", " scripted", " scri"], [" plugins", " scripts", " scripting", "-script", " script", "-written", "-plugins", " plugin"], [" plugins", " scripts", "-script", " scripting", "-plugins", "-written", "-defined", " script"]], "p": [[0.5036, 0.2379, 0.1635, 0.0772, 0.0049, 0.0036, 0.0021, 0.0012], [0.6564, 0.1292, 0.0447, 0.0113, 0.0106, 0.01, 0.0088, 0.0042], [0.5895, 0.3156, 0.0704, 0.0108, 0.0048, 0.0021, 0.0006, 0.0006], [0.0015, 0.0014, 0.0012, 0.0012, 0.001, 0.0009, 0.0008, 0.0008], [0.0062, 0.0033, 0.0029, 0.0028, 0.0026, 0.0023, 0.0021, 0.0021], [0.0042, 0.0037, 0.0033, 0.0026, 0.0026, 0.0021, 0.0016, 0.0016], [0.0276, 0.0157, 0.0157, 0.009, 0.0058, 0.0054, 0.0045, 0.0045], [0.0288, 0.0136, 0.0082, 0.0073, 0.0064, 0.0057, 0.0057, 0.0044], [0.0602, 0.0208, 0.0063, 0.0063, 0.006, 0.0049, 0.0046, 0.0036], [0.0081, 0.0043, 0.0026, 0.0025, 0.002, 0.0017, 0.0014, 0.0013], [0.0285, 0.0135, 0.0105, 0.0087, 0.0082, 0.0068, 0.0068, 0.0053], [0.0355, 0.0108, 0.0066, 0.0054, 0.0045, 0.0045, 0.0033, 0.0024], [0.0358, 0.014, 0.0124, 0.0052, 0.0048, 0.0043, 0.0043, 0.0038], [0.0121, 0.0078, 0.0045, 0.0035, 0.0033, 0.0029, 0.0024, 0.0024], [0.0062, 0.0055, 0.0051, 0.0048, 0.004, 0.0021, 0.0021, 0.002], [0.0061, 0.0061, 0.0044, 0.0032, 0.0027, 0.0027, 0.0021, 0.002], [0.017, 0.0071, 0.0067, 0.0063, 0.0043, 0.0036, 0.003, 0.0023], [0.0109, 0.0066, 0.0051, 0.0051, 0.0024, 0.0024, 0.0021, 0.002], [0.0232, 0.0071, 0.0046, 0.0036, 0.0028, 0.0028, 0.0022, 0.002], [0.0256, 0.0078, 0.0069, 0.0037, 0.0027, 0.0027, 0.0024, 0.0024], [0.0206, 0.0081, 0.0052, 0.0032, 0.0026, 0.002, 0.0016, 0.0016], [0.0165, 0.0039, 0.0021, 0.0017, 0.0013, 0.0012, 0.0011, 0.0011], [0.0212, 0.0039, 0.0021, 0.002, 0.0019, 0.0015, 0.0012, 0.0011], [0.0075, 0.0029, 0.0023, 0.0019, 0.001, 0.001, 0.0009, 0.0009], [0.0186, 0.0099, 0.0021, 0.0021, 0.0021, 0.0018, 0.0018, 0.0017], [0.013, 0.0115, 0.0051, 0.0051, 0.0045, 0.0045, 0.0042, 0.0037], [0.0143, 0.0072, 0.0068, 0.0064, 0.006, 0.005, 0.0041, 0.0039], [0.0115, 0.0095, 0.0084, 0.0065, 0.0054, 0.0051, 0.0051, 0.004], [0.0346, 0.0119, 0.0119, 0.0105, 0.0087, 0.0087, 0.0082, 0.0068], [0.0288, 0.0211, 0.0145, 0.0106, 0.0083, 0.0078, 0.0068, 0.0064], [0.0202, 0.0202, 0.0178, 0.0101, 0.0095, 0.0084, 0.0084, 0.0079], [0.0177, 0.0101, 0.0089, 0.0089, 0.0079, 0.0069, 0.0065, 0.0061], [0.016, 0.0125, 0.011, 0.0091, 0.0091, 0.0091, 0.0081, 0.0071], [0.0411, 0.034, 0.0125, 0.0092, 0.0086, 0.0076, 0.0067, 0.0067], [0.0954, 0.0373, 0.0176, 0.0114, 0.0101, 0.0089, 0.0065, 0.0065], [0.1023, 0.0312, 0.0189, 0.013, 0.0122, 0.0089, 0.0084, 0.0079], [0.1238, 0.0485, 0.0313, 0.0276, 0.019, 0.0115, 0.0102, 0.0102], [0.0716, 0.0594, 0.036, 0.0263, 0.0232, 0.0218, 0.016, 0.0117], [0.1858, 0.1277, 0.047, 0.0285, 0.0222, 0.0222, 0.0222, 0.0135], [0.2035, 0.0621, 0.0376, 0.0157, 0.0157, 0.013, 0.013, 0.0122], [0.1578, 0.1019, 0.0793, 0.0352, 0.0201, 0.0188, 0.0177, 0.0166], [0.182, 0.1175, 0.0974, 0.0432, 0.0381, 0.0337, 0.0337, 0.0159], [0.2109, 0.0996, 0.0879, 0.0501, 0.039, 0.0304, 0.0222, 0.0163], [0.0788, 0.0509, 0.0422, 0.0422, 0.0396, 0.035, 0.029, 0.024], [0.0783, 0.0783, 0.0475, 0.0446, 0.0419, 0.0271, 0.0254, 0.0224], [0.1048, 0.0465, 0.0465, 0.0437, 0.0362, 0.032, 0.0182, 0.0151], [0.1555, 0.0446, 0.0419, 0.0419, 0.0326, 0.0288, 0.027, 0.0154], [0.1143, 0.0507, 0.0448, 0.0371, 0.0308, 0.0289, 0.024, 0.0199], [0.0713, 0.0461, 0.0461, 0.0382, 0.0337, 0.0317, 0.0279, 0.0204], [0.0387, 0.0302, 0.0302, 0.0283, 0.0207, 0.0207, 0.0183, 0.0161], [0.045, 0.0423, 0.0241, 0.0241, 0.0241, 0.0188, 0.0176, 0.0156], [0.2576, 0.1009, 0.0421, 0.0371, 0.024, 0.0128, 0.0113, 0.0113], [0.2345, 0.081, 0.0434, 0.0407, 0.0317, 0.0317, 0.0247, 0.0232], [0.173, 0.1347, 0.0598, 0.0561, 0.0561, 0.0386, 0.0282, 0.022], [0.6494, 0.0996, 0.0533, 0.047, 0.0153, 0.0119, 0.0093, 0.0093], [0.6299, 0.1593, 0.0456, 0.0456, 0.0216, 0.019, 0.0148, 0.0115], [0.4717, 0.2861, 0.1351, 0.0161, 0.0142, 0.0142, 0.0076, 0.0076], [0.399, 0.2136, 0.1885, 0.0289, 0.0289, 0.0255, 0.0199, 0.0155], [0.387, 0.2071, 0.1828, 0.0462, 0.0408, 0.0247, 0.0247, 0.015], [0.4262, 0.3319, 0.1777, 0.0272, 0.0146, 0.0061, 0.0037, 0.0014], [0.5227, 0.3171, 0.0707, 0.0486, 0.0295, 0.0027, 0.001, 0.0009], [0.5288, 0.2498, 0.0919, 0.0557, 0.0263, 0.0075, 0.0059, 0.0046], [0.599, 0.1716, 0.0434, 0.0383, 0.028, 0.0193, 0.0124, 0.0117]], "ranks": {"Kotlin": [198617, 190857, 149023, 18109, 81022, 65678, 97919, 129813, 139078, 199430, 192193, 123512, 75822, 112240, 183790, 152603, 81661, 65810, 109301, 187932, 224529, 167664, 219590, 237349, 168149, 42285, 74444, 135089, 44787, 12406, 32304, 35152, 32628, 9341, 7390, 4078, 2410, 2098, 3456, 3282, 3245, 2750, 1840, 1894, 1691, 4832, 3526, 3226, 3115, 4223, 7540, 4265, 1782, 1020, 726, 478, 472, 672, 832, 916, 656, 1337, 2383]}}, {"pos": 413, "top": [[".", ",", "\u00a0\u00a0", " ", "[", ";", " \u00a0", " \u2022"], [",", "  \n\n", "   \n", "  \n  \n", "  ", "  \n", ".", ";"], [",", ".", "\u2026.", "\u2026", "\u2026..", "\u2013", "[", ";"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " ``(", " ``", " milfs", " **\u201e", " **\u300c", " Shemale", " \u300e"], [" \u3011", " ).", " \"@", "  ", " \u00a0 \u00a0", " </", " \\$", " }."], [" \u3011", "\ud83d\ude09", " \u300d", " **:", " ).", " }:", " \uff09", ".rt"], [" **\u300c", " \u3011", " \u3010", " ``", " **\u3010", " __", " \u300e", " \u300d"], [" **\u300c", " **\u3010", " \u3011", " ``", " \u3010", " \u300e", " __", "   \n"], [" \u3011", " **\u300c", "   \n", " \u3010", " [&", " \u300e", " \n  \n", "__["], ["\u00a0\u00a0", " \n  \n", "__[", " \u00a0 \u00a0", " \u00a0", " \u300e", " \\`", "\u00a0"], ["\u00a0", "\u00a0\u00a0", " \u3010", " \\`", "&", " \u3011", " \u00a0", " \n  \n"], [" ``", " **\u300c", " '''", " \u300e", " \\`", " ``(", " ''", " **\u25a0"], [" ``", " **\u300c", " ''", "``", " \u300d", "s", " \u00bb**", " \u300e"], [" ``", " ''", "\u52a0\u62ff\u5927", " scripts", " akin", " **\u300c", " \u300e", " scripting"], [" ``", " ''", "s", " via", " akin", "``", " hack", "edly"], [" ``", "s", " ''", " \u300d", " hack", " scripts", " \u300c", "\u52a0\u62ff\u5927"], ["s", " via", " ``", " hack", " akin", " ''", " savvy", " scripts"], [" ``", " \u300d", "loit", " ''", "s", " hack", " scripts", " via"], ["loit", " scripts", " **\u25a0", " ``", " hack", " SCRIPT", " scripting", "-script"], [" ``", "loit", " scripting", " hack", "``", "edly", " scripts", "s"], [" \n  \n", " --", "s", " \n\n", "@", "  \n\n", " \\`", " \n\n\n"], [" ``", " **\u25a0", " ``(", "``", " ''", " \u00bb**", " **\u300c", " '`"], [" ``", " ''", "``", " ``(", " '''", " **\u25a0", " '`", " scripting"], [" ``", " ''", "``", " --", " ``(", " '''", " `", " \"`"], [" ``", " ''", " --", "``", " scripts", " `", " '''", "''"], [" ``", " scripts", " ''", " scripting", " script", " software", "``", " SCRIPT"], [" ``", " ''", " scripts", " scripting", "``", " script", " --", " software"], [" ``", " ''", " --", " ,", " `", " '", " \n\n", " ;"], [" ``", " ''", " scripts", " scripting", " script", " software", " --", " programs"], [" scripts", " ``", " ''", " scripting", " script", " software", " __", " \\\""], [" scripts", " .", " ``", " ''", " script", " __", " \\\"", " programs"], [" .", " scripts", " via", " code", " programs", " script", " software", " \\\""], [" .", " via", " scripts", " /", " code", " complex", " software", " script"], [" scripts", " scripting", " software", " workflows", " code", " algorithms", " tech", " hacker"], [" scripts", " scripting", " tech", " software", " hacker", " code", " hack", " via"], [" \u2014", " code", " scripts", " tech", " scripting", " via", " software", " hack"], [" \u2014", " complex", " wildly", " via", " scripting", " \"", " code", " scripts"], [" scripting", " scripts", " complex", " code", " engine", " via", " script", " logic"], [" scripting", " complex", " dangerously", " \u2014", " via", " engine", " wildly", " engines"], [" scripting", " dangerously", " complex", " via", " scripts", " wildly", " unpredictable", " engine"], [" scripting", " dangerously", " scripts", " engine", " engines", " script", " dangerous", " complex"], [" scripting", " dangerously", " scripts", " engine", " engines", " dangerous", " scripted", " unsafe"], [" scripting", " dangerously", " scripts", " unsafe", " dangerous", " safety", " engine", " engines"], [" dangerously", " scripting", " dangerous", " unsafe", " safety", " risky", " risk", " complex"], [" dangerously", " dangerous", " unsafe", " risky", " risk", " safety", " scripting", " complex"], [" dangerously", " dangerous", " unsafe", " scripting", " risky", " safety", " risk", " complex"], [" dangerously", " unsafe", " dangerous", " risks", " risky", " risk", " chaos", " \u2014"], [" dangerously", " risks", " wildly", " without", " dangerous", " risky", " likely", " unsafe"], [" dangerously", " impossible", " likely", " \u2014", " without", " wildly", " inevitably", " incredibly"], [" requires", " impossible", " without", " dangerously", " likely", " isn", "\u7b80\u76f4\u662f", "\u2014not"], ["\u662f\u4e0d\u53ef\u80fd\u7684", " impossible", " requires", " violates", "\u7b80\u76f4\u662f", "?!", "\u662f\u4e0d\u53ef\u80fd", " isn"], ["?", "?**", "?!", "\uff1f", "\uff1f**", "?</", "?*", "?\\"], ["?**", "?", " requires", "?!", "\uff1f**", "\uff1f", " violates", "?*"], ["?", " requires", "?**", "?!", " violates", "\uff1f", " is", "\u662f\u4e0d\u53ef\u80fd\u7684"], [" requires", " isn", "\u662f\u4e0d\u53ef\u80fd\u7684", " violates", " is", "?", "?!", "?**"], [" isn", "?", " requires", "?!", "?**", " violates", " is", "\uff1f"], ["?", "?**", "?!", "\uff1f", "?\\", " isn", " requires", " violates"], ["?", "?**", "?!", " isn", "\uff1f", "?\\", "?\u201d", "?</"], ["?", " isn", "?**", "?!", "\uff1f", "?\\", " is", "?\u201d"], ["?", " is", " isn", "?**", "?!", " requires", " ?", " pushes"], ["?", " is", " isn", " requires", "?!", "?**", " pushes", " violates"], [" is", "?", " isn", " requires", " pushes", " means", " guarantees", " implies"], [" is", "?", " pushes", " isn", " means", " pushing", " running", " requires"]], "p": [[0.8587, 0.0662, 0.0157, 0.0108, 0.0066, 0.0048, 0.0031, 0.0026], [0.1108, 0.1041, 0.0631, 0.036, 0.0298, 0.0247, 0.0247, 0.0218], [0.446, 0.3473, 0.0344, 0.0268, 0.0252, 0.0196, 0.0135, 0.0119], [0.0274, 0.0156, 0.0147, 0.0114, 0.0107, 0.0107, 0.0107, 0.0089], [0.0594, 0.0117, 0.0086, 0.008, 0.008, 0.0071, 0.0067, 0.0052], [0.0254, 0.0088, 0.005, 0.0044, 0.0034, 0.0032, 0.0032, 0.003], [0.1426, 0.1259, 0.098, 0.0674, 0.0595, 0.0525, 0.0299, 0.0233], [0.2672, 0.1186, 0.0815, 0.0635, 0.034, 0.0319, 0.03, 0.0104], [0.2423, 0.0787, 0.0308, 0.0272, 0.0255, 0.0225, 0.0225, 0.0212], [0.0313, 0.0244, 0.0202, 0.019, 0.0157, 0.0148, 0.0139, 0.0139], [0.088, 0.0605, 0.0367, 0.0367, 0.0367, 0.0237, 0.0223, 0.0209], [0.2703, 0.2539, 0.0162, 0.0152, 0.0126, 0.0112, 0.0112, 0.0098], [0.1868, 0.0882, 0.0127, 0.0082, 0.0064, 0.0056, 0.0053, 0.0053], [0.0599, 0.0104, 0.0063, 0.0034, 0.0032, 0.003, 0.0028, 0.0025], [0.1864, 0.0286, 0.0127, 0.0082, 0.0056, 0.0041, 0.0032, 0.0023], [0.0344, 0.0162, 0.0044, 0.0036, 0.0028, 0.0023, 0.0022, 0.002], [0.0193, 0.0071, 0.0063, 0.0052, 0.0043, 0.0034, 0.0032, 0.0032], [0.0232, 0.0055, 0.0052, 0.0049, 0.0049, 0.004, 0.0033, 0.0033], [0.0062, 0.0062, 0.0052, 0.0038, 0.0033, 0.0024, 0.0024, 0.0024], [0.0202, 0.0035, 0.0035, 0.0033, 0.0031, 0.0029, 0.0029, 0.0027], [0.028, 0.0247, 0.0218, 0.017, 0.0159, 0.0117, 0.011, 0.011], [0.5569, 0.023, 0.0216, 0.0191, 0.0168, 0.0043, 0.0031, 0.0024], [0.906, 0.0351, 0.0129, 0.0114, 0.0014, 0.0006, 0.0006, 0.0003], [0.9324, 0.0526, 0.0025, 0.0013, 0.001, 0.0003, 0.0003, 0.0003], [0.7257, 0.1619, 0.0171, 0.0097, 0.0032, 0.0032, 0.0023, 0.0022], [0.4682, 0.126, 0.0866, 0.0493, 0.016, 0.0059, 0.0059, 0.0032], [0.8784, 0.0721, 0.0098, 0.0041, 0.0038, 0.0017, 0.0015, 0.0011], [0.563, 0.2071, 0.0524, 0.028, 0.028, 0.0097, 0.0052, 0.0052], [0.2817, 0.2486, 0.1103, 0.0316, 0.0246, 0.0132, 0.0091, 0.0071], [0.13, 0.0788, 0.0478, 0.0272, 0.024, 0.0187, 0.0187, 0.0146], [0.0775, 0.0567, 0.05, 0.0252, 0.0222, 0.0222, 0.0196, 0.0153], [0.042, 0.0348, 0.0225, 0.0165, 0.0136, 0.0136, 0.0136, 0.012], [0.1192, 0.0342, 0.0301, 0.025, 0.0134, 0.0126, 0.0118, 0.0118], [0.0963, 0.0313, 0.0244, 0.0229, 0.0178, 0.0167, 0.0139, 0.0108], [0.0586, 0.0456, 0.0216, 0.0203, 0.0158, 0.0139, 0.0131, 0.0123], [0.0435, 0.0181, 0.0181, 0.0141, 0.0141, 0.0141, 0.0125, 0.0117], [0.0677, 0.0206, 0.0182, 0.0171, 0.0161, 0.0125, 0.011, 0.0097], [0.0469, 0.0173, 0.0162, 0.0143, 0.0098, 0.0098, 0.0087, 0.0077], [0.0414, 0.0236, 0.0126, 0.0126, 0.0119, 0.0098, 0.0077, 0.0077], [0.0518, 0.0379, 0.0179, 0.0116, 0.0109, 0.0079, 0.007, 0.0066], [0.2025, 0.0352, 0.0274, 0.0177, 0.0166, 0.0114, 0.0107, 0.0095], [0.3659, 0.0561, 0.03, 0.0234, 0.0194, 0.0151, 0.0118, 0.011], [0.2504, 0.0674, 0.0299, 0.0264, 0.0248, 0.0206, 0.0206, 0.017], [0.136, 0.0728, 0.0567, 0.0366, 0.0323, 0.0285, 0.0196, 0.0143], [0.1533, 0.0498, 0.0439, 0.0439, 0.0321, 0.0321, 0.0302, 0.0195], [0.2062, 0.0406, 0.0358, 0.0297, 0.0246, 0.0231, 0.0192, 0.0149], [0.2482, 0.0296, 0.0262, 0.0217, 0.0204, 0.0169, 0.0109, 0.0109], [0.1641, 0.0236, 0.0184, 0.0173, 0.0153, 0.0143, 0.0135, 0.0135], [0.0934, 0.0414, 0.0389, 0.0236, 0.0208, 0.0162, 0.0162, 0.0143], [0.0816, 0.0561, 0.0362, 0.034, 0.034, 0.0234, 0.0182, 0.0142], [0.1935, 0.1707, 0.133, 0.0914, 0.0712, 0.0297, 0.0217, 0.0132], [0.3395, 0.2996, 0.1102, 0.0973, 0.0521, 0.0217, 0.0116, 0.009], [0.3705, 0.2885, 0.0729, 0.0568, 0.039, 0.0345, 0.0163, 0.0163], [0.2602, 0.1789, 0.1229, 0.0746, 0.0746, 0.0452, 0.0201, 0.0166], [0.3596, 0.2471, 0.0909, 0.0625, 0.0487, 0.0334, 0.026, 0.0203], [0.2198, 0.1712, 0.1511, 0.0916, 0.063, 0.049, 0.0433, 0.0337], [0.5638, 0.1426, 0.0763, 0.036, 0.0281, 0.0219, 0.0133, 0.0117], [0.608, 0.1197, 0.0566, 0.0566, 0.0389, 0.0236, 0.0087, 0.006], [0.7385, 0.0999, 0.0472, 0.0253, 0.0135, 0.0072, 0.0072, 0.0056], [0.6405, 0.1619, 0.1429, 0.0117, 0.0067, 0.0028, 0.0023, 0.0019], [0.6023, 0.2845, 0.0719, 0.0046, 0.0034, 0.0028, 0.0023, 0.002], [0.5341, 0.3671, 0.0638, 0.0052, 0.003, 0.0021, 0.0021, 0.0019], [0.6563, 0.2415, 0.0271, 0.0186, 0.006, 0.005, 0.0044, 0.0039]], "ranks": {"Kotlin": [88989, 40199, 8965, 1279, 3479, 6330, 3078, 6924, 12630, 40129, 20033, 5933, 4196, 4271, 9865, 3241, 2134, 1786, 1476, 4814, 65002, 3936, 9661, 69192, 31891, 3520, 4900, 21074, 6254, 1847, 3715, 8133, 11784, 1399, 1791, 2001, 1725, 1244, 1069, 863, 1203, 2180, 2548, 2953, 3515, 6693, 8934, 12637, 17925, 16115, 19135, 19860, 44170, 30339, 17951, 17967, 11753, 10092, 12929, 11110, 13512, 4066, 3270]}}, {"pos": 414, "top": [[".", ",", "\u00a0", ";", "\u2013", " \u2013", "\u00a0\u00a0", "\u2026."], ["\u2013", " \u2013", "\u2013and", ".", " \u200b\u200b", "  \n", ",", "  \n\n"], ["\u2013", ".", ",", " \u2013", "\u2013and", ".\u2013", ";", "\u2026.."], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Shemale", " milfs", " Blowjob", "----------</", " ;;^", " \u041a\u0440\u0430\u0441\u0438", "-------------</"], ["(IS", " \u041a\u0440\u0430\u0441\u0438", "elog", ".IS", "(si", "\u00e9ch", "-IS", " MIS"], ["\u00e9ch", "datap", "(IS", "elog", "-IS", "(Have", " v\u1ebb", "\u6cd5\u62c9"], ["\u5965", "\uff1f**", "\uff1a**", "rophe", "\u4f73", "ronic", "acerb", " **\u3010"], ["rophe", " **\u25cb", "ropy", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Shemale", "ibaldi", "acerb", " FStar"], ["ur\u00e9at", "ilename", "avour", " anyways", "\u0451\u043b", " thankfully", "*&", "\u0447\u0451\u0442"], ["Whilst", " \u0442\u0440\u0451", "\u783c", "-Cds", "uminium", " izman", " \uad49\uc7a5\ud788", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9"], ["Whilst", " whilst", "\u783c", "\u0451\u043b", " anyways", "uminium", " thankfully", " arguably"], ["\u783c", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "Whilst", "uminium", " anyways", "\u0451\u043b", " flavours", " \u0442\u0440\u0451"], [" anyways", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\u783c", "Whilst", " \uad49\uc7a5\ud788", "\u582a\u6bd4", " \u0442\u0440\u0451", " thankfully"], [" anyways", " thankfully", " arguably", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\u582a\u6bd4", " \uad49\uc7a5\ud788", "\u9760\u8c31", " freaking"], [" arguably", " thankfully", " anyways", " incredibly", " albeit", " freaking", "\u6574\u4e2a\u95ee\u9898", " hugely"], [" incredibly", " anyways", " arguably", "\u62e5\u6709\u7740", "Whilst", " whilst", " thankfully", " amongst"], [" incredibly", " freaking", " arguably", " anyways", " thankfully", " hugely", " effortlessly", " plenty"], [" freaking", " incredibly", " anyways", " arguably", " thankfully", "\u538b\u6839", "\u582a\u6bd4", " pricey"], [" freaking", " incredibly", " arguably", " anyways", " thankfully", " hugely", "\u582a\u6bd4", " tricky"], [" freaking", " arguably", " incredibly", " hugely", " thankfully", " anyways", " wildly", " ridiculously"], [" hugely", " arguably", " incredibly", " utterly", " wildly", " freaking", " thankfully", " famously"], [" freaking", " incredibly", " hugely", " anyways", "\u611f\u5341\u8db3", "\u582a\u6bd4", " arguably", "\u62e5\u6709\u7740"], [" incredibly", " hugely", " arguably", " freaking", " wildly", " daunting", "\u62e5\u6709\u7740", " thankfully"], [" arguably", " hugely", " incredibly", " wildly", " myriad", " famously", " --", " utterly"], [" hugely", " arguably", " incredibly", " wildly", " utterly", " \r\n\r\n", " freaking", "\u5373\u4fbf"], [" hugely", " freaking", " incredibly", " arguably", " wildly", " !**", " notoriously", " daunting"], [" hugely", " arguably", " incredibly", " wildly", " freaking", " notoriously", " famously", " utterly"], ["\n\n", " hugely", " arguably", " wildly", " incredibly", " myriad", " --", " \n\n"], [" incredibly", " wildly", " arguably", " hugely", " freaking", " notoriously", " tricky", " myriad"], [" incredibly", " wildly", " arguably", " hugely", " ...", " notoriously", " huge", " myriad"], [" ...", " incredibly", " wildly", " huge", " hugely", " \u2026", " arguably", " barely"], [" incredibly", " wildly", " huge", " hugely", " weird", " arguably", " barely", " truly"], [" incredibly", " wildly", " hugely", " huge", " relentlessly", " notoriously", " barely", " truly"], [" incredibly", " wildly", " relentlessly", " notoriously", " hugely", " huge", " relentless", " extremely"], [" incredibly", " notoriously", " wildly", " relentlessly", " hugely", " relentless", " utterly", " brutally"], [" incredibly", " notoriously", " wildly", " relentlessly", " insanely", " relentless", " extremely", " impossible"], [" incredibly", " notoriously", " impossible", " insanely", " ridiculously", " wildly", " relentlessly", " relentless"], [" incredibly", " impossible", " insanely", " notoriously", " ridiculously", " wildly", " relentlessly", " extremely"], [" impossible", " incredibly", " insanely", " notoriously", " ridiculously", " Impossible", " improbable", " relentlessly"], [" impossible", " incredibly", " insanely", " Impossible", " notoriously", " ridiculously", " relentlessly", "Impossible"], [" impossible", " incredibly", " insanely", " Impossible", " ridiculously", " notoriously", " absurd", " relentless"], [" impossible", " Impossible", " insanely", " imposs", "Impossible", " incredibly", " improbable", " ridiculously"], [" impossible", " Impossible", " incredibly", " improbable", " imposs", "Impossible", " insanely", " unrealistic"], [" impossible", " Impossible", "Impossible", " incredibly", " imposs", " improbable", " absurd", " notoriously"], [" impossible", " Impossible", " improbable", " incredibly", " absurd", "Impossible", " unrealistic", " imposs"], [" impossible", " incredibly", " Impossible", " improbable", " absurd", " unrealistic", " imposs", " extremely"], [" impossible", " incredibly", " improbable", " Impossible", " extremely", " unrealistic", " insanely", " dangerously"], [" impossible", " improbable", " incredibly", " Impossible", " unrealistic", " fundamentally", " extreme", " extremely"], [" impossible", " improbable", " unrealistic", " fundamentally", " incredibly", " unsustainable", " extremely", " Impossible"], [" impossible", " unrealistic", "\u5927\u6982\u7387", " unsustainable", " improbable", " fundamentally", " incredibly", " Impossible"], [" impossible", " unrealistic", "Impossible", " unsustainable", "\u5927\u6982\u7387", " Impossible", " improbable", " fundamentally"], [" impossible", "Impossible", " unrealistic", " Impossible", " unsustainable", " fundamentally", "\u5927\u6982\u7387", " improbable"], [" unrealistic", " impossible", "Impossible", " Impossible", " unsustainable", " improbable", " fundamentally", "\u4e0d\u53ef\u80fd\u7684"], [" impossible", " unrealistic", "Impossible", " fundamentally", " technically", " contradictory", " unsustainable", " Impossible"], [" impossible", "Impossible", " unrealistic", " Impossible", " contradictory", " physics", " fundamentally", " imposs"], [" impossible", " contradictory", " unrealistic", "\u8fdd\u80cc", " engineering", "\u7269\u7406\u5b66", " physics", " fundamentally"], [" impossible", "\u7269\u7406\u5b66", " physics", " engineering", "\u7269\u7406", " hardware", " fundamentally", " aggressively"], [" aggressively", " aggressive", " hardware", " impossible", " engineering", " fundamentally", "\u7269\u7406\u5b66", " technically"], [" physics", " aggressively", " engineering", "\u7269\u7406\u5b66", " physically", "\u7269\u7406", " aggressive", " hardware"], [" engineering", " physically", " physics", " aggressively", " technically", "\u7269\u7406\u5b66", " hardware", " aggressive"], [" physically", " engineering", " aggressively", " technically", " physics", " fundamentally", " not", " aggressive"], [" physically", " not", " technically", " math", " fundamentally", " aggressively", " engineering", " statistically"], [" physically", " not", " technically", " math", " aggressively", " fundamentally", " architect", " statistically"]], "p": [[0.6846, 0.2854, 0.0063, 0.0056, 0.0056, 0.0034, 0.0013, 0.001], [0.0647, 0.0571, 0.0185, 0.0185, 0.012, 0.0057, 0.0053, 0.0047], [0.536, 0.2234, 0.174, 0.0208, 0.0118, 0.0067, 0.0044, 0.0041], [0.0087, 0.0082, 0.0068, 0.0053, 0.0041, 0.0039, 0.0034, 0.0027], [0.0039, 0.0022, 0.0022, 0.002, 0.0019, 0.0018, 0.0017, 0.0015], [0.0022, 0.0017, 0.0015, 0.0012, 0.0012, 0.001, 0.0009, 0.0009], [0.0046, 0.0032, 0.003, 0.0028, 0.0019, 0.0017, 0.0013, 0.001], [0.0085, 0.0033, 0.0029, 0.0026, 0.0024, 0.0019, 0.0018, 0.0018], [0.0033, 0.0029, 0.0025, 0.0014, 0.0013, 0.0013, 0.0013, 0.0012], [0.018, 0.0066, 0.0049, 0.0036, 0.0024, 0.0016, 0.0015, 0.0015], [0.0529, 0.0183, 0.0161, 0.0118, 0.0111, 0.0076, 0.0063, 0.0049], [0.0222, 0.0082, 0.0077, 0.0047, 0.0047, 0.0039, 0.0032, 0.0028], [0.0105, 0.006, 0.0041, 0.0028, 0.0027, 0.0025, 0.0023, 0.0021], [0.0073, 0.0032, 0.0024, 0.0022, 0.0022, 0.0018, 0.0018, 0.0016], [0.0198, 0.0068, 0.0053, 0.005, 0.0044, 0.0028, 0.0027, 0.0027], [0.0229, 0.0215, 0.0122, 0.0101, 0.0084, 0.0065, 0.0058, 0.004], [0.053, 0.0207, 0.0183, 0.0126, 0.0086, 0.0081, 0.0043, 0.0043], [0.0084, 0.0054, 0.0048, 0.0037, 0.0033, 0.0031, 0.0029, 0.0029], [0.0218, 0.0117, 0.0091, 0.0071, 0.0055, 0.0055, 0.0033, 0.0028], [0.0273, 0.0226, 0.0226, 0.02, 0.0078, 0.0069, 0.0047, 0.0047], [0.0374, 0.0352, 0.0156, 0.0089, 0.0089, 0.0061, 0.0048, 0.0048], [0.0102, 0.0035, 0.0029, 0.0026, 0.0023, 0.0023, 0.002, 0.0019], [0.0241, 0.02, 0.0188, 0.0107, 0.0065, 0.0042, 0.0042, 0.0037], [0.0476, 0.042, 0.0327, 0.0136, 0.0064, 0.0053, 0.005, 0.0047], [0.0431, 0.0217, 0.0131, 0.009, 0.0062, 0.0062, 0.0062, 0.0055], [0.027, 0.021, 0.0197, 0.012, 0.0112, 0.006, 0.0047, 0.0041], [0.0335, 0.0296, 0.0231, 0.0203, 0.0131, 0.0096, 0.0051, 0.0043], [0.0795, 0.0702, 0.0702, 0.0453, 0.0426, 0.0147, 0.0138, 0.0115], [0.1588, 0.1025, 0.0705, 0.0549, 0.0313, 0.0178, 0.0139, 0.0122], [0.218, 0.1242, 0.0665, 0.0457, 0.0356, 0.0203, 0.0158, 0.0139], [0.2467, 0.132, 0.0908, 0.0456, 0.0378, 0.0229, 0.0216, 0.0123], [0.2144, 0.0952, 0.084, 0.0696, 0.0146, 0.0146, 0.0137, 0.0137], [0.2397, 0.0999, 0.0502, 0.0502, 0.0286, 0.0253, 0.0209, 0.0144], [0.2621, 0.0663, 0.0455, 0.0378, 0.0333, 0.0313, 0.0259, 0.0148], [0.1815, 0.0459, 0.0431, 0.0431, 0.0315, 0.0278, 0.0204, 0.0191], [0.2656, 0.0715, 0.0434, 0.0317, 0.0298, 0.028, 0.028, 0.0263], [0.2326, 0.0666, 0.0626, 0.043, 0.0357, 0.0335, 0.0315, 0.0261], [0.2306, 0.1796, 0.0583, 0.0454, 0.0377, 0.0259, 0.0228, 0.0228], [0.598, 0.0714, 0.0298, 0.0218, 0.0192, 0.0181, 0.0103, 0.0103], [0.6221, 0.0579, 0.0291, 0.0273, 0.0146, 0.0137, 0.0129, 0.0121], [0.6078, 0.0641, 0.0389, 0.0267, 0.0143, 0.0111, 0.0105, 0.0092], [0.7189, 0.0406, 0.0169, 0.0169, 0.0159, 0.0149, 0.0132, 0.0085], [0.7697, 0.0298, 0.0141, 0.0132, 0.0124, 0.011, 0.0097, 0.0097], [0.793, 0.0395, 0.0271, 0.0113, 0.0113, 0.01, 0.0088, 0.0078], [0.7903, 0.0239, 0.0186, 0.0164, 0.0128, 0.0128, 0.0099, 0.0088], [0.6603, 0.0226, 0.0226, 0.0212, 0.0155, 0.0146, 0.0129, 0.0107], [0.5389, 0.039, 0.0344, 0.0252, 0.0173, 0.0163, 0.0144, 0.0112], [0.6613, 0.0329, 0.0291, 0.0226, 0.0213, 0.0156, 0.0129, 0.0129], [0.5192, 0.0483, 0.0483, 0.0483, 0.0353, 0.0293, 0.0138, 0.0115], [0.2118, 0.1285, 0.0473, 0.0473, 0.0392, 0.0392, 0.0346, 0.0163], [0.243, 0.167, 0.1013, 0.0789, 0.0397, 0.0273, 0.0176, 0.0107], [0.2701, 0.2384, 0.0994, 0.0774, 0.0251, 0.0222, 0.0173, 0.0092], [0.3714, 0.2553, 0.1206, 0.0253, 0.0135, 0.0135, 0.0112, 0.0093], [0.2425, 0.1471, 0.0787, 0.0449, 0.0308, 0.0256, 0.0226, 0.0226], [0.6739, 0.0553, 0.0431, 0.0245, 0.014, 0.014, 0.0116, 0.0085], [0.2852, 0.0363, 0.0341, 0.0234, 0.0234, 0.022, 0.0207, 0.0194], [0.1734, 0.0819, 0.0467, 0.0301, 0.0283, 0.025, 0.0235, 0.022], [0.3329, 0.0791, 0.0656, 0.0423, 0.02, 0.02, 0.0176, 0.0146], [0.1328, 0.1328, 0.1172, 0.1172, 0.0805, 0.0668, 0.0488, 0.0191], [0.2888, 0.1364, 0.1062, 0.0937, 0.0569, 0.0367, 0.0209, 0.0197], [0.3883, 0.1113, 0.0866, 0.0675, 0.0339, 0.0339, 0.0319, 0.0219], [0.2236, 0.1973, 0.1444, 0.0641, 0.0499, 0.0414, 0.0172, 0.0162], [0.4353, 0.1328, 0.1101, 0.0589, 0.0459, 0.0191, 0.018, 0.014]], "ranks": {"Kotlin": [232243, 216333, 196321, 69059, 132202, 203224, 208742, 189630, 193094, 214524, 224212, 173998, 190579, 191717, 227136, 221084, 208406, 185458, 142758, 169657, 228453, 150568, 197584, 231581, 169276, 109717, 121603, 171239, 95172, 111902, 141937, 178210, 186699, 133373, 154757, 127138, 119001, 112355, 120024, 132102, 126224, 126893, 106358, 62071, 58834, 101583, 70893, 84554, 72421, 72537, 77692, 46985, 56023, 27040, 21672, 16266, 9108, 7858, 9758, 6387, 8135, 4786, 3362]}}, {"pos": 415, "top": [[".", ",", "\u2013", " \u2013", ";", "\u200b", "?", ":"], [",", ".", "\u2013", " \u2013", ";", "\u200b", " \u200b\u200b", "s"], [",", ".", "\u2013", ";", " \u2013", "\u2026.", "\u2026", "\u2026.."], [" Shemale", " Guta", "\ufffd\ufffd", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\u683c\u91cc\u62c9", "\ufffd\ufffd", "serrat", "ional"], [".", ",", "s", ":", ".)", ".\"", "!", ".-"], [".", ",", "s", ";", ":", " \u200b\u200b", "!", "\u2026."], ["s", ".", "\u00bb", ".\u00bb", ",", ".\u201d", "\u00bb.", ".\""], ["ional", "s", "\u4f73\u7ee9", ".\u00bb", "serrat", "amente", ".\\\"", "eworthy"], [".\u00bb", "ional", ".", " [\u2026]", "\u00bb", ".\\\"", "\u4f73\u7ee9", "eworthy"], [",", "\u2013", ".\\", "ional", "s", "\\", "\u4f73\u7ee9", "."], ["\u2013", " \u2013", " [\u2026]", ",", "\u00a0", "s", ".\\", "\\"], ["ional", " \\\"", "\u4f73\u7ee9", "ably", " truly", "ical", "ively", " \u00ab"], ["ional", " \u00ab", " \\\"", "ively", "\u4f73\u7ee9", "izable", "ical", "s"], [" \u00ab", " \\\"", "ional", " truly", " [\u2026]", "\u2013", "ical", " \u2013"], [" truly", " amongst", " even", " going", " fully", " \u2013", " genuinely", "\u2013"], [" truly", " even", " \u00ab", " going", " very", " quite", "s", " getting"], [" truly", "s", "\u2013", " [\u2026]", " \u2013", " quite", " going", " even"], [" truly", " incredibly", "s", " quite", " getting", " genuinely", " [\u2026]", " absolutely"], [" truly", " incredibly", " genuinely", " quite", "\u3059\u3089", " absolutely", "\u53ef\u8a00", " whatsoever"], [" truly", " quite", " even", " genuinely", " absolutely", " whatsoever", " incredibly", "\u2014even"], [" truly", " genuinely", " arguably", " merely", " \u2014", "\u3061\u3083\u3093\u3068", "much", "\u53ef\u8a00"], ["\u53ef\u8a00", "\u6bcf\u4e00\u4e2a\u4eba\u7684", "\u597d\u597d\u5730", "\u3059\u3089", " truly", "\u4efb\u4f55\u4e8b\u60c5", "\u66f4\u4e0d\u662f", "\u751a\u81f3\u4f1a"], [" truly", "\u53ef\u8a00", "\u6bcf\u4e00\u4e2a\u4eba\u7684", "\u597d\u597d\u5730", "\u3059\u3089", " genuinely", " arguably", "\u62e5\u6709\u7740"], [" truly", " arguably", " genuinely", " merely", "\u597d\u597d\u5730", "\u53ef\u8a00", " outright", " incredibly"], [" truly", " genuinely", " arguably", "\u5373\u4fbf", " whatsoever", "\u82e5\u975e", " merely", "\u53ef\u8a00"], [" truly", " genuinely", " arguably", " whatsoever", " incredibly", "\u53ef\u8a00", "\u3059\u3089", "ifiable"], [" truly", " genuinely", " arguably", " incredibly", " outright", "ifiable", " whatsoever", " merely"], [" truly", " arguably", " genuinely", " incredibly", " myriad", " outright", " merely", " requisite"], [" truly", " arguably", " genuinely", " incredibly", " myriad", " outright", " foundational", " requisite"], [" truly", " genuinely", " arguably", " incredibly", "\u2014even", " \u2014", " foundational", " outright"], [" truly", " incredibly", " genuinely", " arguably", " even", " just", " true", " huge"], [" truly", " incredibly", " genuinely", " arguably", " just", " even", " true", " critical"], [" truly", " incredibly", " genuinely", " impossible", " true", " critical", " arguably", " absolutely"], [" truly", " incredibly", " genuinely", " fundamentally", " foundational", "\u2014even", " horrific", " relentless"], [" truly", " incredibly", " genuinely", " fundamentally", " arguably", " impossible", " insanely", " horrific"], [" truly", " incredibly", " genuinely", " insanely", " ANY", " impossible", " viable", " fundamentally"], [" genuinely", " incredibly", " truly", " viable", " impossible", " credible", " insanely", " achievable"], [" genuinely", " viable", " truly", " incredibly", " impossible", " achievable", " legitimately", " genuine"], [" impossible", " viable", " achievable", " genuinely", " feasible", " Impossible", " truly", " manageable"], [" achievable", " impossible", " viable", " genuinely", " Impossible", " realistically", " technically", " feasible"], [" engineering", " technical", " achievable", " viable", " technically", " technological", " impossible", " tech"], [" engineering", " achievable", " technical", " viable", " technically", " technological", " feasibility", " impossible"], [" engineering", " achievable", " technical", " viable", " feasibility", " feasible", " technically", " technological"], [" achievable", " engineering", " technical", " feasibility", " viable", " technically", " impossible", " feasible"], [" engineering", " technical", " achievable", " feasibility", " viable", " technically", " feasible", " technological"], [" technical", " engineering", " technically", " achievable", " merely", " feasibility", " technological", " viable"], [" merely", " mere", " technically", " simply", " \u043f\u0440\u043e\u0441\u0442\u043e", " achievable", " engineering", " technical"], [" merely", "\u90a3\u4e48\u7b80\u5355", " \u043f\u0440\u043e\u0441\u0442\u043e", " mere", " simply", " achievable", " viable", " melainkan"], [" merely", "\u90a3\u4e48\u7b80\u5355", ";**", " melainkan", " mere", " sekadar", " feasibility", " \"\";"], [";**", " merely", "*;", "\u90a3\u4e48\u7b80\u5355", "**;", " anymore", " sekadar", ";</"], [";**", "*;", "**;", " \"\";", ";}", "\u201d;", ";</", "\u00bb;"], [";**", "*;", "**;", " \"\";", "\u201d;", ";}", ";\"", ";</"], ["feas", " feasibility", " feasible", ";**", "\u6280\u672f\u95ee\u9898", ";\"", "\u201d;", " \"\";"], [";\"", " optimization", " \"\";", " feasibility", " feasible", "feas", "\u201d;", ";</"], [" merely", " optimization", " feasibility", " feasible", "feas", " engineering", " \u043f\u0440\u043e\u0441\u0442\u043e", " optimizations"], [" merely", " difficult", " optimization", "\u53ea\u662f", "\u53ea\u662f\u4e00\u4e2a", "\u4ec5\u4ec5\u662f", " \u043f\u0440\u043e\u0441\u0442\u043e", " software"], [" merely", " optimization", " difficult", " software", " \u043f\u0440\u043e\u0441\u0442\u043e", " optimizations", " ambitious", "\u53ea\u662f\u4e00\u4e2a"], [" software", " just", " difficult", " optimization", " Software", "just", "Software", " harder"], [" ambitious", " architecture", " difficult", " software", " just", " engineering", " architectural", " optimization"], [" just", " engineering", " difficult", " ambitious", " architecture", " optimization", " architectural", " software"], [" just", " hard", "-hard", " harder", " difficult", " ambitious", " engineering", " Hard"], [" just", " hard", " ambitious", " difficult", " harder", "-hard", " engineering", " architecture"], [" just", " a", " an", " hard", " \"", " ambitious", " engineering", " architecture"]], "p": [[0.6756, 0.2816, 0.018, 0.0124, 0.004, 0.0013, 0.0011, 0.0005], [0.367, 0.2685, 0.1268, 0.0341, 0.0235, 0.0118, 0.0086, 0.0041], [0.709, 0.2031, 0.0747, 0.0054, 0.0029, 0.0007, 0.0006, 0.0005], [0.0072, 0.0025, 0.0022, 0.0017, 0.0015, 0.0014, 0.0013, 0.0013], [0.371, 0.1752, 0.0828, 0.0041, 0.0039, 0.003, 0.003, 0.0025], [0.4502, 0.3973, 0.0254, 0.0039, 0.0034, 0.0032, 0.0027, 0.0022], [0.2212, 0.1112, 0.0559, 0.0494, 0.0248, 0.011, 0.0097, 0.0081], [0.0254, 0.01, 0.0083, 0.0083, 0.0083, 0.0057, 0.005, 0.005], [0.0418, 0.0347, 0.0306, 0.0238, 0.0186, 0.012, 0.0113, 0.0099], [0.1116, 0.0234, 0.0081, 0.0056, 0.0049, 0.0041, 0.0034, 0.0034], [0.1049, 0.1049, 0.0768, 0.0636, 0.0598, 0.0194, 0.0125, 0.0111], [0.0343, 0.0284, 0.006, 0.0036, 0.0034, 0.0034, 0.0034, 0.0032], [0.0284, 0.025, 0.0126, 0.0059, 0.0046, 0.0041, 0.0036, 0.0034], [0.0119, 0.0072, 0.006, 0.0047, 0.0036, 0.003, 0.003, 0.0025], [0.0231, 0.0052, 0.0049, 0.0043, 0.004, 0.0035, 0.0033, 0.0031], [0.024, 0.0088, 0.0088, 0.0088, 0.0065, 0.0042, 0.0042, 0.0037], [0.0703, 0.0548, 0.0189, 0.0157, 0.0122, 0.0108, 0.0101, 0.0101], [0.0305, 0.0056, 0.0036, 0.0034, 0.0034, 0.0032, 0.0032, 0.0032], [0.037, 0.0083, 0.0068, 0.0057, 0.0053, 0.0041, 0.0034, 0.003], [0.0869, 0.022, 0.0161, 0.0133, 0.0049, 0.0041, 0.0041, 0.0032], [0.0164, 0.0093, 0.0027, 0.0022, 0.0018, 0.0017, 0.0016, 0.0015], [0.0044, 0.0037, 0.0029, 0.0021, 0.002, 0.0019, 0.0013, 0.0012], [0.0099, 0.0041, 0.0022, 0.0021, 0.0019, 0.0019, 0.0019, 0.0016], [0.0147, 0.0039, 0.0035, 0.0029, 0.002, 0.0016, 0.0015, 0.0014], [0.017, 0.0117, 0.0059, 0.0055, 0.0052, 0.0028, 0.0028, 0.0026], [0.0184, 0.0072, 0.0072, 0.0044, 0.0041, 0.0039, 0.0028, 0.0026], [0.0174, 0.0127, 0.0106, 0.0041, 0.003, 0.0028, 0.0025, 0.0024], [0.066, 0.0293, 0.0228, 0.0074, 0.0061, 0.0058, 0.0054, 0.0048], [0.0507, 0.0308, 0.0225, 0.0136, 0.0064, 0.0057, 0.0053, 0.0042], [0.0487, 0.0315, 0.0315, 0.0149, 0.0109, 0.009, 0.008, 0.0058], [0.1421, 0.0433, 0.0247, 0.0218, 0.0141, 0.0103, 0.0075, 0.0071], [0.1235, 0.0621, 0.0243, 0.0167, 0.0101, 0.0095, 0.0089, 0.0079], [0.1042, 0.0492, 0.0318, 0.0097, 0.0075, 0.0071, 0.0067, 0.0067], [0.1365, 0.0938, 0.0391, 0.0119, 0.0082, 0.0077, 0.0077, 0.0077], [0.0839, 0.0788, 0.0478, 0.0094, 0.0088, 0.0088, 0.0088, 0.0088], [0.1051, 0.0987, 0.0637, 0.0142, 0.0142, 0.0126, 0.0118, 0.0104], [0.0668, 0.0381, 0.0358, 0.0336, 0.0116, 0.0085, 0.008, 0.0075], [0.0935, 0.0567, 0.0442, 0.0222, 0.0184, 0.0153, 0.0093, 0.0077], [0.1219, 0.0838, 0.0787, 0.0396, 0.0199, 0.0199, 0.0187, 0.0165], [0.1, 0.0779, 0.0731, 0.0286, 0.0197, 0.0174, 0.0163, 0.0163], [0.1375, 0.0834, 0.0573, 0.0419, 0.037, 0.0307, 0.0254, 0.0224], [0.1982, 0.0936, 0.0776, 0.0501, 0.039, 0.0344, 0.0237, 0.0173], [0.1734, 0.112, 0.0723, 0.0563, 0.0497, 0.0301, 0.0301, 0.0235], [0.229, 0.1082, 0.0955, 0.0544, 0.0451, 0.0351, 0.0257, 0.0227], [0.1853, 0.1273, 0.1273, 0.0531, 0.0499, 0.0468, 0.0221, 0.0208], [0.1387, 0.0896, 0.0841, 0.0616, 0.0373, 0.0257, 0.0257, 0.0257], [0.1849, 0.0498, 0.0412, 0.0342, 0.0342, 0.0283, 0.025, 0.0235], [0.1514, 0.0672, 0.0523, 0.036, 0.036, 0.0218, 0.0192, 0.015], [0.1178, 0.1107, 0.0592, 0.0359, 0.0263, 0.0232, 0.0205, 0.0192], [0.2381, 0.0531, 0.0365, 0.0284, 0.0267, 0.0251, 0.0251, 0.0236], [0.3747, 0.2918, 0.0836, 0.0575, 0.0271, 0.0271, 0.024, 0.0145], [0.2647, 0.2061, 0.0669, 0.0591, 0.0591, 0.0406, 0.0316, 0.0316], [0.0891, 0.0739, 0.0541, 0.0349, 0.0349, 0.0328, 0.0289, 0.0272], [0.0723, 0.0412, 0.0364, 0.0302, 0.0302, 0.0266, 0.025, 0.0221], [0.3099, 0.1292, 0.0539, 0.0475, 0.037, 0.0254, 0.0224, 0.0211], [0.7207, 0.0279, 0.0247, 0.0192, 0.0192, 0.0169, 0.0141, 0.0103], [0.425, 0.0837, 0.0421, 0.0371, 0.0199, 0.0155, 0.0145, 0.0137], [0.1995, 0.1554, 0.121, 0.0943, 0.0572, 0.0393, 0.0186, 0.0164], [0.1907, 0.1311, 0.0901, 0.0795, 0.0795, 0.0702, 0.0331, 0.0292], [0.229, 0.202, 0.1783, 0.0954, 0.0656, 0.0241, 0.0213, 0.0213], [0.4594, 0.3158, 0.0484, 0.0427, 0.0294, 0.0259, 0.0229, 0.0066], [0.8381, 0.0536, 0.0223, 0.0197, 0.012, 0.0106, 0.0047, 0.0041], [0.4909, 0.2977, 0.0517, 0.0403, 0.026, 0.0203, 0.0115, 0.007]], "ranks": {"Kotlin": [166245, 113304, 120774, 18111, 29558, 64168, 124164, 164992, 184505, 221240, 233200, 215064, 183141, 187211, 228515, 182441, 203786, 197563, 196664, 223620, 235624, 198211, 207301, 234881, 210536, 178743, 178236, 196077, 180442, 177838, 191383, 196698, 210473, 142476, 127698, 86292, 109987, 120226, 122199, 109430, 70637, 61055, 44332, 28970, 36303, 43486, 60877, 51524, 29199, 87298, 90758, 56140, 28561, 15544, 7784, 3015, 957, 621, 865, 739, 1384, 573, 325]}}, {"pos": 416, "top": [[".", ",", "\u2013", " \u2013", "@", ";", "-", ":"], ["\u2013", " \u2013", "\u2013and", ",", "@", " ", ".", ";"], ["\u2013", ",", " \u2013", ".", "\u2013and", "\u2026", ";", "\u2018"], ["\u6700\u65b0\u53d1\u5e03", " Aussie", "\u2018s", " kids", " Pubbl", " Hidal", " cittadin", "__:"], [",", ".", "@", "\u2018", "&", "\u2013", "--", "y"], ["\u2018", "\u2018s", "\u2013and", " crazy", " Aussie", "\u2013", ",", "\u6700\u65b0\u53d1\u5e03"], ["\u2018", "\u6700\u65b0\u53d1\u5e03", "\u2018s", " \u2018", "\u2764", " crazy", "&", "ting"], ["\u6700\u65b0\u53d1\u5e03", "\u2018", "\u2018s", "\u2764", " hugely", " crazy", " \n \n", "\\\\\\"], ["\u2018", "&", "\u6700\u65b0\u53d1\u5e03", "\u2013and", "\u2018s", "@", "(!", " hugely"], ["\u2013and", "--", "\u2013", " hugely", "&", "\\\\\\", " kids", "\u2018"], ["&", "\u2013", "\u2018", "\u2013and", "\\\\\\", "(!", "\u00a0", "--"], [" kids", "\u6700\u65b0\u53d1\u5e03", " incredibly", "\\\\\\", " hugely", " Aussie", " comfy", " gonna"], [" kids", " incredibly", " hugely", " veggies", " gonna", " Aussie", " amazing", " huge"], [" kids", " incredibly", " amazing", " huge", " incredible", " gonna", " crazy", " bigger"], [" kids", " incredibly", " huge", " amongst", " hugely", " incredible", " amazing", " folks"], [" kids", " big", " huge", " hugely", " bigger", " amongst", " incredibly", " getting"], [" kids", " incredibly", " big", " huge", " hugely", " bigger", " getting", " gonna"], [" kids", " incredibly", " big", " gonna", " bigger", " huge", " crazy", " tweaking"], [" incredibly", " kids", " tweaking", " gonna", " freaking", " crazy", " scary", " comfy"], [" kids", " incredibly", " tweaking", " gonna", " hugely", " bigger", " hefty", " scary"], [" tweaking", " hugely", " kids", " incredibly", " gonna", " hefty", " bigger", " Aussie"], [" scary", " freaking", " gorgeous", " bigger", " comfy", " kids", " tweaking", " incredibly"], [" incredibly", " scary", " incredible", " bigger", " gorgeous", " amazing", " freaking", " gonna"], [" incredibly", " hugely", " tweaking", " bigger", " incredible", " amazing", " huge", " scary"], [" incredibly", " hugely", " tweaking", " incredible", " amazing", " freaking", " gonna", " comfy"], [" incredibly", " freaking", " tweaking", " hugely", " comfy", " scary", " incredible", " amazing"], [" incredibly", " hugely", " tweaking", " incredible", " iconic", " bigger", " buzz", " freaking"], [" incredibly", " hugely", " tweaking", " huge", " arguably", " incredible", " iconic", " truly"], [" incredibly", " hugely", " incredible", " huge", " iconic", " tweaking", " arguably", " weird"], [" incredibly", " hugely", " huge", " incredible", " massive", " iconic", " massively", " big"], [" incredibly", " huge", " massive", " incredible", " hugely", " big", " massively", " crazy"], [" incredibly", " huge", " incredible", " massive", " big", " hugely", " horrific", " crazy"], [" incredibly", " huge", " horrific", " massive", " incredible", " weird", " iconic", " crazy"], [" incredibly", " horrific", " incredible", " weird", " insanely", " iconic", " huge", " nasty"], [" incredibly", " insanely", " horrific", " hugely", " weird", " nasty", "\u90a3\u4e48\u7b80\u5355", " massively"], [" incredibly", " insanely", " horrific", " tweaking", " tech", " nasty", " crappy", " weird"], [" incredibly", " tweaking", " tech", " insanely", " weird", " horrific", "\u90a3\u4e48\u7b80\u5355", " crappy"], [" incredibly", " insanely", " weird", " tweaking", " tech", " tweaks", " ridiculously", " absurd"], [" incredibly", " challenging", " insanely", " weird", " challenges", " tweaking", " impossible", " tech"], [" challenging", " tech", " challenges", " technical", " tweaking", " incredibly", " risky", " insanely"], [" tech", " technical", " challenging", " engineering", " challenges", " technological", " incredibly", " tweaking"], [" technical", " tech", " challenging", " challenges", " engineering", " tweaking", " incredibly", " technological"], [" challenging", " technical", " challenges", " engineering", " tech", " difficult", " risky", " tweaking"], [" challenges", " challenging", " technical", " challenge", " difficult", " risky", " difficulty", " engineering"], [" technical", " challenges", " challenging", " difficult", " challenge", " engineering", " difficulty", " risky"], [" technical", " challenges", " challenging", " challenge", " difficult", " incredibly", " difficulty", " engineering"], [" mere", " technical", " challenges", " challenging", " merely", " challenge", "\u90a3\u4e48\u7b80\u5355", " tweaking"], [" mere", " challenges", " merely", "\u90a3\u4e48\u7b80\u5355", " challenging", " technical", " challenge", " difficulty"], [" \"\";", "*;", "**;", "\";", " challenges", ";**", "(\"\");", " '';"], [" challenging", " challenges", " difficult", " \"\";", " difficulty", " risky", ";**", " tricky"], [" \"\";", ";**", "**;", "*;", "\u201d;", "(\"\");", "\u061b", "\u00bb;"], [" risky", " tricky", "\u96be\u5ea6\u5927", ";**", " \"\";", " challenging", " difficult", "\u6311\u6218"], [" difficult", "\u96be\u5ea6\u5927", " challenging", "\u96be\u5ea6", " tricky", "\u56f0\u96be", " risky", " difficulty"], [" difficult", "\u96be\u5ea6\u5927", " challenging", "\u96be\u5ea6", " tricky", " difficulty", " risky", "\u96be\u70b9"], [" difficult", " challenging", "\u6311\u6218", "\u96be\u5ea6\u5927", " risky", "\u96be\u5ea6", " tricky", " difficulty"], [" difficult", " challenging", " risky", "\u96be\u5ea6\u5927", "\u96be", " difficulty", " dif\u00edcil", "\u96be\u5ea6"], [" difficult", " challenging", " risky", "\u96be\u5ea6\u5927", " dif\u00edcil", "\u96be", " difficulty", "\u96be\u5ea6"], [" difficult", "\u96be", " dif\u00edcil", " risky", " hard", " challenging", " difficulty", "\u96be\u7684"], [" difficult", " ambitious", "\u96be", " challenging", " risky", " hard", " dif\u00edcil", "\u96be\u7684"], [" difficult", " risky", " ambitious", " hard", " challenging", "\u96be", " aggressive", " dif\u00edcil"], [" hard", " difficult", "-hard", "hard", " ambitious", " Hard", " risky", "Hard"], [" hard", " difficult", " ambitious", "-hard", " risky", "hard", " Hard", " harder"], [" hard", " ambitious", " difficult", " \"", " risky", " \u201c", " optimistic", " aggressive"]], "p": [[0.5209, 0.246, 0.1691, 0.0259, 0.007, 0.0048, 0.004, 0.0033], [0.7233, 0.1257, 0.0218, 0.0124, 0.0059, 0.0019, 0.0017, 0.0017], [0.8859, 0.0824, 0.0162, 0.0077, 0.0036, 0.0012, 0.0007, 0.0004], [0.0713, 0.008, 0.0052, 0.0029, 0.0014, 0.0014, 0.0014, 0.0014], [0.5789, 0.1071, 0.0198, 0.0154, 0.0136, 0.01, 0.01, 0.0088], [0.0941, 0.0325, 0.0305, 0.0154, 0.0154, 0.0135, 0.0127, 0.0099], [0.5302, 0.0206, 0.0141, 0.0125, 0.0071, 0.0063, 0.0059, 0.0046], [0.1319, 0.1093, 0.0202, 0.0202, 0.0084, 0.0074, 0.0074, 0.007], [0.3582, 0.0705, 0.0276, 0.0215, 0.0148, 0.0148, 0.0139, 0.013], [0.0423, 0.02, 0.02, 0.0188, 0.0166, 0.0146, 0.0094, 0.0083], [0.0811, 0.036, 0.0263, 0.0193, 0.0132, 0.0124, 0.0124, 0.0103], [0.0346, 0.0325, 0.0238, 0.0223, 0.021, 0.0144, 0.0119, 0.0105], [0.0423, 0.0373, 0.0176, 0.0156, 0.0156, 0.0129, 0.0129, 0.0114], [0.0819, 0.0321, 0.0283, 0.022, 0.022, 0.0194, 0.0161, 0.0142], [0.0451, 0.0374, 0.0213, 0.0177, 0.0146, 0.0138, 0.0138, 0.0107], [0.1003, 0.0393, 0.0369, 0.027, 0.027, 0.0238, 0.0238, 0.0198], [0.0535, 0.0502, 0.0367, 0.0345, 0.0209, 0.0209, 0.0163, 0.0144], [0.1267, 0.0438, 0.0283, 0.0266, 0.025, 0.0234, 0.0207, 0.0183], [0.0622, 0.0516, 0.0428, 0.0229, 0.019, 0.019, 0.0167, 0.0157], [0.0717, 0.0633, 0.0408, 0.0318, 0.0264, 0.0193, 0.016, 0.0141], [0.0511, 0.0398, 0.0374, 0.033, 0.0257, 0.0177, 0.0156, 0.0083], [0.0135, 0.0099, 0.0093, 0.0082, 0.0077, 0.0072, 0.0072, 0.0072], [0.0494, 0.0219, 0.0193, 0.0171, 0.0171, 0.0171, 0.0151, 0.0141], [0.0896, 0.0351, 0.0156, 0.0137, 0.0137, 0.0121, 0.0121, 0.0083], [0.1229, 0.0899, 0.0311, 0.0147, 0.0138, 0.0138, 0.013, 0.013], [0.064, 0.0284, 0.0284, 0.0251, 0.0221, 0.0195, 0.0162, 0.0162], [0.0449, 0.0212, 0.0146, 0.01, 0.0088, 0.0073, 0.0065, 0.0061], [0.1161, 0.0484, 0.0157, 0.0139, 0.013, 0.0122, 0.0101, 0.0095], [0.2279, 0.0449, 0.0256, 0.0226, 0.0165, 0.0146, 0.0107, 0.01], [0.2327, 0.0553, 0.043, 0.0203, 0.0191, 0.0149, 0.0123, 0.0109], [0.2036, 0.116, 0.0401, 0.0401, 0.0259, 0.0202, 0.0139, 0.0122], [0.1947, 0.0864, 0.0318, 0.028, 0.0205, 0.015, 0.0141, 0.011], [0.1815, 0.0553, 0.0405, 0.0261, 0.0261, 0.0204, 0.0191, 0.018], [0.1842, 0.0386, 0.022, 0.0182, 0.0182, 0.0151, 0.0151, 0.0151], [0.1042, 0.0318, 0.0248, 0.015, 0.0141, 0.0117, 0.011, 0.0103], [0.0943, 0.0288, 0.0224, 0.0224, 0.0198, 0.0186, 0.0174, 0.0128], [0.116, 0.0275, 0.0275, 0.0228, 0.0214, 0.0157, 0.0147, 0.013], [0.1267, 0.0386, 0.0341, 0.032, 0.0194, 0.0171, 0.0125, 0.0104], [0.0587, 0.0551, 0.0295, 0.0245, 0.0245, 0.0216, 0.0203, 0.0179], [0.066, 0.062, 0.0454, 0.0353, 0.0312, 0.0312, 0.0275, 0.0157], [0.1836, 0.162, 0.0526, 0.0385, 0.0282, 0.0233, 0.0206, 0.0193], [0.1378, 0.1142, 0.0947, 0.0574, 0.0507, 0.0307, 0.0239, 0.0198], [0.1153, 0.1084, 0.0898, 0.058, 0.0424, 0.0374, 0.0292, 0.02], [0.2347, 0.2071, 0.0593, 0.0462, 0.0383, 0.0247, 0.0232, 0.0181], [0.1506, 0.1506, 0.0913, 0.0489, 0.0459, 0.0358, 0.0297, 0.018], [0.1499, 0.1097, 0.0708, 0.0335, 0.0295, 0.0216, 0.0203, 0.0191], [0.1003, 0.0831, 0.0504, 0.0504, 0.0445, 0.0369, 0.021, 0.0197], [0.0991, 0.0875, 0.0772, 0.064, 0.0601, 0.0565, 0.0388, 0.0343], [0.4634, 0.0459, 0.0459, 0.0315, 0.0278, 0.0261, 0.0217, 0.0149], [0.1424, 0.1257, 0.1109, 0.0979, 0.0524, 0.0383, 0.0248, 0.0248], [0.3959, 0.187, 0.078, 0.0688, 0.0325, 0.0253, 0.0223, 0.012], [0.1507, 0.1507, 0.0807, 0.0628, 0.0489, 0.0432, 0.0432, 0.0432], [0.4645, 0.1331, 0.0807, 0.0555, 0.0432, 0.0381, 0.0336, 0.0297], [0.6661, 0.1021, 0.0376, 0.0293, 0.0293, 0.0293, 0.0293, 0.0122], [0.6435, 0.2367, 0.0363, 0.032, 0.0081, 0.0063, 0.0056, 0.0049], [0.9914, 0.0036, 0.0019, 0.0007, 0.0005, 0.0004, 0.0002, 0.0002], [0.9763, 0.0108, 0.0066, 0.0015, 0.0008, 0.0007, 0.0006, 0.0003], [0.9935, 0.0028, 0.0007, 0.0006, 0.0006, 0.0004, 0.0003, 0.0002], [0.9818, 0.0096, 0.0024, 0.0021, 0.0013, 0.0007, 0.0006, 0.0002], [0.9144, 0.0402, 0.0402, 0.002, 0.0014, 0.0002, 0.0002, 0.0002], [0.9711, 0.0157, 0.0058, 0.0031, 0.0015, 0.0011, 0.0009, 0.0003], [0.8127, 0.1412, 0.0245, 0.009, 0.0055, 0.002, 0.0014, 0.0006], [0.7154, 0.1097, 0.0665, 0.0404, 0.0404, 0.0062, 0.0048, 0.0035]], "ranks": {"Kotlin": [188661, 162231, 146345, 61033, 84820, 76140, 129871, 166892, 162279, 209789, 197181, 143914, 122666, 109321, 206500, 169808, 180743, 145274, 135668, 159582, 202014, 146894, 169268, 225876, 143242, 86783, 153541, 184186, 147079, 144920, 167632, 173657, 174908, 128773, 166397, 134315, 118440, 102406, 96561, 85443, 83693, 60860, 35932, 35679, 49343, 59550, 68606, 57814, 45093, 65467, 61575, 51031, 29692, 13541, 7284, 5188, 3090, 2909, 4211, 2987, 6147, 7065, 3778]}}, {"pos": 417, "top": [[" \u2013", "\u2013", ".", "\u2013and", ",", "y", "en", "-"], ["\u2013and", " \u2013", "\u2013", "\u6700\u65b0\u53d1\u5e03", "--", "\u2013\u2013", ".\u2013", "en"], ["\u2013", " \u2013", "\u2013and", ".\u2013", "\u6700\u65b0\u53d1\u5e03", ".", "--", "\u2013\u2013"], ["\u6700\u65b0\u53d1\u5e03", "``", " --", ")--", "\uff62", " ``", "(--", "erweise"], ["--", "\u6700\u65b0\u53d1\u5e03", "\u2013and", "-->", ")--", "\"--", "(--", ".--"], ["\u6700\u65b0\u53d1\u5e03", "--", "\u2013and", "t", "-->", "!--", "(--", " \n \n"], ["--", "\u6700\u65b0\u53d1\u5e03", " \n \n", "``", "-->", "t", ")--", "\"--"], ["\u6700\u65b0\u53d1\u5e03", "--", "``", "(`", ")--", " `", ".--", "-->"], ["\u6700\u65b0\u53d1\u5e03", "--", "\n\n\n", "(`", " \n \n", "!--", "\\\\\\", "-->"], ["--", "\u6700\u65b0\u53d1\u5e03", "!--", ")--", "`\\", "\"--", "\\\\\\", "-->"], ["--", "\u6700\u65b0\u53d1\u5e03", " --", "t", ")--", "\"--", "!--", "\\\\\\"], ["\u6700\u65b0\u53d1\u5e03", "--", "``", " --", ")--", "!--", " `", "(`"], ["--", "\u6700\u65b0\u53d1\u5e03", "``", "!--", " --", "iest", "ish", "-hard"], ["--", " --", "ish", "\u6700\u65b0\u53d1\u5e03", " stuff", " big", " crazy", "way"], ["--", " --", " stuff", ")--", " `", " big", "ish", " tough"], [" --", "--", " stuff", " big", ")--", " kids", " `", "kids"], ["--", " --", " big", " stuff", "-big", "big", " bigger", " tough"], ["--", " big", " --", "\u6700\u65b0\u53d1\u5e03", "-big", "big", "(`", " bigger"], [" --", "-hard", "--", " stuff", "-big", " tough", "-done", " scary"], [" --", "--", "-hard", " tough", "hard", " big", " stuff", "(`"], [" --", "--", "hard", "-hard", " tough", " harder", "going", "<|endoftext|>"], ["``", " --", " ``", "-done", "-hard", " stuff", " harder", "hard"], [" --", " ``", "``", " harder", "-hard", " tough", "--", "hard"], [" --", "--", " ``", " harder", " tough", "``", "-hard", " `"], [" --", "--", " \r\n\r\n", "\r\n\r\n", " \r\n \r\n", " harder", "-hard", ")--"], [" --", "``", " stuff", " ``", " harder", " weird", " tough", " scary"], [" --", "``", " harder", " ``", " stuff", " hardest", "-hard", " tough"], [" --", " harder", "\r\n\r\n", " tough", " ``", "--", " stuff", "\n\n"], [" --", " harder", " tough", " weird", " stuff", " bigger", " scary", " tech"], [" --", " harder", " bigger", " weird", " stuff", " scary", " tough", " hardest"], [" --", " harder", " tough", " big", " bigger", " scary", " weird", " stuff"], [" --", " big", " harder", " incredibly", " tough", " even", " difficult", " really"], [" incredibly", " weird", " harder", " scary", " big", " crazy", " tough", " hardest"], [" incredibly", " weird", " hardest", " harder", " crazy", " tough", " scary", " truly"], [" harder", " hardest", " incredibly", "\u6700\u96be", " weird", " tough", " insanely", " impossible"], [" harder", " hardest", " tough", "\u6700\u96be", " incredibly", " difficult", " impossible", "-hard"], [" incredibly", " harder", " hardest", " tough", " impossible", " difficult", " insanely", " HARD"], [" incredibly", " impossible", " difficult", " harder", " insanely", " hardest", " weird", " HARD"], [" difficult", " impossible", " difficulty", "\u96be\u5ea6", " harder", "\u6700\u96be", " hardest", " Impossible"], [" difficult", " impossible", "\u96be\u5ea6", " difficulty", " harder", " Impossible", " hardest", "\u6700\u96be"], [" difficult", " impossible", " difficulty", "\u96be\u5ea6", " harder", " tough", " hardest", " Impossible"], [" difficult", " difficulty", "\u96be\u5ea6", " impossible", " harder", " tough", " hardest", " Impossible"], [" difficult", " difficulty", "\u96be\u5ea6", " harder", " impossible", "\u96e3\u5ea6", "\u7684\u96be\u5ea6", " tough"], [" difficult", " difficulty", "\u96be\u5ea6", " impossible", " harder", " tough", " Impossible", " Difficulty"], [" difficult", " difficulty", " impossible", " harder", "\u96be\u5ea6", " incredibly", " tough", " hardest"], [" difficult", " difficulty", " incredibly", " impossible", " insanely", " tough", " harder", "\u96be\u5ea6"], [" difficult", " difficulty", " incredibly", " insanely", " impossible", " ridiculously", " tricky", " harder"], [" difficult", " incredibly", " impossible", " difficulty", " insanely", " ridiculously", "\u2014it", " weird"], ["**;", ";**", "\u2014it", "*;", " ;", ";", ";\\", " \u061b"], [";**", "**;", ";", "\u2014it", ";\\", "*;", "__;", "\u061b"], ["\u2014it", ";**", "**;", "\u2014they", "*;", ";", "\uff1b", "\u061b"], ["\u2014it", "**;", "\u2014they", ";**", "*;", ";", "\uff1b", "\u2014he"], ["\u2014it", "\u2014they", ";", ";**", "\u2014he", "**;", "*;", "\u2014"], ["\u2014it", "\u2014they", ";", ";**", "\u2014he", "**;", "\u2014is", "\u2014"], ["\u2014it", ";", ";**", "\u2014they", "\u2014he", "**;", "*;", "\uff1b"], ["\u2014it", ";", ";**", "-it", "\u5b83\u662f", "\u2014they", "\u2014he", "**;"], ["\u2014it", ";", ";**", "**;", "*;", "\uff1b", "\u061b", "\u5b83\u662f"], ["\u2014it", ";", ";**", "\uff1b", "**;", "\u061b", "*;", "__;"], ["\u2014it", ";", "\u2014", ";**", "\u2014I", " \u2014", "**;", "\uff1b"], ["\u2014it", ";", "\u2014", " \u2014", ";**", " ;", "\u2014I", "\uff1b"], [";", "\u2014it", "\u2014", ";**", " ;", "\u061b", "\uff1b", "\u2014I"], ["\u2014it", ";", "\u2014", "\u2014I", " ;", "\u2014you", "\u2014is", " \u2014"], [";", "\u2014it", "\u2014", "\u2014I", ";**", "\u2014you", "\u061b", "\u2014in"]], "p": [[0.6356, 0.2064, 0.0591, 0.0169, 0.0169, 0.0091, 0.0059, 0.0043], [0.3823, 0.2627, 0.2319, 0.0517, 0.0517, 0.0062, 0.0023, 0.0005], [0.562, 0.3409, 0.0862, 0.0055, 0.0033, 0.0005, 0.0004, 0.0003], [0.9146, 0.0229, 0.0042, 0.0033, 0.0018, 0.0018, 0.0014, 0.0011], [0.4768, 0.3277, 0.0174, 0.0163, 0.0119, 0.0112, 0.0087, 0.0082], [0.3496, 0.1551, 0.0174, 0.0136, 0.012, 0.0088, 0.0073, 0.0057], [0.4839, 0.1476, 0.0241, 0.0241, 0.02, 0.0156, 0.0114, 0.0065], [0.762, 0.0278, 0.0158, 0.0085, 0.0062, 0.0045, 0.0033, 0.0033], [0.7062, 0.0129, 0.0084, 0.0078, 0.0078, 0.0065, 0.0051, 0.0048], [0.5206, 0.1162, 0.019, 0.0102, 0.0084, 0.007, 0.0054, 0.004], [0.7504, 0.0544, 0.0129, 0.0057, 0.0054, 0.0048, 0.0048, 0.0045], [0.1986, 0.1866, 0.0645, 0.0502, 0.0237, 0.0223, 0.0099, 0.0077], [0.1787, 0.0899, 0.0399, 0.0147, 0.0114, 0.0089, 0.0089, 0.0084], [0.4554, 0.0188, 0.0121, 0.0121, 0.0089, 0.0074, 0.0069, 0.0065], [0.7046, 0.1781, 0.0039, 0.0037, 0.0035, 0.0027, 0.0017, 0.0015], [0.4713, 0.1965, 0.0092, 0.0052, 0.0049, 0.0049, 0.0038, 0.0032], [0.2936, 0.1387, 0.0273, 0.0129, 0.0094, 0.0089, 0.0078, 0.0069], [0.04, 0.0275, 0.0258, 0.0214, 0.0214, 0.0138, 0.0108, 0.0108], [0.055, 0.0355, 0.026, 0.0202, 0.0168, 0.0148, 0.0131, 0.0131], [0.247, 0.1498, 0.0158, 0.0131, 0.0116, 0.0066, 0.0066, 0.0055], [0.1833, 0.0866, 0.0141, 0.0141, 0.0103, 0.0059, 0.0059, 0.0052], [0.0424, 0.0374, 0.0242, 0.0177, 0.0121, 0.0074, 0.0065, 0.0051], [0.2298, 0.1681, 0.0845, 0.0166, 0.0107, 0.0084, 0.0074, 0.0065], [0.4504, 0.0347, 0.0326, 0.0106, 0.0088, 0.0064, 0.0057, 0.005], [0.2284, 0.0397, 0.0226, 0.02, 0.0176, 0.0089, 0.0078, 0.0078], [0.1477, 0.0273, 0.0146, 0.0146, 0.0129, 0.0074, 0.0074, 0.0069], [0.0848, 0.0259, 0.0178, 0.0157, 0.0089, 0.0074, 0.007, 0.007], [0.5893, 0.0122, 0.0095, 0.0089, 0.0074, 0.0065, 0.0061, 0.0061], [0.2087, 0.0386, 0.0182, 0.0171, 0.0142, 0.0125, 0.0118, 0.0118], [0.0786, 0.0575, 0.0289, 0.0255, 0.0255, 0.024, 0.0225, 0.0187], [0.0896, 0.0743, 0.0655, 0.0616, 0.0397, 0.0291, 0.0273, 0.0273], [0.1068, 0.0734, 0.0445, 0.0445, 0.0418, 0.0326, 0.0287, 0.0254], [0.0698, 0.0579, 0.0451, 0.031, 0.031, 0.0291, 0.0291, 0.0257], [0.0984, 0.0597, 0.034, 0.03, 0.0234, 0.0206, 0.0171, 0.0161], [0.0959, 0.0795, 0.0453, 0.0275, 0.0228, 0.0177, 0.0147, 0.0138], [0.1252, 0.0975, 0.0433, 0.0337, 0.0317, 0.0297, 0.0232, 0.0169], [0.1102, 0.0668, 0.052, 0.0431, 0.0405, 0.0381, 0.0217, 0.0191], [0.1016, 0.0954, 0.0743, 0.0374, 0.0351, 0.0273, 0.0257, 0.0257], [0.4459, 0.1277, 0.0684, 0.0415, 0.0323, 0.0222, 0.0222, 0.0196], [0.3943, 0.113, 0.0776, 0.0605, 0.0416, 0.0268, 0.0252, 0.0237], [0.4917, 0.0754, 0.0587, 0.0457, 0.0356, 0.0277, 0.0261, 0.0191], [0.569, 0.0873, 0.068, 0.0412, 0.0283, 0.0195, 0.0152, 0.0118], [0.6247, 0.1086, 0.0453, 0.0242, 0.0242, 0.0147, 0.013, 0.013], [0.507, 0.1282, 0.0881, 0.0345, 0.0185, 0.0153, 0.0135, 0.0135], [0.5288, 0.1945, 0.0383, 0.0181, 0.015, 0.0141, 0.011, 0.0075], [0.4306, 0.1398, 0.0514, 0.0312, 0.013, 0.013, 0.0122, 0.0115], [0.2949, 0.1229, 0.07, 0.0258, 0.0258, 0.0189, 0.0189, 0.0177], [0.1382, 0.1382, 0.0892, 0.0576, 0.0396, 0.029, 0.024, 0.0187], [0.4651, 0.2197, 0.1038, 0.0337, 0.0337, 0.0262, 0.0116, 0.0103], [0.4615, 0.1924, 0.1322, 0.0625, 0.0379, 0.0334, 0.0109, 0.0085], [0.6067, 0.1354, 0.1195, 0.0725, 0.0235, 0.0162, 0.0111, 0.0041], [0.957, 0.0106, 0.0106, 0.0083, 0.005, 0.005, 0.0016, 0.0005], [0.975, 0.0108, 0.0045, 0.004, 0.0024, 0.001, 0.0005, 0.0003], [0.9773, 0.0096, 0.0045, 0.0035, 0.0021, 0.0005, 0.0003, 0.0003], [0.9703, 0.0157, 0.0065, 0.0019, 0.0009, 0.0009, 0.0008, 0.0006], [0.9982, 0.0007, 0.0004, 0.0002, 0.0001, 0.0001, 0.0001, 0.0], [0.983, 0.0124, 0.0031, 0.0004, 0.0002, 0.0002, 0.0002, 0.0001], [0.6442, 0.3448, 0.0063, 0.0021, 0.0009, 0.0009, 0.0004, 0.0001], [0.9878, 0.011, 0.0004, 0.0003, 0.0001, 0.0001, 0.0001, 0.0], [0.8924, 0.1066, 0.0003, 0.0002, 0.0002, 0.0001, 0.0, 0.0], [0.4998, 0.4998, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.7282, 0.2679, 0.003, 0.0001, 0.0001, 0.0001, 0.0001, 0.0], [0.9005, 0.0949, 0.0042, 0.0001, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Kotlin": [159133, 146819, 112116, 17315, 38690, 39037, 41708, 91020, 95072, 155857, 135354, 65350, 82698, 116161, 144273, 106230, 80048, 44868, 64838, 117517, 120595, 60973, 63029, 139101, 83139, 30337, 23194, 43423, 22911, 12584, 26793, 58633, 21116, 23256, 33219, 16700, 23183, 19951, 30661, 27080, 35435, 24997, 15211, 15146, 13926, 34479, 17697, 16423, 9855, 10845, 12039, 9898, 12480, 11298, 15371, 12106, 4985, 3407, 3612, 3451, 5602, 4331, 1777]}}, {"pos": 418, "top": [[".", ",", ";", "\u00a0\u00a0", "\u2013", "<|endoftext|>", "\u2022", ":"], ["  \n", "\u00ad", "\u00ac", ";", "\u00a0\u00a0", "\u2014\"", " \u00ad", "\u2014"], [".", ";", ",", "[", "\u2013", "\"", "\u00a0\u00a0", "  \n"], ["---</", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Blowjob", " milfs", " cumshot", " ;;^", " Shemale", "\u318d"], ["\u001f", "\u25a0\u25a0", "\u06c0", "\u25a0", "\u318d", " \u25a0", "utable", "\u00ac"], ["utable", "\u001f", "  \t\n", "\u25a0\u25a0", "\u00a0\u00a0", " **\u201c", "NDAR", "telefon"], ["\u001f", "  \n", "\u00ac", "\u25a0\u25a0", "\u25a0", " \u2019", "\u00a0\u00a0", "utable"], ["utable", "  \n", "   \n", "\u00ac", "\u001f", "  \t\n", " [`", "\u318d"], ["  \n", " [`", "   \n", "utable", "\u00ac", "\u00a0\u00a0", "\u00adi", "  \t\n"], ["\u00a0\u00a0", "\u00ac", "\u2014\"", " \u00ad", "\u00ad", "\u001f", "\u00adi", "\u06c0"], [" \u00ad", "\u00ac", "\u00a0\u00a0", " \u2014", "\u001f", "\u00ad", "  \n", "\u2014\""], ["utable", "\u318d", "\u001f", " _$", "\u00adi", "<|fim_suffix|>", "ly", "\u06c0"], ["utable", "\u318d", "ly", "\u001f", "\u00adi", "\u00ac", "\u514b\u65af\u5766", "\u0169"], [" \u00ad", "\u001f", "utable", " transformative", "\u2014even", "\u00adi", "\u2014\"", " effortlessly"], [" \u00ad", " \u2014", "\u2014\"", "\u2014even", "\u00ad", " truly", "\u2014", "\u2014and"], [" \u2014", " \u00ad", "\u2014", "\u2014even", "\u00ad", "\u2014and", "\u2014\"", "\u2014\u2014"], [" \u00ad", "\u00ad", " \u2014", "\u2014", " truly", "\u2014\"", "&nbsp", " genuinely"], [" \u00ad", "&nbsp", " incredibly", "\u00ad", "<|endoftext|>", "\u2014\"", " truly", " \u2014"], ["\u2014even", " \u2014", " incredibly", "\u2014\"", " \u00ad", " relentlessly", "\u2014and", " genuinely"], [" \u2014", "\u2014even", " incredibly", " truly", "<|endoftext|>", " hugely", " genuinely", "\u2014\""], ["<|endoftext|>", " \u2014", "\u2014even", " truly", " hugely", " genuinely", " incredibly", "\u2014and"], [" incredibly", " profoundly", " relentlessly", " **\u2014", " brutally", "huge", " unimagin", " terrifying"], [" incredibly", " truly", " relentlessly", " profoundly", " hugely", " utterly", " brilliantly", " brutally"], [" incredibly", " truly", " hugely", " relentlessly", " utterly", " profoundly", " wildly", " brilliantly"], [" incredibly", "  \n\n", " hugely", "&nbsp", " utterly", " truly", "\u2014even", " wildly"], [" incredibly", " wildly", " truly", " hugely", " profoundly", " utterly", " relentlessly", " insanely"], [" incredibly", " wildly", " truly", " profoundly", " hugely", " relentlessly", " utterly", " brutally"], [" incredibly", " truly", " wildly", " hugely", " deeply", " utterly", " profoundly", " relentlessly"], [" incredibly", " truly", " wildly", " deeply", " profoundly", " hugely", " relentlessly", " relentless"], [" incredibly", " truly", " wildly", " \u2014", " deeply", " huge", "\u2014even", " massive"], [" incredibly", " truly", " huge", " wildly", " even", " massive", " deeply", " massively"], [" incredibly", " truly", " wildly", " huge", " massive", " even", " deeply", " incredible"], [" incredibly", " truly", " wildly", " deeply", " relentlessly", " massively", " even", " massive"], [" incredibly", " truly", " relentlessly", "\u2014even", " wildly", " brutally", " deeply", " massively"], [" incredibly", " truly", " relentlessly", " massively", " brutally", " wildly", " deeply", " relentless"], [" incredibly", " relentlessly", " brutally", " relentless", " truly", " massively", " wildly", " brutal"], [" incredibly", " brutally", " relentlessly", " insanely", " massively", " relentless", " horrific", " wildly"], [" incredibly", " impossible", " insanely", " massively", " relentlessly", " relentless", " wildly", " brutally"], [" impossible", " incredibly", " insanely", " absurd", " relentlessly", " relentless", " massively", " ridiculously"], [" impossible", " incredibly", " absurd", " insanely", " Impossible", " imposs", "Impossible", " fundamentally"], [" impossible", " absurd", " incredibly", " Impossible", " insanely", " imposs", "Impossible", " fundamentally"], [" impossible", " absurd", " Impossible", " imposs", "Impossible", " incredibly", " insanely", " improbable"], [" impossible", " absurd", " Impossible", " imposs", " incredibly", " insanely", "Impossible", " improbable"], [" impossible", " Impossible", " absurd", "Impossible", " imposs", " improbable", " insanely", " incredibly"], [" impossible", " absurd", " improbable", " Impossible", " imposs", "Impossible", " fundamentally", " incredibly"], [" impossible", " absurd", " fundamentally", " improbable", " imposs", " Impossible", " incredibly", " outright"], [" impossible", " improbable", " fundamentally", " absurd", " genuinely", " imposs", " insanely", " ridiculous"], [" impossible", " fundamentally", " improbable", " arguably", " absurd", " dangerously", " potentially", " incredibly"], [" fundamentally", " **", " improbable", " impossible", " arguably", " dangerously", " absurd", " unsustainable"], ["\u5927\u6982\u7387", " arguably", " fundamentally", " outright", " improbable", " potentially", " dangerously", " likely"], [";**", "\u5927\u6982\u7387", "\u5b83\u662f", " fundamentally", "\u2014it", "\u5b83\u5c06", "\u7b80\u76f4\u662f", "\u5b83\u5728"], ["\u5b83\u662f", "\u5b83\u5728", "\u5b83", "\u5927\u6982\u7387", " it", "\u5b83\u662f\u4e00\u4e2a", " fundamentally", "\u2014it"], ["\u5b83\u662f", "\u2014it", " it", "\u5b83\u5728", "\u5b83", " violates", "\u5b83\u662f\u4e00\u4e2a", "\u5927\u6982\u7387"], ["\u5b83\u662f", " violates", " it", "\u5b83\u5728", "\u2014it", "\u5b83", " fundamentally", "\u5b83\u662f\u4e00\u4e2a"], ["\u5b83\u662f", " it", "\u5b83", "\u5b83\u5728", " violates", "\u5b83\u662f\u4e00\u4e2a", "\u5b83\u5bf9", "\u5b83\u5c06"], ["\u5b83\u662f", " it", "\u5b83", "\u5b83\u5728", " \u043e\u043d\u043e", "\u5b83\u5c06", "\u5b83\u662f\u4e00\u4e2a", "\u5b83\u5bf9"], [" it", "\u5b83\u662f", "\u5b83", " \u043e\u043d\u043e", "\u5b83\u5728", "\u5b83\u662f\u4e00\u4e2a", "\u5b83\u5c06", "\u5b83\u5bf9"], [" it", "\u5b83\u662f", "\u5b83", " \u043e\u043d\u043e", "\u5b83\u5728", "\u5b83\u662f\u4e00\u4e2a", "\u5b83\u5c06", "\u5b83\u4ee5"], [" it", "\u5b83\u662f", "\u5b83", " \u043e\u043d\u043e", "\u5b83\u5728", "\u5b83\u662f\u4e00\u4e2a", "\u5b83\u4ee5", "\u5b83\u5c06"], [" it", "\u5b83\u662f", "\u5b83", " \u043e\u043d\u043e", " It", "\u5b83\u5728", "\u5b83\u662f\u4e00\u4e2a", "\tit"], [" it", "\u5b83\u662f", "\u5b83", " It", " \u043e\u043d\u043e", "\u5b83\u5728", "_it", "\u5b83\u662f\u4e00\u4e2a"], [" it", "\u5b83\u662f", " It", "it", " \u043e\u043d\u043e", "-it", "\u5b83", " statistically"], [" it", " It", "\u5b83\u662f", "it", " statistically", " \u043e\u043d\u043e", "-it", "\tit"]], "p": [[0.5373, 0.2876, 0.1058, 0.0441, 0.0034, 0.0032, 0.0018, 0.0017], [0.2624, 0.1164, 0.1028, 0.0623, 0.0313, 0.0202, 0.0168, 0.0131], [0.3798, 0.261, 0.2033, 0.0514, 0.013, 0.0115, 0.0095, 0.0051], [0.0147, 0.0122, 0.0074, 0.0061, 0.0048, 0.0042, 0.0042, 0.004], [0.1173, 0.0432, 0.0246, 0.0204, 0.0192, 0.0169, 0.014, 0.014], [0.0281, 0.016, 0.0055, 0.0049, 0.0046, 0.0032, 0.003, 0.0028], [0.0395, 0.0349, 0.0308, 0.0145, 0.012, 0.0113, 0.0106, 0.0088], [0.0782, 0.0537, 0.0136, 0.0082, 0.0082, 0.0077, 0.0077, 0.0057], [0.3194, 0.1037, 0.0521, 0.0337, 0.0217, 0.014, 0.0132, 0.0103], [0.1109, 0.0716, 0.0632, 0.0594, 0.0124, 0.0117, 0.0091, 0.008], [0.2275, 0.1886, 0.054, 0.0328, 0.0255, 0.024, 0.0225, 0.0187], [0.0155, 0.0145, 0.0078, 0.0053, 0.0044, 0.0021, 0.002, 0.0018], [0.026, 0.0096, 0.0079, 0.007, 0.0037, 0.0029, 0.0029, 0.0027], [0.0193, 0.0071, 0.0071, 0.0071, 0.0067, 0.0063, 0.0052, 0.0052], [0.1105, 0.0556, 0.0461, 0.0382, 0.0279, 0.018, 0.018, 0.0159], [0.2803, 0.2634, 0.0356, 0.023, 0.023, 0.0203, 0.0168, 0.0123], [0.1502, 0.0552, 0.0261, 0.0203, 0.0203, 0.0179, 0.0131, 0.0123], [0.0869, 0.034, 0.0171, 0.0151, 0.0118, 0.0118, 0.0118, 0.0104], [0.0488, 0.0278, 0.0278, 0.0231, 0.0231, 0.0169, 0.0158, 0.0149], [0.0535, 0.0367, 0.0345, 0.0324, 0.0286, 0.0237, 0.0197, 0.0153], [0.296, 0.0454, 0.0228, 0.0189, 0.0167, 0.0157, 0.0157, 0.0115], [0.0303, 0.0184, 0.0119, 0.0068, 0.0064, 0.0064, 0.0064, 0.0056], [0.1297, 0.0225, 0.0225, 0.0212, 0.0165, 0.0106, 0.0088, 0.0088], [0.1046, 0.056, 0.0264, 0.0233, 0.0206, 0.016, 0.0142, 0.0142], [0.0912, 0.052, 0.0296, 0.0261, 0.0246, 0.0204, 0.0191, 0.0149], [0.261, 0.0243, 0.0214, 0.0214, 0.0189, 0.0157, 0.013, 0.013], [0.2602, 0.0375, 0.0274, 0.0201, 0.0201, 0.0177, 0.0156, 0.0138], [0.2631, 0.0854, 0.0403, 0.0295, 0.023, 0.0191, 0.0179, 0.0148], [0.4526, 0.0575, 0.0421, 0.0199, 0.0175, 0.0165, 0.0145, 0.0121], [0.4686, 0.0464, 0.0409, 0.0264, 0.0193, 0.016, 0.0151, 0.0151], [0.4654, 0.063, 0.0433, 0.0382, 0.0247, 0.0247, 0.0159, 0.0132], [0.5874, 0.0426, 0.0228, 0.0214, 0.0201, 0.0201, 0.0157, 0.0115], [0.5198, 0.0454, 0.0243, 0.0228, 0.0228, 0.0178, 0.0157, 0.0139], [0.337, 0.0623, 0.0428, 0.0355, 0.0294, 0.0277, 0.026, 0.026], [0.3686, 0.044, 0.0365, 0.0343, 0.0303, 0.0267, 0.0208, 0.0184], [0.3144, 0.0619, 0.0426, 0.04, 0.0331, 0.0292, 0.0275, 0.0201], [0.3385, 0.0488, 0.043, 0.0335, 0.0335, 0.0335, 0.0296, 0.0245], [0.289, 0.0938, 0.0645, 0.0345, 0.0286, 0.0269, 0.0253, 0.0237], [0.5192, 0.1158, 0.0376, 0.0228, 0.0157, 0.0115, 0.0115, 0.0115], [0.7315, 0.0364, 0.0284, 0.0221, 0.0195, 0.0111, 0.0104, 0.0076], [0.7281, 0.0411, 0.0249, 0.0249, 0.022, 0.0111, 0.0104, 0.0059], [0.8028, 0.0275, 0.0242, 0.0167, 0.013, 0.013, 0.013, 0.0054], [0.7977, 0.0273, 0.0273, 0.0146, 0.0129, 0.0114, 0.0114, 0.0089], [0.8026, 0.04, 0.0353, 0.0311, 0.0114, 0.0079, 0.0069, 0.0054], [0.7585, 0.0378, 0.0229, 0.0157, 0.0123, 0.0108, 0.0108, 0.0079], [0.5785, 0.0538, 0.0288, 0.0288, 0.0175, 0.0136, 0.0106, 0.01], [0.3324, 0.0654, 0.0578, 0.051, 0.02, 0.0146, 0.0137, 0.0137], [0.1353, 0.1353, 0.0724, 0.0439, 0.0321, 0.0302, 0.025, 0.0143], [0.1406, 0.1241, 0.0707, 0.0664, 0.0378, 0.026, 0.0216, 0.0168], [0.2232, 0.1195, 0.0681, 0.0413, 0.0302, 0.0267, 0.0162, 0.0134], [0.1946, 0.0979, 0.0716, 0.0462, 0.028, 0.0263, 0.0193, 0.017], [0.6624, 0.033, 0.0291, 0.0273, 0.0227, 0.0156, 0.0156, 0.0156], [0.7964, 0.0509, 0.0165, 0.0137, 0.0094, 0.0065, 0.0061, 0.0057], [0.7292, 0.0466, 0.0266, 0.0161, 0.0151, 0.0111, 0.0086, 0.0071], [0.8938, 0.0647, 0.0127, 0.006, 0.0028, 0.0022, 0.0015, 0.0015], [0.4571, 0.4571, 0.0701, 0.0045, 0.004, 0.0013, 0.0011, 0.0009], [0.6475, 0.2699, 0.0602, 0.0056, 0.0049, 0.0018, 0.0014, 0.0014], [0.7747, 0.1729, 0.0386, 0.0052, 0.0028, 0.0008, 0.0007, 0.0005], [0.8528, 0.1154, 0.0201, 0.0045, 0.0021, 0.0008, 0.0004, 0.0004], [0.9946, 0.0036, 0.0009, 0.0003, 0.0002, 0.0001, 0.0, 0.0], [0.9994, 0.0004, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9993, 0.0003, 0.0002, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9995, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Kotlin": [239421, 228229, 180256, 80854, 114541, 124850, 110553, 162081, 146271, 228436, 213811, 114275, 148317, 181743, 225093, 196729, 189061, 173577, 188005, 198218, 221046, 109061, 125863, 197951, 94473, 66157, 77749, 118553, 52345, 52172, 82452, 79113, 108758, 97658, 151482, 141306, 138593, 122842, 142684, 154148, 134618, 130725, 130091, 108572, 101732, 128289, 136994, 133697, 121114, 94327, 85656, 75251, 80645, 69396, 50148, 54777, 20186, 13366, 14603, 7844, 5473, 2852, 1247]}}, {"pos": 419, "top": [[",", ".", "\u2013", ";", "\u00a0", "\u2026.", " \u2013", "\u2026"], ["\u2013", ".", ",", " \u2013", "\u2013and", "ting", ".\u2013", ";"], [",", ".", "\u2013", "\u2026", "\u2026.", "\u2026..", ".\u2013", " \u2013"], [" Shemale", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Blowjob", " milfs", " Pubbl", " Strec", "\uff0a\uff0a\uff0a\uff0a", "ropy"], ["ting", "rogen", "ropy", "repid", "(IT", "rost", "ters", "zer"], ["ting", ".", "(IT", ",", " \u201d", "rogen", "!", "ters"], ["ting", " \u201d", ".", " \u2019", "!", "\u2019s", "ters", "!\u201d"], ["ting", "inerary", "!", ".", "!.", "te", ",", "rem"], [".", "!", ",", "ting", "!.", "!\u201d", ".\u201d", "\u2019s"], [",", ".", "!", ";", "\u2013", "\u00a0", "ting", " "], [",", ".", "!", "ting", " ", "\u2019s", "\u00a0", "te"], ["ting", " effortlessly", " **", " crucial", " truly", " pretty", " barely", " fairly"], ["ting", " crucial", " effortlessly", " barely", " seamlessly", " incredibly", " pretty", " truly"], ["ting", " effortlessly", " seamlessly", " incredibly", " crucial", " truly", " even", " pretty"], [" effortlessly", " truly", " even", " just", " arguably", " barely", " incredibly", " heavily"], [" effortlessly", " incredibly", " arguably", " truly", " just", " wildly", " even", " \u2019"], [",", " effortlessly", " arguably", " incredibly", " myriad", " truly", " even", " just"], [" savvy", " effortlessly", " myriad", " arguably", " seamlessly", "\u307e\u308b\u3067", " hugely", " sprawling"], [" arguably", " myriad", " largely", " effortlessly", " hugely", "\u2014even", " heavily", " sprawling"], [" \u2014", " myriad", " arguably", " hugely", " largely", " heavily", " vastly", " swiftly"], ["<|endoftext|>", " \u2014", " \n\n", " myriad", "  \n\n", " swiftly", "\u2014", " heavily"], [" hugely", " effortlessly", " heavily", " arguably", " wildly", " seamlessly", " uniquely", " swiftly"], [" heavily", " hugely", " dramatically", " arguably", " effortlessly", " wildly", " quickly", " swiftly"], [" heavily", " ultimately", " much", " largely", " hugely", " dramatically", " uniquely", " quickly"], [" heavily", " hugely", " \n\n", " arguably", " vastly", " swiftly", " wildly", " myriad"], [" hardware", " heavily", " hugely", " incredibly", " seamlessly", " wildly", " tech", " globally"], [" seamlessly", " tech", " hardware", " heavily", " technology", " arguably", " wildly", " globally"], [" \n\n", " heavily", " arguably", " tech", " complex", " technology", " hugely", " wildly"], [" tech", " technology", " heavily", " hardware", " technologies", " complex", " modern", " incredibly"], [" technology", " tech", " ___", " technologies", " modern", " complex", " hardware", " heavily"], [" technology", " complex", " modern", " tech", " technologies", " heavily", " hardware", " technical"], [" technology", " complex", " modern", " heavily", " technical", " tech", " hybrid", " technologies"], [" technology", " complex", " modern", " heavily", " hybrid", " fast", " focused", " technical"], [" technology", " tech", " workflows", " hardware", " technologies", " optimized", " complex", " seamlessly"], [" tech", " technology", " hardware", " optimized", " seamlessly", " complex", " hybrid", " modular"], [" \u2014", " \u2026", " hardware", " technology", " tech", " complex", " optimized", " hybrid"], [" optimized", " hardware", " tech", " technology", " technical", " complex", " \u2014", " specialized"], [" optimized", " directly", " hardware", " direct", " technical", " Direct", " technology", " optimization"], [" directly", " optimized", " hardware", " technical", " direct", " architecture", " specialized", " technology"], [" hardware", " optimized", " directly", " architecture", " direct", " technical", " technology", " minimalist"], [" hardware", " optimized", " GPU", " directly", " engine", " software", " tech", " technology"], [" hardware", " GPU", " optimized", " architecture", " engineering", " engine", " technology", " tech"], [" hardware", " optimized", " architecture", " GPU", " engine", " technology", " Direct", " tech"], [" hardware", " directly", " architecture", " direct", " Direct", " bypass", " optimized", " tech"], [" bypass", " direct", " hardware", " directly", " Direct", " architecture", " tech", " engineering"], [" bypass", " direct", " hardware", " directly", " Direct", " architecture", " engineering", " optimized"], [" hardware", " bypass", " direct", " fundamentally", " directly", " entirely", " Direct", " engineering"], [" fundamentally", " bypass", " hardware", " entirely", " directly", " direct", " strictly", " engineering"], [" fundamentally", " bypass", " directly", " direct", " entirely", " essentially", " heavily", " **"], [" fundamentally", " impossible", "\u5927\u6982\u7387", " unsustainable", " imposs", " improbable", " likely", "\u8fdd\u80cc"], ["\u8fdd\u80cc", " impossible", " violates", " unsustainable", " imposs", "\u5927\u6982\u7387", " fundamentally", " unrealistic"], ["\u8fdd\u80cc", " violates", " fundamentally", " impossible", "\u5927\u6982\u7387", " Impossible", " unsustainable", " contrad"], ["\u8fdd\u80cc", " violates", " contrad", "\u8fdd\u53cd\u4e86", " contradict", " violating", "\u8fdd\u53cd", " fundamentally"], [" violates", "\u8fdd\u80cc", " contrad", " contradict", "\u8fdd\u53cd\u4e86", " violating", "\u5927\u6982\u7387", " violate"], [" contrad", " contradict", " violates", "\u8fdd\u80cc", "\u5bf9\u6297", " contradictory", " requires", " contradiction"], [" contrad", " contradict", " violates", "\u8fdd\u80cc", " requires", " contradictory", "\u5bf9\u6297", " contradictions"], [" violates", " contrad", "\u8fdd\u80cc", " contradict", " requires", " contradictory", " violating", "\u8fdd\u53cd"], [" violates", " contrad", " contradict", "\u8fdd\u80cc", " requires", " contradictory", " violating", " violate"], [" violates", " contrad", " requires", " contradict", "\u8fdd\u80cc", " aggressively", " contradictory", " violating"], [" violates", " contrad", " fighting", " requires", " is", " contradict", " statistically", " fights"], [" is", " violates", " contrad", " requires", " fighting", " actively", " contradict", " fundamentally"], ["\u2019s", " violates", " fights", " contrad", "'s", " is", " requires", " fundamentally"], ["\u2019s", "'s", " violates", " fights", " contrad", " is", " requires", " borders"]], "p": [[0.5583, 0.4348, 0.0033, 0.0011, 0.0008, 0.0003, 0.0003, 0.0002], [0.5428, 0.1555, 0.1004, 0.0572, 0.0113, 0.0113, 0.006, 0.0039], [0.3598, 0.3175, 0.2802, 0.014, 0.0075, 0.0045, 0.004, 0.004], [0.0149, 0.0116, 0.0058, 0.0058, 0.0026, 0.0024, 0.0021, 0.0021], [0.292, 0.0094, 0.0065, 0.0061, 0.005, 0.005, 0.005, 0.0044], [0.3065, 0.0323, 0.0112, 0.0093, 0.0072, 0.005, 0.0036, 0.0034], [0.6948, 0.0287, 0.0185, 0.0073, 0.0053, 0.003, 0.0027, 0.0025], [0.2736, 0.0186, 0.0186, 0.0154, 0.0078, 0.006, 0.006, 0.0037], [0.6322, 0.0856, 0.0552, 0.0335, 0.0315, 0.0191, 0.0062, 0.0045], [0.9569, 0.0088, 0.0029, 0.002, 0.0014, 0.0011, 0.0005, 0.0004], [0.5309, 0.1185, 0.0409, 0.0248, 0.0248, 0.0104, 0.0081, 0.0076], [0.079, 0.0121, 0.0114, 0.0083, 0.0057, 0.0057, 0.0057, 0.0057], [0.0864, 0.0247, 0.0218, 0.0132, 0.0097, 0.0086, 0.008, 0.0075], [0.0479, 0.0351, 0.0166, 0.0146, 0.0129, 0.01, 0.0094, 0.0078], [0.0472, 0.0417, 0.0223, 0.0185, 0.0153, 0.0135, 0.0119, 0.0105], [0.0352, 0.0331, 0.0292, 0.0166, 0.0147, 0.0114, 0.0114, 0.0101], [0.052, 0.0405, 0.0217, 0.018, 0.0159, 0.0159, 0.0132, 0.0116], [0.0203, 0.0158, 0.008, 0.008, 0.008, 0.0045, 0.0043, 0.0035], [0.0245, 0.0203, 0.014, 0.014, 0.0096, 0.009, 0.008, 0.0055], [0.0286, 0.0196, 0.0144, 0.0135, 0.0127, 0.0119, 0.0105, 0.0099], [0.572, 0.0236, 0.0173, 0.0072, 0.0068, 0.0053, 0.0039, 0.0036], [0.0308, 0.0225, 0.0176, 0.0165, 0.0128, 0.01, 0.0094, 0.0083], [0.0376, 0.0353, 0.0214, 0.0201, 0.0189, 0.0189, 0.0178, 0.0178], [0.0299, 0.0218, 0.0218, 0.0141, 0.0132, 0.0132, 0.0117, 0.0103], [0.0273, 0.0257, 0.0241, 0.02, 0.0156, 0.0129, 0.0121, 0.0114], [0.0171, 0.0171, 0.0141, 0.0141, 0.0117, 0.0117, 0.011, 0.0086], [0.0169, 0.0169, 0.014, 0.0096, 0.009, 0.008, 0.007, 0.007], [0.0854, 0.0457, 0.0216, 0.0168, 0.0168, 0.0131, 0.0116, 0.0109], [0.0615, 0.0542, 0.035, 0.0273, 0.0273, 0.0176, 0.0146, 0.0121], [0.1234, 0.0748, 0.0514, 0.0332, 0.0259, 0.0243, 0.0214, 0.013], [0.1635, 0.0531, 0.0468, 0.0413, 0.0235, 0.0195, 0.0134, 0.0098], [0.0916, 0.0522, 0.0297, 0.0192, 0.0159, 0.0149, 0.0103, 0.0103], [0.0584, 0.0455, 0.0377, 0.0244, 0.019, 0.0122, 0.0108, 0.009], [0.0955, 0.0544, 0.0544, 0.0374, 0.033, 0.0273, 0.0241, 0.0156], [0.0595, 0.0493, 0.0361, 0.0299, 0.0281, 0.0206, 0.0182, 0.0141], [0.0756, 0.0553, 0.038, 0.0261, 0.0203, 0.0179, 0.0158, 0.0116], [0.1212, 0.0572, 0.0254, 0.0224, 0.0198, 0.0175, 0.0175, 0.0154], [0.1186, 0.1046, 0.0265, 0.0249, 0.0233, 0.0206, 0.0182, 0.0133], [0.1039, 0.0976, 0.0491, 0.0263, 0.0232, 0.0159, 0.015, 0.0141], [0.1016, 0.0511, 0.0374, 0.0177, 0.0129, 0.0129, 0.0121, 0.0114], [0.2387, 0.05, 0.0285, 0.0252, 0.0184, 0.0173, 0.0173, 0.0173], [0.2849, 0.0437, 0.041, 0.034, 0.0249, 0.0234, 0.0234, 0.0206], [0.1916, 0.0799, 0.0354, 0.0202, 0.0178, 0.0178, 0.0178, 0.0167], [0.0859, 0.0521, 0.049, 0.046, 0.0381, 0.0358, 0.0262, 0.0192], [0.1514, 0.104, 0.0863, 0.0715, 0.0338, 0.028, 0.0117, 0.0117], [0.105, 0.0987, 0.0871, 0.0496, 0.032, 0.0234, 0.0142, 0.0098], [0.0752, 0.0517, 0.0486, 0.0277, 0.0229, 0.0158, 0.0139, 0.0115], [0.073, 0.0686, 0.0472, 0.0416, 0.0286, 0.0269, 0.0119, 0.0112], [0.166, 0.0835, 0.0539, 0.042, 0.0271, 0.0225, 0.0164, 0.0164], [0.2186, 0.0911, 0.0335, 0.0278, 0.0216, 0.0203, 0.0169, 0.0149], [0.2579, 0.1381, 0.0949, 0.0837, 0.0328, 0.0308, 0.0272, 0.0255], [0.3248, 0.1739, 0.0931, 0.064, 0.0413, 0.025, 0.025, 0.0183], [0.4195, 0.4195, 0.0268, 0.0209, 0.0127, 0.0099, 0.0077, 0.006], [0.6269, 0.1399, 0.0749, 0.0312, 0.0147, 0.0095, 0.0079, 0.0079], [0.3571, 0.2454, 0.1687, 0.1159, 0.0332, 0.0201, 0.0108, 0.0108], [0.3676, 0.1968, 0.1736, 0.082, 0.0724, 0.0235, 0.0111, 0.0081], [0.601, 0.1722, 0.0718, 0.0493, 0.0384, 0.0059, 0.0043, 0.0038], [0.5847, 0.1898, 0.0698, 0.0544, 0.02, 0.0078, 0.0074, 0.0045], [0.5568, 0.1408, 0.0665, 0.0665, 0.0191, 0.0116, 0.0079, 0.0079], [0.1861, 0.1129, 0.0936, 0.0879, 0.0826, 0.0471, 0.0209, 0.0196], [0.2658, 0.1827, 0.1423, 0.0557, 0.0462, 0.0298, 0.0232, 0.0218], [0.8502, 0.0291, 0.02, 0.0176, 0.0166, 0.0146, 0.0101, 0.0054], [0.9949, 0.001, 0.0007, 0.0006, 0.0005, 0.0005, 0.0002, 0.0002]], "ranks": {"Kotlin": [222875, 169140, 114810, 20420, 30982, 72408, 56768, 119502, 77870, 178779, 120776, 65097, 42332, 34190, 132249, 116248, 65346, 73674, 93999, 189911, 177242, 38243, 19393, 93000, 29337, 3278, 3908, 12885, 8218, 5993, 11356, 17079, 22058, 2967, 6080, 3733, 1008, 1015, 1416, 1748, 2673, 3435, 1865, 1902, 4687, 6449, 4847, 5754, 20251, 26075, 43211, 44050, 63191, 44764, 17600, 24909, 11102, 11581, 16210, 9199, 7649, 5412, 4631]}}, {"pos": 420, "top": [[" \u2013", "\u2013", "i", "\u2026", "\u2026.", "  \n", "**\u2013", "\u2026\u2026"], [" \u2013", "**\u2013", "  \r\n", "\u2013", "i", "\u2026\u201d", "\uff0e", "\u2026**"], [" \u2013", "\u2013", "\u2026\u201d", "\u2026", "**\u2013", "i", "\u2026**", "\uff0e"], ["  \r\n", "\u2019**", "\uff0d", " **\u2018", "\u2026**", " \u2019", "**\u2013", " \r\n"], ["i", "  \r\n", "\u2026\u201d", " \u2019", "  \n\n", "  \n", "\u2026", "\uff0e"], ["\u2026\u201d", "i", "  \r\n", "\u2026", " \u2019", "  \n", "  \n\n", "\u2019t"], ["i", "\u2026\u201d", "\u2026", "  \n", "\u2019", " \u2019", "  \n\n", "  \r\n"], ["i", "  \n", "\u2026\u201d", "\u2026", "  \r\n", "  \n\n", "\u2019", "\uff0e"], ["\u2026\u201d", "  \n\n", " \u2019", "\u2019", "\u2026", "  \n", "i", " \u2018"], [" \u2019", "\u2026\u201d", "  \n\n", "\u2026", " \u2013", "i", " \u2018", "  \n"], [" \u2019", "  \n\n", "\u2026\u201d", "i", "  \n", "\u2019", " \u2013", "\u2026"], [" \u2019", "  \r\n", "\u2019**", "  \n\n", "\u2026\u201d", " **\u2018", "i", "\u2026**"], [" \u2019", "\u2026\u201d", "\u2019**", "\u2026**", "  \r\n", "  \n\n", "i", " **\u2018"], [" \u2019", "\u2026\u201d", "i", "  \n\n", "  \r\n", "\u2019**", "\u2019t", "\u2026**"], [" \u2019", "  \n\n", "i", " \u00ad", "\u2019", " \u2018", "  \n", "\u2019t"], [" \u2019", " \u2018", " \u00ad", "i", "  \n\n", "\u2019", " \u2013", " \u201c"], [" \u2019", "i", " \u2018", " \u2013", " \u00ad", "\u2019", "\u2026", "\u2013"], [" \u2019", " \u00ad", "i", "\u2019t", " \u2018", "  \r\n", "\u2026\u201d", "\u2013\u2013"], [" \u2019", "i", " \u00ad", "\u2026", "\u2026\u201d", "\u2019t", "\u2013\u2013", " \u2018"], [" \u2019", "i", " \u00ad", " \u2018", " incredibly", " \u201c", "\u2019t", "\u2014and"], ["i", " \u2019", " \u00ad", " incredibly", "  \n\n", "\u2014and", "<|endoftext|>", " truly"], [" incredibly", " \u2019", " scary", " smack", " freaking", " wildly", " pretty", " nasty"], [" incredibly", " \u2019", " hugely", " wildly", " truly", " smack", " utterly", " huge"], [" incredibly", " \u2019", " hugely", " \u00ad", " wildly", " truly", " utterly", " barely"], ["  \n\n", " \r\n\r\n", " incredibly", " \u00ad", " hugely", "\r\n\r\n", " \r\n", " wildly"], [" incredibly", " wildly", " hugely", " utterly", " \u2019", " gritty", " busted", " freaking"], [" incredibly", " wildly", " hugely", " utterly", " gritty", " \u2019", " horrific", " arguably"], [" incredibly", " wildly", " hugely", " \u2019", " truly", " arguably", " utterly", " barely"], [" incredibly", " wildly", " hugely", " huge", " utterly", " arguably", " truly", " \u2019"], [" incredibly", " wildly", " hugely", " huge", " \u2019", " arguably", " \n  \n", " massive"], [" incredibly", " huge", " wildly", " massive", " truly", " hugely", " barely", " arguably"], [" incredibly", " huge", " wildly", " massive", " truly", " hugely", " barely", " arguably"], [" incredibly", " wildly", " arguably", " huge", " massive", " barely", " truly", " relentless"], [" incredibly", " arguably", " wildly", " relentless", " hugely", " huge", " horrific", " truly"], [" incredibly", " arguably", " wildly", " relentless", " impossible", " horrific", " hugely", " insanely"], [" incredibly", " impossible", " arguably", " relentless", " wildly", " horrific", " insanely", " relentlessly"], [" incredibly", " impossible", " insanely", " relentless", " wildly", " horrific", " arguably", " ridiculously"], [" incredibly", " impossible", " insanely", " ridiculously", " relentless", " unlikely", " wildly", " extremely"], [" impossible", " incredibly", " Impossible", " imposs", " insanely", " improbable", " unlikely", " absurd"], [" impossible", " incredibly", " Impossible", " imposs", " improbable", "Impossible", " absurd", " unlikely"], [" impossible", " Impossible", " incredibly", " imposs", " improbable", " engineering", " absurd", "Impossible"], [" impossible", " imposs", " Impossible", " improbable", "Impossible", " incredibly", " engineering", " absurd"], [" impossible", " imposs", " Impossible", " improbable", " incredibly", "Impossible", " engineering", " unrealistic"], [" impossible", " Impossible", " imposs", "Impossible", " improbable", " incredibly", " unrealistic", " absurd"], [" impossible", " improbable", " imposs", " Impossible", "Impossible", " incredibly", " unlikely", " engineering"], [" impossible", " improbable", " imposs", " Impossible", " engineering", " incredibly", " unrealistic", "Impossible"], [" impossible", " improbable", " imposs", " Impossible", " unlikely", " arguably", " unrealistic", " fundamentally"], [" impossible", " improbable", " fundamentally", " unlikely", " arguably", " imposs", " Impossible", " unrealistic"], [" impossible", " improbable", " fundamentally", " arguably", " unlikely", " unrealistic", " challenging", " unsustainable"], [" arguably", " improbable", " fundamentally", " impossible", "\u5927\u6982\u7387", " contradictory", " contradictions", " unrealistic"], [" impossible", " improbable", " unsustainable", "\u5927\u6982\u7387", " unrealistic", "Impossible", " contradictions", "\u8fdd\u80cc"], [" impossible", " improbable", "Impossible", " contradictory", " fundamentally", "\u8fdd\u80cc", "\u5927\u6982\u7387", " unrealistic"], [" contradictory", "\u8fdd\u80cc", " contradict", " improbable", " unrealistic", " fundamentally", " contradictions", " contrad"], [" contradictory", " contradict", " contradictions", " contrad", "\u8fdd\u80cc", " fundamentally", " contradiction", " hostile"], [" contradictory", " contradict", "\u5bf9\u6297", " contradictions", " conflicting", " contradiction", " contrad", "\u8fdd\u80cc"], [" contradictory", " contradict", "\u5bf9\u6297", " contradictions", " conflicting", " contradiction", "\u8fdd\u80cc", " contrad"], [" contradictory", " contradict", " battling", " fighting", "\u5bf9\u6297", " hostile", "\u8fdd\u80cc", " conflicting"], [" contradictory", " fighting", " contradict", " battling", " hostile", " contradictions", " contradiction", " conflicting"], [" contradictory", " fighting", " contradict", " battling", " hostile", " aggressively", " contradictions", " contradiction"], [" fighting", " contradictory", " battling", " fundamentally", " architectural", " statistically", "fight", " contradict"], [" fighting", " contradictory", " actively", " statistically", " fundamentally", " physically", " battling", " architectural"], [" fighting", " architect", " actively", " fundamentally", " statistically", " contradictory", " physically", " math"], [" architect", " actively", " fighting", " statistically", " physically", " fundamentally", " math", " contradictory"]], "p": [[0.9397, 0.053, 0.0044, 0.0008, 0.0006, 0.0002, 0.0002, 0.0001], [0.5828, 0.1892, 0.0894, 0.0199, 0.0199, 0.0155, 0.0107, 0.0094], [0.6299, 0.124, 0.0852, 0.0664, 0.0314, 0.0115, 0.0079, 0.0048], [0.3996, 0.1145, 0.0576, 0.0541, 0.0421, 0.0396, 0.0372, 0.0255], [0.4986, 0.1429, 0.1261, 0.0675, 0.0464, 0.0219, 0.0103, 0.0091], [0.3503, 0.1875, 0.1289, 0.0609, 0.0537, 0.0326, 0.0224, 0.0224], [0.4856, 0.1228, 0.0844, 0.0745, 0.0657, 0.0242, 0.0242, 0.0242], [0.3623, 0.1333, 0.1333, 0.0808, 0.0713, 0.0556, 0.0337, 0.018], [0.33, 0.257, 0.1071, 0.0736, 0.065, 0.0394, 0.0348, 0.0307], [0.2958, 0.1794, 0.1088, 0.0748, 0.066, 0.0583, 0.04, 0.0353], [0.2563, 0.2262, 0.1555, 0.0943, 0.0505, 0.0393, 0.0347, 0.0306], [0.557, 0.0754, 0.0665, 0.0587, 0.0403, 0.0314, 0.0277, 0.0191], [0.3806, 0.14, 0.075, 0.0661, 0.0584, 0.0401, 0.0354, 0.019], [0.4696, 0.0816, 0.072, 0.0495, 0.0437, 0.0385, 0.0249, 0.0182], [0.5256, 0.2191, 0.0554, 0.0459, 0.0109, 0.0096, 0.009, 0.009], [0.8368, 0.0472, 0.0324, 0.0269, 0.0105, 0.0072, 0.0072, 0.0056], [0.5162, 0.1389, 0.0616, 0.0579, 0.048, 0.0213, 0.02, 0.0146], [0.5006, 0.087, 0.0411, 0.0386, 0.0151, 0.0151, 0.0118, 0.0104], [0.2984, 0.1927, 0.0803, 0.023, 0.0216, 0.0216, 0.0149, 0.0116], [0.3583, 0.0751, 0.0585, 0.0333, 0.0276, 0.0131, 0.0123, 0.0108], [0.0741, 0.0741, 0.0542, 0.0241, 0.0241, 0.0165, 0.0129, 0.0121], [0.1148, 0.0509, 0.0226, 0.0212, 0.0187, 0.0146, 0.0137, 0.0129], [0.1323, 0.1243, 0.023, 0.023, 0.0148, 0.0139, 0.0123, 0.0116], [0.0675, 0.0596, 0.0264, 0.0248, 0.0233, 0.0182, 0.0151, 0.0141], [0.0937, 0.0502, 0.0416, 0.0304, 0.0268, 0.0252, 0.0237, 0.0209], [0.1285, 0.0392, 0.0392, 0.0197, 0.0135, 0.0135, 0.0112, 0.0106], [0.1341, 0.0463, 0.0339, 0.017, 0.0117, 0.0103, 0.0097, 0.0091], [0.1013, 0.0422, 0.0329, 0.029, 0.0187, 0.0176, 0.0165, 0.0146], [0.2107, 0.047, 0.0303, 0.0153, 0.0127, 0.0127, 0.0119, 0.0112], [0.2519, 0.0438, 0.022, 0.0182, 0.0161, 0.0125, 0.0118, 0.0111], [0.3175, 0.0552, 0.043, 0.0216, 0.0179, 0.0179, 0.014, 0.0109], [0.3506, 0.037, 0.037, 0.0239, 0.0186, 0.0136, 0.0136, 0.0128], [0.2599, 0.0274, 0.0242, 0.02, 0.0188, 0.0166, 0.0166, 0.0138], [0.3325, 0.035, 0.02, 0.0188, 0.0146, 0.0146, 0.0137, 0.0137], [0.2813, 0.0489, 0.018, 0.018, 0.0159, 0.0149, 0.0149, 0.0132], [0.3474, 0.0344, 0.0268, 0.0252, 0.0163, 0.0143, 0.0135, 0.0119], [0.3304, 0.0693, 0.0211, 0.0198, 0.0175, 0.0164, 0.0155, 0.0145], [0.3669, 0.1964, 0.0266, 0.0151, 0.0126, 0.0118, 0.0111, 0.0111], [0.769, 0.0631, 0.0193, 0.0141, 0.008, 0.0075, 0.0067, 0.0063], [0.8259, 0.0249, 0.0249, 0.022, 0.0071, 0.0063, 0.0059, 0.0046], [0.7779, 0.0283, 0.0283, 0.0235, 0.0086, 0.0076, 0.0067, 0.0056], [0.8394, 0.0369, 0.0287, 0.0093, 0.0093, 0.0093, 0.0053, 0.0037], [0.858, 0.0294, 0.0259, 0.0108, 0.007, 0.0062, 0.0045, 0.004], [0.8673, 0.0336, 0.0262, 0.018, 0.0096, 0.004, 0.004, 0.0038], [0.8647, 0.0203, 0.0179, 0.0158, 0.0062, 0.0062, 0.0055, 0.0048], [0.7659, 0.0337, 0.0262, 0.0204, 0.008, 0.0071, 0.0066, 0.0062], [0.664, 0.0793, 0.0227, 0.0201, 0.0122, 0.0095, 0.0095, 0.0074], [0.552, 0.0959, 0.0311, 0.0258, 0.0189, 0.0167, 0.013, 0.0101], [0.3309, 0.1379, 0.0738, 0.0371, 0.0212, 0.0165, 0.0165, 0.0137], [0.0952, 0.0895, 0.0895, 0.0615, 0.0423, 0.0423, 0.0397, 0.0273], [0.1047, 0.0815, 0.056, 0.0526, 0.0526, 0.0526, 0.0494, 0.0436], [0.1671, 0.084, 0.0789, 0.0696, 0.0696, 0.0615, 0.0422, 0.0373], [0.2523, 0.1965, 0.0928, 0.0529, 0.0387, 0.0301, 0.0266, 0.0266], [0.6189, 0.1075, 0.0396, 0.0272, 0.024, 0.024, 0.0212, 0.0187], [0.5926, 0.1924, 0.0625, 0.0334, 0.0295, 0.0295, 0.023, 0.0096], [0.6834, 0.1048, 0.034, 0.0265, 0.0206, 0.0182, 0.0161, 0.0161], [0.5509, 0.0746, 0.0512, 0.0452, 0.0311, 0.0311, 0.0201, 0.0201], [0.5405, 0.1206, 0.0939, 0.0444, 0.0237, 0.021, 0.021, 0.0144], [0.4948, 0.1606, 0.0591, 0.0522, 0.0358, 0.0169, 0.0149, 0.0132], [0.7542, 0.0619, 0.0426, 0.0095, 0.0095, 0.0084, 0.0084, 0.0084], [0.722, 0.0593, 0.0462, 0.028, 0.017, 0.016, 0.016, 0.0085], [0.323, 0.1959, 0.1049, 0.0636, 0.0598, 0.0411, 0.034, 0.0161], [0.4421, 0.0986, 0.0768, 0.0768, 0.0722, 0.0438, 0.0249, 0.0171]], "ranks": {"Kotlin": [154379, 70247, 75831, 17832, 28067, 30933, 63724, 80154, 117863, 140313, 125872, 79151, 79011, 85792, 166136, 138666, 132550, 103472, 144688, 168959, 172837, 117740, 142521, 200160, 167072, 113509, 103593, 131162, 91201, 79424, 88688, 117043, 138945, 95899, 114244, 56741, 38989, 38187, 34700, 49013, 40832, 37534, 33778, 29475, 30901, 46294, 47094, 42887, 55607, 70722, 103320, 83817, 82512, 36734, 14413, 10789, 4812, 4165, 6165, 3692, 4308, 2781, 2682]}}, {"pos": 421, "top": [[".", " \u200b\u200b", "\u00a0\u00a0", " \u00a0", ",", "  \n", " \u2013", "\u200b\u200b"], [" **\u2018", "  \n    \n", "  \r\n", "  \n", " \u2013**", " \u200b\u200b", "\u2019**", "   \n"], ["**\u2013", " **\u2018", "\u2019**", " \u2013**", " **\u2013", "\u2026..", " \u200b\u200b", "\u2026**"], [" Shemale", " **\u2018", " milfs", " Blowjob", " creampie", " cumshot", " pornstar", " fkk"], [" **\u2018", "  \n\n\n", "\u00a0\u00a0", "\u2019**", "  \n\n", " **\u201c", "\u0670", "\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0"], ["\u2019**", " **\u2018", "\u00a0\u00a0", " **\u201c", "\u00a0\u00a0\u00a0\u00a0", "\u0670", "  \n\n\n", "\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0"], ["\u2019**", " **\u2018", "  \n\n", "  \n\n\n", "  \n    \n", " **\u201c", "\u0670", " \u00a0"], [" **\u2018", "\u2019**", " **+", "  \n    \n", "  \n\n\n", " **\u201c", "  \n\n", " **'"], ["  \n    \n", "  \n\n", "\u2019**", "  \n\n\n", " **\u2018", " **+", "\u00adi", "   \n\n"], ["\u00adi", "  \n    \n", " proactive", " impactful", " transitioning", " showcasing", "\u5468\u906d", "\u0670"], ["  \n\n", " proactive", " transitioning", "\u00adi", " showcasing", "  \n    \n", " impactful", " transformative"], [" **\u2018", " **+", " impactful", "\u2019**", " proactive", " transformative", " showcasing", " **'"], [" impactful", " **\u2018", " proactive", " transformative", "\u2019**", " **+", " incentiv", " showcasing"], [" impactful", "\u2019**", " **\u2018", " transformative", " proactive", " transitioning", " incentiv", " **+"], [" impactful", " transitioning", " showcasing", " transformative", " incentiv", " showcased", " leveraging", " proactive"], [" incentiv", " impactful", " transitioning", " transformative", " leveraging", " showcasing", " overarching", " showcased"], [" transformative", " impactful", " leveraging", " incentiv", " transitioning", " sprawling", " nuanced", " proactive"], [" transformative", " **\u2018", "\u2019**", " impactful", " transitioning", " **+", " leveraging", " nuanced"], [" transformative", " impactful", " incentiv", " transitioning", " **\u2018", "\u2019**", " nuanced", " leveraging"], ["\u2019**", " **\u2018", " transformative", " **+", " impactful", " incentiv", " leveraging", " nuanced"], ["  \n\n", " **+", " transformative", "   \n\n", " aggressively", " sprawling", " burgeoning", "  \r\n\r\n"], [" **+", " MEDIAM", " !***", " freaking", "\u2019**", " transformative", " **\u2018", " impactful"], [" freaking", " sprawling", " aggressively", "\u2019**", " transformative", " egregious", " **\u2018", " wildly"], [" sprawling", " aggressively", " hugely", " wildly", " looming", " uncomfort", " relentlessly", " obsess"], ["  \n\n", "   \n\n", " \r\n\r\n", "  \r\n\r\n", " hugely", " \n\n", "  \n  \n", " wildly"], [" **+", " gritty", " wildly", " freaking", " egregious", " aggressively", " hugely", " spooky"], [" aggressively", " egregious", " wildly", " gritty", " sprawling", " obsess", " paranoia", " destabil"], [" wildly", " aggressively", " sprawling", " hugely", " obsess", " looming", " gritty", " egregious"], [" aggressively", " wildly", " paranoia", " destabil", " obsess", " egregious", " gritty", " paranoid"], [" aggressively", " wildly", " brutal", " destabil", " obsess", " paranoia", " paranoid", " hacking"], [" aggressively", " wildly", " brutal", " destabil", " obsess", " weird", " relentless", " aggressive"], [" aggressively", " wildly", " brutal", " horrific", " weird", " destabil", " relentlessly", " aggressive"], [" aggressively", " brutal", " destabil", " wildly", " relentlessly", " relentless", " horrific", " aggressive"], [" aggressively", " brutal", " destabil", " relentless", " relentlessly", " horrific", " wildly", " unsustainable"], [" aggressively", " relentlessly", " destabil", " relentless", " brutal", " horrific", " wildly", " obsess"], [" aggressively", " brutal", " horrific", " destabil", " unsustainable", " relentlessly", " relentless", " wildly"], [" aggressively", " brutal", " unsustainable", " horrific", " destabil", " absurd", " dangerously", " nasty"], [" aggressively", " unsustainable", " absurd", " sabot", " brutal", " horrific", " relentless", " insanely"], [" unsustainable", " absurd", " aggressively", " impossible", " horrific", " insanely", " relentlessly", " sabot"], [" absurd", " unsustainable", " impossible", " aggressively", " sabot", " dangerously", " destabil", " paranoid"], [" absurd", " unsustainable", " aggressively", " impossible", " sabot", " paranoid", " dangerous", " destructive"], [" aggressively", " absurd", " sabot", " unsustainable", " impossible", " destructive", " sabotage", " destabil"], [" aggressively", " absurd", " impossible", " unsustainable", " sabot", " destructive", " sabotage", " aggressive"], [" absurd", " aggressively", " impossible", " unsustainable", " destructive", " sabot", " aggressive", " ridiculous"], [" impossible", " aggressively", " absurd", " unsustainable", " aggressive", " ridiculous", " hostile", " sabotage"], [" aggressively", " impossible", " absurd", " hostile", " aggressive", " unsustainable", " stubborn", " sabotage"], [" hostile", " aggressively", " impossible", " sabotage", " aggressive", " absurd", " destructive", " unsustainable"], [" hostile", " aggressively", " sabotage", " aggressive", " destructive", " impossible", " antagon", " absurd"], [" hostile", " sabotage", " aggressively", " sabot", " aggressive", " destructive", " antagon", " dangerous"], [" hostile", " contradictions", " sabotage", " contradictory", " sabot", " antagon", " contradict", " aggressively"], [" sabotage", " hostile", "\u8fdd\u80cc", " contradictions", " sabot", " unsustainable", " contradictory", " unrealistic"], [" hostile", " sabotage", "\u8fdd\u80cc", " sabot", " contradictions", " contradictory", " unsustainable", " defiance"], [" hostile", "\u8fdd\u80cc", " sabotage", " contradictory", " contradict", " sabot", " contrad", " contradictions"], [" hostile", " contradictory", " sabotage", " contradict", " antagon", "\u8fdd\u80cc", " contradictions", " contrad"], ["\u5bf9\u6297", " contradictory", " contradict", " hostile", " conflicting", " contrad", " contradictions", " contradiction"], ["\u5bf9\u6297", " hostile", " contradictory", " contradict", " conflicting", " contradictions", " contradiction", " antagon"], [" hostile", "\u5bf9\u6297", " contradictory", " contradict", " antagon", " fighting", " conflicting", " contradictions"], [" hostile", " contradictory", "\u5bf9\u6297", " fighting", " contradict", " antagon", " contradictions", " conflicting"], [" hostile", " contradictory", " fighting", "\u5bf9\u6297", " antagon", " contradict", " dangerous", " contradictions"], [" hostile", " fighting", " contradictory", " dangerous", " antagon", "\u5bf9\u6297", " suicidal", " combating"], [" hostile", " fighting", " contradictory", " dangerous", " suicidal", " antagon", "\u5bf9\u6297", " combating"], [" hostile", " fighting", " contradictory", " dangerous", " suicidal", " contradict", " antagon", " combating"], [" hostile", " fighting", " contradictory", " suicidal", " dangerous", " contradict", " antagon", " insulting"]], "p": [[0.4814, 0.0612, 0.0371, 0.0212, 0.0199, 0.0175, 0.0175, 0.0121], [0.023, 0.0203, 0.0139, 0.0139, 0.0123, 0.0123, 0.0116, 0.0102], [0.1967, 0.0873, 0.068, 0.0439, 0.0283, 0.0235, 0.0207, 0.0195], [0.0306, 0.027, 0.0253, 0.0238, 0.0112, 0.0073, 0.0068, 0.0064], [0.0701, 0.0513, 0.0258, 0.0166, 0.0147, 0.0138, 0.0114, 0.0114], [0.131, 0.1156, 0.0701, 0.0453, 0.0177, 0.0166, 0.0122, 0.0122], [0.3322, 0.1474, 0.0615, 0.029, 0.0273, 0.0256, 0.0176, 0.0094], [0.1256, 0.0762, 0.0383, 0.0205, 0.011, 0.0097, 0.0075, 0.0059], [0.0746, 0.0452, 0.0331, 0.0292, 0.0274, 0.0147, 0.0147, 0.0101], [0.0375, 0.013, 0.0079, 0.0065, 0.0058, 0.0054, 0.0054, 0.004], [0.0544, 0.0424, 0.031, 0.0273, 0.0273, 0.0257, 0.0241, 0.02], [0.0855, 0.0626, 0.0404, 0.0335, 0.0261, 0.0168, 0.0116, 0.0102], [0.0678, 0.0678, 0.0341, 0.0341, 0.0283, 0.0234, 0.0161, 0.0118], [0.068, 0.0529, 0.0412, 0.0342, 0.0195, 0.0161, 0.0152, 0.0134], [0.0808, 0.0759, 0.0591, 0.0433, 0.0337, 0.0246, 0.0204, 0.0192], [0.084, 0.0509, 0.0373, 0.0137, 0.0129, 0.0114, 0.0094, 0.0083], [0.0515, 0.0401, 0.0333, 0.0333, 0.0276, 0.0243, 0.0229, 0.0229], [0.0307, 0.0254, 0.0239, 0.0198, 0.0198, 0.0128, 0.0128, 0.0128], [0.0347, 0.027, 0.0185, 0.0164, 0.0127, 0.0127, 0.012, 0.0113], [0.0514, 0.0293, 0.0189, 0.0157, 0.0115, 0.0108, 0.0095, 0.007], [0.1526, 0.0194, 0.0111, 0.0098, 0.0086, 0.0071, 0.0049, 0.0043], [0.0327, 0.0128, 0.0106, 0.0094, 0.0088, 0.0069, 0.0064, 0.0053], [0.0146, 0.0094, 0.0074, 0.0061, 0.0057, 0.0057, 0.0051, 0.0045], [0.0188, 0.0146, 0.0129, 0.0121, 0.0107, 0.0089, 0.0083, 0.0083], [0.4103, 0.0382, 0.0132, 0.0103, 0.0091, 0.0075, 0.0071, 0.0066], [0.0129, 0.0107, 0.0089, 0.0089, 0.0089, 0.0069, 0.0065, 0.0061], [0.0154, 0.012, 0.0112, 0.0106, 0.0088, 0.0073, 0.0068, 0.006], [0.0394, 0.0348, 0.0186, 0.0145, 0.0136, 0.012, 0.0113, 0.0094], [0.0241, 0.0227, 0.0146, 0.0146, 0.0137, 0.0129, 0.0121, 0.0121], [0.0309, 0.0273, 0.0166, 0.0156, 0.0156, 0.0129, 0.0121, 0.0107], [0.0606, 0.0417, 0.0253, 0.0174, 0.0163, 0.0163, 0.0135, 0.0135], [0.079, 0.051, 0.0329, 0.0213, 0.0213, 0.0188, 0.0166, 0.0166], [0.0906, 0.0276, 0.0276, 0.0259, 0.0229, 0.0202, 0.019, 0.013], [0.0929, 0.0412, 0.0302, 0.0266, 0.025, 0.0207, 0.0195, 0.0172], [0.1084, 0.033, 0.0292, 0.0242, 0.0213, 0.02, 0.0177, 0.0166], [0.1447, 0.047, 0.0268, 0.0251, 0.0236, 0.0236, 0.0236, 0.0162], [0.1445, 0.0389, 0.0343, 0.0267, 0.0236, 0.0184, 0.0184, 0.0184], [0.1188, 0.0597, 0.034, 0.0194, 0.0182, 0.0182, 0.0171, 0.0161], [0.0692, 0.065, 0.061, 0.037, 0.0254, 0.0225, 0.0175, 0.0175], [0.0731, 0.0687, 0.0502, 0.0502, 0.0345, 0.0223, 0.0223, 0.0197], [0.0723, 0.0563, 0.0529, 0.0387, 0.0387, 0.0301, 0.0301, 0.0283], [0.0987, 0.0769, 0.0528, 0.0496, 0.0466, 0.0341, 0.022, 0.0183], [0.1021, 0.0901, 0.0582, 0.0513, 0.0426, 0.0331, 0.0275, 0.0258], [0.1183, 0.1044, 0.0717, 0.0525, 0.0318, 0.0281, 0.0264, 0.0219], [0.1284, 0.1, 0.0883, 0.0346, 0.0253, 0.0223, 0.0163, 0.0163], [0.1086, 0.0701, 0.0581, 0.0513, 0.0331, 0.0258, 0.0228, 0.0201], [0.1069, 0.0735, 0.0505, 0.0347, 0.0326, 0.0306, 0.021, 0.0186], [0.1689, 0.0904, 0.0377, 0.0333, 0.0312, 0.0294, 0.0259, 0.0229], [0.3193, 0.0629, 0.0381, 0.0358, 0.0358, 0.0337, 0.0337, 0.0262], [0.192, 0.08, 0.0706, 0.0517, 0.0402, 0.0244, 0.0229, 0.0202], [0.2143, 0.1669, 0.1012, 0.0478, 0.0478, 0.0272, 0.0226, 0.0155], [0.3121, 0.2145, 0.1013, 0.0542, 0.0187, 0.0176, 0.0165, 0.0146], [0.5186, 0.1157, 0.0795, 0.0547, 0.0376, 0.0258, 0.0157, 0.0138], [0.7904, 0.0735, 0.0239, 0.0211, 0.0113, 0.0088, 0.0088, 0.0077], [0.8864, 0.0389, 0.0389, 0.0098, 0.0077, 0.0053, 0.0022, 0.0019], [0.4326, 0.2315, 0.1803, 0.0517, 0.019, 0.0168, 0.0115, 0.0115], [0.6802, 0.1518, 0.1043, 0.0125, 0.0076, 0.0076, 0.0067, 0.0052], [0.773, 0.0923, 0.0635, 0.0233, 0.0125, 0.0076, 0.0036, 0.0036], [0.83, 0.0531, 0.0413, 0.0365, 0.0104, 0.0044, 0.0034, 0.0023], [0.492, 0.4342, 0.0216, 0.0116, 0.0062, 0.0055, 0.0033, 0.0026], [0.7688, 0.1944, 0.0124, 0.0067, 0.0028, 0.0024, 0.0013, 0.0008], [0.7816, 0.1744, 0.0143, 0.0068, 0.0046, 0.0014, 0.0013, 0.0005], [0.7966, 0.1384, 0.0146, 0.01, 0.0083, 0.0019, 0.0016, 0.0012]], "ranks": {"Kotlin": [148613, 69881, 24082, 31055, 45746, 77380, 104196, 116730, 71885, 163289, 158914, 103078, 86364, 90762, 175779, 69210, 74678, 83163, 96974, 83288, 143837, 92178, 111427, 181950, 127696, 71317, 71761, 109101, 67594, 56220, 60717, 73643, 103546, 60933, 90822, 52580, 38469, 35815, 39600, 37715, 29240, 28768, 23691, 19088, 21825, 29732, 28056, 30555, 38018, 54506, 43559, 55508, 56867, 41518, 25393, 24120, 15205, 18497, 27601, 14114, 20252, 21339, 24957]}}, {"pos": 422, "top": [[".", ",", "\u00a0\u00a0", "*.", "\u2022", ",.", " \u2022", "\""], [" @{", "  \n\n", " |\u2022", " '@", " [@", "[\"@", "  \n  \n", "\"@"], [".", ",", ",.", "[", " \u201a", "\u00a0\u00a0", " \u2013,", "\u201a"], [" Shemale", " **\u25a0", "\uff3f\uff3f", " '&#", " <+", " |\u2022", " !***", " **\u2022"], [" \n\n\n\n", "\"#", "\n\n\n\n", "\"@", "\u4e28", " #@", " \u251c", " #-"], [" \n\n\n\n", "\u00a0\u00a0", " |\u2022", "\u4e28", "\u0627", " **\u2022", " #-", " \u200e"], ["  \n\n", "\n\n\n\n", "\u00a0\u00a0", " \n\n\n\n", "  \n", "\u4e28", " |\u2022", " \u25a0"], [" #@", " |\u2022", " #-", " \u201a", " #\"", " \u251c", " @{", "  \n\n"], [" #@", "  \n\n", " |\u2022", " #-", " #\"", "  \n\n\n", "\"#", " @{"], [" |\u2022", " \u00ad", "\u00a0\u00a0", " #@", " #-", " hostile", " \u251c", " @{"], [" #@", "  \n\n", "@", "\u00a0\u00a0", " \u00ad", " #-", " hostile", " \\/"], [" **\u2022", " hostile", " #@", " <+", " <-", " --->", " |\u2022", " #-"], [" hostile", " **\u2022", " |\u2022", " <+", " --->", " adversaries", " #-", " ---"], [" |\u2022", " hostile", " <+", " **\u2022", " transformative", " aggressively", " adversaries", " paranoid"], [" aggressively", " hostile", " akin", " myriad", " transformative", " menacing", " foes", " aggressive"], [" aggressively", " myriad", " hostile", " arcane", " |\u2022", " <+", " egregious", " atop"], [" myriad", " hostile", " aggressively", " akin", " transformative", " atop", " relentless", " foes"], [" hostile", " aggressively", " myriad", " transformative", " foes", " akin", " relentless", " defensively"], [" aggressively", " myriad", " hostile", " transformative", " foes", " relentless", " akin", " egregious"], [" myriad", " aggressively", " atop", " hostile", " burgeoning", " akin", " |\u2022", " uncomfort"], [" myriad", " aggressively", " atop", " hostile", " toward", "  \n\n", " burgeoning", " uncomfort"], [" **\u25a0", " **\u2022", " atop", " |\u2022", " hostile", " aggressively", " myriad", " <+"], [" myriad", " aggressively", " atop", " horrific", " hostile", " uncomfort", " egregious", " toward"], [" myriad", " aggressively", " uncomfort", " hostile", " toward", " atop", " horrific", " relentless"], ["  \n\n", " myriad", "\n\n", " \n\n", "\r\n\r\n", " \r\n\r\n", " uncomfort", " aggressively"], [" myriad", " aggressively", " hostile", " uncomfort", " horrific", " egregious", " paranoid", " \ufffd"], [" hostile", " aggressively", " myriad", " uncomfort", " paranoid", " egregious", " horrific", " atop"], [" hostile", " aggressively", " myriad", " uncomfort", " --", " toward", " paranoid", " horrific"], [" hostile", " aggressively", " paranoid", " myriad", " hacker", " arcane", " paranoia", " horrific"], [" hostile", " aggressively", " paranoid", " myriad", " hacker", " arcane", " paranoia", " horrific"], [" hostile", " aggressively", " aggressive", " relentless", " absurd", " horrific", " paranoid", " myriad"], [" hostile", " aggressively", " aggressive", " horrific", " relentless", " absurd", " bizarre", " paranoid"], [" hostile", " aggressively", " relentless", " horrific", " paranoid", " absurd", " aggressive", " hacker"], [" hostile", " aggressively", " relentless", " horrific", " relentlessly", " paranoid", " aggressive", " absurd"], [" hostile", " aggressively", " horrific", " relentless", " relentlessly", " paranoid", " paranoia", " absurd"], [" hostile", " aggressively", " horrific", " relentless", " relentlessly", " aggressive", " hacker", " paranoid"], [" hostile", " aggressively", " horrific", " relentless", " aggressive", " paranoid", " relentlessly", " hostility"], [" hostile", " aggressively", " relentless", " horrific", " relentlessly", " hostility", " aggressive", " absurd"], [" hostile", " aggressively", " relentless", " relentlessly", " absurd", " hostility", " horrific", " aggressive"], [" hostile", " aggressively", " relentless", " hostility", " relentlessly", " aggressive", " absurd", " stubborn"], [" hostile", " aggressively", " hostility", " relentless", " aggressive", " engineering", " relentlessly", " paranoid"], [" hostile", " aggressively", " hostility", " aggressive", " engineering", " relentless", " relentlessly", " antagon"], [" hostile", " aggressively", " aggressive", " hostility", " antagon", " engineering", " relentlessly", " relentless"], [" hostile", " aggressively", " aggressive", " hostility", " advers", " antagon", " engineering", " relentless"], [" hostile", " aggressively", " aggressive", " hostility", " engineering", " antagon", " advers", " relentless"], [" hostile", " aggressively", " hostility", " aggressive", " antagon", " engineering", " advers", " enemy"], [" hostile", " hostility", " aggressively", " aggressive", " antagon", " enemy", " advers", " enemies"], [" hostile", " hostility", " aggressively", " aggressive", " enemy", " nature", " antagon", " advers"], [" hostile", " hostility", " aggressive", " aggressively", " enemy", " antagon", " humanity", " enemies"], [" hostile", " hostility", " humanity", " physics", " hardware", " nature", " reality", " biology"], [" hostile", " humanity", " hardware", " survival", " sabotage", " biology", " surviv", " capitalism"], [" hardware", " physics", " biology", ".**", " against", " survival", " technology", " toward"], [" hardware", " physics", " Hardware", "Hardware", " biology", "\u786c\u4ef6", " \u062a\u062c\u0627\u0647", "hardware"], [" hardware", " against", " toward", "Hardware", "\u786c\u4ef6", "hardware", " terhadap", " Hardware"], [" hardware", " against", " toward", " terhadap", " Hardware", "Hardware", " CPU", "hardware"], [" hardware", " GPU", " CPU", " Hardware", "Hardware", "hardware", " physics", " toward"], [" hardware", " GPU", " CPU", "Hardware", " physics", " Hardware", "hardware", "GPU"], [" hardware", " toward", " GPU", " CPU", "Hardware", " Hardware", "hardware", "GPU"], [" hardware", " toward", " GPU", " CPU", " physics", "Hardware", " Hardware", "hardware"], [" hardware", " toward", " GPU", " CPU", " performance", " Hardware", " physics", "Hardware"], [" hardware", " toward", " GPU", " CPU", " physics", " performance", " to", " Hardware"], [" to", " hardware", " toward", " physics", " Android", " performance", " GPU", " battery"], [" to", " toward", " hardware", " physics", " towards", " performance", " against", " Android"]], "p": [[0.3481, 0.0443, 0.0345, 0.0324, 0.0252, 0.0184, 0.0105, 0.0072], [0.0813, 0.0674, 0.0463, 0.0319, 0.0281, 0.0264, 0.0248, 0.0248], [0.2436, 0.1388, 0.0374, 0.0351, 0.0257, 0.0241, 0.0213, 0.0176], [0.0344, 0.0209, 0.0196, 0.0173, 0.0173, 0.0173, 0.0127, 0.0127], [0.0704, 0.0401, 0.0276, 0.0229, 0.019, 0.019, 0.019, 0.0167], [0.1103, 0.0217, 0.0169, 0.014, 0.0132, 0.0132, 0.0103, 0.0103], [0.0493, 0.0319, 0.0319, 0.0219, 0.0171, 0.0141, 0.0133, 0.0133], [0.0488, 0.0315, 0.0278, 0.023, 0.0158, 0.0131, 0.0109, 0.0109], [0.0566, 0.0343, 0.0267, 0.0236, 0.0222, 0.0152, 0.0126, 0.0126], [0.1284, 0.0417, 0.0223, 0.0174, 0.0174, 0.0087, 0.0087, 0.0064], [0.0387, 0.0364, 0.0364, 0.0342, 0.0321, 0.0161, 0.0152, 0.0126], [0.0304, 0.0209, 0.0163, 0.0135, 0.0112, 0.0112, 0.0099, 0.0087], [0.0292, 0.0201, 0.0122, 0.0108, 0.0061, 0.0058, 0.0054, 0.0051], [0.0134, 0.0118, 0.0098, 0.0092, 0.0059, 0.0043, 0.0041, 0.0035], [0.0429, 0.0158, 0.0102, 0.0102, 0.0066, 0.0066, 0.0051, 0.0048], [0.0168, 0.0108, 0.0095, 0.0079, 0.0074, 0.0074, 0.0062, 0.0062], [0.0374, 0.0273, 0.0241, 0.0146, 0.0083, 0.0083, 0.0061, 0.0054], [0.037, 0.0348, 0.0186, 0.0094, 0.0094, 0.0088, 0.0078, 0.0073], [0.0233, 0.0219, 0.016, 0.0071, 0.0063, 0.0063, 0.0063, 0.0055], [0.0762, 0.017, 0.0103, 0.0086, 0.008, 0.008, 0.0063, 0.0063], [0.0529, 0.0161, 0.0151, 0.0111, 0.0104, 0.0081, 0.0076, 0.0063], [0.0113, 0.0113, 0.0088, 0.0069, 0.0065, 0.0065, 0.0065, 0.0061], [0.0292, 0.0166, 0.0129, 0.0095, 0.0089, 0.0084, 0.0078, 0.0078], [0.0591, 0.0262, 0.0232, 0.0192, 0.014, 0.0091, 0.0085, 0.0071], [0.2022, 0.0617, 0.0424, 0.0257, 0.0213, 0.0156, 0.0146, 0.0121], [0.0314, 0.0295, 0.0203, 0.0179, 0.0123, 0.0108, 0.0096, 0.0096], [0.0448, 0.0421, 0.0199, 0.0175, 0.0113, 0.0106, 0.0094, 0.0088], [0.0696, 0.0654, 0.0397, 0.0155, 0.0146, 0.0137, 0.0114, 0.01], [0.07, 0.0399, 0.0201, 0.0166, 0.0138, 0.0122, 0.0122, 0.0107], [0.06, 0.0388, 0.0183, 0.0134, 0.0126, 0.0104, 0.0104, 0.0104], [0.0857, 0.0553, 0.018, 0.0169, 0.014, 0.0131, 0.0123, 0.0116], [0.0614, 0.0478, 0.0212, 0.0199, 0.0199, 0.0187, 0.0165, 0.0137], [0.0829, 0.0253, 0.0197, 0.0197, 0.0197, 0.0197, 0.0127, 0.0105], [0.0634, 0.0634, 0.041, 0.0264, 0.016, 0.0142, 0.0142, 0.011], [0.0893, 0.0695, 0.0329, 0.029, 0.0187, 0.0187, 0.0121, 0.0114], [0.1489, 0.0621, 0.0354, 0.0312, 0.0139, 0.0122, 0.0115, 0.0115], [0.3715, 0.0732, 0.0286, 0.0223, 0.0127, 0.0127, 0.0112, 0.0087], [0.4682, 0.0559, 0.0193, 0.0141, 0.0117, 0.0103, 0.0091, 0.0091], [0.4845, 0.048, 0.0257, 0.0156, 0.0137, 0.0114, 0.0107, 0.0089], [0.632, 0.0357, 0.0245, 0.0123, 0.0116, 0.0096, 0.008, 0.0055], [0.822, 0.0141, 0.0133, 0.0067, 0.0059, 0.0046, 0.0036, 0.0025], [0.7843, 0.0252, 0.0163, 0.0099, 0.0068, 0.006, 0.0044, 0.0041], [0.7605, 0.0379, 0.0168, 0.0168, 0.0066, 0.0051, 0.0042, 0.004], [0.7074, 0.0512, 0.0214, 0.013, 0.0079, 0.0074, 0.0057, 0.0054], [0.5966, 0.0432, 0.0279, 0.0231, 0.0124, 0.0116, 0.0091, 0.0062], [0.6356, 0.0297, 0.0279, 0.0192, 0.0116, 0.0097, 0.0071, 0.0062], [0.7682, 0.0338, 0.017, 0.011, 0.0085, 0.0066, 0.0062, 0.0036], [0.6727, 0.0245, 0.023, 0.0131, 0.0102, 0.0096, 0.008, 0.007], [0.8153, 0.0297, 0.0062, 0.0052, 0.0046, 0.004, 0.0035, 0.0028], [0.3039, 0.0266, 0.0207, 0.0207, 0.0142, 0.0134, 0.0111, 0.0076], [0.0539, 0.0348, 0.0128, 0.0113, 0.0078, 0.0078, 0.0073, 0.0073], [0.0589, 0.0381, 0.0381, 0.0149, 0.0131, 0.0109, 0.0085, 0.008], [0.3337, 0.0399, 0.0166, 0.0166, 0.0147, 0.0147, 0.0129, 0.0122], [0.4039, 0.0453, 0.0311, 0.0228, 0.0177, 0.0167, 0.0157, 0.0157], [0.6004, 0.0384, 0.0339, 0.0318, 0.0318, 0.0318, 0.0248, 0.0181], [0.6289, 0.0964, 0.0585, 0.0456, 0.0313, 0.0123, 0.0108, 0.009], [0.5084, 0.1651, 0.0688, 0.0287, 0.0253, 0.0223, 0.0154, 0.0127], [0.3916, 0.305, 0.1271, 0.0364, 0.0195, 0.0172, 0.0118, 0.0092], [0.372, 0.3283, 0.1066, 0.0646, 0.0346, 0.0077, 0.0077, 0.0068], [0.8338, 0.0776, 0.0252, 0.0135, 0.0082, 0.0072, 0.0064, 0.0056], [0.7531, 0.0618, 0.0618, 0.0227, 0.0201, 0.0177, 0.0095, 0.0045], [0.7762, 0.1051, 0.0438, 0.0183, 0.0071, 0.0049, 0.0041, 0.003], [0.9192, 0.0458, 0.0058, 0.0048, 0.0026, 0.0021, 0.0011, 0.001]], "ranks": {"Kotlin": [92320, 41865, 55861, 5180, 8412, 8565, 18753, 29820, 43968, 78245, 87388, 61933, 45630, 39119, 82475, 36418, 27037, 26925, 39706, 77161, 107704, 70123, 84991, 113908, 93548, 47901, 40933, 54302, 29534, 21884, 38979, 45583, 31238, 47956, 78189, 34673, 34408, 27022, 24800, 22897, 19321, 18314, 16741, 13527, 18670, 25132, 30626, 27706, 34940, 25538, 42390, 26194, 18243, 33463, 20511, 2434, 228, 187, 210, 155, 96, 20, 16]}}, {"pos": 423, "top": [[".", ",", "\u2013", " \u2013", "\u00a0", ";", ":", ",."], ["\u2013", " \u2013", "\u2013and", ".", ",", ".\u2013", " \u2013,", "\u200b\u200b"], [",", ".", "\u2013", " \u2013", "\u2013and", ";", ".\u2013", "\u00a0"], [" milfs", " Shemale", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Guta", " Blowjob", "\ufffd\ufffd", "*\u201c.", " cittadin"], [".", ",", "\u2018s", "\u200b\u200b", "\u00a0", "\u2013and", ".\u2013", "&("], [",", "\u2013and", "\u2018s", ".\u2013", ".", "\u2013", "\u00a0", "!:"], ["\u2018", "\u2018s", "\u2013and", ".\u2013", "\u2013", ".", "\u00a0", "\u200b\u200b"], ["\u2013and", "\u2018s", "\u2013", "\u2018", ".\u2013", ",", "\u00a0", "-and"], ["\u2013and", "\u00a0", "\u2013", ",", "\u2018", ".\u2013", "\u2018s", "."], ["\u2013", ",", "\u2013and", "\u00a0", ".\u2013", "\u2013\u2013", " \u2013", ";"], ["\u00a0", "\u2013", "&", "\u2013and", ",", "-", " \u2013", "@"], ["ive", " junk", " fellow", " uncomfort", "lessly", " guts", "!--", " wrench"], ["ive", " junk", " --", " vibes", " fellow", " transformative", " uncomfort", " alliances"], [" junk", " transformative", "\u2013and", " vibes", "!--", " booze", " funky", " burgeoning"], [" --", "--", " aggressively", " burgeoning", " myriad", " folks", " genuinely", " sprawling"], [" sprawling", " burgeoning", " --", " myriad", " genuinely", " aggressively", "\u52a8\u8f84", " transformative"], [" myriad", " burgeoning", "\u2013and", " genuinely", " folks", " sprawling", " aggressively", " mundane"], [" myriad", " burgeoning", "\u2013and", " savvy", " aggressively", " sprawling", " booze", " transformative"], ["\u2014even", " myriad", " aggressively", " burgeoning", " booze", "\u2013and", " savvy", "\u54ea\u6015\u662f"], [" myriad", " burgeoning", "\u2014even", " genuinely", "\u54ea\u6015\u662f", " aggressively", "\u2013and", " uncomfort"], [" myriad", " burgeoning", " --", "\u2014even", "\u5373\u4fbf", " genuinely", " aggressively", " outright"], [" ;;^", " **\u2022", " !***", "\u52a8\u8f84", " **\u25a0", "\\uD", "\u54ea\u6015\u662f", " matchups"], [" myriad", " --", " ``", " burgeoning", " ;;^", "\u52a8\u8f84", " mundane", "\u5546\u52a1\u670d\u52a1"], [" --", " myriad", " ``", " burgeoning", " {{--<", " aggressively", " uncomfort", " mundane"], [" --", " myriad", " \n\n", " \r\n\r\n", "\\u", " burgeoning", " &#", " genuinely"], [" --", " myriad", " aggressively", " burgeoning", " mundane", " sprawling", " foundational", " transformative"], [" --", " myriad", " aggressively", " burgeoning", " sprawling", " mundane", " infrastructure", " foundational"], [" --", " myriad", " \n\n", " aggressively", " modern", " burgeoning", " much", " sprawling"], [" myriad", " aggressively", " --", " technology", " modern", " tech", " sprawling", " infrastructure"], [" technology", " myriad", " modern", " infrastructure", " aggressively", " tech", " technologies", " --"], [" technology", " modern", " myriad", " even", " aggressively", " much", " tech", " massive"], [" modern", " technology", " even", " much", " massive", " .", " aggressively", " traditional"], [" modern", " technology", " even", " aggressively", " traditional", " fundamentally", " myriad", " massive"], [" modern", " technology", " fundamentally", " technologies", " traditional", " aggressively", " tech", " technological"], [" technology", " tech", " modern", " traditional", " fundamentally", " myriad", " technologies", " mainstream"], [" technology", " hardware", " tech", " traditional", " technologies", " technological", " modern", " mainstream"], [" technology", " traditional", " hardware", " tech", " technologies", " software", " mainstream", " modern"], [" technology", " traditional", " hardware", " software", " tech", " modern", " technologies", " infrastructure"], [" technology", " hardware", " traditional", " software", " ergonom", " tech", " technological", " technologies"], [" technology", " hardware", " software", " technologies", " technological", " physics", " tech", " traditional"], [" technology", " hardware", " software", " technologies", " tech", " engineering", " technological", " physics"], [" technology", " software", " hardware", " technologies", " engineering", " physics", " tech", " systems"], [" technology", " software", " hardware", " technologies", " physics", " engineering", " ergonom", " systems"], [" technology", " software", " hardware", " technologies", " physics", " systems", " workflows", " engineering"], [" technology", " software", " hardware", " physics", " technologies", " workflows", " systems", " optimization"], [" technology", " hardware", " physics", " software", " technologies", " workflows", " systems", " traditional"], [" hardware", " technology", " physics", " technologies", " workflows", " inherently", " software", " ecosystem"], [" technology", " hardware", " technologies", " physics", " inherently", " constraints", " fundamentals", " workflows"], [" hardware", " physics", " technology", " technologies", " ecosystem", " workflows", " constraints", " fundamentals"], [" physics", " hardware", " technology", " reality", " ecosystem", " realities", " constraints", " technologies"], [" survival", " physics", " profitability", " hardware", " technology", " reality", " economics", " realities"], [" physics", " hardware", " CPU", " profitability", " technology", " survival", "CPU", " lifecycle"], [" physics", " hardware", " CPU", " profitability", " survival", " performance", " longevity", " reality"], [" hardware", " CPU", " physics", "hardware", "Hardware", " profitability", "CPU", " Hardware"], [" hardware", " CPU", " physics", " runtime", "hardware", " GPU", " performance", "CPU"], [" hardware", " CPU", " physics", " Android", " GPU", " runtime", " JVM", "hardware"], [" Android", " hardware", " physics", " GPU", " JVM", "Android", " Kotlin", " CPU"], [" Android", " hardware", " GPU", " JVM", " CPU", "Android", " physics", " battery"], [" physics", " hardware", " Android", " GPU", " JVM", " CPU", "Android", " battery"], [" hardware", " physics", " Android", " Kotlin", " GPU", " garbage", " performance", " battery"], [" hardware", " Kotlin", " Android", " mobile", " physics", " JVM", " performance", " battery"], [" Kotlin", " Android", " hardware", " JVM", " mobile", " physics", " battery", " garbage"], [" Kotlin", " Android", " the", " mobile", " physics", " GC", " Java", " garbage"]], "p": [[0.7475, 0.2142, 0.0256, 0.005, 0.005, 0.0019, 0.0002, 0.0001], [0.7125, 0.0906, 0.0751, 0.0355, 0.0313, 0.0131, 0.0029, 0.0027], [0.3847, 0.3395, 0.2644, 0.0055, 0.0016, 0.0016, 0.0016, 0.0002], [0.0111, 0.0081, 0.0076, 0.0041, 0.0034, 0.0025, 0.0019, 0.0018], [0.1451, 0.113, 0.0391, 0.0119, 0.0119, 0.0034, 0.0027, 0.0024], [0.1485, 0.0701, 0.0353, 0.0331, 0.0214, 0.0189, 0.0108, 0.0054], [0.2323, 0.1926, 0.1409, 0.0625, 0.0314, 0.0295, 0.023, 0.0191], [0.5395, 0.1452, 0.073, 0.0502, 0.0237, 0.0163, 0.0039, 0.0039], [0.4257, 0.2582, 0.1566, 0.0508, 0.024, 0.0199, 0.0121, 0.0083], [0.3282, 0.2896, 0.2896, 0.0163, 0.0073, 0.002, 0.002, 0.0015], [0.3896, 0.2363, 0.0636, 0.0597, 0.0465, 0.034, 0.022, 0.0098], [0.0306, 0.0064, 0.0047, 0.0037, 0.0025, 0.0024, 0.0022, 0.0021], [0.0112, 0.0077, 0.006, 0.0034, 0.0028, 0.0027, 0.0025, 0.0022], [0.0119, 0.0112, 0.0056, 0.0056, 0.0041, 0.0028, 0.0028, 0.0028], [0.2188, 0.0261, 0.0149, 0.014, 0.014, 0.0123, 0.0062, 0.0048], [0.0142, 0.0134, 0.0126, 0.0111, 0.0086, 0.0076, 0.0072, 0.0072], [0.0928, 0.0341, 0.0235, 0.0195, 0.0172, 0.0134, 0.0118, 0.0072], [0.0201, 0.0157, 0.013, 0.0115, 0.0115, 0.0101, 0.0079, 0.0061], [0.016, 0.0132, 0.0103, 0.0097, 0.0091, 0.008, 0.0067, 0.0063], [0.0349, 0.0308, 0.0176, 0.0083, 0.0083, 0.0073, 0.0065, 0.0061], [0.0408, 0.0318, 0.0141, 0.0063, 0.0063, 0.0059, 0.0046, 0.0043], [0.0089, 0.0023, 0.0023, 0.002, 0.0017, 0.0017, 0.0016, 0.0016], [0.0081, 0.0081, 0.0067, 0.0056, 0.0036, 0.0026, 0.0026, 0.0025], [0.0446, 0.0326, 0.012, 0.0099, 0.0068, 0.0057, 0.0041, 0.0039], [0.098, 0.0674, 0.0248, 0.0219, 0.016, 0.015, 0.0117, 0.0067], [0.0378, 0.0313, 0.0108, 0.0095, 0.0074, 0.0066, 0.0045, 0.0045], [0.0236, 0.0222, 0.0135, 0.0082, 0.0072, 0.0072, 0.005, 0.0047], [0.1002, 0.0418, 0.0185, 0.0185, 0.0088, 0.0077, 0.0077, 0.0073], [0.0649, 0.0239, 0.0239, 0.0175, 0.0175, 0.0113, 0.01, 0.0083], [0.0433, 0.0359, 0.0337, 0.0204, 0.0169, 0.0149, 0.014, 0.0103], [0.046, 0.0432, 0.0297, 0.0217, 0.0159, 0.0109, 0.0103, 0.0091], [0.0553, 0.0296, 0.0296, 0.0169, 0.0116, 0.0116, 0.0116, 0.0102], [0.0814, 0.0494, 0.0206, 0.0171, 0.0171, 0.011, 0.0103, 0.0103], [0.1003, 0.1003, 0.0418, 0.0238, 0.0238, 0.021, 0.0197, 0.0185], [0.0731, 0.0444, 0.0286, 0.021, 0.021, 0.0197, 0.0185, 0.0185], [0.2111, 0.0568, 0.0501, 0.039, 0.0268, 0.0196, 0.0184, 0.0163], [0.2051, 0.091, 0.0519, 0.043, 0.0379, 0.0261, 0.0179, 0.0168], [0.1497, 0.0853, 0.0624, 0.0356, 0.0314, 0.0244, 0.019, 0.0139], [0.2754, 0.0952, 0.0397, 0.0309, 0.0241, 0.0241, 0.0226, 0.0212], [0.3607, 0.0805, 0.0431, 0.0315, 0.0231, 0.0231, 0.0204, 0.0204], [0.4323, 0.1093, 0.0706, 0.0456, 0.0333, 0.019, 0.0178, 0.0108], [0.3504, 0.1138, 0.1138, 0.0537, 0.027, 0.0174, 0.0145, 0.0106], [0.2181, 0.1167, 0.103, 0.0429, 0.0314, 0.023, 0.0168, 0.0148], [0.2425, 0.1076, 0.0892, 0.0478, 0.0372, 0.0155, 0.0129, 0.0121], [0.1435, 0.0871, 0.0818, 0.0341, 0.0301, 0.0194, 0.0183, 0.0161], [0.1036, 0.0859, 0.0555, 0.046, 0.0279, 0.0192, 0.018, 0.0169], [0.1147, 0.1012, 0.0542, 0.0449, 0.0396, 0.029, 0.0272, 0.0176], [0.1258, 0.0812, 0.0594, 0.0493, 0.0318, 0.0205, 0.0205, 0.0193], [0.1005, 0.0505, 0.0475, 0.0306, 0.0254, 0.0239, 0.0211, 0.0198], [0.0998, 0.0568, 0.0443, 0.0252, 0.0209, 0.0173, 0.0163, 0.0153], [0.067, 0.0381, 0.0381, 0.0246, 0.0231, 0.0149, 0.0132, 0.0109], [0.0877, 0.0683, 0.0532, 0.0414, 0.0236, 0.0162, 0.0143, 0.0111], [0.1479, 0.1305, 0.0617, 0.0451, 0.031, 0.0188, 0.0166, 0.0166], [0.5634, 0.0673, 0.0408, 0.036, 0.0205, 0.0117, 0.011, 0.0086], [0.5028, 0.1632, 0.068, 0.0321, 0.0221, 0.0221, 0.0195, 0.0134], [0.4355, 0.1602, 0.0757, 0.0589, 0.0357, 0.0217, 0.0131, 0.0116], [0.6503, 0.0997, 0.0367, 0.0324, 0.0286, 0.0252, 0.0135, 0.0135], [0.3357, 0.3357, 0.0749, 0.0583, 0.0215, 0.0167, 0.0167, 0.013], [0.2847, 0.2512, 0.2512, 0.0635, 0.0142, 0.0125, 0.011, 0.011], [0.7265, 0.0596, 0.0596, 0.041, 0.0151, 0.0104, 0.0104, 0.0081], [0.2753, 0.167, 0.167, 0.1148, 0.0478, 0.029, 0.0256, 0.0226], [0.4255, 0.1381, 0.0838, 0.0652, 0.0508, 0.0448, 0.0308, 0.0165], [0.4171, 0.1195, 0.0725, 0.0564, 0.0388, 0.0342, 0.0342, 0.0322]], "ranks": {"Kotlin": [193232, 115914, 136379, 11726, 14689, 34697, 34200, 92863, 123901, 161761, 165551, 101710, 55343, 33630, 124291, 39822, 35650, 17650, 26231, 70145, 104197, 44763, 55179, 112675, 97873, 44104, 48188, 70327, 54365, 39795, 53328, 73092, 60452, 33232, 28493, 8862, 3279, 3410, 3452, 1244, 1848, 1650, 1155, 1234, 1583, 2870, 3033, 2012, 1377, 1150, 1941, 812, 539, 401, 216, 31, 7, 11, 18, 4, 2, 1, 1]}}, {"pos": 424, "top": [[".", ",", " \u2013", "\u2013", ";", "\u00a0\u00a0", " ", "\u00a0"], [".", ",", " \u2013", "\u2013", ";", " ", "\u2013and", ":"], [".", ",", "\u2013", " \u2013", "\u2026", ";", "\u2026.", "\u2026.."], [" milfs", "-------------</", "----------</", " Shemale", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Blowjob", " cumshot", "TRGL"], [".@", ".", " \u201c.", " \"@", " (@", "(@", "  ", "\uff20"], [" \u200b\u200b", ".", " \u201c.", "!\u201d.", "   \n", " ).", " \").", "\uff01"], [".", "  \n", "  \n\n", "   \n", ".\u201d", " \n", ".\u2019", "\u2019."], [".", "   \n", "  \n", "!.", "  ", "(@", ".@", "-."], [".", ",", "  \n\n", "\u00a0", "  \n", " \n\n", ".\u201d", "   \n\n"], [",", ".", "\u2013", "\u00a0", "\u00ad", " \u00ad", ";", "-"], [",", ".", "-", "...", "\u00a0", " ", "\u2013", "\u2026"], [" savvy", " thr", " flavours", " vibe", " guts", " showcase", " hardcore", " stark"], [" savvy", " solid", " showcase", "-esque", " impactful", " guts", " innov", " vibe"], [" savvy", "-esque", " vibe", " showcase", " innov", " iconic", " visionary", " transformative"], [" folks", " savvy", " arguably", " myriad", " truly", " requisite", " akin", " touted"], [" folks", " savvy", " arguably", " myriad", " entirety", "-esque", " touted", " overarching"], [" myriad", " folks", " savvy", " arguably", " truly", " ultimately", " incredibly", " sprawling"], [" myriad", " savvy", " folks", " sprawling", " hefty", "-esque", " burgeoning", " entirety"], [" savvy", " myriad", " incredibly", " folks", " truly", " arguably", "-esque", " hugely"], [" myriad", " hugely", " arguably", " entirety", " truly", " burgeoning", " folks", " genuinely"], ["<|endoftext|>", " myriad", " hugely", " ultimately", " burgeoning", " folks", " \n\n", " genuinely"], [" savvy", " myriad", " entirety", " folks", " vibe", " impactful", " ;;^", "\u62e5\u6709\u7740"], [" myriad", " entirety", " folks", " savvy", " industry", " sprawling", " arguably", " ultimately"], [" myriad", " ultimately", " entirety", " arguably", " much", " hugely", " truly", " industry"], [" myriad", " entirety", " hugely", " arguably", " ultimately", " overarching", " vastly", " folks"], [" myriad", " industry", " folks", " entirety", " tech", " impactful", " mindset", " ultimately"], [" myriad", " industry", " tech", " infrastructure", " technology", " foundational", " hugely", " ultimately"], [" \n\n", " myriad", " ultimately", " arguably", " hugely", " much", " heavily", " industry"], [" myriad", " tech", " \n\n", " infrastructure", " hugely", " technology", " industry", " foundational"], [" technology", " myriad", " tech", " infrastructure", " industry", " global", " modern", " mainstream"], [" technology", " modern", " global", " myriad", " industry", " tech", " .", " much"], [" technology", " modern", " global", " much", " ultimately", " industry", " massive", " ."], [" global", " technology", " modern", " massive", " massively", " power", " ultimately", " industry"], [" technology", " global", " tech", " infrastructure", " technologies", " ecosystem", " modern", " massively"], [" tech", " technology", " infrastructure", " hardware", " global", " ecosystem", " foundational", " technologies"], [" technology", " hardware", " tech", " technologies", " infrastructure", " global", " \u2014", " complex"], [" technology", " hardware", " tech", " technologies", " infrastructure", " \u2014", " software", " culture"], [" hardware", " technology", " tech", " infrastructure", " ecosystem", " Android", " culture", " technologies"], [" technology", " hardware", " tech", " mechanics", " technologies", " ecosystem", " infrastructure", " physics"], [" technology", " hardware", " Java", " tech", " technologies", " ecosystem", " mechanics", " software"], [" technology", " hardware", " Java", " tech", " software", " technologies", " JVM", " engine"], [" Java", " technology", " software", " JVM", " hardware", " engine", " technologies", " engines"], [" Java", " JVM", " software", " hardware", " technology", " algorithms", " engine", " engines"], [" Java", " JVM", " software", " algorithms", " hardware", " engines", " CPU", " technology"], [" Java", " JVM", " software", " engines", " algorithms", " hardware", " workflows", " engine"], [" JVM", " engines", " hardware", " Java", " algorithms", " CPU", " software", " engine"], [" JVM", " hardware", " ecosystem", " workflows", " lifecycle", " algorithms", " Java", " CPU"], [" JVM", " ecosystem", " hardware", " Java", " workflows", " constraints", " lifecycle", " CPU"], [" JVM", " ecosystem", " lifecycle", " constraints", " hardware", " fundamentals", " Java", " algorithms"], [" JVM", " constraints", " ecosystem", " realities", " physics", " fundamentals", " technology", " mindset"], [" JVM", " constraints", " ecosystem", " fundamentals", " realities", " hardware", " physics", " lifecycle"], [" ecosystem", " JVM", " CPU", " hardware", " constraints", " fundamentals", " physics", "hardware"], [" hardware", " JVM", " constraints", " CPU", " ecosystem", "hardware", " Hardware", "Hardware"], [" hardware", " constraints", "hardware", " JVM", " Hardware", " CPU", "Hardware", "\u786c\u4ef6"], [" hardware", " JVM", " constraints", "hardware", " runtime", " CPU", " Hardware", "\u786c\u4ef6"], [" JVM", " hardware", " constraints", " runtime", " platform", " Android", " CPU", "hardware"], [" JVM", " Android", " GC", " Java", " Kotlin", " platform", " garbage", " hardware"], [" JVM", " GC", " hardware", " Android", " garbage", " runtime", " platform", " Kotlin"], [" JVM", " platform", " runtime", "platform", " language", " hardware", " GC", " Platform"], [" JVM", " platform", " hardware", " language", " garbage", " runtime", " GC", " Android"], [" JVM", " language", " GC", " runtime", " hardware", " garbage", " Kotlin", " Android"], [" JVM", " GC", " Kotlin", " language", " garbage", " hardware", " platform", " runtime"], [" JVM", " GC", " Kotlin", " language", " garbage", " hardware", " Java", " Android"]], "p": [[0.8137, 0.1816, 0.0016, 0.0012, 0.0008, 0.0002, 0.0002, 0.0002], [0.4367, 0.2337, 0.1606, 0.1175, 0.0091, 0.0028, 0.0017, 0.0011], [0.7718, 0.1722, 0.0384, 0.0141, 0.0009, 0.0008, 0.0006, 0.0003], [0.0148, 0.007, 0.0065, 0.0058, 0.0051, 0.0051, 0.0035, 0.0031], [0.0259, 0.0243, 0.0074, 0.0058, 0.0058, 0.0054, 0.0045, 0.0042], [0.0696, 0.0479, 0.0176, 0.0121, 0.0078, 0.005, 0.0037, 0.0037], [0.5203, 0.1914, 0.1161, 0.0354, 0.0229, 0.0115, 0.0108, 0.009], [0.3983, 0.1465, 0.0574, 0.0154, 0.0145, 0.01, 0.0094, 0.0083], [0.835, 0.0685, 0.0286, 0.0196, 0.0056, 0.0044, 0.0032, 0.0023], [0.9299, 0.0181, 0.0125, 0.0046, 0.0043, 0.0032, 0.0032, 0.0025], [0.4203, 0.2889, 0.0534, 0.0534, 0.0391, 0.0345, 0.0112, 0.0093], [0.0046, 0.0044, 0.0038, 0.0038, 0.0038, 0.0034, 0.0032, 0.003], [0.0123, 0.0055, 0.0048, 0.0045, 0.0045, 0.0042, 0.0042, 0.0042], [0.0176, 0.0073, 0.0047, 0.0039, 0.0035, 0.0035, 0.0035, 0.0035], [0.0208, 0.0195, 0.0098, 0.0092, 0.0092, 0.0038, 0.0038, 0.0036], [0.0313, 0.0229, 0.0148, 0.0139, 0.009, 0.0074, 0.007, 0.0066], [0.054, 0.0289, 0.0145, 0.0113, 0.0094, 0.0061, 0.0057, 0.0053], [0.0553, 0.0431, 0.0261, 0.0116, 0.0096, 0.0085, 0.007, 0.0062], [0.0465, 0.0437, 0.0194, 0.0161, 0.0097, 0.0097, 0.0092, 0.0092], [0.0898, 0.0242, 0.0129, 0.0122, 0.0122, 0.0114, 0.0107, 0.0095], [0.1679, 0.0618, 0.0079, 0.0074, 0.0074, 0.0074, 0.0074, 0.0051], [0.0068, 0.0053, 0.0053, 0.0047, 0.0032, 0.003, 0.0027, 0.0024], [0.0254, 0.012, 0.01, 0.0073, 0.0042, 0.0037, 0.0037, 0.0037], [0.0321, 0.0151, 0.0072, 0.0063, 0.0063, 0.0038, 0.0034, 0.0034], [0.0612, 0.0088, 0.0083, 0.0083, 0.0078, 0.005, 0.005, 0.0044], [0.038, 0.0123, 0.0123, 0.0102, 0.0102, 0.0096, 0.0075, 0.0075], [0.0314, 0.0139, 0.0123, 0.0108, 0.0096, 0.0096, 0.0075, 0.007], [0.0555, 0.0316, 0.018, 0.0132, 0.0091, 0.008, 0.0075, 0.0066], [0.0648, 0.027, 0.0198, 0.0174, 0.0154, 0.0145, 0.0145, 0.0136], [0.0444, 0.0305, 0.0269, 0.0238, 0.0197, 0.0174, 0.0174, 0.0153], [0.0485, 0.0229, 0.0202, 0.0148, 0.0148, 0.0148, 0.0148, 0.0115], [0.0299, 0.0233, 0.0193, 0.0133, 0.0117, 0.011, 0.0091, 0.0081], [0.0315, 0.0315, 0.0261, 0.0102, 0.009, 0.009, 0.0085, 0.0085], [0.1521, 0.0634, 0.0634, 0.0339, 0.0281, 0.0142, 0.0142, 0.0133], [0.1635, 0.1056, 0.0499, 0.0322, 0.0302, 0.0221, 0.0195, 0.0183], [0.2467, 0.1095, 0.0966, 0.0244, 0.0202, 0.0115, 0.0108, 0.0102], [0.1685, 0.1313, 0.0703, 0.0228, 0.0228, 0.0189, 0.0138, 0.013], [0.1263, 0.1186, 0.0597, 0.0282, 0.0133, 0.0117, 0.0117, 0.011], [0.2264, 0.1877, 0.0573, 0.0254, 0.0198, 0.0145, 0.0145, 0.0136], [0.2611, 0.0961, 0.066, 0.0547, 0.0293, 0.0259, 0.0178, 0.0157], [0.2055, 0.1246, 0.0912, 0.0756, 0.052, 0.0431, 0.0217, 0.0203], [0.1848, 0.0989, 0.0989, 0.0529, 0.0529, 0.0321, 0.0302, 0.0221], [0.147, 0.0838, 0.0787, 0.0477, 0.0477, 0.0349, 0.0328, 0.0308], [0.1142, 0.0737, 0.0737, 0.0447, 0.042, 0.0395, 0.0289, 0.0271], [0.0914, 0.0459, 0.0459, 0.0432, 0.0381, 0.0336, 0.0231, 0.0231], [0.0445, 0.0418, 0.0393, 0.0347, 0.0238, 0.0224, 0.021, 0.0198], [0.0672, 0.0492, 0.0408, 0.0338, 0.028, 0.0263, 0.0263, 0.0218], [0.0574, 0.0371, 0.0327, 0.0255, 0.0239, 0.0239, 0.0211, 0.0186], [0.1115, 0.0362, 0.0194, 0.0182, 0.0151, 0.0151, 0.0142, 0.0133], [0.0826, 0.0533, 0.0442, 0.0344, 0.0285, 0.0252, 0.0127, 0.0119], [0.0684, 0.0501, 0.047, 0.0237, 0.0237, 0.0209, 0.0173, 0.0105], [0.1289, 0.1137, 0.0648, 0.0505, 0.0418, 0.0128, 0.0128, 0.012], [0.2674, 0.1263, 0.0868, 0.0868, 0.0465, 0.0385, 0.0206, 0.0142], [0.6499, 0.088, 0.0471, 0.0367, 0.0367, 0.0324, 0.0173, 0.0135], [0.4024, 0.3134, 0.0481, 0.0374, 0.033, 0.0292, 0.0156, 0.0084], [0.5585, 0.1813, 0.0405, 0.0357, 0.0357, 0.0169, 0.0102, 0.009], [0.8743, 0.0384, 0.016, 0.016, 0.016, 0.0067, 0.0059, 0.004], [0.9622, 0.0121, 0.0065, 0.0045, 0.0035, 0.0021, 0.0016, 0.0014], [0.6572, 0.2134, 0.0371, 0.0136, 0.012, 0.0094, 0.0094, 0.0073], [0.6161, 0.1375, 0.0834, 0.0446, 0.0307, 0.0239, 0.0164, 0.0113], [0.5729, 0.2108, 0.0604, 0.047, 0.0285, 0.0222, 0.0222, 0.0064], [0.7609, 0.0708, 0.0429, 0.0295, 0.023, 0.0203, 0.0123, 0.0109], [0.5526, 0.1397, 0.1397, 0.0454, 0.0214, 0.0189, 0.0167, 0.0147]], "ranks": {"Kotlin": [204320, 158724, 135251, 8078, 8286, 13121, 103248, 165464, 205638, 236607, 199592, 138819, 123575, 174795, 216466, 98653, 127416, 104458, 111241, 177626, 165519, 78737, 83083, 158067, 114494, 40569, 28371, 88249, 47170, 44284, 56811, 82727, 73185, 22186, 21385, 8681, 2527, 2665, 2814, 719, 1025, 830, 481, 596, 808, 2075, 1470, 1097, 568, 530, 696, 407, 94, 106, 57, 8, 3, 8, 19, 9, 6, 3, 2]}}, {"pos": 425, "top": [["\\n", " *@", "@\"", "\\\"", ":\\\"", "*\\", " *\\", "(~"], [" *\\", " *@", " \\\"", " \\\"\"", ":\\\"", " *\u2013", "\\\"\\", "  \n\n"], [" \u2013", " *\\", "  \n\n", " *\u2013", " \u2013**", "\u2013\u2013", ":\\\"", "\\\\."], [" ``", " ``(", "``", " \\\"{", " \\\"\"", " \\\"$", " \\\"%", " *\\"], [" *\\", " \\\"$", " *@", " \\\"%", " \\\"", " \\\"\"", " \\\"{", " *\u201e"], [" JVM", " *\\", " \\\"$", " *@", " @_", " \\\"%", " \\\"\"", "\\\"\\"], [" ~~", " *@", " `'", " *\\", " `\"", " ____", " \\\"$", " [`"], [" ~~", " `\"", " *@", " `'", " \\\"$", " *\\", " \\\"\"", " [`"], [" `\"", " `'", " [`", " *@", " ~~", " *\u201e", " *\\", ":`"], ["\\.", " \\\"$", " JVM", " `\"", "\\n", ".\\\"", ",\\\"", " `'"], [".\\\"", " `'", "\\n", " \\\"$", " \\\"\"", " *@", " `\"", " \\\""], [" JVM", " `'", " ``", " ~~", " *\u201e", " \\\"$", " *\\", " `\""], [" JVM", " *\u201e", " `'", " ~~", " *\u2013", " \\\"$", "\u2013\u2013", " *\\"], [" JVM", "\u2013\u2013", " `'", " *\u201e", " `\"", " *\u2013", "-esque", " VM"], [" JVM", "s", " `'", " `\"", "\u2013\u2013", " `", " \\\"\"", "-esque"], [" JVM", "-esque", "s", " ostensibly", " disparate", " arguably", "\u2013\u2013", " ~"], ["s", " JVM", "-esque", "\u2013\u2013", "i", " disparate", " entirety", " myriad"], [" JVM", "\\\\\"", "-esque", " `'", " `\"", "s", ".\\\"", "\\\\."], [" JVM", " \\''", "\\\\\"", " \\\"\"", " `'", "-esque", " *\\", "\\\\."], [" JVM", " \\''", " `'", "\u2013\u2013", " [`", " ~~", " `\"", " \\<^"], ["  \n\n", "   \n\n", " JVM", "<|endoftext|>", "  \r\n\r\n", " \r\n \r\n", " `'", " [`"], [" ``", " JVM", " `'", " *__", " '\\\"", " \\''", " '`", " ``("], [" ``", " JVM", " `'", "``", " ''", " \\''", " '\\\"", " '`"], ["<|endoftext|>", " .", " ``", " ,", " JVM", " `", " [[", " `'"], [" JVM", " ``", " Java", " __", " `'", " \r\n \r\n", " ___", " ____"], [" JVM", " Java", " ``", " java", "Java", "(java", " JDK", " *__"], [" JVM", " Java", " ``", " java", "Java", " __", " JDK", " `'"], [" JVM", " ``", " Java", " --", " __", " `", " `'", " ___"], [" JVM", " Java", " ___", " __", "Java", " ____", " java", " *__"], [" JVM", " Java", " ___", " ____", " __", " java", " *__", "Java"], [" JVM", " Java", " java", " .**", " __", " ___", " *__", " JDK"], [" JVM", " Java", " .", " java", " .*", " [[", " modern", " .**"], [" JVM", " Java", " .", " java", " /", " modern", "-era", " and"], [" JVM", " Java", "/java", " java", " JDK", "(java", "-era", "/J"], [" JVM", "/java", " Java", "/J", "Java", " java", " JDK", "/"], [" JVM", " Java", "/java", "Java", "/", "/J", " JDK", "(java"], [" JVM", " Java", "/java", "Java", " JDK", "/J", " java", "(java"], [" JVM", " Java", "/java", "Java", " JDK", "/J", "/", " java"], [" JVM", " Java", "/java", "Java", " JDK", " java", "(java", "/J"], [" JVM", " Java", "/java", "Java", " java", " JDK", "(java", "java"], [" JVM", " Java", "/java", "Java", " JDK", " JAVA", " java", "(java"], [" JVM", " Java", "/java", "Java", " JDK", " JAVA", " java", "-java"], [" JVM", " Java", "/java", "Java", " JDK", " JAVA", "-java", " java"], [" JVM", " Java", "/java", " JDK", " JAVA", " java", "Java", "-java"], [" JVM", " Java", "/java", " JDK", "-java", " JAVA", " java", "Java"], [" JVM", "/java", " Java", "/", " JDK", "/J", " /", " JAVA"], [" JVM", "/", "/java", "/J", " Java", " /", " JDK", "/G"], ["/", " JVM", "/M", "/J", "/G", "/S", " /", "/C"], ["/", "/M", "/G", "/S", "/J", " /", "/P", "/C"], ["/", "/M", "/S", "/G", "/J", "/C", "/P", "/D"], ["/", "/J", "/G", "/M", "/S", "/V", "/C", "/P"], ["/", "/J", "/M", "/G", "/C", "/N", "/S", "/V"], ["/", "/J", "/M", "/G", "/N", "/C", "/S", "/V"], ["/", "/J", "/M", "/N", "/G", " JVM", "/C", "/S"], [" JVM", "/J", "/", "/G", "/M", "/C", "/K", "/Z"], [" JVM", "/K", "/J", " Kotlin", "/N", "/", " JNI", "/k"], [" JVM", "/J", " JNI", " Kotlin", "/K", " GC", "JNI", "/android"], [" JVM", "/J", " VM", "VM", "/K", " Kotlin", " JNI", " GC"], [" JVM", "/J", " JNI", " VM", " JIT", "/K", "VM", " Kotlin"], ["/J", " JVM", "/K", "/N", " JNI", " Kotlin", " GC", " VM"], ["/K", "/N", "/J", " JVM", "/G", "/M", " Kotlin", " JNI"], ["/K", "/N", "/J", "\u2019s", "/G", "/k", "/M", "/"], ["/K", "/N", "/J", "/G", "/", "/M", "/k", "/L"]], "p": [[0.056, 0.0385, 0.0233, 0.0193, 0.0151, 0.0133, 0.0125, 0.0125], [0.3415, 0.1109, 0.0492, 0.0492, 0.0408, 0.036, 0.0232, 0.0218], [0.3601, 0.1032, 0.0804, 0.0666, 0.0458, 0.0245, 0.0168, 0.0168], [0.481, 0.1562, 0.0651, 0.0348, 0.0348, 0.0327, 0.0289, 0.0225], [0.186, 0.186, 0.1128, 0.0643, 0.0567, 0.0567, 0.0285, 0.0268], [0.1383, 0.1147, 0.1012, 0.0696, 0.0396, 0.0309, 0.0176, 0.0146], [0.2071, 0.0811, 0.0557, 0.0462, 0.0408, 0.0383, 0.036, 0.0263], [0.0985, 0.0926, 0.0926, 0.087, 0.0465, 0.0437, 0.0341, 0.0282], [0.1453, 0.1063, 0.0828, 0.0828, 0.0391, 0.0367, 0.0324, 0.0269], [0.0523, 0.0434, 0.0407, 0.036, 0.0338, 0.0317, 0.0317, 0.028], [0.0832, 0.0537, 0.0474, 0.0418, 0.0393, 0.0393, 0.0347, 0.027], [0.1273, 0.1124, 0.0932, 0.0413, 0.0365, 0.0322, 0.0284, 0.0236], [0.2943, 0.0451, 0.0424, 0.0156, 0.0156, 0.0129, 0.0121, 0.0121], [0.3643, 0.0361, 0.0181, 0.0141, 0.0103, 0.0067, 0.0059, 0.0055], [0.0764, 0.0219, 0.0206, 0.0206, 0.0125, 0.0081, 0.0076, 0.0071], [0.0802, 0.0403, 0.0158, 0.0079, 0.0075, 0.007, 0.0062, 0.0051], [0.1392, 0.0745, 0.0331, 0.0156, 0.0147, 0.0079, 0.0069, 0.0065], [0.3238, 0.0151, 0.0151, 0.0126, 0.0118, 0.0104, 0.0092, 0.0081], [0.1465, 0.0211, 0.0136, 0.0128, 0.012, 0.0094, 0.0083, 0.0073], [0.0425, 0.0399, 0.0292, 0.0188, 0.0156, 0.0107, 0.0089, 0.0084], [0.0379, 0.0216, 0.019, 0.0158, 0.0139, 0.0123, 0.0109, 0.009], [0.1341, 0.0866, 0.0493, 0.0493, 0.0206, 0.0141, 0.0097, 0.0081], [0.2825, 0.0556, 0.0337, 0.0141, 0.0124, 0.0091, 0.008, 0.008], [0.1245, 0.0458, 0.0315, 0.0261, 0.0158, 0.014, 0.0075, 0.007], [0.4088, 0.0315, 0.0169, 0.014, 0.0109, 0.008, 0.0075, 0.007], [0.9213, 0.0315, 0.0033, 0.0029, 0.0026, 0.0017, 0.0017, 0.0017], [0.8223, 0.0675, 0.0171, 0.0049, 0.0028, 0.0028, 0.0023, 0.002], [0.2113, 0.0777, 0.0644, 0.0252, 0.0252, 0.0237, 0.0197, 0.0153], [0.8913, 0.0325, 0.0068, 0.0044, 0.0034, 0.0032, 0.0032, 0.0028], [0.8919, 0.0253, 0.0105, 0.0082, 0.0068, 0.0032, 0.0027, 0.0017], [0.9328, 0.0194, 0.0032, 0.0022, 0.0022, 0.0022, 0.0016, 0.0011], [0.7504, 0.0616, 0.0146, 0.0065, 0.0039, 0.0029, 0.0021, 0.002], [0.4586, 0.0515, 0.0427, 0.0051, 0.0051, 0.0048, 0.0045, 0.0045], [0.8682, 0.018, 0.0103, 0.0035, 0.0023, 0.0023, 0.002, 0.0019], [0.9196, 0.014, 0.0055, 0.0031, 0.0023, 0.0018, 0.0016, 0.0015], [0.9536, 0.0073, 0.0053, 0.0041, 0.0022, 0.002, 0.0014, 0.0009], [0.98, 0.0051, 0.0048, 0.0023, 0.001, 0.0006, 0.0004, 0.0004], [0.9846, 0.0038, 0.0031, 0.0011, 0.0007, 0.0006, 0.0004, 0.0003], [0.9886, 0.0052, 0.0028, 0.0006, 0.0005, 0.0002, 0.0002, 0.0001], [0.9828, 0.0085, 0.0046, 0.0024, 0.0004, 0.0003, 0.0002, 0.0002], [0.9881, 0.0075, 0.0019, 0.0013, 0.0002, 0.0002, 0.0002, 0.0001], [0.9942, 0.0036, 0.0012, 0.0004, 0.0001, 0.0001, 0.0001, 0.0001], [0.994, 0.0032, 0.0013, 0.0003, 0.0003, 0.0001, 0.0001, 0.0001], [0.9939, 0.0032, 0.001, 0.0005, 0.0003, 0.0002, 0.0002, 0.0001], [0.9914, 0.0036, 0.0019, 0.0008, 0.0003, 0.0003, 0.0003, 0.0002], [0.977, 0.0058, 0.0031, 0.0015, 0.0011, 0.0006, 0.0006, 0.0003], [0.956, 0.012, 0.0044, 0.0021, 0.0017, 0.0014, 0.0009, 0.0008], [0.8365, 0.0535, 0.0135, 0.0105, 0.0082, 0.0082, 0.0064, 0.0044], [0.8809, 0.0142, 0.0126, 0.0098, 0.0086, 0.0067, 0.0052, 0.0052], [0.8226, 0.0361, 0.0193, 0.0193, 0.0151, 0.0091, 0.0081, 0.0063], [0.483, 0.2014, 0.0449, 0.0449, 0.035, 0.0273, 0.0187, 0.0129], [0.5029, 0.2097, 0.053, 0.0364, 0.025, 0.025, 0.025, 0.0152], [0.6628, 0.1152, 0.0424, 0.0374, 0.0257, 0.0156, 0.0138, 0.0107], [0.4679, 0.221, 0.0493, 0.0435, 0.0384, 0.0339, 0.016, 0.011], [0.7288, 0.2366, 0.0092, 0.0071, 0.0023, 0.0014, 0.0012, 0.0011], [0.7007, 0.1772, 0.0575, 0.024, 0.0088, 0.0054, 0.0037, 0.0029], [0.9007, 0.0576, 0.0146, 0.0128, 0.0078, 0.0014, 0.0008, 0.0006], [0.9625, 0.0256, 0.0039, 0.0031, 0.0013, 0.0011, 0.0011, 0.0004], [0.8438, 0.1466, 0.0018, 0.0014, 0.0014, 0.0011, 0.001, 0.0008], [0.4191, 0.2542, 0.1542, 0.1361, 0.0068, 0.006, 0.0053, 0.0032], [0.4801, 0.3739, 0.1376, 0.0029, 0.0011, 0.0006, 0.0004, 0.0004], [0.643, 0.3037, 0.0466, 0.0012, 0.0011, 0.0009, 0.0006, 0.0005], [0.9042, 0.0655, 0.0241, 0.0029, 0.002, 0.0003, 0.0003, 0.0002]], "ranks": {"Kotlin": [2152, 5664, 4338, 1295, 891, 596, 1517, 2888, 2991, 4174, 2095, 914, 481, 669, 4621, 1302, 2006, 538, 1727, 5421, 6386, 1489, 1010, 4050, 482, 65, 60, 373, 55, 41, 30, 65, 239, 21, 22, 23, 16, 15, 19, 20, 24, 26, 21, 27, 34, 153, 292, 511, 790, 914, 697, 449, 220, 167, 67, 4, 4, 6, 8, 6, 7, 34, 33]}}, {"pos": 426, "top": [["s", " \u2013", "es", "y", "\u0629", "i", " [\u2026]", "en"], ["s", "es", "\u0629", " \u2013", " \u2013**", "y", "i", "suite"], ["s", "es", "i", "\u0629", " \u2013", " \u2013**", "y", " *\u2013"], ["es", "\u0629", "sula", "ielen", "sze", "spra", "s", "iels"], ["s", "es", "\u0629", "i", " *\\", "ihi", "@\\", " *@"], ["s", "es", "\u0629", "i", "sWith", "y", "\u05d9\u05dd", "\u0627\u062a"], ["s", "es", "i", "y", "\u0629", "t", "\u0627\u062a", "suite"], ["s", "es", "i", "y", "suite", "\u0627\u062a", "\u0629", "-&"], ["s", "es", "i", "y", "suite", "-&", "\u0629", "/&"], ["s", "es", "i", "y", "suite", "-&", "\u0629", "en"], ["s", "es", "i", "y", "-&", "en", "\u0629", "t"], ["s", "es", "suite", "\u05d9\u05dd", "y", "i", "ske", "sula"], ["s", "es", "suite", "y", "i", "en", "-/", "-&"], ["s", "es", "suite", "y", "i", "-/", "en", "-&"], ["s", "es", "i", "y", "-&", "en", "suite", "/&"], ["s", "es", "i", "y", "-&", "en", "/&", "o"], ["s", "es", "i", "y", "en", "o", "t", "r"], ["s", "es", "i", "y", "en", "-&", "suite", "o"], ["s", "i", "es", "-&", "/&", "suite", "y", "-/"], ["s", "i", "es", "-&", "y", "en", "k", "/&"], ["s", "i", "es", "y", "k", "en", "t", "-&"], ["s", "suite", "es", "itecture", "iaya", "espace", "iha", "i"], ["s", "i", "es", "suite", "-&", "\\\\\"", "itecture", "espace"], ["s", "i", "es", "-&", "y", "en", "\"&", "k"], ["s", "i", " \r\n\r\n", "-&", "\r\n\r\n", "\\\\\"", "\r\n\n", "\"&"], ["__)", " autobio", "\r\n\n", "itecture", "\"\"\".", "\\\\\"", "s", "suite"], ["s", "i", "es", "itecture", "__)", "\r\n\n", "suite", " autobio"], ["s", "i", " \r\n\r\n", "\r\n\r\n", " ...\\", " \n\n", "\n\n", "es"], ["i", "s", " \r\n\r\n", "\r\n\r\n", "es", "y", " ...\\", "@"], ["s", "i", "es", " \n\n", "y", " \r\n\r\n", "@", "en"], ["s", "i", "es", "__.", "/", "y", "-era", "-."], ["s", "i", "/", "es", "y", "@", "en", "&"], ["s", "/", "i", "es", "-centric", "y", " tech", "-era"], ["-centric", "/", "s", " tech", "-tech", "-/", "i", "tech"], ["/", "-centric", "/K", "tech", "-/", "/k", "i", "/&"], ["-centric", "tech", "/", "**\u2013", "i", "/K", "-/", "/\""], ["-centric", "otlin", "/K", " JVM", "tech", "/\"", "finity", "\ufe0f"], ["otlin", "-centric", " JVM", "\ufe0f", "finity", "tech", " Kotlin", "iki"], [" JVM", "otlin", "-centric", "tech", "iki", " Kotlin", "\u2011", "\ufe0f"], ["otlin", " Kotlin", " JVM", ".kotlin", " kotlin", "Java", "native", " JetBrains"], [" JVM", " Kotlin", "otlin", "Java", "tech", ".kotlin", "\u2011", "native"], [" JVM", " Kotlin", "otlin", "Java", ".kotlin", "-native", "/java", "native"], [" JVM", " Kotlin", "otlin", "Java", ".kotlin", " interoper", "-native", "native"], [" JVM", " Kotlin", "otlin", "Java", "native", "tech", "-native", "finity"], [" JVM", " Kotlin", "otlin", "finity", "Lite", "tech", "-java", " JetBrains"], [" JVM", "/etc", "otlin", " Kotlin", "/K", "/", "/Linux", "finity"], ["/etc", "/", " JVM", "/\\", "-/", "/K", "/Linux", "/M"], ["/etc", "/", " JVM", "/\\", "/C", "/K", "/.", "/M"], [" JVM", "finity", "otlin", "/etc", " Kotlin", " MCU", "-framework", "-kit"], [" JVM", "otlin", "finity", "-framework", " Kotlin", "/Framework", " MCU", " Hausti"], [" JVM", "/K", "otlin", " Kotlin", "/etc", "-kit", " MCU", "/Framework"], [" JVM", "-native", "-runtime", "otlin", " Kotlin", " Runtime", "native", " SDK"], [" JVM", " Kotlin", "otlin", " kotlin", "-runtime", "-native", "runtime", "/runtime"], [" JVM", " Kotlin", "otlin", " kotlin", " LLVM", "-runtime", "runtime", "-kit"], [" Kotlin", " JVM", " kotlin", ".kotlin", "otlin", " kotlinx", "-runtime", "/K"], [" JVM", " Kotlin", " kotlin", "otlin", ".kotlin", "Jvm", " JNI", "-runtime"], [" JVM", " Kotlin", " kotlin", "otlin", ".kotlin", " JNI", "Jvm", "KT"], [" JVM", "VM", " Kotlin", "Jvm", " VM", "otlin", " kotlin", "vm"], [" JVM", " Kotlin", "VM", "Jvm", "otlin", " VM", " kotlin", ".kotlin"], [" JVM", "otlin", "VM", " Kotlin", " Native", " VM", " kotlin", "Jvm"], [" JVM", "otlin", " Native", "/N", " Kotlin", "VM", " VM", " kotlin"], ["otlin", " Native", "/N", " JVM", "Native", "/native", " NAT", "-N"], ["/N", "otlin", "N", "VM", " Native", "MP", "-N", "NN"]], "p": [[0.9807, 0.0085, 0.0075, 0.0016, 0.0008, 0.0005, 0.0001, 0.0], [0.9611, 0.0373, 0.0009, 0.0002, 0.0001, 0.0001, 0.0, 0.0], [0.9252, 0.067, 0.0033, 0.0018, 0.0007, 0.0005, 0.0004, 0.0001], [0.076, 0.0491, 0.0159, 0.015, 0.0141, 0.0132, 0.0124, 0.0091], [0.7685, 0.2202, 0.0046, 0.0015, 0.0002, 0.0002, 0.0002, 0.0002], [0.9618, 0.0329, 0.0009, 0.0007, 0.0002, 0.0001, 0.0001, 0.0001], [0.998, 0.0019, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9989, 0.001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9988, 0.0009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9996, 0.0003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9994, 0.0005, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9878, 0.0085, 0.0003, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.9942, 0.0052, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9623, 0.0329, 0.0005, 0.0004, 0.0003, 0.0003, 0.0003, 0.0002], [0.9936, 0.0052, 0.0002, 0.0002, 0.0001, 0.0001, 0.0, 0.0], [0.9893, 0.0086, 0.001, 0.0003, 0.0001, 0.0001, 0.0001, 0.0001], [0.9952, 0.0036, 0.0008, 0.0002, 0.0, 0.0, 0.0, 0.0], [0.9793, 0.014, 0.0033, 0.0004, 0.0002, 0.0001, 0.0001, 0.0001], [0.8885, 0.0367, 0.0268, 0.0028, 0.0016, 0.0011, 0.001, 0.0009], [0.8747, 0.0559, 0.0182, 0.0052, 0.0038, 0.002, 0.0012, 0.001], [0.8517, 0.1017, 0.0095, 0.0054, 0.0027, 0.002, 0.0015, 0.0015], [0.0448, 0.0137, 0.01, 0.0069, 0.0061, 0.0057, 0.0053, 0.0047], [0.1268, 0.0321, 0.0234, 0.0142, 0.0111, 0.0092, 0.0056, 0.0043], [0.3717, 0.2118, 0.0368, 0.0163, 0.0119, 0.0056, 0.005, 0.0039], [0.0608, 0.0504, 0.0347, 0.0254, 0.0154, 0.0144, 0.012, 0.0113], [0.0105, 0.0082, 0.0072, 0.0072, 0.0064, 0.0064, 0.006, 0.0053], [0.0364, 0.0161, 0.0092, 0.0081, 0.0067, 0.0063, 0.0059, 0.0056], [0.1958, 0.1116, 0.0495, 0.0411, 0.022, 0.022, 0.0206, 0.0125], [0.2019, 0.1674, 0.031, 0.0137, 0.0121, 0.0094, 0.0069, 0.0065], [0.3491, 0.2254, 0.0253, 0.0185, 0.0185, 0.0127, 0.0099, 0.006], [0.3776, 0.0744, 0.0511, 0.0227, 0.0146, 0.0114, 0.0089, 0.0074], [0.4432, 0.1121, 0.0873, 0.0364, 0.0161, 0.0072, 0.0067, 0.0067], [0.2253, 0.1868, 0.1206, 0.0223, 0.0185, 0.0112, 0.0105, 0.0082], [0.0572, 0.0393, 0.0224, 0.021, 0.0198, 0.0186, 0.0186, 0.0174], [0.0457, 0.0216, 0.019, 0.0158, 0.0148, 0.0116, 0.0102, 0.0096], [0.0181, 0.0132, 0.0085, 0.008, 0.0075, 0.0075, 0.0071, 0.0067], [0.0193, 0.0193, 0.0103, 0.0097, 0.0097, 0.008, 0.0063, 0.0049], [0.0246, 0.0159, 0.0149, 0.009, 0.009, 0.008, 0.007, 0.007], [0.0291, 0.0274, 0.0121, 0.0095, 0.0095, 0.0084, 0.0078, 0.0074], [0.1705, 0.1505, 0.0857, 0.018, 0.0109, 0.0085, 0.007, 0.0051], [0.2642, 0.1172, 0.0972, 0.0169, 0.0124, 0.0109, 0.0066, 0.0066], [0.3789, 0.131, 0.09, 0.0114, 0.0061, 0.0058, 0.0054, 0.0054], [0.3681, 0.1272, 0.0468, 0.0104, 0.0056, 0.0053, 0.0053, 0.0053], [0.3224, 0.056, 0.0319, 0.011, 0.0076, 0.0067, 0.0059, 0.0046], [0.2469, 0.0403, 0.0356, 0.0075, 0.0066, 0.0062, 0.0055, 0.0045], [0.1421, 0.0523, 0.0192, 0.0181, 0.0141, 0.0097, 0.0085, 0.0075], [0.3542, 0.0578, 0.0291, 0.0188, 0.0114, 0.0094, 0.0083, 0.0057], [0.0917, 0.0671, 0.0522, 0.0407, 0.0132, 0.0124, 0.0109, 0.0085], [0.0539, 0.0113, 0.01, 0.0088, 0.0083, 0.0069, 0.0053, 0.0047], [0.0372, 0.0121, 0.0113, 0.0088, 0.0073, 0.0065, 0.0057, 0.0054], [0.0722, 0.0341, 0.0171, 0.0142, 0.0134, 0.0118, 0.0092, 0.0076], [0.3588, 0.0664, 0.0355, 0.0314, 0.0216, 0.0115, 0.0108, 0.0108], [0.4838, 0.3325, 0.0841, 0.0146, 0.0061, 0.0035, 0.0029, 0.0025], [0.6415, 0.2083, 0.0465, 0.022, 0.0056, 0.0049, 0.0041, 0.003], [0.7261, 0.162, 0.0867, 0.0091, 0.0091, 0.0008, 0.0006, 0.0005], [0.5163, 0.4021, 0.0544, 0.02, 0.0024, 0.0009, 0.0005, 0.0004], [0.5956, 0.3188, 0.0554, 0.0204, 0.0024, 0.0017, 0.0017, 0.0007], [0.9437, 0.0323, 0.0119, 0.0064, 0.0027, 0.0013, 0.0008, 0.0004], [0.9291, 0.0318, 0.0281, 0.0034, 0.003, 0.002, 0.001, 0.0003], [0.6628, 0.1152, 0.0897, 0.0699, 0.0291, 0.0095, 0.0065, 0.0051], [0.3882, 0.3023, 0.1834, 0.0319, 0.0281, 0.0141, 0.0059, 0.0052], [0.3033, 0.2677, 0.2677, 0.0171, 0.0133, 0.0104, 0.0081, 0.0081], [0.6985, 0.1559, 0.0288, 0.0225, 0.0106, 0.0094, 0.0068, 0.006]], "ranks": {"Kotlin": [87451, 16147, 10083, 3121, 3496, 1736, 5384, 10013, 8794, 20403, 8059, 3030, 4336, 10983, 34837, 33891, 12084, 11633, 9605, 24590, 64765, 16703, 14604, 24773, 14801, 2402, 2196, 8571, 12330, 9543, 7084, 22920, 37267, 11420, 6014, 793, 10, 7, 6, 2, 2, 2, 2, 2, 2, 4, 27, 13, 5, 5, 4, 5, 2, 2, 1, 2, 2, 3, 2, 4, 5, 17, 27]}}, {"pos": 427, "top": [[" \u2013", "@\"", "@", " *@", "en", ".", ",", "i"], [" *@", "@\"", " \u2013", " (@", " @\"", " [@", "@", "@@@@"], [" \u2013", "\u2013", " \u2013,", "[", ".", ",", " *\u2013", "@\""], [" \\\"\"", " *\u201e", "*\u201c.", "``", "\\\"\\", " ``", " ``(", " milfs"], [" *@", "@\"", " @\"", " *\u201e", " (@", " \\\"\"", " *\u201c", " [@"], [" *@", " Kotlin", "!.", "*\u201c.", "@\"", " *\u201c", " *\u201e", "!!."], [" *\u201e", "\\\\\"", " *@", " *\"", "!\"", "\\\"\"", "!.", " \\\"\""], ["!.", "\\\"\"", " *@", " *\u201e", "\\\\\"", " \\\"\"", "!!.", " *\""], ["!.", ".", ",.", ",", "!\"", ";.", "\\\\\"", ":."], [",", ".", "!.", "!\"", ",.", ";.", "!,", ":."], [".", ",", "!.", ",.", "!\"", "!", "...", "...\""], ["-esque", ",", "!.", " Kotlin", " *\"", "&apos", "ian", " \\\"\""], ["-esque", ",", "ian", " Kotlin", "!.", "-K", ".", " \\\"\""], ["-esque", " \\\"\"", " Kotlin", "&apos", "ian", "\\\\\"", "!.", "-K"], ["-esque", "\\\\\"", "&apos", " \\\"\"", ",", "&quot", "ian", "-style"], ["-esque", "&apos", " Kotlin", " \\\"\"", "&quot", "\\\\\"", " ;;^", " \\\""], ["-esque", " Kotlin", "&apos", " kotlin", "-centric", " libertarian", "-inspired", "\\\\\""], ["-esque", " Kotlin", "&apos", "\\\\\"", " \\\"\"", "&quot", " kotlin", "\\\"\""], ["-esque", "&apos", " \\\"\"", "\\\\\"", "&quot", " Kotlin", "\\\"\"", " LGBTQ"], ["-esque", "&apos", " \\\"\"", "\\\\\"", " Kotlin", "\\\"\"", "&quot", "\\<^"], ["-esque", " famously", "&apos", " \\\"\"", " Kotlin", "\\\\\"", "\\\"\"", " \"\""], [" Kotlin", " ;;^", " ``", " \\\"\"", "&apos", " kotlin", " pornstar", " '\\\""], [" ``", " Kotlin", " ''", "``", "&apos", " \\\"\"", "\\\"\"", "&quot"], [" Kotlin", "&apos", " \\\"", " ''", " ``", "&quot", " \"\"", "\\\"\""], [" Kotlin", " \n\n", " \r\n\r\n", " kotlin", " \r\n \r\n", "\\u", "\\\"\"", "...\\"], [" Kotlin", " kotlin", " JVM", "otlin", "\\\"\"", " \\\"\"", " \n\n", " \u2764"], [" Kotlin", " kotlin", "otlin", " JVM", " famously", "-language", " Android", "\n \n"], [" Kotlin", "\n\n", " \n\n", " __", " ___", " kotlin", " ...\\", " ..."], [" Kotlin", " ___", " __", " kotlin", " ...\\", "\\\"\"", "\n \n", " \n\n"], [" Kotlin", " __", " ___", " ...\\", "...\"", " ...", "\\\"\"", " kotlin"], [" __", " ___", "__.", " Kotlin", "\n \n", " ...", " ____", " ...\\"], [" Kotlin", " mostly", " -", " modern", " famously", " .", " \n  \n", " \\\""], [" mostly", " Kotlin", " famously", " primarily", " seamlessly", " modern", " \\\"", " transitioning"], [" Kotlin", " kotlin", " seamlessly", " tech", "-centric", " frameworks", " technology", " toolkit"], [" Kotlin", " kotlin", " seamlessly", " tech", " frameworks", " ecosystem", "-centric", " language"], [" Kotlin", " kotlin", " ecosystem", " tech", " JVM", "-centric", " language", " legacy"], [" Kotlin", " kotlin", " JVM", " ecosystem", " frameworks", " legacy", "-centric", " language"], [" Kotlin", " kotlin", " JVM", " language", " ecosystem", " frameworks", " legacy", " toolkit"], [" Kotlin", " JVM", " language", " ecosystem", " frameworks", " kotlin", " tech", " software"], [" Kotlin", " JVM", " language", " Java", " ecosystem", " languages", " frameworks", " kotlin"], [" JVM", " Kotlin", " language", " Java", " languages", " software", "Java", " Language"], [" JVM", " Kotlin", " language", " Java", " languages", " software", " programming", "-language"], [" JVM", " Kotlin", " language", " languages", " software", " programming", " Java", " ecosystem"], [" JVM", " Kotlin", " language", " languages", " ecosystem", " software", " Java", " programming"], [" JVM", " language", " ecosystem", " software", " programming", " Kotlin", " technology", " frameworks"], [" ecosystem", " JVM", " language", " software", " frameworks", " technology", " programming", " framework"], [" ecosystem", " JVM", " frameworks", " workflows", " mindset", " framework", " lifecycle", " toolkit"], [" ecosystem", " frameworks", " inherently", " traditions", " concepts", " JVM", " mindset", " fundamentals"], [" ecosystem", " traditions", " inherently", " frameworks", " toolkit", " tradition", " fundamentals", " concepts"], [" ecosystem", "-native", " frameworks", " toolkit", " fundamentals", " inherently", " traditions", " infrastructure"], [" ecosystem", "-native", " toolkit", " frameworks", " runtime", " JVM", " workflows", " mindset"], ["-native", " runtime", " ecosystem", " JVM", "-runtime", " frameworks", " toolkit", " Runtime"], [" runtime", " JVM", " ecosystem", "-native", " Kotlin", " Runtime", "/runtime", "-runtime"], [" runtime", "-native", " JVM", " ecosystem", " Runtime", " Kotlin", "-runtime", "/runtime"], [" JVM", " runtime", " Kotlin", " Runtime", "-runtime", " ecosystem", "runtime", " kotlin"], [" JVM", " runtime", " Kotlin", "-native", "-runtime", " Runtime", "runtime", " ecosystem"], [" JVM", " runtime", " Kotlin", " Runtime", "-native", " bytecode", "-runtime", " kotlin"], [" JVM", " VM", "VM", " runtime", "Jvm", " Kotlin", " compiler", "-native"], [" JVM", " VM", "VM", " runtime", " Kotlin", " compiler", "Jvm", " Runtime"], [" runtime", " JVM", " Native", " VM", " Runtime", "-native", "VM", " compiler"], [" runtime", " Runtime", " Native", "/N", " JVM", "-runtime", "/runtime", " VM"], [" runtime", "/N", " Runtime", " Native", " compiler", "-runtime", " VM", "-native"], ["/N", " Native", "-N", " runtime", " ABI", " VM", " compiler", "-native"]], "p": [[0.3878, 0.2076, 0.0674, 0.0435, 0.0318, 0.0264, 0.0233, 0.0133], [0.2795, 0.124, 0.0456, 0.0355, 0.0203, 0.019, 0.0148, 0.0139], [0.9375, 0.025, 0.0046, 0.0041, 0.0034, 0.0032, 0.0016, 0.0016], [0.0866, 0.0866, 0.0525, 0.0281, 0.0141, 0.011, 0.0081, 0.0063], [0.8341, 0.0252, 0.0144, 0.0127, 0.0087, 0.0072, 0.005, 0.005], [0.0782, 0.0306, 0.0198, 0.0174, 0.0113, 0.0093, 0.0082, 0.0064], [0.0754, 0.0754, 0.0625, 0.0587, 0.0518, 0.0379, 0.0379, 0.0356], [0.2285, 0.079, 0.0742, 0.0578, 0.0543, 0.045, 0.0423, 0.0373], [0.3791, 0.2605, 0.0353, 0.0292, 0.0275, 0.0228, 0.0201, 0.0201], [0.822, 0.0494, 0.0384, 0.0182, 0.0097, 0.0043, 0.0038, 0.0034], [0.6108, 0.3269, 0.0099, 0.0068, 0.0047, 0.0041, 0.0027, 0.0025], [0.1174, 0.0406, 0.0316, 0.018, 0.0169, 0.0169, 0.0159, 0.0109], [0.0883, 0.0253, 0.0174, 0.0153, 0.0119, 0.0105, 0.0077, 0.0072], [0.1715, 0.0075, 0.0071, 0.0066, 0.0052, 0.0052, 0.0043, 0.0036], [0.1283, 0.0185, 0.0185, 0.0119, 0.0093, 0.0077, 0.0056, 0.0053], [0.0771, 0.0152, 0.0118, 0.0038, 0.0022, 0.0017, 0.0017, 0.0017], [0.1397, 0.0157, 0.0115, 0.0021, 0.0019, 0.0016, 0.0015, 0.0015], [0.096, 0.0353, 0.0189, 0.0095, 0.0084, 0.0065, 0.0045, 0.0042], [0.1378, 0.0307, 0.0239, 0.0198, 0.0165, 0.0155, 0.0106, 0.0039], [0.0423, 0.0273, 0.0256, 0.0129, 0.0089, 0.0073, 0.0054, 0.005], [0.0105, 0.0093, 0.0072, 0.0068, 0.0039, 0.0034, 0.0027, 0.0022], [0.051, 0.035, 0.02, 0.0155, 0.0089, 0.0078, 0.0073, 0.0073], [0.2028, 0.09, 0.0546, 0.0399, 0.0352, 0.0311, 0.0292, 0.0258], [0.0173, 0.0162, 0.0143, 0.0135, 0.0082, 0.0072, 0.0068, 0.0064], [0.148, 0.139, 0.0291, 0.0274, 0.0227, 0.0213, 0.02, 0.0156], [0.8477, 0.1012, 0.0025, 0.0022, 0.002, 0.0011, 0.0009, 0.0007], [0.8043, 0.062, 0.0045, 0.0033, 0.0023, 0.0021, 0.0017, 0.0011], [0.1946, 0.0811, 0.0811, 0.0492, 0.036, 0.0193, 0.017, 0.016], [0.3367, 0.0585, 0.055, 0.0378, 0.0333, 0.0313, 0.0294, 0.0229], [0.1758, 0.1135, 0.0941, 0.0733, 0.0368, 0.0325, 0.027, 0.027], [0.3634, 0.1945, 0.0462, 0.0408, 0.0298, 0.0263, 0.0232, 0.0193], [0.0461, 0.0232, 0.017, 0.017, 0.017, 0.0124, 0.0109, 0.0103], [0.0481, 0.0352, 0.0291, 0.0188, 0.0156, 0.0122, 0.0095, 0.0078], [0.1735, 0.0819, 0.0266, 0.0183, 0.0118, 0.0118, 0.0111, 0.0092], [0.1379, 0.0948, 0.0255, 0.0199, 0.0175, 0.0165, 0.0145, 0.0145], [0.2404, 0.0733, 0.021, 0.0185, 0.0185, 0.0127, 0.012, 0.012], [0.3468, 0.0877, 0.05, 0.0173, 0.0173, 0.0111, 0.0105, 0.0105], [0.3316, 0.0613, 0.0478, 0.0212, 0.0199, 0.0165, 0.0137, 0.01], [0.2291, 0.0843, 0.0424, 0.0274, 0.0241, 0.0188, 0.0156, 0.0146], [0.2342, 0.1421, 0.0523, 0.0232, 0.0181, 0.0181, 0.0181, 0.0181], [0.2438, 0.1082, 0.0897, 0.0511, 0.0291, 0.0257, 0.0227, 0.0213], [0.2912, 0.0945, 0.0945, 0.042, 0.0348, 0.0271, 0.0186, 0.0175], [0.2599, 0.0898, 0.0699, 0.0424, 0.0399, 0.0374, 0.0257, 0.0242], [0.1681, 0.0581, 0.0546, 0.0311, 0.0292, 0.0274, 0.0214, 0.0201], [0.0918, 0.0491, 0.0491, 0.036, 0.0263, 0.0218, 0.0218, 0.0205], [0.087, 0.0562, 0.0265, 0.0265, 0.0182, 0.0171, 0.0133, 0.0125], [0.2324, 0.0518, 0.0379, 0.0168, 0.0168, 0.0168, 0.0149, 0.014], [0.1826, 0.0338, 0.0247, 0.0205, 0.0205, 0.0205, 0.0192, 0.0181], [0.1646, 0.0345, 0.0324, 0.0324, 0.0304, 0.0173, 0.0163, 0.0163], [0.2354, 0.0436, 0.0339, 0.0299, 0.0281, 0.0233, 0.0193, 0.016], [0.2786, 0.0798, 0.0455, 0.0276, 0.019, 0.0178, 0.0167, 0.013], [0.2765, 0.19, 0.148, 0.0544, 0.0188, 0.0147, 0.0147, 0.0138], [0.2696, 0.1635, 0.1443, 0.1443, 0.0531, 0.0251, 0.0221, 0.0208], [0.2439, 0.1899, 0.1676, 0.1479, 0.048, 0.0374, 0.0241, 0.0129], [0.3831, 0.2983, 0.2323, 0.0245, 0.0149, 0.0102, 0.008, 0.0062], [0.5397, 0.3273, 0.0443, 0.0269, 0.0209, 0.0127, 0.0053, 0.0036], [0.8775, 0.0636, 0.034, 0.0046, 0.0025, 0.0025, 0.0019, 0.0012], [0.9803, 0.0075, 0.0066, 0.0024, 0.0009, 0.0007, 0.0002, 0.0002], [0.968, 0.0138, 0.0074, 0.004, 0.0031, 0.0008, 0.0008, 0.0003], [0.5844, 0.1016, 0.0698, 0.0698, 0.048, 0.0423, 0.0176, 0.0107], [0.8907, 0.0502, 0.0163, 0.0163, 0.0047, 0.0047, 0.0036, 0.0032], [0.734, 0.1126, 0.0532, 0.0365, 0.0134, 0.0064, 0.0056, 0.0049], [0.9162, 0.0313, 0.0123, 0.0108, 0.0045, 0.0026, 0.0024, 0.002]], "ranks": {"Kotlin": [1562, 274, 517, 9, 36, 2, 14, 31, 101, 37, 72, 4, 4, 3, 32, 3, 2, 2, 6, 5, 5, 1, 2, 1, 1, 1, 1, 1, 1, 1, 4, 1, 2, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 6, 18, 35, 54, 63, 43, 10, 11, 5, 6, 3, 3, 3, 6, 5, 20, 43, 179, 72]}}, {"pos": 428, "top": [[" \u2013", " [\u2026]", ".", "@\"", "\u0647", ",", "\"", "u"], [" \\\"", "\\\"", "(\\\"", "\u4f46\u4e0d\u9650\u4e8e", ":\\\"", "=\\\"", "\u0647", "\\\")"], [" \u2013", "\\\"", "@\",", "@\"", "'[", "(\\\"", "\u200b\u200b", ":\\\""], ["\u4f46\u4e0d\u9650\u4e8e", "\\\")", "\\\"\\", " \\\"", " Nues", " '\\\"", "=\\\"", " \\\"$"], ["@\"", "\u4f46\u4e0d\u9650\u4e8e", "@\\", "@\",", "\u0647", "\\\")", "=\\\"", " \\\""], ["\u4f46\u4e0d\u9650\u4e8e", "\u0647", "@\",", "@\"", "-\\", "\u4e86", "=\\\"", "@\\"], ["\u4f46\u4e0d\u9650\u4e8e", "@\"", "\u0647", "\u4e86", "\\\\\"", "\\\"", "\\\")", "-\\"], ["\u4f46\u4e0d\u9650\u4e8e", "\\\\\"", "=\\\"", "@\"", " '\\\"", "\\\")", ":\\\"", "\u0647"], ["\\\\\"", "\u4f46\u4e0d\u9650\u4e8e", "=\\\"", " '\\\"", ":\\\"", "\\\"\",", "@\"", "\\\""], ["\\\\\"", "\u4f46\u4e0d\u9650\u4e8e", "-\\", "\u0647", "@\"", "=\\\"", " '\\\"", "/>\\"], ["\\\\\"", "\u4f46\u4e0d\u9650\u4e8e", "@\"", ".\\\"", "\\\"", "-\\", "\u0647", "\\\")"], ["\u4f46\u4e0d\u9650\u4e8e", "\\\\\"", "iverse", "flix", " '\\\"", "\u0647", "=\\\"", " Nues"], ["\u4f46\u4e0d\u9650\u4e8e", "flix", " Nues", "iverse", "\\\\\"", "=\\\"", " '\\\"", "ive"], ["\u4f46\u4e0d\u9650\u4e8e", "flix", " Nues", "iverse", " Hidal", " Fonse", "alytics", "osphere"], ["\u4f46\u4e0d\u9650\u4e8e", "\\\\\"", "\u0647", "}\\\"", "=\\\"", "flix", "iverse", " '\\\""], ["\u4f46\u4e0d\u9650\u4e8e", " Nues", "flix", "\u0647", "es", "\\\\\"", "iverse", "/&"], ["\u4f46\u4e0d\u9650\u4e8e", "iverse", "flix", "osphere", "es", "\u0647", "\\\\\"", "hoot"], ["\\\\\"", "\\\"", "iverse", "\u4f46\u4e0d\u9650\u4e8e", "osphere", "\\\")", "\\\"\\", ":\\\""], ["\\\\\"", "\\\"", "\\\")", "\u0647", "\\\"\\", "iverse", "\u4f46\u4e0d\u9650\u4e8e", "\"&"], ["\\\\\"", "\\\"", "\\\")", "\\\"\\", "\u4e86", "\u4f46\u4e0d\u9650\u4e8e", "\"&", "iverse"], ["\\\\\"", "\u4e86", "\\\")", "@", "@\",", "\"&", "@\"", "@\\"], ["flix", " Nues", "iverse", "osphere", "\\\")", " Hidal", "\\\"\\", "\\\\\""], ["\\\"\\", "\\\")", "\\\\\"", "iverse", "\\\"", "}\\\"", "osphere", "flix"], ["ion", "\\\")", "\\\"", "ive", "u", "n", "\"&", "\u0647"], [" \n\n", "\n\n", "   \n\n", " \r\n\r\n", " ...\\", "\\\\\"", "\\\"\\", "...\\"], [" ...\\", "iverse", " \n\n", " **\u3010", "osphere", "\\\\\"", "\\\"\\", " vibe"], ["\n\n", "iverse", "osphere", " \n\n", " ...\\", "\\\")", "itech", "\\\\\""], ["\n\n", " \n\n", " __", "__", " ___", " ...\\", "   \n\n", "___"], [" \n\n", "\n\n", " __", "__", "__.", "\\\"", " ___", "iverse"], [" ...\\", " __", " ...\"", " ...", "__", " ____", " ___", "___"], [" .**", " .", " \n", "__.", " \n\n", " technology", " __", " \u3002"], [" .", " hybrid", " technology", " technologies", " \n", " hybrids", " globally", " tech"], [" hybrid", " globally", " ultimately", " technology", " hybrids", " tech", " .", " complex"], ["iverse", " hybrids", " tech", " technologies", " interoper", " hybrid", " environments", " ecosystem"], [" interoper", " hybrids", "iverse", " hybrid", " tech", "osphere", " technologies", " geopol"], [" interoper", " hybrid", " hybrids", " \u200b\u200b", "\u8de8\u5883", "iverse", "\u200b\u200b", "\u8de8\u754c"], [" interoper", " hybrid", " hybrids", "\u8de8\u5883", "\u8de8\u754c", "iverse", " h\u00edbr", "\u8de8"], [" interoper", " hybrid", " hybrids", " h\u00edbr", "\u8de8\u5883", "\u8de8\u754c", " Hybrid", " tech"], [" interoper", " hybrid", " hybrids", "\u8de8\u5883", "\u8de8", "\u8de8\u754c", "iverse", " h\u00edbr"], [" interoper", "\u8de8\u5883", " hybrid", "\u8de8", " \u200b\u200b", " hybrids", "\u4fc4\u7f57\u65af", " iOS"], [" interoper", "\u8de8\u5883", " hybrid", " hybrids", "\u8de8", " \u200b\u200b", "\u4fc4\u7f57\u65af", " iOS"], [" interoper", "\u8de8\u5883", " iOS", "\u8de8", "\u54c8\u8428", "\u4fc4\u7f57\u65af", "\u8499\u53e4", " globally"], [" interoper", "\u8de8\u5883", " hybrid", " iOS", " hybrids", "\u8de8", "\u54c8\u8428\u514b\u65af\u5766", "\u54c8\u8428"], [" interoper", " hybrid", " hybrids", " Hybrid", "\u8de8\u5883", " iOS", "\u8de8", "Unified"], [" hybrid", " hybrids", " interoper", " Hybrid", "\u8de8\u5883", " Euras", " seamlessly", " iOS"], [" hybrid", " hybrids", " Hybrid", " interoper", "\u8de8\u5883", " transition", " versions", "/etc"], [" hybrid", " hybrids", "/etc", " transition", " Hybrid", " interoper", "/", " Transition"], [" hybrid", " hybrids", " transition", " Hybrid", " interoper", "/", " transitioning", " Transition"], [" transition", " hybrid", " hybrids", " interoper", " crossover", " transitions", " transitioning", " adaptations"], [" hybrid", " hybrids", " interoper", " crossover", " transition", " conversions", " complexities", " transitions"], [" interoper", " hybrid", " ecosystem", " complexities", " hybrids", " crossover", " transition", " workflows"], [" interoper", " ecosystem", " hybrid", " complexities", " crossover", " hybrids", " frameworks", " workflows"], [" ecosystem", " interoper", " hybrid", " runtime", " ecosystems", " hybrids", " internals", " lifecycle"], [" ecosystem", " interoper", " runtime", " hybrid", " lifecycle", " ecosystems", " hybrids", " internals"], [" runtime", " ecosystem", "runtime", "-runtime", " interoper", " architecture", " lifecycle", " Runtime"], [" runtime", "runtime", "-runtime", " ecosystem", " JVM", " Runtime", " interoper", " lifecycle"], [" runtime", " boundary", "runtime", " ecosystem", " JVM", "-runtime", " lifecycle", " boundaries"], [" runtime", " JVM", " VM", "VM", " ecosystem", "runtime", " GC", "-runtime"], [" runtime", " JVM", " memory", "runtime", "-runtime", " VM", " Runtime", " GC"], [" runtime", " memory", "runtime", " Runtime", " GC", " VM", " garbage", "-runtime"], [" runtime", "runtime", " Runtime", "-runtime", " GC", "/runtime", "Runtime", " memory"], [" runtime", " GC", "runtime", " Runtime", "-runtime", " memory", "/runtime", " ABI"], [" GC", "GC", " runtime", "VM", "RT", " ABI", "ative", " VM"]], "p": [[0.49, 0.0402, 0.0333, 0.0229, 0.0168, 0.0157, 0.0123, 0.0115], [0.2571, 0.2269, 0.166, 0.0476, 0.0327, 0.0271, 0.0255, 0.0239], [0.0641, 0.0641, 0.0532, 0.0499, 0.0414, 0.0365, 0.0236, 0.0222], [0.2303, 0.0178, 0.0138, 0.0122, 0.0115, 0.0101, 0.0095, 0.0079], [0.1662, 0.0947, 0.0738, 0.0651, 0.0575, 0.0507, 0.0476, 0.042], [0.1578, 0.058, 0.0242, 0.0188, 0.0188, 0.0138, 0.0107, 0.0101], [0.5598, 0.0489, 0.0316, 0.0246, 0.0217, 0.009, 0.0062, 0.0062], [0.1542, 0.0826, 0.0344, 0.0344, 0.0237, 0.0209, 0.0135, 0.0135], [0.1853, 0.1056, 0.0284, 0.0236, 0.0183, 0.0183, 0.0183, 0.0143], [0.1416, 0.1416, 0.0297, 0.0091, 0.008, 0.0075, 0.0058, 0.0052], [0.1847, 0.082, 0.06, 0.0563, 0.0412, 0.0321, 0.0302, 0.0195], [0.2621, 0.0428, 0.0178, 0.0123, 0.0102, 0.0079, 0.0074, 0.007], [0.101, 0.0396, 0.0212, 0.0199, 0.0155, 0.0128, 0.0088, 0.0078], [0.0625, 0.0379, 0.023, 0.0131, 0.0109, 0.0058, 0.0055, 0.0045], [0.1111, 0.0812, 0.0125, 0.0117, 0.0103, 0.0103, 0.0071, 0.0067], [0.1201, 0.0153, 0.0127, 0.0112, 0.0082, 0.0068, 0.0064, 0.0039], [0.0296, 0.0203, 0.0158, 0.0158, 0.0123, 0.0102, 0.007, 0.007], [0.0451, 0.0273, 0.0213, 0.0146, 0.0137, 0.0129, 0.0121, 0.0094], [0.0937, 0.0416, 0.0237, 0.0163, 0.0153, 0.0119, 0.0112, 0.0105], [0.0821, 0.0413, 0.0321, 0.0195, 0.0195, 0.0134, 0.0104, 0.0087], [0.0403, 0.0379, 0.0203, 0.0179, 0.0179, 0.0158, 0.0131, 0.0131], [0.0218, 0.014, 0.0132, 0.008, 0.0049, 0.0043, 0.0036, 0.0033], [0.0335, 0.0335, 0.0245, 0.0131, 0.0116, 0.0102, 0.0096, 0.0075], [0.0206, 0.0104, 0.0086, 0.0086, 0.0067, 0.0067, 0.0063, 0.0063], [0.0944, 0.0649, 0.0326, 0.0254, 0.0198, 0.0175, 0.0175, 0.0154], [0.0241, 0.0176, 0.0176, 0.0107, 0.0107, 0.01, 0.0094, 0.0083], [0.03, 0.0161, 0.0086, 0.0086, 0.0052, 0.0043, 0.0043, 0.0041], [0.8736, 0.0921, 0.0038, 0.0018, 0.0018, 0.0016, 0.0016, 0.0014], [0.1229, 0.07, 0.058, 0.0258, 0.0138, 0.0129, 0.0107, 0.0089], [0.0827, 0.0686, 0.0416, 0.0416, 0.0286, 0.0268, 0.0268, 0.0252], [0.0594, 0.0492, 0.0408, 0.036, 0.0318, 0.0299, 0.028, 0.0205], [0.0782, 0.037, 0.0347, 0.0164, 0.0145, 0.012, 0.0088, 0.0088], [0.0811, 0.0232, 0.0218, 0.0218, 0.0205, 0.0141, 0.0132, 0.0117], [0.0316, 0.0262, 0.0204, 0.0204, 0.0169, 0.0159, 0.0124, 0.0062], [0.0281, 0.0205, 0.0181, 0.0125, 0.0117, 0.0091, 0.0076, 0.0076], [0.0445, 0.0224, 0.0154, 0.0099, 0.0093, 0.0082, 0.0073, 0.0064], [0.1007, 0.0371, 0.0239, 0.012, 0.0088, 0.0083, 0.0073, 0.0073], [0.1371, 0.0832, 0.0418, 0.0088, 0.0088, 0.0077, 0.0077, 0.0077], [0.1219, 0.0396, 0.0199, 0.0137, 0.0137, 0.01, 0.0069, 0.0065], [0.0524, 0.0493, 0.017, 0.016, 0.0141, 0.0125, 0.0103, 0.008], [0.0581, 0.0399, 0.0375, 0.0242, 0.013, 0.0095, 0.0089, 0.0089], [0.0829, 0.0368, 0.021, 0.0185, 0.0163, 0.0105, 0.0099, 0.0087], [0.2115, 0.0223, 0.0209, 0.0163, 0.0163, 0.0135, 0.0093, 0.0093], [0.0799, 0.0244, 0.0215, 0.0215, 0.0178, 0.013, 0.0123, 0.0115], [0.0854, 0.0665, 0.0551, 0.0295, 0.0158, 0.0139, 0.0102, 0.0079], [0.1763, 0.1069, 0.037, 0.0326, 0.0175, 0.0128, 0.012, 0.0093], [0.133, 0.0758, 0.0316, 0.0316, 0.0262, 0.0204, 0.0204, 0.014], [0.1626, 0.1117, 0.0466, 0.032, 0.0249, 0.022, 0.0194, 0.0194], [0.066, 0.0582, 0.0582, 0.0514, 0.0426, 0.0243, 0.0189, 0.0122], [0.1358, 0.0824, 0.0641, 0.0603, 0.0389, 0.0267, 0.0222, 0.0196], [0.1209, 0.0647, 0.0571, 0.0474, 0.0445, 0.0393, 0.0253, 0.0154], [0.2395, 0.1453, 0.0472, 0.0367, 0.0252, 0.0223, 0.0174, 0.0163], [0.2718, 0.1755, 0.0503, 0.0444, 0.0287, 0.0223, 0.0185, 0.0185], [0.3525, 0.0613, 0.0613, 0.0421, 0.0328, 0.0255, 0.0212, 0.0199], [0.7724, 0.0814, 0.0436, 0.016, 0.0125, 0.0055, 0.0052, 0.0046], [0.8643, 0.0296, 0.023, 0.0109, 0.0096, 0.007, 0.0066, 0.0062], [0.758, 0.0294, 0.0229, 0.0202, 0.0178, 0.0102, 0.0095, 0.0095], [0.6888, 0.1356, 0.0343, 0.0236, 0.0184, 0.0162, 0.0111, 0.006], [0.852, 0.0292, 0.0257, 0.0138, 0.0122, 0.0065, 0.0065, 0.0065], [0.8329, 0.0532, 0.0143, 0.0135, 0.0126, 0.0064, 0.0056, 0.0036], [0.9392, 0.0221, 0.0152, 0.0049, 0.0036, 0.0036, 0.0025, 0.0017], [0.7556, 0.0376, 0.0332, 0.0275, 0.0201, 0.0122, 0.0115, 0.0089], [0.2138, 0.101, 0.101, 0.0787, 0.0508, 0.0477, 0.0349, 0.0255]], "ranks": {"Kotlin": [127896, 49056, 40484, 7966, 12332, 20070, 25284, 33195, 25465, 40812, 15783, 6434, 4420, 5378, 13859, 27206, 8479, 5744, 14780, 30856, 84721, 18512, 9235, 35133, 10859, 1433, 1254, 2744, 1946, 1619, 2057, 16144, 23307, 3557, 2928, 2060, 324, 207, 171, 49, 40, 17, 27, 22, 60, 122, 195, 432, 547, 1202, 1708, 1217, 644, 613, 305, 97, 72, 90, 103, 99, 100, 184, 184]}}, {"pos": 429, "top": [[" \u2013", "\u2013", ",", ".", "e", "\u00a0", ".\u2013", "\u2013and"], [" \u2013", "\u2013", " \u2013**", "**\u2013", ".\u2013", " *\u2013", " \u2013,", "\u2013and"], [" \u2013", "\u2013", ".\u2013", " \u2013**", "**\u2013", ".", ",", "\u2013and"], [" milfs", " **:", " Hidal", " **:**", " Shemale", "*\u201c.", " Blowjob", " ;;^"], [" *\u2013", " **.", " *.", " \u2013**", " **\u2013", " *", " *@", " **"], [" **\u2013", " *\u2013", " **:", " \u2013**", " Indigenous", " **.", " Hidal", "**\u2013"], [" **", " **.", " **\u2013", " *\u00ab", " *\u2013", " **\u2018", " **\u00ab", " \u2013**"], [" **", " **.", " **\u2013", " **\u00ab", " **^", " **-", " **:", " *\u00ab"], [" **.", " **", " *\u00ab", " **\u00ab", " **^", " **\u2013", " **.**", " **\u2018"], [" **\u2013", ".${", ",", " **", "/native", "-native", "\u7eaf\u5929\u7136", " **."], [",", " **\u2013", ".", " **", " \u2013", " **.", ".${", "\u2013"], [" **", " **\u00ab", " **\u2013", " **\u2018", " *\u00ab", " **.", " **'", " transformative"], [" **", " **\u00ab", " **\u2013", " transformative", " **.", " *\u00ab", " Indigenous", " **,"], [" transformative", " Indigenous", " iconic", " hybrids", " hybrid", " **\u2013", "-native", " technologies"], [" transformative", " Indigenous", " iconic", " sprawling", " arguably", "-era", " hybrids", " hybrid"], [" transformative", " Indigenous", " ;;^", "\u51ed\u501f\u7740", " transitioning", " iconic", " legacy", "\u62e5\u6709\u7740"], [" Indigenous", " transformative", " iconic", " hybrids", " sprawling", "-esque", " legacy", " transitioning"], [" Indigenous", " transformative", " hybrids", " **\u2013", " **^", " **", " technologies", " Native"], [" **^", " Indigenous", " transformative", " ;;^", " **", " LGBTQ", "-esque", " sprawling"], [" sprawling", " transformative", " arguably", " Indigenous", " ultimately", " globally", " overarching", " myriad"], [" \n\n", "<|endoftext|>", " \n\n\n", "   \n\n", "  \n\n", " \r\n\r\n", " sprawling", " myriad"], [" **^", " **:", " **", " ;;^", " **:**", " **\u00ab", " Indigenous", " **\u2013"], [" __", " Indigenous", " Native", ".__", " **", " \n\n\n", "Legacy", " \n \n"], [" __", " ultimately", "<|endoftext|>", " uniquely", " complex", " ,", " Modern", " modern"], [" \n\n", " __", " \n\n\n", " \r\n\r\n", "   \n\n", ".__", "\r\n\r\n", "\n\n"], [" **", " __", " **:", " Kurdish", " Indigenous", " technologies", " \n\n", " **^"], [" technologies", " __", " **", " technology", " aerospace", " Kurdish", " Mongolia", " Indigenous"], [" \n\n", " __", "\n\n", " _", " ___", " **", " \n\n\n", " \r\n\r\n"], [" __", " \n\n", " technology", " technologies", " **", " _", " Russian", " ..."], [" __", " **", " ...", " **.", " ___", "...**", " \n\n", " **:"], [" __", " **", " **.", " ...", " \n", " technology", " technologies", " ."], [" technology", " .", " ...", " technologies", " hybrid", " complex", " European", " environments"], [" technology", " complex", " technologies", " hybrid", " .", " environments", " **", " hybrids"], [" technology", " \n\n", " technologies", " \u2013", " hybrid", " complex", " environments", " tech"], [" technology", " technologies", " tech", " infrastructure", " complex", " hybrid", " environments", " systems"], [" technology", " technologies", " complex", " infrastructure", " tech", " \n\n", " hybrid", " \u2026"], [" technology", " infrastructure", " technologies", " complex", " hybrid", " tech", " core", " environments"], [" infrastructure", " technology", " core", " hybrid", " technologies", " complex", " systems", " environments"], [" infrastructure", " technology", " systems", " technologies", " environments", " complex", " core", " tech"], [" infrastructure", " technology", " technologies", " environments", " systems", " frameworks", " hybrid", " core"], [" technology", " infrastructure", " technologies", " systems", " performance", " frameworks", " software", " tech"], [" technology", " systems", " infrastructure", " technologies", " performance", " frameworks", " engine", " engines"], [" systems", " infrastructure", " technologies", " technology", " frameworks", " engines", " performance", " engine"], [" systems", " technologies", " technology", " engines", " infrastructure", " performance", " frameworks", " mechanisms"], [" systems", " technology", " technologies", " infrastructure", " engines", " performance", " frameworks", " environments"], [" systems", " environments", " technologies", " infrastructure", " engines", " technology", " frameworks", " ecosystem"], [" environments", " systems", " frameworks", " ecosystem", " infrastructure", " technologies", " workflows", " mechanisms"], [" environments", " systems", " frameworks", " mechanisms", " ecosystem", " technologies", " infrastructure", " inherently"], [" environments", " frameworks", " systems", " mechanisms", " ecosystem", " ecosystems", " fundamentals", " infrastructure"], [" frameworks", " ecosystem", " infrastructure", " environments", " fundamentals", " mechanisms", " workflows", " ecosystems"], [" ecosystem", " frameworks", " fundamentals", " workflows", " infrastructure", " ecosystems", " constraints", " lifecycle"], [" ecosystem", " frameworks", " fundamentals", " lifecycle", " workflows", " mechanisms", " optimizations", " ecosystems"], [" ecosystem", " runtime", " ecosystems", " lifecycle", " frameworks", " architectures", " optimizations", " fundamentals"], [" ecosystem", " runtime", " lifecycle", " architectures", " ecosystems", " frameworks", " fundamentals", " architecture"], [" runtime", " ecosystem", " lifecycle", "runtime", " architecture", " architectures", " memory", " frameworks"], [" runtime", " lifecycle", " garbage", "runtime", " ecosystem", " memory", " optimizations", " architecture"], [" garbage", " runtime", " GC", " lifecycle", "GC", "\u5783\u573e", "gc", "runtime"], [" runtime", " garbage", " GC", " ecosystem", "GC", "gc", " JVM", "runtime"], [" runtime", " memory", " garbage", " architecture", "memory", " GC", "runtime", " execution"], [" memory", " runtime", " garbage", " execution", "memory", " Memory", " GC", "Memory"], [" runtime", " memory", "runtime", " Runtime", " garbage", " execution", "/runtime", "Runtime"], [" runtime", " memory", " garbage", " execution", " GC", "runtime", " Runtime", "-runtime"], [" memory", " runtime", " garbage", " GC", " execution", " architecture", " concurrency", " threading"]], "p": [[0.841, 0.1461, 0.0073, 0.0027, 0.0008, 0.0005, 0.0004, 0.0002], [0.8473, 0.1147, 0.0256, 0.0025, 0.0015, 0.0011, 0.0011, 0.001], [0.5524, 0.4302, 0.0115, 0.0016, 0.0011, 0.0007, 0.0006, 0.0006], [0.029, 0.0155, 0.0128, 0.0113, 0.0078, 0.0069, 0.0069, 0.0061], [0.0829, 0.0345, 0.0345, 0.0163, 0.0153, 0.0127, 0.006, 0.006], [0.0296, 0.007, 0.0062, 0.0048, 0.0048, 0.0045, 0.0043, 0.0043], [0.1431, 0.1431, 0.0983, 0.0161, 0.0125, 0.0104, 0.0091, 0.0091], [0.2268, 0.1558, 0.0945, 0.061, 0.0394, 0.0271, 0.0186, 0.0186], [0.1849, 0.099, 0.099, 0.0821, 0.0284, 0.0134, 0.0104, 0.0098], [0.0459, 0.0159, 0.0131, 0.0075, 0.0058, 0.0051, 0.0043, 0.0038], [0.2154, 0.0657, 0.0545, 0.033, 0.0242, 0.0242, 0.0147, 0.0138], [0.244, 0.1227, 0.058, 0.02, 0.0166, 0.0166, 0.0095, 0.0083], [0.1023, 0.066, 0.0275, 0.0101, 0.0095, 0.0058, 0.004, 0.0037], [0.0111, 0.0053, 0.0028, 0.0023, 0.0023, 0.0021, 0.0019, 0.0019], [0.0095, 0.0065, 0.0051, 0.0025, 0.0024, 0.0024, 0.0018, 0.0018], [0.0072, 0.0072, 0.0063, 0.0056, 0.0025, 0.0021, 0.0017, 0.0016], [0.0191, 0.0116, 0.0038, 0.0035, 0.0024, 0.0024, 0.0023, 0.0021], [0.0124, 0.0091, 0.0033, 0.0033, 0.003, 0.0026, 0.0024, 0.002], [0.0106, 0.0088, 0.0078, 0.0037, 0.0032, 0.003, 0.0027, 0.0025], [0.0075, 0.0071, 0.0066, 0.0055, 0.0052, 0.0035, 0.0033, 0.0033], [0.3972, 0.0572, 0.0254, 0.0099, 0.0057, 0.0047, 0.0024, 0.0024], [0.0167, 0.013, 0.007, 0.0065, 0.0054, 0.0051, 0.0048, 0.0037], [0.102, 0.0095, 0.0061, 0.0061, 0.0058, 0.0045, 0.0042, 0.0042], [0.0102, 0.0096, 0.0084, 0.0058, 0.0055, 0.0048, 0.0048, 0.0042], [0.583, 0.2145, 0.0273, 0.02, 0.0094, 0.0061, 0.0042, 0.0031], [0.1427, 0.1427, 0.0318, 0.0219, 0.0141, 0.0141, 0.0133, 0.0125], [0.0405, 0.038, 0.0191, 0.018, 0.0158, 0.0149, 0.0131, 0.0102], [0.6227, 0.2291, 0.0955, 0.0054, 0.0042, 0.0029, 0.0025, 0.0016], [0.5136, 0.1667, 0.024, 0.024, 0.0146, 0.0083, 0.0065, 0.0047], [0.798, 0.0697, 0.0146, 0.0129, 0.0121, 0.0073, 0.0057, 0.0047], [0.3125, 0.0895, 0.0578, 0.0423, 0.0373, 0.0351, 0.02, 0.02], [0.0673, 0.0493, 0.0339, 0.0281, 0.0193, 0.015, 0.0133, 0.0125], [0.0682, 0.0388, 0.0343, 0.0322, 0.0208, 0.0183, 0.0126, 0.0105], [0.0765, 0.0675, 0.0596, 0.041, 0.0282, 0.0282, 0.0233, 0.0194], [0.1114, 0.0983, 0.0436, 0.041, 0.0362, 0.034, 0.034, 0.0265], [0.1008, 0.0507, 0.0476, 0.0447, 0.0289, 0.0289, 0.0271, 0.0239], [0.0927, 0.0927, 0.0679, 0.0301, 0.0283, 0.0283, 0.025, 0.0234], [0.1341, 0.0764, 0.0361, 0.0339, 0.0318, 0.0318, 0.0318, 0.0264], [0.1433, 0.1116, 0.0495, 0.0362, 0.034, 0.0194, 0.0182, 0.0161], [0.1518, 0.134, 0.0493, 0.0435, 0.0435, 0.0281, 0.0205, 0.0181], [0.1547, 0.1365, 0.0606, 0.0443, 0.0324, 0.0252, 0.0223, 0.0197], [0.1028, 0.1028, 0.0907, 0.0624, 0.0429, 0.0277, 0.0244, 0.0216], [0.1265, 0.0869, 0.0767, 0.0767, 0.0411, 0.0386, 0.03, 0.0265], [0.1522, 0.0719, 0.0596, 0.0464, 0.0464, 0.041, 0.0361, 0.0248], [0.1657, 0.0505, 0.0419, 0.0394, 0.0326, 0.0326, 0.0306, 0.0306], [0.1312, 0.0547, 0.04, 0.0376, 0.0332, 0.0312, 0.0293, 0.0258], [0.0745, 0.0658, 0.0618, 0.0618, 0.058, 0.0399, 0.0352, 0.0331], [0.1117, 0.0985, 0.0721, 0.0496, 0.0363, 0.0363, 0.032, 0.0301], [0.0965, 0.0965, 0.0851, 0.0663, 0.0456, 0.0378, 0.0333, 0.0333], [0.125, 0.0758, 0.0669, 0.0591, 0.046, 0.0358, 0.0358, 0.0279], [0.1494, 0.0906, 0.08, 0.08, 0.0485, 0.0428, 0.0378, 0.0378], [0.2368, 0.1436, 0.0678, 0.0466, 0.0466, 0.0411, 0.0363, 0.0363], [0.3613, 0.1329, 0.0806, 0.0711, 0.0489, 0.0297, 0.0262, 0.0262], [0.2923, 0.1773, 0.1218, 0.0508, 0.0349, 0.0349, 0.0272, 0.024], [0.8788, 0.0301, 0.0207, 0.0161, 0.0125, 0.0098, 0.0025, 0.0022], [0.9055, 0.0273, 0.0188, 0.0114, 0.0037, 0.0029, 0.0025, 0.0025], [0.6191, 0.2581, 0.0508, 0.0212, 0.0088, 0.0078, 0.0054, 0.0032], [0.5981, 0.2493, 0.063, 0.0232, 0.0124, 0.0059, 0.0046, 0.0046], [0.6795, 0.25, 0.0181, 0.0124, 0.011, 0.0059, 0.0046, 0.0028], [0.576, 0.3083, 0.0883, 0.0064, 0.0044, 0.0039, 0.0018, 0.0016], [0.9159, 0.0752, 0.0026, 0.002, 0.0014, 0.0007, 0.0004, 0.0003], [0.7839, 0.1982, 0.0068, 0.0032, 0.0015, 0.0013, 0.0009, 0.0004], [0.5362, 0.287, 0.0822, 0.0267, 0.0236, 0.0076, 0.0046, 0.003]], "ranks": {"Kotlin": [117284, 77305, 31797, 2384, 3191, 11920, 5768, 10229, 15173, 24443, 17799, 5835, 1847, 7006, 12201, 5998, 2431, 707, 796, 4733, 7725, 318, 89, 1955, 160, 21, 9, 102, 78, 129, 258, 1720, 1863, 3335, 5597, 3083, 2588, 4354, 4413, 3931, 4668, 3618, 3336, 5037, 7412, 14138, 16033, 14300, 15395, 19950, 15386, 4727, 1094, 1254, 789, 510, 382, 466, 627, 1309, 1260, 2705, 1695]}}, {"pos": 430, "top": [[" \u2013", ".", ",", "\u2013", " ", ".\u2013", " \u2013,", "\u200b\u200b"], [" \u2013", " \u2013,", " *\u2013", " \n \n", "\u2013", "\u2013and", " *@", " \u2013**"], [".\u2013", " \u2013", "\u2013", " \u2013,", "\u2013and", " *\u2013", "**\u2013", " \u2013**"], [" ``(", "``", "*\u201c.", "\\\":\\\"", " ``", "\\\",\\\"", " *\u201e", "\\\"\\"], [" *@", "\\\",\\\"", " *\u201e", " *\u201c", " \n \n", "\\\"\\", ".\",\"", "\\\":\\\""], ["\ufffd", " \n \n", "(rt", ".rt", " RTX", " __(\"", "*dt", "(runtime"], ["``", " \n \n", " ``", " *\u201e", " *\u201c", "\u3011\u3010", " ``(", "\\\"\\"], [" \n \n", "\\\"\\", "\\\",\\\"", ".\",\"", " \r\n \r\n", "\\\":\\\"", " *\u201e", "(runtime"], [" \n \n", ".\",\"", ".", " *\u201c", "__.", ".\u201d*", " \n\n\n", ","], [",", ".", " \n \n", ".\",\"", ",.", "\u00a0", ".\u2013", "\\\"\\"], [",", ".", "\u00a0", " \n \n", "...", ".\",\"", " ", ",."], [" ``", " ``(", " \n \n", " __", ".\",\"", " *\u201c", " \r\n \r\n", " $__"], [" ``", " arguably", " ``(", " transformative", "-esque", " akin", " showcased", "(runtime"], [" arguably", " akin", " transformative", "-esque", " showcased", " ``", " lifecycle", " showcasing"], [" arguably", " akin", " myriad", " requisite", " ``", " alongside", " swiftly", " ultimately"], [" arguably", " akin", " bolster", " myriad", " requisite", " swiftly", " encompass", "-esque"], [" myriad", " akin", " arguably", " bolster", " requisite", " swiftly", "-esque", " overarching"], [" myriad", "-esque", " arguably", " akin", " bolster", " sprawling", " swiftly", " overarching"], [" arguably", " myriad", " akin", "-esque", " swiftly", " vastly", " ``", " bolster"], [" arguably", " myriad", " swiftly", " akin", " requisite", " vastly", " bolster", " --"], ["<|endoftext|>", " \n\n", " swiftly", " \n\n\n", " --", " myriad", " arguably", " requisite"], [" ``", " ``(", "``", " complexities", " swiftly", " arguably", " '\\\"", " ;;^"], [" ``", " ``(", "``", " --", " ''", " swiftly", " \u2015", " arguably"], [" ``", " --", " ultimately", " ``(", "``", " swiftly", " ''", " \u2015"], [" ``", " --", "``", " __", " ``(", " swiftly", " \r\n \r\n", " \u2015"], [" ``", " __", " --", "``", " ``(", ".__", " ___", " *__"], [" ``", " __", " --", "``", ".__", " \n\n", " ``(", " ___"], [" --", " ``", " \n\n", " __", "\n\n", " ,", " .", " ___"], [" __", " ``", " --", " \n\n", " .", " ____", " ___", ".__"], [" __", " .", " ...", " \n\n", " --", " \n  \n", " ____", " technologies"], [" .", " ...", " ,", " --", " heavily", " systems", " technology", " technologies"], [" .", " ,", " heavily", " systems", " complex", " system", " technology", " ultimately"], [" .", " heavily", " ,", " systems", " system", " complex", " ultimately", " rapidly"], [" technologies", " heavily", " fundamentally", " technology", " infrastructure", " systems", " hardware", " system"], [" technologies", " fundamentally", " infrastructure", " heavily", " complexities", " hardware", " systems", " technology"], [" hardware", " technologies", " complexities", " fundamentally", " \u2014", " complex", " infrastructure", " complexity"], [" runtime", " hardware", " complexities", " complexity", " fundamentally", " \u2014", " infrastructure", " technologies"], [" runtime", " hardware", " complexity", " complexities", " inherently", " fundamentally", " infrastructure", " optimized"], [" runtime", " hardware", " inherently", " complexity", " mechanics", " infrastructure", " mechanisms", " optimized"], [" runtime", " JVM", " CPU", " lifecycle", " mechanisms", " complexity", " mechanics", " inherently"], [" runtime", " JVM", " CPU", " JIT", " lifecycle", " software", " engine", " optimizations"], [" runtime", " JVM", " CPU", " engine", " engines", " systems", " JIT", " software"], [" runtime", " CPU", " JVM", " engines", " systems", " engine", " mechanisms", " software"], [" runtime", " CPU", " systems", " engines", " mechanisms", " engine", " JVM", " technologies"], [" runtime", " systems", " engines", " CPU", " latency", " mechanisms", " engine", " garbage"], [" runtime", " systems", " engines", " CPU", " latency", " complexities", " mechanisms", " inherently"], [" runtime", " latency", " complexities", " inherently", " mechanisms", " systems", " complexity", " engines"], [" runtime", " mechanisms", " inherently", " systems", " complexities", " constraints", " latency", " complexity"], [" mechanisms", " systems", " complexities", " constraints", " capabilities", ".", " runtime", " inherently"], [" constraints", " capabilities", ".", " limitations", " complexities", " mechanisms", " complexity", " protections"], [" constraints", " capabilities", " limitations", " complexities", " realities", " environments", " protections", " mechanisms"], [" capabilities", " constraints", " limitations", " optimizations", " mechanisms", " environments", " efficiencies", " behaviors"], [" capabilities", " limitations", " constraints", " optimizations", " environments", " mechanisms", " efficiencies", " behaviors"], [" constraints", " capabilities", " optimizations", " limitations", " behaviors", " mechanisms", " internals", " assumptions"], [" constraints", " assumptions", " limitations", " optimizations", " capabilities", " behaviors", " runtime", " characteristics"], [" limitations", " constraints", " optimizations", " assumptions", " capabilities", " behaviors", " characteristics", " overhead"], [" limitations", " assumptions", " constraints", " optimizations", " behaviors", " capabilities", " garbage", " characteristics"], [" characteristics", " assumptions", " limitations", " constraints", " optimizations", " capabilities", " behaviors", " garbage"], [" overhead", " characteristics", " constraints", " architectures", "\u5f00\u9500", " architecture", " assumptions", " behaviors"], [" overhead", " characteristics", " constraints", " assumptions", " models", " architectures", " limitations", " architecture"], [" overhead", " characteristics", " constraints", " architectures", " assumptions", " models", " behaviors", " limitations"], [" overhead", " characteristics", " constraints", " architectures", " models", " assumptions", " behaviors", " architecture"], [" overhead", " characteristics", " constraints", " models", " architectures", " assumptions", " realities", " architecture"]], "p": [[0.8278, 0.1269, 0.0104, 0.0072, 0.0038, 0.0018, 0.0014, 0.0014], [0.6933, 0.0367, 0.0305, 0.0197, 0.0163, 0.0163, 0.0135, 0.0112], [0.3295, 0.1764, 0.1557, 0.0783, 0.0735, 0.061, 0.0224, 0.0211], [0.1081, 0.0351, 0.0257, 0.0188, 0.0188, 0.0166, 0.0146, 0.0061], [0.0238, 0.0223, 0.0197, 0.0197, 0.0185, 0.0112, 0.0099, 0.0093], [0.0074, 0.0074, 0.0065, 0.0065, 0.0054, 0.0042, 0.0037, 0.0037], [0.0351, 0.0257, 0.0213, 0.02, 0.02, 0.0137, 0.0121, 0.0083], [0.1018, 0.0424, 0.0177, 0.0177, 0.0147, 0.0129, 0.0107, 0.0107], [0.1614, 0.0763, 0.0492, 0.0218, 0.0218, 0.0205, 0.0181, 0.016], [0.361, 0.0204, 0.0169, 0.0131, 0.0066, 0.0051, 0.0043, 0.004], [0.2334, 0.0973, 0.0316, 0.0246, 0.0217, 0.0159, 0.0103, 0.0066], [0.0657, 0.0242, 0.02, 0.0114, 0.0114, 0.0089, 0.0078, 0.0069], [0.0458, 0.008, 0.0075, 0.0075, 0.0058, 0.0058, 0.0058, 0.0055], [0.0138, 0.013, 0.0122, 0.0122, 0.0089, 0.0069, 0.0058, 0.0054], [0.0448, 0.0272, 0.0187, 0.0155, 0.0113, 0.01, 0.0078, 0.0078], [0.0442, 0.0285, 0.0268, 0.0268, 0.0153, 0.0143, 0.0099, 0.0093], [0.0564, 0.0564, 0.0387, 0.0321, 0.0221, 0.0195, 0.0172, 0.0118], [0.0274, 0.0242, 0.0213, 0.0213, 0.0129, 0.0101, 0.0095, 0.0089], [0.0389, 0.0323, 0.0303, 0.0236, 0.0119, 0.0105, 0.0092, 0.0082], [0.0374, 0.0352, 0.0292, 0.0177, 0.0147, 0.0147, 0.0107, 0.0107], [0.2409, 0.1138, 0.0186, 0.0154, 0.0154, 0.0154, 0.0088, 0.0077], [0.5568, 0.0587, 0.0116, 0.0017, 0.0014, 0.0013, 0.0011, 0.0011], [0.828, 0.0302, 0.0266, 0.0072, 0.0018, 0.0014, 0.001, 0.0009], [0.676, 0.046, 0.0062, 0.0062, 0.0058, 0.0048, 0.004, 0.0029], [0.4964, 0.0462, 0.017, 0.0117, 0.011, 0.0067, 0.0055, 0.0055], [0.6357, 0.0461, 0.0192, 0.018, 0.015, 0.0097, 0.0052, 0.0046], [0.6048, 0.0769, 0.022, 0.0134, 0.0118, 0.0081, 0.0076, 0.0059], [0.1611, 0.1513, 0.0977, 0.0918, 0.0407, 0.0263, 0.011, 0.0103], [0.1497, 0.0753, 0.0707, 0.0356, 0.0277, 0.0216, 0.0139, 0.0123], [0.14, 0.0904, 0.0749, 0.0312, 0.0276, 0.0259, 0.0259, 0.0139], [0.6334, 0.0336, 0.0169, 0.0109, 0.0085, 0.0085, 0.008, 0.008], [0.2759, 0.0329, 0.031, 0.0137, 0.0129, 0.0129, 0.0089, 0.0078], [0.1837, 0.0436, 0.0151, 0.0133, 0.0125, 0.011, 0.0104, 0.0091], [0.0502, 0.0502, 0.0252, 0.0237, 0.0223, 0.0223, 0.0144, 0.0135], [0.041, 0.0319, 0.03, 0.03, 0.0249, 0.0234, 0.0171, 0.0151], [0.0372, 0.0308, 0.0308, 0.029, 0.0256, 0.024, 0.0226, 0.0199], [0.0476, 0.042, 0.0327, 0.0288, 0.0288, 0.0186, 0.0175, 0.0164], [0.0591, 0.0317, 0.0317, 0.0218, 0.0204, 0.0204, 0.018, 0.0132], [0.0804, 0.0357, 0.0216, 0.0203, 0.0191, 0.0179, 0.0169, 0.0158], [0.1486, 0.0582, 0.0228, 0.0157, 0.0157, 0.0138, 0.0122, 0.0122], [0.2487, 0.0758, 0.0406, 0.0204, 0.018, 0.0149, 0.014, 0.014], [0.3652, 0.0676, 0.0596, 0.0282, 0.0219, 0.0182, 0.0171, 0.0171], [0.263, 0.0457, 0.0429, 0.0403, 0.0356, 0.0334, 0.0191, 0.0179], [0.1816, 0.0489, 0.0459, 0.0431, 0.0278, 0.0278, 0.0231, 0.0217], [0.1172, 0.038, 0.0296, 0.0231, 0.0217, 0.018, 0.0159, 0.014], [0.059, 0.046, 0.0381, 0.0246, 0.0231, 0.0204, 0.018, 0.0169], [0.1003, 0.0326, 0.0326, 0.027, 0.0238, 0.0224, 0.0186, 0.0186], [0.0618, 0.0546, 0.0425, 0.0352, 0.0311, 0.0311, 0.0227, 0.0189], [0.0623, 0.0402, 0.0402, 0.0355, 0.0276, 0.026, 0.026, 0.0229], [0.1452, 0.0569, 0.0569, 0.0534, 0.0324, 0.0252, 0.0223, 0.0185], [0.2253, 0.1206, 0.0731, 0.0305, 0.0286, 0.021, 0.0153, 0.0144], [0.4608, 0.055, 0.0486, 0.0378, 0.026, 0.0216, 0.0158, 0.0158], [0.4614, 0.0624, 0.0486, 0.0295, 0.026, 0.023, 0.0203, 0.0203], [0.2012, 0.1776, 0.0653, 0.0577, 0.0396, 0.035, 0.0309, 0.0309], [0.1665, 0.1296, 0.1296, 0.1144, 0.0786, 0.0694, 0.0289, 0.0225], [0.3793, 0.1581, 0.0846, 0.0747, 0.0747, 0.0582, 0.04, 0.013], [0.255, 0.1986, 0.1547, 0.0645, 0.0569, 0.0569, 0.0569, 0.0237], [0.5323, 0.1188, 0.1048, 0.072, 0.0386, 0.03, 0.0161, 0.0086], [0.9634, 0.0156, 0.0035, 0.0031, 0.0024, 0.0024, 0.0019, 0.0014], [0.925, 0.0406, 0.0091, 0.0038, 0.0029, 0.002, 0.002, 0.0016], [0.8685, 0.1037, 0.0059, 0.0035, 0.0031, 0.0024, 0.0022, 0.0013], [0.8231, 0.0983, 0.0133, 0.0104, 0.0091, 0.0071, 0.0043, 0.0038], [0.7751, 0.0721, 0.0265, 0.0234, 0.0207, 0.0125, 0.0125, 0.0067]], "ranks": {"Kotlin": [29250, 18166, 4002, 817, 460, 1407, 2825, 9241, 7148, 31595, 15905, 7814, 11927, 16908, 68588, 40829, 32420, 22057, 29927, 86188, 108230, 32579, 34408, 72750, 48257, 8693, 4586, 22730, 8642, 8159, 14151, 25847, 28851, 11319, 13080, 5873, 3748, 4543, 3715, 2027, 2352, 2516, 2085, 3520, 4598, 11758, 12572, 12119, 17733, 23380, 31344, 15764, 3334, 2963, 982, 1082, 1182, 1502, 2208, 3993, 6477, 12120, 9630]}}, {"pos": 431, "top": [[".", " \u2013", ",", "<|endoftext|>", "\u2026.", "\u2013", ";", "*."], [" \u2013", "\u2013", "  \n\n", "\u00b9", " \u2013**", "\u2013\u2013", " substantially", "\u00ae,"], [" \u2013", "\u2013", ",", ".", "\u2026.", ".\u2013", " **\u2013", "**\u2013"], [" **\u00ab", " **\u201e", " \u00bb**", " **\u201c", " **:", " Shemale", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " **\u25a0"], [" **\u201c", " **\u201e", " **\u00ab", " **\"", "_HPP", "\\xc", "######", " **."], [" **\"", " **\u201c", " **\u00ab", "-**", " **\u201e", "\\xc", "\u2026\u2026\u2026\u2026", " \n\n\n\n"], [" **\u00ab", " **\"", " **\u201c", "\\xc", " **\u201e", "\u2019**", " \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026", "\u2026\u2026\u2026\u2026"], [" **\u00ab", " **\u201e", " **\"", "\\xc", ".hpp", " **\u201c", " substantially", "######"], [" **\u00ab", " **\u201e", "\\xc", "\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0", "\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0", " **\"", "######", "\u201a"], [" requisite", " substantially", "\\xc", " substantial", "\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0", " profoundly", "\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0", "\u00a0\u00a0"], [" \u2013", "<|endoftext|>", ",", " substantially", " requisite", "\u00a0\u00a0", "\u00a0", " substantial"], [" substantially", " profoundly", " substantial", " fundamentally", " requisite", " thereof", " **\u00ab", " akin"], [" substantially", " substantial", " fundamentally", " requisite", " profoundly", " thereof", " akin", " \u201e"], [" substantially", " substantial", " fundamentally", " requisite", " akin", " profoundly", " inherent", " \u201e"], [" substantially", " requisite", " akin", " substantial", " inherent", " fundamentally", " \u201e", " particular"], [" \u201e", " substantially", " requisite", " thereof", " substantial", " pertinent", " fundamentally", " akin"], [" substantially", " requisite", " akin", " substantial", " fundamentally", " largely", " notably", " profoundly"], [" \u201e", " akin", " substantially", " fundamentally", " requisite", " largely", " notably", " profoundly"], [" akin", " fundamentally", " thereof", " requisite", " substantially", " inherently", " notably", " largely"], [" substantially", " akin", " requisite", " notably", " thereof", " fundamentally", " largely", " broadly"], ["<|endoftext|>", " notably", " substantially", " akin", " largely", " requisite", " myriad", " broadly"], [" thereof", " ``", " fundamentally", " notably", " akin", " profoundly", " **\u201e", "\u6b64\u756a"], [" ``", " notably", " thereof", " substantially", " largely", " fundamentally", " akin", " broadly"], [" notably", " largely", " ``", " substantially", " ultimately", " particularly", " ,", " broadly"], [" notably", " largely", " substantially", " broadly", " ``", " particularly", " requisite", " particular"], [" notably", " ``", " fundamentally", " largely", " substantially", " broadly", " thereof", " profoundly"], [" fundamentally", " notably", " broadly", " largely", " substantially", " profoundly", " ``", " akin"], [" notably", " largely", " ,", " broadly", " substantially", " ``", " .", " particularly"], [" fundamentally", " .", " notably", " largely", " akin", " broadly", " substantially", " ultimately"], [" .", " fundamentally", " largely", " notably", " broadly", " particularly", " substantially", " ,"], [" .", " largely", " ,", " fundamentally", " particularly", " of", " essentially", " broadly"], [" .", " particularly", " ,", " largely", " of", " fundamentally", " essentially", " heavily"], [" .", " fundamentally", " largely", " particularly", " essentially", " heavily", " somewhat", " broadly"], [" fundamentally", " inherently", " largely", " essentially", " heavily", " particularly", " deeply", " inherent"], [" fundamentally", " inherently", " profoundly", " heavily", " deeply", " largely", " inherent", " essentially"], [" fundamentally", " inherently", " heavily", " largely", " deeply", " essentially", " inherent", " particularly"], [" fundamentally", " inherently", " inherent", " notoriously", " deeply", " .", " sluggish", " heavily"], [" inherently", " fundamentally", " inherent", " notoriously", " sluggish", " deeply", " limitations", " slow"], [" inherently", " fundamentally", " inherent", " notoriously", " limitations", " particularly", " sluggish", " deeply"], [" inherently", " fundamentally", " inherent", " notoriously", " sluggish", " limitations", " slower", " particularly"], [" inherently", " inherent", " fundamentally", " slow", " slower", " notoriously", " sluggish", " particularly"], [" inherently", " inherent", " fundamentally", " particularly", " slow", " limitations", " sluggish", " notoriously"], [" inherently", " inherent", " fundamentally", " notoriously", " sluggish", " slow", " slower", " particularly"], [" inherently", " inherent", " notoriously", " fundamentally", " limitations", " traits", " sluggish", " slow"], [" inherently", " inherent", " fundamentally", " notoriously", " limitations", " slow", " deeply", " particularly"], [" inherently", " inherent", " fundamentally", " notoriously", " particularly", " limitations", " deeply", " slow"], [" inherently", " inherent", " fundamentally", " notoriously", " particularly", " traits", " limitations", " sluggish"], [" inherently", " inherent", " particularly", " fundamentally", ".**", " especially", " traits", " notoriously"], [".**", " inherently", " unless", " fundamentally", " particularly", " inherent", " especially", "."], [".**", ".", " unless", " Unless", "**.", ".*", ".)", ".\""], [" unless", ".**", ".", " Unless", "**.", "().", "unless", "\u9664\u975e"], [".**", " unless", ".", "().", "**.", " Unless", " ().", "unless"], [" unless", ".**", " Unless", ".", "unless", "**.", "().", "Unless"], [" unless", " Unless", "unless", "Unless", "\u9664\u975e", ".**", " (", " ()."], [" unless", " Unless", "unless", "Unless", "\u9664\u975e", ".**", " (", "()."], [" unless", " Unless", "unless", " garbage", " latency", ".**", "\u9664\u975e", "Unless"], [" unless", " GC", " garbage", "GC", " Unless", "unless", "gc", "Unless"], [" GC", " unless", " latency", " garbage", "GC", " Unless", "unless", "gc"], [" GC", " unless", "GC", " latency", " garbage", "gc", " Unless", "unless"], [" GC", " garbage", "GC", " latency", " unless", "gc", " Gar", " gc"], [" GC", "GC", " garbage", " latency", " unless", " Gar", "gc", " gc"], [" GC", "GC", ".", " garbage", " unless", "gc", " (", " Gar"], [".", " GC", " unless", "GC", " garbage", " (", " without", ","]], "p": [[0.6527, 0.187, 0.083, 0.0163, 0.0077, 0.0073, 0.0041, 0.0034], [0.7069, 0.0101, 0.0057, 0.0033, 0.0022, 0.0018, 0.0015, 0.0014], [0.6845, 0.1731, 0.032, 0.0171, 0.0104, 0.0076, 0.0043, 0.0038], [0.1878, 0.0783, 0.0154, 0.0088, 0.0073, 0.0064, 0.006, 0.0057], [0.0509, 0.0478, 0.0478, 0.0329, 0.0129, 0.0129, 0.01, 0.0094], [0.0412, 0.0234, 0.0234, 0.0118, 0.0104, 0.0086, 0.0081, 0.0072], [0.1379, 0.089, 0.0612, 0.0371, 0.0289, 0.0225, 0.0175, 0.0155], [0.1475, 0.079, 0.051, 0.0241, 0.0083, 0.0078, 0.0069, 0.0057], [0.0576, 0.0449, 0.029, 0.0165, 0.0155, 0.0107, 0.0078, 0.0078], [0.0525, 0.0299, 0.0171, 0.0151, 0.0133, 0.0097, 0.0067, 0.0063], [0.0888, 0.0692, 0.0506, 0.0447, 0.0288, 0.0255, 0.0239, 0.0186], [0.0617, 0.0257, 0.0242, 0.0213, 0.0147, 0.0057, 0.0054, 0.0048], [0.0902, 0.0332, 0.0258, 0.0228, 0.0189, 0.0122, 0.0108, 0.0095], [0.0862, 0.0317, 0.0298, 0.0247, 0.017, 0.0141, 0.0117, 0.011], [0.0837, 0.0652, 0.0272, 0.0255, 0.0165, 0.0165, 0.0155, 0.0137], [0.0794, 0.0546, 0.0292, 0.0214, 0.0177, 0.013, 0.0122, 0.0107], [0.0925, 0.0767, 0.0527, 0.03, 0.0249, 0.0151, 0.0151, 0.0125], [0.0541, 0.0396, 0.0372, 0.0328, 0.024, 0.0137, 0.0128, 0.0113], [0.0506, 0.0475, 0.0475, 0.0239, 0.0224, 0.0128, 0.0128, 0.012], [0.0633, 0.0463, 0.0384, 0.0384, 0.0339, 0.0299, 0.0233, 0.0219], [0.1771, 0.0507, 0.0395, 0.0395, 0.0308, 0.0289, 0.024, 0.024], [0.0325, 0.027, 0.0154, 0.012, 0.0093, 0.0073, 0.0057, 0.0039], [0.3205, 0.0672, 0.028, 0.0205, 0.0181, 0.017, 0.016, 0.011], [0.1133, 0.0731, 0.0472, 0.0417, 0.0345, 0.0324, 0.0197, 0.0185], [0.1235, 0.0621, 0.0548, 0.0454, 0.0312, 0.0228, 0.0215, 0.0215], [0.079, 0.0742, 0.0742, 0.0397, 0.0351, 0.0309, 0.0309, 0.02], [0.0745, 0.0657, 0.0617, 0.0512, 0.0452, 0.0227, 0.0227, 0.0177], [0.0768, 0.0562, 0.0466, 0.0363, 0.0363, 0.0301, 0.0301, 0.0301], [0.0804, 0.043, 0.0404, 0.0404, 0.0357, 0.0357, 0.0261, 0.0179], [0.0973, 0.0758, 0.0521, 0.0406, 0.0316, 0.0262, 0.0204, 0.018], [0.6716, 0.0216, 0.0203, 0.0168, 0.0131, 0.0123, 0.0075, 0.007], [0.3664, 0.0363, 0.032, 0.0283, 0.0265, 0.022, 0.0133, 0.0118], [0.1454, 0.0731, 0.0503, 0.0368, 0.0269, 0.0197, 0.0163, 0.0153], [0.2077, 0.0559, 0.0409, 0.0339, 0.0281, 0.0264, 0.015, 0.0141], [0.2487, 0.1417, 0.0279, 0.0217, 0.0204, 0.0204, 0.0192, 0.0169], [0.1819, 0.1417, 0.0279, 0.0231, 0.0217, 0.0169, 0.0159, 0.0149], [0.2052, 0.1928, 0.0261, 0.0245, 0.0203, 0.0191, 0.0179, 0.0179], [0.2768, 0.1903, 0.0399, 0.0147, 0.0114, 0.0107, 0.0101, 0.0089], [0.4263, 0.1473, 0.0509, 0.0187, 0.0094, 0.0083, 0.0073, 0.0069], [0.5161, 0.1016, 0.0843, 0.0129, 0.0078, 0.0069, 0.0057, 0.0054], [0.4468, 0.088, 0.0685, 0.0184, 0.0144, 0.0105, 0.0093, 0.0093], [0.5016, 0.1119, 0.0563, 0.0142, 0.0111, 0.0098, 0.0098, 0.0098], [0.553, 0.0848, 0.0514, 0.0138, 0.0122, 0.0115, 0.0108, 0.0089], [0.482, 0.1076, 0.0396, 0.0396, 0.0199, 0.0113, 0.01, 0.0094], [0.4619, 0.091, 0.0552, 0.0335, 0.0191, 0.009, 0.0085, 0.0079], [0.5082, 0.1001, 0.0732, 0.0253, 0.0185, 0.0112, 0.0068, 0.006], [0.6651, 0.102, 0.0701, 0.0228, 0.0069, 0.0061, 0.0037, 0.0021], [0.4846, 0.202, 0.0743, 0.0743, 0.031, 0.0083, 0.0069, 0.0045], [0.1536, 0.064, 0.0601, 0.0531, 0.0531, 0.0365, 0.0251, 0.0195], [0.38, 0.2959, 0.2305, 0.0074, 0.0065, 0.004, 0.0037, 0.0037], [0.4974, 0.3017, 0.0524, 0.036, 0.0233, 0.015, 0.0117, 0.0067], [0.5355, 0.2232, 0.0564, 0.0388, 0.0388, 0.0221, 0.0126, 0.0063], [0.7456, 0.1009, 0.0612, 0.0175, 0.0155, 0.0137, 0.0078, 0.0044], [0.9186, 0.0457, 0.0168, 0.0038, 0.0038, 0.0023, 0.0018, 0.0013], [0.9158, 0.0277, 0.019, 0.007, 0.0062, 0.0024, 0.002, 0.0019], [0.8708, 0.0298, 0.0159, 0.0141, 0.0097, 0.0075, 0.0049, 0.0049], [0.5974, 0.2198, 0.0714, 0.0337, 0.0297, 0.018, 0.0075, 0.0052], [0.423, 0.2566, 0.107, 0.0833, 0.0735, 0.0145, 0.0088, 0.0088], [0.5893, 0.1315, 0.1024, 0.0798, 0.0621, 0.0065, 0.0051, 0.0035], [0.6794, 0.1947, 0.0716, 0.0205, 0.0141, 0.0052, 0.0028, 0.0022], [0.9046, 0.0578, 0.0213, 0.0054, 0.0029, 0.0012, 0.0012, 0.0011], [0.8645, 0.071, 0.0296, 0.0158, 0.0058, 0.0024, 0.0023, 0.0017], [0.9906, 0.0067, 0.001, 0.0005, 0.0003, 0.0003, 0.0001, 0.0]], "ranks": {"Kotlin": [70542, 66209, 81694, 12079, 14939, 25109, 23654, 43997, 43331, 140800, 136926, 108887, 106627, 97306, 138831, 53143, 83252, 67205, 54618, 106603, 150423, 65963, 109813, 148009, 102138, 23124, 20117, 45584, 31283, 26321, 30371, 37133, 31262, 17719, 48431, 47458, 57951, 46249, 56479, 37923, 58245, 57555, 42936, 39232, 45478, 105063, 70914, 64363, 129071, 93629, 72390, 43698, 11303, 10177, 5609, 765, 204, 150, 149, 264, 313, 181, 228]}}, {"pos": 432, "top": [[" \u2013", ".", "\u2013", ",", ";", "\u00a0\u00a0", "\u2026.", "\u2026.."], [" \u2013", "\u2013", "\u2013and", " \u2013,", " \u200b\u200b", "\u2013\u2013", " Hammer", " \u2013**"], ["\u2013", " \u2013", "\u2026..", "\u2013and", "\u2026.", ",", "\u2026", ".\u2013"], [" milfs", "-------------</", " Shemale", "----------</", " Blowjob", " ;;^", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\uff0a\uff0a\uff0a\uff0a"], ["  \n\n", "\uff20", ":@", " **\u201c", "\u65b0\u52a0\u5761", "  \r\n\r\n", " (@", "<|quad_end|>"], ["<|quad_end|>", "!:", "\u65b0\u52a0\u5761", "arren", "\u6cd5\u62c9", "\uff01", "!\u201d.", " \u0628\u0648\u062a\u064a\u0646"], ["  \n\n", " \n\n", "<|endoftext|>", "\n\n", "   \n\n", " \r\n\r\n", "  \r\n\r\n", "  \n"], ["  \n\n", " \n\n", "   \n\n", " \r\n\r\n", "    \n\n", "  \r\n\r\n", "     \n\n", "\t\n\n"], [" \n\n", "  \n\n", "   \n\n", "    \n\n", "\t\n\n", "<|endoftext|>", " \r\n\r\n", "\n\n"], [" arguably", "Whilst", "\u5468\u906d", " hugely", " genuinely", "<|quad_end|>", " myriad", "\u5373\u4fbf"], [" arguably", " myriad", " genuinely", " sprawling", "\u5373\u4fbf", " albeit", " outright", " hugely"], [" arguably", " uncomfort", "\u5750\u62e5", " sprawling", " pervasive", " nonetheless", "\u5468\u906d", " complexities"], [" arguably", " overarching", " pervasive", " nonetheless", " nuanced", " incredibly", " sprawling", " complexities"], [" arguably", " overarching", " sprawling", " myriad", "\u62e5\u6709\u7740", " entirety", " outright", " swiftly"], [" arguably", " sprawling", " myriad", " swiftly", " outright", " aggressively", " albeit", " genuinely"], [" arguably", " sprawling", " myriad", "\u62e5\u6709\u7740", " swiftly", "\u51ed\u501f\u7740", " overarching", " albeit"], [" arguably", " albeit", " myriad", " overarching", " sprawling", " entirety", " akin", " swiftly"], [" arguably", " sprawling", " albeit", "\u5373\u4fbf", " utterly", " myriad", "\u5373\u4fbf\u662f", " overarching"], [" arguably", "\u5373\u4fbf", " albeit", "\u5373\u4fbf\u662f", " myriad", " incredibly", " utterly", " sprawling"], ["\u5373\u4fbf", " arguably", " myriad", " albeit", "\u5373\u4fbf\u662f", " hugely", " utterly", " swiftly"], ["<|endoftext|>", "\u5373\u4fbf", "\n\n", " swiftly", " myriad", " arguably", " utterly", "Though"], [" arguably", "\u5373\u4fbf", " myriad", " hugely", " utterly", " swiftly", "\u5373\u4fbf\u662f", " sprawling"], [" arguably", "\u5373\u4fbf", " swiftly", " myriad", " hugely", " utterly", " merely", " albeit"], [" arguably", " myriad", " swiftly", " hugely", "\u5373\u4fbf", " utterly", " merely", " ultimately"], ["\n\n", " \n\n", "\r\n\r\n", "  \n\n", " \r\n\r\n", "\u5373\u4fbf", " arguably", " myriad"], ["\r\n\r\n", "\n\n", " arguably", "\u5373\u4fbf", " hugely", " utterly", " \n\n", " myriad"], ["\n\n", " arguably", "\r\n\r\n", " \n\n", " hugely", " myriad", " utterly", " vastly"], ["\n\n", " arguably", " myriad", " hugely", " vastly", " \n\n", "\r\n\r\n", " even"], ["\n\n", " arguably", " \n\n", "\r\n\r\n", " myriad", "  \n\n", " vastly", " hugely"], [" arguably", " \n\n", " myriad", " vastly", " even", " incredibly", "\n\n", " hugely"], [" arguably", " even", " incredibly", " heavily", " ultimately", " truly", " hugely", " myriad"], [" arguably", " incredibly", " heavily", " even", " ultimately", " truly", " hugely", " much"], [" arguably", " incredibly", " relentlessly", " truly", " heavily", " even", " massively", " vastly"], [" relentlessly", " incredibly", " arguably", " relentless", " massively", " truly", " fundamentally", " aggressively"], [" relentlessly", " relentless", " incredibly", " brutally", " massively", " truly", " utterly", " arguably"], [" relentlessly", " relentless", " brutally", " incredibly", " desperately", " brutal", " notoriously", " aggressively"], [" relentlessly", " relentless", " brutally", " brutal", " aggressively", " insanely", " desperately", " utterly"], [" relentlessly", " relentless", " brutally", " insanely", " desperately", " incredibly", " ridiculously", " impossible"], [" relentlessly", " relentless", " impossible", " brutally", " insanely", " desperately", " ridiculously", " incredibly"], [" relentlessly", " relentless", " impossible", " brutally", " insanely", " desperately", " ridiculously", " brutal"], [" relentlessly", " impossible", " brutally", " relentless", " brutal", " insanely", " desperately", " ridiculously"], [" relentlessly", " brutally", " relentless", " desperately", " impossible", " brutal", " aggressively", " insanely"], [" brutally", " relentlessly", " impossible", " brutal", " relentless", " desperately", " aggressively", " insanely"], [" brutally", " desperately", " brutal", " impossible", " relentlessly", " relentless", " desperation", " aggressively"], [" impossible", " brutally", " desperately", " relentlessly", " relentless", " aggressively", " forced", " brutal"], [" aggressively", " desperately", " brutally", " relentlessly", " forced", " relentless", " impossible", " forcing"], [" desperately", " brutally", " relentless", " aggressively", " fundamentally", " brutal", " relentlessly", " inevitable"], [" desperately", " aggressively", " relentless", " forcing", " fundamentally", "  \n\n", " brutally", " inevitable"], [" relentless", " desperately", " desperation", " forcing", " aggressively", "\u5012\u903c", " brutal", " forced"], ["  \n\n", "\u5012\u903c", " unless", "\u5927\u6982\u7387", " forcing", " desperation", "unless", "\u903c\u8feb"], ["  \n\n", " \n\n", "\u5012\u903c", "\u5f3a\u884c", " **\"", " unless", "\u5927\u6982\u7387", "\n\n"], ["  \n\n", " **\"", " \n\n", "\n\n", ";**", "?**", " **", " **\u201c"], [" **\"", " **\u201c", ";**", " **", "  \n\n", " forcing", " **#", "\n\n"], [" **\"", " **\u201c", " **", ";**", "\n\n", " *\u201c", " you", " **#"], [" **\"", " you", " Expect", " **\u201c", " expecting", " expectation", " You", "\u4f60\u5c06"], [" you", " **\"", " You", " cheap", " **\u201c", " Cheap", " Expect", " YOU"], [" You", " you", " Expect", " **\"", " Cheap", " CPU", "\n\n", " **\u201c"], [" You", " you", " latency", " garbage", "you", " YOU", "_you", " Your"], [" You", " you", " latency", " YOU", " garbage", "_you", "You", ">You"], [" You", " CI", " you", " garbage", " cheap", " Cheap", " latency", "\n\n"], [" GC", " You", " Cheap", " CI", " garbage", " cheap", " you", "\n\n"], [" GC", " You", " Cheap", " CI", " cheap", "\n\n", " garbage", " The"], [" You", " The", " GC", " This", " Cheap", " Gar", " CI", " garbage"]], "p": [[0.5499, 0.2943, 0.0657, 0.0657, 0.0042, 0.0031, 0.0025, 0.0024], [0.118, 0.016, 0.0063, 0.003, 0.0016, 0.0012, 0.0009, 0.0008], [0.7677, 0.1512, 0.0263, 0.0205, 0.0055, 0.0052, 0.0043, 0.0033], [0.0079, 0.007, 0.0054, 0.0051, 0.004, 0.0027, 0.0027, 0.0024], [0.0056, 0.0036, 0.0028, 0.0028, 0.0027, 0.0019, 0.0016, 0.0015], [0.0105, 0.0025, 0.0021, 0.0016, 0.0014, 0.0013, 0.0012, 0.0011], [0.5722, 0.2241, 0.1199, 0.0173, 0.0077, 0.0072, 0.0032, 0.0028], [0.3873, 0.1829, 0.1338, 0.0248, 0.016, 0.0097, 0.0091, 0.008], [0.5068, 0.3947, 0.0605, 0.0082, 0.0041, 0.0041, 0.0036, 0.0036], [0.0038, 0.0019, 0.0018, 0.0017, 0.0016, 0.0014, 0.0014, 0.0013], [0.0471, 0.0119, 0.0093, 0.0072, 0.0072, 0.0068, 0.006, 0.006], [0.0138, 0.0033, 0.0021, 0.0021, 0.0021, 0.0021, 0.0018, 0.0018], [0.0178, 0.0058, 0.0051, 0.0045, 0.0033, 0.0033, 0.0031, 0.0029], [0.0175, 0.006, 0.0047, 0.0042, 0.0034, 0.003, 0.003, 0.0029], [0.0509, 0.0129, 0.0129, 0.0088, 0.0078, 0.0065, 0.0054, 0.005], [0.0287, 0.0185, 0.0099, 0.0099, 0.0077, 0.0068, 0.006, 0.0047], [0.1803, 0.0623, 0.0294, 0.0229, 0.0148, 0.0139, 0.009, 0.007], [0.0371, 0.01, 0.0083, 0.0078, 0.0069, 0.0057, 0.0053, 0.0053], [0.0719, 0.0219, 0.0142, 0.0125, 0.0097, 0.0081, 0.0076, 0.0059], [0.0524, 0.036, 0.016, 0.0132, 0.0124, 0.0091, 0.0091, 0.0085], [0.3298, 0.037, 0.0175, 0.0164, 0.0154, 0.0145, 0.0088, 0.0083], [0.0339, 0.0299, 0.0091, 0.0081, 0.0081, 0.0071, 0.0067, 0.0049], [0.0593, 0.0298, 0.0232, 0.0232, 0.016, 0.015, 0.0097, 0.0085], [0.0536, 0.0346, 0.0253, 0.0185, 0.0144, 0.0136, 0.0136, 0.0127], [0.3695, 0.154, 0.0995, 0.0603, 0.0389, 0.0173, 0.0112, 0.0082], [0.0682, 0.0532, 0.0441, 0.0441, 0.0322, 0.0236, 0.0208, 0.0196], [0.4007, 0.045, 0.0397, 0.0241, 0.0199, 0.0199, 0.0165, 0.0155], [0.5004, 0.0817, 0.0171, 0.0161, 0.0151, 0.0118, 0.0104, 0.0104], [0.432, 0.0851, 0.0455, 0.0455, 0.0229, 0.0229, 0.019, 0.0148], [0.1939, 0.0433, 0.0382, 0.0382, 0.0359, 0.0279, 0.0262, 0.0218], [0.1087, 0.0702, 0.0426, 0.0292, 0.0258, 0.0258, 0.0228, 0.0214], [0.0922, 0.0525, 0.0494, 0.0409, 0.0299, 0.0248, 0.0171, 0.0151], [0.1182, 0.111, 0.036, 0.0318, 0.0248, 0.0233, 0.0193, 0.0193], [0.0678, 0.0562, 0.0496, 0.0363, 0.0301, 0.0283, 0.0266, 0.025], [0.0824, 0.0727, 0.05, 0.0236, 0.0236, 0.0222, 0.0208, 0.0208], [0.1059, 0.0994, 0.047, 0.0366, 0.0251, 0.0251, 0.0222, 0.0222], [0.116, 0.1023, 0.0583, 0.0312, 0.0293, 0.0293, 0.0259, 0.0243], [0.1207, 0.1134, 0.0444, 0.0392, 0.0368, 0.0325, 0.0305, 0.0305], [0.0871, 0.0871, 0.0769, 0.0466, 0.0411, 0.0363, 0.0301, 0.0283], [0.0802, 0.0708, 0.0708, 0.0551, 0.0457, 0.0277, 0.026, 0.026], [0.0689, 0.0571, 0.0571, 0.0571, 0.0418, 0.0369, 0.0369, 0.0224], [0.0764, 0.0559, 0.0463, 0.0463, 0.0384, 0.0299, 0.0299, 0.0233], [0.0738, 0.0575, 0.0477, 0.0448, 0.0395, 0.0371, 0.0349, 0.0199], [0.1245, 0.0626, 0.0488, 0.043, 0.0404, 0.0357, 0.0315, 0.0315], [0.0573, 0.0506, 0.0446, 0.0348, 0.0307, 0.0307, 0.0271, 0.0254], [0.0445, 0.0418, 0.0393, 0.0346, 0.0287, 0.027, 0.0238, 0.0238], [0.0777, 0.0502, 0.0391, 0.0367, 0.0304, 0.0286, 0.0223, 0.0223], [0.063, 0.0556, 0.0337, 0.0317, 0.0317, 0.0297, 0.0262, 0.0247], [0.0427, 0.0377, 0.0354, 0.0354, 0.0294, 0.0276, 0.0276, 0.0178], [0.0892, 0.0694, 0.0613, 0.0508, 0.0308, 0.0212, 0.0176, 0.0165], [0.1941, 0.0407, 0.0317, 0.0247, 0.0232, 0.0232, 0.0218, 0.0192], [0.1793, 0.1158, 0.1088, 0.0796, 0.0453, 0.0167, 0.0122, 0.0108], [0.3408, 0.0862, 0.076, 0.0433, 0.0218, 0.0117, 0.008, 0.0071], [0.2827, 0.0862, 0.028, 0.0192, 0.0085, 0.0085, 0.0071, 0.0071], [0.104, 0.0557, 0.0359, 0.0298, 0.0181, 0.017, 0.0141, 0.0103], [0.0808, 0.0713, 0.0246, 0.0231, 0.0231, 0.0169, 0.0169, 0.0124], [0.1121, 0.0387, 0.0266, 0.0221, 0.0221, 0.0221, 0.0221, 0.0134], [0.4237, 0.257, 0.0175, 0.0175, 0.0128, 0.012, 0.0083, 0.0078], [0.8032, 0.1087, 0.0079, 0.0054, 0.0045, 0.0035, 0.0035, 0.0029], [0.2794, 0.2176, 0.132, 0.08, 0.0706, 0.0664, 0.0102, 0.0074], [0.3729, 0.1761, 0.1211, 0.1211, 0.0505, 0.0505, 0.0164, 0.0128], [0.3952, 0.2397, 0.1132, 0.0606, 0.0345, 0.0324, 0.0197, 0.0174], [0.7893, 0.1068, 0.0648, 0.0099, 0.006, 0.005, 0.0024, 0.001]], "ranks": {"Kotlin": [228954, 160719, 123478, 9742, 7204, 32865, 55930, 126298, 143311, 142773, 117645, 87328, 55581, 34791, 133808, 80156, 21143, 50309, 73676, 142894, 185074, 122147, 142492, 190613, 159649, 114952, 101912, 118109, 106236, 120482, 153442, 152300, 134011, 133495, 149815, 128045, 120111, 110946, 108364, 125065, 145341, 134558, 111880, 80164, 110249, 166369, 113860, 129857, 116783, 69164, 76367, 49351, 34654, 25068, 14042, 1111, 190, 114, 103, 74, 84, 29, 27]}}, {"pos": 433, "top": [[".", " \u2013", ",", "\u2013", "\u00a0", "<|endoftext|>", ";", " "], [" \u2013", "\u2013", "\u2013and", ",", " \u2013,", ".", ";", ".["], ["\u2013", " \u2013", ",", ".", "\u2013and", ";", ".\u2013", "["], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "----------</", "TRGL", "-------------</", " milfs", " Shemale", "\uff0d\uff0d", " ;;^"], ["\u00a0\u00a0", "\u2018", "\uff1a\u201c", "\u2018s", " \u201c[", " \u2018", "\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0", ",@"], ["\u00a0\u00a0", "\uff01", "<|quad_start|>", "   \n", "\u2013and", "<|quad_end|>", " **\u2018", "\u2018s"], ["  \n\n", "   \n", " \n\n", "\uff01", " \u2014\u2014", "\u2014\u2014", "  \n", "\u3002"], ["   \n", "   \n\n", "  \n\n", "       \n", " \n\n", "  \r\n", "    \n\n", "       \n\n"], ["  \n\n", " \n\n", "   \n\n", "    \n\n", "        \n\n", "  \n\n\n", "     \n\n", "      \n\n"], ["\u2013and", "\u00a0", "  \n  \n", "\u2013", "  \n\n", "\u00a0\u00a0", "   \n\n", " \n\n"], ["\u00a0", " \n\n", "  \n\n", "<|endoftext|>", "\u2013", "...", "  \n  \n", " [\u2026]"], [" **\u2018", "\u5468\u906d", "...**", " impactful", " **\u2013", "\u5373\u4fbf", "DMETHOD", "\u82e5\u975e"], [" impactful", " overarching", "\u5468\u906d", "...**", "-esque", " showcased", "\u4ea6\u6216\u662f", " **\u2013"], [" impactful", " overarching", "\u5468\u906d", "-esque", "\u5373\u4fbf", " showcased", " transformative", "\u82e5\u975e"], ["\u5468\u906d", " arguably", " overarching", "\u5373\u4fbf", "\u5373\u4fbf\u662f", " impactful", " sprawling", " showcased"], ["\u5468\u906d", " overarching", " sprawling", " arguably", "\u62e5\u6709\u7740", " impactful", "\u5373\u4fbf\u662f", "\u5373\u4fbf"], [" overarching", " arguably", " myriad", "\u5468\u906d", " sprawling", "-esque", "\u5373\u4fbf", " entirety"], ["<|endoftext|>", "\u5373\u4fbf", "  \n\n", " myriad", " arguably", "\u2013and", " sprawling", " overarching"], [" myriad", "\u2014even", "\u5373\u4fbf", " arguably", "\u5373\u4fbf\u662f", " utterly", " overarching", "\u2014or"], ["<|endoftext|>", " myriad", "\u5373\u4fbf", "\u2014even", " arguably", " utterly", " hugely", " burgeoning"], ["<|endoftext|>", " myriad", "\u5373\u4fbf", " hugely", " utterly", " swiftly", " burgeoning", " arguably"], [" myriad", " hugely", "\u5373\u4fbf", " sprawling", " utterly", " looming", " overarching", " arguably"], [" myriad", "\u5373\u4fbf", " hugely", " utterly", " sprawling", " swiftly", " burgeoning", " looming"], [" myriad", " hugely", " swiftly", "\u5373\u4fbf", " arguably", " utterly", " sprawling", " ultimately"], ["  \n\n", " \n\n", " \r\n\r\n", "\u5373\u4fbf", "   \n\n", "\n\n", "\r\n\r\n", " myriad"], [" hugely", " myriad", "\u5373\u4fbf", " sprawling", " arguably", " utterly", " overarching", " burgeoning"], [" myriad", " hugely", " sprawling", "\u5373\u4fbf", "\n\n", " arguably", " ultimately", " burgeoning"], ["\n\n", " \n\n", "<|endoftext|>", " myriad", "  \n\n", " ultimately", " hugely", " arguably"], [" myriad", " hugely", "  \n\n", " \n\n", " ultimately", " sprawling", " arguably", "\n\n"], [" myriad", " ultimately", " heavily", " massive", " hugely", " arguably", " sprawling", "  \n\n"], [" massive", " ultimately", " myriad", " heavily", " huge", " even", " relentlessly", " much"], [" ultimately", " heavily", " massive", " critical", " much", " rapidly", " huge", " even"], [" massive", " ultimately", " relentlessly", " relentless", " heavily", " massively", " incredibly", " huge"], [" relentless", " relentlessly", " fundamentally", " massive", " massively", " incredibly", " aggressively", " myriad"], [" relentless", " relentlessly", " incredibly", " massive", " massively", " aggressively", " myriad", " fundamentally"], [" relentless", " relentlessly", " incredibly", " massive", " massively", " aggressively", " notoriously", " huge"], [" relentless", " relentlessly", " incredibly", " aggressively", " inevitable", " massively", " fundamentally", " notoriously"], [" relentless", " relentlessly", " incredibly", " complexity", " inevitable", " fundamentally", " notoriously", " impossible"], [" relentless", " relentlessly", " inevitable", " bottleneck", " complexity", " inefficient", " hardware", " unsustainable"], [" relentless", " complexity", " inevitable", " tech", " relentlessly", " bottleneck", " hardware", " unsustainable"], [" complexity", " tech", " bottleneck", " relentless", " hardware", " inevitable", " cost", " inefficient"], [" bottleneck", " cost", " hardware", " costs", " inevitable", " relentless", " budgets", " budget"], [" bottleneck", " relentless", " costs", " budgets", " hardware", " infrastructure", " inevitable", " constraints"], [" bottleneck", " inevitable", " relentless", " budgets", " costs", " massive", " hardware", " friction"], [" bottleneck", " inevitable", " costs", " massive", " cost", " relentless", " latency", " budgets"], [" inevitable", " bottleneck", " costs", " relentless", " demands", " massive", " inevitably", " inherently"], [" inevitable", " bottleneck", " inevit", " inherently", " costs", " inevitably", " friction", " relentless"], [" inevitable", " bottleneck", " inherently", " inevit", " costs", " demands", " relentless", " contradictions"], [" bottleneck", " inevitable", " sheer", " inevit", " budgets", " costs", " relentless", " contradictions"], [" bottleneck", " sheer", " inevit", " inevitable", " latency", " fragmentation", " reliance", " synergy"], [" bottleneck", "\u554f\u984c\u306f", " \ubb38\uc81c\ub294", "\u5173\u952e\u5728\u4e8e", " sheer", " inevit", " fragmentation", " bureaucracy"], [" bottleneck", " constraints", " constraint", " requirement", " complexity", "Constraint", "constraints", " latency"], [" bottleneck", " constraints", " constraint", "Constraint", " latency", " Constraint", " Constraints", "constraints"], [" bottleneck", " constraints", " constraint", "Constraint", " Constraint", " latency", " Constraints", " requirement"], [" bottleneck", " constraints", " constraint", " requirement", " CPU", " latency", " Constraint", "Constraint"], [" bottleneck", " constraints", " constraint", " JVM", " CPU", " bott", "Constraint", " requirement"], [" bottleneck", " garbage", " JVM", " GC", " constraint", " constraints", " CPU", " JIT"], [" JVM", " garbage", " GC", " bottleneck", " JIT", "GC", "\u5783\u573e", " latency"], [" GC", " JVM", " garbage", " bottleneck", "GC", " JIT", " constraint", " GPU"], [" garbage", " GC", "GC", " bottleneck", " Gar", "\u5783\u573e", " JIT", " JVM"], [" GC", " garbage", "GC", " Gar", " bottleneck", " JIT", "_GC", " JVM"], [" GC", " garbage", "GC", " Gar", " bottleneck", " JIT", " JVM", " constraint"], [" GC", " garbage", " Gar", " bottleneck", " JIT", " \"", " JVM", "GC"]], "p": [[0.4338, 0.3828, 0.1408, 0.0216, 0.0102, 0.004, 0.0029, 0.0008], [0.8647, 0.0911, 0.0096, 0.0066, 0.0023, 0.002, 0.0011, 0.0006], [0.5588, 0.2056, 0.1601, 0.0667, 0.0038, 0.0014, 0.0012, 0.0004], [0.0038, 0.0028, 0.0019, 0.0019, 0.0018, 0.0016, 0.0014, 0.0014], [0.01, 0.0064, 0.005, 0.005, 0.0044, 0.0034, 0.0034, 0.0029], [0.0191, 0.008, 0.0062, 0.0062, 0.0058, 0.0051, 0.0028, 0.0028], [0.0963, 0.0662, 0.0428, 0.0333, 0.0294, 0.0259, 0.019, 0.0167], [0.1732, 0.1436, 0.0562, 0.0194, 0.0172, 0.0172, 0.0161, 0.0134], [0.3965, 0.35, 0.1653, 0.0254, 0.012, 0.0082, 0.0077, 0.0064], [0.0807, 0.0629, 0.049, 0.0406, 0.0204, 0.0124, 0.0096, 0.0055], [0.3828, 0.1243, 0.1168, 0.0968, 0.0487, 0.0245, 0.0191, 0.0168], [0.0077, 0.0046, 0.0036, 0.0026, 0.0026, 0.0025, 0.0025, 0.0023], [0.0156, 0.0074, 0.0054, 0.0048, 0.0045, 0.0035, 0.0024, 0.0024], [0.0106, 0.0088, 0.0069, 0.0032, 0.003, 0.0029, 0.002, 0.0018], [0.0172, 0.0111, 0.0076, 0.0063, 0.0036, 0.0036, 0.0036, 0.0032], [0.0072, 0.0052, 0.0032, 0.0028, 0.0023, 0.0017, 0.0017, 0.0016], [0.0283, 0.0194, 0.0125, 0.0118, 0.0076, 0.0063, 0.0063, 0.0041], [0.0362, 0.0097, 0.0097, 0.0091, 0.0059, 0.0055, 0.0055, 0.0052], [0.0129, 0.0121, 0.0121, 0.0088, 0.0044, 0.0042, 0.0039, 0.0035], [0.0232, 0.0192, 0.015, 0.0091, 0.0075, 0.0067, 0.0055, 0.0055], [0.1451, 0.0144, 0.0119, 0.0053, 0.0053, 0.005, 0.0047, 0.0041], [0.0042, 0.0042, 0.0032, 0.003, 0.0022, 0.0016, 0.0016, 0.0016], [0.0106, 0.0061, 0.0061, 0.0039, 0.0039, 0.003, 0.0029, 0.0027], [0.0121, 0.0065, 0.005, 0.0047, 0.0037, 0.0035, 0.0033, 0.0031], [0.0764, 0.0435, 0.0281, 0.017, 0.017, 0.016, 0.0141, 0.0117], [0.0118, 0.0098, 0.0081, 0.0056, 0.0036, 0.0036, 0.003, 0.0028], [0.0145, 0.0106, 0.0073, 0.0061, 0.0047, 0.0047, 0.0042, 0.0039], [0.0438, 0.025, 0.0151, 0.0151, 0.0134, 0.0118, 0.0111, 0.0086], [0.0286, 0.0135, 0.0127, 0.0119, 0.0105, 0.0099, 0.0093, 0.0093], [0.0242, 0.0166, 0.013, 0.0114, 0.0114, 0.0107, 0.0089, 0.0069], [0.0185, 0.0185, 0.0127, 0.012, 0.0112, 0.0112, 0.0093, 0.0093], [0.0215, 0.0131, 0.0123, 0.0084, 0.0079, 0.007, 0.007, 0.0066], [0.0198, 0.0175, 0.0145, 0.0106, 0.01, 0.0094, 0.0088, 0.0083], [0.0607, 0.0417, 0.021, 0.0197, 0.0174, 0.0163, 0.0127, 0.0105], [0.0904, 0.0548, 0.0276, 0.0167, 0.0167, 0.0148, 0.0122, 0.0101], [0.1312, 0.0582, 0.0453, 0.0167, 0.0167, 0.0157, 0.0147, 0.0122], [0.0959, 0.0514, 0.0332, 0.0177, 0.0177, 0.0167, 0.0157, 0.0138], [0.0903, 0.0401, 0.0312, 0.0214, 0.0189, 0.0157, 0.013, 0.0122], [0.0739, 0.0308, 0.0199, 0.0165, 0.0165, 0.0145, 0.0145, 0.0128], [0.0479, 0.029, 0.0226, 0.0187, 0.0176, 0.0165, 0.0155, 0.0114], [0.0289, 0.0289, 0.0289, 0.0255, 0.024, 0.024, 0.0187, 0.0146], [0.0417, 0.021, 0.021, 0.021, 0.0185, 0.0153, 0.0153, 0.0144], [0.0402, 0.0168, 0.0158, 0.0158, 0.0158, 0.0123, 0.0115, 0.0096], [0.0491, 0.0359, 0.017, 0.017, 0.0141, 0.0103, 0.0103, 0.0097], [0.0352, 0.0331, 0.0292, 0.0201, 0.013, 0.013, 0.0114, 0.0107], [0.0614, 0.035, 0.0165, 0.0155, 0.0146, 0.0146, 0.0137, 0.0129], [0.1418, 0.0713, 0.0359, 0.0192, 0.0169, 0.0159, 0.0149, 0.014], [0.0852, 0.055, 0.0486, 0.026, 0.0229, 0.0215, 0.0148, 0.0148], [0.0866, 0.0464, 0.0264, 0.0219, 0.0206, 0.0193, 0.0151, 0.0151], [0.0928, 0.0679, 0.025, 0.0195, 0.0134, 0.0126, 0.0092, 0.0086], [0.0456, 0.0276, 0.0131, 0.0079, 0.0062, 0.0062, 0.0058, 0.0054], [0.1055, 0.0725, 0.0388, 0.0343, 0.0172, 0.0162, 0.0143, 0.0126], [0.7531, 0.0546, 0.0292, 0.0101, 0.0089, 0.0079, 0.004, 0.004], [0.6329, 0.16, 0.0667, 0.014, 0.0131, 0.0075, 0.0051, 0.0051], [0.8444, 0.042, 0.0371, 0.0083, 0.0047, 0.0039, 0.0037, 0.0035], [0.826, 0.0411, 0.0363, 0.022, 0.0052, 0.0046, 0.0043, 0.0041], [0.3744, 0.2573, 0.1377, 0.0507, 0.0271, 0.0211, 0.0128, 0.01], [0.4476, 0.395, 0.0881, 0.0223, 0.0093, 0.0064, 0.0044, 0.0044], [0.4128, 0.2837, 0.134, 0.1044, 0.0206, 0.0141, 0.0067, 0.0028], [0.6841, 0.2852, 0.0125, 0.0052, 0.0032, 0.0028, 0.001, 0.0007], [0.9082, 0.0746, 0.013, 0.0023, 0.0003, 0.0003, 0.0003, 0.0001], [0.907, 0.0745, 0.0078, 0.0042, 0.002, 0.0012, 0.0006, 0.0003], [0.8592, 0.0906, 0.0074, 0.0066, 0.0051, 0.0042, 0.0037, 0.0033]], "ranks": {"Kotlin": [227886, 222423, 187152, 25985, 21377, 52531, 126056, 163704, 172818, 223738, 232505, 169501, 114734, 147724, 209576, 109925, 159961, 195271, 216324, 231898, 232195, 203695, 223806, 234808, 232014, 205525, 200650, 221773, 216794, 215603, 207799, 213050, 210252, 166884, 183872, 139221, 110062, 93759, 73748, 47259, 69019, 71781, 48756, 38582, 50801, 69741, 67079, 44553, 39399, 36785, 37213, 15751, 4500, 3160, 1586, 279, 113, 88, 111, 176, 304, 276, 161]}}, {"pos": 434, "top": [["\u2013", ",", ".", " \u200b\u200b", " \u2013", "s", " ", ";"], [" \u200b\u200b", " (\"", " \u0218", "tures", "alyzer", "\u2013and", "ness", " Savior"], [" \u200b\u200b", "\u2013", "\u2013and", ",", " (\"", "\u2014\"", "-\"", " \u2013"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Blowjob", "anceled", " \u041a\u0440\u0430\u0441\u0438", " Shemale", "Canceled", "ynec", " Pubbl"], [" \u200b\u200b", "anceled", "Canceled", "neighbor", " Vapor", "avior", " offense", " canceled"], [" \u200b\u200b", "avior", "anceled", "Canceled", "neighbor", "elog", "ynec", " canceled"], ["anceled", " \u200b\u200b", "Canceled", "avior", "\u064b\u0627", " canceled", "ynec", "ighbors"], [" \u200b\u200b", "anceled", "avior", "Canceled", "ighbors", "niest", " canceled", "ynec"], [" \u200b\u200b", "anceled", "avior", "Canceled", "ighbors", "niest", "ynec", " canceled"], ["avior", "Canceled", "anceled", "-tech", "eroon", " \u200b\u200b", "\u4e3d\u4e1d", "ighbors"], [" \u200b\u200b", "-tech", "avior", "-color", "Canceled", "ization", "-\"", "#\""], ["avior", "anceled", "-tech", " flavors", "Canceled", "ographics", "omics", "ighbors"], ["avior", " flavors", "omics", "-tech", "estyle", " \u200b\u200b", "Canceled", "ighbors"], ["-tech", "avior", " flavors", "finity", "estyle", "Canceled", "omics", " LGBTQ"], ["-tech", " trivia", "estyle", " flavors", "-esque", " vibe", "finity", "omics"], [" influencer", " influencers", "-tech", "-esque", " LGBTQ", " vibe", " backstory", " flavors"], ["-tech", " vibe", "-esque", " vibes", " tech", " buzz", " savvy", " tweaks"], ["-tech", " vibe", " vibes", "-esque", " tech", " buzz", " tweaks", " savvy"], ["-tech", "-esque", " buzz", " freaking", " savvy", " vibe", " flashy", " tech"], [" buzz", "-esque", "-tech", " savvy", " freaking", " flashy", "\u3082\u3057\u3063\u304b\u308a", " tech"], [" buzz", "-esque", "-tech", " flashy", " big", " savvy", " tech", "estyle"], [" buzz", "-tech", " flashy", " vibe", " angst", " scary", " big", " freaking"], [" buzz", " big", " flashy", "-tech", " tech", " fake", " savvy", " myth"], [" big", " buzz", " \"", " tech", " myth", " truly", " tough", " Big"], [" tech", "-tech", " savvy", " buzz", "-esque", " myth", " vibe", " flashy"], [" tech", "-tech", " vibe", " buzz", " vibes", " hype", " savvy", " influencers"], [" tech", " buzz", "-tech", " savvy", " big", " vibe", " economics", " hype"], [" tech", " big", " buzz", " myth", " savvy", " cheap", " truly", " concept"], [" tech", " buzz", " myth", " big", " cheap", " savvy", "-tech", " flashy"], [" tech", " fake", " big", " myth", " cheap", " buzz", " strategy", " technology"], [" tech", " big", " technology", " fake", " strategy", " global", " cheap", " huge"], [" big", " tech", " global", " fake", " technology", " cheap", " strategy", " modern"], [" tech", " fake", " big", " cheap", " chaos", " strategy", " power", " myth"], [" tech", " hype", " fake", " chaos", " synergy", " cheap", "-tech", " infrastructure"], [" tech", " hype", " fake", " synergy", " cheap", " flashy", " weird", "-tech"], [" tech", " hype", " cheap", "-tech", " fake", " crap", " flashy", " weird"], [" cheap", " tech", " fake", " hype", "-tech", " flashy", " simplistic", " synergy"], [" cheap", " tech", " fake", " simplistic", " hype", "cheap", " flashy", " crap"], [" cheap", " tech", " fake", "cheap", " simplistic", "-tech", " flashy", " synergy"], [" cheap", " tech", "cheap", "-tech", " budget", " fake", " simplistic", " affordable"], [" cheap", " tech", "cheap", "-tech", " budget", " affordable", " fake", " Tech"], [" cheap", " tech", " budget", "cheap", "-tech", " simplistic", " affordability", " economics"], [" cheap", " tech", " affordability", "-tech", "cheap", " budget", " economics", " simplistic"], [" cheap", " tech", " budget", "cheap", " budgets", "-budget", "-tech", " affordability"], [" cheap", " ideology", " hype", " simplistic", " seamless", " cheapest", " gimm", " fake"], [" cheap", " seamless", " fake", " synergy", " simplistic", " tech", " \\\"", " gimm"], [" seamless", " cheap", " tech", " synergy", " fake", "-tech", " simplistic", " faux"], [" cheap", " cheapest", " seamless", " democrat", " tech", " skinny", " ALL", " Cheap"], [" cheapest", " cheap", " democrat", "-global", " seamless", " unified", " \u0415\u0434\u0438", " Seamless"], [" cheap", " cheapest", " seamless", " Unified", " unified", " democrat", " \u0415\u0434\u0438", "-safe"], ["%\"", "+\"", "://\"", "!\"", "$\"", " $\"", ";\"", " +\""], ["*\"", " cheapest", " cheap", "-safe", "-clean", "%\"", "cheap", " simplicity"], [" cheap", " cheapest", "-safe", "cheap", " \u0415\u0434\u0438", " lazy", "-clean", "\u7684\u7edf\u4e00"], [" cheap", " cheapest", " Cheap", "\u7684\u7edf\u4e00", "-safe", " cheaper", "cheap", " cute"], [" cheap", " cheapest", "-safe", " seamless", " unified", "\u7684\u7edf\u4e00", " cute", " lazy"], [" cheap", "cheap", " cheapest", " Cheap", "\u4fbf\u5b9c", "Cheap", " cheaper", "\u5ec9\u4ef7"], [" cheap", "cheap", " Cheap", " cheapest", "Cheap", " cheaper", "\u5ec9\u4ef7", "\u4fbf\u5b9c"], [" cheap", "cheap", " Cheap", " cheapest", "Cheap", "\u4fbf\u5b9c", "\u5ec9\u4ef7", " cheaper"], [" cheap", "cheap", " Cheap", " cheapest", "Cheap", " cheaper", "\u4fbf\u5b9c", "\u5ec9\u4ef7"], [" cheap", "cheap", " Cheap", "Cheap", " cheapest", "\u4fbf\u5b9c", "\u5ec9\u4ef7", " cheaper"], [" cheap", "cheap", " Cheap", "Cheap", "\u4fbf\u5b9c", "\u5ec9\u4ef7", " cheapest", " cheaper"], [" cheap", "cheap", " Cheap", "Cheap", "\u4fbf\u5b9c", "\u5ec9\u4ef7", " cheapest", "-che"], ["cheap", " cheap", "Cheap", " Cheap", "\u5ec9\u4ef7", "che", "CI", "\u5ec9"]], "p": [[0.2631, 0.1925, 0.0968, 0.0802, 0.0754, 0.0403, 0.0139, 0.0123], [0.0467, 0.0038, 0.0026, 0.0022, 0.0022, 0.0021, 0.0021, 0.0017], [0.6328, 0.1703, 0.0169, 0.014, 0.007, 0.0031, 0.0021, 0.0018], [0.0086, 0.0052, 0.0052, 0.0036, 0.0034, 0.0032, 0.002, 0.0018], [0.0336, 0.0149, 0.0109, 0.009, 0.008, 0.008, 0.0066, 0.0055], [0.1111, 0.011, 0.0071, 0.0038, 0.0038, 0.0025, 0.0019, 0.0019], [0.0687, 0.0444, 0.0368, 0.0127, 0.0112, 0.0087, 0.0077, 0.0068], [0.0583, 0.0483, 0.0243, 0.0228, 0.0157, 0.0084, 0.0084, 0.0048], [0.1609, 0.0218, 0.017, 0.0117, 0.0071, 0.0059, 0.0036, 0.0028], [0.014, 0.0062, 0.0062, 0.0028, 0.0026, 0.0023, 0.0023, 0.0021], [0.2104, 0.0251, 0.0152, 0.0064, 0.0053, 0.0046, 0.0039, 0.0039], [0.0124, 0.004, 0.0031, 0.0031, 0.0028, 0.0026, 0.0023, 0.002], [0.0082, 0.0036, 0.0027, 0.0025, 0.0022, 0.0022, 0.0019, 0.0019], [0.0032, 0.0022, 0.002, 0.0016, 0.0015, 0.0015, 0.0015, 0.0014], [0.0047, 0.0025, 0.0022, 0.002, 0.0017, 0.0016, 0.0015, 0.0014], [0.0033, 0.0031, 0.0029, 0.0029, 0.0027, 0.0017, 0.0017, 0.0017], [0.0166, 0.0114, 0.0114, 0.0069, 0.0054, 0.0048, 0.0042, 0.0035], [0.0444, 0.0223, 0.0163, 0.0112, 0.0088, 0.0088, 0.0077, 0.0064], [0.0177, 0.0107, 0.0095, 0.0057, 0.0051, 0.0042, 0.0035, 0.0033], [0.0063, 0.0059, 0.0043, 0.0036, 0.003, 0.0025, 0.0018, 0.0017], [0.0048, 0.0046, 0.0029, 0.0028, 0.0022, 0.0022, 0.0018, 0.0018], [0.0047, 0.0029, 0.0022, 0.002, 0.002, 0.0019, 0.0019, 0.0017], [0.0056, 0.0046, 0.0026, 0.0026, 0.0022, 0.0022, 0.0021, 0.0019], [0.0049, 0.0034, 0.0028, 0.0023, 0.0019, 0.0018, 0.0014, 0.0014], [0.0069, 0.0069, 0.005, 0.0033, 0.0031, 0.0029, 0.0027, 0.0025], [0.0135, 0.0112, 0.0099, 0.0064, 0.0053, 0.0047, 0.0044, 0.0034], [0.015, 0.0067, 0.0052, 0.004, 0.004, 0.0031, 0.0031, 0.003], [0.0161, 0.0097, 0.0076, 0.0038, 0.0036, 0.003, 0.0028, 0.0026], [0.0297, 0.0071, 0.0066, 0.0058, 0.0046, 0.0046, 0.0046, 0.0043], [0.0342, 0.0092, 0.0092, 0.0081, 0.0076, 0.0072, 0.0063, 0.0056], [0.0247, 0.0205, 0.0124, 0.011, 0.0091, 0.0085, 0.0071, 0.0059], [0.0236, 0.0183, 0.0105, 0.0098, 0.0098, 0.0081, 0.0081, 0.0081], [0.0189, 0.0139, 0.0115, 0.0108, 0.0079, 0.007, 0.0058, 0.0054], [0.0719, 0.0171, 0.0104, 0.0081, 0.0076, 0.0071, 0.0071, 0.0071], [0.0719, 0.0219, 0.0133, 0.0091, 0.0076, 0.0063, 0.0059, 0.0059], [0.1073, 0.0327, 0.0289, 0.0175, 0.0155, 0.012, 0.0078, 0.0078], [0.053, 0.0498, 0.0162, 0.0143, 0.0087, 0.0087, 0.0081, 0.0076], [0.1133, 0.0287, 0.0127, 0.0077, 0.0077, 0.0077, 0.0064, 0.0064], [0.1443, 0.0251, 0.0098, 0.0092, 0.0087, 0.0076, 0.0056, 0.0053], [0.1914, 0.0484, 0.0189, 0.0157, 0.0108, 0.0108, 0.0074, 0.0062], [0.2358, 0.0867, 0.0233, 0.0206, 0.016, 0.0091, 0.0091, 0.0091], [0.2142, 0.0509, 0.0256, 0.0199, 0.0146, 0.0137, 0.0137, 0.0129], [0.1022, 0.0243, 0.0147, 0.0138, 0.013, 0.013, 0.0122, 0.0101], [0.0971, 0.0169, 0.0149, 0.0149, 0.0116, 0.0109, 0.0102, 0.0096], [0.1216, 0.012, 0.01, 0.0094, 0.0088, 0.0088, 0.0088, 0.0088], [0.0501, 0.0144, 0.0119, 0.0105, 0.0087, 0.0087, 0.0082, 0.0077], [0.0218, 0.0192, 0.015, 0.0141, 0.0097, 0.0066, 0.0066, 0.0066], [0.0519, 0.0203, 0.0149, 0.009, 0.0085, 0.0075, 0.0075, 0.0066], [0.0285, 0.0236, 0.0162, 0.0126, 0.0126, 0.0077, 0.0064, 0.0064], [0.0208, 0.0208, 0.0173, 0.0162, 0.0153, 0.0126, 0.0098, 0.0098], [0.0367, 0.0367, 0.0268, 0.0268, 0.0184, 0.0163, 0.0153, 0.0099], [0.0217, 0.0191, 0.014, 0.0096, 0.009, 0.009, 0.0085, 0.0085], [0.0363, 0.0194, 0.0171, 0.0125, 0.0098, 0.0098, 0.0098, 0.0086], [0.0762, 0.036, 0.0141, 0.0132, 0.0124, 0.0124, 0.0124, 0.0124], [0.0774, 0.047, 0.0208, 0.0126, 0.0112, 0.0112, 0.0098, 0.0092], [0.9551, 0.0154, 0.0094, 0.0094, 0.003, 0.003, 0.0024, 0.001], [0.965, 0.0121, 0.0074, 0.0074, 0.0027, 0.0021, 0.0015, 0.0015], [0.9644, 0.02, 0.0074, 0.0027, 0.0024, 0.0011, 0.001, 0.0008], [0.9686, 0.0177, 0.0065, 0.0027, 0.0017, 0.0011, 0.0008, 0.0006], [0.9811, 0.0096, 0.0066, 0.0019, 0.0003, 0.0002, 0.0001, 0.0001], [0.9637, 0.0227, 0.0107, 0.0024, 0.0002, 0.0002, 0.0001, 0.0001], [0.8195, 0.1424, 0.0247, 0.0103, 0.0007, 0.0005, 0.0005, 0.0005], [0.7989, 0.1573, 0.031, 0.0078, 0.0006, 0.0004, 0.0004, 0.0003]], "ranks": {"Kotlin": [181184, 148770, 118161, 23363, 25674, 48965, 69098, 59056, 49078, 74757, 79584, 41719, 71053, 87950, 112688, 40601, 65255, 64564, 119745, 181548, 204310, 159776, 194416, 225082, 191943, 111533, 159723, 188674, 168200, 160011, 104614, 126636, 156255, 112301, 109828, 85342, 106596, 108441, 97572, 45302, 53921, 56072, 36824, 31823, 65972, 59674, 60160, 23346, 13715, 21230, 30181, 4437, 4122, 1375, 1170, 410, 221, 116, 165, 101, 118, 58, 104]}}, {"pos": 435, "top": [[".", ",", "-", " ", "ly", "\u00a0", "\"", "("], ["ly", " \uff1c", " \uff1e", "\uff20", " \uff5e", " \uff08", " \uff3b", " \u25ce"], ["ly", ".@", " \uff1e", ".", "\u3002", " \uff08", " \uff5c", " \uff0c"], [" \u300e", " \uff1c", " \ufeff", " \uff1e", " \uff0a", "\uff3f\uff3f", "\u3000\u3000", " ``"], [" \ufeff", " \uff08", "ly", " $$$", " \uff0c", ".@", " \uff1e", "\uff06"], ["ly", " \uff08", " \uff0c", " $$$", " nasty", " \u300e", "\uff01", "\u5728"], ["ly", " \uff08", "\u3000", " \u300e", " $$$", "\u548c", " \uff1c", " \ufeff"], ["ly", " \u300e", " \uff1c", " \ufeff", " $$$", " \uffe5", " \uff1e", " #@"], ["ly", " \uff1c", " \u300e", " \uff1e", "\uff06", "ement", " \uffe5", " \ufeff"], ["ly", " \u300e", " $$$", " nasty", "ement", " \uff1c", " \ufeff", " #$"], ["ly", " \uff1c", " \u300e", " $$$", " \uff1e", " \uffe5", "ement", "\u3000"], ["ly", " $$$", " \uff1c", " \u300e", "ement", " <$", " \uff1e", " nasty"], ["ly", " \u300e", " $$$", " ''", "ement", " \uff1c", " cheap", " nasty"], ["ly", " cheap", " nasty", " $$$", "-ish", " \u300e", " ''", " crap"], ["ly", " cheap", " nasty", " stuff", " ''", " --", " flashy", " fancy"], [" nasty", " cheap", "ly", " stuff", " $$$", " kids", " flashy", " booze"], [" nasty", " cheap", "ly", " stuff", " booze", " crap", " pricey", " shit"], [" nasty", " cheap", " stuff", " booze", "ly", " crap", " flashy", " pricey"], [" nasty", " stuff", " cheap", " $$$", " booze", " comfy", " crap", " pricey"], [" $$$", " cheap", " nasty", " booze", " pricey", " \uff1c", " stuff", " <+"], [" $$$", " cheap", " <$", " stuff", "ly", " pricey", " \uff1c", " money"], [" cheap", " $$$", " ''", " stuff", " pricey", " booze", " nasty", " money"], [" ''", " cheap", " $$$", " ``", " money", " cheaper", " pricey", " stuff"], [" ''", " cheap", " ``", " money", " $$$", " <$", " stuff", " cheaper"], [" cheap", " $$$", " money", " pricey", " ''", " cheaper", " <$", " \ufeff"], [" cheap", " money", " $$$", " cheaper", " pricey", " expensive", " Cheap", " stuff"], [" cheap", " money", " cheaper", " pricey", " $$$", " expensive", " cash", " affordable"], [" cheap", " money", " cheaper", " $$$", " cash", " <$", " cost", " affordable"], [" cheap", " money", " cheaper", " cash", " $$$", " expensive", " affordable", " pricey"], [" cheap", " money", " cheaper", " expensive", " affordable", " cash", " costs", " $$$"], [" cheap", " cheaper", " money", " affordable", " expensive", " Cheap", " cheapest", " costs"], [" cheap", " cheaper", " money", " affordable", " Cheap", " cost", " budget", " cash"], [" cheap", " cheaper", " money", " affordable", " Cheap", " budget", " expensive", " costs"], [" cheap", " cheaper", " cheapest", "cheap", " budgets", " affordable", " $$$", " Cheap"], [" cheap", " cheaper", "cheap", " cheapest", " $$$", " affordable", " budget", " Cheap"], [" cheap", " cheaper", "cheap", " cheapest", " Cheap", "\u4fbf\u5b9c", "\u5ec9", " crap"], [" cheap", " cheaper", "cheap", " cheapest", " inexpensive", " Cheap", "\u5ec9", "Cheap"], [" cheap", " cheaper", " cheapest", "cheap", " inexpensive", " Cheap", "\u5ec9", " affordable"], [" cheap", " cheaper", " cheapest", "cheap", " inexpensive", " Cheap", "\u5ec9", "Cheap"], [" cheap", " cheaper", "cheap", " cheapest", " Cheap", " inexpensive", "\u5ec9", "\u4fbf\u5b9c"], [" cheap", " cheaper", "cheap", " cheapest", " inexpensive", " cost", " Cheap", " costs"], [" cheap", " cheaper", " cheapest", " inexpensive", " cost", "cheap", " costs", " budget"], [" cheap", " cheaper", " inexpensive", " cheapest", " cost", " costs", "cheap", " budget"], [" cheap", " cheaper", " inexpensive", " cheapest", " cost", "cheap", " budget", " Cheap"], [" cheap", " cheaper", " cheapest", " inexpensive", " cost", " costs", " budget", "cheap"], [" cheap", " cheaper", " cost", " cheapest", " budget", " inexpensive", " budgets", " costs"], [" cheap", " cheaper", " cost", " cheapest", " budget", " inexpensive", " costs", " budgets"], [" cheap", " cheaper", " cost", " cheapest", " budget", " inexpensive", " costs", " budgets"], [" cheap", " cheaper", " cost", " cheapest", " budget", "\u4f4e\u6210\u672c", " budgets", " inexpensive"], [" cheap", " cheaper", " cheapest", "cheap", " budget", " cost", " Cheap", "\u4f4e\u6210\u672c"], [" cheap", " cheapest", "\u5ec9", " cheaper", "cheap", "\u4f4e\u6210\u672c", " cost", " budget"], [" Linux", " cheap", "\u5ec9", "*\"", " Unix", "Linux", " laptops", " cheapest"], [" Linux", " cheap", "\u5ec9", "Linux", " Unix", " cheapest", " laptop", "_linux"], [" Linux", " cheap", "\u5ec9", " laptop", "Linux", " laptops", " CPU", " Unix"], [" Linux", "Linux", " Unix", " CPU", " laptop", " GitHub", "_linux", " linux"], [" Linux", "Linux", " linux", "_linux", " LINUX", "linux", " container", "-linux"], [" Linux", "Linux", " linux", "_linux", " Docker", " container", " LINUX", "linux"], [" Linux", "Linux", " linux", "_linux", "linux", " LINUX", "-linux", " Docker"], [" Linux", " container", "Linux", " linux", " Docker", "_linux", " containers", " Container"], [" Linux", "Linux", " container", " containers", " linux", " CI", "_linux", "/Linux"], [" Linux", "Linux", " CI", " container", " linux", " containers", "_linux", "/Linux"], [" Linux", " CI", "Linux", " linux", " container", " linear", " containers", " Linear"], [" Linux", " CI", " container", " containers", "Linux", " Docker", " linux", " linear"]], "p": [[0.3564, 0.2955, 0.0702, 0.04, 0.0275, 0.0108, 0.0089, 0.0048], [0.8946, 0.0164, 0.0099, 0.006, 0.0044, 0.0044, 0.003, 0.0027], [0.1827, 0.0383, 0.036, 0.036, 0.028, 0.028, 0.0263, 0.0232], [0.2822, 0.151, 0.063, 0.063, 0.0297, 0.0218, 0.0116, 0.0075], [0.1172, 0.0913, 0.0711, 0.0589, 0.052, 0.0405, 0.0296, 0.0261], [0.1261, 0.1261, 0.0526, 0.041, 0.0385, 0.0182, 0.0151, 0.0125], [0.1175, 0.0713, 0.0629, 0.049, 0.046, 0.0432, 0.0406, 0.0382], [0.175, 0.0937, 0.073, 0.0471, 0.0304, 0.0184, 0.0163, 0.0163], [0.2001, 0.1292, 0.0538, 0.037, 0.0254, 0.0239, 0.0211, 0.0186], [0.4283, 0.0352, 0.031, 0.0242, 0.0177, 0.0147, 0.0095, 0.0095], [0.3794, 0.0453, 0.0275, 0.0228, 0.0189, 0.0189, 0.0189, 0.0177], [0.2545, 0.0685, 0.0644, 0.0534, 0.0196, 0.0173, 0.0144, 0.0119], [0.3018, 0.0384, 0.0281, 0.0181, 0.016, 0.015, 0.0125, 0.0091], [0.2343, 0.0359, 0.0298, 0.017, 0.0159, 0.015, 0.015, 0.0132], [0.074, 0.0422, 0.0422, 0.0329, 0.0309, 0.0272, 0.0176, 0.0137], [0.0702, 0.0659, 0.0659, 0.0453, 0.0228, 0.0157, 0.0138, 0.0138], [0.0837, 0.0652, 0.0508, 0.0421, 0.0199, 0.0155, 0.0145, 0.0145], [0.0837, 0.0477, 0.0308, 0.0187, 0.0176, 0.0155, 0.0121, 0.0113], [0.0546, 0.0375, 0.0331, 0.0214, 0.0157, 0.0138, 0.013, 0.0115], [0.0516, 0.0455, 0.0202, 0.0167, 0.0157, 0.0139, 0.0139, 0.0108], [0.1955, 0.0719, 0.0319, 0.03, 0.0206, 0.0182, 0.0182, 0.0161], [0.0372, 0.0225, 0.0225, 0.0107, 0.01, 0.0094, 0.0088, 0.0078], [0.1965, 0.1351, 0.0599, 0.0364, 0.0266, 0.0172, 0.0142, 0.0126], [0.3255, 0.1538, 0.0773, 0.0602, 0.0389, 0.0173, 0.0119, 0.0092], [0.2297, 0.2297, 0.0794, 0.0375, 0.0189, 0.0166, 0.0122, 0.0114], [0.3454, 0.0873, 0.0724, 0.0439, 0.0195, 0.0143, 0.0098, 0.0092], [0.5139, 0.1147, 0.0614, 0.0256, 0.0165, 0.0137, 0.0129, 0.01], [0.4745, 0.164, 0.0366, 0.0323, 0.0208, 0.0153, 0.0135, 0.0105], [0.5803, 0.1378, 0.0395, 0.0136, 0.0128, 0.0106, 0.01, 0.0094], [0.5491, 0.0954, 0.0511, 0.0107, 0.0101, 0.0089, 0.0089, 0.0069], [0.6166, 0.042, 0.037, 0.0088, 0.0073, 0.0069, 0.0064, 0.006], [0.7698, 0.0263, 0.0263, 0.008, 0.0052, 0.004, 0.0036, 0.0036], [0.7642, 0.0357, 0.018, 0.0066, 0.0062, 0.0062, 0.0048, 0.0048], [0.5372, 0.0566, 0.0143, 0.0143, 0.0098, 0.0092, 0.0092, 0.0092], [0.7633, 0.0458, 0.014, 0.0116, 0.0066, 0.0058, 0.0058, 0.0048], [0.7487, 0.0329, 0.0212, 0.0107, 0.0073, 0.0057, 0.0047, 0.0039], [0.8627, 0.043, 0.0179, 0.0131, 0.0055, 0.0048, 0.0038, 0.0033], [0.9009, 0.0396, 0.0107, 0.01, 0.0069, 0.0054, 0.0025, 0.0022], [0.9177, 0.0356, 0.0102, 0.009, 0.0062, 0.0038, 0.0023, 0.0018], [0.9107, 0.0353, 0.013, 0.0115, 0.0051, 0.0045, 0.0029, 0.0024], [0.9117, 0.0454, 0.0089, 0.0079, 0.0054, 0.0037, 0.0033, 0.0018], [0.874, 0.0717, 0.0097, 0.0086, 0.0086, 0.0059, 0.0052, 0.0028], [0.8805, 0.0723, 0.0111, 0.0086, 0.0067, 0.0046, 0.0032, 0.0019], [0.8923, 0.0444, 0.0127, 0.0087, 0.0053, 0.0053, 0.0047, 0.0047], [0.9278, 0.0247, 0.0091, 0.008, 0.0055, 0.0043, 0.0038, 0.0033], [0.9514, 0.0136, 0.0073, 0.005, 0.005, 0.0039, 0.0024, 0.002], [0.9291, 0.0193, 0.0117, 0.0076, 0.0071, 0.004, 0.0036, 0.0034], [0.9294, 0.0133, 0.0133, 0.0103, 0.0071, 0.0055, 0.0034, 0.0031], [0.8662, 0.0336, 0.0204, 0.0159, 0.0109, 0.0066, 0.0058, 0.0052], [0.8619, 0.0295, 0.0158, 0.0108, 0.0108, 0.0108, 0.007, 0.0062], [0.7415, 0.0369, 0.0306, 0.0238, 0.0145, 0.0145, 0.0136, 0.012], [0.2815, 0.0973, 0.0489, 0.0217, 0.0149, 0.014, 0.0132, 0.009], [0.3331, 0.0954, 0.0656, 0.0166, 0.0137, 0.0078, 0.0078, 0.0078], [0.3161, 0.0549, 0.0276, 0.0157, 0.0148, 0.0139, 0.0139, 0.013], [0.7588, 0.0215, 0.0178, 0.0139, 0.0115, 0.0102, 0.0066, 0.0066], [0.9846, 0.0059, 0.004, 0.0028, 0.0006, 0.0004, 0.0004, 0.0002], [0.9841, 0.0059, 0.0035, 0.0017, 0.0012, 0.001, 0.0003, 0.0003], [0.9922, 0.0041, 0.0022, 0.0008, 0.0002, 0.0001, 0.0001, 0.0001], [0.9841, 0.0066, 0.0028, 0.0022, 0.001, 0.0008, 0.0006, 0.0006], [0.9947, 0.0022, 0.0015, 0.0006, 0.0004, 0.0003, 0.0001, 0.0], [0.9987, 0.0005, 0.0004, 0.0001, 0.0001, 0.0001, 0.0, 0.0], [0.9935, 0.0046, 0.0007, 0.0004, 0.0002, 0.0001, 0.0001, 0.0001], [0.8943, 0.0943, 0.0027, 0.001, 0.001, 0.0008, 0.0006, 0.0003]], "ranks": {"Kotlin": [139845, 191509, 101870, 26758, 94198, 69481, 42801, 61937, 82023, 123431, 105317, 119154, 51864, 90371, 121175, 50397, 41378, 28116, 17574, 15999, 60079, 17118, 32359, 128716, 44769, 16683, 21203, 52746, 39085, 17685, 9495, 19544, 21410, 6138, 12465, 7164, 6228, 5066, 6716, 6131, 12526, 14509, 9797, 10085, 7809, 20696, 23174, 11814, 11560, 7245, 10221, 2238, 1616, 1075, 615, 384, 220, 169, 184, 410, 454, 397, 229]}}, {"pos": 436, "top": [[",", "s", ".", ";", "o", "y", " ", "d"], ["s", "sWith", "schild", "l\u00fc", "d\u00fcr", " (\u201c", "  \n", "s\u00e4"], [",", ".", "s", ";", "\u2026", "\u2026.", "\u2013", "\u2026.."], ["satz", "schutz", "s", "solver", "sip", "sWith", "siz", "s\u00e4"], ["s", "s\u00e4", "sir", "siz", "sav", "sWith", "sud", "\u0627\u062a"], ["s", "siz", "sWith", "s\u00e4", "sud", "sav", "servers", "sir"], ["s", "sud", "  \n", "sav", "raries", "sor", "s\u00e4", "siz"], ["s", "sud", "sav", "schild", "dach", " `$", " LC", "raries"], ["s", "sud", "schild", "dach", "ska", "sav", " `$", " hardcore"], ["s", ",", "sud", " \u00ad", "ska", " Linux", "ian", "\u76f8\u8f85\u76f8\u6210"], ["s", ",", "-style", "ian", " Linux", " \u00ad", "-era", "ska"], ["s", " Linux", " $$$", "ian", " hardcore", "ska", "sud", " `$"], ["s", " Linux", "ska", " hardcore", "sud", "siz", "-era", "\u5927\u9662"], ["s", " hardcore", " Linux", "-era", " junk", "siz", " startups", "-linux"], ["s", " hardcore", " Linux", " Philly", "-era", " freak", " savvy", " theater"], ["s", " Linux", " hardcore", " theater", " startups", " tech", " geek", "siz"], ["s", " Linux", " hardcore", " startups", " tech", " geek", " starters", "es"], ["s", " Linux", " hardcore", " startups", "-linux", " Philly", "siz", "ska"], [" Linux", "s", "-linux", " hardcore", "-gnu", "-era", " startups", "-esque"], [" Linux", " hardcore", "s", "-era", "-linux", "/Linux", "_linux", " startups"], [" Linux", "s", "Linux", "-linux", " hardcore", "_linux", "   \n\n", "/Linux"], [" Linux", "-linux", "satz", " Geile", " hacker", "\u76ae\u9769\u57ce", " startups", " hackers"], [" Linux", " ``", "-linux", " hackers", " hacker", "krieg", "/Linux", " startups"], [" Linux", "Linux", " ___", " computers", " ``", " Unix", " ____", "-linux"], [" Linux", "   \n\n", "  \n\n", "Linux", " \n\n", " \r\n\r\n", "/Linux", "  \r\n\r\n"], [" Linux", " Unix", "Linux", "-linux", "/Linux", " linux", " UNIX", "UNIX"], [" Linux", " Unix", "/Linux", "-linux", " UNIX", "Linux", " linux", "UNIX"], [" Linux", " \n\n", " ___", " ____", "  \n\n", " Unix", "   \n\n", " UNIX"], [" Linux", " \n\n", "  \n\n", "   \n\n", " Unix", "Linux", "/Linux", " linux"], [" Linux", " \n  \n", " Unix", " ____", "   \n\n", "  \n\n", " \n\n", " ___"], [" ...\\", " Linux", " ____", "  \n\n", " \n\n", " ___", "   \n\n", " ....."], [" ...", " ...\\", " ...\"", " Linux", " ....", " [...]", " .....", " ......"], [" ...", " ...\"", " Linux", " ....", " .....", " ...\\", "...", " [...]"], [" Linux", " Unix", " ...", " tech", "/Linux", " startups", " ...\"", "Linux"], [" Linux", " ...\"", " ...", " ...\\", "  \n\n", " Unix", " labs", " tech"], [" Linux", " Unix", "Linux", " \n\n", " ...\"", "  \n\n", " tech", "\u2026\u2026"], [" Linux", "Linux", " Unix", " backend", " tech", " labs", " Ubuntu", " software"], [" Linux", " Unix", "Linux", " backend", " tech", " software", " Ubuntu", " labs"], [" Linux", " Unix", "Linux", " backend", " Ubuntu", "/Linux", " linux", " tech"], [" Linux", "Linux", " Unix", "/Linux", "Unix", " linux", " Ubuntu", " labs"], [" Linux", "Linux", " Unix", "/Linux", " linux", " Ubuntu", "Unix", " LINUX"], [" Linux", "Linux", " Unix", "/Linux", " linux", " Ubuntu", " LINUX", "/linux"], [" Linux", "Linux", " Unix", "/Linux", " linux", " UNIX", " Ubuntu", " LINUX"], [" Linux", " Unix", "Linux", "/Linux", " linux", " Ubuntu", " labs", " UNIX"], [" Linux", " linux", "/Linux", " Unix", "Linux", " labs", " Ubuntu", " servers"], [" Linux", "/Linux", " Unix", " linux", " labs", " production", " UNIX", " software"], [" Linux", " Unix", "/Linux", " labs", " linux", " production", " backend", " tech"], [" Linux", " production", " labs", "/Linux", " Unix", " servers", " training", " factory"], [" Linux", " labs", "/Linux", " Unix", " production", " servers", " backend", " linux"], [" Linux", "/Linux", " labs", " backend", " servers", " Unix", " setups", " production"], ["/Linux", " Linux", " labs", " backend", "Linux", " setup", " servers", " platform"], [" backend", " labs", " platform", " Docker", " platforms", "/Linux", " Linux", " servers"], [" backend", " Docker", " CI", " platform", " SDK", "/Linux", " CDN", " labs"], [" backend", " Docker", " SDK", " CI", " CPU", " Linux", "/Linux", " devs"], [" backend", " CI", " Linux", " Docker", "/Linux", " CentOS", " CPU", " Ubuntu"], [" CI", " container", " containers", "CI", " Docker", " Container", "/container", "\u5bb9\u5668"], [" CI", " container", " containers", " Docker", "CI", " Container", " Containers", " docker"], [" CI", " container", "CI", " containers", " Docker", " Container", " docker", " Containers"], [" CI", " container", " containers", " Container", " Docker", "CI", "Container", "container"], [" container", " containers", " CI", " Container", "container", " Containers", "CI", "\u5bb9\u5668"], [" CI", " container", " containers", "CI", " Container", "container", " Containers", "containers"], [" CI", " container", " containers", "CI", " Container", " Containers", "container", "containers"], [" CI", " container", " containers", "CI", "\"", " Container", " Containers", " Ci"]], "p": [[0.7023, 0.1776, 0.0951, 0.0057, 0.0019, 0.0014, 0.0012, 0.0009], [0.5554, 0.0168, 0.0131, 0.0054, 0.0035, 0.0033, 0.0031, 0.0029], [0.8051, 0.109, 0.0583, 0.007, 0.0027, 0.0021, 0.0015, 0.0009], [0.0158, 0.0075, 0.0062, 0.0058, 0.0055, 0.0051, 0.0051, 0.0051], [0.8748, 0.0023, 0.0022, 0.0018, 0.0016, 0.0016, 0.0011, 0.0011], [0.4771, 0.021, 0.0099, 0.0087, 0.0077, 0.0064, 0.006, 0.0053], [0.785, 0.0099, 0.0041, 0.0036, 0.0034, 0.0023, 0.0018, 0.0017], [0.1831, 0.1111, 0.0091, 0.0086, 0.0086, 0.0063, 0.0063, 0.0059], [0.367, 0.0599, 0.0111, 0.0072, 0.0063, 0.0056, 0.0052, 0.0041], [0.5283, 0.0434, 0.0103, 0.0075, 0.0028, 0.0026, 0.002, 0.0019], [0.7746, 0.0067, 0.0034, 0.0034, 0.0032, 0.0023, 0.0018, 0.0015], [0.0927, 0.022, 0.0071, 0.0067, 0.0067, 0.0043, 0.0041, 0.0041], [0.1459, 0.0144, 0.006, 0.006, 0.005, 0.0047, 0.0039, 0.0034], [0.0616, 0.0146, 0.0129, 0.0054, 0.0042, 0.0031, 0.0031, 0.0029], [0.3607, 0.0055, 0.0045, 0.0038, 0.0038, 0.0028, 0.0026, 0.0024], [0.1514, 0.0091, 0.0067, 0.0033, 0.003, 0.0024, 0.002, 0.002], [0.5689, 0.0059, 0.0043, 0.0023, 0.0022, 0.0017, 0.0013, 0.0013], [0.0359, 0.0159, 0.0066, 0.0055, 0.0033, 0.0031, 0.0026, 0.0023], [0.0285, 0.0152, 0.0082, 0.0068, 0.0041, 0.0032, 0.003, 0.0028], [0.0191, 0.0062, 0.0048, 0.004, 0.004, 0.0035, 0.0029, 0.0029], [0.0359, 0.015, 0.0052, 0.0038, 0.0038, 0.0036, 0.0033, 0.0031], [0.0224, 0.005, 0.0047, 0.0034, 0.003, 0.003, 0.0028, 0.0028], [0.0623, 0.0115, 0.0054, 0.004, 0.0035, 0.0033, 0.0031, 0.0031], [0.2068, 0.0085, 0.0085, 0.0075, 0.0062, 0.0062, 0.0062, 0.0055], [0.2233, 0.0931, 0.0772, 0.0565, 0.0322, 0.0302, 0.0221, 0.0162], [0.5422, 0.0393, 0.0306, 0.0238, 0.0224, 0.0144, 0.0136, 0.012], [0.6525, 0.0646, 0.0197, 0.0185, 0.0144, 0.0105, 0.0099, 0.0056], [0.5045, 0.0774, 0.0499, 0.0343, 0.0303, 0.0251, 0.0251, 0.0126], [0.5436, 0.0419, 0.0348, 0.0288, 0.0239, 0.0136, 0.012, 0.0113], [0.2498, 0.0318, 0.0298, 0.028, 0.0193, 0.015, 0.0117, 0.0103], [0.0939, 0.0882, 0.0778, 0.0645, 0.0502, 0.0417, 0.0286, 0.0286], [0.4783, 0.0608, 0.0445, 0.0326, 0.021, 0.0174, 0.0136, 0.012], [0.4941, 0.0358, 0.0358, 0.0159, 0.0124, 0.0109, 0.007, 0.0062], [0.1857, 0.0303, 0.0152, 0.0087, 0.0072, 0.0072, 0.0068, 0.0068], [0.1389, 0.0227, 0.02, 0.0188, 0.0177, 0.0156, 0.0156, 0.0156], [0.1707, 0.0231, 0.0231, 0.0192, 0.0169, 0.0169, 0.0159, 0.014], [0.2648, 0.046, 0.0316, 0.0149, 0.0132, 0.0085, 0.0066, 0.0062], [0.3295, 0.037, 0.0254, 0.0154, 0.0113, 0.0113, 0.0077, 0.0057], [0.5245, 0.0588, 0.0404, 0.0102, 0.0096, 0.007, 0.0066, 0.0062], [0.6093, 0.1059, 0.05, 0.0105, 0.0082, 0.0082, 0.0068, 0.0047], [0.8121, 0.0856, 0.0315, 0.0109, 0.0058, 0.0051, 0.0038, 0.0033], [0.8858, 0.0441, 0.0267, 0.0143, 0.0053, 0.0026, 0.0019, 0.0016], [0.8765, 0.034, 0.03, 0.0182, 0.0086, 0.0034, 0.0025, 0.0019], [0.7978, 0.0309, 0.0213, 0.02, 0.0137, 0.0054, 0.0042, 0.0037], [0.7294, 0.025, 0.0234, 0.0234, 0.022, 0.0086, 0.0046, 0.0041], [0.7058, 0.0424, 0.0242, 0.0188, 0.0146, 0.0083, 0.0051, 0.0048], [0.5178, 0.0311, 0.0292, 0.0258, 0.0242, 0.0201, 0.0084, 0.0084], [0.2487, 0.0406, 0.0358, 0.0262, 0.0262, 0.0217, 0.014, 0.0132], [0.3342, 0.0746, 0.07, 0.0242, 0.0214, 0.0189, 0.0166, 0.0122], [0.1611, 0.1107, 0.0715, 0.0263, 0.0141, 0.011, 0.0103, 0.0097], [0.2006, 0.1884, 0.054, 0.0371, 0.0106, 0.0088, 0.0078, 0.0073], [0.0571, 0.0473, 0.0346, 0.0287, 0.0164, 0.0154, 0.0144, 0.0136], [0.0424, 0.0399, 0.0213, 0.0188, 0.0177, 0.0156, 0.0122, 0.0107], [0.0814, 0.0384, 0.0182, 0.0171, 0.0141, 0.0141, 0.0133, 0.0125], [0.1634, 0.0875, 0.0725, 0.0565, 0.0365, 0.0284, 0.0267, 0.0183], [0.9058, 0.0656, 0.0129, 0.0037, 0.0029, 0.0017, 0.0014, 0.0008], [0.9213, 0.0459, 0.0102, 0.009, 0.0055, 0.0018, 0.0008, 0.0008], [0.9782, 0.0109, 0.0051, 0.0021, 0.0019, 0.0004, 0.0002, 0.0002], [0.6136, 0.3284, 0.0392, 0.006, 0.0036, 0.0015, 0.0013, 0.0013], [0.402, 0.3131, 0.2763, 0.0024, 0.0014, 0.0014, 0.001, 0.0008], [0.8262, 0.1118, 0.0598, 0.0008, 0.0005, 0.0003, 0.0002, 0.0001], [0.9841, 0.0085, 0.0059, 0.0013, 0.0, 0.0, 0.0, 0.0], [0.9796, 0.0109, 0.0058, 0.0017, 0.0007, 0.0002, 0.0001, 0.0001]], "ranks": {"Kotlin": [132879, 39388, 52657, 1680, 4970, 7687, 15104, 41031, 49848, 92829, 56159, 24259, 12650, 31369, 38533, 11073, 14119, 7945, 10280, 32854, 27913, 9281, 11411, 21183, 24893, 4612, 4357, 10078, 6813, 6094, 4581, 18502, 24129, 5238, 6860, 4665, 2147, 2479, 2005, 1871, 2222, 2063, 2547, 2738, 2778, 5937, 9375, 9471, 4617, 4796, 4879, 4750, 3247, 2060, 1360, 1805, 877, 580, 688, 1679, 2306, 3332, 1863]}}, {"pos": 437, "top": [[" \u2013", " ......", " \u2502", " \u00b7", " [\u2026]", "@\"", ".", "\u00b7\u00b7"], [" \u2013**", " \u25c6", "\u30f3", ")\",\"", " \uff1c", " '\\\"", "\u2027", ".\",\""], [" \uff5c", " \u2013**", "\uff1f\u201d", " Blowjob", "HCI", "*\u201c.", " \u25c6", " pornstar"], ["':''", " Blowjob", " milfs", " cumshot", " Shemale", " pornstar", " Bbw", " creampie"], [" *@", " '@", "(ci", " \u25c6", " @(", " \":\"", "\u2591", ":@"], ["(ci", " \u3011", " Blowjob", ":@", " CSI", "\u6e2f\u80a1", "dias", " *)\""], [" \u3010", " **\u3010", " \u3011", "\u3010", "\u3011\u3010", " ......", " *))", " '@"], [" '~/", " '\\\"", " **\u3010", " *@", " **\u300c", " **\u25a0", " *))", ".\",\""], [".\",\"", "\u3011\u3010", " *@", " \u3011", " [@", " \u3010", " '~/", " [--"], [" [@", ".\",\"", " '~/", ".','", " '@", " [--", "@[", "(ci"], [" [@", ".\",\"", " \u3010", " @", ".@", " [#", "\ufffd\ufffd", " '@"], [" workflows", " Blowjob", " ____", "':''", " '~/", " pornstar", ".','", " cumshot"], [" workflows", " Blowjob", " pornstar", " cumshot", " macOS", " '~/", " creampie", " milfs"], [" workflows", " Blowjob", " pornstar", " labs", " macOS", " webinar", " wiki", " pipeline"], [" labs", " ops", " tech", "-esque", " OC", " Ops", " wiki", " combo"], ["-esque", " labs", " tech", " wiki", " macOS", " reboot", " Blowjob", " CI"], ["-esque", " tech", " startup", " wiki", " TBD", " workflows", " labs", " reboot"], [" workflows", " startup", " macOS", " startups", " Blowjob", " wiki", " labs", " tech"], [" wiki", " macOS", " workflows", " startup", " Blowjob", "-esque", " tech", " Wiki"], [" wiki", " [--", "uci", " macOS", " workflows", " '~/", " ~>", " matchups"], [" @", " wiki", "@", " \u3010", " --", " [@", " matchups", " Wiki"], [" **\u25a0", " cumshot", " workflows", " Blowjob", " milfs", " *))", " pornstar", " wiki"], [" workflows", " **\u25a0", " macOS", " wiki", " '~/", " *))", " cumshot", " startup"], [" workflows", " --", " workshops", " ']", " wiki", " workflow", " macOS", " ]]"], [" workflows", " ____", " **\u25a0", " --", " workflow", " tech", " labs", " wiki"], [" workflows", " workflow", " labs", " tech", " **\u25a0", " workshops", " workspace", " startups"], [" workflows", " workflow", " labs", " tech", " workshops", " workspace", " workshop", " startup"], [" --", " workflows", " tech", " production", " labs", " workflow", " @", " workshops"], [" workflows", " workflow", " tech", " labs", " workshops", " infrastructure", " production", " workshop"], [" workflows", " workflow", " tech", " labs", " workshops", " startup", " workshop", " infrastructure"], [" workflows", " workflow", " tech", " labs", " ...", " workshops", " workshop", " infrastructure"], [" ...", " tech", " workflows", " workflow", " workshops", " production", " labs", " infrastructure"], [" tech", " production", " technology", " ...", " workflows", " workshops", " workflow", " work"], [" workflows", " tech", " workflow", " labs", " infrastructure", " technology", " workshops", " software"], [" tech", " workflows", " workflow", " labs", " infrastructure", " software", " hardware", " [...]"], [" tech", " workflows", " workflow", " labs", " infrastructure", " software", " \u2026", " hardware"], [" workflows", " tech", " workflow", " labs", " infrastructure", " software", " hardware", " rollout"], [" workflows", " tech", " workflow", " infrastructure", " software", " labs", " testing", " hardware"], [" workflows", " tech", " workflow", " labs", " testing", " software", " infrastructure", " hardware"], [" workflows", " workflow", " tech", " testing", " labs", " automation", " software", " pipelines"], [" workflows", " workflow", " testing", " labs", " tech", " automation", " software", " automated"], [" workflows", " workflow", " testing", " labs", " automation", " pipeline", " pipelines", " production"], [" workflows", " workflow", " testing", " labs", " automation", " production", " pipelines", " pipeline"], [" workflows", " workflow", " testing", " labs", " production", " automation", " pipelines", " tech"], [" workflows", " workflow", " testing", " labs", " pipelines", " production", " automation", " pipeline"], [" workflows", " workflow", " testing", " production", " labs", " pipelines", " pipeline", " automation"], [" workflows", " workflow", " testing", " labs", " production", " tests", " pipeline", " pipelines"], [" workflow", " testing", " workflows", " production", " labs", " pipeline", " likely", " tests"], [" workflow", " labs", " workflows", " pipelines", " testing", " pipeline", " production", " setup"], [" workflow", " setup", " implies", " workflows", " likely", " pipeline", " setups", " labs"], [" doesn", " setup", " implies", " workflow", " irrelevant", " isn", " setups", " pipeline"], [" requirement", " doesn", " constraint", " setup", " hint", " caveat", " adds", " implies"], [" adds", " constraint", " doesn", " requirement", " hint", " caveat", " added", " complic"], [" constraint", " adds", " requirement", " hint", " hints", " clue", " caveat", " doesn"], [" constraint", " requirement", " constraints", " hint", "constraint", "Constraint", " clue", " caveat"], [" constraint", " requirement", " detail", " restriction", " Constraint", " caveat", "Constraint", "constraint"], [" constraint", " requirement", "Constraint", " Constraint", "constraint", "\u7ea6\u675f", " caveat", " constraints"], [" constraint", " requirement", " hint", "Constraint", " constraints", " Constraint", "\u7ea6\u675f", "constraint"], [" constraint", "\u7ea6\u675f", " constraints", " Constraint", "Constraint", "constraint", " Constraints", "Constraints"], [" constraint", " constraints", "\u7ea6\u675f", " Constraint", "constraint", "Constraint", " constrain", " Constraints"], [" constraint", " Constraint", " constraints", "Constraint", "\u7ea6\u675f", "constraint", "\"", " constrain"], ["\"", " constraint", " Constraint", " constraints", "Constraint", "\u7ea6\u675f", "constraint", " constrain"], ["\"", "\u201d", " constraint", "'", "\"**", "\"]", "\")", " Constraint"]], "p": [[0.0878, 0.0285, 0.0285, 0.0252, 0.0209, 0.0173, 0.0162, 0.0143], [0.0368, 0.0174, 0.0144, 0.0099, 0.0082, 0.0073, 0.0064, 0.0064], [0.016, 0.0132, 0.0124, 0.0059, 0.0059, 0.0059, 0.0036, 0.0036], [0.0341, 0.032, 0.0234, 0.0151, 0.0142, 0.0067, 0.0059, 0.0059], [0.0199, 0.0175, 0.0113, 0.0106, 0.0088, 0.0073, 0.0069, 0.0069], [0.0328, 0.0088, 0.005, 0.005, 0.0035, 0.003, 0.003, 0.003], [0.0652, 0.0165, 0.0137, 0.0083, 0.0083, 0.0073, 0.0069, 0.0065], [0.0108, 0.0095, 0.0084, 0.0079, 0.0066, 0.0062, 0.0054, 0.0054], [0.0311, 0.0166, 0.0101, 0.0095, 0.0079, 0.0074, 0.0074, 0.0065], [0.0294, 0.0259, 0.0095, 0.0074, 0.0066, 0.0058, 0.0051, 0.0048], [0.0544, 0.033, 0.0241, 0.0146, 0.0114, 0.0101, 0.0094, 0.0089], [0.0097, 0.0076, 0.0059, 0.0052, 0.0052, 0.0038, 0.0036, 0.0034], [0.0159, 0.0116, 0.0071, 0.0049, 0.0038, 0.0031, 0.0029, 0.0026], [0.0165, 0.0064, 0.0044, 0.0039, 0.0035, 0.0035, 0.0035, 0.0032], [0.0118, 0.0081, 0.0072, 0.0044, 0.0044, 0.0038, 0.0036, 0.003], [0.0059, 0.0046, 0.0043, 0.0041, 0.003, 0.003, 0.0025, 0.0025], [0.0151, 0.0142, 0.0104, 0.0098, 0.0071, 0.0071, 0.0071, 0.0056], [0.0105, 0.0077, 0.0068, 0.0064, 0.0047, 0.0044, 0.0039, 0.0039], [0.0106, 0.0099, 0.0093, 0.0053, 0.0053, 0.005, 0.0044, 0.0041], [0.0139, 0.0084, 0.0054, 0.0051, 0.0051, 0.0051, 0.0048, 0.0045], [0.045, 0.0309, 0.0213, 0.0107, 0.0094, 0.0083, 0.0057, 0.0054], [0.0135, 0.0126, 0.0126, 0.0068, 0.0068, 0.006, 0.0056, 0.0044], [0.018, 0.014, 0.0075, 0.0075, 0.0048, 0.0048, 0.0045, 0.004], [0.0238, 0.0099, 0.0093, 0.0077, 0.0073, 0.0068, 0.0064, 0.006], [0.0415, 0.0162, 0.0153, 0.0105, 0.0099, 0.0093, 0.0082, 0.0082], [0.2548, 0.0502, 0.0237, 0.0163, 0.0127, 0.0127, 0.0087, 0.0082], [0.153, 0.0529, 0.0387, 0.0235, 0.0194, 0.0126, 0.0118, 0.0104], [0.1356, 0.0531, 0.044, 0.0414, 0.0343, 0.0303, 0.0172, 0.0152], [0.2381, 0.0876, 0.0469, 0.0221, 0.0195, 0.0143, 0.0126, 0.0111], [0.2286, 0.1014, 0.045, 0.0213, 0.0146, 0.0146, 0.0121, 0.0114], [0.2905, 0.0782, 0.069, 0.0254, 0.0238, 0.0186, 0.0128, 0.0106], [0.2016, 0.1149, 0.0479, 0.0273, 0.0226, 0.02, 0.0188, 0.0146], [0.0944, 0.0394, 0.0347, 0.0326, 0.0307, 0.0271, 0.0198, 0.0175], [0.2735, 0.1659, 0.0834, 0.0254, 0.0211, 0.0136, 0.0113, 0.0094], [0.2543, 0.186, 0.0533, 0.0366, 0.0252, 0.0099, 0.0072, 0.0072], [0.1996, 0.1554, 0.0288, 0.0224, 0.0136, 0.0093, 0.0093, 0.0077], [0.2939, 0.1388, 0.0374, 0.0176, 0.0146, 0.0094, 0.0078, 0.0061], [0.3849, 0.0973, 0.046, 0.0149, 0.014, 0.0124, 0.0091, 0.0075], [0.4941, 0.0914, 0.059, 0.0169, 0.0149, 0.0149, 0.0109, 0.0085], [0.629, 0.1027, 0.0294, 0.0229, 0.019, 0.0168, 0.0096, 0.0042], [0.5548, 0.1092, 0.0516, 0.0485, 0.0378, 0.0215, 0.0168, 0.007], [0.6659, 0.1684, 0.0332, 0.0332, 0.0101, 0.0095, 0.0074, 0.0069], [0.6023, 0.1726, 0.0436, 0.0385, 0.0151, 0.0151, 0.0133, 0.0104], [0.4361, 0.1818, 0.0973, 0.0406, 0.0246, 0.0192, 0.0192, 0.014], [0.5245, 0.1703, 0.071, 0.038, 0.0216, 0.0179, 0.0158, 0.0158], [0.2275, 0.1771, 0.1563, 0.0738, 0.0652, 0.0308, 0.0272, 0.0212], [0.2403, 0.2403, 0.1286, 0.0536, 0.0418, 0.027, 0.027, 0.0197], [0.1304, 0.1225, 0.1081, 0.0616, 0.0578, 0.033, 0.0257, 0.0257], [0.1254, 0.0862, 0.0761, 0.0592, 0.0592, 0.0523, 0.0433, 0.0263], [0.1459, 0.0733, 0.0393, 0.0393, 0.0346, 0.0325, 0.0287, 0.0253], [0.1135, 0.083, 0.0646, 0.0392, 0.0305, 0.0287, 0.0185, 0.0163], [0.1133, 0.1065, 0.0779, 0.0368, 0.0287, 0.0269, 0.0197, 0.0197], [0.3082, 0.0779, 0.0417, 0.0346, 0.0238, 0.0185, 0.0185, 0.0163], [0.2451, 0.1232, 0.0902, 0.0847, 0.066, 0.0275, 0.0214, 0.0178], [0.7588, 0.1693, 0.0096, 0.0048, 0.0048, 0.0045, 0.0042, 0.004], [0.8299, 0.0991, 0.0081, 0.0063, 0.0063, 0.0046, 0.0046, 0.0036], [0.8627, 0.0487, 0.0102, 0.009, 0.0055, 0.0051, 0.0048, 0.0048], [0.8561, 0.0426, 0.0138, 0.0095, 0.0084, 0.0074, 0.0051, 0.0048], [0.9725, 0.0108, 0.0066, 0.0035, 0.0035, 0.0024, 0.0002, 0.0002], [0.9694, 0.0108, 0.0065, 0.0045, 0.0035, 0.0035, 0.0004, 0.0003], [0.9706, 0.0084, 0.0058, 0.0051, 0.0035, 0.0031, 0.0011, 0.0005], [0.5191, 0.4581, 0.0048, 0.004, 0.0031, 0.0029, 0.0014, 0.0009], [0.9996, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Kotlin": [30211, 42415, 10818, 10723, 19956, 29940, 10280, 15103, 14950, 65495, 28245, 15801, 6352, 15499, 57124, 24128, 5858, 3305, 5869, 14271, 51013, 9431, 11468, 50001, 12566, 10633, 21299, 43345, 23604, 12149, 6284, 23976, 44892, 7539, 7501, 5204, 3560, 3723, 4550, 6802, 13317, 23201, 17454, 15509, 8354, 30772, 23838, 26119, 29113, 24744, 21877, 17055, 21374, 10351, 11723, 8205, 13063, 13500, 13162, 8257, 6317, 12833, 4571]}}, {"pos": 438, "top": [[".", "<|endoftext|>", " \u2013", ",", "\u2013", "\u00a0", " ", "\u00a0\u00a0"], [" \u200b\u200b", " ", " (\"", ".", " \u2013", "'s", "\u2013", ";"], [" \u200b\u200b", "\u2013", ",", ".", "\u2026..", "\u2026.", " \u2013", ";"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Blowjob", " Shemale", " \u041a\u0440\u0430\u0441\u0438", " Pubbl", "\ufffd\ufffd", " Hidal", " Binomo"], ["\u2014\"", " \"", " \u200b\u200b", " \"#", "\u00a0\u00a0", " **\"", "elog", "\u663e\u7740"], [" **\"", " \u200b\u200b", "\u062a\u0631\u0646\u062a", "elog", "endi", "\u5730\u4e9a", " **\u20ac", "usting"], [" **\"", " \"", " \"\"\"", "\u2014\"", " \u00bb", "rotch", " \u201d", "\u8303\u513f"], [" **\"", " **\u20ac", " booze", "ewater", " \"\"\"", "alej", " **\u300c", " **#"], [" booze", " \"\"\"", " *&", " **\u20ac", " **\"", "\u8303\u513f", " gadgets", " **\u300c"], [" pricey", "\u2014\"", " booze", "\u8303\u513f", " fanc", " savvy", "\u624e\u5806", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9"], [" pricey", " \"", " booze", " savvy", "\u8303\u513f", "\u2014\"", " \"\"", " fanc"], [" pricey", " booze", " **\u300c", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " **\u20ac", " dumpster", " trash", "acerb"], [" **\u300c", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " **\u00ab", " pricey", " booze", "acerb", "spez", "\u582a\u6bd4"], [" booze", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " \u00ab", " cheap", " gadget", " gadgets", " crap", " pricey"], [" cheap", " savvy", " \"", " booze", " even", " crap", " arguably", " pricey"], [" \"", " cheap", " even", " \u00ab", " booze", " plenty", " arguably", " savvy"], [" \"", " big", " cheap", " even", " pretty", " plenty", " mostly", " just"], [" cheap", " booze", " crap", " big", " pretty", " savvy", " plenty", " pricey"], [" cheap", " pretty", " even", " booze", " crap", " pricey", " anyway", " big"], [" cheap", " arguably", " even", " wildly", " pricey", " pretty", " plenty", " largely"], [" even", " just", " largely", " arguably", " cheap", " hugely", " though", " much"], [" cheap", " pricey", " even", " arguably", " cheaper", " big", " tweaks", " anyway"], [" cheap", " even", " arguably", " just", " quickly", " too", " still", " largely"], [" even", " just", " still", " much", " ,", " cheap", " largely", " too"], [" \n\n", " cheap", " arguably", " hugely", " pricey", " even", " though", "  \n\n"], [" cheap", " pricey", " arguably", " hugely", " cheaper", " costs", " infrastructure", " cost"], [" cheap", " pricey", " cost", " costs", " arguably", " infrastructure", " cheaper", " even"], [" \n\n", " cheap", " arguably", " cost", " even", "  \n\n", " just", " heavily"], [" \n\n", " cheap", "  \n\n", " even", " ,", " cost", " arguably", " heavily"], [" \n\n", "  \n\n", " cheap", " ,", " even", " cost", " just", " too"], [" \n\n", " cheap", "  \n\n", " ,", " cost", " even", " likely", " too"], [" cheap", " only", " even", " just", " too", " cost", " ,", " still"], [" cheap", " only", " even", " too", " just", " likely", " cost", " perhaps"], [" cheap", " likely", " infrastructure", " unlikely", " costs", " budget", " somehow", " potentially"], [" cheap", " likely", " unlikely", " infrastructure", " notoriously", " tech", " heavily", " aggressively"], [" cheap", " likely", " unlikely", " notoriously", " irrelevant", " ironically", " lack", " lacks"], [" cheap", " likely", " unlikely", " notoriously", " ironically", " irrelevant", " lacks", " lack"], [" cheap", " likely", " budget", " cost", " cheaper", " unlikely", " costs", " crap"], [" cheap", " likely", " budget", " cost", " ignores", " risks", " costs", " crap"], [" cheap", " budget", " cost", " budgets", " ignores", " likely", " costs", " crap"], [" cheap", " budget", " cost", " costs", " budgets", " cheaper", " simplistic", " ignores"], [" cheap", " budget", " cost", " costs", " budgets", " constraints", " cheaper", " infrastructure"], [" cheap", " budget", " cost", " costs", " budgets", " constraints", " infrastructure", " cheaper"], [" cheap", " budget", " cost", " costs", " budgets", " constraints", " infrastructure", " risks"], [" cheap", " budget", " cost", " costs", " likely", " budgets", " constraints", " risks"], [" cheap", " budget", " cost", " likely", " costs", " lack", " constraints", " risks"], [" cheap", " likely", " budget", " cost", " costs", " risks", " constraints", " constraint"], [" cheap", " likely", " cost", " constraint", " constraints", " ignores", " costs", " budget"], [" likely", " cheap", " ironically", " irrelevant", " cost", " exacerb", " ignores", " costs"], [" likely", " implies", " ignores", " constraint", " irrelevant", " cheap", " constraints", " suggests"], [" irrelevant", " ignores", " isn", " doesn", " implies", " constraint", " likely", "\u5012\u903c"], [" constraint", " ignores", " irrelevant", " doesn", " isn", " exacerb", " ignored", " implies"], [" constraint", " adds", " ignores", " irrelevant", " reinforces", " exacerb", "\u8fdb\u4e00\u6b65\u5f3a\u5316", " requirement"], [" constraint", " ignores", " adds", " restriction", " constraints", " requirement", " irrelevant", "Constraint"], [" constraint", " requirement", " restriction", " constraints", "\u7ea6\u675f", "Constraint", "constraint", " Constraint"], [" constraint", " restriction", " requirement", "Constraint", " constraints", "\u7ea6\u675f", "constraint", " Constraint"], [" constraint", "Constraint", " constraints", "\u7ea6\u675f", " restriction", " requirement", "constraint", " Constraint"], [" constraint", " restriction", "Constraint", " constraints", " requirement", "\u7ea6\u675f", "constraint", " Constraint"], [" constraint", "\u7ea6\u675f", "Constraint", " constraints", "constraint", " Constraint", "Constraints", " Constraints"], [" constraint", "\u7ea6\u675f", "constraint", "Constraint", " constraints", " Constraint", " constrain", "_constraint"], [" constraint", " Constraint", "constraint", "Constraint", " constraints", "\u7ea6\u675f", " constrain", " requirement"], [" constraint", " constraints", " Constraint", "constraint", "Constraint", " detail", "\u7ea6\u675f", " constrain"], [" constraint", " detail", " constraints", " Constraint", "\u7ea6\u675f", " requirement", "constraint", "Constraint"]], "p": [[0.4585, 0.1023, 0.0961, 0.0903, 0.066, 0.0332, 0.0332, 0.0228], [0.0877, 0.0044, 0.0032, 0.0026, 0.0025, 0.0025, 0.0023, 0.0023], [0.291, 0.1291, 0.0945, 0.0538, 0.0475, 0.0271, 0.0271, 0.0136], [0.0055, 0.0045, 0.0045, 0.0043, 0.0019, 0.0017, 0.0015, 0.0013], [0.0061, 0.0057, 0.0031, 0.0022, 0.0017, 0.0017, 0.0016, 0.0015], [0.013, 0.0065, 0.0027, 0.0027, 0.0026, 0.0024, 0.0024, 0.0023], [0.0366, 0.0251, 0.0196, 0.0143, 0.0064, 0.005, 0.0047, 0.0036], [0.0201, 0.0084, 0.0065, 0.0054, 0.0054, 0.0035, 0.0031, 0.0031], [0.0074, 0.0069, 0.0061, 0.0058, 0.0048, 0.0045, 0.004, 0.0037], [0.0087, 0.0077, 0.0056, 0.005, 0.0028, 0.0022, 0.0022, 0.0019], [0.0211, 0.0164, 0.0113, 0.0106, 0.0094, 0.0088, 0.0083, 0.0078], [0.0089, 0.0078, 0.0057, 0.0042, 0.0027, 0.0021, 0.0021, 0.002], [0.0121, 0.01, 0.0057, 0.0057, 0.0054, 0.002, 0.0019, 0.0017], [0.0059, 0.004, 0.003, 0.0022, 0.002, 0.0018, 0.0017, 0.0016], [0.0066, 0.0051, 0.0045, 0.0042, 0.0035, 0.0031, 0.0031, 0.0027], [0.0262, 0.0124, 0.0116, 0.0062, 0.0043, 0.0043, 0.004, 0.0033], [0.0508, 0.024, 0.024, 0.0199, 0.0145, 0.0113, 0.0078, 0.0073], [0.0803, 0.014, 0.0131, 0.0116, 0.0102, 0.0096, 0.0085, 0.0079], [0.0957, 0.0129, 0.0107, 0.0101, 0.0084, 0.0079, 0.0074, 0.0069], [0.0708, 0.0334, 0.0334, 0.0179, 0.0168, 0.0131, 0.0123, 0.0109], [0.0393, 0.0326, 0.0254, 0.0238, 0.0238, 0.0154, 0.0154, 0.0145], [0.0787, 0.0094, 0.0094, 0.0065, 0.0044, 0.0042, 0.0042, 0.0042], [0.0758, 0.0406, 0.0217, 0.0192, 0.0109, 0.0109, 0.0103, 0.0103], [0.0732, 0.0392, 0.0287, 0.0238, 0.021, 0.0197, 0.0174, 0.0144], [0.1255, 0.0631, 0.0317, 0.0247, 0.0181, 0.0181, 0.0124, 0.0103], [0.1312, 0.0243, 0.0115, 0.0084, 0.0074, 0.007, 0.0058, 0.0054], [0.2008, 0.0212, 0.0165, 0.0145, 0.0121, 0.0113, 0.01, 0.0061], [0.176, 0.0689, 0.0224, 0.0186, 0.0186, 0.0164, 0.0099, 0.0093], [0.3067, 0.0684, 0.0501, 0.0236, 0.0173, 0.0163, 0.0135, 0.0099], [0.3502, 0.069, 0.0648, 0.0198, 0.0198, 0.0174, 0.0088, 0.0077], [0.1692, 0.1093, 0.0333, 0.0202, 0.019, 0.0178, 0.0131, 0.0131], [0.0869, 0.0385, 0.03, 0.03, 0.0182, 0.0151, 0.0125, 0.0118], [0.0931, 0.0499, 0.044, 0.0322, 0.0236, 0.0172, 0.0134, 0.0111], [0.1584, 0.0426, 0.0147, 0.0138, 0.0108, 0.0095, 0.0089, 0.0089], [0.1336, 0.0359, 0.0141, 0.0103, 0.0097, 0.0085, 0.0071, 0.0071], [0.2294, 0.0481, 0.0257, 0.0129, 0.0089, 0.0084, 0.0084, 0.0078], [0.2884, 0.0286, 0.0127, 0.0105, 0.0099, 0.0093, 0.0087, 0.0082], [0.4436, 0.0162, 0.0143, 0.0086, 0.0086, 0.0081, 0.0081, 0.0072], [0.351, 0.0224, 0.0128, 0.0113, 0.01, 0.0088, 0.0083, 0.0083], [0.4383, 0.0247, 0.0141, 0.0103, 0.0103, 0.0091, 0.0091, 0.0075], [0.4994, 0.056, 0.0495, 0.0249, 0.0171, 0.0086, 0.0063, 0.0055], [0.3943, 0.113, 0.088, 0.0605, 0.0324, 0.0093, 0.0087, 0.0082], [0.292, 0.1217, 0.0837, 0.0652, 0.054, 0.0137, 0.0121, 0.0094], [0.2403, 0.1286, 0.0608, 0.0536, 0.0418, 0.0223, 0.0144, 0.0127], [0.2181, 0.0909, 0.0802, 0.0625, 0.026, 0.023, 0.0168, 0.0158], [0.17, 0.0755, 0.0588, 0.0519, 0.0296, 0.0131, 0.0123, 0.0123], [0.1312, 0.1158, 0.0312, 0.0293, 0.0214, 0.0201, 0.0201, 0.0178], [0.2011, 0.1774, 0.0328, 0.029, 0.0256, 0.0226, 0.0187, 0.0187], [0.1017, 0.0843, 0.0511, 0.0398, 0.033, 0.0291, 0.0274, 0.0257], [0.1998, 0.0833, 0.0735, 0.0505, 0.0419, 0.0326, 0.0164, 0.0154], [0.1913, 0.149, 0.0427, 0.0401, 0.0354, 0.0312, 0.0229, 0.0215], [0.1219, 0.1219, 0.1076, 0.0478, 0.029, 0.024, 0.0176, 0.0176], [0.21, 0.1853, 0.0875, 0.0531, 0.0531, 0.0413, 0.0303, 0.0195], [0.6292, 0.0516, 0.0402, 0.0355, 0.0355, 0.0313, 0.0168, 0.0084], [0.8992, 0.0395, 0.0187, 0.0187, 0.0061, 0.0053, 0.0042, 0.0017], [0.9216, 0.0315, 0.0191, 0.0062, 0.0055, 0.0043, 0.0033, 0.0033], [0.9423, 0.0119, 0.0082, 0.0072, 0.0072, 0.0072, 0.0049, 0.0044], [0.953, 0.0082, 0.0082, 0.0064, 0.0057, 0.005, 0.0044, 0.0039], [0.9815, 0.0066, 0.0035, 0.0031, 0.0028, 0.0021, 0.0001, 0.0], [0.9937, 0.0015, 0.0015, 0.0012, 0.0012, 0.0009, 0.0, 0.0], [0.9975, 0.0006, 0.0006, 0.0005, 0.0004, 0.0003, 0.0, 0.0], [0.9972, 0.0006, 0.0006, 0.0004, 0.0003, 0.0003, 0.0003, 0.0], [0.9944, 0.0036, 0.0005, 0.0002, 0.0002, 0.0002, 0.0001, 0.0001]], "ranks": {"Kotlin": [215835, 186127, 174567, 44877, 67395, 96050, 49746, 66361, 56904, 95095, 72899, 36212, 30232, 58933, 77841, 19869, 17469, 5277, 10645, 34008, 150737, 61634, 107388, 181779, 66148, 26266, 23229, 64942, 82656, 67993, 42004, 46598, 71334, 26563, 43447, 40356, 59170, 53664, 58380, 58787, 85871, 70891, 52167, 58337, 52639, 145801, 102803, 133800, 149109, 123415, 99233, 67427, 76453, 41606, 45084, 29478, 30130, 26913, 24931, 16802, 11865, 18220, 23666]}}, {"pos": 439, "top": [[" \u2013", "\u2013", ",", "<|endoftext|>", ".", " ", "i", ";"], [" \u2013", "\u2013", "\u2013and", "\u2013\u2013", "  ", "--", " ", "  \n"], ["\u2013", ",", " \u2013", "\u2013and", "\u2026", ".\u2013", ";", "."], [" ``", " ``(", "``", "\u3015", "``,", "\u52a0\u62ff\u5927", "\u5bb8", "__:"], [":@", " (\u201e", " ``(", "``", ":\\", "\u201e", ":\\\"", " ``"], ["\u0d4d\u0d1f", ":@", "\u5bb8", " (\u201e", " ``(", "__:", "ively", ":\\"], [" ``", "``", " ``(", "<|endoftext|>", ":\\\"", " $\\", " \n \n", "\u3014"], [" ``(", " ``", ":\\\"", "``", "\\\"\\", "=\\\"", " \n \n", " (\u201e"], [" ``(", ":\\\"", "\\\"\\", "=\\\"", " \\\"$", " *\\", " \n \n", "(\\\""], [" ``(", ":\\", "\\\"\\", " \n \n", " ``", "\u6545\u800c", " requisite", " {\\"], [" \n \n", " requisite", "\\\"\\", ":\\", " ``(", ";\\", "\\_", ":\\\""], [" ``(", " ``", "$__", " \\\"$", " requisite", "\u6545\u800c", ".Constraint", " constraint"], [" ``(", " ``", " requisite", " overarching", " constraint", "\u6545\u800c", ".Constraint", "\u79c9\u6301"], [" ``(", " ``", " requisite", " entirety", " overarching", "\u6545\u800c", " constraint", " rationale"], [" requisite", " ``", " ``(", " entirety", " overarching", "\u6545\u800c", " inherently", "\u8003\u91cf"], [" requisite", " ``", " ``(", " overarching", " entirety", " leveraging", " constraint", " nuanced"], [" requisite", " overarching", " leveraging", " nuanced", " bespoke", " constraint", " mandates", " mandated"], [" ``(", " constraint", " requisite", " overarching", " leveraging", " mandates", " nuanced", " bespoke"], [" ``(", " constraint", " requisite", " ``", " bespoke", " mandates", " mandated", " leveraging"], [" requisite", " arguably", " merely", "\u6545\u800c", " bespoke", " ``(", " overarching", " ``"], [" requisite", " merely", " swiftly", " arguably", " overarching", "\u5373\u4fbf", " ultimately", " wholly"], [" ``", " ``(", " constraint", " ;;^", "$__", "icismo", "RAINT", "\u5373\u4fbf\u5982\u6b64"], [" ``", " ``(", " constraint", " requisite", "\u6545\u800c", " arguably", "$__", " merely"], [" ``", " ultimately", " merely", " ``(", " arguably", " requisite", " notably", " uniquely"], [" requisite", " arguably", " merely", "\u5373\u4fbf", " ultimately", " overarching", " wholly", " ``"], [" ``", "$__", " ``(", " *__", " constraint", " arguably", " __", " requisite"], [" ``", " arguably", " requisite", " constraint", "$__", " ultimately", " merely", " __"], [" arguably", " requisite", " __", " merely", " ultimately", " uniquely", " ``", " notably"], [" arguably", " ultimately", " requisite", " uniquely", " heavily", " merely", " notably", " __"], [" ultimately", " arguably", " heavily", " requisite", " constraint", " constraints", " uniquely", " necess"], [" ,", " ultimately", " arguably", " limits", " heavily", " constraints", " budget", " only"], [" heavily", " ultimately", " arguably", " further", " only", " limits", " potentially", " cost"], [" arguably", " heavily", " only", " even", " potentially", " ultimately", " likely", " cost"], [" heavily", " constraints", " likely", " priorit", " limits", " arguably", " constraint", " forcing"], [" likely", " unlikely", " arguably", " constraints", " constraint", " heavily", " forcing", " disproportionately"], [" unlikely", " likely", " forcing", " disproportionately", " heavily", " arguably", " constraints", " exacerbated"], [" forcing", " unlikely", " likely", " exacerbated", " exacerb", " forced", " disproportionately", " cheap"], [" forcing", " unlikely", " limits", " constraints", " cheap", " likely", " constraint", " forced"], [" forcing", " constraints", " constraint", " limits", " limiting", " forced", " constrained", " restrict"], [" forcing", " constraints", " constraint", " limits", " limiting", " forced", " constrained", " restrict"], [" constraints", " constraint", " forcing", " forced", " constrained", " limiting", " limits", " restrict"], [" constraints", " constraint", " forcing", " constrained", " limiting", " limits", " forced", " restrict"], [" constraints", " constraint", " limiting", " forcing", " constrained", " restrictive", " limits", " limitations"], [" constraints", " constraint", " limiting", " restriction", " restrict", " restrictions", " restricting", " limitations"], [" constraints", " constraint", " restriction", " limiting", " restrict", " restrictive", " restrictions", " restricting"], [" constraint", " constraints", " limiting", " restriction", " restrict", " restricting", " restrictive", "\u9650\u5236\u4e86"], [" constraint", " constraints", " restrict", " restriction", "\u9650\u5236\u4e86", " limiting", " restrictive", " restricting"], [" constraint", " constraints", " restrict", " likely", " restricting", " limiting", "\u9650\u5236\u4e86", " restriction"], ["\u9650\u5236\u4e86", " restrict", " constraint", " exacerb", " restricting", " constraints", " limiting", " forcing"], [" likely", " implies", "\u9650\u5236\u4e86", "\u5012\u903c", " forcing", " constraint", " restrict", " exacerb"], ["\u5012\u903c", "\u9650\u5236\u4e86", " implies", " irrelevant", " ignores", "\u6697\u793a", " constraint", " restrict"], [" exacerb", " ignores", "\u5012\u903c", " ignored", " implies", " irrelevant", " likely", "\u6697\u793a"], [" exacerb", " ignores", "\u8fdb\u4e00\u6b65\u5f3a\u5316", " ignored", " reinforces", " irrelevant", "\u5012\u903c", " implies"], [" ignores", " implies", " exacerb", " suggests", "\u6697\u793a", " ignored", " reinforces", " irrelevant"], [" implies", " exacerb", " ignores", " suggests", " reinforces", "\u6697\u793a", " forcing", " ensures"], ["\u610f\u5473\u7740", " means", " exacerb", " suggests", " implies", " ignores", " reinforces", " ensures"], [" exacerb", " implies", " suggests", " ignores", "\u610f\u5473\u7740", " reinforces", " ensures", "\u6697\u793a"], [" suggests", " exacerb", " implies", " confirms", "\u6697\u793a", " ignores", " ensures", " reinforces"], [" suggests", " exacerb", " implies", " confirms", " ensures", " ignores", "\u6697\u793a", " reinforces"], [" suggests", " confirms", " exacerb", " implies", " kills", " ensures", " ignores", " guarantees"], [" suggests", " confirms", " implies", " exacerb", " kills", " ensures", " guarantees", " means"], [" suggests", " confirms", " implies", " ensures", " guarantees", " means", " kills", " adds"], [" suggests", " confirms", " guarantees", " implies", " kills", " forces", " ensures", " means"]], "p": [[0.6685, 0.1915, 0.0484, 0.0484, 0.0122, 0.0102, 0.0095, 0.0013], [0.323, 0.1729, 0.0194, 0.0151, 0.0133, 0.0118, 0.0056, 0.0038], [0.8694, 0.1038, 0.0141, 0.0052, 0.0018, 0.0015, 0.001, 0.0007], [0.3333, 0.3333, 0.1389, 0.0024, 0.0021, 0.0019, 0.0014, 0.0012], [0.0181, 0.0181, 0.017, 0.011, 0.0097, 0.0086, 0.0076, 0.0076], [0.0082, 0.006, 0.0032, 0.0027, 0.0027, 0.0024, 0.0024, 0.0021], [0.2062, 0.1606, 0.1175, 0.0217, 0.0149, 0.0124, 0.0124, 0.0109], [0.2143, 0.0614, 0.0542, 0.0449, 0.024, 0.0187, 0.0176, 0.01], [0.1522, 0.0814, 0.034, 0.0248, 0.0233, 0.0206, 0.0151, 0.0142], [0.0317, 0.0124, 0.0103, 0.0075, 0.0062, 0.0062, 0.0062, 0.0055], [0.0332, 0.0228, 0.0201, 0.0167, 0.0157, 0.0108, 0.0095, 0.0074], [0.1566, 0.0372, 0.0054, 0.0044, 0.0042, 0.0039, 0.0029, 0.0027], [0.1225, 0.0579, 0.0078, 0.0061, 0.0045, 0.0042, 0.0033, 0.0031], [0.0552, 0.043, 0.0216, 0.0149, 0.014, 0.008, 0.0055, 0.0048], [0.0967, 0.0457, 0.026, 0.0123, 0.0102, 0.0075, 0.0042, 0.0042], [0.054, 0.0187, 0.0137, 0.01, 0.0094, 0.0053, 0.005, 0.005], [0.0624, 0.0123, 0.007, 0.0066, 0.0062, 0.0062, 0.0051, 0.0048], [0.008, 0.0071, 0.0071, 0.0059, 0.0055, 0.0046, 0.0046, 0.0046], [0.0094, 0.0094, 0.0061, 0.0054, 0.0047, 0.0047, 0.0042, 0.0039], [0.0253, 0.0087, 0.0087, 0.0068, 0.0056, 0.0056, 0.0053, 0.0053], [0.0303, 0.0162, 0.0143, 0.0126, 0.0087, 0.0076, 0.0076, 0.0063], [0.0323, 0.0303, 0.0028, 0.0025, 0.0025, 0.0017, 0.0017, 0.0016], [0.1648, 0.0606, 0.0047, 0.0044, 0.0039, 0.0032, 0.003, 0.003], [0.1493, 0.0215, 0.0178, 0.0178, 0.013, 0.0115, 0.009, 0.0079], [0.0478, 0.0165, 0.0121, 0.0107, 0.01, 0.0094, 0.0069, 0.0065], [0.025, 0.0194, 0.0125, 0.0104, 0.0086, 0.0076, 0.0071, 0.0067], [0.0378, 0.0148, 0.0115, 0.0102, 0.0102, 0.0096, 0.0084, 0.0079], [0.0393, 0.0369, 0.0326, 0.0198, 0.0174, 0.0106, 0.0093, 0.0093], [0.0471, 0.0416, 0.0324, 0.0163, 0.0135, 0.0127, 0.0099, 0.0087], [0.0413, 0.0388, 0.0172, 0.0172, 0.0162, 0.0126, 0.0118, 0.0111], [0.032, 0.0282, 0.0249, 0.0249, 0.0182, 0.0161, 0.0151, 0.0142], [0.0258, 0.0243, 0.0228, 0.0201, 0.0167, 0.013, 0.013, 0.013], [0.0364, 0.0342, 0.0221, 0.0195, 0.0195, 0.0183, 0.0143, 0.0143], [0.025, 0.0235, 0.0221, 0.0207, 0.0183, 0.0172, 0.0152, 0.0134], [0.0264, 0.0206, 0.0206, 0.0206, 0.0171, 0.0171, 0.0171, 0.0125], [0.0539, 0.0506, 0.0307, 0.0211, 0.0198, 0.0164, 0.0136, 0.012], [0.0375, 0.0375, 0.0258, 0.0189, 0.0177, 0.0147, 0.013, 0.0114], [0.0363, 0.0283, 0.0194, 0.0172, 0.0161, 0.0161, 0.0151, 0.0142], [0.0578, 0.051, 0.0479, 0.035, 0.0273, 0.0256, 0.0213, 0.0188], [0.0739, 0.0652, 0.0652, 0.0328, 0.0308, 0.0255, 0.0187, 0.0165], [0.129, 0.1005, 0.0887, 0.0446, 0.0347, 0.0326, 0.0288, 0.0239], [0.2362, 0.1623, 0.0597, 0.0597, 0.041, 0.03, 0.0265, 0.022], [0.2751, 0.1668, 0.0542, 0.0478, 0.0372, 0.0329, 0.0329, 0.0256], [0.2624, 0.1592, 0.0752, 0.0456, 0.0402, 0.0402, 0.0355, 0.0355], [0.1996, 0.1761, 0.0734, 0.0648, 0.0648, 0.0505, 0.0505, 0.0393], [0.1503, 0.1171, 0.0805, 0.0627, 0.0627, 0.0488, 0.0431, 0.038], [0.216, 0.1682, 0.0619, 0.0546, 0.0482, 0.0482, 0.0331, 0.0331], [0.1743, 0.1357, 0.0933, 0.0727, 0.0566, 0.0566, 0.0499, 0.0389], [0.1161, 0.1024, 0.0704, 0.0621, 0.0621, 0.0548, 0.0548, 0.0484], [0.1484, 0.131, 0.0794, 0.0701, 0.0619, 0.0482, 0.0425, 0.0425], [0.1483, 0.0899, 0.0618, 0.0546, 0.0481, 0.0425, 0.0375, 0.0331], [0.1555, 0.1372, 0.0943, 0.0505, 0.0505, 0.0446, 0.0393, 0.0347], [0.2222, 0.1731, 0.1527, 0.0562, 0.0496, 0.0341, 0.0265, 0.0265], [0.3215, 0.1183, 0.0921, 0.0717, 0.0493, 0.0299, 0.0233, 0.0233], [0.1707, 0.1707, 0.1173, 0.0806, 0.0711, 0.0711, 0.0432, 0.0381], [0.2016, 0.1385, 0.1223, 0.1079, 0.1079, 0.0654, 0.0578, 0.0309], [0.4994, 0.1431, 0.0596, 0.0465, 0.0282, 0.0282, 0.0282, 0.0219], [0.6209, 0.157, 0.051, 0.0397, 0.0309, 0.0212, 0.0114, 0.01], [0.4732, 0.1356, 0.1196, 0.0932, 0.0303, 0.0236, 0.0162, 0.0162], [0.4187, 0.154, 0.0934, 0.0728, 0.0567, 0.0389, 0.0236, 0.0143], [0.3365, 0.2041, 0.0751, 0.0663, 0.0516, 0.0516, 0.0402, 0.0202], [0.2838, 0.221, 0.0813, 0.0813, 0.0559, 0.0339, 0.0339, 0.0299], [0.2114, 0.1282, 0.0999, 0.0686, 0.0606, 0.0472, 0.0443, 0.0443]], "ranks": {"Kotlin": [91286, 76820, 66866, 2293, 5242, 7102, 5127, 10353, 9354, 35053, 23255, 10285, 13145, 18936, 41170, 6730, 4376, 2813, 4039, 13081, 40624, 12327, 23474, 74348, 28097, 11609, 19634, 43274, 72225, 39309, 48369, 42836, 63753, 28294, 34160, 31332, 41767, 29344, 36835, 25599, 43705, 44119, 33336, 34332, 33981, 104586, 78438, 94604, 102591, 83795, 51941, 29460, 37897, 23035, 28597, 16173, 10730, 11662, 8533, 5331, 4662, 4319, 5938]}}, {"pos": 440, "top": [[".", ",", "\u2013", " \u2013", "\u00a0", ";", "\u2026.", "\u00a0\u00a0"], [" \u2013", ".", "\u2013", ",", ";", "\u2013and", " \u200b\u200b", ".["], [",", "\u2013", ".", ";", " \u2013", ".\u2013", "\u2026", "\u2013and"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "----------</", " ;;^", "-------------</", " milfs", " Strec", " \u041a\u0440\u0430\u0441\u0438", " Blowjob"], [".", ",", ".@", " \u200b\u200b", "\u00a0", ":", "\u00a0\u00a0", "&("], [",", ".", "\u00a0", " \u200b\u200b", ":", "<|quad_end|>", "\u00a0\u00a0", ";"], ["\u00a0", ".", ",", "\u00a0\u00a0", ":", "\u00a0\u00a0\u00a0\u00a0", "  \n", "\u00a0\u00a0\u00a0"], ["<|quad_end|>", "\uaecf", "ibaldi", "\u532a\u6d45", "\u6027\u5730", "iland", "ness", "aldi"], ["\u00a0", "<|quad_end|>", ".", "!.", ".&", " \n    \n", "\u532a\u6d45", "  \n    \n"], ["\u00a0", "\u76f8\u8f83", "\u0436\u0451", ",", " \u0442\u0440\u0451", "\u2013and", "<|quad_end|>", "\uaecf"], ["\u00a0", "\u2013and", "\u2013", ",", " arguably", " albeit", "\u76f8\u8f83", " though"], [" arguably", "\u826f\u673a", "\u611f\u5341\u8db3", "\u8ba4\u8ba4\u771f", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "ropy", "\u5df2\u7136", " albeit"], [" arguably", " impactful", "\u582a\u6bd4", " pricey", " upfront", " notably", " leveraging", " albeit"], [" arguably", " notably", " albeit", " impactful", " pricey", "\u5df2\u7136", " leveraging", " upfront"], [" arguably", " albeit", " notably", " impactful", " akin", " outright", " incentiv", " effortlessly"], [" arguably", " impactful", " notably", " leveraging", " pricey", " anyways", "\u51ed\u501f\u7740", " incentiv"], [" arguably", " notably", " effortlessly", " pricey", " overwhelmingly", " outright", " leveraging", " hefty"], [" arguably", " tweaking", " effortlessly", " looming", " hefty", " outright", " notably", " savvy"], [" arguably", " incredibly", " effortlessly", " notably", " ultimately", " outright", " looming", " savvy"], [" arguably", " hugely", " wildly", " notably", " truly", " incredibly", " ultimately", " even"], [" arguably", " hugely", " ultimately", " notably", " genuinely", " just", " though", " truly"], [" arguably", " hugely", " incredibly", " notably", " looming", " ultimately", " wildly", " outright"], [" arguably", " hugely", " notably", " ultimately", " incredibly", " just", " truly", " even"], [" arguably", " notably", " ultimately", " much", " just", " even", " hugely", " truly"], [" arguably", " hugely", " notably", " genuinely", " ultimately", " truly", " though", " utterly"], [" arguably", " hugely", " notably", " incredibly", " looming", " wildly", " ultimately", " truly"], [" arguably", " notably", " ultimately", " hugely", " looming", " wildly", " incredibly", " ironically"], [" arguably", " ultimately", " notably", " hugely", " much", " wildly", " truly", " incredibly"], [" arguably", " ultimately", " incredibly", " hugely", " heavily", " notably", " wildly", " looming"], [" arguably", " ultimately", " incredibly", " heavily", " notably", " hugely", " much", " even"], [" arguably", " incredibly", " even", " much", " ultimately", " just", " heavily", " too"], [" just", " arguably", " much", " incredibly", " even", " heavily", " too", " ultimately"], [" arguably", " ultimately", " even", " too", " incredibly", " much", " just", " surprisingly"], [" arguably", " incredibly", " notoriously", " crucial", " surprisingly", " heavily", " strategically", " hugely"], [" notoriously", " incredibly", " arguably", " crucial", " surprisingly", " hugely", " relentlessly", " relentless"], [" notoriously", " incredibly", " arguably", " ironically", " surprisingly", " crucial", " unlikely", " horrific"], [" notoriously", " cheap", " ironically", " horrific", " worse", " flawed", " incredibly", " surprisingly"], [" cheap", " notoriously", " horrific", " ironically", " flawed", " worse", " dangerously", " unlikely"], [" cheap", " notoriously", " flawed", " horrific", " worse", " ironically", " dangerously", " ridiculous"], [" cheap", " ridiculous", " dangerously", " flawed", " irrelevant", " absurd", " horrific", " ironically"], [" cheap", " ridiculous", " absurd", " flawed", " irrelevant", " simplistic", " dangerously", " ironically"], [" cheap", " absurd", " ironically", " flawed", " dangerously", " crippling", " simplistic", " ridiculous"], [" cheap", " flawed", " absurd", " unrealistic", " ironically", " crippling", " problematic", " dangerously"], [" cheap", " dangerously", " critical", " absurd", " ironically", " crucial", " worse", " crippling"], [" cheap", " dangerously", " critical", " worse", " ironically", " trivial", " absurd", " crippling"], [" cheap", " irrelevant", " trivial", " dangerously", " negligible", " worse", " ironically", " destabil"], [" irrelevant", " negligible", " cheap", " trivial", " dangerously", " ignored", " worse", " ironically"], [" irrelevant", " trivial", " negligible", " cheap", " ignored", " insignificant", " ironically", " surprisingly"], [" irrelevant", " ironically", " trivial", " negligible", " harmless", " ignored", " surprisingly", " cheap"], [" irrelevant", " ironically", " surprisingly", " harmless", " ignored", " oblivious", " negligible", " trivial"], [" irrelevant", "\u65e0\u5173", " harmless", "\u7121\u95dc", " negligible", " ignored", "ignored", "\u5fae\u4e0d\u8db3\u9053"], [" irrelevant", "\u65e0\u5173", " harmless", " oblivious", "\u7121\u95dc", " negligible", "\u6b21\u8981", "ignored"], [" irrelevant", "\u65e0\u5173", " negligible", " ironically", " harmless", " oblivious", " ironic", " ignored"], [" irrelevant", " distracting", " harmless", "\u65e0\u5173", " ironically", " deceptive", " negligible", " distraction"], [" irrelevant", " actually", "\u65e0\u5173", " ironic", " ironically", " distracting", " harmless", " negligible"], [" irrelevant", "\u65e0\u5173", " harmless", " ironic", " negligible", " distracting", " actually", " ironically"], [" irrelevant", "\u65e0\u5173", " negligible", " ironic", " distracting", " harmless", " distraction", " icing"], [" irrelevant", " bait", " distracting", "\u65e0\u5173", " distraction", " negligible", " harmless", " ironic"], [" irrelevant", " bait", " distracting", " distraction", " negligible", " harmless", " actually", " ironic"], [" irrelevant", " bait", " icing", " distracting", " ironic", " actually", " distraction", " negligible"], [" irrelevant", " fine", " bait", " red", " actually", " distracting", " icing", " ironic"], [" irrelevant", " actually", " ironic", " fine", " irre", " icing", " bait", " Ir"], [" irrelevant", " actually", " fine", " the", " ironic", " a", " negligible", " ironically"]], "p": [[0.6869, 0.2864, 0.0067, 0.0059, 0.0052, 0.0052, 0.0005, 0.0004], [0.2525, 0.1532, 0.1439, 0.0929, 0.025, 0.0104, 0.0052, 0.0034], [0.6059, 0.2229, 0.1532, 0.0052, 0.0028, 0.0021, 0.0018, 0.0017], [0.011, 0.0063, 0.0046, 0.0038, 0.0036, 0.0023, 0.0022, 0.002], [0.0913, 0.0628, 0.007, 0.007, 0.0058, 0.0043, 0.0035, 0.0023], [0.2209, 0.1259, 0.0361, 0.0097, 0.0067, 0.0055, 0.0055, 0.004], [0.4581, 0.0902, 0.0178, 0.0115, 0.007, 0.0061, 0.0054, 0.0045], [0.0193, 0.0026, 0.0026, 0.0023, 0.0023, 0.0022, 0.002, 0.0015], [0.0905, 0.0122, 0.0115, 0.0045, 0.004, 0.0035, 0.0033, 0.0027], [0.0077, 0.0028, 0.0022, 0.0021, 0.0016, 0.0016, 0.0015, 0.0015], [0.5358, 0.0111, 0.0104, 0.0098, 0.0049, 0.0049, 0.0046, 0.0038], [0.0038, 0.0026, 0.0021, 0.002, 0.0019, 0.0017, 0.0015, 0.0013], [0.0073, 0.0054, 0.0037, 0.0033, 0.0027, 0.0027, 0.0022, 0.0022], [0.0083, 0.0051, 0.0051, 0.0051, 0.0024, 0.0024, 0.0021, 0.0021], [0.0224, 0.0136, 0.006, 0.006, 0.0047, 0.0044, 0.0037, 0.0034], [0.0108, 0.0079, 0.0045, 0.0042, 0.0035, 0.0035, 0.0029, 0.0029], [0.0868, 0.0104, 0.0076, 0.0063, 0.0052, 0.0052, 0.0052, 0.0049], [0.0754, 0.009, 0.0079, 0.0075, 0.0075, 0.007, 0.0066, 0.0066], [0.1533, 0.0118, 0.0086, 0.0086, 0.0086, 0.0076, 0.0072, 0.0067], [0.0977, 0.015, 0.0124, 0.0124, 0.0124, 0.0117, 0.0117, 0.0117], [0.0487, 0.0168, 0.0131, 0.0131, 0.0123, 0.0123, 0.0109, 0.0096], [0.0388, 0.0118, 0.0111, 0.0081, 0.0072, 0.0067, 0.0063, 0.0053], [0.0531, 0.0195, 0.0162, 0.0143, 0.0126, 0.0111, 0.0111, 0.0105], [0.0289, 0.024, 0.0199, 0.0176, 0.0155, 0.0137, 0.0128, 0.0106], [0.0341, 0.025, 0.0151, 0.0104, 0.0063, 0.0063, 0.0063, 0.0063], [0.0438, 0.0194, 0.0142, 0.0098, 0.0076, 0.0076, 0.0063, 0.0046], [0.0475, 0.0186, 0.0128, 0.012, 0.0094, 0.0083, 0.0083, 0.0053], [0.0746, 0.0228, 0.0201, 0.0156, 0.013, 0.0108, 0.0108, 0.0108], [0.1113, 0.0281, 0.0206, 0.0171, 0.0151, 0.0151, 0.0133, 0.011], [0.1342, 0.0319, 0.0299, 0.0264, 0.0206, 0.0182, 0.0171, 0.016], [0.0828, 0.0391, 0.0324, 0.0286, 0.0286, 0.0237, 0.0237, 0.0185], [0.0333, 0.0313, 0.0313, 0.0294, 0.0276, 0.0244, 0.0229, 0.0202], [0.0352, 0.0274, 0.0258, 0.0258, 0.0258, 0.0189, 0.0177, 0.0177], [0.045, 0.035, 0.0256, 0.0256, 0.0226, 0.0146, 0.0137, 0.0137], [0.0543, 0.045, 0.0373, 0.0309, 0.0166, 0.0166, 0.0146, 0.0114], [0.0575, 0.0327, 0.0255, 0.0225, 0.0211, 0.0175, 0.0175, 0.0155], [0.0366, 0.0344, 0.0285, 0.0222, 0.0196, 0.0153, 0.0143, 0.0127], [0.0597, 0.03, 0.0182, 0.0182, 0.0171, 0.0142, 0.011, 0.0104], [0.0722, 0.022, 0.0207, 0.0194, 0.0171, 0.0171, 0.0171, 0.0151], [0.1288, 0.021, 0.021, 0.0186, 0.0186, 0.0186, 0.0154, 0.0145], [0.2023, 0.0291, 0.0242, 0.0166, 0.0166, 0.0166, 0.0166, 0.0114], [0.1211, 0.0239, 0.021, 0.0198, 0.0175, 0.0164, 0.0164, 0.0164], [0.0635, 0.03, 0.0265, 0.0219, 0.0194, 0.0151, 0.0133, 0.0133], [0.0575, 0.0289, 0.0272, 0.0255, 0.024, 0.0212, 0.0212, 0.0165], [0.0784, 0.0394, 0.0327, 0.0271, 0.0271, 0.0211, 0.0186, 0.0136], [0.0791, 0.0579, 0.0423, 0.0351, 0.0257, 0.0241, 0.0213, 0.0166], [0.1238, 0.1238, 0.0485, 0.0456, 0.0355, 0.0244, 0.0244, 0.0229], [0.3694, 0.1058, 0.0642, 0.0567, 0.0268, 0.0208, 0.0196, 0.0135], [0.7776, 0.0207, 0.0183, 0.0126, 0.0111, 0.0111, 0.0086, 0.0081], [0.7589, 0.0294, 0.026, 0.026, 0.0158, 0.0066, 0.0062, 0.0058], [0.9423, 0.0105, 0.0072, 0.0032, 0.003, 0.0014, 0.0013, 0.0013], [0.9534, 0.0073, 0.0064, 0.0021, 0.002, 0.0017, 0.0017, 0.0017], [0.9753, 0.0074, 0.0031, 0.0019, 0.0019, 0.001, 0.0009, 0.0009], [0.9723, 0.0031, 0.0031, 0.0027, 0.0019, 0.0017, 0.0015, 0.0015], [0.948, 0.0197, 0.0044, 0.0044, 0.0039, 0.0027, 0.0027, 0.0023], [0.9959, 0.0013, 0.0006, 0.0003, 0.0003, 0.0001, 0.0001, 0.0001], [0.99, 0.0017, 0.001, 0.001, 0.0006, 0.0006, 0.0005, 0.0004], [0.971, 0.0031, 0.0024, 0.0024, 0.0021, 0.0018, 0.0014, 0.001], [0.9563, 0.0064, 0.005, 0.0034, 0.003, 0.003, 0.0013, 0.0012], [0.9403, 0.0118, 0.0053, 0.0049, 0.003, 0.0028, 0.0028, 0.0026], [0.922, 0.0116, 0.008, 0.0066, 0.0048, 0.0045, 0.0043, 0.0031], [0.8609, 0.0216, 0.0168, 0.0115, 0.0096, 0.0054, 0.0054, 0.0054], [0.6867, 0.053, 0.0497, 0.0302, 0.0266, 0.0118, 0.0076, 0.0076]], "ranks": {"Kotlin": [240421, 224619, 197267, 55688, 94511, 161640, 194600, 218634, 198415, 204237, 196726, 125171, 155986, 171835, 176569, 71854, 119251, 133218, 140848, 206879, 224962, 198058, 214763, 234031, 229231, 197680, 183681, 208626, 201344, 187606, 178623, 182007, 213271, 163226, 155135, 155903, 148722, 121372, 125012, 116450, 167733, 160386, 112060, 103197, 106796, 172502, 137255, 142535, 146651, 147600, 118473, 99125, 98379, 72634, 78261, 51290, 46462, 55960, 80674, 56183, 29529, 40391, 31318]}}, {"pos": 441, "top": [[".", ",", " \u2013", "\u2013", ";", "\u00a0", " ", "\u00a0\u00a0"], [" \u2013", "\u2013", ",", ".", ";", " ", "\u2013and", "  \n\n"], [",", ".", "\u2013", " \u2013", "\u2026", ";", "\u2026.", "\u2026.."], [" milfs", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "-------------</", "----------</", " Shemale", "aruhi", " Blowjob", " ;;^"], [".", ",", "\u00a0\u00a0", ".@", ":", " ", " CIF", ":@"], [".", " \u200b\u200b", "\u00a0\u00a0", ",", "\u2026.", "\u2026..", ":", "\u00a0\u00a0\u00a0\u00a0"], ["\u3002", ".", "\uff1a", "\u00a0\u00a0", "\u00a0\u00a0\u00a0\u00a0", "\uff01", "\uff1f", "  \n"], ["   \n", "-CS", "  \r\n", "   \r\n", "\u54e5\u534e", "ighbor", "       \n", "WISE"], [".", ":.", "\u2026..", "\u2026.", "!.", "   \n", "   \n\n", "!\u201d."], [",", " \u00ad", "\u00a0\u00a0", "\u00ad", "\u00a0", "\u00a0\u00a0\u00a0", "\u00adt", "\u516c\u53f7"], ["\u00a0", ",", ".", "\u00a0\u00a0", " \u00ad", "\u00ad", "\u2013", "\u00a0\u00a0\u00a0"], [" impactful", " estrateg", "\u524d\u884c\u7684", "UMO", "\u5f3a\u9669", "\u54e5\u534e", " \u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435", "\u627e\u6765"], [" impactful", "htag", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "ewire", "\u5927\u8ba1", "iphery", " influencer", " estrateg"], [" impactful", "\u5f15\u9886\u4f5c\u7528", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\u524d\u884c\u7684", "\u54e5\u534e", " aporte", "\u547d\u8fd0\u5171\u540c\u4f53", " estrateg"], [" impactful", " backstory", " estrateg", " showcased", " vibe", " showcase", "\u5f15\u9886\u4f5c\u7528", " standout"], [" impactful", " backstory", " overarching", " standout", "\u3079\u304f", " savvy", "\u627e\u5bfb", "\u5f15\u9886\u4f5c\u7528"], [" impactful", " standout", " overarching", " savvy", " backstory", " vibe", " leveraging", " showcase"], [" savvy", " biggest", " impactful", " standout", " backstory", " bigger", " tweaking", "\u5206\u5206\u949f"], [" savvy", " freaking", " biggest", " impactful", "\u91cd\u4e2d\u4e4b\u91cd", " pricey", " hardest", "-esque"], [" biggest", " incredibly", " freaking", " tweaking", " bigger", "\u91cd\u4e2d\u4e4b\u91cd", " savvy", " pricey"], [" hugely", " tweaking", " biggest", " incredibly", " truly", " overarching", "\u91cc\u5934", " savvy"], [" biggest", " ;;^", " bigger", " hardest", " toughest", "\u91cd\u4e2d\u4e4b\u91cd", " freaking", " tougher"], [" biggest", " bigger", " hardest", " ;;^", " hugely", " toughest", " looming", " truly"], [" biggest", " hugely", " looming", " truly", " arguably", " ultimately", " bigger", " incredibly"], [" hugely", " looming", " truly", " biggest", " arguably", " overarching", " myriad", " utterly"], [" biggest", " hugely", " looming", " impactful", " incredibly", " hardest", " pricey", " toughest"], [" looming", " biggest", " crucial", " incredibly", " hugely", " arguably", " truly", " relentless"], [" arguably", " truly", " ultimately", " looming", " hugely", " incredibly", " wildly", " crucial"], [" arguably", " ultimately", " looming", " truly", " incredibly", " hugely", " crucial", " wildly"], [" arguably", " crucial", " ultimately", " looming", " truly", " incredibly", " hugely", " key"], [" ultimately", " truly", " incredibly", " crucial", " arguably", " huge", " key", " looming"], [" truly", " crucial", " incredibly", " critical", " ultimately", " key", " huge", " risk"], [" truly", " ultimately", " crucial", " critical", " incredibly", " arguably", " key", " huge"], [" crucial", " incredibly", " truly", " relentless", " critical", " huge", " hardest", " looming"], [" crucial", " relentless", " incredibly", " relentlessly", " truly", " horrific", " arguably", " looming"], [" relentless", " crucial", " incredibly", " relentlessly", " worse", " horrific", " worst", " desperate"], [" worst", " worse", " crucial", " horrific", " desperate", " desperation", " relentless", " cheap"], [" cheap", " dangerously", " horrific", " crucial", " worse", " worst", " desperation", " desperate"], [" worst", " dangerously", " worse", " crucial", " desperation", " desperate", " horrific", " disastr"], [" dangerously", " worst", " worse", " crucial", " catastrophic", " risky", " desperation", " horrific"], [" dangerously", " crucial", " worst", " worse", " catastrophic", " risky", " fatal", " cheap"], [" catastrophic", " dangerously", " destabil", " crucial", " fatal", " worse", " desperation", " worst"], [" destabil", " crucial", " worse", " catastrophic", " desperation", " worst", " critical", " doom"], [" worse", " destabil", " crucial", " worst", " desperation", " doom", " critical", " catastrophic"], [" worse", " destabil", " worst", " crucial", " desperation", " critical", " hardest", " fatal"], [" worse", " destabil", " worst", " crucial", " desperation", " dangerously", " nightmare", " critical"], [" worse", " destabil", " crucial", " worst", " nightmare", " dangerously", " hardest", " doom"], [" destabil", " worse", " worst", " crucial", " doom", " hardest", " hidden", " nightmare"], [" destabil", " hardest", " sabotage", " weakest", " ironically", " sabot", " hidden", " worse"], ["\u5012\u903c", " destabil", " sabotage", " culprit", " ironic", " unintended", " sabot", " ironically"], [" sabotage", " hardest", " loophole", "\u6700\u96be", " weakest", "\u5012\u903c", " culprit", " sabot"], [" sabotage", " culprit", " loophole", " hardest", " weakest", " ironic", "\u70b9\u775b", " sabot"], [" weakest", " sabotage", " hidden", " ironic", " culprit", " stealth", " hardest", " sabot"], [" hidden", " stealth", " quietly", "\u9690\u5f62", ":hidden", "\u6084\u6084", " silently", "\u6084\u7136"], [" hidden", " stealth", "\u9690\u5f62", " quietly", " weakest", "hidden", "\u9690\u6027", "\u9690\u85cf"], [" killer", " hidden", " stealth", " kicker", " least", "\u9690\u5f62", " trigger", " weakest"], [" killer", " iceberg", " hidden", " icing", " stealth", " kicker", " silent", "\u9690\u5f62"], [" least", "Least", "least", " killer", " Least", " poison", " weakest", " iceberg"], [" silent", " least", " killer", "Least", "least", " hidden", " Least", " quiet"], [" silent", " killer", " least", " quiet", " hidden", " kill", " stealth", " wildcard"], [" silent", " killer", " least", " quiet", " hidden", " cherry", " iceberg", " ticking"], [" silent", " killer", " least", " iceberg", " quiet", " cherry", " nail", " ticking"], [" silent", " least", " killer", " quiet", " cherry", " iceberg", " trap", " dagger"]], "p": [[0.7718, 0.2211, 0.0025, 0.0022, 0.0012, 0.0003, 0.0002, 0.0002], [0.5209, 0.2788, 0.1026, 0.0705, 0.0054, 0.0021, 0.002, 0.001], [0.3925, 0.3057, 0.2698, 0.0221, 0.003, 0.0023, 0.0014, 0.0009], [0.0076, 0.0043, 0.0041, 0.0036, 0.0034, 0.0023, 0.0023, 0.0022], [0.1377, 0.0611, 0.0225, 0.0088, 0.0064, 0.0042, 0.0033, 0.0031], [0.185, 0.0388, 0.0388, 0.025, 0.0143, 0.0126, 0.0063, 0.0038], [0.0525, 0.0384, 0.0299, 0.0264, 0.0206, 0.015, 0.0133, 0.0125], [0.0091, 0.0046, 0.0046, 0.0043, 0.0025, 0.0017, 0.0014, 0.0014], [0.3069, 0.0184, 0.0119, 0.0093, 0.0087, 0.0082, 0.0082, 0.0068], [0.0482, 0.0108, 0.0108, 0.007, 0.0048, 0.0045, 0.0027, 0.0026], [0.273, 0.0782, 0.0538, 0.0369, 0.0369, 0.012, 0.012, 0.0088], [0.0021, 0.0018, 0.0014, 0.0011, 0.0011, 0.001, 0.0009, 0.0008], [0.0068, 0.0018, 0.0016, 0.0015, 0.0015, 0.0014, 0.0013, 0.0012], [0.0093, 0.0023, 0.0021, 0.0015, 0.0013, 0.001, 0.001, 0.0009], [0.0214, 0.0033, 0.0024, 0.0023, 0.0021, 0.002, 0.0015, 0.0015], [0.0084, 0.0023, 0.002, 0.0016, 0.0016, 0.0016, 0.0015, 0.0015], [0.0277, 0.0109, 0.0085, 0.007, 0.0055, 0.0048, 0.0038, 0.0035], [0.0122, 0.007, 0.007, 0.0045, 0.0037, 0.0037, 0.0033, 0.0031], [0.0063, 0.0055, 0.0052, 0.0052, 0.0032, 0.0028, 0.0026, 0.0025], [0.0078, 0.0061, 0.0047, 0.0032, 0.0032, 0.003, 0.003, 0.0027], [0.0066, 0.0062, 0.0062, 0.0055, 0.0043, 0.0038, 0.0033, 0.0033], [0.0096, 0.007, 0.0027, 0.0024, 0.0021, 0.0021, 0.0017, 0.0014], [0.0151, 0.0046, 0.0038, 0.0036, 0.0034, 0.0032, 0.0028, 0.0023], [0.0051, 0.0048, 0.0045, 0.004, 0.0026, 0.0024, 0.0023, 0.0019], [0.0184, 0.0077, 0.0064, 0.0053, 0.0047, 0.0034, 0.0034, 0.0034], [0.0181, 0.0086, 0.0063, 0.0052, 0.0049, 0.0046, 0.0043, 0.0043], [0.0119, 0.0111, 0.006, 0.0053, 0.0053, 0.0049, 0.0039, 0.0036], [0.0256, 0.0241, 0.0165, 0.0146, 0.0129, 0.0121, 0.0073, 0.0073], [0.0259, 0.0189, 0.0178, 0.0157, 0.013, 0.013, 0.0122, 0.0061], [0.0288, 0.0224, 0.0198, 0.0198, 0.0175, 0.0164, 0.01, 0.0088], [0.0274, 0.0227, 0.0227, 0.0177, 0.0129, 0.0122, 0.0114, 0.0107], [0.0228, 0.0228, 0.0189, 0.0189, 0.0178, 0.0157, 0.0108, 0.0095], [0.0258, 0.0258, 0.0201, 0.0188, 0.0177, 0.0107, 0.0101, 0.0084], [0.0727, 0.0251, 0.0236, 0.0196, 0.0152, 0.0119, 0.0105, 0.0098], [0.0643, 0.0304, 0.0304, 0.0173, 0.0173, 0.0162, 0.0127, 0.0127], [0.0412, 0.0321, 0.0266, 0.0221, 0.0221, 0.0221, 0.0221, 0.0195], [0.0437, 0.0437, 0.034, 0.03, 0.022, 0.0194, 0.0171, 0.0151], [0.0278, 0.0261, 0.0261, 0.0245, 0.023, 0.023, 0.0216, 0.0216], [0.0446, 0.0347, 0.0306, 0.0288, 0.0288, 0.0239, 0.0198, 0.0175], [0.0529, 0.0341, 0.0321, 0.025, 0.0235, 0.022, 0.0207, 0.0195], [0.0386, 0.0386, 0.0363, 0.032, 0.0301, 0.0234, 0.0234, 0.0207], [0.0565, 0.0322, 0.0322, 0.0322, 0.0236, 0.0236, 0.0208, 0.0208], [0.0534, 0.0534, 0.0443, 0.0324, 0.0252, 0.0196, 0.0163, 0.0127], [0.095, 0.0613, 0.0509, 0.0449, 0.029, 0.0272, 0.0212, 0.0199], [0.1282, 0.0502, 0.0367, 0.0253, 0.0237, 0.0197, 0.0144, 0.0144], [0.104, 0.0977, 0.0359, 0.0317, 0.0181, 0.0132, 0.0132, 0.0124], [0.1254, 0.1107, 0.0592, 0.0247, 0.0181, 0.017, 0.0159, 0.0141], [0.0911, 0.0755, 0.0245, 0.0216, 0.0216, 0.0191, 0.0168, 0.0158], [0.1042, 0.0408, 0.0263, 0.0247, 0.0232, 0.0218, 0.0193, 0.017], [0.0458, 0.0356, 0.0335, 0.023, 0.0216, 0.0203, 0.0203, 0.0179], [0.0527, 0.0495, 0.032, 0.0282, 0.0265, 0.0249, 0.022, 0.0206], [0.0461, 0.0338, 0.028, 0.0247, 0.0232, 0.015, 0.0141, 0.0141], [0.0514, 0.0453, 0.0353, 0.0293, 0.0258, 0.0201, 0.0189, 0.0167], [0.3148, 0.1487, 0.0902, 0.0426, 0.0243, 0.0214, 0.0167, 0.0147], [0.3276, 0.1366, 0.0443, 0.0416, 0.0324, 0.0163, 0.0153, 0.0144], [0.2601, 0.07, 0.0545, 0.0481, 0.0399, 0.0331, 0.0258, 0.0227], [0.0879, 0.0643, 0.0604, 0.0604, 0.0344, 0.0237, 0.0222, 0.0184], [0.3605, 0.1503, 0.0626, 0.0488, 0.0335, 0.0315, 0.0158, 0.0131], [0.2523, 0.2227, 0.0819, 0.0638, 0.0321, 0.0283, 0.0266, 0.0172], [0.4272, 0.2018, 0.0953, 0.0257, 0.0241, 0.0146, 0.01, 0.0094], [0.3798, 0.1794, 0.0847, 0.0353, 0.0228, 0.0157, 0.0147, 0.0147], [0.212, 0.1208, 0.1066, 0.0417, 0.0368, 0.0346, 0.0305, 0.0185], [0.296, 0.1234, 0.0748, 0.0514, 0.0332, 0.0312, 0.0259, 0.0243]], "ranks": {"Kotlin": [211011, 212461, 178658, 18422, 31736, 85088, 174969, 215758, 194130, 235105, 231933, 150101, 135966, 150480, 200785, 194451, 157091, 164331, 179400, 198844, 230832, 205906, 217139, 238409, 232771, 176790, 190387, 218030, 221386, 206747, 190913, 193903, 225515, 166030, 161283, 152103, 149782, 132164, 150491, 140520, 146519, 147335, 89297, 76634, 97100, 148643, 97273, 113981, 114577, 117178, 95516, 68919, 71840, 46495, 56775, 19285, 22159, 25934, 20479, 8128, 6356, 12326, 9487]}}, {"pos": 442, "top": [["s", "a", ",", ".", "\u2026.", ",.", "\u00a0\u00a0", "!"], ["s", "sburg", "\u044b", "sstr", "\u0627\u062a", "sider", "sium", "scape"], ["s", ",", "\u2013", "\u2026.", "\u2026,", "\u2026", "a", "!,"], ["---</", "sburg", "sache", "sium", "\u52a0\u62ff\u5927", "s", " \u041a\u0440\u0430\u0441\u0438", " ``("], ["s", "a", "ing", "######", "===\"", "\u0627\u062a", "!,", "sburg"], ["s", "sburg", "a", "ing", "sor", "\u064a\u064b\u0627", "\u0627\u062a", "s\u00e4"], ["s", "sburg", "a", "sor", "aft", "itude", "\u0430", "s\u00e4"], ["s", "sburg", "-\u00eatre", "itude", "ablish", "s\u00e4", "sium", "ing"], ["s", "sburg", "######", "\u00e7e", "ing", " #%", "-\u00eatre", " _."], ["s", "sburg", "ablish", "itude", "\u00e7e", "-\u00eatre", "aft", "ing"], ["s", "a", "sburg", "aft", "ing", "itude", "_-", "\u00e7e"], ["s", "sburg", "_-", "aft", "itude", "ablish", "-\u00eatre", " #%"], ["sburg", "s", "itude", "verity", "ablish", "_-", "iveness", " entirety"], ["sburg", " tini", "aft", "s", " entirety", "verity", "itude", "-\u00eatre"], [" tini", " entirety", "aft", "sburg", "s", "ablish", "itude", " havoc"], [" entirety", "aft", "sburg", " tini", " flavorful", "s", "verity", " savory"], ["s", " entirety", " tini", "sburg", "verity", "aft", " standout", "sste"], [" tini", "sburg", "verity", " entirety", "s", "-\u00eatre", "olvable", "aft"], ["sburg", " tini", "sium", "---</", "verity", "\u00a3o", " #%", "sste"], [" tini", "sburg", " entirety", " %+", "\u548c\u6700", " #%", "aft", "\u00a3o"], ["sburg", " tini", " #%", "\u548c\u6700", " %+", "verity", "Least", "\u82e5\u975e"], ["sium", "tiful", "\u503c\u5f97\u671f\u5f85", "sburg", "verity", "\u53ef\u8a00", "voire", "\u548c\u6700"], [" ``", "\u53ef\u8a00", "\u80fd\u591f\u505a\u5230", "\u503c\u5f97\u671f\u5f85", "\u5f97\u4e3b", "\u548c\u6700", " imaginable", "\u6027\u4ef7"], [" ``", " notably", " least", "\u80fd\u591f\u505a\u5230", " imaginable", "\u7ffc\u7ffc", " tini", " entirety"], ["\u80fd\u591f\u505a\u5230", " tini", "\u548c\u6700", "soever", "Least", " imaginable", "\u53ef\u8a00", "\u7ffc\u7ffc"], ["\u53ef\u8a00", "\u80fd\u591f\u505a\u5230", " imaginable", "\u548c\u6700", "\u7ffc\u7ffc", "\u503c\u5f97\u671f\u5f85", "icularly", "sium"], [" imaginable", "\u7ffc\u7ffc", "\u53ef\u8a00", "\u4e4e\u5176", "iveness", "\u503c\u5f97\u671f\u5f85", "\u5b9e\u60e0", "\u90e8\u7ea7"], [" favor", " arguably", " least", " endeavor", " imaginable", " perhaps", " notably", " aside"], [" favor", " arguably", "\u7ffc\u7ffc", " trivial", "\u4e4e\u5176", " least", " imaginable", "\u503c\u5f97\u671f\u5f85"], [" trivial", " arguably", " least", " cheapest", " tini", " imaginable", " negligible", " rarity"], [" least", " arguably", " favor", " likely", " trivial", " barely", " cost", " little"], [" least", " arguably", " little", " trivial", " just", " likely", " -", " cost"], [" least", " trivial", " perhaps", " just", " -", " arguably", " even", " little"], [" trivial", " negligible", " least", " truly", " predictable", " arguably", " manageable", "\u5fae\u4e0d\u8db3\u9053"], [" least", " arguably", " trivial", " tini", "\u2014but", "\u90a3\u70b9", " truly", " hardest"], [" least", "\u2014but", "\u6700\u4e0d", "Least", " tini", " worse", " trivial", "\u90a3\u70b9"], [" least", "\u6700\u4e0d", " worse", " trivial", "Least", "\u5fae\u4e0d\u8db3", "\u5fae\u4e0d\u8db3\u9053", " weakest"], [" least", "\u6700\u4e0d", " worse", "Least", " trivial", " weakest", "\u5fae\u4e0d\u8db3\u9053", " crappy"], [" least", "\u6700\u4e0d", " trivial", "Least", "\u5fae\u4e0d\u8db3\u9053", " weakest", " negligible", " worrying"], [" worries", " worrying", " worry", " problematic", " least", "\u6700\u4e0d", "Least", " trivial"], [" worries", " worrying", " problematic", " worry", " problems", " least", " concerns", " trivial"], [" worries", " worrying", " problems", " worry", " problematic", " concerns", " concern", " least"], [" worries", " worrying", " problems", " problematic", " worry", " concern", " concerns", " least"], [" worries", " problems", " least", " worrying", " Least", " problematic", " weakest", " worry"], [" least", " problems", " worries", " worrying", " weakest", " trivial", " problem", " negligible"], [" least", " worries", " worrying", " problems", " weakest", " trivial", " Least", " negligible"], [" least", " Least", " weakest", " negligible", " insignificant", " worrying", " trivial", "Least"], [" least", " worries", " problems", " worrying", " negligible", " insignificant", " trivial", " Least"], [" worries", " worrying", " worry", " problems", " least", "akest", " trivial", " problem"], [" worries", " worrying", ";**", " worry", "\u4e4b\u5fe7", "akest", "Least", " problems"], [" worries", ";**", " worrying", " \u043f\u0440\u043e\u0431\u043b\u0435\u043c", " problematic", "problem", "\u51fa\u95ee\u9898", " problem"], [" worries", " problematic", ";**", " \u043f\u0440\u043e\u0431\u043b\u0435\u043c", " worrying", "problem", "\u51fa\u95ee\u9898", " problem"], [" worries", " problematic", "problem", " worrying", " problem", " worry", " \u043f\u0440\u043e\u0431\u043b\u0435\u043c", " problems"], [" worries", "problem", " worry", " worrying", " problematic", " problem", " concern", " \u043f\u0440\u043e\u0431\u043b\u0435\u043c"], ["problem", " problem", " problems", " problematic", "/problem", "_problem", "\u95ee\u9898", " \u043f\u0440\u043e\u0431\u043b\u0435\u043c"], ["problem", " problem", "/problem", " problems", "_problem", " worries", "\u95ee\u9898", " problematic"], ["problem", " problem", "\u95ee\u9898", " problems", "/problem", "\u7684\u95ee\u9898", "_problem", "Problem"], ["problem", " problem", " worries", " worry", " worrying", "\u95ee\u9898", " problems", " concern"], [" problem", "problem", " worries", " worry", " worrying", " problematic", " concern", " problems"], [" problem", "problem", " worry", " problematic", " worries", " worrying", " painful", " problems"], [" painful", " problem", " worrying", " scary", " worry", " of", " problematic", " worries"], [" of", " painful", " problem", " problematic", " scary", " interesting", " worrying", " dangerous"], [" of", " worrying", " painful", " scary", " worry", " interesting", " dangerous", " expensive"]], "p": [[0.9984, 0.0009, 0.0006, 0.0, 0.0, 0.0, 0.0, 0.0], [0.995, 0.0009, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0], [0.9064, 0.0351, 0.0147, 0.0101, 0.0089, 0.0033, 0.0029, 0.0015], [0.0531, 0.0343, 0.0236, 0.0152, 0.0118, 0.0087, 0.0067, 0.0063], [0.9991, 0.0003, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9688, 0.002, 0.001, 0.0007, 0.0004, 0.0004, 0.0004, 0.0003], [0.7945, 0.0069, 0.0031, 0.0029, 0.0027, 0.0025, 0.0024, 0.002], [0.5398, 0.1365, 0.0053, 0.0041, 0.003, 0.0028, 0.0027, 0.0027], [0.5173, 0.0899, 0.0074, 0.0074, 0.0042, 0.0037, 0.0037, 0.0031], [0.1672, 0.0697, 0.0073, 0.005, 0.0045, 0.0039, 0.0031, 0.0027], [0.5685, 0.0134, 0.0098, 0.0081, 0.0059, 0.0052, 0.0046, 0.0043], [0.1222, 0.0577, 0.0078, 0.0073, 0.0069, 0.005, 0.0042, 0.0042], [0.0528, 0.0363, 0.0056, 0.0049, 0.0043, 0.0043, 0.0043, 0.0041], [0.0243, 0.0089, 0.0079, 0.007, 0.007, 0.0054, 0.0037, 0.0033], [0.0138, 0.013, 0.013, 0.0095, 0.0084, 0.0029, 0.0029, 0.0027], [0.0074, 0.0058, 0.0054, 0.0035, 0.0023, 0.0023, 0.002, 0.0019], [0.0085, 0.0085, 0.0075, 0.0066, 0.0024, 0.0023, 0.002, 0.0019], [0.0095, 0.0054, 0.0037, 0.0035, 0.0024, 0.0022, 0.0021, 0.0021], [0.0105, 0.0053, 0.0046, 0.0032, 0.003, 0.0026, 0.0026, 0.0025], [0.0061, 0.005, 0.0039, 0.0033, 0.0029, 0.0027, 0.0021, 0.0021], [0.0038, 0.0036, 0.0034, 0.0026, 0.0026, 0.0022, 0.002, 0.0019], [0.0028, 0.0022, 0.0022, 0.0022, 0.002, 0.0019, 0.0019, 0.0017], [0.0119, 0.0028, 0.0023, 0.0022, 0.0021, 0.0019, 0.0017, 0.0017], [0.0213, 0.0024, 0.0024, 0.0023, 0.0021, 0.002, 0.0019, 0.0018], [0.004, 0.0037, 0.0033, 0.0027, 0.0027, 0.0026, 0.0021, 0.0021], [0.0031, 0.0025, 0.0024, 0.0022, 0.0022, 0.002, 0.0019, 0.0017], [0.0037, 0.0033, 0.0027, 0.0023, 0.0021, 0.0019, 0.0017, 0.0016], [0.0101, 0.0065, 0.0058, 0.0054, 0.0037, 0.0031, 0.0026, 0.0024], [0.0058, 0.0033, 0.0026, 0.0024, 0.0024, 0.0024, 0.0023, 0.0023], [0.0061, 0.0054, 0.0051, 0.0051, 0.0048, 0.0045, 0.0042, 0.004], [0.0209, 0.0099, 0.0099, 0.0093, 0.0093, 0.0072, 0.0056, 0.0056], [0.0274, 0.0121, 0.0089, 0.0089, 0.0074, 0.0074, 0.0061, 0.0061], [0.0194, 0.0126, 0.0118, 0.0118, 0.0098, 0.0098, 0.0086, 0.0081], [0.014, 0.007, 0.0062, 0.0055, 0.0048, 0.0045, 0.0043, 0.004], [0.0066, 0.0062, 0.0051, 0.0048, 0.004, 0.0035, 0.0035, 0.0033], [0.0191, 0.0096, 0.009, 0.0058, 0.0048, 0.0045, 0.0045, 0.0045], [0.05, 0.0251, 0.0143, 0.0105, 0.0105, 0.0098, 0.0092, 0.0087], [0.0281, 0.016, 0.0141, 0.0103, 0.0086, 0.0086, 0.0063, 0.0046], [0.0333, 0.0202, 0.0178, 0.0123, 0.0102, 0.0095, 0.009, 0.009], [0.0527, 0.0495, 0.032, 0.0265, 0.022, 0.0171, 0.0171, 0.0151], [0.0674, 0.0525, 0.0299, 0.0264, 0.0248, 0.0193, 0.016, 0.015], [0.147, 0.0837, 0.0448, 0.0396, 0.0289, 0.0255, 0.0212, 0.0155], [0.1342, 0.0675, 0.0559, 0.0319, 0.0264, 0.0248, 0.0233, 0.0171], [0.1006, 0.0888, 0.0736, 0.0506, 0.0288, 0.0288, 0.0211, 0.0198], [0.119, 0.0927, 0.0678, 0.0496, 0.0411, 0.0301, 0.0234, 0.0194], [0.1535, 0.0468, 0.044, 0.0413, 0.0413, 0.0388, 0.0322, 0.0302], [0.2384, 0.0774, 0.0683, 0.0683, 0.0414, 0.0343, 0.0303, 0.0285], [0.0905, 0.085, 0.075, 0.0705, 0.0622, 0.0484, 0.0484, 0.0401], [0.1412, 0.0911, 0.0357, 0.0315, 0.0278, 0.0245, 0.0203, 0.0191], [0.1555, 0.1004, 0.0474, 0.0306, 0.027, 0.027, 0.0254, 0.0164], [0.0886, 0.0782, 0.069, 0.0419, 0.0393, 0.0347, 0.0239, 0.0186], [0.1053, 0.1053, 0.082, 0.0439, 0.0388, 0.0321, 0.0284, 0.025], [0.1567, 0.1383, 0.074, 0.0328, 0.0328, 0.0328, 0.0272, 0.0272], [0.1834, 0.1112, 0.0765, 0.0765, 0.0525, 0.0409, 0.0361, 0.016], [0.4425, 0.3041, 0.0363, 0.025, 0.025, 0.022, 0.0172, 0.0151], [0.4281, 0.2942, 0.0398, 0.0274, 0.0274, 0.0242, 0.0188, 0.0146], [0.4802, 0.2571, 0.0447, 0.0239, 0.0211, 0.0164, 0.0164, 0.0128], [0.2996, 0.1817, 0.1817, 0.0758, 0.0358, 0.0217, 0.0217, 0.0192], [0.2509, 0.2509, 0.1046, 0.0719, 0.034, 0.03, 0.03, 0.0264], [0.4048, 0.1314, 0.0903, 0.0704, 0.0548, 0.0427, 0.0259, 0.0259], [0.1365, 0.1204, 0.1204, 0.1204, 0.0828, 0.0828, 0.0645, 0.0502], [0.8272, 0.0363, 0.0321, 0.0172, 0.0142, 0.0092, 0.0086, 0.0056], [0.9656, 0.0069, 0.0042, 0.0029, 0.0022, 0.0021, 0.0015, 0.0013]], "ranks": {"Kotlin": [197576, 82379, 90228, 22910, 25519, 25199, 16253, 25358, 34712, 78172, 91152, 67396, 45385, 56804, 83109, 86205, 94043, 61859, 33364, 80432, 111552, 82062, 148713, 205265, 164439, 75580, 71475, 142452, 156019, 107791, 145712, 152938, 180870, 132272, 126780, 86767, 101863, 90003, 114765, 98692, 116619, 83880, 45321, 38780, 30754, 59083, 50697, 41896, 48079, 32920, 34808, 26123, 69491, 50538, 51982, 65695, 68169, 72391, 66277, 64415, 61166, 55331, 36619]}}, {"pos": 443, "top": [[".", ",", "\u2013", " \u2013", ";", "\u2026.", "\u2026..", "\u00a0"], ["\u2013", " \u2013", "\u2013and", "\u2026..", ".\u2013", ",", "?,", "\u2013\u2013"], ["\u2013", "\u2026..", "\u2026", ",", "\u2026.", "\u2013and", "\u2026\"", " \u2013"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " milfs", " ;;^", "\u52a0\u62ff\u5927", " Shemale", "*\u201c.", " Gabrie", " ``("], ["//@", ":@", ":#", ":||", "\u52a0\u62ff\u5927", "{@", ":-", ":$"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " FStar", "\ufffd\ufffd", " *\u2013", "\u52a0\u62ff\u5927", "*\u201c.", "\u5982\u6b4c", " **:**"], ["eldom", "\u201e", " \u201e", "\u4e9b", " \u201a", "\u3008", "\u4eca", "thers"], ["eldom", " **\u201e", "\u201e", "quisites", " anyhow", "thers", "-of", "orage"], ["\u201e", " \u201e", "\u201a", " **\u201e", "nameof", " (\u201e", "quisites", " nameof"], ["\u53bb\u4f55", "-Cds", "-of", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\u4e9b\u8bb8", "\u4e3d\u4e1d", "|RF", "-$"], ["-of", " handful", "thers", "\u4e9b\u8bb8", "thing", "nameof", ",$", "-$"], ["-of", "\u4e4b\u4e3e", "eshire", " handful", "quisites", "iful", " **\u201e", "__$"], [" **\u201e", "-of", "iful", " savory", "_'", "quisites", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "__$"], ["-of", " handful", "iful", "thing", " veggies", " darling", " imaginable", "-'"], [" handful", "-of", " myriad", " oft", "\u4e9b\u8bb8", " merely", " unto", "-'"], ["\u91cc\u5934", "\u4e9b\u8bb8", " myriad", " handful", " woes", " unto", " folks", "\u4e4b\u4e3e"], [" myriad", " folks", "-of", " handful", " oft", "\u4e9b\u8bb8", "-'", " woes"], ["-of", " handful", "\u90a3\u70b9", "\u91cc\u5934", "\u4e9b\u8bb8", "\u7684\u4e8b\u513f", " myriad", " bother"], ["\u91cc\u5934", "\u90a3\u70b9", "\u7684\u4e8b\u513f", "\u4e9b\u8bb8", "eshire", "|RF", "-than", " handful"], ["\u91cc\u5934", "\u90a3\u70b9", "\u4e9b\u8bb8", " myriad", " woes", "\u7684\u4e8b\u513f", " handful", "eshire"], ["\u91cc\u5934", "\u90a3\u70b9", "\u4e9b\u8bb8", " myriad", " woes", " handful", "\u7684\u4e8b\u513f", "\u4e4e\u5176"], ["\u90a3\u70b9", "eshire", " ;;^", "\u4e4e\u5176", "\u4e9b\u8bb8", "\u7684\u4e8b\u513f", "\u91cc\u5934", " bother"], [" woes", " ``", "\u91cc\u5934", "\u90a3\u70b9", "\u4e9b\u8bb8", " things", "\u4e4e\u5176", " bother"], [" woes", " myriad", " looming", " --", "\u91cc\u5934", "\u4e9b\u8bb8", "-of", " things"], [" woes", " myriad", "\u91cc\u5934", " looming", " things", " burgeoning", " --", "\u4e9b\u8bb8"], [" woes", "\u91cc\u5934", " things", " bother", "\u90a3\u70b9", "\u4e9b\u8bb8", " looming", " myriad"], [" woes", " things", " looming", " myriad", " bother", "\u90a3\u70b9", " handful", "\u4e4e\u5176"], [" woes", " myriad", " looming", " things", " perhaps", " whatever", " handful", " arguably"], [" woes", " looming", " myriad", " things", " handful", "\u91cc\u5934", "\u4e4e\u5176", " bother"], [" woes", " things", " myriad", " looming", " handful", " bother", " worries", " worry"], [" things", " woes", " looming", " myriad", " whatever", " worries", " worrying", " worry"], [" things", " myriad", " looming", " woes", " whatever", " perhaps", " nasty", " worrying"], [" myriad", " looming", " things", " whatever", " truly", " woes", " perhaps", " arguably"], [" myriad", " woes", " looming", " things", "\u91cc\u5934", " truly", "\u90a3\u70b9", " nasty"], [" myriad", " woes", " looming", " things", " truly", " horrors", " nasty", " arguably"], [" woes", " myriad", " looming", " worse", " things", " nasty", " horrors", " truly"], [" woes", " worse", " things", " looming", " horrors", " myriad", " worries", " worrying"], [" woes", " worse", " things", " horrors", " worries", " myriad", " worrying", " looming"], [" woes", " problems", " worries", " worrying", " worry", " concerns", " horrors", "\u56f0\u6270"], [" worries", " woes", " problems", " worry", " worrying", " concerns", " troubles", "problems"], [" worries", " problems", " woes", " concerns", " worry", " worrying", "problems", " troubles"], [" worries", " woes", " problems", " worry", " concerns", " worrying", " troubles", "problems"], [" worries", " problems", " woes", " worry", " concerns", " worrying", " troubles", " concern"], [" worries", " problems", " woes", " concerns", " worry", " worrying", " troubles", "problems"], [" worries", " problems", " woes", " worry", " worrying", " concerns", " troubles", "problems"], [" worries", " problems", " woes", " worry", " worrying", " concerns", " troubles", " nightmares"], [" worries", " problems", " woes", " worry", " worrying", " horrors", " concerns", " troubles"], [" worries", " problems", " woes", " worry", " worrying", " concerns", "problems", " horrors"], [" worries", " woes", " horrors", " problems", " worry", "problems", " worrying", " troubles"], [" worries", " problems", " woes", " horrors", "problems", " concerns", " worry", " nightmares"], [" worries", " problems", "problems", " concerns", " worry", " woes", " worrying", " horrors"], [" worries", " worry", ";**", " horrors", " worrying", " problems", " woes", " concerns"], [" worries", ";**", " problems", " worry", " horrors", " woes", " nightmares", " worrying"], [" worries", " worry", "\u70e6\u607c", " worrying", " problems", "\u62c5\u5fc3\u7684", " headaches", " nightmares"], [" worries", " problems", "problems", " worry", " problem", "problem", "\u95ee\u9898", " Problems"], [" worries", " problems", " worry", "problems", "\u70e6\u607c", " concerns", "/problems", " worrying"], [" worries", " problems", " worry", "problems", "/problems", "\u70e6\u607c", " headaches", " concerns"], [" worries", " worry", " concerns", " problems", " worrying", " your", "problems", " worried"], [" worries", " worry", " problems", " concerns", " your", " worrying", "problems", "\u70e6\u607c"], [" worries", " your", " worry", " problems", "your", "\u4f60\u7684", " worrying", " concerns"], [" your", " worries", "your", " problems", " worry", "\u4f60\u7684", "-your", " worrying"], [" worries", " your", " problems", "your", " worry", " evils", " worrying", "-your"], [" your", " worries", " our", "your", " worry", " my", " problems", " worrying"]], "p": [[0.4697, 0.2514, 0.1346, 0.1346, 0.0025, 0.0013, 0.0011, 0.0009], [0.7892, 0.1137, 0.0474, 0.0047, 0.0034, 0.0025, 0.0009, 0.0009], [0.5338, 0.1964, 0.0928, 0.0497, 0.0497, 0.0183, 0.0063, 0.0059], [0.0329, 0.0329, 0.0054, 0.005, 0.005, 0.0042, 0.0035, 0.0033], [0.024, 0.0212, 0.0129, 0.0121, 0.0088, 0.0078, 0.0078, 0.0061], [0.0131, 0.0096, 0.0096, 0.008, 0.007, 0.0062, 0.0058, 0.0045], [0.0213, 0.0146, 0.0083, 0.0061, 0.0045, 0.003, 0.0029, 0.0028], [0.0103, 0.0043, 0.0029, 0.0029, 0.0026, 0.0024, 0.0021, 0.0019], [0.0097, 0.0062, 0.0055, 0.0052, 0.0043, 0.0029, 0.0028, 0.0022], [0.0045, 0.0038, 0.0033, 0.0031, 0.0026, 0.0023, 0.0021, 0.0021], [0.0166, 0.0061, 0.0039, 0.0039, 0.0033, 0.0027, 0.0024, 0.0023], [0.007, 0.0033, 0.0031, 0.0027, 0.0024, 0.0023, 0.0021, 0.0018], [0.0069, 0.0069, 0.0037, 0.0033, 0.0029, 0.0029, 0.0027, 0.0025], [0.078, 0.0163, 0.0082, 0.006, 0.006, 0.005, 0.005, 0.005], [0.0504, 0.0504, 0.0238, 0.0144, 0.0128, 0.0082, 0.0082, 0.0077], [0.0255, 0.0175, 0.0136, 0.0094, 0.0078, 0.0073, 0.0047, 0.0039], [0.0787, 0.0396, 0.0372, 0.024, 0.0176, 0.0137, 0.0137, 0.01], [0.0151, 0.011, 0.0097, 0.0091, 0.0086, 0.0076, 0.0063, 0.0052], [0.0092, 0.0092, 0.0072, 0.0067, 0.0043, 0.0034, 0.0034, 0.003], [0.0155, 0.0113, 0.01, 0.0094, 0.0073, 0.0069, 0.0064, 0.0047], [0.0219, 0.016, 0.0151, 0.011, 0.0086, 0.0076, 0.0046, 0.0041], [0.01, 0.0042, 0.0042, 0.0042, 0.0029, 0.0029, 0.0027, 0.0027], [0.0191, 0.0096, 0.008, 0.0075, 0.0075, 0.007, 0.0066, 0.0058], [0.021, 0.0197, 0.0087, 0.0068, 0.0056, 0.005, 0.005, 0.005], [0.0348, 0.0211, 0.0164, 0.0128, 0.0078, 0.006, 0.006, 0.005], [0.0552, 0.0168, 0.0102, 0.0096, 0.0096, 0.0075, 0.007, 0.0062], [0.0533, 0.0209, 0.0153, 0.0105, 0.0093, 0.0087, 0.0082, 0.0077], [0.0474, 0.0419, 0.0393, 0.0347, 0.0145, 0.0099, 0.0077, 0.0073], [0.0719, 0.0362, 0.0319, 0.0219, 0.0104, 0.0081, 0.0076, 0.0067], [0.1073, 0.0785, 0.0574, 0.0476, 0.0186, 0.0165, 0.0145, 0.0113], [0.0906, 0.055, 0.0516, 0.0428, 0.0229, 0.0148, 0.0148, 0.0131], [0.0536, 0.0444, 0.0418, 0.0368, 0.0305, 0.0136, 0.0127, 0.012], [0.0467, 0.0413, 0.0321, 0.0162, 0.0152, 0.0143, 0.0143, 0.0111], [0.0466, 0.0363, 0.025, 0.0118, 0.0104, 0.0086, 0.0076, 0.0076], [0.0396, 0.0272, 0.0226, 0.0146, 0.01, 0.0088, 0.0078, 0.0069], [0.0518, 0.0486, 0.0245, 0.0131, 0.0123, 0.0102, 0.009, 0.0075], [0.0507, 0.0328, 0.0211, 0.0175, 0.0175, 0.0113, 0.0083, 0.0073], [0.0437, 0.032, 0.0194, 0.0182, 0.0151, 0.0142, 0.0133, 0.0118], [0.1535, 0.0991, 0.0875, 0.0413, 0.0267, 0.0221, 0.0143, 0.0126], [0.3232, 0.2221, 0.196, 0.0496, 0.0437, 0.0301, 0.0182, 0.0142], [0.4475, 0.1866, 0.1282, 0.0606, 0.0416, 0.0367, 0.0119, 0.0119], [0.5381, 0.1542, 0.1201, 0.039, 0.0344, 0.0304, 0.0162, 0.0077], [0.5552, 0.1239, 0.1239, 0.0402, 0.0355, 0.0313, 0.0168, 0.0054], [0.446, 0.2705, 0.1128, 0.0366, 0.0285, 0.0196, 0.0173, 0.0135], [0.4188, 0.3262, 0.0935, 0.0344, 0.0184, 0.0184, 0.0162, 0.0087], [0.4958, 0.1824, 0.0862, 0.0671, 0.0359, 0.0192, 0.0091, 0.0071], [0.489, 0.1587, 0.1091, 0.0515, 0.0455, 0.0148, 0.0139, 0.009], [0.5762, 0.1286, 0.078, 0.0368, 0.0287, 0.0163, 0.0112, 0.0112], [0.5455, 0.1074, 0.0575, 0.0507, 0.0175, 0.0155, 0.0145, 0.0145], [0.5924, 0.0624, 0.0429, 0.0429, 0.0379, 0.0148, 0.0139, 0.0108], [0.7026, 0.0449, 0.035, 0.0212, 0.0187, 0.0165, 0.0165, 0.0137], [0.7417, 0.027, 0.0254, 0.0224, 0.0145, 0.0145, 0.0136, 0.0099], [0.798, 0.0655, 0.0156, 0.0121, 0.01, 0.0078, 0.0073, 0.0057], [0.9395, 0.0172, 0.0072, 0.0041, 0.0028, 0.0023, 0.0021, 0.0017], [0.6812, 0.284, 0.0182, 0.0046, 0.0025, 0.0017, 0.0012, 0.0006], [0.9673, 0.0258, 0.0045, 0.0015, 0.0001, 0.0001, 0.0001, 0.0001], [0.9644, 0.0291, 0.0031, 0.0021, 0.0002, 0.0002, 0.0001, 0.0001], [0.992, 0.0067, 0.0005, 0.0005, 0.0001, 0.0001, 0.0, 0.0], [0.9951, 0.0032, 0.0009, 0.0006, 0.0001, 0.0001, 0.0, 0.0], [0.8908, 0.0939, 0.0099, 0.0032, 0.001, 0.0003, 0.0002, 0.0001], [0.5587, 0.4351, 0.0029, 0.0012, 0.0011, 0.0002, 0.0001, 0.0001], [0.5259, 0.4641, 0.0046, 0.0017, 0.0017, 0.0003, 0.0002, 0.0002], [0.9829, 0.014, 0.0015, 0.0004, 0.0002, 0.0002, 0.0002, 0.0001]], "ranks": {"Kotlin": [220408, 200112, 210490, 77425, 90928, 112065, 107027, 93427, 124063, 144181, 194692, 159026, 135053, 196834, 229656, 220087, 223985, 179234, 149488, 174162, 206101, 166721, 225832, 243276, 234480, 182687, 169092, 214566, 191955, 154454, 204197, 226420, 237099, 208185, 217782, 191795, 205494, 193015, 220290, 210923, 217152, 201440, 165635, 170139, 128946, 157710, 128538, 103455, 124866, 88254, 49075, 48814, 74678, 71879, 70122, 48129, 37565, 66946, 48547, 31443, 28510, 21986, 4438]}}, {"pos": 444, "top": [[" \u2013", "\u2013", ",", ".", "\u2013and", ".\u2013", " \u2013,", ";"], ["\u2013", " \u2013", "\u2013and", " \u2013,", ",", "\u2013\u2013", ".\u2013", "."], ["\u2013", " \u2013", "\u2013and", ",", ".\u2013", ".", " \u2013,", "\u2013\u2013"], ["\u6700\u65b0\u53d1\u5e03", " *\u2013", " -->", "----</", "\u2013and", "~\":\"", "\u52a0\u62ff\u5927", "zinho"], ["\u2013and", "\u2013\u2013", " *\u2013", "\u2013", " -->", "-->", " \u2013,", ":@"], ["\u2013and", "\u2013\u2013", "\u2013", " *\u2013", "\u6700\u65b0\u53d1\u5e03", " **\u2013", "-->", " veggies"], ["\u2013and", "\u2013\u2013", "--", "\u2013", " --", "\u2018", "-->", " \u2018"], ["\u2013and", "--", "\u2013\u2013", " -->", "   \r\n", "\u6700\u65b0\u53d1\u5e03", " --", "-->"], ["\u2013and", "\u2013", ",", ".", "\u2013\u2013", "\u2018", "--", " \u2013"], ["\u2013and", "\u2013", "\u2013\u2013", "--", ",", "  \r\n", "\\-", " \r\n"], ["\u2013and", "\u2013", "\u2013\u2013", "--", " \u2013", " \r\n", "  \r\n", "   \r\n"], ["\u2013and", "   \r\n", " veggies", "\u2013\u2013", " -->", " --", " ____", " folks"], ["\u2013and", " veggies", " folks", "\u2013\u2013", " munch", "   \r\n", " standout", "s"], ["\u2013and", " folks", "--", " veggies", "\u2013", " kids", "s", " famed"], [" --", "--", " folks", " famed", "\u2013and", " battling", " kids", " busted"], [" --", " folks", "--", " pricey", " veggies", " woes", " famed", " foes"], [" folks", " --", " standout", "\u2013and", " veggies", " pricey", " woes", " myriad"], [" veggies", " folks", " standout", " funky", "-esque", " configs", " --", " pricey"], [" --", " woes", " configs", " veggies", " funky", " thankfully", " comfy", " daunting"], [" --", " folks", " woes", " thankfully", " hugely", " utterly", " myriad", " incredibly"], [" --", " myriad", " hugely", " utterly", " folks", " battling", " @", " woes"], [" woes", " --", " looming", " folks", " ambitions", " daunting", " biggest", " incredibly"], [" --", " woes", " myriad", " looming", " folks", " battling", " incredibly", " plenty"], [" --", " woes", " myriad", " looming", " battling", " incredibly", " ever", " just"], [" --", " woes", " \r\n\r\n", " folks", "   \n\n", " myriad", " tech", " incredibly"], [" tech", " ____", " folks", " woes", " freaking", " incredibly", " --", " biggest"], [" tech", " ____", " incredibly", " woes", " folks", " freaking", " @", " looming"], [" tech", " @", " incredibly", " --", " myriad", " massively", " looming", " big"], [" tech", " @", " incredibly", " ____", " myriad", " massively", " massive", " woes"], [" tech", " @", " incredibly", " ____", " myriad", " massively", " massive", " ______"], [" @", " massive", " tech", " incredibly", " ...", " massively", " hard", " big"], [" @", " massive", " long", " incredibly", " hard", " ", " just", " big"], [" @", " incredibly", " massive", " tech", " massively", " hard", " huge", " big"], [" tech", " incredibly", " relentless", " massively", " leveraging", " @", " leverage", " **"], [" tech", " incredibly", " relentless", " relentlessly", " massively", " hardware", " massive", " likely"], [" tech", " incredibly", " relentless", " hardware", " massively", " relentlessly", " desperately", " aggressively"], [" tech", " incredibly", " relentless", " hardware", " desperately", " desperate", " impossible", " massively"], [" tech", " incredibly", " impossible", " risk", " desperate", " desperately", " massively", " risks"], [" problems", " tech", " risks", " challenges", " risk", " impossible", " desperate", " problem"], [" problems", " tech", " challenges", " risks", " impossible", " risk", " failures", " problem"], [" problems", " tech", " challenges", " engineering", " problem", " risks", " technical", " failures"], [" problems", " tech", " challenges", " engineering", " engineers", " struggles", " technical", " risks"], [" problems", " engineering", " challenges", " tech", " engineers", " technical", " problem", " risks"], [" problems", " challenges", " engineering", " tech", " problem", " technical", " engineers", " crisis"], [" problems", " challenges", " engineering", " crisis", " tech", " problem", " struggles", " technical"], [" problems", " challenges", " engineering", " engineers", " tech", " crisis", " technical", " risks"], [" problems", " nightmares", " nightmare", " challenges", " hurdles", " woes", " crisis", " tech"], [" problems", " nightmares", " crisis", " woes", " hurdles", " nightmare", " challenges", " engineers"], [" nightmares", " nightmare", " crisis", " woes", " horrors", " problems", " doom", " failures"], [" problems", " nightmares", " woes", " worries", ";**", " troubles", " horrors", "problems"], [" worries", " problems", " nightmares", "problems", " woes", " concerns", " troubles", " horrors"], [" worries", " problems", " nightmares", " woes", "problems", " horrors", " concerns", " troubles"], [" worries", " problems", " nightmares", ";**", " woes", "problems", " troubles", " headaches"], [" worries", " problems", " nightmares", "problems", " worrying", " worry", " troubles", " headaches"], [" problems", "problems", " worries", " problem", " Problems", "problem", " problemas", " troubles"], [" problems", " worries", "problems", " worry", " problem", " Problems", " troubles", " \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u044b"], [" worries", " problems", "problems", " worry", " Problems", "/problems", " problem", " \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u044b"], [" worries", " problems", "problems", " worry", " concerns", " worrying", " Problems", "/problems"], [" worries", " problems", "problems", " concerns", " worry", " Problems", " problem", " troubles"], [" problems", " worries", "problems", " problem", " worry", " Problems", " concerns", " nightmares"], [" worries", " problems", "problems", " nightmares", " headaches", " worry", " Problems", " fears"], [" worries", " problems", "problems", " nightmares", " fears", " worry", " headaches", " problem"], [" worries", " problems", " worrying", " worry", " fears", "problems", " nightmares", " concerns"]], "p": [[0.7072, 0.2602, 0.0147, 0.0101, 0.0061, 0.0005, 0.0005, 0.0001], [0.5925, 0.247, 0.1498, 0.0033, 0.0026, 0.0017, 0.0015, 0.0002], [0.8557, 0.0902, 0.0376, 0.0138, 0.0011, 0.0009, 0.0004, 0.0001], [0.0287, 0.0113, 0.0028, 0.0028, 0.0028, 0.0027, 0.0025, 0.0025], [0.3252, 0.0531, 0.0284, 0.0221, 0.0221, 0.0195, 0.0111, 0.0105], [0.6957, 0.0238, 0.0112, 0.005, 0.0047, 0.003, 0.0028, 0.0027], [0.5078, 0.1549, 0.0732, 0.057, 0.021, 0.0127, 0.0105, 0.0056], [0.4577, 0.0747, 0.0228, 0.0189, 0.0189, 0.0189, 0.0167, 0.0157], [0.6376, 0.2346, 0.0462, 0.0091, 0.0085, 0.0049, 0.0028, 0.002], [0.5476, 0.2754, 0.0329, 0.0065, 0.0042, 0.0022, 0.0016, 0.0014], [0.4607, 0.337, 0.0623, 0.0139, 0.007, 0.0042, 0.004, 0.0035], [0.0804, 0.0131, 0.0131, 0.0131, 0.0116, 0.0109, 0.009, 0.0075], [0.094, 0.0269, 0.0144, 0.0112, 0.0072, 0.006, 0.0056, 0.0056], [0.1107, 0.0407, 0.0232, 0.0159, 0.0141, 0.0097, 0.0085, 0.0075], [0.2006, 0.1074, 0.0448, 0.0155, 0.0145, 0.0106, 0.0069, 0.0061], [0.1262, 0.0234, 0.0055, 0.0052, 0.0046, 0.0046, 0.0043, 0.0043], [0.0439, 0.0172, 0.0152, 0.0126, 0.0111, 0.0086, 0.0081, 0.0081], [0.0153, 0.0087, 0.0087, 0.0087, 0.0068, 0.0064, 0.0056, 0.005], [0.0135, 0.0087, 0.0072, 0.0064, 0.0064, 0.0056, 0.005, 0.005], [0.1331, 0.0159, 0.0124, 0.0103, 0.0096, 0.0096, 0.0091, 0.0085], [0.0472, 0.0286, 0.0135, 0.0135, 0.0127, 0.0087, 0.0087, 0.0064], [0.0147, 0.0069, 0.0045, 0.0045, 0.0037, 0.0035, 0.0035, 0.0033], [0.0737, 0.0447, 0.012, 0.0113, 0.0094, 0.0088, 0.0078, 0.0064], [0.0856, 0.0245, 0.0203, 0.0123, 0.0102, 0.0066, 0.0058, 0.0058], [0.0562, 0.0528, 0.0437, 0.0194, 0.0171, 0.0142, 0.0125, 0.0118], [0.0983, 0.0362, 0.034, 0.03, 0.0219, 0.0182, 0.0133, 0.0091], [0.1487, 0.0332, 0.0275, 0.0189, 0.0147, 0.0122, 0.0108, 0.0101], [0.1163, 0.0516, 0.0294, 0.0259, 0.0157, 0.0108, 0.009, 0.009], [0.2717, 0.0503, 0.0253, 0.0144, 0.0112, 0.0099, 0.0087, 0.0072], [0.1377, 0.0506, 0.0327, 0.0211, 0.0145, 0.0136, 0.0136, 0.01], [0.0447, 0.0271, 0.0239, 0.0225, 0.0175, 0.0145, 0.0128, 0.012], [0.0988, 0.0161, 0.0151, 0.0142, 0.0126, 0.0104, 0.0104, 0.0098], [0.0976, 0.0317, 0.0192, 0.0192, 0.0159, 0.0124, 0.0091, 0.0091], [0.2682, 0.0341, 0.0194, 0.0134, 0.0125, 0.0125, 0.0111, 0.0092], [0.2002, 0.0574, 0.0271, 0.0154, 0.0128, 0.0128, 0.0083, 0.0078], [0.2662, 0.0435, 0.0248, 0.015, 0.0141, 0.0117, 0.0117, 0.0086], [0.2763, 0.0424, 0.0227, 0.0188, 0.0177, 0.0156, 0.0156, 0.0121], [0.1717, 0.0338, 0.028, 0.0218, 0.0193, 0.016, 0.0132, 0.0132], [0.0965, 0.0751, 0.0428, 0.0402, 0.0402, 0.0333, 0.019, 0.019], [0.1346, 0.0636, 0.0437, 0.041, 0.032, 0.0282, 0.0194, 0.0194], [0.1921, 0.1496, 0.0586, 0.0295, 0.0244, 0.0229, 0.0216, 0.019], [0.1475, 0.1014, 0.0841, 0.0697, 0.0273, 0.0273, 0.0226, 0.0188], [0.1407, 0.0909, 0.0753, 0.0665, 0.0295, 0.0203, 0.0139, 0.0116], [0.3104, 0.1008, 0.042, 0.042, 0.0255, 0.0175, 0.0164, 0.0164], [0.2713, 0.0502, 0.0391, 0.0324, 0.0324, 0.0304, 0.0163, 0.0153], [0.1668, 0.0614, 0.0478, 0.0309, 0.029, 0.024, 0.0212, 0.0165], [0.1386, 0.0423, 0.0373, 0.0309, 0.0273, 0.0256, 0.0241, 0.0188], [0.1208, 0.0417, 0.0392, 0.0346, 0.0305, 0.0287, 0.0253, 0.0174], [0.077, 0.06, 0.0412, 0.0342, 0.0321, 0.0321, 0.0266, 0.0195], [0.182, 0.1417, 0.0974, 0.067, 0.0555, 0.0358, 0.0279, 0.0246], [0.3772, 0.2593, 0.0743, 0.0451, 0.0398, 0.0273, 0.0129, 0.0114], [0.3851, 0.2061, 0.1417, 0.0521, 0.0358, 0.014, 0.0124, 0.0085], [0.4212, 0.2255, 0.094, 0.0732, 0.0392, 0.0305, 0.0163, 0.0068], [0.8254, 0.087, 0.032, 0.0118, 0.0056, 0.0056, 0.0056, 0.0049], [0.9338, 0.041, 0.022, 0.0018, 0.0004, 0.0002, 0.0001, 0.0001], [0.4927, 0.4927, 0.0131, 0.0005, 0.0003, 0.0001, 0.0001, 0.0001], [0.5523, 0.4301, 0.0167, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001], [0.9379, 0.06, 0.0014, 0.0004, 0.0003, 0.0, 0.0, 0.0], [0.6757, 0.3192, 0.0046, 0.0002, 0.0001, 0.0001, 0.0, 0.0], [0.6204, 0.3763, 0.0025, 0.0003, 0.0001, 0.0001, 0.0, 0.0], [0.8347, 0.1644, 0.0005, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.8925, 0.1066, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001, 0.0], [0.9622, 0.0373, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Kotlin": [93583, 56295, 82690, 3029, 2618, 15670, 38572, 86538, 107415, 138089, 148818, 105860, 70045, 139719, 205663, 175980, 88329, 39444, 33956, 63728, 189343, 145026, 188221, 202329, 97659, 36317, 33886, 55393, 28851, 39660, 68387, 87629, 44491, 14255, 39687, 28861, 32825, 30191, 38338, 48210, 41477, 49555, 41860, 41028, 40191, 47966, 35342, 30877, 57241, 63159, 32720, 27890, 52694, 56590, 52221, 34194, 43726, 55420, 41547, 35239, 24350, 26015, 18676]}}, {"pos": 445, "top": [[".", "\"", ",", " ", " \u2013", "[", "'\"", "'"], [" '**", " \"**", " **'", " \uff5e", "\",@\"", " colourful", "<|quad_start|>", " ([["], ["'[", "[[", "**\u2013", " \uff5c", " [[", " \uff5e", ",", "\u2013and"], [" **\u300c", " **>>", "\uc3df", " ''", " **:**", " **\u25a0", " \u2018\u2019", "\uff0d\uff0d"], [" **\u300c", " \"**", " **>>", " ****", " **\u3010", " **'", " \u2018\u2019", " ''"], [" **\u300c", " **\u3010", " \"**", " **>>", " ****", " **\u2018", " **'", " **)"], [" **\u300c", " **\u3010", " **\u2018", " ''", " **'", " \u300e", " ''.", " '''"], [" **\u300c", " **\u3010", " ''", " **'", " **>>", " '''", " **\u2018", " ''."], [" **\u2018", " **\u300c", " \u2018\u2019", " [[", " ??", " ****", " ''", " **'"], [" ''", " [[", " \u2018\u2019", ".''", " **\u2018", " '''", "'',", " **>>"], [" [[", " ''", " \ufffd", ".", ",", "[[", "''", " ??"], [" ''", " **\u300c", " **'", " '''", " [[", " \u2018\u2019", " **\u2018", " **>>"], [" ''", " **\u300c", " **'", " **\u2018", " \u2018\u2019", " **", " [[", " **>>"], [" ''", " --", " \u2018", " \u2018\u2019", " [[", " amongst", " \ufffd", " "], [" --", " \ufffd", " amongst", " \u2014", " \u2018", " yet", " ''", " \ufffd"], [" --", " amongst", " ''", " smack", " touted", " folks", " hefty", " burgeoning"], [" --", " amongst", " ''", " thanks", " folks", " just", " hefty", " even"], [" --", " thanks", " hefty", " even", " touted", " obsess", " ''", " smack"], [" --", " thanks", " even", " hefty", " looming", " smack", " ever", " arguably"], [" --", " even", " just", " ever", " thanks", " \u2014", " barely", " amongst"], [" --", " even", " just", " ever", " barely", " ,", " once", " yet"], [" **>>", " --", " !**", " **.**", " ;;^", " ''", " **\u25a0", " looming"], [" --", " ''", " even", " looming", " **>>", " smack", " amidst", " thanks"], [" --", " ,", " even", " ''", " just", " looming", " ever", " once"], [" --", " even", " ,", " just", " looming", " ever", " once", " barely"], [" --", " even", " looming", " whatsoever", " worrying", " folks", " barely", " thanks"], [" --", " even", " looming", " whatsoever", " worrying", " ,", " barely", " thanks"], [" --", " even", " ,", " looming", " just", " perhaps", " much", " ever"], [" --", " even", " looming", " ,", " **", " myriad", " arguably", " just"], [" even", " --", " ,", " looming", " \u2014", " just", " **", " ."], [" .", " ,", " even", " just", " --", " much", " barely", " over"], [" .", " ,", " even", " just", " --", " much", " barely", " once"], [" .", " ,", " even", " just", " \u2014", " yet", " over", " once"], [" truly", " \u2014", " looming", " barely", " even", " just", " relentlessly", " wildly"], [" truly", " looming", " barely", " relentlessly", " wildly", " incredibly", " utterly", " obsess"], [" truly", " barely", " relentlessly", " looming", " wildly", " incredibly", " \u2014", " utterly"], [" truly", " barely", " looming", " relentlessly", " wildly", " utterly", " just", " incredibly"], [" truly", " barely", " looming", " worrying", " relentlessly", " worse", " desperately", " wildly"], [" worrying", " truly", " looming", " barely", " desperately", " relentlessly", " obsess", " worry"], [" worrying", " looming", " worry", " obsess", " worries", " truly", " horrific", " worse"], [" worrying", " worry", " looming", " worries", " worse", " obsess", " truly", " horrific"], [" worrying", " looming", " worry", " worries", " catastrophic", " worse", " obsess", " focus"], [" worrying", " worse", " focus", " looming", " worry", " catastrophic", " obsess", " focused"], [" worrying", " focus", " worse", " catastrophic", " focused", " looming", " problems", " worry"], [" focus", " worrying", " worse", " catastrophic", " worry", " focused", " focusing", " problems"], [" focus", " worrying", " worse", " focusing", " worry", " focused", " problems", " catastrophic"], [" worrying", " focus", " worse", " because", " worry", " looming", " truly", " worries"], [" because", " worrying", " focus", "because", " worse", " catastrophic", " worry", " focused"], [";", " ;", " because", "\u2014it", " worse", ";**", "\u2014they", "**;"], [";", ";**", ".", " ;", ".;", " unless", "**;", " because"], [";", ";**", ".;", "**;", "\uff1b", "\u061b", " ;", "*;"], [";", "\u2014it", ";**", "\u2014they", "**;", ".;", "\u2014but", "\uff1b"], [";", "\u2014it", "\u2014they", ";**", "\u2014the", ".;", "\u2014but", "**;"], ["\u2014it", "\u2014they", "\u2014the", "\u2014you", "\u2014but", "\u2014that", "\u2014we", ";"], ["\u2014it", "\u2014they", "\u2014the", ";", "\u2014you", "\u2014that", "\u2014but", "\u2014we"], ["\u2014it", "\u2014they", "\u2014you", "\u2014the", "\u2014that", "\u2014we", "\u2014he", ";"], ["\u2014it", "\u2014they", "\u2014you", "\u2014the", ";", "\u2014he", "\u2014that", "\u2014we"], ["\u2014it", "\u2014the", ";", "\u2014you", "\u2014they", "\u2014that", "\u2014", " \u2014"], ["\u2014it", "\u2014the", "\u2014", " \u2014", "\u2014you", "\u2014if", "\u2014that", "\u2014\u2014"], ["\u2014it", "\u2014the", " \u2014", "\u2014", "\u2014you", "\u2014if", "\u2014that", "\u2014they"], ["\u2014it", "\u2014the", "\u2014", "\u2014you", "\u2014that", "\u2014if", "\u2014they", "\u2014I"], ["\u2014it", "\u2014the", "\u2014", "\u2014you", "\u2014that", "\u2014if", ";", " \u2014"], ["\u2014it", "\u2014", "\u2014the", "\u2014you", ";", "\u2014if", "\u2014that", "."]], "p": [[0.1322, 0.0802, 0.0518, 0.0334, 0.0314, 0.0216, 0.0168, 0.0158], [0.0953, 0.051, 0.0373, 0.0256, 0.0241, 0.0241, 0.02, 0.02], [0.0994, 0.047, 0.0441, 0.0285, 0.0285, 0.0251, 0.0251, 0.0208], [0.4301, 0.1582, 0.0514, 0.0332, 0.0178, 0.0178, 0.0167, 0.0138], [0.1138, 0.0832, 0.0782, 0.0782, 0.0393, 0.0326, 0.0288, 0.0288], [0.3248, 0.0821, 0.053, 0.0498, 0.0302, 0.0195, 0.0162, 0.0152], [0.3408, 0.2342, 0.0433, 0.0433, 0.0247, 0.0192, 0.0192, 0.0181], [0.445, 0.1275, 0.0823, 0.0682, 0.0285, 0.0251, 0.0236, 0.0196], [0.1075, 0.1075, 0.0613, 0.0328, 0.0308, 0.0308, 0.0272, 0.0272], [0.109, 0.1024, 0.0962, 0.0332, 0.0312, 0.0215, 0.0215, 0.0202], [0.3008, 0.0917, 0.0491, 0.0407, 0.0317, 0.0192, 0.0181, 0.015], [0.5148, 0.1014, 0.045, 0.045, 0.0397, 0.0188, 0.0188, 0.0165], [0.2534, 0.1537, 0.0565, 0.0531, 0.0531, 0.0322, 0.0284, 0.0236], [0.136, 0.047, 0.0441, 0.0415, 0.0285, 0.0209, 0.0112, 0.0105], [0.1978, 0.047, 0.0303, 0.0222, 0.0196, 0.0184, 0.0184, 0.0143], [0.2654, 0.0523, 0.0407, 0.015, 0.0124, 0.0117, 0.011, 0.0062], [0.0816, 0.0437, 0.0182, 0.0171, 0.0125, 0.0125, 0.0125, 0.011], [0.0544, 0.031, 0.0138, 0.0101, 0.0101, 0.0101, 0.0095, 0.0083], [0.0563, 0.0321, 0.025, 0.0172, 0.0142, 0.0134, 0.0134, 0.0104], [0.1699, 0.0665, 0.023, 0.0191, 0.0179, 0.0168, 0.0148, 0.0131], [0.0992, 0.0602, 0.044, 0.0221, 0.0208, 0.0195, 0.0172, 0.0152], [0.0679, 0.022, 0.0161, 0.0161, 0.0118, 0.0104, 0.0092, 0.0086], [0.2854, 0.0438, 0.0207, 0.0133, 0.0081, 0.0076, 0.0076, 0.0076], [0.4358, 0.0381, 0.0316, 0.0204, 0.014, 0.0132, 0.0124, 0.0109], [0.3104, 0.0693, 0.042, 0.0175, 0.0165, 0.0165, 0.0128, 0.0113], [0.1495, 0.0752, 0.0334, 0.0244, 0.0115, 0.0108, 0.0108, 0.0108], [0.1291, 0.0833, 0.0475, 0.0175, 0.0154, 0.0136, 0.0136, 0.012], [0.2565, 0.0782, 0.0505, 0.0254, 0.0198, 0.0128, 0.0128, 0.012], [0.1217, 0.0836, 0.054, 0.042, 0.0308, 0.0175, 0.0155, 0.0145], [0.1194, 0.0639, 0.0564, 0.0321, 0.0302, 0.0235, 0.0172, 0.0172], [0.1432, 0.1048, 0.0869, 0.0386, 0.0249, 0.0206, 0.0161, 0.0142], [0.1402, 0.1092, 0.075, 0.0428, 0.0259, 0.0215, 0.0148, 0.0148], [0.1062, 0.0938, 0.0605, 0.0345, 0.0209, 0.0209, 0.0173, 0.0173], [0.0598, 0.0386, 0.0363, 0.0341, 0.0249, 0.0194, 0.0171, 0.0171], [0.0662, 0.0484, 0.0354, 0.0276, 0.019, 0.0167, 0.0148, 0.013], [0.0499, 0.0388, 0.0365, 0.0322, 0.0322, 0.0251, 0.0221, 0.0172], [0.0536, 0.0473, 0.0305, 0.0253, 0.021, 0.0174, 0.0174, 0.0154], [0.0398, 0.033, 0.031, 0.0257, 0.0227, 0.0188, 0.0177, 0.0177], [0.0475, 0.0446, 0.0307, 0.0239, 0.0211, 0.0198, 0.0164, 0.0164], [0.1109, 0.0492, 0.0408, 0.028, 0.0205, 0.0193, 0.016, 0.016], [0.114, 0.037, 0.037, 0.0239, 0.0198, 0.0186, 0.0175, 0.0164], [0.1686, 0.0583, 0.0483, 0.0353, 0.0312, 0.0228, 0.0214, 0.0178], [0.1354, 0.053, 0.0413, 0.0364, 0.0302, 0.0302, 0.0235, 0.0235], [0.0981, 0.0764, 0.0674, 0.0361, 0.0264, 0.0233, 0.0206, 0.0206], [0.1121, 0.1053, 0.06, 0.0284, 0.0266, 0.0266, 0.025, 0.025], [0.1257, 0.0979, 0.0524, 0.0248, 0.0248, 0.0233, 0.0205, 0.0193], [0.0986, 0.087, 0.0438, 0.0386, 0.0341, 0.0249, 0.0207, 0.0194], [0.5618, 0.0298, 0.0263, 0.017, 0.0141, 0.0117, 0.0097, 0.008], [0.5724, 0.1447, 0.0532, 0.0162, 0.0153, 0.0143, 0.0135, 0.0098], [0.9413, 0.0105, 0.0081, 0.0081, 0.0081, 0.0038, 0.0038, 0.0019], [0.8527, 0.07, 0.0227, 0.0227, 0.0156, 0.0051, 0.0035, 0.0024], [0.5337, 0.1963, 0.1349, 0.0496, 0.0183, 0.0183, 0.0126, 0.0046], [0.7639, 0.1328, 0.0488, 0.0261, 0.0066, 0.004, 0.0031, 0.0021], [0.7281, 0.1625, 0.0677, 0.0133, 0.0063, 0.0043, 0.003, 0.003], [0.9153, 0.0402, 0.0168, 0.0115, 0.007, 0.0023, 0.0018, 0.0011], [0.9938, 0.0028, 0.0022, 0.0008, 0.0001, 0.0001, 0.0001, 0.0001], [0.9945, 0.0022, 0.0019, 0.0006, 0.0003, 0.0001, 0.0001, 0.0001], [0.9922, 0.0032, 0.0017, 0.0017, 0.0003, 0.0002, 0.0002, 0.0002], [0.9612, 0.0226, 0.0065, 0.0035, 0.0035, 0.001, 0.0005, 0.0003], [0.9231, 0.0521, 0.0149, 0.0038, 0.0033, 0.0008, 0.0005, 0.0004], [0.9286, 0.0594, 0.0063, 0.0033, 0.0006, 0.0005, 0.0004, 0.0002], [0.7532, 0.1904, 0.0375, 0.0074, 0.0035, 0.0019, 0.001, 0.0009], [0.4427, 0.3043, 0.2091, 0.0118, 0.0104, 0.0063, 0.0049, 0.0034]], "ranks": {"Kotlin": [97703, 113245, 110530, 31742, 41046, 74822, 49873, 55336, 64524, 99805, 107736, 72330, 76348, 146121, 208468, 222301, 196848, 148203, 176512, 213993, 230768, 194012, 209097, 231802, 222172, 161967, 127175, 187004, 162701, 155515, 181089, 195401, 211493, 201913, 220741, 216490, 224202, 216833, 223720, 216718, 222688, 206054, 165576, 142014, 126683, 164095, 127354, 133967, 150537, 77876, 72855, 56784, 66952, 65047, 57364, 28700, 12198, 5907, 3857, 3038, 4195, 792, 361]}}, {"pos": 446, "top": [[" \u2013", "u", "\u2026..", "\u2013", "an", ".", "\u4e86", "\u0647"], [" \u2014", "\ufffd", "\u2014\u2014", " \u2014\u2014", " \uff3b", "\u2014\"", " \uff08", "\uff0e"], ["\ufffd", "\u2014\u2014", "[", "\u2013", "@\"", "\u3002", "\uff0e", "\u2026\u201d"], [" \uffe5\uffe5", " YYS", " ;;^", "':''", " **\u2014", "----</", "---</", " \\\"{"], [" \u2014", "@\\", ",\u2014", " \uff3b", " \"@", "\u2014\u2014\u2014\u2014", "\u2014is", " \uff0f"], [" \uff08", " \u2014", " \u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014", " \u3011", " \uff3b", " **\u2014", "\u2014is", ",\u2014"], [" \u2014", " **\u2014", ",\u2014", " \uff3b", "\u2014\u2014", "\u201d\u2014", " \u3010", "  \n\n"], ["  \n\n", "\u2014is", ",\u2014", " **\u2014", " \u2014", " \uff3b", "\u4e86", "\u2014and"], ["  \n\n", ",\u2014", " \u2014", "\u2014is", " **\u2014", "\u2014and", " \uff3b", "\u2014or"], ["\u2014or", "\u2014is", ",\u2014", "\u2014and", "\u2014all", "\u2014that", "\u2014but", ")\u2014"], [" \u2014", "\u2014or", "\u2014is", "\u2014and", "\u2014but", "\u2014that", "\u2014which", "\u2014a"], [" **\u2014", " \\\"$", "\u2014is", "\u2014or", "\u6709\u70b9\u513f", "\u2014you", "\u2014all", "\u2014and"], [" **\u2014", "\u2014is", "\u2014or", "\u6709\u70b9\u513f", " \\\"$", "\u2014you", "\u2014and", "\u2014even"], ["\u2014or", "\u2014is", "\u2014even", "\u6709\u70b9\u513f", "\u2014all", "\u2014and", " **\u2014", "\u2014not"], ["\u2014or", "\u2014even", " \u2014", "\u2014all", "\u2014and", "\u2014not", " pricey", "\u2014at"], ["\u2014or", " \u2014", "\u2014even", "\u2014and", "\u2014you", "\u2014not", "\u2014is", " pricey"], [" \u2014", "\u2014even", "\u2014or", " pricey", "\u2014and", " savvy", "\u2014you", "\u2014if"], [" pricey", " savvy", " **\u2014", "\u2014even", "\u6709\u70b9\u513f", "\u5473\u513f", "\u2014or", "\u2014is"], [" **\u2014", " pricey", "\u2014even", "\u6709\u70b9\u513f", " savvy", "\u2014or", "\u8fd9\u4e8b\u513f", "\u2014is"], ["\u2014even", " pricey", " **\u2014", "\u2014or", "\u6709\u70b9\u513f", "\u2014is", "\u2014all", "\u2014if"], ["\u2014even", " \u2014", "\u6709\u70b9\u513f", "\u2014or", " pricey", "\u2014and", "\u2014at", "\u2014it"], ["\u6709\u70b9\u513f", " pricey", "repid", " **\u2014", "reja", "\u5473\u513f", "\u2014even", "\u4ec5\u5269"], [" --", "\u2014even", " pricey", "\u6709\u70b9\u513f", "\u2014or", " \u2014", "\u4ec5\u5269", " arguably"], [" --", "\u2014even", " \u2014", " ultimately", " barely", " merely", " arguably", " genuinely"], [" --", "\u2014even", " pricey", "\u2014or", " genuinely", "\u4ec5\u5269", " \u2014", " arguably"], [" pricey", " --", "\u2014even", "\u4ec5\u5269", " arguably", "\u66f4\u662f\u4e00", " **\u2014", "weeney"], [" --", " pricey", "\u6709\u70b9\u513f", " arguably", "\u2014even", "\u4ec5\u5269", " sprawling", " ultimately"], [" --", " arguably", " ultimately", " vastly", " even", " merely", " barely", " genuinely"], [" --", " arguably", " ultimately", " \u2014", "  \n\n", " vastly", " barely", " even"], [" \u2014", " even", " ultimately", " arguably", " just", "\u2014even", " much", " barely"], [" even", " just", " ultimately", " only", " much", " barely", " quickly", " too"], [" just", " only", " even", " much", " ultimately", " more", " still", " quickly"], [" only", " even", " just", " much", " more", " quickly", " ultimately", " simply"], [" only", " just", " merely", " even", " simply", " essentially", " barely", " \u2014"], [" merely", "\u2014but", " only", " unlikely", " wouldn", " barely", " simply", "\u2014even"], [" only", " merely", " unlikely", " barely", " simply", "\u2014but", " cheap", " wouldn"], [" cheap", " merely", " simply", " unlikely", " only", " barely", "\u2014but", " wouldn"], [" cheap", " simply", " merely", " wouldn", " unlikely", " only", "\u53ea\u662f\u4e2a", " cheaper"], [" cheap", " simply", " merely", " unlikely", " wouldn", " cheaper", "\u53ea\u662f\u4e2a", " barely"], [" cheap", " simply", " merely", " wouldn", "\u53ea\u662f\u4e2a", " unlikely", "cheap", "\u53ea\u4f1a"], [" cheap", " wouldn", " simply", " simplistic", " merely", " tech", "cheap", " cheaper"], [" cheap", " merely", " simply", " simplistic", " wouldn", " tech", "\u53ea\u662f\u4e2a", " cheaper"], [" cheap", " merely", " simply", " simplistic", " tech", " wouldn", " cheaper", " hardware"], [" merely", " cheap", " simply", " wouldn", " only", " simplistic", " trivial", " cost"], [" merely", " cheap", " simply", " trivial", " only", " cost", " easily", " technically"], [" merely", " cheap", " trivial", " easily", " simply", " mere", " irrelevant", " only"], [" merely", " cheap", " trivial", " mere", " easily", " simply", " irrelevant", " only"], [" merely", " simply", " trivial", " cheap", " easily", " mere", " easy", " only"], [" merely", " simply", " mere", " easily", " cheap", " only", " trivial", " easy"], [" merely", " simply", " likely", " cheap", " trivial", " mere", " easily", " irrelevant"], [" merely", " simply", "\u53ea\u662f\u4e2a", "\u53ea\u662f\u4e00\u4e2a", "\u53ea\u4f1a", " mere", " irrelevant", "\u5012\u903c"], [" merely", " ignores", " simply", "\u53ea\u662f\u4e2a", "\u53ea\u4f1a", "\u5012\u903c", " irrelevant", "\u2019ll"], [" merely", " simply", " ignores", "\u2019ll", "\u53ea\u662f\u4e2a", " actually", " trivial", " irrelevant"], [" merely", " simply", "\u53ea\u662f\u4e2a", " ignores", "\u53ea\u662f", "\u2019ll", "\u53ea\u662f\u4e00\u4e2a", " \u043f\u0440\u043e\u0441\u0442\u043e"], [" merely", " simply", "\u2019ll", "\u53ea\u662f\u4e2a", " actually", "\u53ea\u662f", "\u53ea\u662f\u4e00\u4e2a", " implies"], [" merely", "\u610f\u5473\u7740", " means", " simply", "\u2019ll", " implies", "\u53ea\u662f\u4e2a", " ignores"], [" simply", "\u2019ll", " merely", " \u043f\u0440\u043e\u0441\u0442\u043e", " implies", "\u610f\u5473\u7740", " means", " just"], ["\u2019ll", " just", "just", "\u2019s", "'ll", " implies", " ignores", " hides"], ["\u2019ll", "\u2019s", " just", "'ll", "just", " implies", " ignores", " hides"], ["\u2019ll", "\u2019s", "'ll", " just", "\u2019re", " implies", "\u2019m", "\u2019d"], ["\u2019ll", "\u2019s", " just", "'ll", " implies", "\u2019m", " ignores", "\u2019re"], ["\u2019s", "\u2019ll", "'s", " just", "'ll", " implies", " ignores", " will"], ["\u2019s", "\u2019ll", " just", "'s", " implies", " means", "'ll", " ignores"]], "p": [[0.3343, 0.1579, 0.09, 0.0352, 0.0331, 0.0201, 0.0138, 0.013], [0.2111, 0.0644, 0.0471, 0.0324, 0.0268, 0.0268, 0.0222, 0.0209], [0.1415, 0.0669, 0.0489, 0.0432, 0.0358, 0.0231, 0.0217, 0.0169], [0.0127, 0.0093, 0.0082, 0.0073, 0.0064, 0.006, 0.0057, 0.0053], [0.0403, 0.0295, 0.0216, 0.0131, 0.0115, 0.0115, 0.0115, 0.0108], [0.0561, 0.032, 0.0282, 0.0234, 0.0234, 0.0206, 0.0194, 0.0161], [0.16, 0.0488, 0.0458, 0.0405, 0.038, 0.0278, 0.0217, 0.0217], [0.0577, 0.0449, 0.0422, 0.0309, 0.0226, 0.0146, 0.0137, 0.0121], [0.1588, 0.0622, 0.0622, 0.0427, 0.0333, 0.0294, 0.0276, 0.0259], [0.0704, 0.0548, 0.0427, 0.0354, 0.0243, 0.0243, 0.0229, 0.0215], [0.104, 0.0761, 0.0462, 0.0407, 0.028, 0.0192, 0.0181, 0.017], [0.0466, 0.0172, 0.0134, 0.0134, 0.0092, 0.0038, 0.0038, 0.0036], [0.0627, 0.0357, 0.0191, 0.014, 0.0123, 0.0066, 0.0066, 0.0066], [0.0525, 0.0463, 0.0318, 0.0206, 0.0181, 0.017, 0.015, 0.015], [0.0646, 0.0503, 0.0368, 0.0163, 0.0144, 0.0127, 0.0127, 0.0112], [0.0717, 0.0673, 0.036, 0.0205, 0.0141, 0.0133, 0.011, 0.0097], [0.052, 0.0488, 0.0459, 0.0315, 0.0204, 0.0169, 0.014, 0.0102], [0.0224, 0.0164, 0.0082, 0.0082, 0.0082, 0.0041, 0.0041, 0.0039], [0.0152, 0.0111, 0.0098, 0.0076, 0.0056, 0.0041, 0.0041, 0.0041], [0.0329, 0.0137, 0.0121, 0.0107, 0.01, 0.0069, 0.0042, 0.0039], [0.0361, 0.011, 0.011, 0.0097, 0.0071, 0.0049, 0.0046, 0.0046], [0.0071, 0.0062, 0.0031, 0.0026, 0.0023, 0.0022, 0.0022, 0.0017], [0.0135, 0.0119, 0.0072, 0.005, 0.0041, 0.0034, 0.0032, 0.0025], [0.0601, 0.0104, 0.0063, 0.0063, 0.0056, 0.0056, 0.0053, 0.0049], [0.0195, 0.0087, 0.0056, 0.0049, 0.0038, 0.0038, 0.0038, 0.0032], [0.0083, 0.0078, 0.0037, 0.0034, 0.003, 0.0025, 0.0024, 0.0024], [0.0104, 0.0092, 0.0041, 0.0038, 0.0036, 0.0028, 0.0026, 0.0025], [0.0785, 0.0186, 0.0145, 0.0083, 0.0083, 0.0078, 0.0073, 0.0061], [0.0222, 0.0222, 0.0173, 0.0134, 0.0105, 0.0105, 0.0092, 0.0092], [0.0613, 0.0422, 0.035, 0.0226, 0.0226, 0.0176, 0.0165, 0.0155], [0.1146, 0.074, 0.0372, 0.0328, 0.029, 0.0212, 0.0212, 0.0187], [0.1612, 0.1108, 0.0978, 0.0462, 0.028, 0.028, 0.0247, 0.0232], [0.2024, 0.1228, 0.1228, 0.0227, 0.0213, 0.0188, 0.0177, 0.0177], [0.1459, 0.0445, 0.0393, 0.0393, 0.027, 0.0174, 0.0164, 0.0164], [0.0453, 0.0189, 0.0178, 0.0157, 0.013, 0.013, 0.0108, 0.0084], [0.0381, 0.0297, 0.0297, 0.0217, 0.0204, 0.0192, 0.0159, 0.0116], [0.054, 0.0507, 0.042, 0.0211, 0.0187, 0.0155, 0.0145, 0.012], [0.1309, 0.0581, 0.0352, 0.0274, 0.0242, 0.013, 0.0114, 0.0114], [0.1584, 0.0514, 0.0426, 0.0293, 0.0189, 0.0115, 0.0108, 0.0095], [0.0961, 0.0293, 0.0293, 0.0189, 0.0138, 0.0115, 0.0108, 0.0079], [0.1692, 0.0355, 0.0294, 0.0244, 0.0244, 0.0202, 0.0123, 0.0102], [0.1241, 0.0801, 0.0378, 0.0277, 0.0244, 0.0148, 0.0102, 0.009], [0.1427, 0.0813, 0.0361, 0.017, 0.0141, 0.0133, 0.0125, 0.0125], [0.1918, 0.1163, 0.0663, 0.0202, 0.019, 0.0168, 0.0168, 0.0148], [0.1979, 0.1541, 0.0533, 0.0415, 0.0304, 0.0252, 0.0153, 0.0119], [0.4663, 0.1336, 0.0715, 0.0298, 0.028, 0.016, 0.0141, 0.0097], [0.5253, 0.1172, 0.0627, 0.0381, 0.0278, 0.0246, 0.0116, 0.0116], [0.751, 0.0544, 0.0424, 0.033, 0.0257, 0.02, 0.0089, 0.0045], [0.8418, 0.1005, 0.0094, 0.0083, 0.0064, 0.005, 0.0039, 0.0013], [0.7697, 0.0716, 0.016, 0.015, 0.0124, 0.011, 0.011, 0.004], [0.7806, 0.0499, 0.0208, 0.0126, 0.0081, 0.0077, 0.0053, 0.0044], [0.5003, 0.0411, 0.0386, 0.0362, 0.0194, 0.0171, 0.0142, 0.0118], [0.7086, 0.04, 0.0353, 0.0214, 0.0138, 0.0095, 0.0079, 0.0079], [0.8522, 0.07, 0.0122, 0.0074, 0.0074, 0.0065, 0.0057, 0.0045], [0.8277, 0.0467, 0.0195, 0.0195, 0.0152, 0.0118, 0.0092, 0.0092], [0.5044, 0.1445, 0.1125, 0.0876, 0.0414, 0.0222, 0.0082, 0.0072], [0.5357, 0.1971, 0.1354, 0.0235, 0.0235, 0.0126, 0.0126, 0.0087], [0.9339, 0.022, 0.0118, 0.0056, 0.0049, 0.0043, 0.003, 0.001], [0.9544, 0.0175, 0.0106, 0.0039, 0.0034, 0.003, 0.001, 0.0006], [0.8745, 0.1184, 0.0022, 0.0008, 0.0007, 0.0006, 0.0006, 0.0002], [0.7548, 0.2162, 0.0138, 0.0035, 0.0024, 0.0009, 0.0008, 0.0007], [0.8838, 0.0931, 0.0111, 0.006, 0.0017, 0.0006, 0.0005, 0.0004], [0.9285, 0.0673, 0.0014, 0.0007, 0.0002, 0.0001, 0.0001, 0.0001]], "ranks": {"Kotlin": [190209, 175404, 122103, 40903, 59119, 57552, 65370, 117149, 80503, 122085, 100381, 52895, 50831, 91858, 166329, 96476, 89951, 47934, 53101, 76306, 156344, 119800, 151306, 182407, 166722, 126151, 94607, 161328, 151617, 143148, 175561, 168418, 191143, 146262, 154198, 122258, 111837, 93857, 89213, 97295, 97425, 89752, 85649, 108413, 102902, 114884, 132189, 106300, 111596, 61003, 55652, 48382, 65348, 45694, 42703, 27228, 14019, 8579, 6849, 8691, 9038, 9525, 16597]}}, {"pos": 447, "top": [[" \u2013", "\u2013", "i", "\u2026", "\u2026.", ".", "\u2013and", "  \n"], [" \u2013", "**\u2013", "  \r\n", "i", "\u2013", "\uff0e", "\u2026\u201d", "\uff0d"], [" \u2013", "\u2013", "\u2026\u201d", "**\u2013", "\u2026", "i", "\uff0e", "\u2026**"], ["  \r\n", "\uff0d", "\u2019**", "**\u2013", " **\u2018", "\u2026**", "iha", "\uff3f"], ["i", "  \r\n", "\u2026\u201d", "\u2013\u2013", "\uff0d", " \u2019", "  \n\n", "\u2026**"], ["i", "  \r\n", "\u2026\u201d", "\u2013\u2013", "\u2026", " \u2019", "\u2026**", "\uff0d"], ["i", "\u2026\u201d", "  \r\n", "\u2026", "  \n", "\uff0d", "\u2013\u2013", "\u2019"], ["  \r\n", "i", "  \n", "\u2026\u201d", "\uff0e", "\u2013\u2013", "\uff0d", "  \n\n"], ["  \n\n", "\u2026\u201d", "  \n", " \u2019", "i", "  \r\n", "\u2019", "\u2026"], ["i", "\u2013\u2013", "  \r\n", " \u00ad", " \u2019", "\u2026\u201d", " \u2013", "  \n"], ["i", " \u2019", " \u00ad", " \u2013", "\u2026\u201d", "  \r\n", "  \n", "  \n\n"], [" \u2019", "  \r\n", "i", "\u2013\u2013", " \u00ad", "\uff0d", "\u2019**", " \r\n"], ["i", " \u2019", "  \r\n", "\u2013\u2013", " \u00ad", "\uff0d", "\u2026\u201d", "\u2026**"], ["i", "\u2013\u2013", " \u2019", " \u00ad", "  \r\n", "\uff0d", "\u2026\u201d", " \u2013"], [" \u00ad", "i", " \u2019", "\uff0d", "\u2013\u2013", " \u2013", "  \r\n", " \ufffd"], [" \u00ad", " \u2019", "i", "\u2013\u2013", " \u2013", "\uff0d", " \ufffd", " savvy"], ["i", " \u00ad", " \u2019", " savvy", "iha", "\u2013\u2013", " pricey", "i\u00e9s"], ["i", "iha", " \u2019", " savvy", "i\u00e9s", "\u2013\u2013", "i\u00e9e", " \u00ad"], [" savvy", " \u2019", "i", "iha", " pricey", " \u00ad", "\u2013\u2013", " gritty"], [" \u2019", " pricey", "iha", " savvy", "i", "\u2013\u2013", " \u00ad", "\u6709\u70b9\u513f"], [" \u00ad", " just", "\u2013\u2013", " \u2019", "\u6709\u70b9\u513f", " battling", "i", " savvy"], ["iha", "\u6709\u70b9\u513f", " pricey", " savvy", " \u2019", " gritty", " smack", "i\u00e9e"], [" \u2019", " pricey", "iha", " savvy", " smack", "\u6709\u70b9\u513f", " just", " hugely"], [" \u2019", " just", " hugely", " outright", " truly", " pricey", " battling", " smack"], [" \u00ad", " \u2019", " \r\n\r\n", "  \n\n", " hugely", "\u2013\u2013", " pricey", " just"], [" \u2019", " pricey", " gritty", " hugely", " savvy", "iha", " incredibly", " myriad"], [" gritty", " \u2019", " pricey", " savvy", " hugely", "iha", "\u6709\u70b9\u513f", " myriad"], [" \u2019", " arguably", " myriad", " hugely", " just", " incredibly", " truly", " wildly"], [" gritty", " \u2019", " pricey", " arguably", " incredibly", " myriad", " savvy", " wildly"], [" \u2019", " incredibly", " arguably", " myriad", " wildly", " gritty", " truly", " pricey"], [" incredibly", " just", " truly", " ultimately", " wildly", " huge", " myriad", " hugely"], [" just", " incredibly", " ultimately", " truly", " huge", " massive", " wildly", " much"], [" just", " truly", " incredibly", " ultimately", " wildly", " massive", " looming", " huge"], [" truly", " incredibly", " relentlessly", " relentless", " wildly", " looming", " ultimately", " myriad"], [" truly", " incredibly", " relentlessly", " relentless", " looming", " overwhelmingly", " arguably", " wildly"], [" incredibly", " truly", " relentless", " relentlessly", " overwhelmingly", " ultimately", " wildly", " massive"], [" truly", " incredibly", " ultimately", " relentlessly", " relentless", " overwhelmingly", " genuinely", " fundamentally"], [" truly", " ultimately", " incredibly", " relentless", " relentlessly", " genuinely", " overwhelmingly", " fundamentally"], [" truly", " impossible", " relentless", " incredibly", " relentlessly", " just", " ultimately", " barely"], [" relentless", " impossible", " truly", " incredibly", " horrific", " relentlessly", " fundamentally", " looming"], [" impossible", " truly", " relentless", " horrific", " incredibly", " fundamentally", " just", " essentially"], [" relentless", " impossible", " fundamentally", " horrific", " crippling", " looming", " relentlessly", " truly"], [" impossible", " fundamentally", " relentless", " horrific", " focus", " focused", " crippling", " looming"], [" impossible", " fundamentally", " relentless", " horrific", " glaring", " absurd", " focus", " crippling"], [" impossible", " focus", " fundamentally", " worse", " relentless", " glaring", " truly", " problems"], [" impossible", " focus", " glaring", " fundamentally", " worse", " relentless", " problems", " crippling"], [" impossible", " relentless", " crippling", " fundamentally", " glaring", " worse", " dangerously", " problems"], [" impossible", " glaring", " doomed", " crippling", " absurd", " relentless", " dangerously", " worse"], [" impossible", " merely", " simply", " glaring", " fatal", " imposs", " absurd", " relentless"], [" merely", " cheap", " irrelevant", " easy", " simply", " trivial", " mundane", " harmless"], [" merely", " simply", " irrelevant", " harmless", " easy", " easiest", " trivial", " cheap"], [" irrelevant", " easy", " merely", " easiest", " simply", " manageable", " convenient", "easy"], [" merely", " easy", " irrelevant", " simply", " trivial", " actually", "easy", " easiest"], [" irrelevant", " merely", " easy", " trivial", " simply", "easy", " convenient", " actually"], [" actually", " irrelevant", " merely", " trivial", " easy", " manageable", "actually", " simply"], [" irrelevant", " trivial", " merely", " actually", " negligible", " manageable", " harmless", " easy"], [" irrelevant", " merely", " trivial", " manageable", " actually", " negligible", " simply", " easy"], [" irrelevant", " manageable", " trivial", " just", " merely", " negligible", " easy", " actually"], [" irrelevant", " manageable", " trivial", " negligible", " actually", " easy", " just", " merely"], [" irrelevant", " trivial", " manageable", " actually", " merely", " just", " negligible", " hygiene"], [" just", " irrelevant", " trivial", " actually", " manageable", " merely", " easy", " hygiene"], [" just", " irrelevant", " trivial", " actually", " manageable", " easy", " merely", " easily"], [" trivial", " just", " irrelevant", " actually", " manageable", " free", " merely", " fine"]], "p": [[0.9367, 0.0599, 0.0018, 0.0005, 0.0003, 0.0001, 0.0001, 0.0001], [0.7658, 0.0807, 0.0432, 0.0336, 0.0159, 0.0159, 0.0075, 0.0058], [0.6314, 0.1097, 0.0587, 0.0518, 0.0518, 0.0404, 0.0131, 0.0102], [0.3465, 0.1057, 0.0933, 0.0602, 0.0365, 0.0365, 0.0267, 0.0267], [0.7871, 0.1207, 0.0185, 0.0112, 0.0099, 0.0099, 0.0087, 0.0047], [0.6558, 0.1463, 0.061, 0.0198, 0.0154, 0.0136, 0.0094, 0.0083], [0.6529, 0.0688, 0.0607, 0.0368, 0.0325, 0.0253, 0.0253, 0.0174], [0.3613, 0.2483, 0.0712, 0.0554, 0.0381, 0.0336, 0.0297, 0.0231], [0.2456, 0.2456, 0.0797, 0.0797, 0.0621, 0.0548, 0.0427, 0.0259], [0.1495, 0.1319, 0.1027, 0.1027, 0.1027, 0.0623, 0.0485, 0.0428], [0.3395, 0.1102, 0.059, 0.059, 0.0521, 0.0521, 0.0521, 0.0459], [0.2638, 0.16, 0.16, 0.0804, 0.071, 0.038, 0.0203, 0.0158], [0.2707, 0.186, 0.106, 0.0935, 0.0567, 0.0366, 0.0304, 0.0268], [0.2653, 0.1511, 0.1177, 0.1106, 0.0917, 0.028, 0.0141, 0.0109], [0.3317, 0.2928, 0.2012, 0.024, 0.0212, 0.0146, 0.0047, 0.0039], [0.5063, 0.1983, 0.1202, 0.0222, 0.0173, 0.0064, 0.0039, 0.0039], [0.2856, 0.0769, 0.0722, 0.0387, 0.0194, 0.0172, 0.0104, 0.0076], [0.0746, 0.0546, 0.0482, 0.0399, 0.0242, 0.0189, 0.013, 0.013], [0.0645, 0.0391, 0.0237, 0.021, 0.021, 0.0144, 0.0127, 0.0127], [0.0598, 0.0207, 0.0207, 0.0207, 0.0133, 0.0118, 0.0104, 0.0104], [0.0116, 0.0102, 0.009, 0.008, 0.0075, 0.0066, 0.0062, 0.0062], [0.02, 0.0129, 0.0078, 0.0069, 0.0061, 0.0047, 0.0045, 0.0039], [0.0727, 0.0105, 0.0105, 0.0098, 0.0087, 0.0082, 0.0068, 0.006], [0.0296, 0.014, 0.0085, 0.008, 0.0075, 0.007, 0.0066, 0.0062], [0.0639, 0.0439, 0.0162, 0.0152, 0.0126, 0.0111, 0.0081, 0.0081], [0.0364, 0.0207, 0.0152, 0.0152, 0.0111, 0.0086, 0.0072, 0.0072], [0.0213, 0.02, 0.0188, 0.01, 0.01, 0.0094, 0.0089, 0.0083], [0.0648, 0.0254, 0.0211, 0.0154, 0.0154, 0.0136, 0.0136, 0.0128], [0.0312, 0.0275, 0.0201, 0.0201, 0.0189, 0.0189, 0.0157, 0.0147], [0.0617, 0.0291, 0.0213, 0.0188, 0.0177, 0.0166, 0.0138, 0.0129], [0.055, 0.0378, 0.0334, 0.0244, 0.0244, 0.0215, 0.019, 0.0148], [0.0707, 0.0429, 0.0379, 0.0356, 0.023, 0.0158, 0.0158, 0.0148], [0.0484, 0.0354, 0.0332, 0.0312, 0.0157, 0.0157, 0.0139, 0.0139], [0.0388, 0.0284, 0.0251, 0.0236, 0.0208, 0.0183, 0.0172, 0.0152], [0.044, 0.0342, 0.0235, 0.0221, 0.0195, 0.0183, 0.0172, 0.0143], [0.0539, 0.0507, 0.0348, 0.0289, 0.0271, 0.0198, 0.0175, 0.0164], [0.0612, 0.0308, 0.0289, 0.024, 0.024, 0.0187, 0.0155, 0.0145], [0.0532, 0.0343, 0.0285, 0.0267, 0.0196, 0.0162, 0.0162, 0.0152], [0.0415, 0.0236, 0.0236, 0.0184, 0.0173, 0.0153, 0.0126, 0.0126], [0.0293, 0.0275, 0.0258, 0.0167, 0.0157, 0.0147, 0.0122, 0.0115], [0.0237, 0.0237, 0.0222, 0.0184, 0.0163, 0.0144, 0.0099, 0.0099], [0.0258, 0.0243, 0.0201, 0.0189, 0.0147, 0.0138, 0.013, 0.013], [0.0257, 0.0213, 0.0213, 0.0177, 0.0147, 0.0147, 0.0114, 0.0107], [0.0669, 0.0521, 0.0246, 0.0192, 0.0116, 0.0116, 0.0116, 0.0103], [0.0575, 0.0255, 0.024, 0.0199, 0.0155, 0.0155, 0.0145, 0.0128], [0.0354, 0.0259, 0.0244, 0.0244, 0.0215, 0.0167, 0.0148, 0.013], [0.0643, 0.0252, 0.0173, 0.0163, 0.0163, 0.0153, 0.0135, 0.0112], [0.0911, 0.0179, 0.0149, 0.0131, 0.0123, 0.0123, 0.0109, 0.0096], [0.234, 0.028, 0.0192, 0.015, 0.0132, 0.0117, 0.0097, 0.0097], [0.1002, 0.0688, 0.0688, 0.0504, 0.0418, 0.0368, 0.0346, 0.027], [0.5258, 0.1173, 0.1035, 0.0489, 0.0489, 0.0297, 0.0231, 0.0085], [0.2375, 0.185, 0.1122, 0.068, 0.0468, 0.0388, 0.0321, 0.0195], [0.6072, 0.1196, 0.0725, 0.064, 0.0267, 0.0235, 0.0126, 0.0111], [0.2868, 0.2234, 0.1971, 0.0565, 0.0498, 0.0302, 0.0162, 0.0143], [0.684, 0.1189, 0.0926, 0.0265, 0.0182, 0.0125, 0.0052, 0.0052], [0.9536, 0.0136, 0.0106, 0.0064, 0.0039, 0.0027, 0.0014, 0.0008], [0.868, 0.049, 0.0297, 0.0096, 0.0075, 0.0058, 0.0035, 0.0026], [0.653, 0.078, 0.0688, 0.0253, 0.0197, 0.0174, 0.0154, 0.0144], [0.6045, 0.1732, 0.0386, 0.0234, 0.0234, 0.0234, 0.0183, 0.0104], [0.5262, 0.1936, 0.0712, 0.0555, 0.0262, 0.0169, 0.0132, 0.0103], [0.48, 0.2267, 0.1071, 0.0394, 0.0394, 0.0175, 0.0128, 0.006], [0.5146, 0.1671, 0.1013, 0.0789, 0.0373, 0.0137, 0.0078, 0.0047], [0.2451, 0.2451, 0.2163, 0.0902, 0.0702, 0.0101, 0.0095, 0.0084]], "ranks": {"Kotlin": [171167, 94530, 91367, 23343, 35550, 35257, 66637, 105460, 142416, 169781, 149733, 140520, 115829, 120438, 193467, 130584, 110433, 80334, 96060, 168389, 195530, 155428, 169393, 195358, 192444, 146317, 124537, 165183, 135980, 121793, 137431, 146116, 176312, 188992, 187097, 152844, 150486, 157739, 150097, 171694, 165192, 134491, 112808, 109395, 103955, 98897, 98650, 75513, 80145, 113971, 92272, 111097, 96225, 59059, 81909, 51815, 49525, 49467, 38363, 28082, 16755, 6498, 7441]}}, {"pos": 448, "top": [[",", ".", "\u2013", " \u2013", "y", ";", "-", "@"], ["\u2013", " \u2013", "\u2013and", ",", " very", "kids", " kids", " pretty"], ["\u2013", ",", ".", "\u2026", " \u2013", "\u2013and", ";", ".."], [" veggies", " Pubbl", "erias", " Hidal", " Blowjob", " Shemale", " milfs", " Geile"], [" kids", ",", " Aussie", ".", "couldn", " crazy", " gonna", "ively"], [" veggies", " Aussie", "couldn", " crazy", " kids", " gotta", "kids", " gonna"], ["couldn", " crazy", " kids", "--", " gotta", "!!", " veggies", " nasty"], [" veggies", "ively", " gotta", "couldn", " comfy", " freaking", " kinda", " gonna"], [" veggies", " kids", " gotta", "couldn", ".pretty", " pretty", "pretty", " kinda"], [" kids", "couldn", " pretty", " veggies", " kinda", " busted", "!\\", " gotta"], [" kids", " pretty", " getting", " gonna", " tweaked", " gotta", "!\\", "(!"], [" kids", " veggies", " pretty", " freaking", " comfy", " folks", " gonna", " busted"], [" veggies", " kids", " comfy", " freaking", " pretty", " gonna", " gotta", " kinda"], [" kids", " veggies", " pretty", " freaking", " comfy", " vibes", " stuff", " goodies"], [" kids", " pretty", " stuff", " busted", " goodies", " comfy", " folks", " freaking"], [" kids", " freaking", " comfy", " veggies", " guys", " vibes", " tweaking", " scary"], [" kids", " veggies", " freaking", " comfy", " skinny", " tweaking", "kids", " pretty"], [" veggies", " comfy", " kids", " tweaking", " freaking", "kids", " gotta", " vibes"], [" comfy", " veggies", " freaking", " crappy", " tweaking", " kids", " gotta", "kids"], [" comfy", " veggies", "kids", " freaking", " kids", " tweaking", " gotta", " crappy"], [" comfy", " kids", "kids", " tweaking", " freaking", " veggies", " tweaked", " crappy"], [" comfy", " veggies", " ;;^", " freaking", " kids", " booze", " crappy", " tweaking"], [" comfy", " freaking", " tweaking", " veggies", " kids", " ''", " booze", " crappy"], [" ''", " tweaking", " comfy", " kids", " booze", " stuff", " tweaked", " bigger"], [" comfy", " tweaking", " booze", " pricey", " busted", " tweaked", " crappy", " veggies"], [" comfy", " booze", " veggies", " tweaking", " junk", " crappy", " pricey", " freaking"], [" tweaking", " junk", " comfy", " booze", " crappy", " pricey", " stuff", " weird"], [" tweaking", " junk", " stuff", " booze", " pricey", " bigger", " barely", " weird"], [" tweaking", " junk", " booze", " cheap", " pricey", " crappy", " gritty", " stuff"], [" cheap", " tweaking", " junk", " bigger", " stuff", " tweaks", " booze", " weird"], [" cheap", " just", " big", " tweaking", " stuff", " pretty", " bigger", " barely"], [" just", " cheap", " big", " pretty", " bigger", " stuff", " barely", " really"], [" just", " cheap", " barely", " big", " tweaking", " bigger", " pretty", " \\\""], [" cheap", " tech", " tweaking", " just", " tweaks", " barely", " bigger", " weird"], [" cheap", " tech", " tweaking", " tweaks", " hardware", " crappy", " tweak", " weird"], [" cheap", " tech", " tweaking", " tweaks", " crappy", " cheaper", " hardware", " tweak"], [" cheap", " tech", " crappy", " tweaking", " cheaper", " inconvenient", " tweaks", " sloppy"], [" cheap", " crappy", " cheaper", " tweaking", " tech", " tweaks", " inconvenient", " sloppy"], [" cheap", " crappy", " cheaper", " tweaking", " inconvenient", " mundane", " logistical", " tech"], [" cheap", " crappy", " tweaking", " cheaper", " tech", " hardware", "cheap", " logistical"], [" cheap", " tech", " cheaper", " crappy", " hardware", " tweaking", "cheap", " logistical"], [" cheap", " cheaper", " hardware", " crappy", " logistical", " tweaking", " tech", " cost"], [" cheap", " hardware", " logistical", " crappy", " cheaper", " mundane", " tweaking", " nasty"], [" cheap", " logistical", " hardware", " logistics", " cheaper", " mundane", " inconvenience", " infrastructure"], [" cheap", " logistical", " cheaper", " cost", " mundane", " hardware", " logistics", " inconvenience"], [" cheap", " logistical", " merely", " mundane", " cheaper", " inconvenience", " logistics", " mere"], [" cheap", " logistical", " merely", " inconvenience", " cheaper", " mundane", " mere", " trivial"], [" cheap", " logistical", " inconvenience", " cheaper", " mundane", " merely", " mere", "cheap"], [" cheap", " logistical", " inconvenience", " cheaper", " cost", " logistics", "cheap", " mundane"], [" cheap", " logistical", " inconvenience", "cheap", "\u6210\u672c\u4f4e", " logistics", " cheaper", " hassle"], [" logistical", " cheap", " inconvenience", "\u6210\u672c\u4f4e", "cheap", " inconven", " inconvenient", " logistics"], [" logistical", " cheap", " inconvenience", "\u6210\u672c\u4f4e", "cheap", " inconven", " cheaper", " inconvenient"], [" cheap", " logistical", " inconvenience", " cheaper", "cheap", " inconven", " inconvenient", "\u6210\u672c\u4f4e"], [" cheap", " cheaper", " logistical", " inconvenience", "cheap", "\u6210\u672c", " cost", "\u6210\u672c\u4f4e"], [" cheap", " cheaper", "cheap", " logistical", "\u6210\u672c\u63a7\u5236", "\u6210\u672c", " cost", "\u6210\u672c\u4f4e"], [" cheap", " cheaper", "\u7701\u94b1", " cost", "\u6210\u672c", " logistical", "\u8d2b\u7a77", " inconvenience"], [" cheap", " cheaper", "\u8d2b\u7a77", " cost", "\u7701\u94b1", "\u6210\u672c", " boring", " automation"], [" cheap", " money", " cost", " cheaper", "\u6210\u672c", "\u8d2b\u7a77", "\u7701\u94b1", "cost"], [" cost", " cheap", " money", " cheaper", "\u6210\u672c", "cost", " logistics", " logistical"], [" cost", " cheap", " logistics", " logistical", " boring", " money", " cheaper", " infrastructure"], [" cost", " logistics", " cheap", " logistical", " boring", " infrastructure", " money", " annoying"], [" logistics", " cheap", " cost", " logistical", " boring", " painful", " tedious", " infrastructure"], [" logistics", " cost", " boring", " cheap", " logistical", " infrastructure", " CI", " slow"]], "p": [[0.415, 0.415, 0.1189, 0.0301, 0.0032, 0.0023, 0.0013, 0.0012], [0.2005, 0.0693, 0.0507, 0.0175, 0.0113, 0.005, 0.005, 0.005], [0.4197, 0.4197, 0.1203, 0.0119, 0.0072, 0.0068, 0.0014, 0.0014], [0.0049, 0.0038, 0.0026, 0.0025, 0.0022, 0.0022, 0.0019, 0.0018], [0.0522, 0.0382, 0.0359, 0.017, 0.015, 0.0141, 0.0141, 0.0141], [0.0573, 0.0307, 0.0271, 0.0225, 0.0175, 0.0128, 0.012, 0.0088], [0.0733, 0.0287, 0.0253, 0.021, 0.0197, 0.0163, 0.0154, 0.012], [0.0791, 0.0241, 0.0213, 0.0166, 0.0137, 0.0129, 0.0114, 0.0107], [0.0395, 0.0328, 0.0255, 0.024, 0.0225, 0.0225, 0.0212, 0.0187], [0.016, 0.0141, 0.0125, 0.011, 0.0097, 0.0097, 0.0086, 0.008], [0.0477, 0.0289, 0.0165, 0.0145, 0.0137, 0.0137, 0.0137, 0.0121], [0.0605, 0.0472, 0.0443, 0.0345, 0.0269, 0.0163, 0.0153, 0.0135], [0.0964, 0.0623, 0.0623, 0.0585, 0.0428, 0.0276, 0.0229, 0.0215], [0.0977, 0.0631, 0.0557, 0.0491, 0.0434, 0.0263, 0.0192, 0.0192], [0.0729, 0.0415, 0.0268, 0.0209, 0.0209, 0.0196, 0.0184, 0.0153], [0.1137, 0.0288, 0.0224, 0.021, 0.0198, 0.0145, 0.0136, 0.0128], [0.0978, 0.0492, 0.0298, 0.0247, 0.0218, 0.0205, 0.017, 0.015], [0.067, 0.049, 0.0316, 0.0204, 0.0192, 0.0169, 0.0116, 0.0109], [0.084, 0.0654, 0.0397, 0.0187, 0.0176, 0.0155, 0.0146, 0.0121], [0.0434, 0.028, 0.0141, 0.0132, 0.0117, 0.0097, 0.0097, 0.008], [0.0305, 0.0287, 0.0253, 0.0253, 0.0144, 0.0136, 0.0112, 0.0099], [0.0169, 0.0124, 0.0103, 0.0096, 0.0071, 0.0058, 0.0058, 0.0052], [0.0314, 0.0179, 0.0131, 0.0131, 0.0123, 0.0123, 0.0109, 0.0075], [0.028, 0.0232, 0.0117, 0.0117, 0.0103, 0.0097, 0.0085, 0.008], [0.0318, 0.0264, 0.0141, 0.0103, 0.0076, 0.0071, 0.0071, 0.0067], [0.0399, 0.0227, 0.0138, 0.0138, 0.0122, 0.0122, 0.0079, 0.0079], [0.0254, 0.0254, 0.0211, 0.0186, 0.0113, 0.0113, 0.0093, 0.0073], [0.0359, 0.017, 0.0132, 0.011, 0.0103, 0.0097, 0.0091, 0.0091], [0.0405, 0.0246, 0.0169, 0.0159, 0.0149, 0.0096, 0.009, 0.0075], [0.0612, 0.0575, 0.0395, 0.0272, 0.0199, 0.0155, 0.0145, 0.0128], [0.0661, 0.0427, 0.0312, 0.0275, 0.0275, 0.0259, 0.0228, 0.0178], [0.1048, 0.0597, 0.0465, 0.0386, 0.032, 0.0282, 0.0206, 0.0182], [0.1456, 0.0473, 0.0223, 0.0144, 0.0144, 0.0135, 0.0105, 0.0105], [0.1299, 0.0788, 0.0396, 0.0329, 0.0212, 0.0176, 0.0176, 0.0129], [0.1162, 0.1026, 0.0585, 0.0276, 0.0157, 0.0108, 0.0108, 0.0095], [0.4918, 0.0803, 0.0314, 0.023, 0.0158, 0.0149, 0.0123, 0.0085], [0.6298, 0.0244, 0.0202, 0.019, 0.0108, 0.0084, 0.0084, 0.0084], [0.6581, 0.0225, 0.0155, 0.0137, 0.0128, 0.0083, 0.0073, 0.0069], [0.6759, 0.0204, 0.0132, 0.0124, 0.0103, 0.0062, 0.0062, 0.0062], [0.7364, 0.0196, 0.0112, 0.0112, 0.0099, 0.0077, 0.0068, 0.006], [0.8137, 0.0169, 0.0116, 0.0109, 0.0102, 0.0062, 0.0058, 0.004], [0.7472, 0.0155, 0.0146, 0.0129, 0.01, 0.01, 0.0078, 0.0061], [0.5953, 0.0246, 0.0217, 0.014, 0.014, 0.0132, 0.0124, 0.0124], [0.5964, 0.0669, 0.0279, 0.0169, 0.0159, 0.0132, 0.0109, 0.0085], [0.7668, 0.0246, 0.014, 0.0124, 0.0097, 0.008, 0.0071, 0.0052], [0.7351, 0.0303, 0.0268, 0.0222, 0.0112, 0.0077, 0.0068, 0.006], [0.7952, 0.0212, 0.0165, 0.0121, 0.0121, 0.0094, 0.0088, 0.0047], [0.8626, 0.0158, 0.0148, 0.0096, 0.009, 0.007, 0.0045, 0.0035], [0.7581, 0.0622, 0.0229, 0.0167, 0.0095, 0.0079, 0.0079, 0.0074], [0.5074, 0.2115, 0.0368, 0.0185, 0.0185, 0.0127, 0.0119, 0.0068], [0.3668, 0.1963, 0.0818, 0.0283, 0.022, 0.0151, 0.0151, 0.0118], [0.2095, 0.1121, 0.1121, 0.0342, 0.0302, 0.025, 0.0152, 0.0126], [0.2658, 0.1422, 0.0863, 0.0383, 0.0317, 0.0263, 0.015, 0.0141], [0.4413, 0.0767, 0.0465, 0.041, 0.0362, 0.0206, 0.0194, 0.0171], [0.5199, 0.116, 0.0377, 0.0293, 0.0157, 0.0147, 0.0147, 0.013], [0.351, 0.1291, 0.0538, 0.0307, 0.0254, 0.0254, 0.0224, 0.0186], [0.398, 0.114, 0.0888, 0.0327, 0.0225, 0.0164, 0.0136, 0.0136], [0.4332, 0.0853, 0.0853, 0.0664, 0.0356, 0.0216, 0.019, 0.0168], [0.3322, 0.2283, 0.0741, 0.0509, 0.0397, 0.0309, 0.0273, 0.0129], [0.4489, 0.0884, 0.0884, 0.0607, 0.0325, 0.0223, 0.0197, 0.0197], [0.1962, 0.1528, 0.105, 0.0678, 0.0598, 0.0438, 0.0266, 0.0194], [0.1694, 0.1694, 0.1027, 0.0751, 0.0623, 0.0294, 0.0215, 0.019], [0.2876, 0.0877, 0.0877, 0.0774, 0.0603, 0.0268, 0.0184, 0.0162]], "ranks": {"Kotlin": [198497, 182682, 147108, 42745, 46135, 44323, 83716, 128987, 155810, 210189, 183627, 158950, 95532, 108829, 182327, 66744, 79125, 59851, 37313, 47048, 127319, 77835, 85851, 164546, 106752, 46387, 55100, 127941, 123983, 99740, 167999, 182017, 195951, 119919, 140616, 104074, 112124, 105002, 106794, 97227, 96128, 104493, 76459, 88837, 77520, 95847, 62261, 59930, 77960, 93516, 86588, 69738, 69080, 32581, 33172, 14696, 14380, 12140, 10397, 12441, 7336, 9264, 7067]}}, {"pos": 449, "top": [[".", ",", "\u2013", ";", " \u2013", ",.", "\u00a0\u00a0", "\u00a0"], [" \u2013", "\u2013", ".", "\u2013and", " \u200b\u200b", ",", ";", ",."], [".", "\u2013", ",", " \u2013", "\u2026.", "\u2026..", "\u2026", ";"], [" milfs", " Shemale", " pornstar", " Guta", " Blowjob", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " cumshot", " Geile"], [".@", " @", " @_", "@d", " (@", "@a", " \"@", "(@"], [" \u200b\u200b", "\u2026.", "!.", "\u2026..", "\u7fe1", ".", "\u062c\u0631\u062f", "!:"], ["!", "!\"", ".@", " @", "\u2026.", "  \n\n", " nasty", " crazy"], [" veggies", " *@", "@a", ".@", " pretty", " nasty", " kinda", " @"], ["!.", " *@", "!,", "   \n\n", "!\u201d.", "(@", "!:", " pretty"], [",", "!,", " pretty", " fancy", "!.", " folks", " bigger", "!\""], [" ", ",", " @", ".", "...", "@", "\u00a0", "!"], [" bigger", " pretty", " weird", " big", " fancy", " pricey", " stuff", " veggies"], [" bigger", " big", " pretty", " veggies", " weird", " nice", " kids", " stuff"], [" bigger", " big", " pretty", " weird", " kids", " nice", " tricks", " stuff"], [" big", " bigger", " pretty", " savvy", " folks", " kids", " stuff", " flashy"], [" kids", " bigger", " folks", " big", " goofy", " savvy", " tricks", " pretty"], [" big", " bigger", " pretty", " kids", " weird", " tweaks", " nasty", " tricky"], [" bigger", " tweaks", " big", " nasty", " tricks", " tricky", " tweaking", " tweak"], [" tweaks", " nasty", " tweak", " booze", " bigger", " tweaking", " comfy", " tricks"], [" tweaks", " bigger", " tweaking", " tweak", " pricey", " booze", " big", " savvy"], [" tweaking", " tweaks", " bigger", " tweak", " pricey", " tweaked", " folks", " booze"], [" tweaks", " bigger", " booze", " tweak", " tweaking", " flashy", " stuff", " pricey"], [" bigger", " tweaks", " tweaking", " tweak", " booze", " flashy", " stuff", " pricey"], [" bigger", " tweaking", " tweaks", " big", " stuff", " cheap", " tweak", " tech"], [" bigger", " tweaking", " tweaks", " tweak", " tech", " cheap", " booze", " pricey"], [" bigger", " tech", " tweaks", " tweaking", " cheap", " tweak", " booze", " reboot"], [" tech", " bigger", " cheap", " tweaks", " tweaking", " hacker", " infrastructure", " hardware"], [" tech", " cheap", " bigger", " tweaking", " big", " tools", " stuff", " tweaks"], [" tech", " cheap", " tweaks", " tweaking", " tools", " infrastructure", " hardware", " reboot"], [" tech", " cheap", " tweaks", " tools", " infrastructure", " hardware", " tweaking", " stuff"], [" tech", " cheap", " stuff", " tools", " tweaks", " big", " .", " work"], [" tech", " cheap", " work", " big", " system", " technology", " tools", " stuff"], [" tech", " work", " cheap", " power", " .", " big", " hard", " system"], [" tech", " infrastructure", " tweaks", " logistics", " cheap", " technology", " hardware", " tools"], [" tech", " tweaks", " logistics", " infrastructure", " logistical", " tweaking", " tweak", " cheap"], [" tech", " cheap", " tweaks", " logistics", " tweak", " logistical", " infrastructure", " tweaking"], [" cheap", " tech", " tweaks", " cheaper", " logistics", " logistical", " infrastructure", " tweaking"], [" cheap", " cheaper", " tech", " tweaks", " cost", " logistical", " logistics", " infrastructure"], [" cheap", " logistical", " logistics", " cheaper", " tweaks", " cost", " tech", " budget"], [" cheap", " logistical", " tech", " logistics", " tweaks", " hardware", " technical", " infrastructure"], [" cheap", " tech", " logistical", " logistics", " hardware", " technical", " infrastructure", " cost"], [" cheap", " logistical", " logistics", " tech", " hardware", " cost", " infrastructure", " technical"], [" logistical", " cheap", " logistics", " hardware", " technical", " tools", " infrastructure", " tech"], [" logistical", " logistics", " cheap", " technical", " cost", " infrastructure", " hardware", " tools"], [" cheap", " logistical", " cost", " logistics", " technical", " problems", " tools", " problem"], [" logistical", " cheap", " logistics", " technical", " cost", " problems", " problem", " tools"], [" logistical", " cheap", " logistics", " technical", " cost", " problem", " infrastructure", " constraint"], [" logistical", " cheap", " logistics", " cost", " technical", " constraint", " tools", " inconvenience"], [" logistical", " cheap", " logistics", " cost", " technical", " constraint", " tool", " inconvenience"], [" logistical", " cheap", " logistics", " inconvenience", " cost", " constraint", "\u5012\u903c", " cheaper"], [" logistical", " inconvenience", " logistics", " cheap", " inconven", "\u5012\u903c", "\u6210\u672c\u4f4e", " nuisance"], [" logistical", " inconvenience", " inconven", " logistics", " constraint", " bottleneck", "constraint", " nuisance"], [" logistical", " inconvenience", " bottleneck", " constraint", " inconven", " logistics", " cheap", " constraints"], [" logistical", " inconvenience", " constraint", " bottleneck", " logistics", " cheap", " constraints", " distraction"], [" logistical", " constraint", " inconvenience", " bottleneck", " logistics", " distraction", " constraints", "constraint"], [" logistical", " inconvenience", " bottleneck", " constraint", " logistics", " distraction", " inconven", " annoyance"], [" inconvenience", " logistical", " bottleneck", " constraint", " distraction", " annoyance", " workflow", " cost"], [" logistical", " deployment", " logistics", " cost", " inconvenience", " bottleneck", "\u6210\u672c", " constraint"], [" cost", " logistical", " logistics", " deployment", "\u6210\u672c", " bottleneck", " inconvenience", " symptom"], [" logistical", " logistics", " cost", " deployment", " symptom", " pipeline", " logistic", "\u6210\u672c"], [" logistical", " logistics", " cost", " deployment", " symptom", " hygiene", " bottleneck", " logistic"], [" logistical", " cost", " logistics", " deployment", " symptom", " bottleneck", " bandwidth", " logistic"], [" logistical", " logistics", " cost", " deployment", " symptom", " logistic", " bottleneck", " build"]], "p": [[0.8562, 0.1313, 0.0065, 0.0017, 0.0015, 0.0005, 0.0004, 0.0003], [0.4743, 0.1858, 0.0196, 0.0098, 0.0044, 0.0041, 0.0028, 0.0026], [0.4738, 0.2874, 0.1057, 0.0727, 0.0208, 0.0126, 0.0098, 0.0032], [0.0082, 0.0068, 0.0053, 0.0046, 0.0044, 0.0036, 0.0025, 0.0018], [0.0715, 0.0263, 0.016, 0.0141, 0.0141, 0.0103, 0.0103, 0.0097], [0.0105, 0.0064, 0.0047, 0.0028, 0.0024, 0.0021, 0.0021, 0.0017], [0.0152, 0.0135, 0.0119, 0.0105, 0.0087, 0.0087, 0.0072, 0.0072], [0.0176, 0.0101, 0.0042, 0.0039, 0.0035, 0.0033, 0.0033, 0.0033], [0.0981, 0.0318, 0.016, 0.015, 0.0117, 0.0103, 0.0097, 0.0086], [0.0416, 0.0093, 0.0064, 0.0039, 0.0039, 0.0036, 0.0036, 0.0034], [0.0583, 0.0583, 0.0332, 0.0157, 0.0138, 0.0122, 0.0115, 0.0108], [0.0339, 0.0264, 0.016, 0.0125, 0.0117, 0.0086, 0.008, 0.0076], [0.0573, 0.0475, 0.0254, 0.0211, 0.0186, 0.0128, 0.0113, 0.0106], [0.066, 0.062, 0.0293, 0.0243, 0.0147, 0.0122, 0.0108, 0.0108], [0.0573, 0.0446, 0.0327, 0.0211, 0.0211, 0.0198, 0.0128, 0.0113], [0.0567, 0.039, 0.0323, 0.0303, 0.0236, 0.0222, 0.0153, 0.0126], [0.0913, 0.0589, 0.052, 0.0315, 0.0296, 0.0204, 0.0191, 0.0191], [0.0739, 0.0396, 0.0328, 0.0256, 0.0256, 0.024, 0.0226, 0.0176], [0.0559, 0.0339, 0.0299, 0.0281, 0.0248, 0.0206, 0.016, 0.016], [0.072, 0.0597, 0.0437, 0.03, 0.0234, 0.022, 0.0151, 0.0133], [0.1191, 0.1119, 0.0871, 0.0283, 0.0234, 0.0183, 0.0151, 0.0134], [0.0178, 0.0139, 0.0079, 0.0074, 0.0062, 0.0045, 0.0033, 0.0029], [0.0295, 0.0295, 0.0168, 0.0158, 0.009, 0.0062, 0.0058, 0.0048], [0.0888, 0.037, 0.0348, 0.0136, 0.0128, 0.012, 0.0094, 0.0073], [0.1172, 0.0627, 0.0488, 0.0231, 0.0159, 0.0123, 0.0123, 0.0116], [0.039, 0.039, 0.0367, 0.0184, 0.0163, 0.0144, 0.0135, 0.0093], [0.0705, 0.0378, 0.019, 0.019, 0.0148, 0.013, 0.0115, 0.0102], [0.0438, 0.0301, 0.022, 0.0161, 0.0118, 0.0104, 0.0098, 0.0092], [0.1025, 0.0427, 0.0259, 0.019, 0.0178, 0.0157, 0.013, 0.013], [0.1177, 0.0382, 0.0232, 0.0232, 0.0204, 0.0132, 0.0117, 0.0117], [0.1036, 0.0279, 0.0231, 0.0169, 0.0169, 0.0149, 0.0116, 0.0096], [0.0302, 0.0195, 0.0195, 0.0162, 0.0098, 0.0087, 0.0087, 0.0081], [0.0211, 0.0136, 0.0128, 0.0106, 0.0093, 0.0083, 0.0078, 0.0073], [0.2199, 0.0337, 0.0247, 0.0192, 0.017, 0.0124, 0.0117, 0.0103], [0.3246, 0.0413, 0.0266, 0.025, 0.0235, 0.0195, 0.0183, 0.0183], [0.2917, 0.1662, 0.0476, 0.0186, 0.0186, 0.0136, 0.0136, 0.012], [0.4356, 0.0972, 0.0262, 0.0246, 0.0159, 0.0159, 0.0085, 0.0085], [0.5721, 0.0389, 0.0268, 0.0208, 0.0152, 0.0105, 0.0092, 0.0087], [0.4252, 0.0448, 0.0289, 0.024, 0.0225, 0.0225, 0.0176, 0.0145], [0.2268, 0.0736, 0.0692, 0.0573, 0.037, 0.0254, 0.0211, 0.0186], [0.1747, 0.1747, 0.0728, 0.0684, 0.0415, 0.0366, 0.0344, 0.0173], [0.2314, 0.0965, 0.0706, 0.0623, 0.0428, 0.0333, 0.0276, 0.0244], [0.11, 0.0971, 0.0667, 0.0488, 0.0458, 0.0431, 0.0405, 0.0335], [0.2143, 0.0893, 0.0839, 0.0396, 0.0329, 0.029, 0.0272, 0.0272], [0.1682, 0.1156, 0.0846, 0.0746, 0.0425, 0.0258, 0.0258, 0.0214], [0.2285, 0.2285, 0.0742, 0.0397, 0.0373, 0.0137, 0.0137, 0.0121], [0.3081, 0.1869, 0.0687, 0.0346, 0.0223, 0.0112, 0.0105, 0.0093], [0.3291, 0.2563, 0.069, 0.0306, 0.0174, 0.0082, 0.0082, 0.0077], [0.5609, 0.1105, 0.067, 0.0246, 0.0103, 0.0103, 0.0075, 0.0059], [0.6369, 0.0977, 0.0461, 0.0132, 0.008, 0.008, 0.0055, 0.0055], [0.6577, 0.0448, 0.0211, 0.0175, 0.0175, 0.0073, 0.0064, 0.0053], [0.554, 0.075, 0.0167, 0.0167, 0.0139, 0.0101, 0.0095, 0.0074], [0.4348, 0.1099, 0.0335, 0.0261, 0.0216, 0.0179, 0.0158, 0.0149], [0.2366, 0.1435, 0.0678, 0.0528, 0.0438, 0.0283, 0.0249, 0.0207], [0.2484, 0.1935, 0.133, 0.0628, 0.0381, 0.0262, 0.0262, 0.0231], [0.2045, 0.1804, 0.1094, 0.0752, 0.0355, 0.019, 0.0123, 0.0108], [0.1493, 0.1026, 0.0905, 0.0377, 0.0244, 0.0215, 0.0202, 0.019], [0.2522, 0.2226, 0.1052, 0.0497, 0.0497, 0.0341, 0.0301, 0.0207], [0.24, 0.1869, 0.1456, 0.1134, 0.0535, 0.0253, 0.0253, 0.0253], [0.3197, 0.2197, 0.1939, 0.0916, 0.0297, 0.0124, 0.0091, 0.0085], [0.3075, 0.1865, 0.1453, 0.1282, 0.0472, 0.0144, 0.0144, 0.0135], [0.3095, 0.1656, 0.1656, 0.1005, 0.0609, 0.0198, 0.0145, 0.0128], [0.4161, 0.2524, 0.1052, 0.0638, 0.025, 0.0152, 0.0126, 0.0098]], "ranks": {"Kotlin": [205423, 163660, 153727, 21478, 28165, 69071, 144529, 191970, 143049, 201337, 195581, 114838, 58063, 104859, 168984, 63261, 104669, 27713, 31355, 70542, 136957, 66003, 56897, 173378, 111822, 37673, 60298, 137052, 120062, 84043, 85360, 135584, 193626, 69518, 86887, 62408, 53644, 59412, 60940, 63657, 68081, 83323, 65448, 94334, 80858, 108952, 63942, 82247, 89249, 99008, 121649, 67163, 86259, 57681, 49449, 26600, 26653, 24298, 20631, 19189, 10138, 14358, 10446]}}, {"pos": 450, "top": [[",", ".", "\u2013", ";", "-", " \u2013", "\u00a0", "?"], ["\u2013", ",", "\u00ad", ";", "  \n", ".", "\u2013and", "\u200b"], [",", ".", "\u2013", ";", "\u2026", "?", ":", "-"], [" St\u00e9ph", "spill", " Pubbl", " Strec", " Fortal", " Shemale", " Hidal", "ebrit"], [",", "ively", "est", "ually", "\u00ad", "\\$", ".", "ech"], [",", "ively", "itudes", "ually", "ingly", "fully", "lients", "spill"], ["\u20ac", "\\\"", "\u00a3", "ually", "  \n", ".\\\"", "itudes", "(\\\""], ["\u20ac", "ually", "(\\\"", "\\\"", ".\\\"", " \\\"$", " \\\"", "=\\\""], ["\u20ac", " \\\"$", "\\\"", "(\\\"", "ually", "=\\\"$", ".\\\"", " \\\""], ["\u00ad", ",", "\u20ac", "\\$", " \u00ad", "\u00a0", "\u2013", "\ufffd"], ["\u00a0", "\u00ad", ",", "\ufffd", "\u20ac", "\u2013", "\u00a3", " \u00ad"], [" labour", "lessly", "ually", " detriment", " utilisation", "Whilst", " favour", "\u20ac"], ["lessly", " detriment", "lessness", "-cost", "ually", " incurred", "urable", " expenditure"], [" detriment", "lessly", "lessness", "-cost", " expense", " utilisation", " affordability", "ually"], ["fully", "lessly", " detriment", " incurred", " expense", " benefit", "-cost", " cost"], [" affordability", " expense", " utilisation", " costs", "fully", " labour", " cost", "-cost"], ["less", " affordability", "lessly", " cost", "-cost", " costs", " expense", "fully"], ["-cost", "lessly", " costs", " profitability", " Costs", "urable", " expense", " affordability"], ["-cost", "lessly", "(cost", " costs", " Costs", "cost", "-wage", " expense"], ["(cost", "lessly", "-cost", "cost", " \\\"", " pricey", " cost", "fully"], ["-cost", "cost", "lessly", "fully", "(cost", "less", " cost", "\u00a3"], [" costs", "-cost", "lessly", " cost", "(cost", " \\\"", " Costs", "\u4ee3\u4ef7"], [" cost", " costs", "-cost", "(cost", " \\\"", "lessly", " Costs", "cost"], [" cost", " costs", "-cost", " \\\"", "cost", " expense", "(cost", " money"], [" cost", "-cost", " costs", "cost", " expense", "(cost", "Cost", " Costs"], [" costs", " cost", " expense", "-cost", " Costs", "(cost", " cheaper", " expenses"], [" costs", " cost", " expense", "-cost", " expenses", " Costs", " cheaper", " money"], [" cost", " costs", " expense", " money", " financial", " budget", " expenses", " cheaper"], [" costs", " cost", " expense", " budget", " money", " cheaper", " expenses", "-cost"], [" costs", " cost", " expense", " budget", " cheaper", " money", " expenses", "-cost"], [" costs", " cost", " budget", " cheaper", " expense", " money", " financial", " expenses"], [" costs", " cost", " cheaper", " money", " financial", " budget", " cheap", " expense"], [" cost", " costs", " cheaper", " budget", " cheap", " money", " financial", " expense"], [" costs", " cost", " cheaper", " budget", " cheap", "-cost", " expense", " budgets"], [" costs", " cost", " cheaper", " budget", " cheap", "-cost", " expense", " economics"], [" costs", " cost", " cheaper", " budget", " cheap", "-cost", " expense", "\u6210\u672c"], [" cheaper", " cost", " cheap", " costs", " budget", "-cost", "cheap", " budgets"], [" cost", " costs", " cheaper", " budget", " cheap", "-cost", "\u6210\u672c", " Costs"], [" cost", " costs", " cheaper", " budget", "-cost", "\u6210\u672c", " cheap", " Cost"], [" cost", " costs", "\u6210\u672c", "-cost", " budget", "cost", " Cost", " cheaper"], [" cost", " costs", "-cost", "\u6210\u672c", "cost", " Cost", " budget", " Costs"], [" cost", " costs", "-cost", "\u6210\u672c", " Cost", "cost", " budget", " Costs"], [" cost", " costs", "-cost", " budget", " Cost", "\u6210\u672c", " Costs", "cost"], [" cost", " costs", " budget", "-cost", " Cost", "\u6210\u672c", " Costs", "cost"], [" cost", " costs", " budget", "-cost", " Cost", " cheaper", " Costs", " costing"], [" cost", " costs", " budget", "-cost", " cheaper", " cheap", " Cost", " expense"], [" cost", " costs", " budget", " cheaper", "-cost", " cheap", " expense", " budgets"], [" cost", " costs", " budget", " cheaper", " cheap", "-cost", " expense", "cost"], [" costs", " cost", " budget", "-cost", " cheaper", " cheap", " expense", "cost"], [" costs", " cost", " budget", "-cost", " cheaper", "\u6210\u672c\u63a7\u5236", " cheap", " expense"], [" costs", " cost", "-cost", " budget", "\u6210\u672c", " cheaper", "cost", "(cost"], [" budget", "-cost", " cost", " cheaper", " costs", " cheap", "budget", "cheap"], [" cost", "-cost", " costs", "Cost", " budget", "\u6210\u672c", " cheap", "(cost"], [" savings", "(cost", "-cost", " cost", " cheap", "Cost", " budget", " costs"], [" savings", " constraint", "(cost", " optimization", " budget", "\u8282\u7ea6", " optimizations", " constraints"], [" savings", " saving", "\u8282\u7ea6", "-saving", " Savings", "\u8282\u7701", "saving", " saver"], [" savings", " saving", "\u8282\u7ea6", "-saving", " Savings", "\u8282\u7701", " saver", "saving"], [" savings", " saving", "-saving", " optimization", "\u8282\u7ea6", " Savings", " saver", "saving"], [" savings", " saving", "-saving", " optimization", " saver", "\u8282\u7ea6", " Savings", "saving"], [" optimization", " saving", " savings", "-saving", " saver", " optimizer", "\u4f18\u5316", " Optimization"], [" optimization", " saver", " saving", " savings", " optimizer", "-saving", " Optimization", "\u4f18\u5316"], [" optimization", " saver", " optimizer", " saving", " savings", "-saving", " center", " multiplier"], [" saver", " optimization", " center", " optimizer", " saving", " savings", "-saving", " multiplier"]], "p": [[0.6751, 0.2814, 0.0262, 0.0066, 0.0018, 0.0017, 0.0013, 0.001], [0.2259, 0.1653, 0.0287, 0.021, 0.0136, 0.0093, 0.0064, 0.006], [0.8276, 0.112, 0.0283, 0.0172, 0.003, 0.0021, 0.0009, 0.0005], [0.0038, 0.0022, 0.0017, 0.0016, 0.0015, 0.0015, 0.0014, 0.0012], [0.072, 0.0151, 0.0133, 0.0076, 0.0043, 0.0041, 0.0038, 0.0036], [0.0099, 0.0057, 0.0044, 0.0041, 0.0034, 0.0032, 0.0027, 0.0024], [0.0261, 0.023, 0.0158, 0.0139, 0.0096, 0.007, 0.007, 0.0062], [0.0401, 0.0276, 0.0229, 0.0178, 0.0157, 0.0148, 0.0122, 0.0115], [0.1093, 0.0378, 0.0229, 0.0202, 0.019, 0.0148, 0.0139, 0.0115], [0.028, 0.0205, 0.011, 0.0097, 0.0085, 0.0085, 0.008, 0.0075], [0.1268, 0.0563, 0.0387, 0.0321, 0.0301, 0.025, 0.0235, 0.0151], [0.0133, 0.0117, 0.0103, 0.0097, 0.0097, 0.0067, 0.0055, 0.0055], [0.0143, 0.0134, 0.0063, 0.006, 0.0053, 0.0044, 0.0041, 0.0032], [0.0137, 0.0107, 0.0061, 0.0061, 0.005, 0.0047, 0.0045, 0.0039], [0.0078, 0.0069, 0.0065, 0.0054, 0.0037, 0.0035, 0.0033, 0.0031], [0.0061, 0.0042, 0.0042, 0.0035, 0.0031, 0.0031, 0.0029, 0.0029], [0.0071, 0.0067, 0.0067, 0.0067, 0.0063, 0.0059, 0.0059, 0.0055], [0.0117, 0.0085, 0.0055, 0.0052, 0.0049, 0.0049, 0.0046, 0.004], [0.0227, 0.0188, 0.0146, 0.0129, 0.0094, 0.0065, 0.0057, 0.0054], [0.0211, 0.0211, 0.0175, 0.0113, 0.0083, 0.0078, 0.0073, 0.0068], [0.016, 0.016, 0.015, 0.0141, 0.0117, 0.011, 0.011, 0.0097], [0.0297, 0.0169, 0.0159, 0.0159, 0.015, 0.0109, 0.0109, 0.0066], [0.0946, 0.0692, 0.0271, 0.0198, 0.0198, 0.0164, 0.0136, 0.0113], [0.162, 0.0923, 0.0464, 0.0385, 0.0206, 0.0206, 0.0171, 0.011], [0.1341, 0.1183, 0.1112, 0.0633, 0.0559, 0.0435, 0.015, 0.0133], [0.3477, 0.0936, 0.0568, 0.0366, 0.0304, 0.0252, 0.0184, 0.0184], [0.4927, 0.16, 0.0519, 0.0261, 0.0216, 0.0158, 0.0149, 0.014], [0.4553, 0.3129, 0.0257, 0.0227, 0.0129, 0.0121, 0.0121, 0.0114], [0.3653, 0.3653, 0.034, 0.0234, 0.0182, 0.0133, 0.0117, 0.011], [0.4414, 0.184, 0.0411, 0.032, 0.0265, 0.0182, 0.0171, 0.0125], [0.4732, 0.1972, 0.0343, 0.0302, 0.0221, 0.0221, 0.0152, 0.0143], [0.3141, 0.3141, 0.0482, 0.0311, 0.0311, 0.0274, 0.0166, 0.0101], [0.3922, 0.2695, 0.0601, 0.0413, 0.0284, 0.0267, 0.0195, 0.0092], [0.361, 0.1705, 0.1034, 0.0627, 0.0336, 0.0261, 0.018, 0.0124], [0.2471, 0.2181, 0.1167, 0.0909, 0.0334, 0.0216, 0.0191, 0.0168], [0.2545, 0.1982, 0.1749, 0.0729, 0.0568, 0.0209, 0.0173, 0.0163], [0.316, 0.2172, 0.1493, 0.1162, 0.0799, 0.0108, 0.0084, 0.0066], [0.4965, 0.2345, 0.1108, 0.0462, 0.0317, 0.0103, 0.0091, 0.0071], [0.6668, 0.2165, 0.0293, 0.0228, 0.0108, 0.0095, 0.0084, 0.0051], [0.6984, 0.2267, 0.0164, 0.0128, 0.0078, 0.0068, 0.0053, 0.0053], [0.7665, 0.1938, 0.0085, 0.0066, 0.0046, 0.0046, 0.004, 0.0024], [0.7377, 0.2395, 0.0064, 0.003, 0.0027, 0.0023, 0.0021, 0.0016], [0.6864, 0.2861, 0.0076, 0.0046, 0.0022, 0.0019, 0.0017, 0.0017], [0.6286, 0.3365, 0.0102, 0.0062, 0.0033, 0.0023, 0.0023, 0.0023], [0.6641, 0.3137, 0.0065, 0.0035, 0.0021, 0.0016, 0.001, 0.0009], [0.7224, 0.2345, 0.017, 0.0049, 0.0038, 0.0026, 0.0026, 0.0018], [0.5724, 0.3472, 0.0415, 0.0072, 0.0064, 0.0039, 0.0034, 0.0021], [0.5602, 0.3398, 0.0316, 0.0169, 0.0149, 0.0091, 0.0038, 0.0029], [0.4339, 0.4339, 0.0404, 0.0314, 0.0168, 0.007, 0.0055, 0.0055], [0.3598, 0.3598, 0.091, 0.0625, 0.0261, 0.0123, 0.0123, 0.0096], [0.2703, 0.2386, 0.164, 0.0774, 0.0323, 0.0285, 0.0196, 0.0173], [0.1884, 0.1143, 0.089, 0.0612, 0.054, 0.0476, 0.042, 0.0255], [0.194, 0.194, 0.0809, 0.0556, 0.0556, 0.0491, 0.0491, 0.0433], [0.1929, 0.1703, 0.0804, 0.0626, 0.043, 0.043, 0.038, 0.0296], [0.2997, 0.1102, 0.0758, 0.059, 0.0521, 0.0246, 0.0217, 0.0204], [0.9053, 0.0398, 0.0213, 0.0114, 0.0101, 0.0069, 0.0015, 0.0012], [0.9419, 0.0251, 0.0105, 0.0092, 0.0056, 0.0026, 0.0026, 0.0008], [0.842, 0.0538, 0.037, 0.0326, 0.0106, 0.0094, 0.005, 0.0024], [0.7885, 0.1067, 0.0504, 0.0127, 0.0127, 0.0088, 0.0068, 0.0047], [0.4598, 0.2461, 0.2172, 0.0333, 0.0139, 0.0045, 0.0035, 0.0031], [0.838, 0.0473, 0.0417, 0.0287, 0.0253, 0.0093, 0.0018, 0.0011], [0.6604, 0.1892, 0.0422, 0.0422, 0.0199, 0.0121, 0.0037, 0.0025], [0.5236, 0.2183, 0.0552, 0.0487, 0.0295, 0.0261, 0.0191, 0.0191]], "ranks": {"Kotlin": [213747, 179895, 186819, 31325, 43040, 53051, 70887, 127469, 125708, 206085, 210391, 172682, 130071, 152983, 213612, 149646, 179024, 128830, 118890, 175949, 221109, 156792, 189075, 216067, 123175, 40675, 54399, 124200, 91882, 43748, 68784, 144592, 169424, 53267, 83878, 60720, 69976, 68464, 111379, 114399, 149437, 142267, 115197, 144054, 134849, 159661, 107872, 82833, 98524, 114753, 84278, 50385, 63544, 23601, 12735, 21734, 14269, 10785, 17864, 13107, 10263, 11599, 12006]}}, {"pos": 451, "top": [[".", ",", " ", " \u200b\u200b", ";", "\"", ":", "\u00a0\u00a0"], [" \u200b\u200b", "alyzer", " Harbor", " Center", " theater", " \u0218", " canceled", " Savior"], [" \u200b\u200b", ".", ",", "\u2026..", " (\u201e", "\u2026.", ":\"", " (\""], [" Blowjob", " cumshot", " Guta", " Shemale", " milfs", " Geile", " Counseling", " counseling"], ["\u0d4d\u0d1f", "ized", " theater", " counseling", " \u200b\u200b", " analyzer", " artifact", " modeling"], ["\u0d4d\u0d1f", " analyzer", "ized", " counseling", " Counseling", "ization", " Guta", " modeling"], ["\u0d4d\u0d1f", "  \n\n", " analyzer", " Optimization", "ized", " \u3010", " OPT", " optimization"], [" optimization", "\u0d4d\u0d1f", " utilization", " stabilization", " Optimization", "ization", "ally", " endeavors"], ["  \n\n", "  \n\n\n", "   \n\n", ".\u201d", "  \n    \n", " stabilization", "ally", "ization"], [" utilization", " strategic", " stabilization", " OPT", " enhancements", " rationale", " leveraging", "ally"], [" strategic", "  \n\n", " strategy", " optimization", " strategies", " enhancements", " strategically", " "], [" leveraging", " optimization", " strategic", " leverage", " stabilization", " strategy", " strategies", " utilization"], [" optimization", " leveraging", " strategic", " leverage", " stabilization", " strategy", " strategies", " optimized"], [" strategic", " optimization", " leveraging", " strategy", " leverage", " strategies", " stabilization", " optimized"], [" strategic", " strategy", " leveraging", " strategies", " strategically", " optimization", " leverage", " efforts"], [" leveraging", " strategic", " strategy", " leverage", " incentiv", " optimization", " enhancements", " targeting"], [" leveraging", " strategic", " strategy", " strategically", " leverage", " tweaks", " optimization", " targeting"], [" optimization", " leveraging", " strategy", " strategic", " tweaks", " Optimization", " optimizer", " leverage"], [" strategy", " tweaks", " strategic", " leveraging", " optimization", " efforts", " strategically", " strategies"], [" strategic", " leveraging", " strategy", " efforts", " tweaks", " strategically", " optimization", " effort"], [" efforts", " effort", " strategy", " strategically", " strategic", " largely", " myriad", " via"], [" strategy", " leveraging", " optimization", " tweaks", " goals", " strategic", " efforts", " optimizer"], [" leveraging", " efforts", " strategy", " strategic", " cost", " goals", " effort", " tweaks"], [" efforts", " strategy", " effort", " cost", " strategic", " strategically", " ,", " goals"], [" leveraging", " efforts", " strategy", " effort", " cost", " strategic", " budget", " economics"], [" leveraging", " optimization", " budget", " cost", " strategy", " costs", " economics", " pricing"], [" leveraging", " budget", " cost", " costs", " economics", " strategy", " optimization", " pricing"], [" cost", " budget", " strategy", " leveraging", " economics", " effort", " efforts", " costs"], [" cost", " budget", " strategy", " leveraging", " economics", " costs", " effort", " efforts"], [" budget", " cost", " strategy", " costs", " optimization", " economics", " leveraging", " investment"], [" .", " budget", " strategy", " cost", " costs", " optimization", " management", " .**"], [" .", " strategy", " cost", " management", " budget", " industry", " strategic", " work"], [" .", " cost", " budget", " strategy", " rather", " management", " costs", " ,"], [" cost", " budget", " strategy", " rather", " costs", " leveraging", " tweaks", " optimization"], [" budget", " strategy", " cost", " tweaks", " leveraging", " tech", " economics", " optimization"], [" tweaks", " strategy", "\u2014but", " budget", " rather", " but", " cost", " tweak"], ["\u2014but", " budget", " cost", " rather", " tweaks", " strategy", " costs", " but"], [" tweaks", " strategy", " cost", " budget", " rather", "\u2014but", " optimization", " tweaking"], [" cost", " tweaks", " strategy", " budget", " optimization", " rather", " costs", " tweaking"], [" strategy", " optimization", " tweaks", " cost", " budget", " tweaking", " tweak", " optimizations"], [" strategy", " cost", " optimization", " budget", " tweaks", " costs", " optimizing", " optimizations"], [" strategy", " cost", " optimization", " budget", " costs", " tweaks", " economics", " strategic"], [" strategy", " optimization", " cost", " budget", " costs", " tweaks", " economics", " savings"], [" strategy", " optimization", " cost", " budget", " tweaks", " costs", " strategic", " optimizations"], [" cost", " strategy", " optimization", " costs", " budget", " tweaks", " business", " economics"], [" cost", " strategy", " optimization", " rather", " budget", " tweaks", " costs", " irrelevant"], [" optimization", " tweaks", " strategy", " cost", " budget", " rather", " irrelevant", " tweak"], [" irrelevant", " rather", " optimization", " strategy", " cost", " tweaks", " insignificant", " budget"], [" irrelevant", " rather", " unrelated", ";", " tweaks", " strategy", " cost", " ignores"], [";", " irrelevant", ".;", ";**", ".", ";.", " rather", ".**"], [" irrelevant", ".", ".**", " ignores", "\u4e0d\u5f71\u54cd", " tweaks", " unrelated", "\u65e0\u5173"], [" irrelevant", ".**", " ignores", "\u4e0d\u5f71\u54cd", " ignored", " ignoring", "\u5ffd\u7565\u4e86", "."], [" irrelevant", " ignores", " ignoring", "\u4e0d\u5f71\u54cd", " ignored", "\u5ffd\u7565\u4e86", "\u5ffd\u7565", "\u65e0\u5173"], [" irrelevant", " ignores", " ignoring", " ignored", " distractions", ".", " disguised", " masking"], [" irrelevant", " distractions", " distraction", " ignores", " gimm", " masking", " ignoring", " disguised"], [" irrelevant", " gimm", " masking", " distraction", " distractions", " ignores", " nightmare", " tricks"], [" masking", " gimm", " distraction", " irrelevant", " nightmare", " distractions", "\u63a9\u76d6", "."], [" masking", " gimm", " distraction", " hiding", " irrelevant", " nightmare", " distractions", "\u63a9\u76d6"], [" masking", " distraction", " gimm", " tactic", " mask", " hiding", "\u63a9\u76d6", " masks"], [" masking", " gimm", " distraction", " tactic", " mask", " that", ".", " hiding"], [".", " masking", " that", " tactic", " distraction", " gimm", " mask", " hurdle"], [".", " that", ",", " tactic", " detail", " masking", " distraction", " hurdle"], [".", ",", " that", " tactic", " detail", ";", " distraction", " trap"]], "p": [[0.6995, 0.0947, 0.0271, 0.0239, 0.0106, 0.0088, 0.0078, 0.0057], [0.0174, 0.0099, 0.0077, 0.0077, 0.0068, 0.0064, 0.006, 0.0034], [0.3983, 0.0348, 0.0239, 0.0198, 0.012, 0.0053, 0.0053, 0.0042], [0.0498, 0.0183, 0.0134, 0.0092, 0.0092, 0.0087, 0.0067, 0.0053], [0.0135, 0.0126, 0.0112, 0.0077, 0.0068, 0.0068, 0.0064, 0.0064], [0.025, 0.0104, 0.0086, 0.0063, 0.0052, 0.0049, 0.0049, 0.0046], [0.0204, 0.0159, 0.0116, 0.0103, 0.0091, 0.0071, 0.0066, 0.0062], [0.0162, 0.0135, 0.0119, 0.0105, 0.0098, 0.0098, 0.0093, 0.0064], [0.2443, 0.0213, 0.0213, 0.0129, 0.0089, 0.0079, 0.0074, 0.0069], [0.0085, 0.0055, 0.0052, 0.0052, 0.0048, 0.0048, 0.0045, 0.0045], [0.0311, 0.0227, 0.0201, 0.0095, 0.0089, 0.0074, 0.0069, 0.0069], [0.0439, 0.0387, 0.025, 0.0134, 0.0118, 0.0111, 0.0104, 0.0086], [0.0482, 0.0311, 0.0214, 0.0189, 0.0167, 0.0122, 0.0122, 0.0114], [0.0378, 0.0355, 0.0313, 0.0244, 0.0148, 0.0131, 0.0123, 0.009], [0.0552, 0.043, 0.0335, 0.0148, 0.0139, 0.0109, 0.0102, 0.0085], [0.0832, 0.0326, 0.0174, 0.0145, 0.0113, 0.0106, 0.0088, 0.0088], [0.0531, 0.0322, 0.0302, 0.0126, 0.0126, 0.0092, 0.0087, 0.0081], [0.0361, 0.0339, 0.0318, 0.0233, 0.0219, 0.0125, 0.0125, 0.0125], [0.0365, 0.0285, 0.0236, 0.0236, 0.0184, 0.0111, 0.0087, 0.0087], [0.0233, 0.0233, 0.0219, 0.0219, 0.0193, 0.0125, 0.0086, 0.0076], [0.03, 0.0104, 0.0104, 0.0104, 0.0097, 0.0091, 0.0071, 0.0063], [0.0191, 0.0124, 0.0124, 0.0109, 0.0109, 0.0096, 0.009, 0.0066], [0.0244, 0.0229, 0.0203, 0.0123, 0.0108, 0.0102, 0.0096, 0.0084], [0.0465, 0.0206, 0.0206, 0.0194, 0.0118, 0.0086, 0.0086, 0.0076], [0.0919, 0.0383, 0.0218, 0.0218, 0.0193, 0.0117, 0.0091, 0.0085], [0.088, 0.039, 0.0252, 0.0252, 0.0252, 0.0237, 0.0222, 0.0163], [0.0802, 0.0587, 0.0551, 0.0403, 0.0356, 0.0203, 0.0203, 0.0168], [0.089, 0.042, 0.0371, 0.0289, 0.0211, 0.0211, 0.0198, 0.0198], [0.0986, 0.0678, 0.0496, 0.0301, 0.0265, 0.0234, 0.0161, 0.0125], [0.0845, 0.0658, 0.058, 0.0292, 0.0227, 0.0201, 0.0166, 0.013], [0.0925, 0.0597, 0.0527, 0.0527, 0.022, 0.0206, 0.0151, 0.0118], [0.0946, 0.0394, 0.0271, 0.0239, 0.0211, 0.0128, 0.0113, 0.01], [0.0789, 0.0542, 0.029, 0.0273, 0.0176, 0.0137, 0.0137, 0.0129], [0.0483, 0.0426, 0.0376, 0.0178, 0.0147, 0.0147, 0.0138, 0.013], [0.0465, 0.0362, 0.032, 0.032, 0.022, 0.0182, 0.0161, 0.0151], [0.0422, 0.0422, 0.0397, 0.0309, 0.0309, 0.0256, 0.0256, 0.0129], [0.0466, 0.0466, 0.0438, 0.0341, 0.032, 0.032, 0.0182, 0.0171], [0.0589, 0.052, 0.0405, 0.0405, 0.0381, 0.0262, 0.0246, 0.014], [0.0743, 0.0616, 0.0616, 0.0579, 0.0351, 0.0241, 0.02, 0.0188], [0.1327, 0.0756, 0.0667, 0.0627, 0.0405, 0.0203, 0.0158, 0.0149], [0.1598, 0.0855, 0.0755, 0.043, 0.038, 0.0179, 0.0168, 0.0149], [0.1554, 0.1372, 0.0537, 0.0537, 0.0347, 0.027, 0.0186, 0.0174], [0.2021, 0.1082, 0.0843, 0.0579, 0.0257, 0.0188, 0.0188, 0.0188], [0.1919, 0.1164, 0.0706, 0.0456, 0.0294, 0.0244, 0.0202, 0.0158], [0.1276, 0.1199, 0.0824, 0.0366, 0.0285, 0.0196, 0.0162, 0.0143], [0.0772, 0.0725, 0.0601, 0.0498, 0.0302, 0.0208, 0.0172, 0.0172], [0.0721, 0.0636, 0.0496, 0.0437, 0.0411, 0.0363, 0.0341, 0.0207], [0.1541, 0.0934, 0.0441, 0.0303, 0.0252, 0.0209, 0.0143, 0.0143], [0.4394, 0.2352, 0.0219, 0.016, 0.0086, 0.0076, 0.0076, 0.0071], [0.8316, 0.0414, 0.0173, 0.0134, 0.0134, 0.0087, 0.0056, 0.0021], [0.64, 0.0525, 0.0409, 0.0133, 0.0125, 0.011, 0.0086, 0.0067], [0.5987, 0.081, 0.0338, 0.0338, 0.017, 0.0132, 0.011, 0.011], [0.5395, 0.0644, 0.0416, 0.0391, 0.0185, 0.0153, 0.0144, 0.0127], [0.527, 0.0916, 0.0433, 0.0192, 0.0159, 0.0159, 0.0159, 0.0132], [0.3281, 0.0732, 0.057, 0.0536, 0.0473, 0.0444, 0.0174, 0.0163], [0.2755, 0.0894, 0.0742, 0.0742, 0.0479, 0.02, 0.0187, 0.01], [0.4266, 0.1079, 0.0615, 0.0577, 0.0212, 0.0212, 0.0107, 0.0089], [0.5302, 0.0921, 0.0921, 0.0281, 0.016, 0.016, 0.015, 0.0125], [0.6939, 0.0731, 0.0503, 0.021, 0.0163, 0.0119, 0.0105, 0.0077], [0.5899, 0.0798, 0.0427, 0.0333, 0.0259, 0.0202, 0.019, 0.0167], [0.3448, 0.1437, 0.0928, 0.0723, 0.0497, 0.0387, 0.022, 0.0161], [0.74, 0.1286, 0.021, 0.0154, 0.0144, 0.0082, 0.0073, 0.005], [0.9541, 0.0419, 0.0024, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001]], "ranks": {"Kotlin": [168739, 67869, 75054, 10156, 11146, 26160, 26806, 56961, 59301, 76191, 87885, 55788, 51161, 76716, 122139, 52216, 78405, 51688, 59989, 123805, 176138, 103559, 128244, 177541, 130612, 43340, 58252, 84660, 75432, 46474, 54468, 70654, 101912, 77784, 128115, 118116, 145226, 134339, 161564, 155395, 160517, 143265, 106172, 112538, 73641, 119215, 72552, 86471, 94361, 106262, 92322, 64893, 75436, 73609, 51956, 46451, 43308, 54430, 78026, 45840, 41136, 41519, 38995]}}, {"pos": 452, "top": [[".", " \u2013", ",", "\u2013", ";", "\u00a0\u00a0", "\u2026.", "\u00a0"], [" \u2013", "\u2013", "\u2013and", " \u2013,", " \u200b\u200b", " very", ",", "  \n"], ["\u2013", " \u2013", ",", ".", "\u2026..", "\u2026", "\u2013and", "\u2026."], [" milfs", "-------------</", " Shemale", " Blowjob", "----------</", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " ;;^", " pornstar"], ["\u65b0\u52a0\u5761", ":@", " Millennials", " (@", "\u2193\u2193", " cittadin", " tysi\u0119", "\uff20"], ["<|quad_end|>", "\u65b0\u52a0\u5761", " \u200b\u200b", "!:", "!\u201d.", "\u6cd5\u62c9", "fst", "arren"], ["  \n\n", " \n\n", "\n\n", "<|endoftext|>", "   \n\n", "  \n", "\uff01", "  \r\n\r\n"], ["  \n\n", "   \n\n", " \n\n", "    \n\n", "     \n\n", " \r\n\r\n", "<|quad_end|>", "       \n\n"], [" \n\n", "  \n\n", "   \n\n", "    \n\n", "     \n\n", "\t\n\n", "      \n\n", "\n\n"], ["  \n  \n", " \u00ad", " pricey", " hefty", "<|quad_end|>", "  \n\n", "\u2026but", "\u6ca1\u5565"], ["  \n\n", " though", " \n\n", " arguably", "  \n  \n", "   \n\n", "\u00a0", " \n  \n"], [" arguably", " pricey", "\u5750\u62e5", " anyways", "\u9760\u8c31", " uncomfort", " savvy", "\u9760\u8c31\u7684"], [" arguably", " pricey", " savvy", " anyways", " incredibly", " uncomfort", "\u9760\u8c31\u7684", " tweaks"], [" pricey", " arguably", " savvy", " tweaking", " tweaks", " hefty", "\u9760\u8c31\u7684", " effortlessly"], [" arguably", " albeit", " savvy", " pricey", " hefty", " effortlessly", " genuinely", " swiftly"], [" incredibly", " anyways", "\u62e5\u6709\u7740", " savvy", "\u51ed\u501f\u7740", " arguably", " folks", " tweaking"], [" incredibly", " arguably", " savvy", " folks", " tweaking", " effortlessly", " smarter", " anyways"], [" arguably", " savvy", " incredibly", " tweaking", " folks", " tweaks", " smarter", " anyways"], [" arguably", " incredibly", " savvy", " anyways", " tweaking", " folks", "\u5373\u4fbf\u5982\u6b64", " freaking"], [" arguably", "\u5373\u4fbf", " truly", " hugely", " incredibly", " genuinely", " ultimately", " albeit"], ["<|endoftext|>", " arguably", "\n\n", " truly", " genuinely", " ultimately", "\u5373\u4fbf", "Though"], [" arguably", " truly", " ultimately", " hugely", "\u5b9e\u5b9e\u5728\u5728", "\u5b9e\u5b9e\u5728\u5728\u7684", "\u5373\u4fbf\u5982\u6b64", " incredibly"], [" arguably", " truly", " ultimately", " genuinely", " hugely", " merely", " even", " utterly"], [" arguably", " truly", " ultimately", " even", " genuinely", " --", " merely", " just"], ["\n\n", "\r\n\r\n", "  \n\n", " \n\n", " \r\n\r\n", "\u5373\u4fbf", "   \n\n", " arguably"], ["\r\n\r\n", " pricey", "\u5373\u4fbf", "\r\n\n", " folks", " arguably", " \r\n\r\n", "\u5565"], [" arguably", " truly", " ultimately", " genuinely", " hugely", " pricey", " utterly", " myriad"], [" arguably", " ultimately", " truly", "\n\n", " genuinely", " hugely", " myriad", " utterly"], ["  \n\n", "\n\n", " arguably", " \n\n", " ultimately", " truly", "\r\n\r\n", " genuinely"], ["  \n\n", " \n\n", "\n\n", " ultimately", " arguably", " truly", "   \n\n", " even"], ["  \n\n", " \n\n", "\n\n", "<|endoftext|>", " just", " ultimately", " truly", " even"], [" just", "\n\n", "  \n\n", " ultimately", " .", " truly", " much", "<|endoftext|>"], [" truly", " ultimately", " just", " much", " actually", " essentially", " arguably", " even"], [" truly", " ultimately", " fundamentally", " essentially", "<|endoftext|>", " focused", " genuinely", "  \n\n"], [" truly", " fundamentally", " ultimately", " essentially", " genuinely", " focused", " relentlessly", "  \n\n"], [" truly", "<|endoftext|>", "  \n\n", " fundamentally", " relentlessly", " essentially", " ultimately", " relentless"], [" truly", " fundamentally", " relentlessly", " genuinely", " relentless", " essentially", " ultimately", "  \n\n"], [" truly", " fundamentally", " relentlessly", " genuinely", " relentless", " essentially", " ultimately", " focused"], [" truly", " fundamentally", " genuinely", " relentlessly", " relentless", " focused", " really", " focus"], [" truly", " fundamentally", " focus", " focused", " relentlessly", " genuinely", " relentless", "\u771f\u6b63"], [" truly", " focus", " fundamentally", " focused", " relentlessly", " relentless", " genuinely", " radically"], [" fundamentally", " focus", " truly", " focused", " relentlessly", " genuinely", " relentless", " focusing"], [" focus", " fundamentally", " truly", " focused", " focusing", " relentless", " relentlessly", " genuinely"], [" fundamentally", " focus", " truly", " focused", " relentless", " dramatically", " relentlessly", " serious"], [" focus", " fundamentally", " truly", " focused", " relentless", " focusing", " serious", " problems"], [" focus", " fundamentally", " truly", " focused", " problems", " worse", " focusing", " relentless"], [" focus", " fundamentally", " truly", " focused", "  \n\n", " crucial", "focus", " serious"], [" focus", "  \n\n", " fundamentally", " truly", " focused", " focusing", " \n\n", " Focus"], [" **", " focus", " fundamentally", "  \n\n", " truly", "\u53ef\u6015\u7684\u662f", " glaring", "\u5173\u952e\u5728\u4e8e"], [" **", " focus", "\u554f\u984c\u306f", "  \n\n", ";**", "focus", "\u53ef\u6015\u7684\u662f", "\u5173\u952e\u5728\u4e8e"], ["\u554f\u984c\u306f", ";**", " **", "\u5173\u952e\u5728\u4e8e", "\u5173\u952e\u662f", " focus", "\u7684\u95ee\u9898\u662f", " \ubb38\uc81c\ub294"], [";**", " **", "\u554f\u984c\u306f", "\u7684\u95ee\u9898\u662f", "\u5173\u952e\u662f", "\u5173\u952e\u5728\u4e8e", "\u95ee\u9898\u662f", " \ubb38\uc81c\ub294"], [";**", " **", "\u771f\u6b63\u7684", "\u771f\u6b63", "\u7684\u771f\u6b63", " bottleneck", "\u624d\u662f\u771f\u6b63\u7684", "\u554f\u984c\u306f"], ["\u771f\u6b63\u7684", "\u771f\u6b63", "\u7684\u771f\u6b63", " real", "\u624d\u662f\u771f\u6b63\u7684", " bottleneck", " **", "\u771f\u6b63\u5b9e\u73b0"], ["\u771f\u6b63\u7684", "\u771f\u6b63", " bottleneck", " real", "\u7684\u771f\u6b63", "REAL", " REAL", "real"], [" bottleneck", " real", "\u771f\u6b63\u7684", "\u771f\u6b63", "REAL", " REAL", " killer", " constraints"], [" real", "REAL", "real", ".real", " REAL", " bottleneck", "-real", " Real"], [" real", " hardware", "REAL", "real", " Hardware", "Hardware", " bottleneck", " REAL"], [" real", " bottleneck", " hardware", "REAL", "real", " REAL", ".real", " Real"], [" real", " hardware", " bottleneck", " **", "real", " Real", " killer", "REAL"], [" hardware", " real", " The", " **", " bottleneck", " Real", " Hardware", " performance"], [" The", " real", " bottleneck", " **", " Real", " hardware", " *", " the"], [" The", " You", " Your", " Real", " the", "The", " This", " It"]], "p": [[0.4286, 0.3782, 0.1228, 0.0512, 0.0051, 0.0018, 0.0016, 0.0015], [0.2713, 0.0324, 0.006, 0.0025, 0.0025, 0.0015, 0.0014, 0.0011], [0.5656, 0.3027, 0.0676, 0.0171, 0.0133, 0.0097, 0.0063, 0.0063], [0.0123, 0.0084, 0.007, 0.007, 0.0055, 0.0045, 0.0035, 0.0027], [0.0028, 0.0022, 0.0019, 0.0015, 0.0015, 0.0013, 0.0011, 0.0011], [0.0046, 0.002, 0.0019, 0.0016, 0.0013, 0.001, 0.0009, 0.0009], [0.7508, 0.1082, 0.033, 0.0257, 0.0101, 0.0083, 0.0031, 0.0017], [0.3401, 0.2063, 0.1606, 0.0192, 0.0096, 0.0071, 0.0062, 0.0055], [0.5375, 0.2877, 0.1359, 0.0152, 0.0036, 0.0036, 0.0023, 0.0023], [0.0025, 0.0022, 0.0017, 0.0014, 0.0014, 0.0012, 0.0012, 0.0012], [0.0284, 0.0284, 0.0251, 0.0221, 0.0221, 0.0143, 0.0134, 0.0126], [0.006, 0.0056, 0.0018, 0.0015, 0.0015, 0.0015, 0.0014, 0.0013], [0.0108, 0.007, 0.0035, 0.0035, 0.0031, 0.0029, 0.0026, 0.0026], [0.0054, 0.0045, 0.0042, 0.0035, 0.0031, 0.0023, 0.0019, 0.0019], [0.0139, 0.0066, 0.0055, 0.0048, 0.0043, 0.0035, 0.0033, 0.0029], [0.0086, 0.0076, 0.0076, 0.0072, 0.0046, 0.0043, 0.0041, 0.0038], [0.0255, 0.0255, 0.0225, 0.0211, 0.0128, 0.0083, 0.0069, 0.0064], [0.0253, 0.0153, 0.0105, 0.0087, 0.0068, 0.0044, 0.0039, 0.0034], [0.0484, 0.0202, 0.019, 0.007, 0.007, 0.007, 0.0062, 0.0051], [0.0482, 0.0156, 0.0122, 0.0095, 0.0095, 0.0084, 0.0074, 0.0069], [0.3146, 0.0122, 0.0115, 0.0101, 0.0095, 0.0089, 0.0079, 0.0074], [0.0128, 0.0064, 0.0047, 0.0044, 0.0037, 0.0034, 0.0032, 0.0032], [0.0441, 0.0284, 0.0208, 0.0143, 0.0119, 0.0087, 0.0081, 0.0068], [0.0374, 0.0351, 0.031, 0.0138, 0.0138, 0.0129, 0.0114, 0.0114], [0.3373, 0.0908, 0.0664, 0.023, 0.0216, 0.009, 0.009, 0.0055], [0.0099, 0.006, 0.0053, 0.0047, 0.0041, 0.0034, 0.0028, 0.0027], [0.0294, 0.0102, 0.0102, 0.0084, 0.0054, 0.0051, 0.0048, 0.0042], [0.0667, 0.0278, 0.0261, 0.0216, 0.0149, 0.0102, 0.009, 0.0075], [0.1975, 0.1198, 0.0993, 0.0499, 0.0389, 0.0343, 0.0236, 0.0196], [0.6855, 0.1733, 0.0341, 0.0104, 0.0104, 0.0086, 0.0076, 0.0046], [0.3898, 0.2086, 0.1841, 0.0171, 0.0171, 0.0142, 0.0133, 0.0081], [0.0622, 0.0549, 0.0455, 0.0427, 0.0427, 0.0377, 0.0377, 0.0354], [0.1151, 0.1082, 0.0544, 0.0227, 0.02, 0.02, 0.0188, 0.0177], [0.1843, 0.1348, 0.0438, 0.0363, 0.0283, 0.0194, 0.0182, 0.0171], [0.3346, 0.0375, 0.0353, 0.0331, 0.0311, 0.0228, 0.0189, 0.0189], [0.1365, 0.1365, 0.0938, 0.0535, 0.0416, 0.0237, 0.0223, 0.0185], [0.1721, 0.1111, 0.0525, 0.0281, 0.0248, 0.0248, 0.0205, 0.0193], [0.2097, 0.0821, 0.044, 0.0267, 0.025, 0.0172, 0.0172, 0.0143], [0.2868, 0.064, 0.0342, 0.0322, 0.0195, 0.0162, 0.0126, 0.0126], [0.2032, 0.096, 0.0547, 0.04, 0.0293, 0.0228, 0.0214, 0.0095], [0.1468, 0.1009, 0.0948, 0.0738, 0.0212, 0.0199, 0.0175, 0.0106], [0.1388, 0.1225, 0.1151, 0.0954, 0.0227, 0.02, 0.0176, 0.0146], [0.2255, 0.1756, 0.1065, 0.094, 0.0185, 0.0144, 0.0135, 0.0135], [0.2535, 0.1742, 0.0726, 0.0566, 0.0208, 0.0134, 0.0126, 0.0126], [0.2696, 0.1273, 0.0682, 0.0601, 0.0152, 0.0152, 0.0126, 0.0105], [0.3584, 0.1027, 0.0906, 0.0355, 0.0168, 0.0139, 0.0131, 0.0102], [0.3775, 0.1389, 0.0842, 0.0257, 0.0114, 0.0114, 0.0114, 0.0095], [0.4565, 0.0618, 0.0545, 0.0425, 0.0399, 0.0213, 0.0201, 0.0147], [0.7096, 0.0748, 0.0189, 0.0101, 0.0101, 0.0084, 0.0065, 0.0045], [0.4428, 0.0438, 0.0283, 0.0266, 0.0235, 0.0161, 0.0118, 0.0111], [0.1974, 0.0932, 0.0641, 0.0641, 0.0565, 0.0565, 0.0499, 0.0322], [0.2047, 0.1407, 0.0853, 0.0486, 0.0379, 0.0244, 0.0168, 0.0123], [0.2701, 0.1446, 0.0994, 0.0603, 0.0323, 0.0267, 0.0119, 0.0092], [0.5061, 0.2709, 0.0776, 0.0173, 0.0087, 0.0082, 0.0053, 0.0047], [0.2875, 0.1976, 0.0727, 0.0642, 0.0323, 0.0267, 0.0184, 0.0143], [0.1787, 0.0331, 0.0257, 0.0213, 0.0213, 0.0156, 0.0147, 0.0129], [0.2207, 0.1043, 0.1043, 0.0492, 0.0463, 0.0408, 0.0233, 0.0219], [0.1667, 0.1298, 0.0695, 0.0613, 0.0478, 0.0449, 0.029, 0.029], [0.2074, 0.1426, 0.098, 0.0673, 0.0493, 0.0299, 0.0248, 0.0205], [0.3328, 0.1387, 0.0842, 0.0291, 0.0213, 0.0166, 0.0156, 0.0129], [0.1857, 0.1639, 0.0727, 0.0566, 0.0566, 0.0251, 0.0173, 0.0126], [0.7467, 0.024, 0.0176, 0.0128, 0.0121, 0.01, 0.0057, 0.0057], [0.9923, 0.0008, 0.0008, 0.0006, 0.0005, 0.0004, 0.0001, 0.0001]], "ranks": {"Kotlin": [227125, 152855, 114331, 5186, 4064, 14294, 26976, 95111, 80784, 139729, 112182, 49090, 27054, 42695, 157746, 52862, 34182, 27684, 78717, 179032, 215072, 165036, 181657, 206234, 189499, 93825, 139239, 175058, 155263, 110587, 151589, 142792, 147659, 197178, 223692, 198487, 213114, 213134, 210236, 210531, 222093, 200077, 162458, 159021, 163610, 154222, 146255, 136438, 87073, 47946, 75644, 83839, 78528, 60910, 28119, 8391, 3342, 2896, 2566, 1949, 4303, 455, 252]}}, {"pos": 453, "top": [[".", " \u2013", ",", "\u2013", "\u00a0", ";", "<|endoftext|>", " "], [" \u2013", "\u2013", ",", "\u2013and", ".", ";", " \u2013,", ".["], [",", "\u2013", ".", " \u2013", ";", "\u2013and", ".\u2013", "["], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "----------</", " milfs", "TRGL", "-------------</", " ;;^", " Shemale", "\uad49\uc7a5"], ["\u00a0\u00a0", "\u2018", ",@", "\u2018s", " \"@", "\uff1a\u201c", "\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0", " \u201c["], ["\u00a0\u00a0", "\u00a0", "<|quad_end|>", "\uff01", ",", "   \n", "<|quad_start|>", "."], ["  \n\n", "   \n", "\u00a0", " \n\n", "\u2014\u2014", "\u00a0\u00a0", "\uff01", "  \n  \n"], ["   \n\n", "   \n", "  \n\n", " \n\n", "    \n\n", "     \n\n", "  \n  \n", "       \n\n"], [" \n\n", "  \n\n", "   \n\n", "    \n\n", " \n\n\n", "     \n\n", "        \n\n", "  \n\n\n"], ["\u00a0", "  \n  \n", "\u2013and", "\u00a0\u00a0", "\u00a0\u00a0\u00a0", ",", "\u2013", "  \n\n"], ["\u00a0", " \n\n", "  \n\n", "...", "  \n  \n", " \n\n\n", "\u00a0\u00a0", "   \n\n"], ["DMETHOD", "\u5468\u906d", "-esque", "unky", " pricey", "\u82e5\u975e", "uably", " molteplici"], [" impactful", "-esque", "\u5468\u906d", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\u5927\u5c4f", " overarching", "DMETHOD", " pricey"], ["\u5468\u906d", "-esque", "DMETHOD", "\u708e\u708e\u590f\u65e5", " impactful", " overarching", " pricey", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9"], ["\u5468\u906d", " savvy", " arguably", "\u9aa8\u5b50\u91cc", "\u708e\u708e\u590f\u65e5", " busted", " overarching", "-esque"], [" ;;^", " savvy", "\u62e5\u6709\u7740", " folks", "\u9aa8\u5b50\u91cc", "\u5468\u906d", " Gabrie", " impactful"], [" folks", " savvy", " overarching", " arguably", " sprawling", " incredibly", "-esque", " myriad"], [" savvy", " folks", " hefty", " overarching", " tweaking", " sprawling", " tweaks", " busted"], [" savvy", " folks", " incredibly", " hefty", " hugely", " arguably", " tweaks", " overarching"], [" myriad", " hugely", " folks", " arguably", "\u91cc\u5934", "\u4e0d\u5149", " hefty", " savvy"], [" myriad", " hugely", " ultimately", " truly", " arguably", " overarching", "\u4e0d\u5149", " burgeoning"], [" ;;^", "\u6574\u4e2a\u95ee\u9898", "\u592a\u5927\u4e86", " tougher", "\u8ddf\u4ed6\u4eec", "\u66f4\u7f8e\u597d", "\u9aa8\u5b50\u91cc", " hugely"], [" hugely", " myriad", " truly", " ultimately", "\u4e0d\u5149", " arguably", "\u4e5f\u4f7f\u5f97", " tougher"], [" myriad", " ultimately", " hugely", " truly", " arguably", "\u4e0d\u5149", " looming", " woes"], [" hugely", " myriad", " truly", " arguably", " ultimately", "\u5373\u4fbf", " \r\n\r\n", " overarching"], [" hugely", " myriad", " tougher", " folks", " pricey", " arguably", " looming", " hefty"], [" ultimately", " myriad", " hugely", " truly", " arguably", " looming", " burgeoning", " sprawling"], [" ultimately", " arguably", " myriad", " truly", " hugely", " much", " seemingly", " eventually"], [" myriad", " ultimately", " arguably", " hugely", " truly", " incredibly", " looming", " wildly"], [" ultimately", " myriad", " truly", " arguably", " incredibly", " massive", " hugely", " wildly"], [" ultimately", " truly", " much", " myriad", " massive", " huge", " incredibly", " eventually"], [" ultimately", " much", " truly", " just", " huge", " massive", " more", " far"], [" ultimately", " truly", " massive", " huge", " relentlessly", " incredibly", " relentless", " much"], [" truly", " relentless", " ultimately", " relentlessly", " incredibly", " massive", " huge", " myriad"], [" truly", " relentless", " relentlessly", " incredibly", " myriad", " ultimately", " massive", " huge"], [" relentless", " relentlessly", " incredibly", " truly", " massive", " huge", " horrific", " fundamentally"], [" relentless", " relentlessly", " incredibly", " truly", " fundamentally", " massive", " horrific", " desperately"], [" relentless", " relentlessly", " fundamentally", " impossible", " incredibly", " truly", " risks", " massive"], [" relentless", " problems", " impossible", " relentlessly", " truly", " fundamentally", " risks", " problem"], [" impossible", " relentless", " problems", " fundamentally", " problem", " relentlessly", " problematic", " risks"], [" problems", " impossible", " failures", " relentless", " problem", " problematic", " fundamentally", " risks"], [" problems", " impossible", " failures", " technical", " problem", " problematic", " tech", " fundamentally"], [" problems", " impossible", " technical", " problem", " fundamentally", " failures", " challenges", " problematic"], [" problems", " impossible", " problem", " challenges", " problematic", " technical", " fundamentally", " failures"], [" problems", " impossible", " problem", " technical", " failures", " massive", " problematic", " challenges"], [" problems", " impossible", " problem", " imposs", " failures", " technical", " fundamentally", " challenges"], [" problems", " impossible", " imposs", " fundamentally", " problem", " focus", " core", " contradictions"], [" problems", " impossible", " problem", " contradictions", " imposs", " fundamentally", " demands", " focus"], [" impossible", " contradictions", " problems", " imposs", " fundamentally", " physics", " problem", " catastrophic"], [" contradictions", " imposs", " impossible", " catastrophic", " physics", " fatal", "\u81f4\u547d", " crippling"], ["\u81f4\u547d", "\u554f\u984c\u306f", " contradictions", " imposs", " \ubb38\uc81c\ub294", "\u81f4\u547d\u7684", "Impossible", " crippling"], [" imposs", " contradictions", " physics", " constraints", " bottleneck", "Impossible", " impossible", " hardware"], [" bottleneck", " physics", " imposs", " constraints", " hardware", " contradictions", " impossible", "constraints"], [" bottleneck", " imposs", " physics", " hardware", " constraints", " contradictions", " impossible", "\u771f\u6b63\u7684"], [" bottleneck", " physics", " hardware", " contradictions", " imposs", " constraints", " contradiction", "physics"], [" bottleneck", " physics", " hardware", " constraints", " imposs", " runtime", " contradictions", " killer"], [" physics", " bottleneck", " hardware", " imposs", " runtime", "physics", " constraints", " technical"], [" hardware", " physics", " bottleneck", "\u786c\u4ef6", "Hardware", " imposs", " Hardware", "hardware"], [" physics", " hardware", " bottleneck", "physics", " architecture", " killer", " architectural", " constraints"], [" hardware", " physics", " bottleneck", " killer", " fatal", " killers", " technical", " architectural"], [" hardware", " physics", " technical", " bottleneck", " killer", " fatal", " killers", " performance"], [" technical", " physics", " bottleneck", " hardware", " killer", " fatal", " tech", " architectural"], [" technical", " physics", " real", " bottleneck", " architectural", " tech", " fatal", " hardware"]], "p": [[0.4764, 0.2889, 0.1986, 0.0185, 0.0087, 0.0032, 0.0022, 0.0008], [0.7366, 0.1544, 0.0304, 0.0127, 0.0099, 0.0039, 0.0022, 0.0016], [0.3664, 0.3664, 0.1527, 0.105, 0.0028, 0.0025, 0.0008, 0.0006], [0.0053, 0.0025, 0.0021, 0.0019, 0.0019, 0.0017, 0.0016, 0.0013], [0.0171, 0.0055, 0.0052, 0.0046, 0.0043, 0.0041, 0.0033, 0.003], [0.0387, 0.0111, 0.0056, 0.0056, 0.0052, 0.0046, 0.0043, 0.0038], [0.0978, 0.0919, 0.0672, 0.0557, 0.0298, 0.0298, 0.0247, 0.0232], [0.1664, 0.0837, 0.0328, 0.0308, 0.0137, 0.0128, 0.0121, 0.01], [0.5357, 0.1971, 0.1739, 0.0208, 0.0143, 0.0076, 0.0076, 0.0072], [0.1893, 0.035, 0.0226, 0.0212, 0.0069, 0.0069, 0.0065, 0.005], [0.7155, 0.1168, 0.0314, 0.0245, 0.0158, 0.007, 0.007, 0.0066], [0.004, 0.0028, 0.0017, 0.0015, 0.0015, 0.0014, 0.0013, 0.001], [0.0039, 0.0034, 0.0027, 0.0023, 0.0021, 0.0018, 0.0017, 0.0015], [0.0025, 0.0022, 0.0013, 0.0013, 0.0012, 0.0012, 0.001, 0.0009], [0.0057, 0.0032, 0.0032, 0.0024, 0.002, 0.0018, 0.0016, 0.0015], [0.0015, 0.0012, 0.0011, 0.0011, 0.001, 0.0009, 0.0008, 0.0008], [0.0387, 0.0235, 0.0183, 0.0134, 0.0072, 0.0072, 0.0063, 0.0056], [0.014, 0.0116, 0.0058, 0.0048, 0.0038, 0.0035, 0.0035, 0.0033], [0.0131, 0.007, 0.0066, 0.0054, 0.0048, 0.004, 0.0035, 0.0031], [0.0054, 0.005, 0.0047, 0.0047, 0.0039, 0.0035, 0.0035, 0.0029], [0.0066, 0.0055, 0.0052, 0.0046, 0.004, 0.0026, 0.0023, 0.0022], [0.0034, 0.0011, 0.001, 0.001, 0.001, 0.0009, 0.0009, 0.0009], [0.0028, 0.0026, 0.0022, 0.0018, 0.0016, 0.0014, 0.0014, 0.0013], [0.0051, 0.0048, 0.0035, 0.0035, 0.0024, 0.0016, 0.0016, 0.0014], [0.0113, 0.01, 0.0044, 0.0042, 0.0032, 0.0032, 0.0031, 0.0031], [0.0076, 0.0055, 0.0038, 0.0032, 0.0032, 0.0028, 0.0026, 0.0025], [0.0159, 0.0159, 0.0103, 0.0075, 0.0071, 0.0046, 0.004, 0.0038], [0.049, 0.0279, 0.0262, 0.0204, 0.0132, 0.0071, 0.0071, 0.0062], [0.0743, 0.0656, 0.0451, 0.0257, 0.02, 0.0114, 0.0107, 0.0101], [0.1022, 0.0514, 0.0376, 0.0312, 0.0147, 0.0108, 0.0101, 0.0101], [0.129, 0.0475, 0.0288, 0.0224, 0.0186, 0.0186, 0.0113, 0.0093], [0.0759, 0.0382, 0.0358, 0.018, 0.0149, 0.0132, 0.0124, 0.0091], [0.107, 0.0446, 0.0198, 0.0175, 0.0164, 0.0154, 0.0128, 0.0113], [0.0591, 0.049, 0.0359, 0.0359, 0.0231, 0.0217, 0.018, 0.0169], [0.0679, 0.0599, 0.0497, 0.0301, 0.0172, 0.0172, 0.0152, 0.0152], [0.1005, 0.0538, 0.0419, 0.0419, 0.0347, 0.027, 0.0186, 0.012], [0.0906, 0.0549, 0.0355, 0.0313, 0.0294, 0.0215, 0.0202, 0.0168], [0.0902, 0.0353, 0.0312, 0.0312, 0.0293, 0.0243, 0.0228, 0.0189], [0.0582, 0.0482, 0.0482, 0.0242, 0.0242, 0.0228, 0.0228, 0.0189], [0.084, 0.0577, 0.0509, 0.0329, 0.0212, 0.0199, 0.0187, 0.0176], [0.1033, 0.0626, 0.0335, 0.0315, 0.0296, 0.0216, 0.0203, 0.0203], [0.1036, 0.0432, 0.0358, 0.0336, 0.0316, 0.0217, 0.0217, 0.0204], [0.1425, 0.0463, 0.0408, 0.0299, 0.0264, 0.0219, 0.017, 0.017], [0.2656, 0.0862, 0.0434, 0.0317, 0.0205, 0.0205, 0.015, 0.015], [0.2591, 0.0841, 0.0578, 0.0226, 0.0226, 0.0166, 0.0146, 0.0129], [0.21, 0.0876, 0.0389, 0.0303, 0.0284, 0.0195, 0.0172, 0.0162], [0.1036, 0.0712, 0.0406, 0.0358, 0.0297, 0.0204, 0.018, 0.0169], [0.1158, 0.062, 0.0332, 0.0312, 0.0275, 0.0243, 0.0228, 0.0214], [0.0689, 0.0648, 0.0608, 0.0474, 0.0347, 0.0238, 0.021, 0.0197], [0.0684, 0.0532, 0.0344, 0.0268, 0.0268, 0.0251, 0.0208, 0.0196], [0.098, 0.0921, 0.0525, 0.0339, 0.0318, 0.0264, 0.0141, 0.0133], [0.0874, 0.0639, 0.06, 0.0498, 0.0342, 0.0235, 0.0208, 0.0183], [0.2174, 0.1164, 0.1164, 0.08, 0.0428, 0.0215, 0.0202, 0.0131], [0.2732, 0.1139, 0.1005, 0.0691, 0.0475, 0.0394, 0.0224, 0.0113], [0.5783, 0.1877, 0.0691, 0.0198, 0.0154, 0.0106, 0.0053, 0.0047], [0.3941, 0.2391, 0.0997, 0.0367, 0.0153, 0.0127, 0.0099, 0.0093], [0.4203, 0.1985, 0.0938, 0.0644, 0.0209, 0.0185, 0.0163, 0.0082], [0.7783, 0.0439, 0.0387, 0.0207, 0.0162, 0.0143, 0.0098, 0.0086], [0.4695, 0.2848, 0.1524, 0.011, 0.0067, 0.0067, 0.0046, 0.0041], [0.3207, 0.283, 0.0919, 0.0715, 0.0383, 0.0338, 0.0141, 0.011], [0.303, 0.2083, 0.1115, 0.0868, 0.0465, 0.0319, 0.0249, 0.0142], [0.387, 0.1828, 0.0978, 0.0716, 0.0205, 0.0205, 0.0181, 0.0141], [0.5746, 0.1453, 0.0569, 0.0416, 0.0197, 0.0153, 0.0144, 0.0144]], "ranks": {"Kotlin": [226518, 220257, 192282, 33306, 32699, 70566, 150879, 208163, 190594, 230479, 237954, 186831, 116844, 143375, 204098, 79716, 133115, 136341, 173098, 223214, 219769, 177024, 203235, 230579, 228887, 205702, 207872, 217189, 210180, 191087, 207689, 207715, 207913, 182038, 191679, 133668, 134896, 119428, 113235, 117895, 134981, 94685, 59455, 67143, 70565, 70769, 57461, 49058, 28256, 20421, 33121, 27474, 16596, 9681, 4592, 1983, 1243, 1332, 1137, 902, 1276, 271, 287]}}, {"pos": 454, "top": [[".", " \u2013", ",", "\u2013", "er", "<|endoftext|>", "\u00a0", " "], [" \u2013", "\u2013", "er", " \u2018", ",", " ", ".", "\u2013and"], [" \u2013", "\u2013", ",", ".", "\u2013and", " \u2018", "er", "\u2026"], ["erias", "\uff0d\uff0d", "erio", "kits", "zinho", "erweise", "er", "shots"], ["er", "kits", " \u2018", "kit", "log", " REAL", "world", "na"], ["er", "kits", "kit", "isable", "(real", "\uff01", " \u2018", "log"], ["er", "\u00b4t", " \u00b4", "think", " \u2018", "\u00b4", "kit", "kits"], ["er", "\u00b4t", " \u00b4", "isable", "ness", "-life", "\u00b4s", " REAL"], ["er", " \u00b4", "\u00b4t", "ness", "isable", "-life", "think", "\u00b4s"], ["er", "-life", "-world", "\u9592", "think", "\u0163", " \u00ad", " \u0163"], ["er", " \u00ad", "think", "-world", "-life", " \ufffd", "\u00a0", "\u00ad"], ["er", " stuff", "stuff", " goodies", "think", " REAL", "-life", "isable"], ["stuff", "er", " stuff", " goodies", " REAL", " veggies", "-life", " kids"], [" stuff", " goodies", "stuff", " kids", " REAL", " thing", "think", " veggies"], [" stuff", " smack", " goodies", " kids", " --", "stuff", " REAL", " funky"], [" kids", " folks", " --", " smack", " stuff", " goodies", " guts", " hefty"], [" kids", " folks", " smack", " guts", " stuff", " REAL", " big", " tech"], [" kids", " folks", " stuff", " smack", " goodies", " guts", " REAL", " hefty"], [" stuff", " smack", " kids", " folks", " goodies", " guts", " hefty", " REAL"], [" smack", " folks", " stuff", " kids", " hefty", " goodies", " tough", " guts"], [" smack", " folks", " stuff", " kids", " truly", " hefty", " REAL", " guts"], [" stuff", " smack", " goodies", " kids", " REAL", "_stuff", " folks", " funky"], [" smack", " stuff", " folks", " goodies", " kids", " REAL", " bigger", " truly"], [" smack", " stuff", " folks", " bigger", " truly", " looming", " --", " goodies"], [" folks", " smack", " stuff", " hefty", " guts", " gritty", " looming", " truly"], [" stuff", " folks", " smack", " crunch", " gritty", " goodies", " booze", " funky"], [" stuff", " crunch", " looming", " smack", " gritty", " folks", " savvy", " hefty"], [" truly", " looming", " stuff", " smack", " folks", " --", " tough", " savvy"], [" stuff", " looming", " savvy", " gritty", " crunch", " guts", " smack", " showdown"], [" stuff", " focus", " impact", " guts", " things", " worries", " tech", " big"], [" stuff", " focus", " things", " big", " tough", " thing", " truly", " worries"], [" focus", " big", " stuff", " tough", " things", " truly", " huge", " impact"], [" focus", " truly", " tough", " relentless", " relentlessly", " big", " looming", " massive"], [" focus", " relentless", " relentlessly", " truly", " crisis", " looming", " tough", " struggles"], [" relentless", " truly", " relentlessly", " looming", " focus", " guts", " gritty", " crisis"], [" relentless", " relentlessly", " desperation", " truly", " tough", " struggles", " tech", " nasty"], [" relentless", " desperation", " relentlessly", " truly", " nasty", " crisis", " tough", " struggles"], [" relentless", " desperation", " risk", " crisis", " relentlessly", " risks", " nasty", " truly"], [" risk", " crisis", " desperation", " risks", " problems", " problem", " relentless", " nightmare"], [" crisis", " desperation", " risk", " relentless", " risks", " nightmare", " brutal", " catastrophic"], [" crisis", " risk", " risks", " problems", " brutal", " desperation", " catastrophic", " threats"], [" crisis", " catastrophic", " risk", " risks", " crises", " desperation", " problems", " brutal"], [" crisis", " catastrophic", " brutal", " desperation", " nightmare", " problems", " crises", " risk"], [" crisis", " problems", " catastrophic", " desperation", " brutal", " nightmare", " problem", " risks"], [" problems", " crisis", " problem", " nightmare", " brutal", " catastrophic", " desperation", " struggle"], [" crisis", " problems", " brutal", " nightmare", " problem", " catastrophic", " risks", " danger"], [" crisis", " nightmare", " catastrophic", " brutal", " reality", " problem", " problems", " risks"], [" crisis", " brutal", " catastrophic", " nightmare", " problems", " problem", " desperation", " danger"], [" brutal", " crisis", " catastrophic", " nightmare", " desperation", " horrors", " problem", " danger"], [" crisis", " nightmare", " danger", " threats", " brutal", " catastrophic", " desperation", " catastrophe"], ["\u7684\u95ee\u9898\u662f", "\u95ee\u9898\u662f", "\u554f\u984c\u306f", "\u81f4\u547d", " nightmare", " \ubb38\uc81c\ub294", " desperation", " crisis"], [" danger", "\u95ee\u9898\u662f", " crisis", "\u7684\u95ee\u9898\u662f", " sabotage", " nightmare", " problem", "\u554f\u984c\u306f"], [" danger", " crisis", " sabotage", " bottleneck", " nightmare", " constraint", " constraints", " threats"], [" danger", " crisis", " threats", " bottleneck", " threat", " sabotage", " nightmare", " doom"], [" crisis", " danger", " bottleneck", " problem", " conflict", " threat", " constraint", " failure"], [" crisis", " killer", " danger", " killers", " damage", " problem", " tragedy", " sabotage"], [" killer", " crisis", " killers", " danger", " sabotage", " explosion", " trap", " tragedy"], [" explosion", " crisis", " bombs", " killer", "\u70b8\u5f39", " explosions", " bomb", " danger"], [" explosion", " killer", " bombs", " enemy", " killers", " crisis", " bomb", " breaker"], [" killer", " explosion", " killers", " breaker", " enemy", " danger", " bomb", " trap"], [" killer", " explosion", " breaker", " killers", " enemy", " constraint", " danger", " trap"], [" breaker", " killer", " constraint", " trap", " explosion", " enemy", " blocker", " killers"], [" killer", " trap", " breaker", " constraint", " explosion", " bomb", " enemy", " crisis"]], "p": [[0.369, 0.3257, 0.1538, 0.0441, 0.0222, 0.0222, 0.0134, 0.0134], [0.7367, 0.0997, 0.0471, 0.0127, 0.0056, 0.0053, 0.0041, 0.0028], [0.4664, 0.4664, 0.0298, 0.0124, 0.0046, 0.0038, 0.0026, 0.0023], [0.0144, 0.0082, 0.006, 0.0044, 0.0041, 0.0036, 0.003, 0.0027], [0.7817, 0.006, 0.0049, 0.0028, 0.0016, 0.0014, 0.0012, 0.001], [0.1927, 0.023, 0.0075, 0.0055, 0.0045, 0.0045, 0.0045, 0.0045], [0.8524, 0.0147, 0.0089, 0.0031, 0.0029, 0.0027, 0.0021, 0.0016], [0.7051, 0.031, 0.0137, 0.0083, 0.0065, 0.0035, 0.0033, 0.0031], [0.2794, 0.0277, 0.0215, 0.0123, 0.0123, 0.0108, 0.0108, 0.0079], [0.0505, 0.0174, 0.0113, 0.0093, 0.0093, 0.0093, 0.0082, 0.0073], [0.3168, 0.0334, 0.0158, 0.0158, 0.0131, 0.0123, 0.0084, 0.0075], [0.0688, 0.0417, 0.0305, 0.0174, 0.012, 0.0093, 0.0082, 0.0077], [0.0324, 0.0286, 0.0268, 0.0209, 0.0127, 0.0093, 0.0077, 0.0064], [0.0643, 0.039, 0.0304, 0.0173, 0.0119, 0.0105, 0.0105, 0.0077], [0.0757, 0.0358, 0.0358, 0.0279, 0.0149, 0.0124, 0.0103, 0.009], [0.0726, 0.0602, 0.0602, 0.0389, 0.0284, 0.0267, 0.0172, 0.0111], [0.0662, 0.0427, 0.0215, 0.0202, 0.0202, 0.0148, 0.013, 0.013], [0.0744, 0.033, 0.0291, 0.0257, 0.0257, 0.0177, 0.0121, 0.0114], [0.0515, 0.0515, 0.0401, 0.0333, 0.0215, 0.0148, 0.013, 0.013], [0.0614, 0.0397, 0.0309, 0.0226, 0.0146, 0.0121, 0.0121, 0.0107], [0.0377, 0.0215, 0.019, 0.013, 0.0108, 0.0079, 0.0079, 0.007], [0.0228, 0.0157, 0.0122, 0.0089, 0.0084, 0.0061, 0.0058, 0.0054], [0.0263, 0.0263, 0.0124, 0.0103, 0.0097, 0.0071, 0.0067, 0.0059], [0.016, 0.0141, 0.0071, 0.0067, 0.0067, 0.0059, 0.0052, 0.0043], [0.0195, 0.0183, 0.0118, 0.0104, 0.0072, 0.0072, 0.0072, 0.0067], [0.0224, 0.0186, 0.012, 0.0113, 0.0082, 0.0077, 0.0077, 0.0073], [0.0198, 0.0106, 0.0099, 0.0093, 0.0088, 0.0088, 0.0082, 0.0064], [0.0172, 0.0161, 0.0142, 0.0118, 0.0104, 0.0076, 0.0067, 0.0067], [0.0169, 0.0159, 0.0132, 0.0132, 0.0116, 0.0103, 0.008, 0.0075], [0.0389, 0.0251, 0.0105, 0.0105, 0.0098, 0.0092, 0.0087, 0.0087], [0.0506, 0.0307, 0.0225, 0.0211, 0.0136, 0.0136, 0.0113, 0.0106], [0.0506, 0.0327, 0.0186, 0.0186, 0.0175, 0.0154, 0.0094, 0.0094], [0.0294, 0.0215, 0.0168, 0.0168, 0.0123, 0.0115, 0.0108, 0.0102], [0.0329, 0.029, 0.0176, 0.0176, 0.0176, 0.0155, 0.0146, 0.0137], [0.0314, 0.0314, 0.023, 0.0168, 0.0139, 0.0102, 0.0096, 0.0085], [0.0705, 0.0313, 0.0202, 0.0157, 0.0157, 0.0123, 0.0115, 0.0108], [0.0503, 0.0305, 0.0287, 0.0144, 0.0144, 0.0135, 0.0135, 0.0127], [0.0346, 0.0306, 0.027, 0.0238, 0.0185, 0.0154, 0.0127, 0.012], [0.05, 0.0389, 0.0389, 0.0323, 0.0268, 0.0251, 0.0236, 0.0208], [0.0395, 0.0371, 0.0308, 0.0308, 0.0272, 0.0272, 0.0212, 0.0155], [0.0696, 0.0422, 0.035, 0.0256, 0.0241, 0.0226, 0.0226, 0.0199], [0.0966, 0.0429, 0.0334, 0.0295, 0.0244, 0.0229, 0.0229, 0.019], [0.075, 0.0354, 0.0313, 0.0294, 0.0276, 0.0276, 0.0229, 0.0202], [0.0984, 0.0597, 0.034, 0.0319, 0.0282, 0.0265, 0.0265, 0.0249], [0.0638, 0.0599, 0.0341, 0.0301, 0.0283, 0.0266, 0.022, 0.022], [0.072, 0.0385, 0.0385, 0.034, 0.0265, 0.0249, 0.0234, 0.0234], [0.0503, 0.0473, 0.0368, 0.0368, 0.0269, 0.021, 0.021, 0.0197], [0.0748, 0.0582, 0.0514, 0.0514, 0.0228, 0.0228, 0.0189, 0.0189], [0.0652, 0.0575, 0.0448, 0.0421, 0.0272, 0.0212, 0.0199, 0.0187], [0.0712, 0.0521, 0.0406, 0.0316, 0.0297, 0.0279, 0.0231, 0.018], [0.0996, 0.0501, 0.0415, 0.0366, 0.0344, 0.0268, 0.0268, 0.0252], [0.0727, 0.0727, 0.05, 0.0469, 0.0389, 0.0366, 0.0251, 0.0162], [0.13, 0.0894, 0.0696, 0.0542, 0.0329, 0.0273, 0.024, 0.0226], [0.3196, 0.0916, 0.049, 0.0432, 0.0432, 0.0297, 0.0297, 0.0132], [0.2014, 0.1384, 0.0741, 0.0654, 0.0577, 0.0397, 0.0273, 0.0187], [0.1086, 0.0959, 0.0959, 0.0581, 0.04, 0.0353, 0.0353, 0.0311], [0.1417, 0.086, 0.0759, 0.0759, 0.0316, 0.0279, 0.0279, 0.0246], [0.4975, 0.098, 0.0408, 0.0318, 0.0281, 0.017, 0.017, 0.017], [0.2738, 0.1007, 0.0539, 0.0539, 0.042, 0.042, 0.042, 0.0371], [0.3615, 0.1935, 0.1036, 0.0807, 0.0262, 0.0231, 0.0204, 0.018], [0.3737, 0.1213, 0.1213, 0.0649, 0.0394, 0.0394, 0.0348, 0.0271], [0.2045, 0.1805, 0.1241, 0.1095, 0.1095, 0.0203, 0.019, 0.0179], [0.3807, 0.2038, 0.0849, 0.0515, 0.0312, 0.0276, 0.0276, 0.0243]], "ranks": {"Kotlin": [197573, 181804, 167048, 35945, 59137, 67112, 79725, 139753, 157863, 222382, 218008, 181539, 151615, 159637, 206765, 149048, 144202, 166934, 186857, 219753, 214545, 180393, 208307, 228626, 210078, 161251, 184424, 214142, 155648, 155598, 170097, 167418, 208984, 140665, 158611, 118689, 118417, 92178, 93684, 103315, 98565, 86703, 49296, 38044, 43585, 52888, 24661, 30144, 33158, 32140, 45083, 29786, 33835, 21092, 29320, 17660, 16356, 20351, 13471, 8832, 8029, 4616, 4927]}}, {"pos": 455, "top": [["\u00a0\u00a0", " \u25a0", " ", " ='", "'", " \u2013", "\"", " \u2022"], [" ='", " **'", " '@", " \u25a0", " \u25c6", " @@", " '!", " ,'"], [" ='", "'", "-'", "?'", "'\"", "!'", "\"", ",'"], [" **\u25a0", " **'", " -**", " **\u2018", "---</", " ---", " **\u2022", " **\u300c"], [" \u2019", " **'", " ---", "!'", " \u25a0", " ***", " **\u2018", " -**"], [" \u2019", " **\u2018", " **'", " **\u25a0", "!\u2019", " ***", "\u2019**", "!'"], [" \u2019", " **\u2018", " -**", "\u2019**", " **'", " ---", "!\u2019", " ***"], [" **'", " \u2019", " **\u2018", " -**", " **\u25a0", "\u2019**", " ***", "_'"], [" \u2019", " **'", " **\u2018", " killer", " Killer", "!\u2019", " killers", "!'"], [" \u2019", " \u00ad", " killer", " Killer", "!'", "-'", "!\u2019", " killers"], [" killer", " \u2019", " Killer", " \u00ad", " killers", "!'", "\u6740\u624b", " guts"], [" killer", " Killer", " **'", " killers", " \u2019", " guts", " **\u2018", "\u6740\u624b"], [" killer", " Killer", " **'", " killers", " **\u25a0", "\u6740\u624b", " booze", " guts"], [" killer", " Killer", " booze", " **'", " killers", " guts", " beast", " gorgeous"], [" killer", " Killer", " busted", " gorgeous", " smack", " booze", " goodies", " guts"], [" killer", " busted", " nasty", " guts", " folks", " booze", " Killer", " goodies"], [" killer", " Killer", " guts", " busted", " booze", " folks", " nasty", " kids"], [" killer", " Killer", " booze", " busted", "\u6740\u624b", " gorgeous", " killers", " guts"], [" killer", " Killer", " booze", "\u6740\u624b", " **\u25a0", " busted", " -**", " gorgeous"], [" killer", " Killer", "\u6740\u624b", " booze", " \u2019", " busted", " killers", " gorgeous"], [" Killer", " killer", "\u6740\u624b", "killer", " busted", " booze", " gorgeous", " skyrocket"], [" killer", " Killer", " **\u25a0", "\u6740\u624b", " booze", "killer", " gorgeous", " ;;^"], [" killer", " Killer", "\u6740\u624b", " booze", " busted", " **\u25a0", " gorgeous", " -**"], [" killer", " --", " Killer", " busted", " \u2019", " booze", " havoc", "\u6740\u624b"], [" killer", " busted", " booze", " Killer", " --", " havoc", "\u6740\u624b", " \u2019"], [" booze", " killer", " busted", " -**", " Killer", " havoc", "\u6740\u624b", " awful"], [" killer", " booze", " Killer", " busted", " havoc", "\u6740\u624b", " skyrocket", " killers"], [" killer", " --", " \u2019", "\n\n", " Killer", " booze", " busted", " havoc"], [" killer", " booze", " Killer", " -**", " busted", "killer", " killers", "\u6740\u624b"], [" killer", " booze", " Killer", " busted", " killers", " \u2019", " hell", " skyrocket"], [" killer", " Killer", " hell", " booze", " huge", " biggest", " killers", " relentless"], [" killer", " Killer", " huge", " hell", " big", " relentless", " killing", " biggest"], [" killer", " Killer", " relentless", " hell", " huge", " relentlessly", " booze", " horrific"], [" killer", " relentless", " Killer", " relentlessly", " horrific", " brutally", " catastrophic", " booze"], [" killer", " relentless", " relentlessly", " Killer", " horrific", " brutally", " merciless", " looming"], [" killer", " relentless", " relentlessly", " Killer", " brutally", " horrific", " brutal", " merciless"], [" killer", " relentless", " relentlessly", " Killer", " horrific", " brutally", " brutal", " merciless"], [" killer", " relentless", " relentlessly", " Killer", " brutally", " horrific", " brutal", " hell"], [" relentless", " killer", " relentlessly", " Killer", " horrific", " brutally", " brutal", " hell"], [" killer", " relentless", " brutal", " relentlessly", " horrific", " brutally", " Killer", " kills"], [" killer", " relentless", " brutal", " relentlessly", " Killer", " brutally", " horrific", " deadly"], [" killer", " relentless", " brutal", " relentlessly", " killing", " brutally", " Killer", " catastrophic"], [" killer", " relentless", " brutal", " relentlessly", " Killer", " killing", " brutally", " kills"], [" killer", " relentless", " brutal", " killing", " deadly", " kills", " Killer", " brutally"], [" killer", " relentless", " brutal", " killing", " kills", " kill", " deadly", " lethal"], [" killer", " brutal", " relentless", " killing", " kills", " lethal", " kill", " Killer"], [" killer", " brutal", " relentless", " killing", " bottleneck", " Killer", " kills", " lethal"], [" killer", " brutal", " relentless", " Killer", " lethal", " killing", " bottleneck", " kills"], [" killer", " relentless", " brutal", " **", " kills", " Killer", " killing", " lethal"], [" killer", " brutal", " relentless", " **", " Killer", " bottleneck", " kills", " killing"], [" **\u201c", " **", " **#", " relentless", " **\"", " killer", "\uff1a**", ">**"], [" **\u201c", " **", " **\"", " **#", "\uff1a**", ";**", ">**", " complexity"], [" **\u201c", " is", " **", ";**", " forcing", " **\"", " **#", " trying"], [" is", "\u662f\u4f60", " trying", "\u662f\u56fd\u5185", "\u662f\u4f60\u7684", " contradictions", " forcing", " adalah"], [" trying", " attempting", " is", " Trying", "trying", "Trying", "Attempting", "\u8bd5\u56fe"], [" is", " trying", " Trying", " attempting", "\u662f\u4f60", "Attempting", "Trying", " concurrency"], [" trying", " is", " hardware", " Trying", " CPU", "Trying", " physics", "trying"], [" trying", " is", " hardware", " CPU", " Trying", "Trying", "trying", " forcing"], [" is", " trying", " physics", " hardware", " CPU", " Trying", "CPU", "Trying"], [" is", " trying", " hardware", " CPU", " isn", " physics", " Trying", " attempting"], [" is", " trying", " hardware", " CPU", " physics", " GPU", " isn", " forcing"], [" is", " trying", " isn", " physics", " hardware", " CPU", " **", " forcing"], [" is", " here", " physics", " isn", " trying", " hardware", " thread", " forcing"]], "p": [[0.0721, 0.022, 0.0171, 0.0133, 0.0133, 0.0125, 0.0111, 0.0076], [0.0976, 0.0433, 0.0337, 0.0218, 0.017, 0.0141, 0.0132, 0.0132], [0.0778, 0.0731, 0.0472, 0.0443, 0.0367, 0.0345, 0.0253, 0.0237], [0.3485, 0.0416, 0.0209, 0.0099, 0.0099, 0.0099, 0.0072, 0.0072], [0.3752, 0.0448, 0.0448, 0.024, 0.0212, 0.0145, 0.0145, 0.0121], [0.2436, 0.0398, 0.0273, 0.0273, 0.0166, 0.0137, 0.0129, 0.0121], [0.6001, 0.0318, 0.0299, 0.0264, 0.0233, 0.0233, 0.0141, 0.0133], [0.2941, 0.1152, 0.0744, 0.0424, 0.0257, 0.0241, 0.0188, 0.0166], [0.2855, 0.0818, 0.0496, 0.0466, 0.0363, 0.0266, 0.0266, 0.0194], [0.1604, 0.0914, 0.0669, 0.0459, 0.0316, 0.0204, 0.0192, 0.0169], [0.141, 0.0855, 0.0588, 0.0404, 0.023, 0.0203, 0.009, 0.0085], [0.2406, 0.0942, 0.0734, 0.027, 0.0254, 0.0136, 0.012, 0.0106], [0.234, 0.0916, 0.067, 0.0298, 0.015, 0.0097, 0.0097, 0.008], [0.1356, 0.0565, 0.0195, 0.0195, 0.0162, 0.0134, 0.0134, 0.0118], [0.061, 0.0307, 0.0288, 0.0211, 0.0154, 0.0145, 0.0145, 0.0145], [0.0402, 0.0402, 0.0378, 0.0333, 0.0276, 0.026, 0.0202, 0.0178], [0.0651, 0.0395, 0.0348, 0.0307, 0.0225, 0.0211, 0.0155, 0.0128], [0.0786, 0.0477, 0.0448, 0.0308, 0.0155, 0.0155, 0.0155, 0.0145], [0.0748, 0.0514, 0.0483, 0.0259, 0.0243, 0.0214, 0.0214, 0.0157], [0.1082, 0.0897, 0.033, 0.0274, 0.0257, 0.0241, 0.0107, 0.0089], [0.1117, 0.1049, 0.0363, 0.0182, 0.0161, 0.0151, 0.0071, 0.0071], [0.0543, 0.0397, 0.0212, 0.02, 0.0114, 0.01, 0.0083, 0.0078], [0.0534, 0.0345, 0.0185, 0.0163, 0.0127, 0.0105, 0.0105, 0.0082], [0.0312, 0.0293, 0.0228, 0.0147, 0.013, 0.0101, 0.0095, 0.0089], [0.0288, 0.027, 0.0254, 0.0224, 0.021, 0.0145, 0.0106, 0.0106], [0.0629, 0.0521, 0.0337, 0.0246, 0.0204, 0.0204, 0.0132, 0.0124], [0.0853, 0.0551, 0.0314, 0.0295, 0.0179, 0.0148, 0.0139, 0.0102], [0.071, 0.0357, 0.0315, 0.0315, 0.0278, 0.0261, 0.0216, 0.014], [0.1319, 0.0623, 0.0623, 0.0157, 0.0157, 0.0148, 0.0123, 0.0115], [0.15, 0.0625, 0.0487, 0.014, 0.0131, 0.0123, 0.0109, 0.0102], [0.2036, 0.0484, 0.0178, 0.0157, 0.0148, 0.0122, 0.0115, 0.0108], [0.1414, 0.0357, 0.0204, 0.0191, 0.0124, 0.0116, 0.0102, 0.0096], [0.1721, 0.0633, 0.0219, 0.017, 0.011, 0.0103, 0.0097, 0.0091], [0.1413, 0.0459, 0.0336, 0.0246, 0.018, 0.0131, 0.0123, 0.0123], [0.0691, 0.061, 0.0506, 0.0254, 0.0224, 0.0198, 0.0186, 0.0145], [0.0965, 0.08, 0.055, 0.0402, 0.0313, 0.026, 0.0215, 0.0168], [0.0846, 0.0702, 0.0582, 0.0311, 0.0275, 0.0258, 0.0157, 0.0122], [0.0978, 0.0811, 0.0524, 0.0492, 0.0263, 0.0232, 0.015, 0.0132], [0.0877, 0.0824, 0.047, 0.0285, 0.0285, 0.0268, 0.0196, 0.0119], [0.1213, 0.107, 0.0419, 0.0394, 0.0348, 0.0348, 0.0288, 0.0145], [0.169, 0.1025, 0.0427, 0.0354, 0.0354, 0.0294, 0.0202, 0.0202], [0.1526, 0.0985, 0.0363, 0.032, 0.0265, 0.0249, 0.0234, 0.0207], [0.1858, 0.0994, 0.0567, 0.0303, 0.0285, 0.0268, 0.0251, 0.0196], [0.2539, 0.0877, 0.0683, 0.0389, 0.0268, 0.0236, 0.0222, 0.0196], [0.2203, 0.081, 0.0715, 0.0383, 0.028, 0.0205, 0.0192, 0.017], [0.2028, 0.0659, 0.0513, 0.0399, 0.0331, 0.0228, 0.0201, 0.0138], [0.2408, 0.0572, 0.0572, 0.0198, 0.0186, 0.0186, 0.0186, 0.0164], [0.1997, 0.0943, 0.0505, 0.0326, 0.0198, 0.0198, 0.0145, 0.0136], [0.1279, 0.0776, 0.0684, 0.0344, 0.0184, 0.0173, 0.0163, 0.0135], [0.0718, 0.0494, 0.0409, 0.0248, 0.0206, 0.0182, 0.0182, 0.0171], [0.0793, 0.0745, 0.0257, 0.0188, 0.0177, 0.0177, 0.0166, 0.0166], [0.0694, 0.0371, 0.0272, 0.0255, 0.0187, 0.0155, 0.0145, 0.0128], [0.1083, 0.0792, 0.0274, 0.0242, 0.02, 0.0177, 0.0166, 0.0129], [0.3472, 0.0323, 0.0252, 0.0222, 0.0099, 0.0099, 0.0099, 0.0093], [0.455, 0.0791, 0.0616, 0.0578, 0.0578, 0.0451, 0.031, 0.0176], [0.3234, 0.119, 0.0249, 0.0234, 0.0207, 0.0171, 0.0142, 0.0125], [0.2234, 0.0772, 0.0413, 0.0322, 0.0267, 0.0251, 0.0251, 0.0208], [0.1975, 0.1975, 0.0877, 0.0469, 0.0389, 0.0222, 0.0196, 0.0173], [0.4592, 0.1025, 0.0584, 0.0515, 0.0484, 0.0215, 0.0139, 0.0115], [0.9416, 0.0172, 0.0152, 0.0032, 0.0022, 0.0016, 0.0011, 0.0009], [0.9145, 0.0202, 0.013, 0.0095, 0.0066, 0.0019, 0.0018, 0.0015], [0.9932, 0.0009, 0.0009, 0.0003, 0.0003, 0.0003, 0.0002, 0.0001], [0.995, 0.0004, 0.0002, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001]], "ranks": {"Kotlin": [108733, 68576, 83556, 15684, 23943, 24370, 45308, 78738, 90833, 131076, 124908, 96884, 62390, 75944, 127250, 77812, 76858, 55721, 56227, 112805, 133310, 95748, 122225, 163188, 155232, 104514, 88631, 115027, 68789, 70853, 86642, 97645, 96650, 122198, 161593, 108726, 118698, 103189, 111518, 120932, 123020, 83204, 59793, 60155, 49638, 74572, 53874, 43956, 53625, 43693, 41596, 38981, 35271, 25300, 6040, 5235, 2854, 1763, 1324, 869, 787, 162, 105]}}, {"pos": 456, "top": [[".", ",", "\u2013", " \u2013", ";", "\u00a0", " ", "\u00a0\u00a0"], [".", ",", " \u2013", "\u2013", ";", "\u2013and", " \u200b\u200b", " "], [",", ".", "\u2013", ";", " \u2013", "\u2026", "\u2013and", "\u2026."], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " ;;^", " milfs", "----------</", "\u683c\u91cc\u62c9", " Hidal", "-------------</", " Blowjob"], [".", ",", ":", "\u00a0\u00a0", "\u00a0", " \u200b\u200b", "!", "\""], [",", ".", " \u200b\u200b", ":", "\u00a0", ";", "!", "\u00a0\u00a0"], [".", "\u00a0", ",", ":", "  \n", "\"", "!", "\u00a0\u00a0"], [".", "  \n", ":", ",", "   \n", "!.", "!", " lucky"], [".", "\u00a0", ",", ":", "  \n", " \u200b\u200b", "!.", "!"], [",", "\u00a0", ".", "\u2013", "\u00a0\u00a0", ":", "\u2013and", ";"], [".", "\u00a0", ",", "\u2026", "  \n", "...", "-", ":"], [" guts", " incredibly", " incredible", " heartbreaking", " pretty", " lucky", " killer", " huge"], [" incredibly", " incredible", " freaking", " heartbreaking", " savvy", " vibe", " guts", " crippling"], [" freaking", " huge", " gritty", " incredibly", " guts", " relentless", " incredible", " savvy"], ["\n\n", " gritty", " relentlessly", " relentless", " truly", " huge", "...", " looming"], [" relentless", " relentlessly", " gritty", " guts", " incredibly", " sprawling", " skinny", " savvy"], [" incredibly", " just", " huge", " getting", " relentless", " big", " relentlessly", " truly"], [" incredibly", " relentless", " relentlessly", " tweaking", " looming", " getting", " huge", " savvy"], [" incredibly", " looming", " relentlessly", " relentless", " freaking", " huge", " tweaking", " gritty"], [" looming", " incredibly", " relentless", " relentlessly", " truly", " huge", " just", " barely"], [" looming", " just", " relentlessly", " incredibly", " burgeoning", " barely", " relentless", " truly"], [" looming", " ;;^", " incredibly", " crippling", " freaking", " gritty", " relentlessly", " skyrocket"], [" looming", " relentlessly", " {{--<", " relentless", " battling", " incredibly", " crippling", " just"], [" looming", " --", " {{--<", " just", " relentlessly", " battling", " truly", " barely"], [" \n\n", " \r\n\r\n", "  \n\n", "\r\n\r\n", " looming", "\n\n", "   \n\n", " battling"], [" looming", " relentless", " crippling", " relentlessly", " crumbling", " gritty", " {{--<", " sprawling"], [" looming", " relentless", " relentlessly", " crippling", "\n\n", " battling", " sprawling", " crumbling"], ["\n\n", " looming", " \n\n", " ultimately", " --", " arguably", " battling", " myriad"], [" looming", "\n\n", " relentless", " relentlessly", " \n\n", " sprawling", " myriad", " crippling"], [" looming", " relentless", " ultimately", " relentlessly", " incredibly", " sprawling", " heavily", " massive"], [" relentless", " relentlessly", " huge", " ultimately", " looming", " massive", " just", " incredibly"], [" just", " ultimately", " much", " ,", " that", " huge", " the", " over"], [" relentlessly", " relentless", " huge", " massive", " incredibly", " looming", " power", " just"], [" relentless", " relentlessly", " incredibly", " looming", " massive", " fundamentally", " heavily", " huge"], [" relentless", " relentlessly", " looming", " arguably", " incredibly", " aggressively", " fundamentally", " sprawling"], [" relentless", " relentlessly", " \u2014", " incredibly", " aggressively", " fundamentally", " massive", " arguably"], [" relentless", " relentlessly", " complexity", " incredibly", " aggressively", " fundamentally", " demanding", " tech"], [" relentless", " relentlessly", " complexity", " demanding", " incredibly", " fundamentally", " complex", " impossible"], [" relentless", " relentlessly", " complexity", " demanding", " impossible", " complex", " lack", " incredibly"], [" relentless", " complexity", " demanding", " relentlessly", " hardware", " impossible", " physics", " technical"], [" complexity", " hardware", " demanding", " relentless", " technology", " technical", " tech", " physics"], [" hardware", " demanding", " physics", " performance", " complexity", " technology", " technical", " technological"], [" hardware", " physics", " demanding", " performance", " complexity", " constraints", " relentless", " technical"], [" physics", " hardware", " demanding", " performance", " constraints", " relentless", " complexity", " demands"], [" physics", " demanding", " hardware", " performance", " complexity", " impossible", " relentless", " demand"], [" physics", " demanding", " hardware", " impossible", " demand", " relentless", " demands", " complexity"], [" physics", " hardware", " bottleneck", " demanding", " complexity", " demand", " relentless", " impossible"], [" demanding", " physics", " combining", " demand", " demands", " synergy", " hardware", " combined"], [" physics", " hardware", " bottleneck", " demand", " demanding", " combining", " synergy", " relentless"], [" physics", " hardware", " bottleneck", " contradiction", " synergy", " contradictions", " simultaneous", " constraints"], [" physics", " **+", " **#", ";**", "\u8bd5\u56fe", " **", " trying", " attempting"], [" trying", "\u8bd5\u56fe", " **#", " attempting", " physics", "Attempting", " Trying", "trying"], [" hardware", " physics", " **#", " latency", " trying", " **", " bottleneck", " expecting"], [" physics", " hardware", " latency", " trying", " **#", " CPU", " **+", " bottleneck"], [" trying", " attempting", " expecting", " physics", " runtime", "\u8bd5\u56fe", " Trying", " CPU"], [" expecting", " CPU", " runtime", " physics", " expectation", " trying", " attempting", " GPU"], [" physics", " trying", " CPU", " runtime", " attempting", " expecting", " GPU", " hardware"], [" CPU", " latency", " GPU", " physics", " hardware", " trying", " runtime", " expecting"], [" physics", " Physics", "physics", " CPU", " GPU", " trying", "Physics", " latency"], [" physics", " CPU", " hardware", " Physics", " GPU", " trying", " latency", "physics"], [" physics", " CPU", " GPU", " trying", " Physics", " latency", " expecting", " hardware"], [" physics", " trying", " **", " CPU", " expecting", " GPU", " Physics", " attempting"], [" physics", " trying", " the", " expecting", " CPU", " thermal", " forcing", " GPU"]], "p": [[0.6653, 0.3143, 0.0058, 0.0051, 0.004, 0.0035, 0.0004, 0.0003], [0.2952, 0.2774, 0.1485, 0.1231, 0.0275, 0.0065, 0.0029, 0.0023], [0.6137, 0.3285, 0.0504, 0.0032, 0.0015, 0.0007, 0.0003, 0.0003], [0.0154, 0.0047, 0.0044, 0.0028, 0.0027, 0.0022, 0.0021, 0.002], [0.4145, 0.3658, 0.0118, 0.0059, 0.0046, 0.0025, 0.0022, 0.0018], [0.3783, 0.3554, 0.0292, 0.0274, 0.0079, 0.0051, 0.0045, 0.0037], [0.8134, 0.038, 0.0336, 0.0336, 0.009, 0.0085, 0.0066, 0.0043], [0.3966, 0.0537, 0.0393, 0.0106, 0.0106, 0.0064, 0.005, 0.0041], [0.9229, 0.0204, 0.0159, 0.009, 0.0043, 0.0021, 0.0013, 0.0012], [0.6985, 0.0888, 0.0419, 0.0106, 0.0053, 0.0044, 0.0032, 0.0032], [0.4485, 0.165, 0.1368, 0.0346, 0.0112, 0.0112, 0.0082, 0.0072], [0.0196, 0.0173, 0.0163, 0.0144, 0.0087, 0.0072, 0.0064, 0.006], [0.0171, 0.0171, 0.0151, 0.0142, 0.0081, 0.0081, 0.0076, 0.0071], [0.0223, 0.0163, 0.0163, 0.0144, 0.0135, 0.0135, 0.0099, 0.0087], [0.0145, 0.0128, 0.0128, 0.0128, 0.0113, 0.0106, 0.0106, 0.01], [0.0186, 0.0128, 0.012, 0.0093, 0.0077, 0.0073, 0.0068, 0.0068], [0.031, 0.02, 0.02, 0.0177, 0.0122, 0.0114, 0.0101, 0.0095], [0.0158, 0.0116, 0.0109, 0.0096, 0.0096, 0.0085, 0.0085, 0.0062], [0.0319, 0.0233, 0.015, 0.0141, 0.0103, 0.0103, 0.0086, 0.0071], [0.0321, 0.0283, 0.0142, 0.0126, 0.0111, 0.0104, 0.0092, 0.0086], [0.014, 0.0085, 0.007, 0.0058, 0.0058, 0.0055, 0.0051, 0.0051], [0.0123, 0.0075, 0.0035, 0.0033, 0.0033, 0.0027, 0.0026, 0.0023], [0.0178, 0.0051, 0.0048, 0.0037, 0.0037, 0.0037, 0.0029, 0.0027], [0.0161, 0.0072, 0.0063, 0.0056, 0.0052, 0.0046, 0.0043, 0.0043], [0.0416, 0.0237, 0.0223, 0.0223, 0.0184, 0.0173, 0.0068, 0.0047], [0.0283, 0.0111, 0.0104, 0.0076, 0.0063, 0.0063, 0.0049, 0.0043], [0.0342, 0.0126, 0.0118, 0.0118, 0.0063, 0.0063, 0.0059, 0.0052], [0.1142, 0.0211, 0.0175, 0.0088, 0.0088, 0.0083, 0.0078, 0.0069], [0.0482, 0.0331, 0.0228, 0.0156, 0.0156, 0.0122, 0.0122, 0.0114], [0.0338, 0.0232, 0.016, 0.016, 0.011, 0.0103, 0.0091, 0.0091], [0.0269, 0.0223, 0.0209, 0.0197, 0.0174, 0.0163, 0.0153, 0.0135], [0.0241, 0.0165, 0.0129, 0.0129, 0.0121, 0.0114, 0.0107, 0.0094], [0.0248, 0.0219, 0.0141, 0.0133, 0.0133, 0.0125, 0.0117, 0.0117], [0.1123, 0.0931, 0.0183, 0.0143, 0.0134, 0.0134, 0.0118, 0.0118], [0.1046, 0.0923, 0.0194, 0.0104, 0.0097, 0.0086, 0.0081, 0.0076], [0.1137, 0.0886, 0.0174, 0.0145, 0.0099, 0.0073, 0.0068, 0.0068], [0.1238, 0.1093, 0.0148, 0.0123, 0.0115, 0.0095, 0.0095, 0.0074], [0.1037, 0.0759, 0.0358, 0.0132, 0.0132, 0.0109, 0.0091, 0.008], [0.0762, 0.0632, 0.0318, 0.015, 0.0141, 0.0103, 0.0091, 0.0086], [0.0725, 0.0498, 0.0413, 0.0388, 0.0208, 0.0134, 0.0111, 0.0104], [0.0584, 0.0549, 0.0402, 0.0377, 0.0294, 0.0244, 0.0244, 0.0215], [0.0876, 0.0727, 0.0532, 0.0389, 0.0303, 0.0267, 0.0251, 0.0222], [0.0748, 0.0547, 0.0483, 0.0332, 0.0275, 0.0258, 0.0214, 0.0189], [0.0799, 0.0799, 0.0751, 0.0377, 0.0313, 0.0313, 0.0244, 0.019], [0.0785, 0.0611, 0.0539, 0.0327, 0.0239, 0.0225, 0.0225, 0.0211], [0.0903, 0.0426, 0.0376, 0.0312, 0.0243, 0.0214, 0.0189, 0.0167], [0.1002, 0.0536, 0.0368, 0.0346, 0.0305, 0.027, 0.0238, 0.0223], [0.0653, 0.0577, 0.0509, 0.0449, 0.0309, 0.0272, 0.0272, 0.0256], [0.072, 0.0677, 0.0282, 0.0265, 0.0265, 0.0234, 0.0234, 0.0161], [0.0893, 0.0422, 0.035, 0.0256, 0.0256, 0.0212, 0.0176, 0.0165], [0.0537, 0.0369, 0.0369, 0.0254, 0.021, 0.0198, 0.0186, 0.0154], [0.0921, 0.0813, 0.0718, 0.0674, 0.0493, 0.0299, 0.0299, 0.0233], [0.0821, 0.0821, 0.0601, 0.0388, 0.0388, 0.025, 0.0208, 0.0195], [0.1094, 0.0852, 0.0585, 0.0517, 0.0485, 0.0355, 0.0244, 0.0229], [0.272, 0.1649, 0.0688, 0.0536, 0.0473, 0.0417, 0.0325, 0.0287], [0.1706, 0.1329, 0.1329, 0.1035, 0.0554, 0.0431, 0.0296, 0.0191], [0.2491, 0.194, 0.0714, 0.063, 0.0556, 0.0298, 0.0263, 0.0263], [0.1886, 0.1469, 0.1144, 0.101, 0.101, 0.0891, 0.0421, 0.0289], [0.874, 0.0384, 0.0339, 0.0141, 0.0076, 0.0067, 0.0052, 0.004], [0.7587, 0.0706, 0.0378, 0.0378, 0.0202, 0.0178, 0.0139, 0.0123], [0.5664, 0.1432, 0.0677, 0.0597, 0.0249, 0.022, 0.0151, 0.0151], [0.4522, 0.1885, 0.1009, 0.0612, 0.0255, 0.0187, 0.0121, 0.0121], [0.5398, 0.1365, 0.0606, 0.0569, 0.0223, 0.0197, 0.0127, 0.0119]], "ranks": {"Kotlin": [238248, 219640, 189998, 52599, 102763, 112529, 130588, 203102, 160175, 220381, 190370, 112958, 111082, 136405, 212911, 106785, 109534, 133508, 134597, 171038, 193184, 159420, 181365, 215231, 214514, 182069, 164682, 191550, 157030, 149246, 148885, 164254, 167173, 158517, 185007, 133532, 110013, 124191, 120672, 108055, 105571, 79469, 50373, 58081, 64967, 81095, 62932, 52841, 45490, 36124, 52896, 32666, 18429, 9122, 5307, 1861, 790, 647, 750, 1086, 932, 400, 364]}}, {"pos": 457, "top": [[".", ",", " \u2013", "\u2013", ";", "\u00a0", " ", "\u00a0\u00a0"], [" \u2013", "\u2013", ",", ".", ";", "\u2013and", " ", ":"], [".", ",", "\u2013", " \u2013", "\u2026", "\u2026.", ";", "\u2026.."], [" milfs", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Shemale", "-------------</", "----------</", " ;;^", " Blowjob", "TRGL"], [".", "\u00a0\u00a0", ",", " ", ".@", " \u2019", "\u2026.", ":"], [".", "\u00a0\u00a0", ",", "\u2026.", " \u200b\u200b", ":", "\u2026..", " \u201c."], [".", "  \n", "\u00a0\u00a0", "  \n\n", " ", "\u00a0", ".\u2019", "   \n"], [".", "   \n", "  \n", "  ", ":", "!.", "  \r\n", "   \n\n"], [".", ",", ":", ".\u201d", "\u00a0", "\u201d.", "!\u201d.", "\u2019."], [",", ".", "\u00a0", "\u2013", "\u00a0\u00a0", ":", ";", " "], [".", ",", "\u00a0", " ", "...", "\u2026", " [\u2026]", "\u2013"], [" ***", " ", " lack", "...", " hard", " huge", " bigger", " thr"], [" impact", " huge", " lack", " showcase", " ", ".", " hard", ":"], [" huge", " massive", " impact", " lack", " gap", " power", " showcase", " "], [" huge", " massive", " impact", " ", " heavy", " choice", " showcase", " lack"], [" showcase", " showcasing", " impact", " impactful", " massive", " upfront", " tech", " showcased"], [" tech", " impact", " massive", " big", " huge", " lack", " showcase", " tough"], [" tweaking", " tech", " relentless", " savvy", " pricey", " hefty", " huge", " sprawling"], [" relentless", " huge", " sprawling", " looming", " hefty", " gritty", " overwhelming", " flashy"], [" relentless", " sprawling", " huge", " looming", " hefty", " myriad", " lack", " pricey"], ["<|endoftext|>", " \n\n", "  \n\n", " sprawling", " relentless", " myriad", " burgeoning", " hugely"], [" relentless", " looming", " sprawling", " ;;^", " huge", " skyrocket", " desperation", " lack"], [" relentless", " looming", " sprawling", " lack", " myriad", " relentlessly", " impact", " ``"], [" ultimately", " lack", " myriad", " looming", " sprawling", " relentless", " breaking", " choice"], [" \n\n", "  \n\n", " \r\n\r\n", "   \n\n", " myriad", "\r\n\r\n", "\n\n", " sprawling"], [" relentless", " sprawling", " looming", " impact", " myriad", " lack", " huge", " tech"], [" sprawling", " relentless", " myriad", " looming", " ultimately", " lack", " massive", " hugely"], [" \n\n", "\n\n", " ultimately", " heavily", " sprawling", " myriad", " complex", " massive"], [" sprawling", " massive", " complex", " \n\n", " myriad", " tech", " relentless", " heavily"], [" complex", " massive", " sprawling", " heavily", " relentless", " heavy", " lack", " tech"], [" complex", " massive", " huge", " lack", " heavily", " heavy", " ultimately", " over"], [" complex", " over", " critical", " high", " massive", " long", " heavily", " ,"], [" complex", " critical", " massive", " \"", " power", " over", " long", " high"], [" complex", " relentless", " critical", " dual", " tech", " complexity", " massive", " strategic"], [" relentless", " dual", " complex", " relentlessly", " strategic", " complexity", " critical", " hybrid"], [" relentless", " \u201c", " complex", " dual", " demanding", " relentlessly", " complexity", " critical"], [" relentless", " \u201c", " demanding", " relentlessly", " complex", " tech", " hardware", " complexity"], [" relentless", " demanding", " complexity", " complex", " hardware", " dual", " \u201c", " tech"], [" relentless", " complex", " demanding", " complexity", " impossible", " demand", " relentlessly", " hardware"], [" demanding", " demands", " performance", " demand", " hardware", " requirement", " relentless", " complexity"], [" demanding", " hardware", " performance", " demands", " technical", " demand", " constraints", " requirements"], [" performance", " demanding", " demands", " hardware", " constraints", " demand", " requirements", " technical"], [" demands", " constraints", " demanding", " performance", " hardware", " demand", " requirements", " requirement"], [" demands", " demanding", " requirements", " performance", " constraints", " demand", " requirement", " hardware"], [" demands", " requirements", " demanding", " requirement", " demand", " constraints", " performance", " hardware"], [" demands", " requirement", " demanding", " requirements", " demand", " constraints", " performance", " hardware"], [" demands", " requirement", " demand", " demanding", " requirements", " constraints", " hardware", " synergy"], [" demands", " combination", " combined", " requirement", " demand", " simultaneous", " requirements", " synergy"], [" demands", " combination", " hardware", " synergy", " combined", " demand", " constraints", " simultaneous"], [" synergy", " contradiction", " contradictions", " bottleneck", " demands", " constraints", " simultaneous", " physics"], [" synergy", " contradiction", " mismatch", " contradictions", " bottleneck", " combination", " **+", " physics"], [" hardware", " physics", " requirement", " constraints", " bottleneck", " synergy", " contradiction", " mismatch"], [" hardware", " bottleneck", " physics", " mismatch", " constraints", " requirement", " contradiction", " latency"], [" hardware", " contradiction", " mismatch", " bottleneck", " physics", " **+", " latency", " runtime"], [" contradiction", " contradictions", " mismatch", " clash", " conflicting", " conflict", "\u77db\u76fe", " contradictory"], [" contradiction", " runtime", " mismatch", " contradictions", " bottleneck", " clash", " physics", " CPU"], [" contradiction", " runtime", " physics", " mismatch", " CPU", " GPU", " latency", " hardware"], [" contradiction", " hardware", " runtime", " GPU", " CPU", " latency", " physics", " concurrency"], [" physics", " contradiction", " GPU", " runtime", " CPU", " hardware", " performance", " latency"], [" physics", " hardware", " runtime", " GPU", " performance", " CPU", " contradiction", " latency"], [" physics", " GPU", " runtime", " CPU", " performance", " hardware", " contradiction", " latency"], [" physics", " runtime", " GPU", " CPU", " performance", " contradiction", " hardware", " Android"], [" physics", " GPU", " performance", " runtime", " CPU", " contradiction", " mismatch", " intersection"]], "p": [[0.7934, 0.2006, 0.002, 0.002, 0.0009, 0.0002, 0.0002, 0.0001], [0.4086, 0.3182, 0.1503, 0.0912, 0.0075, 0.0019, 0.0019, 0.0007], [0.4726, 0.3248, 0.1739, 0.0162, 0.0041, 0.0028, 0.0022, 0.0015], [0.0111, 0.0056, 0.0041, 0.0041, 0.0034, 0.0032, 0.003, 0.0026], [0.0552, 0.0518, 0.0123, 0.009, 0.0079, 0.0055, 0.0048, 0.0048], [0.3694, 0.0642, 0.0566, 0.0366, 0.0251, 0.0196, 0.0173, 0.0053], [0.8152, 0.0336, 0.0217, 0.0169, 0.0109, 0.0103, 0.0096, 0.0091], [0.4967, 0.1515, 0.0232, 0.0218, 0.017, 0.0091, 0.008, 0.0075], [0.9635, 0.0074, 0.0035, 0.0029, 0.0024, 0.0017, 0.0014, 0.0013], [0.9622, 0.0176, 0.0073, 0.0031, 0.0027, 0.0016, 0.0009, 0.0004], [0.5704, 0.346, 0.0284, 0.0172, 0.0118, 0.0072, 0.0044, 0.0019], [0.0124, 0.0109, 0.0052, 0.0052, 0.0052, 0.0048, 0.0043, 0.0043], [0.011, 0.0103, 0.008, 0.0071, 0.0055, 0.0046, 0.004, 0.004], [0.0334, 0.0131, 0.0108, 0.0058, 0.0051, 0.0042, 0.0037, 0.0037], [0.0333, 0.0202, 0.0157, 0.0139, 0.0074, 0.0062, 0.0058, 0.0054], [0.0168, 0.014, 0.0123, 0.0085, 0.0058, 0.0048, 0.004, 0.0038], [0.0137, 0.0129, 0.0107, 0.0107, 0.0094, 0.0089, 0.0083, 0.0054], [0.0118, 0.0098, 0.0092, 0.0092, 0.0076, 0.0063, 0.0056, 0.0049], [0.025, 0.0134, 0.0118, 0.0072, 0.0067, 0.0052, 0.0052, 0.0049], [0.0281, 0.0264, 0.016, 0.0133, 0.0086, 0.0081, 0.0071, 0.0067], [0.166, 0.0164, 0.0136, 0.0094, 0.0088, 0.0073, 0.0053, 0.0047], [0.0069, 0.0054, 0.0054, 0.0029, 0.0027, 0.0025, 0.0023, 0.0021], [0.0174, 0.0136, 0.0113, 0.0099, 0.0057, 0.005, 0.0047, 0.0041], [0.0126, 0.0092, 0.0081, 0.0076, 0.0063, 0.006, 0.0036, 0.0032], [0.1128, 0.0879, 0.0209, 0.0184, 0.0143, 0.0105, 0.0093, 0.0087], [0.0226, 0.02, 0.01, 0.0061, 0.0057, 0.0057, 0.0054, 0.0054], [0.0256, 0.0107, 0.0107, 0.0094, 0.0073, 0.0069, 0.0069, 0.005], [0.0251, 0.0208, 0.0195, 0.0143, 0.0126, 0.0119, 0.0092, 0.0087], [0.026, 0.019, 0.019, 0.0179, 0.0148, 0.0139, 0.0131, 0.0131], [0.0314, 0.0245, 0.0179, 0.0158, 0.0131, 0.0116, 0.0116, 0.0102], [0.034, 0.0234, 0.0151, 0.0125, 0.011, 0.011, 0.0104, 0.0104], [0.0307, 0.0145, 0.0128, 0.012, 0.012, 0.012, 0.01, 0.0094], [0.024, 0.0155, 0.0137, 0.0121, 0.0106, 0.0106, 0.0088, 0.0088], [0.0443, 0.0443, 0.0223, 0.0209, 0.0163, 0.0163, 0.0163, 0.0119], [0.0716, 0.036, 0.0298, 0.0181, 0.0181, 0.0141, 0.0141, 0.0124], [0.0919, 0.0864, 0.0299, 0.0247, 0.0232, 0.016, 0.0141, 0.0132], [0.1095, 0.0486, 0.0295, 0.026, 0.0203, 0.0203, 0.019, 0.0179], [0.0709, 0.0487, 0.038, 0.0315, 0.0216, 0.0203, 0.0191, 0.0168], [0.0501, 0.039, 0.039, 0.0285, 0.0222, 0.0222, 0.0153, 0.0153], [0.1248, 0.0589, 0.0431, 0.0431, 0.0431, 0.0278, 0.0262, 0.0246], [0.0918, 0.0761, 0.0593, 0.0593, 0.0407, 0.0383, 0.0317, 0.0247], [0.1245, 0.1245, 0.0804, 0.0755, 0.0553, 0.0458, 0.0315, 0.0315], [0.0966, 0.0801, 0.0707, 0.0707, 0.0624, 0.0456, 0.0429, 0.0295], [0.1905, 0.1019, 0.1019, 0.0701, 0.0658, 0.0581, 0.0546, 0.0375], [0.1657, 0.0887, 0.0691, 0.061, 0.0573, 0.0505, 0.0505, 0.0288], [0.1874, 0.0781, 0.0781, 0.0689, 0.0647, 0.0369, 0.027, 0.027], [0.1817, 0.0972, 0.0757, 0.052, 0.0489, 0.0459, 0.0381, 0.0316], [0.1452, 0.1281, 0.1281, 0.0534, 0.0534, 0.0443, 0.0391, 0.0367], [0.1255, 0.0715, 0.0557, 0.0462, 0.0383, 0.0383, 0.0359, 0.0317], [0.0721, 0.0721, 0.0598, 0.0527, 0.0437, 0.0437, 0.0411, 0.0282], [0.0923, 0.0675, 0.056, 0.03, 0.0206, 0.0206, 0.0206, 0.0206], [0.1136, 0.0734, 0.0608, 0.0369, 0.0346, 0.0253, 0.0224, 0.021], [0.2033, 0.096, 0.0748, 0.0514, 0.0258, 0.0189, 0.0189, 0.0178], [0.1721, 0.134, 0.1044, 0.0813, 0.0559, 0.0219, 0.0219, 0.0219], [0.8238, 0.0319, 0.0249, 0.0171, 0.0118, 0.0118, 0.0118, 0.0118], [0.6178, 0.0947, 0.0836, 0.024, 0.0165, 0.0165, 0.0145, 0.01], [0.4602, 0.1693, 0.08, 0.0378, 0.0333, 0.0229, 0.0229, 0.0157], [0.3705, 0.1544, 0.1203, 0.0937, 0.0827, 0.039, 0.0237, 0.0077], [0.3969, 0.1875, 0.1137, 0.0781, 0.069, 0.0537, 0.0198, 0.0073], [0.267, 0.1835, 0.1113, 0.1113, 0.0982, 0.0765, 0.0526, 0.0171], [0.2913, 0.2002, 0.2002, 0.0946, 0.0574, 0.0394, 0.0307, 0.0113], [0.4932, 0.1101, 0.0857, 0.0668, 0.0336, 0.0315, 0.0191, 0.0109], [0.6958, 0.0445, 0.0369, 0.0325, 0.0185, 0.0136, 0.0088, 0.0082]], "ranks": {"Kotlin": [210253, 204052, 164336, 18183, 44769, 61925, 165834, 207780, 155166, 236375, 193069, 105237, 82200, 147892, 197151, 64237, 80358, 110195, 147067, 187934, 218171, 172634, 195957, 231004, 216615, 144344, 144512, 156362, 108823, 109166, 113774, 144267, 140101, 60242, 102587, 93722, 69677, 65481, 66085, 61556, 70702, 72936, 45177, 51472, 63825, 92368, 64635, 51552, 31033, 24536, 23513, 13810, 6148, 3524, 1475, 920, 387, 459, 570, 663, 646, 247, 257]}}, {"pos": 458, "top": [[" \u2013", ",", ".", "\u2013", "a", " ", " \u2013,", "\u2013and"], [" \u2013", " \u2013**", " \u2013,", " **\u2013", "**\u2013", "\u2013", "\u2013and", "\u2013\u2013"], [" \u2013", "\u2013", "**\u2013", " \u2013,", "\u2013and", " **\u2013", ",", ".\u2013"], [" ``", "``", " **\u201e", " **\u300c", " ``(", "\u52a0\u62ff\u5927", " **\u3010", " **>>"], [" **\u2013", "es", " **\u201e", " $$", " \"@", "\u52a0\u62ff\u5927", "\u65b0\u52a0\u5761", "aikan"], [" **\u2013", "**\u2013", "\u5728", " \u2013**", " **\u201e", " **-", "astra", "\u65b0\u52a0\u5761"], ["\u5728", " ``", " $$", " **\u2013", "es", " **\u300c", " **-", "``"], [" ``", " **\u2013", " \r\n \r\n", " **\u300c", " **-", " **\u201e", "\u5728", "``"], ["   \n\n", " ``", " **\u300c", " \n\n", " **\u201e", " **\u2013", " \r\n \r\n", "\u5728"], ["aikan", " $\\", " **\u2013", " ``", "\u4e0d\u53ef\u601d\u8bae", "\u0e4c", " physics", ".Physics"], [" ``", "a", "es", " $\\", " physics", " $$", " **\u300c", "aikan"], [" ``", " **\u300c", " physics", " **\u201e", " **\u00ab", "aikan", " **", " **-"], [" physics", " ``", " **\u201e", " **\u300c", " **\u00ab", "es", " **-", " **"], [" physics", " ``", "es", " Physics", " **\u00ab", " vibe", " **\u201e", " dynamics"], [" ``", " physics", "es", " -", " vibe", " Physics", " futuristic", " world"], [" ``", " physics", "es", " Physics", " -", "aikan", "evo", " modeling"], [" physics", "es", " vibe", " Physics", " ``", " combo", "evo", " realms"], [" physics", " ``", " Physics", " vibe", " **\u00ab", " **\u300c", "Physics", "es"], [" physics", " ``", "Physics", " Physics", "es", ".Physics", "physics", "evo"], [" physics", " ``", ".Physics", "Physics", "es", "physics", "SPELL", " Physics"], [" physics", "Physics", ".Physics", " Physics", " ``", "es", "physics", "ysics"], [" ``", " physics", " ;;^", " ``(", " Physics", "Physics", "physics", "``"], [" ``", " physics", "``", " ``(", " Physics", "Physics", "physics", ".Physics"], [" ``", " physics", " Physics", "Physics", "physics", ".Physics", "``", " mechanics"], [" physics", " ``", "Physics", " Physics", ".Physics", "physics", " ;;^", "``"], [" physics", " Physics", "Physics", "physics", " ``", ".Physics", " ;;^", "\u7269\u7406\u5b66"], [" physics", "Physics", " Physics", " ``", "physics", ".Physics", "\u7269\u7406\u5b66", " ;;^"], [" physics", " ``", " Physics", "Physics", ".Physics", " mechanics", "physics", " gravity"], [" physics", " Physics", "Physics", "physics", " mechanics", ".Physics", " gravity", " engine"], [" physics", " Physics", " mechanics", "Physics", " engine", " gravity", "physics", " game"], [" physics", " Physics", " mechanics", " engine", " game", " gravity", "physics", " games"], [" physics", " Physics", " game", " mechanics", " engine", " games", " gravity", " science"], [" physics", " Physics", " game", " mechanics", " science", " engine", " and", " gravity"], [" physics", " Physics", " mechanics", " science", " gravity", "physics", " engine", " game"], [" physics", " Physics", "physics", "Physics", " mechanics", " science", " biome", " gravity"], [" physics", " Physics", "physics", "Physics", " mechanics", " science", " physicist", " dynamics"], [" physics", " Physics", "physics", "Physics", " mechanics", "\u7684\u7269\u7406", " physicist", "\u7269\u7406\u5b66"], [" physics", " Physics", "physics", "Physics", " mechanics", "\u7684\u7269\u7406", " physicist", " science"], [" physics", " Physics", "physics", "Physics", " mechanics", "\u7684\u7269\u7406", " science", "\u7269\u7406\u5b66"], [" physics", " Physics", "physics", "Physics", "\u7269\u7406\u5b66", "\u7684\u7269\u7406", "\u7269\u7406", " physicists"], [" physics", " Physics", "physics", "Physics", "\u7269\u7406\u5b66", "\u7269\u7406", " physicists", " science"], [" physics", " Physics", "physics", "Physics", "\u7269\u7406\u5b66", " physicists", " physicist", "\u7269\u7406"], [" physics", " Physics", "physics", "Physics", "\u7269\u7406\u5b66", " physicists", " physicist", "\u7684\u7269\u7406"], [" physics", " Physics", "physics", "Physics", "\u7269\u7406\u5b66", "\u7269\u7406", "\u7684\u7269\u7406", " physicists"], [" physics", " Physics", "physics", "Physics", "\u7269\u7406\u5b66", " physical", " physicists", "\u7269\u7406"], [" physics", " Physics", "physics", "Physics", "\u7269\u7406\u5b66", " physical", "\u7684\u7269\u7406", " physicists"], [" physics", " Physics", "physics", "Physics", "\u7269\u7406\u5b66", " physical", "\u7684\u7269\u7406", " physicists"], [" physics", " Physics", "physics", "Physics", "\u7269\u7406\u5b66", " physicists", " reality", "\u7269\u7406"], [" physics", " Physics", "physics", "Physics", "\u7269\u7406\u5b66", " physicists", "\u7269\u7406", "\u7684\u7269\u7406"], [" physics", " Physics", "physics", "Physics", "\u7269\u7406\u5b66", " reality", " physicists", "\u7269\u7406"], [" physics", "physics", "Physics", " Physics", "\u7269\u7406\u5b66", " imposs", "/math", "-vs"], [" physics", "physics", "Physics", " Physics", "\u7269\u7406\u5b66", "-vs", ".Physics", "\u7269\u7406"], [" physics", "Physics", " Physics", "physics", " reality", "\u7269\u7406\u5b66", ".Physics", " imposs"], [" physics", "Physics", " Physics", "physics", ".Physics", "/math", " reality", " imposs"], [" physics", "Physics", " Physics", "physics", ".Physics", "/math", " reality", "-vs"], [" physics", "-vs", " Physics", "/math", "Physics", " imposs", "physics", ".Physics"], [" physics", " Physics", "Physics", "/math", " imposs", "physics", ".Physics", "-vs"], [" physics", " Physics", "/math", " reality", "Physics", "Reality", " imposs", "physics"], [" engine", "\u5f15\u64ce", "engine", " Engine", "/engine", " engines", "Engine", "-engine"], [" engine", "\u5f15\u64ce", " engines", " Engine", "-engine", "engine", "Engine", "/engine"], [" engine", "\u5f15\u64ce", " engines", " Engine", "-engine", "/engine", "engine", "Engine"], [" engine", " of", "-engine", "\u5f15\u64ce", " engines", " Engine", "/engine", "Engine"], [" engine", " of", "-def", "/", "-engine", "-of", ":", "/engine"]], "p": [[0.9481, 0.0237, 0.0105, 0.0077, 0.0027, 0.0013, 0.0006, 0.0003], [0.9657, 0.02, 0.0074, 0.0022, 0.0015, 0.0008, 0.0008, 0.0002], [0.7787, 0.1533, 0.0143, 0.0126, 0.0087, 0.0067, 0.0059, 0.0046], [0.2329, 0.071, 0.0667, 0.0459, 0.0405, 0.0296, 0.0109, 0.0096], [0.0718, 0.0525, 0.0493, 0.0463, 0.0384, 0.0219, 0.0206, 0.017], [0.4651, 0.0337, 0.0169, 0.0169, 0.014, 0.0097, 0.0075, 0.0075], [0.1005, 0.0735, 0.0538, 0.0446, 0.0393, 0.0347, 0.0306, 0.027], [0.1883, 0.0507, 0.0255, 0.0255, 0.0239, 0.0225, 0.0225, 0.0186], [0.0707, 0.0551, 0.0457, 0.0429, 0.0314, 0.023, 0.0158, 0.0115], [0.0437, 0.0282, 0.0206, 0.0171, 0.0097, 0.0097, 0.0092, 0.0092], [0.0996, 0.0501, 0.0323, 0.0252, 0.0237, 0.0196, 0.0173, 0.0143], [0.1718, 0.1042, 0.0632, 0.0558, 0.0408, 0.0263, 0.017, 0.016], [0.1148, 0.084, 0.0577, 0.045, 0.0422, 0.0094, 0.0069, 0.0057], [0.1278, 0.0604, 0.0127, 0.0053, 0.005, 0.0047, 0.0041, 0.0032], [0.3121, 0.0479, 0.0137, 0.0065, 0.0045, 0.0035, 0.0033, 0.0025], [0.1417, 0.0758, 0.0169, 0.0071, 0.0055, 0.004, 0.0035, 0.0031], [0.111, 0.0281, 0.0141, 0.0086, 0.0059, 0.0034, 0.0031, 0.003], [0.1223, 0.0423, 0.0114, 0.0083, 0.0078, 0.0078, 0.0073, 0.0047], [0.1086, 0.0201, 0.0157, 0.0157, 0.0074, 0.0074, 0.0065, 0.0042], [0.0477, 0.0448, 0.0128, 0.0106, 0.01, 0.0044, 0.0044, 0.0042], [0.1057, 0.0365, 0.0284, 0.0251, 0.0222, 0.0111, 0.0063, 0.0053], [0.3405, 0.0671, 0.0141, 0.008, 0.0075, 0.004, 0.0033, 0.0031], [0.8037, 0.04, 0.013, 0.0079, 0.0048, 0.0037, 0.0019, 0.0017], [0.563, 0.1613, 0.0193, 0.0091, 0.0043, 0.0043, 0.0036, 0.0023], [0.2995, 0.2191, 0.0757, 0.0336, 0.0262, 0.014, 0.0043, 0.0038], [0.565, 0.0409, 0.0409, 0.0182, 0.0125, 0.0081, 0.0059, 0.0049], [0.5059, 0.0442, 0.0268, 0.0237, 0.0163, 0.0127, 0.006, 0.0056], [0.491, 0.0518, 0.0277, 0.0216, 0.0084, 0.007, 0.0062, 0.004], [0.7564, 0.0401, 0.0377, 0.0122, 0.0051, 0.0048, 0.0033, 0.002], [0.7563, 0.0275, 0.0101, 0.0079, 0.0051, 0.0051, 0.0048, 0.0048], [0.8027, 0.0375, 0.0108, 0.0061, 0.0058, 0.0037, 0.0027, 0.0027], [0.6265, 0.0401, 0.0178, 0.0108, 0.0084, 0.0074, 0.0065, 0.0058], [0.5128, 0.0508, 0.0165, 0.0137, 0.0113, 0.0078, 0.0073, 0.0065], [0.8567, 0.0376, 0.0065, 0.0037, 0.0033, 0.0031, 0.0019, 0.0017], [0.9008, 0.0576, 0.0069, 0.0037, 0.0032, 0.0016, 0.0008, 0.0007], [0.8649, 0.0912, 0.008, 0.0035, 0.0031, 0.001, 0.0007, 0.0006], [0.8958, 0.0833, 0.0053, 0.0022, 0.0013, 0.0006, 0.0004, 0.0003], [0.9008, 0.0838, 0.0047, 0.002, 0.0009, 0.0004, 0.0004, 0.0003], [0.9457, 0.0471, 0.0034, 0.0009, 0.0003, 0.0002, 0.0002, 0.0002], [0.9532, 0.0419, 0.003, 0.001, 0.0002, 0.0001, 0.0001, 0.0001], [0.9667, 0.0292, 0.0027, 0.0008, 0.0002, 0.0, 0.0, 0.0], [0.9792, 0.0179, 0.0019, 0.0005, 0.0001, 0.0001, 0.0, 0.0], [0.9848, 0.0124, 0.0019, 0.0004, 0.0002, 0.0001, 0.0, 0.0], [0.9806, 0.0158, 0.0024, 0.0007, 0.0002, 0.0001, 0.0, 0.0], [0.9846, 0.0124, 0.0019, 0.0006, 0.0001, 0.0001, 0.0, 0.0], [0.9833, 0.014, 0.0017, 0.0005, 0.0001, 0.0001, 0.0001, 0.0], [0.9854, 0.0109, 0.0024, 0.0005, 0.0001, 0.0001, 0.0001, 0.0001], [0.9867, 0.0097, 0.0022, 0.0008, 0.0001, 0.0001, 0.0001, 0.0001], [0.9805, 0.0085, 0.0075, 0.0021, 0.0004, 0.0001, 0.0001, 0.0001], [0.9674, 0.0156, 0.0107, 0.0045, 0.001, 0.0001, 0.0001, 0.0001], [0.927, 0.028, 0.0218, 0.017, 0.0033, 0.0004, 0.0002, 0.0002], [0.8924, 0.0503, 0.0305, 0.0144, 0.0068, 0.0008, 0.0005, 0.0004], [0.858, 0.0427, 0.0377, 0.0259, 0.0095, 0.0045, 0.0035, 0.0021], [0.721, 0.076, 0.076, 0.0522, 0.0103, 0.0091, 0.0091, 0.008], [0.6616, 0.0697, 0.0697, 0.0479, 0.0329, 0.0226, 0.0129, 0.0089], [0.4097, 0.0758, 0.0712, 0.0669, 0.0521, 0.046, 0.0297, 0.0204], [0.5451, 0.1073, 0.0651, 0.0575, 0.042, 0.0327, 0.0155, 0.012], [0.4494, 0.1003, 0.0781, 0.0689, 0.0474, 0.0238, 0.0238, 0.0238], [0.8953, 0.0833, 0.0047, 0.0041, 0.0032, 0.0032, 0.0025, 0.0025], [0.973, 0.0108, 0.0045, 0.004, 0.0024, 0.0021, 0.0017, 0.001], [0.992, 0.0036, 0.0025, 0.0007, 0.0004, 0.0003, 0.0002, 0.0002], [0.9733, 0.0123, 0.0031, 0.0021, 0.0021, 0.0013, 0.0012, 0.0005], [0.8768, 0.072, 0.0092, 0.0052, 0.0052, 0.003, 0.0026, 0.0019]], "ranks": {"Kotlin": [54567, 44424, 10790, 2461, 12435, 14493, 4355, 20336, 19873, 24300, 16358, 8207, 9942, 16362, 41325, 14661, 12060, 6130, 11710, 24460, 71767, 25196, 27397, 103944, 86367, 29189, 28965, 97095, 39429, 17804, 16811, 27827, 41503, 8975, 13460, 13644, 21113, 18083, 20385, 18792, 22852, 16003, 14800, 13903, 17641, 39322, 21495, 22380, 26983, 27798, 36532, 36377, 64129, 50972, 24565, 20259, 9814, 5823, 6918, 3431, 6012, 785, 1006]}}, {"pos": 459, "top": [[".", " \u2013", ",", "\u2013", ";", "\u2026..", "\u2026.", "\u00a0"], [" \u2013", "\u2013", ".", "\u2013and", ",", ";", "?.", ":."], [",", ".", "\u2013", "\u2026", " \u2013", "\u2026.", "\u2026..", ";"], [" milfs", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Shemale", " Blowjob", " Guta", " ;;^", " Strec", " \u041a\u0440\u0430\u0441\u0438"], [".@", ".-", ":@", "-and", "@g", ":-", "-a", "-\""], ["\u2026..", " \u200b\u200b", "\u2026.", ",", ".", "-a", "-and", "\ud83d\ude42"], ["..\"", " ..", "..", "-or", "-and", "-\"", "-", " **\u2022"], ["-and", "..\"", "..", " ..", ":-", "-but", " @", " **\u2022"], ["..\"", "   \n\n", "..", "  \n\n", " ..", "-and", ",..", " \u201e"], ["-but", ",", "-", "-or", " $\\", "-and", " myriad", "\u60df\u4e00"], ["-", "\u2026", " ", "..", "-but", ",", "-or", " \u2013"], [" stuff", " physics", " **\u2022", "stuff", " profoundly", " gritty", " myriad", " psyche"], [" stuff", " physics", " veggies", " psyche", " transformative", " nuanced", "stuff", " imagination"], [" stuff", " physics", " imagination", " big", " -", " weird", " transformative", " freaking"], [" -", " stuff", " imagination", " --", " big", " deep", " physics", " myriad"], [" -", " stuff", " big", " --", " imagination", " deep", " myriad", " sprawling"], [" big", " -", " stuff", " deep", " myriad", " \"", " going", " hard"], [" stuff", " physics", " big", " crunch", " booze", " freaking", " reality", " imagination"], [" stuff", " physics", " booze", " gritty", " crunch", " geopol", " big", " reality"], [" stuff", " physics", " myriad", " gritty", " crunch", " big", " sprawling", " profoundly"], [" myriad", " physics", " stuff", " sprawling", " bouncing", " ``", " deep", " -"], [" ``", " physics", " ;;^", " stuff", " gritty", " geopol", " Physics", " crunch"], [" ``", " physics", " stuff", " ``(", " myriad", " ''", " --", " Physics"], [" ``", " physics", " --", " myriad", " -", " exploding", " stuff", " ''"], [" physics", " ``", " Physics", " myriad", "Physics", " --", " stuff", "physics"], [" physics", " Physics", " ``", "physics", "Physics", " gravity", " stuff", " science"], [" physics", " Physics", "physics", "Physics", " gravity", " ``", " physicists", " science"], [" physics", " ``", " science", " Physics", " stuff", " --", " energy", " gravity"], [" physics", " science", " Physics", " energy", " gravity", " engineering", " mechanics", " power"], [" physics", " science", " Physics", " energy", " power", " engineering", " mechanics", " gravity"], [" physics", " science", " power", " energy", " Physics", " mechanics", " physical", " gravity"], [" physics", " science", " power", " energy", " physical", " Physics", " human", " mechanics"], [" physics", " science", " power", " energy", " Physics", " physical", " gravity", " mechanics"], [" physics", " science", " Physics", " physical", " gravity", " mechanics", " power", " energy"], [" physics", " science", " Physics", " mechanics", " physical", " gravity", " powering", "physics"], [" physics", " Physics", " science", "physics", " powering", " mechanics", " hardware", " power"], [" physics", " Physics", " hardware", "physics", " mechanics", " physical", " powering", " power"], [" physics", " Physics", " hardware", " mechanics", " physical", "physics", " science", " powering"], [" physics", " Physics", " mechanics", " hardware", "physics", " physical", " science", " powering"], [" physics", " Physics", " hardware", " mechanics", "physics", " physical", " powering", " technology"], [" physics", " Physics", " hardware", " mechanics", "physics", " physical", " technology", " tech"], [" physics", " Physics", " hardware", " technology", " mechanics", " physical", "physics", " powering"], [" physics", " Physics", " hardware", " mechanics", "physics", " technology", " physical", " physicists"], [" physics", " Physics", " hardware", "physics", " mechanics", " technology", " physical", "Physics"], [" physics", " Physics", " hardware", " mechanics", "physics", " physical", " technology", " economics"], [" physics", " Physics", " hardware", "physics", " physical", " mechanics", " economics", " chemistry"], [" physics", " Physics", " hardware", "physics", " physical", " chemistry", " mechanics", "Physics"], [" physics", " Physics", "physics", " hardware", "Physics", " physical", " mechanics", " economics"], [" physics", " Physics", "physics", "Physics", " hardware", " economics", "\u7269\u7406\u5b66", " chemistry"], [" physics", " Physics", "physics", "Physics", " hardware", " economics", "\u7269\u7406\u5b66", " biology"], [" physics", "physics", "Physics", " Physics", "\u7269\u7406\u5b66", " hardware", " economics", ".Physics"], [" physics", " CPU", "physics", "Physics", " Physics", "CPU", " hardware", "cpu"], [" physics", " CPU", "CPU", " latency", " hardware", "_cpu", "physics", " Physics"], [" CPU", " physics", "CPU", " hardware", " CPUs", "cpu", "_cpu", " latency"], [" CPU", "CPU", " hardware", " GPU", "cpu", " cpu", " physics", "_cpu"], [" CPU", "CPU", " GPU", " runtime", " latency", " cpu", "cpu", " hardware"], [" CPU", " GPU", " physics", " runtime", "CPU", " hardware", " bytecode", " latency"], [" CPU", " GPU", " runtime", "CPU", " latency", " hardware", "cpu", " CPUs"], [" CPU", " GPU", "CPU", " runtime", " physics", " threading", " mobile", " rendering"], [" CPU", " GPU", " rendering", " mobile", " threading", " memory", " latency", " garbage"], [" mobile", " CPU", " GPU", " threading", " rendering", " execution", " garbage", " memory"], [" mobile", " rendering", " threading", " CPU", " execution", " garbage", " GPU", " Kotlin"], [" garbage", " rendering", " mobile", " threading", " execution", " memory", " Kotlin", " CPU"]], "p": [[0.8326, 0.0878, 0.0532, 0.0173, 0.0018, 0.0012, 0.0011, 0.001], [0.8491, 0.0479, 0.0309, 0.0037, 0.0025, 0.0009, 0.0008, 0.0006], [0.3981, 0.31, 0.188, 0.0327, 0.0327, 0.012, 0.0106, 0.005], [0.0303, 0.0173, 0.0098, 0.0092, 0.0082, 0.0064, 0.0039, 0.0032], [0.0188, 0.0122, 0.0101, 0.0095, 0.0089, 0.0051, 0.0048, 0.0039], [0.0482, 0.0452, 0.0274, 0.0166, 0.0107, 0.0095, 0.0089, 0.0069], [0.0676, 0.0385, 0.03, 0.0194, 0.0151, 0.0118, 0.011, 0.0086], [0.0699, 0.0352, 0.02, 0.02, 0.0177, 0.0129, 0.0129, 0.0122], [0.0705, 0.0313, 0.0167, 0.0157, 0.0148, 0.0139, 0.0084, 0.0084], [0.0368, 0.0269, 0.0185, 0.0174, 0.0144, 0.0127, 0.0112, 0.0072], [0.3372, 0.0429, 0.0403, 0.0229, 0.019, 0.0179, 0.0148, 0.0123], [0.0393, 0.0077, 0.0057, 0.005, 0.0047, 0.0037, 0.0034, 0.0032], [0.0356, 0.0148, 0.0038, 0.0035, 0.0033, 0.0031, 0.0029, 0.0029], [0.0874, 0.0162, 0.0092, 0.0072, 0.0063, 0.006, 0.006, 0.0056], [0.0717, 0.0558, 0.0133, 0.0125, 0.0091, 0.0067, 0.0063, 0.0059], [0.1219, 0.0289, 0.0289, 0.0165, 0.0088, 0.0088, 0.0069, 0.0057], [0.0961, 0.0454, 0.0426, 0.0157, 0.013, 0.0074, 0.0074, 0.007], [0.1031, 0.0261, 0.0179, 0.0085, 0.0075, 0.0075, 0.0075, 0.007], [0.0926, 0.0438, 0.0081, 0.0076, 0.0071, 0.0063, 0.0052, 0.0049], [0.0679, 0.0363, 0.0321, 0.0142, 0.0111, 0.0111, 0.0076, 0.0072], [0.0742, 0.051, 0.0309, 0.0089, 0.0083, 0.0083, 0.0083, 0.0073], [0.1752, 0.0416, 0.0077, 0.0064, 0.0023, 0.0023, 0.0022, 0.0019], [0.858, 0.0178, 0.002, 0.0019, 0.0014, 0.0012, 0.001, 0.0009], [0.557, 0.0335, 0.0168, 0.0123, 0.0096, 0.0048, 0.0048, 0.004], [0.3646, 0.1428, 0.016, 0.015, 0.0141, 0.0103, 0.0091, 0.0067], [0.8057, 0.0178, 0.0122, 0.007, 0.0058, 0.0033, 0.0031, 0.0024], [0.8752, 0.0117, 0.0043, 0.0034, 0.0032, 0.0032, 0.0026, 0.0025], [0.6785, 0.0192, 0.0141, 0.0091, 0.0049, 0.0049, 0.0046, 0.0043], [0.8341, 0.0127, 0.0093, 0.0034, 0.0032, 0.0028, 0.0027, 0.0025], [0.7336, 0.0222, 0.0077, 0.0068, 0.0053, 0.0049, 0.0046, 0.0046], [0.6339, 0.0358, 0.0132, 0.009, 0.008, 0.0058, 0.0055, 0.0052], [0.4115, 0.0383, 0.0232, 0.0132, 0.0091, 0.0071, 0.0067, 0.0062], [0.6478, 0.0365, 0.0134, 0.0098, 0.0082, 0.0072, 0.0056, 0.0053], [0.8838, 0.0134, 0.006, 0.0034, 0.003, 0.0028, 0.0026, 0.0017], [0.8515, 0.0147, 0.0065, 0.0037, 0.0027, 0.0027, 0.0025, 0.0021], [0.8856, 0.0143, 0.0053, 0.0036, 0.0034, 0.0032, 0.0026, 0.0025], [0.8711, 0.017, 0.0067, 0.004, 0.004, 0.0038, 0.003, 0.003], [0.8891, 0.0173, 0.0068, 0.0064, 0.0034, 0.003, 0.0028, 0.0016], [0.9544, 0.0128, 0.0032, 0.0032, 0.0024, 0.002, 0.0009, 0.0006], [0.954, 0.0128, 0.0034, 0.003, 0.0024, 0.0022, 0.0008, 0.0007], [0.9552, 0.012, 0.0069, 0.0024, 0.0017, 0.0017, 0.0016, 0.0011], [0.966, 0.0095, 0.0074, 0.0015, 0.0015, 0.0012, 0.0012, 0.0007], [0.9775, 0.0075, 0.0031, 0.0011, 0.0011, 0.0009, 0.0008, 0.0003], [0.9743, 0.0139, 0.0019, 0.0011, 0.001, 0.0007, 0.0007, 0.0003], [0.9772, 0.0096, 0.0015, 0.0013, 0.0011, 0.0008, 0.0007, 0.0005], [0.9756, 0.0123, 0.0014, 0.0011, 0.0008, 0.0008, 0.0006, 0.0004], [0.9772, 0.0109, 0.0017, 0.0017, 0.0006, 0.0005, 0.0004, 0.0004], [0.9682, 0.0156, 0.0023, 0.0018, 0.0011, 0.0011, 0.0007, 0.0007], [0.9639, 0.0137, 0.0074, 0.0024, 0.0015, 0.0009, 0.0006, 0.0005], [0.9538, 0.0198, 0.0083, 0.0041, 0.0017, 0.0009, 0.0009, 0.0004], [0.8132, 0.0405, 0.0261, 0.0217, 0.0048, 0.0035, 0.002, 0.0018], [0.5716, 0.0499, 0.0389, 0.0208, 0.0184, 0.0126, 0.0119, 0.0092], [0.3976, 0.1657, 0.0326, 0.0254, 0.0254, 0.0211, 0.0186, 0.0175], [0.5211, 0.1493, 0.0622, 0.0485, 0.0259, 0.019, 0.0167, 0.0157], [0.8544, 0.0375, 0.0177, 0.0108, 0.0095, 0.0095, 0.0084, 0.0074], [0.8405, 0.0288, 0.0136, 0.012, 0.012, 0.0106, 0.0106, 0.0073], [0.5983, 0.0715, 0.0491, 0.0263, 0.0232, 0.0232, 0.0205, 0.015], [0.711, 0.1236, 0.0354, 0.0312, 0.0115, 0.009, 0.007, 0.0062], [0.6556, 0.1658, 0.0224, 0.0175, 0.0175, 0.0106, 0.0083, 0.0073], [0.5691, 0.127, 0.0364, 0.0283, 0.0283, 0.025, 0.0172, 0.0172], [0.4185, 0.1977, 0.1058, 0.0441, 0.0389, 0.0268, 0.0184, 0.0112], [0.316, 0.1317, 0.0705, 0.0622, 0.0549, 0.0485, 0.0402, 0.0276], [0.1711, 0.151, 0.1332, 0.1038, 0.0629, 0.046, 0.0433, 0.0279]], "ranks": {"Kotlin": [214598, 173664, 192510, 27090, 54452, 88448, 26402, 134477, 50809, 140648, 100562, 25206, 30997, 32419, 81209, 64067, 60691, 26889, 31519, 56727, 160682, 103299, 134246, 192431, 104312, 29343, 20325, 72405, 56739, 47650, 44232, 47827, 43066, 30899, 54613, 41351, 31164, 31729, 33633, 21767, 23122, 23172, 13643, 15530, 22399, 33832, 36318, 38641, 36045, 29830, 40262, 10828, 2096, 1263, 483, 101, 28, 35, 38, 21, 17, 8, 7]}}, {"pos": 460, "top": [[".", ",", " \u2013", ";", "\u2013", "\u00a0\u00a0", " ", "\u00a0"], [",", ".", "\u2013", " \u2013", ";", "\u2013and", " ", ":"], [",", ".", "\u2013", " \u2013", ";", "\u2026", "\u2026.", "\u2026.."], [" milfs", "-------------</", "----------</", " ;;^", " Shemale", " Blowjob", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " cumshot"], [".@", " (@", ".", " CIF", ":@", "(@", " \"@", "\uff20"], [".", " \u200b\u200b", ",", "\u00a0\u00a0", ":", " \u201c.", " ).", " Frag"], [".", "  \n", ".\u2019", "   \n", ".\u201d", ".\"", "  \n\n", ":"], [".", "   \n", "  \n", ".@", ":", "(@", "  ", ","], [".", ",", ":", ",.", "  \n", ";", ".\u201d", "!"], [",", ".", " \u00ad", ";", "\u00ad", ":", "-", "\u2013"], [".", ",", "...", " ", "-", "  \n", " \u00ad", ";"], [" stuff", " junk", " guts", " veggies", " goodies", "\u4e94\u989c\u516d\u8272\u7684", " hard", " funky"], [" guys", " hard", " stuff", " junk", "\u4e94\u989c\u516d\u8272\u7684", " guy", " combo", " gear"], [" power", " fight", " bigger", " big", " impact", " own", " guys", " weapon"], [" stuff", " combo", " bigger", " vibe", " tech", " big", " guys", " plus"], [" stuff", " kids", " tech", " guys", " combo", " bigger", " folks", " impact"], ["o", "s", " tech", " \"", " big", " kids", " stuff", " folks"], [" tech", " combo", " vibe", " stuff", " kids", " meds", " combos", " veggies"], [" stuff", " combo", " combos", " meds", "\u6b64\u756a", " tech", " vibe", " buzz"], [" --", "\u6b64\u756a", " myriad", " sprawling", " &", " stuff", " combo", " swath"], ["<|endoftext|>", " --", " myriad", "  \n\n", " @", "\n\n", " \n\n", " sprawling"], [" ;;^", " combos", " stuff", " combo", "\u6b64\u756a", "\u5de5\u4f5c\u53ca", "\u5982\u706b\u5982\u837c", " tech"], [" --", " ``", " stuff", " ''", "\u6b64\u756a", " tech", " game", " myriad"], [" --", " ,", " ultimately", " ``", " myriad", " complex", " stuff", " ''"], [" --", " myriad", " tech", " stuff", "\u6b64\u756a", " requisite", " ultimately", " assorted"], [" tech", " stuff", " hardware", " systems", " physics", " ;;^", " gaming", " engines"], [" tech", " physics", " hardware", " systems", " stuff", " ;;^", " gaming", " engines"], [" --", " tech", " ,", " complex", " systems", " hardware", " ultimately", " core"], [" tech", " systems", " hardware", " physics", " complex", " technology", " core", " architecture"], [" systems", " complex", " tech", " technology", " hardware", " core", " system", " industry"], [" .", " complex", " systems", " ,", " work", " system", " core", " power"], [" .", " ,", " complex", " work", " power", " core", " systems", " system"], [" .", " ,", " power", " complex", " core", " work", " system", " -"], [" physics", " core", " tech", " power", " technology", " complex", " systems", " hardware"], [" physics", " tech", " core", " hardware", " mechanics", " complex", " systems", " technology"], [" tech", " physics", " hardware", " \u2014", " core", " technology", " complex", " systems"], [" tech", " hardware", " physics", " core", " technology", " \u2014", " systems", " power"], [" physics", " hardware", " tech", " mechanics", " core", " technology", " engine", " systems"], [" hardware", " physics", " tech", " technology", " mechanics", " core", " systems", " complex"], [" hardware", " technology", " tech", " physics", " systems", " core", " mechanics", " software"], [" hardware", " technology", " tech", " physics", " software", " technologies", " technological", " systems"], [" hardware", " technology", " tech", " technologies", " physics", " software", " technological", " systems"], [" hardware", " technology", " technologies", " physics", " software", " tech", " systems", " technological"], [" technology", " hardware", " technologies", " software", " physics", " tech", " systems", " technological"], [" technology", " hardware", " physics", " technologies", " software", " tech", " mechanics", " systems"], [" hardware", " technology", " physics", " technologies", " tech", " software", " mechanics", " systems"], [" hardware", " technology", " physics", " tech", " technologies", " software", " mechanics", " core"], [" hardware", " technology", " physics", " technologies", " tech", " software", " mechanics", " core"], [" hardware", " technology", " physics", " technologies", " tech", " fundamentals", " mechanics", " software"], [" hardware", " physics", " technology", " Hardware", " technologies", "hardware", " fundamentals", " CPU"], [" hardware", " physics", ".*)", "hardware", " Hardware", "Hardware", ".**", " CPU"], [" hardware", " CPU", " runtime", "CPU", " physics", " software", " CPUs", "hardware"], [" CPU", " hardware", " runtime", " physics", "CPU", " CPUs", " GPU", "_cpu"], [" hardware", " CPU", "CPU", "hardware", " GPU", " Hardware", " runtime", "Hardware"], [" hardware", " CPU", " runtime", " GPU", "CPU", " JVM", "hardware", " Hardware"], [" runtime", " hardware", " CPU", "runtime", " Runtime", " GPU", "_runtime", " JVM"], [" runtime", " hardware", " GPU", " Runtime", " CPU", " Android", "runtime", " JVM"], [" runtime", " GPU", " hardware", " CPU", " JVM", " processor", "CPU", " Runtime"], [" CPU", " GPU", " runtime", " hardware", " stack", " processor", "CPU", " JVM"], [" hardware", " runtime", " GPU", " CPU", " device", " stack", " devices", " processor"], [" runtime", " GPU", " CPU", " hardware", " device", " stack", " processor", " Runtime"], [" runtime", " GPU", " device", " Android", " CPU", " hardware", " stack", " handset"], [" runtime", " device", " GPU", " renderer", " stack", " Android", " CPU", " GC"]], "p": [[0.8481, 0.1474, 0.0014, 0.001, 0.0009, 0.0003, 0.0002, 0.0002], [0.3415, 0.3208, 0.0919, 0.0863, 0.017, 0.0023, 0.0023, 0.0023], [0.4768, 0.4768, 0.0345, 0.0068, 0.0019, 0.001, 0.0006, 0.0003], [0.017, 0.0091, 0.0075, 0.0063, 0.0055, 0.0043, 0.0038, 0.0031], [0.0321, 0.0161, 0.0142, 0.0063, 0.0063, 0.0059, 0.0046, 0.0043], [0.1363, 0.0729, 0.0196, 0.005, 0.005, 0.0027, 0.0019, 0.0018], [0.5783, 0.1139, 0.0649, 0.037, 0.037, 0.0093, 0.0064, 0.0064], [0.3701, 0.1748, 0.0442, 0.0209, 0.0127, 0.0105, 0.0082, 0.0064], [0.9474, 0.0472, 0.0013, 0.0007, 0.0006, 0.0004, 0.0003, 0.0002], [0.978, 0.0079, 0.0023, 0.0011, 0.0007, 0.0006, 0.0004, 0.0003], [0.4159, 0.4159, 0.0638, 0.0438, 0.0195, 0.0043, 0.0025, 0.0019], [0.0061, 0.0051, 0.0048, 0.0045, 0.0031, 0.0027, 0.0027, 0.0024], [0.002, 0.0018, 0.0017, 0.0015, 0.0015, 0.0013, 0.0012, 0.0012], [0.0024, 0.0021, 0.002, 0.0018, 0.0016, 0.0016, 0.0015, 0.0014], [0.0135, 0.0087, 0.005, 0.0032, 0.0032, 0.003, 0.003, 0.0027], [0.0084, 0.0084, 0.0048, 0.004, 0.0033, 0.0029, 0.0027, 0.0027], [0.057, 0.0197, 0.0174, 0.012, 0.0112, 0.0082, 0.0077, 0.0068], [0.0184, 0.0184, 0.0153, 0.0144, 0.0087, 0.0068, 0.0064, 0.006], [0.0212, 0.0128, 0.0073, 0.0042, 0.0037, 0.0037, 0.003, 0.003], [0.0349, 0.0176, 0.0137, 0.0094, 0.0078, 0.0061, 0.005, 0.005], [0.1091, 0.0662, 0.0333, 0.0229, 0.0215, 0.0215, 0.019, 0.0051], [0.0063, 0.0041, 0.0041, 0.0028, 0.0026, 0.0025, 0.0019, 0.0019], [0.037, 0.0307, 0.012, 0.012, 0.006, 0.005, 0.0044, 0.0039], [0.0472, 0.0163, 0.0144, 0.0105, 0.0099, 0.0093, 0.006, 0.0056], [0.0446, 0.0136, 0.0088, 0.0088, 0.0073, 0.0064, 0.0057, 0.0044], [0.0338, 0.0193, 0.0103, 0.0085, 0.0067, 0.0067, 0.0063, 0.0059], [0.0361, 0.0141, 0.0117, 0.011, 0.0104, 0.0081, 0.0067, 0.0063], [0.0299, 0.0233, 0.0193, 0.0193, 0.016, 0.011, 0.0103, 0.0071], [0.0664, 0.0334, 0.0277, 0.0203, 0.019, 0.0139, 0.0079, 0.0079], [0.0491, 0.0359, 0.0218, 0.0218, 0.0205, 0.015, 0.011, 0.0091], [0.0351, 0.0351, 0.0273, 0.0257, 0.0166, 0.0156, 0.0146, 0.0146], [0.0439, 0.0387, 0.0364, 0.0235, 0.0183, 0.0134, 0.0118, 0.0111], [0.0812, 0.0384, 0.0248, 0.0219, 0.016, 0.0117, 0.011, 0.0091], [0.0538, 0.0419, 0.0394, 0.0348, 0.0288, 0.0254, 0.0224, 0.0154], [0.1017, 0.0897, 0.0544, 0.0424, 0.0241, 0.0177, 0.0177, 0.0146], [0.1354, 0.099, 0.0725, 0.053, 0.0439, 0.0388, 0.0302, 0.0195], [0.1426, 0.1182, 0.0633, 0.0633, 0.0493, 0.0233, 0.017, 0.016], [0.1744, 0.1058, 0.0683, 0.0441, 0.0366, 0.0267, 0.0143, 0.0126], [0.1587, 0.1091, 0.0622, 0.0401, 0.0377, 0.0333, 0.0202, 0.019], [0.2205, 0.118, 0.1109, 0.0594, 0.0247, 0.0205, 0.0193, 0.0181], [0.2631, 0.1808, 0.1243, 0.0379, 0.0295, 0.0245, 0.0179, 0.0179], [0.2607, 0.2607, 0.0847, 0.0513, 0.0482, 0.0376, 0.0258, 0.0189], [0.2384, 0.2384, 0.0603, 0.0603, 0.0566, 0.0566, 0.0267, 0.0196], [0.3041, 0.1845, 0.0987, 0.0528, 0.0466, 0.0387, 0.0321, 0.0126], [0.2539, 0.154, 0.0728, 0.0603, 0.0366, 0.0323, 0.0303, 0.0285], [0.2011, 0.1566, 0.1011, 0.0422, 0.0328, 0.029, 0.0212, 0.0187], [0.2786, 0.0905, 0.0584, 0.0549, 0.0484, 0.0313, 0.019, 0.0095], [0.2758, 0.0697, 0.051, 0.0397, 0.0273, 0.0137, 0.0129, 0.0094], [0.331, 0.0575, 0.0477, 0.0289, 0.0165, 0.0145, 0.0121, 0.0121], [0.4264, 0.1568, 0.0256, 0.0165, 0.0146, 0.0094, 0.0073, 0.0073], [0.1572, 0.0543, 0.0227, 0.0188, 0.0129, 0.0121, 0.0114, 0.0114], [0.1868, 0.1868, 0.0392, 0.0346, 0.0269, 0.0223, 0.0197, 0.0174], [0.2571, 0.1767, 0.0574, 0.0506, 0.037, 0.0211, 0.0164, 0.0136], [0.5426, 0.2563, 0.021, 0.0164, 0.0145, 0.0128, 0.0128, 0.0113], [0.4977, 0.2351, 0.0865, 0.0281, 0.017, 0.0133, 0.0103, 0.0071], [0.5494, 0.1226, 0.1082, 0.0213, 0.0213, 0.0213, 0.0188, 0.0114], [0.6598, 0.1012, 0.0422, 0.0328, 0.0226, 0.0176, 0.0137, 0.0094], [0.305, 0.2376, 0.185, 0.185, 0.0152, 0.0118, 0.0092, 0.0081], [0.3498, 0.2725, 0.2122, 0.0781, 0.0253, 0.0136, 0.0093, 0.0073], [0.3341, 0.1788, 0.1578, 0.1229, 0.1085, 0.0242, 0.0166, 0.0147], [0.5364, 0.2534, 0.0932, 0.044, 0.0143, 0.0111, 0.006, 0.0046], [0.4499, 0.1004, 0.1004, 0.0782, 0.0474, 0.0474, 0.0419, 0.0136], [0.2888, 0.1364, 0.1364, 0.0416, 0.0367, 0.0324, 0.0304, 0.0237]], "ranks": {"Kotlin": [202125, 168088, 164537, 15499, 19815, 30035, 109532, 156144, 172879, 232498, 186491, 105859, 74798, 122207, 171762, 112570, 121441, 72177, 137329, 187165, 201867, 115050, 136218, 190446, 156273, 58091, 53565, 96081, 58832, 62968, 74929, 90629, 90636, 51800, 74150, 39793, 36389, 41104, 34127, 19620, 24398, 16329, 9211, 14908, 26837, 38395, 32514, 26990, 14921, 10444, 12116, 10838, 2574, 2035, 1060, 204, 61, 91, 140, 86, 64, 25, 29]}}, {"pos": 461, "top": [[" \u2013", ".", ",", "\u2013", ".\u2013", " ", " \u2013,", ",."], [" \u2013", "\u2013", " \u2013,", "\u2013and", " *\u2013", ".\u2013", " \n \n", " [@"], [" \u2013", ".\u2013", "\u2013", "\u2013and", " \u2013,", " *\u2013", ".", ","], [" ``(", "*\u201c.", " ``", "``", " *\u201e", "\\\":\\\"", "\\\",\\\"", "\\\"\\"], [" *\u201e", "\\\",\\\"", " *@", " *\u201c", "\\\"\\", "\\\":\\\"", " \n \n", ".\",\""], [" \n \n", " RTX", "*\u201c.", "aleigh", " *\u201c", " __(\"", "(rt", "(runtime"], [" *\u201e", "``", " *\u201c", " ``", " \n \n", " ``(", "\u3011\u3010", ".\u201d*"], [" \n \n", ".\",\"", "\\\"\\", " *\u201e", "\\\":\\\"", "\\\",\\\"", " \r\n \r\n", ".\\\""], [".\",\"", " \n \n", ".", ".\u201d*", ",.", "__.", " *\u201e", ".\\\""], [",", " \n \n", ".\",\"", "\\\"\\", ",.", ".\"\"", "\u5468\u906d", ".\u2013"], [" \n \n", ".", ".\",\"", ",", "...", ",.", "...*", "\\\"\\"], [" ``", " \n \n", " ``(", ".\",\"", " \r\n \r\n", "\u5468\u906d", " *\u201c", "(runtime"], [" ``", " \n \n", " lifecycle", "\u5468\u906d", " akin", " transformative", " requisite", "(runtime"], [" requisite", " akin", "\u5468\u906d", " arguably", " transformative", " disparate", "-esque", " lifecycle"], [" requisite", " --", " akin", " myriad", " arguably", "\u5468\u906d", " ``", " swiftly"], [" requisite", " myriad", " akin", "\u5468\u906d", " bolster", " arguably", " --", " disparate"], [" requisite", " akin", " myriad", " bolster", "\u5468\u906d", " disparate", " entirety", " arguably"], [" requisite", "-esque", "\u5468\u906d", " myriad", " akin", " entirety", " lifecycle", " transformative"], [" requisite", "\u5468\u906d", " akin", " myriad", "-esque", " --", " lifecycle", " entirety"], [" requisite", "\u5468\u906d", " myriad", " akin", " entirety", "\u5373\u4fbf", " swiftly", " arguably"], [" requisite", " \n\n", "<|endoftext|>", " myriad", " swiftly", " --", "\u5373\u4fbf", "\u5468\u906d"], [" ``", " ``(", "\u5468\u906d", " \u2015", " entirety", " myriad", " transformative", " requisite"], [" ``", " ``(", " \u2015", " --", "\u5468\u906d", " requisite", "``", " swiftly"], [" ``", " --", " \u2015", " ultimately", " swiftly", " alongside", " requisite", " ,"], [" ``", " --", " \u2015", " requisite", " swiftly", " whilst", "Whilst", " alongside"], [" ``", " --", " ``(", " \u2015", " transformative", " lifecycle", " runtime", " swiftly"], [" ``", " --", " ``(", " \u2015", "``", " lifecycle", " runtime", " ''"], [" ``", " --", " \u2015", " __", " ''", " ,", " \n\n", " ___"], [" ``", " --", " runtime", " lifecycle", " technologies", " __", " \u2015", " infrastructure"], [" ``", " --", " runtime", " technologies", " ____", " __", " lifecycle", " infrastructure"], [" .", " ,", " :", " systems", " --", " ``", " system", " technologies"], [" .", " ,", " system", " systems", " power", " space", " for", " :"], [" .", " system", " systems", " ,", " fundamentally", " space", " power", " dynamic"], [" technologies", " fundamentally", " systems", " technology", " dynamics", " system", " dynamic", " infrastructure"], [" technologies", " dynamics", " mechanics", " hardware", " fundamentally", " systems", " physics", " infrastructure"], [" hardware", " dynamics", " technologies", " \u2014", " legacy", " dynamic", " fundamentally", " runtime"], [" hardware", " runtime", " dynamic", " dynamics", " technologies", " legacy", " fundamentally", " engine"], [" hardware", " runtime", " dynamics", " mechanics", " dynamic", " legacy", " complexity", " engine"], [" runtime", " hardware", " mechanics", " dynamic", " dynamics", " engine", " legacy", " complexity"], [" runtime", " mechanics", " hardware", " dynamic", " dynamics", " engine", " systems", " lifecycle"], [" runtime", " engine", " mechanics", " hardware", " engines", " CPU", " lifecycle", " technologies"], [" runtime", " engine", " engines", " mechanics", " hardware", " CPU", " software", " systems"], [" runtime", " engine", " engines", " systems", " mechanics", " technologies", " hardware", " software"], [" runtime", " systems", " engines", " engine", " mechanics", " technologies", " dynamics", " mechanisms"], [" runtime", " systems", " mechanics", " engines", " technologies", " engine", " dynamics", " mechanisms"], [" systems", " engines", " mechanics", " runtime", " engine", " physics", " hardware", " technologies"], [" runtime", " latency", " systems", " mechanics", " versus", " engines", " vs", " hardware"], [" versus", " vs", " itself", " runtime", ".", " latency", " systems", " costs"], [" versus", " vs", ".", " itself", "-vs", ".\\", ".**", " latency"], [".", " itself", " versus", " vs", ".\\", ".**", "-vs", "+."], [" versus", " vs", ".", "-vs", " itself", ".**", "().", "+."], [" versus", " vs", "-vs", ".", " itself", ".**", "vs", ".*"], [" versus", " vs", ".", " itself", ".**", "-vs", "().", ".*"], [" itself", "\u672c\u8eab", " vs", " versus", "-vs", ".", "\u672c\u8eab\u7684", "vs"], [" versus", " vs", " itself", "-vs", "vs", "\u672c\u8eab", "_vs", " against"], [" itself", " versus", " vs", "-vs", "\u9047\u4e0a", "\u672c\u8eab", "vs", " meets"], [" itself", " vs", " versus", "-vs", "\u672c\u8eab", "vs", "\u9047\u4e0a", " against"], [" vs", " versus", " itself", "-vs", "vs", "_vs", "\u672c\u8eab", " meets"], [" vs", " itself", " versus", "-vs", "vs", " overhead", "_vs", "\u672c\u8eab"], [" itself", " vs", " versus", " overhead", "-vs", "vs", " meeting", "."], [" itself", " versus", " vs", " meeting", " overhead", ".", " meets", "\n\n"], [".", " itself", " versus", " vs", " meeting", " overhead", "\n\n", " meets"], [".", " itself", " meeting", " overhead", " versus", " vs", ":", " garbage"]], "p": [[0.8039, 0.1397, 0.0147, 0.013, 0.0027, 0.0027, 0.002, 0.0018], [0.777, 0.0183, 0.0172, 0.0126, 0.0118, 0.0092, 0.0076, 0.0043], [0.4662, 0.1943, 0.1715, 0.0383, 0.0338, 0.0218, 0.017, 0.0059], [0.1051, 0.0341, 0.0266, 0.0266, 0.025, 0.0142, 0.0118, 0.0063], [0.0651, 0.0271, 0.0255, 0.0239, 0.0211, 0.0175, 0.0164, 0.0136], [0.0085, 0.0052, 0.0049, 0.0046, 0.0043, 0.0038, 0.0033, 0.0031], [0.0672, 0.0593, 0.0462, 0.036, 0.0317, 0.0205, 0.0181, 0.015], [0.085, 0.0455, 0.0377, 0.0229, 0.0202, 0.0178, 0.0115, 0.0115], [0.1338, 0.0979, 0.0864, 0.0248, 0.0248, 0.0218, 0.0181, 0.016], [0.0379, 0.0356, 0.0277, 0.0109, 0.0062, 0.0048, 0.0045, 0.0043], [0.0909, 0.0518, 0.0486, 0.0277, 0.0139, 0.0131, 0.0109, 0.009], [0.0545, 0.0452, 0.0292, 0.0138, 0.0095, 0.0061, 0.0057, 0.0048], [0.0257, 0.0121, 0.0078, 0.0078, 0.0061, 0.0054, 0.0045, 0.0039], [0.022, 0.0171, 0.0142, 0.0081, 0.0071, 0.0071, 0.0071, 0.0063], [0.1004, 0.0609, 0.0288, 0.0224, 0.0164, 0.012, 0.0093, 0.0077], [0.0783, 0.0394, 0.0307, 0.0239, 0.0224, 0.0198, 0.0145, 0.012], [0.0685, 0.0442, 0.0304, 0.0163, 0.0144, 0.0135, 0.0119, 0.0119], [0.016, 0.0117, 0.0097, 0.0097, 0.0097, 0.0071, 0.0063, 0.0055], [0.0155, 0.0121, 0.01, 0.0088, 0.0083, 0.0057, 0.0054, 0.005], [0.0284, 0.0207, 0.0126, 0.0104, 0.0092, 0.0063, 0.0063, 0.0059], [0.0352, 0.0331, 0.0258, 0.0227, 0.0214, 0.0177, 0.0089, 0.0079], [0.0856, 0.0116, 0.0055, 0.0031, 0.0023, 0.0019, 0.0018, 0.0018], [0.2745, 0.0165, 0.0121, 0.0113, 0.0069, 0.0054, 0.0044, 0.0044], [0.2166, 0.0483, 0.0228, 0.0147, 0.0095, 0.0074, 0.0065, 0.0061], [0.1328, 0.0405, 0.0381, 0.0149, 0.0116, 0.0075, 0.0055, 0.0051], [0.2746, 0.0225, 0.0165, 0.0155, 0.0061, 0.0044, 0.0037, 0.0035], [0.5852, 0.0242, 0.0242, 0.0089, 0.0074, 0.0027, 0.0025, 0.0025], [0.4095, 0.1707, 0.0159, 0.0116, 0.0096, 0.0062, 0.0062, 0.0055], [0.1673, 0.0351, 0.0146, 0.0107, 0.0094, 0.0065, 0.0065, 0.0065], [0.0295, 0.0216, 0.0216, 0.019, 0.0168, 0.0158, 0.0139, 0.0131], [0.1978, 0.0441, 0.0268, 0.0184, 0.0173, 0.0162, 0.0143, 0.0093], [0.1074, 0.0477, 0.0289, 0.0255, 0.01, 0.0094, 0.0083, 0.0083], [0.0597, 0.0265, 0.022, 0.0142, 0.011, 0.011, 0.0104, 0.0097], [0.0308, 0.024, 0.0187, 0.0155, 0.0145, 0.0145, 0.012, 0.0106], [0.0269, 0.0174, 0.0174, 0.0163, 0.0144, 0.0127, 0.0127, 0.0119], [0.0238, 0.0238, 0.0224, 0.021, 0.0174, 0.0174, 0.0164, 0.0164], [0.0389, 0.0303, 0.0251, 0.0236, 0.0152, 0.0152, 0.0126, 0.0126], [0.0355, 0.0333, 0.026, 0.019, 0.019, 0.0157, 0.0131, 0.0115], [0.0513, 0.0453, 0.0292, 0.0228, 0.0214, 0.0122, 0.0107, 0.0101], [0.1367, 0.0287, 0.0223, 0.0223, 0.0197, 0.0153, 0.0119, 0.0112], [0.2292, 0.0374, 0.0242, 0.0242, 0.02, 0.0156, 0.0147, 0.0129], [0.2713, 0.0605, 0.0367, 0.0237, 0.0197, 0.0197, 0.0173, 0.0173], [0.1842, 0.0528, 0.0496, 0.0341, 0.032, 0.0265, 0.0249, 0.0234], [0.135, 0.0529, 0.0412, 0.0341, 0.0341, 0.0321, 0.0183, 0.0172], [0.0718, 0.0525, 0.0409, 0.0299, 0.0219, 0.0206, 0.015, 0.0125], [0.0385, 0.034, 0.032, 0.03, 0.0206, 0.0133, 0.0133, 0.011], [0.0631, 0.0247, 0.0218, 0.0205, 0.0205, 0.0192, 0.017, 0.0141], [0.3545, 0.2761, 0.0374, 0.0137, 0.0129, 0.0083, 0.0083, 0.0074], [0.3816, 0.2623, 0.1591, 0.0516, 0.0168, 0.0074, 0.0058, 0.0045], [0.4576, 0.2775, 0.1021, 0.0546, 0.013, 0.0108, 0.0042, 0.0031], [0.5094, 0.309, 0.1137, 0.0174, 0.012, 0.0073, 0.005, 0.0027], [0.6884, 0.2532, 0.0183, 0.0143, 0.0087, 0.0032, 0.0025, 0.0017], [0.3975, 0.1878, 0.1878, 0.0887, 0.0288, 0.0224, 0.0093, 0.0093], [0.9823, 0.0058, 0.0052, 0.0045, 0.0005, 0.0004, 0.0002, 0.0001], [0.4001, 0.4001, 0.1668, 0.0176, 0.0083, 0.0027, 0.0024, 0.0003], [0.4971, 0.2661, 0.1829, 0.017, 0.0091, 0.0091, 0.0043, 0.0026], [0.5852, 0.244, 0.1017, 0.0177, 0.0107, 0.0074, 0.0039, 0.0035], [0.7441, 0.166, 0.042, 0.0225, 0.0154, 0.0027, 0.0006, 0.0006], [0.5639, 0.2074, 0.1616, 0.0219, 0.017, 0.0091, 0.003, 0.0016], [0.5727, 0.2705, 0.1128, 0.0135, 0.0044, 0.0032, 0.0025, 0.0016], [0.71, 0.0848, 0.0848, 0.0275, 0.0214, 0.0214, 0.0054, 0.0037], [0.5742, 0.2112, 0.0605, 0.0534, 0.0324, 0.0196, 0.003, 0.0027], [0.8927, 0.0733, 0.0088, 0.0064, 0.0021, 0.0021, 0.0018, 0.0011]], "ranks": {"Kotlin": [21630, 21002, 3844, 561, 434, 833, 2190, 10219, 8014, 29074, 12844, 11783, 10534, 25076, 71617, 67120, 34203, 17592, 20785, 59980, 111253, 46728, 54261, 99279, 61865, 9488, 6722, 19728, 4730, 5231, 13160, 21767, 20473, 10757, 12521, 8762, 6830, 8018, 8844, 8161, 8691, 7161, 5985, 11379, 11088, 19764, 14388, 17855, 23917, 16837, 21019, 17287, 16207, 14586, 3914, 2453, 1302, 913, 1259, 2086, 2619, 3000, 2559]}}, {"pos": 462, "top": [[" \u2013", ".", ",", "\u2013", ";", "\u00a0\u00a0", " \u200b\u200b", "\u2026."], [" \u2013", "\u2013", "\u2013and", " \u2013,", ",", " \u200b\u200b", ".", " very"], ["\u2013", ",", " \u2013", ".", "\u2026", "\u2026..", "\u2026.", ";"], [" milfs", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Blowjob", " Shemale", "-------------</", " Guta", "----------</", " ;;^"], ["\u65b0\u52a0\u5761", ":@", " cittadin", " Aussie", " Guta", " CSG", " Millennials", " \u0628\u0648\u062a\u064a\u0646"], [" \u200b\u200b", "<|quad_end|>", "!:", "\u2026..", "\u6cd5\u62c9", ":href", " \u0628\u0648\u062a\u064a\u0646", "\u65b0\u52a0\u5761"], ["\n\n", " \n\n", "  \n\n", " crazy", " huge", " nasty", "   \n\n", " \u201d"], [" \n\n", " hugely", "   \n\n", " pretty", " @", "<|quad_end|>", " huge", " crappy"], [" \n\n", "   \n\n", "  \n\n", "\n\n", "    \n\n", "      \n\n", "\t\n\n", "     \n\n"], [" hugely", " though", "\u00a0", " plenty", " \u00ad", " truly", " pretty", " utterly"], [" \n\n", " hugely", " though", " truly", " incredibly", " plenty", "...", " @"], [" incredibly", " stuff", " hugely", " veggies", " freaking", " guts", " pretty", " plenty"], [" incredibly", " plenty", " effortlessly", " countless", " hugely", " freaking", " relentlessly", " huge"], [" incredibly", " huge", " plenty", " relentlessly", " relentless", " countless", " hugely", " effortlessly"], ["\n\n", " truly", " \n\n", " incredibly", " plenty", " myriad", " sprawling", " effortlessly"], [" incredibly", " plenty", " sprawling", " countless", " truly", " folks", " huge", " relentless"], [" incredibly", " plenty", " sprawling", " myriad", " truly", " folks", " hugely", " arguably"], [" incredibly", " freaking", " folks", "\n\n", " tweaking", " sprawling", " plenty", " tweaks"], ["\n\n", " incredibly", " hugely", " hefty", " freaking", " folks", " sprawling", " myriad"], ["\n\n", " hugely", " incredibly", " myriad", " utterly", " sprawling", "\u5373\u4fbf", " hefty"], ["\n\n", "<|endoftext|>", " \n\n", "  \n\n", "\r\n\r\n", "\t\n\n", " myriad", " hugely"], ["\n\n", "\r\n\r\n", " hugely", " sprawling", " myriad", " incredibly", " utterly", " wildly"], ["\n\n", "\r\n\r\n", " \n\n", " --", "<|endoftext|>", " myriad", " hugely", " utterly"], ["\n\n", "<|endoftext|>", "\r\n\r\n", " \n\n", " --", " myriad", " hugely", "\n\n\n"], ["\n\n", " \n\n", "\r\n\r\n", "  \n\n", " \r\n\r\n", "   \n\n", "\t\n\n", "<|im_end|>"], ["\n\n", "\r\n\r\n", " \n\n", "  \n\n", " \r\n\r\n", " **", "\t\n\n", "...**"], ["\n\n", " \n\n", "\r\n\r\n", "  \n\n", " \r\n\r\n", " utterly", "\t\n\n", " **"], ["\n\n", " \n\n", "\r\n\r\n", "  \n\n", " \r\n\r\n", " hugely", " incredibly", " wildly"], ["\n\n", " \n\n", "\r\n\r\n", "  \n\n", " \r\n\r\n", " incredibly", "   \n\n", " **"], ["\n\n", " \n\n", "  \n\n", " incredibly", "\r\n\r\n", " wildly", " arguably", " **"], ["\n\n", " \n\n", "  \n\n", " ...", " incredibly", "<|endoftext|>", " truly", " huge"], ["\n\n", " \n\n", " ...", " incredibly", " truly", " really", "  \n\n", " huge"], [" incredibly", " \n\n", " truly", " fundamentally", "  \n\n", "\n\n", " \u2014", " **"], [" \n\n", "  \n\n", "\n\n", " **", " fundamentally", " incredibly", "<|endoftext|>", " relentless"], ["<|endoftext|>", " \n\n", "  \n\n", "\n\n", " incredibly", " relentless", " fundamentally", " relentlessly"], ["<|endoftext|>", "\n\n", " \n\n", "  \n\n", "   \n\n", " incredibly", " relentless", " fundamentally"], ["\n\n", "<|endoftext|>", "  \n\n", " \n\n", " fundamentally", " relentless", " brutally", " incredibly"], ["<|endoftext|>", "\n\n", "  \n\n", " \n\n", " impossible", " fundamentally", " relentless", " incredibly"], ["<|endoftext|>", "\n\n", "  \n\n", " impossible", " **", " relentless", " incredibly", " fundamentally"], ["<|endoftext|>", " impossible", "  \n\n", " **", " inevitable", " fundamentally", " relentless", " inevit"], ["<|endoftext|>", " impossible", " inevitable", "  \n\n", " inevit", " fundamentally", " relentless", " incredibly"], ["\n\n", " \n\n", "  \n\n", " inevitable", " impossible", " inevit", "<|endoftext|>", " relentless"], ["\n\n", "  \n\n", " fundamentally", " inevitable", " impossible", " inevit", " brutally", " **"], ["\n\n", "  \n\n", " inevitable", " fundamentally", " inevit", " \n\n", " brutally", " **"], [" fundamentally", " inevitable", " **", "\n\n", "  \n\n", " inevit", " impossible", " brutally"], ["  \n\n", "\n\n", " **", " inevitable", " fundamentally", " \n\n", " inevit", " realistically"], ["\n\n", "  \n\n", " \n\n", "   \n\n", "\r\n\r\n", " **", "\t\n\n", " inevit"], ["\n\n", "  \n\n", " \n\n", "   \n\n", "\r\n\r\n", "\t\n\n", "    \n\n", " **"], ["  \n\n", "\n\n", " \n\n", " **", "   \n\n", "    \n\n", " **\"", " **#"], ["\n\n", "  \n\n", " \n\n", "   \n\n", "\t\n\n", "    \n\n", " **", "\r\n\r\n"], ["\n\n", "  \n\n", " \n\n", "   \n\n", "    \n\n", "\t\n\n", "\r\n\r\n", " **"], ["\n\n", " \n\n", "  \n\n", " **", "   \n\n", "**", " **\"", "    \n\n"], ["\n\n", " **", "  \n\n", " \n\n", "**", " **\"", ".**", " **\u201c"], ["\n\n", " **", "  \n\n", " \n\n", "**", " **\"", " **\u201c", "-**"], ["\n\n", " **", "  \n\n", " \n\n", "**", " here", " **\"", "-**"], ["\n\n", " **", "**", "  \n\n", " \n\n", " **\"", "-**", ")**"], ["\n\n", "  \n\n", " \n\n", " **", "**", " **\"", "\r\n\r\n", "\t\n\n"], ["\n\n", " \n\n", "  \n\n", " **", "**", "\r\n\r\n", " **\"", "\t\n\n"], ["\n\n", " \n\n", "  \n\n", " **", "**", "\r\n\r\n", " **\"", "\n\n\n\n"], ["\n\n", " **", " \n\n", "  \n\n", "**", " **\"", " here", "\n\n\n\n"], ["\n\n", " \n\n", " **", "  \n\n", "**", "\n\n\n\n", " **\"", "\r\n\r\n"], ["\n\n", " **", " \n\n", "  \n\n", "**", "\n\n\n\n", " **\"", " Here"], ["\n\n", " Here", " **", " If", " \n\n", " You", " What", "\n\n\n\n"]], "p": [[0.546, 0.2923, 0.0837, 0.0575, 0.0042, 0.0018, 0.0017, 0.0014], [0.4641, 0.046, 0.007, 0.0028, 0.0023, 0.002, 0.0014, 0.0012], [0.4043, 0.2779, 0.2164, 0.0796, 0.0051, 0.0035, 0.0024, 0.0024], [0.0158, 0.0075, 0.0066, 0.0062, 0.0051, 0.0033, 0.0029, 0.0027], [0.0018, 0.0016, 0.0015, 0.0014, 0.0013, 0.0011, 0.0011, 0.0009], [0.0054, 0.0017, 0.0016, 0.0011, 0.001, 0.001, 0.0009, 0.0009], [0.1248, 0.1102, 0.0279, 0.0109, 0.0085, 0.007, 0.0066, 0.0066], [0.04, 0.0228, 0.0228, 0.0115, 0.0115, 0.0079, 0.0058, 0.0048], [0.9095, 0.0311, 0.0214, 0.0201, 0.0026, 0.0014, 0.0014, 0.0013], [0.0191, 0.0109, 0.0096, 0.0075, 0.0066, 0.0048, 0.0043, 0.004], [0.0397, 0.035, 0.0256, 0.0256, 0.0241, 0.0241, 0.02, 0.0176], [0.0415, 0.0236, 0.0184, 0.0153, 0.0135, 0.0082, 0.0077, 0.0072], [0.0845, 0.0138, 0.0114, 0.0107, 0.0107, 0.0095, 0.0061, 0.0061], [0.0387, 0.0151, 0.0126, 0.0098, 0.0092, 0.0092, 0.0086, 0.0067], [0.1313, 0.0454, 0.0401, 0.0312, 0.0147, 0.0122, 0.0095, 0.0095], [0.05, 0.0285, 0.0173, 0.0072, 0.0072, 0.006, 0.006, 0.0056], [0.0661, 0.0427, 0.0228, 0.0215, 0.0189, 0.0167, 0.0115, 0.0115], [0.0422, 0.0256, 0.0256, 0.0256, 0.0226, 0.0187, 0.0187, 0.0155], [0.1024, 0.0904, 0.0293, 0.0189, 0.0178, 0.0148, 0.0122, 0.0108], [0.4725, 0.025, 0.0183, 0.0126, 0.0098, 0.0087, 0.0063, 0.0059], [0.941, 0.0531, 0.0038, 0.0005, 0.0005, 0.0, 0.0, 0.0], [0.3694, 0.0184, 0.0082, 0.0068, 0.0064, 0.0064, 0.0047, 0.0044], [0.937, 0.0126, 0.0063, 0.0017, 0.001, 0.001, 0.0009, 0.0006], [0.9486, 0.0253, 0.0041, 0.0036, 0.0018, 0.0006, 0.0003, 0.0003], [0.9697, 0.0201, 0.0074, 0.0019, 0.0005, 0.0001, 0.0001, 0.0], [0.9324, 0.0319, 0.0219, 0.0028, 0.0019, 0.0006, 0.0004, 0.0004], [0.9947, 0.0028, 0.0019, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9942, 0.0046, 0.0006, 0.0002, 0.0, 0.0, 0.0, 0.0], [0.9875, 0.0097, 0.0015, 0.001, 0.0001, 0.0, 0.0, 0.0], [0.5709, 0.3056, 0.0184, 0.0105, 0.0053, 0.0034, 0.0025, 0.0021], [0.8321, 0.1446, 0.0064, 0.0034, 0.0008, 0.0006, 0.0006, 0.0004], [0.5791, 0.0834, 0.0211, 0.0164, 0.012, 0.0106, 0.0106, 0.0078], [0.0872, 0.0819, 0.0497, 0.0363, 0.0363, 0.0266, 0.025, 0.022], [0.6006, 0.221, 0.0384, 0.0281, 0.017, 0.016, 0.0091, 0.0049], [0.3841, 0.1504, 0.0805, 0.0589, 0.0431, 0.0217, 0.0204, 0.0062], [0.6718, 0.1925, 0.0802, 0.0487, 0.0005, 0.0003, 0.0003, 0.0003], [0.6504, 0.0997, 0.0777, 0.0534, 0.0064, 0.006, 0.0034, 0.0034], [0.2672, 0.2358, 0.0983, 0.0766, 0.0171, 0.016, 0.016, 0.0104], [0.2204, 0.0716, 0.0632, 0.0524, 0.0383, 0.0247, 0.0232, 0.0232], [0.1153, 0.0699, 0.0481, 0.0399, 0.0352, 0.033, 0.033, 0.0242], [0.1087, 0.0747, 0.0702, 0.04, 0.0331, 0.0275, 0.0275, 0.0228], [0.5067, 0.073, 0.0605, 0.0471, 0.0304, 0.0185, 0.0144, 0.0112], [0.1726, 0.0495, 0.0465, 0.041, 0.0362, 0.0234, 0.0194, 0.0194], [0.4596, 0.1026, 0.0402, 0.0354, 0.0229, 0.0139, 0.0108, 0.0108], [0.0663, 0.0485, 0.0428, 0.0428, 0.0276, 0.0202, 0.0139, 0.0131], [0.2851, 0.1729, 0.0561, 0.0362, 0.03, 0.0118, 0.0111, 0.0059], [0.854, 0.131, 0.0138, 0.0003, 0.0001, 0.0001, 0.0001, 0.0001], [0.9569, 0.0371, 0.0057, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.5959, 0.3614, 0.0381, 0.0035, 0.0007, 0.0001, 0.0, 0.0], [0.5575, 0.3832, 0.0588, 0.0004, 0.0001, 0.0, 0.0, 0.0], [0.9752, 0.0139, 0.0108, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9919, 0.0059, 0.0022, 0.0, 0.0, 0.0, 0.0, 0.0], [0.8903, 0.0391, 0.0391, 0.0209, 0.0077, 0.0013, 0.0002, 0.0002], [0.9991, 0.0003, 0.0003, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9989, 0.0003, 0.0003, 0.0002, 0.0002, 0.0, 0.0, 0.0], [0.9841, 0.0085, 0.0059, 0.0007, 0.0003, 0.0001, 0.0001, 0.0], [1.0, 0.0, 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], [1.0, 0.0, 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], [1.0, 0.0, 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.9999, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Kotlin": [225287, 155966, 139372, 8292, 9066, 25801, 43345, 113519, 120015, 198802, 130557, 29823, 17247, 15004, 83872, 29832, 47712, 34508, 55642, 91567, 155998, 114925, 144694, 189624, 115022, 39052, 23528, 67428, 32545, 46042, 77612, 45858, 42528, 17798, 61165, 72468, 106752, 105012, 93656, 82512, 110140, 100323, 79096, 81718, 111376, 184165, 120771, 103764, 107977, 118297, 105085, 65536, 57654, 33426, 31422, 5167, 2276, 974, 901, 214, 179, 71, 13]}}, {"pos": 463, "top": [["\u00a0\u00a0", " \u200b\u200b", "  \n\n", ".", "  ", "  \n", "   \n", "\u2026."], [" **:", " **'", "\uff1a**", "\uff1f**", " **:**", " (**", "  \n\n", " **\u201c"], ["\u2026**", "\u3002", "**\u3002", "\uff1f**", "\u2026\"", "\uff1f", "**?", "**!"], ["\uff1f**", " **\u3010", " **\u25cb", "\uff1a**", " Blowjob", " **\u25a0", " **\u201c", " **:"], [" **\u201c", "  \n\n", "\uff1a**", "\uff1f**", " \n\n\n\n", " **\u3010", "**\u3002", "<|im_end|>"], [" **\u201c", " **\u3010", "\uff1f**", "\u3002", "\uff1a**", "**\u3002", "\u662f", "  \n\n"], ["  \n\n", " \n\n", " **\u3010", " **\u201c", "<|im_end|>", "\n\n", "\uff1f**", "   \n\n"], ["  \n\n", " \n\n", " **\u3010", "   \n\n", "     \n\n", " **\u201c", "    \n\n", "       \n\n"], ["  \n\n", " \n\n", "   \n\n", "\n\n", "    \n\n", "     \n\n", "       \n\n", "      \n\n"], ["  \n\n", "   \n\n", "  \r\n\r\n", " \n\n", " **\u3010", " **\u201c", " **#", " \r\n\r\n"], ["  \n\n", " \n\n", " **\u201c", "   \n\n", "  \r\n\r\n", "\r\n\r\n", "<|im_end|>", " **\u3010"], [" **\u201c", " **\u3010", " **#", "\u2019**", " **\u2018", " **+", "\uff1f**", " *__"], [" **\u3010", " **\u201c", " **#", "\u2019**", "\uff1f**", " *__", " **+", " **\u2018"], [" **\u3010", " **\u201c", "\uff1f**", "\u2019**", " **+", " **#", "...**", " **'"], ["\r\n\r\n", "  \n\n", " \n\n", " \r\n\r\n", "\n\n", "\t\t\n\n", "\t\n\n", "  \r\n\r\n"], [" impactful", " backstory", " foundational", "\r\n\r\n", " leveraging", "\u2019**", "\t\t\n\n", " matchups"], ["  \n\n", "\r\n\r\n", " \n\n", "   \n\n", " \r\n\r\n", "\n\n", "  \r\n\r\n", "\t\t\n\n"], ["  \n\n", " \n\n", "   \n\n", "\r\n\r\n", "\n\n", "  \r\n\r\n", " \r\n\r\n", "\t\n\n"], ["  \n\n", "\n\n", "\r\n\r\n", " **'", " \n\n", " **#", " **\u2018", " **\u3010"], ["  \n\n", "\n\n", " \n\n", "\r\n\r\n", " \r\n\r\n", "   \n\n", "  \r\n\r\n", "\t\n\n"], ["  \n\n", "\n\n", " \n\n", "<|endoftext|>", "\r\n\r\n", "   \n\n", " \r\n\r\n", "\t\n\n"], ["\n\n", "  \n\n", " \n\n", "\r\n\r\n", " \r\n\r\n", " **", "   \n\n", "\t\n\n"], ["\n\n", "  \n\n", " \n\n", "<|endoftext|>", "\r\n\r\n", "<|im_end|>", " \r\n\r\n", "   \n\n"], ["\n\n", "<|endoftext|>", "  \n\n", " \n\n", "\r\n\r\n", "<|im_end|>", " \r\n\r\n", "   \n\n"], ["  \n\n", "\n\n", " \n\n", "\r\n\r\n", "<|endoftext|>", "<|im_end|>", "   \n\n", " \r\n\r\n"], ["  \n\n", "\n\n", " \n\n", "\r\n\r\n", "<|endoftext|>", " \r\n\r\n", "   \n\n", "<|im_end|>"], ["\n\n", "  \n\n", " \n\n", "<|endoftext|>", "\r\n\r\n", " \r\n\r\n", "\t\n\n", "   \n\n"], ["\n\n", "  \n\n", " \n\n", "<|endoftext|>", "\r\n\r\n", " \r\n\r\n", "   \n\n", "<|im_end|>"], ["  \n\n", " \n\n", "\n\n", "<|endoftext|>", "\r\n\r\n", " \r\n\r\n", "   \n\n", "  \r\n\r\n"], ["  \n\n", " \n\n", "<|endoftext|>", "\n\n", "\r\n\r\n", "   \n\n", " \r\n\r\n", "  \r\n\r\n"], ["<|endoftext|>", "  \n\n", " \n\n", "\n\n", "\r\n\r\n", "   \n\n", " \r\n\r\n", "  \r\n\r\n"], ["<|endoftext|>", "  \n\n", " \n\n", "\n\n", "\r\n\r\n", " \r\n\r\n", "   \n\n", "  \r\n\r\n"], ["  \n\n", "<|endoftext|>", " \n\n", "\n\n", "\r\n\r\n", " \r\n\r\n", "   \n\n", " **"], ["  \n\n", "<|endoftext|>", " \n\n", " \r\n\r\n", "  \r\n\r\n", "   \n\n", "\r\n\r\n", " **"], ["  \n\n", "<|endoftext|>", " \n\n", "  \r\n\r\n", " \r\n\r\n", "   \n\n", " **\u201c", "\r\n\r\n"], ["  \n\n", "<|endoftext|>", " \n\n", "  \r\n\r\n", "   \n\n", " \r\n\r\n", "<|im_end|>", "\r\n\r\n"], ["  \n\n", "<|endoftext|>", " \n\n", "   \n\n", "  \r\n\r\n", "<|im_end|>", " \r\n\r\n", " **"], ["  \n\n", "<|endoftext|>", " **", " \n\n", " **\u201c", "<|im_end|>", "  \r\n\r\n", "   \n\n"], ["<|endoftext|>", "  \n\n", " **", " **\u201c", " \n\n", "  \r\n\r\n", " **[", "<|im_end|>"], ["<|endoftext|>", "  \n\n", " **\u201c", " \n\n", "<|im_end|>", " **", "  \r\n\r\n", "\u2026**"], ["<|endoftext|>", "  \n\n", " \n\n", "<|im_end|>", "\u2026**", " **\u201c", "  \r\n\r\n", "**\u2014"], ["<|endoftext|>", "  \n\n", " **\u201c", "**\u2014", " **\u2014", " \n\n", " **", "\u2026**"], ["  \n\n", " **\u201c", "**\u2014", " **\u2014", "\u2026**", "<|endoftext|>", "\u2019**", " **"], ["  \n\n", " **\u2014", " **\u201c", "**\u2014", " **", "\u2019**", "\u2026**", "\uff1a**"], ["  \n\n", "\u2026**", " **\u201c", " **", " **\u2014", "**\u2014", "\u2019**", " **\u2018"], [" **", "  \n\n", " **\u201c", "\u2026**", " **\u2018", " **\u2014", "\u2019**", " **#"], ["  \n\n", " **\u201c", " **", "**", "\uff1a**", "**\u2014", "\u2019**", " **\u2014"], [" **\u201c", " **", "  \n\n", "**", "\uff1a**", "\u2019**", "**\u2014", " **\u2014"], [" **", " **\u201c", "**", " **\u2014", "\u2019**", " **#", " **\u2018", " **\""], [" **", " **\u201c", " **\u2014", " **#", " **\u2013", "**", "\u2019**", " **\""], [" **\u201c", "  \n\n", "\u2019**", " **", "**", ";**", " **#", " **\u2014"], [" **", "**", " **\u201c", "\u2019**", " **\"", ";**", " **#", "  \n\n"], [" **", "**", " **\"", "\u2019**", " **\u201c", ";**", "-**", " **#"], ["**", " **", "\u2019**", ";**", "-**", " **\"", " **\u201c", "?**"], ["**", " **", "\u2019**", ";**", "-**", " **\u201c", " **\"", ">**"], ["**", " **", "\u2019**", "-**", " Top", " top", "(top", "top"], ["**", "\u2019**", "Top", " Top", " **", "top", "(top", " top"], ["**", "Top", "\u2019**", " **", " Top", "top", " top", "(top"], ["**", "Top", " Top", " **", "\u2019**", " top", "top", "(top"], ["**", " Top", "Top", " **", " top", "top", "(top", "_top"], ["**", " **", " Top", "Top", " top", "top", "_top", "(top"], ["**", " **", " Top", "Top", "***", " top", "**.", "**,"], ["**", " **", "***", "###", "**.", "**,", "Here", "**("]], "p": [[0.1391, 0.1307, 0.1228, 0.1153, 0.0745, 0.031, 0.0292, 0.0084], [0.0473, 0.0346, 0.0287, 0.027, 0.0238, 0.0185, 0.0144, 0.0106], [0.5749, 0.0999, 0.0368, 0.0305, 0.0223, 0.0174, 0.0153, 0.0099], [0.0538, 0.037, 0.0254, 0.0224, 0.0224, 0.0198, 0.0175, 0.0106], [0.364, 0.183, 0.0633, 0.0435, 0.036, 0.0264, 0.0233, 0.0133], [0.7013, 0.0396, 0.0372, 0.0255, 0.0255, 0.0176, 0.0155, 0.0146], [0.553, 0.1584, 0.0583, 0.0514, 0.0189, 0.0138, 0.0115, 0.0115], [0.4697, 0.1728, 0.1048, 0.0925, 0.0161, 0.0142, 0.0142, 0.0133], [0.5071, 0.4475, 0.0252, 0.0093, 0.0027, 0.0016, 0.0009, 0.0009], [0.5442, 0.0888, 0.0574, 0.0447, 0.037, 0.0225, 0.0211, 0.0154], [0.8297, 0.0601, 0.0251, 0.0152, 0.0081, 0.0081, 0.0056, 0.0049], [0.3115, 0.2749, 0.0541, 0.035, 0.024, 0.0226, 0.0187, 0.0165], [0.345, 0.1438, 0.06, 0.0342, 0.0235, 0.0221, 0.0207, 0.0195], [0.1236, 0.0622, 0.0455, 0.0401, 0.0259, 0.0259, 0.0229, 0.0178], [0.2818, 0.1605, 0.0246, 0.0217, 0.0204, 0.0169, 0.0169, 0.0116], [0.0059, 0.0043, 0.0043, 0.0043, 0.0038, 0.0036, 0.0032, 0.0028], [0.3908, 0.0529, 0.0438, 0.0363, 0.0134, 0.0134, 0.0111, 0.0098], [0.8062, 0.0484, 0.0333, 0.0294, 0.0115, 0.0084, 0.0074, 0.0051], [0.3017, 0.235, 0.1425, 0.0594, 0.0281, 0.0248, 0.0233, 0.0193], [0.5511, 0.2603, 0.1085, 0.0399, 0.0069, 0.0042, 0.0033, 0.0029], [0.4547, 0.3125, 0.1476, 0.079, 0.0021, 0.0014, 0.0005, 0.0005], [0.3897, 0.2678, 0.1624, 0.0767, 0.0092, 0.0081, 0.0043, 0.0038], [0.6028, 0.2217, 0.0924, 0.0561, 0.0161, 0.0022, 0.0017, 0.0011], [0.4567, 0.3557, 0.1155, 0.0618, 0.0051, 0.0014, 0.0009, 0.0006], [0.6499, 0.1862, 0.145, 0.0064, 0.0039, 0.0023, 0.0021, 0.0021], [0.6432, 0.1626, 0.1435, 0.0194, 0.0081, 0.0071, 0.0034, 0.0028], [0.6463, 0.2098, 0.0875, 0.0468, 0.0056, 0.0011, 0.0006, 0.0006], [0.5561, 0.2627, 0.1593, 0.019, 0.0016, 0.0003, 0.0003, 0.0002], [0.7978, 0.1386, 0.051, 0.0042, 0.0037, 0.0015, 0.0011, 0.0006], [0.591, 0.1919, 0.1494, 0.0623, 0.0017, 0.0009, 0.0009, 0.0004], [0.5416, 0.2558, 0.1758, 0.021, 0.001, 0.0008, 0.0007, 0.0004], [0.7963, 0.1078, 0.0741, 0.0187, 0.0007, 0.0003, 0.0003, 0.0002], [0.4951, 0.3856, 0.0975, 0.0043, 0.0018, 0.0017, 0.0014, 0.0014], [0.5332, 0.3664, 0.0818, 0.0052, 0.0034, 0.0017, 0.0016, 0.001], [0.8809, 0.0563, 0.0342, 0.0086, 0.0056, 0.0038, 0.0019, 0.0013], [0.7858, 0.1753, 0.0305, 0.0019, 0.0019, 0.001, 0.0006, 0.0006], [0.8482, 0.1148, 0.0256, 0.0027, 0.0024, 0.0014, 0.001, 0.0007], [0.7709, 0.172, 0.0181, 0.016, 0.0046, 0.004, 0.0036, 0.0025], [0.6531, 0.3085, 0.0082, 0.0064, 0.0027, 0.0022, 0.0017, 0.0015], [0.7648, 0.2191, 0.0024, 0.0018, 0.0018, 0.0017, 0.0011, 0.001], [0.8237, 0.1622, 0.0019, 0.0019, 0.0016, 0.0012, 0.0009, 0.0007], [0.7333, 0.1854, 0.0172, 0.0111, 0.0087, 0.0038, 0.0036, 0.0032], [0.4266, 0.1385, 0.1222, 0.1079, 0.0654, 0.0187, 0.0114, 0.0094], [0.4857, 0.1228, 0.1084, 0.0844, 0.0352, 0.02, 0.02, 0.0188], [0.4064, 0.2175, 0.0907, 0.0706, 0.0485, 0.0334, 0.0179, 0.0139], [0.3449, 0.1846, 0.1846, 0.0529, 0.0412, 0.0363, 0.0363, 0.022], [0.7559, 0.0703, 0.0426, 0.0332, 0.0157, 0.0122, 0.0108, 0.0095], [0.3823, 0.2046, 0.0967, 0.0853, 0.0403, 0.0356, 0.0277, 0.0216], [0.5962, 0.2486, 0.0432, 0.0297, 0.0262, 0.0109, 0.0066, 0.0066], [0.2735, 0.2414, 0.1659, 0.1006, 0.0419, 0.0327, 0.0288, 0.0288], [0.4498, 0.2125, 0.1289, 0.0474, 0.0288, 0.0254, 0.0154, 0.0136], [0.6379, 0.1423, 0.0672, 0.0408, 0.028, 0.028, 0.0117, 0.0049], [0.6475, 0.1637, 0.0365, 0.0365, 0.0322, 0.0251, 0.0152, 0.0072], [0.4992, 0.2358, 0.1114, 0.0362, 0.0319, 0.0171, 0.0171, 0.0071], [0.4623, 0.1927, 0.1927, 0.043, 0.0261, 0.0158, 0.0123, 0.0075], [0.5004, 0.2086, 0.0767, 0.0362, 0.0362, 0.0171, 0.0133, 0.0133], [0.3755, 0.1219, 0.1076, 0.0838, 0.0576, 0.0508, 0.0448, 0.0308], [0.4286, 0.1084, 0.0956, 0.0844, 0.0745, 0.0512, 0.0242, 0.0242], [0.2936, 0.2018, 0.1781, 0.0953, 0.051, 0.045, 0.0351, 0.0213], [0.4029, 0.3556, 0.1019, 0.0618, 0.0375, 0.0084, 0.0065, 0.0051], [0.7441, 0.1881, 0.042, 0.0106, 0.0073, 0.0008, 0.0007, 0.0006], [0.7927, 0.2004, 0.0029, 0.0006, 0.0006, 0.0004, 0.0002, 0.0002], [0.9991, 0.0007, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Kotlin": [185658, 68090, 61548, 17313, 10743, 22216, 31600, 57816, 60847, 41851, 53861, 15724, 9301, 7792, 119409, 72373, 43075, 88132, 97402, 188538, 213385, 161732, 198230, 222247, 152019, 168075, 178620, 139361, 106352, 200995, 211990, 219422, 202878, 91096, 72195, 63228, 49196, 53700, 65039, 61576, 71109, 75387, 35544, 16010, 18277, 69222, 55362, 67532, 33505, 35860, 80246, 56383, 57401, 45703, 37705, 35231, 26089, 27786, 27632, 26332, 22898, 3868, 1485]}}, {"pos": 464, "top": [["**", "**.", ".", "**\u2013", "-**", "\u2026**", "**?", "?**"], [" **", "-**", "'**", "\uff1f**", "(**", "\u2019**", "**", "\u2026**"], ["\u2026**", "\uff1f**", "**", "'**", "\u2019**", "-**", "(**", "**\u3002"], ["\uff1f**", "\u300d**", "'**", "\u2019**", " **\u300c", "\uff1a**", " **", "\u3002**"], ["**", " **", "...**", "-**", "\uff1f**", "'**", "\u2019**", ">**"], [" **", "-**", "\uff1f**", "**", "(**", "\u2019**", ">**", "\uff01**"], ["**", " **", "\uff1f**", "\u2019**", "-**", "...**", "'**", "\uff09**"], ["**", "-**", "\uff1f**", "...**", " **", "'**", "\u2019**", "(**"], ["**", "...**", "\uff1f**", "'**", " **", "\u2019**", "(**", "-**"], ["...**", "**", "-**", " **", "'**", "\uff1f**", "\u2019**", "\u2026**"], ["...**", "**", " **", "-**", "'**", "\uff1f**", "\u2026**", "\u2019**"], ["...**", " **", "**", "-**", "'**", "\uff1f**", " **#", " **'"], ["...**", " **", "**", "-**", "'**", "\uff1f**", " **\u00ab", "\u2026**"], ["...**", "**", "-**", " **", "'**", "\u2026**", "\uff1f**", "\u2019**"], ["...**", "**", " **", "\u2026**", "'**", "-**", "\u2019**", "\uff1f**"], ["...**", "**", "'**", "\u2026**", "-**", "\uff1f**", ">**", " **"], ["...**", "**", "\u2026**", " **", "'**", "-**", ">**", "!**"], ["...**", "**", "\u2026**", "-**", " **", "'**", ">**", "(**"], ["...**", "**", "'**", " **", "\u2026**", "-**", " **'", "\u2019**"], ["...**", "**", "\u2026**", " **", "'**", "?**", "  \n\n", "\u2019**"], ["...**", "**", "  \n\n", "\n\n", " \n\n", "<|endoftext|>", " **", "\u2026**"], ["...**", " **", "**", " **'", "'**", "\u2026**", " **#", "?**"], ["...**", "**", "\n\n", " **", "  \n\n", " \n\n", "\u2026**", " **'"], ["\n\n", "  \n\n", "<|endoftext|>", " \n\n", "...**", "**", " **", "\u2026**"], ["  \n\n", "\n\n", " \n\n", "...**", "   \n\n", "\r\n\r\n", "**", "\t\n\n"], ["  \n\n", "\n\n", " \n\n", "...**", " **", "**", "\u2026**", " **'"], ["\n\n", "  \n\n", " \n\n", "...**", "\u2026**", " **", "**", "\r\n\r\n"], ["\n\n", " \n\n", "  \n\n", "...**", "\r\n\r\n", " **", "\u2026**", "\t\n\n"], ["\n\n", "  \n\n", " \n\n", "...**", "\u2026**", "\r\n\r\n", "**", "   \n\n"], ["  \n\n", "\n\n", " \n\n", "...**", "\u2026**", "   \n\n", " **", "\r\n\r\n"], ["\n\n", "  \n\n", " \n\n", "...**", " **", "<|endoftext|>", "   \n\n", "\r\n\r\n"], ["\n\n", "  \n\n", " \n\n", "<|endoftext|>", "\r\n\r\n", "...", "   \n\n", " \n\n\n"], ["\n\n", "  \n\n", " \n\n", "<|endoftext|>", " **", "   \n\n", "\r\n\r\n", "...**"], ["\n\n", "  \n\n", " \n\n", "<|endoftext|>", "...**", " **", "   \n\n", "\r\n\r\n"], ["  \n\n", " \n\n", "\n\n", " **", "<|endoftext|>", "   \n\n", "\t\n\n", "\u2026**"], ["\n\n", "  \n\n", " \n\n", "<|endoftext|>", "   \n\n", "    \n\n", "\t\n\n", "\r\n\r\n"], ["\n\n", "  \n\n", " \n\n", "   \n\n", "<|endoftext|>", "\t\n\n", "    \n\n", "\r\n\r\n"], ["  \n\n", "\n\n", " \n\n", "   \n\n", "<|endoftext|>", " **", "    \n\n", "**:"], ["\n\n", "  \n\n", " \n\n", "<|endoftext|>", " **", "...**", "   \n\n", "\u2026**"], ["  \n\n", "\n\n", " \n\n", "<|endoftext|>", "\u2026**", " **", "...**", "**:"], ["  \n\n", "\n\n", " \n\n", "<|endoftext|>", "**:", "?**", "   \n\n", "\u2026**"], ["\n\n", "  \n\n", " \n\n", "<|endoftext|>", "   \n\n", "\t\n\n", "\r\n\r\n", " breakdown"], ["  \n\n", " \n\n", "\n\n", " **", "**:", " breakdown", "?**", "\uff1a**"], ["  \n\n", "\n\n", " \n\n", "**:", " breakdown", " **", "...**", "\uff1a**"], ["  \n\n", "...**", " **", "\n\n", " \n\n", "**:", "**", "\u2026**"], ["  \n\n", " \n\n", "\n\n", " breakdown", " **", "**:", " Priority", ":**"], ["  \n\n", " \n\n", "\uff1a**", ":**", "**:", " **", ":\\", " :**"], ["\uff1a**", "  \n\n", ":**", "**", " \n\n", "**:", " **", " :**"], ["\uff1a**", ":**", " **", "**:", "**", " :**", " Priority", "'**"], [" Priority", " Biggest", " Worst", " Immediate", "\u6700\u5148", "\uff1a**", ":**", " Scenario"], ["\uff1a**", "?**", "\uff1f**", ";**", ">**", ":**", "%**", "]**"], ["\u6700\u5148", " Who", " What", " Priority", " Biggest", ":**", "?**", "what"], ["\u6700\u5148", " Who", " Biggest", " What", "what", " Priority", " what", "\u8c01"], [" Biggest", "\u6700\u5148", " What", " Priority", " Who", "what", " what", " Worst"], ["\u6700\u5148", " What", "what", " Biggest", " what", " Priority", " Prediction", ";**"], [" what", "what", " What", "\u4ec0\u4e48\u662f", "What", ".what", " whats", " WHAT"], [" what", " What", "what", "What", "\u4ec0\u4e48\u662f", ".what", " whats", " WHAT"], [" what", " What", "what", "What", "\u4ec0\u4e48\u662f", ".what", " WHAT", " whats"], [" What", " what", "what", "What", "\u4ec0\u4e48\u662f", ".what", " WHAT", " whats"], [" what", " What", "what", "What", "\u4ec0\u4e48\u662f", ".what", " whats", " WHAT"], [" What", " what", "What", "what", "\u4ec0\u4e48\u662f", ".what", " WHAT", " whats"], [" What", " what", "What", "what", "\u4ec0\u4e48\u662f", ".what", " WHAT", ".What"], ["What", " What", "what", " what", "Top", "Who", "The", "Break"]], "p": [[0.3893, 0.2361, 0.0767, 0.0385, 0.0282, 0.0265, 0.0194, 0.0142], [0.1685, 0.1487, 0.1487, 0.1158, 0.1158, 0.0702, 0.0426, 0.0228], [0.4424, 0.1627, 0.1627, 0.0466, 0.032, 0.025, 0.022, 0.0134], [0.5151, 0.0697, 0.0479, 0.0479, 0.0479, 0.0329, 0.0273, 0.0176], [0.2588, 0.2015, 0.1778, 0.084, 0.0741, 0.0577, 0.035, 0.0273], [0.3238, 0.2858, 0.135, 0.0723, 0.0438, 0.0301, 0.0111, 0.0098], [0.6333, 0.1101, 0.0756, 0.0278, 0.0246, 0.0246, 0.0217, 0.0217], [0.5022, 0.0989, 0.0989, 0.077, 0.077, 0.0364, 0.0152, 0.0134], [0.4982, 0.3424, 0.0361, 0.015, 0.015, 0.0133, 0.0103, 0.0091], [0.4887, 0.2616, 0.0661, 0.0401, 0.0401, 0.019, 0.0167, 0.0115], [0.5917, 0.3589, 0.026, 0.004, 0.0035, 0.0031, 0.0021, 0.0013], [0.4202, 0.3273, 0.073, 0.0443, 0.0443, 0.0304, 0.0099, 0.0087], [0.7058, 0.139, 0.0656, 0.0242, 0.0213, 0.0089, 0.0061, 0.0054], [0.7253, 0.0675, 0.0464, 0.0464, 0.0409, 0.0193, 0.0117, 0.0063], [0.7843, 0.1203, 0.0268, 0.0209, 0.0209, 0.0087, 0.0036, 0.0019], [0.7591, 0.08, 0.0485, 0.026, 0.026, 0.0108, 0.0108, 0.0108], [0.8689, 0.0916, 0.0204, 0.0046, 0.0031, 0.0022, 0.0019, 0.001], [0.6333, 0.264, 0.0217, 0.0169, 0.0169, 0.0149, 0.008, 0.0038], [0.7055, 0.2021, 0.0213, 0.0188, 0.0114, 0.0069, 0.0069, 0.0061], [0.5627, 0.3012, 0.0218, 0.0218, 0.0132, 0.0075, 0.0071, 0.0055], [0.4382, 0.1612, 0.1255, 0.0863, 0.0672, 0.0462, 0.0141, 0.0141], [0.6012, 0.1952, 0.0922, 0.0206, 0.0182, 0.011, 0.011, 0.0067], [0.3852, 0.1606, 0.1606, 0.0974, 0.0555, 0.0132, 0.0124, 0.0109], [0.5481, 0.157, 0.0953, 0.0742, 0.0273, 0.0089, 0.0057, 0.0016], [0.4799, 0.3737, 0.1375, 0.0025, 0.0012, 0.0008, 0.0006, 0.0004], [0.484, 0.2286, 0.1224, 0.0953, 0.0166, 0.01, 0.0078, 0.0033], [0.7711, 0.0921, 0.0633, 0.0559, 0.0034, 0.0032, 0.0025, 0.0016], [0.9384, 0.0321, 0.0283, 0.0005, 0.0002, 0.0001, 0.0, 0.0], [0.8165, 0.1252, 0.0522, 0.0049, 0.0005, 0.0002, 0.0001, 0.0001], [0.5041, 0.3464, 0.1444, 0.003, 0.0006, 0.0003, 0.0001, 0.0001], [0.472, 0.3244, 0.1967, 0.001, 0.0008, 0.0006, 0.0006, 0.0005], [0.894, 0.0504, 0.0504, 0.0047, 0.0001, 0.0001, 0.0, 0.0], [0.9098, 0.0582, 0.0311, 0.0006, 0.0001, 0.0, 0.0, 0.0], [0.4601, 0.406, 0.1318, 0.0005, 0.0004, 0.0004, 0.0001, 0.0001], [0.8177, 0.0977, 0.0761, 0.0029, 0.0007, 0.0004, 0.0004, 0.0003], [0.5487, 0.2937, 0.1572, 0.0002, 0.0001, 0.0, 0.0, 0.0], [0.5231, 0.3595, 0.1167, 0.0003, 0.0001, 0.0, 0.0, 0.0], [0.4127, 0.4127, 0.1721, 0.0005, 0.0003, 0.0002, 0.0001, 0.0001], [0.6868, 0.2527, 0.0564, 0.0017, 0.0006, 0.0002, 0.0002, 0.0002], [0.7526, 0.1308, 0.07, 0.0084, 0.0033, 0.0031, 0.0029, 0.0015], [0.7416, 0.146, 0.0782, 0.0068, 0.0017, 0.0016, 0.0012, 0.0008], [0.5958, 0.2484, 0.1506, 0.001, 0.0004, 0.0004, 0.0001, 0.0001], [0.648, 0.1276, 0.1126, 0.0134, 0.0111, 0.0039, 0.0034, 0.0025], [0.6786, 0.1514, 0.081, 0.0071, 0.0071, 0.0071, 0.0043, 0.0038], [0.3312, 0.2276, 0.1218, 0.0739, 0.0448, 0.0272, 0.0146, 0.0128], [0.5346, 0.1532, 0.077, 0.025, 0.0134, 0.0118, 0.0076, 0.0049], [0.6994, 0.0947, 0.0574, 0.0348, 0.0239, 0.0164, 0.01, 0.0064], [0.3798, 0.1794, 0.0847, 0.0547, 0.0514, 0.0376, 0.0293, 0.0214], [0.665, 0.0701, 0.0331, 0.0242, 0.0201, 0.0189, 0.0101, 0.0089], [0.362, 0.0974, 0.0382, 0.0337, 0.0316, 0.0217, 0.0169, 0.0124], [0.2457, 0.1315, 0.0904, 0.0704, 0.0704, 0.0621, 0.0377, 0.0293], [0.1284, 0.1284, 0.0829, 0.0687, 0.0535, 0.0392, 0.0368, 0.0253], [0.3332, 0.1016, 0.0897, 0.0656, 0.0374, 0.0213, 0.02, 0.0188], [0.1584, 0.1584, 0.1089, 0.0514, 0.0514, 0.0376, 0.0259, 0.0167], [0.1448, 0.1448, 0.1278, 0.0878, 0.0775, 0.0366, 0.0173, 0.0135], [0.7996, 0.1575, 0.0398, 0.0011, 0.0008, 0.0004, 0.0003, 0.0002], [0.585, 0.2152, 0.1899, 0.0035, 0.0031, 0.0013, 0.0009, 0.0005], [0.6506, 0.2112, 0.1281, 0.0056, 0.0027, 0.0011, 0.0003, 0.0002], [0.5402, 0.4207, 0.0305, 0.0077, 0.0004, 0.0002, 0.0002, 0.0001], [0.7968, 0.1778, 0.0212, 0.0037, 0.0002, 0.0001, 0.0001, 0.0001], [0.8406, 0.1461, 0.0106, 0.0024, 0.0001, 0.0001, 0.0001, 0.0], [0.8593, 0.0705, 0.0549, 0.0139, 0.0003, 0.0002, 0.0002, 0.0001], [0.912, 0.0848, 0.0013, 0.0007, 0.0004, 0.0001, 0.0001, 0.0]], "ranks": {"Kotlin": [116238, 99948, 47567, 18219, 11995, 37206, 54248, 97232, 88318, 77412, 127089, 55557, 38230, 45072, 167686, 129927, 128560, 143776, 220409, 237435, 228480, 205407, 222300, 236564, 230314, 217697, 200724, 206394, 194967, 186305, 212360, 198127, 184959, 142430, 159932, 116552, 128907, 135062, 127089, 123083, 128455, 107927, 72790, 53996, 69827, 58800, 76468, 34164, 28000, 32804, 78049, 49365, 41228, 37381, 44789, 28839, 24483, 27000, 46228, 23137, 15558, 5762, 5040]}}, {"pos": 465, "top": [["\u00a0", ".", ",", "?", " \u2013", "\u00a0\u00a0", "<|endoftext|>", "\u2013"], [",", "?", "??", "?,", "\u2013", " \u2013", "?\u201d", "?!"], [",", "?", ".", "\u2026", "\u2013", "\u2026.", "\uff1f", "?,"], [" Shemale", "\uff3f\uff3f", "\uc3df", "-------------</", "----------</", "\ufffd\ufffd", " \u300e", "\uff0a\uff0a\uff0a\uff0a"], ["\ufffd\ufffd", " \"@", "\uff1f", "\uff20", "InView", "\ufeff#", "\u866b", " \u300e"], ["\uff1f", "\ufffd\ufffd", " **:", " \u300d", " **\u201e", " **\u300c", "\uff01", "letin"], ["\uff1f", "\uff01", " \u300d", " **\u300c", " \u300e", "\u300e", "\u3000\u3000", " \u300c"], [" **\u300c", " **\u201e", "\uff1f", " **\u3010", "\uff1f\u300d", " \u300e", "\u300e", "\uff1f**"], ["\uff1f", " **\u300c", "?\u00bb", "?!", "\uff1f\u300d", "!?", "\uff01\uff1f", " **\u201e"], ["?!", "?\\", " \u00a0 \u00a0", "!?", "?=", "soever", " \u00a0 \u00a0 \u00a0 \u00a0", "\uff1f\u300d"], ["\uff1f", "?!", "?", "?\\", "?(", "?...", " \u00a0 \u00a0", "?="], [" **\u300c", " **\u3010", "\uff1f\u300d", " ''", " **\u00ab", " ?**", "\uff3f\uff3f", "\u505a\u4ec0\u4e48"], [" **\u300c", "\uff1f\u300d", " \u300d", " ''", " \u300c", "?!", " **\u00ab", " \u300e"], ["?!", "\uff1f\u300d", " **\u300c", " ''", " \u300c", "\uff01\uff1f", "\u505a\u4ec0\u4e48", " g\u00ec"], ["?!", " ''", " savvy", " Philly", "stuff", " \u300c", "?...", " vibe"], ["?!", " savvy", " goodies", " guys", "stuff", " stuff", " kids", " really"], ["?!", "?...", "...", " savvy", "??", "???", " folks", "?"], ["?!", "?...", "...", "??", "?", " savvy", "?\u00bb", "???"], ["?!", "?...", "??", "...", "!?", "?\u00bb", "???", "?"], ["?...", "?!", "...", "...(", "\n\n", "???", "?=", "??"], ["?...", "...", "\n\n", "...\\", "...(", "?!", " ...\\", "<|endoftext|>"], [" ?**", "?!", " g\u00ec", "?...", " \u061f", "\u4ec0\u4e48", "\u4ec0\u4e48\u5462", "?="], ["?...", " ?**", "\u4ec0\u4e48", "?=", " ?", " ?',", " g\u00ec", "?!"], ["?...", "\n\n", "<|endoftext|>", " ...", " ?", " ''", " ...\\", "?="], ["\n\n", " \n\n", "?...", "  \n\n", "...\\", "?\\", " \r\n\r\n", "\r\n\r\n"], ["\n\n", "?...", " \n\n", " ?**", "/how", "\r\n\r\n", "\u4ec0\u4e48", " \r\n\r\n"], ["\n\n", "?...", " ?**", " \n\n", "/how", " g\u00ec", "\r\n\r\n", "\u4ec0\u4e48"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", "<|endoftext|>", " \r\n\r\n", "?...", "\n\n\n"], ["\n\n", " \n\n", "  \n\n", "?...", "\r\n\r\n", "\n\n\n", " ...\\", "...**"], ["\n\n", " \n\n", "  \n\n", "...", "?...", " ...", " [...]", "\r\n\r\n"], ["\n\n", " \n\n", "  \n\n", " ...", " ?", "<|endoftext|>", "?...", "..."], [" \n\n", "\n\n", "  \n\n", "<|endoftext|>", " ...", " \u2026", " ?", " what"], [" \n\n", "  \n\n", "<|endoftext|>", "\n\n", " \u2014", " ultimately", " what", " ?"], ["  \n\n", " \n\n", "<|endoftext|>", " \u2014", "\n\n", " \u2026", " \u00ad", "\ufffd"], ["  \n\n", "<|endoftext|>", " \n\n", "?**", " \u2014", "?:", "?!", "?):"], ["<|endoftext|>", "  \n\n", " \n\n", " \u2014", "\n\n", " \u2026", "\u2011", " WHY"], [" WHY", "  \n\n", "?!", " \u2014", " WHAT", "?):", " inevitable", "?:"], [" WHY", "?!", "?:", "?):", " WHAT", "\u2011", " ?", " NOTHING"], [" WHY", "?!", "\u2011", " ?", " WHAT", "?):", " relentlessly", "?:"], [" WHY", "\u2011", " failures", " WHAT", " EVERY", " failure", "?!", " fallout"], [" WHY", "?!", " WHAT", " failures", " failure", " breakdown", "?):", "?:"], [" failures", " WHY", " catastrophic", " breakdown", "?):", "?!", " fallout", " failure"], [" breakdown", " catastrophic", " failures", " fallout", " WHY", " failure", " crashing", " collapse"], [" breakdown", " Worst", " inevitable", " collapse", " failures", " Worse", " inevit", " failure"], [" breakdown", " Worse", " failures", " Worst", " inevitable", " inevit", " collapse", " fastest"], [" immediate", " Immediate", " inevitable", " breakdown", " inevit", " fastest", " Worst", "\u6700\u5148"], [" Immediate", " inevit", " immediate", " inevitable", " breakdown", " Worst", "\u6700\u5148", " Worse"], ["\u6700\u5148", " FIRST", " Immediate", " inevitable", " inevit", " fastest", " Worst", " immediate"], ["\u6700\u5148", "\u7b2c\u4e00\u4ef6\u4e8b", " FIRST", "\u6700\u5bb9\u6613", ":first", " inevit", "akest", " Immediate"], ["\u6700\u5148", " Immediate", " Worst", "\u7b2c\u4e00\u4ef6\u4e8b", " FIRST", "akest", " Worse", "?):"], ["\u6700\u5148", "?**", "?):", "\uff1f**", "\u7b2c\u4e00\u4ef6\u4e8b", "?*", " Immediate", " ?**"], ["\u6700\u5148", "\u7b2c\u4e00\u4ef6\u4e8b", "?**", "?):", "?\\", "\u5fc5\u5148", "\uff1f**", " ?**"], ["\u6700\u5148", "?**", "\u7b2c\u4e00\u4ef6\u4e8b", "\u2019ll", " Biggest", " Worst", " \u0623\u0648\u0644\u0627\u064b", "akest"], ["\u6700\u5148", "?**", "\u7b2c\u4e00\u4ef6\u4e8b", " \u0623\u0648\u0644\u0627\u064b", "?\\", "\u2019ll", " broke", " happens"], ["\u6700\u5148", " happens", "\u5d29\u584c", " gets", " breaks", " broke", " fails", " Collapse"], [" breaks", " Break", " Breaking", " broke", " break", " breaking", "-break", ".break"], [" breaks", " Break", " Breaking", " broke", " breaking", " break", ".break", " Broken"], [" breaks", " Break", " Breaking", " breaking", " break", " broke", " Broken", "-break"], [" Break", " breaks", " Breaking", " break", " breaking", " Broken", " broke", "-break"], [" breaks", " Break", " break", " Breaking", " breaking", "break", "-break", " broke"], [" breaks", " Break", " break", "-break", "break", " breaking", "_break", " broke"], [" breaks", " Break", " break", "-break", " Breaking", "break", " breaking", "_break"], [" Break", " breaks", " Breaking", " BREAK", " Broken", "Break", "_break", "-break"]], "p": [[0.4895, 0.2041, 0.1238, 0.0585, 0.0485, 0.0333, 0.0054, 0.0042], [0.0153, 0.0143, 0.0127, 0.0112, 0.0064, 0.006, 0.005, 0.0032], [0.2871, 0.1636, 0.1124, 0.0602, 0.0414, 0.0303, 0.0221, 0.0172], [0.0138, 0.0107, 0.0069, 0.0069, 0.0057, 0.0054, 0.0051, 0.0051], [0.0165, 0.0094, 0.005, 0.0029, 0.0027, 0.0025, 0.0024, 0.002], [0.0273, 0.0078, 0.0057, 0.0051, 0.0042, 0.0042, 0.0037, 0.0027], [0.4213, 0.0305, 0.0269, 0.0253, 0.0253, 0.0163, 0.0127, 0.012], [0.0896, 0.0351, 0.033, 0.0156, 0.0089, 0.0065, 0.0054, 0.0051], [0.1918, 0.0378, 0.026, 0.026, 0.0244, 0.0178, 0.0157, 0.0131], [0.0139, 0.007, 0.0051, 0.0045, 0.0045, 0.0042, 0.0033, 0.0029], [0.1637, 0.0682, 0.0441, 0.0284, 0.0236, 0.0236, 0.0236, 0.0195], [0.1188, 0.0182, 0.0118, 0.0076, 0.0071, 0.0067, 0.0059, 0.0056], [0.1134, 0.021, 0.0163, 0.0153, 0.0093, 0.0087, 0.0072, 0.0072], [0.0335, 0.0123, 0.0102, 0.007, 0.0055, 0.0045, 0.0045, 0.004], [0.0298, 0.0247, 0.0124, 0.0075, 0.0052, 0.0052, 0.0043, 0.004], [0.0196, 0.0173, 0.0077, 0.0077, 0.0047, 0.0047, 0.0041, 0.0041], [0.1783, 0.0227, 0.0176, 0.0137, 0.0094, 0.0057, 0.0045, 0.0039], [0.2162, 0.0795, 0.0115, 0.0108, 0.0089, 0.0069, 0.0065, 0.0054], [0.4953, 0.1511, 0.015, 0.0141, 0.0091, 0.0075, 0.0071, 0.004], [0.3872, 0.1516, 0.0812, 0.0181, 0.0103, 0.0097, 0.0086, 0.0071], [0.3427, 0.0765, 0.0596, 0.0464, 0.0219, 0.0206, 0.0151, 0.0141], [0.0412, 0.0302, 0.0302, 0.0266, 0.0161, 0.0161, 0.0118, 0.0118], [0.043, 0.0404, 0.023, 0.0191, 0.0168, 0.0158, 0.0123, 0.0116], [0.0366, 0.0268, 0.0196, 0.0173, 0.0119, 0.0077, 0.0064, 0.0056], [0.6144, 0.1136, 0.0734, 0.021, 0.0113, 0.0093, 0.0064, 0.005], [0.1858, 0.05, 0.0251, 0.0126, 0.0072, 0.0068, 0.006, 0.006], [0.6073, 0.0183, 0.0126, 0.0104, 0.0044, 0.0044, 0.0044, 0.0028], [0.9831, 0.0124, 0.0012, 0.0005, 0.0001, 0.0001, 0.0001, 0.0001], [0.9927, 0.0052, 0.0007, 0.0002, 0.0002, 0.0001, 0.0001, 0.0], [0.781, 0.1538, 0.0499, 0.0018, 0.0018, 0.001, 0.0008, 0.0007], [0.7958, 0.1567, 0.035, 0.0014, 0.0012, 0.0009, 0.0009, 0.0006], [0.5954, 0.1933, 0.1035, 0.0246, 0.0052, 0.0023, 0.002, 0.0018], [0.1316, 0.1025, 0.0354, 0.0354, 0.0202, 0.009, 0.0066, 0.0058], [0.4025, 0.2024, 0.0657, 0.0227, 0.0122, 0.0057, 0.0054, 0.0045], [0.1782, 0.048, 0.033, 0.02, 0.02, 0.0176, 0.0166, 0.0156], [0.4345, 0.1599, 0.0856, 0.0179, 0.0168, 0.0158, 0.0109, 0.009], [0.0681, 0.0302, 0.0267, 0.0143, 0.0104, 0.0092, 0.0092, 0.0081], [0.0616, 0.0274, 0.0156, 0.0146, 0.0129, 0.0114, 0.0101, 0.0078], [0.0692, 0.0239, 0.0145, 0.0128, 0.012, 0.01, 0.0094, 0.0094], [0.046, 0.0149, 0.0132, 0.0116, 0.0109, 0.0109, 0.0103, 0.0091], [0.0611, 0.0447, 0.0271, 0.0225, 0.0136, 0.0128, 0.0128, 0.012], [0.0349, 0.0272, 0.0225, 0.0199, 0.0199, 0.0165, 0.0155, 0.0155], [0.0358, 0.0262, 0.0246, 0.0246, 0.0159, 0.0149, 0.014, 0.0132], [0.0799, 0.0244, 0.0215, 0.0202, 0.019, 0.019, 0.0178, 0.0157], [0.0637, 0.0341, 0.032, 0.0266, 0.025, 0.022, 0.022, 0.0207], [0.0699, 0.0617, 0.0544, 0.048, 0.0274, 0.0274, 0.0242, 0.02], [0.1179, 0.0672, 0.0557, 0.0557, 0.0317, 0.0317, 0.0218, 0.0181], [0.5327, 0.0437, 0.0386, 0.0386, 0.032, 0.0194, 0.0151, 0.0142], [0.8605, 0.0148, 0.0062, 0.0054, 0.0045, 0.0045, 0.0045, 0.0042], [0.6737, 0.0335, 0.0315, 0.0217, 0.0085, 0.0085, 0.008, 0.007], [0.3519, 0.1294, 0.0611, 0.0371, 0.0327, 0.0225, 0.0155, 0.0136], [0.9055, 0.0166, 0.0129, 0.0065, 0.0025, 0.0024, 0.0015, 0.0014], [0.8735, 0.0117, 0.0103, 0.0032, 0.003, 0.0026, 0.0025, 0.0022], [0.6695, 0.0215, 0.0178, 0.0139, 0.0058, 0.0058, 0.0054, 0.0051], [0.1985, 0.1131, 0.0443, 0.0367, 0.0345, 0.0345, 0.0252, 0.0197], [0.6247, 0.2028, 0.0845, 0.0399, 0.0114, 0.0101, 0.0037, 0.0033], [0.4324, 0.3368, 0.1803, 0.0148, 0.0115, 0.0048, 0.0023, 0.0018], [0.5174, 0.3556, 0.1019, 0.0084, 0.0057, 0.0051, 0.0013, 0.0009], [0.6656, 0.2774, 0.0482, 0.0031, 0.0019, 0.0011, 0.001, 0.0005], [0.8115, 0.1811, 0.0043, 0.002, 0.0007, 0.0002, 0.0001, 0.0001], [0.8726, 0.1181, 0.0067, 0.0005, 0.0005, 0.0005, 0.0003, 0.0002], [0.8785, 0.1189, 0.0013, 0.0002, 0.0002, 0.0002, 0.0001, 0.0001], [0.9621, 0.0373, 0.0002, 0.0001, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Kotlin": [218918, 190399, 173394, 29032, 41262, 58578, 57560, 89706, 124847, 178174, 170353, 97297, 55575, 80640, 133582, 51083, 71107, 58266, 105362, 183690, 173765, 147136, 179679, 226386, 203841, 162083, 125863, 171575, 115603, 157701, 166704, 202988, 199136, 145425, 169590, 119740, 128698, 117258, 108188, 99773, 86952, 55639, 41871, 33363, 18041, 41898, 59873, 41721, 38523, 21679, 44208, 21943, 24887, 23139, 23735, 14899, 17407, 14803, 19999, 23614, 35779, 46782, 13044]}}, {"pos": 466, "top": [["s", ",", "er", "y", ".", "es", "o", "\u2013"], ["s", "\u0627\u062a", "\u2011", "es", "\u044b", "er", "schild", "sul"], ["s", "\u0627\u062a", "\u044b", "es", "\u2011", "er", "\u2026", "\u2013"], ["s", "\u0627\u062a", "\u044b", "\u05d9\u05dd", "\u3044\u308b", "sburg", "sche", "sik"], ["s", "\u0627\u062a", "\u044b", "es", "sand", "\u05d9\u05dd", "sor", "sche"], ["s", "\u0627\u062a", "\u044b", "es", "siz", "\u05d9\u05dd", "sor", "sand"], ["s", "\u0627\u062a", "\u044b", "es", "sor", "sand", "\u05d9\u05dd", "sburg"], ["s", "\u0627\u062a", "\u044b", "sburg", "\u05d9\u05dd", "sand", "sor", "sia"], ["s", "\u0627\u062a", "\u044b", "sburg", "\u05d9\u05dd", "sand", "schild", "sia"], ["s", "\u0627\u062a", "\u044b", "sburg", "\u05d9\u05dd", "sia", "sand", "siz"], ["s", "\u0627\u062a", "\u044b", "es", "sburg", "\u05d9\u05dd", "sia", "sand"], ["s", "\u0627\u062a", "\u044b", "sburg", "\u05d9\u05dd", "es", "sia", "schild"], ["s", "\u0627\u062a", "sburg", "\u044b", "\u05d9\u05dd", "siz", "schild", "sia"], ["s", "\u0627\u062a", "sburg", "\u044b", "\u05d9\u05dd", "sense", "siz", "sia"], ["s", "\u0627\u062a", "\u044b", "es", "sburg", "\u05d9\u05dd", "sense", "siz"], ["s", "\u0627\u062a", "\u044b", "es", "\u05d9\u05dd", "er", "sburg", "sense"], ["s", "\u0627\u062a", "es", "er", "\u044b", "y", "ful", "ness"], ["s", "\u0627\u062a", "es", "\u044b", "er", "y", "ful", "ingly"], ["s", "\u0627\u062a", "\u044b", "es", "ingly", "ful", "sing", "sburg"], ["s", "\u0627\u062a", "ingly", "\u044b", "es", "ful", "sia", "fully"], ["s", " \n\n", "\u0627\u062a", "ingly", "ful", "fully", "  \n\n", "sia"], ["s", "\u0627\u062a", "ingly", "sia", "\u044b", "sburg", "fully", "lessly"], ["s", " \n\n", "ingly", "\u0627\u062a", "fully", "lessly", " --", "ful"], ["s", " \n\n", "\n\n", " --", " \r\n\r\n", "ingly", "fully", "\u0627\u062a"], [" \n\n", "\n\n", "  \n\n", "s", " \r\n\r\n", "\r\n\r\n", "\t\n\n", "   \n\n"], [" \n\n", "\n\n", "s", " \r\n\r\n", "  \n\n", "\r\n\r\n", "\t\n\n", " ___"], [" \n\n", "s", "\n\n", "\r\n\r\n", " \r\n\r\n", " ___", "  \n\n", "___"], [" \n\n", "\n\n", "s", "  \n\n", "\r\n\r\n", " \r\n\r\n", " --", " ___"], [" \n\n", "\n\n", "s", "  \n\n", "\r\n\r\n", " \r\n\r\n", " ___", "\t\n\n"], [" \n\n", "s", "  \n\n", "\n\n", " \r\n\r\n", " \n  \n", " ___", "\r\n\r\n"], [" \n\n", "s", "  \n\n", "\n\n", " \r\n\r\n", " \n  \n", "?\\", "   \n\n"], ["s", " \n\n", "  \n\n", " \u2014", " quickly", "\n\n", " \\", " --"], ["s", " \u2014", " havoc", " quickly", " worse", " wildly", " cleanly", " \n\n"], ["s", " havoc", " \u2014", "\u2014or", " \n\n", " squarely", " fundamentally", " \ufffd"], ["s", " havoc", " \u2014", "\u2014or", " cleanly", " squarely", " busted", "Fuck"], ["s", " \u2014", " havoc", " hardest", " unsustainable", " fastest", "\u2014or", " worst"], [" havoc", "s", " unsustainable", " \u2014", " fastest", " worst", " hardest", "\u2014or"], [" havoc", " unsustainable", " fastest", "s", " inevit", " catast", " failure", " worst"], [" catast", " unsustainable", " havoc", " failure", " fastest", " quickly", " catastrophic", " failures"], [" fastest", " unsustainable", " catast", " quickly", " failure", " havoc", " inevit", " failures"], [" catast", " failure", " breakdown", " catastrophic", "\u5d29\u6e83", " unsustainable", " failures", " fragile"], ["\u5d29\u6e83", " catast", " catastrophic", " fragile", " brittle", " breakdown", " collapse", " meltdown"], [" fragile", "\u5d29\u6e83", " brittle", " catast", " breakdown", " broken", " catastrophic", " collapse"], ["\u5d29\u6e83", " breakdown", " catast", " Break", " broken", " catastrophic", " fastest", " collapse"], [" catast", "\u5d29\u6e83", " fastest", " breakdown", " collapse", " catastrophic", " fragile", " broken"], [" fastest", "\u6700\u5148", " catast", " inevit", " inevitable", "\u5d29\u6e83", " quickest", " breakdown"], [" inevit", "\u6700\u5148", " fastest", " inevitable", " quickest", " sooner", " Break", " hardest"], ["\u6700\u5148", " fastest", " FIRST", " quickest", " inevit", " sooner", " Worst", "\u6700\u5feb"], ["\u6700\u5148", " FIRST", ":first", "-first", " fastest", "\u7b2c\u4e00\u65f6\u95f4", " quickest", " \u0623\u0648\u0644\u0627\u064b"], ["\u6700\u5148", ":**", ":\\", ":*", ":", "*:", "**:", "__:"], ["\u6700\u5148", "?**", ":**", "*:", "\uff1a**", ":*", "**:", "?:"], ["\u6700\u5148", ":**", "?**", ":first", "?:", " \u0623\u0648\u0644\u0627\u064b", " FIRST", "**:"], ["\u6700\u5148", ":**", ":*", " FIRST", "\uff1a**", "?**", " :**", " \u0623\u0648\u0644\u0627\u064b"], ["\u6700\u5148", " \u0623\u0648\u0644\u0627\u064b", " FIRST", "\u9996\u5148", ":**", " zuerst", ":first", " primero"], [" FIRST", "\u6700\u5148", "\u9996\u5148", " \u0623\u0648\u0644\u0627\u064b", ":first", ":**", " zuerst", " primero"], [" first", " FIRST", "first", " First", "-first", "\u9996\u5148", "\u7b2c\u4e00", ":first"], [" first", " FIRST", "first", " First", "\u9996\u5148", "-first", " primero", "_first"], [" first", " FIRST", "first", " First", "\u9996\u5148", "-first", " primero", "_first"], [" first", " First", " FIRST", "first", "-first", "_first", "First", "\u9996\u5148"], [" First", " first", " FIRST", "first", "First", "-first", "_first", ".first"], [" first", " First", "first", " FIRST", "First", "-first", "_first", ".first"], [" First", "s", " first", " FIRST", "First", "first", "-first", "_first"], ["s", " First", "es", "ks", "ts", "ers", "ses", "ures"]], "p": [[1.0, 0.0, 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], [1.0, 0.0, 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], [1.0, 0.0, 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], [1.0, 0.0, 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], [1.0, 0.0, 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], [1.0, 0.0, 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], [1.0, 0.0, 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], [1.0, 0.0, 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], [1.0, 0.0, 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], [1.0, 0.0, 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.9999, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9979, 0.0002, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9961, 0.0011, 0.0003, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001], [0.9814, 0.0124, 0.0008, 0.0005, 0.0003, 0.0002, 0.0002, 0.0002], [0.7949, 0.1774, 0.0113, 0.0069, 0.0037, 0.0032, 0.0006, 0.0003], [0.8978, 0.0506, 0.012, 0.0106, 0.0088, 0.0069, 0.0016, 0.0011], [0.6816, 0.1184, 0.1184, 0.0086, 0.0081, 0.0067, 0.0026, 0.0026], [0.5567, 0.4335, 0.0026, 0.0023, 0.0012, 0.0008, 0.0007, 0.0005], [0.6078, 0.3687, 0.0162, 0.0032, 0.001, 0.0007, 0.0002, 0.0002], [0.9401, 0.0284, 0.0152, 0.0104, 0.001, 0.0005, 0.0004, 0.0004], [0.8869, 0.0825, 0.0143, 0.0087, 0.0007, 0.0004, 0.0003, 0.0003], [0.7036, 0.2284, 0.0037, 0.0033, 0.0014, 0.0008, 0.0006, 0.0006], [0.8833, 0.0053, 0.0025, 0.0011, 0.0011, 0.0009, 0.0009, 0.0008], [0.2417, 0.0225, 0.0145, 0.0088, 0.006, 0.0053, 0.0047, 0.0044], [0.0837, 0.0421, 0.0121, 0.0094, 0.0073, 0.0061, 0.0044, 0.0042], [0.1224, 0.0256, 0.0176, 0.0094, 0.0094, 0.0089, 0.0073, 0.0061], [0.0296, 0.0261, 0.0149, 0.014, 0.0124, 0.0058, 0.0058, 0.0055], [0.027, 0.021, 0.0164, 0.0113, 0.0082, 0.0082, 0.0077, 0.0068], [0.0229, 0.0215, 0.0202, 0.019, 0.0179, 0.0179, 0.0131, 0.0123], [0.0311, 0.0242, 0.0201, 0.0189, 0.0156, 0.0147, 0.013, 0.0108], [0.0365, 0.0267, 0.0251, 0.0251, 0.0222, 0.0222, 0.0222, 0.0208], [0.0576, 0.0576, 0.0372, 0.035, 0.0328, 0.0328, 0.0256, 0.0187], [0.0548, 0.0515, 0.0427, 0.0427, 0.0332, 0.0312, 0.0259, 0.0243], [0.0759, 0.049, 0.049, 0.0316, 0.0297, 0.0279, 0.0262, 0.0246], [0.0654, 0.0509, 0.0509, 0.0309, 0.029, 0.0226, 0.0212, 0.0212], [0.1005, 0.0538, 0.0347, 0.0288, 0.027, 0.0254, 0.0239, 0.0239], [0.1229, 0.1154, 0.0899, 0.0745, 0.0227, 0.0201, 0.0177, 0.0177], [0.6133, 0.0473, 0.0223, 0.0223, 0.0197, 0.0154, 0.0087, 0.0087], [0.8463, 0.0176, 0.0121, 0.0078, 0.0069, 0.0065, 0.0057, 0.005], [0.4265, 0.1148, 0.0654, 0.0273, 0.0241, 0.0199, 0.0187, 0.0165], [0.3887, 0.0675, 0.0675, 0.0319, 0.0264, 0.0248, 0.0233, 0.0194], [0.5904, 0.0799, 0.0402, 0.0313, 0.0244, 0.0202, 0.0178, 0.0139], [0.4365, 0.3, 0.0279, 0.0279, 0.0246, 0.0169, 0.0159, 0.0149], [0.2611, 0.1795, 0.1398, 0.1233, 0.066, 0.0243, 0.0178, 0.0157], [0.2161, 0.1907, 0.1485, 0.1311, 0.0376, 0.0292, 0.0258, 0.0201], [0.4182, 0.3257, 0.1198, 0.0343, 0.0162, 0.0162, 0.0098, 0.0087], [0.6388, 0.1425, 0.111, 0.0594, 0.0133, 0.0055, 0.0034, 0.0034], [0.5698, 0.185, 0.099, 0.0771, 0.0134, 0.0063, 0.0056, 0.0038], [0.4251, 0.2922, 0.1772, 0.0652, 0.0054, 0.0042, 0.0037, 0.0032], [0.4956, 0.4373, 0.0317, 0.0218, 0.0023, 0.002, 0.002, 0.0007], [0.5423, 0.4223, 0.0145, 0.0128, 0.002, 0.0013, 0.0012, 0.0007], [0.6609, 0.3122, 0.0176, 0.0021, 0.0015, 0.0013, 0.0008, 0.0008], [0.9785, 0.0109, 0.0045, 0.0008, 0.0007, 0.0006, 0.0002, 0.0002]], "ranks": {"Kotlin": [189269, 182550, 152244, 74201, 115441, 141450, 158906, 164170, 144323, 198851, 178512, 153073, 85407, 94516, 142881, 154523, 159730, 160976, 141133, 150948, 177804, 121010, 135135, 169992, 145381, 62174, 38727, 89876, 62641, 59402, 80291, 102653, 73946, 25232, 35574, 29348, 31333, 32712, 31795, 36324, 30503, 33072, 36271, 39956, 27347, 54337, 48626, 35437, 39286, 41608, 60027, 63469, 118815, 147155, 131977, 105241, 85093, 67063, 64592, 32404, 47563, 41857, 29299]}}, {"pos": 467, "top": [[".", " \u2013", "\u2013", ",", " ", "<|endoftext|>", "\u00a0\u00a0", "\u00a0"], [" \u2013", "\u2013", " ", "  \n", "  \n\n", "   \n", " \u200b\u200b", "  \n  \n"], ["\u2013", "\u2026", "\u2026.", " \u2013", ".", ",", "\u2026..", "\u2013and"], ["ickle", "bucks", "---</", "uggy", "linky", "agna", "rokes", "uckt"], ["ively", " \n  \n", "  \n  \n", "        \n        \n", " kids", "atria", "agna", "ambul"], ["rokes", "insky", "agna", " \n  \n", " pretty", "ighbors", "\u7d2f\u7d2f", " kids"], [" \n", " \n  \n", "  \n", "   \n", "rokes", " Philly", "        \n        \n", " havoc"], ["\u7d2f\u7d2f", " \n  \n", "ighbors", " havoc", " \n", "        \n        \n", "breaker", "ickle"], [" \n    \n", " \n  \n", " \n", "        \n        \n", " \n \n", " Philly", "breaker", " \n\n"], [" \n  \n", " havoc", " \n \n", "\u7d2f\u7d2f", "-down", "<|object_ref_start|>", "-Cds", ".pretty"], [" \n  \n", " \n", " \n\n", " \n \n", "  \n\n", " havoc", "  \n  \n", " \n\n\n"], [" havoc", " \n  \n", " --", " \n\n", " ___", " \n", "\u7d2f\u7d2f", " Philly"], [" havoc", " --", " kids", " \n", " Philly", " \n  \n", "\u7d2f\u7d2f", " \n\n"], [" havoc", " \n\n", " --", " pretty", " kids", " horribly", " wildly", "pretty"], [" \n\n", " --", " \u2014", " havoc", " pretty", " kids", "  \n\n", "\n\n"], [" --", " \u2014", " pretty", " horribly", " wildly", " kids", " havoc", " \n\n"], [" pretty", " bigger", " wildly", " kids", " horribly", " big", " getting", " really"], [" \u2014", " pretty", " bigger", " \n\n", " big", " stuff", " really", " --"], [" \u2014", " --", " \n\n", " pretty", " havoc", "\u2014and", "\u2014or", " bigger"], [" \n\n", " --", " \u2014", "  \n\n", " havoc", "\u2014or", " horribly", "\u2014and"], [" \n\n", "  \n\n", " --", "\n\n", "   \n\n", "\t\n\n", " \r\n\r\n", " \n\n\n"], [" --", " havoc", " horribly", " bigger", " harder", " worse", " tougher", " wildly"], [" --", " \n\n", " ---", " horribly", " \u2014", " havoc", " wildly", " worse"], [" --", " \n\n", " ,", " much", " even", "\n\n", " \u2014", " wildly"], [" \n\n", "\n\n", "  \n\n", " --", " \n\n\n", " \r\n\r\n", "   \n\n", " \n  \n"], [" \n\n", "\n\n", " --", " ___", "  \n\n", " __", " \n  \n", " \r\n\r\n"], [" \n\n", "\n\n", " --", " ___", " __", "  \n\n", " ---", "\r\n\r\n"], [" \n\n", "\n\n", "  \n\n", " --", " ___", " __", " \n\n\n", " _"], [" \n\n", "\n\n", "  \n\n", " --", " \n  \n", " ___", " __", " \n\n\n"], [" \n\n", "  \n\n", " ___", "\n\n", " \n  \n", " __", " ____", " \n\n\n"], [" \n\n", " ...", "\n\n", "  \n\n", " \n", " \n  \n", " ___", " __"], [" \n\n", " ...", " ,", " over", " -", " heavily", " \u2014", " :"], [" :", " ,", " \u2014", " over", " -", " heavily", " quickly", " --"], [" \n\n", " \u2014", " tech", " heavily", " technology", " fundamentally", " incredibly", " infrastructure"], [" \u2014", " \n\n", " heavily", " quickly", " infrastructure", " rapidly", " fast", " aggressively"], [" \u2014", " faster", " \n\n", " \u2026", " speed", " fast", " hardware", " rapid"], [" speed", " faster", " fast", " \u2014", " performance", " hardware", " rapid", " quickly"], [" speed", " faster", " fast", " performance", " hardware", " quickly", " \u2014", " rapid"], [" performance", " speed", " efficiency", " faster", " bottleneck", " hardware", " fast", " engine"], [" performance", " speed", " bottleneck", " efficiency", " hardware", " unpredictable", " productivity", " engine"], [" performance", " speed", " bottleneck", " efficiency", " productivity", " engine", " faster", " optimization"], [" speed", " performance", " engine", " bottleneck", " jitter", " timing", " CPU", " overclock"], [" jitter", " crunch", " bottleneck", " sprint", " overclock", " glitch", " unpredictable", " performance"], [" bottleneck", " crashes", " jitter", " crunch", " peak", " performance", " budget", " sprint"], [" jitter", " bottleneck", " sprint", " unpredictable", " crashes", " budget", " consistently", " peak"], [" jitter", " unpredictable", " sprint", " bottleneck", " crashes", " consistently", " speed", " peak"], [" jitter", " consistently", " unpredictable", " crashes", " bottleneck", " sprint", " peak", " budget"], [" consistently", " jitter", " crashes", " Sprint", " Timeline", " unpredictable", " relentless", " Budget"], [" jitter", " Sprint", " consistently", " crashes", " sprint", " glitches", " bottleneck", " relentless"], [":", ":**", ":\\", "__:", ":</", " :</", "**:", " **:**"], [":", ":**", "**:", " **:", "\uff1a**", " :**", "*:", ":*"], [":**", " :**", "\uff1a**", ":first", "\u6700\u5148", ":*", "**:", ":"], [":**", " :**", ":*", "\u6700\u5148", "\uff1a**", "?**", " :</", ":</"], ["\u9996\u5148", ":**", " \u0623\u0648\u0644\u0627\u064b", " FIRST", " :**", " first", "\u6700\u5148", ":*"], [" first", "\u9996\u5148", " FIRST", " \u0623\u0648\u0644\u0627\u064b", ":first", ":**", "first", "\u6700\u5148"], [" first", "first", " FIRST", " First", "-first", ":first", "_first", "First"], [" first", "first", " First", " FIRST", "\u9996\u5148", "-first", "First", "_first"], [" first", "first", " First", " FIRST", "-first", "First", "\u9996\u5148", "_first"], [" first", " First", "first", " FIRST", "First", "_first", "-first", ":first"], [" first", " First", "first", " FIRST", "_first", "First", "-first", "\tfirst"], [" first", " First", "first", "_first", "First", " FIRST", ".first", "-first"], [" First", " first", "First", "_first", " FIRST", "first", "-first", ":**"], [" First", " first", " Last", ":**", " Second", " FIRST", "_first", "First"]], "p": [[0.4331, 0.2046, 0.1095, 0.0753, 0.0664, 0.0277, 0.0131, 0.0102], [0.0648, 0.0504, 0.0287, 0.0254, 0.0254, 0.0077, 0.0073, 0.0057], [0.6804, 0.1182, 0.0525, 0.0463, 0.0248, 0.0141, 0.0103, 0.0059], [0.0085, 0.0062, 0.0029, 0.0029, 0.0024, 0.0019, 0.0018, 0.0017], [0.0089, 0.0084, 0.0079, 0.0074, 0.0057, 0.004, 0.0035, 0.0033], [0.0096, 0.0042, 0.004, 0.004, 0.0031, 0.0026, 0.0024, 0.0024], [0.0389, 0.0322, 0.0098, 0.0072, 0.0056, 0.0053, 0.0049, 0.0044], [0.0061, 0.0057, 0.0044, 0.0042, 0.0039, 0.0039, 0.0039, 0.003], [0.0226, 0.0156, 0.0094, 0.0094, 0.0061, 0.0061, 0.0054, 0.0045], [0.0091, 0.0049, 0.0049, 0.0026, 0.0023, 0.002, 0.0015, 0.0014], [0.2809, 0.193, 0.1703, 0.0458, 0.0203, 0.0116, 0.0109, 0.0085], [0.0582, 0.0167, 0.0138, 0.0115, 0.0101, 0.0101, 0.0079, 0.0065], [0.0529, 0.0161, 0.0126, 0.0126, 0.0118, 0.0118, 0.0076, 0.0072], [0.0934, 0.0414, 0.0389, 0.0251, 0.0236, 0.0135, 0.0126, 0.0112], [0.567, 0.1729, 0.0362, 0.0142, 0.0133, 0.0081, 0.0076, 0.0071], [0.0696, 0.0614, 0.035, 0.0273, 0.0273, 0.0273, 0.0176, 0.0146], [0.0684, 0.0366, 0.0268, 0.0222, 0.0208, 0.0184, 0.0173, 0.0173], [0.1471, 0.0838, 0.0541, 0.0328, 0.0256, 0.0176, 0.0165, 0.0146], [0.2032, 0.2032, 0.1022, 0.0353, 0.0258, 0.0178, 0.0157, 0.0147], [0.5112, 0.2002, 0.0307, 0.0128, 0.0113, 0.0073, 0.0068, 0.0057], [0.9725, 0.0122, 0.0054, 0.0031, 0.0007, 0.0005, 0.0005, 0.0003], [0.1589, 0.0354, 0.0202, 0.0167, 0.0157, 0.0148, 0.0115, 0.0074], [0.7459, 0.101, 0.0061, 0.005, 0.0047, 0.0042, 0.003, 0.0025], [0.5753, 0.1284, 0.0077, 0.0068, 0.0068, 0.005, 0.0044, 0.0041], [0.9604, 0.0329, 0.005, 0.0005, 0.0002, 0.0002, 0.0002, 0.0001], [0.9802, 0.0051, 0.0035, 0.0035, 0.0014, 0.0014, 0.0004, 0.0002], [0.8605, 0.1165, 0.0084, 0.0045, 0.0023, 0.0008, 0.0002, 0.0002], [0.772, 0.2212, 0.0022, 0.0022, 0.0004, 0.0003, 0.0001, 0.0001], [0.8984, 0.0947, 0.0037, 0.0005, 0.0003, 0.0002, 0.0002, 0.0002], [0.9794, 0.0058, 0.004, 0.0035, 0.0024, 0.0011, 0.0006, 0.0005], [0.9346, 0.0104, 0.0092, 0.0092, 0.0056, 0.0049, 0.0028, 0.0012], [0.2451, 0.0514, 0.0453, 0.0189, 0.0138, 0.0122, 0.0115, 0.0108], [0.069, 0.0572, 0.0347, 0.0254, 0.0224, 0.021, 0.0145, 0.0136], [0.0924, 0.0635, 0.0282, 0.0206, 0.0182, 0.0142, 0.0125, 0.0104], [0.0771, 0.0364, 0.0235, 0.0162, 0.0152, 0.0152, 0.0143, 0.0104], [0.2393, 0.0605, 0.0605, 0.0367, 0.0345, 0.0345, 0.0185, 0.0163], [0.0961, 0.0749, 0.0621, 0.0548, 0.0483, 0.0483, 0.0293, 0.0167], [0.0563, 0.0529, 0.0412, 0.0364, 0.0302, 0.0266, 0.0221, 0.0183], [0.1831, 0.0921, 0.0361, 0.0281, 0.0248, 0.0233, 0.0181, 0.016], [0.135, 0.0438, 0.0387, 0.0321, 0.0183, 0.0183, 0.0183, 0.0126], [0.1474, 0.084, 0.0696, 0.0309, 0.0273, 0.0241, 0.0187, 0.0121], [0.0552, 0.0457, 0.0404, 0.0335, 0.0295, 0.0245, 0.0216, 0.0168], [0.0602, 0.0285, 0.0236, 0.0236, 0.0222, 0.0208, 0.0196, 0.0162], [0.0354, 0.0294, 0.0276, 0.0243, 0.0215, 0.0202, 0.0202, 0.019], [0.046, 0.0358, 0.0246, 0.0204, 0.0204, 0.0192, 0.018, 0.0169], [0.0535, 0.0346, 0.0286, 0.0269, 0.0237, 0.0223, 0.0185, 0.0153], [0.0486, 0.0403, 0.0245, 0.019, 0.0168, 0.0148, 0.0139, 0.0139], [0.0701, 0.0227, 0.0227, 0.0147, 0.0138, 0.013, 0.0114, 0.0107], [0.0205, 0.0205, 0.017, 0.015, 0.0132, 0.0124, 0.0086, 0.0086], [0.2138, 0.0891, 0.0837, 0.0448, 0.0349, 0.0308, 0.024, 0.0225], [0.1499, 0.1408, 0.0708, 0.0665, 0.0587, 0.0295, 0.0277, 0.0277], [0.2818, 0.0859, 0.0712, 0.0555, 0.0521, 0.0406, 0.0381, 0.0358], [0.6872, 0.0724, 0.0388, 0.0342, 0.0302, 0.0208, 0.0126, 0.0072], [0.219, 0.1933, 0.1706, 0.0711, 0.0381, 0.0381, 0.0231, 0.0231], [0.2399, 0.1649, 0.1284, 0.0779, 0.0607, 0.0607, 0.0472, 0.0287], [0.822, 0.0765, 0.0409, 0.0409, 0.0071, 0.0038, 0.0014, 0.0011], [0.895, 0.0648, 0.0239, 0.0113, 0.0012, 0.001, 0.0007, 0.0004], [0.8905, 0.0502, 0.0345, 0.0185, 0.0012, 0.0009, 0.0008, 0.0006], [0.6028, 0.3227, 0.0437, 0.0234, 0.0017, 0.001, 0.0009, 0.0005], [0.7601, 0.2178, 0.0179, 0.0015, 0.0009, 0.0009, 0.0003, 0.0001], [0.7459, 0.2421, 0.0094, 0.0008, 0.0006, 0.0005, 0.0002, 0.0002], [0.9713, 0.0259, 0.0007, 0.0006, 0.0004, 0.0004, 0.0001, 0.0001], [0.9997, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Kotlin": [211954, 152459, 180426, 55403, 70682, 93997, 63142, 127710, 135081, 206261, 207301, 159249, 125893, 187452, 212778, 168841, 191494, 164767, 59942, 141088, 145734, 70031, 117397, 159782, 116671, 26086, 28189, 73915, 54130, 34404, 54732, 56517, 48249, 19076, 22876, 11281, 5615, 4795, 5793, 3105, 4278, 6143, 5302, 5102, 4995, 7443, 5987, 4702, 4386, 4057, 6725, 9622, 28233, 59172, 44131, 22789, 19022, 11386, 11300, 6552, 17814, 14580, 7293]}}, {"pos": 468, "top": [["s", " \u2013", ".", "<|endoftext|>", "\u2013", ",", " ", "  \n"], ["s", " \u2013", "\u2013", " very", " Very", "  \n", "  \n\n", "sWith"], ["\u2013", "s", " \u2013", "\u2026", ",", ".", "\u2013and", "?"], ["sWith", "schaft", "sik", "schn", "scha", "sstr", "schrift", "satz"], ["s", "sWith", "ively", "sik", "schaft", "sand", "sche", "iest"], ["s", "schaft", "sver", " **", "sWith", "sand", "sab", "spre"], ["s", " **", "\u300d**", "sie", "schaft", "sor", "sand", " \u00bb**"], [" **", "schaft", " **\u300c", "\u300d**", "schn", "s", " **\u00ab", " \u00bb**"], ["schaft", "s", "schn", "sik", "\u300d**", "!**", "schuss", "**!"], ["s", "\\_", "\\-", "!\\", "!,", "\u5148\u5f97", "sand", "ively"], ["s", "\\_", "!\\", "\\-", " \\(", "._", ",", "?\\"], ["s", " **", "\\_", "._", " _", " ___", "schaft", "_\\"], ["s", "schaft", " **", " _", "._", "\\_", "iest", "ively"], ["s", "-ish", "-ever", " _", "kick", " kicks", " kicking", "\\_"], ["s", "\n\n", " _", " --", " \n\n", " \u2014", "\\_", " ,"], ["s", " ,", " \u2014", " ?", " -", " --", " really", " right"], ["s", " ,", " really", " just", ",", " \u2014", "?", " right"], ["s", " \u2014", " ,", ",", " just", " really", "?", " --"], [" \u2014", "s", " --", " ?", " ,", " \ufffd", " !", " pretty"], [" \u2014", " --", " ?", "\n\n", "s", " ,", " \ufffd", " ---"], ["\n\n", " \n\n", " --", " \u2014", " ?", "<|endoftext|>", " ,", "  \n\n"], [" ?", " --", " ___", " ?**", " :", " \u2014", " ---", "\n\n"], ["\n\n", " --", " ?", " ___", " :", " \u2014", " ,", " ---"], [" --", "\n\n", " ,", " ?", " \u2014", " :", "<|endoftext|>", " \n\n"], ["\n\n", " \n\n", "  \n\n", " --", "\r\n\r\n", " ___", " \u2014", "<|endoftext|>"], ["\n\n", " ___", " \n\n", " --", " ______", " __", " ____", "\r\n\r\n"], ["\n\n", " ___", " --", " \n\n", " __", " ?", " ______", " ---"], ["\n\n", " \n\n", " --", " ___", " ?", " __", " \u2014", "  \n\n"], ["\n\n", " \n\n", "  \n\n", " ___", "\r\n\r\n", " --", " ?", " ______"], [" \n\n", "\n\n", "  \n\n", " \u2014", " ___", " --", " ______", " ?"], ["\n\n", " \n\n", " ___", "  \n\n", " ?", " ______", " --", " __"], [" \u2014", " ?", " --", " :", " ,", "\n\n", " \n\n", " @"], [" :", " \u2014", " ?", " --", " ,", " quickly", " **", " early"], [" \u2014", " :", " **", " --", " \ufffd", " ?", " quickly", "\u2014or"], [" \u2014", " --", " :", " quickly", " **", " rapidly", " fastest", " ?**"], [" \u2014", " :", " **", " ?", " :**", " \ufffd", " \u2013", " --"], [" :", " \u2014", " **", " :**", " ?", " ?**", " fastest", " **:"], [" :", " \u2014", " ?", " :**", "**:", " **:", " quickly", " **"], [" :", " \u2014", " quickly", " **", " rapidly", " :**", " ?", " **:"], [" :", " **", " quickly", " \u2014", " **:", " rapidly", " fastest", " :**"], [" :", " **", "**:", " **:", " quickly", " failure", " catastrophic", " rapidly"], [" :", " quickly", " rapidly", " catastrophic", " fastest", " failure", " prematurely", " rapid"], [" quickly", " :", " rapidly", " fastest", " rapid", " destabil", " early", " prematurely"], [" :", " fastest", " quickly", " quickest", " rapidly", " rapid", ":", " failure"], [" :", " fastest", " quickly", " early", " rapidly", " first", " failure", " rapid"], [" first", " :", " fastest", " quickly", " immediately", " immediate", " early", " rapidly"], [":", " :", " **", ":**", " Immediate", " :**", "**:", " fastest"], [":", " :", ":**", ":\\", " :**", "**:", " **", "\uff1a**"], [":", " :", ":**", "**:", " :**", " **", " **:", "\uff1a**"], [":", ":**", " **:", "**:", "\uff1a**", " :**", ":\\", " :"], [" **:", "\uff1a**", ":**", " **", " :**", ":", "**:", "?**"], [":**", "\uff1a**", " :**", ":", " **:", "**:", "?**", ":*"], [":**", "\uff1a**", " :**", ":*", "?**", ":", "**:", " **:"], [":**", "\uff1a**", " :**", ":", ":*", "?**", " **:", ":\\"], [":**", "\uff1a**", " :**", ":", ":*", "**:", " **:", ":`"], [":**", "\uff1a**", " :**", ":", ":*", "**:", "?**", " **:"], [":**", " :**", "\uff1a**", "?**", ":*", ":", "**:", " **:"], [":**", " :**", "\uff1a**", ":", ":*", "**:", "?**", " **:"], [":**", " :**", ":", "\uff1a**", ":*", "**:", "?**", " **:"], [":**", " :**", ":*", ":", "\uff1a**", "?**", "**:", "**"], [":**", ":", ":*", " :**", "\uff1a**", "?**", "**:", ":\""], [":**", ":", ":*", " :**", "?**", "**:", "\uff1a**", ":The"], [":**", ":", "?**", "\uff1a**", "**", "**:", " :**", ".**"]], "p": [[0.6421, 0.3033, 0.0182, 0.0125, 0.0092, 0.0046, 0.0025, 0.0006], [0.8026, 0.1395, 0.0214, 0.0009, 0.0007, 0.0006, 0.0004, 0.0004], [0.5259, 0.2484, 0.1935, 0.014, 0.0045, 0.004, 0.0017, 0.0011], [0.026, 0.0202, 0.0179, 0.0108, 0.0102, 0.0074, 0.0058, 0.0051], [0.9969, 0.0003, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.7456, 0.0121, 0.0106, 0.0073, 0.0044, 0.0042, 0.0039, 0.0039], [0.8296, 0.0111, 0.0092, 0.006, 0.0053, 0.0038, 0.0036, 0.003], [0.1037, 0.0629, 0.0279, 0.0279, 0.0231, 0.0149, 0.0116, 0.0109], [0.0759, 0.0381, 0.0337, 0.0116, 0.0096, 0.008, 0.0075, 0.0071], [0.1786, 0.058, 0.0084, 0.0039, 0.0029, 0.0027, 0.0027, 0.0025], [0.6646, 0.2297, 0.0074, 0.0061, 0.0042, 0.0035, 0.0031, 0.0029], [0.5402, 0.0535, 0.0237, 0.0144, 0.0105, 0.0056, 0.0034, 0.0034], [0.2433, 0.0121, 0.0121, 0.0083, 0.0037, 0.0033, 0.0033, 0.0031], [0.7193, 0.0046, 0.0018, 0.0018, 0.0018, 0.0017, 0.0015, 0.0014], [0.8129, 0.0085, 0.0066, 0.0019, 0.0015, 0.0014, 0.0014, 0.0011], [0.5907, 0.0215, 0.0168, 0.0074, 0.007, 0.0062, 0.0048, 0.004], [0.8582, 0.0037, 0.0031, 0.0027, 0.0026, 0.0017, 0.0016, 0.0013], [0.2495, 0.0862, 0.0218, 0.015, 0.015, 0.0124, 0.008, 0.0075], [0.1389, 0.1305, 0.0616, 0.0451, 0.0129, 0.0089, 0.0089, 0.0069], [0.3334, 0.2022, 0.0656, 0.0241, 0.0227, 0.02, 0.0166, 0.0156], [0.7989, 0.0511, 0.0374, 0.0257, 0.0166, 0.0137, 0.0114, 0.0074], [0.4202, 0.1452, 0.0269, 0.0269, 0.0252, 0.0163, 0.0144, 0.0093], [0.543, 0.2906, 0.0735, 0.0175, 0.012, 0.0093, 0.0088, 0.0082], [0.4994, 0.2359, 0.0868, 0.041, 0.034, 0.0194, 0.0046, 0.0038], [0.9866, 0.0124, 0.0006, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9112, 0.0353, 0.0312, 0.0079, 0.002, 0.002, 0.0018, 0.0017], [0.8877, 0.0442, 0.039, 0.005, 0.0039, 0.003, 0.0023, 0.0023], [0.9915, 0.0059, 0.0015, 0.0003, 0.0002, 0.0001, 0.0001, 0.0001], [0.9814, 0.018, 0.0003, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.5409, 0.4213, 0.021, 0.0047, 0.0025, 0.0025, 0.0009, 0.0009], [0.5128, 0.3524, 0.0371, 0.0199, 0.0137, 0.0106, 0.0083, 0.0073], [0.1608, 0.1511, 0.1038, 0.0809, 0.0592, 0.0522, 0.0491, 0.0204], [0.4753, 0.1362, 0.1129, 0.0415, 0.0367, 0.0119, 0.0093, 0.0064], [0.6102, 0.039, 0.0304, 0.0268, 0.0112, 0.0105, 0.0072, 0.0056], [0.5062, 0.0501, 0.039, 0.0237, 0.0196, 0.0127, 0.0119, 0.0087], [0.645, 0.1736, 0.0152, 0.0086, 0.0081, 0.0063, 0.0063, 0.0063], [0.3339, 0.3137, 0.0213, 0.0188, 0.0129, 0.0101, 0.0101, 0.0089], [0.4867, 0.0701, 0.0242, 0.0156, 0.0156, 0.0122, 0.0114, 0.0114], [0.463, 0.0805, 0.0245, 0.0169, 0.0158, 0.0123, 0.0109, 0.0102], [0.2187, 0.0431, 0.0315, 0.0296, 0.0203, 0.0191, 0.0169, 0.0158], [0.186, 0.0268, 0.0268, 0.0268, 0.0268, 0.0252, 0.0209, 0.0184], [0.0983, 0.0635, 0.0436, 0.0319, 0.0234, 0.0206, 0.0182, 0.0182], [0.0911, 0.0666, 0.0553, 0.0335, 0.0278, 0.023, 0.0191, 0.0179], [0.1467, 0.0651, 0.0507, 0.0289, 0.0211, 0.0186, 0.0175, 0.0165], [0.2178, 0.0586, 0.0314, 0.0216, 0.0148, 0.0148, 0.0148, 0.0139], [0.1041, 0.0863, 0.0811, 0.0524, 0.036, 0.0318, 0.0318, 0.0298], [0.2844, 0.1725, 0.034, 0.0282, 0.0233, 0.0206, 0.0182, 0.0171], [0.6136, 0.1208, 0.0733, 0.0346, 0.0287, 0.0238, 0.0174, 0.0106], [0.5464, 0.1382, 0.0739, 0.0576, 0.0508, 0.0272, 0.024, 0.0212], [0.5696, 0.1849, 0.0468, 0.0364, 0.0321, 0.0321, 0.025, 0.0195], [0.4004, 0.1473, 0.1473, 0.13, 0.0542, 0.0329, 0.0256, 0.0199], [0.518, 0.2773, 0.102, 0.0482, 0.0258, 0.0084, 0.0051, 0.0045], [0.915, 0.0456, 0.0313, 0.0026, 0.002, 0.0016, 0.0007, 0.0006], [0.9131, 0.0515, 0.0215, 0.007, 0.0054, 0.0006, 0.0002, 0.0002], [0.8852, 0.0566, 0.0267, 0.0236, 0.0068, 0.0002, 0.0002, 0.0002], [0.9558, 0.0225, 0.0154, 0.003, 0.0024, 0.0003, 0.0002, 0.0001], [0.9729, 0.0139, 0.0108, 0.0009, 0.0007, 0.0003, 0.0003, 0.0], [0.9834, 0.0085, 0.0046, 0.0022, 0.0008, 0.0002, 0.0002, 0.0001], [0.9752, 0.0096, 0.0084, 0.0024, 0.0021, 0.0015, 0.0004, 0.0002], [0.9893, 0.0059, 0.0022, 0.0013, 0.0004, 0.0003, 0.0003, 0.0003], [0.9805, 0.0096, 0.0085, 0.0007, 0.0002, 0.0001, 0.0001, 0.0001], [0.915, 0.0751, 0.0048, 0.002, 0.0011, 0.0003, 0.0003, 0.0003], [0.9981, 0.0013, 0.0003, 0.0001, 0.0001, 0.0001, 0.0001, 0.0]], "ranks": {"Kotlin": [190317, 130012, 116479, 19658, 18710, 26635, 43672, 83251, 116721, 182092, 168513, 91586, 54986, 98425, 114857, 72165, 81171, 62565, 46233, 86521, 121507, 62800, 86959, 144554, 133223, 42395, 43794, 69615, 42741, 67012, 83134, 83139, 88469, 41011, 66919, 35528, 40249, 38939, 35708, 49584, 51610, 56507, 60228, 51732, 48628, 66872, 36381, 35911, 54782, 52544, 32517, 49344, 55225, 73144, 72110, 5166, 2456, 1264, 1512, 567, 672, 212, 260]}}, {"pos": 469, "top": [[" \u2013", ".", "  \n", " (\u201e", "\u2026..", "   \n", "\u201e", "\u2026\u2026"], ["  \n", " \u2013**", "   \n", ",**", ",\\\"", " \u2013", ":**", ":\\\""], ["\u2026\u2026", "\u2026..", ".", "..", ",..", ",**", " \u2013**", ":**"], [" ``(", " **\u201e", "\u52a0\u62ff\u5927", " ``", "``", "raries", " **:**", " ;;^"], [" ##", "\u52a0\u62ff\u5927", ":@", "ed", " //@", "raries", "\u65b0\u52a0\u5761", ":**"], [":**", "\u52a0\u62ff\u5927", ".:**", "raries", ",..", "\u65b0\u52a0\u5761", ",**", "\u52c7\u5f80\u76f4\u524d"], [" ......", " ~~", "raries", ":**", ",..", " ##", ",**", "\u52c7\u5f80\u76f4\u524d"], [" **\u201e", "raries", " ~~", "\u52c7\u5f80\u76f4\u524d", "\u52a0\u62ff\u5927", ",..", ":**", " ......"], [",..", " ......", " **\u201e", "raries", " ~~", "\u52c7\u5f80\u76f4\u524d", " *@", ",\\\""], ["\u52c7\u5f80\u76f4\u524d", "\u52a0\u62ff\u5927", "\u4e0d\u53ef\u601d\u8bae", "\u8033\u719f\u80fd\u8be6", "\u8eab\u4e34\u5176\u5883", "\u4e8b\u534a\u529f\u500d", "\u52e4\u52e4\u6073\u6073", "raries"], [" ......", " ____", "......", "...\\", ",..", ",\\\"", " ~~", "____"], [" ____", "raries", " ~~", "\u52c7\u5f80\u76f4\u524d", " ......", " ##", " -->", "____"], ["raries", "\u52c7\u5f80\u76f4\u524d", " ____", " ~~", " **\u201e", "\u52a0\u62ff\u5927", " veggies", "...**"], ["\u52c7\u5f80\u76f4\u524d", "\u52a0\u62ff\u5927", "raries", "\u8eab\u4e34\u5176\u5883", "\u4e0d\u53ef\u601d\u8bae", " backstory", " veggies", " LGBTQ"], [" --", "\n\n", "\u52c7\u5f80\u76f4\u524d", "\u8eab\u4e34\u5176\u5883", "\u4e0d\u53ef\u601d\u8bae", "raries", " backstory", " folks"], [" --", " theater", " even", " neighborhood", "an", "\u52c7\u5f80\u76f4\u524d", " maneuver", " kids"], [",", "an", "n", " --", " just", " \u2013", " even", "<|endoftext|>"], [" --", "\u52c7\u5f80\u76f4\u524d", "an", "n", "...", "ic", "ed", "\u4e0d\u53ef\u601d\u8bae"], [" --", " ~~", "\u52c7\u5f80\u76f4\u524d", " **", "\u4e0d\u53ef\u601d\u8bae", "\n\n", "...**", "\u52a0\u62ff\u5927"], ["\n\n", " --", "<|endoftext|>", " ~~", "\u4e0d\u53ef\u601d\u8bae", " unpredict", "  \n\n", " swiftly"], ["\n\n", "<|endoftext|>", " \n\n", " --", "  \n\n", "   \n\n", "<|file_sep|>", "\n\n\n"], [" --", " **", " ``", "\n\n", " ;;^", " **>>", "\u52c7\u5f80\u76f4\u524d", "\u52a0\u62ff\u5927"], ["\n\n", " --", " ``", " **", " \n\n", " ~~", " {{--<", " __"], ["\n\n", " --", " ``", "<|endoftext|>", " \n\n", " **", " swiftly", " ..."], ["\n\n", " \n\n", "  \n\n", "   \n\n", " --", "    \n\n", "\n\n\n", "\r\n\r\n"], ["\n\n", " \n\n", " **", " --", " __", "  \n\n", " ____", " ``"], ["\n\n", " \n\n", " **", " --", " __", "  \n\n", " ____", "\n\n\n"], ["\n\n", " \n\n", " --", "  \n\n", " **", " ,", "<|endoftext|>", "\n\n\n"], ["\n\n", " \n\n", "  \n\n", " **", "\n\n\n", " --", " __", "   \n\n"], ["\n\n", " \n\n", "  \n\n", " **", "   \n\n", "\n\n\n", " __", " --"], ["\n\n", " \n\n", "  \n\n", " ...", " **", "<|endoftext|>", " --", " ,"], ["\n\n", " ,", " --", " \n\n", " ...", " -", " **", " over"], [" ,", " -", " --", " **", " over", " \u2013", " heavily", " \""], [" **", "  \n\n", " \n\n", "\n\n", " --", "<|endoftext|>", " fundamentally", " \u2026"], [" **", " --", "  \n\n", " *", " \n\n", "<|endoftext|>", " fundamentally", " aggressively"], ["\n\n", "  \n\n", " \n\n", " **", "<|endoftext|>", " \u2026", " *", " ..."], [" **", "\n\n", "  \n\n", " \n\n", " *", "<|endoftext|>", " --", " **\""], [" **", "\n\n", "  \n\n", " \n\n", " *", " rapidly", " --", "<|endoftext|>"], [" **", " *", "\n\n", " rapidly", "  \n\n", " --", " relentless", " fundamentally"], [" **", " *", "  \n\n", " rapidly", " relentless", " unsustainable", "\n\n", " bottleneck"], [" **", " unsustainable", " rapidly", " bottleneck", " relentless", " catastrophic", " *", " rapid"], [" bottleneck", " rapidly", " infrastructure", " unsustainable", " rapid", " collapsing", " critical", " fast"], [" **", " bottleneck", " unsustainable", " infrastructure", " critical", " rapidly", " destabil", " performance"], [" bottleneck", " unsustainable", " infrastructure", " critical", " breaking", " crashing", " collapsing", " rapidly"], [" bottleneck", " **", " critical", " infrastructure", " unsustainable", " collapsing", " breaking", " catastrophic"], [" **", " bottleneck", " critical", " unsustainable", " breaking", " collapsing", " catastrophic", " rapidly"], [" **", "  \n\n", " **\"", " \n\n", " bottleneck", "\n\n", " **\u201c", " unsustainable"], [" **", "  \n\n", " **\"", " \n\n", " **\u201c", " **(", "**", " **'"], [" **", " **\"", "**", " **\u201c", "-**", " **'", " **-", " **("], [" **", " **\"", "**", "-**", " **#", " **\u201c", " **'", "  \n"], [" **", " **\"", "**", " **#", " **\u201c", "-**", " **\u3010", " **-"], [" **", " **\"", "**", " **#", " **\u201c", " **'", " **\u3010", "-**"], [" **", "**", " **\"", " **#", " **\u201c", " **[", " **'", " **\u3010"], [" **", "**", " **\"", " **#", " **[", " **'", "-**", " **+"], [" **", "**", " **\"", " **#", "-**", " **+", " **[", " **\u00ab"], [" **", "**", " **#", " **\"", "-**", " **+", ",**", " **["], [" **", "**", " **\"", "-**", " **#", " **+", ",**", "]**"], [" **", "**", " **\"", " **#", "-**", " **+", ",**", " **'"], [" **", "**", " **\"", " **#", "-**", " **+", ",**", " **'"], [" **", "**", " **\"", "\n", " **'", " **+", " **#", "-**"], [" **", "**", "\n", " **\"", " **#", " **+", " **'", "\n\n"], [" **", "\n", "**", "\n\n", " **\"", " **#", ",**", " The"], ["\n", " **", "\n\n", "  \n", "**", " The", " **\"", " \n"]], "p": [[0.4884, 0.2036, 0.0849, 0.0454, 0.0259, 0.0178, 0.0139, 0.013], [0.5087, 0.0688, 0.0647, 0.0238, 0.0238, 0.0185, 0.0136, 0.0099], [0.3617, 0.2061, 0.046, 0.0279, 0.0246, 0.0217, 0.0159, 0.0132], [0.0857, 0.0458, 0.0458, 0.0315, 0.0231, 0.0203, 0.018, 0.014], [0.055, 0.055, 0.0516, 0.0456, 0.0428, 0.0428, 0.0333, 0.0333], [0.0426, 0.0332, 0.0332, 0.0293, 0.0275, 0.0243, 0.0167, 0.0157], [0.1261, 0.0675, 0.0634, 0.041, 0.034, 0.034, 0.0233, 0.0182], [0.1734, 0.077, 0.0679, 0.0467, 0.0467, 0.0283, 0.025, 0.025], [0.1035, 0.0627, 0.0589, 0.0489, 0.0381, 0.0358, 0.0316, 0.0278], [0.2111, 0.0534, 0.0471, 0.0367, 0.0324, 0.0324, 0.0209, 0.0144], [0.1505, 0.0972, 0.0589, 0.0489, 0.0405, 0.0315, 0.018, 0.018], [0.2136, 0.0738, 0.0328, 0.0272, 0.0211, 0.0165, 0.0165, 0.0113], [0.0403, 0.0295, 0.023, 0.0148, 0.0123, 0.0116, 0.0062, 0.0058], [0.1225, 0.02, 0.0188, 0.0156, 0.0101, 0.0083, 0.0074, 0.0065], [0.1558, 0.0475, 0.0271, 0.0154, 0.0106, 0.0094, 0.0083, 0.0057], [0.0407, 0.0205, 0.0075, 0.0071, 0.0066, 0.0066, 0.0062, 0.0059], [0.078, 0.0368, 0.0287, 0.0238, 0.0197, 0.0144, 0.0127, 0.0112], [0.0549, 0.0148, 0.0123, 0.0084, 0.0058, 0.0058, 0.0054, 0.0054], [0.0745, 0.0242, 0.0242, 0.0166, 0.0138, 0.0114, 0.0107, 0.0107], [0.573, 0.1361, 0.0184, 0.0119, 0.0053, 0.0039, 0.0025, 0.0025], [0.9272, 0.0593, 0.0046, 0.003, 0.0011, 0.0002, 0.0001, 0.0001], [0.0961, 0.0961, 0.0259, 0.0228, 0.0138, 0.0079, 0.0074, 0.0074], [0.8066, 0.1237, 0.0259, 0.0029, 0.0008, 0.0007, 0.0006, 0.0005], [0.5776, 0.2262, 0.0306, 0.0106, 0.005, 0.0041, 0.0021, 0.002], [0.9862, 0.0124, 0.001, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9077, 0.0399, 0.0274, 0.0084, 0.0018, 0.0016, 0.001, 0.0007], [0.993, 0.0052, 0.0005, 0.0004, 0.0001, 0.0001, 0.0001, 0.0001], [0.974, 0.0202, 0.0012, 0.0006, 0.0005, 0.0002, 0.0001, 0.0001], [0.9918, 0.0076, 0.0003, 0.0002, 0.0, 0.0, 0.0, 0.0], [0.9134, 0.075, 0.009, 0.0012, 0.0002, 0.0002, 0.0001, 0.0001], [0.9708, 0.0228, 0.0035, 0.0007, 0.0004, 0.0003, 0.0002, 0.0001], [0.3698, 0.0775, 0.0366, 0.0323, 0.0285, 0.0196, 0.0184, 0.0072], [0.1215, 0.0371, 0.0289, 0.0225, 0.0145, 0.012, 0.01, 0.01], [0.4501, 0.1138, 0.1004, 0.0474, 0.0369, 0.0154, 0.0145, 0.0099], [0.6886, 0.0303, 0.0184, 0.0105, 0.0098, 0.0081, 0.0076, 0.0076], [0.2975, 0.2044, 0.1804, 0.124, 0.0752, 0.0403, 0.0079, 0.007], [0.3072, 0.3072, 0.1863, 0.113, 0.0112, 0.0041, 0.0027, 0.0025], [0.5358, 0.1355, 0.0681, 0.0498, 0.0267, 0.0072, 0.0067, 0.0049], [0.733, 0.0208, 0.0105, 0.0087, 0.0076, 0.0068, 0.0063, 0.0046], [0.6046, 0.0134, 0.0125, 0.0118, 0.0098, 0.0092, 0.0081, 0.0071], [0.1021, 0.04, 0.0376, 0.0293, 0.0228, 0.0167, 0.0147, 0.013], [0.0619, 0.0375, 0.0258, 0.0242, 0.0201, 0.0156, 0.0156, 0.0138], [0.0874, 0.0498, 0.0322, 0.025, 0.0221, 0.0172, 0.0152, 0.0152], [0.1222, 0.0256, 0.0226, 0.0176, 0.0165, 0.0165, 0.0137, 0.0137], [0.1121, 0.06, 0.0266, 0.0235, 0.0183, 0.0142, 0.0134, 0.0126], [0.0992, 0.0682, 0.0221, 0.0172, 0.0162, 0.0162, 0.0134, 0.0134], [0.8392, 0.0473, 0.0154, 0.0144, 0.006, 0.0022, 0.0017, 0.0015], [0.9586, 0.0146, 0.0121, 0.0019, 0.0015, 0.0008, 0.0007, 0.0006], [0.9966, 0.0019, 0.0003, 0.0002, 0.0002, 0.0002, 0.0001, 0.0001], [0.9956, 0.0017, 0.0015, 0.0003, 0.0001, 0.0001, 0.0001, 0.0001], [0.9996, 0.0002, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9984, 0.0009, 0.0003, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9984, 0.0008, 0.0005, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9982, 0.0009, 0.0003, 0.0002, 0.0001, 0.0, 0.0, 0.0], [0.9988, 0.0008, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9983, 0.0015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9981, 0.0017, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.999, 0.0008, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9991, 0.0007, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.999, 0.0006, 0.0002, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9966, 0.0013, 0.0012, 0.0003, 0.0001, 0.0001, 0.0001, 0.0001], [0.994, 0.0032, 0.0013, 0.0003, 0.0003, 0.0001, 0.0001, 0.0001], [0.9041, 0.0841, 0.0083, 0.002, 0.0003, 0.0002, 0.0001, 0.0001]], "ranks": {"Kotlin": [155024, 73319, 69354, 13167, 18472, 27605, 42439, 40279, 38740, 67118, 78360, 35492, 26231, 55623, 116899, 50556, 101497, 49661, 28875, 113405, 148729, 77130, 132657, 180283, 176092, 104585, 107157, 151379, 90843, 119166, 137747, 155297, 160095, 100302, 125549, 76737, 80488, 87900, 90264, 112830, 119690, 104969, 87307, 75710, 84584, 108142, 67795, 69988, 26438, 18955, 12916, 7298, 2744, 2230, 1433, 251, 152, 146, 181, 139, 108, 77, 27]}}, {"pos": 470, "top": [[" \u2013", ".", "\u2013", " \u2013,", "\u200b\u200b", ".\u2013", "   \n", "\u2013and"], [" \u2013**", "**\u2013", " *\u2013", "\u2013and", "   \n", " \u2013,", "pedia", " \u2013"], [".", "\u3002", "\u2026..", "\u2013", ".\u2013", "\u2013and", "\u2026\u2026", " \u2013"], ["``", "raries", " ``(", " **\u201e", "\u52a0\u62ff\u5927", "\u0103\u021b", " milfs", "enzi"], ["ly", "raries", "!\u201c", ".\u201c", ".\",\"", " (\u201e", "\u0d30\u0d4d", "\u201e"], ["!\u201c", "raries", "ly", "\uff01", "\u0d30\u0d4d", ".\u201c", "\u0103\u021b", "itize"], ["\n\n", ".\u201c", "ly", "!\u201c", "\u4e2d", "raries", "\n\n\n", "\u201e"], ["!\u201c", "\u201e", "ly", "raries", " (\u201e", "   \n\n", "____", ".\u201c"], ["   \n\n", "\n\n\n", "\n\n", "!\u201c", "  \n\n\n", ".\u201c", "    \n\n", "\u201e"], ["raries", "\u6700\u65b0\u53d1\u5e03", "ly", "!--", ".\",\"", ",\\\"", "ighbor", "!\u201c"], ["ly", "raries", "\u6700\u65b0\u53d1\u5e03", "____", " ____", ".\",\"", ",\\\"", "\n\n\n"], ["raries", " ____", " **\u201e", "____", "ly", " freaking", "ighbor", " *\u201e"], [" ____", "raries", "____", "ly", " **\u201e", " freaking", " moms", "ighbor"], ["raries", " freaking", "ly", " moms", " **\u201e", " Savior", " veggies", "ighborhood"], [" --", " moms", "ly", "raries", " freaking", " Savior", " busted", " folks"], [" --", " folks", " moms", " kids", "ly", " incredibly", " sprawling", " centerpiece"], [" --", "--", "ly", " incredibly", " folks", "a", "...", " sprawling"], [" --", "   \n\n", "...", "  \n\n", "\n\n", " incredibly", " folks", "ly"], [" --", " incredibly", "   \n\n", "\n\n", "  \n\n", " folks", " hefty", " savvy"], ["\n\n", "  \n\n", " --", "   \n\n", " \n\n", " swiftly", " incredibly", "    \n\n"], ["\n\n", "  \n\n", " \n\n", "   \n\n", "<|endoftext|>", " --", "    \n\n", "\n\n\n"], [" --", " **\u201e", " ``", " **", "\n\n", " **\u2022", " ``(", "__$"], ["\n\n", " --", " ``", " \n\n", "\n\n\n", "  \n\n", " **", "   \n\n"], ["\n\n", " --", " \n\n", "  \n\n", "\n\n\n", " ``", "   \n\n", " swiftly"], ["\n\n", "  \n\n", " \n\n", "   \n\n", "    \n\n", "\r\n\r\n", "\t\n\n", "  \n\n\n"], ["\n\n", " \n\n", "  \n\n", "   \n\n", "\r\n\r\n", " **", "\t\n\n", "    \n\n"], ["\n\n", " \n\n", "  \n\n", "   \n\n", "\r\n\r\n", " **", "\n\n\n", "\t\n\n"], ["\n\n", " \n\n", "  \n\n", "   \n\n", "\r\n\r\n", " --", " **", "\n\n\n"], ["\n\n", "  \n\n", " \n\n", "   \n\n", " **", "\r\n\r\n", "\n\n\n", "    \n\n"], ["\n\n", "  \n\n", " \n\n", "   \n\n", " **", "  \n\n\n", "\n\n\n", " --"], ["\n\n", "  \n\n", " \n\n", "   \n\n", " --", " **", " heavily", " dramatically"], ["\n\n", " \n\n", "  \n\n", " --", " heavily", " **", " just", " dramatically"], ["  \n\n", " \u2013", " \n\n", " heavily", " --", " \u2014", "\n\n", " rapidly"], ["  \n\n", " \n\n", "<|endoftext|>", "\n\n", " \u2013", " \u2014", " heavily", "   \n\n"], ["  \n\n", " **", " --", " aggressively", " heavily", " dramatically", " relentlessly", " relentless"], ["  \n\n", "<|endoftext|>", " **", " \n\n", "\n\n", " \u2013", "   \n\n", " \u2014"], ["  \n\n", " **", " \n\n", "\n\n", " aggressively", " relentlessly", "<|endoftext|>", " relentless"], [" **", "  \n\n", " **\"", " *", " **\u201c", " \n\n", "<|endoftext|>", " aggressively"], [" **", "  \n\n", " **\"", " *", "<|endoftext|>", " **\u201c", " --", " relentless"], [" **", "  \n\n", " **\"", " **\u201c", " *", " relentless", "<|endoftext|>", " dramatically"], [" **", "  \n\n", " **\"", "<|endoftext|>", " dramatically", " *", " **\u201c", " relentless"], [" **", " rapidly", " dramatically", " relentless", " aggressively", " swiftly", " relentlessly", "  \n\n"], [" **", " **\"", " relentless", " rapidly", " aggressively", "  \n\n", " dramatically", " **\u201c"], [" **", " **\"", " relentless", "  \n\n", " rapidly", " dramatically", " swiftly", " aggressively"], [" **", " **\"", " relentless", " rapidly", " immediate", " dramatically", " aggressively", " rapid"], [" **", " **\"", "  \n\n", " **\u201c", " rapidly", " immediate", " outright", " swiftly"], [" **", " **\"", " **\u201c", "  \n\n", " **'", " **#", "-**", " **\u2013"], [" **", " **\"", " **\u201c", "-**", " **'", " **(", " **#", " **\u2013"], [" **", " **\"", "-**", " **'", " **\u201c", "**", " **-", " **#"], [" **", " **\"", "-**", " **'", " **#", "**", " **\u201c", " **+"], [" **", " **\"", " **\u201c", " **'", " **#", "-**", "**", " **+"], [" **", " **\"", " **'", " **\u201c", " **#", "**", " **[", "-**"], [" **", " **\"", "**", " **\u201c", " **#", " **'", " **[", "-**"], [" **", " **\"", "**", " **#", " **[", " **\u201c", "-**", " **'"], [" **", " **\"", "**", " **#", " **[", "-**", " **\u201c", " **'"], [" **", "**", " **\"", "-**", " **#", " **[", " **'", " **\u201c"], [" **", "**", " **\"", "-**", " **#", " **[", " **+", " **."], [" **", "**", " **\"", " **#", "-**", " **[", " **+", " **\u201c"], [" **", "**", " **\"", "-**", " **#", " **\u201c", " **[", " **'"], [" **", "**", " **\"", " **\u201c", " **'", " **#", " **[", "-**"], [" **", "**", " **\"", " **[", " **'", " **\u201c", " **.", "-**"], [" **", "**", " **\"", " **.", " The", " **#", " **\u201c", " **["], ["**", " **", "The", " The", "**(", " **\"", "*", "**,"]], "p": [[0.7312, 0.2374, 0.0076, 0.0049, 0.0034, 0.0015, 0.0014, 0.0013], [0.0983, 0.0635, 0.034, 0.0171, 0.0091, 0.0071, 0.0046, 0.0046], [0.1879, 0.1658, 0.1006, 0.0945, 0.0573, 0.0446, 0.037, 0.037], [0.0334, 0.0295, 0.0168, 0.009, 0.0084, 0.0079, 0.0062, 0.0048], [0.5153, 0.0615, 0.045, 0.0397, 0.0156, 0.0156, 0.0107, 0.01], [0.1077, 0.0478, 0.0372, 0.035, 0.0329, 0.029, 0.0165, 0.0107], [0.0882, 0.0687, 0.0687, 0.0503, 0.0472, 0.0472, 0.0391, 0.0368], [0.1093, 0.0964, 0.0851, 0.0516, 0.0333, 0.0276, 0.0244, 0.019], [0.3228, 0.1048, 0.0925, 0.0677, 0.0597, 0.0465, 0.0437, 0.0182], [0.0941, 0.0417, 0.0287, 0.0287, 0.0253, 0.0144, 0.012, 0.0077], [0.2599, 0.0545, 0.0512, 0.0452, 0.0352, 0.0242, 0.0188, 0.0166], [0.0981, 0.0718, 0.0339, 0.0193, 0.016, 0.0067, 0.0055, 0.0055], [0.0646, 0.0473, 0.0392, 0.0368, 0.021, 0.012, 0.0093, 0.0073], [0.1036, 0.0231, 0.018, 0.0159, 0.0096, 0.0075, 0.0055, 0.004], [0.2013, 0.0309, 0.029, 0.0212, 0.0129, 0.0094, 0.0094, 0.0088], [0.3147, 0.0483, 0.04, 0.0243, 0.0201, 0.0178, 0.0115, 0.0095], [0.381, 0.0427, 0.0294, 0.0259, 0.0202, 0.0167, 0.0167, 0.0122], [0.1441, 0.0639, 0.0564, 0.0468, 0.0302, 0.0221, 0.0195, 0.0195], [0.0856, 0.0357, 0.0261, 0.0216, 0.0203, 0.0158, 0.0102, 0.0096], [0.7213, 0.0917, 0.0809, 0.0232, 0.0117, 0.0023, 0.002, 0.0019], [0.9052, 0.0579, 0.0213, 0.0061, 0.0042, 0.0013, 0.0005, 0.0003], [0.0312, 0.0293, 0.0214, 0.0178, 0.0061, 0.0054, 0.0051, 0.004], [0.8822, 0.0388, 0.0118, 0.0034, 0.003, 0.0022, 0.0016, 0.0015], [0.9464, 0.0173, 0.0068, 0.0047, 0.0032, 0.0015, 0.0014, 0.0006], [0.8878, 0.0643, 0.039, 0.006, 0.0007, 0.0006, 0.0003, 0.0002], [0.6055, 0.0989, 0.0929, 0.0283, 0.0076, 0.0056, 0.0056, 0.0049], [0.9537, 0.0145, 0.0083, 0.0024, 0.0011, 0.0009, 0.0006, 0.0005], [0.9925, 0.0046, 0.0022, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.9706, 0.0138, 0.0122, 0.0009, 0.0006, 0.0003, 0.0003, 0.0001], [0.5142, 0.3534, 0.1147, 0.0083, 0.0027, 0.0011, 0.0008, 0.0004], [0.509, 0.2405, 0.2122, 0.0073, 0.0044, 0.002, 0.001, 0.0006], [0.3489, 0.1455, 0.1366, 0.0731, 0.0105, 0.0105, 0.0082, 0.0056], [0.092, 0.0408, 0.036, 0.0264, 0.0248, 0.0219, 0.0205, 0.015], [0.553, 0.1488, 0.0454, 0.0332, 0.0147, 0.0115, 0.0095, 0.0095], [0.2387, 0.0995, 0.0285, 0.0268, 0.0236, 0.0209, 0.0184, 0.0153], [0.5326, 0.1526, 0.0721, 0.0561, 0.0411, 0.0133, 0.0092, 0.0086], [0.4461, 0.2388, 0.0252, 0.0162, 0.0135, 0.0119, 0.0105, 0.0099], [0.8115, 0.0855, 0.0123, 0.0109, 0.0058, 0.004, 0.0035, 0.0035], [0.8471, 0.0449, 0.01, 0.01, 0.0054, 0.0054, 0.0042, 0.0033], [0.9234, 0.0159, 0.0075, 0.0046, 0.004, 0.0018, 0.0018, 0.0018], [0.7363, 0.0729, 0.0268, 0.0209, 0.0072, 0.005, 0.005, 0.0047], [0.4132, 0.0264, 0.0206, 0.016, 0.016, 0.0117, 0.011, 0.0091], [0.8175, 0.0103, 0.0059, 0.0059, 0.0052, 0.004, 0.0038, 0.0033], [0.8371, 0.0082, 0.0072, 0.0072, 0.006, 0.0039, 0.0028, 0.0027], [0.7726, 0.0219, 0.0076, 0.0063, 0.0036, 0.0034, 0.0034, 0.0032], [0.8869, 0.0252, 0.0068, 0.0044, 0.0025, 0.0023, 0.0015, 0.0014], [0.9853, 0.0109, 0.0019, 0.0003, 0.0001, 0.0001, 0.0001, 0.0001], [0.9956, 0.0032, 0.0006, 0.0001, 0.0001, 0.0001, 0.0001, 0.0], [0.9997, 0.0002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9998, 0.0002, 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.9998, 0.0002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9996, 0.0003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0, 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.9999, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.998, 0.0019, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9902, 0.0097, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Kotlin": [172843, 33416, 62071, 8478, 9062, 12984, 28743, 53183, 53046, 57296, 77961, 28951, 14914, 22791, 98453, 47611, 85525, 38405, 59198, 150259, 162276, 82083, 115331, 162700, 173803, 144004, 127006, 149158, 97814, 131800, 159519, 190538, 194935, 158769, 182347, 159760, 169241, 165325, 158969, 150697, 149732, 135260, 112948, 97955, 103424, 102577, 90847, 102540, 35552, 20975, 9891, 7523, 3197, 3205, 2317, 205, 136, 126, 141, 106, 106, 64, 58]}}, {"pos": 471, "top": [[".", "**.", "**", " \u2013", "\u00a0\u00a0", "-**", "**\u2013", "\u00a0"], [" **", "-**", "'**", "(**", "\uff1f**", "\u2019**", "**", "**\u2013"], ["\u2026**", "\uff1f**", "**", "(**", "-**", "'**", "\u2019**", "**\u2013"], ["\uff1f**", " **\u300c", "\u300d**", "'**", "\u2019**", " **", "\uff1a**", " **\u00ab"], [" **", "-**", "**", "...**", "\uff1f**", "'**", "\u2019**", ">**"], ["-**", " **", "\uff1f**", "(**", "**", "\u2019**", "\uff1a**", "\uff01**"], ["**", " **", "-**", "\uff1f**", "...**", "'**", "\u2019**", "\uff09**"], ["**", "...**", " **", "-**", "\uff1f**", "'**", " **\u300c", "(**"], ["...**", "**", " **", "\uff1f**", "'**", " **\u300c", "-**", "(**"], ["...**", " **", "-**", "'**", " **\u300c", " **\u00ab", "**", " **'"], ["...**", " **", "**", " **\u300c", "-**", "'**", " **\u00ab", " **#"], [" **", "...**", " **\u300c", " **\u00ab", "'**", "-**", " **'", "**"], [" **", "-**", " **\u00ab", " **\u300c", "'**", "...**", "**", "\uff1f**"], ["-**", " **", "'**", "**", " **\u300c", "...**", " **\u00ab", "\uff1f**"], [" **", "'**", "-**", "**", "...**", "\uff1f**", " **'", ">**"], [" **", "-**", "'**", "**", " **'", "...**", ">**", "\uff1f**"], ["**", " **", "...**", "-**", "'**", ">**", "!**", "(**"], ["**", "-**", "...**", " **", "'**", ">**", "(**", "!**"], ["**", "-**", "...**", " **", "'**", " **'", "!**", "\u2019**"], ["**", "...**", "-**", "'**", " **", "!**", "\u2019**", " **'"], ["**", "...**", "-**", " **", "'**", "!**", ">**", "\uff01**"], [" **", "-**", "**", "'**", "...**", " **'", "\uff1f**", " !**"], [" **", "**", "...**", " **'", "'**", "-**", " !**", " ?**"], [" **", "...**", "**", " **'", " !**", "'**", " ?**", "-**"], ["**", "...**", " **", " **'", "'**", "-**", "  \n\n", "\u2026**"], [" **", "...**", "**", " **'", "'**", "-**", " **#", ">**"], [" **", "**", "...**", " **'", "'**", "-**", " !**", " **#"], [" **", " **'", "**", "...**", " !**", " ?**", "'**", " **#"], [" **", "...**", "**", " **'", "-**", "'**", " **#", " ?**"], [" **", "**", "...**", "  \n\n", "\u2026**", " **'", " \n\n", "-**"], [" **", "**", "...**", "  \n\n", "\n\n", " \n\n", " **'", " ?**"], [" **", "\n\n", "**", " \n\n", "  \n\n", "...**", " **'", " -**"], [" **", "**", " **'", " !**", " **\"", " -**", " truly", " .**"], [" **", " **'", "**", " !**", "...**", " -**", "\u2026**", "!**"], [" **", " **'", "!**", " !**", "**", " -**", " **\"", " **\u201c"], [" **", " !**", "**", "!**", "  \n\n", "?**", " **'", "\u2026**"], [" **", " !**", "!**", "?**", " -**", "**", " ?**", " **\""], [" **", " !**", "?**", " ?**", " -**", "!**", "**", " **\u201c"], [" **", " !**", " -**", " catastrophic", " bottleneck", " **\u201c", " ?**", "!**"], [" **", "!**", " !**", " bottleneck", " catastrophic", " unsustainable", " failure", "?**"], [" bottleneck", "!**", " unsustainable", " hardware", " catastrophic", " failure", " !**", " infrastructure"], [" bottleneck", " hardware", " infrastructure", " meltdown", " catastrophic", " performance", " collapsing", " unsustainable"], [" bottleneck", " **", " infrastructure", " hardware", " meltdown", " catastrophic", " destabil", " performance"], [" bottleneck", " infrastructure", " hardware", " crash", " catastrophic", " meltdown", " performance", " crashes"], [" **", " bottleneck", " infrastructure", " catastrophic", " fragmentation", " crisis", " failure", " collapse"], [" bottleneck", " **", " catastrophic", " crisis", " fragmentation", " Crisis", " chaos", " collapse"], ["!**", " **", " bottleneck", "\uff01**", " Crisis", "**", " crisis", " Chaos"], ["!**", " **", "\uff01**", ";**", "**", ".**", " **'", " !**"], ["!**", "\uff01**", ".**", " **", ";**", " **'", "**", " !**"], [".**", "!**", ":**", ";**", "\uff01**", "\u3002**", ",**", " Crash"], [".**", "!**", ";**", "\u3002**", "\uff01**", ">**", ":**", " .**"], [".**", "!**", ";**", "\u3002**", "\uff01**", ":**", "]**", ">**"], [".**", "!**", ";**", "\u3002**", " Performance", "\u2026**", " CPU", "]**"], [".**", " Performance", " CPU", ";**", " Runtime", " latency", "\u3002**", " GPU"], [" CPU", " Memory", " GPU", ".**", " Runtime", " Performance", "\u3002**", " latency"], [" Android", " CPU", " Memory", " GPU", " garbage", " Runtime", ".**", "_android"], [" Android", " GC", " garbage", "_android", " GPU", " Gar", "GC", "Android"], [" Android", " GC", " GPU", " garbage", "Android", "GC", "_android", " JNI"], [" Android", " GC", " Frame", " GPU", " garbage", "GC", " Memory", " JNI"], [" Android", " GC", " garbage", " GPU", "Android", " Memory", " Frame", "GC"], [" GC", " Android", "GC", " garbage", " GPU", "Android", " Gar", " Memory"], [" GC", "GC", " Android", " The", " Frame", " garbage", " GPU", "The"], ["The", " The", "GC", "Android", "Gar", " GC", "Frame", " Android"]], "p": [[0.2969, 0.2041, 0.1801, 0.0428, 0.0215, 0.0202, 0.0202, 0.019], [0.2119, 0.1457, 0.1286, 0.1134, 0.0473, 0.0473, 0.0325, 0.0253], [0.3373, 0.1805, 0.1241, 0.0517, 0.0517, 0.0517, 0.0456, 0.019], [0.438, 0.0977, 0.0593, 0.0523, 0.0383, 0.0338, 0.028, 0.0247], [0.2185, 0.1702, 0.1702, 0.1326, 0.0804, 0.071, 0.0296, 0.0261], [0.4954, 0.1822, 0.0861, 0.0592, 0.0522, 0.0247, 0.0103, 0.0103], [0.5328, 0.1049, 0.0721, 0.0636, 0.0437, 0.0386, 0.0341, 0.0161], [0.2982, 0.1243, 0.1243, 0.1243, 0.0665, 0.0518, 0.0356, 0.0245], [0.4755, 0.2246, 0.0644, 0.0268, 0.0268, 0.0209, 0.0209, 0.0184], [0.2774, 0.1906, 0.1156, 0.0701, 0.0619, 0.0619, 0.0425, 0.0292], [0.4741, 0.2876, 0.1058, 0.0236, 0.0236, 0.0208, 0.0098, 0.0077], [0.7319, 0.0681, 0.0413, 0.0322, 0.025, 0.0221, 0.0172, 0.0118], [0.4287, 0.0957, 0.0844, 0.0844, 0.0657, 0.0512, 0.0452, 0.0242], [0.2564, 0.2263, 0.1373, 0.0505, 0.0446, 0.0446, 0.0393, 0.0306], [0.307, 0.1862, 0.1643, 0.1129, 0.0685, 0.0237, 0.0222, 0.0093], [0.3663, 0.173, 0.1527, 0.1189, 0.0301, 0.0249, 0.0207, 0.0104], [0.5337, 0.2225, 0.0722, 0.0637, 0.0496, 0.0126, 0.0076, 0.0076], [0.74, 0.1001, 0.0884, 0.0287, 0.0154, 0.0044, 0.0044, 0.0044], [0.5499, 0.1785, 0.1227, 0.0451, 0.0398, 0.0147, 0.0069, 0.0061], [0.7816, 0.0933, 0.05, 0.0236, 0.0184, 0.006, 0.0046, 0.0041], [0.6674, 0.2167, 0.0332, 0.0332, 0.0139, 0.0065, 0.0045, 0.0027], [0.3198, 0.1712, 0.1177, 0.0916, 0.0809, 0.049, 0.0263, 0.0204], [0.5486, 0.1781, 0.0841, 0.0397, 0.0397, 0.0351, 0.0146, 0.01], [0.7734, 0.0635, 0.0635, 0.03, 0.0142, 0.011, 0.0086, 0.0055], [0.3284, 0.2898, 0.2898, 0.0238, 0.0112, 0.0112, 0.006, 0.006], [0.8025, 0.0746, 0.04, 0.0353, 0.0114, 0.0101, 0.0054, 0.0037], [0.9003, 0.0272, 0.024, 0.0212, 0.0061, 0.0047, 0.0029, 0.0025], [0.9792, 0.0109, 0.0031, 0.0013, 0.0007, 0.0006, 0.0005, 0.0004], [0.8819, 0.0498, 0.0498, 0.0076, 0.0022, 0.0013, 0.0009, 0.0009], [0.8965, 0.0506, 0.0446, 0.0022, 0.0015, 0.001, 0.0006, 0.0005], [0.9657, 0.0138, 0.0045, 0.0039, 0.0027, 0.0027, 0.0019, 0.0004], [0.9633, 0.0094, 0.0078, 0.0033, 0.0031, 0.002, 0.0014, 0.0003], [0.9598, 0.0029, 0.0029, 0.0011, 0.001, 0.0007, 0.0006, 0.0006], [0.9105, 0.0108, 0.0079, 0.0058, 0.0054, 0.0048, 0.0037, 0.0037], [0.8712, 0.0132, 0.0097, 0.0085, 0.008, 0.0059, 0.0055, 0.004], [0.6672, 0.0376, 0.0259, 0.0228, 0.0167, 0.0115, 0.0108, 0.0089], [0.5884, 0.04, 0.0167, 0.0147, 0.0147, 0.0138, 0.0108, 0.0101], [0.4771, 0.0368, 0.0185, 0.0163, 0.0144, 0.0135, 0.0135, 0.0112], [0.3301, 0.0271, 0.0106, 0.0106, 0.0106, 0.01, 0.0083, 0.0073], [0.1699, 0.0245, 0.023, 0.0168, 0.0123, 0.0109, 0.0109, 0.0096], [0.0459, 0.0297, 0.0246, 0.0231, 0.0231, 0.0169, 0.0116, 0.0102], [0.079, 0.0291, 0.0257, 0.0213, 0.0176, 0.0121, 0.0114, 0.0107], [0.0498, 0.0267, 0.025, 0.0195, 0.0152, 0.0143, 0.0126, 0.0118], [0.0819, 0.0235, 0.0207, 0.0161, 0.0142, 0.0134, 0.0126, 0.0111], [0.1, 0.057, 0.0185, 0.0163, 0.0153, 0.0127, 0.0119, 0.0112], [0.0299, 0.0193, 0.0182, 0.0171, 0.0117, 0.0117, 0.011, 0.011], [0.2016, 0.0895, 0.0329, 0.02, 0.0137, 0.0107, 0.0089, 0.0078], [0.3665, 0.0871, 0.0871, 0.0266, 0.022, 0.0182, 0.0104, 0.0104], [0.2836, 0.1043, 0.0633, 0.0299, 0.016, 0.016, 0.015, 0.0103], [0.2176, 0.0664, 0.0429, 0.026, 0.0168, 0.0079, 0.0074, 0.0074], [0.3991, 0.2421, 0.1143, 0.0786, 0.054, 0.0175, 0.0175, 0.0106], [0.5027, 0.2375, 0.0874, 0.053, 0.0221, 0.0104, 0.0067, 0.0059], [0.2833, 0.1516, 0.1338, 0.0632, 0.0524, 0.0248, 0.0218, 0.0181], [0.1229, 0.0745, 0.07, 0.0581, 0.0481, 0.0375, 0.0352, 0.0352], [0.1768, 0.1073, 0.0835, 0.0507, 0.042, 0.0255, 0.0198, 0.0198], [0.2801, 0.103, 0.0802, 0.0665, 0.0487, 0.0295, 0.0295, 0.0168], [0.4608, 0.1921, 0.132, 0.0295, 0.0295, 0.0139, 0.0131, 0.0102], [0.4339, 0.1809, 0.1409, 0.0404, 0.0191, 0.0168, 0.0158, 0.0085], [0.2788, 0.2788, 0.1026, 0.0799, 0.0259, 0.0229, 0.0178, 0.0167], [0.6502, 0.1644, 0.0471, 0.0196, 0.0153, 0.0119, 0.0105, 0.0105], [0.5316, 0.3224, 0.034, 0.0234, 0.0171, 0.0055, 0.0049, 0.0041], [0.5356, 0.1055, 0.0931, 0.0821, 0.025, 0.0172, 0.0098, 0.0081], [0.8887, 0.073, 0.0209, 0.0034, 0.0022, 0.0015, 0.0009, 0.0008]], "ranks": {"Kotlin": [164774, 133842, 82765, 27554, 28569, 49068, 77141, 113373, 77324, 68691, 88391, 48879, 27564, 48503, 139926, 83434, 44951, 27412, 22136, 75633, 163299, 98756, 137637, 186788, 184672, 111372, 116511, 164927, 129257, 139347, 147160, 147998, 183919, 171894, 184935, 113814, 88965, 80860, 88003, 93411, 96643, 86242, 57264, 47330, 47359, 62229, 69025, 55158, 17105, 9635, 4156, 1894, 354, 208, 130, 29, 13, 14, 34, 17, 20, 17, 33]}}, {"pos": 472, "top": [[".", ",", " \u2013", "\u2013", "\u00a0", "<|endoftext|>", ";", " "], [" \u2013", "\u2013", ",", ".", "\u2013and", ";", " ", ".["], ["\u2013", " \u2013", ".", ",", "\u2026", "\u2013and", ";", "["], ["TRGL", " milfs", "-------------</", "----------</", " ;;^", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\ufffd\ufffd", " Shemale"], ["@$", "(@", " (@", "\u2018", "\u00a0\u00a0", "{@", "=@", " \u2018"], [" \u200b\u200b", "kits", "   \n", "\uff01", "wine", "\u00a0", " Celebrity", "<|quad_end|>"], ["\u2018", "   \n", " \n", "\uff01", "  \n", " \u2018", "       \n", "         \n"], ["   \n", "       \n", "     \n", "  \n", "        \n", " \n", "      \n", "         \n"], [" \n\n", "   \n", "   \n\n", "  \n\n", "       \n", "  \n", "    \n\n", " \n"], ["\u00a0", "\u2013and", "\uaecf", "DMETHOD", "\u503e\u529b", "<|object_ref_start|>", "  \n  \n", "\u82e5\u975e"], ["\u00a0", "...", "...\"", " \n", "  \n", "...(", "   \n", "...\\"], ["DMETHOD", "egger", " \\\"", "idere", "ergebn", ".kode", "asley", " Philly"], [" \\\"", "idere", " vibe", " Vegas", " savory", "erness", " freaking", "ergebn"], [" vibe", " gorgeous", " vibes", " savvy", " \\\"", " Philly", " freaking", "-esque"], [" --", " \\\"", " gorgeous", " '", " dramatic", " truly", " savvy", " folks"], [" incredibly", " folks", " savvy", " busted", " kids", " gorgeous", " sprawling", " --"], [" incredibly", " savvy", " folks", " busted", "-esque", " gorgeous", " truly", " myriad"], [" savvy", " incredibly", " gorgeous", "...", " busted", "-esque", " \\\"", " crunch"], [" incredibly", " gorgeous", " savvy", " busted", "-esque", " nasty", " freaking", " crunch"], [" incredibly", " truly", " busted", " utterly", " myriad", " relentless", " savvy", " smack"], ["<|endoftext|>", " truly", " incredibly", " utterly", " myriad", " busted", " dramatic", " --"], [" busted", " incredibly", " gorgeous", " skyrocket", " freaking", " horrific", " meltdown", " ;;^"], [" ``", " busted", " incredibly", " ''", " --", " truly", " meltdown", " horrific"], [" ``", " --", " truly", " incredibly", " ''", " myriad", " utterly", " busted"], ["\n\n", " \n\n", " --", "\r\n\r\n", " \r\n\r\n", " &#", " truly", " utterly"], [" --", "\n\n", " incredibly", " ``", " busted", " havoc", " meltdown", " ___"], ["\n\n", " --", " ``", " busted", " meltdown", " incredibly", " skyrocket", " crunch"], ["\n\n", " --", " \n\n", " truly", " '", " incredibly", " ultimately", " battling"], ["\n\n", " \n\n", " --", " incredibly", " truly", " myriad", " tech", " battle"], [" \n\n", "\n\n", " ...", " incredibly", " --", " infrastructure", " tech", " truly"], ["\n\n", " ...", " \n\n", " incredibly", " massive", " complex", " power", " truly"], [" ...", "\n\n", " complex", " power", " \n\n", " '", " massive", " incredibly"], [" power", " complex", " massive", " critical", " \\\"", " '", " incredibly", " core"], [" infrastructure", " complex", " fundamentally", " tech", " chaotic", " technology", " relentless", " chaos"], [" infrastructure", " complex", " relentless", " dual", " systemic", " fundamentally", " complexity", " hardware"], [" hardware", " complex", " dual", " complexity", " performance", " infrastructure", " dynamic", " engine"], [" performance", " hardware", " bottleneck", " engine", " complexity", " dynamic", " complex", " speed"], [" hardware", " performance", " complexity", " bottleneck", " engine", " dynamic", " complex", " dynamics"], [" bottleneck", " performance", " engine", " complex", " hardware", " complexity", " infrastructure", " mechanics"], [" bottleneck", " performance", " complex", " speed", " hardware", " complexity", " synchronization", " engine"], [" bottleneck", " performance", " speed", " engine", " framerate", " CPU", " workload", " workflow"], [" engine", " bottleneck", " performance", " framerate", " CPU", " synchronization", " speed", " throughput"], [" bottleneck", " engine", " performance", " synchronization", " throughput", " framerate", " CPU", " speed"], [" bottleneck", " engine", " performance", " synchronization", " framerate", " throughput", " processing", " workflow"], [" bottleneck", " synchronization", " framerate", " engine", " performance", " throughput", " speed", " workflow"], [" bottleneck", " synchronization", " framerate", " Sync", " engine", " synchron", " sync", " performance"], [" bottleneck", " synchronization", " framerate", " Sync", " workflow", " engine", " latency", " Processing"], [" bottleneck", " synchronization", " framerate", " Sync", " Interface", " Dual", " Processing", " Performance"], [" framerate", " bottleneck", " Sync", " Interface", " synchronization", " Processing", " Dual", " Engine"], [" bottleneck", " framerate", " Interface", " synchronization", " Sync", " Processing", " Engine", " Runtime"], [" Sync", " framerate", " synchronization", " Interface", " bottleneck", " Runtime", " Timeline", " Ambient"], [" framerate", " CPU", " Runtime", " Interface", " bottleneck", " synchronization", " Performance", " runtime"], [" CPU", " bottleneck", " framerate", " Runtime", " Performance", " latency", " GPU", " synchronization"], [" CPU", " framerate", " bottleneck", " Runtime", " GPU", " synchronization", " Timeline", " Pipeline"], [" Thread", " Threads", " CPU", " Runtime", " thread", " GPU", " framerate", "-thread"], [" CPU", " Android", " framerate", " Renderer", " GPU", " Runtime", " Rendering", " Thread"], [" GC", " Android", " garbage", " Rendering", " Renderer", " GPU", " renderer", " UI"], [" Renderer", " Rendering", " UI", " GPU", " GC", " Android", " renderer", " Graphics"], [" Frame", " Renderer", " Rendering", " GC", " GPU", " Frames", " UI", " Graphics"], [" Rendering", " Frame", " GC", " Android", " Renderer", " GPU", " UI", " Main"], [" GC", " GPU", " Android", " UI", " Rendering", "GC", " Main", " garbage"], [" GC", " Frame", " Main", " GPU", " Android", " UI", " Rendering", " Gar"], [" Main", " Frame", " GC", " Android", " UI", " Rendering", " Gar", " Async"]], "p": [[0.5978, 0.1941, 0.1511, 0.0263, 0.0124, 0.0066, 0.0052, 0.0017], [0.7061, 0.2292, 0.0227, 0.0074, 0.0061, 0.0025, 0.0009, 0.0008], [0.5497, 0.2292, 0.1083, 0.0955, 0.0033, 0.0027, 0.0021, 0.0021], [0.0026, 0.0024, 0.0024, 0.0023, 0.002, 0.0017, 0.0015, 0.0015], [0.0146, 0.0065, 0.0057, 0.0057, 0.0047, 0.0039, 0.0037, 0.0035], [0.0026, 0.0025, 0.0019, 0.0014, 0.0012, 0.0011, 0.0011, 0.001], [0.0802, 0.0551, 0.0429, 0.0277, 0.0216, 0.0148, 0.0139, 0.0084], [0.1889, 0.024, 0.0094, 0.0078, 0.005, 0.005, 0.0044, 0.0039], [0.1771, 0.1563, 0.1143, 0.0612, 0.0349, 0.0328, 0.0255, 0.0225], [0.0101, 0.0019, 0.0018, 0.0017, 0.0012, 0.0012, 0.0009, 0.0009], [0.234, 0.2198, 0.0433, 0.0298, 0.0109, 0.0103, 0.0097, 0.0062], [0.0037, 0.0029, 0.0018, 0.0015, 0.0012, 0.0011, 0.0011, 0.001], [0.0027, 0.0023, 0.0019, 0.0016, 0.0014, 0.0014, 0.0013, 0.0013], [0.0133, 0.008, 0.0049, 0.0043, 0.004, 0.0036, 0.0028, 0.0027], [0.0494, 0.0282, 0.0171, 0.0151, 0.0151, 0.0125, 0.0117, 0.0097], [0.0921, 0.0409, 0.0361, 0.0193, 0.017, 0.0117, 0.011, 0.0103], [0.062, 0.0426, 0.0178, 0.0138, 0.0122, 0.0115, 0.0108, 0.0101], [0.0566, 0.0267, 0.0236, 0.0184, 0.0152, 0.0143, 0.0126, 0.0098], [0.0489, 0.0296, 0.0231, 0.0169, 0.0124, 0.0116, 0.0102, 0.0085], [0.1144, 0.0612, 0.0165, 0.0155, 0.0113, 0.0094, 0.0088, 0.0078], [0.0667, 0.0246, 0.0204, 0.0123, 0.0096, 0.0075, 0.0045, 0.0043], [0.0071, 0.0059, 0.0049, 0.0036, 0.0032, 0.0032, 0.0025, 0.0025], [0.0384, 0.0081, 0.0076, 0.0052, 0.0052, 0.0046, 0.003, 0.003], [0.0485, 0.026, 0.0131, 0.0079, 0.007, 0.0048, 0.004, 0.0037], [0.5734, 0.0879, 0.0222, 0.0153, 0.005, 0.0044, 0.0039, 0.0034], [0.0225, 0.0175, 0.0155, 0.0137, 0.0137, 0.01, 0.0094, 0.0094], [0.113, 0.0209, 0.0163, 0.0072, 0.0068, 0.006, 0.0044, 0.0044], [0.2252, 0.0443, 0.0185, 0.0105, 0.0093, 0.006, 0.0053, 0.0047], [0.2587, 0.0146, 0.0083, 0.0065, 0.0054, 0.0039, 0.0035, 0.0035], [0.1238, 0.0663, 0.0276, 0.0084, 0.0074, 0.0066, 0.0062, 0.0048], [0.2372, 0.1735, 0.0563, 0.0056, 0.0052, 0.0052, 0.0049, 0.0034], [0.0629, 0.0246, 0.0132, 0.0124, 0.0103, 0.0062, 0.0059, 0.0046], [0.0177, 0.0146, 0.0095, 0.0089, 0.0074, 0.0065, 0.0061, 0.0051], [0.0209, 0.0209, 0.0173, 0.0127, 0.0112, 0.0105, 0.0105, 0.0105], [0.0225, 0.0225, 0.0175, 0.012, 0.0113, 0.0106, 0.0078, 0.0078], [0.0347, 0.0254, 0.0164, 0.0145, 0.0145, 0.0128, 0.0106, 0.0106], [0.0554, 0.046, 0.0246, 0.018, 0.018, 0.0149, 0.0149, 0.014], [0.0277, 0.023, 0.0203, 0.0203, 0.0179, 0.0148, 0.0123, 0.0096], [0.0464, 0.0319, 0.0193, 0.0182, 0.0171, 0.0133, 0.0125, 0.0091], [0.077, 0.0467, 0.0152, 0.0142, 0.0134, 0.0134, 0.0126, 0.0126], [0.1151, 0.0896, 0.0398, 0.031, 0.0166, 0.0146, 0.0129, 0.0121], [0.1004, 0.1004, 0.069, 0.027, 0.0174, 0.0174, 0.0174, 0.0164], [0.1048, 0.0561, 0.032, 0.032, 0.0249, 0.0249, 0.0142, 0.0125], [0.1254, 0.0382, 0.0298, 0.0247, 0.0247, 0.015, 0.0132, 0.0124], [0.1103, 0.0337, 0.0297, 0.0246, 0.0159, 0.0159, 0.0124, 0.0116], [0.0749, 0.0377, 0.0215, 0.0147, 0.0139, 0.0101, 0.0101, 0.0084], [0.0849, 0.0621, 0.0333, 0.0139, 0.0101, 0.0074, 0.007, 0.0066], [0.096, 0.0312, 0.0275, 0.0189, 0.0138, 0.013, 0.0108, 0.0084], [0.0547, 0.0547, 0.0376, 0.0312, 0.0312, 0.0138, 0.013, 0.0122], [0.0572, 0.0572, 0.0446, 0.0393, 0.037, 0.0136, 0.0099, 0.0088], [0.0484, 0.0401, 0.0312, 0.0276, 0.0167, 0.013, 0.0095, 0.0074], [0.1365, 0.1365, 0.0731, 0.0569, 0.0367, 0.0345, 0.0286, 0.0197], [0.1795, 0.1398, 0.0903, 0.0703, 0.0454, 0.0354, 0.0312, 0.013], [0.1558, 0.114, 0.0945, 0.0538, 0.0446, 0.0145, 0.0145, 0.0136], [0.2041, 0.1403, 0.1238, 0.0333, 0.0333, 0.0294, 0.0276, 0.0215], [0.1913, 0.0904, 0.0704, 0.0548, 0.0484, 0.0484, 0.0401, 0.0332], [0.2394, 0.1865, 0.1282, 0.0998, 0.0881, 0.0324, 0.0252, 0.0252], [0.2045, 0.1406, 0.124, 0.0966, 0.0966, 0.0852, 0.0517, 0.0314], [0.5842, 0.0896, 0.0791, 0.0698, 0.0227, 0.0156, 0.0156, 0.0156], [0.1838, 0.1622, 0.1263, 0.1115, 0.0868, 0.0465, 0.0282, 0.0282], [0.8462, 0.0372, 0.0256, 0.0226, 0.0083, 0.0057, 0.005, 0.005], [0.6885, 0.0822, 0.064, 0.0388, 0.0388, 0.0126, 0.0087, 0.0038], [0.5173, 0.168, 0.0793, 0.0331, 0.0227, 0.0201, 0.0201, 0.0138]], "ranks": {"Kotlin": [229095, 232150, 206687, 38713, 85991, 117446, 163738, 207440, 198710, 229722, 218892, 98656, 48668, 92501, 162040, 178377, 152724, 83151, 87681, 183987, 185553, 101964, 132623, 190933, 168926, 64807, 69659, 123475, 81430, 65194, 71689, 80670, 97416, 55060, 65895, 22714, 10151, 9514, 9313, 6046, 10260, 13273, 8168, 9981, 13320, 22716, 18794, 14179, 3908, 2036, 1085, 532, 40, 46, 38, 13, 9, 14, 31, 15, 16, 13, 15]}}, {"pos": 473, "top": [[".", ",", " ", "<|endoftext|>", " \u2013", "[", ";", "?"], ["  \n", "ly", " West", "  \n\n", "@[", "\u00ac", " Main", "ings"], [",", ".", "'[", " \u2013", "!", "[", "\u2013", "?"], ["erias", "ners", " councill", "istrator", "nitt", "\u0e21\u0e19\u0e38\u0e29", "oween", "shaft"], ["ners", "shaft", "er", "stay", " '@", "/Main", "iers", " MAIN"], ["/Main", "stay", "shaft", "s\u00f3", "ners", "\u0451", "\u00e7on", "(Main"], ["stay", "\u00b4t", "ners", "er", " \u0e46", "shaft", "!\u2019", "ships"], ["/Main", "ners", "stay", "shaft", "ighbour", "avour", "\u00b4t", "(Main"], ["/Main", "ighbour", "ners", "stay", "avour", "aviour", "\u0451\u0440", "isers"], ["\u00ading", "/Main", "\u0451\u0440", "stay", "\u0163a", "(Main", "aviour", " favourites"], ["er", "stay", " Centre", " favourite", "ning", " centre", "ners", "ship"], ["/Main", "iaux", "stay", "shaft", " flavours", "zinho", "\u0451\u043b", "aviour"], ["stay", "/Main", "iaux", "shaft", " flavours", "zinho", "istrator", "(Main"], ["/Main", "iaux", "stay", "shaft", "zinho", "(Main", " flavours", "\u0451\u043b"], ["stay", "ship", "/Main", "\u9592", "zinho", "shaft", "(Main", "\u0163a"], ["stay", "shaft", "ship", "zinho", "\u9592", " Fortal", "\u0413\u043b\u0430\u0432\u043d\u044b\u0435", "/Main"], ["stay", "shaft", "ship", "zinho", " Fortal", "nheim", "/Main", "ish"], ["stay", "shaft", "/Main", "ship", "nheim", "(Main", "zinho", "hattan"], ["shaft", "stay", "/Main", "(Main", "ship", "nheim", "zinho", ">Main"], ["stay", "shaft", "ship", "/Main", "(Main", "hattan", "zinho", ">Main"], ["er", "stay", "ship", " Main", "ly", "shaft", "ish", "n"], [" Fortal", "zinho", "nheim", "shaft", "hattan", "/Main", "istrator", "\u00edsimo"], [" Fortal", "nheim", "shaft", "zinho", "stay", "\u00edsimo", "/Main", "hattan"], ["nheim", " Fortal", " --", " Main", "\u0434\u044c\u043c\u0438", "\u9592", "\u9ebd", "shaft"], [" Fortal", "\u9ebd", "\u0434\u044c\u043c\u0438", "nheim", " --", "\u5176\u5b83\u5a92\u4f53", "\u518d\u63a5\u518d", "shaft"], ["shaft", " Fortal", "nheim", "\u9ebd", "\u518d\u63a5\u518d", "\u5176\u5b83\u5a92\u4f53", "\u0434\u044c\u043c\u0438", "/Main"], ["shaft", " startup", " Fortal", "nheim", "\u518d\u63a5\u518d", "/Main", "\u5176\u5b83\u5a92\u4f53", " Geile"], [" startup", "\u9ebd", "ship", "/Main", "shaft", " Main", " ''", " ---"], [" startup", " **:", " Startup", "/Main", " reboot", "shaft", " pornstar", " Shemale"], [" **:", " startup", " Shemale", " Startup", " **\u25a0", " pornstar", " reboot", " uptime"], [" **:", " startup", " Startup", "/Main", " Main", " Cinema", " reboot", " !**"], [" Main", " Center", " main", " Theater", " startup", " Cinema", " Startup", " Global"], [" Main", " reboot", " Cinema", "/Main", " Startup", " startup", " Global", " Motor"], [" startup", "/Main", " Startup", "-thread", " reboot", "-lock", " uptime", " workflow"], [" !**", "/Main", " **:", "-thread", " **\u2014", "**!", " -**", " lifecycle"], ["/Main", " !**", " **:", " Cortex", "-thread", "**\u2013", "(Main", ">Main"], ["/Main", " synchronous", " Android", " Sync", " synchronization", " **:", " !**", " Gameplay"], [" Android", "/Main", " synchronization", " UI", " synchronous", " Sync", " Animation", " sync"], [" UI", " synchronous", " Android", " synchronization", "/Main", " workflow", "-thread", " Main"], ["-thread", "/Main", " synchronization", " synchronous", " concurrency", " workflow", " MainActivity", " Android"], ["-thread", "MainThread", " Thread", " thread", "\u7ebf\u7a0b", " CPU", "/Main", " Threads"], ["-thread", "MainThread", " thread", "\u7ebf\u7a0b", " workflow", " Thread", "/Main", " Workflow"], ["MainThread", "-thread", " Animation", " thread", "-sync", " Workflow", " Thread", " Sync"], [" Animation", "MainThread", " Workflow", "-thread", "/Main", " Thread", " Sync", " Timeline"], [" Sync", "-thread", " Animation", " Workflow", "MainThread", " Thread", " workflow", "threads"], [" Sync", "/Main", " Thread", " Animation", " Workflow", " Timeline", " Threads", " thread"], [" Sync", " Workflow", " Thread", " Timeline", "/Main", " Threads", " workflow", " thread"], ["/Main", " Timeline", " Workflow", " Thread", " Sync", " Animation", " Threads", " Lifecycle"], ["/Main", " Workflow", " Sync", "-thread", " Timeline", " Thread", " Threads", "!**"], ["/Main", "-thread", " Sync", " Workflow", "!**", " Thread", " Timeline", "-sync"], ["/Main", "-thread", "!**", " Sync", " Workflow", "/UI", " Thread", "/M"], ["-thread", "/Main", " Thread", "/UI", " Threads", "!**", "\u7ebf\u7a0b", "thread"], ["-thread", " bottleneck", "/UI", "/Main", " Thread", " Threads", "\u7ebf\u7a0b", "thread"], ["-thread", "/Main", " Thread", "thread", " thread", "\u7ebf\u7a0b", " Threads", "Thread"], ["-thread", " Thread", " thread", "thread", "\u7ebf\u7a0b", "/Main", "Thread", " Threads"], ["-thread", " thread", " Thread", "thread", "\u7ebf\u7a0b", "Thread", " Threads", " threads"], ["-thread", " Thread", " thread", "thread", "\u7ebf\u7a0b", "Thread", " Threads", "_thread"], ["-thread", " Thread", " thread", "thread", " UI", "\u7ebf\u7a0b", "/UI", "Thread"], [" Thread", " thread", "-thread", "thread", "Thread", "\u7ebf\u7a0b", "_thread", " Threads"], [" Thread", " thread", "-thread", "thread", "Thread", "\u7ebf\u7a0b", " Threads", " threads"], [" Thread", "-thread", " thread", " UI", "thread", "/UI", "Thread", "\u7ebf\u7a0b"], [" Thread", "-thread", " thread", " UI", "thread", "/UI", "Thread", "\u7ebf\u7a0b"], [" Thread", " UI", "-thread", " thread", "/UI", "Thread", " Frame", "thread"]], "p": [[0.5824, 0.2428, 0.0155, 0.0137, 0.0107, 0.01, 0.0094, 0.0073], [0.0096, 0.0096, 0.0066, 0.0051, 0.0048, 0.0045, 0.004, 0.0033], [0.147, 0.1219, 0.0255, 0.0255, 0.0212, 0.0199, 0.0176, 0.0165], [0.0055, 0.0028, 0.0026, 0.0024, 0.0023, 0.0023, 0.0021, 0.0021], [0.0155, 0.0155, 0.01, 0.0064, 0.0057, 0.0042, 0.0034, 0.0027], [0.008, 0.0075, 0.0066, 0.0062, 0.0048, 0.0048, 0.004, 0.0033], [0.0153, 0.0082, 0.0047, 0.0047, 0.0047, 0.0044, 0.0044, 0.0044], [0.0154, 0.0145, 0.0113, 0.0106, 0.0082, 0.0041, 0.0041, 0.0039], [0.0314, 0.0102, 0.009, 0.0085, 0.0085, 0.0075, 0.0055, 0.0055], [0.0175, 0.0175, 0.0128, 0.0088, 0.0083, 0.0083, 0.0078, 0.0073], [0.0555, 0.046, 0.0204, 0.0124, 0.0103, 0.0096, 0.0096, 0.0096], [0.0125, 0.0071, 0.0052, 0.0052, 0.0043, 0.0041, 0.0034, 0.0034], [0.0064, 0.006, 0.006, 0.0047, 0.0034, 0.0032, 0.0025, 0.0022], [0.0082, 0.0064, 0.006, 0.0039, 0.0034, 0.0034, 0.0034, 0.0028], [0.0132, 0.007, 0.0048, 0.0045, 0.0043, 0.004, 0.0028, 0.0026], [0.0168, 0.007, 0.0054, 0.0042, 0.0037, 0.0035, 0.0024, 0.0023], [0.0166, 0.0069, 0.0057, 0.0035, 0.0031, 0.0027, 0.0024, 0.0024], [0.0099, 0.0073, 0.0056, 0.0053, 0.0044, 0.0039, 0.0034, 0.0027], [0.0106, 0.01, 0.0088, 0.0064, 0.0047, 0.0042, 0.0042, 0.0034], [0.0183, 0.0172, 0.0118, 0.0118, 0.0081, 0.0076, 0.0076, 0.0072], [0.0197, 0.0174, 0.0135, 0.0119, 0.0112, 0.0077, 0.0072, 0.0072], [0.0098, 0.0071, 0.0063, 0.0043, 0.0032, 0.003, 0.0028, 0.0025], [0.0096, 0.009, 0.0055, 0.004, 0.0029, 0.0026, 0.002, 0.0019], [0.0111, 0.0063, 0.0038, 0.0028, 0.0023, 0.0022, 0.0022, 0.0021], [0.0098, 0.0076, 0.0063, 0.0056, 0.0038, 0.0034, 0.0034, 0.003], [0.0087, 0.0081, 0.0056, 0.0044, 0.0041, 0.0041, 0.0025, 0.0025], [0.0066, 0.0045, 0.0035, 0.0029, 0.0024, 0.0023, 0.0021, 0.0021], [0.0059, 0.0041, 0.0034, 0.0034, 0.0032, 0.0032, 0.0025, 0.0022], [0.009, 0.008, 0.0058, 0.0038, 0.0031, 0.0028, 0.0021, 0.002], [0.0181, 0.0103, 0.004, 0.004, 0.0031, 0.003, 0.0026, 0.0019], [0.0255, 0.0113, 0.0073, 0.005, 0.0034, 0.0032, 0.0029, 0.0027], [0.0362, 0.0063, 0.0052, 0.0049, 0.0046, 0.0046, 0.0043, 0.0032], [0.0123, 0.0038, 0.0033, 0.0033, 0.0031, 0.0029, 0.0023, 0.002], [0.0057, 0.0045, 0.0045, 0.0037, 0.0033, 0.0027, 0.0024, 0.0022], [0.0106, 0.0077, 0.0057, 0.0034, 0.0028, 0.0027, 0.0024, 0.0024], [0.0131, 0.0102, 0.0066, 0.0051, 0.004, 0.004, 0.0037, 0.0035], [0.009, 0.009, 0.0085, 0.007, 0.0062, 0.0058, 0.0058, 0.0058], [0.0452, 0.0114, 0.0107, 0.0095, 0.0089, 0.0078, 0.0065, 0.0065], [0.0298, 0.028, 0.0192, 0.0181, 0.017, 0.0141, 0.0097, 0.0097], [0.047, 0.0251, 0.0222, 0.0184, 0.0173, 0.0135, 0.0135, 0.0112], [0.1735, 0.0529, 0.0497, 0.0412, 0.0266, 0.0221, 0.0207, 0.0161], [0.1069, 0.1005, 0.037, 0.0347, 0.0306, 0.0211, 0.0211, 0.0198], [0.0865, 0.0633, 0.0384, 0.0248, 0.0233, 0.0219, 0.0205, 0.0205], [0.0619, 0.0331, 0.0331, 0.0275, 0.0275, 0.0228, 0.0177, 0.0167], [0.0359, 0.0262, 0.0246, 0.0232, 0.018, 0.018, 0.0159, 0.015], [0.073, 0.0252, 0.0237, 0.0185, 0.0163, 0.0144, 0.0144, 0.0127], [0.0511, 0.0374, 0.0374, 0.033, 0.0291, 0.02, 0.02, 0.0188], [0.0876, 0.0727, 0.0499, 0.0441, 0.0389, 0.0251, 0.0208, 0.0134], [0.098, 0.0281, 0.0248, 0.0248, 0.016, 0.016, 0.0125, 0.0117], [0.0882, 0.0345, 0.0305, 0.0286, 0.0197, 0.0163, 0.0144, 0.0119], [0.2461, 0.0259, 0.0178, 0.0178, 0.0148, 0.0148, 0.009, 0.0084], [0.231, 0.0584, 0.0484, 0.0455, 0.0244, 0.0202, 0.0157, 0.0148], [0.2502, 0.0763, 0.0633, 0.0558, 0.0463, 0.0193, 0.0125, 0.0125], [0.5093, 0.1653, 0.1653, 0.0537, 0.0287, 0.0174, 0.0174, 0.0106], [0.4767, 0.1987, 0.1754, 0.0569, 0.0443, 0.0185, 0.0144, 0.0077], [0.6276, 0.1587, 0.1236, 0.0401, 0.0354, 0.009, 0.0026, 0.0011], [0.4389, 0.2662, 0.2073, 0.0463, 0.0219, 0.0133, 0.002, 0.0016], [0.5332, 0.1962, 0.1528, 0.0496, 0.0265, 0.0125, 0.0098, 0.0086], [0.6333, 0.1814, 0.1413, 0.0278, 0.009, 0.0048, 0.0007, 0.0006], [0.6439, 0.209, 0.1119, 0.0194, 0.0092, 0.0038, 0.0008, 0.0005], [0.6041, 0.1731, 0.1527, 0.0265, 0.0182, 0.0067, 0.0067, 0.0041], [0.7544, 0.1021, 0.0795, 0.0331, 0.0095, 0.0061, 0.0027, 0.0018], [0.9897, 0.0067, 0.0012, 0.0005, 0.0004, 0.0003, 0.0002, 0.0001]], "ranks": {"Kotlin": [179022, 120607, 98233, 16873, 18859, 23593, 28907, 80825, 62637, 137729, 112826, 53759, 30362, 50202, 52272, 26937, 35973, 29641, 35727, 51823, 36980, 10046, 10907, 40449, 23051, 3198, 906, 3697, 840, 1490, 2036, 8795, 12409, 2473, 2926, 350, 9, 16, 81, 70, 475, 902, 806, 921, 984, 1877, 2790, 3435, 4748, 5462, 3522, 763, 46, 112, 101, 70, 35, 57, 72, 75, 81, 121, 119]}}, {"pos": 474, "top": [[".", ",", "\u00a0\u00a0", "  \n", " ", "\u00ac", ";", "er"], ["\uff20", "  \n", "  \n\n", " (@", " \ufffd", " \u00ad", " \uff3b", " \uff5e"], ["\u2026..", ",", "\uff0e", " \u2013", ".", " \uff3b", "\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014", "sWith"], ["TRGL", "\uff0a\uff0a\uff0a\uff0a", "\uff3f\uff3f", " ``", "-------------</", "\uff0a\uff0a", "\uff0d\uff0d\uff0d\uff0d", "TROD"], ["ed", "er", " ----", " \u2019", " ---", " --->", " @", " (@"], ["ed", "er", "sWith", " \u2019", " \uff08", " \uff09", "\u094d\u0938", " \u3011"], ["er", " \u2019", " _____", "_____", "ed", "\uff0e", " ----", " ---"], ["er", " _____", "ed", " ----", " --->", " \u2019", " ---", " \u00ad"], ["er", "ed", " \u2019", "&nbsp", " \u00ad", " _____", " TH", " &"], ["ed", ",", " \u00ad", "er", "s", "\u00ading", " \u2019", "&nbsp"], ["er", "ed", ",", "s", " #", " @", ".", " ."], ["er", "ed", " ---", "edly", " #", " Thread", "s", "\u00ading"], ["er", "ed", " \u2019", "edly", " Thread", "\u00ading", " TH", " \u00ad"], ["ed", "er", ",", "edly", " \u2019", "\u00ading", " \u00ad", " via"], ["ed", ",", "er", " \u2014", " at", " \u00ad", "s", " \u2019"], ["ed", "er", " \u2014", ",", " at", "s", " \u2019", " in"], ["ed", "er", ",", "s", " via", " \u2014", " \u2019", " at"], ["ed", "er", "s", ",", " \u2014", " via", "edly", " \u2019"], [" \u2014", "ed", "er", " \u2019", "s", " \u00ad", " --", "\u2014and"], [" \u2014", "ed", " \u2019", "\u2014", " \u00ad", ",", "\u2014and", " --"], ["<|endoftext|>", " \u2014", "ed", " \u00ad", " --", "\u2014", " ,", "\u2014and"], [" --", " \u2019", " \u2014", " ''", "ed", " ---", "edly", " ----"], [" --", " ''", " ---", " \u2014", " \u2019", "edly", "ed", " ,"], [" --", " \u2014", " ,", " \u2019", " '", " ''", " ---", " heavily"], [" --", " \u2014", " ---", " ,", " ''", "edly", " '", " \u2019"], [" --", " \u2014", " ---", " ,", " \u2019", " '", "edly", " ___"], [" --", " ---", " ___", " ''", " \u2014", " ,", " motion", " __"], [" --", " ,", " ___", " ---", " ''", " '", " \u2014", " __"], [" ___", " --", " ---", " __", " \u2014", " ,", " ''", " hours"], [" ___", " __", " _____", " ______", " ---", " ____", " ________", " --"], [" ___", " hours", " __", " ---", " traffic", " \u2014", " overtime", " clock"], [" \u2014", " ,", " .", " hours", " during", " ___", " time", " at"], [" \u2014", " hours", " heavily", " time", " traffic", " clock", " rapidly", " only"], [" \u2014", "\u2014or", " multit", " clock", " synchronization", " traffic", " pacing", " hours"], [" \u2014", "\u2014or", "\u2014even", " pacing", " panic", " multit", "\u2014but", " synchronization"], [" \u2014", "\u2014or", "\u2014even", " rapidly", " synchronous", " \u2013", " synchronization", " multit"], [" \u2014", " synchronization", " synchronous", " bottleneck", "\u2014or", " multit", "\u2014even", " asynchronously"], [" \u2014", " synchronization", " synchronous", " bottleneck", " Thread", " multit", "\u2014or", " latency"], [" synchronization", " synchronous", " bottleneck", " \u2014", " multit", " Thread", " synchronized", " panic"], [" synchronization", " bottleneck", " synchronous", " multit", " Thread", " synchronized", " sync", " synchron"], [" bottleneck", " synchronization", " synchronous", " Thread", " workload", " CPU", " busy", " delay"], [" synchronization", " bottleneck", " synchronous", " workflow", " CPU", " workload", " Thread", " busy"], [" bottleneck", " synchronization", " synchronous", " CPU", " jitter", " Thread", " sync", " clock"], [" bottleneck", " synchronization", " synchronous", " Thread", " CPU", "-blocking", " traffic", " scheduling"], [" bottleneck", " synchronization", " synchronous", " pressure", " sync", " traffic", " Thread", "-blocking"], [" bottleneck", " synchronization", " pressure", " sync", " Thread", " interference", " blocking", "-blocking"], [" bottleneck", " synchronization", " Timeline", " Thread", " interference", " timeline", "-blocking", " pressure"], [" bottleneck", " Timeline", " synchronization", " Thread", " timeline", "-blocking", " Pressure", " pressure"], [" bottleneck", " synchronization", " relentlessly", " Timeline", " pressure", "-blocking", " concurrency", " interference"], [" bottleneck", " synchronization", " relentlessly", " overcrow", " deadlock", " Timeline", " interference", " Sync"], [" bottleneck", " synchronization", ".**", " deadlock", " Timeline", " relentlessly", " overcrow", " clutter"], [" bottleneck", " synchronization", ".**", ".*", " Timeline", " deadlock", " overload", " throughput"], [".**", " bottleneck", ".*", " synchronization", ".\"", " concurrency", " deadlock", " .**"], [" bottleneck", ".**", " synchronization", ".*", " Thread", " deadlock", " concurrency", "/UI"], [" Thread", " thread", "/thread", " bottleneck", " Threads", " synchronization", " ThreadPool", " threads"], [" Thread", " synchronization", " bottleneck", " deadlock", " thread", "/thread", " Threads", "/UI"], [" Thread", " responsiveness", " thread", " Threads", " deadlock", " bottleneck", "/thread", " synchronization"], [" Thread", "/UI", " synchronization", " latency", " responsiveness", " deadlock", " UI", " bottleneck"], [" Thread", " Blocking", " bottleneck", " deadlock", " Blocked", " synchronization", " Threads", " latency"], [" Blocking", " latency", " deadlock", " bottleneck", " UI", " synchronization", " concurrency", " throughput"], [" UI", "/UI", " latency", " Blocking", " Thread", " deadlock", " throughput", " concurrency"], [" Frame", " UI", " Thread", " Blocking", "/UI", " Lifecycle", " Renderer", " Timeline"], [".**", " Frame", " Thread", " UI", " Renderer", " Freeze", " Pipeline", " Event"]], "p": [[0.4862, 0.1085, 0.0292, 0.0258, 0.0214, 0.0147, 0.0122, 0.0084], [0.018, 0.0116, 0.0096, 0.0091, 0.007, 0.0048, 0.0043, 0.004], [0.0463, 0.0318, 0.0233, 0.0181, 0.015, 0.0133, 0.0117, 0.011], [0.0216, 0.0179, 0.0139, 0.0108, 0.009, 0.0084, 0.0058, 0.0058], [0.2108, 0.1279, 0.0729, 0.0643, 0.0252, 0.0237, 0.0163, 0.0099], [0.0952, 0.0373, 0.0187, 0.0078, 0.0065, 0.0054, 0.0047, 0.0033], [0.2152, 0.1389, 0.0955, 0.0424, 0.0398, 0.0227, 0.0227, 0.0156], [0.1921, 0.0752, 0.0707, 0.0429, 0.0216, 0.0216, 0.0139, 0.0131], [0.2434, 0.0742, 0.0226, 0.0188, 0.0188, 0.0176, 0.0114, 0.0107], [0.2006, 0.177, 0.1074, 0.0947, 0.0289, 0.0165, 0.0088, 0.0078], [0.3156, 0.2965, 0.0621, 0.0427, 0.0276, 0.0215, 0.0167, 0.0139], [0.3672, 0.286, 0.0063, 0.0059, 0.0049, 0.0038, 0.0032, 0.003], [0.3534, 0.332, 0.0061, 0.0042, 0.0039, 0.0035, 0.0017, 0.0015], [0.4171, 0.1354, 0.053, 0.0059, 0.0046, 0.0044, 0.0041, 0.0034], [0.2848, 0.0465, 0.0465, 0.0437, 0.0133, 0.0125, 0.0092, 0.0086], [0.2046, 0.0457, 0.023, 0.0131, 0.0131, 0.0108, 0.0084, 0.0075], [0.368, 0.0771, 0.0388, 0.025, 0.0067, 0.0059, 0.0056, 0.0056], [0.3007, 0.0556, 0.0124, 0.0117, 0.0055, 0.0033, 0.0024, 0.0022], [0.2409, 0.1656, 0.027, 0.0175, 0.0175, 0.0073, 0.0073, 0.005], [0.5624, 0.0263, 0.0205, 0.017, 0.016, 0.015, 0.0075, 0.0075], [0.6748, 0.1506, 0.0075, 0.0052, 0.0052, 0.0052, 0.0048, 0.0021], [0.0399, 0.0292, 0.0258, 0.0242, 0.0227, 0.0214, 0.0201, 0.0048], [0.2168, 0.0661, 0.0276, 0.0243, 0.0229, 0.0215, 0.0095, 0.0084], [0.1553, 0.0537, 0.0537, 0.0197, 0.0127, 0.012, 0.0068, 0.0057], [0.2864, 0.1271, 0.0302, 0.0195, 0.0183, 0.0076, 0.0076, 0.0067], [0.157, 0.1223, 0.0479, 0.0273, 0.0188, 0.0107, 0.0089, 0.0078], [0.132, 0.0486, 0.0486, 0.0229, 0.019, 0.0084, 0.0066, 0.0062], [0.2364, 0.0721, 0.0411, 0.0363, 0.0265, 0.0234, 0.0234, 0.0142], [0.0808, 0.067, 0.0279, 0.0218, 0.0169, 0.0124, 0.0116, 0.0049], [0.5602, 0.0669, 0.0231, 0.0217, 0.018, 0.0103, 0.008, 0.0075], [0.1031, 0.014, 0.0116, 0.009, 0.0085, 0.0075, 0.0058, 0.0058], [0.027, 0.0224, 0.0164, 0.0154, 0.0136, 0.0113, 0.0113, 0.0106], [0.0753, 0.0102, 0.0084, 0.0075, 0.0055, 0.0048, 0.0045, 0.0042], [0.0504, 0.0082, 0.0068, 0.0053, 0.005, 0.005, 0.0044, 0.0037], [0.0564, 0.0104, 0.0067, 0.0059, 0.0052, 0.0049, 0.0043, 0.0041], [0.3133, 0.0078, 0.0057, 0.0057, 0.0054, 0.0051, 0.0045, 0.0042], [0.1698, 0.0216, 0.0203, 0.0148, 0.0109, 0.0062, 0.0062, 0.0055], [0.0417, 0.0345, 0.0197, 0.0127, 0.0112, 0.0077, 0.0064, 0.0056], [0.0558, 0.0408, 0.0318, 0.0233, 0.0125, 0.011, 0.0076, 0.0067], [0.1198, 0.0603, 0.0566, 0.0152, 0.0143, 0.0126, 0.0105, 0.0082], [0.1772, 0.0508, 0.0308, 0.0255, 0.0175, 0.0145, 0.0137, 0.0128], [0.0933, 0.0876, 0.0499, 0.0251, 0.0222, 0.0196, 0.0184, 0.0173], [0.1079, 0.084, 0.0423, 0.0155, 0.0137, 0.0121, 0.0114, 0.0114], [0.0774, 0.05, 0.0196, 0.0152, 0.0105, 0.0105, 0.0098, 0.0087], [0.1074, 0.0612, 0.0145, 0.0145, 0.0128, 0.0113, 0.0088, 0.0083], [0.0682, 0.0531, 0.0143, 0.0111, 0.0105, 0.0098, 0.0098, 0.0087], [0.0812, 0.0558, 0.016, 0.0103, 0.0103, 0.0103, 0.0103, 0.0091], [0.0624, 0.0314, 0.0203, 0.0115, 0.0079, 0.0075, 0.0075, 0.0075], [0.0948, 0.0289, 0.0137, 0.0088, 0.0078, 0.0073, 0.0069, 0.0065], [0.1514, 0.0408, 0.0097, 0.0085, 0.0067, 0.0067, 0.0067, 0.0067], [0.1877, 0.037, 0.0186, 0.0145, 0.0093, 0.0088, 0.0088, 0.0068], [0.2288, 0.0616, 0.0374, 0.0213, 0.0166, 0.0129, 0.0083, 0.0065], [0.3638, 0.1947, 0.0763, 0.0318, 0.0124, 0.0091, 0.0091, 0.0067], [0.3911, 0.068, 0.0529, 0.0529, 0.0342, 0.0161, 0.0142, 0.0134], [0.5493, 0.1389, 0.0351, 0.033, 0.033, 0.0291, 0.0177, 0.0129], [0.2958, 0.2033, 0.066, 0.062, 0.0454, 0.0201, 0.0178, 0.0167], [0.4813, 0.054, 0.0448, 0.0328, 0.0272, 0.0272, 0.0255, 0.0255], [0.3291, 0.0648, 0.0609, 0.0505, 0.0445, 0.0393, 0.0369, 0.0254], [0.3995, 0.3111, 0.0272, 0.0255, 0.0187, 0.0113, 0.0106, 0.0094], [0.1646, 0.1452, 0.0345, 0.0345, 0.0345, 0.0324, 0.0223, 0.0223], [0.0921, 0.0764, 0.0463, 0.0435, 0.0339, 0.0264, 0.0233, 0.0206], [0.136, 0.0603, 0.0532, 0.0323, 0.0222, 0.0162, 0.0162, 0.0153], [0.7724, 0.0264, 0.0219, 0.0141, 0.0067, 0.0055, 0.0052, 0.0046]], "ranks": {"Kotlin": [184930, 96776, 84085, 10959, 11565, 15442, 30654, 51679, 52693, 119592, 73327, 35853, 16108, 39219, 83547, 54789, 61568, 38798, 91946, 140559, 128917, 24502, 24058, 80318, 40516, 12882, 5211, 31899, 5817, 4169, 6753, 17928, 14751, 6163, 9811, 2404, 812, 989, 2337, 2695, 5797, 7865, 6177, 6728, 7960, 16076, 20853, 18638, 26021, 22502, 20450, 7092, 1230, 776, 634, 492, 310, 595, 855, 1043, 1218, 814, 726]}}, {"pos": 475, "top": [[" &", " \u2022", " \u200b\u200b", " \u00a0", " \ufffd", ":\\\"", " (&", " (\u201e"], [":\\\"", "\u0169", " &", " &'", " \ufffd", ",\\\"", " ~", " ~>"], [":\\\"", " &'", "\u0169", " [&", "nbsp", " ~>", ":'", " ____"], [" ``", "``", ":&", " *&", " ``(", " ;;^", "&eacute", " ____"], [" &", "-&", ":&", " (&", " [&", ",&", " *&", " &)"], [" &", "-&", ":&", " &,", " (&", "&A", " &)", "&"], [" &", "-&", " \ufffd", " (&", " *&", ":&", " [&", "\ufffd\ufffd"], [" &", "-&", ":&", " *&", " [&", " (&", " \ufffd", " ____"], [" &", "-&", ":&", " [&", " *&", " (&", ",&", "*&"], ["-&", " &", ":&", ",&", " *&", " (&", "&nbsp", " &'"], [" &", "-&", "&nbsp", "&", ":&", ",&", " \ufffd", " (&"], [" &", "-&", " *&", ":&", "*&", " (&", "&nbsp", "/&"], [" &", "-&", " *&", ":&", "*&", "/&", " (&", " &'"], [" &", "-&", " (&", ":&", " &'", "/&", " vibe", "*&"], [" &", "-&", " (&", "&", " ~", ":&", "&r", ",&"], [" &", "-&", " (&", "&", " folks", ",&", "&r", " kinda"], [" &", "-&", "&", " (&", " folks", ",&", " vibe", "&nbsp"], [" &", "-&", " (&", "&", " vibe", " Philly", ":&", "&r"], [" &", "-&", " (&", "/&", "&r", "&quot", ":&", "&"], ["-&", " &", " (&", "&r", "&", "&e", "/&", "*&"], ["-&", " &", "&", "&r", " (&", "&e", "/&", ":&"], ["-&", " *&", " &", "&e", "&quot", "&r", "&apos", " ``"], [" &", " ``", "-&", "&quot", "&apos", "&e", " *&", "&r"], [" ``", " &", "-&", " \ufffd", " &#", "&quot", " utterly", "&apos"], ["-&", " &#", " &", "&r", " *&", " utterly", " \ufffd", "&quot"], [" *&", " havoc", "*&", "\u5468\u906d", "-&", " busted", "unky", " &#"], [" *&", " havoc", "\u5468\u906d", "-&", "&e", " busted", " ``", "&r"], [" --", " &", " hugely", " *&", " &#", " havoc", " myriad", " ``"], [" *&", " havoc", " &", " myriad", " hugely", " busted", " sprawling", " &#"], [" &", " hugely", " myriad", " --", " havoc", " sprawling", " &#", " ~"], [" ...", " &", " hugely", " ____", " myriad", " ...\\", " havoc", " heavily"], [" ...", " &", " heavily", " massive", " incredibly", " hugely", " truly", " myriad"], [" incredibly", " relentless", " massive", " massively", " heavily", " horrific", " relentlessly", " sprawling"], [" incredibly", " relentless", " havoc", " chaos", " tech", " massively", " sprawling", " horrific"], [" relentless", " chaos", " bottleneck", " havoc", " tech", " horrific", " infrastructure", " sprawling"], [" chaos", " bottleneck", " relentless", " tech", " hardware", " chaotic", " synergy", " havoc"], [" bottleneck", " chaos", " hardware", " latency", " chaotic", " sync", " jitter", " tech"], [" bottleneck", " chaos", " hardware", " latency", " sync", " jitter", " ergonom", " tech"], [" bottleneck", " chaos", " hardware", " latency", " jitter", " ergonom", " chaotic", " thrott"], [" bottleneck", " chaos", " latency", " jitter", " hardware", " unpredictable", " synchronization", " chaotic"], [" bottleneck", " latency", " chaos", " jitter", " synchronization", " hardware", " sync", " buffering"], [" bottleneck", " latency", " jitter", " synchronization", " buffering", " hardware", " sync", " chaos"], [" synchronization", " bottleneck", " jitter", " latency", " syncing", " buffering", " sync", " unpredictable"], [" bottleneck", " synchronization", " latency", " jitter", " syncing", " sync", " hardware", " unpredictable"], [" bottleneck", " synchronization", " latency", " jitter", " syncing", " sync", " unpredictable", " buffering"], [" synchronization", " bottleneck", " sync", " syncing", " latency", " jitter", " chaos", " unpredictable"], [" bottleneck", " synchronization", " Sync", " glitches", " syncing", " latency", " chaos", " jitter"], [" bottleneck", " Sync", " syncing", " glitches", " synchronization", " Ambient", " latency", " Interface"], [" Sync", " synchronization", " syncing", " bottleneck", " glitches", " latency", " framerate", " Interface"], [" Sync", " synchronization", " Interface", " syncing", " framerate", " bottleneck", " Interfaces", " buffering"], [" Sync", " synchronization", " syncing", " framerate", " Interface", " latency", "sync", " bottleneck"], [" synchronization", " framerate", " GPU", " CPU", " latency", " Interface", " Runtime", " Sync"], [" CPU", " latency", " GPU", " synchronization", " framerate", " buffering", " Processor", " Runtime"], [" GPU", " CPU", " framerate", " latency", " synchronization", " buffering", " Processor", " Frame"], [" GPU", " CPU", " Memory", " Thread", " Threads", " JVM", " framerate", " memory"], [" GPU", " CPU", " Memory", " garbage", " Rendering", " JVM", "GPU", " framerate"], [" GC", " garbage", " GPU", "GC", "\u5783\u573e", "gc", " Android", "_GC"], [" GC", " GPU", "GC", " garbage", " renderer", " Renderer", " Rendering", "gc"], [" GC", " GPU", "GC", " Frame", " Renderer", " renderer", " Rendering", " JNI"], [" GC", " GPU", "GC", " Renderer", " renderer", " garbage", " Rendering", " Frame"], [" GC", " GPU", "GC", " garbage", " Gar", "_GC", " JIT", " Renderer"], [" GC", " GPU", "GC", " Frame", " Gar", " garbage", " JIT", " Memory"], [" GC", " Frame", " Gar", " GPU", " Memory", " UI", " Renderer", " Rendering"]], "p": [[0.1621, 0.0924, 0.0495, 0.0436, 0.0234, 0.0219, 0.0117, 0.0104], [0.1815, 0.0857, 0.0431, 0.0405, 0.0336, 0.0149, 0.014, 0.0124], [0.0626, 0.0191, 0.0179, 0.0131, 0.007, 0.0045, 0.0045, 0.004], [0.0615, 0.0256, 0.0213, 0.0213, 0.02, 0.0114, 0.0061, 0.0054], [0.5932, 0.1031, 0.0708, 0.0552, 0.0277, 0.0203, 0.0131, 0.007], [0.3911, 0.1735, 0.0195, 0.0183, 0.0152, 0.0134, 0.0111, 0.0111], [0.7839, 0.0533, 0.0222, 0.0173, 0.0144, 0.0112, 0.0105, 0.0082], [0.4418, 0.1842, 0.0562, 0.0386, 0.0234, 0.0182, 0.0182, 0.0098], [0.4145, 0.1525, 0.0869, 0.0636, 0.0386, 0.034, 0.0171, 0.0161], [0.3145, 0.203, 0.0702, 0.04, 0.0311, 0.0214, 0.0189, 0.0177], [0.6508, 0.1646, 0.0416, 0.0223, 0.0163, 0.0144, 0.0135, 0.0119], [0.5249, 0.1171, 0.052, 0.038, 0.0204, 0.0149, 0.0116, 0.0109], [0.2324, 0.1169, 0.0335, 0.0315, 0.0245, 0.0191, 0.0149, 0.014], [0.3135, 0.2441, 0.033, 0.0242, 0.0138, 0.0129, 0.0122, 0.0095], [0.8784, 0.0562, 0.0133, 0.0086, 0.0026, 0.0019, 0.0019, 0.0018], [0.866, 0.0489, 0.0217, 0.0096, 0.0048, 0.0033, 0.0023, 0.0019], [0.8182, 0.0434, 0.0218, 0.0132, 0.0052, 0.0036, 0.0026, 0.0026], [0.2437, 0.1783, 0.0241, 0.0213, 0.02, 0.0177, 0.0156, 0.0129], [0.333, 0.2939, 0.0291, 0.0176, 0.0146, 0.0146, 0.0121, 0.0121], [0.3966, 0.3089, 0.0393, 0.0224, 0.0224, 0.0113, 0.0099, 0.0073], [0.2492, 0.2199, 0.0407, 0.0382, 0.0247, 0.0159, 0.0085, 0.0085], [0.0325, 0.0325, 0.021, 0.0163, 0.0153, 0.0127, 0.0105, 0.0099], [0.0514, 0.0483, 0.0376, 0.0243, 0.0201, 0.0167, 0.0157, 0.0157], [0.0541, 0.0509, 0.024, 0.0199, 0.0146, 0.0107, 0.01, 0.0094], [0.055, 0.0277, 0.026, 0.0131, 0.0123, 0.0115, 0.0108, 0.0102], [0.0574, 0.0164, 0.0078, 0.0073, 0.0073, 0.0053, 0.005, 0.0042], [0.044, 0.0184, 0.0072, 0.0056, 0.0049, 0.0044, 0.0044, 0.0041], [0.0258, 0.0201, 0.0108, 0.0089, 0.0084, 0.0079, 0.0079, 0.0074], [0.0248, 0.0206, 0.0141, 0.0086, 0.0086, 0.0076, 0.0076, 0.0071], [0.0378, 0.019, 0.0179, 0.0168, 0.0148, 0.0139, 0.0139, 0.0096], [0.1077, 0.0422, 0.0199, 0.0155, 0.0129, 0.01, 0.01, 0.01], [0.0755, 0.043, 0.0191, 0.0158, 0.0149, 0.0131, 0.008, 0.0075], [0.03, 0.0194, 0.0182, 0.0142, 0.0133, 0.0125, 0.0118, 0.0104], [0.0217, 0.0192, 0.0169, 0.0159, 0.0132, 0.0109, 0.0097, 0.0097], [0.0186, 0.0175, 0.0145, 0.0145, 0.0113, 0.0088, 0.0088, 0.0068], [0.0321, 0.0284, 0.0152, 0.0134, 0.0104, 0.0072, 0.0063, 0.0063], [0.0546, 0.0292, 0.0201, 0.0101, 0.0089, 0.0084, 0.0079, 0.0074], [0.0451, 0.0257, 0.0137, 0.0101, 0.0083, 0.0069, 0.0061, 0.0061], [0.0698, 0.0351, 0.0176, 0.0146, 0.0121, 0.0089, 0.0089, 0.0078], [0.0902, 0.04, 0.0258, 0.0147, 0.013, 0.0122, 0.0108, 0.0101], [0.1176, 0.0337, 0.0169, 0.0124, 0.0124, 0.0109, 0.0103, 0.0091], [0.0873, 0.0439, 0.0387, 0.0283, 0.0221, 0.0172, 0.0161, 0.0161], [0.0475, 0.0475, 0.037, 0.0271, 0.0211, 0.0211, 0.0164, 0.0136], [0.0697, 0.0291, 0.0273, 0.0273, 0.0188, 0.0137, 0.0114, 0.01], [0.0665, 0.0277, 0.0216, 0.0179, 0.0139, 0.0139, 0.0109, 0.0102], [0.0346, 0.0346, 0.0163, 0.0144, 0.0127, 0.012, 0.0106, 0.0093], [0.052, 0.0296, 0.0159, 0.0149, 0.0149, 0.014, 0.0131, 0.0109], [0.0323, 0.0236, 0.0143, 0.0135, 0.0126, 0.0093, 0.0082, 0.0077], [0.0443, 0.0304, 0.0252, 0.0173, 0.0153, 0.0119, 0.0119, 0.0105], [0.0378, 0.0276, 0.019, 0.0179, 0.0115, 0.0115, 0.007, 0.0066], [0.056, 0.0362, 0.0151, 0.0142, 0.0117, 0.0076, 0.0063, 0.0063], [0.0753, 0.0665, 0.0587, 0.0486, 0.0429, 0.023, 0.0158, 0.0148], [0.1691, 0.1691, 0.1237, 0.0427, 0.0333, 0.0294, 0.0148, 0.0139], [0.2803, 0.1927, 0.0552, 0.043, 0.0245, 0.014, 0.0109, 0.009], [0.4234, 0.2, 0.0348, 0.0271, 0.0186, 0.0145, 0.0136, 0.0106], [0.5791, 0.213, 0.0198, 0.0175, 0.0106, 0.0094, 0.0083, 0.0078], [0.8397, 0.0781, 0.0287, 0.0197, 0.0057, 0.0034, 0.003, 0.0024], [0.7708, 0.1182, 0.0384, 0.0125, 0.0086, 0.0086, 0.0067, 0.0032], [0.8733, 0.0493, 0.0264, 0.0086, 0.0067, 0.0052, 0.0036, 0.0028], [0.8398, 0.0608, 0.0254, 0.0136, 0.0106, 0.0093, 0.0073, 0.0057], [0.9701, 0.0157, 0.0084, 0.0013, 0.0006, 0.0004, 0.0003, 0.0003], [0.9722, 0.0122, 0.0051, 0.0021, 0.0013, 0.0009, 0.0005, 0.0004], [0.6841, 0.0926, 0.0496, 0.0265, 0.0234, 0.0142, 0.0081, 0.0067]], "ranks": {"Kotlin": [112041, 111434, 48524, 27077, 37064, 40801, 38004, 81993, 67405, 93217, 66367, 35742, 18810, 48803, 102137, 135535, 82816, 57133, 60613, 86679, 156314, 105077, 108780, 180344, 181456, 120928, 134358, 186309, 152620, 175007, 183532, 179897, 158186, 129441, 103271, 36448, 6290, 5582, 8618, 5819, 9602, 15023, 19387, 21539, 27315, 38140, 40300, 35154, 18729, 15306, 9645, 4441, 162, 133, 119, 42, 28, 54, 86, 107, 129, 166, 76]}}, {"pos": 476, "top": [[" (\u201e", "\ufffd", "  \n", " AVC", "s", " McCoy", " GC", " WC"], [" \\\"", " (\u201e", " \u00ac", " GC", "  \n\n", "  \n", ":\\\"", " \\\"\""], [" GC", ":\\\"", " (\u201e", " \\\"", "\u201a", ",\\\"", "(\\\"", " gc"], [" ``(", " \\\"%", " ``", " Shemale", " \\\"{", " \\\"", " \\\"\"", " GC"], [" GC", " @_", " gc", " [@", " \\\"", " (@", " _____", " \\\"%"], [" GC", " gc", ".gc", " @_", "GC", "avanaugh", " _____", "\\xc"], [" GC", " _____", " gc", "  \n", "\\xc", " ___", "  \n\n", " @_"], [" GC", "  \n\n", " gc", " _____", "  \n", " [@", ".gc", " ____"], ["  \n\n", " _____", " [@", " ____", " [`", " GC", "   \n\n", "  \n"], [" GC", "\\n", ".gc", "(gc", " [@", " gc", "\\xc", "\u00c3"], ["\\n", " [@", "...\\", " GC", "\\xc", "\\.", " ...\\", " @_"], [" GC", " ____", ".gc", " {_", "(gc", " _____", " _$", "\\n"], [" GC", ".gc", "s", "(gc", "GC", "\u00c3", " gc", " VC"], [" GC", "s", ".gc", "(gc", "GC", " gc", "\u00c3", " VC"], ["s", " GC", "&", " \ufffd", "-", " ", "\u00c3", "2"], ["s", " GC", "&", "-", "\u00c3", " &", " ", " \ufffd"], ["s", " GC", "&", "\u00c3", "-", " myriad", " gc", " s"], [" GC", "s", "\u00c3", "&", "GC", " gc", "-", "(gc"], [" GC", "GC", "s", " gc", "&", "(gc", "\u00c3", ".gc"], [" GC", "&", " &", "\u00c3", "@", " gc", "GC", "<|endoftext|>"], ["<|endoftext|>", "  \n\n", " \n\n", "@", "\n\n", "&", " @", "   \n\n"], [" GC", ".gc", " ``", "(gc", " `%", "GC", "trash", " %+"], [" GC", " ``", " --", ".gc", "GC", " &", " %+", "\u00c3"], [" --", " &", " GC", " ...", " ``", " `", " ,", " &#"], [" GC", " ____", " --", " ...", " _", " ...\\", " \n\n", " \n  \n"], [" GC", " ____", " JVM", " ...", " ___", " _____", " \n  \n", " \n\n"], [" ``", " GC", " _", " ,", " garbage", " `_", " ._", " `"], [" ,", " _", " \n\n", " --", " `", "\n\n", " ...", " @"], [" ...", " _", " ._", " ____", " .", " ,", " GC", " ___"], [" ...", " ____", " ___", " _____", " ._", " ....", " .**", " __"], [" ...", " .**", " ____", " ._", "_.", " ___", " ....", " \n"], [" .**", " .", " garbage", " dead", " GC", " .*", " memory", " kills"], [" .**", " dead", " garbage", " catastrophic", " kills", " .", " memory", " .*"], ["-heavy", " crashes", " JVM", " garbage", " meltdown", " optimizations", " glitches", "/memory"], ["/memory", " JVM", " lifecycle", " glitches", " meltdown", "-heavy", " depletion", " glitch"], [" JVM", " optimizations", "/memory", " overclock", "-heavy", " downtime", "/runtime", " lifecycle"], [" optimizations", " slowdown", " JVM", " latency", " glitches", " overclock", " runtime", " downtime"], [" optimizations", " latency", " downtime", " slowdown", " glitches", " JVM", " optimization", " overclock"], [" garbage", " JVM", " optimizations", " glitches", " latency", " downtime", " slowdown", " overclock"], [" garbage", "\u5783\u573e", " cleanup", " scav", " trash", " JVM", "\u5783\u573e\u5904\u7406", " downtime"], [" garbage", "\u5783\u573e", " cleanup", " downtime", " optimizations", " JVM", " scav", " trash"], [" garbage", " cleanup", "\u5783\u573e", " downtime", " latency", " crashes", " glitches", " delays"], [" garbage", " cleanup", " downtime", " crashes", " interruptions", " latency", "\u5783\u573e", " glitches"], [" garbage", " crashes", " interruptions", " downtime", " cleanup", " latency", " spikes", " glitches"], [" interruptions", " crashes", " garbage", " glitches", " spikes", " downtime", " latency", " pauses"], [" interruptions", " crashes", " garbage", " spikes", " glitches", " unpredictable", " downtime", " disruptions"], [" interruptions", " crashes", " spikes", " glitches", " downtime", " disruptions", " unpredictable", " garbage"], [" crashes", " glitches", " interruptions", " spikes", " disruptions", " bursts", " downtime", " unpredictable"], [" interruptions", " glitches", " spikes", " crashes", " disruptions", " bursts", "-trigger", " crises"], [" interruptions", " glitches", " bursts", " crashes", " disruptions", " spikes", "-trigger", " downtime"], [" interruptions", " glitches", "-trigger", " Cleanup", " interference", " disruptions", " Chaos", " downtime"], [" interruptions", " downtime", " bursts", " spikes", "-trigger", " interrupts", "/G", " fragmentation"], [" interruptions", " downtime", " spikes", ".**", " latency", " bursts", " fragmentation", " interrupts"], [" spikes", " interruptions", " downtime", " latency", " pauses", " GC", " bursts", " crashes"], [" GC", "GC", " gc", "(gc", " garbage", "gc", ".gc", "_GC"], [" GC", " garbage", "GC", "\u5783\u573e", " latency", "(gc", " gc", " trash"], [" GC", "GC", " garbage", "(gc", "\u5783\u573e", " gc", "gc", " Gar"], [" GC", "GC", " pauses", " latency", "(gc", " gc", " garbage", " Pause"], [" GC", "GC", " pauses", "(gc", " Pause", " latency", " gc", " garbage"], [" pauses", " latency", " GC", " Pause", " spikes", "GC", " pause", " stalls"], [" pauses", " Pause", " pause", " latency", " spikes", " stalls", " cycles", " GC"], [" pauses", " Pause", " pause", " latency", " Pa", " Stops", " stalls", " GC"], [" Pa", " Pause", " pauses", " Lat", " Pressure", " Stops", " GC", " Thr"]], "p": [[0.0355, 0.026, 0.0139, 0.0102, 0.0102, 0.009, 0.0051, 0.0044], [0.1708, 0.0432, 0.0381, 0.0358, 0.0336, 0.0217, 0.0192, 0.0159], [0.0906, 0.0751, 0.0663, 0.0455, 0.0333, 0.0244, 0.0157, 0.0157], [0.033, 0.0227, 0.0213, 0.02, 0.0188, 0.0083, 0.0083, 0.0061], [0.4314, 0.0333, 0.0333, 0.0259, 0.0148, 0.0139, 0.0108, 0.009], [0.2846, 0.0265, 0.011, 0.0081, 0.0076, 0.0063, 0.0059, 0.0059], [0.2681, 0.1843, 0.0438, 0.0234, 0.022, 0.0182, 0.0161, 0.0161], [0.2683, 0.1436, 0.0987, 0.0678, 0.0466, 0.025, 0.0183, 0.0111], [0.5288, 0.0434, 0.036, 0.0318, 0.0263, 0.0247, 0.0181, 0.017], [0.0596, 0.0436, 0.0409, 0.0339, 0.0248, 0.0248, 0.0206, 0.0182], [0.2886, 0.1062, 0.0286, 0.0237, 0.0223, 0.0209, 0.0184, 0.0144], [0.0318, 0.0247, 0.0193, 0.0117, 0.0091, 0.0086, 0.0086, 0.0086], [0.1234, 0.0214, 0.0147, 0.0138, 0.0115, 0.007, 0.0061, 0.0051], [0.1799, 0.0427, 0.0215, 0.0215, 0.0139, 0.0108, 0.0079, 0.0062], [0.1342, 0.0494, 0.0361, 0.0171, 0.0171, 0.016, 0.0141, 0.0097], [0.1495, 0.0907, 0.0428, 0.0229, 0.0179, 0.0168, 0.0079, 0.0074], [0.2393, 0.1062, 0.0286, 0.0269, 0.0237, 0.0093, 0.0056, 0.005], [0.2645, 0.0914, 0.0231, 0.0217, 0.0192, 0.0149, 0.0096, 0.0085], [0.3675, 0.0302, 0.0266, 0.0235, 0.0126, 0.0118, 0.0111, 0.0098], [0.2314, 0.0485, 0.0294, 0.0215, 0.019, 0.0178, 0.0168, 0.0148], [0.9214, 0.0246, 0.014, 0.0038, 0.0021, 0.0016, 0.0012, 0.001], [0.1089, 0.0293, 0.0201, 0.0095, 0.0048, 0.0048, 0.0045, 0.0042], [0.1776, 0.0509, 0.0165, 0.0129, 0.0114, 0.0094, 0.0057, 0.0057], [0.0806, 0.0358, 0.0316, 0.0246, 0.0159, 0.014, 0.0109, 0.0102], [0.0388, 0.0236, 0.0236, 0.0162, 0.0105, 0.0081, 0.0076, 0.0067], [0.0338, 0.0298, 0.016, 0.015, 0.0124, 0.0091, 0.0086, 0.008], [0.0341, 0.0171, 0.0098, 0.0076, 0.0071, 0.0067, 0.0059, 0.0056], [0.0841, 0.0543, 0.0256, 0.0213, 0.02, 0.0188, 0.0166, 0.0156], [0.0532, 0.0251, 0.0251, 0.0196, 0.0162, 0.0119, 0.0112, 0.0098], [0.364, 0.2074, 0.0717, 0.0339, 0.0233, 0.0193, 0.016, 0.0133], [0.116, 0.0904, 0.0484, 0.0276, 0.0202, 0.0157, 0.0139, 0.0101], [0.0346, 0.012, 0.0082, 0.0077, 0.0068, 0.006, 0.005, 0.005], [0.0138, 0.0089, 0.0074, 0.0074, 0.0065, 0.0061, 0.0058, 0.0058], [0.0088, 0.0064, 0.006, 0.0057, 0.005, 0.0042, 0.0042, 0.0039], [0.008, 0.007, 0.0062, 0.0046, 0.0043, 0.0035, 0.0033, 0.0033], [0.0106, 0.0078, 0.0069, 0.0053, 0.0053, 0.0037, 0.0037, 0.0037], [0.024, 0.0155, 0.0137, 0.0128, 0.0078, 0.0078, 0.0069, 0.0057], [0.0466, 0.0171, 0.0142, 0.0111, 0.0092, 0.0081, 0.0071, 0.0063], [0.0704, 0.0243, 0.0243, 0.019, 0.019, 0.0167, 0.0122, 0.009], [0.4155, 0.119, 0.0207, 0.0142, 0.0125, 0.0092, 0.0086, 0.0086], [0.3291, 0.0886, 0.0369, 0.0145, 0.0128, 0.0113, 0.0106, 0.0093], [0.277, 0.0658, 0.0352, 0.0214, 0.0201, 0.0177, 0.0156, 0.0122], [0.1807, 0.0429, 0.023, 0.023, 0.0216, 0.0203, 0.019, 0.0179], [0.0729, 0.0567, 0.0344, 0.0252, 0.0237, 0.0196, 0.0196, 0.0184], [0.077, 0.068, 0.068, 0.0439, 0.0321, 0.0195, 0.0183, 0.0172], [0.0869, 0.0721, 0.0527, 0.0495, 0.0411, 0.0265, 0.0206, 0.0161], [0.0991, 0.0772, 0.053, 0.053, 0.0267, 0.0235, 0.0208, 0.0162], [0.0803, 0.0754, 0.0709, 0.0666, 0.0278, 0.0261, 0.0203, 0.0158], [0.1031, 0.0855, 0.0709, 0.0519, 0.0458, 0.0404, 0.0203, 0.014], [0.1211, 0.069, 0.0505, 0.0474, 0.0419, 0.0369, 0.027, 0.0136], [0.0882, 0.0569, 0.0324, 0.0209, 0.0185, 0.0174, 0.0163, 0.0153], [0.2212, 0.0494, 0.0264, 0.0264, 0.0193, 0.0171, 0.0151, 0.0141], [0.1597, 0.0969, 0.0709, 0.0379, 0.0356, 0.023, 0.0216, 0.0168], [0.0945, 0.0834, 0.0475, 0.037, 0.0224, 0.0211, 0.0198, 0.0186], [0.7277, 0.2362, 0.0092, 0.0043, 0.0043, 0.0038, 0.0014, 0.0013], [0.454, 0.3536, 0.0789, 0.0542, 0.0065, 0.0065, 0.0065, 0.005], [0.8394, 0.1136, 0.0287, 0.0044, 0.0039, 0.0039, 0.003, 0.0008], [0.7946, 0.1218, 0.0212, 0.0187, 0.0088, 0.0078, 0.0054, 0.0054], [0.8306, 0.1274, 0.0092, 0.0072, 0.0063, 0.0063, 0.0034, 0.0026], [0.3861, 0.2654, 0.076, 0.076, 0.0592, 0.028, 0.0218, 0.0192], [0.7252, 0.1428, 0.0464, 0.0464, 0.0091, 0.0041, 0.0041, 0.0023], [0.4684, 0.4134, 0.0436, 0.0233, 0.0091, 0.0055, 0.0041, 0.0028], [0.4424, 0.3446, 0.0528, 0.0466, 0.0161, 0.0126, 0.0086, 0.0081]], "ranks": {"Kotlin": [41206, 34291, 18384, 5401, 11045, 22851, 22617, 58790, 49032, 102850, 70841, 46881, 30082, 89059, 161874, 102513, 121623, 61844, 73559, 131129, 142852, 32138, 50116, 93655, 26679, 8124, 6777, 24274, 5912, 3533, 4234, 8749, 11091, 803, 561, 423, 311, 274, 514, 500, 827, 1261, 739, 913, 725, 2936, 2891, 4956, 5001, 8766, 9330, 8081, 1397, 666, 347, 192, 179, 305, 261, 622, 1695, 4500, 2493]}}, {"pos": 477, "top": [["\u00a0\u00a0", ".", " ", " \u00a0", ",.", "\u00a0\u00a0\u00a0", "-", "\u00a0\u00a0\u00a0\u00a0"], ["ughter", "consts", "\uc368", "\u0648\u0631\u0634", "visor", "=@\"", " *@", "allel"], ["consts", "ughter", "conds", "visor", "cean", "AtA", "enco", "rowsing"], ["consts", "odle", " **\u25a0", " Shemale", " milfs", " Bbw", " \u0412\u0441\u0442\u0440\u0435", "AtA"], ["AtA", "consts", " @(", " @_", " \u2014", "(pa", "rowsing", " *@"], ["consts", "AtA", " \u300d", "astiche", "conds", "(pa", "empa", "ctions"], ["(pa", "_pa", "AtA", "ifu", "ipa", "_PA", "STA", " \u00bb\u00bb"], [" _)", " *))", "jabi", "AtA", " **\u25a0", " &)", "astiche", "consts"], [" _)", "licted", " &)", "?\u00bb", " %#", " *))", "consts", "ughter"], ["astiche", "(pa", "haps", "licted", "undry", "ptime", "_pa", ".rl"], [" @(", "(pa", " _)", " @_", " &)", ",@", "haps", "//@"], ["haps", "astiche", "ousel", "ptime", "rompt", "licted", " Ejem", " _)"], ["ptime", "astiche", "rompt", "conds", "riors", " Ejem", " Palav", "ughs"], ["ptime", "astiche", "riors", "(pa", "rompt", "llum", "ctions", "conds"], [" requisite", "ptime", "(pa", "_pa", "ights", "\u00f1a", "Pa", "llum"], ["ptime", "ights", "rompt", "(pa", "astiche", "ctions", "haps", "_pa"], ["ptime", "ights", "ctions", "ft", "thers", " requisite", "Pa", "(pa"], ["ptime", "ctions", "ights", "conds", "(pa", "riors", "haps", "thers"], ["ptime", "ctions", "haps", "rompt", "conds", "riors", "ughs", "ights"], ["ptime", "haps", "rompt", "ctions", "thers", "unce", "conds", "(pa"], ["ptime", "(pa", "haps", "rompt", "ksam", "Pa", "hti", "ctions"], ["ptime", "ksam", "conds", "dden", "raquo", "ughs", "haps", "retty"], ["ptime", "conds", "haps", "ksam", "dden", " %#", "ctions", " %+"], ["ptime", "haps", "ights", "ksam", "Millis", " moments", " %#", "hti"], ["ptime", "haps", "?...", "uptime", "ights", "\u671f\u4e2d", " %#", "Though"], ["ptime", "uptime", "haps", "ights", "\u671f\u4e2d", "Milliseconds", "conds", "oseconds"], ["ptime", " pauses", "ights", "uptime", " timeouts", "Milliseconds", " moments", " milliseconds"], [" moments", " @", "ptime", " time", " hours", "ights", " ?", " pauses"], ["ptime", " moments", " pauses", "ights", " milliseconds", " hours", " restart", " timeouts"], [" pauses", "ights", "ptime", " timeouts", " moments", " shutdown", " crashes", " milliseconds"], [" pauses", " moments", "ptime", "ights", " shutdown", " pause", " crashes", " glitches"], [" moments", " pauses", " restart", " time", " ...", " hours", " pause", " shutdown"], ["ptime", " pauses", " moments", "ights", " restart", " shutdown", " crashes", " resets"], ["ptime", "uptime", " glitches", "losures", " timeouts", " glitch", "Milliseconds", " pauses"], ["ptime", "uptime", " pauses", " glitches", " glitch", "Milliseconds", "losures", " pause"], ["ptime", "Milliseconds", " milliseconds", "uptime", "ynchronously", " optimizations", " *\u2013", " pauses"], ["ptime", "Milliseconds", " milliseconds", " latency", " timeouts", " pauses", "ynchronously", "uptime"], ["ptime", " milliseconds", "Milliseconds", " latency", " pauses", " pause", " Pause", " timeouts"], ["ptime", " milliseconds", " pauses", "Milliseconds", " timeouts", " latency", " pause", " interruptions"], [" milliseconds", " pauses", "Milliseconds", " microseconds", "ptime", " timeouts", " pause", " latency"], [" pauses", " milliseconds", " microseconds", "Milliseconds", " timeouts", " interruptions", "ptime", " pause"], [" pauses", " milliseconds", " timeouts", " microseconds", "Milliseconds", " pause", "\u505c\u987f", " interruptions"], [" pauses", " interruptions", " pause", " milliseconds", " microseconds", " timeouts", "\u505c\u987f", " Pause"], [" interruptions", " pauses", " milliseconds", " pause", " microseconds", " timeouts", " spikes", " glitches"], [" interruptions", " pauses", " milliseconds", " spikes", " glitches", " pause", " microseconds", " timeouts"], [" interruptions", " pauses", " spikes", " microseconds", " milliseconds", " latency", " glitches", " delays"], [" interruptions", " pauses", " spikes", " glitches", " microseconds", " Pause", " pause", " bursts"], [" interruptions", " spikes", " pauses", " InterruptedException", " glitches", " microseconds", " milliseconds", " Pause"], [" interruptions", " InterruptedException", " spikes", "\u95f4\u6b47", " glitches", " interrupts", " microseconds", " pauses"], [" interruptions", " spikes", " glitches", " InterruptedException", "\u95f4\u6b47", " interrupts", " Interrupt", " bursts"], [".**", "**.", " interruptions", "*.", "{}.", " InterruptedException", " interrupts", "\u95f4\u6b47"], [".**", " interruptions", "**.", " interrupts", "*.", ".*", ".\"", " Interrupt"], [".**", ".\"", ".*", " interruptions", ".\u00bb", ".`", ".\")", ".\"."], [".**", ".\"", " interruptions", ".*", ".\u00bb", ".\")", ".)", ".`"], [".**", ".\"", ".\u00bb", ".*", ".`", ".\")", ".)", ".\"."], [" garbage", "\u5783\u573e", ".**", " GC", "GC", ".gc", " Gar", ".\""], [" GC", "GC", " garbage", " gc", "gc", "\u5783\u573e", "_gc", ".gc"], [" GC", "GC", " Pause", " pauses", "\u505c\u987f", "\u6682\u505c", " pause", " gc"], [" GC", "GC", " Pause", " pauses", "\u505c\u987f", "gc", " gc", " pause"], [" pauses", " Pause", " GC", " pause", "GC", " Stops", "\u6682\u505c", "\u505c\u987f"], [" pauses", " pause", " Pause", "\u6682\u505c", "\u505c\u987f", "Pause", " GC", "pause"], [" Pause", " pause", " pauses", "\u505c\u987f", " GC", "\u6682\u505c", "Pause", "pause"], ["uses", "auses", "user", "using", " pauses", " GC", "GC", "use"]], "p": [[0.5019, 0.0439, 0.0207, 0.0183, 0.0134, 0.0092, 0.0081, 0.0072], [0.0171, 0.0142, 0.0086, 0.0063, 0.0041, 0.0023, 0.0022, 0.0019], [0.0632, 0.0097, 0.0071, 0.0052, 0.0046, 0.0023, 0.0022, 0.0018], [0.0087, 0.0081, 0.0072, 0.0046, 0.0038, 0.0036, 0.003, 0.003], [0.0145, 0.012, 0.0061, 0.0044, 0.0044, 0.0039, 0.0035, 0.0029], [0.0132, 0.0097, 0.0036, 0.0028, 0.0024, 0.0022, 0.0022, 0.002], [0.0122, 0.0089, 0.0079, 0.0048, 0.0037, 0.0035, 0.0033, 0.0026], [0.0091, 0.0043, 0.0043, 0.004, 0.004, 0.0033, 0.0033, 0.0028], [0.0105, 0.005, 0.0044, 0.0041, 0.0036, 0.0032, 0.003, 0.0022], [0.0072, 0.0068, 0.0064, 0.0047, 0.0028, 0.0025, 0.0025, 0.0021], [0.0101, 0.0083, 0.0069, 0.0065, 0.0051, 0.0051, 0.0051, 0.0042], [0.0062, 0.0055, 0.0043, 0.0038, 0.0031, 0.0029, 0.0029, 0.0029], [0.0102, 0.0031, 0.0027, 0.0026, 0.0026, 0.0024, 0.0021, 0.002], [0.0114, 0.0037, 0.0029, 0.0021, 0.002, 0.0019, 0.0019, 0.0017], [0.0101, 0.0083, 0.0078, 0.0031, 0.0027, 0.0025, 0.0025, 0.0023], [0.021, 0.003, 0.0028, 0.0027, 0.0025, 0.0025, 0.0022, 0.0022], [0.02, 0.0078, 0.0065, 0.0037, 0.0029, 0.0025, 0.0024, 0.0024], [0.0358, 0.0066, 0.0052, 0.0052, 0.0045, 0.0029, 0.0028, 0.0028], [0.016, 0.0063, 0.0036, 0.0034, 0.0031, 0.003, 0.0023, 0.0022], [0.0154, 0.0047, 0.0039, 0.0034, 0.0025, 0.0024, 0.0022, 0.0021], [0.0058, 0.0031, 0.0031, 0.0029, 0.0026, 0.0026, 0.0023, 0.0023], [0.0186, 0.006, 0.0037, 0.0028, 0.0025, 0.0024, 0.0024, 0.0024], [0.023, 0.0062, 0.0045, 0.0038, 0.0031, 0.0029, 0.0023, 0.0021], [0.0146, 0.0061, 0.0035, 0.0029, 0.0027, 0.0024, 0.0024, 0.0021], [0.0163, 0.0064, 0.005, 0.0032, 0.0032, 0.0027, 0.0027, 0.0022], [0.0862, 0.008, 0.0059, 0.0055, 0.004, 0.0036, 0.0033, 0.0031], [0.056, 0.0117, 0.0097, 0.0067, 0.0055, 0.0046, 0.0046, 0.0043], [0.0353, 0.0259, 0.0138, 0.0122, 0.0115, 0.0108, 0.0108, 0.0101], [0.0278, 0.0216, 0.0203, 0.0191, 0.0109, 0.0102, 0.0075, 0.007], [0.0209, 0.0174, 0.0144, 0.0119, 0.0093, 0.0087, 0.0077, 0.0077], [0.0431, 0.0261, 0.0191, 0.018, 0.0131, 0.0102, 0.0102, 0.0096], [0.0222, 0.0222, 0.0173, 0.0162, 0.0134, 0.0119, 0.0098, 0.0077], [0.0273, 0.0226, 0.0212, 0.0121, 0.0114, 0.01, 0.0083, 0.0073], [0.0296, 0.0055, 0.0043, 0.0038, 0.0035, 0.0035, 0.0029, 0.0024], [0.045, 0.0114, 0.0061, 0.0054, 0.0051, 0.0051, 0.0039, 0.0039], [0.0308, 0.0113, 0.0069, 0.0065, 0.0039, 0.0037, 0.003, 0.003], [0.0471, 0.0268, 0.0209, 0.0173, 0.0093, 0.0093, 0.0093, 0.0087], [0.0639, 0.0342, 0.0235, 0.0235, 0.0207, 0.0152, 0.0134, 0.0126], [0.079, 0.0697, 0.0655, 0.0615, 0.0309, 0.0309, 0.02, 0.0176], [0.0739, 0.0652, 0.0508, 0.0308, 0.029, 0.0212, 0.0199, 0.0176], [0.0623, 0.0517, 0.0428, 0.0313, 0.0294, 0.0277, 0.026, 0.0215], [0.1539, 0.1057, 0.0683, 0.0603, 0.0365, 0.0365, 0.0343, 0.0343], [0.2268, 0.1465, 0.0574, 0.0539, 0.037, 0.0271, 0.0254, 0.0239], [0.1489, 0.1399, 0.0621, 0.0401, 0.0354, 0.0312, 0.0275, 0.0228], [0.1818, 0.1604, 0.046, 0.0358, 0.0336, 0.0336, 0.0297, 0.0204], [0.2932, 0.0952, 0.0654, 0.0273, 0.0256, 0.0226, 0.0212, 0.02], [0.2884, 0.0826, 0.0685, 0.0237, 0.0222, 0.0196, 0.0144, 0.0144], [0.1399, 0.0427, 0.0259, 0.0228, 0.0189, 0.0178, 0.0147, 0.0138], [0.0586, 0.0277, 0.0244, 0.0216, 0.0179, 0.0123, 0.0115, 0.0079], [0.115, 0.0273, 0.0241, 0.0226, 0.0213, 0.0176, 0.0083, 0.0083], [0.1906, 0.102, 0.0513, 0.0375, 0.0156, 0.013, 0.0122, 0.0095], [0.3038, 0.0926, 0.0562, 0.0301, 0.0265, 0.0207, 0.0182, 0.0161], [0.8323, 0.0566, 0.0112, 0.0098, 0.0064, 0.006, 0.0044, 0.0036], [0.6801, 0.0763, 0.0193, 0.0117, 0.011, 0.0103, 0.0086, 0.0076], [0.641, 0.041, 0.0233, 0.0194, 0.016, 0.011, 0.011, 0.011], [0.4829, 0.13, 0.1078, 0.0839, 0.0396, 0.0078, 0.0073, 0.0073], [0.5692, 0.2373, 0.0873, 0.0152, 0.0134, 0.0118, 0.0104, 0.0104], [0.3015, 0.1614, 0.1424, 0.1109, 0.0979, 0.0524, 0.0462, 0.015], [0.5079, 0.2117, 0.1, 0.0607, 0.0223, 0.0174, 0.0153, 0.0153], [0.2797, 0.2178, 0.1029, 0.0707, 0.0486, 0.0403, 0.0314, 0.0295], [0.4539, 0.2753, 0.1892, 0.0146, 0.0137, 0.0083, 0.0073, 0.0061], [0.3196, 0.2821, 0.2821, 0.015, 0.0116, 0.0109, 0.0109, 0.0062], [0.8676, 0.0169, 0.0116, 0.0109, 0.0103, 0.008, 0.0075, 0.0026]], "ranks": {"Kotlin": [109956, 155103, 32206, 18923, 53663, 63334, 12373, 45599, 95652, 138542, 123521, 84386, 32330, 35995, 108947, 51638, 52391, 33183, 32590, 64482, 108123, 35382, 92707, 140196, 89359, 14942, 5673, 39039, 7968, 1725, 2703, 3418, 5973, 489, 321, 257, 208, 188, 459, 208, 430, 1020, 559, 550, 596, 2738, 1862, 2335, 4847, 9266, 16820, 15924, 9208, 5746, 1936, 623, 767, 887, 687, 1310, 5456, 16228, 11694]}}, {"pos": 478, "top": [[".", ",", "\u2013", " \u2013", "a", " ", ";", "ly"], [" (\u201e", " \u200b\u200b", "ly", " \uff1a", "\u201e", " \uff08", " \uff0c", " \u2013,"], [",", ".", "\u2013", "\u2013and", " \u200b\u200b", ".\u2013", " (\u201e", ",."], [" Nues", " Shemale", " Ejem", " Guta", " milfs", " Blowjob", " demu", " Geile"], [" \u200b\u200b", " (@", "//@", ",", "!", ".", " \u2014", " ($."], [" \u200b\u200b", " \").", " Pergun", " \uff1a", " \uff08", "%!", "!\u201d.", " )->"], [" \u200b\u200b", " _.", "   \n", "%!", " \u3002", "!", "         \n", " \n"], ["   \n", " _.", " \u200b\u200b", " \n", "!.", " \t\n", " \n        \n", "    \n"], ["!.", "!\u201d.", " \n    \n", " \u200b\u200b", " \n            \n", " _.", " \n        \n", " \n"], ["\u52e4\u52e4\u6073\u6073", " Pergun", " Ejem", "\u2014and", " Ouver", "\u2014but", " Pregun", " amid"], [" \u2014", "\u2014and", "\u2014but", "...", " \n", " ...\\", "\u2014", " amid"], [" Ouver", " Pergun", "\u52e4\u52e4\u6073\u6073", " momentarily", "OMUX", " amid", " \n        \n", "aufen"], [" Ouver", " Pergun", "\u52e4\u52e4\u6073\u6073", " amid", " momentarily", " Ejem", " triggered", " Palav"], [" momentarily", " amid", " midway", " triggered", " Pergun", " preempt", " rapid", " lingering"], [" \u2014", " --", " midway", " momentarily", " rapidly", " amid", " swiftly", " rapid"], [" \u2014", " --", " swiftly", " midway", " amid", " lingering", " momentarily", " bolster"], [" amid", " lingering", " swiftly", " midway", " \u2014", " moments", " myriad", " --"], [" amid", " --", " \u2014", " lingering", " midway", " tweaks", " hefty", " moments"], [" --", " \u2014", " amid", " lingering", " swiftly", " midway", " hefty", " tweaks"], [" --", " \u2014", " amid", " swiftly", " myriad", " midway", " rapidly", " lingering"], [" --", " \u2014", " swiftly", " amid", " \n\n", " myriad", "<|endoftext|>", " midway"], [" --", " amid", " lingering", " midway", " swiftly", " momentarily", "ksam", " fleeting"], [" --", " amid", " midway", " swiftly", " lingering", " momentarily", " rapidly", " ?"], [" --", " \u2014", " ,", " amid", " rapidly", " swiftly", " midway", " ?"], [" --", " \n\n", " \u2014", " ...", " ---", " amid", " swiftly", " ?"], [" --", " \n\n", " ...", " ?", " ---", " \u2014", " \n  \n", " ...\\"], [" --", " \n\n", " \u2014", " moments", " ?", " rapidly", " amid", " heavily"], [" \n\n", " --", " ,", "\n\n", " ...", " ?", " @", " _"], [" \n\n", " ...", " --", " ?", " \n", "\n\n", " ,", " \n  \n"], [" ...", " \n\n", " \n", " \n  \n", " --", " ___", " ...\\", " ____"], [" ...", " \n", " \n\n", " .", " during", " \n  \n", " ,", " ?"], [" .", " during", " ...", " ,", " critical", " heavily", " rapid", " time"], [" catastrophic", " rapid", " critical", " \u2014", " heavily", " rapidly", " during", " ."], [" \u2014", " heavily", " catastrophic", " rapid", " critical", " \u2013", " triggered", " rapidly"], [" catastrophic", " relentless", " triggered", " \u2014", " meticulously", " spikes", " heavily", " overclock"], [" \u2014", " catastrophic", " relentless", " overclock", " triggered", " meticulously", " critical", " \u2013"], [" \u2014", " catastrophic", " relentless", " notoriously", " overclock", " rapidly", " jitter", " triggered"], [" catastrophic", " \u2014", " relentless", " critical", " triggered", " overclock", " notoriously", " inevitable"], [" catastrophic", " \u2014", " relentless", " critical", " rapidly", " triggered", " notoriously", " inevitable"], [" relentless", " catastrophic", " jitter", " critical", " unpredictable", " rapidly", " triggered", " milliseconds"], [" catastrophic", " relentless", " jitter", " rapidly", " triggered", " critical", " unpredictable", " crashes"], [" catastrophic", " jitter", " crashes", " triggered", " relentless", " critical", " unpredictable", " milliseconds"], [" catastrophic", " critical", " jitter", " unpredictable", " triggered", " crashes", " spikes", " relentless"], [" catastrophic", " crashes", " critical", " spikes", " relentless", " triggered", " jitter", " bursts"], [" catastrophic", " crashes", " relentless", " critical", " spikes", " triggered", " unpredictable", " bursts"], [" critical", " catastrophic", " relentless", " unpredictable", " inevitable", " crashes", " crippling", " explosions"], [" inevitable", " relentless", " catastrophic", " crashes", " crippling", " critical", " relentlessly", " Critical"], [" inevitable", " relentless", " relentlessly", " crippling", " catastrophic", " drastically", " crashes", " Critical"], [".**", " relentlessly", " inevitable", " relentless", " .**", " .", " crippling", " inevitably"], [".**", ".", "**.", "*.", ".\"", ".*", "\\.", " Combined"], [".**", "**.", "*.", ".", ".*", "().", ".\"", " ()."], [".**", ".*", "*.", "**.", ".", ".\"", "().", " .**"], [".**", ".*", ".\"", ".`", ".</", " .**", ".)", ".\u00bb"], [".**", ".*", ".\"", ".`", ".</", ".", " .**", ".\u00bb"], [".**", ".*", ".`", ".\"", ".</", " .**", ".)", ".\u00bb"], [".**", ".*", ".`", ".\"", ".</", ".\u00bb", " .**", ".)"], [".**", ".*", " .**", ".\"", ".`", "\u3002**", ".\u00bb", ").**"], [".**", ".*", " .**", ".`", ".\"", ".\u00bb", "\u3002**", ".</"], [".**", ".*", ".`", " .**", ".\"", "**.", ".\u00bb", ".</"], [".**", ".*", " .**", ".\"", ".`", ".\u00bb", ".'", ".</"], [".**", ".*", ".\"", ".\u00bb", ".`", ".'", " .**", ".)"], [".**", ".*", " on", ".\"", ".\u00bb", ".`", ".'", "**."], [".**", "**.", " .**", " on", ".\"", "**", "\u3002**", ").**"]], "p": [[0.517, 0.4026, 0.0147, 0.0138, 0.0114, 0.0078, 0.0074, 0.0031], [0.1603, 0.0757, 0.0431, 0.0169, 0.0132, 0.0124, 0.0109, 0.0109], [0.4247, 0.2742, 0.1143, 0.0199, 0.0199, 0.0155, 0.01, 0.0078], [0.0392, 0.0127, 0.0099, 0.0099, 0.006, 0.0056, 0.0053, 0.005], [0.0827, 0.0367, 0.0237, 0.0119, 0.0112, 0.0099, 0.0082, 0.0072], [0.2375, 0.0063, 0.0038, 0.0038, 0.0036, 0.003, 0.0026, 0.0026], [0.1117, 0.0207, 0.0063, 0.0052, 0.0052, 0.0046, 0.0043, 0.0043], [0.0496, 0.0496, 0.0234, 0.0125, 0.0081, 0.0067, 0.0063, 0.0063], [0.0531, 0.0499, 0.0365, 0.0365, 0.0195, 0.0173, 0.0173, 0.0143], [0.0169, 0.0116, 0.0052, 0.0048, 0.0043, 0.0031, 0.0026, 0.0022], [0.0938, 0.0324, 0.0153, 0.0087, 0.0082, 0.0082, 0.0082, 0.0064], [0.0058, 0.0058, 0.0051, 0.0038, 0.0033, 0.0031, 0.0021, 0.0019], [0.0065, 0.0065, 0.0039, 0.0037, 0.0037, 0.0035, 0.0033, 0.0024], [0.0062, 0.004, 0.0038, 0.0033, 0.003, 0.0028, 0.0026, 0.0024], [0.1896, 0.0373, 0.0226, 0.0094, 0.0089, 0.0078, 0.0054, 0.0047], [0.1441, 0.0321, 0.0221, 0.0172, 0.0118, 0.0092, 0.0081, 0.0081], [0.0221, 0.0152, 0.0142, 0.0134, 0.0126, 0.0118, 0.0111, 0.0111], [0.0342, 0.0195, 0.0183, 0.0142, 0.0126, 0.0111, 0.0092, 0.0086], [0.1474, 0.0449, 0.0422, 0.0146, 0.0146, 0.0107, 0.01, 0.0089], [0.3677, 0.093, 0.0439, 0.0321, 0.0126, 0.0118, 0.0104, 0.0092], [0.2862, 0.0989, 0.0342, 0.0235, 0.0143, 0.0134, 0.0111, 0.0086], [0.0558, 0.0318, 0.0097, 0.0076, 0.0046, 0.004, 0.0036, 0.0034], [0.7413, 0.012, 0.0041, 0.0039, 0.0034, 0.0028, 0.0028, 0.0028], [0.7444, 0.01, 0.0073, 0.006, 0.0047, 0.0039, 0.0027, 0.0027], [0.6014, 0.1112, 0.0233, 0.0059, 0.0043, 0.0038, 0.0034, 0.0034], [0.3565, 0.1792, 0.0293, 0.0189, 0.0138, 0.0095, 0.0079, 0.0058], [0.3328, 0.0291, 0.0188, 0.01, 0.0094, 0.0078, 0.0074, 0.0069], [0.4394, 0.195, 0.0409, 0.0361, 0.0233, 0.0219, 0.0097, 0.0076], [0.5204, 0.0377, 0.0377, 0.0259, 0.013, 0.0095, 0.0084, 0.0079], [0.5483, 0.1571, 0.108, 0.0188, 0.0137, 0.0129, 0.0065, 0.0065], [0.2853, 0.173, 0.1266, 0.0282, 0.0151, 0.0125, 0.0125, 0.0111], [0.09, 0.0746, 0.0658, 0.0513, 0.0166, 0.0156, 0.0114, 0.0107], [0.0281, 0.0219, 0.0219, 0.0205, 0.0193, 0.015, 0.0141, 0.0125], [0.1037, 0.0297, 0.0231, 0.0159, 0.0132, 0.0132, 0.0116, 0.0109], [0.0364, 0.0143, 0.0134, 0.0118, 0.0118, 0.0111, 0.0098, 0.0087], [0.1476, 0.0241, 0.0213, 0.0176, 0.0146, 0.0107, 0.0094, 0.0089], [0.0962, 0.0312, 0.0259, 0.0157, 0.0115, 0.0108, 0.0101, 0.0101], [0.0415, 0.0344, 0.0209, 0.0173, 0.0144, 0.0127, 0.0119, 0.0119], [0.0381, 0.0316, 0.0297, 0.0246, 0.0217, 0.0169, 0.0132, 0.0124], [0.0339, 0.0299, 0.0219, 0.0206, 0.0193, 0.0181, 0.0181, 0.0133], [0.0362, 0.0265, 0.0249, 0.0206, 0.0182, 0.0182, 0.0171, 0.0161], [0.0451, 0.033, 0.0274, 0.0257, 0.0227, 0.02, 0.0177, 0.0156], [0.0453, 0.0311, 0.0243, 0.0228, 0.0228, 0.0214, 0.0189, 0.0177], [0.0396, 0.0309, 0.024, 0.0212, 0.0199, 0.0155, 0.0155, 0.0146], [0.0464, 0.0234, 0.0206, 0.0206, 0.0151, 0.0151, 0.0142, 0.0125], [0.0398, 0.031, 0.0257, 0.02, 0.0156, 0.0138, 0.0138, 0.0101], [0.051, 0.0423, 0.0241, 0.0188, 0.0166, 0.0166, 0.0156, 0.0137], [0.0312, 0.0243, 0.0201, 0.0157, 0.013, 0.013, 0.0122, 0.0115], [0.036, 0.0298, 0.0263, 0.0247, 0.011, 0.0091, 0.0091, 0.0091], [0.2074, 0.1258, 0.1043, 0.0673, 0.0193, 0.015, 0.0117, 0.0091], [0.3143, 0.2447, 0.2447, 0.0795, 0.0375, 0.0228, 0.0079, 0.0058], [0.6359, 0.1105, 0.0975, 0.0759, 0.0218, 0.0192, 0.0046, 0.0043], [0.9678, 0.0201, 0.0065, 0.0027, 0.0007, 0.0005, 0.0002, 0.0002], [0.9627, 0.0257, 0.0051, 0.0027, 0.0007, 0.0005, 0.0004, 0.0003], [0.9563, 0.0225, 0.0073, 0.0073, 0.0024, 0.0007, 0.0006, 0.0005], [0.9448, 0.0285, 0.0082, 0.0082, 0.0023, 0.0016, 0.0013, 0.001], [0.999, 0.0003, 0.0003, 0.0001, 0.0001, 0.0001, 0.0, 0.0], [0.9989, 0.0003, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001, 0.0], [0.9981, 0.0007, 0.0002, 0.0002, 0.0002, 0.0002, 0.0001, 0.0], [0.9966, 0.0013, 0.0007, 0.0005, 0.0003, 0.0002, 0.0001, 0.0001], [0.9916, 0.0036, 0.0015, 0.001, 0.0007, 0.0004, 0.0002, 0.0002], [0.9948, 0.0012, 0.001, 0.0007, 0.0006, 0.0003, 0.0003, 0.0002], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Kotlin": [201297, 83147, 40666, 5937, 16231, 27418, 25047, 74734, 71946, 129024, 111294, 65244, 44417, 81811, 130948, 85569, 86006, 63746, 73404, 139612, 178255, 88327, 126599, 178006, 130272, 41168, 35212, 59854, 24185, 22148, 30580, 28927, 25842, 18871, 20341, 18882, 39256, 53660, 56742, 61632, 63323, 56928, 63782, 55485, 54143, 96201, 101709, 114057, 93566, 74567, 51912, 35078, 35763, 24972, 16324, 3761, 2083, 2321, 1586, 730, 850, 115, 142]}}, {"pos": 479, "top": [[" \u2013", "  \n", "\u2013", ".", "\u2026..", "**\u2013", "   \n", " \u2013**"], [" \u2013**", "**\u2013", " **\u2013", ";**", "-**", " **'", " (**", " **:**"], ["\u2026**", " \u2013**", "\uff1f**", "**\u2013", "\u3002**", "\uff1a**", "-**", ";**"], [" **\u3010", " **\u201e", "\uff1f**", "\uff1a**", " -**", " **\u25a0", " **:**", " **>>"], [" -**", " **\u3010", " **\u201e", "-**", " **\u201c", "\uff1a**", " **)", " **:**"], [" **\u3010", "-**", " **\u201e", " **\u201c", " -**", " **", "\uff1a**", " **)"], [" -**", " **\u3010", " **\u201e", "\uff1a**", "\uff1f**", "\u3002**", " **", "\uff01**"], [" **\u201e", " **\u3010", " -**", "-**", " **", "\uff1a**", " **'", "\uff01**"], [" **\u3010", " **\u201e", " **\u2018", "\uff1a**", " **\u201c", " -**", " **'", " **"], [" **\u201e", " -**", " **", " **\u3010", " **'", "-**", " **\u2018", " **>>"], [" -**", " **", " **\u3010", " **\u201e", " **'", " **\u2018", "-**", "...**"], [" **", " **'", " **\u201e", " **\u3010", " -**", " **\u2018", " '**", " **\u300c"], [" **", " **\u201e", " **\u3010", " **'", " -**", "-**", " **\u2018", " '**"], [" **", " **\u201e", " **\u2018", " **'", "-**", " -**", " '**", "\u2026**"], [" --", " **", " folks", " **\u2018", " arguably", " -**", " incredibly", " **'"], [" --", " **", " folks", " incredibly", " arguably", " plenty", " pretty", " swiftly"], ["s", " **", " folks", " incredibly", " arguably", " myriad", "\u2026**", " plenty"], [" **", "...**", "\u2026**", " **'", " **\u2018", " folks", " -**", "s"], [" **", "...**", " **'", " incredibly", " !**", " -**", " **\u201e", "\u2026**"], [" --", " incredibly", " arguably", " **", " utterly", " swiftly", " myriad", " truly"], ["<|endoftext|>", " swiftly", " myriad", "\n\n", " utterly", " though", " arguably", " --"], [" **", " !**", " **'", " **\u201e", " incredibly", " arguably", " **\u25a0", " --"], [" --", " **", " incredibly", " arguably", " swiftly", " !**", " utterly", " myriad"], [" --", " arguably", " swiftly", " incredibly", " merely", " utterly", " **", " myriad"], ["\n\n", " \n\n", " --", "...**", "  \n\n", " **", " utterly", "\r\n\r\n"], [" **", " **'", " **\u2018", "...**", " !**", " -**", " **\u3010", " --"], [" **", " --", "\n\n", " \n\n", " **'", " utterly", " **\u2018", " incredibly"], ["\n\n", " **", " \n\n", " --", " arguably", " incredibly", " swiftly", " utterly"], [" **", "\n\n", " \n\n", " --", " incredibly", " arguably", " **'", " myriad"], [" \n\n", " **", "\n\n", "  \n\n", " --", " incredibly", " ...", "...**"], [" \n\n", "\n\n", " **", " ...", "  \n\n", " \u2026", " incredibly", " --"], [" **", " ...", "\n\n", " incredibly", " \n\n", " countless", " --", " heavily"], [" incredibly", " relentlessly", " heavily", " relentless", " countless", " truly", " huge", " massive"], [" incredibly", " relentlessly", " relentless", " heavily", " fundamentally", " notoriously", " massively", " deeply"], [" relentlessly", " relentless", " incredibly", " heavily", " notoriously", " aggressively", " fundamentally", " massively"], [" relentless", " relentlessly", " notoriously", " incredibly", " heavily", " fundamentally", " massively", " aggressively"], [" relentlessly", " relentless", " notoriously", " incredibly", " heavily", " aggressively", " fundamentally", " massively"], [" relentlessly", " relentless", " fundamentally", " notoriously", " incredibly", " inherently", " heavily", " aggressively"], [" relentless", " relentlessly", " fundamentally", " incredibly", " inherently", " notoriously", "\u6839\u672c\u65e0\u6cd5", " massively"], [" relentless", " relentlessly", " incredibly", " inherently", " fundamentally", " inevitable", " notoriously", "\u6839\u672c\u65e0\u6cd5"], [" relentless", " relentlessly", " incredibly", " inherently", " fundamentally", " heavily", " inevitable", " massively"], [" relentless", " relentlessly", " inherently", " aggressively", " fundamentally", " incredibly", " rapidly", " heavily"], [" inherently", " relentless", " relentlessly", " fundamentally", " incredibly", " aggressively", " notoriously", " massively"], [" inherently", " relentless", " notoriously", " incredibly", " relentlessly", " aggressively", " fundamentally", " massively"], [" inherently", " relentless", " heavily", " notoriously", " aggressively", " massive", " relentlessly", " massively"], [" inherently", " notoriously", " fundamentally", " relentless", " heavily", " massively", " inevitable", " aggressively"], [" inherently", " fundamentally", " relentless", " inevitable", " massively", " relentlessly", " inevitably", " notoriously"], [" inherently", " fundamentally", " relentless", " relentlessly", " heavily", " inevitable", " massively", " notoriously"], ["\u6839\u672c\u65e0\u6cd5", " relentless", " inevitable", " fundamentally", " relentlessly", " inherently", " inevitably", "\u4e0d\u4f1a\u56e0\u4e3a"], ["  \n", "\u6839\u672c\u65e0\u6cd5", "  \n\n", "\u4efb\u4f55\u5f62\u5f0f\u7684", " \uc544\ubb34\ub9ac", "\u4e0d\u4f1a\u56e0\u4e3a", " relentless", " inherently"], ["  \n", " \n", "  \n\n", " \n\n", "   \n", "  \r\n", "  \n  \n", "    \n"], ["  \n", " \n", "  \n\n", " \n\n", "   \n", "\n", "    \n", "\n\n"], ["  \n", " \n", "  \n\n", " \n\n", "   \n", "  \n  \n", "    \n", "\n\n"], ["  \n", " \n", "   \n", " \n\n", "  \n\n", "\n", "  \n  \n", "    \n"], ["  \n", " \n", " \n\n", "   \n", "  \n\n", "\n", "    \n", "  \n  \n"], ["  \n", " \n", " mid", " Mid", ".mid", "Mid", " \n\n", "mid"], ["  \n", "\n\n", " mid", " Kotlin", " \n", " Mid", "\n", " \n\n"], ["  \n", "\n\n", " mid", " Kotlin", " Mid", "\n", " Middleware", "Mid"], ["  \n", "\n\n", " Mid", " mid", " Kotlin", "Mid", "\n", " \n"], [" Mid", " mid", "Mid", "mid", ".mid", "_mid", " Kotlin", " MID"], [" Mid", " mid", "Mid", "\n\n", " Kotlin", ".mid", "mid", " MID"], [" Mid", " Kotlin", "\n\n", " mid", "\n", "Mid", " \n\n", "  \n"], [" Mid", " Kotlin", "\n", "  \n", "\n\n", " \n", " mid", " Android"]], "p": [[0.9437, 0.0126, 0.0119, 0.0093, 0.005, 0.003, 0.0023, 0.0014], [0.6168, 0.0946, 0.065, 0.0394, 0.0271, 0.0211, 0.0145, 0.01], [0.4976, 0.098, 0.0763, 0.0594, 0.0408, 0.036, 0.0318, 0.0281], [0.2949, 0.1085, 0.0957, 0.0618, 0.0618, 0.0546, 0.0399, 0.0399], [0.4077, 0.1168, 0.1168, 0.0709, 0.0709, 0.043, 0.023, 0.0179], [0.2489, 0.151, 0.1332, 0.1176, 0.049, 0.0433, 0.0433, 0.0297], [0.3185, 0.2811, 0.0554, 0.0554, 0.0336, 0.0296, 0.0296, 0.0231], [0.3269, 0.1983, 0.1203, 0.0568, 0.0501, 0.039, 0.0345, 0.0144], [0.33, 0.33, 0.0348, 0.0348, 0.0307, 0.0271, 0.0271, 0.0239], [0.1305, 0.1152, 0.0791, 0.0744, 0.0698, 0.0698, 0.0579, 0.0424], [0.3224, 0.1523, 0.1186, 0.0635, 0.0635, 0.0494, 0.0206, 0.0194], [0.3882, 0.126, 0.0866, 0.0866, 0.0675, 0.0525, 0.0319, 0.0264], [0.2281, 0.1777, 0.0839, 0.0654, 0.0654, 0.0509, 0.0478, 0.0396], [0.2213, 0.1724, 0.0867, 0.0814, 0.0494, 0.0464, 0.03, 0.0264], [0.2163, 0.1909, 0.0376, 0.0258, 0.0147, 0.0138, 0.013, 0.0115], [0.1677, 0.0898, 0.0545, 0.0481, 0.0213, 0.0177, 0.0138, 0.0129], [0.2618, 0.0905, 0.0705, 0.0377, 0.0259, 0.0243, 0.0202, 0.0167], [0.5866, 0.2771, 0.0618, 0.0074, 0.0069, 0.0048, 0.0031, 0.0029], [0.5289, 0.1946, 0.0218, 0.0205, 0.017, 0.015, 0.0117, 0.0117], [0.0722, 0.0438, 0.0363, 0.0341, 0.0341, 0.032, 0.0283, 0.0265], [0.169, 0.0377, 0.0259, 0.0215, 0.0215, 0.0202, 0.0202, 0.0157], [0.0959, 0.0311, 0.0177, 0.0167, 0.0167, 0.0101, 0.0095, 0.0089], [0.1008, 0.089, 0.0175, 0.0165, 0.0165, 0.0155, 0.0136, 0.0106], [0.2021, 0.02, 0.0188, 0.0177, 0.0177, 0.0166, 0.0166, 0.0156], [0.5081, 0.3082, 0.0305, 0.0127, 0.0119, 0.0105, 0.0044, 0.0036], [0.6287, 0.0516, 0.0259, 0.0215, 0.0168, 0.0139, 0.0123, 0.0115], [0.2129, 0.0326, 0.0326, 0.0254, 0.0175, 0.0175, 0.012, 0.0113], [0.1578, 0.1019, 0.1019, 0.07, 0.0138, 0.0122, 0.0107, 0.0107], [0.2888, 0.1865, 0.0777, 0.0324, 0.0185, 0.0135, 0.0112, 0.0072], [0.3522, 0.3522, 0.054, 0.024, 0.0187, 0.0145, 0.0094, 0.0057], [0.3624, 0.249, 0.1176, 0.1038, 0.0232, 0.0097, 0.0097, 0.0036], [0.3997, 0.0695, 0.0652, 0.0541, 0.0508, 0.0137, 0.0113, 0.0083], [0.1086, 0.0425, 0.0292, 0.0275, 0.0242, 0.0214, 0.0214, 0.0201], [0.0708, 0.0518, 0.0295, 0.0295, 0.0245, 0.0203, 0.0179, 0.0158], [0.0748, 0.0582, 0.0514, 0.0293, 0.0228, 0.0178, 0.0157, 0.0147], [0.0721, 0.0636, 0.0528, 0.0341, 0.032, 0.0182, 0.0151, 0.0151], [0.0552, 0.0487, 0.043, 0.0245, 0.0216, 0.0203, 0.0191, 0.0149], [0.0788, 0.074, 0.035, 0.0308, 0.0272, 0.0256, 0.0212, 0.0212], [0.0866, 0.0813, 0.0409, 0.0318, 0.0299, 0.0264, 0.0181, 0.015], [0.1274, 0.0773, 0.0469, 0.0365, 0.0343, 0.0208, 0.0208, 0.0172], [0.138, 0.0738, 0.0508, 0.0371, 0.0289, 0.0225, 0.0225, 0.0199], [0.1013, 0.0577, 0.051, 0.0241, 0.0226, 0.0212, 0.0187, 0.0176], [0.0831, 0.0733, 0.0392, 0.0325, 0.0287, 0.0253, 0.0238, 0.0197], [0.095, 0.0509, 0.0328, 0.0309, 0.0256, 0.0226, 0.0226, 0.0212], [0.078, 0.0368, 0.0269, 0.0253, 0.0253, 0.0223, 0.021, 0.0197], [0.1422, 0.0407, 0.0317, 0.0298, 0.0263, 0.0263, 0.0263, 0.0247], [0.1369, 0.0688, 0.0504, 0.0504, 0.0253, 0.0238, 0.0223, 0.021], [0.1519, 0.0717, 0.0361, 0.0299, 0.0264, 0.0233, 0.0206, 0.0181], [0.1435, 0.0411, 0.0363, 0.0265, 0.0249, 0.0249, 0.0207, 0.0182], [0.3385, 0.0588, 0.0158, 0.0149, 0.0123, 0.0123, 0.007, 0.0062], [0.9824, 0.0085, 0.0045, 0.0017, 0.0012, 0.0002, 0.0002, 0.0001], [0.9569, 0.0327, 0.003, 0.0027, 0.0021, 0.0003, 0.0003, 0.0002], [0.8932, 0.0504, 0.0238, 0.0185, 0.0053, 0.0021, 0.0005, 0.0004], [0.9113, 0.0748, 0.0037, 0.0033, 0.0029, 0.002, 0.0004, 0.0003], [0.7859, 0.1987, 0.0068, 0.0028, 0.0019, 0.0015, 0.0004, 0.0002], [0.4507, 0.2734, 0.114, 0.0288, 0.0145, 0.0136, 0.0113, 0.01], [0.5577, 0.0969, 0.0458, 0.0458, 0.0404, 0.0315, 0.0315, 0.0278], [0.3216, 0.221, 0.1044, 0.0718, 0.0633, 0.0384, 0.0264, 0.0206], [0.3031, 0.1622, 0.1432, 0.1432, 0.0465, 0.0362, 0.0319, 0.0249], [0.713, 0.2043, 0.0663, 0.0102, 0.0023, 0.0014, 0.0007, 0.0007], [0.6895, 0.2239, 0.0389, 0.0111, 0.0087, 0.0068, 0.0068, 0.0032], [0.5481, 0.178, 0.1079, 0.0655, 0.0241, 0.0213, 0.0146, 0.0073], [0.3755, 0.3313, 0.201, 0.0396, 0.0212, 0.0094, 0.0039, 0.0025]], "ranks": {"Kotlin": [220788, 115224, 98292, 19947, 25472, 40148, 58863, 79062, 62548, 98990, 80774, 66236, 42818, 44548, 112804, 60055, 67781, 46979, 50987, 150039, 169487, 102083, 125423, 172537, 158381, 80472, 89431, 127021, 84642, 73536, 98284, 69065, 117694, 141486, 181261, 153279, 161962, 161030, 153794, 140435, 148866, 121562, 98773, 84170, 103295, 142061, 155719, 139236, 103533, 59638, 22053, 5003, 2427, 1017, 382, 9, 3, 4, 5, 7, 5, 2, 2]}}, {"pos": 480, "top": [[" \u2013", ".", "\u2013", " \u2013,", ".\u2013", "\u2013and", ",", "\u200b\u200b"], [" \u2013", "**\u2013", " \u2013**", "\u2013and", " \u2013,", "\u2013", ".\u2013", "ly"], ["\u2013", " \u2013", ".", ".\u2013", "\u2013and", "\u3002", "\u2026..", " \u2013,"], [" **\u201e", "\u52a0\u62ff\u5927", " milfs", "\uff1f**", " cumshot", "``", "*\u201c.", "raries"], ["ly", "\u4e2d", " **\u201e", " *@", "\u7684", "a", "\u52a0\u62ff\u5927", "!\u201c"], ["\u4e2d", " **\u201e", "\u5728", "\uff1f**", "\u52a0\u62ff\u5927", "\uff01", "\uff1f", "\u7684"], ["\u4e2d", "\u5728", "\u548c", "\u7684", "\uff01", "\uff1f", "\u3002", "\uff1f**"], [" **\u201e", "\u4e2d", "ly", "\u5728", "\uff1f**", "\u7684", "\u52a0\u62ff\u5927", "**!"], [" **\u201e", "   \n\n", "\u4e2d", "ly", "    \n\n", " *\u201e", " *@", "**!"], [" **\u201e", "\u52a0\u62ff\u5927", "\u65b0\u52a0\u5761", "ly", "raries", "aufen", "ingas", " milfs"], [" **\u201e", "ly", "\u52a0\u62ff\u5927", " *\u201e", "a", "raries", "\u0627", "\u0441\u044f"], [" **\u201e", "\u52a0\u62ff\u5927", " milfs", " *\u201e", "htags", " **\u3010", "raries", " handjob"], [" **\u201e", " milfs", "\u52a0\u62ff\u5927", "htags", " **:", " cumshot", " **.**", " handjob"], [" **\u201e", "\u52a0\u62ff\u5927", " milfs", "raries", "pedia", "ly", " freaking", "htags"], [" **\u201e", "ly", "\u52a0\u62ff\u5927", " busted", "aider", "a", "aft", " incredibly"], [" incredibly", "ly", " busted", " alot", " seperate", " freaking", " kids", " folks"], ["a", " incredibly", "ly", " folks", "ing", " standout", " busted", " hefty"], [" incredibly", "a", " **\u201e", " folks", "ly", "**!", "-**", " busted"], [" incredibly", " **\u201e", " folks", " busted", "ly", " savvy", " hefty", " battling"], [" incredibly", "a", " folks", " battling", "ly", " swiftly", " arguably", " utterly"], [" incredibly", "a", " swiftly", " myriad", " arguably", " battling", " vastly", " though"], [" incredibly", " **\u201e", " arguably", " busted", " skyrocket", "\u62e5\u6709\u7740", " battling", " impactful"], [" --", " incredibly", " swiftly", " arguably", " battling", "\u62e5\u6709\u7740", " myriad", " vastly"], [" --", " swiftly", " arguably", " incredibly", " battling", " myriad", " vastly", " looming"], ["\n\n", " \n\n", "  \n\n", "   \n\n", "\r\n\r\n", " --", " swiftly", " arguably"], [" **", " arguably", " incredibly", " swiftly", " --", " **\u2018", " vastly", " famously"], [" arguably", " incredibly", " swiftly", " battling", " --", " sprawling", " vastly", " myriad"], ["\n\n", " arguably", " --", " incredibly", " swiftly", " \n\n", " vastly", " **"], ["\n\n", " \n\n", " arguably", "  \n\n", " incredibly", " **", " --", "\r\n\r\n"], ["\n\n", " \n\n", "  \n\n", " incredibly", " arguably", " **", "   \n\n", " --"], ["\n\n", " \n\n", "  \n\n", " incredibly", " \u2013", " arguably", " just", " --"], [" incredibly", " \u2013", " just", " \u2014", " massive", " heavily", "\n\n", " truly"], [" \u2013", " incredibly", " heavily", " arguably", " just", " essentially", " rapidly", " massive"], [" \u2013", " incredibly", " heavily", " relentlessly", " arguably", " essentially", " aggressively", " fundamentally"], [" incredibly", " relentlessly", " heavily", " aggressively", " \u2013", " relentless", " arguably", " massively"], [" \u2013", " relentlessly", " heavily", " incredibly", " relentless", " aggressively", " notoriously", " arguably"], [" relentlessly", " incredibly", " aggressively", " relentless", " heavily", " \u2013", " notoriously", " brutally"], [" relentlessly", " incredibly", " \u2013", " relentless", " aggressively", " heavily", " massively", " rapidly"], [" incredibly", " relentlessly", " relentless", " \u2013", " aggressively", " heavily", " rapidly", " massively"], [" incredibly", " relentlessly", " relentless", " aggressively", " \u2013", " rapidly", " brutally", " heavily"], [" incredibly", " relentlessly", " relentless", " aggressively", " rapidly", " heavily", " massively", " massive"], [" aggressively", " incredibly", " rapidly", " relentless", " relentlessly", " heavily", " massively", " massive"], [" incredibly", " aggressively", " relentless", " relentlessly", " rapidly", " heavily", " massively", " massive"], [" aggressively", " incredibly", " relentless", " rapidly", " relentlessly", " heavily", " massive", " massively"], [" aggressively", " rapidly", " relentless", " incredibly", " relentlessly", " heavily", " massive", " massively"], [" aggressively", " rapidly", " relentless", " relentlessly", " heavily", " incredibly", " fundamentally", " brutally"], [" aggressively", " relentless", " rapidly", " fundamentally", " incredibly", " relentlessly", " massively", "  \n\n"], [" aggressively", " **", " relentless", " rapidly", " relentlessly", " fundamentally", " heavily", " incredibly"], [" **", "-**", " **\"", " **\u2013", " **+", " **-", " **#", " relentless"], ["\u6839\u672c\u65e0\u6cd5", "-**", "\u4e0d\u662f\u56e0\u4e3a", " \uc544\ubb34\ub9ac", " **\u2013", " relentless", " **+", "\u4efb\u4f55\u5f62\u5f0f\u7684"], ["\u6839\u672c\u65e0\u6cd5", " \uc544\ubb34\ub9ac", "\u4e0d\u662f\u56e0\u4e3a", "\u4efb\u4f55\u5f62\u5f0f\u7684", "-**", "\u4e94\u989c\u516d\u8272\u7684", "\u6beb\u4e0d\u72b9\u8c6b\u5730", "\u4efb\u4f55\u5a92\u4f53"], ["\u6839\u672c\u65e0\u6cd5", "Attempting", " attempting", " Attempt", " *[", " *\"", " *\u201c", "-**"], [" *\u201c", "Attempting", " attempting", "\u6839\u672c\u65e0\u6cd5", "-**", " \uc544\ubb34\ub9ac", " *\"", " achieving"], [" attempting", "Attempting", " Motorola", "-**", " *\u201c", " Attempt", " Trying", " achieving"], [" attempting", "Attempting", "\u8bd5\u56fe", " Attempt", " Trying", " Attempts", " trying", " achieving"], [" Mid", " mid", "Mid", ".mid", "_mid", " Middleware", "mid", " Kotlin"], [" Mid", " mid", " Kotlin", "Mid", ".mid", " Android", " Middleware", "mid"], [" Mid", " mid", "Mid", " Kotlin", " Android", " Middleware", ".mid", "mid"], [" Mid", " mid", "Mid", " Android", " Kotlin", ".mid", " Middleware", "_mid"], [" Mid", " mid", "Mid", "mid", ".mid", "_mid", " Kotlin", " MID"], [" Mid", " mid", "Mid", ".mid", " Kotlin", "mid", "_mid", " MID"], [" Mid", "Mid", " Kotlin", " mid", " Android", "mid", ".mid", " MID"], ["Mid", "K", " Mid", " Kotlin", "Android", " mid", "mid", "On"]], "p": [[0.7324, 0.2378, 0.0143, 0.0028, 0.0025, 0.0019, 0.0012, 0.0011], [0.1806, 0.1406, 0.1321, 0.0753, 0.0429, 0.0295, 0.0203, 0.0179], [0.4506, 0.3097, 0.1139, 0.037, 0.0198, 0.0175, 0.0128, 0.0078], [0.0656, 0.02, 0.0166, 0.0156, 0.0101, 0.0089, 0.0061, 0.0054], [0.2528, 0.0564, 0.0468, 0.0284, 0.0235, 0.0208, 0.0195, 0.0183], [0.0813, 0.0764, 0.0435, 0.0384, 0.0384, 0.0318, 0.0281, 0.017], [0.4209, 0.0882, 0.0417, 0.0391, 0.0269, 0.0237, 0.021, 0.0197], [0.3395, 0.0628, 0.0358, 0.0316, 0.0262, 0.018, 0.0149, 0.014], [0.2786, 0.1401, 0.0294, 0.0243, 0.0229, 0.0178, 0.0139, 0.013], [0.1617, 0.1183, 0.0133, 0.0091, 0.0091, 0.0076, 0.004, 0.0038], [0.2151, 0.2151, 0.0227, 0.0213, 0.0107, 0.0101, 0.0089, 0.0089], [0.4235, 0.01, 0.01, 0.0073, 0.005, 0.0047, 0.0042, 0.0042], [0.3624, 0.0132, 0.0103, 0.0062, 0.0052, 0.004, 0.004, 0.0038], [0.1383, 0.0226, 0.0094, 0.0088, 0.0042, 0.0037, 0.0037, 0.0035], [0.022, 0.0194, 0.0151, 0.0151, 0.0086, 0.0071, 0.0067, 0.0056], [0.1003, 0.0287, 0.0164, 0.0164, 0.0136, 0.0106, 0.0099, 0.0093], [0.3048, 0.093, 0.0412, 0.0302, 0.0195, 0.0143, 0.0111, 0.0086], [0.1028, 0.0966, 0.0664, 0.0486, 0.0295, 0.0216, 0.0168, 0.0168], [0.2023, 0.0898, 0.0257, 0.02, 0.0147, 0.0129, 0.0089, 0.0084], [0.2373, 0.0564, 0.0207, 0.0195, 0.0183, 0.0134, 0.0134, 0.0076], [0.0842, 0.048, 0.033, 0.02, 0.02, 0.0188, 0.0188, 0.0114], [0.0299, 0.015, 0.008, 0.0049, 0.0049, 0.0046, 0.0038, 0.0036], [0.0293, 0.0275, 0.0201, 0.0201, 0.0115, 0.007, 0.0065, 0.0058], [0.0605, 0.0345, 0.0324, 0.0209, 0.0173, 0.0163, 0.0105, 0.0082], [0.6256, 0.0901, 0.0702, 0.0189, 0.0095, 0.0051, 0.0035, 0.0035], [0.0546, 0.0157, 0.0147, 0.0122, 0.0115, 0.0101, 0.0074, 0.0069], [0.0164, 0.0154, 0.0136, 0.0113, 0.0106, 0.0106, 0.0082, 0.0073], [0.1106, 0.0433, 0.0433, 0.028, 0.0263, 0.0192, 0.0141, 0.0124], [0.3484, 0.0443, 0.0345, 0.0345, 0.0237, 0.0223, 0.0127, 0.0119], [0.3413, 0.2346, 0.207, 0.0218, 0.016, 0.0103, 0.0075, 0.0067], [0.2805, 0.1032, 0.0458, 0.038, 0.0203, 0.0203, 0.014, 0.0116], [0.1157, 0.0582, 0.0311, 0.0242, 0.0228, 0.0201, 0.0189, 0.0189], [0.1068, 0.0306, 0.0254, 0.021, 0.0186, 0.0186, 0.0154, 0.0144], [0.0921, 0.0525, 0.0339, 0.0299, 0.0299, 0.0248, 0.0233, 0.017], [0.0489, 0.0406, 0.0316, 0.0297, 0.0279, 0.0231, 0.0204, 0.0149], [0.2669, 0.0361, 0.0361, 0.0319, 0.0264, 0.0248, 0.016, 0.016], [0.065, 0.0506, 0.0475, 0.0446, 0.0307, 0.0288, 0.0224, 0.0224], [0.0629, 0.0521, 0.049, 0.046, 0.046, 0.0316, 0.0204, 0.0192], [0.0776, 0.0644, 0.0534, 0.039, 0.0324, 0.0222, 0.0222, 0.0196], [0.091, 0.0625, 0.0625, 0.0314, 0.0295, 0.0295, 0.0203, 0.0203], [0.1127, 0.0603, 0.0567, 0.0442, 0.0344, 0.0323, 0.0252, 0.0209], [0.0684, 0.0642, 0.0642, 0.05, 0.05, 0.0285, 0.0184, 0.0184], [0.0885, 0.0831, 0.0537, 0.0473, 0.0346, 0.0287, 0.021, 0.021], [0.1019, 0.1019, 0.0745, 0.0545, 0.0452, 0.0352, 0.0274, 0.0258], [0.0982, 0.0525, 0.0525, 0.0361, 0.0339, 0.0339, 0.0264, 0.0206], [0.0964, 0.0799, 0.0355, 0.0333, 0.0333, 0.019, 0.0178, 0.0168], [0.0772, 0.0601, 0.044, 0.0322, 0.0302, 0.0267, 0.0235, 0.0208], [0.1016, 0.0698, 0.0374, 0.031, 0.0291, 0.0273, 0.0241, 0.0227], [0.8245, 0.0161, 0.0104, 0.0063, 0.0063, 0.0049, 0.0036, 0.0034], [0.0228, 0.0228, 0.0089, 0.007, 0.0065, 0.0065, 0.0058, 0.0058], [0.0182, 0.016, 0.0151, 0.011, 0.0063, 0.0043, 0.0038, 0.0038], [0.0294, 0.0158, 0.0139, 0.0084, 0.0079, 0.0074, 0.0074, 0.0066], [0.0183, 0.0172, 0.0151, 0.0134, 0.0086, 0.0081, 0.0067, 0.0063], [0.0182, 0.0142, 0.0104, 0.0091, 0.0086, 0.0063, 0.0059, 0.0059], [0.2384, 0.0824, 0.0774, 0.0366, 0.0323, 0.0222, 0.0208, 0.0143], [0.4742, 0.4185, 0.0268, 0.0184, 0.0098, 0.0098, 0.0098, 0.0068], [0.5641, 0.1831, 0.0674, 0.0595, 0.0281, 0.0281, 0.0219, 0.0103], [0.5904, 0.1917, 0.0705, 0.0549, 0.0229, 0.0202, 0.0139, 0.0123], [0.6449, 0.1848, 0.1121, 0.0134, 0.0134, 0.0092, 0.0063, 0.0049], [0.7349, 0.2106, 0.047, 0.0034, 0.0021, 0.001, 0.0005, 0.0002], [0.7671, 0.1939, 0.0297, 0.0031, 0.0019, 0.0017, 0.0009, 0.0007], [0.7163, 0.0969, 0.0969, 0.0666, 0.0062, 0.0043, 0.0038, 0.0026], [0.8492, 0.0697, 0.0479, 0.02, 0.0039, 0.0022, 0.0016, 0.0006]], "ranks": {"Kotlin": [171406, 70204, 86245, 7837, 4939, 9089, 24096, 43155, 37653, 28027, 26155, 8229, 5238, 7807, 59764, 25855, 62689, 44519, 73973, 178088, 188371, 115801, 142785, 191440, 190582, 131311, 137871, 160492, 124141, 129673, 167893, 183882, 198691, 182002, 203105, 163803, 166554, 150253, 139453, 139860, 154338, 143036, 116865, 98020, 124309, 126353, 142557, 129246, 66396, 23087, 7868, 1265, 295, 88, 47, 8, 3, 4, 4, 7, 5, 2, 4]}}, {"pos": 481, "top": [["\u2013", ".", ",", " \u2013", "\u00a0", "\u2013and", "-", "["], ["\u2013and", "lier", " \uff5e", "son", "\u00adi", "liest", "\u00ad", " \u0640\u0640"], ["\u2013", "\u2013and", "\u200b\u200b", " \u2013", ".\u2013", " \u200b\u200b", " \u2014\u2014", "son"], [" \u0640\u0640", "irectional", "weise", " Hidal", "ronic", " milfs", "ewire", "ieras"], ["ly", "ronic", " \u2014\u2014", "lich", " \u0640\u0640", "&nbsp", "son", "irectional"], ["ly", "ronic", "irectional", "mond", "neighbor", " \u0640\u0640", "rid", ",mid"], ["ly", "ronic", "irectional", ",mid", "mond", " \u2014\u2014", " \u0640\u0640", "rid"], ["irectional", "ronic", "ly", "mond", "athon", "weise", " \u0640\u0640", "ivin"], ["irectional", " \u0640\u0640", "athon", "&nbsp", "\u00adi", "weise", "ronic", "mond"], ["irectional", "\u00adi", " \u00ad", "\u00ading", "&nbsp", "ronic", "parentId", ",mid"], ["&nbsp", " \u00ad", "irectional", "ly", "ronic", "\u00adi", "ward", " \u0640\u0640"], ["irectional", " \u0640\u0640", "ewire", "ronic", "ivin", "omid", " Hidal", "iversary"], ["irectional", " \u0640\u0640", "ewire", "ronic", "ivin", "ivial", "omid", "ustrial"], ["irectional", "ronic", "ewire", "ivin", "omid", " \u0640\u0640", ",mid", "repid"], ["irectional", ",mid", "ivin", "ronic", " \u0640\u0640", "ewire", "-era", "[mid"], ["irectional", ",mid", "ilin", "ronic", "repid", " \u0640\u0640", "ewire", "-low"], [",mid", "irectional", "ewire", "-low", "ronic", "-ish", "-tier", "-market"], ["irectional", ",mid", "ewire", " \u0640\u0640", "ivial", "-tech", "--)", "erval"], ["irectional", ",mid", " \u0640\u0640", "--)", "ewire", "omid", "erval", "-market"], ["--)", " \u0640\u0640", ",mid", "irectional", " //--", "[mid", "\u54b1", "//--"], ["\u54b1", "Mid", "--)", " \u0640\u0640", " --", "[mid", ",mid", "irectional"], ["irectional", "ewire", "--)", "ivin", " \u0640\u0640", " MEDIAM", " iParam", "Sharper"], [" --", " \u0640\u0640", "--)", " {{--<", "irectional", " iParam", "\u54b1", "&eacute"], [" --", " \u2015", " {{--<", " \u0640\u0640", "Mid", " \u00ad", "\u0e48\u0e32\u0e27", "\u54b1"], [" --", "\u5373\u4fbf", "&nbsp", "\t\n\n", "\u54b1", " iParam", " \r\n\r\n", "--)"], ["amai", " <+", " pricey", " \u0640\u0640", "--)", " iParam", "\u54b1", " {{--<"], ["amai", "-market", " pricey", "--)", "-era", " \u0640\u0640", "irectional", "entimes"], [" --", " {{--<", "-era", "amai", " pricey", " arguably", "\u5373\u4fbf", " \u2015"], ["-era", "-market", "amai", " pricey", "-tech", " infrastr", "ewire", "-low"], [" **\u2014", "-era", " pricey", "amai", "-market", " infrastr", " <+", "-tech"], ["-era", " tech", "-heavy", " aggressively", " mid", "\u2011", " notoriously", "-tech"], ["\u2011", " high", " tech", " -", " mid", " aggressively", " massively", " low"], [" massively", " notoriously", " aggressively", " massive", " -", " high", " heavily", "\u2011"], [" notoriously", " massively", "\u2011", "\u2014even", "-tier", "-era", " aggressively", " \u0640\u0640"], [" notoriously", "-tier", "-era", "\u2011", " \u0640\u0640", "-tech", " massively", " insanely"], ["\u2011", " notoriously", "-tier", " overclock", "-tech", "-era", " hardware", "/fast"], [" notoriously", " overclock", "-tier", " hardware", " tech", "\u2011", "-tech", " crappy"], [" overclock", " hardware", " notoriously", "\u2011", "-tier", " crappy", " framerate", " tech"], [" overclock", " hardware", "-tier", "\u2011", " notoriously", "/fast", " tech", "-tech"], [" overclock", " hardware", " framerate", "\u2011", " CPUs", "-tier", "-tech", "-fast"], [" hardware", " overclock", " CPUs", " tech", " framerate", "-tech", "\u786c\u4ef6", " Hardware"], [" hardware", " overclock", " CPUs", " Hardware", "\u786c\u4ef6", "hardware", " tech", "-tech"], [" hardware", " overclock", " CPUs", " Hardware", " tech", "-tier", "hardware", " budgets"], [" hardware", " overclock", " CPUs", "-tier", "-low", "-budget", " Hardware", "\u786c\u4ef6"], [" hardware", " overclock", " CPUs", "-tier", " budgets", "-budget", " smartphones", "-low"], [" hardware", " budgets", "-tier", "-budget", " CPUs", " overclock", "-low", " mediocre"], [" hardware", " CPUs", "-tier", " budgets", " requires", "-budget", " GPUs", "-low"], [" CPUs", " budgets", " hardware", "-tier", "-budget", "-low", " requires", " laptops"], [" CPUs", " GPUs", "-tier", " budgets", " hardware", "-budget", " rigs", " laptops"], [" CPUs", "-tier", " GPUs", " budgets", "-budget", " rigs", " hardware", " laptops"], [" CPUs", "-tier", " GPUs", "\u673a\u578b", " hardware", " laptops", "\u786c\u4ef6", "-grade"], ["-tier", " CPUs", " GPUs", "-grade", "-range", " hardware", "\u673a\u578b", "aptops"], ["-tier", " CPUs", "-range", "-grade", "-priced", " hardware", " GPUs", "-budget"], ["-tier", "-range", "-grade", " hardware", " CPUs", " GPUs", "\u786c\u4ef6", "hardware"], ["-tier", "-range", " CPUs", "-grade", " GPUs", " hardware", "-priced", " Android"], ["-range", " Android", "-tier", "range", "Android", "-android", "-grade", "Range"], ["-range", " Android", "-tier", "range", "Android", "-android", "Range", "/android"], ["-range", " Android", "-tier", "range", "Android", "-android", " GPUs", " hardware"], ["-range", "-tier", " Android", "-android", "range", "-device", "Mid", "Android"], ["-range", " Android", "range", "Android", " range", "-tier", "-device", "Range"], ["-range", " range", "range", " Android", "Range", " Range", "_range", "Android"], ["-range", " Android", "range", " range", "Android", " Range", "Range", "-android"], ["-range", " Android", "-", " range", "-tier", "range", "-end", "-r"]], "p": [[0.2687, 0.1531, 0.112, 0.0929, 0.0929, 0.0235, 0.0221, 0.0134], [0.0725, 0.0365, 0.0172, 0.0172, 0.0126, 0.0126, 0.0126, 0.0098], [0.2984, 0.1324, 0.0666, 0.0404, 0.0245, 0.0216, 0.0191, 0.0179], [0.0195, 0.0111, 0.0098, 0.0063, 0.0041, 0.0038, 0.0028, 0.0023], [0.154, 0.0415, 0.0208, 0.0135, 0.0119, 0.0087, 0.0087, 0.0072], [0.0184, 0.0163, 0.0119, 0.0099, 0.0077, 0.006, 0.0053, 0.005], [0.0718, 0.0339, 0.0193, 0.011, 0.0097, 0.0076, 0.0076, 0.0071], [0.0194, 0.0161, 0.0111, 0.0076, 0.0063, 0.0063, 0.0049, 0.0043], [0.0176, 0.0156, 0.01, 0.0089, 0.0073, 0.0065, 0.005, 0.005], [0.0239, 0.0239, 0.0164, 0.0106, 0.0106, 0.0047, 0.0047, 0.0041], [0.1394, 0.0311, 0.0258, 0.0166, 0.0156, 0.0138, 0.0114, 0.0107], [0.0257, 0.0114, 0.0078, 0.0065, 0.0051, 0.0035, 0.0035, 0.0033], [0.0362, 0.0081, 0.0076, 0.0076, 0.0046, 0.0041, 0.0041, 0.0038], [0.0381, 0.0055, 0.0055, 0.0048, 0.004, 0.0038, 0.0029, 0.0028], [0.0365, 0.0063, 0.006, 0.0056, 0.0053, 0.0038, 0.0032, 0.0028], [0.0104, 0.0081, 0.0028, 0.0025, 0.0022, 0.0021, 0.0021, 0.0021], [0.0153, 0.0099, 0.0056, 0.0041, 0.0041, 0.0039, 0.0032, 0.003], [0.0116, 0.0109, 0.004, 0.0035, 0.0035, 0.0026, 0.0024, 0.0024], [0.0062, 0.0062, 0.0062, 0.0054, 0.0048, 0.0029, 0.0026, 0.0024], [0.011, 0.0076, 0.0059, 0.0043, 0.0038, 0.0038, 0.0036, 0.0036], [0.0071, 0.0067, 0.0063, 0.004, 0.0033, 0.003, 0.0028, 0.0026], [0.0085, 0.0046, 0.004, 0.0035, 0.0031, 0.0029, 0.0026, 0.0024], [0.0102, 0.0055, 0.0051, 0.004, 0.0035, 0.0031, 0.0029, 0.0027], [0.0252, 0.0053, 0.0053, 0.0025, 0.0023, 0.0022, 0.0022, 0.0021], [0.0055, 0.004, 0.004, 0.0038, 0.0035, 0.0035, 0.0033, 0.0033], [0.0061, 0.0044, 0.0037, 0.0035, 0.0029, 0.0027, 0.0027, 0.0025], [0.0058, 0.0055, 0.0048, 0.0033, 0.0029, 0.0029, 0.0028, 0.0026], [0.0129, 0.0057, 0.0039, 0.0037, 0.0035, 0.0027, 0.0024, 0.0022], [0.013, 0.0084, 0.0079, 0.007, 0.0054, 0.0051, 0.004, 0.004], [0.0173, 0.0152, 0.0098, 0.0092, 0.0081, 0.0063, 0.006, 0.006], [0.0302, 0.0208, 0.0134, 0.0126, 0.0104, 0.0092, 0.0081, 0.0072], [0.0224, 0.0154, 0.0112, 0.0106, 0.0106, 0.0099, 0.0093, 0.0088], [0.024, 0.0155, 0.0145, 0.01, 0.0094, 0.0088, 0.0088, 0.0088], [0.0171, 0.0171, 0.0171, 0.0125, 0.0118, 0.0092, 0.0076, 0.0063], [0.0146, 0.0129, 0.0078, 0.0047, 0.0045, 0.0042, 0.0037, 0.0035], [0.051, 0.0188, 0.0137, 0.0129, 0.0065, 0.0065, 0.0054, 0.0051], [0.0191, 0.0169, 0.0123, 0.007, 0.0051, 0.0048, 0.0048, 0.0043], [0.0276, 0.0115, 0.0102, 0.009, 0.0074, 0.0054, 0.0051, 0.0051], [0.0348, 0.0186, 0.0083, 0.0073, 0.0073, 0.0069, 0.006, 0.006], [0.1199, 0.05, 0.0173, 0.0126, 0.0126, 0.0112, 0.0087, 0.0087], [0.1964, 0.1845, 0.022, 0.0207, 0.0172, 0.0142, 0.0134, 0.0118], [0.4334, 0.1594, 0.026, 0.0168, 0.0148, 0.0139, 0.0108, 0.009], [0.3391, 0.1413, 0.0278, 0.0131, 0.0109, 0.0102, 0.0102, 0.0096], [0.2771, 0.1019, 0.0274, 0.0189, 0.0147, 0.0147, 0.013, 0.0122], [0.1992, 0.0536, 0.0325, 0.0238, 0.0238, 0.0164, 0.0164, 0.0154], [0.0921, 0.0318, 0.0318, 0.0264, 0.0233, 0.0219, 0.0193, 0.0133], [0.1203, 0.0345, 0.0324, 0.0223, 0.0163, 0.0144, 0.0093, 0.0093], [0.0579, 0.0544, 0.048, 0.0274, 0.0242, 0.02, 0.0147, 0.0121], [0.0762, 0.0298, 0.0218, 0.0205, 0.016, 0.016, 0.0091, 0.008], [0.073, 0.0286, 0.0209, 0.0087, 0.0077, 0.0072, 0.0064, 0.006], [0.076, 0.0359, 0.0141, 0.0109, 0.0085, 0.0071, 0.0059, 0.0059], [0.1198, 0.0727, 0.0208, 0.0184, 0.0152, 0.0152, 0.0082, 0.0068], [0.4129, 0.0493, 0.0384, 0.0318, 0.015, 0.0133, 0.0125, 0.0071], [0.5008, 0.0363, 0.0341, 0.0341, 0.0265, 0.0133, 0.0086, 0.0076], [0.4651, 0.2489, 0.046, 0.0218, 0.014, 0.014, 0.0103, 0.0103], [0.9128, 0.0401, 0.0243, 0.0037, 0.0029, 0.0024, 0.0012, 0.001], [0.8946, 0.0734, 0.0145, 0.0037, 0.0025, 0.0017, 0.0009, 0.0007], [0.8898, 0.0645, 0.0237, 0.0032, 0.0028, 0.0018, 0.001, 0.0009], [0.968, 0.0138, 0.0095, 0.0016, 0.0011, 0.0005, 0.0004, 0.0004], [0.9803, 0.0158, 0.0021, 0.0004, 0.0003, 0.0003, 0.0001, 0.0001], [0.9901, 0.0046, 0.0036, 0.0013, 0.0001, 0.0001, 0.0, 0.0], [0.9866, 0.0059, 0.0031, 0.0028, 0.0002, 0.0002, 0.0002, 0.0001], [0.9957, 0.001, 0.0006, 0.0004, 0.0004, 0.0002, 0.0001, 0.0001]], "ranks": {"Kotlin": [235790, 231400, 217445, 142567, 187048, 212944, 204140, 212413, 203827, 236154, 233708, 203270, 186712, 180876, 213177, 205129, 176890, 185046, 171229, 202674, 232118, 201161, 232145, 239468, 216274, 193644, 176533, 198726, 167030, 125139, 173665, 138416, 215186, 144900, 145651, 124330, 78153, 61211, 48869, 35137, 34643, 43835, 25285, 24535, 29067, 36668, 57313, 52024, 62749, 48652, 28999, 17289, 13076, 8511, 4409, 698, 348, 353, 479, 331, 370, 225, 571]}}, {"pos": 482, "top": [[" \u2013", "\u2013", ".", "<|endoftext|>", "\u2013and", " ", ",", ".\u2013"], [" \u2013", "\u2013", "\u2013\u2013", "\u2013and", " \u2013**", "**\u2013", " \u2013,", ".\u2013"], [" \u2013", "\u2013", ".\u2013", "\u2013and", ",", "\u2013\u2013", "**\u2013", " \u2013,"], ["ieli", "**\u2013", "AREN", " \u2013**", "enje", "uarte", "\u2013\u2013", "\u3093\u3070\u3093"], [" \u2013", "\u2013\u2013", ".\u2013", "\u2013", " ", " [@", "\u2013and", "[@"], [" \u2013", ".\u2013", "\u2013", "\u2013\u2013", "\u2013and", " **\u2013", "**\u2013", " \u2013,"], [" \u2013", "\u2013\u2013", ".\u2013", "\u2013", "\u2013and", " Centre", " ", " Middle"], [" \u2013", ".\u2013", "\u2013\u2013", " Centre", " armour", "\u0436\u0434\u0451", "\u2013and", " flavours"], [" \u2013", ".\u2013", "\u2013\u2013", "\u2013and", "../../../", " \u2013,", " \u200b\u200b", "\u0436\u0434\u0451"], [" \u2013", ".\u2013", "\u2013", "\u2013\u2013", "\u2013and", "\u0436\u0434\u0451", " Centre", " \u0442\u0440\u0451"], [" \u2013", " Centre", "\u2013", ".\u2013", " armour", " centre", " neighbourhood", " favourites"], [" flavours", " Centre", " neighbourhood", " armour", " favourites", " centre", " \u2013", " specialised"], [" \u2013", " flavours", " neighbourhood", " hardcore", " electronics", " sophisticated", " armour", " popularity"], [" \u2013", " electronics", " flavours", " hardcore", " popularity", " neighbourhood", " sophisticated", " upscale"], [" \u2013", " popularity", " electronics", " sophisticated", " platforms", " favourites", " neighbourhood", " hardcore"], [" \u2013", " popularity", " popular", " marketing", " sophisticated", " high", " electronics", " low"], [" \u2013", " popularity", " popular", " folks", " sophisticated", " ballpark", " marketing", " middle"], [" goodies", " ballpark", " popularity", " electronics", " sophisticated", " folks", " upscale", " tweaks"], [" ballpark", " upscale", " electronics", " folks", " blockbuster", " touted", " boutique", " tweaks"], [" folks", " ballpark", " midd", " blockbuster", " goodies", " pricey", " gaming", " electronics"], [" folks", " ballpark", " pricey", " midd", " --", " popularity", " gaming", " electronics"], [" electronics", " ballpark", " pricey", " folks", " gamers", " upscale", " startups", " gaming"], [" folks", " ballpark", " electronics", " --", " pricey", " gaming", " midd", " ''"], [" --", " high", " popular", " notably", " ultimately", " commercial", " ,", " midd"], [" pricey", " midd", " electronics", " hardware", " affordable", " market", " ballpark", " --"], [" electronics", " hardware", " smartphone", " smartphones", " pricey", " affordable", " Android", " gaming"], [" electronics", " smartphone", " hardware", " smartphones", " Android", " affordable", " gaming", " pricey"], [" \n\n", " hardware", "\n\n", " electronics", " low", " affordable", " gaming", " cheap"], [" hardware", " electronics", " smartphone", " smartphones", " Android", " affordable", " cheap", " budgets"], [" smartphones", " smartphone", " hardware", " electronics", " affordable", " budgets", " cheaper", " cheap"], [" hardware", " smartphones", " smartphone", " technology", " tech", " electronics", " cheap", " affordable"], [" hardware", " technology", " smartphones", " affordable", " low", " smartphone", " cheap", " tech"], [" hardware", " cheap", " low", " technology", " affordable", " budgets", " smartphones", " electronics"], [" hardware", " smartphones", " smartphone", " budgets", " tech", " cheap", " affordable", " Android"], [" hardware", " smartphone", " tech", " smartphones", " overclock", " cheap", " Android", " budgets"], [" hardware", " Android", " smartphones", " smartphone", " tech", " overclock", " \u2013", " electronics"], [" Android", " hardware", " smartphones", " smartphone", " tech", " overclock", " android", " Samsung"], [" Android", " hardware", " smartphones", " smartphone", " android", " Samsung", " overclock", " tech"], [" Android", " hardware", " smartphones", " smartphone", " android", " overclock", " CPUs", " Samsung"], [" Android", " hardware", " smartphones", " smartphone", " overclock", " android", " CPUs", " chipset"], [" Android", " hardware", " smartphones", " smartphone", " android", " Samsung", " phones", " overclock"], [" Android", " hardware", " smartphones", " smartphone", " android", " Samsung", " phones", " chipset"], [" Android", " hardware", " smartphones", " smartphone", " android", " Samsung", " phones", " chipset"], [" Android", " hardware", " smartphones", " smartphone", " android", " Samsung", " phones", " chipset"], [" Android", " smartphones", " hardware", " smartphone", " phones", " android", " Samsung", " devices"], [" Android", " smartphones", " hardware", " smartphone", " phones", " android", " Samsung", " budgets"], [" Android", " hardware", " smartphones", " smartphone", " phones", " budgets", " CPUs", " devices"], [" Android", " smartphones", " hardware", " phones", " (<", " CPUs", " budgets", " smartphone"], [" Android", " smartphones", " CPUs", " GPUs", " (~", " phones", " hardware", " budgets"], [" (~", " Android", " smartphones", " CPUs", " GPUs", " phones", " hardware", " (<"], [" CPUs", " GPUs", " smartphones", " Android", " phones", " hardware", "\u673a\u578b", " laptops"], [" Android", " CPUs", " GPUs", "(Android", " smartphones", "Android", " hardware", " (~"], [" Android", " CPUs", " GPUs", " hardware", "Android", "(Android", " (~", " smartphones"], [" Android", " hardware", " CPUs", " GPUs", "Android", " android", " smartphones", "(Android"], [" Android", " CPUs", " GPUs", " hardware", "Android", " processors", " phones", " smartphones"], [" Android", "Android", " android", "/android", " GPUs", " CPUs", "(Android", "-android"], [" Android", "Android", " android", "(Android", " GPUs", "/android", "_android", "-android"], [" Android", " chips", " GPUs", "Android", " chipset", " Snapdragon", " GPU", " android"], [" Android", "Android", " android", " GPUs", " chips", " Snapdragon", "-android", "(Android"], [" Android", "Android", " android", " devices", "(Android", "-android", " chips", "_android"], [" Android", "Android", " android", "(Android", "-android", " devices", "_android", " GPUs"], [" Android", "Android", " android", " GPUs", "(Android", "-android", " devices", " phones"], [" Android", "Android", " Snapdragon", " android", " GPUs", " devices", "(Android", " Samsung"]], "p": [[0.9847, 0.0124, 0.0008, 0.0004, 0.0002, 0.0002, 0.0002, 0.0001], [0.9227, 0.0316, 0.0132, 0.0102, 0.0102, 0.0048, 0.0026, 0.0026], [0.5548, 0.4321, 0.0054, 0.0042, 0.0014, 0.0005, 0.0005, 0.0004], [0.0074, 0.0027, 0.0027, 0.0025, 0.0024, 0.0021, 0.0021, 0.002], [0.7468, 0.0226, 0.0187, 0.0155, 0.0113, 0.0065, 0.0054, 0.0047], [0.4626, 0.2326, 0.0911, 0.0856, 0.0404, 0.0033, 0.0023, 0.002], [0.8107, 0.0216, 0.0139, 0.007, 0.004, 0.0014, 0.0011, 0.001], [0.0459, 0.0159, 0.007, 0.0066, 0.0062, 0.0055, 0.0043, 0.004], [0.0753, 0.0486, 0.019, 0.0115, 0.0066, 0.004, 0.0037, 0.0033], [0.1927, 0.043, 0.0404, 0.0335, 0.0179, 0.0149, 0.014, 0.007], [0.5977, 0.0247, 0.0159, 0.0141, 0.0085, 0.0085, 0.0052, 0.0043], [0.0236, 0.0208, 0.0208, 0.0196, 0.0152, 0.0143, 0.0119, 0.0105], [0.0307, 0.0106, 0.0088, 0.0053, 0.0047, 0.0044, 0.0034, 0.0034], [0.0091, 0.0081, 0.0063, 0.0059, 0.0055, 0.0043, 0.0038, 0.0034], [0.0479, 0.0089, 0.0039, 0.0039, 0.0037, 0.0035, 0.0035, 0.0035], [0.031, 0.0083, 0.0069, 0.0051, 0.0051, 0.0042, 0.0039, 0.0037], [0.0204, 0.0085, 0.0075, 0.007, 0.0062, 0.0043, 0.0043, 0.004], [0.0055, 0.0042, 0.004, 0.0037, 0.0037, 0.0035, 0.0031, 0.0031], [0.0062, 0.0048, 0.0045, 0.0033, 0.0029, 0.0028, 0.0028, 0.0026], [0.0124, 0.008, 0.0055, 0.0033, 0.0033, 0.0033, 0.0028, 0.0028], [0.0122, 0.0107, 0.0054, 0.0051, 0.0045, 0.0031, 0.0029, 0.0024], [0.0063, 0.0055, 0.0036, 0.0033, 0.0031, 0.0028, 0.0028, 0.0024], [0.0139, 0.009, 0.0079, 0.0074, 0.0058, 0.0054, 0.0042, 0.004], [0.0077, 0.0047, 0.0041, 0.0039, 0.0037, 0.0032, 0.003, 0.0028], [0.0124, 0.0063, 0.0055, 0.0049, 0.0049, 0.0043, 0.0036, 0.0036], [0.0659, 0.04, 0.0311, 0.0138, 0.013, 0.0122, 0.0122, 0.0089], [0.0765, 0.0596, 0.0526, 0.0339, 0.0171, 0.016, 0.0133, 0.0104], [0.0642, 0.0222, 0.0173, 0.0105, 0.0077, 0.0064, 0.0056, 0.0056], [0.0446, 0.0419, 0.0369, 0.0347, 0.027, 0.0174, 0.0145, 0.0128], [0.0689, 0.0537, 0.0393, 0.0287, 0.0287, 0.021, 0.0197, 0.0197], [0.0528, 0.0411, 0.0363, 0.0249, 0.0234, 0.022, 0.022, 0.022], [0.0362, 0.034, 0.0282, 0.0182, 0.0182, 0.0182, 0.0151, 0.0142], [0.0826, 0.0345, 0.0324, 0.0237, 0.0196, 0.0153, 0.0135, 0.0135], [0.099, 0.053, 0.0439, 0.025, 0.025, 0.0235, 0.0195, 0.0152], [0.1587, 0.0584, 0.0548, 0.0455, 0.0215, 0.0202, 0.0202, 0.0178], [0.2621, 0.0906, 0.0585, 0.0549, 0.0294, 0.0259, 0.019, 0.0157], [0.3258, 0.2239, 0.0727, 0.0566, 0.0251, 0.0208, 0.0126, 0.0119], [0.4577, 0.1232, 0.1021, 0.0847, 0.0228, 0.0147, 0.0138, 0.0074], [0.4157, 0.1964, 0.1191, 0.0679, 0.0194, 0.0151, 0.0118, 0.0098], [0.2821, 0.249, 0.1252, 0.0591, 0.0317, 0.0218, 0.0192, 0.014], [0.6217, 0.0953, 0.0841, 0.0578, 0.0373, 0.0089, 0.0074, 0.0069], [0.7652, 0.0628, 0.0381, 0.0336, 0.0262, 0.0169, 0.0048, 0.0038], [0.6681, 0.0904, 0.0548, 0.0401, 0.0229, 0.0202, 0.0095, 0.0062], [0.6342, 0.0973, 0.0554, 0.0336, 0.0279, 0.018, 0.0103, 0.009], [0.4848, 0.1152, 0.0744, 0.0579, 0.0451, 0.033, 0.0156, 0.0095], [0.4163, 0.1193, 0.068, 0.0563, 0.0439, 0.0195, 0.0142, 0.0118], [0.2968, 0.0905, 0.0799, 0.0485, 0.0333, 0.019, 0.0178, 0.0148], [0.291, 0.0834, 0.0446, 0.0419, 0.037, 0.0288, 0.0224, 0.0224], [0.1546, 0.0998, 0.0605, 0.0569, 0.0534, 0.0471, 0.0391, 0.0209], [0.1399, 0.1023, 0.0797, 0.0621, 0.0583, 0.0332, 0.0275, 0.0201], [0.153, 0.0723, 0.0467, 0.0321, 0.0266, 0.025, 0.022, 0.0152], [0.5482, 0.0895, 0.051, 0.0373, 0.0129, 0.0114, 0.0107, 0.01], [0.5525, 0.1487, 0.062, 0.04, 0.0095, 0.0089, 0.0089, 0.0074], [0.7237, 0.0979, 0.0435, 0.0299, 0.0103, 0.0076, 0.0049, 0.0043], [0.8205, 0.0525, 0.0409, 0.0318, 0.0059, 0.0052, 0.0038, 0.0032], [0.9897, 0.0036, 0.0015, 0.0009, 0.0009, 0.0005, 0.0005, 0.0003], [0.9942, 0.0022, 0.0013, 0.0005, 0.0004, 0.0004, 0.0002, 0.0001], [0.9781, 0.0045, 0.0035, 0.0031, 0.0027, 0.0015, 0.0009, 0.0009], [0.988, 0.0036, 0.0013, 0.0013, 0.0012, 0.0009, 0.0005, 0.0005], [0.9966, 0.0025, 0.0003, 0.0002, 0.0001, 0.0001, 0.0001, 0.0], [0.9988, 0.001, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9983, 0.001, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001, 0.0], [0.9993, 0.0003, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Kotlin": [77131, 99655, 51565, 10622, 30711, 13472, 21699, 48397, 81097, 105025, 78186, 84197, 33535, 30993, 50385, 36147, 28278, 17531, 14437, 40970, 48074, 10738, 22599, 51966, 17248, 3814, 3363, 13433, 3028, 2822, 3718, 6070, 10792, 3502, 3426, 1221, 317, 326, 302, 309, 492, 550, 601, 648, 952, 1164, 1991, 1307, 1250, 863, 1156, 442, 157, 239, 134, 78, 39, 61, 56, 51, 40, 39, 14]}}, {"pos": 483, "top": [["s", "a", "o", ".", "i", ",", "er", "ing"], ["s", "sWith", "a", "  \n\n", "\u201d,", "ing", "\u201d.", "erweise"], ["s", "\u2013", "\u2026.", ",", "a", " \u2013", "\u2026", "."], ["sik", "sWith", "s", "szeit", " **\u2022", "erweise", "satz", "sze"], ["s", "sWith", "ed", "a", "sik", "s\u00f3", "\u0627\u062a", "sche"], ["s", "sWith", "sver", "s\u00f3", "sik", "svar", "siz", "(Android"], ["s", "sWith", "sak", "a", "\u0627\u062a", "(Android", "sik", "sand"], ["s", "sWith", "(Android", "sak", "s\u00f3", "sik", "sburg", "scape"], ["s", "sWith", "sak", "schild", "(Android", " \r\n\r\n", "!\u201d.", "scape"], ["s", "(Android", "\u76f8\u8f85\u76f8\u6210", "sak", "sWith", " Android", ".Android", "s\u00f3"], ["s", " Android", "a", "(Android", "-style", "&nbsp", "scape", ".Android"], ["s", " Android", "(Android", ".Android", "sak", "sWith", "(android", "\u76f8\u8f85\u76f8\u6210"], ["s", " Android", "(Android", "sWith", ".Android", "sak", "(android", "scape"], ["s", " Android", "(Android", "(android", "sak", "-style", ".Android", "sWith"], ["s", " Android", " largely", "-style", " arguably", ".Android", "sak", " massively"], ["s", "\u51ed\u501f\u7740", " arguably", "-esque", " largely", " massively", " hugely", " savvy"], ["s", " arguably", "-esque", " Android", " largely", "a", "scape", " massively"], ["s", " Android", ".Android", "(Android", "sak", "ska", "sWith", "-esque"], ["s", ".Android", " Android", "(Android", "-esque", "sak", "ska", " arguably"], ["s", "(Android", ".Android", " Android", " hugely", " arguably", "-esque", " largely"], [" \r\n\r\n", "s", " Android", ".Android", " hugely", "(Android", "<|endoftext|>", "\r\n\r\n"], [" Android", ".Android", "(Android", "Android", " android", "_android", "ANDROID", "(android"], [" Android", ".Android", "Android", "(Android", " android", "ANDROID", " {{--<", "_ANDROID"], [" Android", ".Android", "Android", " {{--<", " heavily", "(Android", " hugely", " android"], [" \r\n\r\n", " Android", "Android", "\r\n\r\n", ".Android", "(Android", " android", "  \r\n\r\n"], [" Android", "(Android", ".Android", "Android", " android", "/android", "_android", "_ANDROID"], [" Android", " android", ".Android", "(Android", "Android", "/android", "_android", "_ANDROID"], [" Android", " android", "Android", ".Android", "\r\n\r\n", " \r\n\r\n", " \n\n", "(Android"], [" Android", "Android", " android", ".Android", "(Android", "/android", "ANDROID", "_ANDROID"], [" Android", " android", "Android", "(Android", ".Android", " smartphone", " smartphones", "/android"], [" Android", " android", "Android", "(Android", ".Android", " smartphone", " smartphones", "/android"], [" Android", " android", " heavily", ".Android", "Android", " smartphones", " smartphone", "(Android"], [" Android", " android", " heavily", ".Android", " massively", "Android", "(Android", " famously"], [" Android", " android", "(Android", ".Android", "Android", "/android", " smartphone", " smartphones"], [" Android", " android", "Android", "(Android", "/android", ".Android", " smartphone", " smartphones"], [" Android", " android", "Android", "(Android", ".Android", "/android", " smartphone", " smartphones"], [" Android", "Android", " android", "(Android", ".Android", "/android", "android", " smartphone"], [" Android", " android", "Android", "(Android", ".Android", "/android", "android", " smartphone"], [" Android", " android", "Android", "(Android", ".Android", "/android", "android", "-android"], [" Android", " android", "Android", "(Android", ".Android", "/android", " hardware", "android"], [" Android", " android", "Android", "(Android", ".Android", "/android", " hardware", "android"], [" Android", " android", "Android", "(Android", ".Android", " hardware", "/android", "-android"], [" Android", " android", "Android", "(Android", " hardware", ".Android", "/android", "-android"], [" Android", " android", "(Android", "Android", " hardware", ".Android", "/android", " smartphones"], [" Android", " android", " hardware", "(Android", "Android", ".Android", " smartphones", "/android"], [" Android", " android", " hardware", "(Android", ".Android", " smartphones", "Android", " phones"], [" Android", " hardware", " android", "(Android", " engines", " smartphones", " phones", " requires"], [" Android", " lacks", " hardware", " android", " relies", "(Android", " requires", " (~"], [" Android", " (~", " lacks", "(Android", " android", " hardware", " relies", " budgets"], [" lacks", " (~", " Android", "(Android", " budgets", " phones", " relies", " android"], ["(Android", " lacks", " Android", " CPUs", " budgets", "Android", " phones", "/android"], ["(Android", " lacks", " CPUs", " Android", " (~", " hardware", " phones", " GPUs"], [" hardware", " CPUs", " lacks", " phones", " (~", "(Android", " GPUs", " budgets"], [" hardware", "(Android", " phones", " Android", " CPUs", " devices", " processors", " lacks"], [" hardware", " CPUs", " Android", " processors", " phones", " GPUs", "(Android", " CPU"], [" hardware", " CPUs", " phones", " GPUs", " Android", " processors", " CPU", " GPU"], [" Android", " GPUs", "(Android", " phones", " hardware", " GPU", " CPUs", "Android"], [" chips", " GPU", " GPUs", " chip", " CPUs", " chipset", " hardware", " CPU"], [" chips", " GPUs", " CPUs", " GPU", " CPU", " chip", " processors", " chipset"], [" devices", " GPUs", " hardware", " chips", " GPU", " device", " phones", " CPUs"], [" devices", " GPUs", " phones", " CPUs", " chips", " GPU", " processors", " hardware"], [" devices", " GPUs", " phones", " CPUs", " chips", " processors", " chip", " device"], [" devices", " GPUs", " chips", " phones", " CPUs", " So", " processors", " chip"]], "p": [[0.9296, 0.0524, 0.0049, 0.0049, 0.0018, 0.0011, 0.0005, 0.0004], [0.9773, 0.0033, 0.0017, 0.0011, 0.0008, 0.0008, 0.0007, 0.0007], [0.9717, 0.0058, 0.0035, 0.0029, 0.0023, 0.0023, 0.0019, 0.0017], [0.0416, 0.0367, 0.0185, 0.0173, 0.0112, 0.0112, 0.0105, 0.0077], [0.9984, 0.0002, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9353, 0.0081, 0.0038, 0.0028, 0.0016, 0.0014, 0.001, 0.001], [0.9993, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9881, 0.0014, 0.0005, 0.0005, 0.0004, 0.0003, 0.0003, 0.0002], [0.9577, 0.0022, 0.0015, 0.0012, 0.001, 0.0007, 0.0007, 0.0007], [0.7498, 0.0045, 0.0039, 0.0027, 0.0024, 0.0022, 0.0022, 0.002], [0.9048, 0.0042, 0.0021, 0.002, 0.0017, 0.0014, 0.0013, 0.0012], [0.0487, 0.0216, 0.0168, 0.0149, 0.0116, 0.0085, 0.0085, 0.008], [0.0831, 0.0238, 0.0164, 0.0127, 0.0112, 0.0112, 0.0106, 0.0073], [0.0451, 0.0138, 0.0114, 0.0078, 0.0061, 0.0061, 0.0057, 0.0054], [0.0967, 0.0045, 0.0042, 0.004, 0.0033, 0.0023, 0.0023, 0.0023], [0.0551, 0.0062, 0.0048, 0.0031, 0.0029, 0.0017, 0.0013, 0.0011], [0.6304, 0.0029, 0.0023, 0.0021, 0.0017, 0.0016, 0.0011, 0.001], [0.1755, 0.0112, 0.0077, 0.0064, 0.0034, 0.0032, 0.003, 0.0024], [0.0266, 0.0161, 0.0151, 0.0126, 0.0046, 0.0036, 0.0032, 0.003], [0.0132, 0.0096, 0.0091, 0.008, 0.0049, 0.0031, 0.002, 0.0019], [0.0075, 0.0066, 0.0048, 0.0043, 0.0038, 0.0035, 0.0033, 0.0033], [0.0629, 0.0522, 0.0382, 0.008, 0.0075, 0.0066, 0.0052, 0.0052], [0.0867, 0.0494, 0.0219, 0.016, 0.0081, 0.0049, 0.0046, 0.0043], [0.034, 0.0142, 0.0104, 0.0046, 0.0043, 0.0038, 0.0038, 0.003], [0.0938, 0.0731, 0.0686, 0.0535, 0.0305, 0.0237, 0.0163, 0.0119], [0.3904, 0.0769, 0.0722, 0.0562, 0.0562, 0.0301, 0.0234, 0.022], [0.475, 0.0684, 0.0643, 0.0501, 0.0442, 0.0268, 0.0209, 0.0143], [0.1878, 0.0307, 0.0224, 0.0175, 0.0164, 0.0154, 0.0145, 0.0128], [0.5616, 0.1106, 0.063, 0.0407, 0.028, 0.0132, 0.0066, 0.0052], [0.7425, 0.0691, 0.0446, 0.027, 0.0239, 0.006, 0.0057, 0.0044], [0.8275, 0.0638, 0.0161, 0.0104, 0.0104, 0.0046, 0.0043, 0.0028], [0.5887, 0.0426, 0.0108, 0.0084, 0.007, 0.0054, 0.0054, 0.0045], [0.4665, 0.0317, 0.0181, 0.0085, 0.0052, 0.0049, 0.0046, 0.0043], [0.781, 0.0773, 0.0152, 0.0111, 0.0098, 0.0068, 0.0063, 0.006], [0.7233, 0.1109, 0.0299, 0.028, 0.0263, 0.0181, 0.0091, 0.0052], [0.8329, 0.0603, 0.0366, 0.0252, 0.0105, 0.0072, 0.0032, 0.0027], [0.8282, 0.06, 0.0529, 0.0195, 0.0118, 0.0081, 0.0028, 0.0017], [0.8648, 0.0553, 0.0431, 0.0158, 0.0085, 0.0051, 0.0021, 0.0008], [0.9239, 0.0358, 0.0192, 0.0103, 0.0038, 0.0029, 0.001, 0.0004], [0.9017, 0.0396, 0.024, 0.0165, 0.0069, 0.0027, 0.0014, 0.0013], [0.9182, 0.0356, 0.0191, 0.0148, 0.0055, 0.0018, 0.0009, 0.0008], [0.942, 0.0251, 0.0119, 0.0081, 0.0044, 0.0038, 0.0011, 0.0005], [0.9259, 0.028, 0.0132, 0.0103, 0.008, 0.0062, 0.0014, 0.0009], [0.9194, 0.0278, 0.0149, 0.0131, 0.0102, 0.0043, 0.0011, 0.001], [0.8979, 0.0395, 0.0145, 0.0128, 0.0088, 0.0053, 0.0018, 0.0012], [0.8455, 0.0308, 0.024, 0.0199, 0.0047, 0.0047, 0.0039, 0.0035], [0.6926, 0.0416, 0.0345, 0.0209, 0.0119, 0.0064, 0.0064, 0.005], [0.4848, 0.0424, 0.031, 0.0274, 0.0257, 0.0227, 0.0213, 0.0166], [0.3172, 0.1408, 0.1167, 0.0665, 0.023, 0.0179, 0.0158, 0.0116], [0.2459, 0.217, 0.1401, 0.0798, 0.0401, 0.0139, 0.0115, 0.0115], [0.3037, 0.3037, 0.1266, 0.0151, 0.0118, 0.0118, 0.0118, 0.0118], [0.2437, 0.1675, 0.1081, 0.0656, 0.0398, 0.0374, 0.031, 0.0291], [0.2582, 0.2011, 0.122, 0.0613, 0.0422, 0.0328, 0.0256, 0.0187], [0.5065, 0.088, 0.0777, 0.0534, 0.0534, 0.0324, 0.0209, 0.0144], [0.2214, 0.1953, 0.1343, 0.1185, 0.1046, 0.0494, 0.0494, 0.03], [0.3587, 0.1694, 0.0907, 0.0907, 0.08, 0.0485, 0.0378, 0.026], [0.4778, 0.1208, 0.1208, 0.0941, 0.0941, 0.027, 0.0144, 0.0099], [0.443, 0.163, 0.163, 0.0599, 0.0467, 0.025, 0.0221, 0.0172], [0.2762, 0.2437, 0.1898, 0.1478, 0.0544, 0.0291, 0.0177, 0.0083], [0.7823, 0.0567, 0.05, 0.0441, 0.0268, 0.0112, 0.0077, 0.0068], [0.7816, 0.1199, 0.0389, 0.0267, 0.0208, 0.0028, 0.0022, 0.0019], [0.8279, 0.0873, 0.0364, 0.0221, 0.0195, 0.0014, 0.001, 0.0009], [0.9197, 0.0357, 0.0245, 0.0102, 0.0048, 0.002, 0.0003, 0.0003]], "ranks": {"Kotlin": [26505, 27990, 13887, 525, 852, 1216, 1689, 8466, 9167, 23799, 10430, 4910, 3593, 5811, 34311, 39857, 15405, 6719, 8376, 24789, 35350, 3321, 3713, 14902, 2474, 610, 568, 2780, 598, 407, 549, 2630, 4673, 346, 219, 124, 73, 68, 108, 143, 221, 327, 309, 283, 386, 663, 1375, 1421, 1810, 2043, 1835, 2150, 1634, 1056, 438, 298, 90, 123, 148, 203, 314, 595, 651]}}, {"pos": 484, "top": [[" \u2013", "\u2013", ".", ",", ";", "\u2013and", " ", " [\u2026]"], [" \u2013", "\u2013", "\u2013and", " \u2013,", " \u200b\u200b", ".\u2013", "\u2013\u2013", " \u2013**"], ["\u2013", " \u2013", "\u2013and", ",", ".\u2013", ".", " \u2013,", ";"], [" ;;^", " Shemale", " milfs", " Blowjob", " YYS", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\ufffd\ufffd", "endiz"], [" \u200b\u200b", ".\u2013", " ", "  ", ".", "\u2013and", ",", "\u0103\u021b"], [" \u200b\u200b", "\u2013and", "(Device", "\u30a7", ".\u2013", "culos", ".Dispatch", " Device"], [" \u200b\u200b", "   \n", " **\u2013", " DEVICE", "**\u2013", " **\u2018", "(Device", " \n\n\n"], [" \u200b\u200b", "   \n", "(Device", " **\u20ac", "\u0103\u021b", " **\u2013", "**\u2013", ".Dispatch"], [" \u200b\u200b", "\u200b\u200b", " \n\n\n", "   \n\n", " \n\n", ".\u201c", ".\u201d", ".\u2013"], [",", "\u2013", "\u00a0", "\u2013and", " \u2013", ";", ".\u2013", "."], [",", "\u00a0", "\u2013", " \u2013", ".", " ", ";", " [\u2026]"], [" \u2013", " \u200b\u200b", " ", " **", "\u2013and", "\u2013", "  ", " showcased"], [" \u2013", "\u2013", " **", " \u200b\u200b", "\u2013and", " showcased", " **\u2013", " smartphones"], [" showcased", " \u200b\u200b", " impactful", " infrastructure", " LGBTQ", " smartphones", " utilized", " prioritize"], [" \u2013", " showcased", " ", "\u2013", " utilized", " primarily", " infrastructure", " showcasing"], [" \u2013", " \u200b\u200b", " showcased", " utilized", " showcasing", " often", " neighborhoods", " smartphones"], [" \u2013", "\u2013", " \u200b\u200b", ",", "\u2013and", " \u2018", " often", "\u2019s"], [" \u2013", "\u2013", "\u2013and", " \u200b\u200b", " showcased", " **\u2013", " impactful", " smartphones"], [" arguably", "\u2014even", "\u2014including", "\u2014or", " showcased", " impactful", "\u2014and", " \u2013"], [" \u2018", " arguably", "\u2014even", "\u2014and", "\u2014including", "\u2014or", " \u2013", " largely"], ["<|endoftext|>", " \n\n", "  \n\n", " arguably", " \n\n\n", "   \n\n", "\u2014and", " largely"], [" smartphones", " impactful", " smartphone", " showcased", " **", " **\u2018", " fueled", " LGBTQ"], [" arguably", " \u2018", " ultimately", " heavily", " notably", " largely", " sprawling", " uniquely"], [" \u2018", "<|endoftext|>", " ultimately", " arguably", " notably", " largely", " often", " heavily"], [" \n\n", " \r\n\r\n", " \n\n\n", "   \n\n", "  \n\n", " arguably", "\r\n\r\n", "  \r\n\r\n"], [" \n\n", " **", " \r\n\r\n", " smartphones", " smartphone", " **\u2018", " Android", " showcased"], [" smartphones", " smartphone", " \n\n", " Android", " hardware", " \r\n\r\n", " **", " iOS"], [" \n\n", "  \n\n", " \r\n\r\n", " \n\n\n", "   \n\n", " \u2018", "\n\n", " heavily"], [" smartphones", " \n\n", " smartphone", " Android", " iOS", " **", " hardware", " \r\n\r\n"], [" smartphones", " smartphone", " **", " Android", " hardware", " **\u2013", " disproportionately", " technologies"], [" smartphones", " **", " smartphone", " often", " hardware", " Android", " heavily", " drivers"], [" \u200b\u200b", " smartphones", " often", "\u200b\u200b", " **", " \u2013", "\u2019s", " smartphone"], [" often", " heavily", " smartphones", " typically", " hardware", " rapidly", " disproportionately", " \u2013"], [" heavily", " typically", " often", " \u2013", " notoriously", " disproportionately", " hardware", " smartphones"], [" notoriously", " typically", " heavily", " hardware", " disproportionately", " smartphones", " often", " smartphone"], [" notoriously", " hardware", " typically", " often", " sluggish", " disproportionately", " overclock", " heavily"], [" notoriously", " hardware", " typically", " sluggish", " overclock", " slower", " often", " heavily"], [" hardware", " notoriously", " typically", " smartphones", " overclock", " smartphone", " often", " sluggish"], [" hardware", " notoriously", " CPU", " typically", " overclock", " sluggish", " CPUs", " smartphones"], [" hardware", " CPU", " overclock", " CPUs", " notoriously", " sluggish", " slower", " Hardware"], [" hardware", " CPU", " overclock", " CPUs", " sluggish", " engines", " smartphones", " slower"], [" hardware", " overclock", " CPU", " CPUs", " engines", " Hardware", " sluggish", "hardware"], [" hardware", " overclock", " CPU", " engines", " CPUs", " Hardware", " sluggish", " slower"], [" hardware", " overclock", " CPU", " CPUs", " engines", " sluggish", " Hardware", " machines"], [" hardware", " overclock", " engines", " budgets", " notoriously", " poor", " sluggish", " CPU"], [" hardware", " typically", " limited", " notoriously", " lacks", " budgets", " sluggish", " engines"], [" hardware", " typically", " limited", " lacks", " notoriously", " weak", " low", " budgets"], [" typically", " lacks", " limited", " often", " weak", " low", " notoriously", " hardware"], [" lacks", " typically", " (~", " notoriously", " often", " limited", " hardware", " lacked"], [" typically", " lacks", " (~", " often", " notoriously", " limited", " lacked", " rarely"], [" lacks", " typically", " (~", " lacked", "\u7f3a\u4e4f", "\u6709\u9650\u7684", "\u4e0d\u5177\u5907", " notoriously"], [" typically", " lacks", " (~", "\u6709\u9650\u7684", " limited", "typically", "Limited", " lacked"], [" typically", " limited", "\u6709\u9650\u7684", " lacks", "limited", "Limited", " (~", "\u6709\u9650"], [" typically", " (~", "\u6709\u9650\u7684", " limited", " lacks", "limited", "Limited", "\u6709\u9650"], [" typically", "\u6709\u9650\u7684", " (~", "\u6709\u9650", " limited", " lacks", "typically", "Limited"], [" typically", " (~", " lacks", "typically", "\u6709\u9650\u7684", "\u6709\u9650", " limited", " CPU"], [" typically", " (~", " CPU", "typically", " lacks", "\u6709\u9650\u7684", " GPU", " Typically"], [" typically", " struggle", " struggles", " struggling", " struggled", " CPU", "\u6323\u624e", "typically"], [" typically", " struggle", " thrott", " struggles", " struggling", " throttle", " often", " struggled"], [" typically", " struggle", " thrott", " have", " (~", " throttle", " (", " struggling"], [" typically", " have", " thrott", " (", " struggle", " (~", " throttle", " struggling"], [" have", " struggle", " (", " typically", " thrott", " throttle", " (<", " (~"], [" have", " (", " struggle", " typically", " often", " throttle", " (~", " lack"]], "p": [[0.6205, 0.2283, 0.0952, 0.045, 0.0025, 0.0022, 0.0015, 0.0006], [0.6121, 0.3276, 0.0391, 0.0047, 0.0027, 0.0016, 0.0013, 0.0006], [0.6671, 0.3151, 0.0074, 0.0045, 0.0024, 0.0019, 0.0006, 0.0003], [0.0101, 0.0089, 0.0048, 0.0048, 0.0045, 0.0035, 0.0019, 0.0015], [0.2038, 0.0054, 0.0042, 0.004, 0.0033, 0.0031, 0.0026, 0.0023], [0.2686, 0.0028, 0.0018, 0.0015, 0.0014, 0.0012, 0.0012, 0.0012], [0.0565, 0.0118, 0.0111, 0.0105, 0.0087, 0.0076, 0.0076, 0.006], [0.2624, 0.0084, 0.007, 0.0054, 0.0048, 0.004, 0.0027, 0.0027], [0.7724, 0.0133, 0.0049, 0.0043, 0.003, 0.0028, 0.0025, 0.0022], [0.6656, 0.2161, 0.0453, 0.0157, 0.0101, 0.0061, 0.0054, 0.0048], [0.3954, 0.2718, 0.1133, 0.1, 0.0535, 0.0269, 0.0077, 0.0032], [0.0259, 0.0074, 0.0074, 0.007, 0.0061, 0.0058, 0.0058, 0.0054], [0.0256, 0.0188, 0.0146, 0.0129, 0.0107, 0.0107, 0.0107, 0.0073], [0.0196, 0.0173, 0.0143, 0.0127, 0.0105, 0.0093, 0.0068, 0.0053], [0.0527, 0.0125, 0.0092, 0.0086, 0.0063, 0.0063, 0.0052, 0.0046], [0.0214, 0.0147, 0.0138, 0.0122, 0.0079, 0.0074, 0.0058, 0.0051], [0.3117, 0.1299, 0.0372, 0.0165, 0.0121, 0.0083, 0.0065, 0.0061], [0.1277, 0.0567, 0.0567, 0.0415, 0.0152, 0.0105, 0.0082, 0.0082], [0.0328, 0.0308, 0.0256, 0.0199, 0.0187, 0.0176, 0.0176, 0.0155], [0.0511, 0.0423, 0.031, 0.0227, 0.0213, 0.0188, 0.0177, 0.0166], [0.8986, 0.0239, 0.005, 0.0017, 0.0014, 0.0013, 0.001, 0.001], [0.0294, 0.0123, 0.007, 0.0062, 0.0062, 0.0058, 0.0054, 0.004], [0.0289, 0.0199, 0.0113, 0.0094, 0.0083, 0.0083, 0.0073, 0.0073], [0.0515, 0.0312, 0.0215, 0.0178, 0.0157, 0.0148, 0.013, 0.0115], [0.3933, 0.1058, 0.0285, 0.0285, 0.0196, 0.0087, 0.0082, 0.0072], [0.0957, 0.0481, 0.0375, 0.0375, 0.0214, 0.0189, 0.0114, 0.0084], [0.149, 0.0798, 0.0259, 0.0167, 0.0148, 0.009, 0.0074, 0.0065], [0.4732, 0.0267, 0.0251, 0.0087, 0.0081, 0.0076, 0.0067, 0.0063], [0.1584, 0.066, 0.066, 0.0353, 0.0138, 0.013, 0.0122, 0.0079], [0.2582, 0.0695, 0.0372, 0.0176, 0.0137, 0.01, 0.0078, 0.0069], [0.1535, 0.0822, 0.0565, 0.0267, 0.0208, 0.0152, 0.0126, 0.0092], [0.2958, 0.0376, 0.0293, 0.0189, 0.013, 0.013, 0.0122, 0.0115], [0.0375, 0.0331, 0.0274, 0.0227, 0.0177, 0.0156, 0.0147, 0.0138], [0.0427, 0.0354, 0.0312, 0.0293, 0.0259, 0.0228, 0.0189, 0.0178], [0.0894, 0.0309, 0.0273, 0.0273, 0.0256, 0.0176, 0.0137, 0.0114], [0.1524, 0.0816, 0.0561, 0.034, 0.0194, 0.0194, 0.0194, 0.0133], [0.227, 0.1141, 0.0394, 0.0255, 0.0175, 0.0164, 0.0164, 0.0128], [0.1632, 0.099, 0.0302, 0.025, 0.025, 0.0183, 0.0172, 0.0162], [0.3659, 0.0495, 0.03, 0.0282, 0.0265, 0.0161, 0.0125, 0.0118], [0.2624, 0.1319, 0.08, 0.0334, 0.0313, 0.0277, 0.0202, 0.0102], [0.3373, 0.1321, 0.1029, 0.0403, 0.019, 0.019, 0.0158, 0.0148], [0.574, 0.073, 0.0686, 0.0345, 0.0268, 0.0196, 0.0087, 0.005], [0.5757, 0.0646, 0.0535, 0.0346, 0.0269, 0.0153, 0.0119, 0.0087], [0.6241, 0.0581, 0.0311, 0.0242, 0.0214, 0.0122, 0.0101, 0.0084], [0.3887, 0.034, 0.0282, 0.0233, 0.0194, 0.0194, 0.0194, 0.0194], [0.1222, 0.0741, 0.0509, 0.0373, 0.0309, 0.0273, 0.0256, 0.0241], [0.0783, 0.0691, 0.0691, 0.0506, 0.0394, 0.0394, 0.0224, 0.0198], [0.2837, 0.1259, 0.0674, 0.0435, 0.0318, 0.0248, 0.0219, 0.0181], [0.24, 0.199, 0.0417, 0.0325, 0.0197, 0.0185, 0.0174, 0.0135], [0.351, 0.2413, 0.061, 0.0271, 0.0186, 0.0186, 0.0136, 0.0136], [0.399, 0.0693, 0.0448, 0.0289, 0.0187, 0.0175, 0.0155, 0.0145], [0.2771, 0.1483, 0.09, 0.0618, 0.0425, 0.0292, 0.0274, 0.0227], [0.29, 0.1552, 0.137, 0.0504, 0.0445, 0.0418, 0.0369, 0.0238], [0.2834, 0.2207, 0.1043, 0.0673, 0.0384, 0.0248, 0.0233, 0.0233], [0.4956, 0.1106, 0.076, 0.0317, 0.0298, 0.028, 0.0247, 0.0159], [0.7599, 0.0486, 0.0429, 0.0158, 0.0158, 0.009, 0.0074, 0.0066], [0.5799, 0.1466, 0.0307, 0.0155, 0.01, 0.0088, 0.0073, 0.0073], [0.5228, 0.1167, 0.0708, 0.0216, 0.0179, 0.0158, 0.0139, 0.0131], [0.5006, 0.1266, 0.087, 0.0341, 0.0265, 0.0182, 0.0133, 0.0125], [0.6009, 0.0718, 0.0633, 0.0339, 0.0264, 0.0193, 0.0193, 0.0125], [0.2123, 0.2123, 0.1459, 0.1288, 0.0885, 0.0445, 0.0347, 0.0093], [0.9015, 0.0308, 0.0187, 0.0146, 0.0054, 0.0044, 0.0044, 0.0031], [0.7465, 0.147, 0.0541, 0.0155, 0.0042, 0.0037, 0.0035, 0.0029]], "ranks": {"Kotlin": [196696, 189983, 134230, 10219, 21104, 30340, 26997, 47422, 39103, 133902, 79727, 36940, 31439, 39954, 74226, 35426, 49331, 37644, 51275, 126336, 158152, 26459, 59165, 125388, 79191, 45260, 32826, 69369, 14730, 17593, 21245, 30586, 79442, 54581, 61276, 37142, 11920, 9191, 8432, 7819, 8147, 15208, 13292, 9413, 12269, 30806, 47641, 48906, 103357, 77388, 75699, 42112, 29664, 21792, 11556, 2706, 527, 322, 429, 799, 1377, 1268, 1562]}}, {"pos": 485, "top": [[",", ".", "\u00a0", ";", " \u2013", "\u2013", "\u00a0\u00a0", "\u2026."], [",", "\u2013", " \u2013", ".", ";", " centre", " favourite", " Centre"], [",", "\u2013", ".", ";", " \u2013", "\u2026", "\u2026.", "\u00a0"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "aruhi", "uggy", "\u5982\u837c", " milfs", "odle", "ursal", " Shemale"], ["\u00a0\u00a0", " \u2019", "\u00ac", "\u00a0", "\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0", ",", "\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0", "able"], ["\u00a0\u00a0", "\u00a0", ",", "\u2026.", "\u00a0\u00a0\u00a0\u00a0", " \u200b\u200b", "<|quad_end|>", "\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0"], ["\u00a0", "\u00a0\u00a0", "\u00ac", " \u2019", "  \n\n", "\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0", "\u00a0\u00a0\u00a0\u00a0", "\u2019t"], ["ighbour", "\u5170\u8fbe", " **'", "\u7d2f\u7d2f", "able", "<|object_ref_start|>", "arder", "athon"], ["\u00a0", "ancock", "ighbour", "<|object_ref_start|>", "\u00a0\u00a0", "        \n\n", "   \n\n", "       \n\n"], ["\u00a0", ",", "\u00a0\u00a0", "\u4fe9\u4eba", "\u771f\u6709", " \u00ad", "\u76f8\u8f83", "<|object_ref_start|>"], ["\u00a0", ",", " \u00ad", "\u00a0\u00a0", "\u2013", "\u2026", ";", "<|object_ref_start|>"], ["attie", "\u987a\u5229\u5f00\u5c55", "\u7d2f\u7d2f", "\u660c\u76db", "\u9887\u5177", "oraus", "\u4fe9\u4eba", "\u771f\u6709"], ["\u987a\u5229\u5f00\u5c55", "\u660c\u76db", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\u7d2f\u7d2f", " pricey", "\u660c\u53bf", "\u88f3", "accine"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "attie", "\u751a\u81f3\u4f1a", " savvy", " freaking", " pricey", " flashy", "\u771f\u6709"], [" savvy", " sprawling", " flashy", " plenty", "\u52a8\u8f84", " pricey", " huge", " freaking"], [" sprawling", " freaking", " savvy", " skinny", " incredibly", " kids", " plenty", " folks"], [" sprawling", " plenty", " incredibly", " huge", " savvy", " wildly", " arguably", " hugely"], [" sprawling", " plenty", " savvy", " freaking", " hefty", " flashy", " huge", " pricey"], [" sprawling", " flashy", " savvy", " hugely", " hefty", " wildly", " incredibly", " quirky"], [" sprawling", " hugely", " wildly", "\u2014even", " vastly", " myriad", " incredibly", " hefty"], ["<|endoftext|>", "\n\n", " hugely", " sprawling", " myriad", " vastly", " wildly", " much"], [" sprawling", " hugely", " flashy", " pricey", " wildly", " incredibly", "\u52a8\u8f84", " huge"], [" ``", " hugely", " sprawling", " vastly", " wildly", " {{--<", " much", " ''"], [" much", " hugely", " ``", " vastly", " sprawling", " myriad", " {{--<", " wildly"], [" hugely", " sprawling", " vastly", " {{--<", " myriad", " wildly", " much", " \r\n\r\n"], [" hugely", " sprawling", " vastly", " wildly", " gritty", " pricey", " incredibly", " flashy"], [" sprawling", " ``", " hugely", " gritty", " pricey", " vastly", " disproportionately", " wildly"], [" \n\n", " much", "\n\n", " hugely", " vastly", " heavily", " sprawling", " wildly"], [" disproportionately", " sprawling", " vastly", " hugely", " heavily", " hardware", " wildly", " gritty"], [" disproportionately", " hardware", " slower", " **", " sluggish", " sprawling", " cheap", " technologies"], [" disproportionately", " **", " huge", " much", " cheap", " relatively", " slower", " hardware"], [" high", " much", " relatively", " low", " disproportionately", " huge", " heavily", " fast"], [" disproportionately", " relatively", " low", " heavily", " notoriously", " high", " slower", " incredibly"], [" disproportionately", " sluggish", " slower", " notoriously", " relatively", " hardware", " massively", " heavily"], [" notoriously", " disproportionately", " sluggish", " slower", " hardware", " incredibly", " heavily", " massively"], [" slower", " hardware", " sluggish", " notoriously", " disproportionately", " overclock", " slow", " poorly"], [" slower", " hardware", " sluggish", " notoriously", " overclock", " limited", " poorly", " slow"], [" hardware", " slower", " limited", " sluggish", " notoriously", " overclock", " poorly", " Hardware"], [" hardware", " CPU", " CPUs", " slower", " overclock", " Hardware", " sluggish", " limited"], [" CPU", " slower", " CPUs", " sluggish", " limited", " hardware", " overclock", " multit"], [" CPU", " CPUs", " limited", " slower", " overclock", " capacity", " hardware", " sluggish"], [" CPU", " limited", " CPUs", " hardware", " capacity", " engines", " constrained", " overclock"], [" CPU", " CPUs", " limited", " capacity", " hardware", " capacities", " overclock", " slower"], [" limited", " CPU", " CPUs", " hardware", " capacity", " slower", " overclock", " weaker"], [" limited", " CPU", " CPUs", " slower", " hardware", " capacity", " weaker", " sluggish"], [" limited", " CPU", " weaker", " CPUs", " weak", " sluggish", " slower", " mediocre"], [" limited", " weaker", " CPU", " CPUs", " weak", " multit", " sluggish", " constrained"], [" limited", " weaker", " CPUs", " weak", " constrained", " mediocre", "limited", " multit"], [" limited", " CPUs", " weaker", " mediocre", " constrained", " multit", "limited", " fragmented"], [" limited", "limited", "Limited", " mediocre", " \u0645\u062d\u062f\u0648\u062f", " weaker", " sluggish", " erratic"], [" limited", "limited", "Limited", "\u6709\u9650\u7684", " \u0645\u062d\u062f\u0648\u062f", " mediocre", " limitada", " sluggish"], [" limited", "limited", "Limited", "\u6709\u9650\u7684", " \u0645\u062d\u062f\u0648\u062f", "\u6709\u9650", " limitada", " limitado"], [" limited", "limited", "\u6709\u9650\u7684", "Limited", "\u6709\u9650", " \u0645\u062d\u062f\u0648\u062f", "\u53d7\u9650", " constrained"], [" limited", "limited", "\u6709\u9650\u7684", "Limited", "\u6709\u9650", " Limited", " \u0645\u062d\u062f\u0648\u062f", " constrained"], [" limited", "limited", "Limited", "\u6709\u9650\u7684", "\u6709\u9650", " Limited", "\u53d7\u9650", " CPU"], [" limited", "limited", "\u6709\u9650", "Limited", "\u6709\u9650\u7684", " CPU", " constrained", " Limited"], [" limited", "limited", " CPU", "Limited", "\u6709\u9650\u7684", "\u6709\u9650", " CPUs", " Limited"], [" limited", "limited", "\u6709\u9650", "Limited", "\u6709\u9650\u7684", " Limited", " constrained", " aggressive"], [" limited", "limited", "\u6709\u9650", "Limited", "\u6709\u9650\u7684", " constrained", " Limited", " weaker"], [" limited", "limited", " weaker", " aggressive", " weak", " CPU", "\u6709\u9650", " Limited"], [" limited", " thermal", "thermal", " Thermal", " weak", " thrott", " CPU", " aggressive"], [" limited", " thermal", " weak", " aggressive", " thrott", " constrained", "thermal", " Thermal"], [" thermal", " aggressive", " limited", " weak", " thrott", " fragmented", " constrained", " modest"]], "p": [[0.6144, 0.3727, 0.0037, 0.0027, 0.0022, 0.0013, 0.0005, 0.0004], [0.3647, 0.0525, 0.0384, 0.0339, 0.0233, 0.0076, 0.0036, 0.0025], [0.8748, 0.0559, 0.0559, 0.0043, 0.0022, 0.0022, 0.0012, 0.0003], [0.0102, 0.0027, 0.0016, 0.0013, 0.0011, 0.0009, 0.0009, 0.0009], [0.0261, 0.0131, 0.0116, 0.0055, 0.0045, 0.0043, 0.0038, 0.0038], [0.0649, 0.0394, 0.0271, 0.0073, 0.0039, 0.0032, 0.0027, 0.0024], [0.1847, 0.0342, 0.0134, 0.0126, 0.0081, 0.0076, 0.0072, 0.0059], [0.0069, 0.0061, 0.0048, 0.004, 0.0031, 0.0023, 0.0023, 0.0017], [0.108, 0.0051, 0.0047, 0.0031, 0.0031, 0.0031, 0.0029, 0.0025], [0.0225, 0.0211, 0.0025, 0.0015, 0.0014, 0.0014, 0.0011, 0.001], [0.6415, 0.0597, 0.0059, 0.0059, 0.0015, 0.0011, 0.0009, 0.0008], [0.0015, 0.0015, 0.0014, 0.0013, 0.0012, 0.0011, 0.0011, 0.001], [0.0018, 0.0015, 0.0015, 0.0014, 0.0013, 0.0011, 0.0011, 0.0011], [0.0022, 0.0013, 0.0013, 0.0012, 0.0012, 0.0012, 0.0012, 0.001], [0.0046, 0.0036, 0.0032, 0.002, 0.002, 0.002, 0.0018, 0.0017], [0.0071, 0.0052, 0.0043, 0.0038, 0.0033, 0.0031, 0.003, 0.0024], [0.0149, 0.0102, 0.0085, 0.0075, 0.0066, 0.0043, 0.0043, 0.004], [0.0084, 0.004, 0.0035, 0.0027, 0.0024, 0.002, 0.0019, 0.0018], [0.0138, 0.0061, 0.0048, 0.0045, 0.0045, 0.0035, 0.0035, 0.0029], [0.0272, 0.0155, 0.0121, 0.0073, 0.0061, 0.0057, 0.0057, 0.005], [0.1758, 0.0253, 0.0174, 0.0144, 0.0127, 0.0088, 0.0088, 0.0082], [0.0051, 0.0048, 0.0035, 0.0024, 0.0021, 0.002, 0.0018, 0.0017], [0.0139, 0.0123, 0.0066, 0.0058, 0.0051, 0.0048, 0.0048, 0.0048], [0.0119, 0.0093, 0.0087, 0.0077, 0.006, 0.0056, 0.0047, 0.0047], [0.0082, 0.005, 0.005, 0.0032, 0.003, 0.0028, 0.0021, 0.0019], [0.0053, 0.0044, 0.0034, 0.0028, 0.0026, 0.0023, 0.0022, 0.0021], [0.0055, 0.0046, 0.0043, 0.0036, 0.0028, 0.0026, 0.0026, 0.0024], [0.0137, 0.0113, 0.0106, 0.0083, 0.0073, 0.0073, 0.0053, 0.0044], [0.0162, 0.0098, 0.0087, 0.0087, 0.0082, 0.0072, 0.0053, 0.0046], [0.0294, 0.0122, 0.0115, 0.0095, 0.009, 0.0084, 0.0074, 0.0054], [0.0367, 0.0252, 0.0153, 0.0144, 0.0135, 0.0135, 0.0135, 0.0135], [0.0324, 0.0286, 0.0237, 0.0237, 0.0185, 0.0185, 0.0163, 0.0153], [0.0308, 0.0211, 0.0165, 0.0155, 0.0145, 0.0136, 0.0128, 0.0128], [0.0656, 0.031, 0.031, 0.0291, 0.0188, 0.0166, 0.0156, 0.0156], [0.0732, 0.0535, 0.0325, 0.0163, 0.0153, 0.0112, 0.0105, 0.0087], [0.136, 0.0935, 0.0878, 0.0728, 0.0268, 0.0209, 0.0153, 0.0082], [0.1641, 0.1641, 0.0684, 0.039, 0.0303, 0.0162, 0.0112, 0.0105], [0.2166, 0.0621, 0.0483, 0.0228, 0.0202, 0.0189, 0.0157, 0.013], [0.3398, 0.1936, 0.0859, 0.0381, 0.0204, 0.0204, 0.018, 0.0169], [0.3577, 0.1091, 0.1025, 0.0401, 0.0401, 0.0333, 0.0313, 0.0095], [0.4404, 0.1262, 0.0436, 0.03, 0.0282, 0.0282, 0.0264, 0.0219], [0.2741, 0.1663, 0.1467, 0.0575, 0.042, 0.0289, 0.0211, 0.0187], [0.2117, 0.1284, 0.1133, 0.0646, 0.057, 0.0346, 0.0325, 0.0269], [0.2621, 0.1802, 0.1093, 0.0549, 0.0355, 0.026, 0.0215, 0.019], [0.3614, 0.0628, 0.0489, 0.0316, 0.0297, 0.0262, 0.0246, 0.0204], [0.6076, 0.0267, 0.0251, 0.0162, 0.0152, 0.0134, 0.0118, 0.0087], [0.4627, 0.0278, 0.0278, 0.0261, 0.0261, 0.0179, 0.0169, 0.0158], [0.5495, 0.031, 0.0291, 0.0241, 0.0177, 0.0156, 0.0156, 0.0146], [0.2893, 0.0472, 0.0391, 0.0325, 0.0305, 0.0269, 0.0223, 0.0197], [0.2496, 0.0715, 0.0523, 0.0492, 0.0462, 0.0462, 0.0298, 0.0232], [0.1739, 0.1123, 0.0931, 0.0772, 0.0681, 0.0413, 0.0221, 0.0172], [0.3194, 0.2195, 0.1331, 0.1175, 0.0262, 0.0262, 0.0124, 0.0103], [0.568, 0.209, 0.0678, 0.0599, 0.0172, 0.0118, 0.0092, 0.0072], [0.6131, 0.1756, 0.0646, 0.057, 0.021, 0.0087, 0.0077, 0.0068], [0.681, 0.1722, 0.0435, 0.0299, 0.0233, 0.0076, 0.0059, 0.0052], [0.7189, 0.1249, 0.0358, 0.0279, 0.0279, 0.0132, 0.0116, 0.0062], [0.6219, 0.1388, 0.0451, 0.0398, 0.0351, 0.0351, 0.0129, 0.0114], [0.7021, 0.1383, 0.035, 0.035, 0.0212, 0.0113, 0.0088, 0.0078], [0.7287, 0.1266, 0.0411, 0.0283, 0.0151, 0.0133, 0.0092, 0.0063], [0.8273, 0.0283, 0.025, 0.0152, 0.0152, 0.0152, 0.0104, 0.0072], [0.4947, 0.34, 0.0279, 0.0192, 0.0169, 0.0149, 0.0132, 0.0132], [0.591, 0.2792, 0.0202, 0.0202, 0.0139, 0.0102, 0.0084, 0.0062], [0.6554, 0.0783, 0.0691, 0.0475, 0.0307, 0.01, 0.0093, 0.0093]], "ranks": {"Kotlin": [232643, 230008, 217818, 102464, 134907, 179223, 221032, 238493, 235439, 241310, 242051, 215644, 199932, 189709, 214139, 185587, 199134, 173114, 198942, 221210, 233273, 176038, 189320, 213010, 188723, 145166, 112047, 169809, 114088, 82654, 82670, 92247, 132491, 73922, 89336, 41941, 5147, 4210, 3578, 2689, 5364, 8944, 8881, 6989, 9078, 22671, 23796, 29341, 49291, 48770, 49078, 29207, 22784, 11461, 4912, 1660, 648, 286, 253, 695, 843, 1545, 1667]}}, {"pos": 486, "top": [[".", ",", "o", "\u2026.", "\u2013", "\u00a0", "\u2026", "\u2026.."], ["\u2011", "\u2013", ",", "s", " \u2013", "  \r\n", "\u00ad", "\u2026"], [",", "\u2013", "\u2026", ".", "\u2026.", "\u2026..", ".\u2013", ";"], ["aient", "eits", "\u5404\u79cd\u5404\u6837\u7684", "\uff0a\uff0a\uff0a\uff0a", " **\u201c", "svar", "takan", "sache"], ["s", " \u201c.", " \u200b\u200b", "o", ".\u201d", "\u2019.", ".\u2019", "ed"], ["s", " \u200b\u200b", "!\u2019", " \u201c.", "\u2026.", "\u00a0", "\u2019.", "o"], ["s", ".\u2019", "\u2019**", "!\u2019", " **\u201c", "\u00a0", ".\u201d", "o"], ["s", " **\u201c", " **.", "\u2019**", "\u0441\u044c", "svar", "limited", "saf"], [" \u200b\u200b", "\u00a0", "s", ".\u201d", "!\u201d.", "!\u2019", "!\u201d", "\u2019."], ["s", "\u00a0", "Limited", "limited", "-focused", "oader", " resources", "\u0441\u044c"], ["\u00a0", "s", "o", " access", " resources", " expertise", "-focused", " capabilities"], [" resources", " access", " capabilities", " **", "eits", " expertise", " constraints", " scope"], [" resources", " access", " expertise", " capabilities", "eits", " constraints", " scope", " capacities"], [" resources", " expertise", " access", " capabilities", " constraints", " impactful", " opportunities", " scope"], [" resources", " access", " expertise", " opportunities", " capabilities", " scope", " impact", " constraints"], [" resources", " expertise", " showcasing", " impactful", " access", " capabilities", " advancements", " scope"], [" resources", " access", " expertise", " capabilities", " scope", " showcasing", " opportunities", " impactful"], [" resources", " expertise", " capabilities", " scope", "eits", " showcasing", " impactful", " access"], [" resources", " expertise", " scope", " capabilities", " access", " impactful", " constraints", " opportunities"], [" resources", " access", " scope", " expertise", " capabilities", " opportunities", " capacities", " availability"], ["<|endoftext|>", " resources", "<|file_sep|>", " access", " expertise", " showcasing", " opportunities", "resources"], [" resources", " expertise", " capacities", "oader", " impactful", "edik", " scope", " capabilities"], [" resources", " access", " capacities", " capabilities", " expertise", "\u53d1\u5c55\u7a7a\u95f4", " capacity", "resources"], [" resources", " capacities", " access", " capacity", " capabilities", "\u53d1\u5c55\u7a7a\u95f4", " resource", " space"], [" resources", " capacities", " capabilities", " capacity", "\u53d1\u5c55\u7a7a\u95f4", "resources", " \r\n\r\n", "\u5145\u88d5"], [" resources", " capacities", " capabilities", " hardware", " capacity", " bandwidth", " infrastructure", " firepower"], [" resources", " capacities", " capabilities", " bandwidth", " hardware", " infrastructure", " capacity", " budgets"], [" resources", " capacity", " capacities", " hardware", " capabilities", " infrastructure", " \n\n", " space"], [" resources", " capacity", " capacities", " hardware", " infrastructure", " capabilities", " bandwidth", " budgets"], [" resources", " capacities", " capacity", " infrastructure", " bandwidth", " budgets", " hardware", " capabilities"], [" resources", " capacity", " budgets", " bandwidth", " infrastructure", " capacities", " **", " hardware"], [" resources", " capacity", " technology", " infrastructure", " budgets", " hardware", " capacities", " capabilities"], [" resources", " capacity", " budgets", " hardware", " infrastructure", " capacities", " bandwidth", " technology"], [" resources", " hardware", " budgets", " capacity", " infrastructure", " bandwidth", " capacities", " firepower"], [" resources", " budgets", " capacity", " hardware", " infrastructure", " capacities", " bandwidth", " budget"], [" hardware", " resources", " capacity", " budgets", " bandwidth", " overclock", " firepower", " capacities"], [" hardware", " overclock", " resources", " limited", " capacity", " budgets", " bandwidth", "limited"], [" hardware", " resources", " capacity", " overclock", " limited", " budgets", " bandwidth", " technology"], [" hardware", " capacity", " CPU", " resources", " overclock", " bandwidth", " capacities", " Hardware"], [" capacity", " CPU", " resources", " hardware", " bandwidth", "\u6709\u9650\u7684", " limited", " capacities"], [" capacity", " resources", " CPU", " memory", " hardware", " bandwidth", " capacities", " limited"], [" capacity", " resources", " CPU", " capacities", " hardware", " bandwidth", " limited", " horsepower"], [" capacity", " capacities", " resources", " hardware", " CPU", " bandwidth", " horsepower", " budgets"], [" capacity", " resources", " capacities", " CPU", " hardware", " bandwidth", " horsepower", " budgets"], [" capacity", " resources", " capacities", " bandwidth", " hardware", " CPU", " budgets", " horsepower"], [" capacity", " resources", " capacities", " bandwidth", " CPU", " limited", " budgets", " hardware"], [" capacity", " resources", " bandwidth", " CPU", " capacities", " limited", " budgets", " hardware"], [" capacity", " resources", " bandwidth", " CPU", " budgets", " capacities", " limited", " hardware"], [" capacity", " bandwidth", " CPU", " resources", " budgets", " capacities", " hardware", " CPUs"], [" bandwidth", " CPU", " budgets", " CPUs", " capacity", " resources", " firepower", " hardware"], [" CPU", " bandwidth", " CPUs", " budgets", "\u7b97\u529b", "_cpu", " capacity", "capacity"], [" CPU", " CPUs", "CPU", "_cpu", " bandwidth", "cpu", " GPU", " cpu"], [" CPU", " RAM", "CPU", " CPUs", "_cpu", " cpu", "cpu", "RAM"], [" CPU", " RAM", "CPU", " CPUs", " cpu", "cpu", " hardware", "_cpu"], [" CPU", " RAM", "CPU", " cpu", "cpu", " memory", " CPUs", "_cpu"], [" CPU", " RAM", "CPU", " memory", "cpu", " cpu", " CPUs", "\u5185\u5b58"], [" CPU", " RAM", " GPU", "CPU", " cpu", "cpu", " CPUs", "RAM"], [" CPU", " GPU", "CPU", " RAM", " CPUs", "GPU", "cpu", " cpu"], [" CPU", " RAM", " GPU", "RAM", " memory", "CPU", "memory", "\u5185\u5b58"], [" CPU", " RAM", " GPU", " memory", "CPU", "RAM", " cpu", " CPUs"], [" CPU", " RAM", " GPU", " memory", "CPU", "RAM", " CPUs", " heap"], [" CPU", " RAM", " GPU", " memory", " heap", "RAM", " CPUs", " thermal"], [" CPU", " RAM", " GPU", " thermal", " memory", " CPUs", " heap", " GC"]], "p": [[0.4328, 0.2975, 0.0852, 0.0355, 0.0314, 0.0314, 0.026, 0.0074], [0.4782, 0.1759, 0.0287, 0.0238, 0.0068, 0.006, 0.0057, 0.0057], [0.3637, 0.2832, 0.1516, 0.0811, 0.0632, 0.0205, 0.0071, 0.0052], [0.0051, 0.0048, 0.0042, 0.0042, 0.004, 0.0035, 0.0033, 0.0033], [0.6374, 0.0205, 0.0205, 0.016, 0.0097, 0.0071, 0.0052, 0.0052], [0.1572, 0.0698, 0.0089, 0.0089, 0.0074, 0.0069, 0.0065, 0.0065], [0.5728, 0.0196, 0.0196, 0.0153, 0.0143, 0.0119, 0.0099, 0.0087], [0.1147, 0.0155, 0.0129, 0.0121, 0.0083, 0.0083, 0.0078, 0.0061], [0.1308, 0.1308, 0.0793, 0.0311, 0.0292, 0.0274, 0.0188, 0.0156], [0.0383, 0.0338, 0.008, 0.0055, 0.0036, 0.0033, 0.0033, 0.0031], [0.2069, 0.1179, 0.0631, 0.0205, 0.015, 0.0055, 0.0052, 0.0049], [0.022, 0.0125, 0.0111, 0.0104, 0.0092, 0.0081, 0.0056, 0.0032], [0.0166, 0.0147, 0.0122, 0.0107, 0.0065, 0.0045, 0.0042, 0.0035], [0.0132, 0.0096, 0.007, 0.0052, 0.0043, 0.0033, 0.0029, 0.0026], [0.0219, 0.0219, 0.011, 0.0071, 0.0052, 0.0043, 0.003, 0.003], [0.01, 0.0094, 0.0088, 0.0061, 0.0061, 0.005, 0.0039, 0.0039], [0.0334, 0.0158, 0.0148, 0.0116, 0.0075, 0.0058, 0.0055, 0.0037], [0.0097, 0.0062, 0.0046, 0.0026, 0.0024, 0.0022, 0.002, 0.002], [0.0102, 0.0038, 0.0028, 0.0026, 0.0021, 0.002, 0.002, 0.002], [0.0143, 0.0049, 0.0046, 0.0043, 0.0036, 0.0036, 0.0032, 0.0023], [0.3469, 0.0087, 0.0046, 0.0028, 0.0023, 0.0018, 0.0018, 0.0016], [0.0078, 0.0032, 0.0027, 0.0025, 0.0022, 0.0021, 0.0018, 0.0016], [0.0168, 0.0045, 0.004, 0.0033, 0.0033, 0.0031, 0.0023, 0.0021], [0.0218, 0.0046, 0.0043, 0.0036, 0.0033, 0.0031, 0.0024, 0.0023], [0.0183, 0.0049, 0.0041, 0.0041, 0.0028, 0.0025, 0.0023, 0.0022], [0.0255, 0.0145, 0.0128, 0.0057, 0.0053, 0.0047, 0.0042, 0.0032], [0.0309, 0.0176, 0.0129, 0.01, 0.0094, 0.0089, 0.0073, 0.0069], [0.0607, 0.0253, 0.0174, 0.0119, 0.0119, 0.0072, 0.0068, 0.0053], [0.1062, 0.0391, 0.0324, 0.0252, 0.0237, 0.0209, 0.0185, 0.0153], [0.1196, 0.0468, 0.044, 0.0343, 0.0343, 0.0322, 0.0267, 0.0195], [0.2261, 0.0781, 0.0572, 0.0505, 0.0418, 0.0369, 0.0369, 0.027], [0.214, 0.1145, 0.0328, 0.0328, 0.0308, 0.024, 0.024, 0.0226], [0.1643, 0.0776, 0.0471, 0.0367, 0.0286, 0.0286, 0.0237, 0.0196], [0.0653, 0.0577, 0.0542, 0.0422, 0.0396, 0.0309, 0.0272, 0.0165], [0.0607, 0.0473, 0.0444, 0.0417, 0.021, 0.0197, 0.0174, 0.0112], [0.1722, 0.0384, 0.0361, 0.0319, 0.0248, 0.0233, 0.0141, 0.0133], [0.3589, 0.0403, 0.0403, 0.0314, 0.0314, 0.0229, 0.0202, 0.0158], [0.3448, 0.0529, 0.0467, 0.022, 0.0195, 0.0183, 0.0142, 0.0134], [0.5099, 0.0782, 0.0735, 0.0648, 0.0128, 0.012, 0.0106, 0.0106], [0.1691, 0.1691, 0.1317, 0.0905, 0.0584, 0.0244, 0.0244, 0.0229], [0.3049, 0.1849, 0.144, 0.06, 0.0468, 0.0284, 0.0284, 0.0104], [0.5148, 0.0789, 0.0697, 0.0543, 0.0543, 0.0226, 0.0226, 0.0176], [0.5453, 0.0836, 0.0651, 0.0448, 0.0448, 0.0271, 0.0211, 0.0145], [0.5184, 0.0901, 0.0619, 0.0482, 0.0376, 0.0331, 0.0258, 0.0228], [0.441, 0.1115, 0.0868, 0.0676, 0.041, 0.0319, 0.0319, 0.0282], [0.3621, 0.1037, 0.0808, 0.0555, 0.0555, 0.049, 0.049, 0.0337], [0.256, 0.1553, 0.1067, 0.0733, 0.0571, 0.0504, 0.0369, 0.0306], [0.2795, 0.2177, 0.0908, 0.0801, 0.0486, 0.0486, 0.0378, 0.0229], [0.1691, 0.1317, 0.1163, 0.1092, 0.0622, 0.0516, 0.0402, 0.0215], [0.1664, 0.0836, 0.0395, 0.0328, 0.0308, 0.0272, 0.0165, 0.0155], [0.1017, 0.0898, 0.0481, 0.0242, 0.0227, 0.0138, 0.0122, 0.0107], [0.7156, 0.0666, 0.0518, 0.0245, 0.0216, 0.014, 0.0123, 0.0075], [0.8443, 0.054, 0.0255, 0.0175, 0.0106, 0.0057, 0.005, 0.0035], [0.8904, 0.0502, 0.0144, 0.006, 0.006, 0.0047, 0.0041, 0.0041], [0.9476, 0.0253, 0.0105, 0.0039, 0.0023, 0.0018, 0.0016, 0.0011], [0.9343, 0.0411, 0.0092, 0.0038, 0.002, 0.002, 0.0014, 0.0012], [0.9503, 0.0174, 0.0106, 0.0106, 0.0027, 0.0027, 0.0016, 0.0009], [0.9024, 0.0654, 0.0187, 0.0061, 0.0014, 0.0014, 0.0012, 0.0011], [0.5175, 0.403, 0.0331, 0.0258, 0.0065, 0.0057, 0.0013, 0.0011], [0.9131, 0.0661, 0.007, 0.0054, 0.0037, 0.0023, 0.0006, 0.0004], [0.9209, 0.0667, 0.0062, 0.0029, 0.001, 0.0007, 0.0004, 0.0003], [0.739, 0.2399, 0.0119, 0.0027, 0.0024, 0.0013, 0.0006, 0.0006], [0.9315, 0.0319, 0.0281, 0.0038, 0.0012, 0.0007, 0.0007, 0.0002]], "ranks": {"Kotlin": [199157, 188973, 160056, 27661, 40398, 52866, 95123, 126121, 162570, 198506, 183283, 115184, 108789, 103418, 157759, 104958, 110903, 94815, 108194, 169925, 188056, 130908, 148504, 180070, 156963, 105180, 78150, 134466, 104174, 64921, 48467, 61884, 94664, 63209, 55027, 20752, 5734, 4565, 5685, 5145, 10211, 11653, 11849, 11723, 16707, 23482, 25663, 26167, 42554, 36330, 30515, 12048, 2347, 1049, 424, 332, 176, 93, 155, 227, 261, 354, 316]}}, {"pos": 487, "top": [[".", "o", ",", "a", "u", " ", "ed", ";"], [" \uff3b", "\uff20", "\uff3b", " \ufffd", "en\u00ed", " \u3010", "\u3011,", "\u064b"], [",", ",\u201d", "\uff3b", "\u3011,", "\u064b", " \uff3b", ".", "\u201d),"], [" Blowjob", "\uff3f\uff3f", " cumshot", " Shemale", " CPU", "\u3011,\u3010", " \u3010", "asaran"], [" \u3010", "\uff20", "\u3000", "ed", " \u3011", " CPU", " \uff3b", " //@"], [" \u3010", " \u3011", " \uff08", "\u3000", " \u201d", " CPU", "ed", "\u5728"], [" \u3010", "\u3000", " \uff3b", " \u3011", " \u201d", "\u5728", " \uff08", "\uff3b"], [" \u3010", "\u3000", " \u3011", " \uff3b", " CPU", "\uff3b", "\u3011,", " //@"], ["\u3000", " \u3010", " \uff3b", "...\u201d", "\uff3b", " [...]", " \u3011", ".\u201d"], [",", "\u3000", " \uff3b", " \u00ad", " CPU", "[\"@", "\uff3b", "\u00adt"], ["\u3000", " [...]", " \uff3b", " \u3010", "...\u201d", " CPU", ",", "\uff3b"], [" CPU", " CPUs", "/cpu", "CPU", "\u3000", "(cpu", " \u3010", "_CPU"], [" CPU", " CPUs", "CPU", "/cpu", "(cpu", "_CPU", "uC", " maneu"], [" CPU", " CPUs", "CPU", "(cpu", "/cpu", "uC", "_CPU", "_PHP"], [" CPU", " \u00ad", "(cpu", " CPUs", "o", "CPU", "\u00ads", "\u3000"], [" CPU", " CPUs", "(cpu", "\u548c\u4fe1\u606f\u5316", " hardware", " \u00ce", " \u00ad", "uC"], [" CPU", "o", " CPUs", "a", "ed", "CPU", "e", "&nbsp"], [" CPU", " CPUs", "(cpu", "CPU", "/cpu", "_CPU", "cpu", "\u548c\u4fe1\u606f\u5316"], [" CPU", " CPUs", "(cpu", "CPU", "/cpu", "_CPU", "&amp", "\u0630\u0644"], [" CPU", "(cpu", "&nbsp", "/cpu", "CPU", "&amp", "_CPU", " CPUs"], ["<|endoftext|>", " [...]", "&nbsp", " [\u2026]", "a", "...", " CPU", "@"], [" CPU", "/cpu", "CPU", " CPUs", "(cpu", " {{--<", "_CPU", "&amp"], [" CPU", " {{--<", "CPU", "&amp", "/cpu", "&nbsp", " $$$", "(cpu"], [" CPU", "<|endoftext|>", " {{--<", "&nbsp", " [...]", "CPU", " ...", "&amp"], [" CPU", "CPU", "/cpu", "&nbsp", " {{--<", " CPUs", "(cpu", "_CPU"], [" CPU", " CPUs", "/cpu", "CPU", "(cpu", " overclock", "_CPU", " cpu"], [" CPU", " CPUs", "/cpu", " overclock", "CPU", "(cpu", "_CPU", " horsepower"], [" CPU", " CPUs", "CPU", " hardware", " cpu", "/engine", " horsepower", "/cpu"], [" CPU", " CPUs", "CPU", " overclock", " cpu", "/cpu", " horsepower", "cpu"], [" CPU", " CPUs", " overclock", "CPU", " cpu", " horsepower", " hardware", "/cpu"], [" CPU", " CPUs", " overclock", " hardware", " horsepower", " cpu", " engines", " engine"], [" CPU", " CPUs", " hardware", " overclock", " cpu", " engines", " power", " horsepower"], [" CPU", " CPUs", " overclock", " hardware", " power", " and", "/cpu", " horsepower"], [" CPU", " overclock", " CPUs", " hardware", "/cpu", " tech", " cpu", " horsepower"], [" CPU", " overclock", " CPUs", "/cpu", " hardware", " cpu", "CPU", "cpu"], [" CPU", " overclock", "/cpu", " CPUs", "CPU", " cpu", " hardware", "cpu"], [" CPU", " overclock", " CPUs", "/cpu", "CPU", " hardware", " cpu", "cpu"], [" CPU", " CPUs", " overclock", "/cpu", "CPU", " cpu", " hardware", "cpu"], [" CPU", " CPUs", "/cpu", "CPU", " cpu", "cpu", " overclock", "(cpu"], [" CPU", " CPUs", " cpu", "/cpu", "CPU", "cpu", " overclock", "(cpu"], [" CPU", " CPUs", " cpu", "/cpu", "CPU", "cpu", " overclock", "(cpu"], [" CPU", " CPUs", " cpu", "/cpu", "CPU", "cpu", " overclock", "_cpu"], [" CPU", " CPUs", " cpu", "/cpu", " overclock", "CPU", "cpu", "_cpu"], [" CPU", " CPUs", " cpu", "/cpu", "CPU", " overclock", "cpu", " horsepower"], [" CPU", " CPUs", " cpu", "/cpu", " overclock", "CPU", "cpu", " horsepower"], [" CPU", " CPUs", "/cpu", " cpu", " overclock", " horsepower", "cpu", "CPU"], [" CPU", " CPUs", " cpu", "/cpu", "CPU", "cpu", " overclock", " horsepower"], [" CPU", " CPUs", "/cpu", " cpu", "CPU", "cpu", "(cpu", " horsepower"], [" CPU", "/cpu", " CPUs", " cpu", "CPU", "(cpu", "cpu", "\u7b97\u529b"], [" CPU", "/cpu", " CPUs", "CPU", "\u7b97\u529b", " cpu", " bandwidth", "(cpu"], [" CPU", "/cpu", " CPUs", "\u7b97\u529b", "CPU", " bandwidth", "(cpu", "/IP"], [" CPU", "/cpu", "CPU", " CPUs", "\u7b97\u529b", "(cpu", " bandwidth", " cpu"], [" CPU", "/cpu", "CPU", "(cpu", " CPUs", " cpu", " bandwidth", "cpu"], [" CPU", "/cpu", "CPU", " cpu", "(cpu", "cpu", "\u7b97\u529b", " CPUs"], [" CPU", "/cpu", "CPU", " cpu", "(cpu", "cpu", " CPUs", "_cpu"], [" CPU", "/cpu", "CPU", " cpu", " GPU", "cpu", "(cpu", " CPUs"], [" CPU", "/cpu", "CPU", " cpu", "(cpu", "cpu", " GPU", " CPUs"], [" CPU", "/cpu", " GPU", "CPU", "(cpu", "GPU", "/memory", " bandwidth"], [" head", " heads", "/head", "head", "\u5934", " Head", " cycles", "-head"], [" cores", " head", " heads", " cache", " cycles", "/head", " caches", "cores"], [" cores", " cycles", " head", " heads", " budgets", " caches", " cache", " budget"], [" cores", " head", " heads", " cycles", " cache", " thermal", " caches", " Head"], [" cores", " head", "/G", " cycles", " heads", " thermal", " threads", " caches"]], "p": [[0.3264, 0.2706, 0.1361, 0.0442, 0.0163, 0.0087, 0.005, 0.0028], [0.163, 0.0989, 0.0529, 0.0221, 0.0221, 0.0098, 0.0098, 0.0086], [0.1825, 0.0461, 0.0247, 0.0192, 0.017, 0.0141, 0.0124, 0.0091], [0.0179, 0.0096, 0.0066, 0.0038, 0.0038, 0.0038, 0.0033, 0.0029], [0.4924, 0.0856, 0.0588, 0.0404, 0.0404, 0.038, 0.023, 0.0085], [0.1087, 0.0795, 0.0482, 0.0332, 0.0243, 0.0243, 0.0243, 0.0189], [0.6005, 0.2503, 0.0205, 0.017, 0.0071, 0.0071, 0.0063, 0.0059], [0.461, 0.2796, 0.0403, 0.0277, 0.0168, 0.0051, 0.0045, 0.004], [0.6365, 0.0809, 0.0407, 0.0359, 0.0192, 0.017, 0.017, 0.011], [0.1286, 0.0473, 0.0174, 0.0136, 0.0127, 0.012, 0.0106, 0.0093], [0.3136, 0.0545, 0.0331, 0.0331, 0.0311, 0.0292, 0.0227, 0.0177], [0.1853, 0.0134, 0.0126, 0.0118, 0.0111, 0.0076, 0.0072, 0.0056], [0.2149, 0.0213, 0.0094, 0.0069, 0.0057, 0.0033, 0.0031, 0.0022], [0.1625, 0.0133, 0.0092, 0.0071, 0.0041, 0.0034, 0.0032, 0.0026], [0.0738, 0.0078, 0.0044, 0.0042, 0.0042, 0.003, 0.0029, 0.0024], [0.052, 0.008, 0.0028, 0.0023, 0.002, 0.0018, 0.0016, 0.0013], [0.0863, 0.016, 0.008, 0.0062, 0.0049, 0.0046, 0.0033, 0.0031], [0.1569, 0.0256, 0.0114, 0.0089, 0.0057, 0.0035, 0.0027, 0.0019], [0.0912, 0.0116, 0.007, 0.0062, 0.0055, 0.0038, 0.0028, 0.0023], [0.0447, 0.0083, 0.0073, 0.0047, 0.0047, 0.0039, 0.0032, 0.0029], [0.9566, 0.0007, 0.0005, 0.0005, 0.0002, 0.0002, 0.0002, 0.0002], [0.1122, 0.0118, 0.0118, 0.0076, 0.0076, 0.0067, 0.0059, 0.0034], [0.1116, 0.0182, 0.0151, 0.0086, 0.0086, 0.0071, 0.0067, 0.0063], [0.0373, 0.01, 0.0094, 0.0089, 0.0065, 0.0047, 0.0042, 0.0025], [0.1528, 0.0386, 0.0171, 0.0171, 0.0171, 0.0118, 0.0104, 0.0071], [0.6234, 0.0399, 0.0352, 0.0292, 0.0138, 0.0095, 0.0074, 0.0069], [0.5503, 0.0512, 0.0352, 0.0257, 0.0156, 0.0114, 0.0107, 0.0084], [0.5092, 0.0185, 0.0088, 0.0088, 0.0077, 0.0073, 0.0068, 0.0068], [0.7364, 0.0471, 0.0286, 0.0237, 0.0093, 0.0077, 0.006, 0.0044], [0.6797, 0.0673, 0.036, 0.017, 0.0086, 0.0076, 0.0052, 0.0049], [0.7287, 0.0363, 0.022, 0.0111, 0.0076, 0.0056, 0.0049, 0.0038], [0.708, 0.0292, 0.013, 0.0108, 0.0065, 0.0058, 0.0058, 0.0048], [0.5846, 0.0291, 0.0257, 0.0213, 0.0078, 0.0074, 0.0074, 0.0069], [0.5541, 0.0455, 0.0401, 0.0276, 0.019, 0.0084, 0.0079, 0.007], [0.5499, 0.0617, 0.0424, 0.0398, 0.0156, 0.0121, 0.0095, 0.0074], [0.7904, 0.0446, 0.037, 0.037, 0.0154, 0.0088, 0.0077, 0.0073], [0.8164, 0.0591, 0.0317, 0.0247, 0.015, 0.0109, 0.0049, 0.0046], [0.8968, 0.0239, 0.0186, 0.0164, 0.0088, 0.0073, 0.0047, 0.0037], [0.9393, 0.0172, 0.0152, 0.0081, 0.0081, 0.0034, 0.0026, 0.0016], [0.9341, 0.0151, 0.0133, 0.0133, 0.0118, 0.0049, 0.0023, 0.0012], [0.9379, 0.0221, 0.0152, 0.0072, 0.0072, 0.0049, 0.0018, 0.001], [0.9306, 0.0361, 0.0103, 0.0081, 0.0049, 0.003, 0.0026, 0.0008], [0.8999, 0.0448, 0.0165, 0.0145, 0.0078, 0.0042, 0.0037, 0.0011], [0.9385, 0.0283, 0.0118, 0.0056, 0.0049, 0.0034, 0.0023, 0.0008], [0.9207, 0.0315, 0.0169, 0.009, 0.0055, 0.0026, 0.0023, 0.0019], [0.9197, 0.0278, 0.0149, 0.0102, 0.0024, 0.0018, 0.0016, 0.0015], [0.8882, 0.039, 0.0209, 0.0144, 0.0027, 0.0022, 0.0021, 0.0021], [0.8589, 0.0549, 0.0229, 0.0202, 0.0079, 0.0027, 0.002, 0.0019], [0.7894, 0.0734, 0.0648, 0.0128, 0.012, 0.0039, 0.0039, 0.0025], [0.5544, 0.1588, 0.075, 0.0215, 0.0157, 0.0122, 0.0115, 0.0095], [0.4022, 0.244, 0.0699, 0.0451, 0.0274, 0.0188, 0.0138, 0.0069], [0.5036, 0.2696, 0.0772, 0.0251, 0.0195, 0.0172, 0.0152, 0.0092], [0.6373, 0.2344, 0.0593, 0.015, 0.0117, 0.0103, 0.0071, 0.0043], [0.6464, 0.2694, 0.0413, 0.0104, 0.0056, 0.0049, 0.0049, 0.0049], [0.8271, 0.0988, 0.0529, 0.0104, 0.0034, 0.0034, 0.0021, 0.0003], [0.8043, 0.0961, 0.0583, 0.013, 0.0061, 0.0061, 0.0048, 0.0029], [0.7997, 0.0955, 0.0656, 0.0114, 0.0078, 0.0061, 0.0048, 0.0029], [0.5283, 0.1514, 0.104, 0.0631, 0.0205, 0.0205, 0.0141, 0.0124], [0.6422, 0.0767, 0.0597, 0.0597, 0.0362, 0.0194, 0.0171, 0.0151], [0.9533, 0.0288, 0.0027, 0.0024, 0.0021, 0.0014, 0.0014, 0.001], [0.799, 0.1573, 0.0188, 0.0061, 0.0033, 0.0029, 0.0025, 0.0012], [0.5713, 0.2699, 0.1125, 0.0134, 0.0034, 0.0026, 0.0026, 0.0021], [0.6457, 0.2375, 0.025, 0.0221, 0.0195, 0.0092, 0.0041, 0.0034]], "ranks": {"Kotlin": [155524, 116467, 141294, 17991, 38084, 70687, 99245, 167304, 195881, 214138, 198547, 155238, 113102, 173155, 219352, 156918, 164971, 144197, 159421, 198994, 197399, 113143, 117960, 180978, 115169, 56880, 40332, 58016, 20230, 13507, 23337, 33047, 72169, 21287, 20777, 10571, 4988, 4661, 4606, 4546, 10759, 10075, 6207, 7205, 8115, 22774, 16606, 16715, 19380, 25674, 36192, 21988, 12146, 3711, 1741, 1182, 1116, 463, 453, 873, 1257, 2823, 3163]}}, {"pos": 488, "top": [[".", ",", " \u2013", "\u2013", "\u00a0", "\u2013and", " ", ";"], ["\u2013and", "\u2013", "sville", " \u2013", "sWith", "iness", "kids", "less"], ["\u2013", ".\u2013", "\u2013and", " \u2013", ",", "\u2018s", ".", "sville"], ["runner", "liner", " Hidal", " Blowjob", "sville", "sWith", "ieras", " Shemale"], [" \u2018", "fulness", "lessness", "lessly", "runner", "iness", "liner", "sWith"], ["fulness", "sWith", "arity", "iness", "caps", "lessness", "bed", "server"], ["edly", "ings", "ting", "worm", "lessly", "fulness", " \u2018", "shot"], ["edly", "iness", "lessly", "fulness", "ings", "sville", "worm", "manship"], ["iness", "fulness", "edly", "lessly", "ting", "ings", "manship", "ery"], ["iness", "fulness", "edly", "lessly", "worm", "lessness", "\u0275", "manship"], ["fulness", "lessly", "iness", "lessness", "manship", "worm", "gear", "mate"], ["lessly", "lessness", "fulness", "iness", "\u0275", "stuff", "sville", "iveness"], ["lessness", "lessly", "fulness", "erness", "\u0275", "iness", "iveness", "ularity"], ["\u0275", "lessness", "lessly", "fulness", "erness", "ularity", "iveness", "\u653e\u77e2"], ["lessly", "fulness", "\u0275", "lessness", "mind", "ularity", "mate", "iveness"], ["schuh", "lessly", "\u0275", " Palav", "fulness", "\u653e\u77e2", "stalk", "manship"], ["lessly", "fulness", "lessness", "iness", "\u653e\u77e2", "mind", "schuh", "manship"], ["lessly", "\u653e\u77e2", "fulness", "lessness", "schuh", "manship", "gear", "\u0275"], ["lessly", "schuh", "\u653e\u77e2", "\u0275", "lessness", "erness", " Palav", "fulness"], ["lessly", "schuh", "erness", "\u0275", "fulness", "lessness", "\u653e\u77e2", "acious"], ["lessly", "mind", " --", "fulness", "edly", "ahead", "acious", "iness"], ["lessly", "erness", "schuh", "fulness", "edly", "mind", "lessness", "acious"], [" --", "lessly", "fulness", "mind", "edly", "ery", "iness", "lessness"], [" --", "edly", "mind", "ahead", "lessly", "fulness", "ery", "iness"], [" --", " \r\n\r\n", "edly", "mind", "lessly", "fulness", " powering", "\u5145\u88d5"], [" powering", " crunch", "lessly", "edly", " --", "erness", "mind", "acious"], [" powering", " crunch", " --", "lessly", " MEDIATEK", "edly", " **>>", "manship"], [" --", " powering", " crunch", " \r\n\r\n", " tech", " arguably", " __", "edly"], [" powering", " crunch", " tech", " --", "iness", "mind", " engine", "edly"], [" powering", " tech", " crunch", " __", " overclock", " engine", " **", "iness"], [" powering", " tech", " beyond", " crunch", " engine", " --", " pace", " effort"], [" beyond", " power", " powering", " down", " tech", " up", " driving", " --"], [" beyond", " powering", " power", " down", " up", " driving", " --", " over"], [" tech", " powering", " crunch", " overclock", " gear", " engine", " relentless", " hardware"], [" powering", " crunch", " tech", " overclock", " relentless", " engine", "erness", " pace"], [" overclock", " powering", "\u2011", " engine", " \u2026", " hardware", " acceleration", " tech"], [" overclock", " acceleration", " engine", " hardware", " speed", " rapid", " faster", " tech"], [" engine", " driving", " gear", " overclock", " acceleration", " hardware", " speed", " fast"], [" engine", " driving", " motion", " hardware", " workload", " animation", " processing", " gear"], [" motion", " animation", " engine", " hardware", " driving", " acceleration", " gaming", " gameplay"], [" animation", " motion", " gaming", " engine", " gameplay", " speed", " CPU", " processing"], [" animation", " motion", " engine", " processing", " acceleration", " Motion", " animations", " processor"], [" animation", " motion", " engine", " animations", " hardware", " acceleration", "\u6bcf\u79d2", " physics"], [" animation", " motion", " hardware", " acceleration", " animations", " physics", " processing", " engine"], [" animation", " motion", " hardware", " acceleration", " processing", " animations", " chore", " engine"], [" animation", " motion", " hardware", " processing", " acceleration", " animations", " chore", " physics"], [" animation", " acceleration", " motion", " hardware", " processing", " physics", " syncing", " animations"], [" animation", " acceleration", " hardware", " motion", " syncing", " processing", " physics", " animations"], [" animation", " syncing", " acceleration", " synced", " animations", " motion", "frames", "-animation"], ["frames", ";**", " animation", " acceleration", " framerate", "-processing", "/fast", " powering"], ["frames", "**.", "pace", "ensity", "++.", " \u0438", "\tand", "anship"], [" \u0438", " and", "CPU", " \u098f\u09ac\u0982", " v\u00e0", "cpu", "\u5ea6\u548c", "\u6027\u548c"], ["CPU", " CPU", " capacity", "room", "capacity", "cpu", "quarters", " capacities"], ["CPU", "room", " CPU", "rooms", "quarters", "cpu", " capacity", "space"], ["room", "CPU", " CPU", "space", " capacity", "gear", "quarters", "/cpu"], ["room", "space", "quarters", "gear", " CPU", "CPU", " bandwidth", "/cpu"], ["room", "space", "ROOM", "rooms", " room", "Room", "-room", "-space"], ["room", "ROOM", "rooms", "margin", "-margin", " margin", "Margin", " margins"], ["head", " head", "room", "/head", "Head", " Head", "-head", "(head"], ["room", "head", " head", "rooms", " room", "-head", "ROOM", "Room"], ["room", "rooms", " room", "ROOM", "Room", "-room", " rooms", " Room"], ["room", "rooms", " room", "ROOM", "-room", "Room", "oom", " rooms"], ["room", "rooms", " room", "-room", "ROOM", "rom", "r", "rum"]], "p": [[0.5798, 0.1661, 0.1294, 0.0889, 0.0186, 0.0017, 0.0015, 0.0014], [0.0469, 0.0303, 0.0251, 0.0208, 0.0068, 0.0056, 0.0022, 0.0018], [0.4362, 0.0914, 0.0914, 0.0159, 0.0109, 0.0055, 0.0052, 0.0048], [0.0023, 0.0016, 0.0014, 0.0014, 0.0012, 0.0012, 0.0011, 0.0011], [0.0143, 0.0098, 0.0053, 0.0046, 0.0044, 0.0044, 0.0041, 0.0041], [0.0106, 0.0061, 0.0053, 0.005, 0.0047, 0.003, 0.0029, 0.0027], [0.1171, 0.0627, 0.0278, 0.023, 0.0217, 0.0191, 0.018, 0.0123], [0.0369, 0.027, 0.0254, 0.0198, 0.0198, 0.0154, 0.012, 0.0099], [0.0574, 0.0507, 0.0271, 0.0225, 0.0136, 0.0136, 0.0128, 0.0128], [0.0305, 0.0153, 0.0127, 0.0119, 0.0064, 0.0047, 0.0047, 0.0047], [0.0285, 0.0268, 0.0153, 0.0135, 0.0099, 0.0099, 0.0077, 0.0068], [0.0268, 0.0184, 0.0127, 0.0105, 0.0068, 0.0044, 0.0041, 0.0039], [0.0166, 0.0107, 0.0074, 0.0069, 0.0057, 0.0054, 0.0051, 0.0039], [0.008, 0.008, 0.0066, 0.0052, 0.0046, 0.004, 0.0029, 0.0023], [0.0109, 0.0096, 0.0062, 0.0043, 0.0033, 0.0031, 0.0029, 0.0028], [0.0045, 0.0031, 0.0024, 0.0021, 0.0021, 0.0021, 0.0018, 0.0016], [0.016, 0.0151, 0.0071, 0.0055, 0.0049, 0.0043, 0.0036, 0.0034], [0.0126, 0.0118, 0.0081, 0.006, 0.0044, 0.0036, 0.0036, 0.0032], [0.0067, 0.0055, 0.004, 0.0033, 0.0031, 0.0031, 0.0026, 0.0022], [0.0081, 0.0071, 0.0036, 0.0032, 0.0026, 0.0026, 0.0019, 0.0016], [0.0078, 0.0069, 0.0064, 0.0047, 0.0039, 0.0032, 0.003, 0.0021], [0.0076, 0.0056, 0.0043, 0.003, 0.0028, 0.0026, 0.0025, 0.0023], [0.026, 0.0108, 0.0075, 0.0066, 0.0062, 0.0037, 0.0033, 0.0033], [0.044, 0.006, 0.006, 0.0053, 0.0038, 0.0038, 0.0034, 0.0032], [0.0168, 0.0066, 0.0048, 0.0045, 0.0033, 0.0031, 0.0027, 0.0023], [0.0081, 0.0046, 0.0046, 0.0041, 0.0028, 0.0028, 0.0026, 0.0025], [0.0097, 0.0059, 0.0038, 0.0024, 0.0023, 0.0022, 0.002, 0.002], [0.0769, 0.0207, 0.0059, 0.0052, 0.0043, 0.0038, 0.0038, 0.0036], [0.0263, 0.0117, 0.0075, 0.0052, 0.0043, 0.0043, 0.004, 0.004], [0.0199, 0.0106, 0.01, 0.0065, 0.0057, 0.0039, 0.0039, 0.003], [0.0234, 0.0151, 0.0142, 0.011, 0.0076, 0.0071, 0.0059, 0.0052], [0.0251, 0.0152, 0.0119, 0.0111, 0.0105, 0.0077, 0.0068, 0.0063], [0.0174, 0.0154, 0.0093, 0.0082, 0.0073, 0.0073, 0.0068, 0.0064], [0.0158, 0.0158, 0.0096, 0.0062, 0.0045, 0.0045, 0.0037, 0.0033], [0.0189, 0.0139, 0.0095, 0.0084, 0.0045, 0.0045, 0.0042, 0.0037], [0.0183, 0.0118, 0.0118, 0.0067, 0.0059, 0.0056, 0.0052, 0.0052], [0.0249, 0.0171, 0.0142, 0.0118, 0.0092, 0.0081, 0.0063, 0.0059], [0.0187, 0.0088, 0.0083, 0.0083, 0.0083, 0.0078, 0.0073, 0.0057], [0.0391, 0.0197, 0.0153, 0.0127, 0.0099, 0.0099, 0.0087, 0.0077], [0.0951, 0.0478, 0.0212, 0.0114, 0.01, 0.0094, 0.0094, 0.0088], [0.1272, 0.053, 0.0302, 0.0221, 0.0221, 0.0208, 0.0183, 0.0152], [0.1848, 0.127, 0.0302, 0.0283, 0.0235, 0.0172, 0.0161, 0.0152], [0.2288, 0.0896, 0.0273, 0.0227, 0.0213, 0.0188, 0.0166, 0.0166], [0.2695, 0.0681, 0.0322, 0.0235, 0.0221, 0.0195, 0.0152, 0.0152], [0.2628, 0.0486, 0.0314, 0.0314, 0.0295, 0.023, 0.0158, 0.0131], [0.2022, 0.0579, 0.0291, 0.0241, 0.0227, 0.02, 0.0146, 0.0129], [0.1091, 0.0377, 0.0333, 0.0313, 0.0167, 0.0139, 0.0122, 0.0115], [0.1065, 0.0305, 0.021, 0.0197, 0.0174, 0.0153, 0.0144, 0.0112], [0.0426, 0.0228, 0.0122, 0.0084, 0.0079, 0.0074, 0.0074, 0.0069], [0.0072, 0.0056, 0.0056, 0.0056, 0.0056, 0.0053, 0.0041, 0.0039], [0.0088, 0.0061, 0.0061, 0.0057, 0.0054, 0.005, 0.0047, 0.0047], [0.0245, 0.0216, 0.0179, 0.0116, 0.0075, 0.007, 0.007, 0.0066], [0.0791, 0.0423, 0.0351, 0.0257, 0.0241, 0.0213, 0.0188, 0.0121], [0.0497, 0.0439, 0.0387, 0.0126, 0.0126, 0.0126, 0.0111, 0.0104], [0.0854, 0.0803, 0.0708, 0.0518, 0.0203, 0.0191, 0.0168, 0.0148], [0.1129, 0.0996, 0.0533, 0.0471, 0.039, 0.039, 0.0222, 0.0144], [0.9307, 0.0206, 0.0117, 0.0103, 0.0015, 0.0015, 0.0012, 0.0012], [0.9246, 0.0085, 0.0085, 0.0049, 0.004, 0.004, 0.0035, 0.0024], [0.4614, 0.4071, 0.0429, 0.023, 0.023, 0.0179, 0.0158, 0.0027], [0.9311, 0.0319, 0.0248, 0.0038, 0.0026, 0.0014, 0.001, 0.0007], [0.9863, 0.0075, 0.0036, 0.0007, 0.0005, 0.0005, 0.0002, 0.0001], [0.9923, 0.0046, 0.0017, 0.0005, 0.0004, 0.0001, 0.0001, 0.0], [0.9956, 0.0036, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0]], "ranks": {"Kotlin": [217954, 210621, 166288, 85316, 181664, 177837, 219762, 233641, 229927, 229681, 230019, 194030, 154040, 148251, 204717, 187000, 199130, 184092, 150326, 180066, 213604, 150618, 202194, 229849, 201215, 149766, 130023, 144786, 123988, 54508, 118500, 112827, 146481, 59706, 41914, 27861, 13214, 16032, 30477, 50946, 72146, 65851, 30546, 35260, 53622, 67359, 50200, 50686, 75386, 80981, 59995, 63995, 52897, 32594, 18813, 15941, 9015, 15366, 29250, 31838, 61526, 78186, 75558]}}, {"pos": 489, "top": [[".", ",", "a", ";", "!", "o", "er", "?"], ["sville", " Room", " RI", "town", "liness", "sWith", "\u2013", "shire"], ["\u2013", " \u2013", "\u2026..", "\u2026", "\u2026.", "\u2013and", "\u2026\u2026", ","], ["utnik", " \u041a\u0440\u0430\u0441\u0438", "deck", " cumshot", "----------</", "\u5982\u837c", "\ufffd\ufffd", "-------------</"], [" &", "&r", " #", "&a", ",&", "ing", ".&", " ATM"], [" Fraser", " Halifax", "mist", "odka", "HK", " Harbour", "\u969c", "aum"], [" \u2019", "\ufffd", " \u2013", " swiftly", "\u2014\u2014", "\u2013\u2013", " bespoke", " #"], ["&nbsp", " \r\n", " swiftly", "-pane", " \ufffd", " bespoke", " snag", " ~"], ["&nbsp", " \u2013", " &", ".&", "\u00a0", ",", " (&", "\u2014and"], [",", "&nbsp", "\u2013", " swiftly", "\u2013and", " ostensibly", " bespoke", "\u2013\u2013"], ["&nbsp", " bespoke", " albeit", " atop", " alongside", " amid", " \u2013", " effortlessly"], [" albeit", " bespoke", " atop", " showcasing", " showcased", " amid", " incentiv", " alongside"], [" atop", " albeit", " amid", " showcased", " incentiv", " showcasing", " impactful", " bespoke"], [" atop", " albeit", " showcased", " impactful", " showcasing", " incentiv", " amid", " bespoke"], [" albeit", " atop", " alongside", " showcasing", " arguably", " amid", " bespoke", " effortlessly"], [" bespoke", " atop", " arguably", " incentiv", " albeit", " bolster", " sidelined", " swiftly"], [" atop", " arguably", " albeit", " amid", " bolster", " bespoke", " amidst", " akin"], [" atop", " amid", " albeit", " impactful", "\u582a\u6bd4", " bespoke", " incentiv", " tweaking"], [" atop", " amid", " impactful", " amidst", " albeit", " arguably", "\u582a\u6bd4", " incentiv"], [" atop", " amid", " amidst", " albeit", " arguably", " alongside", " comfortably", " swiftly"], [" atop", " amidst", " amid", "<|endoftext|>", " swiftly", " arguably", " alongside", " albeit"], [" atop", " amid", " amidst", " arguably", " albeit", " comfortably", " swiftly", " beyond"], [" atop", " amid", " amidst", " arguably", " swiftly", " beyond", " albeit", " --"], [" atop", " amid", " amidst", " beyond", " arguably", " alongside", " --", " swiftly"], [" atop", " amid", " amidst", " --", " arguably", "\u5373\u4fbf", "\u2014even", " beyond"], [" atop", " amid", " amidst", " overclock", " **", " impactful", " powering", " ___"], [" atop", " overclock", " amid", " powering", " amidst", " ___", " **", " beyond"], [" atop", " --", " ___", " amid", " beyond", " powering", " arguably", " amidst"], [" atop", " overclock", " powering", " amid", " **", " beyond", " arguably", " --"], [" atop", " **", " amid", " overclock", " beyond", " powering", "\u2014even", " comfortably"], [" beyond", " atop", " ,", " amid", " critical", " even", " .", " for"], [" beyond", " critical", " for", " even", " .", " comfortably", " ,", " modest"], [" beyond", " critical", " even", " comfortably", " barely", " tight", "\u2014even", " atop"], ["\u2014and", " critical", " beyond", "\u2014even", " even", " heavily", " barely", " comfortably"], ["\u2014and", " critical", " heavily", " comfortably", "\u2014even", " beyond", " atop", " arguably"], ["\u2014and", " critical", " notoriously", "\u2014even", " \u2014", " heavily", " beyond", " powering"], ["\u2014and", " notoriously", "\u2014even", " heavily", " critical", " overclock", " barely", " beyond"], [" notoriously", " critical", "\u2014and", " overclock", " even", " beyond", "\u2014even", " disproportionately"], [" tight", " critical", " barely", " notoriously", " even", "\u2014and", "\u2014even", " tightly"], [" overclock", " critical", " tight", " space", " capacity", "\u2014even", " barely", "\u2014and"], [" overclock", " capacity", " space", " critical", " powering", " tight", " for", " hardware"], [" overclock", " capacity", " powering", " limits", " budgets", " budget", "\u4f59\u529b", " limited"], [" overclock", " budgets", " budget", " capacity", "\u4f59\u529b", "\u4f59\u88d5", " limits", " powering"], [" budgets", " budget", " limits", " capacity", "\u4f59\u88d5", " space", " powering", " margins"], [" budgets", " budget", " margins", " capacity", " tight", " critical", " limited", " space"], [" budgets", " limited", " tight", " budget", " limits", " critical", " margins", " capacity"], [" budgets", " limited", " tight", " budget", " critical", " margins", " barely", " limits"], [" budgets", " tight", " limited", " budget", " margins", " critical", " tightly", " capacity"], [" and", " budgets", " budget", " tight", " (~", "\u4f59\u88d5", " margins", " reserves"], [" and", " (~", " budgets", " budget", " tight", " AND", " limited", " (<"], [" and", " limited", "**.", ".**", " (~", " ().", "().", "\u548c\u4f4e"], [" and", " (~", " ().", "().", ".**", " v\u00e0", " \u0438", " limited"], [" and", " (<", " limited", " (~", " memory", " RAM", " buffering", " CPU"], [" and", " (<", " (~", " memory", " limited", " RAM", " CPU", " v\u00e0"], [" memory", " and", " RAM", " limited", " CPU", "Memory", " volatile", "\u5185\u5b58"], [" memory", " RAM", " fragmented", "Memory", "\u5185\u5b58", " Memory", " MEMORY", " volatile"], [" fragmented", " memory", " inconsistent", " RAM", " erratic", " and", " unstable", " volatile"], [" memory", " RAM", " fragmented", " erratic", " inconsistent", " GPU", "RAM", " and"], [" memory", " RAM", "RAM", " inconsistent", " erratic", " Memory", " and", "Memory"], [" memory", " and", " strict", " fragmented", " RAM", " inconsistent", " erratic", "strict"], [" thermal", " and", " memory", "thermal", " Thermal", " RAM", " fragmented", " strict"], [" and", " thermal", " memory", ".", "thermal", " RAM", " Thermal", " fragmented"], [" and", ".", " thermal", " for", "thermal", " memory", " fragmented", " Thermal"]], "p": [[0.8446, 0.0786, 0.0272, 0.0094, 0.0064, 0.0037, 0.0035, 0.0035], [0.015, 0.0038, 0.0038, 0.0034, 0.0034, 0.0025, 0.0023, 0.0023], [0.4317, 0.1091, 0.0705, 0.0294, 0.0276, 0.009, 0.0084, 0.0074], [0.0027, 0.0024, 0.002, 0.0018, 0.0018, 0.0017, 0.0015, 0.0015], [0.0282, 0.0194, 0.0118, 0.0104, 0.0071, 0.0071, 0.0056, 0.0052], [0.015, 0.0066, 0.0043, 0.0036, 0.0026, 0.0024, 0.0021, 0.002], [0.0103, 0.0097, 0.0091, 0.0086, 0.0081, 0.0067, 0.0052, 0.0046], [0.0195, 0.0063, 0.0063, 0.0056, 0.0049, 0.0041, 0.0038, 0.0036], [0.4133, 0.0299, 0.0264, 0.0206, 0.0182, 0.0125, 0.0117, 0.0091], [0.013, 0.0084, 0.0074, 0.0061, 0.0048, 0.0048, 0.004, 0.004], [0.0707, 0.0179, 0.0139, 0.0115, 0.0115, 0.0108, 0.0096, 0.009], [0.0201, 0.0138, 0.0115, 0.0089, 0.0061, 0.0058, 0.0048, 0.0042], [0.0159, 0.0132, 0.0103, 0.0103, 0.0085, 0.0085, 0.008, 0.0052], [0.0197, 0.0173, 0.0112, 0.0099, 0.0099, 0.0093, 0.0077, 0.006], [0.0494, 0.0264, 0.0171, 0.0151, 0.0125, 0.011, 0.0104, 0.0097], [0.0174, 0.0174, 0.0093, 0.0077, 0.0068, 0.0047, 0.0044, 0.0036], [0.0372, 0.0226, 0.0212, 0.0165, 0.0155, 0.0129, 0.0113, 0.0113], [0.0105, 0.0082, 0.0068, 0.006, 0.006, 0.0056, 0.0053, 0.0039], [0.0226, 0.0187, 0.0069, 0.0065, 0.0065, 0.0057, 0.0054, 0.0054], [0.0535, 0.0305, 0.0223, 0.0163, 0.0112, 0.0053, 0.005, 0.005], [0.0874, 0.0413, 0.0413, 0.0388, 0.0342, 0.0221, 0.0195, 0.0183], [0.0639, 0.0321, 0.0126, 0.0056, 0.0046, 0.0041, 0.0041, 0.0038], [0.109, 0.0454, 0.0312, 0.0157, 0.0115, 0.0115, 0.0108, 0.0084], [0.0909, 0.0708, 0.0429, 0.0314, 0.0245, 0.0203, 0.0148, 0.0131], [0.1535, 0.0413, 0.0284, 0.0126, 0.0111, 0.0111, 0.0104, 0.0067], [0.0912, 0.0231, 0.014, 0.0123, 0.0116, 0.0062, 0.0058, 0.0058], [0.1104, 0.0204, 0.0204, 0.0132, 0.0085, 0.0055, 0.0052, 0.0046], [0.1175, 0.0669, 0.0262, 0.0217, 0.0159, 0.0132, 0.0132, 0.0109], [0.1335, 0.0205, 0.0181, 0.017, 0.0103, 0.008, 0.0071, 0.0066], [0.0819, 0.0283, 0.025, 0.0235, 0.0161, 0.0151, 0.0104, 0.0056], [0.0865, 0.0219, 0.0205, 0.0205, 0.0205, 0.017, 0.017, 0.017], [0.0783, 0.037, 0.0326, 0.0288, 0.0239, 0.0224, 0.0211, 0.0164], [0.0468, 0.0343, 0.0322, 0.0195, 0.0172, 0.0172, 0.0143, 0.0143], [0.034, 0.0319, 0.0282, 0.0265, 0.0249, 0.0234, 0.0161, 0.0133], [0.0261, 0.0203, 0.0191, 0.0149, 0.0131, 0.0131, 0.0123, 0.0123], [0.077, 0.0221, 0.0221, 0.0221, 0.0195, 0.0183, 0.0161, 0.0152], [0.0399, 0.0352, 0.0166, 0.0156, 0.0156, 0.013, 0.0107, 0.0107], [0.0185, 0.0174, 0.0144, 0.0127, 0.0127, 0.0119, 0.0093, 0.0093], [0.0169, 0.0169, 0.014, 0.0131, 0.0131, 0.0123, 0.0116, 0.0109], [0.024, 0.0165, 0.0155, 0.0137, 0.0121, 0.0121, 0.01, 0.01], [0.0517, 0.0334, 0.019, 0.0179, 0.0179, 0.0139, 0.0139, 0.0108], [0.0572, 0.0419, 0.027, 0.0254, 0.0224, 0.0211, 0.0186, 0.0175], [0.0529, 0.0529, 0.0321, 0.0283, 0.0235, 0.0235, 0.0235, 0.0207], [0.0767, 0.0465, 0.0362, 0.032, 0.03, 0.0234, 0.0234, 0.022], [0.0907, 0.0294, 0.0294, 0.0277, 0.0244, 0.0244, 0.0244, 0.0244], [0.0977, 0.0672, 0.0338, 0.0338, 0.0317, 0.0247, 0.0218, 0.017], [0.1358, 0.0414, 0.0366, 0.0343, 0.0184, 0.0184, 0.0173, 0.0152], [0.1099, 0.0404, 0.0261, 0.0261, 0.0216, 0.0158, 0.0131, 0.0131], [0.3429, 0.0719, 0.0264, 0.0233, 0.0171, 0.0097, 0.0086, 0.0081], [0.594, 0.043, 0.0245, 0.0109, 0.0102, 0.008, 0.0075, 0.004], [0.3896, 0.032, 0.03, 0.0249, 0.022, 0.0161, 0.0151, 0.0111], [0.8996, 0.01, 0.0061, 0.0053, 0.005, 0.0039, 0.0024, 0.0022], [0.6508, 0.0304, 0.0252, 0.0197, 0.0173, 0.0112, 0.0099, 0.0064], [0.5442, 0.0506, 0.037, 0.0255, 0.0255, 0.0198, 0.0088, 0.0078], [0.219, 0.0858, 0.0627, 0.0554, 0.0246, 0.0231, 0.0204, 0.0191], [0.4371, 0.0861, 0.0359, 0.0359, 0.0359, 0.0247, 0.0232, 0.0204], [0.1446, 0.0933, 0.0532, 0.05, 0.0441, 0.0414, 0.0366, 0.0303], [0.092, 0.0812, 0.0717, 0.0524, 0.0408, 0.0338, 0.0318, 0.0299], [0.2928, 0.1776, 0.0478, 0.0329, 0.0256, 0.0176, 0.0176, 0.0176], [0.1837, 0.1114, 0.0983, 0.0815, 0.0815, 0.0494, 0.0265, 0.0265], [0.5787, 0.1879, 0.0506, 0.0326, 0.0271, 0.0154, 0.0106, 0.0083], [0.6187, 0.2276, 0.0272, 0.0128, 0.0121, 0.0106, 0.0094, 0.0061], [0.7875, 0.1757, 0.0185, 0.0039, 0.001, 0.0008, 0.0008, 0.0006]], "ranks": {"Kotlin": [225716, 213116, 158392, 43234, 69105, 49258, 67952, 120798, 111977, 150328, 116269, 103381, 81670, 74130, 121249, 66839, 70688, 55293, 53252, 99540, 161297, 105349, 117412, 168006, 150432, 88429, 67390, 103069, 55663, 56151, 105410, 87501, 122190, 142541, 174986, 145050, 135711, 140477, 126159, 125761, 139946, 124445, 83306, 70598, 62195, 55254, 59264, 53487, 69509, 37114, 36973, 35333, 12940, 5769, 3649, 622, 311, 168, 191, 139, 82, 30, 22]}}, {"pos": 490, "top": [[".", ",", " \u2013", "\u2013", ";", "\u00a0", "\u00a0\u00a0", ",."], [" \u2013", "\u2013", "\u2013and", ".", " Very", ",", " very", " \u2013**"], ["\u2013", ",", ".", " \u2013", "\u2013and", ".\u2013", "\u2026..", "\u2026."], [" milfs", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "-------------</", " Shemale", "----------</", " ;;^", " Blowjob", " \u041a\u0440\u0430\u0441\u0438"], [".@", "\u65b0\u52a0\u5761", "\ub370\ubbf8", " \u041a\u0440\u0430\u0441\u0438", "\u82db", ":@", "\ufeff#", "//@"], [".", ",", "<|quad_end|>", "!.", "!:", "\u2026.", ":href", "\u82db"], ["\uff0e", "\u3002", "\uff01", "\u3002**", " **\u2018", ".\u2019", ".**", "\uff1a"], [" **\u20ac", "elaide", "STANCE", "ighbour", " **\u2018", " **'", "<|quad_end|>", "ROID"], ["\u00a0", ".", "!.", ",", "\u00a0\u00a0", "\u2019.", "().", ",."], [",", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\u0436\u0451", " \u0442\u0440\u0451", "elaide", " \u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435", "\u00a0", "\u0441\u0443\u0434\u0438"], [",", "\u00a0", ".", ";", " priorit", " albeit", " potentially", "\u00a0\u00a0"], [" flavours", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " incentiv", " potentially", " priorit", " albeit", "\u8d44\u91d1\u652f\u6301", " leverage"], [" incentiv", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " impactful", " leverage", " flavours", " discomfort", " potentially", "\u76f8\u5173\u6cd5\u5f8b\u8d23\u4efb"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " incentiv", " impactful", "\u708e\u708e\u590f\u65e5", "STANCE", "\u9ad8\u6027\u4ef7\u6bd4", "\u76f8\u5173\u6cd5\u5f8b\u8d23\u4efb", " leveraging"], [" incentiv", " aggressively", " sophisticated", " effortlessly", " albeit", "\u9ad8\u6027\u4ef7\u6bd4", "\u708e\u708e\u590f\u65e5", " priorit"], [" incentiv", "\u5962\u671b", "\u9ad8\u6027\u4ef7\u6bd4", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " leveraging", " sophisticated", " sophistication", " poorly"], [" disproportionately", " arguably", " poorly", " effortlessly", " leveraging", " aggressively", " incentiv", " sprawling"], [" disproportionately", " sprawling", " effortlessly", " glitches", " incentiv", " aggressively", " seamlessly", " leveraging"], [" disproportionately", " aggressively", " sprawling", " effortlessly", " hugely", "\u5373\u4fbf\u5982\u6b64", " arguably", " increasingly"], [" hugely", " sprawling", " disproportionately", " increasingly", " aggressively", " myriad", " effortlessly", " arguably"], ["<|endoftext|>", " hugely", " myriad", " swiftly", "<|file_sep|>", " largely", " genuinely", " sprawling"], [" hugely", " disproportionately", " sprawling", " {{--<", "\u5f88\u591a\u95ee\u9898", " ;;^", "\u52a8\u8f84", " pricey"], [" ``", " {{--<", " hugely", " disproportionately", " myriad", " sprawling", " arguably", " largely"], [" {{--<", " hugely", " ``", " myriad", " heavily", " largely", " often", " sprawling"], [" \r\n\r\n", "\r\n\r\n", " \n\n", "\r\n\n", " hugely", " {{--<", " \r\n", "  \r\n\r\n"], [" \r\n\r\n", " {{--<", "\r\n\n", " hugely", " MEDIATEK", "\r\n\r\n", " **", " pricey"], [" \r\n\r\n", "\r\n\r\n", " {{--<", " hugely", " sprawling", " disproportionately", " pricey", "\r\n\n"], [" \n\n", " \r\n\r\n", "\r\n\r\n", " heavily", "\n\n", " hugely", " often", " {{--<"], [" heavily", " disproportionately", " hugely", " \r\n\r\n", " sprawling", " aggressively", " often", " myriad"], [" often", " heavily", " disproportionately", " increasingly", " poorly", " **", " largely", " sprawling"], [" often", " heavily", " much", " increasingly", " rarely", " disproportionately", " poorly", " lack"], [" often", " heavily", " much", " many", " even", " increasingly", " largely", " high"], [" heavily", " often", " disproportionately", " notoriously", " increasingly", " largely", " aggressively", " poorly"], [" heavily", " often", " notoriously", " disproportionately", " poorly", " increasingly", " aggressively", " deeply"], [" notoriously", " heavily", " often", " disproportionately", " increasingly", " typically", " deeply", " poorly"], [" notoriously", " often", " hardware", " slower", " disproportionately", " sluggish", " poorly", " increasingly"], [" notoriously", " hardware", " often", " poorly", " limited", " slower", " sluggish", " typically"], [" notoriously", " hardware", " limited", " poorly", " often", " expensive", " unpredictable", " typically"], [" hardware", " limited", " notoriously", " often", " poorly", " inefficient", " unpredictable", " unreliable"], [" memory", " unpredictable", " notoriously", " inefficient", " hardware", " unreliable", " limited", " CPU"], [" memory", " hardware", " Memory", " inefficient", " limited", " unpredictable", " CPU", " storage"], [" memory", " limited", " hardware", " unpredictable", " inefficient", " constrained", " storage", " fragmented"], [" memory", " unpredictable", " hardware", " limited", " inefficient", " storage", " erratic", " unreliable"], [" unpredictable", " limited", " hardware", " inefficient", " memory", " unreliable", " erratic", " volatile"], [" unpredictable", " limited", " inefficient", " erratic", " hardware", " unreliable", " fragmented", " unstable"], [" unpredictable", " limited", " inefficient", " erratic", " unreliable", " unstable", " volatile", " notoriously"], [" unpredictable", " limited", " erratic", " unreliable", " inefficient", " volatile", " notoriously", " unstable"], [" unpredictable", " limited", " unreliable", " notoriously", " erratic", " inefficient", " volatile", " sluggish"], [" unpredictable", " erratic", " unreliable", " volatile", " fragmented", " inefficient", " notoriously", " limited"], [" unpredictable", " erratic", " unreliable", " sluggish", " inefficient", " notoriously", " poorly", " limited"], [" unreliable", " erratic", " sluggish", " unpredictable", " notoriously", " limited", " poorly", " inefficient"], [" sluggish", " erratic", " limited", " unpredictable", " notoriously", " unreliable", "limited", " slower"], [" memory", "Memory", " RAM", " Memory", "_memory", "memory", " MEMORY", "/memory"], [" memory", " RAM", " volatile", " unpredictable", "Memory", "memory", " Memory", "_memory"], [" memory", " volatile", " RAM", " unpredictable", "memory", "Memory", " Memory", "\u5185\u5b58"], [" memory", "memory", " Memory", "Memory", "\u5185\u5b58", " RAM", " volatile", " MEMORY"], [" memory", " RAM", " erratic", "Memory", " volatile", "memory", " Memory", " sluggish"], [" aggressive", " slower", " sluggish", " erratic", " memory", " RAM", " aggressively", " unreliable"], [" memory", " aggressive", " slower", " RAM", "memory", "Memory", " unpredictable", " Memory"], [" memory", " aggressive", " RAM", " unpredictable", " volatile", " slower", " Memory", " thermal"], [" thermal", " memory", " aggressive", "thermal", " RAM", " Thermal", " volatile", " Memory"], [" thermal", " aggressive", " memory", " fragmented", " RAM", " volatile", " unpredictable", "thermal"], [" thermal", " aggressive", " memory", " fragmented", " volatile", " unpredictable", " slower", " strict"]], "p": [[0.8378, 0.1456, 0.0093, 0.0039, 0.0013, 0.0006, 0.0003, 0.0002], [0.0811, 0.0205, 0.0117, 0.0085, 0.0033, 0.0028, 0.0028, 0.0022], [0.4842, 0.2019, 0.1572, 0.0291, 0.0291, 0.0273, 0.0094, 0.0051], [0.0172, 0.0118, 0.0098, 0.0092, 0.0081, 0.0046, 0.0036, 0.0021], [0.0042, 0.0042, 0.0025, 0.0025, 0.0022, 0.0017, 0.0016, 0.0016], [0.0079, 0.0061, 0.004, 0.0031, 0.0027, 0.0027, 0.0021, 0.0019], [0.0945, 0.0475, 0.0288, 0.0128, 0.01, 0.01, 0.0078, 0.0053], [0.0084, 0.0026, 0.0026, 0.0023, 0.002, 0.0019, 0.0015, 0.0014], [0.1295, 0.1074, 0.0289, 0.0187, 0.0037, 0.0035, 0.0027, 0.0025], [0.0143, 0.0017, 0.0013, 0.0013, 0.0012, 0.001, 0.001, 0.001], [0.4837, 0.157, 0.0895, 0.0065, 0.005, 0.0039, 0.0025, 0.0015], [0.0042, 0.0033, 0.0024, 0.0022, 0.0022, 0.0015, 0.0014, 0.0014], [0.0055, 0.0035, 0.0024, 0.0018, 0.0017, 0.0015, 0.0012, 0.0012], [0.0076, 0.0028, 0.0018, 0.0017, 0.0015, 0.0015, 0.0014, 0.0008], [0.0046, 0.0025, 0.0022, 0.0019, 0.0018, 0.0017, 0.0014, 0.0014], [0.0037, 0.0024, 0.0017, 0.0014, 0.0014, 0.0013, 0.0012, 0.0012], [0.0052, 0.0034, 0.0034, 0.003, 0.0028, 0.0028, 0.0025, 0.0025], [0.0038, 0.0023, 0.0023, 0.0017, 0.0016, 0.0016, 0.0015, 0.0012], [0.0064, 0.0056, 0.0036, 0.003, 0.0028, 0.0025, 0.0025, 0.0022], [0.0122, 0.0095, 0.0065, 0.0062, 0.0054, 0.0051, 0.0045, 0.0042], [0.4127, 0.0097, 0.008, 0.0059, 0.0049, 0.0038, 0.0038, 0.0036], [0.0032, 0.003, 0.0022, 0.0021, 0.0016, 0.0016, 0.0015, 0.0015], [0.0099, 0.0099, 0.006, 0.0041, 0.0034, 0.0032, 0.0024, 0.0024], [0.0096, 0.009, 0.007, 0.0062, 0.0055, 0.0048, 0.0045, 0.0043], [0.1109, 0.0492, 0.0263, 0.0085, 0.0071, 0.0049, 0.0049, 0.0031], [0.006, 0.0047, 0.0034, 0.0028, 0.0025, 0.0018, 0.0016, 0.0016], [0.0054, 0.0051, 0.0045, 0.0037, 0.0037, 0.0031, 0.0026, 0.0023], [0.0194, 0.0142, 0.0133, 0.0125, 0.0081, 0.0076, 0.0067, 0.0059], [0.0155, 0.0137, 0.0089, 0.0083, 0.0078, 0.0065, 0.0061, 0.0054], [0.0348, 0.0254, 0.0198, 0.0145, 0.0106, 0.01, 0.0083, 0.0083], [0.0697, 0.0291, 0.02, 0.0188, 0.0137, 0.0121, 0.0114, 0.01], [0.0938, 0.0443, 0.0304, 0.0209, 0.0209, 0.0173, 0.0127, 0.0112], [0.0379, 0.0356, 0.019, 0.0168, 0.0115, 0.0102, 0.0096, 0.0096], [0.0532, 0.0366, 0.0366, 0.0344, 0.0173, 0.0119, 0.0098, 0.0087], [0.1147, 0.0449, 0.0422, 0.035, 0.0165, 0.0107, 0.0107, 0.01], [0.2013, 0.0509, 0.0329, 0.0272, 0.024, 0.0187, 0.0176, 0.0176], [0.1662, 0.0611, 0.0289, 0.0289, 0.0255, 0.0211, 0.0145, 0.0128], [0.0977, 0.0715, 0.0491, 0.0434, 0.0434, 0.0141, 0.0132, 0.0132], [0.0907, 0.0517, 0.0517, 0.0378, 0.0276, 0.0229, 0.0215, 0.0168], [0.1892, 0.084, 0.0309, 0.0273, 0.0256, 0.0212, 0.0212, 0.0146], [0.5459, 0.0255, 0.0187, 0.0187, 0.0175, 0.0137, 0.0121, 0.0113], [0.3003, 0.1038, 0.0759, 0.0433, 0.0279, 0.018, 0.018, 0.0169], [0.1165, 0.0907, 0.0752, 0.055, 0.0429, 0.0295, 0.0229, 0.019], [0.1783, 0.1081, 0.0656, 0.0511, 0.0423, 0.0188, 0.0177, 0.0166], [0.2273, 0.1009, 0.0575, 0.0289, 0.0271, 0.0225, 0.0211, 0.0165], [0.2703, 0.1127, 0.0389, 0.0389, 0.0389, 0.0173, 0.0153, 0.0135], [0.341, 0.0672, 0.0631, 0.0407, 0.0359, 0.028, 0.0205, 0.016], [0.2611, 0.1398, 0.0583, 0.0376, 0.0376, 0.0353, 0.0312, 0.0178], [0.234, 0.0861, 0.0714, 0.0461, 0.0298, 0.0298, 0.028, 0.028], [0.1504, 0.1327, 0.1034, 0.0431, 0.038, 0.0296, 0.0278, 0.0261], [0.1145, 0.0838, 0.0508, 0.0477, 0.0477, 0.0308, 0.0226, 0.0176], [0.0856, 0.0519, 0.0488, 0.0488, 0.0458, 0.038, 0.0278, 0.0245], [0.2612, 0.0961, 0.0748, 0.066, 0.066, 0.0514, 0.0401, 0.0312], [0.2008, 0.1075, 0.0948, 0.0739, 0.0508, 0.0349, 0.0308, 0.0272], [0.4012, 0.0895, 0.0615, 0.0479, 0.0423, 0.0423, 0.0329, 0.0256], [0.5733, 0.0533, 0.0533, 0.0533, 0.0415, 0.0415, 0.0323, 0.0285], [0.2794, 0.0706, 0.0623, 0.055, 0.0486, 0.0486, 0.0428, 0.0334], [0.5144, 0.1301, 0.0478, 0.0373, 0.0329, 0.0256, 0.0256, 0.0155], [0.3246, 0.1737, 0.093, 0.093, 0.0498, 0.0266, 0.0235, 0.0235], [0.4279, 0.2021, 0.0579, 0.0351, 0.0351, 0.031, 0.0274, 0.0188], [0.5844, 0.1897, 0.0896, 0.0176, 0.0137, 0.0121, 0.0107, 0.0083], [0.5629, 0.1613, 0.1256, 0.0218, 0.0141, 0.0117, 0.0103, 0.008], [0.6976, 0.1764, 0.0239, 0.0186, 0.0077, 0.0073, 0.0057, 0.005]], "ranks": {"Kotlin": [220420, 177127, 132143, 17661, 15443, 47645, 19405, 68875, 52621, 122821, 86844, 29004, 33973, 34122, 92551, 23770, 39870, 36556, 66576, 143343, 215074, 135248, 188584, 214165, 182476, 143486, 132401, 188702, 155557, 175374, 204109, 197915, 208261, 153692, 103529, 73567, 14424, 8396, 9802, 9270, 10784, 18430, 12099, 8118, 12223, 21732, 28233, 29968, 44269, 57206, 62558, 49063, 27049, 12710, 5914, 2403, 1059, 635, 506, 1002, 991, 967, 1148]}}, {"pos": 491, "top": [[" \u2013", "\u2013", ".", ".\u2013", ",", "\u2026..", "\u2026", " [\u2026]"], [" \u2013", "\u2013\u2013", " \u2013**", "**\u2013", "\u2013", " **\u2013", " *\u2013", "\u2013and"], [" \u2013", "\u2013", ".\u2013", "**\u2013", "\u2013\u2013", " **\u2013", " \u2013**", "\u2013and"], [" \u2013**", " **\u2013", "**\u2013", " *\u2013", " **+", "\u2013\u2013", " **\u2018", "\u65b0\u52a0\u5761"], ["\u2013\u2013", " \u2013", " **\u2013", ".\u2013", " \u2013**", "**\u2013", ".@", " *\u2013"], [" **\u2013", "\u2013\u2013", "\u2013", "**\u2013", ".\u2013", " \u2013", " \u2013**", "\u2026.."], ["  \n\n", "\u2013\u2013", " \u2013", "   \n\n", " **\u2013", " \n\n", "  \n\n\n", "**\u2013"], ["   \n\n", "  \n\n", "\u2013\u2013", "  \n\n\n", " \u2013", " \n\n", " \n\n\n", " \n \n"], ["  \n\n", "   \n\n", " \n\n", "  \n\n\n", " \n\n\n", " [\u2026]", "\n\n\n", "  \n  \n"], ["\u2013", "\u2013\u2013", "  \n\n", "  \n  \n", " \u2013", "   \n\n", "\u2013and", " [\u2026]"], ["  \n\n", " \n\n", "\u2013", "   \n\n", "  \n  \n", " \u2013", " [\u2026]", "  \n\n\n"], ["  \n\n", "   \n\n", " **\u2013", " aggressive", " aggressively", "  \n\n\n", "\u2013\u2013", "  \n  \n"], ["\u2013\u2013", " aggressive", " aggressively", " **\u2013", "\u2013", " transformative", " \u2013**", " preempt"], [" aggressively", " aggressive", "\u2013", "\u2013\u2013", " transformative", " preempt", " \u2013", "\u2013and"], [" aggressively", " aggressive", "\u2013", " \u2013", "\u2013\u2013", " preempt", " pursuit", " onslaught"], [" aggressively", " aggressive", " transformative", " nuanced", " sprawling", " preempt", " behaviors", " targeting"], ["\u2013", " \u2013", " aggressively", "\u2013\u2013", " aggressive", " nuanced", " relentless", "  \n\n"], ["\u2013", " \u2013", " aggressively", "\u2013\u2013", " aggressive", "  \n\n", "   \n\n", " **\u2013"], [" aggressively", " aggressive", "  \n\n", " relentless", " nuanced", "   \n\n", " targeting", " preempt"], ["<|endoftext|>", "  \n\n", " \n\n", " aggressively", "   \n\n", "  \n\n\n", " \n\n\n", "  \n  \n"], ["<|endoftext|>", " \n\n", "  \n\n", " \n\n\n", "   \n\n", "\n\n", "  \n\n\n", "<|file_sep|>"], [" aggressively", " aggressive", " timelines", " preempt", " relentless", " revamped", " transformative", "**\u2013"], [" aggressively", " \n\n\n", " \n\n", " preempt", " aggressive", "   \n\n", "  \n\n", " relentless"], ["<|endoftext|>", " aggressively", " \n\n", " \n\n\n", " preempt", " aggressive", "  \n\n", " relentless"], ["  \n\n", " \n\n", "   \n\n", "  \n  \n", " \n\n\n", " \r\n\r\n", "  \n\n\n", "  \r\n\r\n"], [" \n\n", "   \n\n", "  \n\n", " aggressively", " aggressive", " \n\n\n", " \n  \n", " \r\n\r\n"], [" aggressively", " aggressive", " crackdown", " deployments", " overhaul", " preempt", " timelines", " airstrikes"], [" \n\n", "  \n\n", " aggressively", "   \n\n", " aggressive", " \r\n\r\n", " \n\n\n", " \n  \n"], [" \n\n", "   \n\n", " aggressive", " aggressively", "  \n\n", " **\u2013", " crackdown", " lockdown"], [" aggressive", " **\u2013", " aggressively", "**\u2013", " crackdown", " deployments", " lockdown", " shutdown"], [" aggressive", " aggressively", " crackdown", " reductions", " lockdown", " deployments", " tweaks", " shutdown"], [" aggressive", " aggressively", " relentless", " reductions", " crackdown", " lockdown", " deployments", " enforcement"], [" aggressive", " aggressively", " crackdown", " reductions", " deployments", " enforcement", " lockdown", " relentless"], [" aggressive", " aggressively", " deployments", " crackdown", " reductions", " **\u2013", " upgrades", " constraints"], [" aggressive", " crackdown", " aggressively", " reductions", " budgets", " deployments", " constraints", " austerity"], [" crackdown", " aggressive", "**\u2013", " reductions", " overclock", " budgets", " constraints", " optimizations"], [" Android", " reductions", " budgets", "Android", " constraints", " crackdown", " optimizations", " hardware"], [" Android", " optimizations", " budgets", "Android", " reductions", " constraints", " smartphone", " crackdown"], [" constraints", " budgets", " optimizations", " reductions", " Android", " restrictions", " restrictive", " budget"], [" optimizations", " constraints", " budgets", " optimization", " Android", "\u9650\u5236", " reductions", "Android"], [" optimizations", " constraints", " optimization", " Android", " budgets", "Android", "\u9650\u5236", " restrictions"], [" budgets", " constraints", " optimizations", " optimization", " restrictions", " budget", "\u9650\u5236", " Android"], [" budgets", " optimizations", " optimization", " constraints", " aggressive", " restrictions", " shutdown", " aggressively"], [" aggressive", " budgets", " restrictions", " optimizations", " constraints", " aggressively", " restrictive", " optimization"], [" aggressive", " restrictions", " budgets", " constraints", " restrictive", " aggressively", " optimizations", " crackdown"], [" aggressive", " aggressively", " budgets", " restrictions", " restrictive", " crackdown", " constraints", " shutdown"], [" aggressive", " budgets", " aggressively", " restrictions", " restrictive", " constraints", " crackdown", " suppression"], [" aggressive", " budgets", " aggressively", " restrictive", " restrictions", " constraints", " crackdown", " enforcement"], [" aggressive", " budgets", " aggressively", " restrictive", " restrictions", " crackdown", " enforcement", " punitive"], [" budgets", " aggressive", " restrictions", " punitive", " constraints", " restrictive", " crackdown", "-budget"], [" budgets", " optimizations", " crackdown", " deadlines", " punitive", " aggressive", " pruning", " HVAC"], [" optimizations", " budgets", " caching", " CPU", " timeouts", " optimization", " Android", " GPU"], [" optimizations", " CPU", " Android", " optimization", " caching", " budgets", " GPU", " CPUs"], [" Android", " CPU", " optimizations", "Android", ".Android", " hardware", " GPU", "/android"], [" Android", " CPU", " optimizations", "Android", " GPU", "\u529f\u8017", " garbage", "\u7701\u7535"], [" Android", " CPU", " GPU", "Android", " iOS", " garbage", " optimizations", " RAM"], [" Android", " garbage", "Android", " GC", " android", "/android", "android", " GPU"], [" Android", " GPU", " battery", " garbage", "Android", "battery", "Battery", " GC"], [" Android", " battery", "battery", "Android", "Battery", " GPU", " garbage", " Battery"], [" battery", " memory", " garbage", " thermal", " GPU", " Memory", " GC", " Android"], [" thermal", " memory", " battery", " Thermal", "thermal", " Memory", " GC", " GPU"], [" thermal", " battery", " memory", " governors", " Thermal", "thermal", " GC", " GPU"], [" thermal", " GC", " Thermal", " memory", " battery", "thermal", " power", " GPU"]], "p": [[0.8062, 0.1587, 0.019, 0.004, 0.0017, 0.0016, 0.0015, 0.0013], [0.7244, 0.1111, 0.0595, 0.0409, 0.0318, 0.0133, 0.0055, 0.0055], [0.6861, 0.2524, 0.0301, 0.0142, 0.0041, 0.0036, 0.0028, 0.0025], [0.1939, 0.1419, 0.0359, 0.0262, 0.015, 0.015, 0.008, 0.0071], [0.5708, 0.1197, 0.0388, 0.0284, 0.0284, 0.0208, 0.0208, 0.0126], [0.2724, 0.1552, 0.1067, 0.1002, 0.1002, 0.0608, 0.027, 0.0136], [0.1761, 0.1372, 0.0782, 0.0734, 0.0609, 0.0347, 0.0347, 0.0326], [0.1724, 0.0983, 0.0494, 0.0436, 0.0361, 0.034, 0.0282, 0.0193], [0.237, 0.237, 0.0928, 0.0723, 0.0529, 0.0161, 0.0142, 0.0134], [0.2574, 0.1073, 0.0539, 0.042, 0.0271, 0.0211, 0.0175, 0.0175], [0.2901, 0.0831, 0.0689, 0.0537, 0.0537, 0.0346, 0.0287, 0.027], [0.0565, 0.0498, 0.0267, 0.0251, 0.0235, 0.0221, 0.0208, 0.0195], [0.0476, 0.0447, 0.0447, 0.0175, 0.0145, 0.0136, 0.0128, 0.0113], [0.0511, 0.0398, 0.0274, 0.0257, 0.0138, 0.0107, 0.0057, 0.0054], [0.109, 0.0484, 0.0354, 0.0157, 0.0139, 0.007, 0.0065, 0.0051], [0.0763, 0.0219, 0.0125, 0.0103, 0.0091, 0.0091, 0.008, 0.008], [0.161, 0.0671, 0.0407, 0.0205, 0.011, 0.0075, 0.0071, 0.0071], [0.0987, 0.0562, 0.0528, 0.032, 0.0207, 0.0194, 0.0104, 0.0092], [0.1065, 0.0392, 0.0287, 0.0112, 0.0093, 0.0087, 0.0087, 0.0077], [0.2278, 0.1565, 0.0372, 0.029, 0.024, 0.0121, 0.0121, 0.0094], [0.7086, 0.0959, 0.0959, 0.0147, 0.0147, 0.0065, 0.0045, 0.0029], [0.0396, 0.0129, 0.0073, 0.0069, 0.0065, 0.005, 0.0044, 0.0039], [0.0366, 0.0112, 0.0105, 0.0082, 0.0072, 0.0064, 0.0064, 0.0046], [0.1409, 0.0245, 0.0085, 0.0062, 0.0051, 0.0048, 0.0045, 0.0038], [0.244, 0.2153, 0.0843, 0.0213, 0.0188, 0.0156, 0.0095, 0.0083], [0.063, 0.0522, 0.0491, 0.0192, 0.0091, 0.0091, 0.0091, 0.0075], [0.0353, 0.0167, 0.0061, 0.0048, 0.0048, 0.0042, 0.004, 0.0037], [0.1734, 0.0563, 0.0364, 0.025, 0.0111, 0.0067, 0.0063, 0.0038], [0.0427, 0.0294, 0.0276, 0.0276, 0.0259, 0.013, 0.013, 0.0115], [0.0322, 0.0208, 0.0184, 0.0134, 0.0119, 0.0119, 0.0105, 0.0087], [0.0702, 0.0482, 0.0177, 0.0095, 0.0089, 0.0089, 0.0084, 0.0079], [0.1543, 0.0879, 0.0112, 0.0093, 0.0087, 0.0072, 0.0068, 0.0064], [0.0939, 0.0444, 0.0112, 0.0105, 0.0087, 0.0072, 0.0068, 0.0064], [0.0643, 0.0367, 0.0135, 0.0135, 0.0105, 0.0077, 0.0072, 0.0072], [0.0434, 0.0298, 0.0298, 0.0193, 0.0193, 0.011, 0.008, 0.0063], [0.0306, 0.0254, 0.0198, 0.0198, 0.0198, 0.0174, 0.0154, 0.012], [0.03, 0.0265, 0.0265, 0.0249, 0.0249, 0.0206, 0.0151, 0.0151], [0.0743, 0.0398, 0.031, 0.0257, 0.0227, 0.02, 0.0188, 0.0146], [0.0672, 0.0434, 0.0408, 0.036, 0.0317, 0.0247, 0.0205, 0.0193], [0.0895, 0.0578, 0.0397, 0.0397, 0.0291, 0.0273, 0.0256, 0.0256], [0.1508, 0.0629, 0.0555, 0.049, 0.049, 0.0432, 0.0246, 0.0231], [0.1409, 0.1323, 0.0909, 0.0457, 0.043, 0.0314, 0.0295, 0.0245], [0.1142, 0.1073, 0.054, 0.0476, 0.0348, 0.0271, 0.0255, 0.0239], [0.1175, 0.0758, 0.0669, 0.0555, 0.0521, 0.0521, 0.0406, 0.0297], [0.1114, 0.0815, 0.0766, 0.056, 0.0465, 0.0465, 0.0385, 0.0319], [0.1839, 0.0925, 0.0816, 0.0597, 0.0495, 0.0249, 0.0234, 0.0206], [0.238, 0.0726, 0.0682, 0.0469, 0.0469, 0.0388, 0.0322, 0.0195], [0.1741, 0.0992, 0.0641, 0.0389, 0.0389, 0.0343, 0.0322, 0.0322], [0.1374, 0.1213, 0.0326, 0.0307, 0.0254, 0.0211, 0.0198, 0.0186], [0.1886, 0.0477, 0.024, 0.0175, 0.0175, 0.0165, 0.0165, 0.0106], [0.1174, 0.0217, 0.014, 0.0096, 0.0096, 0.0091, 0.008, 0.008], [0.0769, 0.0363, 0.0266, 0.0266, 0.0234, 0.0172, 0.0111, 0.0104], [0.2471, 0.1323, 0.0665, 0.0356, 0.0148, 0.0139, 0.0131, 0.0123], [0.3557, 0.0794, 0.0618, 0.0425, 0.0311, 0.0274, 0.0166, 0.0156], [0.2897, 0.2256, 0.0733, 0.0287, 0.0253, 0.0238, 0.0163, 0.0127], [0.4384, 0.2071, 0.0593, 0.0462, 0.0181, 0.011, 0.011, 0.0097], [0.8464, 0.0421, 0.029, 0.0256, 0.0073, 0.0073, 0.0044, 0.0039], [0.5877, 0.1021, 0.0901, 0.0426, 0.0332, 0.0228, 0.0201, 0.0177], [0.592, 0.1696, 0.0429, 0.0378, 0.026, 0.026, 0.0179, 0.0139], [0.3382, 0.2634, 0.0588, 0.0519, 0.0404, 0.0356, 0.0191, 0.0168], [0.4748, 0.3263, 0.039, 0.0236, 0.0236, 0.0236, 0.0143, 0.0099], [0.6086, 0.1539, 0.0933, 0.0208, 0.0208, 0.0162, 0.0152, 0.0087], [0.8722, 0.0205, 0.0205, 0.0205, 0.0132, 0.0091, 0.0063, 0.0046]], "ranks": {"Kotlin": [127165, 109743, 118895, 27468, 56962, 82184, 150756, 198762, 205378, 233980, 218173, 205451, 206913, 225887, 230536, 192242, 193374, 160482, 191470, 212583, 214133, 178864, 203320, 217132, 206149, 135524, 117593, 146092, 89881, 84351, 107161, 121739, 108950, 77781, 36990, 11705, 2833, 2738, 3251, 2282, 3080, 3252, 3253, 2954, 3711, 5375, 7728, 8821, 13119, 12801, 15403, 7592, 1012, 628, 384, 238, 92, 108, 118, 254, 278, 559, 398]}}, {"pos": 492, "top": [[" \u2013", "\u2013", "\u2013and", ".", " \u2013,", ".\u2013", " [\u2026]", ","], [" \u2013", " \u2013,", "\u2013and", " *\u2013", "\u2013", "\u2013\u2013", " \u2013**", ".\u2013"], [" \u2013", "\u2013", " \u2013,", "\u2013and", ".\u2013", "\u2013\u2013", "\u2018", " *\u2013"], ["izer", " *\u2013", " *\u201c", "*\u201c.", " pupper", " \u2013,", "\u2018s", " cumshot"], [" \u2013", " \u2013,", " \u2018", " *\u2013", " *\u201c", "\u2013\u2013", "\u2018", "\u2018s"], [" \u2013,", " \u2018", " \u2013", "\u2018", "\u2018s", "\u2013", " \u201c", " *\u2013"], ["\u2018", " \u2018", " \u2013", "<|endoftext|>", "\u548c", "\u201c", " *\u201c", "\u2013"], [" \u2013", "<|endoftext|>", " \u2018", " \u2013,", "  ", "\u2018", "\u2013", " \n\n\n"], ["<|endoftext|>", " \u2013", " \u2013,", " \n\n\n", " [\u2026]", "\u00a0", " \u2018", "  "], ["\u2013", " \u2013,", " \u2013", "\u00a0", "\u2013and", "  ", " \n\n\n", "ity"], ["\u548c", "\u00a0", " \u2013", "  ", "ization", " \n\n\n", "istic", " \u2013,"], ["izer", "ization", " *\u201c", "ity", " heatmap", " \r\n", " automotive", "ities"], ["ization", "ity", "izer", " automotive", " transformative", "ities", "-centric", " \u2013,"], ["ization", "ity", " transformative", "-centric", " impactful", " automotive", "izer", " advancements"], ["ity", "ization", " transformative", " showcase", " showcasing", " impact", " leveraging", " leverage"], [" showcase", " transformative", " leveraging", " impact", "ization", " showcasing", " leverage", "ity"], [" \u2013", "ity", " impact", "ization", "\u2013", "\u00a0", " showcase", " proximity"], ["ity", "ization", " thermal", " hotspot", " heatmap", " impact", " showcase", "izer"], ["ity", " heatmap", "ization", " impact", " hotspot", " thermal", "-esque", " transformative"], ["<|endoftext|>", " \r\n", " \u2013", " \r\n\r\n", "\u2013and", " impact", "ity", "\u00a0"], ["<|endoftext|>", " \r\n\r\n", " \n\n\n", "<|file_sep|>", "\u00a0", " \r\n", " \n\n", "  \n\n"], [" heatmap", " \r\n", "\u5347\u6e29", " HVAC", "w\u00e4r", " impacting", "exus", " cooldown"], [" \r\n", " \r\n\r\n", "\u5347\u6e29", " heatmap", " heat", "w\u00e4r", " impacting", " thermal"], ["<|endoftext|>", " \r\n", " \r\n\r\n", " impact", "<|file_sep|>", " heat", " impacting", " thermal"], ["<|endoftext|>", " \r\n\r\n", " \r\n", "\u00a0", " \n\n\n", " heat", " thermal", "  \r\n\r\n"], [" \r\n", " \r\n\r\n", " thermal", " heat", " cooling", "Temperature", " heatmap", " hotter"], [" thermal", " heat", " \r\n", " temperatures", " coolant", " heatmap", "_temperature", " temperature"], [" \r\n\r\n", " heat", " \r\n", " thermal", " powering", " cooling", " hotter", "_temperature"], [" heat", " thermal", " temperatures", " overclock", " cooling", " hotter", " temperature", " heatmap"], [" heat", " thermal", " overclock", " temperatures", " hotter", " cooling", " temperature", " cooldown"], [" heat", " temperatures", " overclock", " hotter", " thermal", " temperature", " cooling", " cooldown"], [" heat", " temperatures", " thermal", " cooling", " temperature", " hotter", " overclock", " cooldown"], [" heat", " thermal", " temperatures", " cooling", " hotter", " overclock", " temperature", " powering"], [" heat", " overclock", " temperatures", " thermal", " cooling", " hotter", " heatmap", " cooldown"], [" heat", " overclock", " temperatures", " hotter", " thermal", " heatmap", " cooling", " temperature"], [" overclock", " heat", " hotter", " thermal", " temperatures", " temperature", " cooling", " heatmap"], [" overclock", " heat", " hotter", " thermal", " temperatures", " cooldown", " temperature", " thrott"], [" heat", " overclock", " thermal", " temperature", " hotter", " temperatures", " cooling", "Temperature"], [" heat", " thermal", " temperature", " hotter", " cooling", " temperatures", " overclock", " constraints"], [" heat", " thermal", " overclock", " temperature", " temperatures", " cooling", " hotter", " Thermal"], [" thermal", " heat", " overclock", " cooling", " temperature", " temperatures", " Thermal", "Heat"], [" thermal", " heat", " cooling", " overclock", " Thermal", "Heat", "thermal", " thrott"], [" thermal", " overclock", " heat", " thrott", " cooling", " Thermal", "thermal", "Heat"], [" thermal", " heat", " overclock", " thrott", " Thermal", " cooling", "thermal", "Heat"], [" thermal", " heat", " thrott", " overclock", " cooling", " temperatures", "thermal", " Thermal"], [" thermal", " thrott", " heat", " overclock", " cooling", " Thermal", "thermal", " temperatures"], [" thermal", " thrott", " overclock", " heat", "thermal", " cooling", " Thermal", " limits"], [" thermal", " thrott", " overclock", " heat", " cooling", "thermal", " limiter", " limits"], [" thermal", " thrott", " overclock", "thermal", " cooling", " heat", " limiter", "Heat"], [" thermal", " thrott", " cooling", "thermal", " overclock", " heat", " Thermal", "Heat"], [" thermal", "thermal", " thrott", " Thermal", " overclock", " cooling", "\u9650\u5236", "Heat"], [" thrott", " overclock", "\u9650\u5236", "/cpu", " constraints", " limits", " limiter", " thresholds"], [" thrott", " limits", "/cpu", "\u9650\u5236", " constraints", " overclock", " restrictions", "Limits"], [" thrott", " cooling", "\u6563\u70ed", " overclock", "/cpu", "thermal", " limits", " thermal"], [" thrott", " cooling", "\u6563\u70ed", " thermal", "thermal", " overclock", "/cpu", " throttle"], [" thrott", " throttle", "/cpu", " limits", " cooling", " CPU", " overclock", "CPU"], [" thrott", " throttle", " limits", " cooling", "/cpu", "/power", " limiter", "\u9650"], [" thrott", " throttle", " thermal", "thermal", " cooling", " Thermal", " limits", "\u8282\u6d41"], [" thrott", " throttle", "\u8282\u6d41", "/th", "Th", " thermal", "thermal", " Thermal"], [" thrott", " throttle", "\u8282\u6d41", "/th", " Th", "Th", " throat", " choking"], [" thrott", " throttle", "/th", " Th", "\u8282\u6d41", "Th", "-th", "_th"], [" thrott", " throttle", "/th", " Th", "\u8282\u6d41", "Th", "-th", "_th"], [" thrott", " throttle", "/th", " Th", " th", "-th", "_th", "Th"]], "p": [[0.8128, 0.11, 0.014, 0.0131, 0.0096, 0.0075, 0.0031, 0.0026], [0.5784, 0.3096, 0.061, 0.0271, 0.0057, 0.0034, 0.0025, 0.0022], [0.5465, 0.4256, 0.0129, 0.01, 0.0042, 0.0003, 0.0001, 0.0001], [0.011, 0.011, 0.0091, 0.0067, 0.0046, 0.0041, 0.0036, 0.0025], [0.1289, 0.1004, 0.0418, 0.0369, 0.0288, 0.0254, 0.0198, 0.0154], [0.0334, 0.0334, 0.0277, 0.026, 0.0203, 0.0148, 0.0148, 0.0139], [0.3647, 0.3023, 0.152, 0.0141, 0.011, 0.0103, 0.0081, 0.0076], [0.3087, 0.1002, 0.0608, 0.0537, 0.0418, 0.0393, 0.0197, 0.0154], [0.1154, 0.1019, 0.0793, 0.07, 0.0452, 0.0375, 0.0311, 0.0227], [0.1303, 0.079, 0.0543, 0.0397, 0.0257, 0.0213, 0.0129, 0.0121], [0.0526, 0.0436, 0.0281, 0.0264, 0.0219, 0.0206, 0.0206, 0.0182], [0.0157, 0.0138, 0.0115, 0.007, 0.0058, 0.0048, 0.0045, 0.004], [0.0222, 0.0184, 0.0173, 0.0072, 0.0072, 0.0068, 0.0064, 0.006], [0.0159, 0.0149, 0.014, 0.0085, 0.0062, 0.0062, 0.0059, 0.0049], [0.0196, 0.0143, 0.0135, 0.0126, 0.0068, 0.006, 0.0053, 0.0053], [0.0159, 0.015, 0.0103, 0.0097, 0.0091, 0.0085, 0.0062, 0.0062], [0.0704, 0.0229, 0.0167, 0.013, 0.013, 0.0115, 0.0084, 0.007], [0.0184, 0.0119, 0.0068, 0.0068, 0.0064, 0.0053, 0.0039, 0.0036], [0.0063, 0.0059, 0.0059, 0.0052, 0.0043, 0.0038, 0.0036, 0.003], [0.0276, 0.0084, 0.0079, 0.0054, 0.0048, 0.0042, 0.0042, 0.004], [0.9957, 0.0004, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001, 0.0], [0.0087, 0.0034, 0.0034, 0.0025, 0.0025, 0.0023, 0.0023, 0.0023], [0.025, 0.0086, 0.0072, 0.0063, 0.0052, 0.0049, 0.0046, 0.0043], [0.5413, 0.0238, 0.006, 0.0047, 0.0041, 0.0027, 0.0021, 0.0021], [0.2951, 0.0845, 0.0352, 0.013, 0.0079, 0.0079, 0.0065, 0.0051], [0.1011, 0.074, 0.0421, 0.024, 0.0146, 0.0137, 0.0113, 0.0107], [0.0446, 0.0419, 0.0254, 0.0239, 0.0224, 0.0224, 0.0211, 0.0211], [0.0666, 0.0356, 0.0315, 0.0245, 0.0168, 0.0149, 0.014, 0.0116], [0.1033, 0.0588, 0.0315, 0.0278, 0.0278, 0.0245, 0.0216, 0.0149], [0.0954, 0.0579, 0.0579, 0.0374, 0.033, 0.0273, 0.0257, 0.0257], [0.1248, 0.0757, 0.0668, 0.059, 0.052, 0.0459, 0.0405, 0.0231], [0.1705, 0.0711, 0.0589, 0.052, 0.0459, 0.0315, 0.0296, 0.0132], [0.1719, 0.0558, 0.0558, 0.0463, 0.036, 0.0318, 0.0281, 0.0193], [0.0876, 0.0499, 0.0414, 0.0389, 0.0322, 0.0284, 0.0208, 0.0196], [0.0863, 0.0761, 0.0462, 0.0408, 0.0317, 0.0317, 0.0298, 0.0298], [0.149, 0.14, 0.0548, 0.0484, 0.0484, 0.0333, 0.0293, 0.0202], [0.1519, 0.1044, 0.0525, 0.0361, 0.0248, 0.0248, 0.0233, 0.0219], [0.2126, 0.129, 0.0943, 0.0572, 0.0474, 0.0446, 0.0326, 0.0254], [0.2957, 0.1088, 0.0748, 0.0514, 0.0483, 0.0483, 0.04, 0.0228], [0.2261, 0.1996, 0.0832, 0.0734, 0.0505, 0.0445, 0.0306, 0.0224], [0.2758, 0.2758, 0.1015, 0.0543, 0.0373, 0.0291, 0.0291, 0.02], [0.4152, 0.2223, 0.0438, 0.0438, 0.0438, 0.0265, 0.0265, 0.0234], [0.3039, 0.1626, 0.1435, 0.0768, 0.0411, 0.032, 0.0283, 0.0194], [0.3244, 0.1532, 0.1053, 0.0929, 0.0342, 0.0302, 0.0302, 0.0302], [0.3357, 0.1235, 0.1235, 0.1235, 0.0354, 0.0243, 0.0243, 0.0215], [0.3308, 0.1379, 0.1217, 0.0836, 0.0395, 0.0225, 0.0199, 0.0175], [0.3543, 0.1477, 0.0698, 0.0698, 0.031, 0.0291, 0.0213, 0.0188], [0.2196, 0.1938, 0.0591, 0.0555, 0.0382, 0.0382, 0.0337, 0.0232], [0.1899, 0.1479, 0.0792, 0.0617, 0.0579, 0.0544, 0.033, 0.0274], [0.1809, 0.1097, 0.0854, 0.0708, 0.0587, 0.0404, 0.0379, 0.0295], [0.0982, 0.0982, 0.0814, 0.0384, 0.0361, 0.0319, 0.0299, 0.0281], [0.1386, 0.0841, 0.0578, 0.045, 0.0329, 0.0309, 0.0226, 0.0176], [0.2575, 0.0947, 0.0738, 0.0651, 0.0395, 0.0349, 0.0308, 0.0271], [0.2662, 0.2073, 0.1257, 0.0463, 0.0463, 0.0318, 0.0264, 0.0248], [0.5224, 0.1166, 0.0551, 0.0486, 0.0378, 0.0378, 0.0179, 0.0158], [0.909, 0.0242, 0.013, 0.0114, 0.0069, 0.0033, 0.0023, 0.0019], [0.9626, 0.0176, 0.0073, 0.0021, 0.0011, 0.0009, 0.0008, 0.0004], [0.9629, 0.0226, 0.0051, 0.0045, 0.0013, 0.0011, 0.0005, 0.0003], [0.9525, 0.0474, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9525, 0.0474, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9669, 0.0331, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9705, 0.0293, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9878, 0.0085, 0.0028, 0.0003, 0.0002, 0.0001, 0.0001, 0.0]], "ranks": {"Kotlin": [41263, 19690, 23598, 1322, 4942, 14528, 25392, 53608, 52984, 80161, 54613, 29233, 32500, 37109, 91220, 35710, 72281, 65104, 64773, 111500, 137726, 46690, 97969, 154371, 194999, 136322, 79901, 102945, 95970, 66111, 66640, 87634, 134682, 87802, 71574, 40806, 46752, 52568, 58772, 63086, 79853, 72387, 54450, 41328, 46492, 75475, 71971, 78970, 115885, 100363, 94910, 74921, 28616, 9896, 7338, 8336, 16922, 9725, 6548, 3070, 6068, 12077, 13127]}}, {"pos": 493, "top": [[" *@", "ting", " #@", " //@", " \"@", " Thornton", " **\u2022", " \"---"], [" ``(", " **>>", "---</", " **\u2022", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " ;;^", " //</", " \u041a\u0440\u0430\u0441\u0438"], [" **\u2022", " \u041a\u0440\u0430\u0441\u0438", " '''", " Ingyen", " **:**", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " \"---", " \u2605\u2605\u2605"], [" ``(", " ``", "---</", " **\u2022", " Shemale", " \u041a\u0440\u0430\u0441\u0438", " **\u25cb", " **\u300c"], [" ---", " \"---", " @_", " //@", " *@", " \"@", " \u2605\u2605\u2605", " \"&#"], [" \"---", " **\u2022", " \")", " @_", " ***", " **#", " \u2605\u2605\u2605", ":@"], [" ``", " ---", " ``(", "``", " \"---", " **\u2022", " ***", "\"\":"], [" #@", " ``", " //@", " *@", " ---", " \"---", " \u2605\u2605\u2605", " ***"], ["  \n\n", " ***", " #@", "ting", " //@", " *@", " \u2605\u2605\u2605", "  \n\n\n"], ["ting", " #@", " //@", " $\\", " thrott", " @_", " ***", " }\\"], [" #@", " ***", " @_", " //@", "ting", "\\xc", " }\\", " ---"], [" ***", " **#", " **\u2022", " **\u300c", " \u2605\u2605\u2605", " }\\", " **+", " ``"], [" **\u2022", " **\u300c", " **#", " ***", " incentiv", " **+", " **:", " ``"], [" incentiv", "ting", " **\u2022", " leveraging", " thrott", " **#", " **\u300c", " fracking"], [" incentiv", " ``", "ting", " thrott", " leveraging", " **\u2022", " stalled", " ``("], [" incentiv", " leveraging", " **\u2022", " thrott", " ``", "ting", " reboot", " nuanced"], [" incentiv", " leveraging", "ting", " myriad", " priorit", "ing", " potentially", " nuanced"], ["ting", " incentiv", " leveraging", " **\u2022", " }\\", " thrott", " **#", "ing"], [" incentiv", "ting", " }\\", " **\u2022", " thrott", " leveraging", " **\u2014", "eshire"], ["ting", "\u2014even", " }\\", " incentiv", " thrott", "\u2014and", " leveraging", " myriad"], ["<|endoftext|>", "ting", "  \n\n", " }\\", "<|file_sep|>", "ing", "\u2014even", " myriad"], ["ting", " ``", " }\\", " ``(", " **\u2022", " }</", " incentiv", " **#"], [" ``", "ting", " ``(", " }\\", " {{--<", "``", " thrott", " }</"], ["ting", " ``", "ing", " {{--<", " swiftly", " potentially", "\u2014even", " myriad"], ["ting", "ing", "<|endoftext|>", "  \n\n", "\u2014even", " arguably", "  \r\n\r\n", " potentially"], ["ting", " thrott", " incentiv", "  \r\n\r\n", " overclock", "ing", " powering", "\u2014even"], ["ting", " incentiv", " thrott", " overclock", " powering", " leveraging", " throttle", " exacerbated"], [" thrott", "ting", "  \n\n", " incentiv", " \r\n\r\n", " powering", "  \r\n\r\n", " \n\n"], [" thrott", "ting", " incentiv", " overclock", " powering", "  \n\n", " throttle", " exacerbated"], [" thrott", " incentiv", "ting", " overclock", " powering", " exacerbated", "\u2014even", " throttle"], [" thrott", " incentiv", "ting", " overclock", " exacerbated", " powering", " throttle", " potentially"], [" thrott", "ting", " power", "\u2014even", " exacerbated", " incentiv", " overclock", " powering"], ["\u2014even", " thrott", " power", "ting", " powering", " overclock", " incentiv", " even"], ["\u2014even", " thrott", "\u2014and", "ting", " incentiv", "\u2013\u2013", " overclock", " fuel"], [" thrott", " overclock", " incentiv", "\u2014even", " aggressively", "ting", " fuel", " powering"], [" thrott", "ting", " overclock", "\u2014even", "\u2014and", " .**", " power", " exacerbated"], [" thrott", " overclock", "\u2014even", "ting", "\u2014and", " aggressively", "\u2014if", " throttle"], [" thrott", " overclock", "ting", " throttle", "\u2014even", " hotter", " aggressively", " accelerating"], [" thrott", " overclock", " throttle", " hotter", " limits", "\u2014even", " heat", "ting"], [" thrott", " overclock", " throttle", " heat", " hotter", " limits", "ting", "\u2014even"], [" overclock", " thrott", " heat", " throttle", " hotter", " temperature", " acceler", " fatigue"], [" overclock", " thrott", " heat", " throttle", " powering", " hotter", " thermal", " temperature"], [" thrott", " overclock", " throttle", " heat", " powering", " thermal", " fatigue", " temperatures"], [" thrott", " overclock", " throttle", " heat", " temperatures", " temperature", " fatigue", " thermal"], [" thrott", " overclock", " fatigue", " throttle", " heat", " limits", " restrictions", " temperature"], [" thrott", " limits", " rapid", " restrictions", " heat", " aggressive", " overclock", " limiting"], [" thrott", " rapid", " limits", " thresholds", " restrictions", " throttle", " aggressive", " acceler"], [" thrott", " rapid", " limits", " exacerbated", " thresholds", " acceler", " restrictions", " overclock"], [" thrott", " rapid", ".**", " exacerbated", " overclock", " triggers", " **.", " thresholds"], [".**", " {}.", ".", "++.", "+.", " overclock", " thrott", "{}."], [".**", "**.", " {}.", ".", " **.", "{}.", "().", "*."], [".**", " {}.", ".", "**.", " **.", "*.", "().", "++."], [".**", ".", "**.", " **.", " {}.", "*.", "+.", "{}."], [".", ".**", " {}.", " **.", "**.", "{}.", "+.", "*."], [".", ".**", " {}.", " **.", "**.", "*.", "{}.", ".*"], [".**", ".", " **.", "ing", "**.", "ting", " {}.", "*."], [".", ".**", " **.", " {}.", "**.", " thrott", "++.", "*."], [".", " **.", ".**", "**.", " thrott", "ing", " {}.", "++."], [" thrott", " throttle", "ing", "ling", ".", "ting", "pering", "ning"], ["ling", "ing", ".", "ting", " thrott", "ening", " throttle", "ning"], ["ling", "les", "le", "ing", " thrott", ".", "ting", "lers"], ["ling", "les", "le", "lers", "ting", "iling", "led", "ler"], ["ling", "les", "le", "lers", "ting", "ls", "led", "l"]], "p": [[0.0393, 0.0174, 0.0164, 0.012, 0.0088, 0.0077, 0.0068, 0.0064], [0.0324, 0.0269, 0.0209, 0.0163, 0.0144, 0.0144, 0.0127, 0.0112], [0.0169, 0.0159, 0.014, 0.0132, 0.0066, 0.0058, 0.0058, 0.0058], [0.2448, 0.1395, 0.0138, 0.0114, 0.0079, 0.0079, 0.0054, 0.0051], [0.0504, 0.0392, 0.0287, 0.0223, 0.0197, 0.0174, 0.0154, 0.012], [0.0268, 0.0268, 0.0162, 0.0112, 0.0082, 0.0077, 0.0072, 0.0068], [0.2114, 0.0535, 0.0472, 0.0416, 0.0416, 0.0153, 0.0135, 0.0119], [0.0364, 0.0207, 0.0207, 0.0195, 0.0195, 0.0183, 0.0172, 0.0172], [0.0388, 0.0343, 0.0302, 0.0208, 0.0162, 0.0134, 0.0118, 0.0087], [0.0346, 0.0305, 0.0153, 0.0119, 0.0105, 0.0093, 0.0082, 0.0077], [0.0564, 0.0284, 0.0235, 0.0235, 0.0183, 0.0152, 0.0126, 0.0098], [0.0734, 0.0648, 0.0306, 0.0128, 0.0106, 0.0077, 0.0073, 0.0073], [0.0257, 0.0257, 0.0213, 0.02, 0.0114, 0.0094, 0.0065, 0.0054], [0.0177, 0.0138, 0.0114, 0.0084, 0.0079, 0.0065, 0.0042, 0.0039], [0.0363, 0.0282, 0.0194, 0.0161, 0.0086, 0.0049, 0.0046, 0.0041], [0.068, 0.0172, 0.0052, 0.0043, 0.0043, 0.0041, 0.0038, 0.0034], [0.0343, 0.0267, 0.0208, 0.0087, 0.0068, 0.0063, 0.0056, 0.0053], [0.0166, 0.0137, 0.0094, 0.0094, 0.0089, 0.0039, 0.0039, 0.0039], [0.0128, 0.0106, 0.006, 0.006, 0.0057, 0.0044, 0.0037, 0.0034], [0.0379, 0.0096, 0.007, 0.0066, 0.0055, 0.0033, 0.0033, 0.0031], [0.0489, 0.0336, 0.0159, 0.014, 0.014, 0.0116, 0.0103, 0.0096], [0.0152, 0.0111, 0.0072, 0.0067, 0.0046, 0.0043, 0.0041, 0.0034], [0.0872, 0.0235, 0.0098, 0.0081, 0.0076, 0.0063, 0.0043, 0.0041], [0.0331, 0.0157, 0.0108, 0.0084, 0.0069, 0.0065, 0.0058, 0.0054], [0.024, 0.01, 0.0094, 0.0083, 0.0073, 0.0073, 0.0069, 0.0061], [0.0461, 0.0109, 0.0085, 0.0062, 0.0062, 0.0059, 0.0049, 0.0049], [0.0257, 0.0242, 0.02, 0.0177, 0.0069, 0.0039, 0.0039, 0.0035], [0.013, 0.0079, 0.0079, 0.0074, 0.0065, 0.0065, 0.0045, 0.0042], [0.0469, 0.0303, 0.0221, 0.0111, 0.0098, 0.0072, 0.0072, 0.0068], [0.0508, 0.0372, 0.0349, 0.0165, 0.0107, 0.01, 0.0088, 0.0078], [0.0688, 0.0305, 0.0269, 0.0223, 0.0163, 0.0144, 0.0105, 0.0093], [0.0368, 0.0368, 0.0287, 0.0253, 0.0144, 0.0144, 0.0112, 0.0112], [0.0392, 0.0325, 0.0287, 0.027, 0.0136, 0.0136, 0.0127, 0.0127], [0.0544, 0.0241, 0.0227, 0.0227, 0.0188, 0.0156, 0.0114, 0.0095], [0.0471, 0.0223, 0.0196, 0.0135, 0.0112, 0.0112, 0.0082, 0.0077], [0.0417, 0.0325, 0.0325, 0.0127, 0.0105, 0.0099, 0.0077, 0.0077], [0.0651, 0.0255, 0.0255, 0.0211, 0.0106, 0.0094, 0.0083, 0.0083], [0.0779, 0.0392, 0.0174, 0.0135, 0.0127, 0.0064, 0.006, 0.0053], [0.1085, 0.0481, 0.0188, 0.0138, 0.0114, 0.0107, 0.0101, 0.0084], [0.1407, 0.0967, 0.0277, 0.0116, 0.0116, 0.0096, 0.0085, 0.0075], [0.2351, 0.1339, 0.0299, 0.0205, 0.0125, 0.008, 0.0076, 0.0076], [0.246, 0.2171, 0.0516, 0.0333, 0.0139, 0.0139, 0.013, 0.0108], [0.3167, 0.1921, 0.0378, 0.0277, 0.0123, 0.0115, 0.0115, 0.0115], [0.3443, 0.0986, 0.0386, 0.0249, 0.0151, 0.0133, 0.0118, 0.0111], [0.2149, 0.0616, 0.0257, 0.0241, 0.0227, 0.0166, 0.0156, 0.0129], [0.1028, 0.0378, 0.026, 0.0244, 0.0203, 0.019, 0.0168, 0.0168], [0.1054, 0.0321, 0.0302, 0.0235, 0.0172, 0.0152, 0.0143, 0.0143], [0.0621, 0.0228, 0.0214, 0.0178, 0.0138, 0.013, 0.0122, 0.0115], [0.025, 0.0161, 0.0151, 0.0134, 0.0086, 0.0086, 0.0081, 0.0076], [0.0422, 0.0137, 0.0137, 0.0129, 0.0113, 0.0083, 0.0083, 0.0061], [0.1544, 0.1451, 0.128, 0.1061, 0.0776, 0.0471, 0.0442, 0.039], [0.341, 0.1255, 0.104, 0.0977, 0.0557, 0.0263, 0.0263, 0.0192], [0.2124, 0.1554, 0.1137, 0.0885, 0.0885, 0.0224, 0.021, 0.0174], [0.2577, 0.1563, 0.0948, 0.0786, 0.0738, 0.0165, 0.0155, 0.0137], [0.2117, 0.1064, 0.0645, 0.0606, 0.0472, 0.0197, 0.0135, 0.0119], [0.1276, 0.1058, 0.0934, 0.05, 0.0389, 0.0285, 0.0267, 0.0184], [0.2064, 0.0433, 0.0279, 0.0218, 0.0204, 0.0159, 0.015, 0.0124], [0.1959, 0.0386, 0.032, 0.0234, 0.0194, 0.0133, 0.0125, 0.0111], [0.4198, 0.1203, 0.0729, 0.0416, 0.0324, 0.0196, 0.0163, 0.0135], [0.194, 0.1511, 0.0861, 0.0592, 0.0522, 0.0232, 0.0232, 0.0204], [0.8162, 0.1418, 0.0052, 0.0038, 0.0024, 0.0024, 0.0016, 0.0013], [0.9405, 0.044, 0.0026, 0.0023, 0.0009, 0.0008, 0.0004, 0.0004], [0.9299, 0.0674, 0.0012, 0.0004, 0.0002, 0.0001, 0.0001, 0.0001]], "ranks": {"Kotlin": [24997, 41947, 41017, 10643, 17783, 24875, 20342, 43148, 26610, 55730, 27935, 15136, 10437, 12864, 36542, 11276, 20356, 17194, 23090, 40439, 109643, 46931, 87470, 160206, 170931, 82885, 54676, 104749, 75609, 93731, 75305, 78846, 103770, 109471, 131939, 94728, 111175, 111416, 92182, 92151, 98938, 88426, 69414, 56096, 59333, 78926, 96422, 77322, 97907, 55726, 29429, 23576, 16329, 6631, 4001, 1935, 1310, 1089, 1228, 350, 291, 90, 210]}}, {"pos": 494, "top": [[".", ",", "a", " \u2013", "\u2013", " ", "\u2026.", "\u00a0\u00a0"], [" \u2013", "  \n\n", "  \n", "\u2013", "ing", " \u2013**", "  ", "  \n  \n"], [" \u2013", ".", "\u2013", ",", "\u2026.", "\u2026..", "\u2026", "\u2026\u2026"], [" **\u201c", " **\u2018", " **\u201e", "\uff3f\uff3f", "-------------</", " **\u25a0", " **:", "\uff0a\uff0a\uff0a\uff0a"], [" **\u201c", " ***", "ing", " \u2019", " **\u2018", " **", " **.", " ****"], [" **\u201c", "ing", " **\u2018", " \u201d", " ***", " **", " \u2019", " **\""], [" **\u201c", " **\u2018", " ***", "  \n", " **", "ing", " \u2019", " **\""], ["ing", " **", " **\u2018", " **\u201c", " ***", " **\"", "  \n", " \n  \n"], ["  \n\n", " **", " **\u201c", "  \n", " **\u2018", "  \n\n\n", " ***", " **\""], [" **", " **\u2018", " **\"", "ing", " **\u2013", "  \r\n", " ***", "  \n"], [" **", "ing", " ", "  \n", " **\u2018", " ***", " \n  \n", " **\""], [" **", " **\u2018", " ***", " **'", " **\"", " **\u201c", " **\u2013", " **."], [" **", " **\u2018", " **\u2013", " **'", " **\u201c", " **\"", " ***", "-esque"], ["-esque", " showcasing", " showcased", " **\u2013", " incentiv", " advancements", " **\u2018", " arguably"], [" arguably", "-esque", " showcasing", " \u2013", " akin", " bolster", " aggressively", " heavily"], [" bolster", " arguably", "-esque", " showcasing", " akin", " vastly", " swiftly", " --"], ["-esque", " \u2013", " arguably", " bolster", " akin", " showcasing", " myriad", "ing"], ["-esque", " \u2013", " **\u2013", " arguably", " showcasing", " **", " akin", " effortlessly"], [" arguably", "\u2014even", "-esque", " \u2013", " swiftly", " **", " effortlessly", " amidst"], ["<|endoftext|>", " \u2013", " --", " ,", " swiftly", "\u2014even", " arguably", "\u2014and"], ["<|endoftext|>", " --", " ,", " \n\n", "  \n\n", " swiftly", " \r\n\r\n", "a"], [" --", " ,", " swiftly", " arguably", " heavily", " notably", " amidst", " vastly"], [" --", " ,", " ``", " swiftly", " arguably", " notably", " heavily", " \u2019"], [" ,", " --", " .", "<|endoftext|>", " notably", " ultimately", " ;", " heavily"], [" --", " \n\n", " ,", " \r\n\r\n", "  \n\n", " \n  \n", "  \r\n\r\n", "\r\n\r\n"], [" **", " .**", " --", " ,", " **\u2018", " **.", " **'", " **\u201c"], [" **", " ,", " --", " .**", " **\u2018", " __", " ___", " \u2019"], [" ,", " **", " --", " \n\n", " \u2019", " .", " heavily", " __"], [" ,", " **", " \u2019", " --", " heavily", " .**", " .", " ;"], [" **", " .**", " \u2019", " ,", " --", " **\u2018", " heavily", " **\u201c"], [" ,", " **", " .", " \u2013", " heavily", " \u2019", " over", " during"], [" ,", " .", " **", " \u2013", " \u2019", " \u201c", " over", " "], [" ,", " \u2013", " **", " .", " \u201c", " heavily", " \u2014", " \u2019"], [" **", " \u2013", " **\u201c", " \u2014", " heavily", " \u2019", " **\u2013", " meticulously"], [" **", " meticulously", " \u201c", " heavily", " **\u201c", " .**", " \u2013", " \u2014"], [" \u2013", " \u201c", " .", " \u2014", " **", " rapidly", " ,", " fast"], [" \u2013", " \u201c", " rapidly", " instantly", " fast", " quickly", " speed", " continuously"], [" \u201c", " continuously", " quickly", " .", " rapidly", " instantly", " fast", " constantly"], [" continuously", " performance", " constantly", " continuous", " \u201c", " meticulously", " rapidly", " hardware"], [" continuously", " speed", " performance", " constantly", " continuous", " synchronized", " fast", " synchronous"], [" speed", " performance", " continuously", " continuous", " constantly", " framerate", " fast", " speeds"], [" speed", " continuously", " continuous", " framerate", " periodic", " jitter", "\u6bcf\u79d2", " performance"], [" periodic", " jitter", " continuous", " framerate", " continuously", " rhythm", " periodically", "\u6bcf\u79d2"], [" continuous", " periodic", " framerate", " continuously", " animation", " jitter", " constantly", " daily"], [" continuous", " periodic", " nightly", " weekly", " jitter", " daily", " uninterrupted", " framerate"], [" continuous", " weekly", " jitter", " nightly", " periodic", " framerate", " uninterrupted", " daily"], [" consistently", " continuous", " every", "\u6bcf\u79d2", " constantly", " weekly", " nightly", " continuously"], [" every", " consistently", " constantly", " continuous", " continuously", " weekly", " periodic", " cycles"], [" continuous", " cycles", " every", " consistently", " constantly", " synchronized", " continuously", " frequent"], [" ANY", "\u4efb\u4f55\u5f62\u5f0f\u7684", " (>", "\u7684\u4efb\u4f55", "\u5e74\u5168\u5e74", " sustained", " bursts", "\u8981\u60f3"], [" ANY", "\u4efb\u4f55\u5f62\u5f0f\u7684", " **.", "\u7684\u4efb\u4f55", "\u8981\u60f3", " {}.", "\u60f3\u8981\u5728", "."], ["\u4efb\u4f55\u5f62\u5f0f\u7684", "\u60f3\u8981\u5728", " ANY", " {}.", ".Java", "\u8981\u60f3", "\u8981\u5b9e\u73b0", "."], [".**", ".", "**.", " **.", "*.", ".Java", "{}.", "\\."], [".Java", ".", ".**", " Java", " **.", "{}.", " Standard", "**."], [" Java", ".Java", " achieving", " JavaScript", " JVM", ".**", " standard", " Kotlin"], [" Kotlin", " Java", ".Java", " JVM", " Kubernetes", " Android", " JavaScript", " JNI"], [" Kotlin", " Java", ".Java", " JVM", " Android", " JNI", "Java", " JavaScript"], [" Kotlin", " Java", ".Java", " JVM", " Android", " JNI", "Java", "."], [" Kotlin", " Java", " JVM", ".Java", " JNI", " Android", ".", "Java"], [" Kotlin", " kotlin", " Java", ".kotlin", " Kubernetes", ".", " JVM", " Android"], [" Kotlin", " kotlin", " Kubernetes", ".", ".kotlin", " kotlinx", " Java", ".K"], [" Kotlin", ".", " kotlin", " Kubernetes", " kotlinx", " Java", ".kotlin", ".K"], [".", " Kotlin", ".K", " .", " kotlin", ".k", ",", " Java"]], "p": [[0.7841, 0.175, 0.0144, 0.0112, 0.0027, 0.0019, 0.0016, 0.0015], [0.2952, 0.0201, 0.013, 0.0122, 0.0079, 0.0069, 0.0069, 0.0065], [0.4499, 0.3092, 0.1137, 0.0445, 0.021, 0.012, 0.0068, 0.0025], [0.036, 0.0318, 0.0193, 0.0193, 0.0117, 0.0097, 0.0085, 0.0085], [0.3102, 0.1293, 0.1007, 0.0506, 0.0506, 0.0348, 0.0271, 0.0255], [0.325, 0.2099, 0.0601, 0.0413, 0.0413, 0.0388, 0.0365, 0.0251], [0.3368, 0.1093, 0.1093, 0.0852, 0.0852, 0.055, 0.0456, 0.0402], [0.2355, 0.1834, 0.126, 0.1045, 0.0982, 0.0922, 0.0193, 0.0091], [0.3504, 0.1004, 0.0782, 0.069, 0.0648, 0.0609, 0.0572, 0.0306], [0.2115, 0.1205, 0.0999, 0.0999, 0.0569, 0.0223, 0.0174, 0.0135], [0.3608, 0.0667, 0.0431, 0.0405, 0.0405, 0.038, 0.0357, 0.0336], [0.7968, 0.0614, 0.0309, 0.0155, 0.0137, 0.0114, 0.0094, 0.0027], [0.6067, 0.099, 0.0388, 0.0098, 0.0067, 0.0063, 0.0059, 0.0059], [0.06, 0.0235, 0.0134, 0.0118, 0.0118, 0.0111, 0.0104, 0.0081], [0.035, 0.0256, 0.0226, 0.0176, 0.0137, 0.0114, 0.0114, 0.01], [0.0505, 0.0505, 0.0418, 0.0238, 0.0164, 0.0099, 0.0088, 0.0088], [0.0634, 0.056, 0.056, 0.0385, 0.0248, 0.0125, 0.0117, 0.011], [0.072, 0.0527, 0.0465, 0.03, 0.0161, 0.0142, 0.0104, 0.0097], [0.0628, 0.0358, 0.0316, 0.0262, 0.0169, 0.0159, 0.0124, 0.0116], [0.0684, 0.0684, 0.05, 0.0366, 0.0344, 0.0268, 0.0236, 0.0153], [0.9626, 0.0031, 0.0027, 0.0021, 0.002, 0.001, 0.0004, 0.0004], [0.0491, 0.0298, 0.0263, 0.0232, 0.0124, 0.0124, 0.0117, 0.0091], [0.3215, 0.1044, 0.0181, 0.015, 0.0141, 0.0133, 0.0091, 0.0086], [0.298, 0.1407, 0.0131, 0.0123, 0.0116, 0.0116, 0.0116, 0.009], [0.181, 0.1031, 0.0755, 0.0552, 0.0404, 0.0149, 0.0116, 0.0085], [0.8088, 0.0229, 0.0202, 0.0179, 0.0062, 0.0054, 0.0033, 0.0031], [0.6903, 0.0366, 0.0323, 0.0222, 0.0112, 0.0077, 0.0068, 0.006], [0.3952, 0.1648, 0.0882, 0.0305, 0.0174, 0.0099, 0.0093, 0.0082], [0.2374, 0.1968, 0.025, 0.0235, 0.0221, 0.0172, 0.0111, 0.0072], [0.712, 0.0355, 0.0202, 0.0148, 0.009, 0.0084, 0.0051, 0.0048], [0.3274, 0.0645, 0.0606, 0.0252, 0.0237, 0.0185, 0.0163, 0.0072], [0.2492, 0.142, 0.0461, 0.028, 0.0159, 0.0159, 0.0132, 0.0117], [0.2069, 0.0977, 0.0918, 0.0434, 0.0218, 0.0192, 0.0192, 0.0181], [0.4803, 0.0476, 0.0327, 0.0128, 0.0128, 0.012, 0.0088, 0.0083], [0.2562, 0.0306, 0.0306, 0.0306, 0.027, 0.0198, 0.0198, 0.0186], [0.2417, 0.0539, 0.0307, 0.0307, 0.0239, 0.0239, 0.0211, 0.0175], [0.1066, 0.0884, 0.0444, 0.0253, 0.0238, 0.021, 0.0197, 0.0185], [0.0613, 0.0328, 0.0289, 0.0272, 0.0225, 0.0212, 0.0165, 0.0165], [0.0687, 0.0444, 0.0417, 0.0223, 0.021, 0.0135, 0.0119, 0.0082], [0.0645, 0.0502, 0.0472, 0.0367, 0.0324, 0.0144, 0.0112, 0.0105], [0.1485, 0.0513, 0.0453, 0.0331, 0.0292, 0.0275, 0.0201, 0.0167], [0.0496, 0.0496, 0.0411, 0.0386, 0.0386, 0.0341, 0.0283, 0.0249], [0.1001, 0.0536, 0.0503, 0.0368, 0.0287, 0.0223, 0.0223, 0.0197], [0.0678, 0.0598, 0.0283, 0.0283, 0.0207, 0.0207, 0.0194, 0.0182], [0.0646, 0.0444, 0.0368, 0.0346, 0.0287, 0.0269, 0.0223, 0.0223], [0.056, 0.03, 0.0265, 0.0248, 0.0233, 0.016, 0.016, 0.016], [0.0597, 0.0527, 0.0527, 0.0282, 0.0249, 0.0234, 0.022, 0.0206], [0.0785, 0.0738, 0.0476, 0.0447, 0.0289, 0.0187, 0.0187, 0.0175], [0.0296, 0.0245, 0.0245, 0.0203, 0.0191, 0.0158, 0.014, 0.0109], [0.0414, 0.0195, 0.0105, 0.0072, 0.0068, 0.0068, 0.0063, 0.0053], [0.123, 0.1156, 0.0214, 0.0214, 0.013, 0.0122, 0.0095, 0.0089], [0.0238, 0.0238, 0.021, 0.0154, 0.0144, 0.0144, 0.0127, 0.0127], [0.0471, 0.0416, 0.0416, 0.0268, 0.0173, 0.0144, 0.0135, 0.0119], [0.0344, 0.0268, 0.0236, 0.0236, 0.0196, 0.0162, 0.0127, 0.0127], [0.2429, 0.1384, 0.0256, 0.0212, 0.0199, 0.0083, 0.0078, 0.0078], [0.6488, 0.1859, 0.05, 0.0268, 0.0105, 0.0044, 0.0044, 0.0034], [0.643, 0.268, 0.0411, 0.0161, 0.0046, 0.0032, 0.0026, 0.0016], [0.7568, 0.1689, 0.0293, 0.0157, 0.0051, 0.0031, 0.0024, 0.0021], [0.8024, 0.123, 0.0177, 0.0114, 0.0101, 0.0065, 0.0054, 0.0015], [0.9984, 0.0006, 0.0002, 0.0001, 0.0001, 0.0001, 0.0, 0.0], [0.998, 0.0005, 0.0004, 0.0002, 0.0001, 0.0001, 0.0001, 0.0], [0.9918, 0.0043, 0.0012, 0.0004, 0.0002, 0.0002, 0.0001, 0.0001], [0.9988, 0.001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Kotlin": [190703, 102511, 49406, 4041, 5723, 9056, 9592, 24462, 25484, 36869, 27706, 12505, 31255, 34160, 66813, 34948, 55798, 27276, 42972, 109150, 128170, 64023, 89701, 139515, 87162, 38272, 24986, 38801, 32575, 14566, 37576, 31473, 34350, 14984, 21796, 19754, 6560, 10330, 9538, 6186, 9116, 12724, 9781, 9040, 11895, 19950, 24025, 33607, 40396, 15739, 7550, 115, 65, 39, 7, 1, 1, 1, 1, 1, 1, 1, 2]}}, {"pos": 495, "top": [[" \u2013", ".", ",", "\u2013", ";", "\u00a0", "\u00a0\u00a0", ":"], [" \u2013", "\u2013", "\u2013and", " \u2013,", ",", "\u2013\u2013", ".", " \u200b\u200b"], ["\u2013", " \u2013", ",", ".", ".\u2013", "\u2013and", "\u2026..", "\u2026."], [" milfs", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Shemale", " Blowjob", "-------------</", " ;;^", " pornstar", "----------</"], [" \u201c.", "\u65b0\u52a0\u5761", " \u201c", " \u200b\u200b", ":@", "\u2013\u2013", "!\u201c", " Millennials"], [" \u200b\u200b", ",", ".", "!:", ":", "\u2026..", "<|quad_end|>", "\u2013and"], ["  \n", "   \n", "  \n\n", "!\u201d", ":", "\u00a0\u00a0", ".", "\u2014\u2014"], ["   \n", "   \n\n", "  \n\n", "  \n", "<|quad_end|>", "!:", "\u2018s", "  \r\n"], ["  \n\n", "   \n\n", " \n\n", "\u00a0", ",", "    \n\n", ".", "!\u201d"], [",", "\u2013and", "\u5373\u4fbf\u5982\u6b64", "\u00a0\u00a0", "\u00a0", "\u7a81\u5982\u5176", "\u2013", "\u7c89\u4e1d\u4eec"], [",", "\u00a0", " ", "\u2013", ".", "\u00a0\u00a0", "\u2019s", ";"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " nonetheless", "\u7c89\u4e1d\u4eec", " stark", " arguably", " hardcore", "\u5373\u4fbf\u5982\u6b64", "\u582a\u6bd4"], [" nonetheless", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " pervasive", " arguably", " broader", " complexities", "\u7c89\u4e1d\u4eec", " transformative"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\u7c89\u4e1d\u4eec", " pervasive", " hardcore", " systemic", " savvy", "\u51ed\u501f\u7740", " transformative"], [" arguably", " sprawling", " aggressively", " savvy", " typically", " myriad", " albeit", " often"], [" arguably", " sprawling", "\u51ed\u501f\u7740", " savvy", " looming", "-esque", " nuanced", " myriad"], [" arguably", "-esque", " sprawling", " myriad", " incredibly", " overarching", " typically", " nuanced"], [" arguably", " sprawling", "-esque", " nuanced", " leveraging", " transitioning", " savvy", " effortlessly"], [" arguably", "\u2014even", " sprawling", " myriad", " notoriously", " incredibly", " typically", " effortlessly"], [" arguably", "\u2014even", " myriad", " swiftly", " sprawling", " vastly", " ultimately", " burgeoning"], ["<|endoftext|>", " swiftly", " myriad", " arguably", " vastly", " ultimately", " heavily", "\u5373\u4fbf"], [" arguably", " sprawling", " swiftly", " myriad", " effortlessly", " vastly", "\u62e5\u6709\u7740", " skyrocket"], [" arguably", " swiftly", " myriad", " sprawling", " vastly", " ultimately", " merely", " heavily"], [" arguably", " swiftly", " myriad", " ultimately", " vastly", "<|endoftext|>", " heavily", " sprawling"], [" \n\n", " \r\n\r\n", "\u5373\u4fbf", "  \n\n", "\r\n\r\n", " arguably", " swiftly", " vastly"], ["\u5373\u4fbf", " arguably", " vastly", " sprawling", " swiftly", " \r\n\r\n", " myriad", " **"], [" arguably", " sprawling", "\u5373\u4fbf", " vastly", " myriad", " swiftly", " heavily", " skyrocket"], [" \n\n", " arguably", "\n\n", " heavily", " vastly", " sprawling", " ultimately", " swiftly"], [" arguably", " vastly", " heavily", " sprawling", "\u5373\u4fbf", " myriad", " \n\n", "\n\n"], [" heavily", " arguably", " vastly", " sprawling", " disproportionately", "\u2014even", " **", " notoriously"], [" heavily", " often", " even", " aggressively", " incredibly", " typically", " disproportionately", " arguably"], [" heavily", " even", " countless", " incredibly", " often", " extremely", " aggressively", " many"], [" heavily", " aggressively", " deeply", " rapidly", " relentlessly", " even", " incredibly", " \u2014"], [" heavily", " aggressively", " meticulously", " deeply", " relentlessly", " relentless", " notoriously", " incredibly"], [" heavily", " aggressively", " notoriously", " relentlessly", " relentless", " meticulously", " deeply", " massively"], [" notoriously", " heavily", " relentless", " aggressively", " relentlessly", "\u2014even", " meticulously", " deeply"], [" notoriously", " heavily", " aggressively", " inherently", " relentlessly", " relentless", "\u6839\u672c\u65e0\u6cd5", "\u2014even"], [" notoriously", " aggressively", " inherently", " heavily", " relentlessly", "\u2014even", " relentless", " meticulously"], [" notoriously", " relentless", "\u2014even", " relentlessly", " inherently", " heavily", " aggressively", " meticulously"], [" inherently", " relentless", " notoriously", "\u2014even", " relentlessly", " unpredictable", " aggressively", " heavily"], [" relentless", " inherently", " heavily", " demanding", " relentlessly", " notoriously", " unpredictable", "\u2014even"], [" inherently", " heavily", "\u2014even", " relentless", " unpredictable", " demanding", " relentlessly", " heavy"], [" inherently", " heavily", " heavy", " aggressively", " relentless", " demanding", " notoriously", " massive"], [" inherently", " heavily", " heavy", " notoriously", " unpredictable", " massive", " massively", " relentless"], [" inherently", " heavily", " unpredictable", " heavy", " notoriously", " massive", " aggressively", " massively"], [" inherently", " notoriously", " heavily", " unpredictable", " heavy", " aggressively", " massively", " inevitably"], [" inherently", " ANY", " notoriously", " unpredictable", "-heavy", " heavily", " inevitable", " inevitably"], [" inherently", " ANY", "\u2014even", " notoriously", "\u4efb\u4f55\u5f62\u5f0f\u7684", " traditional", "\u52a8\u8f84", "-heavy"], ["\u4efb\u4f55\u5f62\u5f0f\u7684", " ANY", " inherently", "\u2014even", "\u7684\u4efb\u4f55", " \uc544\ubb34\ub9ac", "\u52a8\u8f84", "\u5373\u4fbf\u662f"], ["\u4efb\u4f55\u5f62\u5f0f\u7684", " ANY", "\u7684\u4efb\u4f55", "\u4efb\u4f55\u4e00\u79cd", " \uc544\ubb34\ub9ac", "\u5373\u4fbf\u662f", "\u2014even", "\u7121\u8ad6\u662f"], ["\u4efb\u4f55\u5f62\u5f0f\u7684", " ANY", "\u7684\u4efb\u4f55", "\u65e0\u8bba\u662f", ":Any", "\u7121\u8ad6\u662f", " \uc544\ubb34\ub9ac", "\u4efb\u4f55\u4e00\u79cd"], ["\u4efb\u4f55\u5f62\u5f0f\u7684", " ANY", "\u7684\u4efb\u4f55", ":Any", "\u65e0\u8bba\u662f", " qualsiasi", " Anything", "\u4efb\u4f55\u4e00\u79cd"], ["\u4efb\u4f55\u5f62\u5f0f\u7684", " ANY", "\u7684\u4efb\u4f55", " **+", " Kotlin", ":Any", " Traditional", " Anything"], ["\u4efb\u4f55\u5f62\u5f0f\u7684", " ANY", "\u7684\u4efb\u4f55", " Kotlin", " Anything", " Java", " JVM", " TensorFlow"], [" Java", " Kotlin", " JVM", " JavaScript", ".Java", " TensorFlow", " Python", " JNI"], [" Kotlin", " JVM", " Java", " Kubernetes", " JavaScript", " JNI", ".Java", " kotlin"], [" Kotlin", " Java", " JVM", " JNI", " Kubernetes", ".Java", " JavaScript", " kotlin"], [" Kotlin", " JVM", " Java", " JNI", " Kubernetes", " Android", " JavaScript", " kotlin"], [" Kotlin", " JVM", " Java", " JNI", " Kubernetes", " JIT", " Android", " kotlin"], [" Kotlin", " kotlin", ".kotlin", " Kubernetes", " JVM", "otlin", " kotlinx", " Java"], [" Kotlin", " kotlin", " Kubernetes", ".kotlin", " kotlinx", " JVM", " Java", "otlin"], [" Kotlin", " kotlin", " Kubernetes", " kotlinx", ".kotlin", " JVM", " Java", " Kafka"], [" Kotlin", " Kubernetes", " The", " Java", " Standard", " kotlin", " Running", " Kafka"]], "p": [[0.5309, 0.322, 0.0814, 0.0494, 0.0036, 0.0017, 0.0013, 0.001], [0.6911, 0.106, 0.0143, 0.005, 0.0022, 0.0018, 0.0013, 0.001], [0.7934, 0.0836, 0.0738, 0.0308, 0.0053, 0.0047, 0.0025, 0.0012], [0.0197, 0.0173, 0.0082, 0.0053, 0.0036, 0.0034, 0.0032, 0.0027], [0.0044, 0.0034, 0.0028, 0.0027, 0.0023, 0.0018, 0.0017, 0.0017], [0.0363, 0.0301, 0.0098, 0.0067, 0.0059, 0.0032, 0.0022, 0.0019], [0.1789, 0.09, 0.0746, 0.0352, 0.0311, 0.0292, 0.0258, 0.0201], [0.0703, 0.0376, 0.0089, 0.0089, 0.007, 0.0058, 0.0048, 0.0037], [0.3921, 0.2531, 0.0931, 0.044, 0.0183, 0.0126, 0.0118, 0.0104], [0.0116, 0.0026, 0.0018, 0.0017, 0.0016, 0.0015, 0.0013, 0.0011], [0.3131, 0.2152, 0.033, 0.0227, 0.0188, 0.0129, 0.0065, 0.0057], [0.0084, 0.0035, 0.0031, 0.0026, 0.002, 0.002, 0.0019, 0.0016], [0.0058, 0.0058, 0.0055, 0.0035, 0.0031, 0.0027, 0.0026, 0.0021], [0.0053, 0.0025, 0.0022, 0.0016, 0.0015, 0.0015, 0.0014, 0.0014], [0.0262, 0.0096, 0.0075, 0.0058, 0.0055, 0.0055, 0.0046, 0.0043], [0.0188, 0.0138, 0.0089, 0.0048, 0.0039, 0.0039, 0.0035, 0.0033], [0.091, 0.0261, 0.0203, 0.0158, 0.0149, 0.0116, 0.0096, 0.009], [0.039, 0.0209, 0.0112, 0.0087, 0.0072, 0.006, 0.0053, 0.0053], [0.0966, 0.026, 0.0202, 0.0148, 0.009, 0.0084, 0.0074, 0.007], [0.0704, 0.0377, 0.0259, 0.0243, 0.0202, 0.0167, 0.0122, 0.0115], [0.7442, 0.0078, 0.0057, 0.0053, 0.0039, 0.0034, 0.0022, 0.0021], [0.0254, 0.0128, 0.0099, 0.0073, 0.0053, 0.0053, 0.0047, 0.0047], [0.035, 0.0273, 0.0155, 0.0114, 0.0114, 0.0088, 0.0069, 0.0069], [0.0255, 0.0255, 0.0199, 0.0137, 0.0128, 0.0094, 0.0094, 0.0088], [0.0887, 0.0347, 0.0254, 0.0254, 0.0254, 0.0211, 0.0175, 0.0164], [0.0195, 0.0126, 0.0111, 0.0098, 0.0076, 0.006, 0.006, 0.0049], [0.0224, 0.0198, 0.0186, 0.0174, 0.0106, 0.0106, 0.0099, 0.0088], [0.0454, 0.0376, 0.0354, 0.0259, 0.0214, 0.0157, 0.0115, 0.0101], [0.0444, 0.0368, 0.0269, 0.0269, 0.0238, 0.021, 0.0197, 0.0153], [0.0491, 0.0382, 0.0337, 0.0298, 0.0263, 0.0232, 0.0232, 0.0204], [0.0763, 0.0524, 0.0299, 0.0219, 0.0181, 0.017, 0.016, 0.0141], [0.0655, 0.051, 0.035, 0.0273, 0.0226, 0.0166, 0.0155, 0.0155], [0.0625, 0.0216, 0.0191, 0.0179, 0.0149, 0.0149, 0.0131, 0.0116], [0.0667, 0.0357, 0.023, 0.0203, 0.0179, 0.014, 0.014, 0.014], [0.0508, 0.0396, 0.024, 0.024, 0.0225, 0.0212, 0.0146, 0.0094], [0.0621, 0.0583, 0.0259, 0.0243, 0.0228, 0.0167, 0.0139, 0.0139], [0.0764, 0.0463, 0.0318, 0.0248, 0.0219, 0.0219, 0.0181, 0.016], [0.063, 0.0337, 0.0298, 0.0298, 0.028, 0.028, 0.028, 0.0159], [0.0588, 0.0404, 0.038, 0.0357, 0.0357, 0.0203, 0.0191, 0.0169], [0.0579, 0.0511, 0.0398, 0.0374, 0.0291, 0.0257, 0.0213, 0.0213], [0.0628, 0.0554, 0.0459, 0.0316, 0.0279, 0.0246, 0.0217, 0.0192], [0.0509, 0.035, 0.0309, 0.029, 0.0256, 0.0226, 0.0187, 0.0187], [0.0656, 0.033, 0.033, 0.0241, 0.02, 0.0188, 0.0188, 0.0188], [0.0852, 0.0378, 0.0294, 0.0277, 0.026, 0.0168, 0.0158, 0.0158], [0.0776, 0.039, 0.0366, 0.0323, 0.0237, 0.0153, 0.0153, 0.0127], [0.1421, 0.0491, 0.0317, 0.0298, 0.015, 0.015, 0.0103, 0.0097], [0.327, 0.0391, 0.0304, 0.0184, 0.0173, 0.0153, 0.0105, 0.0099], [0.2881, 0.1201, 0.0344, 0.0236, 0.0163, 0.0143, 0.0135, 0.0112], [0.2478, 0.193, 0.0458, 0.0431, 0.0315, 0.0158, 0.014, 0.0123], [0.4998, 0.1345, 0.0527, 0.022, 0.0104, 0.0081, 0.0081, 0.0067], [0.604, 0.0301, 0.022, 0.0194, 0.0182, 0.0142, 0.0092, 0.0081], [0.187, 0.0536, 0.0287, 0.0269, 0.0154, 0.0093, 0.0093, 0.0087], [0.1392, 0.0424, 0.0227, 0.0114, 0.0114, 0.0095, 0.0089, 0.0084], [0.0803, 0.043, 0.0216, 0.0203, 0.0168, 0.0149, 0.014, 0.0131], [0.2113, 0.0938, 0.0938, 0.0286, 0.0185, 0.0163, 0.0119, 0.0093], [0.9642, 0.0138, 0.0121, 0.0027, 0.0006, 0.0005, 0.0004, 0.0002], [0.9698, 0.0178, 0.0095, 0.0006, 0.0002, 0.0002, 0.0002, 0.0002], [0.9782, 0.014, 0.0058, 0.0006, 0.0002, 0.0001, 0.0001, 0.0001], [0.9818, 0.0109, 0.004, 0.0015, 0.0002, 0.0002, 0.0002, 0.0001], [0.9998, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9995, 0.0002, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9987, 0.0005, 0.0002, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9955, 0.0006, 0.0005, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001]], "ranks": {"Kotlin": [231675, 159148, 108968, 6473, 4814, 34355, 31221, 93057, 108558, 113622, 96047, 41394, 53607, 30870, 157548, 81325, 76722, 42220, 107845, 172876, 206526, 137516, 159803, 194904, 162419, 122640, 87326, 106119, 76517, 61772, 109451, 94725, 175564, 168083, 191511, 166419, 159497, 164630, 155746, 106325, 107363, 87733, 49857, 49342, 68715, 93794, 98484, 87810, 35278, 11147, 4363, 56, 4, 4, 2, 1, 1, 1, 1, 1, 1, 1, 1]}}, {"pos": 496, "top": [[" \u2013", " *@", "@\"", " \\\"", " \\\"\"", "\\\"", "\\\"\"", " @{"], [" *@", " \\\"\"", " \\\"", "\\\"\\", " @{", " '\\\"", "\\\"\"", "\\\"\","], [" \u2013", " \u2013,", " *@", " *\u2013", "@\"", "\u2013", " \u2013**", "[@"], [" ``(", " ``", "``", " \\\"\"", " *\u201e", " \\\"{", "\\\"\\", " '\\''"], [" *@", " @{", " \\\"\"", " *\u201e", " *\"", "\\\"\\", "@\"", "\\\"\""], [" *@", " *\u201e", "\\\"\\", " *\"", " \\\"\"", " @{", " Kotlin", " *)\""], [" *@", "``", " *\u201e", " *\"", " \\\"\"", " ``", "\\\"\"", "\\\\\""], [" *\u201e", " \\\"\"", " *@", " ``", "``", "\\\"\"", " *\"", "\\\"\\"], [" *\u201e", " *@", " *\"", " \\\"\"", "\\\"\"", "\\\\\"", " `\"", "\\\"\\"], [" \\\"\"", "\\\"\"", "\\\\\"", "\\\"\\", " *\"", " \\\"$", " *@", " ``"], ["\\\"\"", " \\\"\"", " *@", "\\\\\"", " *\"", " \\\"", "\\\"\\", " \\\"$"], [" ``", " \\\"\"", " *\u201e", " *\"", "\\\"\"", " \\\"$", "-esque", " *@"], [" *\u201e", " \\\"\"", "-esque", " ``", " *\"", " \\\"", " Kotlin", " \\\"$"], ["-esque", " \\\"\"", " *\u201e", " *\"", " Kotlin", "\u4e8b\u534a\u529f\u500d", "\\\\\"", "\\\"\""], ["-esque", " \\\"\"", "\\\\\"", " ``", "&apos", " `\"", "\\\"\"", " \\\""], ["-esque", " Kotlin", "&apos", " \\\"\"", " entirety", " kotlin", "\\<^", "\\\\\""], ["-esque", " Kotlin", "&apos", "\u4e8b\u534a\u529f\u500d", " kotlin", "\\<^", " entirety", "-era"], ["-esque", " Kotlin", " kotlin", "\u4e8b\u534a\u529f\u500d", " *\u201e", "&apos", "\u52e4\u52e4\u6073\u6073", ".kotlin"], ["-esque", "&apos", " Kotlin", "\u4e8b\u534a\u529f\u500d", " *\u201e", " kotlin", " ;;^", "\u52e4\u52e4\u6073\u6073"], ["-esque", "&apos", "\\<^", " \\\"\"", " Kotlin", " \\<^", "\u4e8b\u534a\u529f\u500d", " kotlin"], ["-esque", "&apos", " \\\"\"", " {{--<", " Kotlin", " \\<^", " *@", "\\<^"], [" ``", " ``(", " Kotlin", " ;;^", "``", "&apos", " '\\\"", " \\\"\""], [" ``", "``", "&apos", " ''", " Kotlin", " ``(", "&quot", " \\\"\""], [" ``", "&apos", " ''", " Kotlin", " {{--<", "<|endoftext|>", "&#", "&quot"], [" \n\n", " \r\n\r\n", " \r\n \r\n", "\r\n\r\n", " Kotlin", "\n\n", "   \n\n", "\\u"], [" Kotlin", " kotlin", " \n\n", "\\\"\"", " \\<^", " \\\"\"", " {{--<", "&apos"], [" Kotlin", " kotlin", " ``", "\n \n", " \n\n", "&apos", "-language", "otlin"], ["\n\n", " \n\n", "\r\n\r\n", " ...", " \r\n\r\n", " ...\\", " ''", " ``"], [" Kotlin", " \n\n", "\\\"\"", "\n \n", "\n\n", "-language", " kotlin", "\\\\/"], [" ...\\", "\\\"\"", " Kotlin", " \n\n", "\n \n", "\\u", "...\\", "\\\"\\"], [" ...\\", " ...\"", "\\\"\"", " \n\n", "\n \n", " Kotlin", " ...", "...\""], [" ...", " ...\"", "...", " ...\\", " (...)", " Kotlin", " \\\"", " [...]"], [" mostly", " often", " famously", " primarily", " heavily", " modern", " -", " modular"], [" Kotlin", "-esque", " kotlin", "-centric", "otlin", " modular", "-heavy", " mostly"], ["-esque", "-centric", " Kotlin", " famously", "otlin", " kotlin", "-heavy", " seamlessly"], [" Kotlin", "otlin", "-centric", "-heavy", "-esque", " JVM", "-language", " famously"], [" Kotlin", "otlin", " JVM", " kotlin", "/java", "-java", "-centric", ".kotlin"], [" Kotlin", "otlin", " JVM", " kotlin", " interoper", " inherently", "/java", ".kotlin"], [" Kotlin", " JVM", "otlin", " Java", " kotlin", "/java", " inherently", "-java"], [" Kotlin", " JVM", "otlin", " Java", "Java", "/java", " kotlin", "-java"], [" JVM", " Kotlin", "Java", " Java", "otlin", "/java", " kotlin", "-java"], [" JVM", " Java", " Kotlin", "Java", "/java", "otlin", "-java", " kotlin"], [" JVM", " Kotlin", " Java", "Java", "otlin", "/java", "-java", " kotlin"], [" JVM", " Java", " Kotlin", "Java", "/java", "-language", "-java", "otlin"], [" JVM", " Java", " Kotlin", "-java", "/java", "Java", "otlin", " inherently"], [" JVM", " Java", " inherently", "/java", " Kotlin", "-java", "otlin", "-native"], [" JVM", " inherently", " Java", "/java", "-native", " Kotlin", "-java", "-heavy"], [" inherently", " JVM", "\u65e0\u8bba\u662f", " relies", "/java", " Java", "'s", " traditionally"], ["/java", " JVM", " inherently", "\u65e0\u8bba\u662f", "\u7121\u8ad6\u662f", "/Linux", "/G", " relies"], ["\u65e0\u8bba\u662f", " relies", " inherently", "\u7121\u8ad6\u662f", "\u2014even", "/java", " JVM", "-native"], ["/java", "/K", "/Linux", " JVM", " relies", " inherently", "\u65e0\u8bba\u662f", "-native"], ["-native", "/K", " relies", "/native", "/Linux", "/java", " JVM", "/C"], ["/K", "-native", " JVM", " Kotlin", " relies", "/native", "/Linux", "\u2014even"], [" JVM", " relies", "-native", " Kotlin", "\u2014even", "\u2019s", "/native", "/K"], [" Kotlin", " JVM", "/K", "-native", " relies", " kotlin", "/java", " bytecode"], [" JVM", " Kotlin", "-native", "/native", " relies", " bytecode", " Android", "/android"], [" JVM", " Kotlin", " bytecode", " Android", " relies", "Jvm", " Java", "/android"], [" JVM", " Kotlin", " bytecode", "Jvm", " VM", " runs", "-native", "VM"], [" JVM", " Kotlin", " bytecode", "Jvm", "/K", " Android", " VM", " Java"], [" runs", " running", " JVM", "runs", "\u8fd0\u884c", " Running", " Runs", "running"], [" runs", " JVM", "/N", " running", " Native", "/K", " bytecode", "runs"], [" runs", "\u2019s", "/N", " running", "/K", " Native", "/J", " JVM"], ["/N", " runs", "/J", "\u2019s", "/K", "/", "/G", " Native"]], "p": [[0.2838, 0.195, 0.1183, 0.0193, 0.017, 0.0133, 0.011, 0.0086], [0.4705, 0.1527, 0.0678, 0.0637, 0.0363, 0.0301, 0.0234, 0.0133], [0.8317, 0.0365, 0.0208, 0.0196, 0.0143, 0.0077, 0.0064, 0.0036], [0.1382, 0.1382, 0.1298, 0.122, 0.0787, 0.0308, 0.029, 0.0146], [0.8605, 0.0294, 0.0123, 0.0108, 0.009, 0.0079, 0.0058, 0.0051], [0.4722, 0.0284, 0.025, 0.0235, 0.0221, 0.0207, 0.0143, 0.0134], [0.2545, 0.145, 0.145, 0.1129, 0.0729, 0.0643, 0.0344, 0.0222], [0.2055, 0.1814, 0.1814, 0.0756, 0.0756, 0.0667, 0.0589, 0.0203], [0.3073, 0.1451, 0.1281, 0.1281, 0.113, 0.0534, 0.0223, 0.0099], [0.218, 0.218, 0.1698, 0.0457, 0.0403, 0.0295, 0.019, 0.0123], [0.3966, 0.1288, 0.0781, 0.0734, 0.0689, 0.0369, 0.0224, 0.0127], [0.1571, 0.1387, 0.1387, 0.0742, 0.0479, 0.0351, 0.0329, 0.0329], [0.241, 0.0572, 0.0505, 0.0326, 0.0288, 0.027, 0.0239, 0.0211], [0.3333, 0.0398, 0.0213, 0.0156, 0.0138, 0.0129, 0.0121, 0.0089], [0.4705, 0.0496, 0.0301, 0.0283, 0.0092, 0.0086, 0.0081, 0.0059], [0.5631, 0.015, 0.0097, 0.0036, 0.0031, 0.0024, 0.0022, 0.0019], [0.5693, 0.0111, 0.0046, 0.0036, 0.0034, 0.0022, 0.0021, 0.0016], [0.2381, 0.0441, 0.0126, 0.0111, 0.0111, 0.0092, 0.0077, 0.0032], [0.2792, 0.0202, 0.0179, 0.009, 0.009, 0.0079, 0.007, 0.007], [0.1711, 0.063, 0.015, 0.0132, 0.0116, 0.0071, 0.0066, 0.0049], [0.0455, 0.019, 0.009, 0.0074, 0.0062, 0.0042, 0.0042, 0.004], [0.231, 0.0377, 0.0313, 0.0294, 0.0229, 0.0202, 0.0095, 0.009], [0.6285, 0.0549, 0.0455, 0.0377, 0.013, 0.0079, 0.007, 0.0066], [0.0705, 0.0427, 0.0229, 0.0102, 0.0084, 0.007, 0.007, 0.0062], [0.1688, 0.0621, 0.0401, 0.0377, 0.0202, 0.0202, 0.0122, 0.0115], [0.314, 0.0331, 0.0189, 0.0138, 0.0114, 0.0101, 0.0089, 0.0084], [0.3086, 0.0346, 0.0253, 0.0174, 0.0136, 0.0112, 0.0106, 0.0099], [0.6506, 0.2394, 0.0112, 0.0044, 0.0044, 0.0019, 0.0019, 0.0017], [0.1317, 0.0377, 0.0294, 0.0229, 0.0229, 0.0139, 0.0139, 0.013], [0.0925, 0.0869, 0.0677, 0.0362, 0.03, 0.0249, 0.0206, 0.0194], [0.2004, 0.0889, 0.0785, 0.0693, 0.0476, 0.0395, 0.0327, 0.0271], [0.4409, 0.041, 0.0362, 0.0249, 0.0206, 0.011, 0.0104, 0.0097], [0.0852, 0.026, 0.0148, 0.0108, 0.0102, 0.0102, 0.009, 0.0084], [0.0418, 0.0288, 0.0254, 0.0224, 0.0154, 0.0128, 0.012, 0.012], [0.0249, 0.0234, 0.0182, 0.0171, 0.0161, 0.0142, 0.0133, 0.0118], [0.0344, 0.0268, 0.0222, 0.0153, 0.0153, 0.0143, 0.0098, 0.0098], [0.1717, 0.1109, 0.1042, 0.0247, 0.0124, 0.0075, 0.0067, 0.0063], [0.2408, 0.1069, 0.0572, 0.0347, 0.0106, 0.0099, 0.0064, 0.006], [0.2294, 0.1679, 0.1154, 0.0242, 0.0242, 0.0156, 0.0079, 0.0079], [0.3297, 0.2568, 0.1071, 0.0834, 0.0691, 0.0348, 0.0224, 0.0128], [0.2699, 0.2382, 0.1637, 0.1445, 0.0602, 0.0284, 0.0105, 0.0087], [0.3914, 0.2095, 0.144, 0.1121, 0.0284, 0.0266, 0.0134, 0.0059], [0.4216, 0.1757, 0.1551, 0.083, 0.0238, 0.021, 0.0144, 0.0064], [0.391, 0.163, 0.1192, 0.0364, 0.0235, 0.0221, 0.0207, 0.0195], [0.4685, 0.1521, 0.0494, 0.0409, 0.0281, 0.0248, 0.016, 0.0151], [0.364, 0.0763, 0.0558, 0.0408, 0.036, 0.0133, 0.0125, 0.008], [0.2891, 0.1283, 0.0416, 0.0253, 0.0237, 0.0185, 0.0127, 0.0105], [0.2289, 0.0842, 0.0273, 0.0273, 0.0156, 0.0137, 0.0114, 0.0083], [0.0826, 0.0643, 0.0568, 0.0324, 0.0324, 0.0163, 0.0153, 0.0127], [0.0848, 0.0583, 0.0454, 0.0376, 0.0376, 0.0275, 0.0243, 0.0201], [0.0948, 0.0477, 0.0477, 0.0477, 0.0349, 0.024, 0.0212, 0.0199], [0.0904, 0.0662, 0.0549, 0.0549, 0.0549, 0.0427, 0.0354, 0.0178], [0.1438, 0.1269, 0.112, 0.0679, 0.0529, 0.0439, 0.0235, 0.0183], [0.203, 0.1231, 0.1156, 0.1086, 0.0375, 0.0275, 0.0242, 0.0157], [0.6611, 0.2756, 0.0107, 0.0061, 0.0045, 0.0035, 0.0025, 0.0019], [0.7752, 0.173, 0.0142, 0.0052, 0.0036, 0.0034, 0.003, 0.0016], [0.8542, 0.131, 0.004, 0.0016, 0.0016, 0.0006, 0.0006, 0.0005], [0.9925, 0.0052, 0.0009, 0.0006, 0.0001, 0.0001, 0.0001, 0.0001], [0.9879, 0.0097, 0.0008, 0.0008, 0.0001, 0.0001, 0.0001, 0.0001], [0.6996, 0.1769, 0.0737, 0.0128, 0.0088, 0.0078, 0.0047, 0.0032], [0.6064, 0.2528, 0.0564, 0.0266, 0.0111, 0.0111, 0.0076, 0.0028], [0.6806, 0.1721, 0.0813, 0.016, 0.0125, 0.0067, 0.0049, 0.0043], [0.7473, 0.0788, 0.0695, 0.0613, 0.0256, 0.0024, 0.0014, 0.0013]], "ranks": {"Kotlin": [412, 224, 401, 39, 63, 7, 26, 47, 55, 29, 41, 14, 7, 5, 15, 2, 2, 2, 3, 5, 5, 3, 5, 4, 5, 1, 1, 14, 1, 3, 6, 6, 23, 1, 3, 1, 1, 1, 1, 1, 2, 3, 2, 3, 3, 5, 6, 10, 17, 24, 9, 21, 4, 4, 1, 2, 2, 2, 2, 15, 14, 77, 84]}}, {"pos": 497, "top": [[",", ".", " \u2013", "\u2013", " ", "\u00a0", ";", "["], ["\u2013", "\u2013and", ",", " \u2013", ".", " \u2013,", ".\u2013", "**\u2013"], ["\u2013", ",", " \u2013", ".", "\u2013and", ".\u2013", "[", ";"], ["\uff0d\uff0d", "aruhi", " Nues", " Fonse", "\u52a0\u62ff\u5927", "KANJI", "TRGL", " \u041a\u0440\u0430\u0441\u0438"], [",", "\u2013", "\u2013and", "\u2013\u2013", ".\u2013", ".", " ", " \u2013"], ["\u2013and", "\u2013", ",", "\u2013\u2013", ".\u2013", " **\u2013", "**\u2013", "   \n"], ["**!", "\u2013and", "**\u2013", " **\u2013", "   \n", "\u2013\u2013", "     \n", " \n"], ["\u2013and", "   \n", "**\u2013", " **\u2013", "**!", "     \n", "    \n", "\u2013\u2013"], ["\u2013and", " \n    \n", "   \n", "  \n    \n", "!.", "    \n", "     \n", " \n"], ["\u2013and", ",", "\u2013", "\u2013\u2013", "-up", "\u8033\u719f\u80fd\u8be6", "-down", "-back"], [",", "\u2013", "\u2013and", ".", " ", " \n", "\u2014but", " \u00ad"], [" **", " **>>", " **\u2013", " **+", " **\u300c", " '**", "\u4e94\u989c\u516d\u8272\u7684", " **'"], [" **>>", " **\u2013", "\u4e94\u989c\u516d\u8272\u7684", " Fortal", " **", " wildly", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\u8033\u719f\u80fd\u8be6"], ["\u4e94\u989c\u516d\u8272\u7684", " mostly", " **>>", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\u5c31\u8dd1", " Teixe", "\u8033\u719f\u80fd\u8be6", " wildly"], [" mostly", " back", " wildly", " heavily", " aggressively", " off", " just", " big"], [" wildly", " mostly", " incredibly", " aggressively", " hugely", " back", " heavily", " atop"], [" mostly", " wildly", " incredibly", " hugely", " outs", " heavily", " aggressively", " big"], [" wildly", " mostly", " incredibly", " hugely", " aggressively", " savvy", " outs", " heavily"], [" wildly", " incredibly", " hugely", " mostly", " aggressively", "-esque", " atop", " heavily"], [" wildly", " hugely", " mostly", " heavily", " incredibly", " aggressively", " famously", " across"], [" wildly", " hugely", " mostly", " heavily", " much", " across", " though", " just"], [" wildly", " hugely", " incredibly", " atop", " ;;^", " heavily", " mostly", " famously"], [" wildly", " heavily", " mostly", " hugely", " incredibly", " ``", " atop", " --"], [" mostly", " much", " heavily", " wildly", " --", " across", " largely", " hugely"], [" wildly", " hugely", " atop", " heavily", " mostly", " famously", " swiftly", " --"], [" wildly", " heavily", " atop", " mostly", " hugely", " famously", " aggressively", " incredibly"], [" heavily", " wildly", " mostly", " atop", " famously", " hugely", " aggressively", " largely"], [" heavily", " mostly", " much", " wildly", " largely", " --", " atop", " hugely"], [" heavily", " wildly", " mostly", " aggressively", " atop", " largely", " famously", " much"], [" heavily", " mostly", " wildly", " aggressively", " **", " faster", " harder", " \n  \n"], [" mostly", " heavily", " wildly", " aggressively", " often", " **", " ...", " much"], [" mostly", " heavily", " wildly", " much", " often", " many", " aggressively", " on"], [" mostly", " heavily", " much", " often", " largely", " on", " over", " typically"], [" mostly", " heavily", " famously", " typically", " largely", " aggressively", " deeply", " wildly"], [" heavily", " mostly", " famously", " largely", " typically", " notoriously", " aggressively", " deeply"], [" heavily", " mostly", " largely", " famously", "mostly", " primarily", " notoriously", " typically"], [" JVM", " heavily", " notoriously", " mostly", " largely", " famously", " typically", " incredibly"], [" heavily", " mostly", " largely", " inherently", " fundamentally", " JVM", " primarily", " notoriously"], [" heavily", " largely", " mostly", " JVM", " inherently", " fundamentally", " typically", " primarily"], [" JVM", " Java", "Java", "/java", "java", " JDK", "-java", " java"], [" JVM", " Java", "Java", "/java", "java", " JDK", "-java", " java"], [" JVM", " Java", "Java", "/java", "-java", " JDK", " runtime", " CPU"], [" JVM", " Java", "Java", "/java", " runtime", " JDK", "-java", " CPU"], [" JVM", " Java", " CPU", " atop", " via", "/java", " JDK", " runtime"], [" JVM", " atop", " Java", " via", " CPU", "-java", " JDK", " inherently"], [" JVM", " atop", " via", " CPU", " Java", " inherently", " mostly", " embedded"], [" JVM", " via", " either", " atop", " inherently", " CPU", " mostly", "\u4f9d\u6258"], [" either", "either", "\u8981\u4e48", "\u8981\u4e48\u662f", " EITHER", " Either", " \u0625\u0645\u0627", "Either"], [" either", "either", "\u8981\u4e48", "\u8981\u4e48\u662f", " \u0625\u0645\u0627", " EITHER", " Either", "Either"], [" either", "\u8981\u4e48", "either", "\u8981\u4e48\u662f", " Either", " \u0625\u0645\u0627", " EITHER", "Either"], ["\u8981\u4e48", " either", "\u8981\u4e48\u662f", "either", " \u0625\u0645\u0627", "Either", " EITHER", " Either"], [" either", "either", "\u8981\u4e48", "\u8981\u4e48\u662f", "Either", " \u0625\u0645\u0627", " Either", " EITHER"], [" either", "either", "\u8981\u4e48\u662f", "\u8981\u4e48", " \u0625\u0645\u0627", "Either", " Either", " EITHER"], [" either", "either", " JVM", " \u0625\u0645\u0627", "\u8981\u4e48", " atop", " EITHER", "\u8981\u4e48\u662f"], [" atop", " JVM", " Runtime", " either", "\u8981\u4e48", " runtime", " bytecode", "\u8981\u4e48\u662f"], [" JVM", " atop", " bytecode", " JIT", " Kotlin", " either", " Java", " JNI"], [" JVM", " atop", " Java", " JIT", " bytecode", " Kotlin", " JNI", "-java"], [" JVM", " VM", "VM", "Jvm", "vm", " JIT", " atop", ".vm"], [" JVM", " VM", "VM", " JIT", "Jvm", " atop", "vm", " Java"], [" JVM", " VM", "VM", " JIT", " atop", "vm", "\u865a\u62df\u673a", " bytecode"], [" JVM", " VM", " JIT", " on", "VM", " bytecode", " atop", " GC"], [" on", " JVM", " JIT", " VM", " atop", " bytecode", " garbage", "VM"], [" on", " JVM", " atop", " JIT", " VM", " garbage", " bytecode", " either"]], "p": [[0.4731, 0.4175, 0.0565, 0.0388, 0.0022, 0.0021, 0.0018, 0.001], [0.601, 0.1341, 0.1341, 0.0922, 0.0103, 0.0049, 0.0043, 0.0016], [0.7607, 0.1923, 0.023, 0.0123, 0.0085, 0.0019, 0.0004, 0.0003], [0.0132, 0.0058, 0.0055, 0.0035, 0.0033, 0.0033, 0.0026, 0.0024], [0.2768, 0.1577, 0.1154, 0.0352, 0.0201, 0.0147, 0.0037, 0.0035], [0.1909, 0.0514, 0.0228, 0.0157, 0.013, 0.0115, 0.0084, 0.0045], [0.0652, 0.0652, 0.0576, 0.0541, 0.0212, 0.0106, 0.0088, 0.0083], [0.1272, 0.0342, 0.0322, 0.0235, 0.0098, 0.0087, 0.0081, 0.0049], [0.0847, 0.0514, 0.0353, 0.0214, 0.0201, 0.0189, 0.0138, 0.0122], [0.0675, 0.0409, 0.0117, 0.0046, 0.0036, 0.0026, 0.0025, 0.002], [0.331, 0.0694, 0.0508, 0.0349, 0.0255, 0.0094, 0.0094, 0.0088], [0.0337, 0.0317, 0.008, 0.0075, 0.0075, 0.0071, 0.0066, 0.0055], [0.0243, 0.0074, 0.007, 0.0058, 0.0051, 0.004, 0.004, 0.0037], [0.0064, 0.0053, 0.0032, 0.003, 0.0027, 0.0025, 0.0025, 0.0024], [0.0978, 0.0132, 0.0124, 0.011, 0.0097, 0.0091, 0.0075, 0.0071], [0.0521, 0.0459, 0.0231, 0.0124, 0.0103, 0.009, 0.008, 0.0075], [0.0462, 0.0408, 0.036, 0.0132, 0.0103, 0.0103, 0.0091, 0.008], [0.0186, 0.0136, 0.0099, 0.0088, 0.0068, 0.0039, 0.0039, 0.0037], [0.0249, 0.0125, 0.0092, 0.0086, 0.0067, 0.0041, 0.0041, 0.0038], [0.0637, 0.0266, 0.0249, 0.0118, 0.0098, 0.0092, 0.0059, 0.0056], [0.0445, 0.0306, 0.0254, 0.0224, 0.021, 0.0136, 0.0128, 0.012], [0.0123, 0.0045, 0.004, 0.0033, 0.0031, 0.0029, 0.0027, 0.0026], [0.0303, 0.0152, 0.0126, 0.0126, 0.0092, 0.0082, 0.0077, 0.0077], [0.0325, 0.0306, 0.0224, 0.021, 0.0164, 0.0154, 0.0112, 0.0106], [0.018, 0.0132, 0.0103, 0.0103, 0.0085, 0.0048, 0.004, 0.004], [0.0228, 0.0122, 0.0115, 0.0101, 0.0079, 0.0051, 0.0031, 0.0029], [0.0242, 0.0242, 0.0228, 0.0189, 0.0079, 0.0069, 0.0065, 0.0045], [0.0433, 0.0406, 0.0204, 0.0192, 0.0124, 0.0116, 0.0097, 0.0075], [0.0714, 0.0359, 0.0337, 0.015, 0.0141, 0.0103, 0.0103, 0.0103], [0.0677, 0.0465, 0.0234, 0.0194, 0.0151, 0.0092, 0.0086, 0.0081], [0.0995, 0.0935, 0.0252, 0.0252, 0.0209, 0.0209, 0.0153, 0.0143], [0.1345, 0.0925, 0.0234, 0.022, 0.0206, 0.0161, 0.0118, 0.0118], [0.2343, 0.0715, 0.0317, 0.028, 0.0263, 0.017, 0.0159, 0.0132], [0.1539, 0.1199, 0.0343, 0.0251, 0.0236, 0.0222, 0.0196, 0.0184], [0.1719, 0.0524, 0.0493, 0.0281, 0.0233, 0.0219, 0.0219, 0.0181], [0.0786, 0.0575, 0.0421, 0.0211, 0.0199, 0.0187, 0.0165, 0.0137], [0.0489, 0.0431, 0.0316, 0.0279, 0.0279, 0.0217, 0.0124, 0.0116], [0.0436, 0.041, 0.0385, 0.0282, 0.0206, 0.016, 0.016, 0.0151], [0.0491, 0.0382, 0.0382, 0.0359, 0.0359, 0.0263, 0.0247, 0.0192], [0.4951, 0.1821, 0.086, 0.086, 0.0247, 0.014, 0.0124, 0.0071], [0.5737, 0.2392, 0.0685, 0.0367, 0.0093, 0.0082, 0.005, 0.0044], [0.7135, 0.1405, 0.0277, 0.0202, 0.0062, 0.0062, 0.0062, 0.0051], [0.7675, 0.063, 0.0205, 0.0109, 0.0066, 0.0059, 0.0059, 0.0059], [0.7057, 0.0398, 0.0114, 0.0114, 0.0069, 0.0065, 0.0065, 0.0065], [0.4673, 0.0594, 0.036, 0.017, 0.0103, 0.0097, 0.0086, 0.008], [0.3922, 0.0413, 0.0236, 0.0162, 0.0162, 0.0152, 0.0087, 0.0072], [0.2628, 0.0802, 0.0429, 0.0295, 0.019, 0.0139, 0.0123, 0.0115], [0.8789, 0.0496, 0.0265, 0.0125, 0.0076, 0.0076, 0.0052, 0.0046], [0.7999, 0.0657, 0.0511, 0.0451, 0.0166, 0.0089, 0.0048, 0.0037], [0.45, 0.1876, 0.1656, 0.1004, 0.0288, 0.0224, 0.0198, 0.0198], [0.2846, 0.2512, 0.1726, 0.1524, 0.0635, 0.0234, 0.0182, 0.0182], [0.422, 0.1993, 0.1552, 0.0831, 0.0393, 0.0393, 0.0393, 0.0127], [0.3856, 0.1821, 0.1105, 0.1105, 0.0522, 0.0406, 0.0406, 0.0316], [0.2691, 0.1271, 0.099, 0.0874, 0.0771, 0.0771, 0.053, 0.0468], [0.7041, 0.2286, 0.0089, 0.0078, 0.0039, 0.0039, 0.0031, 0.0027], [0.6461, 0.3458, 0.0018, 0.0008, 0.0006, 0.0005, 0.0004, 0.0003], [0.9919, 0.0046, 0.0008, 0.0005, 0.0005, 0.0005, 0.0003, 0.0001], [0.9909, 0.0067, 0.0019, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.9967, 0.0025, 0.0004, 0.0002, 0.0001, 0.0, 0.0, 0.0], [0.9756, 0.0179, 0.0031, 0.0009, 0.0009, 0.0003, 0.0002, 0.0002], [0.9557, 0.0289, 0.0057, 0.003, 0.0021, 0.0014, 0.0007, 0.0003], [0.6023, 0.2845, 0.056, 0.0234, 0.0063, 0.0032, 0.0019, 0.0017], [0.9746, 0.0139, 0.0029, 0.0027, 0.0011, 0.0006, 0.0004, 0.0003]], "ranks": {"Kotlin": [143691, 146731, 91289, 7221, 13288, 27491, 35160, 66507, 93903, 148667, 120034, 35289, 33531, 43781, 91542, 67720, 97735, 54054, 68313, 120032, 144257, 76968, 112402, 148153, 98273, 33196, 27642, 58913, 23994, 7810, 11666, 19013, 59010, 20349, 20774, 1854, 75, 126, 198, 57, 79, 120, 133, 220, 553, 820, 1716, 1534, 4005, 5613, 4582, 1777, 90, 85, 34, 5, 6, 12, 12, 14, 9, 16, 22]}}, {"pos": 498, "top": [[",", ".", "\u2013", ";", "\u2026..", " \u2013", ":", "\u200b"], [",", "\u2013", "\u2013and", ".", ";", " \u2013", "\u200b", ":"], [",", "\u2013", ".", ";", " \u2013", "\u2013and", "\u2026..", ":"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\ufffd\ufffd", "\ufffd\ufffd", " Geile", " addir", " Pubbl", " \u041a\u0440\u0430\u0441\u0438", " milfs"], [",", ".", ".@", "ed", "@", ":", ":@", "ess"], [",", "\u2026..", "ed", "odd", ":", "!:", "-back", " \u00a0"], ["\u00c3", "\u00e7on", ":`", "&R", "`t", "-ons", "ighted", "ishly"], ["nett", "\u00a7\u00c3", "ishly", "-ons", "-ish", "hardt", "sson", "\u00ading"], [",", "&nbsp", "\u00ading", "\u00c3", "  \n    \n", ".", ".....", "......"], [",", "-but", "\u00ading", " \u00ad", "-or", "\u00c3", ";", "&nbsp"], [",", "-but", "-or", " \u00ad", "&nbsp", ".", "\u00c3", "\\n"], [" vibes", " **\u2022", "unky", "nett", "uskan", "\u76ae\u9769\u57ce", "junk", " **>>"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " vibes", " veggies", "\u76ae\u9769\u57ce", " **\u300c", " **>>", "\u5e97\u94fa\u7ecf\u8425\u8005", "\u88f3"], [" vibes", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\u76ae\u9769\u57ce", "matchCondition", "\u7ad9\u5730\u94c1\u7ad9", " ;;^", "\u88f3", " Geile"], [" Philly", " vibes", " savvy", " mostly", " goodies", " cops", " vibe", " stuff"], [" vibes", " mostly", " veggies", " vibe", " kids", " big", " savvy", " tech"], [" vibes", " meds", " veggies", "-esque", " vibe", " savvy", " tech", " skinny"], [" vibes", "-esque", " Philly", "-lite", "\u5473\u513f", "-ish", "\u76ae\u9769\u57ce", "\u8fd9\u4e8b\u513f"], ["xeda", "nheim", "-esque", " Philly", "\u8fd9\u4e8b\u513f", " Geile", "\u76ae\u9769\u57ce", " ;;^"], ["\u76ae\u9769\u57ce", "\u8fd9\u4e8b\u513f", "\u5473\u513f", "xeda", " Philly", " gritty", "matchCondition", " MEDIATEK"], [" much", " myriad", "much", " vastly", " famously", " hugely", " largely", " folks"], [" ``", " **>>", " ;;^", " **\u2022", " -**", " **\u300c", " MEDIATEK", "ergia"], [" ``", " --", " ...", " ____", " ''", "\u2500\u2500", " ...\\", " famously"], [" ...", " ,", " --", " much", " just", " [...]", " -", " mostly"], [" ____", " ...", " ...\\", " --", "\u2500\u2500", " ``", " _____", " \ufffd"], [" JVM", " ____", " ...", " Java", " -**", " ...\\", "\u2500\u2500", " MEDIATEK"], [" JVM", " ``", " Java", " ____", " Android", " Unix", " JDK", " computers"], [" ,", " --", " mostly", " ...", " ``", " ____", " heavily", " much"], [" ...", " ____", " Java", " JVM", " Android", " ...\\", " heavily", " _____"], [" ____", " ...", " _____", " ______", " ___", " ...\\", " **", " __"], [" ...", " ____", " **", " _____", " ______", " ...\\", " ___", " ......"], [" ...", " -", " ____", " **", " ......", " ...\\", " [...]", " mostly"], [" mostly", " -", " \u2013", " traditional", " heavily", " much", " free", " power"], [" \u2013", "\u2011", "\u2014or", " mostly", " \u2014", " tech", " traditional", " typically"], ["\u2014or", "\u2011", " \u2013", " mostly", "\u2014and", "\u2014but", " tech", " typically"], [" \u2013", "\u2014or", "\u2014\u2014", "\u2011", "\u2013", " \u2014", " JVM", "\u2014and"], [" JVM", " Java", " Android", "Java", "\u2014or", " JDK", " Kotlin", "Android"], [" Android", " Java", " JVM", "Android", "Java", " Kotlin", " \u2013", "\u2014or"], [" Android", " Java", " JVM", " JDK", "Java", "Android", "\u2014or", " Kotlin"], [" Java", " JVM", "Java", " JDK", " Android", "/java", "java", "-java"], [" Java", " JVM", "Java", " Android", " JDK", "/java", " JAVA", "java"], [" JVM", " Java", " Android", "Java", " JDK", " JAVA", "/java", "-java"], [" JVM", " Java", " JDK", " Android", "Java", " JAVA", "/java", "-java"], [" JVM", " Java", " Android", " JDK", " Platform", " JAVA", "Java", "/java"], [" JVM", " Java", " JDK", " Android", "-java", " JAVA", "/java", "Java"], [" JVM", " Java", " JDK", "/java", " Android", " JAVA", " Platform", "-java"], [" JVM", " Java", " either", " JDK", "\u8981\u4e48", "either", " Either", " JAVA"], [" either", "either", "\u8981\u4e48", " Either", " JVM", " EITHER", " \u043b\u0438\u0431\u043e", "Either"], [" either", "either", "\u8981\u4e48", " \u043b\u0438\u0431\u043e", "\u8981\u4e48\u662f", " \u0625\u0645\u0627", " EITHER", " Either"], ["\u8981\u4e48", "either", " JVM", "\u8981\u4e48\u662f", " \u0625\u0645\u0627", " either", " EITHER", " \u043b\u0438\u0431\u043e"], [" JVM", " \u0625\u0645\u0627", "\u8981\u4e48", "\u8981\u4e48\u662f", "either", " EITHER", " either", " entweder"], [" JVM", "either", " \u0625\u0645\u0627", "\u8981\u4e48", " either", " EITHER", "\u8981\u4e48\u662f", " Either"], [" JVM", " Kotlin", " JDK", "(Android", " JNI", "-android", "either", " Android"], [" JVM", " Kotlin", " Android", " JNI", "(Android", "-android", " LLVM", " JDK"], [" JVM", " Kotlin", " Android", " JNI", "-android", " JDK", " Java", "(Android"], [" JVM", " Kotlin", " Android", " JNI", " Java", "-android", " JDK", "Jvm"], [" JVM", " Kotlin", " JNI", " Java", " Android", " JDK", "JNI", "Jvm"], [" JVM", " VM", "VM", " Kotlin", "Jvm", " JNI", "\u865a\u62df\u673a", " Java"], [" JVM", " VM", "VM", " Kotlin", "Jvm", " JNI", "\u865a\u62df\u673a", " Java"], [" JVM", " VM", " Kotlin", " ART", " Android", "Jvm", "VM", " JNI"], [" JVM", " ART", " VM", " Kotlin", " Android", " JNI", "ART", " LLVM"], [" JVM", " ART", " VM", " LLVM", "ART", " Kotlin", " JNI", " Dal"], [" ART", " JVM", " the", " Kotlin", " Dal", " Android", " LLVM", " JNI"]], "p": [[0.6036, 0.3661, 0.0081, 0.0067, 0.0022, 0.002, 0.0013, 0.0009], [0.1633, 0.0725, 0.0152, 0.0152, 0.0143, 0.0059, 0.0038, 0.0028], [0.8596, 0.0623, 0.0623, 0.0084, 0.0016, 0.0009, 0.0009, 0.0004], [0.0049, 0.0043, 0.004, 0.0036, 0.0036, 0.0032, 0.0032, 0.002], [0.2488, 0.008, 0.0043, 0.0043, 0.004, 0.004, 0.0029, 0.0029], [0.033, 0.0031, 0.0022, 0.002, 0.002, 0.0019, 0.0017, 0.0015], [0.0054, 0.0042, 0.004, 0.0037, 0.0035, 0.0033, 0.0031, 0.0029], [0.0061, 0.0057, 0.005, 0.005, 0.0045, 0.0033, 0.0031, 0.0029], [0.0202, 0.0168, 0.0123, 0.0102, 0.0102, 0.0096, 0.0079, 0.0074], [0.2798, 0.0115, 0.0102, 0.0084, 0.0055, 0.0055, 0.0035, 0.0031], [0.2561, 0.0287, 0.0238, 0.0197, 0.0164, 0.0144, 0.0106, 0.0099], [0.0038, 0.0032, 0.0028, 0.0025, 0.0023, 0.0018, 0.0018, 0.0016], [0.0072, 0.0064, 0.0034, 0.0034, 0.0032, 0.003, 0.0028, 0.0022], [0.0049, 0.0036, 0.0025, 0.0019, 0.0018, 0.0017, 0.0016, 0.0015], [0.0085, 0.0085, 0.0029, 0.0021, 0.0019, 0.0019, 0.0019, 0.0017], [0.0102, 0.0024, 0.0023, 0.0023, 0.0023, 0.0021, 0.0021, 0.002], [0.0087, 0.0036, 0.0032, 0.0028, 0.0024, 0.0024, 0.0022, 0.0021], [0.0029, 0.0024, 0.0023, 0.0021, 0.0021, 0.0021, 0.002, 0.0019], [0.004, 0.0029, 0.0028, 0.0028, 0.0026, 0.0024, 0.0018, 0.0017], [0.0025, 0.0025, 0.0024, 0.0022, 0.002, 0.002, 0.0018, 0.0017], [0.007, 0.0051, 0.0043, 0.0043, 0.0043, 0.0043, 0.004, 0.004], [0.0486, 0.0096, 0.0075, 0.007, 0.0051, 0.0042, 0.0042, 0.0035], [0.3799, 0.04, 0.0228, 0.0147, 0.013, 0.0042, 0.004, 0.0037], [0.5151, 0.0256, 0.0176, 0.0107, 0.0083, 0.0073, 0.0073, 0.0069], [0.0548, 0.0293, 0.0201, 0.0167, 0.0122, 0.0095, 0.0061, 0.0058], [0.0275, 0.0138, 0.013, 0.0074, 0.0065, 0.0058, 0.0048, 0.0042], [0.0341, 0.0182, 0.0125, 0.0104, 0.0067, 0.0046, 0.0041, 0.0041], [0.0304, 0.0196, 0.0144, 0.0119, 0.0099, 0.0099, 0.0099, 0.0064], [0.0425, 0.0352, 0.0156, 0.0084, 0.0079, 0.0074, 0.0069, 0.0061], [0.4825, 0.2011, 0.0422, 0.0396, 0.0308, 0.029, 0.0226, 0.0155], [0.6124, 0.1, 0.0368, 0.0153, 0.0127, 0.0112, 0.0105, 0.0068], [0.5682, 0.0118, 0.0118, 0.0111, 0.0072, 0.0072, 0.0067, 0.0063], [0.0736, 0.0538, 0.0198, 0.0136, 0.0128, 0.0128, 0.0128, 0.0106], [0.1085, 0.0746, 0.07, 0.0481, 0.0156, 0.0138, 0.0095, 0.0089], [0.1204, 0.0534, 0.0534, 0.0153, 0.0144, 0.0127, 0.0093, 0.0087], [0.2033, 0.1487, 0.0312, 0.0275, 0.0243, 0.0214, 0.0157, 0.0138], [0.3356, 0.2167, 0.1235, 0.0377, 0.0332, 0.0243, 0.0157, 0.0115], [0.4156, 0.1436, 0.1119, 0.0341, 0.0207, 0.0151, 0.0151, 0.0142], [0.3052, 0.3052, 0.2097, 0.0183, 0.0183, 0.0152, 0.0067, 0.0056], [0.5328, 0.3232, 0.0926, 0.0125, 0.0076, 0.0076, 0.0076, 0.0025], [0.562, 0.3008, 0.0761, 0.0247, 0.0085, 0.0049, 0.0043, 0.0031], [0.4883, 0.4309, 0.0189, 0.0167, 0.0115, 0.004, 0.004, 0.0024], [0.6, 0.2834, 0.0181, 0.016, 0.0125, 0.008, 0.0043, 0.0038], [0.6371, 0.1825, 0.0247, 0.0192, 0.0097, 0.008, 0.0062, 0.0049], [0.5815, 0.1888, 0.0372, 0.0155, 0.01, 0.0094, 0.0078, 0.0069], [0.5412, 0.1134, 0.0287, 0.0144, 0.0106, 0.0093, 0.0073, 0.0064], [0.4286, 0.0481, 0.0331, 0.0311, 0.0227, 0.0166, 0.0114, 0.0107], [0.4018, 0.1478, 0.1151, 0.1016, 0.033, 0.031, 0.0241, 0.02], [0.2935, 0.2017, 0.2017, 0.0742, 0.0655, 0.045, 0.0273, 0.0273], [0.1933, 0.1505, 0.0913, 0.0913, 0.0757, 0.0711, 0.0459, 0.0459], [0.2494, 0.081, 0.0761, 0.0592, 0.0523, 0.0247, 0.0192, 0.0181], [0.7313, 0.0364, 0.025, 0.0221, 0.0152, 0.0143, 0.0134, 0.0081], [0.9651, 0.0083, 0.0015, 0.0013, 0.0011, 0.0011, 0.0011, 0.001], [0.96, 0.0083, 0.0044, 0.0035, 0.0027, 0.0024, 0.0016, 0.0014], [0.9905, 0.0046, 0.0012, 0.0008, 0.0004, 0.0003, 0.0003, 0.0002], [0.9927, 0.0059, 0.0005, 0.0004, 0.0001, 0.0001, 0.0001, 0.0], [0.9954, 0.0025, 0.0013, 0.0003, 0.0002, 0.0001, 0.0001, 0.0], [0.9931, 0.0059, 0.0005, 0.0003, 0.0002, 0.0, 0.0, 0.0], [0.9914, 0.0076, 0.0004, 0.0004, 0.0001, 0.0, 0.0, 0.0], [0.9965, 0.0022, 0.0003, 0.0003, 0.0001, 0.0001, 0.0001, 0.0001], [0.9664, 0.0201, 0.0074, 0.0021, 0.0013, 0.0009, 0.0003, 0.0002], [0.5432, 0.3734, 0.0136, 0.0099, 0.0073, 0.0073, 0.0064, 0.0039], [0.5037, 0.3055, 0.0468, 0.0236, 0.0152, 0.0143, 0.0134, 0.0126]], "ranks": {"Kotlin": [223874, 181230, 171722, 33351, 65975, 111736, 132817, 166349, 146353, 184465, 132964, 53208, 28818, 23091, 45506, 13120, 17564, 11373, 22650, 35475, 27044, 2100, 2017, 13107, 700, 31, 20, 798, 159, 99, 275, 2212, 5853, 673, 770, 77, 7, 6, 8, 12, 15, 12, 12, 21, 24, 22, 51, 56, 120, 66, 53, 30, 2, 2, 2, 2, 2, 4, 3, 3, 4, 5, 4]}}, {"pos": 499, "top": [[".", ",", " \u2013", ";", "\u2013", " ", "\u00a0", "\u00a0\u00a0"], [".", ",", " \u2013", "\u2013", ";", " ", "\u2013and", ":"], [".", ",", "\u2013", " \u2013", ";", "\u2026.", "\u2026", "\u2026.."], [" milfs", "-------------</", "----------</", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " ;;^", " Blowjob", " Shemale", "TRGL"], [",", ".", " ", ".@", "\u00a0\u00a0", "  ", " Dem", ":"], [",", "\u00a0\u00a0", ".", "\u2026.", "\u2026..", "  ", " \u200b\u200b", "=\u201d"], ["  \n", "   \n", "  \n\n", "  \r\n", "  ", " ", "\u00a0\u00a0", "."], ["  \n", "   \n", "  ", ".", "  \r\n", ",", "   \r\n", "  \n\n"], [".", ",", "  \n", "  \n\n", "\u00a0", ",.", "...", "   \n"], [",", ".", " \u00ad", "\u00ad", ";", "\u2013", "\u00a0\u00a0", "\u00a0"], [",", ".", "-", "...", ";", " ", "\u00a0", "o"], ["-esque", " pricey", "\u4ea6\u6216\u662f", "\u88f3", "igan", "\u516c\u53f7", "\u5f00\u5f97", "er"], ["\u88f3", "-esque", "\u4ea6\u6216\u662f", " pricey", " impactful", "\u5e7f\u5927\u515a\u5458\u5e72\u90e8", "iphery", " savvy"], ["-esque", " savvy", " vibe", "\u88f3", " impactful", "\u4ea6\u6216\u662f", " albeit", " requisite"], [" requisite", "-esque", " savvy", " akin", " garner", " albeit", " arguably", " myriad"], ["-esque", " savvy", " arguably", " potentially", " akin", " myriad", " requisite", " folks"], [",", "-esque", "o", " myriad", " requisite", " akin", " potentially", " arguably"], ["-esque", " savvy", ",", " myriad", "o", "-ish", " requisite", " potentially"], ["-esque", " arguably", " myriad", " savvy", " requisite", " aggressively", " akin", "\u2014or"], ["-esque", " myriad", " arguably", " requisite", " swiftly", " largely", " ultimately", " aggressively"], ["<|endoftext|>", "  \n\n", " \n\n", "\n\n", "Though", " myriad", "   \n\n", " swiftly"], [" swiftly", "-esque", " myriad", " aggressively", " quicker", " harder", " heavily", " ''"], [" ''", "<|endoftext|>", " ,", " \u2015", " ``", " much", " heavily", " ultimately"], ["<|endoftext|>", " ,", " ...", " much", " \u2013", " [...]", " \u2014", " more"], [" \n\n", "  \n\n", "   \n\n", " \u00ad", "\ufffd", " \u2015", " [...]", " \u2014"], [" ____", "  \n\n", " ___", " \n\n", " ______", " ________", " __", " _____"], [" __", " ___", " ____", " ______", " ________", " _____", " @", " \n\n"], [" \n\n", "\n\n", " __", " ___", " ____", " ______", " @", " ,"], [" \n\n", " ____", " ___", " __", " ______", " ________", " _____", "\n\n"], [" ____", " ___", " ______", " __", "____", " _____", " ...", " ________"], [" ...", " ___", " ____", " __", " ______", " **", " \n\n", " _____"], [" ...", " [...]", " ______", " \u2026", " ____", " ___", " _____", " __"], [" \u2013", " /", " ,", " \u2014", " many", " mostly", " -", " ."], [" workflows", " \u2013", "\u2011", " tech", " \u2014", " [\u2026]", "\ufffd", " \u2026"], [" workflows", " tech", "\u2011", " [\u2026]", "[\u2026]", " multit", "\u2026**", "\u2014but"], [" [\u2026]", "\u2026\u2026", " \u2026", "[\u2026]", "\u2011", "\u200b", "\u2026*", " (\u2026)"], [" Kotlin", " [\u2026]", " Android", "[\u2026]", "\u2026\u2026", " \u200b\u200b", "\u200b", " (\u2026)"], [" Kotlin", " Android", " [\u2026]", "\u2011", "Android", "\u200b", " kotlin", "\ufffd"], [" [\u2026]", " Kotlin", " Android", "\u2011", " asynchronous", " (\u2026)", "[\u2026]", " Async"], [" [\u2026]", "[\u2026]", " (\u2026)", " [...]", " Kotlin", "\u2026\u2026", "\u2026*", "\u2026\u201d"], [" asynchronous", " [\u2026]", " Async", "\u5f02\u6b65", "Async", "async", " async", " Kotlin"], [" asynchronous", " Async", " workflows", "\u5f02\u6b65", " Kotlin", " asynchronously", " async", "\u591a\u7ebf\u7a0b"], [" asynchronous", " workflows", " Async", " Kotlin", " Workflow", " async", " asynchronously", "\u5f02\u6b65"], [" workflows", " Async", " asynchronous", " Workflow", " Kotlin", " async", " workflow", "Async"], [" workflows", " Async", " asynchronous", " async", " Kotlin", " workflow", " Workflow", "\u591a\u7ebf\u7a0b"], [" workflows", " Async", " asynchronous", " async", " Kotlin", " workflow", " Workflow", " Threads"], [" Async", " workflows", " asynchronous", " Workflow", " async", " workflow", " Kotlin", " Agile"], [" Async", " workflows", " Workflow", " Kotlin", " async", " asynchronous", "\\u", " Tasks"], [" (**", " Async", " (\\", " Kotlin", "\\u", ";**", " **", " workflows"], [" (**", "(Android", " (\\", "/Linux", " Android", " Kotlin", " (~", " JVM"], [" JVM", "(Android", " (**", "(iOS", ".*(", " (${", ";**", " Android"], [" JVM", "(Android", " JDK", " Android", " Runtime", " Kotlin", "(iOS", "-runtime"], [" JVM", " Kotlin", " Android", "(Android", "-android", " JDK", " Java", " LLVM"], [" JVM", " Android", " Kotlin", "(Android", "-android", " JNI", "/android", " JDK"], [" JVM", " Android", " Kotlin", " JDK", " Java", " Runtime", " JNI", "(Android"], [" JVM", " Kotlin", " Android", " JNI", " JDK", " Java", "(Android", "-android"], [" JVM", " Android", " Kotlin", " JNI", " JDK", " Java", "(Android", "Android"], [" JVM", " VM", "VM", "Jvm", " Kotlin", "\u865a\u62df\u673a", " JDK", "vm"], [" JVM", " VM", "VM", " Kotlin", "Jvm", " JIT", " Android", " ART"], [" JVM", " VM", " Dal", " Android", "Jvm", " ART", " Kotlin", "VM"], [" JVM", " VM", " ART", " Android", " Kotlin", " Dal", " JIT", " JDK"], [" JVM", " ART", " VM", " Dal", " JIT", " Android", " DAL", " Kotlin"], [" JVM", " ART", " Dal", " Android", " Kotlin", " VM", " JIT", " DAL"]], "p": [[0.7939, 0.2007, 0.002, 0.0011, 0.0011, 0.0003, 0.0002, 0.0002], [0.3103, 0.1882, 0.1768, 0.1073, 0.012, 0.0044, 0.0034, 0.0016], [0.529, 0.3636, 0.0811, 0.0205, 0.0017, 0.001, 0.0009, 0.0006], [0.0113, 0.0064, 0.005, 0.0047, 0.0032, 0.0029, 0.0025, 0.0024], [0.1014, 0.0615, 0.0146, 0.0073, 0.0057, 0.0037, 0.0035, 0.0031], [0.0382, 0.0297, 0.0204, 0.0075, 0.0052, 0.0049, 0.0036, 0.0029], [0.8179, 0.0592, 0.017, 0.017, 0.0097, 0.0059, 0.0046, 0.0029], [0.419, 0.2705, 0.0775, 0.0604, 0.0344, 0.0135, 0.0053, 0.0044], [0.8408, 0.1004, 0.012, 0.0068, 0.006, 0.0047, 0.003, 0.0016], [0.8533, 0.0189, 0.0089, 0.004, 0.0037, 0.0029, 0.0029, 0.0024], [0.4818, 0.4818, 0.0088, 0.0029, 0.0027, 0.0024, 0.0018, 0.0014], [0.0067, 0.003, 0.0019, 0.0018, 0.0018, 0.0018, 0.0017, 0.0016], [0.0073, 0.006, 0.005, 0.0024, 0.0024, 0.0021, 0.002, 0.002], [0.0392, 0.005, 0.0044, 0.0044, 0.0041, 0.0039, 0.0036, 0.0036], [0.0313, 0.0244, 0.0131, 0.0131, 0.0102, 0.0084, 0.0062, 0.0062], [0.0275, 0.0147, 0.0089, 0.0084, 0.0084, 0.0061, 0.0051, 0.004], [0.0563, 0.0412, 0.0363, 0.0234, 0.0134, 0.0118, 0.0104, 0.0098], [0.0926, 0.0086, 0.0052, 0.0046, 0.0036, 0.0032, 0.0026, 0.0026], [0.0661, 0.0108, 0.0101, 0.007, 0.0048, 0.0031, 0.0027, 0.0024], [0.0146, 0.0146, 0.0078, 0.0054, 0.005, 0.0045, 0.0045, 0.0045], [0.7869, 0.0127, 0.0112, 0.0025, 0.0022, 0.0021, 0.0021, 0.0016], [0.004, 0.0033, 0.0028, 0.0026, 0.0023, 0.0018, 0.0016, 0.0015], [0.0123, 0.0123, 0.0096, 0.0096, 0.009, 0.0085, 0.0075, 0.0062], [0.2268, 0.0327, 0.01, 0.0094, 0.0083, 0.0078, 0.0057, 0.0057], [0.1452, 0.0827, 0.0223, 0.0163, 0.0153, 0.0112, 0.0112, 0.0112], [0.1344, 0.1047, 0.0983, 0.0924, 0.0868, 0.0676, 0.0635, 0.0385], [0.1928, 0.1811, 0.1325, 0.0488, 0.0488, 0.0296, 0.0261, 0.0191], [0.2422, 0.1469, 0.0837, 0.0508, 0.0371, 0.0255, 0.024, 0.024], [0.1512, 0.1253, 0.1106, 0.1106, 0.1039, 0.0592, 0.0298, 0.0232], [0.3308, 0.2006, 0.1771, 0.0738, 0.0507, 0.0448, 0.0395, 0.0349], [0.2441, 0.1481, 0.1307, 0.1018, 0.0898, 0.0424, 0.0399, 0.0352], [0.6307, 0.0802, 0.0277, 0.0277, 0.0245, 0.019, 0.0131, 0.0102], [0.0589, 0.0315, 0.0261, 0.0217, 0.0217, 0.0158, 0.0123, 0.0123], [0.0769, 0.0467, 0.0467, 0.0412, 0.0235, 0.0111, 0.0104, 0.0092], [0.087, 0.0363, 0.0265, 0.0182, 0.0133, 0.0118, 0.0104, 0.0092], [0.225, 0.0881, 0.0645, 0.0472, 0.0269, 0.0269, 0.0237, 0.0223], [0.2538, 0.1976, 0.05, 0.0343, 0.0208, 0.0196, 0.0196, 0.0184], [0.4877, 0.1487, 0.0275, 0.0275, 0.0138, 0.013, 0.0115, 0.0089], [0.2019, 0.1897, 0.115, 0.0373, 0.033, 0.0273, 0.0257, 0.0241], [0.5756, 0.0732, 0.0472, 0.0325, 0.0253, 0.0163, 0.0153, 0.0144], [0.165, 0.0883, 0.0688, 0.057, 0.0503, 0.0417, 0.0305, 0.0269], [0.2695, 0.0822, 0.0531, 0.044, 0.0413, 0.0343, 0.0302, 0.0284], [0.2212, 0.1261, 0.1045, 0.0409, 0.0281, 0.0281, 0.0248, 0.0219], [0.1392, 0.1018, 0.0844, 0.0399, 0.0375, 0.0227, 0.0166, 0.0156], [0.1783, 0.0954, 0.0544, 0.033, 0.0257, 0.0257, 0.0227, 0.0121], [0.1002, 0.078, 0.0346, 0.0238, 0.0164, 0.0144, 0.0136, 0.0093], [0.1123, 0.0822, 0.0468, 0.0195, 0.0183, 0.0143, 0.0134, 0.0111], [0.1173, 0.0669, 0.014, 0.014, 0.0132, 0.0132, 0.0124, 0.009], [0.0829, 0.0503, 0.0253, 0.0119, 0.0112, 0.0112, 0.0077, 0.006], [0.0645, 0.0252, 0.0252, 0.0223, 0.0209, 0.0153, 0.0112, 0.0099], [0.095, 0.0838, 0.0838, 0.0396, 0.0187, 0.0176, 0.0121, 0.0113], [0.776, 0.0134, 0.0104, 0.0098, 0.0063, 0.0043, 0.0036, 0.0034], [0.9307, 0.0219, 0.0193, 0.0049, 0.0026, 0.0025, 0.0009, 0.0007], [0.9126, 0.0515, 0.0115, 0.0054, 0.0033, 0.0009, 0.0008, 0.0008], [0.9938, 0.0025, 0.0019, 0.0003, 0.0002, 0.0002, 0.0002, 0.0002], [0.9972, 0.0017, 0.0008, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9978, 0.0012, 0.0006, 0.0003, 0.0001, 0.0001, 0.0, 0.0], [0.9917, 0.0076, 0.0005, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9955, 0.0041, 0.0002, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9985, 0.001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0], [0.9968, 0.0015, 0.0009, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001], [0.9528, 0.0288, 0.0037, 0.0027, 0.0021, 0.0016, 0.0012, 0.0008], [0.9208, 0.0405, 0.0116, 0.009, 0.0031, 0.0029, 0.0018, 0.0017]], "ranks": {"Kotlin": [207682, 187884, 162903, 13673, 30665, 59902, 158337, 190556, 199771, 225478, 178875, 126804, 65255, 118158, 189158, 97375, 160248, 80975, 133389, 163435, 111320, 1311, 2822, 15787, 972, 128, 61, 1300, 127, 97, 295, 672, 1319, 12, 11, 32, 1, 1, 2, 5, 8, 5, 4, 5, 5, 5, 7, 3, 4, 6, 11, 6, 2, 3, 3, 2, 3, 5, 4, 7, 5, 8, 5]}}, {"pos": 500, "top": [["\\n", " *@", "@\"", "\\\"", ":\\\"", " *\\", " \u2013", "*\\"], [" *\\", ":\\\"", " *@", " *\u2013", " \\\"\"", "\\\"\\", " \\\"", "\\\""], [" \u2013", " *\u2013", " *\\", " \u2013**", "\u2013\u2013", "  \n\n", ":\\\"", "\\\\."], [" ``", " ``(", "``", " \\\"\"", " \\\"{", " \\\"$", " \\\"%", " *\\"], [" *\\", " *@", " \\\"$", " \\\"", " \\\"\"", " \\\"%", "\\\"\\", " *\u201e"], [" JVM", " *\\", " *@", " \\\"$", ":\\\"", " @_", "\\n", "\\\"\\"], [" ~~", " ____", " *@", ".\\\"", "\\n", " `\"", " *\\", ",\\\""], [".\\\"", " ~~", " `\"", ",\\\"", " *@", "\\n", " `'", " \\\"\""], [" `\"", ".\\\"", ".", " [`", "\\.", " *@", " `'", ",\\\""], [",", "\\.", ".", ".\\", "\\n", "\u2013\u2013", ".\\\"", ",\\\""], ["\\n", ".\\\"", ".", "...", ".\\", "\\.", ",\\\"", "...\\"], [" JVM", " `'", " ``", " ____", ".\\\"", " ~~", ",\\\"", " \\\"$"], [" JVM", "\u2013\u2013", " `'", " *\u201e", ".\\\"", " *\u2013", " ~~", ",\\\""], [" JVM", "\u2013\u2013", ".\\\"", "iace", " `'", " \u2013", ",\\\"", " VM"], ["\u2013\u2013", " JVM", " \u2013", "i", " ostensibly", "\\'", " largely", "..."], [" JVM", "\u2013\u2013", "i", "-esque", " largely", "s", " ostensibly", " arguably"], [" JVM", "s", "\u2013\u2013", "i", ",", "...", "-esque", " largely"], [" JVM", "...", "...\\", "\u2013\u2013", ".\\\"", ".`", "[^", "-esque"], [" JVM", "\u2013\u2013", " \\''", "[^", "\u7b60", "-esque", "\\xe", "iace"], ["\u2013\u2013", " JVM", " \\''", " `'", " [`", " ~~", "\\xe", " vastly"], ["<|endoftext|>", "  \n\n", "\u2013\u2013", " JVM", "   \n\n", " \n  \n", "[^", " [["], [" JVM", " ``", " *__", " `'", " ____", " '\\\"", " ___", " '`"], [" ``", " JVM", " ,", " `'", " ''", " ____", " [[", "\u2013\u2013"], [" ,", "<|endoftext|>", " .", " `", " ``", " JVM", " [[", " \u2013"], [" JVM", " __", " ____", " ___", "  \n\n", " ``", " [[", " \r\n \r\n"], [" JVM", " Java", " ____", " __", " ___", " *__", ".java", "/java"], [" JVM", " Java", " ,", " ``", " __", " java", " `", " JDK"], [" ,", " JVM", " ``", "\n\n", " Java", " --", " `", " ^"], [" JVM", " Java", " __", " ___", " ____", " ,", " ...\\", ".__"], [" JVM", " ___", " ____", " __", " ______", " Java", ".__", " _____"], [" JVM", " __", " ___", " ____", " .", " Java", " ______", ".__"], [" .", " ...", " JVM", " ,", " ____", " Java", " __", " ___"], [" .", " ,", " and", " \u2013", " (", " or", " JVM", " as"], [" \u2013", " JVM", " Java", "\u2013", " and", " .", " or", " ,"], [" JVM", " \u2013", " Java", "/", "/J", "/java", " or", "\u2014or"], [" JVM", " \u2013", " Java", "\u2014or", "/", " (", " or", "\u2013"], [" JVM", " Java", "/java", " \u2013", "\u2014or", " JDK", "Java", "/"], [" JVM", " Java", " \u2013", "/java", "\u2014or", " JDK", " (", "Java"], [" JVM", " Java", " (", " \u2013", " JDK", "/java", " /", " or"], [" JVM", " Java", "Java", "/java", " JDK", " java", " JAVA", "(java"], [" JVM", " Java", "Java", "/java", " JDK", " JAVA", " java", " Android"], [" JVM", " Java", "/java", "Java", " JDK", " JAVA", " java", " Android"], [" JVM", " Java", "/java", "Java", " JDK", " JAVA", " java", " Android"], [" JVM", " Java", "/java", " JDK", "Java", " JAVA", " java", " Android"], [" JVM", " Java", " JDK", "/java", "Java", " java", " JAVA", " Android"], [" JVM", " Java", "/", " /", "/java", " or", " JDK", "/J"], [" JVM", " or", "/", " /", " Java", "/J", "/java", " ("], [" or", " (", "/", " JVM", " (~", " /", "(or", " (`"], [" (", " or", "/", " (~", "\u2014or", "/G", "/J", " /"], [" (", " or", " (~", "/", "/G", "/J", " JVM", "/M"], [" (", "\uff08", " (~", " *(", "/J", " (/", " (`", " (**"], [" (", "\uff08", " (/", "/J", " (`", " *(", " (~", " (**"], [" (", "\uff08", " (**", "(Android", " (~", " Android", " (/", " (`"], [" (", " Android", "(Android", "\uff08", " (**", " (~", "-android", "Android"], [" (", " Android", "(Android", "\uff08", " JVM", " (**", "Android", "-android"], [" Android", " (", "Android", "(Android", "/android", "-android", " JVM", " android"], [" Android", "Android", "(Android", "/android", "-android", " android", " JVM", "android"], [" Android", "Android", " JVM", "(Android", "-android", "/android", " android", " ("], [" Android", "Android", " JVM", "(Android", " (", "-android", "/android", " android"], [" Android", "Android", "(Android", " (", " android", "-android", "/android", "android"], [" Android", " (", "Android", "(Android", " android", "/android", "-android", "_android"], [" (", " Android", "Android", "(Android", " android", "/android", "-android", ".android"], [" (", " Android", "/", "/K", "/D", "(Android", "Android", " ART"]], "p": [[0.0552, 0.0458, 0.0335, 0.0203, 0.0179, 0.0168, 0.0158, 0.014], [0.3083, 0.0779, 0.0688, 0.057, 0.0536, 0.0392, 0.0392, 0.0223], [0.544, 0.0736, 0.0447, 0.0447, 0.0394, 0.037, 0.0175, 0.012], [0.4105, 0.1711, 0.0713, 0.0556, 0.0337, 0.0317, 0.0317, 0.0247], [0.1776, 0.1383, 0.1383, 0.0653, 0.0614, 0.0422, 0.029, 0.024], [0.1169, 0.0755, 0.0709, 0.0626, 0.0315, 0.0296, 0.0203, 0.0191], [0.118, 0.0434, 0.0408, 0.0338, 0.0318, 0.028, 0.0263, 0.0247], [0.0725, 0.053, 0.053, 0.0498, 0.044, 0.0388, 0.0302, 0.0302], [0.0596, 0.0596, 0.0436, 0.034, 0.034, 0.0319, 0.03, 0.0265], [0.1634, 0.0772, 0.0565, 0.0413, 0.0413, 0.0388, 0.0388, 0.0342], [0.1194, 0.1054, 0.093, 0.0724, 0.0639, 0.0468, 0.0413, 0.0183], [0.0992, 0.0565, 0.0414, 0.0322, 0.0236, 0.0221, 0.0195, 0.0184], [0.1345, 0.0362, 0.0182, 0.0133, 0.0097, 0.0081, 0.0076, 0.0076], [0.1611, 0.0977, 0.0066, 0.0055, 0.0052, 0.0046, 0.0043, 0.004], [0.0314, 0.0261, 0.0139, 0.0096, 0.0085, 0.0075, 0.007, 0.0066], [0.019, 0.0139, 0.0131, 0.0096, 0.0084, 0.0079, 0.0075, 0.007], [0.0319, 0.0282, 0.0265, 0.0265, 0.0206, 0.0182, 0.0151, 0.0071], [0.1217, 0.0507, 0.0421, 0.0165, 0.0113, 0.0094, 0.0083, 0.0083], [0.0536, 0.0269, 0.0077, 0.0068, 0.0056, 0.0053, 0.005, 0.0047], [0.0391, 0.0269, 0.0153, 0.0093, 0.0077, 0.0053, 0.0053, 0.0047], [0.0359, 0.0316, 0.0159, 0.0097, 0.008, 0.0062, 0.0062, 0.0059], [0.1009, 0.089, 0.0308, 0.0199, 0.0145, 0.0145, 0.0106, 0.0094], [0.0974, 0.0432, 0.0132, 0.0124, 0.0096, 0.0085, 0.0085, 0.0085], [0.1239, 0.0852, 0.0355, 0.0102, 0.0102, 0.007, 0.0058, 0.0054], [0.1547, 0.0416, 0.0391, 0.0209, 0.0163, 0.0144, 0.0112, 0.0087], [0.7597, 0.0378, 0.0123, 0.0108, 0.0108, 0.0051, 0.0042, 0.004], [0.6167, 0.065, 0.0211, 0.0186, 0.005, 0.0047, 0.0042, 0.0039], [0.1263, 0.0437, 0.0265, 0.0249, 0.0249, 0.022, 0.022, 0.0133], [0.5895, 0.0661, 0.0484, 0.0484, 0.0354, 0.009, 0.007, 0.0054], [0.3054, 0.2099, 0.1853, 0.1273, 0.0236, 0.0183, 0.0152, 0.0105], [0.3378, 0.1243, 0.1243, 0.1097, 0.0429, 0.0277, 0.0203, 0.0123], [0.2434, 0.115, 0.0655, 0.0479, 0.0273, 0.0273, 0.0213, 0.02], [0.2763, 0.1676, 0.048, 0.031, 0.0114, 0.0089, 0.0065, 0.0065], [0.3222, 0.1114, 0.03, 0.0248, 0.016, 0.0104, 0.0104, 0.0081], [0.3599, 0.043, 0.0261, 0.0216, 0.0168, 0.0149, 0.014, 0.0116], [0.3482, 0.2112, 0.0367, 0.0324, 0.0286, 0.0286, 0.0223, 0.0196], [0.816, 0.0591, 0.0132, 0.0132, 0.0085, 0.0071, 0.0062, 0.0049], [0.8233, 0.0526, 0.0194, 0.0086, 0.0067, 0.0063, 0.0052, 0.0041], [0.8019, 0.0746, 0.0311, 0.0114, 0.0074, 0.0074, 0.0065, 0.0058], [0.8587, 0.1026, 0.0122, 0.0095, 0.0045, 0.0027, 0.0017, 0.0011], [0.836, 0.1282, 0.0135, 0.0082, 0.0034, 0.0025, 0.0019, 0.001], [0.9076, 0.0745, 0.0054, 0.0042, 0.0029, 0.0014, 0.0012, 0.0005], [0.9093, 0.0659, 0.0061, 0.0061, 0.0048, 0.002, 0.0015, 0.0008], [0.8997, 0.0652, 0.0069, 0.0069, 0.0037, 0.003, 0.0022, 0.002], [0.8832, 0.0725, 0.0111, 0.0072, 0.0036, 0.003, 0.0028, 0.0017], [0.7889, 0.0445, 0.027, 0.0238, 0.0238, 0.0164, 0.0093, 0.0077], [0.5586, 0.0971, 0.0756, 0.0667, 0.0231, 0.0203, 0.0169, 0.0169], [0.5162, 0.2438, 0.1152, 0.0291, 0.0121, 0.0095, 0.0074, 0.0057], [0.6241, 0.2026, 0.0512, 0.0147, 0.0101, 0.0101, 0.0089, 0.0054], [0.9526, 0.0064, 0.005, 0.005, 0.003, 0.0027, 0.0021, 0.0016], [0.9985, 0.0009, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.997, 0.001, 0.0003, 0.0003, 0.0001, 0.0001, 0.0001, 0.0001], [0.9937, 0.0017, 0.0006, 0.0005, 0.0005, 0.0005, 0.0004, 0.0003], [0.9801, 0.0066, 0.0028, 0.0024, 0.0015, 0.0011, 0.0009, 0.0006], [0.9865, 0.0052, 0.0028, 0.0024, 0.0006, 0.0005, 0.0005, 0.0002], [0.7888, 0.0647, 0.0571, 0.0347, 0.0238, 0.0164, 0.0053, 0.0025], [0.934, 0.041, 0.0118, 0.0043, 0.0026, 0.0023, 0.0016, 0.001], [0.8778, 0.0561, 0.0437, 0.011, 0.0036, 0.0025, 0.0015, 0.001], [0.8517, 0.0699, 0.0481, 0.0138, 0.0051, 0.0035, 0.0027, 0.0015], [0.9545, 0.0327, 0.0027, 0.0027, 0.0024, 0.0021, 0.0014, 0.0004], [0.8823, 0.0821, 0.0235, 0.0046, 0.0028, 0.0013, 0.0012, 0.0007], [0.6588, 0.3112, 0.0137, 0.005, 0.0021, 0.0021, 0.0016, 0.0007], [0.9861, 0.0075, 0.0017, 0.0013, 0.0005, 0.0004, 0.0003, 0.0002]], "ranks": {"Kotlin": [2159, 6559, 4230, 1111, 935, 823, 1980, 4770, 7283, 8981, 6542, 2143, 1169, 1813, 13150, 10655, 9698, 2665, 9479, 20110, 24564, 4446, 4991, 13221, 2253, 392, 372, 2730, 287, 208, 344, 1215, 4972, 928, 720, 287, 69, 58, 72, 38, 39, 37, 31, 35, 50, 139, 237, 335, 591, 871, 827, 641, 180, 116, 66, 18, 17, 10, 9, 13, 14, 19, 27]}}, {"pos": 501, "top": [[" \u2013", ".", ",", "\u2013", "s", ";", "y", "o"], [" \u2013", "\u2013", "\u2013and", "s", "\u2013\u2013", "sWith", "\u2011", ","], ["\u2013", ",", " \u2013", ".\u2013", ".", "\u2013and", "\u2026", ";"], [" milfs", "\uff0a\uff0a\uff0a\uff0a", "eless", " Shemale", " Blowjob", " cumshot", "auff", "enzi"], ["ed", "e", "s", "auf", "sWith", "es", "\u064a\u062f\u064a", "ingly"], ["sWith", "auf", "\u2026..", "kits", "\u064a\u062f\u064a", " \u200b\u200b", "aus", "\u0438\u0431"], ["s", "\u2026\u2026", "\u3002", "\uff1a", "\uff08", "\uff0c", ".\u201d", "\u5728"], ["s", "i\u010d", " \u200b\u200b", "\u2026..", "sWith", "crap", "ually", "sud"], [" \u200b\u200b", ".", ".\u201d", " [\u2026]", ".\u201c", ",", "\u2026..", "s"], [",", "s", "\u2013and", "\u2013", ".\u2013", "\u2013\u2013", "\u2026but", "i\u010d"], [",", ".", "s", "o", "\u2026", "...", " [\u2026]", "d"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " veggies", "i\u010d", "uably", "schuss", "icana", "ographics", "iverse"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " veggies", "schuss", "i\u010d", "erator", "ographics", "-centric", "iest"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " veggies", "-esque", "i\u010d", " Fortal", "-ish", " milfs", " pornstar"], [" mostly", " arguably", " albeit", "-esque", "mostly", " largely", " incredibly", " though"], [" arguably", "-esque", " incredibly", " veggies", " influencers", " impactful", " mostly", " anyways"], ["-esque", " mostly", " arguably", "s", "-ish", " incredibly", " veggies", " folks"], ["-esque", " arguably", "-ish", " mostly", "mostly", " albeit", "-centric", " veggies"], [" arguably", " albeit", " mostly", "-esque", " famously", " largely", " typically", " akin"], [" arguably", " albeit", " famously", "-esque", "\u672c\u5c31", " largely", " mostly", " notably"], [" arguably", " though", " notably", " famously", " largely", " typically", " mostly", " myriad"], [" ;;^", " arguably", " MEDIAM", " Fortal", " Catalu", "nheim", "\u5f88\u591a\u4e1c\u897f", " Nuest"], [" arguably", " ;;^", " notably", " ``", " famously", " mostly", " --", " largely"], [" arguably", " notably", " mostly", " largely", " though", " --", " ,", " typically"], [" arguably", " notably", " though", " famously", " hugely", " --", " largely", " mostly"], [" ;;^", " arguably", " famously", " +:+", " notably", " MEDIAM", " Fortal", " MEDIATEK"], [" arguably", " notably", " famously", " mostly", " largely", " typically", " heavily", " ultimately"], ["\n\n", " arguably", " notably", " ,", " mostly", " largely", " though", " typically"], [" arguably", " famously", " typically", " mostly", " largely", " ,", " heavily", " notably"], [" ,", " mostly", " ____", " arguably", " typically", " often", " largely", " **"], [" ,", " often", " mostly", " typically", " arguably", " largely", " modern", " complex"], [" ,", " mostly", " often", " or", " even", " typically", " heavily", " modern"], [" or", " mostly", " often", " typically", " arguably", " largely", " ,", " even"], [" arguably", " typically", " mostly", " or", " largely", " technically", " primarily", " traditionally"], [" arguably", " or", " typically", " mostly", " technically", " largely", " unless", " famously"], [" or", "\u2014or", " \u2013", " typically", " mostly", " arguably", " unless", " technically"], [" or", " Android", "\u2014or", " arguably", " unless", " technically", " typically", " JVM"], [" Android", " or", " unless", "\u2014or", " technically", "\u6216\u975e", " arguably", " typically"], [" Android", " or", " technically", "\u2014or", " JVM", "Android", " unless", " typically"], [" Android", " Java", "Android", " JVM", "Java", " android", "android", "-android"], [" Android", " Java", "Android", " JVM", " android", "(Android", "Java", "-android"], [" Android", " Java", "Android", " JVM", " android", "-android", "(Android", "/android"], [" Android", " Java", "Android", "-android", " android", " JVM", "(Android", "/android"], [" Android", " Java", "Android", "-android", " JVM", " android", "(Android", " iOS"], [" Android", " Java", "Android", "-android", " JVM", " android", " via", " iOS"], [" Android", " Java", " via", "-android", " JVM", " android", " iOS", " domestically"], [" Android", " via", " Java", "-android", "\u6216\u901a\u8fc7", " JVM", "/android", "via"], [" Android", " via", "\u6216\u901a\u8fc7", " Java", "via", "-android", " JVM", "/or"], [" via", " Android", "\u6216\u901a\u8fc7", "-android", "/android", "via", "/OR", "/java"], [" Android", " via", "-android", "/android", "(Android", " JVM", "\u6216\u901a\u8fc7", "/java"], [" Android", " JVM", "-android", " via", "(Android", " Java", "/java", "/android"], [" Android", "-android", "Android", " Java", "/android", " via", " JVM", "(Android"], [" Android", "-android", "Android", "/android", " android", " Java", "_android", ".android"], [" Android", "-android", "Android", "/android", " android", "_android", ".android", "(Android"], [" Android", "Android", "-android", " JVM", " Java", "/android", " android", "_android"], [" Android", "Android", "-android", " JVM", "/android", " android", "_android", "android"], [" Android", "Android", " JVM", " android", "-android", " Java", "_android", "android"], [" JVM", " Android", "Android", " Java", "-android", " Kotlin", " android", "/android"], [" Android", " JVM", "Android", " Java", "-android", " android", " Kotlin", "_android"], [" Android", "Android", " android", "-android", "_android", "android", "/android", " JVM"], [" Android", "Android", " android", "_android", "-android", "android", ".android", "/android"], [" Android", "Android", "-android", " ART", "_android", " android", "android", ".android"], ["Android", " Android", "ART", "via", " ART", "Art", "android", "Dal"]], "p": [[0.846, 0.0694, 0.0421, 0.0328, 0.0042, 0.0013, 0.0009, 0.0008], [0.8429, 0.1007, 0.0039, 0.003, 0.002, 0.0017, 0.0015, 0.0011], [0.8223, 0.1261, 0.0219, 0.0104, 0.0104, 0.0049, 0.0012, 0.0007], [0.0105, 0.005, 0.0047, 0.0041, 0.0039, 0.0034, 0.0032, 0.0032], [0.04, 0.0353, 0.0332, 0.0312, 0.0228, 0.0214, 0.0108, 0.0108], [0.0177, 0.0089, 0.0069, 0.0061, 0.0058, 0.0051, 0.004, 0.0035], [0.3132, 0.1152, 0.0744, 0.0257, 0.0213, 0.0213, 0.0188, 0.0121], [0.0652, 0.0289, 0.0145, 0.0113, 0.01, 0.0078, 0.0057, 0.0054], [0.1472, 0.0893, 0.0653, 0.0199, 0.0155, 0.0155, 0.0137, 0.0107], [0.1208, 0.012, 0.0112, 0.0077, 0.0073, 0.0044, 0.0025, 0.0025], [0.2625, 0.1592, 0.1405, 0.0752, 0.055, 0.0334, 0.0313, 0.0244], [0.0066, 0.0043, 0.0043, 0.004, 0.0035, 0.0031, 0.0031, 0.0027], [0.0152, 0.0126, 0.003, 0.0026, 0.0026, 0.0025, 0.0022, 0.0021], [0.0103, 0.0028, 0.0024, 0.0023, 0.002, 0.002, 0.0018, 0.0017], [0.0358, 0.0336, 0.0217, 0.0075, 0.0048, 0.0043, 0.0043, 0.004], [0.0228, 0.0189, 0.0095, 0.0074, 0.0061, 0.0042, 0.004, 0.0037], [0.0397, 0.0397, 0.0329, 0.0256, 0.0137, 0.0121, 0.0107, 0.0073], [0.0193, 0.0182, 0.0171, 0.0076, 0.0067, 0.0034, 0.0025, 0.0022], [0.082, 0.0086, 0.0072, 0.0067, 0.0036, 0.0036, 0.0028, 0.0028], [0.0316, 0.0029, 0.0028, 0.0022, 0.002, 0.0017, 0.0014, 0.0013], [0.0377, 0.0079, 0.0051, 0.0045, 0.0042, 0.0042, 0.0037, 0.0035], [0.0308, 0.0029, 0.0024, 0.0022, 0.0015, 0.0014, 0.0014, 0.0012], [0.0194, 0.0067, 0.0052, 0.0046, 0.0032, 0.0032, 0.0026, 0.0023], [0.0314, 0.019, 0.0148, 0.0131, 0.0102, 0.0084, 0.0066, 0.0062], [0.0242, 0.0078, 0.0078, 0.0069, 0.0037, 0.0029, 0.0029, 0.0027], [0.0138, 0.0084, 0.0048, 0.0033, 0.0027, 0.0026, 0.0023, 0.0023], [0.0498, 0.0208, 0.0183, 0.0067, 0.0059, 0.0059, 0.0032, 0.003], [0.0984, 0.0561, 0.034, 0.032, 0.0282, 0.0206, 0.0161, 0.0161], [0.1373, 0.0369, 0.0347, 0.0347, 0.0288, 0.0224, 0.0174, 0.0154], [0.1065, 0.057, 0.057, 0.0503, 0.0472, 0.0444, 0.0253, 0.0238], [0.1572, 0.0953, 0.0697, 0.0543, 0.0351, 0.0291, 0.0273, 0.0146], [0.1253, 0.063, 0.063, 0.0382, 0.0232, 0.0218, 0.0192, 0.018], [0.2682, 0.1118, 0.0496, 0.0466, 0.0438, 0.0266, 0.0266, 0.0171], [0.1425, 0.0864, 0.0673, 0.0632, 0.0218, 0.0205, 0.0181, 0.0141], [0.0948, 0.054, 0.0395, 0.0289, 0.0187, 0.0165, 0.0145, 0.0128], [0.1369, 0.0608, 0.0369, 0.0287, 0.0238, 0.021, 0.0185, 0.0164], [0.0566, 0.05, 0.0366, 0.0366, 0.0303, 0.0267, 0.0208, 0.0173], [0.215, 0.0791, 0.0291, 0.0257, 0.0257, 0.0137, 0.0137, 0.0129], [0.5861, 0.0618, 0.0166, 0.0138, 0.0129, 0.0129, 0.0107, 0.0095], [0.8654, 0.038, 0.0296, 0.018, 0.004, 0.004, 0.0033, 0.0031], [0.916, 0.0277, 0.0277, 0.0062, 0.0031, 0.0024, 0.0024, 0.0018], [0.9584, 0.0155, 0.0106, 0.0035, 0.0024, 0.0021, 0.0013, 0.001], [0.9568, 0.0136, 0.0083, 0.005, 0.0035, 0.0027, 0.0021, 0.0011], [0.9571, 0.012, 0.0073, 0.005, 0.0035, 0.0029, 0.0014, 0.0007], [0.8903, 0.0209, 0.0105, 0.0087, 0.0087, 0.0064, 0.0039, 0.003], [0.8187, 0.016, 0.015, 0.0132, 0.0091, 0.0059, 0.0046, 0.0033], [0.5092, 0.121, 0.0224, 0.021, 0.0174, 0.0164, 0.0099, 0.0077], [0.3365, 0.3365, 0.0276, 0.019, 0.0123, 0.0123, 0.0079, 0.0074], [0.207, 0.1945, 0.0811, 0.036, 0.0338, 0.0181, 0.017, 0.0141], [0.1707, 0.0668, 0.0628, 0.0521, 0.0336, 0.0192, 0.0159, 0.0132], [0.1887, 0.0837, 0.0576, 0.0541, 0.0372, 0.0372, 0.0349, 0.0328], [0.8046, 0.0583, 0.0243, 0.0147, 0.0122, 0.0115, 0.0108, 0.0084], [0.8937, 0.0571, 0.0164, 0.0127, 0.0041, 0.0028, 0.0025, 0.0022], [0.928, 0.036, 0.017, 0.0063, 0.003, 0.003, 0.0014, 0.001], [0.9684, 0.0122, 0.0108, 0.0021, 0.0019, 0.0011, 0.001, 0.0009], [0.976, 0.0123, 0.0051, 0.0019, 0.0015, 0.001, 0.0009, 0.0005], [0.9723, 0.0122, 0.0074, 0.0024, 0.0013, 0.0013, 0.0011, 0.0008], [0.6421, 0.3437, 0.0071, 0.0034, 0.0009, 0.0009, 0.0006, 0.0003], [0.631, 0.3378, 0.0216, 0.0038, 0.0016, 0.0011, 0.0009, 0.0006], [0.9804, 0.0158, 0.0015, 0.001, 0.0005, 0.0003, 0.0002, 0.0001], [0.9919, 0.0067, 0.0005, 0.0004, 0.0003, 0.0001, 0.0, 0.0], [0.9605, 0.0329, 0.0013, 0.0013, 0.001, 0.001, 0.0007, 0.0003], [0.9355, 0.0528, 0.0056, 0.0016, 0.0011, 0.0009, 0.0004, 0.0003]], "ranks": {"Kotlin": [207901, 152910, 92074, 7204, 7927, 23827, 29220, 52833, 78069, 115804, 117633, 37713, 30982, 25302, 89122, 44734, 63771, 93753, 147479, 152308, 207478, 142617, 157540, 195065, 159282, 63802, 51413, 84039, 28873, 9395, 13446, 34890, 27809, 42989, 22835, 2177, 119, 98, 92, 32, 30, 29, 27, 35, 56, 88, 142, 112, 178, 166, 56, 40, 20, 17, 14, 12, 13, 5, 7, 11, 15, 19, 31]}}, {"pos": 502, "top": [["s", "a", ".", ",", "o", "@", "<|endoftext|>", "i"], ["s", "  \n\n", "a", "sWith", "\u201d.", "\u201d,", "ing", "**."], ["s", ".", ",", "\u2013", "\u2026.", "\u2026", " \u2013", "a"], [" **\u2022", "sWith", "sik", "---</", "szeit", "erweise", "(Android", "aald"], ["s", "a", "sWith", "ed", "s\u00f3", " Android", "(@", "sik"], ["s", "sWith", "(Android", "a", "s\u00f3", " Android", "sver", ".Android"], ["s", ".", "a", "(Android", " Android", ".Android", ",", "sWith"], ["s", "(Android", ".", " Android", ",", ".Android", "sWith", "s\u00f3"], [".", "s", ",", "(Android", "!.", "!\u201d.", "\u201d.", " Android"], [",", "s", "(Android", ".", " Android", ".Android", "-style", "-J"], [",", "...", "s", ".", "&nbsp", " Android", "-style", "(Android"], [" Android", "(Android", ".Android", "(android", "-style", "_android", "sWith", "s\u00f3"], ["(Android", " Android", ".Android", "sWith", "(android", "s\u00f3", "_android", "\u7ad9\u5730\u94c1\u7ad9"], ["(Android", " Android", ".Android", "(android", "\u7ad9\u5730\u94c1\u7ad9", "sWith", "-style", "_android"], [".Android", " Android", "-style", "(Android", "sWith", "(android", "s", " Africa"], [" Android", "-esque", "s", ".Android", "\u51ed\u501f\u7740", "(Android", "sWith", "(android"], ["s", " Android", ".Android", "-esque", "(Android", "sWith", " android", ".google"], ["(Android", " Android", ".Android", "sWith", ".google", " android", " academia", "-Pacific"], ["(Android", ".Android", " Android", "sWith", ".google", "\u4e3a\u5168\u7403", "\u76ae\u9769\u57ce", "-esque"], ["(Android", ".Android", " Android", "sWith", "\u4e3a\u5168\u7403", ".google", "(android", "ANDROID"], ["(Android", " Android", ".Android", "Android", "sWith", ".google", "ANDROID", "(android"], [" Android", ".Android", "(Android", "_android", "Android", " android", "(android", "/android"], [" Android", ".Android", "(Android", "Android", " android", "ANDROID", "/android", "_android"], [" Android", ".Android", "Android", "(Android", " android", ".google", " Africa", "ANDROID"], [" Android", "(Android", ".Android", "Android", " android", "/android", "ANDROID", "_android"], [" Android", "(Android", ".Android", "Android", " android", "/android", "_android", "-android"], [" Android", ".Android", "(Android", " android", "Android", "/android", "_android", "-android"], [" Android", ".Android", "Android", " android", "(Android", "/android", "-android", "_android"], [" Android", "Android", ".Android", "(Android", " android", "/android", "android", "-android"], [" Android", "Android", "(Android", ".Android", " android", "android", "/android", "-android"], [" Android", "Android", "(Android", ".Android", " android", "/android", "-android", "android"], [" Android", ".Android", " android", "(Android", "Android", "-era", " modern", "android"], [" Android", " android", "Android", ".Android", "(Android", "-era", "android", "(android"], [" Android", "(Android", " android", ".Android", "Android", "/android", "android", "(android"], [" Android", " android", "(Android", "Android", ".Android", "/android", "android", "(android"], [" Android", "Android", "(Android", " android", ".Android", "android", "/android", "(android"], [" Android", "Android", "(Android", " android", ".Android", "android", "/android", "-android"], [" Android", "Android", " android", "(Android", ".Android", "android", "/android", "-android"], [" Android", "Android", " android", "(Android", ".Android", "android", "/android", "-android"], [" Android", "Android", "(Android", " android", ".Android", "/android", "android", "-android"], [" Android", "Android", "(Android", " android", ".Android", "/android", "android", "-android"], [" Android", "Android", "(Android", " android", ".Android", "-android", "/android", " Java"], [" Android", "Android", "(Android", " android", ".Android", "-android", " Java", "/android"], [" Android", "Android", "(Android", " android", ".Android", " Java", "-android", "/android"], [" Android", "Android", " android", "(Android", ".Android", "/android", " Java", "-android"], [" Android", " android", " Java", "(Android", "/android", "Android", ".Android", " JVM"], [" Android", "/android", "(Android", " Java", " android", " JVM", ".Android", "Android"], [" Android", "/android", "(Android", " JVM", " Java", " android", "/Linux", "Android"], [" Android", "/android", "(Android", " android", "/Linux", " JVM", " APK", "Android"], [" Android", "/android", "/Linux", "(Android", "/A", ".Android", "),", "Android"], [" Android", "(Android", "/android", "/Linux", ".Android", "Android", "(android", " JVM"], ["(Android", " Android", "/Linux", "/android", ".Android", " JVM", "Android", " SDK"], [" Android", "/android", "(Android", "Android", ".Android", "-android", "/Linux", " JVM"], ["/android", " Android", "(Android", ".Android", "Android", "(android", "android", " android"], [" Android", "/android", "(Android", "Android", ".Android", " JVM", "-android", " android"], [" JVM", "/android", " Android", "(Android", "Android", ".Android", " Kotlin", ")"], [" Android", " JVM", "/android", "Android", "(Android", ".Android", "android", " JNI"], [" JVM", " Android", " Kotlin", "(Android", "/android", " Java", "Android", " JNI"], [" JVM", " Java", " Kotlin", " Android", " JNI", "Java", "(Android", " JDK"], [" JVM", ")", " Android", " Kotlin", " Java", " APK", "/android", "(Android"], [")", " JVM", " ART", " Runtime", " runtime", "ART", " Android", " Kotlin"], [")", " ART", " Runtime", "ART", "),", " SDK", " runtime", "/K"], [")", "),", ").", " ART", ")/", "ART", "/A", "/"]], "p": [[0.4151, 0.2853, 0.1842, 0.032, 0.0052, 0.0046, 0.0043, 0.0038], [0.6886, 0.0303, 0.0152, 0.0126, 0.0111, 0.006, 0.0044, 0.0038], [0.3392, 0.3392, 0.0972, 0.0489, 0.0431, 0.0231, 0.018, 0.0149], [0.0183, 0.0183, 0.0118, 0.0076, 0.0076, 0.0046, 0.0044, 0.0034], [0.9685, 0.0079, 0.0015, 0.0013, 0.0005, 0.0004, 0.0003, 0.0003], [0.631, 0.0168, 0.0158, 0.0109, 0.0085, 0.0045, 0.0024, 0.0023], [0.9752, 0.0029, 0.0027, 0.0021, 0.0008, 0.0007, 0.0004, 0.0003], [0.7699, 0.0338, 0.0205, 0.0075, 0.0071, 0.0059, 0.0052, 0.0049], [0.3714, 0.2398, 0.0939, 0.0185, 0.0127, 0.0127, 0.0093, 0.0064], [0.3479, 0.1061, 0.0209, 0.0127, 0.0105, 0.0093, 0.005, 0.0047], [0.3533, 0.0839, 0.0741, 0.0449, 0.0226, 0.0226, 0.0165, 0.0137], [0.0494, 0.0409, 0.0339, 0.0086, 0.0063, 0.0052, 0.0049, 0.0046], [0.0259, 0.0229, 0.0167, 0.0095, 0.0074, 0.0048, 0.0042, 0.0037], [0.018, 0.0124, 0.0103, 0.0048, 0.0046, 0.0043, 0.0029, 0.0028], [0.0064, 0.0064, 0.003, 0.0028, 0.0025, 0.0022, 0.0021, 0.002], [0.0058, 0.0054, 0.0045, 0.0042, 0.0031, 0.0024, 0.0018, 0.0015], [0.0678, 0.0171, 0.0125, 0.0104, 0.0086, 0.0056, 0.003, 0.0026], [0.0272, 0.0225, 0.0211, 0.0078, 0.0039, 0.0029, 0.0027, 0.0027], [0.0498, 0.0342, 0.0235, 0.0076, 0.0041, 0.0036, 0.0032, 0.0032], [0.072, 0.0362, 0.0249, 0.0067, 0.0049, 0.0049, 0.0043, 0.0038], [0.0585, 0.0516, 0.0516, 0.0102, 0.0062, 0.0054, 0.0048, 0.0037], [0.2073, 0.1517, 0.1258, 0.0141, 0.0141, 0.011, 0.0091, 0.0086], [0.4117, 0.2204, 0.0762, 0.0631, 0.0141, 0.0071, 0.0059, 0.0052], [0.2093, 0.0989, 0.0467, 0.0266, 0.0063, 0.0041, 0.0041, 0.0038], [0.2021, 0.1479, 0.1389, 0.1152, 0.0166, 0.0166, 0.0121, 0.0078], [0.4573, 0.1907, 0.1156, 0.0425, 0.0275, 0.0228, 0.013, 0.0089], [0.659, 0.1145, 0.0653, 0.0272, 0.0212, 0.0113, 0.0107, 0.01], [0.6349, 0.0591, 0.0406, 0.0358, 0.0358, 0.0116, 0.0071, 0.0071], [0.6481, 0.1276, 0.0877, 0.0366, 0.0343, 0.0068, 0.0049, 0.0044], [0.7061, 0.0843, 0.0544, 0.0544, 0.0424, 0.0039, 0.0035, 0.0033], [0.7984, 0.0423, 0.0423, 0.0423, 0.031, 0.0033, 0.0022, 0.0022], [0.7058, 0.0351, 0.031, 0.0227, 0.0177, 0.0061, 0.0027, 0.0022], [0.7531, 0.0452, 0.0399, 0.0399, 0.0274, 0.0051, 0.0042, 0.0035], [0.6429, 0.0678, 0.0637, 0.0637, 0.0466, 0.0125, 0.0092, 0.0071], [0.6981, 0.0649, 0.0573, 0.0573, 0.0446, 0.0186, 0.012, 0.006], [0.7482, 0.1013, 0.0422, 0.0329, 0.0226, 0.01, 0.0057, 0.0039], [0.7554, 0.1158, 0.0426, 0.0258, 0.0201, 0.0108, 0.0095, 0.0048], [0.847, 0.0788, 0.0226, 0.0226, 0.0107, 0.0065, 0.005, 0.0031], [0.9159, 0.0402, 0.0131, 0.0131, 0.0079, 0.0029, 0.0026, 0.0023], [0.9018, 0.0449, 0.0212, 0.0114, 0.0088, 0.0037, 0.0029, 0.002], [0.8992, 0.0575, 0.0211, 0.0069, 0.0069, 0.0025, 0.0017, 0.0014], [0.953, 0.0288, 0.0064, 0.0044, 0.0027, 0.0014, 0.0011, 0.0006], [0.9401, 0.0365, 0.0081, 0.0049, 0.0038, 0.0021, 0.0012, 0.0011], [0.9397, 0.0322, 0.0104, 0.0063, 0.0026, 0.0021, 0.0018, 0.0016], [0.9325, 0.0362, 0.0081, 0.0055, 0.0043, 0.003, 0.003, 0.0018], [0.9626, 0.0057, 0.0057, 0.0045, 0.0045, 0.0035, 0.0031, 0.0022], [0.8958, 0.0198, 0.0113, 0.01, 0.0093, 0.0093, 0.0064, 0.0037], [0.7854, 0.0163, 0.0153, 0.0144, 0.0127, 0.0119, 0.0082, 0.0072], [0.6919, 0.1061, 0.0268, 0.0163, 0.0153, 0.0135, 0.0087, 0.0077], [0.3733, 0.1556, 0.0782, 0.0649, 0.027, 0.0175, 0.0136, 0.012], [0.2958, 0.261, 0.261, 0.0454, 0.0353, 0.0214, 0.0101, 0.0061], [0.323, 0.222, 0.1188, 0.1048, 0.0561, 0.0495, 0.03, 0.0063], [0.4917, 0.205, 0.1097, 0.0754, 0.0665, 0.0102, 0.009, 0.0062], [0.4235, 0.2569, 0.1558, 0.0736, 0.0573, 0.0088, 0.006, 0.0053], [0.4099, 0.2486, 0.1709, 0.0807, 0.0555, 0.0085, 0.0052, 0.0046], [0.3529, 0.2425, 0.1667, 0.1146, 0.0328, 0.0226, 0.0176, 0.0137], [0.4752, 0.1748, 0.1362, 0.0826, 0.0729, 0.0127, 0.0112, 0.0068], [0.9255, 0.0192, 0.0091, 0.0091, 0.0062, 0.0062, 0.0049, 0.0038], [0.9342, 0.0151, 0.0092, 0.0071, 0.0049, 0.0049, 0.0043, 0.0038], [0.382, 0.1804, 0.1405, 0.0752, 0.0403, 0.0277, 0.019, 0.0158], [0.8107, 0.0457, 0.0404, 0.0356, 0.0148, 0.0096, 0.0075, 0.0055], [0.944, 0.0222, 0.0064, 0.0053, 0.0041, 0.0022, 0.0022, 0.0015], [0.9969, 0.0022, 0.0007, 0.0001, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Kotlin": [54538, 36274, 29658, 546, 2318, 3449, 5352, 18322, 16246, 21721, 14226, 4757, 5540, 16154, 71258, 31734, 19760, 4065, 7249, 14001, 8575, 723, 356, 3494, 493, 146, 237, 477, 258, 187, 296, 885, 263, 88, 47, 54, 26, 24, 21, 24, 24, 28, 23, 22, 27, 36, 62, 131, 120, 298, 142, 81, 22, 19, 14, 7, 9, 3, 3, 4, 8, 30, 47]}}, {"pos": 503, "top": [[".", ",", " \u2013", "\u00a0", "\u2013", " ", "\u00a0\u00a0", ";"], [" \u2013", "\u2013", " ", ".", ",", "  \n\n", ";", "  \n"], [",", ".", "\u2013", " \u2013", "\u2026", ";", " [\u2026]", "\u2026."], [" Blowjob", " Shemale", " Strec", "\ufffd\ufffd", " cristi", " \u041a\u0440\u0430\u0441\u0438", " Hidal", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9"], [" ", " ***", " **#", " \u201c", " (**", " \u2019", "\u00a0\u00a0", " **\u201c"], ["\u00a0\u00a0", " \u200b\u200b", "\u00a0\u00a0\u00a0\u00a0", "\u00a0\u00a0\u00a0", " \uff09", " \u201d", " ", "\u00a0"], [" ***", " **", "\u00a0\u00a0\u00a0\u00a0", " \u201d", " ", "\u00a0\u00a0", " \u00a0", " **\u201c"], [" **", " **#", " **\u20ac", " ***", " (**", "(**", " **\u300c", " ****"], [".", " \u200b\u200b", " **\u20ac", " ***", " (**", " **#", "\u00a0", ","], [",", "\u00a0", " \u0442\u0440\u0451", " \u00ad", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\u5e74\u591c", "\u00a0\u00a0", "\u00adtion"], ["\u00a0", ",", ".", " ", "\u00a0\u00a0", " **", "...", " mostly"], [" **", " **\u300c", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " **#", " Shemale", " **\u00ab", " **\u20ac", " \u00bb**"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " **", " **\u300c", " Shemale", " **\u00ab", " Fortal", " **>>", " \u00bb**"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Shemale", " **\u300c", " Blowjob", " **\u00ab", " Fortal", " \u00bb**", " Hidal"], [" arguably", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\u4ea6\u7136", " Fortal", "\u4ea6\u662f", " mostly", "\u9aa8\u5b50\u91cc", " often"], [" Fortal", " often", " arguably", " showcased", " anyways", " mostly", " utilized", " oft"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " showcased", " impactful", " anyways", " Fortal", "adoria", " Shemale", " debuted"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Shemale", " Fortal", " milfs", " Blowjob", "adoria", " ;;^", "inely"], [" Shemale", " Fortal", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " ;;^", " milfs", "adoria", " Blowjob", " Teixe"], ["adoria", " Fortal", " Shemale", " **\u25cb", "\u4ea6\u7136", " Teixe", " ;;^", "inely"], [" notably", "\u76f8\u8f83", "\u5c45\u591a", "\u4ea6\u662f", " hugely", "\u6291\u6216", "\u4e5f\u4f7f\u5f97", "\u62e5\u6709\u7740"], [" Fortal", " ;;^", "adoria", " MEDIAM", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Hidal", " Teixe", " Catalu"], [" notably", "\u4ea6\u662f", " arguably", "\u8fd8\u6709\u7740", "\u6291\u6216", "\u5c45\u591a", "elaide", "\u62e5\u6709\u7740"], [" notably", " largely", " arguably", " hugely", " chiefly", " often", " similarly", " famously"], [" \r\n\r\n", " \n\n", "\r\n\r\n", "  \n\n", " notably", " --", " hugely", " arguably"], [" **", " notably", " famously", "amai", " arguably", " MEDIAM", "adoria", "\u6291\u6216"], [" **", " notably", " famously", " \r\n\r\n", " arguably", "\r\n\r\n", " \n\n", " largely"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", " \r\n\r\n", " **", " ___", " --"], [" \n\n", "\n\n", " ...", "  \n\n", " **", " ___", " ,", "\r\n\r\n"], [" ...", "...", " **", " ,", " [...]", "...**", " and", " often"], [" ,", " and", " ...", " often", " .", " or", " largely", " increasingly"], [" and", " ,", " often", " .", " as", " -", " mostly", " or"], [" \u2013", " and", " often", " ,", " mostly", " -", " \u2014", " complex"], [" \u2013", " and", " **", " complex", " \u2014", " increasingly", " hybrid", " vs"], ["\u2014and", " \u2013", " increasingly", " hybrid", " inherently", " **\u2013", " complex", "\u2014but"], [" \u2013", "\u2014and", "\u2014but", " **\u2013", " increasingly", "**\u2013", "\u2013", " \u2014"], [" increasingly", " hybrid", "\u2014but", "\u2014and", " \u2013", " \u2014", " inherently", "\u2014or"], [" increasingly", " \u2013", " hybrid", "\u2014but", " inherently", "\u2014and", " or", " vs"], [" or", " \u2013", "\u2014or", " increasingly", "\u2014but", " vs", "\u6216\u975e", " hybrid"], [" \u2013", " vs", " hybrid", " globally", " or", " increasingly", " overseas", " \u200b\u200b"], [" \u2013", " or", " vs", " hybrid", " increasingly", " overseas", " \u200b\u200b", "\u200b"], [" hybrid", " globally", " inherently", " overseas", " interoper", " or", " disparate", " native"], [" hybrid", " interoper", " inherently", " or", " transitioning", " native", " globally", " overseas"], [" hybrid", " domestically", " overseas", " via", " transitioning", " globally", " mainland", " \u2013"], [" or", " hybrid", " domestically", " and", " across", " via", " overseas", " elsewhere"], [" or", " domestically", " /", " hybrid", " and", " elsewhere", " mainland", " overseas"], ["/", " /", " or", "/or", "(/", "/Linux", " hybrid", "/non"], [" or", "/", " and", " /", " vs", " elsewhere", " hybrid", "/or"], [" or", " and", "/", "/or", " /", "/D", "\u6216\u901a\u8fc7", "/OR"], [" or", " and", "\u6216\u901a\u8fc7", "/or", " \u0438\u043b\u0438", "\u6216\u4f7f\u7528", "/", "\u6216\u975e"], [" or", " \u0438\u043b\u0438", "\u6216", "\u6216\u4f7f\u7528", " \u06cc\u0627", " ho\u1eb7c", " \u0623\u0648", "\u6216\u901a\u8fc7"], [" or", " \u0438\u043b\u0438", "\u6216", " \u06cc\u0627", "\u6216\u901a\u8fc7", "\u6216\u4f7f\u7528", " ho\u1eb7c", " \u0623\u0648"], [" or", " \u0438\u043b\u0438", "\u6216", "\u6216\u4f7f\u7528", " \u06cc\u0627", " \u0623\u0648", " ho\u1eb7c", "\u0e2b\u0e23\u0e37\u0e2d"], [" or", "\u6216", " \u0438\u043b\u0438", "\u6216\u4f7f\u7528", " JVM", "\u6216\u5229\u7528", " \u0623\u0648", " \u06cc\u0627"], [" or", "\u6216", " \u0438\u043b\u0438", " \u06cc\u0627", "\u6216\u4f7f\u7528", " JVM", " ho\u1eb7c", " \u0623\u0648"], [" or", " JVM", "\u6216", " Kotlin", " \u0438\u043b\u0438", "\u6216\u4f7f\u7528", "\u6216\u5229\u7528", " \u06cc\u0627"], [" or", " JVM", " Kotlin", " \u0438\u043b\u0438", "\u6216", "\u6216\u5229\u7528", "\u6216\u4f7f\u7528", " \u06cc\u0627"], [" JVM", " or", " VM", "VM", " Kotlin", "\u6216", " \u0438\u043b\u0438", "\u6216\u4f7f\u7528"], [" JVM", " or", " Kotlin", " VM", "\u6216", "VM", " \u0438\u043b\u0438", "\u6216\u4f7f\u7528"], [" or", " JVM", " \u0438\u043b\u0438", " Kotlin", "\u6216", " VM", "\u6216\u4f7f\u7528", "\u6216\u5229\u7528"], [" or", " JVM", " LLVM", " Kotlin", " VM", " JNI", " which", " \u0438\u043b\u0438"], [" or", " JVM", " LLVM", " which", " and", " \u0438\u043b\u0438", " Native", " JNI"], [" or", " which", " JVM", " and", " LLVM", " where", " Kotlin", " \u0438\u043b\u0438"]], "p": [[0.6388, 0.183, 0.0864, 0.0248, 0.015, 0.015, 0.0141, 0.0071], [0.388, 0.1519, 0.0559, 0.0463, 0.0435, 0.0125, 0.0103, 0.0103], [0.4821, 0.258, 0.1774, 0.0508, 0.0146, 0.0042, 0.0037, 0.0029], [0.0085, 0.0085, 0.0038, 0.0024, 0.0021, 0.0021, 0.0019, 0.0019], [0.0091, 0.0086, 0.0076, 0.0052, 0.0041, 0.0041, 0.0041, 0.0036], [0.0301, 0.0111, 0.0067, 0.0046, 0.0041, 0.0041, 0.0038, 0.0032], [0.1049, 0.0817, 0.032, 0.03, 0.03, 0.0265, 0.0249, 0.0171], [0.0413, 0.0251, 0.0221, 0.0172, 0.0098, 0.0087, 0.0076, 0.0067], [0.0362, 0.0249, 0.0125, 0.011, 0.0104, 0.0097, 0.0071, 0.0071], [0.0277, 0.0033, 0.0026, 0.0026, 0.002, 0.0018, 0.0017, 0.0015], [0.2589, 0.1475, 0.0578, 0.0146, 0.0083, 0.0069, 0.0054, 0.005], [0.1294, 0.0371, 0.0113, 0.0094, 0.0061, 0.0047, 0.0034, 0.0034], [0.0397, 0.0213, 0.0176, 0.0073, 0.0047, 0.0037, 0.0015, 0.0015], [0.0824, 0.0184, 0.0077, 0.003, 0.0025, 0.0025, 0.0017, 0.0014], [0.0033, 0.0027, 0.0019, 0.0019, 0.0016, 0.0013, 0.0011, 0.0011], [0.0073, 0.0064, 0.005, 0.0041, 0.0034, 0.0032, 0.003, 0.0027], [0.0094, 0.0039, 0.0037, 0.0035, 0.0035, 0.0025, 0.0025, 0.0024], [0.0097, 0.0071, 0.0067, 0.0049, 0.0022, 0.0022, 0.0018, 0.0014], [0.0143, 0.0112, 0.0072, 0.0053, 0.0041, 0.0039, 0.0032, 0.003], [0.0027, 0.0025, 0.0019, 0.0019, 0.0014, 0.0013, 0.001, 0.0009], [0.003, 0.0025, 0.0025, 0.0023, 0.0023, 0.0021, 0.0021, 0.0019], [0.0041, 0.0039, 0.0025, 0.002, 0.0017, 0.0014, 0.0014, 0.0013], [0.0042, 0.0037, 0.0021, 0.0021, 0.0019, 0.0017, 0.0015, 0.0015], [0.0198, 0.01, 0.0078, 0.0064, 0.006, 0.006, 0.005, 0.005], [0.0471, 0.0285, 0.0153, 0.0112, 0.0099, 0.0064, 0.0064, 0.006], [0.0256, 0.0037, 0.0037, 0.0031, 0.0025, 0.0024, 0.0021, 0.002], [0.0658, 0.0138, 0.0122, 0.0101, 0.0095, 0.0079, 0.0069, 0.0061], [0.411, 0.2825, 0.0917, 0.0298, 0.0232, 0.015, 0.0097, 0.0052], [0.2302, 0.2032, 0.1087, 0.1022, 0.0847, 0.0189, 0.0157, 0.0122], [0.7574, 0.0905, 0.0798, 0.009, 0.009, 0.0042, 0.0026, 0.0021], [0.2741, 0.1143, 0.0738, 0.0651, 0.0507, 0.0327, 0.0255, 0.0175], [0.2493, 0.1941, 0.0433, 0.0359, 0.0359, 0.0159, 0.015, 0.015], [0.2373, 0.1631, 0.0497, 0.0439, 0.0235, 0.0235, 0.0221, 0.0207], [0.2228, 0.0439, 0.0321, 0.0302, 0.025, 0.0207, 0.0183, 0.0134], [0.0514, 0.0376, 0.0275, 0.0243, 0.013, 0.0122, 0.0115, 0.0108], [0.2547, 0.0443, 0.0391, 0.0268, 0.0268, 0.0237, 0.0237, 0.0196], [0.0617, 0.0374, 0.0352, 0.0352, 0.031, 0.0147, 0.0107, 0.0095], [0.0696, 0.0577, 0.0397, 0.0241, 0.0199, 0.0155, 0.0146, 0.0107], [0.187, 0.0607, 0.0392, 0.0325, 0.0253, 0.0185, 0.0174, 0.0174], [0.0657, 0.0331, 0.0227, 0.0201, 0.0201, 0.0177, 0.0138, 0.0129], [0.0473, 0.0417, 0.0346, 0.0269, 0.0174, 0.0153, 0.0135, 0.0093], [0.0315, 0.0217, 0.0158, 0.0131, 0.0123, 0.0123, 0.0109, 0.0102], [0.039, 0.0209, 0.0209, 0.0173, 0.0153, 0.0143, 0.0135, 0.0127], [0.0363, 0.032, 0.0301, 0.0182, 0.0171, 0.0161, 0.0151, 0.0125], [0.0474, 0.0474, 0.0347, 0.0326, 0.0238, 0.0224, 0.0197, 0.0174], [0.0788, 0.0478, 0.0449, 0.0328, 0.0328, 0.029, 0.0176, 0.0165], [0.1924, 0.1698, 0.0854, 0.026, 0.0158, 0.0148, 0.0148, 0.0096], [0.3522, 0.1468, 0.0837, 0.0575, 0.01, 0.01, 0.0094, 0.0088], [0.8395, 0.1003, 0.0174, 0.0053, 0.0039, 0.0013, 0.001, 0.0009], [0.9483, 0.0324, 0.0016, 0.0016, 0.0015, 0.0006, 0.0006, 0.0005], [0.9883, 0.0046, 0.001, 0.0009, 0.0008, 0.0005, 0.0005, 0.0005], [0.995, 0.0017, 0.0008, 0.0003, 0.0003, 0.0003, 0.0002, 0.0002], [0.9879, 0.0036, 0.0024, 0.0009, 0.0007, 0.0006, 0.0004, 0.0004], [0.9648, 0.0083, 0.0074, 0.0031, 0.0019, 0.0015, 0.0015, 0.0013], [0.9712, 0.0139, 0.0074, 0.001, 0.0008, 0.0007, 0.0007, 0.0007], [0.9081, 0.0452, 0.013, 0.0101, 0.0079, 0.0037, 0.002, 0.0014], [0.7594, 0.1695, 0.0428, 0.0074, 0.0066, 0.0024, 0.0021, 0.0009], [0.9312, 0.0464, 0.0091, 0.0063, 0.0043, 0.0005, 0.0004, 0.0003], [0.8206, 0.1616, 0.0049, 0.0034, 0.0018, 0.0016, 0.0014, 0.0008], [0.9651, 0.0291, 0.0009, 0.0009, 0.0004, 0.0004, 0.0004, 0.0003], [0.9501, 0.0417, 0.0022, 0.0008, 0.0007, 0.0005, 0.0003, 0.0002], [0.9949, 0.0013, 0.0006, 0.0004, 0.0002, 0.0001, 0.0001, 0.0001], [0.996, 0.0008, 0.0005, 0.0004, 0.0003, 0.0002, 0.0001, 0.0001]], "ranks": {"Kotlin": [223657, 178076, 158422, 17302, 30255, 41113, 64441, 84503, 78449, 126303, 79244, 40865, 29697, 20886, 87944, 51083, 18636, 28724, 44305, 46662, 190266, 117552, 169374, 199811, 134920, 36560, 32003, 80256, 37711, 12272, 40374, 62561, 16980, 3346, 14721, 5733, 11917, 11408, 8652, 948, 773, 449, 510, 927, 2055, 4730, 7869, 4233, 10684, 9525, 13200, 565, 76, 56, 60, 4, 3, 5, 3, 4, 4, 8, 7]}}, {"pos": 504, "top": [[".", "\u2013", ",", " \u2013", ";", "-", ":", "?"], ["\u2013", " \u2013", ",", ".", ";", "\u2013and", ".\u2013", "\u200b"], ["\u2013", ",", ".", " \u2013", ";", ".\u2013", "\u2013and", "?"], [" milfs", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Shemale", " Blowjob", "----------</", " addir", " \u041f\u043e\u043f\u0440\u043e", " Strec"], [",", ".", "@", ".@", ".|", "#####", "s", "\u2013"], [",", "\u2013", ".", ".\u2013", "\u2026.", " |\u2013", "!\".", "#####"], ["\u2014\"", "s", "\u2014\u2014", "\u2013", ".", "#####", " [\u2026]", "\u2014"], ["#####", ".|", "\\.", ",", "   \n", "\u2013", ".", "|\""], [",", ".", " [\u2026]", "\u2013", "\u00a0", ".|", "#####", ";"], [",", "\u2013", " [\u2026]", "\u2014\"", "\u00ad", " \u00ad", ".|", "\u2013and"], ["\u2013", ",", " [\u2026]", ".|", "\u00a0", "\u2014", "|", "."], [" **\u00ab", " **\u300c", "\t  ", "uskan", "**|", "_->", "_|", "<br"], [" [...]", " **\u00ab", " \u00ab", " [\u2026]", "-than", " (\u00ab", "uskan", "-ish"], ["\u2013", " (\u00ab", "-than", ".\u00ab", "-ish", "\u00ab", ".\u00bb", "\u2014\""], [" via", " savvy", " trendy", "\u5929\u6daf", " \u00ab", "uskan", "-or", "\u5499"], [" \u00ab", " Fortal", " trendy", "\u54e5\u534e", "\u0ecd", "uskan", "deaux", " classics"], ["s", " via", " akin", " arguably", " trendy", " stint", " typically", " Fortal"], ["\u2013and", "\u2013", ".\u2013", " Fortal", " (\u00ab", " Palav", "\u76f8\u5173\u884c\u4e1a", "|RF"], [" arguably", " Fortal", " akin", "\u60f3\u65b9", "\u76f8\u5173\u884c\u4e1a", " via", " ostensibly", " myriad"], ["\u305d\u3046\u3057\u305f", "\u76f8\u5173\u884c\u4e1a", "\u7fa4\u96c4", " myriad", " akin", " arguably", " \u043d\u0435\u0447\u0442\u043e", "\u6291\u6216"], [" myriad", "\u305d\u3046\u3057\u305f", " swiftly", "\u76f8\u8f83", "\u90a3\u822c", "\u82e5\u975e", " arguably", " akin"], [" ;;^", " Fortal", "\u76f8\u5173\u884c\u4e1a", "\u7fa4\u96c4", " Catalu", "\u5546\u4e1a\u4e2d\u5fc3", " MEDIATEK", " BHY"], ["\u305d\u3046\u3057\u305f", " myriad", " arguably", "\u60f3\u65b9", " broadly", "\u90a3\u822c", "\u4e0d\u751a", " outright"], ["<|endoftext|>", " broadly", " \u2014", " myriad", " ultimately", " arguably", " largely", " ostensibly"], [" \r\n\r\n", " \n\n", "  \n\n", "   \n\n", "\r\n\r\n", "  \r\n\r\n", "    \n\n", "\n\n"], [" \r\n\r\n", "\r\n\n", " ___", " _:", "   \n\n", " MEDIATEK", " \n\n", "\r\n\r\n"], [" \r\n\r\n", " ___", "\r\n\r\n", " _:", "\r\n\n", " \n\n", " MEDIATEK", " arguably"], ["\n\n", " \n\n", "  \n\n", " \r\n\r\n", "\r\n\r\n", "   \n\n", " ___", " ______"], [" \n\n", "  \n\n", "\n\n", " \r\n\r\n", "   \n\n", " ______", "\r\n\r\n", " ___"], ["...**", " ______", " ...\\", " ___", " ____", " [...]", "____", " ..."], [" ...", " ...\\", " ___", " **", " \n\n", " ______", " [...]", " \\\""], [" ...", " via", " complex", " modern", " \u2014", " hybrid", " more", " ultimately"], [" via", " hybrid", " \u2013", " complex", " largely", " ultimately", " modern", " independently"], [" hybrid", " hybrids", " via", " globally", " complex", " tech", " environments", " modern"], [" via", " hybrid", " globally", " arguably", " hybrids", " \u2013**", " \u2013", " potentially"], [" \u2013**", " Nordic", " Scandinavian", " hybrid", "**\u2013", " macOS", " \u2013", " Icelandic"], [" Icelandic", " macOS", " Nordic", " Scandinavian", " hybrid", " iOS", " Kotlin", " Scottish"], [" hybrid", " macOS", " Icelandic", " Nordic", " Scandinavian", " iOS", " Norwegian", " Native"], [" macOS", " Icelandic", " hybrid", " Native", " native", " Nordic", " Scandinavian", " via"], [" Russian", " Icelandic", " Siber", " Nordic", " Kotlin", " Soviet", "Russian", " Norwegian"], [" Russian", " Icelandic", "Russian", " Kotlin", " Siber", " Soviet", " LLVM", " Nordic"], [" Russian", " Icelandic", " LLVM", " Kotlin", " Siber", " Soviet", "Russian", " Norwegian"], [" Russian", " LLVM", " Kotlin", " Icelandic", " Siber", " Soviet", " interoper", " Norwegian"], [" Kotlin", " LLVM", " Russian", " Icelandic", " interoper", " iOS", " Hybrid", " Native"], [" LLVM", " Kotlin", " via", " Russian", " JetBrains", " Hybrid", " interoper", " hybrid"], [" LLVM", " hybrid", " Kotlin", " Hybrid", " JetBrains", " Icelandic", " Russian", " interoper"], [" LLVM", " Hybrid", " hybrid", " via", " Transition", " transitioning", " equivalents", " NGX"], [" via", " Transition", " Hybrid", "Via", "via", " LLVM", " Direct", " transitioning"], [" LLVM", " Kotlin", " Transition", " transitioning", " via", "via", " Hybrid", " CPU"], [" LLVM", " Transition", " Kotlin", " NGX", " transitioning", " Hybrid", ".netty", " Cortex"], [" LLVM", "via", " NGX", "_via", ".netty", " Transition", "Converted", "translated"], [" LLVM", " JVM", " Kernel", " Kotlin", "/native", " Runtime", "optimized", "-runtime"], [" Kotlin", " LLVM", " JVM", " Kernel", " JetBrains", "runtime", " Runtime", "/runtime"], [" LLVM", " Kotlin", " JVM", "runtime", " JetBrains", " Runtime", "llvm", "/runtime"], [" Kotlin", " JVM", " LLVM", "runtime", " Runtime", " runtime", "-runtime", "/runtime"], [" Kotlin", " JVM", " kotlin", ".kotlin", " LLVM", " kotlinx", " JetBrains", "-runtime"], [" Kotlin", " JVM", ".kotlin", " kotlin", " LLVM", " kotlinx", " Native", "/native"], [" Kotlin", " JVM", " VM", " LLVM", "VM", ".kotlin", " kotlin", " kotlinx"], [" Kotlin", " JVM", " LLVM", " VM", ".kotlin", "VM", " Native", "_vm"], [" Native", " LLVM", " Kotlin", ".Native", "Native", " JVM", " Memory", " VM"], [" LLVM", " Native", " LL", " Kotlin", " NN", " JVM", " NAT", " Allocator"], [" Native", " LLVM", " LL", " NAT", " NN", " libc", " native", " Nat"], [" Native", " LLVM", " LL", " Kotlin", " Lib", " NN", " uses", " NAT"]], "p": [[0.3715, 0.2553, 0.2253, 0.1367, 0.0068, 0.0006, 0.0005, 0.0005], [0.6717, 0.1924, 0.0802, 0.0158, 0.0085, 0.0026, 0.0017, 0.0011], [0.4552, 0.4017, 0.1016, 0.033, 0.0039, 0.0011, 0.0004, 0.0003], [0.0206, 0.0151, 0.0125, 0.0076, 0.0041, 0.0038, 0.0036, 0.0034], [0.1497, 0.1321, 0.0801, 0.0457, 0.019, 0.0131, 0.0131, 0.0115], [0.109, 0.0484, 0.0454, 0.0293, 0.0167, 0.0139, 0.0122, 0.0108], [0.0891, 0.0308, 0.0187, 0.0175, 0.0175, 0.0175, 0.0155, 0.0155], [0.0357, 0.0357, 0.0296, 0.0296, 0.0245, 0.0203, 0.0179, 0.0109], [0.3769, 0.259, 0.0895, 0.0351, 0.0226, 0.0166, 0.0121, 0.0094], [0.7296, 0.1628, 0.0059, 0.0059, 0.0049, 0.0043, 0.0041, 0.0038], [0.2969, 0.2969, 0.1163, 0.0333, 0.0276, 0.0157, 0.0115, 0.0108], [0.0133, 0.0117, 0.0091, 0.0067, 0.0059, 0.0059, 0.0052, 0.0052], [0.0087, 0.0082, 0.0077, 0.0072, 0.005, 0.0041, 0.0039, 0.0032], [0.0149, 0.014, 0.0043, 0.0043, 0.0035, 0.0035, 0.0035, 0.0035], [0.0056, 0.0036, 0.0036, 0.0025, 0.0022, 0.0021, 0.0017, 0.0016], [0.0075, 0.0038, 0.0026, 0.002, 0.0019, 0.0018, 0.0015, 0.0012], [0.0227, 0.0177, 0.0095, 0.0045, 0.0042, 0.0035, 0.0024, 0.0022], [0.006, 0.005, 0.0037, 0.0028, 0.0021, 0.002, 0.0018, 0.0018], [0.005, 0.005, 0.0039, 0.0037, 0.0035, 0.0029, 0.0029, 0.0025], [0.0037, 0.0037, 0.0031, 0.0031, 0.0021, 0.0016, 0.0014, 0.0014], [0.0046, 0.0043, 0.0017, 0.0016, 0.0016, 0.0015, 0.0014, 0.0013], [0.0078, 0.0037, 0.0035, 0.0022, 0.002, 0.0015, 0.0015, 0.0014], [0.0039, 0.003, 0.0027, 0.0024, 0.0018, 0.0018, 0.0017, 0.0016], [0.0181, 0.0049, 0.0043, 0.004, 0.0038, 0.0036, 0.0034, 0.003], [0.1771, 0.1379, 0.1217, 0.0693, 0.0575, 0.0128, 0.0088, 0.0083], [0.047, 0.0143, 0.0127, 0.0119, 0.0093, 0.0077, 0.0072, 0.0068], [0.0085, 0.0075, 0.007, 0.0062, 0.004, 0.0033, 0.0033, 0.0024], [0.3622, 0.3622, 0.0808, 0.0359, 0.0359, 0.0124, 0.0085, 0.0059], [0.167, 0.1569, 0.0479, 0.0422, 0.029, 0.0187, 0.0187, 0.0129], [0.2773, 0.102, 0.102, 0.0846, 0.0581, 0.0513, 0.0453, 0.0453], [0.2722, 0.0733, 0.0305, 0.0269, 0.0238, 0.0197, 0.0163, 0.0144], [0.0464, 0.0281, 0.0151, 0.0142, 0.011, 0.0091, 0.0081, 0.0076], [0.0181, 0.017, 0.015, 0.011, 0.0103, 0.0097, 0.0071, 0.0059], [0.0322, 0.0162, 0.0143, 0.0098, 0.0076, 0.0067, 0.0053, 0.0053], [0.0539, 0.0327, 0.0136, 0.0113, 0.0094, 0.0088, 0.0078, 0.0073], [0.0297, 0.0262, 0.0169, 0.0169, 0.0149, 0.0149, 0.014, 0.0132], [0.0457, 0.0379, 0.0356, 0.0277, 0.0245, 0.0148, 0.0109, 0.0096], [0.0405, 0.0405, 0.0357, 0.0278, 0.0245, 0.0169, 0.014, 0.0123], [0.0357, 0.0315, 0.0296, 0.0245, 0.0245, 0.0217, 0.0191, 0.0158], [0.2434, 0.2286, 0.0241, 0.0241, 0.0226, 0.0226, 0.0213, 0.0213], [0.3728, 0.0943, 0.0326, 0.0326, 0.0306, 0.0238, 0.0186, 0.0136], [0.2443, 0.1154, 0.058, 0.0512, 0.0292, 0.0274, 0.0213, 0.0177], [0.0983, 0.0815, 0.072, 0.056, 0.03, 0.0219, 0.0171, 0.0142], [0.0713, 0.0629, 0.0316, 0.0159, 0.014, 0.0116, 0.0109, 0.0096], [0.0464, 0.0384, 0.0233, 0.0206, 0.016, 0.0125, 0.0125, 0.0125], [0.0277, 0.0215, 0.0202, 0.0179, 0.0123, 0.0123, 0.0115, 0.0115], [0.0366, 0.0285, 0.0252, 0.0196, 0.0196, 0.0153, 0.0143, 0.0112], [0.0421, 0.0371, 0.0308, 0.0289, 0.0289, 0.0255, 0.0145, 0.0113], [0.0274, 0.0138, 0.0138, 0.0129, 0.0129, 0.0101, 0.0079, 0.0051], [0.0162, 0.0105, 0.0082, 0.0077, 0.0077, 0.0064, 0.0046, 0.0036], [0.01, 0.0088, 0.0078, 0.0065, 0.0065, 0.0047, 0.0047, 0.0044], [0.0912, 0.0335, 0.0217, 0.018, 0.018, 0.0131, 0.0116, 0.0116], [0.3312, 0.3312, 0.0349, 0.0225, 0.0121, 0.0121, 0.01, 0.0078], [0.4411, 0.2083, 0.0437, 0.0194, 0.0171, 0.0125, 0.0118, 0.0071], [0.5517, 0.1791, 0.1395, 0.0189, 0.0138, 0.0122, 0.0089, 0.0058], [0.9534, 0.0254, 0.0057, 0.0057, 0.005, 0.0003, 0.0002, 0.0002], [0.9362, 0.0171, 0.0118, 0.0118, 0.0118, 0.0026, 0.0008, 0.0005], [0.6859, 0.1965, 0.0638, 0.0161, 0.0142, 0.0052, 0.0028, 0.0025], [0.6841, 0.1347, 0.1049, 0.0207, 0.0081, 0.0049, 0.003, 0.0028], [0.6742, 0.1328, 0.0431, 0.0096, 0.009, 0.008, 0.0045, 0.0043], [0.6891, 0.2237, 0.0081, 0.0077, 0.0034, 0.0032, 0.003, 0.0018], [0.4209, 0.3714, 0.0185, 0.0082, 0.0082, 0.0041, 0.0041, 0.0039], [0.4625, 0.3179, 0.0216, 0.0191, 0.0158, 0.0075, 0.0045, 0.0045]], "ranks": {"Kotlin": [201596, 139203, 129146, 11652, 27870, 41440, 76771, 101025, 78325, 150539, 101891, 23673, 24012, 30281, 122387, 24647, 67245, 28151, 118508, 150585, 198257, 102765, 80299, 137796, 79718, 22591, 20959, 47592, 34550, 8711, 8076, 30319, 35329, 3867, 3290, 59, 7, 12, 17, 5, 3, 4, 3, 1, 2, 3, 10, 10, 2, 3, 8, 4, 1, 2, 1, 1, 1, 1, 1, 3, 4, 9, 4]}}, {"pos": 505, "top": [[" \u2013", "\u2013", ",", ".", "en", "i", ".\u2013", "\u2013and"], [" \u2013", "\u2013", " \u2013**", " *\u2013", "\u2013and", " \u2013,", "\u2013\u2013", "**\u2013"], [" \u2013", "\u2013", ".\u2013", " \u2013**", " *\u2013", "\u2013and", "**\u2013", " \u2013,"], [" **\u201e", "``", " milfs", " *\u201e", " **:**", " ``(", " YYS", " ``"], [" *@", " *\u2013", " *\u201e", "i", " *", " -*", "iho", " *\\"], [" **\u2013", " *\u2013", "  ", "i", " \u2013**", "\u65b0\u52a0\u5761", "\ufffd", "ihi"], [" *", " *-", "  \n\n\n", "i", "  \n\n", "   \n\n", "  ", " *\u2013"], ["   \n\n", "  \n\n\n", " *-", "  \n\n", " *", " **\u201e", " *_", " **\u2013"], ["   \n\n", "  \n\n", "  \n\n\n", " *", "       \n\n", "    \n\n", " \n\n", "        \n\n"], ["i", "/native", " Native", " NAT", " *\u2013", " **\u2013", "  \n\n\n", "\u6e21\u5047"], ["i", " Native", "-_", " _", "  \n\n", "-inspired", " **\u2013", "/native"], [" **", " **\u201e", " transformative", " **\u2013", " **'", " **\u2018", " **\u00ab", " Native"], [" **\u201e", " transformative", " **\u00ab", " **\u2013", " **", " showcase", " *\u201e", "ielle"], [" transformative", " Indigenous", " Native", " Adaptive", "ielle", "-esque", " Hybrid", " iconic"], [" transformative", " locales", " showcase", "i", " iconic", " Native", "-esque", " Dual"], [" utilizing", " showcase", " utilized", " iconic", " showcasing", " Util", " Dual", "-esque"], ["i", "-esque", " showcase", " iconic", " utilizing", " Dual", " Hybrid", " locales"], ["-esque", " Adaptive", " hubs", " showcase", " Hybrid", " Modular", "ielle", " Dual"], ["-esque", " ;;^", "iach", "ielle", " Gabrie", "iaya", "iace", "i"], ["iach", " NAT", "i", " Native", "ielle", "utilus", " Global", " locales"], ["i", " \n\n", "   \n\n", "  \n\n", " \r\n\r\n", " NAT", " Native", "iach"], [" ;;^", "iach", "ielle", " **\u201e", " milfs", " Hidal", " Gabrie", " **:"], [" Native", " ``", " __", "iach", " NAT", "i", " \u2013**", " Modern"], ["i", " \u2013", " Modern", " NAT", " Native", " \r\n \r\n", " \n\n\n", " \n\n"], [" \n\n", " \r\n\r\n", "   \n\n", "  \n\n", "\r\n\r\n", " \n\n\n", "  \r\n\r\n", " __"], [" __", " \n\n", " **", " *__", " \r\n\r\n", " **^", "   \n\n", " technologies"], [" technologies", " **^", " *__", " toolkit", "-metal", " environments", " ;;^", " technology"], [" \n\n", "\n\n", " __", "\r\n\r\n", " \r\n\r\n", "  \n\n", "   \n\n", " _"], [" __", " \n\n", " technologies", "\n\n", " _", " technology", " **", " **\u2013"], [" __", " **", " ___", " **:", "...**", "(__", " **\u2013", " **."], [" __", " **", " **.", " **:", " technologies", " ___", " technology", " **,"], [" **", " .", " technology", " __", " ...", " technologies", " *", " **."], [" technology", " **", " technologies", " *", " tech", " environments", " \u2013", " hybrids"], [" technologies", " tech", " technology", " environments", " hybrids", " labs", " engines", " versions"], [" tech", " technologies", " hybrids", " technology", " **", " labs", " hybrid", " environments"], [" **\u2013", " \u2013", " \u2013**", "**\u2013", " **", " -**", " *\u2013", " hybrids"], [" engines", " hybrids", " Hybrid", " tech", " technologies", " hybrid", " **\u2013", " Engine"], [" Hybrid", " hybrids", " hybrid", " engines", " Engine", " Native", " engine", " Software"], [" Native", " engines", " Hybrid", " Engine", " iOS", " Software", " engine", " hybrids"], [" Russian", "\u8499\u53e4", " Siber", "Russian", " Native", "\u4fc4\u7f57\u65af", " LLVM", " Mongolia"], [" Russian", " LLVM", " Metal", " Engine", " engines", " engine", " Native", " Siber"], [" Russian", " LLVM", " Metal", " Engine", " engines", " engine", " Siber", " Native"], [" LLVM", " Russian", " Metal", " engines", " Engine", " Software", " engine", " Siber"], [" LLVM", " Software", " Hybrid", " Metal", " Engine", " engines", " Native", " Russian"], [" LLVM", " Hybrid", " versions", " engines", " workflows", " Metal", " hybrids", " Software"], [" Hybrid", " versions", " hybrids", " LLVM", " equivalents", " hybrid", " Metal", " Transition"], [" equivalents", " Hybrid", " hybrids", " workflows", " hybrid", " versions", " conversions", " LLVM"], [" (~", " (", " (**", "/", " Hybrid", " (.", " Transition", " equivalents"], [" (~", " (", " equivalents", " (.", " hybrids", " conversions", " variants", " engines"], [" (~", " equivalents", " variants", " (.", "/N", " engines", " kits", " conversions"], ["/N", " equivalents", "-native", " Toolkit", "/Linux", " engines", "++.", "/native"], [" (", " (.", " (**", " runtime", " (~", "(N", " Runtime", " ()."], [" (", " runtime", " (**", " LLVM", "runtime", " (.", " (::", " ()."], ["runtime", " runtime", " Runtime", " LLVM", " (**", " compiler", " Kotlin", " Compiler"], [" runtime", "runtime", " Runtime", " compiler", " JVM", "-runtime", " Kotlin", " allocator"], [" runtime", "runtime", " JVM", " LLVM", " Runtime", "-runtime", " allocator", "/runtime"], [" runtime", " LLVM", "runtime", " Kotlin", " JVM", " Runtime", "/runtime", " memory"], [" VM", " JVM", " LLVM", " runtime", "VM", " Heap", " heap", "runtime"], [" LLVM", " heap", " Heap", " runtime", " compiler", "runtime", " Runtime", " JVM"], [" heap", " runtime", " LLVM", " Heap", " memory", " Runtime", " ABI", " VM"], [" runtime", " Runtime", " heap", "runtime", "/runtime", " RT", "/Runtime", " LLVM"], [" runtime", " Runtime", " RT", " heap", " RTS", " LLVM", " ABI", "/Runtime"], [" ABI", " Runtime", " runtime", " RT", " LLVM", " VM", " Memory", " Heap"]], "p": [[0.9322, 0.0526, 0.0049, 0.0046, 0.0012, 0.0009, 0.0007, 0.0004], [0.9858, 0.0066, 0.004, 0.0013, 0.0005, 0.0004, 0.0003, 0.0001], [0.8094, 0.1594, 0.007, 0.007, 0.0062, 0.0037, 0.0033, 0.002], [0.028, 0.0263, 0.0218, 0.016, 0.016, 0.0132, 0.0124, 0.011], [0.1714, 0.081, 0.0298, 0.0298, 0.028, 0.0181, 0.0132, 0.0117], [0.0216, 0.0216, 0.0202, 0.0168, 0.0066, 0.0062, 0.0058, 0.0048], [0.1072, 0.0476, 0.0307, 0.0255, 0.0239, 0.0225, 0.0225, 0.0186], [0.069, 0.0648, 0.0445, 0.0393, 0.0369, 0.0306, 0.0186, 0.0174], [0.3672, 0.1965, 0.0928, 0.0207, 0.0183, 0.0152, 0.0098, 0.0092], [0.0106, 0.0088, 0.0088, 0.006, 0.0044, 0.0037, 0.0037, 0.0032], [0.1471, 0.0113, 0.0094, 0.0069, 0.0065, 0.0054, 0.005, 0.0047], [0.0274, 0.0274, 0.0101, 0.0084, 0.0078, 0.0065, 0.0061, 0.0051], [0.0572, 0.0128, 0.0093, 0.0082, 0.0064, 0.0044, 0.0039, 0.0037], [0.0156, 0.0045, 0.0045, 0.0042, 0.0035, 0.0035, 0.0033, 0.0033], [0.0075, 0.0062, 0.0052, 0.0052, 0.0046, 0.0046, 0.0043, 0.0043], [0.0246, 0.0096, 0.007, 0.007, 0.0066, 0.0062, 0.0058, 0.0055], [0.0137, 0.0107, 0.0065, 0.0065, 0.0065, 0.0054, 0.0047, 0.0045], [0.0056, 0.0034, 0.0034, 0.003, 0.0028, 0.0028, 0.0025, 0.0025], [0.0063, 0.0059, 0.0056, 0.0043, 0.0041, 0.003, 0.003, 0.0026], [0.0081, 0.0049, 0.0043, 0.0026, 0.0026, 0.0022, 0.0021, 0.0019], [0.0398, 0.0156, 0.0121, 0.0101, 0.0033, 0.0033, 0.0025, 0.0024], [0.0211, 0.0053, 0.005, 0.0044, 0.0032, 0.003, 0.003, 0.0025], [0.007, 0.0058, 0.0055, 0.0048, 0.004, 0.0037, 0.0035, 0.0033], [0.0397, 0.0078, 0.005, 0.0042, 0.0042, 0.0035, 0.0035, 0.0033], [0.2901, 0.1002, 0.0885, 0.0445, 0.0287, 0.0164, 0.0164, 0.0164], [0.0204, 0.015, 0.0117, 0.0117, 0.0097, 0.0091, 0.008, 0.0075], [0.0117, 0.0049, 0.0046, 0.0043, 0.004, 0.0038, 0.0038, 0.0033], [0.5382, 0.2542, 0.0728, 0.0135, 0.0135, 0.0082, 0.0064, 0.005], [0.1825, 0.081, 0.0232, 0.008, 0.0075, 0.0075, 0.0075, 0.0066], [0.4803, 0.0835, 0.037, 0.0239, 0.0145, 0.0145, 0.0145, 0.0128], [0.2293, 0.2023, 0.0451, 0.0424, 0.0129, 0.0089, 0.0078, 0.0069], [0.037, 0.0327, 0.0224, 0.0198, 0.0154, 0.012, 0.0113, 0.0083], [0.0354, 0.0244, 0.0229, 0.013, 0.0122, 0.0122, 0.0122, 0.0102], [0.075, 0.0333, 0.0333, 0.0202, 0.013, 0.0122, 0.0102, 0.009], [0.0434, 0.0408, 0.0218, 0.0193, 0.0181, 0.017, 0.011, 0.011], [0.0575, 0.0175, 0.0155, 0.0155, 0.0113, 0.0113, 0.0094, 0.0088], [0.0155, 0.0128, 0.012, 0.01, 0.0094, 0.0083, 0.0083, 0.0083], [0.0308, 0.0199, 0.0175, 0.0145, 0.012, 0.0113, 0.01, 0.0078], [0.0232, 0.0192, 0.0181, 0.017, 0.0117, 0.0117, 0.011, 0.0097], [0.1213, 0.0224, 0.0186, 0.0154, 0.0154, 0.0136, 0.0128, 0.0128], [0.1331, 0.0358, 0.0262, 0.0246, 0.0231, 0.0159, 0.0159, 0.0149], [0.0984, 0.0868, 0.0282, 0.0282, 0.0265, 0.0234, 0.0194, 0.0182], [0.0913, 0.0316, 0.0279, 0.0231, 0.0231, 0.0204, 0.0204, 0.0169], [0.0418, 0.0238, 0.021, 0.0198, 0.0198, 0.012, 0.0113, 0.0106], [0.0344, 0.0285, 0.0196, 0.0153, 0.0153, 0.0135, 0.0127, 0.0119], [0.0351, 0.0291, 0.02, 0.0166, 0.0138, 0.0138, 0.0129, 0.0121], [0.045, 0.0256, 0.0212, 0.0187, 0.0165, 0.0165, 0.0107, 0.0089], [0.0901, 0.0747, 0.0293, 0.0228, 0.0201, 0.0177, 0.0122, 0.0115], [0.1573, 0.0423, 0.0213, 0.0188, 0.0137, 0.0074, 0.0069, 0.0069], [0.0535, 0.0392, 0.0127, 0.0119, 0.0119, 0.0082, 0.0077, 0.0077], [0.0556, 0.0263, 0.0124, 0.0117, 0.0103, 0.0103, 0.0097, 0.0091], [0.2121, 0.0346, 0.0325, 0.0253, 0.021, 0.0197, 0.0164, 0.0164], [0.1177, 0.0861, 0.0592, 0.0522, 0.0407, 0.0337, 0.028, 0.028], [0.1177, 0.0976, 0.0556, 0.0522, 0.0407, 0.0382, 0.0192, 0.017], [0.3555, 0.2156, 0.0793, 0.0375, 0.0375, 0.0242, 0.0227, 0.0213], [0.4354, 0.1602, 0.0589, 0.038, 0.0357, 0.0296, 0.0231, 0.0204], [0.2644, 0.2059, 0.0757, 0.0358, 0.0336, 0.0336, 0.0231, 0.0217], [0.2377, 0.1442, 0.1272, 0.0772, 0.0601, 0.0322, 0.0284, 0.0284], [0.1841, 0.1841, 0.1624, 0.0985, 0.0362, 0.0301, 0.0249, 0.0194], [0.4536, 0.1147, 0.0788, 0.0478, 0.035, 0.0329, 0.0329, 0.0309], [0.755, 0.1312, 0.0258, 0.0138, 0.0138, 0.0084, 0.0084, 0.0074], [0.6019, 0.2214, 0.034, 0.016, 0.0151, 0.0142, 0.0125, 0.0091], [0.2299, 0.1394, 0.09, 0.0746, 0.0701, 0.0619, 0.0425, 0.0353]], "ranks": {"Kotlin": [64440, 30752, 10424, 934, 3804, 15972, 13415, 29311, 58417, 108868, 78954, 25727, 18472, 46196, 83062, 66102, 62232, 23368, 36243, 59720, 51935, 5303, 1103, 13772, 3298, 261, 156, 1072, 579, 524, 563, 5642, 4366, 1041, 881, 117, 36, 28, 23, 11, 15, 10, 9, 12, 16, 39, 120, 204, 136, 246, 197, 104, 11, 7, 7, 10, 4, 11, 28, 107, 152, 279, 161]}}, {"pos": 506, "top": [[" \u2013", ".", ",", "\u2013", "s", ";", "o", "y"], [" \u2013", "\u2013", ",", "s", "\u2013and", "\u2011", "\u2013\u2013", "."], ["\u2013", ",", ".", " \u2013", ".\u2013", "\u2026", ";", "\u2013and"], [" milfs", " Shemale", " Blowjob", " cumshot", "eless", "\uff0a\uff0a\uff0a\uff0a", "ebrit", "\uff1d\uff1d\uff1d\uff1d"], ["s", "e", "y", "a", "t", "auf", "sWith", "en"], [".", "a", "\u2026..", "s", "t", "auf", "\u2026.", "sWith"], ["s", "t", ".", "\u2026\u2026", "a", "\u3002", "y", "e"], ["s", ".", "y", "t", "\u2026..", ".\u2013", "eur", "\u2026."], [".", ",", "\u2026..", "\u2026.", "s", ".\u201d", "y", ".\u201c"], [",", ".", "s", "\u2013", ".\u2013", "y", ";", "\u2026"], [".", "o", "y", "s", ",", "a", "d", "t"], ["y", "s", " veggies", "eur", "o", "aire", " goodies", "ive"], ["y", "o", " veggies", "s", "eur", "er", "u", "al"], ["y", "o", "aire", "-esque", " veggies", " savvy", " vibe", " funky"], ["o", "y", "l", "d", "n", "e", "a", "s"], ["o", " whilst", "y", "s", "e", "n", " touted", " amongst"], ["o", "s", "y", "a", "e", "n", "d", "t"], ["o", "y", "s", " whilst", "n", "kids", " meds", " tech"], ["o", "s", " whilst", " akin", " meds", "kids", " touted", "y"], [" Catalu", "Whilst", " whilst", "\u5982\u82e5", " Fortal", "\u4ea6\u6216\u662f", " arguably", "kids"], [" though", " whilst", "Though", "Whilst", " arguably", " ultimately", "s", "d"], [" ;;^", " Fortal", " Catalu", " Nuest", " Hidal", "nheim", " milfs", "\u65e0\u65f6\u65e0\u523b"], [" Catalu", " ;;^", " ``", "\u5927\u90e8\u4efd", " Fortal", " --", " arguably", "\u9739"], [" ultimately", " --", " arguably", " ,", " whilst", " much", " notably", " ultimate"], [" --", " though", " whilst", " arguably", "Though", "Whilst", "\u627e\u5bfb", " requisite"], [" Catalu", " Americas", " geopol", " ;;^", " tech", " Fortal", " arguably", " academia"], [" tech", " industry", " arguably", " Americas", " ultimately", " geopol", " technology", " academia"], ["\n\n", " \n\n", "\r\n\r\n", " --", " \r\n\r\n", "  \n\n", " ?", " ..."], [" \n\n", " ?", " ,", " .", " ...", "?", "\n\n", " \n"], [" ...", " \n", " .", " ?", "\u2011", " ____", "...", " **"], [" .", " ,", " \n", " ?", " complex", " via", " ...", " technology"], [" .", " ,", " ...", " ", " in", " ?", " complex", " for"], [" .", " but", " mostly", " ,", " ultimately", ".", " complex", " often"], [" tech", " but", " ultimately", " hybrid", " modern", " hybrids", " complex", " technology"], [" hybrid", " tech", " hybrids", " but", " technically", "but", " via", "-but"], [" hybrid", " hybrids", " tech", " elsewhere", "\u2014but", " but", " Europe", " UK"], [" Android", " hybrid", " tech", " hybrids", " elsewhere", " Europe", " Hybrid", " Tech"], [" Android", " hybrid", " hybrids", " tech", " iOS", " elsewhere", " Hybrid", " technically"], [" Android", " iOS", "Android", " tech", " hybrid", " hybrids", " elsewhere", " technically"], [" iOS", " Russia", " Android", " Russian", " Siber", " Nordic", " Arctic", " Scandin"], [" iOS", " Android", " Russian", " Russia", " Siber", " Native", " Nordic", " Arctic"], [" iOS", " Android", " Siber", " Russia", " Russian", " Native", " Nordic", " Arctic"], [" iOS", " Siber", " Android", " Russia", " Native", " Russian", " Scandin", " Nordic"], [" iOS", " Android", " Native", " Siber", " Arctic", " Russia", " elsewhere", " Euras"], [" iOS", " elsewhere", " Android", " Siber", " Russia", " Asia", " Native", " Euras"], [" elsewhere", " iOS", " Android", " Asia", " Russia", " hybrids", " Siber", " Scandin"], [" elsewhere", " iOS", " hybrids", " Hybrid", " Android", " via", " hybrid", " Asia"], [" elsewhere", " other", " via", " Other", " iOS", " hybrids", " others", " later"], [" elsewhere", " via", ").", " iOS", " other", "\u5176\u4ed6\u5730\u533a", " others", " later"], [" elsewhere", "\u5176\u4ed6\u5730\u533a", "\u5176\u4ed6\u56fd\u5bb6", "-other", " others", "\u5176\u4ed6\u5730\u65b9", " other", "(other"], [" elsewhere", "\u5176\u4ed6\u5730\u533a", "\u5176\u4ed6\u56fd\u5bb6", "/etc", "-other", "(other", "\u5176\u4ed6\u5730\u65b9", "\u5728\u5176\u4ed6"], [" iOS", " Android", "/Linux", " elsewhere", "\u5176\u4ed6\u5730\u533a", "\u5728\u5176\u4ed6", ".iOS", "-other"], [" iOS", " Android", "/Linux", "Android", ".iOS", " elsewhere", " Kotlin", "iOS"], [" iOS", " Android", "Android", ".iOS", "iOS", "/Linux", " iPad", "-android"], [" iOS", " Android", "Android", "iOS", "/Linux", " Kotlin", "-android", ".iOS"], [" iOS", " Android", " Kotlin", "iOS", "Android", " IOS", " elsewhere", "-ios"], [" iOS", " Android", " Kotlin", "iOS", "Android", " IOS", " JVM", ".iOS"], [" iOS", " Desktop", " Android", " desktop", "iOS", "desktop", "Desktop", " Kotlin"], [" Desktop", " desktop", " iOS", "desktop", "Desktop", "/desktop", "-desktop", "/Desktop"], [" iOS", " Desktop", " desktop", "iOS", "desktop", "Desktop", " IOS", "/desktop"], [" iOS", " Desktop", " desktop", "desktop", "iOS", "Desktop", "/desktop", "-desktop"], [" iOS", " Desktop", "iOS", " desktop", "Desktop", "desktop", "-desktop", "/Desktop"], ["iOS", " iOS", "Desktop", " Desktop", "desktop", "Linux", " desktop", "Android"]], "p": [[0.7087, 0.1087, 0.0959, 0.0747, 0.0048, 0.0023, 0.0011, 0.0008], [0.6445, 0.2687, 0.0063, 0.0059, 0.0056, 0.0052, 0.0014, 0.0013], [0.6039, 0.3233, 0.0437, 0.0207, 0.0036, 0.0013, 0.0012, 0.001], [0.0098, 0.0036, 0.0026, 0.0025, 0.0022, 0.0022, 0.002, 0.0019], [0.0826, 0.0415, 0.0323, 0.0285, 0.0237, 0.0209, 0.0209, 0.0163], [0.0279, 0.0204, 0.017, 0.0141, 0.0124, 0.0103, 0.0091, 0.0085], [0.6898, 0.0683, 0.0343, 0.0323, 0.0285, 0.0251, 0.0236, 0.0196], [0.3266, 0.106, 0.0442, 0.0268, 0.0196, 0.0119, 0.0099, 0.0068], [0.8724, 0.016, 0.0132, 0.0097, 0.0086, 0.0075, 0.0043, 0.0038], [0.7838, 0.0568, 0.0163, 0.0119, 0.0068, 0.0056, 0.0036, 0.0027], [0.4568, 0.1155, 0.09, 0.09, 0.0701, 0.0425, 0.0227, 0.0177], [0.0501, 0.0173, 0.0112, 0.0093, 0.0068, 0.006, 0.0044, 0.0041], [0.0867, 0.041, 0.0206, 0.0206, 0.0081, 0.0076, 0.0063, 0.0055], [0.0384, 0.036, 0.0097, 0.0097, 0.0071, 0.0071, 0.0067, 0.0059], [0.2054, 0.0553, 0.0203, 0.0203, 0.0169, 0.0131, 0.0123, 0.0085], [0.1065, 0.0779, 0.0223, 0.0135, 0.0105, 0.0105, 0.0077, 0.0077], [0.3672, 0.1629, 0.0563, 0.0321, 0.0283, 0.0207, 0.0183, 0.0142], [0.1222, 0.0165, 0.0094, 0.0073, 0.005, 0.0047, 0.0042, 0.0042], [0.0148, 0.009, 0.0054, 0.0045, 0.0042, 0.004, 0.004, 0.0037], [0.004, 0.0033, 0.0033, 0.0024, 0.0023, 0.0022, 0.0018, 0.0015], [0.0048, 0.0045, 0.0045, 0.0037, 0.0035, 0.0035, 0.0026, 0.0023], [0.0097, 0.0052, 0.0046, 0.0016, 0.0016, 0.0013, 0.0012, 0.001], [0.004, 0.0028, 0.0022, 0.002, 0.0019, 0.0016, 0.0014, 0.0011], [0.0108, 0.009, 0.0051, 0.0042, 0.0031, 0.0031, 0.0031, 0.0029], [0.0227, 0.0114, 0.0107, 0.0095, 0.0079, 0.0069, 0.0045, 0.004], [0.0037, 0.0024, 0.0024, 0.0024, 0.0018, 0.0017, 0.0016, 0.0015], [0.0057, 0.0048, 0.0042, 0.0035, 0.0035, 0.0031, 0.0027, 0.0024], [0.6101, 0.2882, 0.0056, 0.0044, 0.0044, 0.0041, 0.0036, 0.0028], [0.1087, 0.0959, 0.0582, 0.0258, 0.0214, 0.0167, 0.013, 0.0115], [0.323, 0.1526, 0.0386, 0.03, 0.0282, 0.0265, 0.0171, 0.0142], [0.308, 0.0444, 0.0368, 0.0185, 0.0093, 0.0093, 0.0093, 0.0087], [0.3544, 0.0351, 0.031, 0.0146, 0.0129, 0.0083, 0.0078, 0.0074], [0.1698, 0.0457, 0.0277, 0.026, 0.023, 0.0203, 0.0148, 0.0123], [0.0478, 0.0449, 0.035, 0.0328, 0.0226, 0.0212, 0.0212, 0.0176], [0.0907, 0.0907, 0.0853, 0.0624, 0.0123, 0.0108, 0.0108, 0.0102], [0.0753, 0.0551, 0.0457, 0.0277, 0.0277, 0.0245, 0.0203, 0.019], [0.0916, 0.0861, 0.0861, 0.067, 0.0218, 0.0192, 0.018, 0.0124], [0.2775, 0.0702, 0.0513, 0.0453, 0.0275, 0.0258, 0.0214, 0.0101], [0.7015, 0.0892, 0.0155, 0.0113, 0.01, 0.0083, 0.005, 0.0037], [0.1551, 0.0732, 0.0646, 0.0536, 0.0368, 0.0325, 0.0174, 0.0163], [0.1373, 0.1069, 0.0886, 0.0538, 0.0419, 0.0326, 0.0254, 0.0211], [0.2574, 0.1216, 0.1008, 0.0651, 0.054, 0.0307, 0.0186, 0.0165], [0.1998, 0.1139, 0.0944, 0.0505, 0.0393, 0.0326, 0.0254, 0.0211], [0.2047, 0.1029, 0.0624, 0.0587, 0.0244, 0.023, 0.0216, 0.0179], [0.1774, 0.1146, 0.0576, 0.029, 0.024, 0.024, 0.024, 0.0199], [0.223, 0.093, 0.0498, 0.0364, 0.025, 0.0172, 0.0172, 0.0143], [0.2718, 0.0503, 0.0368, 0.0237, 0.0237, 0.0163, 0.0144, 0.0119], [0.5385, 0.0304, 0.0237, 0.0196, 0.0163, 0.0105, 0.0099, 0.0093], [0.6618, 0.0397, 0.0373, 0.0156, 0.0114, 0.0114, 0.0094, 0.0061], [0.797, 0.0329, 0.0114, 0.0107, 0.0094, 0.0065, 0.0061, 0.0061], [0.3233, 0.087, 0.087, 0.0363, 0.0234, 0.0207, 0.0194, 0.0194], [0.4553, 0.1675, 0.1016, 0.048, 0.0146, 0.0129, 0.0121, 0.0114], [0.5159, 0.3546, 0.033, 0.0137, 0.0107, 0.0054, 0.0042, 0.0042], [0.6124, 0.3278, 0.0144, 0.0068, 0.0068, 0.0032, 0.0028, 0.0024], [0.5445, 0.424, 0.0128, 0.006, 0.0022, 0.0022, 0.0011, 0.0011], [0.8827, 0.0821, 0.0111, 0.0087, 0.0036, 0.0017, 0.0015, 0.0012], [0.8459, 0.101, 0.0289, 0.0121, 0.005, 0.001, 0.0007, 0.0006], [0.7341, 0.1638, 0.0365, 0.0365, 0.0092, 0.0056, 0.0039, 0.0021], [0.8428, 0.1007, 0.0225, 0.0154, 0.0136, 0.0024, 0.0011, 0.0006], [0.7791, 0.1534, 0.0498, 0.0076, 0.0041, 0.0028, 0.0008, 0.0007], [0.7154, 0.1809, 0.0854, 0.0055, 0.0048, 0.0033, 0.0012, 0.0011], [0.8944, 0.0572, 0.021, 0.0145, 0.0032, 0.0032, 0.0015, 0.0012], [0.7319, 0.1122, 0.0771, 0.0364, 0.0195, 0.0041, 0.0028, 0.0028]], "ranks": {"Kotlin": [209874, 160792, 117218, 16431, 37010, 82386, 102660, 121543, 153175, 180913, 199220, 133185, 115370, 124381, 210412, 139064, 88126, 93764, 118688, 174600, 203501, 135020, 148778, 187652, 168788, 25544, 18746, 47713, 14885, 10543, 17376, 38803, 48202, 40709, 19049, 2817, 125, 130, 101, 36, 47, 21, 23, 29, 36, 46, 50, 77, 53, 42, 54, 74, 7, 9, 5, 3, 3, 8, 17, 25, 24, 32, 39]}}, {"pos": 507, "top": [["  \n", " \u200b\u200b", "   \n", " [\u2026]", "@\"", "  \n\n", "\ufffd", "#####"], [" \u200b\u200b", "  \n", "   \n", "  \n\n", "  \n    \n", " \u24d8", " \t\n", " FIG"], [" \u200b\u200b", "  \n", "\u200b", "\u2013", "   \n", ":\"", " \u200b", "\u2026.."], [" \u200b\u200b", " ;;^", " ____", " iOS", " -->", "\n    \n    \n", "~-~-", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9"], [" \u200b\u200b", "   \n", "  \n", " FIG", ".\ufffd", " \t\n", "@\\", " iOS"], [" \u200b\u200b", "   \n", " \t\n", " iOS", "(iOS", " FIG", "  \n", "FIG"], [" \u200b\u200b", "  \n", "   \n", ".\ufffd", " \u00a0", " \t\n", "\u200b\u200b", ".\u00bb"], [" \u200b\u200b", "   \n", "  \n", ".\ufffd", " \t\n", " iOS", ".png", "\u200b\u200b"], [" \u200b\u200b", ".", "  \n", "   \n", ".\ufffd", ".\u00bb", " \t\n", ","], [" \u200b\u200b", ",", ".", ".\ufffd", "  \n", ";", "   \n", " \t\n"], [" \u200b\u200b", ".", ".\ufffd", ",", " iOS", ".png", "  \n", " \t\n"], [" \u200b\u200b", " iOS", ".iOS", "-ios", "(iOS", " macOS", " iPhone", ".\ufffd"], [" \u200b\u200b", " iOS", "(iOS", ".iOS", "-ios", " macOS", " theaters", "-era"], [" \u200b\u200b", " iOS", ".iOS", "(iOS", "-ios", "-era", " iPhone", " theaters"], [" iOS", ".iOS", " \u200b\u200b", "(iOS", "-era", "-ios", " iPhone", " iPhones"], [" iOS", ".iOS", " ;;^", "-ios", "(iOS", "\u51ed\u501f\u7740", "-era", " potentially"], [" iOS", " \u200b\u200b", ".iOS", "(iOS", "-ios", "-era", " potentially", " Siri"], [" \u200b\u200b", " iOS", ".iOS", "(iOS", "-ios", " ;;^", " Siri", "-era"], [" iOS", ".iOS", "(iOS", " \u200b\u200b", " ;;^", "-ios", " macOS", " iCloud"], [" iOS", ".iOS", "(iOS", " \u200b\u200b", "-ios", " ;;^", " iCloud", " macOS"], [" iOS", ".iOS", "(iOS", "-ios", " iCloud", " ;;^", "iOS", " macOS"], [" ;;^", " iOS", ".iOS", "(iOS", " iCloud", "-ios", "\u9605\u8bfb\u672c\u6587\u524d", "~-~-"], [" iOS", ".iOS", "(iOS", "iOS", " ;;^", " iCloud", " iPhones", "-ios"], [" iOS", ".iOS", "iOS", " iCloud", " iPhones", "(iOS", " iPhone", " ,"], [" iOS", ".iOS", "iOS", "(iOS", " iPhone", " iCloud", "-ios", " iPhones"], [" iOS", ".iOS", " iPhone", "iOS", "(iOS", " iPhones", " iCloud", "-ios"], [" iOS", " iPhone", " iPhones", ".iOS", "iOS", "-ios", " iPad", "(iOS"], [" iOS", "  \n\n", " iPhone", " iPhones", "iOS", ".iOS", "\n\n", " iPad"], [" iOS", " iPhone", " iPhones", ".iOS", "iOS", " iPad", "-ios", " iCloud"], [" iOS", " iPhone", " iPhones", " ____", "(iOS", " iPad", ".iOS", "iOS"], [" iOS", " .", " iPhones", " iPhone", " ,", " globally", "  \n\n", " iPad"], [" .", " ,", " and", " iOS", " worldwide", " ", " as", " Australia"], [" ,", " .", " and", " but", " worldwide", " as", " only", " "], [" iOS", " globally", " worldwide", " but", " iPhones", " iPhone", " global", " and"], [" iOS", " globally", " but", " iPhones", " iPhone", " global", " worldwide", " iphone"], [" iOS", " globally", " \u200b\u200b", " but", "\u2014but", " iPhone", " worldwide", " iPhones"], [" iOS", " but", " \u200b\u200b", " globally", "\u2014but", " iPhones", " iPhone", " interoper"], [" iOS", " \u200b\u200b", " but", " globally", " iPhone", " iPhones", "(iOS", " iPad"], [" iOS", " \u200b\u200b", " iPhone", " but", "(iOS", " iPhones", " iPad", " globally"], [" iOS", " \u200b\u200b", " iPhone", " iPhones", "(iOS", " iPad", "iOS", " but"], [" iOS", " \u200b\u200b", " iPhone", " iPhones", " iPad", "(iOS", " but", "iOS"], [" iOS", " iPhone", " iPhones", " iPad", "(iOS", " globally", "iOS", " Apple"], [" iOS", " iPhone", " iPhones", " iPad", "(iOS", "iOS", ".iOS", " globally"], [" iOS", " iPhone", " iPhones", " iPad", "(iOS", "iOS", " globally", "/i"], [" iOS", " iPhone", " iPhones", " iPad", " but", " .", " via", " Apple"], [" iOS", " but", " iPhone", "/i", " iPhones", " via", " iPad", " /"], [" iOS", "/i", "/", " via", " /", "/etc", " but", " iPhone"], ["/", "/i", " /", "/I", "/M", "/A", "/G", "/O"], ["/", "/I", "/etc", "/O", "/i", "/G", "/M", "/E"], ["/", "/etc", "/I", "/M", "/O", "/G", "/E", "/S"], ["/etc", "/", "/I", "/i", "/O", "/M", "/G", "/H"], ["/Linux", "/", "/i", "/etc", "/I", "/O", "/M", "/C"], ["/", "/Linux", "/etc", "/I", "/i", "/O", "/M", "/C"], ["/Linux", " iOS", "/etc", "/", " Android", "/i", "/I", " iPad"], [" iOS", "/Linux", " Android", "iOS", "Android", " iPad", "/i", "/android"], ["/Linux", " Android", " iOS", "Android", "/android", "/etc", " macOS", "/mac"], [" Android", "/Linux", " iOS", "Android", "/android", "/Desktop", " Desktop", "iOS"], [" Desktop", " desktop", "/Linux", "/Desktop", "/desktop", "desktop", "Desktop", " Android"], [" Desktop", " desktop", "/desktop", "/Desktop", "Desktop", "desktop", "-desktop", "\u684c\u9762"], [" Desktop", " desktop", "/desktop", "/Desktop", "desktop", "Desktop", "-desktop", "\u684c\u9762"], [" Desktop", " desktop", "/Desktop", "/desktop", "desktop", "Desktop", "-desktop", "/Linux"], ["/Desktop", " Desktop", " desktop", "/desktop", "/Linux", "-desktop", "Desktop", "desktop"], ["/", "/Desktop", ").", "/M", "/D", "/Linux", "/L", "/i"]], "p": [[0.5204, 0.1236, 0.0662, 0.0401, 0.0276, 0.0178, 0.0178, 0.0139], [0.5166, 0.19, 0.139, 0.0101, 0.0101, 0.0051, 0.0033, 0.0027], [0.9595, 0.0073, 0.0021, 0.0019, 0.0017, 0.0009, 0.0006, 0.0006], [0.0474, 0.0224, 0.0186, 0.0073, 0.0064, 0.0057, 0.0053, 0.0044], [0.9575, 0.0027, 0.0022, 0.0015, 0.001, 0.0009, 0.0008, 0.0008], [0.9981, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.997, 0.001, 0.0008, 0.0002, 0.0001, 0.0001, 0.0, 0.0], [0.9984, 0.0004, 0.0002, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9972, 0.0005, 0.0005, 0.0004, 0.0001, 0.0001, 0.0001, 0.0001], [0.8897, 0.0416, 0.0044, 0.0034, 0.003, 0.0022, 0.0022, 0.0021], [0.9926, 0.001, 0.0004, 0.0004, 0.0004, 0.0003, 0.0003, 0.0002], [0.8266, 0.025, 0.0041, 0.0026, 0.0023, 0.0012, 0.001, 0.0008], [0.9533, 0.0053, 0.0009, 0.0007, 0.0005, 0.0002, 0.0002, 0.0002], [0.6994, 0.0239, 0.0061, 0.0044, 0.0029, 0.0022, 0.0009, 0.0009], [0.0825, 0.0268, 0.0252, 0.0099, 0.0099, 0.0077, 0.0047, 0.0039], [0.0422, 0.024, 0.0088, 0.0083, 0.0065, 0.0035, 0.0031, 0.0027], [0.0818, 0.0528, 0.0266, 0.0104, 0.0081, 0.0049, 0.0046, 0.0036], [0.1378, 0.0947, 0.0348, 0.0211, 0.0155, 0.0047, 0.0037, 0.0032], [0.1671, 0.0615, 0.0373, 0.0309, 0.02, 0.0165, 0.0065, 0.005], [0.131, 0.0747, 0.0425, 0.013, 0.0122, 0.0115, 0.0084, 0.0048], [0.1158, 0.0547, 0.0167, 0.0051, 0.0048, 0.0048, 0.0045, 0.004], [0.0961, 0.0703, 0.0275, 0.0243, 0.0058, 0.0051, 0.0048, 0.0042], [0.2379, 0.0726, 0.0152, 0.0105, 0.0087, 0.0081, 0.006, 0.0053], [0.2088, 0.0678, 0.0142, 0.0104, 0.0104, 0.0098, 0.0098, 0.0081], [0.4247, 0.089, 0.054, 0.0211, 0.0145, 0.0137, 0.0137, 0.012], [0.6618, 0.0373, 0.0257, 0.0241, 0.0241, 0.0188, 0.0156, 0.0129], [0.7068, 0.0352, 0.0242, 0.0242, 0.0213, 0.0114, 0.0095, 0.0079], [0.3591, 0.0356, 0.026, 0.023, 0.0148, 0.0148, 0.0115, 0.0102], [0.7279, 0.0362, 0.0282, 0.0151, 0.0142, 0.0133, 0.0049, 0.0049], [0.616, 0.0419, 0.0347, 0.0254, 0.0175, 0.0175, 0.0145, 0.0094], [0.4622, 0.0379, 0.0335, 0.0278, 0.0216, 0.0131, 0.0102, 0.008], [0.2015, 0.157, 0.0741, 0.0129, 0.0121, 0.01, 0.0073, 0.0065], [0.2164, 0.1686, 0.1488, 0.0258, 0.0101, 0.0101, 0.0095, 0.0074], [0.173, 0.0721, 0.0282, 0.0234, 0.0207, 0.0171, 0.0133, 0.0104], [0.2801, 0.1323, 0.0356, 0.0203, 0.0191, 0.0158, 0.0139, 0.0075], [0.2256, 0.1134, 0.0688, 0.0688, 0.0287, 0.0253, 0.0223, 0.021], [0.3362, 0.075, 0.0705, 0.0705, 0.0215, 0.0167, 0.0167, 0.0122], [0.5652, 0.0526, 0.0361, 0.0281, 0.0193, 0.0117, 0.0104, 0.0104], [0.7703, 0.0463, 0.0181, 0.016, 0.011, 0.0091, 0.008, 0.0067], [0.6729, 0.1411, 0.0203, 0.0131, 0.0109, 0.0096, 0.0075, 0.0045], [0.8054, 0.0332, 0.0276, 0.0139, 0.0115, 0.0084, 0.0061, 0.0048], [0.9218, 0.0191, 0.0102, 0.007, 0.004, 0.0038, 0.0035, 0.0023], [0.9236, 0.014, 0.0103, 0.0062, 0.0055, 0.004, 0.0029, 0.0024], [0.8517, 0.0188, 0.0101, 0.0078, 0.0069, 0.0037, 0.0033, 0.0029], [0.7246, 0.0318, 0.0264, 0.0117, 0.0086, 0.0067, 0.004, 0.0034], [0.4749, 0.0415, 0.0268, 0.0209, 0.0173, 0.0153, 0.0112, 0.0105], [0.2137, 0.0652, 0.0652, 0.0349, 0.0212, 0.0187, 0.0187, 0.0137], [0.7439, 0.042, 0.0225, 0.0198, 0.0154, 0.0128, 0.0106, 0.0094], [0.5953, 0.0381, 0.0336, 0.0296, 0.0296, 0.0262, 0.0262, 0.0159], [0.178, 0.0953, 0.0953, 0.0742, 0.0742, 0.0578, 0.0397, 0.0397], [0.1703, 0.1703, 0.1033, 0.0912, 0.0805, 0.0431, 0.0335, 0.0261], [0.3191, 0.1708, 0.1174, 0.0807, 0.0628, 0.0381, 0.0381, 0.014], [0.39, 0.2087, 0.0768, 0.0363, 0.032, 0.0249, 0.022, 0.0151], [0.3104, 0.1294, 0.1008, 0.0693, 0.0611, 0.0476, 0.0289, 0.0175], [0.4273, 0.3771, 0.0953, 0.0241, 0.0188, 0.0069, 0.0069, 0.0069], [0.7021, 0.1383, 0.035, 0.0308, 0.0165, 0.0088, 0.0069, 0.0061], [0.3556, 0.3138, 0.0793, 0.0618, 0.0227, 0.0201, 0.0177, 0.0156], [0.4221, 0.2901, 0.0942, 0.0733, 0.0647, 0.0144, 0.0127, 0.0099], [0.6427, 0.3036, 0.0194, 0.0118, 0.0104, 0.0092, 0.0026, 0.0003], [0.5857, 0.3553, 0.0257, 0.0138, 0.0074, 0.0065, 0.0051, 0.0003], [0.5017, 0.3907, 0.0679, 0.022, 0.0072, 0.0043, 0.0043, 0.001], [0.3812, 0.2969, 0.204, 0.0516, 0.0167, 0.0115, 0.0062, 0.0062], [0.8382, 0.0473, 0.0368, 0.0154, 0.0135, 0.0093, 0.0044, 0.0044]], "ranks": {"Kotlin": [126836, 62211, 64444, 7566, 15076, 17314, 35099, 58776, 77558, 118123, 95480, 50331, 51627, 104176, 144919, 135047, 95892, 51214, 53568, 87337, 72551, 33181, 28685, 87681, 54686, 36147, 34892, 67128, 42525, 25055, 47832, 65408, 76592, 16888, 13035, 14120, 7909, 9333, 7407, 3789, 5129, 3495, 3556, 6322, 11321, 15176, 22442, 26260, 22993, 10598, 2396, 1460, 425, 232, 103, 64, 23, 38, 72, 100, 150, 280, 619]}}, {"pos": 508, "top": [["s", "es", "y", " \u2013", "e", "t", "o", "en"], ["s", "es", "y", " @", " [@", " (@", " \u2013", "@\""], ["s", "es", "y", "@\"", "@\",", "[^", "t", " (@"], ["s", "es", "\u05d9\u05dd", "siz", "\u0627\u062a", "suite", "satz", " *\\"], ["s", "es", " (@", " *@", "\u0627\u062a", " @", " @$", " @_"], ["s", "es", "siz", "\u0627\u062a", "\u05d9\u05dd", "\u044b", "suite", "sor"], ["s", "es", "\u0627\u062a", "siz", "suite", "-&", "sor", " @"], ["s", "es", "\u0627\u062a", "suite", "siz", " *@", " #{@", " @"], ["s", "es", "suite", " [@", "\u0627\u062a", " *@", "-&", " #{@"], ["s", "es", "siz", "suite", "\u0627\u062a", "-&", "schild", " #{@"], ["s", "es", " @", "@", " [@", "-&", "\u0627\u062a", " (@"], ["s", "es", "suite", "siz", "\u0627\u062a", " #{@", "schirm", "\u044b"], ["s", "es", "siz", "suite", "\u0627\u062a", "\u044b", "szer", "schirm"], ["s", "siz", "suite", "es", "schirm", "\u062a", "trom", "szer"], ["s", "siz", "suite", "es", "schirm", "\u062a", "\u0627\u062a", "trom"], ["s", "es", "siz", "suite", "schirm", " whilst", "\u062a", " Desktop"], ["s", "es", "siz", "suite", "\u062a", "\u0627\u062a", " Desktop", "szer"], ["s", "es", "siz", "suite", "szer", "schirm", " Desktop", "\u062a"], ["s", "suite", "siz", "es", "schirm", "szer", "ktop", " Desktop"], ["s", "suite", "siz", "es", "schirm", "szer", "\u064a\u0629", "ktop"], ["s", "es", "suite", "\u062a", "siz", "\u064a\u0629", "t", " #{@"], ["suite", "schirm", "ktop", " Desktop", "eias", "s", "szer", "siz"], [" Desktop", "s", "suite", "schirm", "ktop", "eias", " desktop", "es"], ["s", "es", " Desktop", "suite", " desktop", " #{@", "schirm", "eias"], [" {{$", " Desktop", " #{@", "s", ")__", " desktop", " *__", "/{{"], [" *__", " pupper", " Desktop", " #{@", " ~>", " desktop", " YYS", " {{$"], [" #{@", " desktop", " Desktop", " *__", " *@", " @_", " ~>", " {{$"], [" @_", " #{@", " __", " desktop", " @", " *__", " *@", " {{$"], [" desktop", " @_", "/desktop", " Desktop", " #{@", " ~>", " {{$", " __"], [" desktop", " __", " @_", " Desktop", " pupper", " **.**", " .**", " (__"], [" __", " @", " desktop", " .", " @_", " .**", " .*", " Desktop"], [" .", " @", " desktop", " Europe", "s", " via", " environments", " online"], [" .", " via", " Europe", " globally", " desktop", " mostly", " environments", " worldwide"], [" desktop", " environments", "/desktop", " architectures", " globally", " europe", " workflows", " standalone"], [" desktop", " environments", " globally", " architectures", " contexts", " europe", "/desktop", " Desktop"], [" desktop", " globally", " environments", " Desktop", " via", " Europe", "s", " .*"], [" desktop", " environments", " interoper", " globally", " Desktop", "/desktop", " architectures", "s"], [" desktop", " Desktop", " environments", " interoper", " globally", "/desktop", " architectures", " workflows"], [" desktop", " Desktop", " environments", " interoper", " globally", "/desktop", " macOS", " via"], [" desktop", " Desktop", "/desktop", " environments", " interoper", " globally", " Europe", " .**"], [" desktop", " Desktop", "/desktop", " environments", " interoper", " Europe", " software", " globally"], [" desktop", " Desktop", " globally", "/desktop", " interoper", " software", " Europe", " environments"], [" desktop", " interoper", " Desktop", "/desktop", " globally", " Europe", " environments", " software"], [" desktop", " Desktop", " interoper", " unified", " Europe", " globally", " environments", " via"], [" desktop", " interoper", " via", " unified", " environments", " Europe", " systems", " Desktop"], [" via", " unified", " desktop", " interoper", " but", " environments", " interconnected", " Europe"], [" via", "/etc", " interoper", " interconnected", " unified", " hybrid", " hybrids", " BUT"], [" depending", " but", " via", " BUT", " unified", "/etc", " globally", " varying"], [" but", " depending", "/etc", ".", " via", " BUT", " contexts", " alike"], [" but", " BUT", "/etc", ".", ").", "\u4f46\u82e5", "-but", "but"], [".", ").", "**.", " but", "*.", "++.", "+.", ";."], [".", ").", "**.", "*.", ".*", " but", ".**", "()."], [").", ".", "**.", " but", "*.", "\u2014but", "but", ".*"], [").", ".", "**.", "*.", "+.", "++.", ".**", ".*"], [").", ".", "**.", "*.", "++.", "+.", ">.", "()."], [").", " user", "**.", ".", " users", "*.", "+.", "++."], [").", ".", "**.", "*.", " Users", " users", " user", "++."], [").", ".", "**.", "*.", "++.", "+.", " users", ".)."], [").", ".", "**.", "].", "*.", " ).", " Neither", "}."], [").", " JVM", ".", " User", " Async", " async", " ).", "]."], [").", " ).", " JVM", ".", "),", "].", " async", " User"], [").", " ).", " JVM", "),", "].", ".", " ),", ")"], [").", "),", ")", " ).", " JVM", "):", "].", "')."]], "p": [[0.9286, 0.0524, 0.0097, 0.0038, 0.001, 0.0003, 0.0003, 0.0003], [0.9384, 0.06, 0.0003, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001], [0.8325, 0.1639, 0.0005, 0.0002, 0.0002, 0.0002, 0.0001, 0.0001], [0.7504, 0.0511, 0.0129, 0.0114, 0.0101, 0.0045, 0.0031, 0.0025], [0.9958, 0.0028, 0.0003, 0.0002, 0.0001, 0.0001, 0.0001, 0.0], [0.9993, 0.0005, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.998, 0.0011, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9975, 0.0008, 0.0002, 0.0002, 0.0001, 0.0001, 0.0, 0.0], [0.9934, 0.0011, 0.0005, 0.0003, 0.0003, 0.0003, 0.0002, 0.0002], [0.9997, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9993, 0.0004, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.95, 0.0087, 0.005, 0.0039, 0.0028, 0.0007, 0.0006, 0.0006], [0.8586, 0.0244, 0.0148, 0.009, 0.002, 0.0012, 0.0011, 0.001], [0.5545, 0.0516, 0.0333, 0.0313, 0.0042, 0.0031, 0.0026, 0.0024], [0.5467, 0.0576, 0.029, 0.0256, 0.005, 0.0037, 0.0029, 0.0024], [0.632, 0.0458, 0.0131, 0.0131, 0.004, 0.0027, 0.0027, 0.0026], [0.9167, 0.026, 0.0042, 0.0033, 0.0009, 0.0008, 0.0007, 0.0006], [0.5146, 0.0422, 0.0329, 0.0241, 0.0069, 0.0035, 0.0035, 0.0029], [0.3071, 0.0345, 0.0324, 0.0237, 0.0099, 0.0077, 0.0068, 0.005], [0.5177, 0.0352, 0.0227, 0.0227, 0.0089, 0.0037, 0.0037, 0.0035], [0.8172, 0.0232, 0.0066, 0.0029, 0.0019, 0.0019, 0.0018, 0.0015], [0.0189, 0.0157, 0.0138, 0.0122, 0.0084, 0.0069, 0.0069, 0.0065], [0.0269, 0.0197, 0.0173, 0.0163, 0.0099, 0.0087, 0.0087, 0.0072], [0.1466, 0.0225, 0.0164, 0.01, 0.0088, 0.0064, 0.0057, 0.0053], [0.0222, 0.0184, 0.0173, 0.0173, 0.0119, 0.0119, 0.0093, 0.0087], [0.0308, 0.0226, 0.0176, 0.0176, 0.0129, 0.0129, 0.0078, 0.0078], [0.0497, 0.0497, 0.0266, 0.0207, 0.0172, 0.0172, 0.0126, 0.0111], [0.0698, 0.0616, 0.0544, 0.0451, 0.0227, 0.02, 0.0188, 0.0177], [0.0644, 0.0222, 0.0222, 0.0196, 0.0173, 0.0119, 0.0119, 0.0112], [0.0436, 0.03, 0.0182, 0.0117, 0.0097, 0.0086, 0.0076, 0.0076], [0.0692, 0.0651, 0.0611, 0.0507, 0.0507, 0.0348, 0.0327, 0.0083], [0.1513, 0.0461, 0.0298, 0.0218, 0.0218, 0.0181, 0.0132, 0.0124], [0.0881, 0.0345, 0.0286, 0.0269, 0.0252, 0.0185, 0.0173, 0.0173], [0.0429, 0.0295, 0.0179, 0.0168, 0.0131, 0.009, 0.0084, 0.0051], [0.0469, 0.0195, 0.0126, 0.0111, 0.0081, 0.0081, 0.0068, 0.0068], [0.0735, 0.0211, 0.012, 0.0083, 0.0078, 0.006, 0.006, 0.005], [0.0869, 0.0207, 0.0151, 0.0151, 0.0104, 0.0071, 0.0071, 0.0071], [0.1208, 0.021, 0.0185, 0.0144, 0.0077, 0.0073, 0.0064, 0.006], [0.1745, 0.0323, 0.0184, 0.0162, 0.0112, 0.0087, 0.0068, 0.0064], [0.2719, 0.0392, 0.0112, 0.0105, 0.0105, 0.0077, 0.005, 0.0047], [0.3624, 0.0556, 0.0109, 0.0091, 0.008, 0.0071, 0.0059, 0.0055], [0.5185, 0.0747, 0.0177, 0.0157, 0.0147, 0.0084, 0.0079, 0.0074], [0.4723, 0.0564, 0.053, 0.0183, 0.0118, 0.0098, 0.0098, 0.0063], [0.1582, 0.0275, 0.0258, 0.0177, 0.0157, 0.0147, 0.0147, 0.0108], [0.0987, 0.0363, 0.0341, 0.0266, 0.0171, 0.0125, 0.0111, 0.0104], [0.0434, 0.028, 0.0232, 0.0181, 0.0159, 0.015, 0.0141, 0.011], [0.0817, 0.0496, 0.0234, 0.0142, 0.0133, 0.0111, 0.0104, 0.0092], [0.1215, 0.0737, 0.0289, 0.0211, 0.0175, 0.0145, 0.0128, 0.0128], [0.0976, 0.0433, 0.0407, 0.0359, 0.0317, 0.0247, 0.0124, 0.0124], [0.4549, 0.0698, 0.0479, 0.0423, 0.0137, 0.0137, 0.0121, 0.0114], [0.413, 0.2211, 0.0718, 0.0384, 0.0281, 0.017, 0.015, 0.0133], [0.3488, 0.2116, 0.0687, 0.0606, 0.0502, 0.0443, 0.0324, 0.0135], [0.4537, 0.1891, 0.0577, 0.0478, 0.0449, 0.0256, 0.0146, 0.0114], [0.6337, 0.1602, 0.0405, 0.0231, 0.0096, 0.007, 0.0062, 0.0062], [0.5946, 0.1033, 0.0756, 0.0459, 0.014, 0.0123, 0.008, 0.0066], [0.4635, 0.0554, 0.052, 0.0488, 0.0336, 0.0296, 0.0191, 0.0169], [0.7895, 0.0609, 0.0154, 0.0082, 0.0077, 0.0077, 0.0073, 0.0057], [0.8239, 0.0868, 0.0125, 0.0059, 0.0046, 0.0036, 0.0036, 0.0036], [0.9029, 0.0509, 0.0078, 0.0039, 0.0037, 0.0027, 0.0025, 0.002], [0.7865, 0.0417, 0.0392, 0.0163, 0.0135, 0.0127, 0.0112, 0.0082], [0.94, 0.0172, 0.0098, 0.0072, 0.0063, 0.0021, 0.0017, 0.0017], [0.9584, 0.0289, 0.005, 0.0032, 0.0005, 0.0003, 0.0002, 0.0002], [0.9844, 0.014, 0.0009, 0.0002, 0.0001, 0.0, 0.0, 0.0]], "ranks": {"Kotlin": [125815, 120434, 76244, 20151, 20655, 25533, 24835, 39919, 72619, 104363, 103184, 30743, 31639, 77325, 107516, 70810, 53225, 36682, 41646, 86556, 66400, 14082, 6019, 8946, 3067, 584, 526, 964, 723, 631, 1410, 6728, 7335, 914, 1559, 1428, 1153, 1281, 1129, 1952, 2329, 2036, 2459, 5754, 8458, 17299, 42003, 40624, 47984, 51138, 39653, 9802, 25468, 14863, 12401, 4719, 2035, 1120, 1108, 7663, 846, 107, 159]}}, {"pos": 509, "top": [["s", " \u2013", "er", "a", "\u2013", "en", "o", ","], ["s", " \u2013", "\u2013", "**\u2013", " \u2013,", "en", "er", " **\u2013"], ["s", "\u2013", ",", " \u2013", ".", ".\u2013", "\u2026", "**\u2013"], ["s", "\u52a0\u62ff\u5927", "sula", "\u65b0\u52a0\u5761", "sium", "sache", "spra", "\u05d9\u05dd"], ["s", "en", "\u65b0\u52a0\u5761", "\u0627\u062a", "\u05d9\u05dd", "\u76f8\u8f85\u76f8\u6210", "\u52c7\u5f80\u76f4\u524d", "\u52a0\u62ff\u5927"], ["s", "\u65b0\u52a0\u5761", "siz", "\u76f8\u8f85\u76f8\u6210", "\u05d9\u05dd", "\u0627\u062a", "svar", "saf"], ["s", "\u0627\u062a", "siz", "en", "\u65b0\u52a0\u5761", "\u76f8\u8f85\u76f8\u6210", "saf", "\u8eab\u4e34\u5176\u5883"], ["s", "\u76f8\u8f85\u76f8\u6210", "sene", "sut", "\u52c7\u5f80\u76f4\u524d", "saf", "\u0627\u062a", "sula"], ["s", "sene", "schild", "\u76f8\u8f85\u76f8\u6210", "saf", "!\u201d.", "\u52c7\u5f80\u76f4\u524d", "s\u00e9"], ["s", "\u76f8\u8f85\u76f8\u6210", "\u8eab\u4e34\u5176\u5883", "\u52c7\u5f80\u76f4\u524d", "\u4e0d\u53ef\u601d\u8bae", "\u65b0\u52a0\u5761", "\u5162\u5162\u4e1a\u4e1a", "\u4e8b\u534a\u529f\u500d"], ["s", "\u76f8\u8f85\u76f8\u6210", ",", "\u0627\u062a", "\u8eab\u4e34\u5176\u5883", "\u4e0d\u53ef\u601d\u8bae", "ska", "en"], ["s", "sula", "\u76f8\u8f85\u76f8\u6210", "sene", "satz", "\u05d9\u05dd", " **", "sache"], ["s", "\u76f8\u8f85\u76f8\u6210", "sula", "\u65b0\u52a0\u5761", "\u52c7\u5f80\u76f4\u524d", "svar", "\u5162\u5162\u4e1a\u4e1a", "siz"], ["s", "\u76f8\u8f85\u76f8\u6210", "\u65b0\u52a0\u5761", "\u52c7\u5f80\u76f4\u524d", "\u5162\u5162\u4e1a\u4e1a", "siz", "sula", "\u4e8b\u534a\u529f\u500d"], ["s", "\u8eab\u4e34\u5176\u5883", "\u76f8\u8f85\u76f8\u6210", " arguably", "\u4e0d\u53ef\u601d\u8bae", "aix", " mostly", "\u6bdb\u6cfd\u4e1c\u601d\u60f3"], ["s", "sula", "aix", "\u65b0\u52a0\u5761", " behaviors", "siz", "aient", "\u05d9\u05dd"], ["s", " plethora", " impactful", " influencers", " specifics", " arguably", " often", " behaviors"], ["s", "\u65b0\u52a0\u5761", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "sula", " plethora", " milfs", "sste", " arguably"], [" arguably", "s", "sste", "sula", "\u62e5\u6709\u7740", " plethora", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " mostly"], [" arguably", "\u62e5\u6709\u7740", " myriad", "s", " largely", " mostly", "sste", " overarching"], [" arguably", " myriad", "s", " ultimately", " largely", " swiftly", "\u62e5\u6709\u7740", " mostly"], ["\u62e5\u6709\u7740", " ;;^", "\u5f88\u591a\u4e1c\u897f", "satz", "sste", " arguably", "\u5f88\u591a\u95ee\u9898", "\u5750\u62e5"], ["\u62e5\u6709\u7740", " arguably", " myriad", "\u591a\u6837\u7684", " ultimately", "\u5f88\u591a\u4e1c\u897f", " largely", "\u5750\u62e5"], [" arguably", " myriad", " ultimately", " largely", " mostly", "\u62e5\u6709\u7740", " often", " swiftly"], [" arguably", " myriad", "\u62e5\u6709\u7740", " \r\n\r\n", "\r\n\r\n", " complexities", " vastly", "Though"], ["\u62e5\u6709\u7740", " complexities", "sste", " arguably", "satz", "\u591a\u6837\u7684", " geopol", "\u5750\u62e5"], ["\u62e5\u6709\u7740", " complexities", " arguably", " myriad", " vastly", " seamlessly", " ultimately", " overarching"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", " \r\n\r\n", " arguably", " myriad", " ultimately"], [" arguably", " \n\n", " myriad", "  \n\n", "\n\n", " ultimately", " vastly", "\r\n\r\n"], ["  \n\n", " **", " \n\n", "   \n\n", " fundamentally", " myriad", " \r\n\r\n", " arguably"], [" \n\n", "  \n\n", " often", " largely", " mostly", " many", " essentially", " ultimately"], [" ...", " many", "...", " often", " \u2026", " heavily", " \n\n", " incredibly"], [" incredibly", " heavily", " mostly", " often", " essentially", " \u2013", " largely", " deeply"], [" heavily", " often", " fundamentally", " incredibly", " mostly", " essentially", " deeply", " inherently"], [" heavily", " notoriously", " deeply", " incredibly", " inherently", " fundamentally", " massively", " aggressively"], [" notoriously", " heavily", " inherently", " deeply", " incredibly", " often", " aggressively", " fundamentally"], [" notoriously", " inherently", " heavily", " incredibly", " fundamentally", " aggressively", " deeply", "\u2014even"], [" notoriously", " inherently", "\u2014even", " heavily", " fundamentally", " incredibly", " aggressively", " deeply"], [" inherently", " notoriously", "\u2014even", " heavily", " fundamentally", " incredibly", " deeply", " inevitably"], [" inherently", " notoriously", "\u2014even", " heavily", " incredibly", " fundamentally", " unpredictable", " massively"], [" inherently", " notoriously", " heavily", "\u2014even", " incredibly", " massively", " inefficient", " fundamentally"], [" inherently", " notoriously", " heavily", "\u2014even", " inefficient", " massively", " unpredictable", " fundamentally"], [" inherently", " notoriously", " heavily", " inefficient", " unpredictable", " massively", " fundamentally", " typically"], [" inherently", " notoriously", " heavily", " unpredictable", " inefficient", " massively", " typically", " heavy"], [" inherently", " notoriously", " heavily", " unpredictable", " typically", " inefficient", " inevitably", " massively"], [" inherently", " notoriously", " heavily", " inevitably", " unpredictable", " unavoidable", " massively", " inevitable"], [" inherently", " notoriously", " BOTH", " heavily", " inevitably", " fundamentally", " inevitable", " unpredictable"], [" BOTH", " inherently", " both", " notoriously", " either", " neither", "\u65e0\u8bba\u662f", " ANY"], [" BOTH", "\u65e0\u8bba\u662f", " both", " inherently", " EITHER", " either", " neither", "\u2014even"], [" BOTH", "\u65e0\u8bba\u662f", ":\\", " EITHER", " whichever", "\u5373\u4fbf", ":</", "\u2014even"], [" BOTH", "\u3069\u3061\u3089\u3082", ":\\", "\u65e0\u8bba\u662f", " neither", ":</", ":<", "\u4efb\u4f55\u5f62\u5f0f\u7684"], [" BOTH", " neither", ":\\", "\u3069\u3061\u3089\u3082", "\u65e0\u8bba\u662f", " EITHER", " Neither", ":<"], [" BOTH", " neither", " Both", "\u3069\u3061\u3089\u3082", " both", " Neither", "both", " EITHER"], [" BOTH", " both", " neither", " Both", "both", " Neither", "_both", "\u3069\u3061\u3089\u3082"], [" BOTH", " both", " Both", " neither", "both", " \n", " Neither", "_both"], [" BOTH", " neither", " Neither", " both", " Both", "both", "_both", "Neither"], [" BOTH", " Both", " Neither", " neither", " both", "both", "Both", "_both"], [" Both", " BOTH", " Neither", " both", " neither", "both", "Both", " JVM"], [" Both", " Neither", " BOTH", " neither", " both", "Both", "_both", "both"], [" JVM", " Both", " Neither", " neither", " both", " BOTH", " JIT", "\n"], [" JVM", " Both", " Neither", " neither", "\n", " both", " JIT", " Even"], [" JVM", " Both", " Neither", "\n", " neither", " Even", " JIT", " both"], [" Both", " Neither", " JVM", " Even", " The", "\n", " On", " Java"]], "p": [[0.956, 0.042, 0.0006, 0.0004, 0.0003, 0.0003, 0.0001, 0.0001], [0.9908, 0.0067, 0.0005, 0.0004, 0.0003, 0.0002, 0.0001, 0.0001], [0.9406, 0.0251, 0.0251, 0.0072, 0.0008, 0.0004, 0.0002, 0.0001], [0.1955, 0.0596, 0.0436, 0.0385, 0.0319, 0.0249, 0.0234, 0.0219], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0, 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.9999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9998, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9986, 0.0005, 0.0001, 0.0001, 0.0001, 0.0001, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9603, 0.0057, 0.0035, 0.0013, 0.0013, 0.0012, 0.0011, 0.001], [0.9124, 0.0189, 0.0051, 0.0031, 0.0029, 0.0027, 0.0026, 0.002], [0.6343, 0.0279, 0.0262, 0.0124, 0.0109, 0.0103, 0.009, 0.008], [0.8266, 0.0043, 0.0038, 0.0028, 0.0025, 0.0022, 0.002, 0.0019], [0.4952, 0.0046, 0.0043, 0.004, 0.0036, 0.0031, 0.0028, 0.0023], [0.7945, 0.0044, 0.0029, 0.0025, 0.0025, 0.002, 0.002, 0.0019], [0.046, 0.0116, 0.008, 0.0058, 0.0052, 0.0048, 0.0048, 0.0046], [0.0226, 0.0226, 0.0065, 0.0061, 0.0057, 0.005, 0.0037, 0.0037], [0.0156, 0.0129, 0.0069, 0.0045, 0.0037, 0.0037, 0.0033, 0.0031], [0.0273, 0.0241, 0.0188, 0.0121, 0.0107, 0.0078, 0.0069, 0.0065], [0.0107, 0.0035, 0.0031, 0.0029, 0.0027, 0.0025, 0.002, 0.002], [0.0158, 0.0131, 0.004, 0.0038, 0.0031, 0.0026, 0.0024, 0.0023], [0.0283, 0.0142, 0.0134, 0.0118, 0.0076, 0.0072, 0.0052, 0.0046], [0.0147, 0.0107, 0.0069, 0.0051, 0.0048, 0.004, 0.004, 0.0037], [0.0091, 0.0038, 0.0026, 0.0022, 0.0019, 0.0018, 0.0018, 0.0017], [0.0114, 0.0114, 0.0078, 0.0037, 0.0031, 0.0027, 0.0022, 0.0022], [0.2031, 0.0795, 0.0482, 0.04, 0.0258, 0.0258, 0.0189, 0.0138], [0.0666, 0.0626, 0.0588, 0.0588, 0.0487, 0.0278, 0.0245, 0.0216], [0.264, 0.1932, 0.1172, 0.0191, 0.0159, 0.0131, 0.0123, 0.0109], [0.3374, 0.2047, 0.0429, 0.0295, 0.026, 0.0168, 0.0148, 0.0148], [0.0612, 0.054, 0.042, 0.042, 0.0349, 0.0327, 0.0289, 0.024], [0.0491, 0.0461, 0.0433, 0.0382, 0.0317, 0.0317, 0.0263, 0.0232], [0.0739, 0.0508, 0.0396, 0.0396, 0.0396, 0.0349, 0.0328, 0.0308], [0.0797, 0.0621, 0.0354, 0.0332, 0.0332, 0.0215, 0.0202, 0.0189], [0.1311, 0.0702, 0.0376, 0.0228, 0.0177, 0.013, 0.0122, 0.0122], [0.1776, 0.0653, 0.0509, 0.0165, 0.0155, 0.0155, 0.0146, 0.0107], [0.1169, 0.1031, 0.0335, 0.0315, 0.0168, 0.0158, 0.0131, 0.0109], [0.1226, 0.1152, 0.0792, 0.0227, 0.0177, 0.0146, 0.0107, 0.0101], [0.1627, 0.1267, 0.0678, 0.032, 0.0194, 0.0151, 0.0118, 0.0098], [0.1773, 0.1145, 0.0695, 0.024, 0.0225, 0.0176, 0.0176, 0.0137], [0.2588, 0.0894, 0.0615, 0.045, 0.0165, 0.0129, 0.0114, 0.0107], [0.4428, 0.0769, 0.0363, 0.0111, 0.0111, 0.0104, 0.0098, 0.0081], [0.4028, 0.2156, 0.0331, 0.0213, 0.0101, 0.0084, 0.0074, 0.0069], [0.4089, 0.1704, 0.0405, 0.0296, 0.0123, 0.0096, 0.0085, 0.0075], [0.6191, 0.1565, 0.0199, 0.0146, 0.0121, 0.0044, 0.0035, 0.0035], [0.6945, 0.0732, 0.0368, 0.0197, 0.0099, 0.006, 0.0056, 0.0056], [0.6145, 0.2261, 0.0393, 0.0106, 0.0088, 0.0068, 0.006, 0.006], [0.8649, 0.023, 0.0158, 0.014, 0.0123, 0.0066, 0.0058, 0.0055], [0.5747, 0.0472, 0.0416, 0.0253, 0.0197, 0.0174, 0.0174, 0.0163], [0.5612, 0.076, 0.076, 0.0407, 0.0279, 0.0192, 0.015, 0.0103], [0.7798, 0.0302, 0.0208, 0.0162, 0.0143, 0.0126, 0.0126, 0.0126], [0.9186, 0.0148, 0.0131, 0.0102, 0.009, 0.0055, 0.0048, 0.002], [0.8905, 0.0391, 0.0209, 0.0209, 0.0112, 0.0036, 0.0025, 0.0019], [0.8756, 0.0264, 0.0206, 0.0206, 0.011, 0.0067, 0.0059, 0.0046], [0.5241, 0.3602, 0.038, 0.0335, 0.0179, 0.0096, 0.0031, 0.0024], [0.3852, 0.3399, 0.1251, 0.0591, 0.0358, 0.0132, 0.0116, 0.0091], [0.3903, 0.3444, 0.0987, 0.0528, 0.0528, 0.0151, 0.0118, 0.0104], [0.4912, 0.2629, 0.1242, 0.0753, 0.0245, 0.0062, 0.0042, 0.0033], [0.7131, 0.0852, 0.0852, 0.0663, 0.019, 0.0079, 0.0042, 0.0026], [0.4767, 0.2252, 0.2252, 0.0185, 0.0127, 0.0072, 0.0053, 0.0044], [0.4861, 0.2296, 0.2026, 0.0147, 0.0107, 0.0084, 0.0065, 0.0061], [0.7091, 0.1087, 0.0847, 0.0453, 0.0189, 0.0054, 0.0035, 0.0024]], "ranks": {"Kotlin": [124830, 42307, 37298, 2430, 2386, 3612, 4745, 9549, 11020, 23970, 24435, 3944, 4976, 3753, 29451, 10920, 15988, 14067, 39666, 75646, 107192, 69971, 86345, 133622, 118937, 30938, 18685, 53344, 20147, 9870, 28815, 33297, 86260, 97237, 152422, 138209, 123394, 133903, 117213, 84935, 81416, 59596, 37809, 37582, 61814, 81350, 100755, 104482, 76920, 46361, 43597, 7163, 7190, 5139, 1728, 277, 109, 87, 95, 49, 44, 25, 35]}}, {"pos": 510, "top": [[".", " \u2013", "\u2013", ".\u2013", " \u2013,", "\u2013and", "\u2026..", " (\u201e"], [" \u2013**", "**\u2013", " \u2013,", " *\u2013", ".\u2013", "\u2013and", " (\u201e", ":\\\""], [".", ".\u2013", "\u2013", "\u2013and", " \u2013", ",", "\u2026..", " \u2013,"], [" milfs", " Shemale", " cumshot", " pornstar", " Blowjob", "raries", " Guta", "``"], [" (\u201e", "raries", "\uff08", "\u7684", "\u4ed6", "\uff1a\u201c", "!\u201c", "erweise"], ["\uff01", "\u3002", "\u7684", "\u4e2d", "\uff1f", "\uff08", "\u548c", "raries"], ["\u4e2d", "\uff08", "\u7684", "\u548c", "\u3002", "\u5728", "\u4ed6", "\uff1f"], ["\u7684", "\u4e2d", "\u4ed6", "raries", "\uff08", "\u548c", "\u591a", "\u5728"], ["\uff08", "   \n\n", "    \n\n", "\u4ed6", "\u7684", "\u4e2d", "raries", "\uff01"], ["raries", "ighbor", ":\\\"", "htags", " milfs", "enzi", "naments", "(\\\""], ["raries", "\u4ed6", "\u4e2d", "\u7684", "(\\\"", ":\\\"", "<|fim_suffix|>", "\u591a"], ["raries", " **\u201e", " milfs", " Shemale", "htags", " pornstar", " handjob", " cumshot"], [" milfs", "raries", " **\u201e", " cumshot", " pornstar", " Shemale", "htags", " handjob"], ["raries", " milfs", ":\\\"", " pornstar", "htags", " Shemale", " Guta", " **\u201e"], ["raries", ":\\\"", "``", "sWith", "(\\\"", " estrateg", "(`", "\u0646\u0627\u0633"], [" milfs", "raries", " Guta", " pornstar", ":\\\"", "erias", "\u00e3ng", "sled"], ["raries", ":\\\"", " impactful", "en", "es", " mindset", "enarios", " whats"], [":\\\"", "...\\", "(`", "-**", "`\\", "\u7684", " whats", "\\:"], [":\\\"", " **\u201e", "es", "-**", " **\u2022", " -**", " alot", " whats"], [" incredibly", "Whilst", " --", "es", "an", "(`", ":\\\"", "s"], [" --", "\n\n", "an", "--", "es", " incredibly", "s", " swiftly"], [" ``", " --", ":\\\"", "\u00e3ng", " **\u2022", " **\u201e", " ``(", "raries"], [" ``", " --", "``", " ``(", " incredibly", " \\\"", " arguably", " `"], [" --", " ``", " arguably", " incredibly", " swiftly", " `", "``", " ``("], ["\n\n", "  \n\n", "   \n\n", " --", "\r\n\r\n", "    \n\n", "Whilst", "\\:"], [" --", " -**", " impactful", " **\u2022", " incredibly", " **", " FStar", " havoc"], [" --", "\n\n", " incredibly", " impactful", " arguably", " havoc", " impacting", " famously"], [" --", "\n\n", " incredibly", " arguably", " vastly", " famously", " drastically", " heavily"], [" --", " incredibly", " arguably", "\n\n", " impactful", " vastly", " famously", " **"], [" incredibly", " --", " arguably", " drastically", " vastly", " **", " famously", " massive"], [" incredibly", " arguably", " --", " just", " @", " \u2013", " ,", " even"], [" incredibly", " @", " --", " just", " -", " \u2013", " \u2018", " essentially"], [" \u2013", " incredibly", " arguably", " essentially", " \u201c", " -", " heavily", " \u2014"], [" incredibly", " \u2013", " fundamentally", " massively", " arguably", "\u2013", " famously", " aggressively"], ["\u2013", " \u2013", " incredibly", "\u2013and", " massively", "\u2011", " **\u2013", "\u2014even"], [" \u2013", "\u2013", "  \n\n", "\u2011", "<|endoftext|>", " **\u2013", "\u2013and", "\u2014even"], ["  \n\n", "\u2013", "\u2011", " \u2013", " **\u2013", "!**", " incredibly", "<|endoftext|>"], ["\u2013", "\u2011", " **\u2013", " \u2013", " **", " **\u201c", " \u2014", "!**"], [" \u2013", "\u2013", "\u2011", " \u2014", " **\u2013", " **", "<|endoftext|>", ":**"], ["\u2011", "\u2013", " \u2013", " **\u2013", " \u2014", "!**", ":**", "<|endoftext|>"], ["\u2011", "\u2013", " \u2013", "<|endoftext|>", ":**", "!**", " **\u2013", "\u2026**"], ["\u2011", "\u2013", ":**", " \u2014", " **\u2013", " \u2013", "**\u2014", "!**"], [" **\u2013", "!**", "\u2011", "**\u2014", ":**", " **\u201c", " **", " **\u2014"], [" **\u2013", " **", "\uff1a**", ":**", " **\u2014", "**\u2014", "\u2014even", " \u2014"], [" **\u2013", " **", ":**", " **\u2014", "**\u2014", "\u2026**", "\uff1a**", " \u2014"], [" **", " **\u2013", ":**", "  \n\n", " **\u201c", " **\u2014", "\uff1a**", " **-"], [":**", "  \n\n", "\uff1a**", " **\u2013", ":\\", " **", " **\u201c", "**:"], [":**", "\uff1a**", " **", " **\u2013", "  \n\n", " **\u201c", ":\\", ":*"], [" **", ":**", "\uff1a**", "-**", " **\u2013", ":\\", " **+", " **\u201c"], [":**", "-**", " **", "\uff1a**", ":\\", " **\u2013", ":*", ":</"], ["-**", ":**", "\uff1a**", " **", ":*", " **\u2013", ":<", ":"], ["-**", ":**", " **", ":*", " **\u2013", "\uff1a**", ":", " **-"], ["-**", " **", ":**", ":*", " **\u2013", "**", ">**", "\uff1a**"], ["-**", " **", ":*", " *", " **\u2013", ":**", "-*", " **-"], ["-**", ":*", " *", " **", "-*", "*", " *\u201c", " **\u2013"], ["-**", " *", ":*", "-*", " **", "*", " *\u201c", " *\\"], [" *", "-**", "*", "-*", ":*", " *\u201c", ",*", " *-"], [" *", "*", "-**", ":*", "-*", " *\u201c", " *\\", ",*"], [" *", "*", "-**", ":*", " *\u201c", "-*", ",*", " **"], [" *", "*", "-**", "-*", ":*", " *\u201c", ",*", " *["], [" *", "*", " *\u201c", "-*", "-**", " *\"", " *-", "1"], ["*", " *", "-", "1", " -", "-*", "*,", " *\u201c"], ["1", "*", "-", " *", "2", "3", "-*", "4"]], "p": [[0.5029, 0.3916, 0.0162, 0.0162, 0.0087, 0.0059, 0.0056, 0.0046], [0.079, 0.0742, 0.0176, 0.0156, 0.0094, 0.0069, 0.0054, 0.0054], [0.3559, 0.2771, 0.2446, 0.0227, 0.0227, 0.0189, 0.0107, 0.0101], [0.0195, 0.0134, 0.0104, 0.0076, 0.0067, 0.0046, 0.0046, 0.0044], [0.0806, 0.052, 0.0316, 0.0279, 0.0149, 0.0124, 0.0124, 0.0116], [0.0664, 0.0664, 0.0586, 0.0586, 0.0551, 0.026, 0.023, 0.023], [0.2446, 0.123, 0.0701, 0.0581, 0.0452, 0.0399, 0.0375, 0.0242], [0.069, 0.0648, 0.0505, 0.0474, 0.0393, 0.0287, 0.0254, 0.0198], [0.0726, 0.0469, 0.044, 0.0365, 0.0322, 0.0303, 0.0221, 0.0172], [0.0664, 0.0051, 0.0042, 0.0026, 0.0024, 0.0024, 0.0023, 0.0023], [0.1364, 0.0304, 0.0223, 0.0209, 0.0185, 0.0144, 0.0099, 0.0093], [0.034, 0.0264, 0.0052, 0.0049, 0.0046, 0.0041, 0.0034, 0.0034], [0.0147, 0.0114, 0.0089, 0.0061, 0.0061, 0.0061, 0.0057, 0.0045], [0.0399, 0.0079, 0.0051, 0.0048, 0.0042, 0.0031, 0.0027, 0.0026], [0.0482, 0.0167, 0.0037, 0.0034, 0.0034, 0.0023, 0.0023, 0.0021], [0.0174, 0.0135, 0.0041, 0.0036, 0.0034, 0.0021, 0.0021, 0.0021], [0.0205, 0.0103, 0.0086, 0.0055, 0.0052, 0.004, 0.0036, 0.0031], [0.0374, 0.0146, 0.0138, 0.0129, 0.0121, 0.0107, 0.0089, 0.0078], [0.061, 0.0113, 0.0088, 0.0082, 0.0064, 0.0064, 0.0053, 0.0047], [0.035, 0.0256, 0.0226, 0.02, 0.0155, 0.01, 0.0089, 0.0089], [0.0361, 0.0264, 0.0193, 0.0086, 0.0076, 0.0076, 0.0067, 0.0046], [0.0394, 0.0128, 0.0064, 0.005, 0.0047, 0.0047, 0.0044, 0.0037], [0.35, 0.1994, 0.0164, 0.0093, 0.005, 0.0024, 0.0021, 0.0021], [0.4074, 0.0754, 0.0051, 0.0048, 0.0035, 0.0035, 0.0027, 0.0024], [0.2722, 0.0325, 0.0253, 0.0185, 0.0127, 0.0082, 0.0053, 0.0025], [0.0192, 0.0066, 0.0046, 0.004, 0.0036, 0.0029, 0.0023, 0.0023], [0.0393, 0.0306, 0.0073, 0.0044, 0.0032, 0.0028, 0.0022, 0.002], [0.1248, 0.1172, 0.0668, 0.0296, 0.0096, 0.009, 0.009, 0.0066], [0.0494, 0.041, 0.0249, 0.0171, 0.0104, 0.0067, 0.0063, 0.0059], [0.1612, 0.1255, 0.0593, 0.0124, 0.0117, 0.0117, 0.0103, 0.0103], [0.0429, 0.0295, 0.0277, 0.0203, 0.0203, 0.0203, 0.0203, 0.019], [0.0634, 0.0634, 0.0361, 0.0339, 0.0319, 0.0264, 0.0182, 0.016], [0.3324, 0.0697, 0.0212, 0.0165, 0.0165, 0.0129, 0.0121, 0.0121], [0.1468, 0.0652, 0.0328, 0.0328, 0.0272, 0.0175, 0.0165, 0.0137], [0.0374, 0.0291, 0.0121, 0.0114, 0.0083, 0.0078, 0.0074, 0.0074], [0.0852, 0.08, 0.0456, 0.0402, 0.0244, 0.0123, 0.0108, 0.0102], [0.1157, 0.0546, 0.0482, 0.0375, 0.0214, 0.0115, 0.0108, 0.0095], [0.1533, 0.1271, 0.099, 0.093, 0.0821, 0.0284, 0.0266, 0.0195], [0.276, 0.2288, 0.1081, 0.0655, 0.0373, 0.0156, 0.0121, 0.0121], [0.2654, 0.22, 0.1512, 0.0382, 0.0247, 0.017, 0.015, 0.0132], [0.208, 0.1835, 0.1343, 0.0596, 0.0361, 0.0361, 0.0281, 0.0117], [0.0972, 0.0668, 0.052, 0.0316, 0.0297, 0.0297, 0.0279, 0.0231], [0.0825, 0.0533, 0.0533, 0.047, 0.047, 0.0366, 0.0323, 0.0268], [0.13, 0.0577, 0.0509, 0.0509, 0.0422, 0.0422, 0.0396, 0.035], [0.1009, 0.0738, 0.054, 0.0448, 0.0371, 0.0212, 0.0199, 0.0187], [0.4225, 0.1554, 0.0734, 0.0505, 0.0474, 0.0393, 0.0288, 0.0136], [0.5257, 0.1506, 0.1173, 0.0432, 0.0262, 0.0231, 0.0204, 0.0159], [0.4407, 0.1114, 0.0766, 0.0766, 0.0676, 0.041, 0.041, 0.0282], [0.68, 0.1517, 0.0717, 0.0493, 0.0181, 0.004, 0.0031, 0.0028], [0.3098, 0.3098, 0.2413, 0.061, 0.0106, 0.0106, 0.0083, 0.0073], [0.8212, 0.0674, 0.0318, 0.0281, 0.0133, 0.0071, 0.0063, 0.0055], [0.8272, 0.0467, 0.0467, 0.022, 0.0195, 0.0104, 0.0043, 0.0023], [0.9263, 0.017, 0.015, 0.0132, 0.0055, 0.0029, 0.0023, 0.002], [0.9736, 0.0095, 0.0045, 0.0015, 0.0013, 0.0011, 0.001, 0.0008], [0.966, 0.0084, 0.0051, 0.0045, 0.0031, 0.0011, 0.0009, 0.0009], [0.9298, 0.017, 0.0133, 0.008, 0.0063, 0.0026, 0.0026, 0.0018], [0.4122, 0.25, 0.1718, 0.0716, 0.0434, 0.0181, 0.0028, 0.0022], [0.6751, 0.2192, 0.0489, 0.0159, 0.014, 0.0085, 0.0015, 0.0015], [0.6015, 0.2213, 0.0922, 0.0264, 0.016, 0.0125, 0.0032, 0.003], [0.7001, 0.2273, 0.024, 0.0088, 0.0088, 0.0073, 0.0018, 0.0017], [0.9207, 0.0667, 0.0026, 0.002, 0.0014, 0.0008, 0.0008, 0.0006], [0.509, 0.4492, 0.0287, 0.002, 0.001, 0.0008, 0.0006, 0.0003], [0.7349, 0.2386, 0.0173, 0.0064, 0.0009, 0.0004, 0.0002, 0.0002]], "ranks": {"Kotlin": [150199, 30395, 37660, 3118, 1658, 6175, 20526, 35339, 36741, 14327, 20590, 6374, 5164, 5654, 29353, 7912, 12027, 16990, 24006, 96897, 144421, 65262, 104528, 152261, 99848, 66286, 72773, 88659, 73507, 86713, 160800, 138204, 146557, 107823, 139984, 116360, 87691, 76426, 90719, 71790, 97465, 102100, 80946, 60255, 71119, 82409, 81775, 118357, 72962, 27454, 49779, 28530, 31467, 22353, 19066, 6669, 4193, 2850, 2701, 1115, 820, 323, 289]}}, {"pos": 511, "top": [[" \u2013", " \u200b\u200b", "\u2013", "\u200b\u200b", ".", "\u00a0\u00a0", "\u00a0", " -."], [" \u200b\u200b", " Hidal", "obuf", " Vip", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "**\u2013", "\u200b\u200b", " Strec"], [" \u200b\u200b", "\u200b\u200b", "**\u2013", "\u2013", " \u2013", " **\u2013", ".\u2013", "\u2026.."], [" Blowjob", " milfs", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Shemale", " **\u00ab", "odle", " pornstar", " cumshot"], ["odal", " **\u00ab", " **+", " **-", "\u063a\u0646", "\n\n\n\n\n\n", "ocen", "rowse"], [" \u200b\u200b", " **\u00ab", "\u200b\u200b", "odal", " **+", "arder", " **-", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9"], [" **\u00ab", "\u200b\u200b", "\u00b4t", " \u200b\u200b", "\n\n\n\n\n\n", " **-", "\n\n\n\n\n\n\n\n\n\n\n\n", "arder"], [" **\u00ab", " \n\n\n\n\n", "\u00b4t", "arder", " \u200b\u200b", " **-", "\u063a\u0646", " **+"], [" \n\n\n\n\n", "        \n\n", "\t\n\n", " **\u00ab", " \n\n", "   \n\n", " \n\n\n", "\n\n\n\n\n\n"], [" **\u00ab", "\u00adi", " \n\n\n\n\n", "\u00adt", "\u00adtion", "rowse", "\u00ads", "\u0451\u0434"], [" \n\n\n\n\n", " \u00ad", "\u200b\u200b", "\u00adi", "\u00ad", "\u00a0", "\u00adt", "\u200b"], [" **\u00ab", " **+", " **\u300c", " **-", " **#", "itech", "aviours", "ocide"], [" **\u00ab", " **+", " **\u300c", " workflows", " **-", "ocide", "rowse", "isci"], ["isci", "itech", "rowse", " workflows", " Robotics", "ocide", " **\u00ab", "\u00adi"], [" workflows", " impactful", " Global", " Healthcare", "isci", " healthcare", "itech", " global"], [" workflows", " impactful", "rowse", " **\u2022", " Global", "isci", "\u00adi", " global"], ["\u200b", " impactful", " global", "  \n\n", " Global", "\u00ad", " showcase", " workflows"], ["  \n\n", "\u200b", "\u00ad", "   \n\n", "\u00adi", " \u00ad", " **", "   \n"], [" **-", " **", "\u00adi", " **\u2022", " **+", "\u00ac", "**-", " \u00ad"], [" **", "  \n\n", " **-", "\u00ac", " **+", " \u00ad", " **\u2018", " **#"], ["  \n\n", " **", " \n\n", "  \n", "   \n\n", " \u00ad", "  \n  \n", " **+"], [" **", " **+", " **\u2022", " **-", " **'", " **\u00ab", " **#", " timelines"], [" **", " **+", " global", " \u00ad", " shifts", " impacts", " **'", " globally"], [" **", " \u00ad", " -", " global", " uniquely", " globally", " shifts", " key"], ["  \n\n", " \n\n", "   \n\n", " \u00ad", "  \n  \n", " \r\n\r\n", "  \r\n\r\n", "  \n\n\n"], ["  \n\n", " **", " \n\n", " **+", "   \n\n", " **\u2018", " **'", " \r\n\r\n"], ["  \n\n", " **", " \n\n", "   \n\n", " **+", " \u00ad", " \r\n\r\n", " **\u2018"], ["  \n\n", " \n\n", " **", " \u00ad", "   \n\n", " \r\n\r\n", "  \r\n\r\n", "\u2011"], ["  \n\n", " \n\n", " **", "   \n\n", " \r\n\r\n", " \u00ad", "  \r\n\r\n", "\u2011"], ["  \n\n", " **", " \n\n", "   \n\n", "\u2011", "  \n\n\n", "  \n  \n", "  \n"], ["  \n\n", " \n\n", " **", "  \n", " \u2013", " -", " heavily", " :"], ["  \n\n", " **", " \n\n", " -", " heavily", "\u2011", " only", " key"], [" **", " \u2013", " heavily", " -", "  \n\n", "\u2011", " only", " rapidly"], ["\u2011", "  \n\n", " heavily", " **", " \u2013", " \u00ad", " rapidly", " drastically"], [" **", "\u2011", " **\u201c", " heavily", " **\"", "  \n\n", " \u00ad", " massively"], ["\u2011", " **", " \u2013", " heavily", " **\u201c", "\u200b", "  \n\n", " \u00ad"], [" **", "\u2011", " heavily", " notoriously", " inefficient", " lack", " lacks", " \u2013"], [" **", "\u2011", " inefficient", " lack", " **\u201c", " lacks", " heavily", " **\""], [" **", "\u2011", " **+", " inefficient", " **\u201c", " **-", " lack", " lacks"], [" **", "\u2011", " **+", " inefficient", " **-", " **\u201c", " impossible", "\u200b"], ["\u2011", " **", "\u200b", " inefficient", " impossible", " lack", " unsustainable", " heavily"], [" **", " inefficient", "\u2011", " notoriously", " rapidly", " heavily", " crippling", " relentless"], [" **", " inefficient", " **+", " **:", " **-", " notoriously", " inherently", " unsustainable"], [" **", " inefficient", " notoriously", " rapidly", " failures", " heavily", " **-", " brute"], [" **", " **-", " **+", " rapidly", " inefficient", " **:", " notoriously", " rapid"], [" **", " **+", " **:", " **-", " **\u201c", " :", " **#", " **\u2013"], [" **", " **+", " **:", " **-", "**:", "\uff1a**", " **\"", " **\u201c"], [" **", " **+", " **-", " **#", " **\"", " **\u201c", "\uff1a**", " **("], [" **", " **+", " **#", " **-", " **\"", "\uff1a**", "-**", " **:"], [" **", " **+", " **#", " **-", "\uff1a**", "-**", " **\"", " **:"], [" **", " **+", " **-", " **#", " **:", "-**", " **:**", " **\""], [" **", " **+", " **#", " **\"", " **:", " **-", " **'", " **("], [" **", " **+", " **#", " **\"", " **'", " **-", "**", " **["], [" **", " **+", " **#", " **\"", " **[", "**", " **-", " **'"], [" **", " **+", " **#", " **\"", " **-", " **[", ">**", "**"], [" **", " **+", " **#", "**", " **-", ">**", " **\"", " **("], [" **", " **+", " **#", "**", " **-", " **\"", "-**", ">**"], [" **", " **+", " **#", "**", " Android", " **\"", " **-", " **("], [" **", " **+", " **-", " **#", " **\"", "-**", " Android", "**"], [" **", " Android", " JVM", "Android", " **+", " android", " **\"", " **-"], [" **", " Android", " JVM", " **+", "Android", " On", " **\"", " **#"], [" **", " Android", " On", " **+", "**", " **-", " **\"", " JVM"], [" **", " On", " Android", " JVM", " on", " If", " Async", " JNI"]], "p": [[0.8043, 0.0703, 0.0157, 0.0157, 0.0115, 0.0108, 0.0058, 0.0017], [0.0121, 0.0088, 0.0047, 0.0044, 0.0044, 0.0032, 0.0029, 0.0025], [0.3306, 0.1008, 0.0836, 0.042, 0.0289, 0.0128, 0.0106, 0.0042], [0.026, 0.026, 0.023, 0.0216, 0.0085, 0.0079, 0.0079, 0.0075], [0.0095, 0.0095, 0.0057, 0.0045, 0.0031, 0.0025, 0.0024, 0.0024], [0.202, 0.0101, 0.0039, 0.0031, 0.0024, 0.002, 0.0019, 0.0015], [0.0805, 0.0217, 0.0169, 0.0149, 0.0116, 0.007, 0.0066, 0.0048], [0.1402, 0.0157, 0.0139, 0.0122, 0.0115, 0.009, 0.0079, 0.0079], [0.0804, 0.0588, 0.0488, 0.0458, 0.0404, 0.038, 0.038, 0.0296], [0.0291, 0.0146, 0.0065, 0.0061, 0.0054, 0.0051, 0.0045, 0.0035], [0.0897, 0.048, 0.0451, 0.031, 0.0227, 0.02, 0.02, 0.0188], [0.1871, 0.0305, 0.0112, 0.0088, 0.0053, 0.0041, 0.0032, 0.0032], [0.0784, 0.0094, 0.0078, 0.005, 0.0042, 0.0039, 0.0039, 0.0037], [0.0081, 0.0072, 0.0056, 0.0056, 0.0034, 0.003, 0.0028, 0.0028], [0.0067, 0.0063, 0.0052, 0.0049, 0.0041, 0.0036, 0.0034, 0.0025], [0.0046, 0.0038, 0.0023, 0.0021, 0.0019, 0.0018, 0.0016, 0.0016], [0.0146, 0.0121, 0.0057, 0.0054, 0.0044, 0.0042, 0.0035, 0.0033], [0.0345, 0.0209, 0.0144, 0.0127, 0.0099, 0.0068, 0.0064, 0.0056], [0.0344, 0.0344, 0.0143, 0.0119, 0.0087, 0.0082, 0.0072, 0.0056], [0.1453, 0.0416, 0.0153, 0.0119, 0.0119, 0.0093, 0.0082, 0.006], [0.3206, 0.0811, 0.0181, 0.017, 0.011, 0.0097, 0.0085, 0.0049], [0.0934, 0.0162, 0.0082, 0.0056, 0.0032, 0.003, 0.0023, 0.0021], [0.0862, 0.0033, 0.0028, 0.0024, 0.0023, 0.0018, 0.0017, 0.0017], [0.0097, 0.0091, 0.0041, 0.0028, 0.0023, 0.0023, 0.0022, 0.0016], [0.9094, 0.0513, 0.0101, 0.0058, 0.0031, 0.0014, 0.0011, 0.0008], [0.4414, 0.2363, 0.032, 0.0111, 0.0111, 0.0063, 0.0052, 0.0041], [0.458, 0.1685, 0.0748, 0.0089, 0.004, 0.004, 0.0037, 0.0031], [0.5873, 0.1907, 0.0581, 0.0074, 0.0058, 0.0027, 0.0011, 0.0011], [0.7638, 0.1327, 0.0553, 0.0043, 0.0017, 0.0012, 0.0009, 0.0008], [0.7712, 0.134, 0.0559, 0.003, 0.0028, 0.001, 0.0009, 0.0008], [0.4306, 0.1795, 0.0376, 0.0095, 0.0061, 0.0058, 0.0048, 0.0033], [0.3991, 0.1296, 0.1009, 0.0137, 0.0083, 0.005, 0.0047, 0.0039], [0.037, 0.0347, 0.0211, 0.0211, 0.0186, 0.0164, 0.012, 0.01], [0.1114, 0.0385, 0.0282, 0.0219, 0.0206, 0.0171, 0.0091, 0.0086], [0.4225, 0.0505, 0.0082, 0.0073, 0.0041, 0.0041, 0.0032, 0.003], [0.2464, 0.1919, 0.0215, 0.0096, 0.0066, 0.0051, 0.0048, 0.0045], [0.1141, 0.0225, 0.01, 0.0073, 0.0073, 0.0069, 0.0057, 0.0057], [0.2868, 0.0772, 0.006, 0.0049, 0.0046, 0.0046, 0.0044, 0.0038], [0.4294, 0.0311, 0.0061, 0.0051, 0.0048, 0.0045, 0.004, 0.004], [0.4786, 0.0537, 0.0068, 0.006, 0.0047, 0.0044, 0.0041, 0.0034], [0.0592, 0.0461, 0.0159, 0.0117, 0.0075, 0.0075, 0.0071, 0.0071], [0.0353, 0.0177, 0.0147, 0.0079, 0.0074, 0.0069, 0.0058, 0.0058], [0.3104, 0.0088, 0.0078, 0.0053, 0.0053, 0.0042, 0.0042, 0.0039], [0.102, 0.0147, 0.0114, 0.0079, 0.0054, 0.0054, 0.0051, 0.0051], [0.3056, 0.0118, 0.0081, 0.0077, 0.006, 0.0049, 0.0038, 0.0038], [0.9418, 0.0077, 0.0063, 0.0044, 0.001, 0.0009, 0.0009, 0.0007], [0.9827, 0.0066, 0.0028, 0.0019, 0.0012, 0.0006, 0.0006, 0.0005], [0.9853, 0.0085, 0.0008, 0.0007, 0.0004, 0.0003, 0.0002, 0.0002], [0.9987, 0.001, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9917, 0.0067, 0.0009, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001], [0.9957, 0.0028, 0.0006, 0.0004, 0.0003, 0.0001, 0.0, 0.0], [0.9974, 0.0017, 0.0006, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9988, 0.0008, 0.0002, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9969, 0.0025, 0.0005, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9968, 0.0025, 0.0005, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9982, 0.0012, 0.0005, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9993, 0.0005, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9996, 0.0003, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9996, 0.0003, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9751, 0.0179, 0.0051, 0.0008, 0.0004, 0.0001, 0.0001, 0.0001], [0.9934, 0.0046, 0.0015, 0.0001, 0.0001, 0.0001, 0.0, 0.0], [0.9996, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.6458, 0.3457, 0.0038, 0.0023, 0.0004, 0.0001, 0.0001, 0.0001]], "ranks": {"Kotlin": [226462, 139452, 83554, 30209, 27978, 39306, 54293, 61767, 52757, 74636, 74824, 28352, 19823, 46412, 77763, 24012, 36059, 39371, 32939, 75529, 139625, 90591, 126239, 173816, 174303, 101251, 97850, 156360, 131374, 123940, 133192, 135777, 173615, 158026, 152560, 139183, 140049, 144936, 140686, 107308, 126047, 97941, 59677, 53812, 72556, 85566, 90857, 75918, 42634, 29623, 25901, 2631, 2058, 726, 249, 82, 66, 53, 53, 30, 28, 49, 23]}}, {"pos": 512, "top": [["s", "**.", "**\u2013", " \u2013", " **\u2013", "**:", "**", " **"], ["s", " **", "**\u2013", " **\u2013", "-**", "**.", "**,", " \u2013**"], ["s", "**\u2013", "\u2026**", " **\u2013", "**.", "**\u3002", " **", "-**"], ["\uff1f**", " **\u00ab", "\u300d**", " **", " **:", " **\u300c", ">**", "\u2019**"], ["s", " **", "-**", ">**", " **.", "**", " **#", "**\u3002"], [" **", "-**", "s", " **.", "**.", ">**", " **#", " **\u00ab"], ["s", " **", "**", "-**", "**\u3002", "**.", ">**", " **\u00ab"], [" **", "s", "-**", "**", " **\u00ab", ">**", " **#", "**-"], [" **", "**", "s", " **#", " **\u00ab", "...**", "-**", "**."], ["s", " **", "-**", " **#", " **\u00ab", "**", ">**", "\u2026**"], ["s", " **", "**", " **#", "...**", "-**", " **\u00ab", "\u2026**"], [" **", " **\u00ab", " **#", "-**", ">**", "s", "...**", " **-"], [" **", " **\u00ab", "-**", " **#", "...**", " **-", ">**", "s"], [" **", " **\u00ab", "-**", " **#", ">**", " **+", "**-", " **-"], [" **", "s", "-**", "\u2026**", " **#", "...**", "**", " **\u00ab"], [" **", "s", "-**", " **#", ">**", "ing", "\u2026**", "...**"], [" **", "s", "...**", "\u2026**", "-**", " **#", "**", " **\u2013"], [" **", "-**", "...**", "\u2026**", "**", ">**", " **#", " **\u2013"], [" **", "...**", "**", "-**", "**-", "\u2026**", " **#", "**,"], ["...**", " **", "**", "**,", "\u2026**", ">**", "-**", "**-"], [" **", "...**", "**,", "**", "s", "**:", ">**", " **#"], [" **", " **#", "...**", ">**", "\u300d**", "**-", "-**", "ing"], [" **", "s", "ing", "...**", " **#", ">**", "**,", "\u300d**"], ["s", " **", "ing", "a", "er", "o", "...**", "**,"], [" **", "...**", "**", "**,", "**:", " **#", "s", "ing"], [" **", "...**", " **#", ">**", "**", "**:", "-**", " **+"], [" **", "**", " **#", "...**", "**:", "**,", ">**", "-**"], [" **", "s", " impact", "ing", "**", " \n\n", " **#", " heavily"], [" **", "**", "**:", "...**", "**,", " **#", "ing", "s"], [" **", "**", "...**", "**:", "\u2026**", " **,", "-**", " **#"], [" **", " complex", " power", "**", "s", " technology", " high", " impact"], [" **", " complex", " high", " power", "s", " critical", " technology", " heavy"], [" **", " complex", " power", " high", "s", " massive", " heavy", " critical"], [" **", "\u2026**", "**:", " complexity", " complex", " workflows", " tech", " modular"], ["**:", "\u2026**", " **", "**", "?**", "...**", "!**", "\u201d**"], ["\u2026**", "**:", "...**", "\u2026*", "**", "**\u2013", "**\u2014", "?**"], ["**:", "\u2026**", "**", " complexity", " workflows", " runtime", "-heavy", "**\u2013"], [" complexity", "**:", " workflows", "**", " complex", " **", " hardware", " software"], [" complexity", " complex", " hardware", " workflows", " automation", "-heavy", " workload", " unpredictable"], [" garbage", " complexity", " complex", " fragmentation", " workflows", " cleanup", " multit", "-heavy"], [" fragmentation", " garbage", " complexity", " memory", " workflows", " complex", "!**", "-heavy"], [" garbage", " fragmentation", " recycling", " memory", " cleanup", " processing", " workflows", " computational"], [" fragmentation", " garbage", " recycling", " cleanup", " workflows", " processing", " transient", " memory"], [" fragmentation", " garbage", " recycling", " processing", " workflows", " cleanup", " optimizations", " computational"], [" garbage", " fragmentation", " recycling", " production", " rapid", " cleanup", " creation", " transient"], [" garbage", " fragmentation", " **:", "**:", " recycling", " **", " :**", " production"], ["**:", ":**", " **:", " **", "!**", " :**", "**", "\uff1a**"], [" **", "**:", ":**", "**", "-**", " **:", "\uff1a**", " :**"], ["**:", ":**", " **", " :**", " **:", "-**", "**", "**,"], [":**", "**:", " :**", "\uff1a**", ":*", " **:", " fragmentation", "+:"], [":**", "**:", "\uff1a**", " :**", " **:", "?**", "!**", ";**"], [":**", ";**", "\uff1a**", "**:", "!**", " :**", "?**", "%**"], [":**", ";**", " :**", ":*", "\uff1a**", "**:", " JVM", "%**"], [":**", " JVM", ";**", " Android", " Scenario", " Java", " Problem", " :**"], [" Android", " JVM", " Java", ":**", " Serialization", ";**", " Scenario", " Runtime"], [" Android", " JVM", " Java", "Android", " JNI", " Kotlin", " JAVA", "-android"], [" Android", " JVM", " Java", "Android", " JNI", " Kotlin", " JAVA", " JDK"], [" Android", " JVM", "Android", " Java", " JNI", " Kotlin", "-android", " JIT"], [" Android", " JVM", " JNI", "Android", " Java", " JIT", " Kotlin", " android"], [" Android", " JVM", "Android", " android", "-android", " Java", " JNI", " GC"], [" Android", " JVM", "Android", " JNI", " android", " Java", " JIT", " GC"], [" Android", " JVM", "Android", " android", " JNI", "-android", " JIT", " GC"], ["Android", "J", " Android", " JVM", "Java", "On", "GC", "Jvm"]], "p": [[0.9982, 0.0007, 0.0004, 0.0004, 0.0001, 0.0, 0.0, 0.0], [0.9038, 0.0309, 0.0241, 0.0114, 0.0054, 0.0047, 0.0025, 0.0025], [0.8265, 0.0987, 0.025, 0.025, 0.0072, 0.0043, 0.0026, 0.0016], [0.1395, 0.1086, 0.1021, 0.0959, 0.0747, 0.0619, 0.0353, 0.0275], [0.8331, 0.1127, 0.0135, 0.0072, 0.005, 0.0044, 0.0034, 0.0027], [0.6558, 0.1658, 0.0198, 0.0175, 0.0136, 0.0106, 0.0094, 0.0094], [0.5063, 0.3943, 0.0471, 0.0135, 0.0039, 0.0039, 0.0034, 0.003], [0.734, 0.0877, 0.0469, 0.0469, 0.0119, 0.0092, 0.0082, 0.0064], [0.7416, 0.0537, 0.0288, 0.0254, 0.0224, 0.0198, 0.0174, 0.0093], [0.4574, 0.4036, 0.0375, 0.0201, 0.0138, 0.0122, 0.0095, 0.0065], [0.7325, 0.2378, 0.0118, 0.0038, 0.0034, 0.0026, 0.0011, 0.0007], [0.9698, 0.0108, 0.0065, 0.0035, 0.001, 0.0009, 0.0008, 0.0008], [0.926, 0.0407, 0.0103, 0.0055, 0.002, 0.0014, 0.0012, 0.001], [0.8187, 0.0593, 0.0523, 0.015, 0.0049, 0.0046, 0.0036, 0.0031], [0.6242, 0.3341, 0.0107, 0.0037, 0.0033, 0.0021, 0.0016, 0.0015], [0.6548, 0.3093, 0.0106, 0.0032, 0.0022, 0.0018, 0.0016, 0.0013], [0.6899, 0.224, 0.0162, 0.0143, 0.0082, 0.0064, 0.0064, 0.0056], [0.8051, 0.0454, 0.0354, 0.0215, 0.0215, 0.0147, 0.0115, 0.0079], [0.8063, 0.085, 0.0276, 0.0215, 0.0148, 0.013, 0.0054, 0.0048], [0.4946, 0.2336, 0.0669, 0.0358, 0.0358, 0.0192, 0.0169, 0.0149], [0.2669, 0.1619, 0.0814, 0.0765, 0.0464, 0.0264, 0.0193, 0.0171], [0.6304, 0.0314, 0.0295, 0.0244, 0.0115, 0.009, 0.0079, 0.007], [0.4635, 0.0627, 0.0405, 0.018, 0.0096, 0.0075, 0.0058, 0.0055], [0.1354, 0.1055, 0.044, 0.0208, 0.0092, 0.0072, 0.0063, 0.0063], [0.6057, 0.0563, 0.0342, 0.0266, 0.025, 0.0118, 0.0118, 0.0111], [0.9466, 0.0153, 0.0068, 0.0032, 0.0025, 0.0023, 0.0018, 0.0014], [0.9088, 0.0058, 0.0058, 0.0048, 0.0042, 0.0024, 0.0023, 0.0019], [0.8881, 0.0013, 0.0013, 0.0012, 0.001, 0.001, 0.0009, 0.0008], [0.9423, 0.0111, 0.0046, 0.0017, 0.0017, 0.0013, 0.0008, 0.0007], [0.9531, 0.0047, 0.0032, 0.0015, 0.0007, 0.0007, 0.0006, 0.0006], [0.6844, 0.0063, 0.0059, 0.0059, 0.0049, 0.0046, 0.0041, 0.0036], [0.5808, 0.0106, 0.0073, 0.0069, 0.0061, 0.0044, 0.0039, 0.0035], [0.3385, 0.014, 0.0085, 0.008, 0.0062, 0.0058, 0.0058, 0.0055], [0.181, 0.0519, 0.0315, 0.0216, 0.0158, 0.0116, 0.0102, 0.0085], [0.218, 0.1408, 0.0967, 0.0551, 0.0356, 0.026, 0.026, 0.0148], [0.3537, 0.1301, 0.0397, 0.0397, 0.0373, 0.0155, 0.0114, 0.0107], [0.1114, 0.0526, 0.0248, 0.0219, 0.0171, 0.0133, 0.0104, 0.0097], [0.0252, 0.0197, 0.0185, 0.0174, 0.0135, 0.0135, 0.0119, 0.0112], [0.0427, 0.0332, 0.0167, 0.0147, 0.0138, 0.0115, 0.0095, 0.0084], [0.0559, 0.0299, 0.0264, 0.0141, 0.0125, 0.0103, 0.0086, 0.0081], [0.0362, 0.0282, 0.0234, 0.0125, 0.0125, 0.0118, 0.0111, 0.0111], [0.0959, 0.0901, 0.0619, 0.0214, 0.0201, 0.0201, 0.0147, 0.013], [0.1228, 0.1228, 0.07, 0.0242, 0.0147, 0.0147, 0.0138, 0.0095], [0.0824, 0.0642, 0.0196, 0.0152, 0.0112, 0.0112, 0.0092, 0.0087], [0.0845, 0.0658, 0.0177, 0.0114, 0.0107, 0.0095, 0.0089, 0.0065], [0.053, 0.053, 0.0172, 0.0143, 0.0092, 0.0092, 0.0072, 0.0063], [0.2319, 0.0853, 0.0379, 0.0295, 0.019, 0.019, 0.0179, 0.0168], [0.4928, 0.1246, 0.0804, 0.0357, 0.0278, 0.0278, 0.023, 0.023], [0.4627, 0.1929, 0.0588, 0.0519, 0.0519, 0.0203, 0.0179, 0.0158], [0.5677, 0.0466, 0.032, 0.0301, 0.0118, 0.0071, 0.0067, 0.0056], [0.5728, 0.2388, 0.0684, 0.0604, 0.0222, 0.005, 0.0039, 0.0036], [0.5606, 0.0629, 0.049, 0.0406, 0.0337, 0.0337, 0.0192, 0.0124], [0.3969, 0.0832, 0.0418, 0.027, 0.0254, 0.0238, 0.0224, 0.0174], [0.1266, 0.0496, 0.0411, 0.0411, 0.032, 0.0265, 0.022, 0.022], [0.2127, 0.1877, 0.1657, 0.0254, 0.0145, 0.0136, 0.0136, 0.012], [0.6972, 0.2565, 0.0306, 0.0047, 0.0025, 0.002, 0.001, 0.0006], [0.7922, 0.1768, 0.0186, 0.0042, 0.0037, 0.0017, 0.0003, 0.0003], [0.8059, 0.1798, 0.0048, 0.0042, 0.0023, 0.0012, 0.0003, 0.0002], [0.7407, 0.2405, 0.005, 0.005, 0.0044, 0.001, 0.0009, 0.0004], [0.932, 0.0596, 0.0063, 0.001, 0.0004, 0.0002, 0.0001, 0.0001], [0.9355, 0.0598, 0.003, 0.0003, 0.0003, 0.0002, 0.0002, 0.0002], [0.9229, 0.0521, 0.0192, 0.001, 0.0007, 0.0007, 0.0005, 0.0005], [0.6709, 0.1922, 0.0801, 0.023, 0.0096, 0.0051, 0.0037, 0.0031]], "ranks": {"Kotlin": [89833, 46829, 20991, 6200, 4407, 9633, 12454, 22976, 26836, 30470, 38091, 16374, 13623, 20260, 52323, 26060, 29454, 28430, 26428, 80077, 94873, 45596, 71817, 98982, 49895, 17433, 16590, 41675, 12382, 11039, 26366, 31317, 34814, 10140, 8482, 5642, 867, 1208, 1811, 1070, 1561, 1831, 1095, 1431, 1790, 1775, 1934, 1599, 914, 358, 349, 68, 39, 20, 10, 6, 6, 6, 7, 15, 15, 20, 42]}}, {"pos": 513, "top": [[".", " \u2013", "\u2013", "\u6700\u65b0\u53d1\u5e03", "\u2013and", ",", "..", "   \n"], ["\u6700\u65b0\u53d1\u5e03", "   \n", "  \n", "\u2013and", " \u2013", " \u2013**", "\u2013", "\u2018"], ["\u2013", "\u2013and", " \u2013", "\u2018", ".\u2013", "\u6700\u65b0\u53d1\u5e03", ".", " \u2013,"], [" Blowjob", " ;;^", " cumshot", " Hidal", " Guta", " Strec", " Shemale", "&eacute"], ["&A", "&eacute", "&P", "&(", " --", "enkins", "(--", " Hidal"], ["-J", "&A", "-j", "dias", " Hidal", "enkins", ";j", "neighbor"], ["&eacute", "-j", "--)", "-J", ";j", "&A", "\u0434\u0436", "-&"], ["-J", "-j", "ner", "ging", "_J", "erman", "athon", "/J"], ["-J", "/J", "athon", "/&", "_J", "&P", "ging", "ifier"], ["-J", "-j", "/J", "_J", "ry", "ner", "ging", ".j"], ["...", "-J", "...\"", "&", "-j", "-", "j", "...]"], ["uxtap", "-J", "-j", "izer", "ifier", "/J", "&eacute", "ging"], ["-J", "izer", "ifier", "uxtap", "-j", "ularity", "ner", "iverse"], ["-j", "-J", "ace", "ularity", "ork", "rock", "jax", "ding"], ["...", "ork", "j", "-J", "-j", "ace", "ic", "cap"], ["j", "ace", "ic", "r", "cap", "ap", "ork", "w"], ["j", "...", "ace", "r", "w", "&", "ic", "y"], ["...", "j", "-j", "ace", "-J", "ork", "ic", "\"..."], ["j", "-&", "...", "-j", "-J", "/&", "ace", "&"], ["j", "-&", "--", "&", "ace", "w", "-j", "&#"], ["j", "--", "@", "w", "&", "though", "J", "d"], ["ace", ".jet", "&eacute", "-j", "&quot", "cha", "``", "ork"], [" --", "j", "--", "ace", "-&", "though", "cha", "fully"], ["--", " --", "j", "w", "&", "fully", "J", "&#"], ["--", " --", "&#", "j", "-&", "though", "\\\\/", "Though"], ["ace", " --", "hra", "ware", "\\\\/", " JVM", ".jet", "/J"], [" --", "ace", "ware", "\\\\/", "\n\n", "j", "hra", "``"], [" --", "\n\n", "--", " `", " ``", " \n\n", " __", " though"], [" --", "\n\n", "--", "ware", "-era", " __", "__", "___"], ["____", " __", "___", " ____", "__", "__:", " ___", "-era"], ["-era", "ware", " ?", " modern", "__:", " __", " complex", "__."], [" ...", " --", " -", " ,", "-", " modern", " @", " mostly"], ["/", " -", "-", " mostly", "-era", " famously", " heavily", " massively"], ["-era", "/", " famously", " massively", " notoriously", "ware", "-heavy", "-"], ["-era", "/", "ware", "tech", "/J", " tech", "-centric", "j"], ["/", "-era", "\uff08", "7", "9", "2", "8", "\u2026\u2026"], ["/", "-era", "/J", " JVM", "-centric", "Java", "ware", "-heavy"], ["/", "/J", "@", "-era", " JVM", "\u2011", "Java", "ware"], ["/", " JVM", "/J", "-era", "\u2011", "-centric", "ware", "@"], [" JVM", "Java", " Java", "/java", " JDK", "/", "\u2011", "\u2026\u2026"], [" JVM", " Java", "Java", "/", "@", "/java", " JDK", "/J"], [" JVM", " Java", "Java", "/java", " JDK", "/", " JAVA", "-era"], [" JVM", " Java", "/", "Java", " JDK", "/java", "/J", " JAVA"], [" JVM", "/", " Java", " JDK", "-heavy", "-era", " /", "/J"], ["/", " JVM", "@", " Java", " @", "-heavy", "-era", " JDK"], ["/", " /", " JVM", " Java", " @", "-era", " vs", " JDK"], ["/", " /", "-era", " JVM", "\u2011", "**:", "/J", " vs"], ["/", "/G", "/M", "/J", "/C", " /", "/R", "/F"], ["/", "/G", "-era", "/J", "/M", "/R", "*:", "/C"], ["+:", "/G", "/M", "/", "/J", "/C", "-era", "/L"], ["+:", "*:", "**:", "/J", ":**", ":*", ":</", "!:"], ["*:", "+:", ":*", "/J", "**:", ":**", "/G", "/Linux"], [":*", ":**", "+:", "/J", "/G", "*:", "/C", " JVM"], ["+:", ":*", ":**", " JVM", "/J", "-heavy", "/G", "*:"], [" JVM", " garbage", "\u5783\u573e", "/J", " JIT", " Memory", " GC", "GC"], [" garbage", "\u5783\u573e", " GC", "GC", " JVM", " Gar", " Heap", "_GC"], [" GC", "GC", " garbage", "\u5783\u573e", "_GC", "gc", ".gc", " JVM"], [" GC", "GC", " garbage", "_GC", "\u5783\u573e", "gc", " JVM", ".gc"], [" GC", "GC", " garbage", "_GC", "\u5783\u573e", " Gar", " JVM", "gc"], [" GC", "GC", " JVM", " garbage", "_GC", " Gar", ".gc", " JIT"], [" GC", "GC", "_GC", " JVM", " garbage", " JIT", " Gar", " JNI"], [" GC", "GC", " Gar", "_GC", " JVM", " garbage", "/G", " JIT"], ["VM", "GC", " GC", "IT", "ST", "GB", "vm", "Gar"]], "p": [[0.2338, 0.1821, 0.0759, 0.067, 0.0262, 0.0059, 0.0055, 0.0052], [0.1502, 0.0626, 0.0458, 0.0404, 0.0296, 0.0158, 0.0085, 0.0058], [0.3681, 0.1534, 0.1534, 0.0821, 0.0152, 0.0143, 0.0092, 0.0056], [0.019, 0.0095, 0.0084, 0.0048, 0.0037, 0.0037, 0.0037, 0.0035], [0.0415, 0.0163, 0.0135, 0.0135, 0.0077, 0.0068, 0.005, 0.0032], [0.0077, 0.0044, 0.0032, 0.0027, 0.0027, 0.0027, 0.0025, 0.0025], [0.0141, 0.0133, 0.0103, 0.0097, 0.0091, 0.0076, 0.0052, 0.0052], [0.0633, 0.0219, 0.0117, 0.011, 0.008, 0.008, 0.0067, 0.0059], [0.0579, 0.0227, 0.0227, 0.0156, 0.0156, 0.0107, 0.0107, 0.0094], [0.2478, 0.0627, 0.0296, 0.0085, 0.0062, 0.0051, 0.0051, 0.0051], [0.429, 0.0957, 0.0618, 0.0481, 0.0189, 0.0156, 0.0122, 0.0107], [0.0192, 0.0132, 0.0085, 0.0062, 0.0055, 0.0055, 0.0049, 0.004], [0.0076, 0.0059, 0.0056, 0.0052, 0.0049, 0.0038, 0.0036, 0.0034], [0.0111, 0.0092, 0.006, 0.0039, 0.0036, 0.0032, 0.003, 0.0028], [0.0508, 0.0272, 0.024, 0.0165, 0.0137, 0.0078, 0.0065, 0.0054], [0.0262, 0.0096, 0.0055, 0.0045, 0.0043, 0.0043, 0.004, 0.004], [0.0619, 0.0482, 0.0157, 0.0138, 0.0138, 0.013, 0.0122, 0.0079], [0.0573, 0.0326, 0.0198, 0.0154, 0.0136, 0.0093, 0.0073, 0.0068], [0.0397, 0.0213, 0.0188, 0.0176, 0.0129, 0.0121, 0.0107, 0.01], [0.0327, 0.0271, 0.0164, 0.0145, 0.01, 0.006, 0.005, 0.0047], [0.0356, 0.0148, 0.0123, 0.009, 0.0085, 0.0079, 0.0079, 0.0075], [0.0057, 0.0021, 0.0021, 0.0018, 0.0015, 0.0015, 0.0014, 0.0013], [0.0073, 0.0073, 0.0065, 0.0045, 0.0029, 0.0024, 0.0022, 0.0022], [0.0202, 0.019, 0.0122, 0.0045, 0.0042, 0.0035, 0.0035, 0.0033], [0.0218, 0.0193, 0.0055, 0.0055, 0.0049, 0.0038, 0.0031, 0.0031], [0.0041, 0.0032, 0.003, 0.0027, 0.0024, 0.0018, 0.0016, 0.0014], [0.01, 0.0042, 0.0039, 0.0037, 0.0024, 0.0024, 0.0021, 0.002], [0.1452, 0.0223, 0.0223, 0.0119, 0.0053, 0.0044, 0.0039, 0.0036], [0.0813, 0.0281, 0.008, 0.0055, 0.0046, 0.0043, 0.0043, 0.0034], [0.0683, 0.0642, 0.0566, 0.0469, 0.0343, 0.0267, 0.0251, 0.0184], [0.0334, 0.0148, 0.0115, 0.0115, 0.0102, 0.0084, 0.0079, 0.0058], [0.0217, 0.018, 0.018, 0.0159, 0.0109, 0.009, 0.009, 0.0075], [0.035, 0.0212, 0.0199, 0.0155, 0.0146, 0.0146, 0.0137, 0.0094], [0.0779, 0.0305, 0.0153, 0.0144, 0.0135, 0.0127, 0.0099, 0.0093], [0.056, 0.0385, 0.0151, 0.0117, 0.0104, 0.0076, 0.0059, 0.0055], [0.069, 0.0306, 0.0287, 0.027, 0.0238, 0.0238, 0.021, 0.0128], [0.0529, 0.0412, 0.0142, 0.0126, 0.0118, 0.0098, 0.0092, 0.0076], [0.0743, 0.0241, 0.0227, 0.0176, 0.0176, 0.0101, 0.0078, 0.0078], [0.0536, 0.0287, 0.021, 0.0144, 0.0135, 0.0105, 0.0099, 0.0087], [0.1589, 0.0549, 0.0455, 0.0229, 0.0157, 0.0148, 0.0115, 0.0115], [0.2004, 0.0785, 0.0395, 0.0371, 0.0271, 0.0198, 0.0145, 0.0094], [0.4278, 0.1305, 0.031, 0.0227, 0.0213, 0.0107, 0.0061, 0.0057], [0.3894, 0.1264, 0.0465, 0.0249, 0.0249, 0.0171, 0.0081, 0.0067], [0.0901, 0.0747, 0.0331, 0.0122, 0.0115, 0.0101, 0.0095, 0.0079], [0.0658, 0.0399, 0.0274, 0.0227, 0.0189, 0.0138, 0.013, 0.0107], [0.0921, 0.0339, 0.0281, 0.015, 0.0141, 0.0103, 0.0103, 0.0063], [0.3579, 0.0215, 0.0202, 0.019, 0.0157, 0.0139, 0.0115, 0.009], [0.849, 0.0094, 0.0057, 0.0057, 0.0047, 0.0047, 0.0042, 0.0039], [0.2487, 0.0555, 0.0432, 0.0262, 0.0217, 0.0169, 0.014, 0.014], [0.1712, 0.0592, 0.0263, 0.0232, 0.0192, 0.018, 0.0159, 0.015], [0.5417, 0.0941, 0.0346, 0.012, 0.0112, 0.0106, 0.0106, 0.0082], [0.2194, 0.1174, 0.0669, 0.0316, 0.0192, 0.0169, 0.014, 0.0103], [0.1043, 0.0812, 0.0763, 0.0594, 0.0435, 0.0299, 0.0193, 0.0125], [0.0687, 0.0606, 0.0502, 0.0253, 0.0144, 0.0119, 0.0112, 0.0105], [0.2605, 0.2299, 0.0581, 0.0275, 0.0242, 0.0242, 0.0228, 0.0228], [0.5125, 0.2136, 0.1664, 0.0421, 0.0328, 0.0047, 0.0044, 0.0018], [0.7359, 0.1449, 0.0879, 0.0196, 0.003, 0.0027, 0.0014, 0.0011], [0.7508, 0.1898, 0.0374, 0.0051, 0.0045, 0.0035, 0.0021, 0.0021], [0.8158, 0.1251, 0.0358, 0.0062, 0.0043, 0.0038, 0.002, 0.0012], [0.8605, 0.1165, 0.0108, 0.004, 0.004, 0.0009, 0.0005, 0.0004], [0.9285, 0.0594, 0.0031, 0.0023, 0.0019, 0.0007, 0.0006, 0.0006], [0.8986, 0.0738, 0.003, 0.003, 0.0027, 0.0025, 0.0013, 0.0009], [0.5297, 0.3641, 0.0812, 0.002, 0.0013, 0.001, 0.001, 0.001]], "ranks": {"Kotlin": [156685, 163325, 144289, 43614, 107624, 140046, 93040, 153890, 135925, 186844, 124040, 69654, 37288, 83887, 164029, 147383, 151305, 131554, 183396, 221209, 234289, 199529, 226837, 234078, 181668, 82601, 71427, 175518, 120643, 41298, 50897, 105081, 109799, 32078, 16681, 19451, 6468, 5315, 5717, 2638, 3861, 2557, 2154, 4926, 9654, 10456, 19127, 17618, 9789, 15182, 12020, 2395, 888, 674, 250, 56, 39, 40, 61, 22, 30, 29, 63]}}, {"pos": 514, "top": [[" \u2013", "\u6700\u65b0\u53d1\u5e03", "\u2013", "\u2013and", " *\u2013", " |\u2013", ".\u2013", " [\u2026]"], [" \u2013", ":\\\"", " \\\"", " *\u2013", "\\\"", ",\\\"", "\u2013", "\u2013and"], [" \u2013", "\u2013", "s", " \\\"", ":\\\"", "\u2013\u2013", " \u2013**", "\u2013and"], [" ``", " \\\"", "``", " ``(", " '\\\"", " \\\"{", "\\\"\\", ":\\\""], [" \\\"", " @", ":\\\"", "\\\"", ".\\\"", ",\\\"", "=\\\"", " *@"], [":\\\"", " JVM", ".\\\"", " \\\"", ",\\\"", " @", "s", "\\n"], [".\\\"", ":`", ".`", " ~", "s", " ~~", ",\\\"", "~"], [".\\\"", ".", ":`", ",\\\"", "s", "..", ":\\\"", ".`"], [".\\\"", ":`", ".`", " `\"", ".", ",\\\"", " `'", ":\\\""], [",", ".", ".\\\"", "\u2013", ",\\\"", ";", "\u2013\u2013", ":"], ["...", ".\\\"", ".", ",\\\"", "\\n", ",", ".\\", " [\u2026]"], [" JVM", ".\\\"", ",\\\"", " \\\"", ":\\\"", " ``", "\u2013\u2013", " '\\\""], [" JVM", ".\\\"", "\u2013\u2013", " VM", "s", " LGBTQ", ",\\\"", " \\\""], [" JVM", "\u2013\u2013", "\u2013", "s", " VM", ".\\\"", " LGBTQ", "-era"], ["s", "\u2013", " JVM", "\u2013\u2013", " \\\"", " \u2013", "\\'", ".\\\""], ["s", " JVM", " \\\"", "\u2013\u2013", " VM", "\\'", "\u2013", "-era"], ["s", "\u2013", " JVM", "...", "\u2013\u2013", " \u2013", " VM", ","], ["...", " JVM", "s", "...\\", ".\\\"", "\u2013\u2013", " \\\"", "\\'"], [" JVM", "s", "...\\", " \\\"", ":\\\"", "\u2013\u2013", ".\\\"", "..."], [" JVM", " `'", "\u2013\u2013", "\\'", " \\\"", "s", " '\\\"", " ~~"], [" JVM", "s", "...\\", " \n\n", "\u2013\u2013", "   \n\n", " \n  \n", " --"], [" ``", " JVM", " '\\\"", " `'", " \\\"", "``", " ;;^", " ____"], [" ``", " JVM", " \\\"", " `'", " ''", " '\\\"", "``", " --"], [" ,", " ``", " `", " \\\"", "s", " JVM", " --", " '"], [" JVM", " __", " ``", " ____", " \\\"", " Java", "...\\", "\\u"], [" JVM", " Java", " ``", " __", " \\\"", " ____", " JDK", " ___"], [" JVM", " Java", " ``", " \\\"", " `", " __", " ~", " ,"], [" ``", " JVM", " `", " ,", " --", " Java", " ~", " __"], [" JVM", " Java", " ``", " \\\"", " __", " ____", " ~", " --"], [" JVM", " ____", " __", " Java", " \\\"", " ``", " ___", " ...\\"], [" JVM", " Java", " \\\"", " ...", " __", " ...\\", " ____", " ___"], [" JVM", " ...", " Java", " \\\"", " ...\\", " \u2013", " ~", " technology"], [" JVM", " \u2013", " Java", " mostly", " ~", " modern", " heavily", " technology"], [" JVM", " \u2013", " Java", " tech", " technology", "\u2013", " mostly", " heavily"], [" JVM", " Java", " tech", " java", " lifecycle", " ecosystem", " \u2013", " JDK"], [" JVM", " Java", " \u2013", " \u2026", " [\u2026]", " JDK", " java", "Java"], [" JVM", " Java", " JDK", " java", "Java", " \u2013", "/java", " runtime"], [" JVM", " Java", " \u2013", " java", " JDK", "\u2013", "Java", "/java"], [" JVM", " Java", " java", " JDK", " \u2013", "Java", "/java", " ~"], [" JVM", " Java", "Java", " java", "/java", "java", " JDK", " JAVA"], [" JVM", " Java", "Java", " java", "/java", "java", " JDK", " JAVA"], [" JVM", " Java", "Java", " java", "/java", " JDK", " JAVA", "java"], [" JVM", " Java", " java", "Java", " JDK", "/java", " JAVA", " JIT"], [" JVM", " Java", " java", " JDK", " JIT", " engine", "Java", " engines"], [" JVM", " Java", " java", " JDK", " engine", " crashes", " JIT", " JAVA"], [" JVM", " Java", " java", " JDK", " crashes", " JIT", " engine", " jitter"], [" JVM", " Java", " java", " periodic", " JDK", " crashes", " JIT", " runtime"], [" JVM", " Java", "/", " periodic", " java", " runtime", " vs", " crashes"], [" JVM", "/", " Java", "/G", " (~", " vs", " runtime", ":"], [" JVM", "+:", "/G", "/M", ":", "/", "/C", "/S"], ["+:", "*:", ":*", " JVM", "():", "**:", ":", " **:"], ["*:", ":*", " JVM", "+:", "():", ":**", "/G", "**:"], [":*", "*:", "+:", ":**", " JVM", "/G", ":`", "():"], [":*", "+:", " JVM", ":**", "*:", ":`", "__:", " latency"], [" JVM", " GC", " garbage", ":*", "+:", " Heap", " JIT", "*:"], [" GC", " garbage", " JVM", "\u5783\u573e", "GC", " Heap", " Gar", "_GC"], [" GC", "GC", " garbage", "\u5783\u573e", " gc", "_GC", ".gc", "gc"], [" GC", "GC", " garbage", "_GC", ".gc", " gc", "gc", " Gar"], [" GC", "GC", " garbage", "_GC", " Gar", " gc", ".gc", "gc"], [" GC", "GC", " garbage", "_GC", " gc", ".gc", "gc", " Gar"], [" GC", "GC", " garbage", " gc", ".gc", "_GC", " Android", " Pause"], [" GC", "GC", " gc", " garbage", "(gc", ".gc", "_GC", " Pause"], [" GC", ":**", " Gar", "GC", "**:", " Pause", " Mode", "/G"]], "p": [[0.8795, 0.0386, 0.0183, 0.0125, 0.0111, 0.0046, 0.0028, 0.0028], [0.2413, 0.1658, 0.0888, 0.0446, 0.0446, 0.0394, 0.0327, 0.0154], [0.8351, 0.0502, 0.0173, 0.0093, 0.0072, 0.0064, 0.0047, 0.0039], [0.6782, 0.1335, 0.104, 0.0232, 0.0062, 0.0059, 0.0052, 0.0038], [0.7092, 0.0453, 0.0293, 0.0228, 0.0201, 0.0157, 0.0122, 0.0115], [0.0853, 0.0802, 0.0429, 0.0379, 0.0334, 0.0314, 0.019, 0.0168], [0.1711, 0.086, 0.0591, 0.049, 0.049, 0.049, 0.0382, 0.0316], [0.2378, 0.064, 0.064, 0.0565, 0.0343, 0.0343, 0.0322, 0.0267], [0.1738, 0.1534, 0.053, 0.053, 0.0498, 0.0321, 0.0267, 0.0195], [0.2804, 0.091, 0.0519, 0.043, 0.0278, 0.0278, 0.023, 0.0168], [0.1863, 0.175, 0.175, 0.0345, 0.0286, 0.0222, 0.0196, 0.0119], [0.1334, 0.1039, 0.0337, 0.017, 0.0141, 0.0132, 0.0124, 0.0109], [0.161, 0.0181, 0.0132, 0.0097, 0.0059, 0.0059, 0.0052, 0.0046], [0.1236, 0.0401, 0.013, 0.0108, 0.0095, 0.0051, 0.0037, 0.0031], [0.0543, 0.0241, 0.02, 0.0176, 0.0156, 0.0121, 0.01, 0.0074], [0.0592, 0.0298, 0.011, 0.0075, 0.0062, 0.0052, 0.0052, 0.0028], [0.3731, 0.027, 0.0198, 0.0145, 0.0136, 0.0113, 0.0053, 0.0047], [0.1416, 0.1036, 0.0758, 0.0406, 0.018, 0.0096, 0.0096, 0.008], [0.1601, 0.0459, 0.0109, 0.009, 0.007, 0.0066, 0.0066, 0.0066], [0.0922, 0.0193, 0.0182, 0.0125, 0.0103, 0.0103, 0.0081, 0.0059], [0.0305, 0.0238, 0.0093, 0.0082, 0.0077, 0.0077, 0.0073, 0.0064], [0.1994, 0.1288, 0.0306, 0.021, 0.0127, 0.0057, 0.0037, 0.0028], [0.3091, 0.0609, 0.0288, 0.0154, 0.0145, 0.0145, 0.0099, 0.0082], [0.0396, 0.0396, 0.024, 0.0155, 0.0121, 0.0121, 0.0107, 0.0107], [0.2208, 0.0558, 0.0558, 0.0281, 0.0219, 0.015, 0.0133, 0.0125], [0.8302, 0.0322, 0.0162, 0.0072, 0.0072, 0.0036, 0.0019, 0.0019], [0.5926, 0.0802, 0.0753, 0.0096, 0.009, 0.007, 0.0062, 0.0051], [0.0764, 0.0559, 0.0559, 0.0525, 0.0318, 0.0281, 0.0281, 0.0233], [0.3962, 0.0733, 0.0608, 0.0392, 0.0392, 0.0185, 0.0136, 0.0127], [0.5518, 0.0619, 0.0546, 0.04, 0.0353, 0.0275, 0.0228, 0.0089], [0.5672, 0.0528, 0.022, 0.0182, 0.0151, 0.0142, 0.0133, 0.0052], [0.203, 0.1311, 0.0376, 0.0258, 0.0115, 0.0115, 0.0095, 0.0095], [0.102, 0.0242, 0.0214, 0.0147, 0.013, 0.0108, 0.0095, 0.0089], [0.3264, 0.0935, 0.0304, 0.0135, 0.0093, 0.0064, 0.006, 0.006], [0.7418, 0.0254, 0.006, 0.005, 0.0037, 0.0034, 0.0032, 0.003], [0.8214, 0.0339, 0.0125, 0.0086, 0.0071, 0.0032, 0.0025, 0.0025], [0.9356, 0.0411, 0.0023, 0.0019, 0.0014, 0.0011, 0.0008, 0.0003], [0.8656, 0.0589, 0.0102, 0.0038, 0.0029, 0.0018, 0.0017, 0.0012], [0.9018, 0.074, 0.0025, 0.002, 0.0015, 0.0014, 0.0009, 0.0004], [0.8468, 0.1299, 0.0094, 0.0065, 0.0031, 0.0014, 0.001, 0.0003], [0.8294, 0.1441, 0.0134, 0.0049, 0.0021, 0.0013, 0.0009, 0.0007], [0.8614, 0.1166, 0.0075, 0.0051, 0.0017, 0.0011, 0.0007, 0.0007], [0.912, 0.0661, 0.0045, 0.004, 0.0016, 0.0011, 0.0008, 0.0008], [0.8218, 0.0981, 0.0097, 0.0046, 0.0026, 0.0023, 0.002, 0.0018], [0.691, 0.1278, 0.0268, 0.0077, 0.0036, 0.0027, 0.0027, 0.0025], [0.6103, 0.1202, 0.0163, 0.0082, 0.0039, 0.0039, 0.0036, 0.0028], [0.5797, 0.0835, 0.0145, 0.0069, 0.0069, 0.0057, 0.005, 0.0044], [0.3119, 0.0478, 0.0226, 0.0107, 0.01, 0.0065, 0.0065, 0.0061], [0.297, 0.0585, 0.0139, 0.0115, 0.0084, 0.0079, 0.0079, 0.0079], [0.1663, 0.1379, 0.0349, 0.0289, 0.0289, 0.0255, 0.0175, 0.0137], [0.4387, 0.2348, 0.0673, 0.036, 0.0299, 0.0247, 0.0141, 0.0117], [0.2405, 0.2122, 0.1653, 0.1459, 0.0112, 0.0112, 0.0088, 0.0077], [0.5052, 0.1127, 0.0878, 0.0775, 0.047, 0.0119, 0.0077, 0.0064], [0.3722, 0.2258, 0.0941, 0.0733, 0.0346, 0.0093, 0.006, 0.005], [0.6868, 0.0929, 0.082, 0.0183, 0.0162, 0.0118, 0.0086, 0.0059], [0.6185, 0.331, 0.0187, 0.0145, 0.0078, 0.0025, 0.0012, 0.0006], [0.9738, 0.0123, 0.0123, 0.0005, 0.0003, 0.0002, 0.0002, 0.0002], [0.9743, 0.0202, 0.004, 0.0003, 0.0003, 0.0003, 0.0002, 0.0001], [0.9846, 0.0124, 0.0022, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001], [0.9928, 0.0067, 0.0002, 0.0001, 0.0001, 0.0001, 0.0, 0.0], [0.9956, 0.0036, 0.0002, 0.0002, 0.0001, 0.0001, 0.0, 0.0], [0.9967, 0.0025, 0.0002, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9486, 0.0417, 0.003, 0.0012, 0.0006, 0.0004, 0.0003, 0.0003]], "ranks": {"Kotlin": [24208, 8115, 3676, 577, 951, 651, 1287, 3807, 3252, 4556, 3271, 485, 221, 646, 7202, 1580, 2235, 398, 600, 2536, 3001, 361, 665, 3350, 480, 105, 99, 1124, 199, 98, 192, 520, 1208, 302, 220, 94, 31, 32, 36, 26, 36, 56, 58, 94, 147, 324, 623, 708, 693, 609, 520, 337, 191, 175, 88, 51, 49, 52, 70, 41, 69, 80, 117]}}, {"pos": 515, "top": [[" (\u201e", " McCoy", "\ufffd", ".", "s", "  \n", " AVC", " McCl"], ["schild", " \\\"", " (\u201e", " GC", " AVC", ":\\\"", " \\\"\"", "  \n\n"], [" GC", ":\\\"", "schild", "(gc", " (\u201e", " gc", ",\\\"", "\ufffd"], [" Shemale", " ``(", " \\\"%", " \\\"{", " ``", " milfs", " GC", " Bbw"], [" GC", " gc", " @_", " [@", " ***", " (@", " CRC", " *@"], [" GC", " gc", ".gc", "GC", "(gc", "avanaugh", "%C", " _____"], [" GC", " _____", "s", " ____", " gc", "  \n", " ***", "GC"], [" GC", "  \n\n", "  \n", " gc", " _____", " ____", "(gc", ".gc"], ["  \n\n", " ____", " _____", " GC", "   \n\n", " [`", "  \n    \n", ".gc"], [" GC", "(gc", "\\n", ".gc", " gc", "s", "\\xc", "\u00c3"], ["\\n", " GC", "s", "...\\", " [@", "\\.", "\\xc", " _____"], [" GC", " ____", ".gc", "(gc", " _____", " ***", "GC", "...\\"], [" GC", ".gc", "(gc", "GC", " ____", "s", " Teixe", "ates"], [" GC", "(gc", ".gc", "GC", "s", "_gc", " gc", " VC"], [" GC", "s", "(gc", "\u00c3", " myriad", " arguably", ".gc", " MMC"], [" GC", "s", "(gc", "\u00c3", " ops", " OC", "GC", " VC"], ["s", " GC", "\u00c3", "(gc", "GC", " gc", " VC", " myriad"], [" GC", "(gc", "s", "GC", ".gc", " gc", " ops", "Sci"], [" GC", "(gc", "GC", ".gc", " gc", "s", "Sci", " AVC"], [" GC", "(gc", ".gc", "GC", " gc", "Sci", " AVC", "QC"], ["<|endoftext|>", "  \n\n", " \n\n", "   \n\n", " GC", " \n  \n", "GC", "\t\n\n"], [" GC", ".gc", "(gc", " ``", " ``(", "GC", " AVC", "trash"], [" GC", " ``", ".gc", "GC", "(gc", " &", "&quot", " AVC"], [" &", " GC", " --", " ...", " ``", " &#", " ,", " `"], [" \n\n", "  \n\n", " GC", " &#", " &", " \n  \n", "   \n\n", " ..."], [" \n\n", "  \n\n", "   \n\n", " \n  \n", " GC", " JVM", " ...", " ____"], [" GC", " ``", " fires", " JVM", " garbage", " systems", " meltdown", " periodically"], [" \n\n", "\n\n", " ,", " ...", " --", " `", " and", " &"], [" ...", " \n\n", "\n\n", " ,", " .", " GC", " ....", "  \n\n"], [" ...", " ____", " ....", " ......", " ...\\", " \n  \n", " ...)", " ._"], [" ...", " ....", " ......", " ...)", "...", " ...\\", " ...,", "...**"], [" ...", " ....", " ......", "...", " .", " [...]", " \u2026", " ...)"], [" ...", " .", " rarely", " dead", " heavily", " ,", " fires", " memory"], [" memory", " scav", " tech", " garbage", " meltdown", " spikes", " GC", " fires"], ["/memory", " lifecycle", " scav", " garbage", "...**", " memory", "?...", " resets"], [" [\u2026]", " \u2026", "\u2026*", "\u2026\u2026", "7", " \u2026.", "...**", " [...]"], [" JVM", " garbage", " lifecycle", " slowdown", " [\u2026]", " optimizations", " delays", " latency"], [" optimizations", " JVM", " downtime", " garbage", " lifecycle", " latency", " delays", " GC"], [" garbage", " JVM", "\u5783\u573e", " optimizations", " scav", " GC", " downtime", " memory"], [" garbage", "\u5783\u573e", " scav", " cleanup", " JVM", " trash", " GC", " memory"], [" garbage", "\u5783\u573e", " scav", " cleanup", " GC", " JVM", " memory", " optimizations"], [" garbage", " cleanup", " scav", "\u5783\u573e", " GC", " downtime", " optimizations", " memory"], [" garbage", " cleanup", " scav", "\u5783\u573e", " downtime", " shutdown", " pauses", " cycles"], [" garbage", " cleanup", " unpredictable", " crashes", " pauses", " scav", " interruptions", " delays"], [" garbage", " interruptions", " crashes", " unpredictable", " delays", " pauses", " shutdown", " cleanup"], [" garbage", " unpredictable", " interruptions", " crashes", " spikes", " glitches", " delays", " shutdown"], [" unpredictable", " interruptions", " glitches", " downtime", " crashes", " triggers", " spikes", " pauses"], [" unpredictable", " glitches", " interruptions", " spikes", " crashes", " triggers", " delays", " pauses"], [" glitches", " unpredictable", " interruptions", " spikes", " triggers", " crashes", " delays", " bursts"], [" glitches", " interruptions", " spikes", " unpredictable", " crashes", " delays", " bursts", " pauses"], ["**:", "*:", "+:", ":**", "():", "\u201d:", " interruptions", " }:"], ["**:", "*:", " interruptions", ":**", " pauses", " spikes", "+:", "():"], [" interruptions", " pauses", " spikes", ":**", "**:", "*:", " downtime", ":*"], [" pauses", " spikes", " interruptions", ":**", " Pause", " downtime", "**:", " bursts"], [" GC", "GC", " pauses", " gc", " garbage", "(gc", " spikes", "gc"], [" garbage", " GC", "\u5783\u573e", "GC", " pauses", " gc", "(gc", " Gar"], [" GC", "GC", " garbage", "(gc", " gc", " pauses", "gc", "\u5783\u573e"], [" GC", " pauses", "GC", " Pause", " gc", "\u505c\u987f", "(gc", " pause"], [" GC", "GC", " pauses", "(gc", " Pause", " gc", " garbage", "gc"], [" pauses", " GC", " Pause", "GC", " spikes", " garbage", " pause", " gc"], [" pauses", " Pause", " pause", " spikes", "\u505c\u987f", " Stops", " GC", " stops"], [" pauses", " Pause", " pause", " Stops", " Stop", "\u505c\u987f", " stops", " Pa"], [" pauses", " Pa", " Pause", ":**", " Stops", " Stop", " GC", "**:"]], "p": [[0.0141, 0.0125, 0.0125, 0.011, 0.0091, 0.0071, 0.0061, 0.0039], [0.0733, 0.0369, 0.0306, 0.0287, 0.0224, 0.0197, 0.0154, 0.0136], [0.0579, 0.0511, 0.0291, 0.0176, 0.0129, 0.0129, 0.0121, 0.0114], [0.0355, 0.0202, 0.0148, 0.0131, 0.0102, 0.0096, 0.0079, 0.0062], [0.5966, 0.0246, 0.0169, 0.0124, 0.0109, 0.0103, 0.0075, 0.0075], [0.3842, 0.0217, 0.0131, 0.0131, 0.0109, 0.0075, 0.0043, 0.004], [0.2582, 0.2011, 0.0396, 0.0396, 0.0308, 0.0308, 0.024, 0.0146], [0.3059, 0.1445, 0.0774, 0.0727, 0.0532, 0.0222, 0.0208, 0.0173], [0.521, 0.0585, 0.0455, 0.0355, 0.0167, 0.013, 0.0108, 0.0108], [0.0879, 0.0604, 0.0533, 0.047, 0.0209, 0.0184, 0.0163, 0.0135], [0.2223, 0.0562, 0.0562, 0.0411, 0.0386, 0.0301, 0.0234, 0.0142], [0.0566, 0.0532, 0.0222, 0.0184, 0.0143, 0.0077, 0.0072, 0.0056], [0.0586, 0.0148, 0.0148, 0.0054, 0.0037, 0.0035, 0.0033, 0.0031], [0.0926, 0.0301, 0.0182, 0.0063, 0.0046, 0.0041, 0.0036, 0.0032], [0.0599, 0.0363, 0.0072, 0.0063, 0.0056, 0.0052, 0.0041, 0.0041], [0.1736, 0.0929, 0.0081, 0.0063, 0.0049, 0.0046, 0.0043, 0.0043], [0.3025, 0.2213, 0.0142, 0.0097, 0.0097, 0.0071, 0.0052, 0.0052], [0.2666, 0.0409, 0.0299, 0.0299, 0.017, 0.0117, 0.0086, 0.0071], [0.3603, 0.0357, 0.0315, 0.0216, 0.0158, 0.0116, 0.009, 0.007], [0.2749, 0.0422, 0.0256, 0.024, 0.0146, 0.0065, 0.0054, 0.0054], [0.4042, 0.261, 0.096, 0.0157, 0.0101, 0.0079, 0.004, 0.0031], [0.0431, 0.0278, 0.0158, 0.008, 0.004, 0.0035, 0.0033, 0.0024], [0.1283, 0.0286, 0.0153, 0.0127, 0.0105, 0.0053, 0.0032, 0.0032], [0.0532, 0.0303, 0.0173, 0.0111, 0.0098, 0.0098, 0.0098, 0.0063], [0.0436, 0.0319, 0.0182, 0.0133, 0.0117, 0.0117, 0.0117, 0.0117], [0.1494, 0.0623, 0.0215, 0.0215, 0.0148, 0.0108, 0.0102, 0.0079], [0.0116, 0.0096, 0.0058, 0.0052, 0.0048, 0.0045, 0.0038, 0.0031], [0.0989, 0.077, 0.0529, 0.0126, 0.0104, 0.0092, 0.0081, 0.0067], [0.1158, 0.0796, 0.0353, 0.0178, 0.013, 0.0079, 0.0065, 0.0058], [0.4935, 0.0296, 0.0246, 0.0169, 0.0124, 0.009, 0.0085, 0.0058], [0.7618, 0.0158, 0.0123, 0.0102, 0.0096, 0.0096, 0.004, 0.0035], [0.4931, 0.0191, 0.0159, 0.0116, 0.0096, 0.0066, 0.0051, 0.0048], [0.0192, 0.0141, 0.0071, 0.0066, 0.0066, 0.0059, 0.0059, 0.0059], [0.0146, 0.0088, 0.0088, 0.0073, 0.0054, 0.0054, 0.005, 0.0047], [0.0075, 0.0066, 0.0066, 0.0062, 0.0062, 0.0058, 0.0055, 0.0055], [0.027, 0.027, 0.021, 0.0099, 0.0088, 0.0088, 0.0088, 0.0082], [0.0218, 0.0091, 0.0063, 0.0063, 0.0059, 0.0055, 0.0052, 0.0049], [0.0134, 0.0111, 0.0098, 0.0081, 0.0076, 0.0063, 0.0063, 0.0052], [0.0902, 0.0258, 0.0147, 0.0122, 0.0115, 0.0115, 0.0108, 0.0079], [0.4165, 0.1631, 0.0412, 0.0118, 0.0111, 0.0076, 0.0063, 0.0041], [0.3438, 0.1116, 0.0495, 0.0234, 0.0125, 0.0118, 0.0086, 0.0081], [0.3618, 0.0758, 0.046, 0.0381, 0.0109, 0.0096, 0.0091, 0.0091], [0.3065, 0.0533, 0.039, 0.0236, 0.0127, 0.0119, 0.0099, 0.0099], [0.1156, 0.0275, 0.0275, 0.0201, 0.0189, 0.0177, 0.0156, 0.0156], [0.085, 0.0401, 0.0354, 0.0294, 0.0294, 0.0259, 0.0229, 0.0202], [0.0708, 0.0665, 0.0429, 0.0379, 0.0295, 0.0216, 0.0203, 0.0168], [0.05, 0.047, 0.0366, 0.0344, 0.0303, 0.0303, 0.0285, 0.0268], [0.0776, 0.0605, 0.0501, 0.0442, 0.0345, 0.0324, 0.0286, 0.0268], [0.0935, 0.0604, 0.0567, 0.0567, 0.0366, 0.0366, 0.0304, 0.0252], [0.1365, 0.0882, 0.0569, 0.0535, 0.0324, 0.0286, 0.0223, 0.0209], [0.5825, 0.1473, 0.0372, 0.024, 0.0187, 0.0129, 0.0114, 0.01], [0.3051, 0.2097, 0.1441, 0.0342, 0.0302, 0.0208, 0.0195, 0.0126], [0.1656, 0.1462, 0.129, 0.1138, 0.0782, 0.037, 0.0326, 0.0211], [0.308, 0.2117, 0.0939, 0.0646, 0.0237, 0.021, 0.0163, 0.0153], [0.7662, 0.1509, 0.0231, 0.018, 0.0124, 0.0059, 0.0059, 0.0046], [0.5158, 0.3545, 0.0544, 0.0374, 0.0121, 0.0074, 0.0057, 0.0019], [0.9027, 0.0654, 0.0165, 0.0047, 0.0047, 0.0022, 0.0022, 0.0007], [0.744, 0.1465, 0.0611, 0.0094, 0.0083, 0.0073, 0.0064, 0.0064], [0.8767, 0.0635, 0.0385, 0.0067, 0.0052, 0.0041, 0.0015, 0.0013], [0.8156, 0.1104, 0.0246, 0.0116, 0.0071, 0.0062, 0.0048, 0.0043], [0.9676, 0.0201, 0.0084, 0.0009, 0.0009, 0.0005, 0.0004, 0.0002], [0.8761, 0.0923, 0.0206, 0.0025, 0.0017, 0.0013, 0.0012, 0.001], [0.3861, 0.3407, 0.1106, 0.1106, 0.0218, 0.0103, 0.0038, 0.0031]], "ranks": {"Kotlin": [29875, 30374, 10309, 3293, 6452, 11407, 11843, 38460, 34672, 94030, 83541, 60846, 26661, 76276, 150578, 64536, 77291, 43547, 46853, 90700, 146579, 41183, 67813, 116606, 52875, 27011, 20777, 55194, 19211, 6183, 7983, 16551, 44626, 8137, 4012, 3062, 695, 526, 786, 734, 1718, 2542, 1714, 2260, 2124, 6325, 7616, 8083, 9722, 8794, 11065, 13899, 2663, 1263, 371, 202, 198, 305, 230, 322, 1346, 3790, 2757]}}, {"pos": 516, "top": [[" \u2013", ".", "  \n", ",", " (\u201e", "\u2026..", "\u2013", "\u2026\u2026"], ["  \n", ",**", "   \n", ":**", " \u2013**", ",\\\"", "\u52c7\u5f80\u76f4\u524d", " (\u201e"], ["\u2026\u2026", "\u2026..", ".", ",", "\u2013", " \u2013", "\u2013and", "\u2026"], [" **\u201e", "\u52a0\u62ff\u5927", " ``(", "raries", " **:**", " ``", " ;;^", " Guta"], [":@", " ##", " (\u201e", "raries", "\u52a0\u62ff\u5927", " //@", ":**", "ed"], ["\u52a0\u62ff\u5927", "\u65b0\u52a0\u5761", ":@", ":**", ".:**", "raries", " **\u201e", "\u4e8b\u534a\u529f\u500d"], ["raries", " ##", ":**", " **\u201e", "\u201e", ".:**", " \u201e", " //@"], [" **\u201e", "raries", "\u52a0\u62ff\u5927", ".:**", ":**", " (\u201e", " ##", "\u0103\u021b"], [" **\u201e", "raries", " (\u201e", ".:**", ":**", " ~~", " ##", "\u52a0\u62ff\u5927"], ["raries", "\u52a0\u62ff\u5927", "\u52c7\u5f80\u76f4\u524d", "\u52e4\u52e4\u6073\u6073", "\u4e8b\u534a\u529f\u500d", "\u65b0\u52a0\u5761", "\u8033\u719f\u80fd\u8be6", " **\u201e"], ["raries", " ##", " //@", ":**", "\u52c7\u5f80\u76f4\u524d", ",\\\"", ":\\\"", "\u52a0\u62ff\u5927"], ["raries", " **\u201e", " **\u2022", "\u52a0\u62ff\u5927", " ``(", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " ``", "\u52c7\u5f80\u76f4\u524d"], ["raries", " **\u201e", "\u52a0\u62ff\u5927", "\u52c7\u5f80\u76f4\u524d", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\u0d33\u0d4d", "\u52e4\u52e4\u6073\u6073", " **\u2022"], ["raries", "\u52a0\u62ff\u5927", "\u52c7\u5f80\u76f4\u524d", "\u52e4\u52e4\u6073\u6073", "aviors", " **\u201e", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\u0d33\u0d4d"], ["raries", "\u52c7\u5f80\u76f4\u524d", " ``", "\u0d33\u0d4d", "\u4e0d\u53ef\u601d\u8bae", " folks", "\u52a0\u62ff\u5927", " savvy"], ["raries", " Gabrie", " folks", "aviors", " moms", "\u52a0\u62ff\u5927", " veggies", "\u52c7\u5f80\u76f4\u524d"], [" folks", "raries", " veggies", " savvy", " Gabrie", "\u52c7\u5f80\u76f4\u524d", "\u52e4\u52e4\u6073\u6073", " freaking"], [" **\u201e", "raries", "\u52c7\u5f80\u76f4\u524d", " veggies", "\u52e4\u52e4\u6073\u6073", " folks", " **\u2022", "\u52a0\u62ff\u5927"], [" **\u201e", "raries", " Gabrie", "\u52e4\u52e4\u6073\u6073", "\u52c7\u5f80\u76f4\u524d", " ;;^", " Guta", " **\u2022"], [" folks", "\u4e0d\u53ef\u601d\u8bae", "\u52c7\u5f80\u76f4\u524d", "\u52a0\u62ff\u5927", "\u52e4\u52e4\u6073\u6073", "raries", " arguably", "\u767d\u765c"], ["\u4e0d\u53ef\u601d\u8bae", "\uc5d0\uc120", " arguably", " folks", " swiftly", "\u52c7\u5f80\u76f4\u524d", "\u767d\u765c", " myriad"], [" ;;^", " Gabrie", "\u00e3ng", "raries", "\u5f88\u591a\u95ee\u9898", "\u52e4\u52e4\u6073\u6073", "\u52a0\u62ff\u5927", "\u767d\u765c"], [" ``", " ;;^", " Gabrie", " ``(", "\u4e0d\u53ef\u601d\u8bae", "\u00e3ng", "\u767d\u765c", "\u5f88\u591a\u95ee\u9898"], [" ``", " arguably", "\u4e0d\u53ef\u601d\u8bae", " mostly", " swiftly", " incredibly", " often", " barely"], [" ``", " arguably", "\u4e0d\u53ef\u601d\u8bae", " Gabrie", " ;;^", "\u767d\u765c", "\uc5d0\uc120", " famously"], [" ;;^", "\u653f\u6cd5\u59d4", " Gabrie", "\u767d\u765c", "unky", " havoc", "\u52a0\u62ff\u5927", "\u5f88\u591a\u95ee\u9898"], [" ;;^", " famously", " arguably", " skyrocket", " unpredict", " havoc", " heavily", "\u4e0d\u53ef\u601d\u8bae"], ["\n\n", " arguably", " heavily", " --", " famously", " mostly", " nearly", " often"], ["\n\n", " heavily", " arguably", " famously", " often", " incredibly", " notoriously", " --"], [" heavily", " often", " famously", " notoriously", " arguably", " unpredictable", " skyrocket", " unpredict"], [" often", " heavily", " huge", " even", " famously", " much", " arguably", " rarely"], [" often", " heavily", " even", " much", " incredibly", " huge", " many", " arguably"], [" even", " often", " heavily", " much", " notoriously", " incredibly", " famously", " rarely"], [" heavily", " often", " notoriously", " even", " incredibly", " famously", " huge", " aggressively"], [" notoriously", " heavily", " aggressively", " famously", " incredibly", " often", " unpredictable", " massively"], [" notoriously", " heavily", " unpredictable", " often", " aggressively", " famously", " typically", " increasingly"], [" notoriously", " unpredictable", " heavily", " aggressively", " inherently", " often", "\u52a8\u8f84", " typically"], [" notoriously", " unpredictable", " inherently", " aggressively", " heavily", " often", " inevitable", " inevitably"], [" notoriously", " unpredictable", " inherently", " even", " aggressively", " inevitable", " heavily", " unpredict"], [" unpredictable", " notoriously", " unpredict", " inevitable", " inherently", " relentless", " even", " unavoidable"], [" unpredictable", " notoriously", " unpredict", " relentless", " slow", " even", " slower", " heavily"], [" unpredictable", " unpredict", " notoriously", " erratic", " spikes", " relentless", " inevitable", " volatile"], [" unpredictable", " unpredict", " erratic", " notoriously", " spikes", " volatile", " bursts", " unavoidable"], [" unpredictable", " unpredict", " notoriously", " spikes", " unavoidable", " bursts", " erratic", " unreliable"], [" unpredictable", " unpredict", " bursts", " notoriously", " spikes", " erratic", " unavoidable", " typically"], [" unpredictable", " unpredict", " notoriously", " unavoidable", " erratic", " spikes", " bursts", " unreliable"], [" unpredictable", " unpredict", " unavoidable", " bursts", " erratic", " spikes", " inevitable", " notoriously"], [" unpredictable", " Even", "\u54ea\u6015", " even", "\u54ea\u6015\u662f", " unpredict", " bursts", "\u5373\u4fbf\u662f"], [" unpredictable", "\u54ea\u6015\u662f", "\u5373\u4f7f\u662f", "\u54ea\u6015", "\u5373\u4fbf\u662f", "\u5373\u4fbf", " Even", " even"], ["\u5373\u4f7f\u662f", "\u5373\u4fbf\u662f", " Even", "\u5373\u4fbf", "\u54ea\u6015", "\u54ea\u6015\u662f", " unpredictable", "\u5373\u4f7f\u5728"], ["\u5373\u4f7f\u662f", "\u54ea\u6015", "\u5373\u4fbf\u662f", "\u5373\u4fbf", "\u54ea\u6015\u662f", " Even", "\u5373\u4f7f\u5728", "\u4efb\u4f55\u5f62\u5f0f\u7684"], ["\u5373\u4f7f\u662f", " Even", "\u54ea\u6015", "\u5373\u4fbf\u662f", "\u5373\u4fbf", "\u54ea\u6015\u662f", "\u5373\u4f7f\u5728", " unpredictable"], ["\u5373\u4f7f\u662f", " Even", "\u54ea\u6015", "\u5373\u4fbf\u662f", "\u5373\u4fbf", "\u54ea\u6015\u662f", "\u5373\u4f7f\u5728", " unpredictable"], ["\u5373\u4f7f\u662f", " Even", "\u54ea\u6015", "\u5373\u4fbf\u662f", "\u5373\u4fbf", "\u54ea\u6015\u662f", "\u5373\u4f7f\u5728", "\u5373\u4f7f"], [" Even", "\u5373\u4f7f\u662f", " even", "\u5373\u4fbf", "\u54ea\u6015", "\u5373\u4fbf\u662f", "\u5373\u4f7f", "even"], [" garbage", " Even", " GC", "\u5373\u4f7f\u662f", "\u5783\u573e", " unpredictable", " even", "\u54ea\u6015"], [" GC", " Even", " garbage", " even", "GC", "Even", "even", "gc"], [" GC", " Even", "GC", " garbage", " even", "gc", "Even", " gc"], [" GC", " Even", "GC", " garbage", "gc", " gc", " even", "_GC"], [" Even", " even", " garbage", "Even", "even", " GC", " Gar", "\u5373\u4f7f\u662f"], [" Even", " even", " Pause", " Stop", " Concurrent", " unpredictable", "Even", " garbage"], [" Even", " Stop", " even", " Pause", " stop", " Stops", " pause", " Concurrent"], [" Even", " Stop", " Pause", " Concurrent", " Any", " Full", " Standard", " Gar"]], "p": [[0.4517, 0.3518, 0.0255, 0.0255, 0.0239, 0.0186, 0.0128, 0.0053], [0.4157, 0.0528, 0.0341, 0.0321, 0.0321, 0.0266, 0.0235, 0.022], [0.3206, 0.1514, 0.1255, 0.0761, 0.0593, 0.0317, 0.0193, 0.016], [0.0688, 0.0392, 0.0368, 0.0253, 0.0197, 0.0197, 0.0185, 0.0136], [0.0548, 0.0548, 0.0548, 0.0455, 0.0377, 0.0276, 0.0276, 0.0259], [0.0339, 0.0264, 0.0264, 0.0248, 0.0248, 0.0233, 0.0193, 0.0193], [0.2447, 0.0795, 0.0546, 0.0331, 0.0292, 0.0258, 0.0228, 0.0214], [0.2625, 0.1592, 0.0294, 0.0244, 0.0202, 0.0179, 0.0158, 0.0148], [0.3299, 0.1558, 0.0394, 0.0239, 0.0211, 0.0164, 0.0128, 0.012], [0.0938, 0.0778, 0.0778, 0.0305, 0.0197, 0.0185, 0.0163, 0.0135], [0.2393, 0.0443, 0.0345, 0.0237, 0.0237, 0.0237, 0.0173, 0.0144], [0.1486, 0.1087, 0.0167, 0.0147, 0.0115, 0.0108, 0.0101, 0.0084], [0.126, 0.0634, 0.0384, 0.0171, 0.0171, 0.0103, 0.0091, 0.0086], [0.168, 0.0292, 0.0122, 0.0107, 0.0101, 0.0101, 0.0095, 0.0084], [0.1454, 0.0105, 0.0072, 0.0072, 0.0072, 0.006, 0.0047, 0.0044], [0.041, 0.0118, 0.0071, 0.0059, 0.0052, 0.0052, 0.0052, 0.0052], [0.0303, 0.0184, 0.0135, 0.0098, 0.0087, 0.0087, 0.0053, 0.005], [0.0397, 0.0329, 0.0146, 0.0137, 0.0129, 0.0057, 0.005, 0.005], [0.0557, 0.0193, 0.015, 0.0141, 0.0063, 0.0055, 0.0052, 0.0043], [0.0074, 0.007, 0.0062, 0.0062, 0.0058, 0.0051, 0.0042, 0.004], [0.0075, 0.0045, 0.0045, 0.0043, 0.0038, 0.0033, 0.0031, 0.0027], [0.0204, 0.0055, 0.004, 0.0036, 0.0029, 0.0028, 0.0028, 0.0028], [0.0229, 0.009, 0.0051, 0.004, 0.0033, 0.0033, 0.0026, 0.0024], [0.0327, 0.0069, 0.0053, 0.0044, 0.003, 0.0027, 0.0027, 0.0024], [0.0037, 0.0033, 0.0031, 0.0031, 0.0025, 0.0025, 0.0024, 0.0022], [0.008, 0.0026, 0.0026, 0.0023, 0.002, 0.0019, 0.0019, 0.0018], [0.0039, 0.0034, 0.003, 0.0025, 0.0024, 0.0021, 0.0021, 0.002], [0.0249, 0.0182, 0.0161, 0.0125, 0.0097, 0.0091, 0.0081, 0.0071], [0.0764, 0.0281, 0.0248, 0.0233, 0.0091, 0.0091, 0.0076, 0.0071], [0.0263, 0.0232, 0.0218, 0.0141, 0.0124, 0.0117, 0.0103, 0.0091], [0.1099, 0.0553, 0.0216, 0.0203, 0.0203, 0.0179, 0.0179, 0.0169], [0.1399, 0.0583, 0.0454, 0.0202, 0.0167, 0.0147, 0.0138, 0.013], [0.0813, 0.0764, 0.0384, 0.016, 0.015, 0.0141, 0.0141, 0.0141], [0.0708, 0.043, 0.0335, 0.0277, 0.023, 0.0203, 0.0148, 0.0148], [0.0678, 0.0528, 0.0207, 0.0161, 0.0151, 0.0133, 0.0111, 0.0104], [0.1667, 0.0396, 0.0212, 0.0199, 0.0155, 0.0113, 0.0113, 0.0078], [0.1886, 0.0421, 0.024, 0.0175, 0.0113, 0.0094, 0.0088, 0.0083], [0.1654, 0.0781, 0.0174, 0.0154, 0.0145, 0.0136, 0.0099, 0.0093], [0.1415, 0.133, 0.0159, 0.0124, 0.0116, 0.0116, 0.0103, 0.0103], [0.4638, 0.0913, 0.0191, 0.009, 0.008, 0.0062, 0.0062, 0.0058], [0.4826, 0.0449, 0.0187, 0.0094, 0.0088, 0.0088, 0.0083, 0.0078], [0.6411, 0.0282, 0.0171, 0.0086, 0.0059, 0.0049, 0.0046, 0.0046], [0.6757, 0.0217, 0.0149, 0.0124, 0.0109, 0.0055, 0.0048, 0.0046], [0.7734, 0.03, 0.0097, 0.0086, 0.0081, 0.0067, 0.0059, 0.003], [0.6955, 0.0325, 0.0154, 0.012, 0.0112, 0.0093, 0.0057, 0.0053], [0.7635, 0.038, 0.0102, 0.009, 0.007, 0.0062, 0.0058, 0.0048], [0.7588, 0.0276, 0.0123, 0.0123, 0.009, 0.0079, 0.0074, 0.007], [0.5553, 0.0456, 0.0294, 0.0294, 0.0276, 0.0276, 0.0168, 0.0158], [0.1267, 0.1267, 0.1118, 0.1118, 0.1118, 0.0637, 0.0438, 0.032], [0.2549, 0.1546, 0.1546, 0.1204, 0.0938, 0.073, 0.0286, 0.0223], [0.4099, 0.1936, 0.0915, 0.0807, 0.0712, 0.0336, 0.0204, 0.0132], [0.555, 0.0964, 0.0964, 0.0964, 0.0456, 0.0276, 0.019, 0.0102], [0.6335, 0.0971, 0.0757, 0.0668, 0.0315, 0.0278, 0.0169, 0.0102], [0.5591, 0.2331, 0.0589, 0.0405, 0.0278, 0.0191, 0.0169, 0.009], [0.4789, 0.3291, 0.0505, 0.0238, 0.0238, 0.0186, 0.0186, 0.0145], [0.953, 0.0106, 0.0093, 0.0082, 0.0082, 0.0014, 0.0014, 0.0009], [0.5318, 0.2217, 0.1524, 0.0385, 0.034, 0.0046, 0.0046, 0.0032], [0.7968, 0.0952, 0.0509, 0.0212, 0.0165, 0.0037, 0.0033, 0.0033], [0.8953, 0.0393, 0.0347, 0.0186, 0.0032, 0.0025, 0.0017, 0.001], [0.8043, 0.1584, 0.0167, 0.0054, 0.0054, 0.0029, 0.0018, 0.0012], [0.939, 0.0321, 0.0049, 0.0046, 0.0028, 0.0014, 0.0013, 0.0012], [0.7846, 0.1363, 0.0173, 0.0163, 0.0105, 0.0044, 0.0036, 0.0036], [0.9469, 0.0324, 0.0036, 0.0017, 0.0013, 0.0013, 0.0009, 0.0007]], "ranks": {"Kotlin": [163985, 109673, 84587, 15699, 21861, 28151, 33551, 37916, 35402, 48067, 52705, 36892, 27655, 37411, 71055, 25905, 28732, 20478, 36109, 110581, 141362, 94601, 130221, 180277, 174312, 114160, 93592, 134220, 80046, 74614, 110540, 112399, 140309, 145133, 160544, 132794, 118858, 102133, 95219, 82539, 109099, 100142, 68099, 58189, 60257, 86562, 96839, 99509, 68431, 33420, 26794, 6204, 1245, 522, 199, 89, 99, 93, 77, 65, 106, 113, 124]}}, {"pos": 517, "top": [[",", ".", " \u2013", "\u2013", ";", "?", "ly", ":"], [",", "ly", "est", "\u2013", ".", "\u00ad", "ably", "ally"], [",", ".", "\u2013", ";", "\u2026", "\u2013and", "\u2026..", ":"], [" Nues", " Guta", "\u0103\u021b", " \u0111\u1eb7n", "izer", "raries", "ly", " Blowjob"], ["est", "ably", "ly", "ously", "ively", "neighbor", "ish", "ally"], ["ously", "est", "ably", "\u0103\u021b", "\u064b\u0627", "ively", "favorite", "neighbor"], ["ly", "ably", "\u064b\u0627", "est", "ings", "ement", "ish", "raries"], ["ly", "ably", "\u064b\u0627", "ement", "ively", "ously", "ings", "ishly"], ["ly", "\u064b\u0627", "ably", "ement", "ishly", "ish", "ively", "ings"], ["ably", "ly", "\u064b\u0627", "ish", "ishly", "ively", "\u513f\u7684", "ously"], ["ly", "ably", "\u064b\u0627", "est", "ish", "ively", "istic", "ement"], ["ly", "ably", "ively", "\u064b\u0627", "ishly", "ish", "uate", "iveau"], [" savory", "iveau", "ly", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "uate", "\u064b\u0627", "eken", "ively"], [" savory", "\u064b\u0627", "eken", "ly", "iveau", "raries", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " siquiera"], ["ably", " rumored", " savvy", "est", "ly", "\u064b\u0627", " flashy", " skinny"], [" skinny", " savvy", " rumored", " scary", " kids", " incredibly", " siquiera", " freaking"], [" savvy", " skinny", "\u064b\u0627", " nuanced", "-even", "ably", " scary", " incredibly"], [" savvy", " siquiera", " skinny", "-even", "\u064b\u0627", " scary", "\u54ea\u6015\u662f", " tini"], [" siquiera", " savvy", "\u54ea\u6015\u662f", " savory", "-even", " freaking", " skinny", " tini"], [" savvy", " siquiera", "\u54ea\u6015\u662f", "ishly", "-even", " pricey", " barely", "\u54ea\u6015"], ["-even", " savvy", "\u54ea\u6015\u662f", " siquiera", " barely", " wildly", "\u54ea\u6015", "ishly"], [" siquiera", "\u54ea\u6015\u662f", " savvy", "-even", "ishly", "bucks", "\u9177\u6691", " pricey"], ["-even", "\u54ea\u6015\u662f", " barely", " siquiera", "ishly", " savvy", " even", "\u54ea\u6015"], [" even", " though", " barely", "-even", "even", "though", "much", "ably"], ["Though", " though", "\u5373\u4fbf", "though", "\u2014even", "-even", "much", "even"], ["\u54ea\u6015\u662f", "\u54ea\u6015", " siquiera", "\u5373\u4fbf", " pricey", " savvy", "\u2014even", "-even"], ["\u54ea\u6015\u662f", "\u5373\u4fbf", "\u54ea\u6015", "-even", " pricey", " siquiera", " wildly", " savvy"], [" even", "\n\n", " though", " barely", "-even", " wildly", " much", "\u2014even"], [" even", "-even", "even", " barely", " though", " wildly", " dozens", "\u5373\u4fbf"], [" even", "...**", "-even", "\u2014even", "\u54ea\u6015\u662f", "even", "\u54ea\u6015", "\u5373\u4fbf"], [" even", " dozens", " barely", " modern", "-even", " sometimes", "even", " huge"], [" even", " modern", " dozens", " much", " barely", "even", " sometimes", " many"], [" even", "even", "\u2014even", "-even", " modern", "\u54ea\u6015\u662f", " Even", " dozens"], [" even", "\u2014even", "-even", "even", "\u5373\u4fbf", "\u54ea\u6015\u662f", "\u54ea\u6015", " despite"], ["\u2014even", "\u5373\u4fbf", " even", "\u54ea\u6015\u662f", "\u5373\u4fbf\u662f", "\u54ea\u6015", "even", "-even"], ["\u2014even", "\u5373\u4fbf", "\u54ea\u6015\u662f", "\u54ea\u6015", "\u5373\u4fbf\u662f", "even", " even", "-even"], ["\u2014even", "\u5373\u4fbf", "\u54ea\u6015\u662f", "\u54ea\u6015", " modern", " optimized", "optimized", " even"], ["\u2014even", " modern", "\u54ea\u6015", "\u54ea\u6015\u662f", " even", "\u5373\u4fbf", " optimized", "even"], ["\u2014even", "\u54ea\u6015", "\u5373\u4fbf", "\u54ea\u6015\u662f", " optimized", " optimizations", " modern", "optimized"], ["optimized", " optimized", " optimizations", "\u2014even", "\u54ea\u6015", "\u54ea\u6015\u662f", " modern", "even"], [" optimized", " optimizations", "optimized", " optimizing", " optimization", " JVM", " modern", "even"], [" optimized", "optimized", " optimizations", " optimizing", " optimization", "\u2014even", " modern", " Optim"], [" optimized", "optimized", " optimizations", " modern", " optimizing", " algorithms", " optimization", "modern"], [" optimized", "optimized", " modern", " optimizations", "modern", " Modern", " optimizing", "Modern"], [" optimized", "optimized", " optimizations", " modern", "modern", "Modern", " minimalist", " tweaks"], [" optimized", " modern", "optimized", " Modern", "\u54ea\u6015\u662f", " Minimal", "\u54ea\u6015", "modern"], [" optimized", "\u54ea\u6015\u662f", "\u54ea\u6015", "\u5373\u4f7f\u662f", "\u5373\u4fbf", "\u5373\u4fbf\u662f", " modern", "optimized"], [" Modern", " modern", "modern", " optimized", "Modern", "optimized", "\u73b0\u4ee3", " Minimal"], ["optimized", " optimized", "modern", " modern", " Modern", "Modern", " tini", "\u7684\u73b0\u4ee3"], ["optimized", " optimized", " tini", "modern", " Minimal", "minimal", "\u6700\u65b0\u7684", "tiny"], ["optimized", " tini", "minimal", " optimized", "Minimal", " Minimal", "\u6700\u5148\u8fdb\u7684", "\u518d\u600e\u4e48"], ["optimized", " optimized", " tini", "minimal", " Minimal", "Minimal", "tiny", " minimal"], ["optimized", " optimized", " tini", "minimal", " Minimal", " minimal", "Minimal", " optimizations"], ["optimized", " optimized", " optimizations", " tini", "minimal", "\u4f18\u5316\u7684", " minimal", " lightweight"], ["optimized", " optimized", " JVM", " v\u1edbi", "with", " tini", " optimizations", " dengan"], [" garbage", "\u5783\u573e", " JVM", " GC", " Kotlin", "optimized", "with", " optimized"], [" GC", " garbage", "GC", "\u5783\u573e", "_gc", " JVM", "_GC", "gc"], [" GC", "GC", " garbage", "_gc", "\u5783\u573e", "gc", "_GC", " JVM"], [" GC", "GC", "_GC", "_gc", " garbage", "gc", " JVM", " Kotlin"], [" GC", " with", " Kotlin", "GC", " With", "with", " Android", " JVM"], [" Pause", " pause", " with", "Pause", " gener", " Gener", " incremental", " CMS"], [" Pause", " pause", " with", " paused", "Pause", "pause", " Pa", " gener"], [" with", " Pause", " G", " Pa", " pause", " Gener", " modern", " Modern"]], "p": [[0.528, 0.4112, 0.0159, 0.0124, 0.0028, 0.0013, 0.0013, 0.0011], [0.3756, 0.0838, 0.0212, 0.0199, 0.0187, 0.0129, 0.0129, 0.0078], [0.9305, 0.0525, 0.0133, 0.0006, 0.0004, 0.0002, 0.0001, 0.0001], [0.0071, 0.0043, 0.0034, 0.0026, 0.0025, 0.0025, 0.0022, 0.0022], [0.2417, 0.0447, 0.0371, 0.0175, 0.0113, 0.0064, 0.0064, 0.0053], [0.0172, 0.0126, 0.0111, 0.0067, 0.0067, 0.0063, 0.0059, 0.0059], [0.1286, 0.0647, 0.0504, 0.0185, 0.0154, 0.0127, 0.012, 0.0077], [0.2549, 0.0502, 0.0502, 0.0185, 0.0127, 0.0105, 0.0105, 0.0099], [0.074, 0.0449, 0.0226, 0.0121, 0.0083, 0.0057, 0.0054, 0.005], [0.0266, 0.0171, 0.0104, 0.0056, 0.0052, 0.0046, 0.0036, 0.003], [0.1027, 0.08, 0.0485, 0.0244, 0.0168, 0.0074, 0.0062, 0.0062], [0.0236, 0.0105, 0.0082, 0.0049, 0.0039, 0.0039, 0.0036, 0.0034], [0.0041, 0.0041, 0.003, 0.003, 0.0027, 0.0022, 0.0018, 0.0018], [0.0031, 0.0027, 0.0022, 0.0022, 0.0021, 0.002, 0.0019, 0.0016], [0.0052, 0.0036, 0.0033, 0.0026, 0.0026, 0.0024, 0.0023, 0.0019], [0.0061, 0.0061, 0.0027, 0.0027, 0.0025, 0.0025, 0.0024, 0.0021], [0.0089, 0.0069, 0.0039, 0.0037, 0.0037, 0.0035, 0.0033, 0.0033], [0.0084, 0.0045, 0.0042, 0.0035, 0.0033, 0.0024, 0.0024, 0.0024], [0.0143, 0.0081, 0.0049, 0.0036, 0.0034, 0.0032, 0.0026, 0.0025], [0.0111, 0.0092, 0.0092, 0.0043, 0.0041, 0.0038, 0.0034, 0.003], [0.0096, 0.007, 0.007, 0.0062, 0.0062, 0.0043, 0.004, 0.004], [0.0153, 0.0077, 0.0047, 0.0044, 0.0044, 0.003, 0.0023, 0.0023], [0.0089, 0.0084, 0.0079, 0.007, 0.0058, 0.0054, 0.0048, 0.0042], [0.0257, 0.0176, 0.0166, 0.0101, 0.0101, 0.0074, 0.0069, 0.0054], [0.0285, 0.0184, 0.0173, 0.0153, 0.0143, 0.0119, 0.0077, 0.0077], [0.0189, 0.0084, 0.0065, 0.0048, 0.0045, 0.0042, 0.0029, 0.0027], [0.0127, 0.0047, 0.0047, 0.0044, 0.0036, 0.0034, 0.0027, 0.0027], [0.0383, 0.0263, 0.0218, 0.0124, 0.008, 0.0075, 0.0059, 0.0043], [0.0471, 0.0144, 0.0119, 0.0105, 0.0087, 0.0082, 0.0068, 0.0056], [0.0461, 0.0461, 0.0124, 0.011, 0.0103, 0.0097, 0.0091, 0.0071], [0.256, 0.021, 0.0127, 0.0127, 0.012, 0.0088, 0.0082, 0.0077], [0.3817, 0.0202, 0.0148, 0.0108, 0.0108, 0.0102, 0.0084, 0.0074], [0.6584, 0.0155, 0.0145, 0.0145, 0.0106, 0.0069, 0.0054, 0.005], [0.637, 0.1254, 0.0205, 0.0192, 0.017, 0.0141, 0.0103, 0.0062], [0.0782, 0.0782, 0.0734, 0.0572, 0.027, 0.0238, 0.0174, 0.0128], [0.1089, 0.0748, 0.0401, 0.0293, 0.0243, 0.0214, 0.0189, 0.0167], [0.0892, 0.0541, 0.0449, 0.0421, 0.0349, 0.0349, 0.0256, 0.0176], [0.0884, 0.083, 0.0536, 0.0444, 0.0368, 0.0368, 0.0305, 0.0223], [0.1375, 0.0736, 0.0691, 0.0538, 0.0419, 0.0307, 0.0307, 0.0307], [0.1169, 0.0969, 0.0588, 0.0487, 0.0261, 0.0158, 0.0158, 0.0158], [0.3302, 0.1881, 0.166, 0.0136, 0.0106, 0.01, 0.0094, 0.0078], [0.5438, 0.1213, 0.114, 0.0254, 0.0113, 0.0073, 0.006, 0.005], [0.5547, 0.1163, 0.0705, 0.0215, 0.0157, 0.009, 0.009, 0.0054], [0.573, 0.1128, 0.0567, 0.0442, 0.0184, 0.0163, 0.0112, 0.0099], [0.3753, 0.1218, 0.0508, 0.0396, 0.0272, 0.0121, 0.0113, 0.0106], [0.1935, 0.0973, 0.0432, 0.0336, 0.0262, 0.0217, 0.0204, 0.0204], [0.1139, 0.0887, 0.0834, 0.0783, 0.0573, 0.0348, 0.0307, 0.0288], [0.1228, 0.1083, 0.0956, 0.0898, 0.058, 0.0512, 0.0399, 0.0257], [0.1442, 0.0681, 0.0565, 0.0284, 0.0267, 0.0172, 0.0162, 0.0152], [0.1825, 0.0491, 0.0338, 0.0124, 0.0117, 0.0085, 0.0066, 0.0062], [0.1311, 0.0376, 0.0242, 0.0214, 0.0157, 0.013, 0.0115, 0.0108], [0.4313, 0.0904, 0.0354, 0.0312, 0.0167, 0.0157, 0.0084, 0.0074], [0.3727, 0.1371, 0.0445, 0.0445, 0.0287, 0.0254, 0.021, 0.0145], [0.5773, 0.1654, 0.021, 0.012, 0.012, 0.0093, 0.0082, 0.0077], [0.4362, 0.206, 0.0316, 0.0316, 0.0279, 0.0279, 0.0279, 0.0204], [0.4923, 0.2325, 0.1245, 0.0458, 0.0131, 0.009, 0.007, 0.0062], [0.85, 0.0616, 0.0373, 0.0156, 0.0074, 0.0065, 0.0057, 0.0057], [0.8932, 0.0392, 0.027, 0.0068, 0.006, 0.0053, 0.0053, 0.0047], [0.9121, 0.0515, 0.013, 0.0048, 0.0042, 0.0033, 0.0018, 0.0014], [0.4522, 0.2743, 0.0448, 0.0308, 0.024, 0.0211, 0.0128, 0.01], [0.2923, 0.1144, 0.0787, 0.0575, 0.0396, 0.0372, 0.0225, 0.0187], [0.3795, 0.2302, 0.1582, 0.0376, 0.0353, 0.0167, 0.0167, 0.0089], [0.3269, 0.1983, 0.0997, 0.0827, 0.0605, 0.0184, 0.0163, 0.0153]], "ranks": {"Kotlin": [223905, 222510, 202908, 91476, 103036, 150507, 152184, 186425, 207616, 221574, 216056, 164393, 126118, 142108, 181856, 151409, 163555, 155789, 159928, 192555, 202300, 176437, 205375, 226413, 221162, 159921, 164942, 193434, 166485, 125310, 144486, 155277, 120049, 109663, 119715, 58331, 1803, 1030, 756, 70, 86, 128, 124, 246, 190, 229, 423, 306, 268, 269, 542, 209, 15, 11, 14, 5, 13, 13, 8, 3, 13, 28, 26]}}, {"pos": 518, "top": [[",", ".", ";", "\u00a0", "\u2026.", "\u00a0\u00a0", "\u2013", ":"], [",", "\u2013", ".", ";", "s", " \u2013", ":", "\u2026."], [",", "\u2013", ".", "\u2026", "\u2026.", ";", "\u2026..", "\u2026,"], ["\ufffd\ufffd", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " milfs", "endiz", "aruhi", " ;;^", "\ufffd\ufffd", "r\u00e9di"], [",", "ed", "\u2026.", "\u2026..", "s", "ar", ".", "\u00e2"], ["\u2026.", "\u2026..", ",", "\u00a0\u00a0", "ed", " \u200b\u200b", "\u064b\u0627", "\u2026,"], ["\u2026.", "\u2026..", "\u064b\u0627", ",", "  \n", "\u2026\u2026", "\u2026", "ed"], ["\u064b\u0627", "ness", " **\"", "\u2026..", "\u2026.", ",", "  \n", "ively"], ["\u2026.", ".", ",", "\u2026..", "\u064b\u0627", "  \n", ",.", " \u200b\u200b"], [",", "\u2026.", "\u00a0\u00a0", "\u2014\"", "!,", "\u00a0", "\u00e2", "\u00ac"], [",", "\u00a0", "\u2026", "\u2026.", ".", " [\u2026]", "...", "\u00a0\u00a0"], ["ively", " garner", " savvy", "ullan", "\u00c2", "\u5f00\u5f97", "\u00e2", "\u2014or"], [" impactful", "\u2026**", " savvy", "\u5f00\u5f97", " upfront", " matchups", " Philly", "...**"], [" impactful", " savvy", " Philly", " upfront", " advancements", " hardcore", " matchups", " experimentation"], [" savvy", " garner", " Philly", " showcasing", " impactful", " transitioning", " revamped", " experimentation"], [" savvy", " folks", " showcasing", " garner", " hefty", " plenty", " tweaking", " tweaks"], [" savvy", " hefty", " tweaks", " plenty", " tweaking", " ongoing", " ample", " tough"], [" hefty", " tweaking", " savvy", " tweaks", " plenty", " revamped", " pricey", " ample"], [" savvy", " hefty", " tweaking", " tweaks", "...", " flashy", " revamped", "\u2014even"], [" savvy", " hefty", " tweaking", " pricey", " burgeoning", " myriad", " flashy", " smack"], ["<|endoftext|>", " \n\n", " myriad", " tweaking", " burgeoning", " though", " nearly", " dozens"], [" tweaking", " savvy", " flashy", " tweaks", " pricey", " smack", " hefty", " lingering"], [" ,", " tweaking", " full", " much", " long", " over", "\u00c2", " hard"], [" ,", "<|endoftext|>", " long", " over", " much", " more", " a", " full"], [" \n\n", " tweaking", "Though", " lingering", "\ufffd\ufffd", " revamped", " seemingly", " {{--<"], [" tweaking", " experimentation", "\ufffd\ufffd", " modern", " tweaks", " lingering", " heavy", " revamped"], [" experimentation", " tweaking", " modern", " industrial", "\ufffd\ufffd", " technology", " technological", " heavily"], [" \n\n", "\n\n", " ,", " heavily", "  \n\n", " long", " modern", " heavy"], [" \n\n", " **", " tech", " modern", " tweaking", " tweaks", " technology", " experimentation"], [" **", "...**", " optimization", " optimizations", " tweaks", " **,", " modern", " technology"], [" modern", " **", " \n", " tweaks", " technology", " tech", " \n\n", " ..."], [" modern", " ...", " new", " high", " technology", " long", " **", " improvements"], [" modern", " tech", " tweaks", " technology", " Modern", " optimized", " tweaking", " upgrades"], [" tech", " tweaks", " modern", " optimized", " tweaking", " technology", " upgrades", " optimizations"], ["\u2026**", " tech", " tweaks", " optimized", "modern", "optimized", " modern", " optimizations"], ["\u2026**", "\u2026*", "optimized", "\u2026\u201d", " tweaks", "[\u2026]", " optimizations", "Modern"], [" optimizations", "optimized", "Modern", " optimized", "modern", " JVM", " tweaks", " Android"], [" optimizations", "optimized", "Modern", " optimized", " Android", "modern", " Modern", " optimization"], [" optimizations", "optimized", " optimized", " optimization", " JVM", "modern", "Modern", " Android"], [" JVM", " optimizations", "Java", " Java", " Android", " JDK", " Kotlin", "optimized"], [" JVM", " optimizations", " optimized", "Java", " Java", "optimized", " Android", " optimization"], [" JVM", " optimizations", " optimized", "optimized", " Android", " Java", " optimization", " JDK"], [" JVM", " optimized", " optimizations", "optimized", " optimization", " JDK", " Android", " Optimization"], [" optimized", "optimized", " optimizations", " JVM", " optimization", " Optimization", " Optim", " optimizing"], [" optimized", "optimized", " optimizations", " JVM", " optimization", " optimizing", " JDK", "modern"], [" optimized", "optimized", " optimizations", " JVM", " Optim", " Modern", " JDK", " optimization"], [" optimized", "optimized", " optimizations", " JVM", " Minimal", " optimization", "modern", " JDK"], ["optimized", " optimized", " Modern", " optimizations", " Minimal", "modern", "Modern", " Optim"], ["optimized", " optimized", " optimizations", " JVM", "modern", " Optim", " Modern", " Minimal"], ["optimized", " optimizations", " optimized", " JVM", " Minimal", " Kotlin", " Improved", " Optim"], ["optimized", " optimizations", " optimized", " JVM", " Kotlin", " Minimal", "minimal", " JDK"], ["optimized", " optimizations", " optimized", " JVM", " Kotlin", " Optim", "_HEAP", " JIT"], [" Kotlin", " optimizations", " JVM", "optimized", " optimized", " Android", " JDK", " JetBrains"], [" optimizations", " Kotlin", "optimized", " Android", " optimized", " JVM", " Optim", "/android"], [" optimizations", " Kotlin", " JVM", "optimized", " GC", " optimized", " Android", "_GC"], [" JVM", " GC", " garbage", "\u5783\u573e", " Kotlin", " Heap", "_GC", "Heap"], [" GC", "GC", " JVM", "_GC", " garbage", "gc", "(gc", "_gc"], [" GC", " garbage", " Kotlin", "GC", "_GC", " JVM", "\u5783\u573e", "_gc"], [" GC", " Kotlin", " Android", "GC", "_GC", "_gc", " JVM", " garbage"], [" GC", " Kotlin", " Android", "GC", "_GC", " JVM", " JDK", " Java"], [" Pause", " Android", " Kotlin", " Gener", " GC", " Concurrent", " Hum", " Adaptive"], [" Pause", " Gener", " pause", " Concurrent", " Modern", " gener", " Kotlin", " Hum"], [" Pause", " Modern", " Z", " Gener", " Concurrent", " modern", " Kotlin", " pause"]], "p": [[0.5219, 0.4605, 0.0074, 0.0024, 0.0018, 0.0017, 0.001, 0.0005], [0.5821, 0.1011, 0.095, 0.0509, 0.0199, 0.0083, 0.0047, 0.0044], [0.835, 0.0534, 0.0471, 0.0286, 0.0153, 0.0082, 0.0064, 0.0008], [0.0183, 0.0041, 0.0036, 0.003, 0.0022, 0.0022, 0.0017, 0.0015], [0.0539, 0.0506, 0.0225, 0.0128, 0.0106, 0.005, 0.0044, 0.0039], [0.0585, 0.0485, 0.0066, 0.004, 0.0037, 0.0037, 0.0024, 0.0021], [0.1646, 0.1204, 0.0686, 0.0367, 0.0367, 0.0209, 0.0153, 0.0144], [0.0856, 0.038, 0.0217, 0.0191, 0.0179, 0.0158, 0.0109, 0.0102], [0.1546, 0.1063, 0.0881, 0.0777, 0.0324, 0.0173, 0.0153, 0.0127], [0.6415, 0.0151, 0.0059, 0.0041, 0.003, 0.0028, 0.0026, 0.0025], [0.795, 0.0541, 0.0328, 0.0212, 0.0199, 0.0088, 0.0065, 0.0057], [0.0042, 0.0037, 0.0035, 0.0033, 0.0033, 0.0031, 0.0029, 0.0029], [0.0073, 0.0069, 0.0057, 0.0053, 0.0044, 0.0042, 0.0037, 0.003], [0.0079, 0.007, 0.0037, 0.0033, 0.0029, 0.0026, 0.0023, 0.0021], [0.0089, 0.0069, 0.0065, 0.0054, 0.004, 0.004, 0.0037, 0.0033], [0.0347, 0.0164, 0.0127, 0.0113, 0.0099, 0.0088, 0.0077, 0.0068], [0.0186, 0.0154, 0.0106, 0.0088, 0.0073, 0.0073, 0.0064, 0.005], [0.0178, 0.0148, 0.0148, 0.0095, 0.0074, 0.0058, 0.0042, 0.0027], [0.0145, 0.0113, 0.0094, 0.0061, 0.0053, 0.005, 0.0042, 0.0042], [0.011, 0.0103, 0.0103, 0.0059, 0.0055, 0.0052, 0.0052, 0.0046], [0.1233, 0.0054, 0.0048, 0.0037, 0.0035, 0.0035, 0.0035, 0.0029], [0.0066, 0.0037, 0.0037, 0.0035, 0.0024, 0.0023, 0.002, 0.0019], [0.0038, 0.0032, 0.003, 0.003, 0.0028, 0.0026, 0.0025, 0.0025], [0.0216, 0.009, 0.0062, 0.0062, 0.0055, 0.0048, 0.0038, 0.0035], [0.0039, 0.0027, 0.0022, 0.002, 0.0019, 0.0019, 0.0016, 0.0015], [0.0067, 0.0036, 0.0028, 0.0025, 0.0023, 0.002, 0.002, 0.0018], [0.0041, 0.0034, 0.0032, 0.0025, 0.0023, 0.0021, 0.0016, 0.0015], [0.0309, 0.029, 0.0137, 0.0039, 0.0033, 0.0029, 0.0027, 0.0027], [0.0147, 0.0138, 0.0114, 0.0107, 0.0101, 0.0101, 0.0095, 0.0058], [0.2645, 0.0336, 0.0204, 0.0192, 0.0169, 0.0149, 0.014, 0.014], [0.0483, 0.0376, 0.0201, 0.0189, 0.0178, 0.0138, 0.0122, 0.0108], [0.0538, 0.0154, 0.0106, 0.0088, 0.0082, 0.0077, 0.0073, 0.0068], [0.0821, 0.0364, 0.0235, 0.0208, 0.0172, 0.0087, 0.0076, 0.0072], [0.0827, 0.073, 0.0286, 0.0269, 0.0163, 0.0153, 0.0135, 0.0119], [0.0794, 0.0581, 0.0546, 0.0138, 0.013, 0.0114, 0.0095, 0.0089], [0.2855, 0.0818, 0.022, 0.0183, 0.0151, 0.0118, 0.0111, 0.0086], [0.0632, 0.0524, 0.036, 0.0298, 0.028, 0.0247, 0.015, 0.0141], [0.0963, 0.0584, 0.0515, 0.0427, 0.0259, 0.0259, 0.0202, 0.019], [0.2245, 0.0936, 0.0879, 0.0366, 0.0285, 0.0209, 0.0163, 0.0143], [0.2603, 0.0546, 0.0513, 0.0482, 0.0452, 0.0352, 0.0352, 0.0311], [0.2218, 0.1623, 0.0766, 0.0635, 0.0561, 0.0527, 0.0527, 0.034], [0.2768, 0.1228, 0.1154, 0.0545, 0.0481, 0.0399, 0.0331, 0.0331], [0.2191, 0.1817, 0.1035, 0.0711, 0.0431, 0.0297, 0.0279, 0.0191], [0.3027, 0.1343, 0.1262, 0.0596, 0.041, 0.0248, 0.0206, 0.0193], [0.2545, 0.145, 0.1362, 0.0416, 0.0344, 0.0153, 0.0135, 0.0135], [0.195, 0.0813, 0.0674, 0.0299, 0.0181, 0.017, 0.017, 0.015], [0.1873, 0.1287, 0.0942, 0.0254, 0.012, 0.012, 0.0112, 0.0106], [0.1396, 0.1022, 0.04, 0.0376, 0.0293, 0.0293, 0.0189, 0.0178], [0.1773, 0.0477, 0.0372, 0.0187, 0.0137, 0.0106, 0.0094, 0.0088], [0.0956, 0.02, 0.0188, 0.0138, 0.0083, 0.0074, 0.0061, 0.0057], [0.1017, 0.0146, 0.0121, 0.0083, 0.0069, 0.0045, 0.0033, 0.0031], [0.2635, 0.0911, 0.0245, 0.0216, 0.0179, 0.0158, 0.009, 0.0062], [0.2331, 0.1602, 0.1248, 0.1172, 0.0262, 0.018, 0.0132, 0.0109], [0.2305, 0.2034, 0.1795, 0.0961, 0.0353, 0.0353, 0.0115, 0.0074], [0.2323, 0.1596, 0.1596, 0.1243, 0.0754, 0.0457, 0.0457, 0.009], [0.2741, 0.2419, 0.1663, 0.1663, 0.0371, 0.0199, 0.012, 0.0083], [0.9263, 0.017, 0.0132, 0.008, 0.008, 0.0055, 0.0049, 0.0049], [0.8726, 0.0233, 0.016, 0.016, 0.011, 0.011, 0.0097, 0.0086], [0.7599, 0.0624, 0.055, 0.0334, 0.0295, 0.0075, 0.0066, 0.0058], [0.4589, 0.2456, 0.1024, 0.0293, 0.0108, 0.0101, 0.0074, 0.0074], [0.1783, 0.0791, 0.0616, 0.0579, 0.0424, 0.0374, 0.0188, 0.0177], [0.3447, 0.0638, 0.0321, 0.025, 0.0235, 0.0183, 0.0183, 0.0172], [0.3636, 0.1257, 0.0492, 0.0434, 0.0318, 0.0205, 0.015, 0.0124]], "ranks": {"Kotlin": [239211, 224275, 228285, 135756, 186631, 200225, 223659, 241441, 232249, 242138, 241721, 233563, 203261, 216941, 218545, 200420, 199222, 196444, 211646, 224579, 209548, 128787, 143188, 178325, 114082, 46957, 39001, 73740, 19785, 6779, 19530, 37765, 13739, 5536, 978, 393, 19, 15, 15, 6, 13, 13, 12, 15, 15, 18, 24, 21, 11, 6, 5, 5, 1, 2, 2, 5, 10, 3, 2, 2, 3, 6, 7]}}, {"pos": 519, "top": [["es", "s", "y", " \u2013", "t", " [\u2026]", "\u2013", "sz"], ["es", "sWith", "s", "szer", "sz", " \u2013", "hui", " \u2013**"], [" \u2013", "\u2013", "es", "s", "sz", "\u2026..", ".\u2013", " \u200b\u200b"], [" Blowjob", " cumshot", " Shemale", "sz", "sWith", "odiac", " creampie", "enzi"], ["es", "sz", "sWith", ">Z", " CZ", "yz", "oz", "sze"], ["sz", "-Z", "es", ">Z", "yz", "-z", "sWith", "oz"], ["sz", "es", "s", "-Z", "cz", "-z", "siz", "tz"], ["sz", "es", "s", "-Z", "cz", "-z", "ebra", "ingly"], ["sz", "ephy", "ingly", " \u0417\u043e\u043b\u043e", "scape", "es", "*&", "/Z"], ["s", "@\\", "sz", "es", "ingly", "siz", " \u0417\u043e\u043b\u043e", "scape"], ["s", "es", "\\", "\u2014", "\\_", "@\\", "d", "-&"], ["es", "sz", "/Z", "-z", "s", "siz", "_Z", "-Z"], ["es", "sz", "lings", "s", "/Z", "-z", "scape", "ery"], ["es", "s", "-z", "tier", "sz", "/Z", "MZ", "cz"], ["s", "es", "d", "r", "\u2014", "n", "m", "l"], ["es", "s", "r", "d", "ar", "m", "n", "-z"], ["s", "es", "d", "r", "n", "t", "m", "ar"], ["es", "s", "-z", "iz", "-Z", "sz", "/Z", "/z"], ["es", "-z", "sz", "iz", "s", "dz", "/z", "zi"], ["-z", "/Z", "/z", "zi", "sz", "-Z", "iz", "dz"], ["Z", "2", "9", "3", "7", "4", "8", "1"], ["/Z", "/z", "-z", "IZ", "-Z", "cz", "_Z", "sz"], ["Z", "/Z", "es", "ZZ", "IZ", "zi", "cz", "-Z"], ["Z", "9", "7", "2", "3", "8", "es", "1"], ["9", "Z", "7", "2", "3", "8", "1", "4"], ["Z", "/Z", "9", "7", "8", "[Z", "4", "3"], ["/Z", "Z", ".Z", "-Z", "_Z", ">Z", "omics", "9"], ["9", "\n\n", "8", "7", "2", "4", "https", "Z"], ["/Z", "https", "COVID", "9", "Z", "\ufe0f", "8", "7"], ["/Z", "Z", "omics", "COVID", "aaS", "\ufe0f", "9", "https"], ["/Z", "omics", "\ufe0f", "COVID", "aaS", "mega", "finity", "/z"], ["https", "\ufe0f", "/Z", "9", " \u200b\u200b", "\ufffd", "8", "7"], ["/Z", "\ufe0f", "https", "9", "/z", "/X", "8", "COVID"], ["/Z", "\ufe0f", "/z", "/X", "tech", "aaS", "/global", "-tech"], ["/Z", "\ufe0f", "/X", "/z", "tech", "\ufffd", "/global", "https"], ["/Z", "\u6216", "\ufe0f", " \u200b\u200b", "\ufffd", "/X", "https", "/z"], ["/Z", " \u200b\u200b", "\u6216", "\ufe0f", " JVM", "Java", "/X", "\ufffd"], ["/Z", "\u6216", " \u200b\u200b", "\ufe0f", " JVM", "\ufffd", "/X", "Java"], ["\u6216", " \u200b\u200b", "/Z", " JVM", "\ufe0f", "Java", "/X", "/java"], ["\u6216", " JVM", "Java", " \u200b\u200b", "/java", "/Z", "java", "\ufe0f"], ["\u6216", "Java", " JVM", "/java", " \u200b\u200b", "java", "/Z", "-java"], [" JVM", "Java", "\u6216", "/java", "-java", " JDK", "java", "/Z"], [" JVM", "Java", "-java", "\u6216", "/java", " JDK", "java", "/Z"], ["\u6216", " JVM", "Java", "-java", " JDK", "java", "/java", "/Z"], ["\u6216", " JVM", "-java", "Java", "/java", " JDK", "java", "/Z"], ["\u6216", "/Z", " JVM", "/java", "-java", " JDK", "/X", "Java"], ["\u6216", "/Z", " \u0438\u043b\u0438", "/X", "\u6216\u8005", "/java", " JVM", " JDK"], ["\u6216", "/Z", " \u0438\u043b\u0438", "\u6216\u8005", "/X", " ho\u1eb7c", "\u6216\u5c0f", "/java"], ["\u6216", "/Z", "/X", " \u0438\u043b\u0438", "/G", "/Q", "/T", "/java"], ["/Z", "\u6216", "/X", "/T", "/G", "/Q", "/z", "/B"], ["/Z", "/X", "/z", "\u6216", "/Q", "/T", "/G", "/Y"], ["/Z", "/X", "/z", "\u6216", "/Y", "/G", "/T", "/V"], ["/Z", "/z", "/X", "/Y", "/G", "/K", "/V", "/T"], ["/Z", "/z", "/X", "/Y", "/J", "/G", "/V", "/K"], ["/Z", "/z", "[Z", "(Z", "-Z", ",Z", ".Z", ">Z"], ["/Z", " JVM", "/java", "\u5783\u573e", "GC", "/jav", "gc", "/z"], ["GC", " GC", "gc", "_GC", "\u5783\u573e", "_gc", " gc", "(gc"], [" GC", "GC", "gc", "_GC", "_gc", " gc", "/Z", ".gc"], ["GC", " GC", "/Z", "gc", "_GC", "_gc", " gc", "(gc"], ["GC", " GC", "gc", "_GC", "_gc", "/Z", " gc", "(gc"], ["GC", " GC", "/Z", "/G", "_GC", "gc", "/z", "_gc"], ["GC", " GC", "/Z", "/G", "gc", "_GC", "/Sh", "_gc"], ["GC", " GC", "gc", "_gc", "/Z", "/G", "_GC", " gc"]], "p": [[0.687, 0.1533, 0.0821, 0.0284, 0.0046, 0.0026, 0.0023, 0.0017], [0.5375, 0.05, 0.0285, 0.0135, 0.0126, 0.0112, 0.0032, 0.003], [0.2847, 0.236, 0.1263, 0.0924, 0.0234, 0.0161, 0.0133, 0.0125], [0.0229, 0.019, 0.0179, 0.0074, 0.0054, 0.0054, 0.0051, 0.0042], [0.2074, 0.1426, 0.0205, 0.017, 0.015, 0.0103, 0.0086, 0.0071], [0.1947, 0.0558, 0.0318, 0.0299, 0.0264, 0.0233, 0.0141, 0.0124], [0.486, 0.2296, 0.168, 0.0177, 0.0095, 0.0084, 0.0021, 0.002], [0.3568, 0.2453, 0.1088, 0.0214, 0.0189, 0.0108, 0.0084, 0.0058], [0.1009, 0.0165, 0.0165, 0.0155, 0.0155, 0.0155, 0.0083, 0.0083], [0.0189, 0.0177, 0.013, 0.0108, 0.0089, 0.0089, 0.0074, 0.0061], [0.454, 0.1778, 0.0241, 0.0226, 0.0176, 0.0146, 0.0121, 0.0094], [0.0358, 0.014, 0.0091, 0.0085, 0.0075, 0.0066, 0.0066, 0.0066], [0.0479, 0.0226, 0.0083, 0.0073, 0.005, 0.0047, 0.0042, 0.0042], [0.0333, 0.0123, 0.0079, 0.007, 0.0062, 0.0051, 0.0048, 0.004], [0.2566, 0.107, 0.0224, 0.0145, 0.0073, 0.0057, 0.0053, 0.005], [0.3912, 0.2689, 0.0092, 0.0072, 0.0067, 0.0052, 0.0043, 0.003], [0.5833, 0.3122, 0.0089, 0.0078, 0.0047, 0.0047, 0.0042, 0.0039], [0.4538, 0.1013, 0.0397, 0.0088, 0.0088, 0.0078, 0.0061, 0.0057], [0.0732, 0.0503, 0.0503, 0.0346, 0.021, 0.0197, 0.0153, 0.0153], [0.0985, 0.0767, 0.0465, 0.034, 0.03, 0.03, 0.0234, 0.0206], [0.0987, 0.0637, 0.0637, 0.0562, 0.0363, 0.0341, 0.0266, 0.025], [0.1483, 0.0658, 0.0375, 0.0331, 0.0311, 0.0292, 0.0227, 0.0177], [0.1301, 0.0577, 0.0329, 0.0165, 0.0155, 0.0155, 0.0155, 0.0137], [0.346, 0.044, 0.0343, 0.0251, 0.0235, 0.0221, 0.0172, 0.0152], [0.1456, 0.1285, 0.1001, 0.0883, 0.0688, 0.0646, 0.0536, 0.0503], [0.1685, 0.0702, 0.066, 0.0353, 0.0332, 0.0275, 0.0178, 0.0122], [0.0664, 0.0244, 0.0123, 0.0115, 0.0096, 0.009, 0.0066, 0.0062], [0.09, 0.0619, 0.0619, 0.0546, 0.0513, 0.0425, 0.0292, 0.0258], [0.0568, 0.0471, 0.0324, 0.0324, 0.0237, 0.0222, 0.0184, 0.0163], [0.0427, 0.0148, 0.013, 0.0122, 0.009, 0.009, 0.0074, 0.0062], [0.0871, 0.0118, 0.0098, 0.0067, 0.0056, 0.0049, 0.0046, 0.0043], [0.1533, 0.1533, 0.144, 0.0235, 0.0221, 0.0207, 0.0134, 0.0111], [0.2631, 0.0277, 0.0245, 0.0116, 0.0109, 0.009, 0.0066, 0.0062], [0.3399, 0.0316, 0.0204, 0.0124, 0.0096, 0.0075, 0.0071, 0.0062], [0.4328, 0.0334, 0.0158, 0.0123, 0.0108, 0.0079, 0.0074, 0.0054], [0.2616, 0.0849, 0.0515, 0.0229, 0.0189, 0.0108, 0.0101, 0.0084], [0.1854, 0.1636, 0.044, 0.0322, 0.0143, 0.0092, 0.0087, 0.0063], [0.1835, 0.0814, 0.056, 0.0409, 0.0193, 0.0091, 0.0086, 0.0076], [0.2281, 0.1221, 0.0788, 0.0309, 0.0256, 0.0165, 0.0107, 0.0107], [0.1734, 0.0819, 0.0679, 0.0438, 0.0363, 0.0301, 0.0235, 0.0134], [0.1829, 0.1181, 0.1181, 0.0524, 0.0338, 0.0299, 0.0248, 0.0205], [0.2028, 0.1086, 0.0746, 0.0546, 0.0375, 0.0352, 0.0311, 0.0275], [0.1469, 0.1075, 0.0575, 0.0508, 0.0421, 0.0395, 0.0308, 0.0225], [0.2818, 0.0859, 0.0555, 0.0246, 0.0246, 0.0231, 0.0192, 0.0169], [0.1168, 0.103, 0.0854, 0.0803, 0.0457, 0.0404, 0.0356, 0.0245], [0.2434, 0.108, 0.0615, 0.0578, 0.0397, 0.0329, 0.0256, 0.0241], [0.8772, 0.022, 0.0125, 0.0059, 0.0049, 0.0034, 0.0032, 0.0025], [0.9046, 0.0273, 0.0114, 0.0051, 0.0039, 0.0019, 0.0013, 0.0011], [0.7409, 0.1003, 0.0144, 0.012, 0.0044, 0.0039, 0.0037, 0.0032], [0.4299, 0.0847, 0.0847, 0.0167, 0.0157, 0.0157, 0.0115, 0.0115], [0.8138, 0.0316, 0.0169, 0.0159, 0.007, 0.0066, 0.0052, 0.0052], [0.9288, 0.015, 0.0117, 0.0063, 0.0038, 0.0023, 0.0019, 0.0015], [0.9635, 0.0094, 0.0083, 0.0024, 0.0013, 0.0011, 0.0011, 0.001], [0.9501, 0.012, 0.0073, 0.0027, 0.0024, 0.0021, 0.0016, 0.0014], [0.9946, 0.0052, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.8986, 0.0239, 0.0113, 0.0078, 0.0061, 0.0047, 0.0039, 0.0034], [0.4868, 0.3346, 0.1086, 0.0214, 0.013, 0.0101, 0.0089, 0.0069], [0.4623, 0.4623, 0.0335, 0.0158, 0.0085, 0.0051, 0.0045, 0.0024], [0.6692, 0.2462, 0.0294, 0.0259, 0.0157, 0.0051, 0.0031, 0.0015], [0.6512, 0.3076, 0.0223, 0.0082, 0.0034, 0.003, 0.003, 0.0004], [0.4463, 0.3939, 0.1279, 0.0105, 0.0056, 0.0047, 0.0019, 0.0018], [0.5277, 0.411, 0.0298, 0.0124, 0.0066, 0.002, 0.0019, 0.0015], [0.9868, 0.0124, 0.0003, 0.0001, 0.0001, 0.0, 0.0, 0.0]], "ranks": {"Kotlin": [131868, 71444, 64474, 16817, 31785, 66405, 52651, 117520, 136111, 202563, 212191, 153320, 79704, 153876, 227853, 161833, 162120, 107566, 87345, 101696, 141934, 67700, 62961, 54579, 41989, 9247, 2404, 2770, 999, 626, 382, 688, 624, 351, 283, 172, 46, 37, 43, 25, 29, 27, 25, 29, 48, 81, 242, 222, 344, 471, 1135, 878, 317, 313, 293, 141, 96, 95, 68, 73, 363, 990, 2016]}}, {"pos": 520, "top": [["s", ".", "schild", " McCoy", "\ufffd", " (\u201e", "....", "  \n"], ["s", " \\\"", "   \n", "schild", "\\\"", "  \n", "  \n\n", ":\\\""], ["s", "\\.", "schild", "\\\"", "\\n", "  \n", "   \n", "...\\"], [" **\u2022", " Shemale", " _____", " milfs", " \\\"", " \\\"%", " **\u25a0", "\u0e31\u0e19\u0e27\u0e32"], [" ***", "s", "***", " _____", "\\n", " .....", " GC", "  \n"], ["s", " _____", " ***", "   \n", "  \n", "***", " GC", " ....."], ["s", "  \n", " _____", "***", " .....", " ***", "_____", "\\n"], ["s", "  \n", "\\n", "  \n\n", " _____", ".", "***", "   \n"], [".", "s", "  \n\n", "  \n", "\\n", "***", "  \n  \n", "....."], ["s", "\\n", "\\", "\\.", ",", ".", "  \n", "\\$"], ["s", "\\n", ".", "\\", "\\.", ",", ";", "  \n"], ["s", "\\n", " _____", " ***", "***", " ____", " ______", " _."], ["s", ".", " ***", " _____", " GC", "\\n", "\ufffd", "***"], ["s", ".", ",", ";", " GC", "%C", "\ufffd", "***"], ["s", ",", ";", ".", " GC", "-", "ward", "&"], ["s", ",", " GC", ";", " KC", ".", "-", "\u00c3"], ["s", ",", ".", ";", " GC", "-", "\u200b", "\u00c3"], ["s", ",", " GC", ".", "GC", "***", ";", "\ufffd"], ["s", " GC", "GC", " _____", "***", " ***", "\ufffd", " QC"], ["s", " _____", " GC", " \u2014", "@", "_____", " [@", " myriad"], ["s", "<|endoftext|>", "@", " \u2014", "2", "7", "3", "1"], [" \\\"", "OGLE", "s", " **\u25a0", "\u00e3ng", " **\u300c", " \\\"%", " **\u2022"], ["s", " \\\"", " &", " ,", "&", " ``", " and", "&#"], [" ,", "s", " &", " and", " \\\"", "&", " Z", " in"], ["&", "@", "7", "2", "8", "9", "4", "1"], ["@", "&", " ,", ",", "\n\n", " &", "7", "8"], [" ,", " and", "@", " @", " COVID", " during", ",", " Z"], ["\n\n", " ,", "@", ",", "<|endoftext|>", " \n\n", " and", " @"], ["\n\n", "@", "https", " https", ",", " COVID", " ,", ":"], [" ...", "https", " COVID", " https", "\u200b", " JVM", ".", "?"], [" modern", " https", "https", " massively", " globally", " COVID", " tech", " faster"], ["\u200b", "/", "https", ",", " https", " modern", "&", " &"], ["/", " but", " or", "2", " and", "8", " modern", " https"], ["/", " but", "\u2014but", ",", " or", " tech", "\u200b", " modern"], ["/", "\u2014but", " but", " or", " tech", "https", " https", "8"], ["\u2014but", "/", "2", "8", " \u200b\u200b", "7", "4", "https"], [" \u200b\u200b", "\u2014but", "/", "\u200b\u200b", "\u200b", "https", " but", "["], [" \u200b\u200b", "\u2014but", " or", "/", " but", "https", " /", " modern"], [" or", " \u200b\u200b", "/", "\u2014but", " /", " modern", "\u6216", " JVM"], [" \u200b\u200b", "\u6216", " or", " JVM", "/", "\u200b\u200b", "\u2014but", "\u200b"], [" or", "/", " \u200b\u200b", " JVM", "\u200b", "\u200b\u200b", "\u6216", " /"], [" JVM", " or", "/", " Java", " optimized", "\u2014but", " JDK", " modern"], [" JVM", " optimized", " or", " Java", " JDK", " implementations", "/", " modern"], [" optimized", " JVM", " modern", " or", " newer", " implementations", " technologies", " Modern"], [" or", " newer", " optimized", " modern", " JVM", " improvements", " JDK", " implementations"], [" or", "/", " newer", " modern", " /", " optimized", " but", " improvements"], [" or", " newer", "/", "\u6216", " /", " modern", " \u0438\u043b\u0438", " optimized"], [" or", "\u6216", "/", " \u0438\u043b\u0438", "\u6216\u5c0f", "/G", " newer", "\u6216\u4f7f\u7528"], ["/", " or", "/G", "\u6216", "/S", "/C", "/T", "/O"], ["/", "/G", "/Z", "/T", "/C", "/O", "/M", "/B"], ["/G", "/Z", "/", "/T", "\u6216", "/X", "/O", "/C"], ["/G", "/Z", "/X", "/", "/T", "/M", "/Q", "/O"], ["/G", "/", "/Z", "/X", "/M", "/K", "/T", "/J"], ["/G", "/", "/Z", "/X", "/M", "/Q", "/J", "/O"], ["/G", " GC", " JVM", "/Z", "GC", "/J", "/java", "/Q"], [" GC", "GC", " garbage", "\u5783\u573e", " JVM", "gc", "/G", " gc"], [" GC", "GC", "gc", " gc", "_GC", " garbage", "(gc", ".gc"], [" GC", "GC", " gc", "gc", "_gc", ".gc", "_GC", " garbage"], [" GC", "GC", " gc", "gc", "_GC", "_gc", ".gc", "/G"], [" GC", "GC", " gc", "/G", "gc", "/Z", "/", "_GC"], ["/Sh", "/G", "/Z", "/M", "/", "/C", " GC", " or"], ["/Sh", "/Z", "/G", "/M", "/sh", " Shen", "/S", "/"], ["/Z", "/", "/G", "/Sh", "/M", "/C", "/S", "/E"]], "p": [[0.2947, 0.0227, 0.0114, 0.0084, 0.0079, 0.0065, 0.0042, 0.0042], [0.7019, 0.0396, 0.0199, 0.0176, 0.0146, 0.0129, 0.0094, 0.0042], [0.2248, 0.0644, 0.0324, 0.0173, 0.0153, 0.0135, 0.0127, 0.0112], [0.0419, 0.0271, 0.0154, 0.0154, 0.0073, 0.0073, 0.0057, 0.0057], [0.175, 0.128, 0.0644, 0.0605, 0.0324, 0.0268, 0.0196, 0.0184], [0.1496, 0.0801, 0.0664, 0.0586, 0.0403, 0.026, 0.026, 0.0158], [0.6063, 0.0873, 0.0498, 0.025, 0.0235, 0.0195, 0.0162, 0.0111], [0.3715, 0.1988, 0.0417, 0.0392, 0.0368, 0.0286, 0.021, 0.0185], [0.2162, 0.1793, 0.0747, 0.0659, 0.0659, 0.0228, 0.0157, 0.0157], [0.4837, 0.2016, 0.0423, 0.0256, 0.0226, 0.0176, 0.0114, 0.0107], [0.363, 0.1825, 0.1715, 0.0247, 0.0205, 0.017, 0.017, 0.011], [0.4791, 0.0505, 0.0446, 0.0393, 0.0128, 0.0093, 0.0082, 0.0068], [0.373, 0.0474, 0.0088, 0.0088, 0.0064, 0.0053, 0.005, 0.005], [0.6848, 0.0194, 0.0151, 0.0086, 0.0043, 0.0025, 0.0023, 0.0019], [0.8911, 0.0119, 0.0068, 0.0064, 0.0016, 0.0009, 0.0007, 0.0006], [0.9286, 0.004, 0.0017, 0.0008, 0.0005, 0.0005, 0.0004, 0.0003], [0.9628, 0.0166, 0.0015, 0.0013, 0.0008, 0.0004, 0.0002, 0.0002], [0.8472, 0.0061, 0.0047, 0.0042, 0.0014, 0.0012, 0.0011, 0.001], [0.5683, 0.0235, 0.0072, 0.0072, 0.0046, 0.0028, 0.0026, 0.0022], [0.6412, 0.0161, 0.0043, 0.0038, 0.0028, 0.0026, 0.0022, 0.0018], [0.3884, 0.0464, 0.0436, 0.0339, 0.03, 0.016, 0.0151, 0.0151], [0.0255, 0.0128, 0.012, 0.0088, 0.0042, 0.0039, 0.0037, 0.003], [0.1014, 0.0952, 0.0895, 0.0615, 0.0188, 0.0129, 0.01, 0.0083], [0.1766, 0.0736, 0.0691, 0.0419, 0.037, 0.0307, 0.0128, 0.006], [0.1537, 0.0993, 0.0602, 0.0566, 0.0499, 0.0499, 0.0251, 0.0251], [0.0526, 0.0494, 0.0265, 0.0265, 0.0234, 0.0234, 0.0206, 0.0194], [0.0518, 0.0295, 0.0179, 0.0102, 0.0085, 0.007, 0.0066, 0.0066], [0.5399, 0.0502, 0.0345, 0.0237, 0.0209, 0.0144, 0.0119, 0.0105], [0.13, 0.0614, 0.0422, 0.0329, 0.0309, 0.0187, 0.0165, 0.0137], [0.0311, 0.0275, 0.0157, 0.0122, 0.0115, 0.0079, 0.0079, 0.0079], [0.0372, 0.0372, 0.0309, 0.0226, 0.0212, 0.0137, 0.0114, 0.0107], [0.1489, 0.0583, 0.0583, 0.0376, 0.0376, 0.0275, 0.0275, 0.0243], [0.0988, 0.0638, 0.0638, 0.0341, 0.0341, 0.0301, 0.0283, 0.0283], [0.0876, 0.0682, 0.0682, 0.0531, 0.0414, 0.0236, 0.0221, 0.0184], [0.1682, 0.131, 0.0581, 0.0228, 0.0214, 0.0189, 0.013, 0.0108], [0.1755, 0.0829, 0.0472, 0.0392, 0.0392, 0.0305, 0.0253, 0.0253], [0.2349, 0.1615, 0.0408, 0.0408, 0.0318, 0.0219, 0.016, 0.0133], [0.0844, 0.07, 0.058, 0.058, 0.0331, 0.0311, 0.0292, 0.0257], [0.1616, 0.1258, 0.0594, 0.0384, 0.0361, 0.0339, 0.0281, 0.0181], [0.1099, 0.0709, 0.0626, 0.043, 0.038, 0.0278, 0.0261, 0.023], [0.0959, 0.0901, 0.0795, 0.0453, 0.04, 0.0311, 0.0275, 0.0214], [0.1333, 0.076, 0.049, 0.0461, 0.0204, 0.018, 0.017, 0.017], [0.1334, 0.0461, 0.0317, 0.0317, 0.028, 0.028, 0.0232, 0.0232], [0.0688, 0.0535, 0.0503, 0.0253, 0.0174, 0.0144, 0.0144, 0.0119], [0.0765, 0.056, 0.056, 0.0526, 0.0464, 0.016, 0.0141, 0.0125], [0.7276, 0.0206, 0.0194, 0.0182, 0.0151, 0.011, 0.0049, 0.0049], [0.7942, 0.024, 0.0165, 0.0078, 0.0069, 0.0069, 0.005, 0.005], [0.8268, 0.0412, 0.0387, 0.0118, 0.0052, 0.0034, 0.0034, 0.0032], [0.4767, 0.2252, 0.0345, 0.0209, 0.0127, 0.0127, 0.0127, 0.0112], [0.1935, 0.133, 0.0554, 0.0489, 0.0381, 0.0381, 0.0381, 0.0381], [0.2461, 0.0905, 0.0799, 0.0485, 0.0377, 0.0377, 0.0333, 0.0294], [0.249, 0.151, 0.0713, 0.0556, 0.0433, 0.0337, 0.0337, 0.0297], [0.2737, 0.2132, 0.0784, 0.0611, 0.042, 0.037, 0.0255, 0.0198], [0.284, 0.1952, 0.1045, 0.0435, 0.0384, 0.0299, 0.0233, 0.0233], [0.442, 0.0986, 0.0768, 0.0598, 0.0411, 0.0283, 0.0283, 0.022], [0.6637, 0.0793, 0.0793, 0.0617, 0.0177, 0.0156, 0.0156, 0.0095], [0.9111, 0.066, 0.0089, 0.0054, 0.0023, 0.0016, 0.0014, 0.0012], [0.911, 0.066, 0.0079, 0.007, 0.0023, 0.0018, 0.0012, 0.0009], [0.8473, 0.1299, 0.0083, 0.0065, 0.0031, 0.0019, 0.0009, 0.0009], [0.7868, 0.1549, 0.0135, 0.0087, 0.006, 0.0044, 0.003, 0.0024], [0.2535, 0.1974, 0.1197, 0.0602, 0.0303, 0.0284, 0.0251, 0.0236], [0.6606, 0.243, 0.0226, 0.0129, 0.0107, 0.0083, 0.0042, 0.0042], [0.3138, 0.3138, 0.1154, 0.0899, 0.07, 0.0292, 0.0177, 0.0074]], "ranks": {"Kotlin": [60586, 15603, 7444, 4903, 21814, 34498, 29138, 52327, 27244, 44590, 45869, 16616, 10878, 35232, 62454, 17710, 27004, 13120, 20222, 56500, 127114, 15748, 9011, 7439, 5991, 846, 257, 914, 282, 135, 158, 1042, 1618, 721, 604, 371, 173, 97, 99, 71, 127, 100, 84, 132, 270, 762, 1334, 1013, 992, 608, 512, 378, 210, 179, 140, 161, 156, 137, 82, 177, 544, 1118, 1553]}}, {"pos": 521, "top": [["  \n", "  \n\n", "\u2014", "\u2014\u2014", " [\u2026]", "\u2026\u2026", "\u2026", " \u2026"], ["  \n", "  \n\n", " [@", "[\"@", " @@", "\ufffd", " (@", " @"], ["[\"@", "@\"", "\u2026]", "mallow", "mall", "\u2014\u2014", " @@", "\ufffd"], [" ``", " ``(", "``", "\"\":", "\u3015", "\u3014", " YYS", "elry"], [" @_", "@\\", "\"\":", " @@", " +#", " $#", " @(", ":@"], ["INH", "\u0103\u0219", " Insg", "erable", "ingly", " @_", "(fh", "\"\":"], ["\"\":", "\u3014", " \u301c", "\u201d\u2014", "\u0103\u0219", " @_", " $#", " +#"], ["\"\":", "\u0103\u0219", " @_", "@\\", "\u3014", " \u301c", "mallow", "erais"], ["\"\":", " $#", " @_", "*@", "\u0103\u0219", " \u301c", "-&", " +#"], ["\"\":", " +#", "@\\", "-&", "=\"'", "elight", " $#", "ylum"], ["@\\", " @_", "-&", " +#", "\"\":", "*@", "/@", " #@"], ["\"\":", " YYS", "mallow", " //~", "elry", "schuh", "lify", "ousel"], ["\"\":", "mallow", " YYS", "schuh", "crap", "elight", "lify", "eroon"], ["schuh", "\"\":", "croft", "apesh", "mallow", "crap", "elper", "plash"], ["croft", "\"\":", "apesh", "schuh", "rax", "elper", "schirm", "orthand"], ["schuh", "schirm", "croft", "crap", "apesh", "mallow", "awks", "elper"], ["mallow", "poke", "crap", "ipher", "omics", "apesh", "acters", "croft"], ["mallow", "apesh", "poke", "\"\":", "schuh", "crap", "elper", "lify"], ["\"\":", "mallow", "apesh", " YYS", "lify", "elper", "poke", "schuh"], ["mallow", "``", "apesh", "schuh", "orthand", "ideshow", "rift", "\"\":"], ["mallow", "orthand", " +#", "apesh", "@\\", "-&", "ideshow", "ero"], ["``", "rift", " YYS", " ``(", "schuh", "ideshow", "mallow", "ifter"], ["``", " ``", " ``(", "ideshow", "rift", "ifter", "elry", " YYS"], [" ``", "``", "ideshow", " ``(", "rift", "ifter", "omics", " //~"], ["``", " ``", "-&", "\"\":", "rift", "ifter", "orthand", " //~"], ["``", "ifter", " ``(", " YYS", "\"\":", "rift", " ``", "mallow"], ["``", " ``", " ``(", "\"\":", " //~", " MEDIATEK", "ifter", "omics"], [" @_", "\r\n\r\n", " *__", "  \r\n\r\n", "@\\", " \r\n\r\n", "mallow", " *@"], [" @_", "mallow", " *@", "omics", " *__", "@\\", ":__", "aaS"], ["omics", " @_", "mallow", " **\u2014", " *@", " -**", "ero", "aaS"], ["omics", " *@", "ero", " @_", " tech", "esh", " \r\n \r\n", "  \r\n\r\n"], [" modern", "ero", " \ufffd", " tech", " \ufffd", "\ufffd", "\ufffd", "omics"], ["ero", "\u2014but", " tech", " modern", "esh", " *@", " /", "modern"], ["\u2014but", " tech", "mallow", "-tech", "tech", "modern", "ero", "\u201d\u2014"], ["\u2014but", "mallow", "ero", "/etc", "omics", "tech", "\u4f46", "  \r\n\r\n"], ["\u4f46", "\u2014but", "\u6216", "\u2026*", "\u2026but", "\u2026**", "\ud83d\ude09", "**\u2014"], ["\u4f46", "\u2014but", "\u6216", "omics", "tech", "modern", "\u73b0\u4ee3", "mallow"], ["\u4f46", "\u6216", "\u2014but", "mallow", "omics", "/etc", "modern", "tech"], ["\u6216", "\u4f46", "omics", "\u73b0\u4ee3", "modern", " JVM", "\u2014but", "optimized"], ["Java", " JVM", " JDK", "\u6216", "java", "\u4f46", "omics", "/java"], [" JVM", "Java", " JDK", "java", "\u6216", "\u4f46", " Java", "/java"], [" JVM", "Java", " JDK", "/java", "java", "optimized", " Java", "\u2026**"], [" JVM", "Java", " JDK", "optimized", "java", "/java", "-java", " Java"], [" JVM", "Java", " JDK", "optimized", "\u6216", "java", "\u73b0\u4ee3", "modern"], [" JVM", " JDK", "Java", "optimized", "java", "-java", "modern", " Java"], [" JVM", " JDK", "/etc", "/java", "/System", "Java", " Java", "-java"], ["/etc", " JVM", "/System", " JDK", "/java", "/Sh", "/X", "/OR"], ["/etc", "/System", "/Sh", "/Z", "/S", "/X", " JVM", "/"], ["/etc", "/System", " JVM", " JDK", "/Z", "/java", "/Sh", "-java"], ["/etc", "/Sh", "/System", "/X", "/Z", " JVM", "/java", "-enabled"], ["/etc", "/Sh", "/System", "/X", "/Z", "/S", "-enabled", "/Q"], ["/etc", "optimized", " JVM", " Ejem", "-enabled", " Leverkus", "-java", " Hidal"], [" JVM", "-java", " JDK", "allocator", "Heap", " Hidal", "noop", "-enabled"], [" JVM", "-java", "Heap", "noop", "optimized", "allocator", "ptime", " JDK"], ["(sh", " JVM", "/Sh", "Heap", "-Sh", " Heap", " Shen", "-java"], [" JVM", "Heap", " Heap", " GC", "_GC", "gc", "(gc", " gc"], ["gc", " GC", " JVM", " gc", "GC", "_GC", "(gc", ".gc"], [" GC", "gc", "GC", " gc", ".gc", "_GC", "(gc", "Heap"], [" GC", " gc", " Shen", "GC", "gc", "_GC", ".gc", " JVM"], [" Shen", " GC", "GC", "(sh", "_SH", " SH", "/Sh", "-sh"], [" Shen", " Sh", " SH", "/Sh", "Sh", "SH", "(sh", " Shuffle"], [" Shen", " Sh", "Sh", " SH", "/Sh", "-Sh", " Shed", "SH"], [" Shen", "Sh", "arded", "-Sh", "_SH", " Sh", "immer", " SH"]], "p": [[0.3564, 0.0795, 0.0482, 0.0275, 0.0258, 0.0147, 0.0147, 0.0115], [0.1364, 0.1281, 0.0827, 0.0416, 0.0324, 0.0269, 0.0163, 0.0127], [0.0857, 0.0159, 0.0149, 0.014, 0.0123, 0.0123, 0.0109, 0.0102], [0.2917, 0.177, 0.0612, 0.0175, 0.0155, 0.0078, 0.0035, 0.003], [0.0362, 0.0206, 0.0194, 0.0171, 0.0171, 0.0133, 0.0133, 0.0118], [0.0114, 0.0083, 0.0083, 0.0083, 0.0061, 0.0054, 0.0051, 0.0051], [0.0441, 0.0143, 0.0105, 0.0082, 0.0072, 0.006, 0.0056, 0.0053], [0.0396, 0.0107, 0.0094, 0.0083, 0.0078, 0.0078, 0.0078, 0.0065], [0.0307, 0.0106, 0.01, 0.0094, 0.0088, 0.0083, 0.0078, 0.006], [0.0197, 0.0068, 0.0064, 0.0053, 0.0044, 0.0041, 0.0039, 0.0034], [0.0332, 0.0214, 0.0189, 0.0189, 0.0167, 0.0157, 0.0157, 0.0147], [0.0079, 0.0062, 0.0043, 0.0038, 0.0038, 0.0035, 0.0033, 0.0033], [0.0045, 0.0039, 0.0033, 0.0033, 0.0033, 0.0031, 0.0029, 0.0029], [0.0033, 0.0031, 0.0029, 0.0028, 0.0028, 0.0028, 0.0028, 0.0022], [0.0053, 0.0044, 0.0041, 0.0034, 0.0032, 0.003, 0.0027, 0.0022], [0.005, 0.0047, 0.0028, 0.0024, 0.0022, 0.002, 0.0018, 0.0018], [0.0045, 0.0045, 0.0035, 0.0033, 0.0031, 0.0031, 0.0029, 0.0029], [0.0072, 0.0068, 0.0053, 0.0049, 0.0032, 0.003, 0.0023, 0.0022], [0.0074, 0.0066, 0.0048, 0.0035, 0.0033, 0.0029, 0.0026, 0.0024], [0.0082, 0.0044, 0.0044, 0.0041, 0.0041, 0.0041, 0.0039, 0.0032], [0.0061, 0.0061, 0.0044, 0.0042, 0.0037, 0.0037, 0.0032, 0.0032], [0.0083, 0.0057, 0.0053, 0.0044, 0.0042, 0.0042, 0.0039, 0.0037], [0.0347, 0.0326, 0.012, 0.0053, 0.005, 0.0039, 0.0039, 0.0034], [0.0499, 0.0236, 0.0053, 0.0049, 0.0041, 0.003, 0.003, 0.0023], [0.0142, 0.0056, 0.0041, 0.0036, 0.003, 0.003, 0.0028, 0.0026], [0.0073, 0.005, 0.0044, 0.0041, 0.0041, 0.0039, 0.0037, 0.0034], [0.007, 0.0045, 0.004, 0.0033, 0.0031, 0.0027, 0.0027, 0.0027], [0.0174, 0.0127, 0.0077, 0.0072, 0.005, 0.0039, 0.0039, 0.0039], [0.0194, 0.0133, 0.0076, 0.0067, 0.0063, 0.0059, 0.0055, 0.0052], [0.0153, 0.0144, 0.0135, 0.0112, 0.0105, 0.0093, 0.0077, 0.0072], [0.0172, 0.0161, 0.0143, 0.0118, 0.0104, 0.0092, 0.0081, 0.0067], [0.0244, 0.019, 0.0158, 0.0148, 0.0131, 0.0115, 0.0108, 0.0108], [0.0291, 0.0291, 0.0227, 0.0177, 0.0114, 0.0089, 0.0078, 0.0074], [0.059, 0.0096, 0.0096, 0.0096, 0.009, 0.0085, 0.0085, 0.008], [0.0745, 0.0101, 0.0084, 0.0069, 0.0069, 0.0069, 0.0061, 0.0061], [0.0468, 0.0365, 0.0195, 0.0098, 0.0076, 0.0076, 0.0067, 0.0063], [0.0307, 0.0175, 0.012, 0.0094, 0.0083, 0.0073, 0.0069, 0.0069], [0.0195, 0.0126, 0.0098, 0.0077, 0.0077, 0.0072, 0.0072, 0.0068], [0.0462, 0.0232, 0.0085, 0.008, 0.0075, 0.0071, 0.0067, 0.0059], [0.1165, 0.08, 0.0294, 0.0294, 0.0244, 0.0102, 0.009, 0.0084], [0.1815, 0.1705, 0.0459, 0.0204, 0.0169, 0.0132, 0.0102, 0.0102], [0.2717, 0.1206, 0.0829, 0.0127, 0.0127, 0.0112, 0.0087, 0.0077], [0.2207, 0.1517, 0.111, 0.0181, 0.0181, 0.0133, 0.0086, 0.0076], [0.1254, 0.0918, 0.0592, 0.0247, 0.0124, 0.0124, 0.0103, 0.0103], [0.1463, 0.1213, 0.0691, 0.0154, 0.012, 0.0106, 0.0106, 0.0088], [0.1587, 0.1091, 0.0904, 0.019, 0.0178, 0.0167, 0.0139, 0.0058], [0.7322, 0.0152, 0.0111, 0.0111, 0.0046, 0.0046, 0.0044, 0.0041], [0.7431, 0.0128, 0.0113, 0.0078, 0.0053, 0.005, 0.0044, 0.0042], [0.4949, 0.0124, 0.0091, 0.0071, 0.0062, 0.0059, 0.0052, 0.0035], [0.4023, 0.0129, 0.0083, 0.0074, 0.0069, 0.0042, 0.0037, 0.0033], [0.5009, 0.0363, 0.0098, 0.0086, 0.0076, 0.0071, 0.0043, 0.003], [0.0202, 0.013, 0.013, 0.0079, 0.007, 0.0054, 0.0054, 0.0051], [0.1328, 0.0336, 0.0217, 0.009, 0.0085, 0.007, 0.007, 0.007], [0.07, 0.0292, 0.0138, 0.0138, 0.0122, 0.0114, 0.0114, 0.0095], [0.187, 0.1651, 0.1208, 0.0646, 0.0607, 0.0238, 0.0197, 0.0185], [0.2777, 0.1684, 0.1021, 0.0796, 0.0702, 0.0453, 0.0426, 0.04], [0.2057, 0.1816, 0.1414, 0.1248, 0.1101, 0.0668, 0.052, 0.0459], [0.3072, 0.113, 0.113, 0.113, 0.088, 0.0685, 0.0534, 0.0391], [0.252, 0.1529, 0.119, 0.119, 0.1051, 0.0678, 0.0562, 0.025], [0.5499, 0.0544, 0.0544, 0.0544, 0.0291, 0.02, 0.0156, 0.0129], [0.9672, 0.0089, 0.0051, 0.0042, 0.0029, 0.0012, 0.0009, 0.0009], [0.9402, 0.0098, 0.0076, 0.0044, 0.0041, 0.0032, 0.0018, 0.0013], [0.9063, 0.0114, 0.0054, 0.0025, 0.0024, 0.0017, 0.0015, 0.0013]], "ranks": {"Kotlin": [239886, 224517, 199244, 145239, 197640, 194572, 196169, 194051, 182945, 222637, 207440, 164760, 168579, 192992, 212200, 176286, 149085, 127002, 108279, 128234, 182509, 118218, 146653, 222297, 160013, 67694, 76466, 84100, 28230, 24480, 78687, 66599, 57626, 25845, 33004, 14454, 1819, 726, 658, 64, 76, 59, 51, 79, 70, 56, 276, 219, 114, 113, 332, 134, 40, 175, 130, 75, 59, 82, 58, 111, 455, 4479, 5499]}}, {"pos": 522, "top": [[" \u2013", "\u00a0", " ", "\u2013", "\u00a0\u00a0", " \u200b\u200b", ".", "\""], [" \u200b\u200b", "avior", "\u200b\u200b", " \u2014\u2014", "chantment", "uele", "ewe", "venuti"], ["avior", " \u200b\u200b", " \u2014\u2014", "\u200b\u200b", "\u5450", "istry", "\u7684", "ewe"], [" Shen", "ewe", "ikin", "alyzer", "atham", "linna", " \u2014\u2014", "akup"], [" \u2014\u2014", " Shen", "\ufffd", " \ufffd", "esh", "\ufffd", "\ufb01", "akup"], [" Shen", "esh", " \u2014\u2014", "alyzer", "esses", "avior", "ovin", "\u2014\u2014"], [" \u2014\u2014", " `\"", "\ufb01", "esh", " Shen", "\u2014\u2014", "\ufffd", "\ufffd"], [" `\"", "esh", " Shen", "atham", "istry", "editary", "ifer", "thal"], [" `\"", "istry", "esh", "editary", ":`", "atham", " Shen", "thal"], ["esh", " Shen", "istry", "ych", " `\"", "ifer", "atham", "iner"], ["esh", " Shen", " `\"", "istry", "atham", "ych", "iner", "ESH"], ["atham", "ych", "eshire", "atha", " `\"", "istry", "ESH", "cko"], ["atham", "eshire", "atha", "ych", "istry", "ESH", "esh", "cko"], ["atham", "ESH", "ych", "esh", " Shen", "istry", "cko", "atha"], ["ych", "esh", "atham", " `\"", "illah", "cko", "allah", " Shen"], ["ych", "atham", " Shen", "ESH", "esh", "linna", "illah", "istry"], ["ych", "ESH", "esh", "atham", " Shen", "\u5931\u63aa", "rift", "istry"], ["ESH", "ych", "atham", "rift", "odle", "cko", "allah", " Shen"], ["odle", " ``(", " YYS", "eshire", "rift", "atham", "cko", " MEDIATEK"], [" ``(", "rift", "eshire", "ifold", " YYS", "atham", " MEDIATEK", "ych"], [" `\"", " ``(", "ifold", "rift", "ych", "atha", "riad", "ilson"], [" ``(", "rift", " ``", "ifold", "eshire", " YYS", "bruck", "ilson"], [" ``", " ``(", " `\"", "``", "rift", "ych", "iks", "atha"], [" ``", "\ufffd", " \ufffd", " `\"", " `", " myriad", " --", " ,"], [" ``", "\ufffd", " `\"", " ``(", "``", " \ufffd", " myriad", "\ufffd"], [" ``", " `\"", " ``(", " `", "\ufffd", "atha", "ych", "brook"], [" ``", " ``(", " `\"", "``", " `", " `'", "atha", " {{--<"], [" ``", " `", " --", " ,", " `\"", " myriad", " \ufffd", " {{--<"], [" ``", " `\"", " `", "esh", " myriad", " \ufffd", " --", " ,"], [" ``", "esh", " `\"", " ``(", " *__", ":__", "atha", "Alchemy"], [" ,", " ``", " -", " .", "esh", " `\"", " `", " \u2014"], [" ,", " -", " .", " more", " ``", " long", " \u2014", " \u2013"], [" ,", " \u2014", " -", " \u2013", " /", " .", "\u2013", " myriad"], [" \u2014", "\ufb01", "\u2013", " \u2013", "esh", "\ufffd", "\u201d\u2014", " \ufffd"], ["\ufb01", "\ufffd", "esh", " \ufffd", " \u2014\u2014", " \u2014", "ah", "\u2010"], ["\u2013", "\ufb01", "\u2011", " \u2014\u2014", " \u2013", "\u2026*", " \u2026", " \u2014"], ["\u2013", "\u2011", " \u2013", "\"\u2014", " \u2014", "\u2010", " \u2014\u2014", "\u2014\u2014"], ["\u2011", " \u2013", "\u2013", "\u2010", "\u2033", " \u2014", " \u2014\u2014", "\"\u2014"], ["\u2011", " \u2013", "\u2013", "\u2010", "\ufb01", " \u2014", "\"\u2014", " /"], ["\u2011", "complex", " \u2013", "\u2013", "\ufb01", "\u2033", "esh", "stash"], [" memory", "\u5185\u5b58", "memory", "-memory", " Memory", "\u2013", "complex", "java"], [" memory", "-memory", "\u5185\u5b58", "memory", "Memory", " Memory", "stash", "MEMORY"], ["-memory", " memory", "\u5185\u5b58", "stash", "memory", " storage", " billions", "abyte"], ["-memory", " memory", "\u5185\u5b58", "memory", "large", "stash", " billions", " storage"], ["-memory", " memory", "-fast", "stash", " rapidly", " billions", " lifecycle", " storage"], ["-memory", "-fast", "stash", " rapidly", " billions", " memory", " rapid", " fast"], ["-memory", "-fast", "memory", "\u5185\u5b58", "stash", "-framework", " lifecycle", "fast"], ["-fast", "-memory", "/fast", "fast", "-framework", "/etc", "-byte", "-cache"], ["-fast", "/etc", "-memory", "-cache", "/Sh", "-initialized", "-framework", "-backend"], ["/Sh", "/etc", "-China", "-Cs", "finity", "-Sah", "-memory", "-Sh"], ["/Sh", "/etc", "-Smith", "-Sh", "-China", "berg", "cko", "-backend"], ["omics", "alyzer", "-Cs", "-Sh", "/Sh", "berger", "finity", "berg"], ["alyzer", "omics", " JVM", "\u2026,", "finity", "berger", " Shen", "-memory"], [" Shen", "finity", "alyzer", "omics", "/Sh", "strup", "-lite", "-Sh"], [" Shen", "-Sh", "(sh", " \u041a\u0438\u0442\u0430\u0439", " \u043a\u0438\u0442\u0430\u0439", " Shang", "/Sh", " Feng"], [" Shen", " Feng", " \u041a\u0438\u0442\u0430\u0439", " Zhu", " Jiang", " Jian", " Xia", " GC"], [" Shen", " gc", " GC", "GC", ".gc", "_GC", "(gc", "\u5783\u573e"], [" Shen", ".gc", " gc", " GC", "_GC", "\u5783\u573e", "GC", "_gc"], [" Shen", " gc", "_GC", " GC", " Shang", "\u5783\u573e", ".gc", "GC"], [" Shen", "(sh", " SH", "Sh", "zh", "SH", " Shang", "/Sh"], [" Shen", "stone", "Sh", " SH", "(sh", "/Sh", " Sh", " Hao"], ["har", "ando", "ron", "mue", "ango", " Shen", "mu", "stone"], ["ando", "mu", "ron", "mue", "har", "ard", "ango", "stone"]], "p": [[0.2567, 0.107, 0.0649, 0.061, 0.0573, 0.0347, 0.0307, 0.0198], [0.2462, 0.0178, 0.0123, 0.007, 0.007, 0.007, 0.0054, 0.0051], [0.0417, 0.0345, 0.0269, 0.0174, 0.0163, 0.0127, 0.0082, 0.0044], [0.0345, 0.0093, 0.0077, 0.0072, 0.005, 0.0041, 0.0039, 0.0032], [0.1878, 0.1213, 0.0154, 0.0088, 0.0068, 0.0068, 0.0057, 0.0057], [0.1085, 0.0069, 0.0057, 0.0054, 0.0051, 0.0029, 0.0024, 0.0023], [0.0537, 0.0393, 0.0254, 0.0198, 0.0164, 0.0145, 0.0136, 0.0099], [0.0325, 0.0197, 0.0105, 0.0105, 0.0093, 0.0077, 0.0077, 0.0072], [0.0291, 0.0257, 0.0241, 0.0095, 0.0089, 0.0078, 0.0078, 0.0065], [0.0215, 0.0131, 0.0102, 0.0079, 0.0074, 0.0062, 0.0062, 0.0058], [0.0368, 0.0223, 0.0223, 0.0174, 0.0163, 0.0119, 0.0087, 0.0068], [0.0203, 0.0079, 0.0075, 0.0051, 0.0048, 0.0048, 0.0043, 0.004], [0.0094, 0.006, 0.006, 0.005, 0.0047, 0.0039, 0.0034, 0.0032], [0.0054, 0.0045, 0.0039, 0.0033, 0.0029, 0.0027, 0.0025, 0.0022], [0.0068, 0.005, 0.005, 0.0044, 0.0039, 0.0032, 0.003, 0.003], [0.0066, 0.0035, 0.0031, 0.0026, 0.0026, 0.002, 0.0018, 0.0018], [0.0055, 0.004, 0.0036, 0.0032, 0.003, 0.0022, 0.0019, 0.0019], [0.0038, 0.0038, 0.0035, 0.0035, 0.0027, 0.0023, 0.002, 0.002], [0.0062, 0.0058, 0.0045, 0.004, 0.0035, 0.0031, 0.0029, 0.0026], [0.0067, 0.006, 0.0044, 0.0034, 0.0025, 0.0022, 0.0021, 0.0019], [0.0069, 0.0069, 0.0047, 0.0031, 0.0029, 0.0025, 0.0025, 0.0024], [0.0213, 0.0061, 0.0048, 0.0039, 0.0035, 0.0029, 0.0029, 0.0027], [0.042, 0.0211, 0.0057, 0.0057, 0.0037, 0.0029, 0.0027, 0.0024], [0.0293, 0.0074, 0.007, 0.0061, 0.004, 0.0037, 0.0024, 0.0023], [0.0203, 0.0102, 0.0102, 0.0058, 0.004, 0.0031, 0.0026, 0.0021], [0.0444, 0.0223, 0.012, 0.0041, 0.0036, 0.0036, 0.0032, 0.0032], [0.1518, 0.0233, 0.011, 0.0043, 0.004, 0.003, 0.003, 0.0025], [0.0284, 0.0207, 0.0162, 0.0118, 0.0098, 0.0059, 0.0056, 0.0041], [0.0748, 0.0201, 0.0065, 0.0061, 0.0051, 0.0048, 0.0045, 0.0037], [0.0629, 0.0109, 0.0109, 0.008, 0.0055, 0.0055, 0.0048, 0.0046], [0.0589, 0.0589, 0.0096, 0.0096, 0.0075, 0.007, 0.0062, 0.0045], [0.1361, 0.0415, 0.0285, 0.0105, 0.0093, 0.0087, 0.0077, 0.006], [0.0715, 0.0672, 0.0491, 0.0407, 0.0132, 0.011, 0.0091, 0.008], [0.026, 0.019, 0.0179, 0.0168, 0.0158, 0.0108, 0.0066, 0.0066], [0.0414, 0.0284, 0.0143, 0.0098, 0.0087, 0.0087, 0.0053, 0.0049], [0.0452, 0.0213, 0.0177, 0.0177, 0.0156, 0.0138, 0.0129, 0.0122], [0.0517, 0.0378, 0.0158, 0.0148, 0.0131, 0.0123, 0.0096, 0.0096], [0.0485, 0.0455, 0.0402, 0.0115, 0.007, 0.0066, 0.0062, 0.0054], [0.0298, 0.0218, 0.0181, 0.0071, 0.0066, 0.0055, 0.0052, 0.0052], [0.0105, 0.0092, 0.0087, 0.0082, 0.0053, 0.0039, 0.0036, 0.0036], [0.037, 0.0239, 0.0211, 0.0186, 0.0073, 0.005, 0.0047, 0.0039], [0.069, 0.0608, 0.0504, 0.0326, 0.0099, 0.0093, 0.0077, 0.0057], [0.0741, 0.0329, 0.0212, 0.0176, 0.0165, 0.0121, 0.0054, 0.0047], [0.0372, 0.0226, 0.0165, 0.0165, 0.0061, 0.0061, 0.0061, 0.0057], [0.0192, 0.0124, 0.0075, 0.0062, 0.0062, 0.0058, 0.0052, 0.0048], [0.0173, 0.0112, 0.0072, 0.006, 0.0056, 0.0056, 0.0053, 0.003], [0.025, 0.0207, 0.0046, 0.0043, 0.0041, 0.0038, 0.0034, 0.0034], [0.0337, 0.0149, 0.0062, 0.0058, 0.0052, 0.0052, 0.0048, 0.0048], [0.0204, 0.0132, 0.0103, 0.0075, 0.0055, 0.0055, 0.0046, 0.0043], [0.0331, 0.0331, 0.0069, 0.0061, 0.0054, 0.0048, 0.0045, 0.004], [0.0159, 0.014, 0.0062, 0.0059, 0.0055, 0.0052, 0.0049, 0.0046], [0.0153, 0.0087, 0.0077, 0.0077, 0.0068, 0.0064, 0.006, 0.005], [0.0134, 0.0134, 0.0081, 0.0076, 0.0063, 0.0063, 0.0063, 0.0059], [0.0603, 0.0196, 0.0184, 0.0126, 0.0092, 0.0064, 0.0036, 0.0036], [0.9624, 0.0051, 0.0047, 0.0027, 0.0016, 0.0014, 0.0014, 0.0011], [0.7565, 0.0178, 0.0167, 0.0058, 0.0058, 0.0058, 0.0054, 0.0051], [0.5378, 0.0935, 0.0684, 0.0415, 0.0344, 0.0252, 0.0153, 0.0112], [0.8609, 0.0277, 0.0179, 0.0131, 0.0108, 0.0062, 0.0051, 0.0027], [0.9575, 0.0021, 0.0016, 0.0015, 0.0015, 0.0012, 0.001, 0.0007], [0.4098, 0.0669, 0.0279, 0.0231, 0.0096, 0.0091, 0.0091, 0.0091], [0.65, 0.0173, 0.0105, 0.0093, 0.0077, 0.0068, 0.0068, 0.006], [0.0639, 0.053, 0.0221, 0.0221, 0.0162, 0.0104, 0.0098, 0.0087], [0.1329, 0.1035, 0.0554, 0.0405, 0.0279, 0.0279, 0.0192, 0.0159]], "ranks": {"Kotlin": [166041, 135113, 25312, 42659, 120930, 144450, 69893, 102716, 90577, 170860, 116115, 62812, 53073, 76765, 108310, 70522, 91996, 68319, 40249, 61338, 110699, 55685, 128655, 227477, 150671, 111640, 118688, 179894, 91079, 22144, 109914, 116720, 90060, 5338, 3623, 5296, 943, 1353, 1367, 1482, 2197, 3203, 2429, 2780, 2554, 3759, 1906, 2140, 3138, 1159, 1948, 780, 545, 1452, 585, 371, 264, 2618, 2444, 14948, 52700, 11421, 7444]}}, {"pos": 523, "top": [[" \u2013", "\u2013", ".", "\u2013and", "a", " \u2013,", ".\u2013", ","], [" \u2013", "\u2013and", " \u2013,", "\u2013\u2013", " *\u2013", "\u2013", "**\u2013", " \u2013**"], ["\u2013and", "**\u2013", " **\u2013", "\u2013\u2013", " \u2013,", " \u2013", ".\u2013", " *\u2013"], [" \",\"", "\u0942\u0902", "ighborhood", "*\u201c.", " *\u2013", "\u0d30\u0d4d", "ingkan", "\u0d19\u0d4d\u0d19\u0d33\u0d4d"], [" ***", " \",\"", "\u0942\u0902", "iho", " theater", "\u0d30\u0d4d", " *\u2013", "***"], ["\u0d30\u0d4d", " theater", " \",\"", " ***", " \u201d", "\u0942\u0902", "ueling", "ighborhood"], [" \u201d", " \u2013", " \u201c", " \uff08", " ***", " theater", " \u3002", " \u00a0"], ["<|endoftext|>", " \u2013", " \u00a0", " \u201d", "\u2013and", "\u2013\u2013", "\u00a0\u00a0\u00a0", " \",\""], ["<|endoftext|>", ".", " \u2013", " \u201d", "\u2013and", " \u201c.", "\u2013\u2013", "!"], ["\u2013and", "\u2013\u2013", " \u2013", "\u2013", ".", ",", ".\",\"", "!"], ["<|endoftext|>", ".", " \u2013", "\u2013", ",", "a", "\u2013and", " [\u2026]"], [" \",\"", "-esque", "a", " \u2013", " \u201d", ".\",\"", " ***", "\u2013and"], [" \u2013", "\u2013and", "-esque", " theater", " \u201d", "ing", "a", " \",\""], [" \u2013", "-esque", "\u2013and", "a", "\u2013", "\u2013\u2013", " endeavors", "ing"], [" \u2013", "a", "-esque", "\u2013and", "\u2013", " Washington", "i", " theater"], ["-esque", " \u2013", "a", "\u2013and", " Indiana", " Forever", " theater", " Washington"], [" \u2013", "a", " \u201c", "\u2013", "\u2013and", "i", " \u201d", "-esque"], ["a", "i", " \u2013", "\u2013and", "-esque", "\u2013", " \u201c", " \u201d"], ["-esque", "a", "\u2013and", "\u2013\u2013", "**\u2013", " myriad", "\u0103\u0219", " \u2013"], ["\u2013and", " myriad", " \ufffd", "\ufffd", "\u2013\u2013", "\u0103\u0219", "-esque", "a"], ["\u2013and", "<|endoftext|>", " \u2013", "\u2013\u2013", " \ufffd", " myriad", "\ufffd", "\u2013"], ["aleigh", "\u0103\u0219", "**\u2013", "ighborhood", "\u9999\u683c\u91cc\u62c9", "-esque", " **\u2022", "utkan"], ["-esque", "aleigh", " ``", "\u9999\u683c\u91cc\u62c9", "\u0103\u0219", "**\u2013", "&oacute", "\u2013and"], [" ``", "a", "\u9999\u683c\u91cc\u62c9", " Washington", "-esque", "``", "\u897f\u6e56\u533a", " \ufffd"], ["&amp", "&quot", "\u2013and", " ``", "-esque", "a", "``", "ongo"], ["\u9999\u683c\u91cc\u62c9", "-esque", "ongo", " Indiana", "Indiana", " ``", "agara", " Washington"], ["\u9999\u683c\u91cc\u62c9", "-esque", " Indiana", " ``", "ongo", "ONGO", "aleigh", "agara"], ["-esque", "\u9999\u683c\u91cc\u62c9", "ongo", " transitioning", " across", " arguably", " COVID", " Indiana"], [" COVID", "\u9999\u683c\u91cc\u62c9", "-esque", " Indiana", "ongo", " \u2013", " groundbreaking", "aleigh"], [" workflows", "aleigh", "\u9999\u683c\u91cc\u62c9", " startups", "aaS", " reboot", " COVID", "-esque"], ["-esque", " transitioning", " \u2013,", " reboot", " seamlessly", "-era", " workflows", "\u2013and"], [" \u2013", "\u2013and", " \u2013,", "\u2013", " &", " arguably", " ultimately", "ongo"], [" \u2013", "\u2014but", " arguably", "\u2013and", " \u2013,", " but", " tech", " ultimately"], [" \u2013", "\u2014but", " \u2013,", "\u2013and", "\u2013", "\u2013\u2013", "**\u2013", ".\u2013"], ["\u2014but", " \u2013", " but", "\u2026but", " \u2013,", " \u201c", "\u2013and", "\u2013"], ["\u2014but", " \u2013", " \u201c", "\u4f46", " but", " \u2013,", "**\u2013", "\u2019s"], ["\u2014but", " \u2013", "\u4f46", " but", " \u2013,", "\u201d,", "**\u2013", "\u2026but"], ["\u2014but", " \u2013", " \u201c", "\u201d,", " \u2013,", " but", " \u201d", "\u4f46"], ["\u2014but", " \u2013", " JVM", " \u201c", " \u2013,", " but", "\u201d,", "\u4f46"], ["\u2014but", " \u2013", " JVM", " Java", "Java", "\u201d,", " JDK", " \u2013,"], ["\u2014but", " JVM", " Java", "Java", " \u2013", " JDK", "\u200b", "JAVA"], [" JVM", "\u2014but", " Java", " JDK", "Java", " \u2013", "JAVA", " implementations"], [" JVM", " Java", " JDK", "Java", " implementations", "\u2014but", "JAVA", " JAVA"], [" JVM", " Java", " JDK", " implementations", "\u2014but", "Java", " JAVA", " \u2013"], [" JVM", " Java", " JDK", " implementations", "\u2014but", "-enabled", "JAVA", " JAVA"], [" Java", " JVM", " available", " or", " implementations", " JDK", " but", "\u2014but"], ["/etc", "\u2014but", " JVM", " newer", " implementations", "-enabled", " (~", " Java"], ["\u2014but", "/etc", " newer", " availability", "\u4f46\u8fd9\u4e9b", "-enabled", " (~", " but"], ["\u2014but", "/etc", " availability", " newer", " unavailable", " (", " equivalents", "-enabled"], [" (", " newer", " (~", " availability", "/etc", " later", " equivalents", " tweaks"], ["-esque", " setups", "/etc", " equivalents", " tweaks", " (", "-like", "-compatible"], [" (", " (!", "-esque", " (**", " setups", " *(", " equivalents", " tweaks"], [" (", "-like", "-esque", " (!", " (**", "(!", " equivalents", " *("], ["-esque", " (", "-like", " (!", " equivalents", " (**", " *(", "-ish"], [" (", "-esque", " equivalents", " JVM", " (!", " (**", "-like", " *("], [" JVM", "Java", " (", " Java", " (**", " JDK", " equivalents", " JAVA"], [" JVM", "Java", " Java", " JDK", " JNI", " JAVA", "-java", "JAVA"], [" JVM", "Java", " Java", " JNI", " JDK", "Jvm", "JAVA", " JAVA"], [" JVM", "Java", " Java", " JDK", " JNI", "Jvm", "JAVA", " JAVA"], [" JVM", "Java", " Java", " JDK", "JAVA", " (", " JNI", "Jvm"], [" JVM", " (", "Java", " Java", " JNI", " JDK", "JAVA", " VM"], [" (", " JVM", "ah", "GC", " GC", " JIT", " JNI", "che"], ["ah", " JVM", "ch", "a", "ach", "ich", "x", "che"]], "p": [[0.9505, 0.0127, 0.0082, 0.0053, 0.0027, 0.0022, 0.0013, 0.001], [0.9699, 0.0095, 0.0074, 0.0045, 0.0027, 0.0023, 0.0008, 0.0005], [0.3568, 0.2164, 0.0848, 0.0748, 0.0454, 0.0332, 0.0293, 0.0275], [0.0127, 0.0127, 0.0068, 0.0057, 0.0053, 0.0053, 0.0047, 0.0039], [0.0516, 0.0516, 0.0313, 0.0157, 0.0157, 0.0139, 0.0139, 0.0122], [0.054, 0.0395, 0.0187, 0.0165, 0.0145, 0.0145, 0.0128, 0.0128], [0.2433, 0.0291, 0.0273, 0.02, 0.0176, 0.0156, 0.0146, 0.0129], [0.1727, 0.1264, 0.0527, 0.0385, 0.0282, 0.0194, 0.0081, 0.0076], [0.2344, 0.1422, 0.0523, 0.0383, 0.028, 0.0218, 0.0205, 0.0205], [0.1492, 0.0705, 0.0402, 0.0313, 0.0244, 0.0202, 0.009, 0.009], [0.416, 0.1629, 0.1438, 0.0363, 0.0235, 0.0172, 0.0152, 0.0104], [0.0197, 0.0173, 0.0135, 0.0127, 0.0099, 0.0093, 0.0068, 0.0064], [0.0709, 0.0216, 0.0168, 0.0075, 0.0066, 0.0062, 0.0051, 0.0048], [0.0917, 0.0556, 0.0433, 0.017, 0.0124, 0.0071, 0.0038, 0.0033], [0.0685, 0.0252, 0.0173, 0.0127, 0.0072, 0.0068, 0.006, 0.0056], [0.0534, 0.0304, 0.0252, 0.0099, 0.0087, 0.0087, 0.0087, 0.0082], [0.2231, 0.144, 0.0639, 0.0498, 0.0413, 0.0208, 0.0172, 0.0118], [0.1405, 0.0456, 0.0378, 0.0334, 0.019, 0.0148, 0.0131, 0.0084], [0.0397, 0.0176, 0.0137, 0.0089, 0.0083, 0.0069, 0.0061, 0.0057], [0.0201, 0.0122, 0.0115, 0.0108, 0.0101, 0.0089, 0.0084, 0.0079], [0.0551, 0.0518, 0.0123, 0.0079, 0.0075, 0.007, 0.0051, 0.0048], [0.0181, 0.008, 0.0036, 0.0034, 0.0032, 0.0026, 0.0026, 0.0026], [0.007, 0.0054, 0.0045, 0.004, 0.004, 0.0031, 0.0027, 0.0024], [0.0246, 0.0045, 0.0031, 0.0031, 0.0029, 0.0029, 0.0028, 0.0028], [0.0066, 0.0045, 0.0042, 0.004, 0.004, 0.0033, 0.0027, 0.0026], [0.0114, 0.0073, 0.0047, 0.0042, 0.0039, 0.0025, 0.0021, 0.0021], [0.0215, 0.0058, 0.0033, 0.0029, 0.0029, 0.0027, 0.0021, 0.002], [0.0064, 0.0056, 0.005, 0.0041, 0.0032, 0.003, 0.0028, 0.0022], [0.0125, 0.0103, 0.0086, 0.0076, 0.0071, 0.004, 0.004, 0.0031], [0.0074, 0.0066, 0.0066, 0.0058, 0.0054, 0.0051, 0.0048, 0.0045], [0.0132, 0.0066, 0.0066, 0.0062, 0.0059, 0.0059, 0.0055, 0.0055], [0.1268, 0.0151, 0.0126, 0.0098, 0.0092, 0.0076, 0.0076, 0.0049], [0.0806, 0.0405, 0.0169, 0.0169, 0.0132, 0.0066, 0.0062, 0.0062], [0.3633, 0.2829, 0.036, 0.0338, 0.0232, 0.008, 0.0059, 0.0059], [0.8617, 0.0457, 0.0075, 0.0048, 0.004, 0.002, 0.002, 0.0015], [0.7961, 0.0951, 0.0069, 0.0044, 0.0042, 0.0039, 0.0031, 0.0025], [0.8754, 0.0219, 0.0067, 0.0046, 0.0043, 0.0028, 0.0026, 0.0019], [0.6035, 0.1116, 0.0194, 0.0161, 0.0111, 0.0092, 0.0067, 0.0046], [0.6472, 0.0469, 0.0134, 0.0098, 0.0092, 0.0077, 0.0063, 0.006], [0.4541, 0.0542, 0.0397, 0.0146, 0.0114, 0.01, 0.0094, 0.0089], [0.1508, 0.1508, 0.0591, 0.0406, 0.0262, 0.0217, 0.0149, 0.0124], [0.3182, 0.1503, 0.0667, 0.0405, 0.038, 0.018, 0.0085, 0.0085], [0.3594, 0.0753, 0.0665, 0.0314, 0.0216, 0.0203, 0.0131, 0.0102], [0.1435, 0.0528, 0.0301, 0.0161, 0.0161, 0.0151, 0.0104, 0.0086], [0.1428, 0.0674, 0.0409, 0.0319, 0.0193, 0.016, 0.011, 0.0097], [0.0749, 0.0454, 0.0293, 0.0276, 0.0276, 0.0189, 0.0178, 0.0167], [0.1426, 0.0299, 0.0299, 0.0264, 0.0264, 0.0141, 0.0117, 0.0091], [0.5419, 0.0238, 0.0174, 0.0099, 0.0082, 0.0073, 0.0068, 0.0064], [0.182, 0.0337, 0.0262, 0.0231, 0.018, 0.014, 0.0132, 0.0109], [0.0541, 0.0308, 0.0199, 0.0176, 0.0176, 0.0176, 0.0137, 0.0137], [0.185, 0.0302, 0.0284, 0.0267, 0.0208, 0.0195, 0.0183, 0.0111], [0.4675, 0.0493, 0.0339, 0.017, 0.015, 0.0141, 0.0133, 0.0125], [0.3803, 0.1314, 0.0962, 0.0703, 0.0215, 0.0167, 0.0122, 0.0115], [0.1962, 0.119, 0.105, 0.0562, 0.0283, 0.0249, 0.0142, 0.0125], [0.4226, 0.069, 0.0505, 0.0393, 0.0369, 0.0198, 0.0186, 0.0154], [0.3792, 0.0659, 0.0513, 0.0292, 0.0201, 0.0189, 0.0122, 0.0122], [0.6437, 0.1628, 0.0637, 0.0283, 0.0183, 0.0118, 0.0104, 0.0104], [0.945, 0.0252, 0.0082, 0.0047, 0.0041, 0.0034, 0.0014, 0.0013], [0.9353, 0.0282, 0.0111, 0.0046, 0.0041, 0.0028, 0.002, 0.0015], [0.7336, 0.1057, 0.0682, 0.0126, 0.0111, 0.0092, 0.0049, 0.0046], [0.6114, 0.0881, 0.0502, 0.0502, 0.0209, 0.0185, 0.0112, 0.0047], [0.0933, 0.0566, 0.0389, 0.0143, 0.0126, 0.0092, 0.006, 0.0041], [0.6616, 0.0137, 0.01, 0.01, 0.0094, 0.0078, 0.0065, 0.0057]], "ranks": {"Kotlin": [89863, 38862, 19646, 8510, 12704, 37053, 37320, 62738, 81340, 99523, 108655, 41958, 25308, 51205, 117037, 56366, 54522, 44648, 46781, 65714, 140735, 58454, 88274, 112067, 75390, 35983, 6115, 5287, 1153, 643, 1656, 6730, 14683, 1848, 2408, 2303, 982, 914, 900, 689, 691, 460, 435, 731, 834, 2469, 5882, 4467, 2892, 6178, 7153, 3791, 3101, 2873, 974, 279, 67, 73, 50, 30, 42, 283, 347]}}, {"pos": 524, "top": [["s", " \u2013", "saf", "sheets", " \u200b\u200b", "schild", "sens", "\u044b"], ["s", "siz", "\u0627\u062a", "spro", "\u044b", "schild", "schen", "sii"], ["s", "schild", "sheets", "\u044b", "\u0627\u062a", "sul", "schen", " \u200b\u200b"], ["s", "schen", "schrift", "scha", "schnitt", "satz", "spro", "schild"], ["s", "schen", "scha", "\u0627\u062a", "spro", "schild", "\u044b", "sche"], ["s", "spro", "scha", "siz", "s\u00e4", "schen", "\u0627\u062a", "\u044b"], ["s", "\u0627\u062a", "scha", "\u044b", "spro", "schild", "schen", "s\u00e4"], ["s", "schild", "scha", "\u0627\u062a", "spro", "sburg", "\u044b", "schen"], ["s", "schild", "spro", "scha", "schen", ".", "\u0627\u062a", "sche"], ["s", ",", "\\.", "schild", "spro", "\u00ac", "sand", "scha"], ["s", "\\.", "\u0627\u062a", "spro", "schild", "\u00ac", "ska", "\u044b"], ["s", "schild", "scha", "schnitt", "schen", "\u0627\u062a", "spro", "ska"], ["s", "schen", "spro", "scha", "schild", "schnitt", "scape", "siz"], ["s", "siz", "spro", "schen", "scha", "schnitt", "sburg", "sia"], ["s", "siz", "ska", "scha", "spro", "schen", "sak", "sia"], ["s", "siz", "spro", "ska", "scha", "sak", "scape", "schen"], ["s", "scape", "siz", "es", "ska", "\u0627\u062a", "spro", "schen"], ["s", "siz", "ska", "spro", "scape", "schen", "\u0627\u062a", "es"], ["s", " touted", "spro", "ska", "scape", "schen", " arguably", "-era"], ["s", " --", " arguably", " wildly", " myriad", "scape", " amidst", " amid"], ["s", " ,", " --", " myriad", " \u2014", " wildly", " amidst", " amid"], ["s", "schrift", " ;;^", "scheid", "schn", "sPid", "spro", "scha"], [" --", "s", " ,", " increasingly", " arguably", " wildly", " amid", " modern"], [" ,", "s", " --", " ultimately", " even", " largely", " modern", " still"], ["s", " --", " ,", " \u2014", " arguably", "--", " wildly", " ultimately"], [" --", " ,", "s", " \u2014", " arguably", " increasingly", " modern", " ultimately"], [" ,", " --", "s", " \u2014", " modern", " increasingly", " systems", " ultimately"], [" ,", " --", " \u2014", "s", " \n\n", " _", "\n\n", " ___"], [" ,", " \u2014", " ___", "s", " --", " __", " modern", " _"], [" ,", "s", " \u2014", " modern", " ___", " systems", " .", " __"], [" ,", " even", " modern", " .", " \u2014", " \u2013", " still", "s"], [" ,", " \u2013", " modern", " even", " \u2014", " still", " ", ","], [" ,", " but", " even", " still", " modern", " .", " and", " in"], [" but", "\u2014but", " \u2013", " \u2014", " even", " modern", " still", " despite"], ["\u2014but", " but", " modern", " even", " \u2014", " despite", " though", " still"], ["\u2014but", " but", " \u2014", " \u2013", " modern", " rarely", " still", " despite"], ["\u2014but", " but", " modern", " \u2014", " rarely", " \u2013", " unlikely", " despite"], ["\u2014but", " but", " \u2014", " modern", " \u2013", "\u2011", " ,", "\u2014even"], ["\u2014but", " modern", " \u2014", " but", "\u2011", " \u2013", "\u2014or", " ("], ["\u2014but", " modern", " but", "\u2011", " \u2014", " \u2013", " tech", " \u200b\u200b"], [" modern", "\u2014but", " but", " (", " ,", " \u2013", " tech", " \u2014"], [" modern", "\u2014but", " \u2014", " but", " ,", " technology", " tech", " \u2013"], [" modern", " technology", " but", "\u2014but", " \u2014", " tech", " newer", " ,"], [" modern", " but", " newer", " (", " technology", " Modern", " tech", " ,"], [" modern", " newer", " but", " technology", " limited", " ,", " systems", " improvements"], [" modern", " but", " newer", " or", " limited", " even", " available", " only"], [" modern", " newer", " even", " (", " limited", " or", "\u2014even", " but"], [" modern", " (", " newer", " limited", " rarely", " or", " unavailable", " available"], [" (", " modern", " (!", " rarely", " newer", " unavailable", "\u2014which", " (~"], [" (", " (!", " (~", " rarely", " newer", " unavailable", " modern", " (>"], [" (", "\u2014which", " (!", " (~", "(which", " (>", "(!", " (!!"], [" (", " (!", "\u2014which", " (~", " (**", " *(", " (?", "(!"], [" (", " (!", "\u2014which", "(which", " (~", " (**", " *(", "(!"], [" (", " (!", "\u2014which", "(which", " (**", " (~", " *(", "(!"], [" (", " (!", "\uff08", " *(", " (**", " unavailable", "(!", " implementations"], [" (", " (!", " unavailable", " implementations", " availability", " Android", " (**", " *("], [" (", " Android", " (!", " unavailable", " availability", "Android", " JVM", "(Android"], [" (", " Android", "Android", " availability", "(Android", " unavailable", " (!", " JVM"], [" (", " Android", " desktop", "Android", " availability", " unavailable", " Desktop", "(Android"], [" (", " Android", "Android", " availability", " desktop", "(Android", " unavailable", " Desktop"], [" (", " Android", "Android", " availability", "(Android", " unavailable", " desktop", " JVM"], [" (", " Android", "Android", " availability", ",", "(Android", " unavailable", " desktop"], [" (", ",", " Android", "Android", " availability", "(Android", " tweaks", " tuning"]], "p": [[1.0, 0.0, 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], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9434, 0.0053, 0.005, 0.0036, 0.0022, 0.0019, 0.0019, 0.0014], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0, 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], [1.0, 0.0, 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], [1.0, 0.0, 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.9999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9998, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.995, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.9934, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0], [0.97, 0.0005, 0.0004, 0.0002, 0.0002, 0.0002, 0.0002, 0.0001], [0.9995, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9983, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.8785, 0.0008, 0.0007, 0.0007, 0.0006, 0.0006, 0.0006, 0.0005], [0.9546, 0.0012, 0.0006, 0.0005, 0.0005, 0.0004, 0.0003, 0.0003], [0.9483, 0.0044, 0.0018, 0.0009, 0.0006, 0.0006, 0.0004, 0.0004], [0.0262, 0.007, 0.0066, 0.0043, 0.004, 0.0035, 0.0031, 0.0029], [0.0813, 0.0813, 0.0633, 0.0038, 0.0034, 0.0034, 0.0032, 0.0032], [0.4408, 0.2846, 0.034, 0.0043, 0.0036, 0.003, 0.0025, 0.002], [0.4241, 0.2738, 0.1007, 0.0255, 0.0034, 0.003, 0.0027, 0.0024], [0.3268, 0.2391, 0.1202, 0.0163, 0.0068, 0.0056, 0.005, 0.0044], [0.4421, 0.0927, 0.0768, 0.0194, 0.0098, 0.0086, 0.0059, 0.0052], [0.5378, 0.0995, 0.047, 0.0173, 0.0162, 0.0093, 0.0072, 0.0068], [0.6195, 0.0695, 0.035, 0.0328, 0.0212, 0.0155, 0.0107, 0.0042], [0.3581, 0.0751, 0.0585, 0.0428, 0.019, 0.013, 0.013, 0.009], [0.584, 0.0309, 0.0257, 0.0241, 0.0226, 0.0166, 0.0129, 0.0121], [0.2972, 0.0706, 0.0402, 0.0378, 0.0294, 0.026, 0.0215, 0.0179], [0.3838, 0.0856, 0.0589, 0.0335, 0.0278, 0.018, 0.014, 0.0109], [0.2892, 0.1988, 0.1283, 0.0443, 0.0417, 0.0305, 0.0127, 0.0119], [0.4135, 0.3649, 0.0206, 0.0133, 0.011, 0.0104, 0.0086, 0.0086], [0.7422, 0.1462, 0.0288, 0.0211, 0.0047, 0.0032, 0.0025, 0.0022], [0.7019, 0.122, 0.0187, 0.0187, 0.0107, 0.0078, 0.0069, 0.0061], [0.4905, 0.1028, 0.0517, 0.0486, 0.0378, 0.0158, 0.0115, 0.0108], [0.3025, 0.0867, 0.0765, 0.0634, 0.0361, 0.0281, 0.0193, 0.0171], [0.3555, 0.1084, 0.0481, 0.0481, 0.0311, 0.0258, 0.0147, 0.0138], [0.1995, 0.1288, 0.121, 0.027, 0.021, 0.0198, 0.0174, 0.0145], [0.2238, 0.1743, 0.0774, 0.0602, 0.0196, 0.0152, 0.0126, 0.0126], [0.4405, 0.0265, 0.0265, 0.0219, 0.0219, 0.0194, 0.0151, 0.0151], [0.5893, 0.0276, 0.0215, 0.0215, 0.0202, 0.0122, 0.0084, 0.0074], [0.5691, 0.0387, 0.0195, 0.0134, 0.0134, 0.0081, 0.0081, 0.0067], [0.4574, 0.0582, 0.0331, 0.0331, 0.0292, 0.0189, 0.0147, 0.013], [0.4419, 0.0986, 0.0528, 0.0528, 0.0182, 0.0104, 0.0092, 0.0086], [0.4694, 0.1727, 0.0868, 0.0161, 0.0151, 0.0142, 0.0142, 0.0092], [0.7411, 0.0885, 0.0287, 0.0224, 0.0197, 0.0106, 0.005, 0.0047], [0.9514, 0.0197, 0.0047, 0.0024, 0.0011, 0.001, 0.0009, 0.0009], [0.9171, 0.0356, 0.019, 0.0037, 0.0035, 0.0012, 0.0008, 0.0008], [0.9941, 0.0032, 0.0009, 0.0004, 0.0002, 0.0001, 0.0001, 0.0001], [0.9902, 0.0046, 0.0022, 0.0009, 0.0003, 0.0003, 0.0002, 0.0001], [0.9576, 0.0199, 0.0065, 0.0035, 0.0015, 0.0012, 0.0007, 0.0007], [0.9891, 0.0067, 0.0008, 0.0004, 0.0003, 0.0002, 0.0002, 0.0001], [0.8777, 0.0437, 0.011, 0.0063, 0.0038, 0.0038, 0.0032, 0.0025], [0.8214, 0.0361, 0.0318, 0.0193, 0.0125, 0.0071, 0.0055, 0.0052], [0.7654, 0.133, 0.0297, 0.0124, 0.0085, 0.0075, 0.004, 0.004], [0.9183, 0.0403, 0.0131, 0.007, 0.0038, 0.002, 0.0019, 0.0017], [0.8326, 0.1277, 0.0152, 0.0064, 0.0044, 0.003, 0.0025, 0.0007], [0.9615, 0.029, 0.0031, 0.0011, 0.0006, 0.0005, 0.0005, 0.0002], [0.9166, 0.0586, 0.0058, 0.0035, 0.0029, 0.0016, 0.0006, 0.0005], [0.8447, 0.1468, 0.0035, 0.0005, 0.0004, 0.0002, 0.0001, 0.0001]], "ranks": {"Kotlin": [171993, 87291, 101271, 21334, 30571, 34678, 47515, 69583, 78401, 137421, 101684, 59701, 60196, 123084, 145886, 97837, 52864, 48955, 44686, 80479, 119669, 45864, 61677, 77179, 47679, 16164, 9745, 23124, 10824, 8946, 20982, 30397, 31646, 20513, 33208, 20930, 19122, 14528, 12845, 8164, 11288, 10040, 10071, 13726, 19798, 37208, 48939, 36837, 40076, 36176, 37577, 13896, 16631, 11207, 5143, 721, 204, 116, 132, 100, 169, 169, 356]}}, {"pos": 525, "top": [[" \u2013", ".", ",", "\u2013", "s", ";", "o", "y"], [" \u2013", "\u2013", ",", "s", "\u2013and", "\u2011", ".", "\u2013\u2013"], ["\u2013", ",", " \u2013", ".", ".\u2013", "\u2013and", ";", "\u2026"], [" milfs", "\uff0a\uff0a\uff0a\uff0a", " Shemale", " Blowjob", "erias", "eless", " cumshot", "\uff1d\uff1d\uff1d\uff1d"], ["auf", "ed", "sWith", "s", "e", "\u064a\u062f\u064a", "ingly", "nost"], ["sWith", "auf", "kits", "\u064a\u062f\u064a", " \u200b\u200b", "nost", "aus", "\u0438\u0431"], ["s", "\u2026\u2026", "t", "\uff1a", "\uff08", ".\u201d", "\u3002", "raries"], ["i\u010d", "crap", "s", "sWith", "iest", "sdale", "raries", "ingly"], [" \u200b\u200b", "i\u010d", ".\u201d", "\u0930\u0923", "mals", "!\u201d.", "erator", "sWith"], [",", "\u2013", "\u2013and", ".\u2013", "\u2013\u2013", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "-Cds", "\u2026but"], [",", "\u2013", ".", "s", " \u2013", "y", "d", "o"], [" arguably", "\u0930\u0923", "uably", "-ish", "ily", "ively", " veggies", "punk"], [" veggies", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "-ish", " vibes", " pricey", " arguably", "-esque", "punk"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " veggies", " tweaking", " savvy", " pricey", " tweaked", " tweaks", " arguably"], [" arguably", " tweaked", " tweaking", " touted", " savvy", " albeit", " pricey", " akin"], [" arguably", " touted", " savvy", " tweaking", " pricey", " veggies", " akin", " tweaked"], [" arguably", " tweaking", " savvy", " tweaked", "-esque", " tech", " akin", " touted"], [" tweaking", " veggies", " impactful", " tweaks", " arguably", "-esque", " savvy", " tweaked"], [" arguably", " tweaking", "-esque", " impactful", " touted", " savvy", " tweaked", " tweaks"], [" arguably", " akin", " tweaking", " impactful", " albeit", " notably", " pricey", " touted"], [" arguably", " notably", " though", " akin", " largely", " mostly", " albeit", " perhaps"], [" ;;^", "\u582a\u6bd4", " arguably", " Fortal", "nheim", " impactful", "\u5171\u540c\u6253\u9020", " milfs"], [" arguably", " notably", " akin", " largely", " mostly", " tweaking", " albeit", " often"], [" arguably", " notably", " largely", " mostly", " ultimately", " often", " perhaps", " though"], [" arguably", " notably", " akin", " impactful", " though", " hugely", " tweaking", " largely"], [" arguably", " impactful", " notably", " ;;^", "\u582a\u6bd4", " tweaking", " impacting", " milfs"], [" arguably", " notably", " impactful", " impacting", " tech", " akin", " tweaking", " ;;^"], [" arguably", " notably", " famously", " akin", " heavily", " impactful", " largely", " potentially"], [" arguably", " notably", " tech", " potentially", " akin", " famously", " impactful", " modern"], [" arguably", " tech", " notably", " modern", " potentially", " newer", " impactful", " mostly"], [" arguably", " even", " modern", " potentially", " tech", " mostly", " ,", " often"], [" arguably", " modern", " even", " potentially", " tech", " mostly", " though", " heavily"], [" arguably", " potentially", " tech", " even", " modern", " though", " but", " mostly"], [" arguably", " tech", " potentially", " though", " modern", " newer", " albeit", " technically"], [" arguably", " tech", " potentially", " unlikely", " but", "\u2014but", " likely", " though"], [" tech", "\u2014but", " unlikely", " arguably", " potentially", " newer", " but", " likely"], [" unlikely", " tech", " potentially", " arguably", " newer", "\u2014but", " modern", " but"], [" unlikely", " tech", " potentially", " newer", " modern", " arguably", " technically", " but"], [" unlikely", " newer", " modern", " tech", " potentially", " technically", " rumored", " limited"], [" Android", " JVM", " newer", " JDK", " unlikely", " Java", " modern", " compatible"], [" Android", " JVM", " Java", " JDK", " newer", " modern", " compatible", " tech"], [" Android", " JVM", " Java", " newer", " JDK", " compatible", " limited", " tech"], [" Android", " JVM", " newer", " JDK", " Java", " compatible", " modern", " tech"], [" newer", " modern", " available", " Android", " JVM", " limited", " compatible", " JDK"], [" newer", " modern", " available", " unavailable", " technically", " limited", " availability", " tech"], [" newer", " available", " limited", " modern", " unavailable", " technically", " currently", " only"], [" newer", " limited", " modern", " available", " unavailable", " availability", " tech", " potentially"], [" newer", " limited", " unavailable", " available", " modern", " availability", " unlikely", " potentially"], [" newer", " unavailable", " limited", " unlikely", " rarely", " available", " availability", " potentially"], [" unavailable", " rarely", " limited", " unlikely", " newer", " available", " availability", "\u672a\u5fc5"], [" unavailable", " unlikely", " rarely", " limited", "unlikely", "!),", "limited", "\u672a\u5fc5"], [" unavailable", " rarely", " limited", " unlikely", "available", "_UNSUPPORTED", "limited", " availability"], [" unavailable", " rarely", " limited", " unlikely", "available", "limited", " availability", " available"], [" unavailable", " unlikely", " rarely", " limited", " unsupported", "Unavailable", "available", "limited"], [" unavailable", " unsupported", " limited", " unlikely", " rarely", "unsupported", "Unavailable", "_UNSUPPORTED"], [" unavailable", " unsupported", " limited", "Unavailable", " unlikely", "_UNSUPPORTED", " rarely", "unsupported"], [" unavailable", " Android", " unsupported", " limited", "Unavailable", " availability", "_UNSUPPORTED", " JVM"], [" unavailable", " Android", " limited", " availability", " unsupported", "available", "Unavailable", " available"], [" unavailable", " Android", " availability", " limited", "available", " available", "Unavailable", " unsupported"], [" unavailable", " Android", " availability", " available", " limited", "available", "Unavailable", " unsupported"], [" unavailable", " Android", " limited", " available", " availability", "available", " not", "limited"], [" unavailable", " Android", "available", "not", " available", " limited", " not", "limited"], ["not", "if", "available", "Android", "which", "limited", " Android", "now"]], "p": [[0.7955, 0.095, 0.0576, 0.0449, 0.0017, 0.0014, 0.0009, 0.0007], [0.8646, 0.097, 0.0045, 0.0031, 0.0028, 0.0021, 0.0013, 0.001], [0.6959, 0.256, 0.0238, 0.0144, 0.006, 0.0022, 0.0004, 0.0004], [0.0077, 0.0044, 0.0039, 0.0034, 0.0028, 0.0027, 0.0025, 0.0022], [0.0381, 0.0297, 0.0204, 0.018, 0.0169, 0.014, 0.0096, 0.0096], [0.022, 0.0111, 0.0081, 0.0071, 0.0056, 0.0046, 0.0036, 0.0036], [0.3235, 0.0496, 0.0161, 0.0111, 0.0071, 0.0059, 0.0056, 0.0049], [0.029, 0.0129, 0.0083, 0.0078, 0.0073, 0.0061, 0.0054, 0.005], [0.0383, 0.0181, 0.0097, 0.0085, 0.0049, 0.0046, 0.0043, 0.0043], [0.0262, 0.0159, 0.0116, 0.0075, 0.0066, 0.0026, 0.0026, 0.0015], [0.5658, 0.0766, 0.0249, 0.0219, 0.0206, 0.0206, 0.0194, 0.0182], [0.0052, 0.0043, 0.0036, 0.0036, 0.0033, 0.0028, 0.0026, 0.0023], [0.0193, 0.0067, 0.0038, 0.0032, 0.0032, 0.0028, 0.0023, 0.0022], [0.0072, 0.0064, 0.0034, 0.003, 0.003, 0.0028, 0.0027, 0.0027], [0.0206, 0.0059, 0.0055, 0.0046, 0.0046, 0.0038, 0.0034, 0.003], [0.0178, 0.0074, 0.007, 0.0058, 0.0042, 0.004, 0.0037, 0.0031], [0.0406, 0.0132, 0.0116, 0.0091, 0.008, 0.0075, 0.0071, 0.0062], [0.0085, 0.0062, 0.0048, 0.0045, 0.0042, 0.004, 0.0037, 0.0033], [0.0354, 0.0108, 0.0079, 0.0074, 0.007, 0.0061, 0.0051, 0.0045], [0.0478, 0.005, 0.0047, 0.0037, 0.0035, 0.0033, 0.0033, 0.0031], [0.0361, 0.0086, 0.0063, 0.0059, 0.0043, 0.0041, 0.0032, 0.003], [0.0082, 0.003, 0.003, 0.0017, 0.0013, 0.0013, 0.0012, 0.001], [0.0301, 0.0111, 0.0046, 0.003, 0.0028, 0.0025, 0.0018, 0.0017], [0.0358, 0.0358, 0.0109, 0.0091, 0.0062, 0.0046, 0.0043, 0.004], [0.0631, 0.036, 0.0085, 0.0043, 0.0043, 0.004, 0.0038, 0.0031], [0.0195, 0.0126, 0.0104, 0.0081, 0.0046, 0.0023, 0.0022, 0.0018], [0.0291, 0.0227, 0.0069, 0.0031, 0.0031, 0.0029, 0.0029, 0.0025], [0.1672, 0.0615, 0.0094, 0.0089, 0.0073, 0.0065, 0.0065, 0.0057], [0.1513, 0.028, 0.0232, 0.011, 0.011, 0.0091, 0.0091, 0.0091], [0.0785, 0.0611, 0.0307, 0.0271, 0.0255, 0.0211, 0.0155, 0.0088], [0.0804, 0.0488, 0.043, 0.0261, 0.0245, 0.0169, 0.0169, 0.0123], [0.057, 0.0473, 0.0392, 0.0325, 0.0238, 0.0197, 0.0174, 0.0087], [0.0887, 0.0833, 0.0538, 0.0419, 0.0326, 0.027, 0.0224, 0.0164], [0.1909, 0.1232, 0.0796, 0.0214, 0.0201, 0.0178, 0.0167, 0.0138], [0.1412, 0.0971, 0.071, 0.0357, 0.0261, 0.0217, 0.0169, 0.0158], [0.0989, 0.06, 0.06, 0.0364, 0.0283, 0.0161, 0.0161, 0.0111], [0.1154, 0.0957, 0.0352, 0.0292, 0.0274, 0.0227, 0.0227, 0.0156], [0.1285, 0.0732, 0.0392, 0.0368, 0.0325, 0.0197, 0.0135, 0.0135], [0.1805, 0.1241, 0.0429, 0.0295, 0.0277, 0.0168, 0.0148, 0.0148], [0.1094, 0.1028, 0.0966, 0.0517, 0.0517, 0.0378, 0.0334, 0.0215], [0.2056, 0.1602, 0.0913, 0.0553, 0.0488, 0.0278, 0.0204, 0.0191], [0.2155, 0.1678, 0.0699, 0.0617, 0.058, 0.0352, 0.0177, 0.0129], [0.1191, 0.1191, 0.0988, 0.0679, 0.0563, 0.0412, 0.0363, 0.0235], [0.3341, 0.0899, 0.0399, 0.0311, 0.0274, 0.0242, 0.0214, 0.0177], [0.5513, 0.0746, 0.0482, 0.0189, 0.0166, 0.0147, 0.0114, 0.0095], [0.48, 0.0784, 0.061, 0.0573, 0.037, 0.0175, 0.0128, 0.0128], [0.8372, 0.0163, 0.0135, 0.0112, 0.0093, 0.005, 0.005, 0.0041], [0.6824, 0.0494, 0.041, 0.0219, 0.0142, 0.011, 0.0086, 0.0076], [0.2888, 0.2548, 0.0471, 0.0443, 0.0286, 0.0173, 0.0153, 0.0072], [0.3089, 0.1136, 0.1136, 0.0648, 0.0648, 0.0164, 0.0144, 0.0136], [0.3117, 0.1472, 0.0653, 0.0256, 0.0256, 0.0199, 0.0137, 0.0129], [0.7748, 0.0206, 0.0182, 0.0161, 0.0142, 0.0086, 0.0081, 0.0081], [0.7943, 0.0308, 0.0272, 0.024, 0.0113, 0.01, 0.01, 0.01], [0.7843, 0.0568, 0.0209, 0.0209, 0.0127, 0.0064, 0.006, 0.006], [0.8213, 0.0866, 0.0193, 0.0133, 0.0103, 0.0081, 0.0038, 0.0038], [0.9442, 0.0222, 0.0044, 0.0039, 0.0023, 0.0023, 0.0023, 0.0021], [0.936, 0.0151, 0.0118, 0.0049, 0.0034, 0.0034, 0.0023, 0.0018], [0.907, 0.0352, 0.0101, 0.0078, 0.0048, 0.0037, 0.0033, 0.0025], [0.8906, 0.0391, 0.0127, 0.0068, 0.0068, 0.006, 0.0047, 0.0047], [0.8568, 0.0376, 0.0293, 0.0228, 0.0157, 0.0065, 0.0027, 0.0027], [0.6854, 0.135, 0.0497, 0.0497, 0.0207, 0.0142, 0.0067, 0.0036], [0.2428, 0.2428, 0.0893, 0.0788, 0.0577, 0.0577, 0.0542, 0.0309], [0.6809, 0.1044, 0.0435, 0.0435, 0.017, 0.017, 0.016, 0.0125]], "ranks": {"Kotlin": [212510, 157253, 72131, 6191, 10958, 29953, 45889, 67607, 80653, 136001, 184989, 152526, 76503, 111006, 198747, 143259, 137077, 94054, 150046, 198365, 224766, 160490, 184855, 206830, 153553, 67040, 70149, 75776, 35517, 24499, 43812, 67020, 21801, 12590, 8140, 1792, 364, 350, 396, 73, 98, 88, 91, 256, 414, 699, 885, 847, 916, 1546, 2170, 1696, 1246, 1448, 967, 255, 58, 39, 58, 70, 87, 103, 288]}}, {"pos": 526, "top": [[".", "s", ",", " \u2013", "\u2013", "\u2026", "?", ";"], ["s", "\u2013", " \u2013", ".", "an", ",", "t", "y"], ["\u2013", ",", " \u2013", ".", "\u2026", "s", "\u2026.", "\u2026.."], ["s", "alyzer", " \u041a\u0440\u0430\u0441\u0438", "ebrit", " Shemale", " milfs", " Guta", "iator"], ["s", "ed", "t", "an", "n", "@", "ar", "l"], ["s", "ed", "t", "!\u201d", "=\u201d", "?\u201d", "l", "ized"], ["s", "ed", "ting", "!\u201d", "?\u201d", "epad", "t", "orious"], ["s", "oriously", "tingham", "ting", "orious", "ional", "ively", "epad"], ["!\u201d", "s", "!\u00bb", "oriously", "tingham", "ting", "?\u00bb", "ional"], ["s", "ting", "ional", "\uae50", "ively", "tingham", "!\\", "\u00ading"], ["s", "ed", "an", "\u00ad", "\u00a0", " \u00ad", "ting", "l"], ["ting", "ional", "ively", "s", "ened", "ably", "ally", "ical"], ["ting", "ional", "ively", "s", "ened", "ical", "ally", "ed"], ["ting", "ional", "s", "ively", "ened", "ally", "ypical", "fully"], ["an", "s", " \u00ad", "fully", "ting", "ably", "n", "l"], ["s", "an", " \u00ad", "ed", " arguably", "n", "\u00ad", "fully"], ["s", "ed", "an", "n", "ally", "fully", "ably", "ting"], ["ally", "ed", "fully", "ably", "ional", "\uae50", "s", "ting"], ["ally", "ional", "\uae50", "\u4ece\u6ca1", "fully", "ably", "ting", "s"], ["fully", "ably", "\u82e5\u975e", "ally", "\u4ece\u6ca1", "\uae50", "ional", "ively"], ["\u82e5\u975e", "fully", "\uae50", "ably", "ional", "ally", "\u4ece\u6ca1", "ively"], ["ional", "epad", "ally", "\uae50", "ucky", "iated", "\u52b2\u513f", "ably"], ["fully", "ably", "ional", "ally", "ed", "ively", "iated", "ucky"], ["fully", "ably", "ed", "ively", "ional", "ally", " notably", "ly"], ["ably", "fully", "ed", "ional", "ally", "\u82e5\u975e", "ively", "edly"], ["ably", "ional", "iated", "fully", "ively", "ally", "ucky", "edly"], ["ably", "ional", "ed", "fully", "ively", "iated", "ified", "ally"], ["ably", "ed", "fully", " arguably", " notably", "ively", "ally", "ional"], ["ably", "ed", "fully", " arguably", "ively", "ified", "ally", "ional"], ["ed", "ably", "ized", "ting", "ally", " arguably", "ified", "fully"], [" even", "ed", "ably", " just", " arguably", " only", " much", " perhaps"], [" even", " just", "ed", " perhaps", " arguably", " only", "ably", " much"], [" even", " arguably", " famously", " just", " perhaps", "ably", " though", " truly"], [" arguably", "ably", " likely", "ed", " potentially", " famously", " maybe", " unlikely"], [" arguably", "ably", "!),", " weird", " likely", "ed", "likely", " famously"], ["ably", "!),", "\u2014but", "\u9650\u4e8e", " tech", " likely", " rumored", " arguably"], ["\u9650\u4e8e", " likely", "ably", "\u4ec5\u9650", "\u4ec5\u9650\u4e8e", " tech", " arguably", " notoriously"], ["\u9650\u4e8e", "ably", "available", " likely", " rumored", " available", " notoriously", " typically"], [" available", "available", "\u9650\u4e8e", " unavailable", " compatible", "ailable", " likely", " viable"], ["available", " available", "ailable", " unavailable", " disponibles", " availability", "_available", " compatible"], ["available", " available", "ailable", " Android", " availability", " compatible", " disponibles", " unavailable"], [" available", "available", " Android", " availability", " compatible", " unavailable", "ailable", "-available"], [" available", "available", " availability", " unavailable", " Android", "ailable", " compatible", "-available"], [" available", "available", " unavailable", " availability", "-available", "ailable", " limited", " compatible"], [" available", "available", " unavailable", " availability", "-available", "ailable", " Android", " selectable"], [" available", " unavailable", "available", " availability", " currently", "-available", " native", " mainstream"], [" available", " unavailable", "available", "!),", " availability", " currently", "!)", "-available"], [" available", "!),", " availability", " unavailable", " currently", "available", "!)", "-available"], ["!),", " available", "!)", "available", " availability", "-available", "!).", " unavailable"], [" available", "available", "-available", " availability", " usable", " reliably", " currently", " fully"], [" available", "available", "-available", " reliably", " availability", " disponibles", " usable", "!),"], ["available", " available", "-available", " fully", " reliably", " usable", "Available", " disponibles"], [" available", "available", "-available", "Available", " reliably", " fully", " Available", " disponibles"], [" fully", " available", "available", "fully", "-available", "Available", " universally", " reliably"], [" fully", " available", " universally", " yet", "fully", "available", " Fully", "Fully"], [" fully", " universally", " available", " yet", "fully", "available", " reliably", "yet"], [" fully", " universally", " available", " yet", "fully", "available", " Fully", "yet"], [" universally", " fully", " available", "\u666e\u904d", "available", " widely", "fully", " yet"], [" fully", " universally", " available", "available", " widely", " reliably", "\u666e\u904d", "fully"], [" fully", " available", " universally", " yet", " widely", "fully", " reliably", " default"], [" fully", " available", " yet", " universally", " reliably", " widely", " always", " readily"], [" fully", " available", " yet", " always", " universally", " widely", " reliably", " default"], [" fully", " available", " yet", " always", " universally", " reliably", " widely", " default"]], "p": [[0.4798, 0.3297, 0.0573, 0.0446, 0.0394, 0.006, 0.0042, 0.0042], [0.6133, 0.1991, 0.083, 0.0087, 0.006, 0.0047, 0.0039, 0.0022], [0.7829, 0.1201, 0.0304, 0.0304, 0.0184, 0.0047, 0.0032, 0.0019], [0.0056, 0.0046, 0.0038, 0.0034, 0.0034, 0.0028, 0.0028, 0.0028], [0.9628, 0.0114, 0.0037, 0.0027, 0.0007, 0.0006, 0.0005, 0.0005], [0.9183, 0.0216, 0.0017, 0.0016, 0.0014, 0.0009, 0.0005, 0.0005], [0.4842, 0.0351, 0.0137, 0.0107, 0.0107, 0.0045, 0.0045, 0.0042], [0.0545, 0.0311, 0.0292, 0.0214, 0.0147, 0.0147, 0.0114, 0.0074], [0.051, 0.0423, 0.0397, 0.0273, 0.0273, 0.0257, 0.0226, 0.0121], [0.0535, 0.0223, 0.0087, 0.0068, 0.006, 0.006, 0.0053, 0.0053], [0.32, 0.1177, 0.063, 0.0491, 0.0407, 0.028, 0.0263, 0.0263], [0.0629, 0.0432, 0.0231, 0.018, 0.0109, 0.0085, 0.0075, 0.0071], [0.0714, 0.0382, 0.0337, 0.0263, 0.011, 0.0103, 0.0091, 0.0062], [0.0227, 0.0129, 0.0095, 0.0061, 0.0045, 0.0042, 0.0031, 0.0031], [0.02, 0.0147, 0.0114, 0.0083, 0.0078, 0.0069, 0.0065, 0.0065], [0.0226, 0.0137, 0.0129, 0.0061, 0.0045, 0.0045, 0.0037, 0.0037], [0.0385, 0.0142, 0.0118, 0.0104, 0.0081, 0.0067, 0.0067, 0.0043], [0.0076, 0.0046, 0.0043, 0.004, 0.004, 0.0036, 0.0032, 0.0028], [0.0067, 0.0046, 0.0034, 0.0025, 0.0023, 0.0023, 0.0021, 0.0021], [0.0035, 0.0027, 0.0027, 0.0027, 0.0026, 0.0021, 0.0021, 0.0015], [0.0033, 0.0031, 0.0029, 0.0029, 0.0025, 0.0022, 0.0019, 0.0012], [0.0029, 0.002, 0.0016, 0.0014, 0.0014, 0.0013, 0.001, 0.001], [0.0092, 0.0081, 0.0063, 0.0046, 0.0034, 0.0026, 0.0018, 0.0016], [0.0187, 0.0176, 0.0088, 0.0044, 0.0039, 0.0035, 0.0027, 0.0024], [0.0211, 0.0106, 0.0064, 0.0057, 0.0047, 0.0044, 0.0037, 0.0027], [0.0092, 0.0059, 0.0041, 0.0028, 0.0028, 0.0026, 0.0023, 0.0022], [0.0219, 0.0063, 0.0059, 0.0055, 0.0049, 0.0036, 0.0031, 0.0031], [0.0856, 0.0261, 0.023, 0.0123, 0.0116, 0.0096, 0.008, 0.0048], [0.0735, 0.0306, 0.0164, 0.0106, 0.0093, 0.0082, 0.0082, 0.0077], [0.0622, 0.0402, 0.013, 0.0115, 0.0115, 0.0095, 0.009, 0.009], [0.0475, 0.037, 0.0288, 0.0239, 0.0175, 0.0164, 0.0113, 0.01], [0.0425, 0.0292, 0.0227, 0.0177, 0.0177, 0.0166, 0.0166, 0.013], [0.0522, 0.0317, 0.0218, 0.0218, 0.0169, 0.0141, 0.0103, 0.0091], [0.0767, 0.032, 0.0234, 0.0171, 0.0125, 0.011, 0.0098, 0.0092], [0.0353, 0.0201, 0.0122, 0.0115, 0.0115, 0.0108, 0.0084, 0.0074], [0.0144, 0.0112, 0.0087, 0.0072, 0.0053, 0.005, 0.0047, 0.0047], [0.0186, 0.0106, 0.0083, 0.0078, 0.0069, 0.0064, 0.0053, 0.005], [0.0141, 0.0141, 0.0125, 0.0117, 0.0091, 0.0081, 0.0067, 0.0063], [0.0396, 0.0256, 0.0226, 0.0121, 0.0107, 0.0094, 0.0083, 0.0078], [0.1664, 0.1468, 0.0212, 0.0212, 0.0137, 0.0137, 0.0121, 0.0121], [0.2192, 0.1817, 0.0336, 0.0316, 0.0192, 0.0149, 0.0116, 0.0116], [0.3256, 0.1125, 0.0365, 0.0267, 0.0251, 0.0222, 0.0208, 0.0126], [0.2615, 0.0849, 0.0377, 0.0293, 0.0276, 0.0229, 0.0215, 0.0157], [0.3787, 0.1229, 0.0481, 0.0452, 0.0258, 0.0201, 0.0166, 0.0156], [0.3558, 0.168, 0.0425, 0.0375, 0.0311, 0.0166, 0.0089, 0.0084], [0.5147, 0.0578, 0.045, 0.029, 0.0241, 0.0187, 0.0129, 0.01], [0.2841, 0.0765, 0.0559, 0.0409, 0.0319, 0.0299, 0.0248, 0.0233], [0.3107, 0.0836, 0.054, 0.0507, 0.0476, 0.0395, 0.0371, 0.0187], [0.1865, 0.1646, 0.0645, 0.0645, 0.0416, 0.0345, 0.0286, 0.0223], [0.3928, 0.1275, 0.0469, 0.0414, 0.0251, 0.0236, 0.0208, 0.0173], [0.2456, 0.2167, 0.0904, 0.0515, 0.0276, 0.0259, 0.0228, 0.0139], [0.4001, 0.275, 0.0695, 0.029, 0.0226, 0.0165, 0.0121, 0.0113], [0.389, 0.303, 0.1431, 0.0171, 0.0171, 0.0117, 0.0091, 0.0091], [0.4905, 0.2317, 0.1094, 0.0403, 0.0216, 0.0115, 0.0102, 0.007], [0.9014, 0.0187, 0.0165, 0.0129, 0.0129, 0.0088, 0.0054, 0.0042], [0.6946, 0.0732, 0.0392, 0.0346, 0.0269, 0.0185, 0.0144, 0.0112], [0.8154, 0.0591, 0.0217, 0.0192, 0.0192, 0.0091, 0.0062, 0.0055], [0.6168, 0.2914, 0.0307, 0.0164, 0.0078, 0.0069, 0.0047, 0.0032], [0.4903, 0.337, 0.0965, 0.0115, 0.0115, 0.007, 0.0062, 0.0062], [0.8036, 0.0847, 0.066, 0.0079, 0.0061, 0.0054, 0.0048, 0.0029], [0.7415, 0.146, 0.0537, 0.0224, 0.0073, 0.0057, 0.0034, 0.003], [0.7559, 0.1023, 0.062, 0.0228, 0.0157, 0.0095, 0.0084, 0.0037], [0.2784, 0.2169, 0.1689, 0.0904, 0.0704, 0.0484, 0.0259, 0.0122]], "ranks": {"Kotlin": [169683, 132123, 142964, 30905, 46663, 79897, 122718, 188872, 187765, 212268, 232505, 221438, 207107, 224758, 237252, 215440, 215899, 190547, 203296, 227398, 226135, 203529, 214087, 234990, 210328, 122225, 117971, 144247, 113488, 68547, 127862, 162535, 142255, 33696, 40818, 16021, 3178, 4368, 3417, 627, 377, 389, 374, 706, 755, 1262, 1718, 2039, 1845, 2938, 3759, 2736, 1105, 1526, 1162, 523, 192, 276, 285, 304, 272, 405, 406]}}, {"pos": 527, "top": [["s", ".", ",", " ", " \u2013", "-", "\u00a0\u00a0", "\u2013"], ["\u2013", "\u2013and", " \u2013", ",", " \u200b\u200b", "   \n", "\u200b", "s"], ["\u2013", ",", " \u2013", "\u2013and", ".\u2013", ".", " \u2013,", "\u2026.."], [" milfs", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " ;;^", "TRGL", " Geile", " pupper", " fkk", " huyn"], ["sider", "s", " capped", "akov", "culos", "isiv", "supported", " synced"], [" \u200b\u200b", "sider", "akov", "isiv", "supported", "s", "  ", "\u00a0\u00a0"], ["\u0670", "  \n", "&_", "akov", "   \n", " Insg", "adership", " synced"], [" &_", " _)", " synced", "adership", " @_", " {}\\", "  \n    \n", "&_"], ["  \n    \n", "  \n\n\n", "  \n\n", " &_", "   \n\n", "   \n", "  \n", "&nbsp"], ["\\-", "\\_", "\u00a0", " \u00ad", "\u00a0\u00a0", " {}\\", " \u00a0", "  \n    \n"], ["&nbsp", "\\-", "\u00a0", "\\_", "\\n", " showcasing", " \u00a0", " \u00ad"], [" showcasing", " synced", " impactful", " showcased", " transitioning", " showcase", " transformative", " &_"], [" impactful", " showcasing", " synced", " showcased", " transformative", " transitioning", " proactive", " showcase"], [" impactful", " showcasing", " showcased", " synced", " transformative", " transitioning", " proactive", " nuanced"], [" showcasing", " transitioning", " showcased", " transformative", " impactful", " nuanced", " showcase", " integrated"], [" showcasing", " showcase", " showcased", " transitioning", " integrated", " fully", " impactful", " nuanced"], [" showcasing", " nuanced", " impactful", " showcase", " transitioning", " showcased", " fully", " proactive"], [" impactful", " synced", " showcasing", " nuanced", " transitioning", " showcased", " showcase", " reliant"], [" impactful", " synced", " nuanced", " finalized", " transitioning", " showcasing", " showcased", " optimized"], [" impactful", " synced", " transitioning", " impacted", " nuanced", " fully", " showcased", " showcasing"], [" fully", " revamped", " synced", "Fully", " transitioning", " Fully", " showcasing", "\u82e5\u975e"], [" ;;^", " Geile", "TRGL", " synced", " Leverkus", "matchCondition", "schuss", " ingy"], [" fully", " synced", " impacted", " impactful", " finalized", " geared", " orchestrated", " impacting"], [" fully", " full", " Fully", " integrated", " impact", " finalized", " geared", " integration"], [" fully", " impactful", "Fully", " impacting", " transitioning", " impacted", " synced", " Fully"], [" impactful", " synced", " transitioning", " impacted", " impacting", " reboot", " finalized", " rollout"], [" impactful", " synced", " reboot", " transitioning", " impacting", " impacted", " rollout", " integration"], [" fully", " transitioning", " impactful", " optimized", " integration", " reboot", " impacting", " nuanced"], [" reboot", " fully", " transitioning", " tech", " impactful", " stalled", " integration", " finalized"], [" reboot", " impactful", " transitioning", " finalized", " stalled", " tech", " synced", " integration"], [" fully", " modern", " development", " transitioning", " full", " tech", " integrated", " stalled"], [" fully", " modern", " development", " updated", " integrated", " tech", " full", " reboot"], [" transitioning", " impactful", " tech", " reboot", " legacy", " modern", " fully", " global"], [" tech", " transitioning", " impactful", " reboot", " legacy", " optimized", " finalized", " globally"], [" tech", " fully", " transitioning", " impactful", " mainstream", " globally", " global", " optimized"], [" tech", " fully", " optimized", " Fully", " impactful", " transitioning", " mainstream", " synced"], [" tech", " optimized", " fully", " mainstream", " Fully", " integration", " impactful", " legacy"], [" optimized", " tech", " fully", " Fully", " synced", " mainstream", " integration", " Android"], [" fully", " optimized", " Fully", " tech", " mainstream", " legacy", " integration", " compatible"], [" fully", " Fully", " optimized", " Android", " compatible", " mainstream", " tech", " integration"], [" fully", " optimized", " Fully", " Android", " tech", " compatible", " compatibility", " iOS"], [" fully", " Fully", " optimized", " Android", " implementation", " compatible", " compatibility", " mainstream"], [" fully", " Fully", " optimized", " implementation", " mainstream", "fully", " full", " compatible"], [" fully", " Fully", " optimized", " implementation", " mainstream", " Full", "fully", " full"], [" fully", " Fully", "fully", " optimized", " mainstream", " full", "Fully", " implementation"], [" fully", " Fully", " full", "fully", " Full", " available", " FULL", " mainstream"], [" fully", " Fully", "fully", " optimized", "Fully", " FULL", " full", " mainstream"], [" fully", " Fully", "fully", " availability", " optimized", " FULL", " full", " compatible"], [" fully", " Fully", "fully", "/full", " availability", "Fully", " optimized", " compatible"], [" fully", " Fully", "fully", " availability", " usable", "Fully", "/full", "-available"], [" fully", " Fully", "fully", "Fully", " usable", "/full", " optimized", "-available"], [" fully", " optimized", " Fully", " compatible", " usable", "optimized", "\u6807\u914d", "\u666e\u53ca"], [" optimized", "\u666e\u53ca", " usable", "\u6807\u914d", "optimized", " compatible", "-available", " fully"], [" optimized", " compatible", " usable", "\u666e\u53ca", "\u6807\u914d", "optimized", " viable", " available"], ["\u6210\u719f", "\u6210\u719f\u7684", " mature", "\u666e\u53ca", " optimized", " ubiquitous", " supported", "\u6807\u914d"], ["\u6210\u719f", "\u6210\u719f\u7684", " mature", "\u666e\u53ca", " optimized", "\u6807\u914d", " ubiquitous", " supported"], ["\u6210\u719f", " mature", "\u6210\u719f\u7684", " optimized", " ubiquitous", "\u666e\u53ca", " accessible", " viable"], ["\u6210\u719f", " mature", "\u6210\u719f\u7684", " accessible", " ubiquitous", " optimized", " matures", " usable"], ["\u6210\u719f", " mature", "\u6210\u719f\u7684", " accessible", " stable", " ubiquitous", " optimized", " supported"], [" mature", "\u6210\u719f", "\u6210\u719f\u7684", " stable", " optimized", " matures", " ubiquitous", " maturity"], [" mature", "\u6210\u719f", " optimized", " stable", " supported", "\u6210\u719f\u7684", " available", " matures"], [" mature", " optimized", " supported", "\u6210\u719f", " stable", " ubiquitous", "\u6210\u719f\u7684", " available"], [" mature", " supported", " stable", " optimized", " available", " ubiquitous", " mainstream", " stabilized"]], "p": [[0.5333, 0.2855, 0.0987, 0.0111, 0.0052, 0.0052, 0.0043, 0.0038], [0.6922, 0.0304, 0.0286, 0.0252, 0.0184, 0.0135, 0.0099, 0.0087], [0.9561, 0.0225, 0.0136, 0.0027, 0.0008, 0.0007, 0.0005, 0.0004], [0.0389, 0.0126, 0.0082, 0.0077, 0.0056, 0.0056, 0.0056, 0.0044], [0.0307, 0.0255, 0.0211, 0.0088, 0.006, 0.0042, 0.0037, 0.0034], [0.016, 0.0097, 0.0071, 0.0055, 0.0052, 0.0049, 0.0049, 0.0049], [0.0117, 0.0052, 0.0049, 0.0049, 0.0049, 0.0041, 0.0041, 0.0041], [0.0242, 0.0122, 0.0095, 0.0084, 0.0061, 0.0054, 0.0048, 0.0037], [0.1225, 0.0423, 0.0291, 0.0176, 0.0176, 0.0094, 0.0083, 0.0074], [0.0442, 0.0344, 0.0127, 0.0105, 0.0087, 0.0077, 0.0072, 0.005], [0.0594, 0.0558, 0.0434, 0.036, 0.0299, 0.0264, 0.0218, 0.0193], [0.0487, 0.0179, 0.0179, 0.0168, 0.007, 0.0062, 0.0062, 0.0055], [0.0406, 0.0381, 0.0231, 0.0204, 0.0109, 0.008, 0.007, 0.0062], [0.0456, 0.026, 0.0202, 0.0202, 0.0179, 0.0158, 0.0074, 0.0074], [0.0342, 0.0208, 0.0152, 0.0111, 0.0111, 0.0092, 0.0092, 0.0087], [0.0875, 0.0195, 0.0172, 0.0118, 0.0118, 0.0111, 0.0105, 0.0087], [0.0346, 0.021, 0.0185, 0.0135, 0.0135, 0.0112, 0.0105, 0.0093], [0.0242, 0.0201, 0.0147, 0.0095, 0.0089, 0.0069, 0.0065, 0.0061], [0.0256, 0.0199, 0.0083, 0.0078, 0.0065, 0.0061, 0.0057, 0.0057], [0.0145, 0.0136, 0.0068, 0.006, 0.0053, 0.005, 0.0047, 0.0047], [0.0104, 0.0049, 0.0046, 0.0034, 0.0032, 0.003, 0.003, 0.0028], [0.006, 0.0047, 0.0037, 0.003, 0.0027, 0.0024, 0.0022, 0.0022], [0.0083, 0.0031, 0.0029, 0.0027, 0.0024, 0.0022, 0.0021, 0.0021], [0.0469, 0.006, 0.0053, 0.0041, 0.0032, 0.0026, 0.0026, 0.0026], [0.0114, 0.01, 0.0061, 0.0061, 0.0057, 0.0054, 0.005, 0.005], [0.0259, 0.0122, 0.0065, 0.0061, 0.0058, 0.0042, 0.004, 0.0037], [0.0222, 0.0112, 0.0087, 0.0087, 0.0072, 0.0072, 0.006, 0.0053], [0.0375, 0.0166, 0.0166, 0.0101, 0.0101, 0.0095, 0.0089, 0.0079], [0.0238, 0.0197, 0.0164, 0.0144, 0.012, 0.0113, 0.0099, 0.0093], [0.0225, 0.0212, 0.0199, 0.0137, 0.0128, 0.0121, 0.0094, 0.0094], [0.0544, 0.033, 0.0166, 0.0146, 0.0146, 0.0146, 0.0114, 0.0107], [0.0558, 0.0525, 0.016, 0.0133, 0.0133, 0.0133, 0.0117, 0.011], [0.0354, 0.0332, 0.0332, 0.0275, 0.0259, 0.0259, 0.0243, 0.0101], [0.047, 0.0344, 0.0323, 0.0323, 0.0222, 0.0184, 0.0163, 0.0153], [0.0721, 0.0528, 0.032, 0.0265, 0.0207, 0.0161, 0.0151, 0.0133], [0.0439, 0.0342, 0.025, 0.0208, 0.0183, 0.0183, 0.0172, 0.0152], [0.0804, 0.0488, 0.0261, 0.0216, 0.0158, 0.0158, 0.014, 0.0131], [0.073, 0.0502, 0.0367, 0.0345, 0.0173, 0.0153, 0.0144, 0.0135], [0.2563, 0.1068, 0.0782, 0.0224, 0.0113, 0.0113, 0.0106, 0.0088], [0.2493, 0.0976, 0.0714, 0.0218, 0.0124, 0.0124, 0.0117, 0.011], [0.2856, 0.1436, 0.0927, 0.0283, 0.0207, 0.0151, 0.0118, 0.0104], [0.394, 0.1279, 0.0826, 0.0304, 0.0163, 0.0144, 0.0119, 0.0105], [0.553, 0.1795, 0.0312, 0.013, 0.0122, 0.0095, 0.0095, 0.0095], [0.6668, 0.1911, 0.0228, 0.007, 0.007, 0.0065, 0.0061, 0.0058], [0.7356, 0.1278, 0.0119, 0.0099, 0.0093, 0.0082, 0.0053, 0.005], [0.8473, 0.1012, 0.0094, 0.0061, 0.0042, 0.0024, 0.0024, 0.0022], [0.7958, 0.1567, 0.01, 0.0035, 0.0027, 0.0027, 0.002, 0.0017], [0.8106, 0.1243, 0.0102, 0.0045, 0.0029, 0.0026, 0.0026, 0.0024], [0.6537, 0.1136, 0.0504, 0.0185, 0.0106, 0.0053, 0.0053, 0.005], [0.7548, 0.0901, 0.0201, 0.0101, 0.0079, 0.0061, 0.0058, 0.0054], [0.607, 0.1055, 0.0413, 0.0251, 0.0143, 0.0134, 0.0111, 0.0087], [0.2618, 0.1237, 0.0427, 0.0402, 0.0402, 0.0377, 0.0377, 0.0333], [0.1675, 0.0897, 0.0656, 0.0579, 0.048, 0.0451, 0.0451, 0.0424], [0.1888, 0.101, 0.0739, 0.0508, 0.0421, 0.0372, 0.0289, 0.0272], [0.5103, 0.1139, 0.0609, 0.0538, 0.037, 0.0326, 0.0326, 0.0254], [0.6217, 0.108, 0.0743, 0.031, 0.0213, 0.0213, 0.0166, 0.0129], [0.6169, 0.0946, 0.0835, 0.0348, 0.0186, 0.0186, 0.0145, 0.0145], [0.6492, 0.186, 0.0775, 0.0196, 0.0105, 0.0093, 0.0064, 0.0056], [0.6387, 0.183, 0.0673, 0.0193, 0.0133, 0.0117, 0.0117, 0.0091], [0.5589, 0.2991, 0.0405, 0.0278, 0.0278, 0.007, 0.0055, 0.0038], [0.7312, 0.0873, 0.053, 0.0467, 0.0152, 0.0118, 0.0076, 0.0052], [0.8158, 0.0406, 0.0316, 0.0316, 0.018, 0.0062, 0.0055, 0.0055], [0.5947, 0.1504, 0.0912, 0.038, 0.0336, 0.0096, 0.008, 0.007]], "ranks": {"Kotlin": [140835, 54839, 79248, 6908, 11570, 20111, 17381, 37643, 68300, 134621, 106968, 69493, 68532, 73825, 121888, 66160, 51605, 30534, 26571, 74508, 94928, 39455, 46736, 60381, 17096, 2822, 1628, 3576, 2387, 1967, 6613, 8039, 1939, 826, 1063, 366, 116, 120, 140, 66, 108, 90, 86, 263, 281, 438, 554, 565, 621, 1732, 2392, 2409, 1825, 1269, 927, 468, 229, 302, 327, 283, 419, 281, 262]}}, {"pos": 528, "top": [[".", ",", " \u2013", "\u00a0", ";", "\uff0e", " ", "\u00a0\u00a0"], ["\uff0e", "ly", " \uff08", "\u0627\u064b", ".", "\u00ad", "mente", "\u3002"], [".", ",", "\u2013", ";", "[", ".[", ".\u2013", "\uff0e"], ["----------</", " Shemale", " milfs", "\uff0a\uff0a\uff0a\uff0a", "-------------</", "\uff3f\uff3f", " cumshot", "----</"], [".", "ed", "\uff0e", " \uff08", " \uff09", " \uff0c", ".\u2019", "&nbsp"], [".", " \uff09", " \uff08", " \u200b\u200b", "ed", " \uff0c", "\u3002", "\uff1f"], ["\u3002", "\uff0e", "\u5728", ".\u2019", ".", "\u00a0", "\u3002\uff08", "\uff1f"], ["\u3002", ".**", "\u5728", ".", "\uff0e", "\u3002\uff08", "\uff1f", "&nbsp"], [".", "&nbsp", ".\u201d", ".**", ".\u2019", " \u200b\u200b", "\u00a0", "\u3002"], ["&nbsp", "\u00a0", ".\\", ".", ",", "ed", ".&", ".["], ["\u00a0", ".", "&nbsp", ",", ".[", ".\\", "ed", " \u200b"], ["&nbsp", "ed", " priorit", ".**", " guided", " mainstream", " support", " showcased"], ["ed", " \u200b\u200b", " via", " showcase", " showcased", " support", " mainstream", " multiple"], ["ed", "\u00a0", " via", " priorit", " collaborative", " prior", " legacy", "."], ["ed", " via", " prior", " alongside", "\u00a0", " priorit", " along", " on"], ["ed", " prior", " through", " throughout", " via", " in", " along", " on"], ["ed", " via", " through", " within", " prior", "\u00a0", " in", " by"], [" \u200b\u200b", " via", "ed", " alongside", " priorit", " endorsed", " ongoing", " by"], ["ed", " via", " \u200b\u200b", " by", " mainstream", " alongside", " in", " ongoing"], [" via", " alongside", " mainstream", "ed", " prior", " by", " globally", " throughout"], [" alongside", "ed", " by", " via", " prior", " largely", " across", " mainstream"], [" ;;^", "\u9605\u8bfb\u672c\u6587\u524d", " milfs", "ERSHEY", "\u503c\u53cb", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\u53bb\u8ba4\u8bc1", "UPPORTED"], [" mainstream", " ;;^", "\u53bb\u8ba4\u8bc1", "eias", "nheim", "ERSHEY", " by", " alongside"], [" by", " in", " fully", " under", " until", " on", " throughout", " during"], [" by", " mainstream", " alongside", " fully", " in", " via", " under", " worldwide"], [" mainstream", " globally", "UPPORTED", " worldwide", "\u53bb\u8ba4\u8bc1", " groundbreaking", " by", " via"], [" mainstream", " worldwide", " ___", " globally", " by", " Soviet", "\u53bb\u8ba4\u8bc1", " groundbreaking"], [" ___", " ,", " ______", " in", " by", " mainstream", " __", " fully"], [" in", " by", " mainstream", " ,", " worldwide", " under", " US", " fully"], [" in", " by", " mainstream", " under", " via", " at", " limited", " for"], [" in", " by", " at", " ,", " under", " on", " for", " due"], [" in", " by", " at", " due", " under", " on", " since", " for"], [" mainstream", " due", " in", " limited", " modern", " since", " globally", " under"], [" mainstream", " limited", " globally", " due", " legacy", " under", " internationally", " modern"], [" mainstream", " globally", " limited", " due", " domestically", "/non", " legacy", " internationally"], [" mainstream", " limited", " domestically", " legacy", "?**", " \u200b\u200b", " UK", "/support"], [" mainstream", " limited", " domestically", " legacy", " macOS", " iOS", " \u200b\u200b", " commercially"], [" mainstream", " legacy", " macOS", " limited", " iOS", " Android", " domestically", "/support"], [" mainstream", " legacy", "/support", " iOS", " macOS", " limited", " Android", " compatibility"], [" mainstream", " Android", " iOS", " macOS", " legacy", "/support", " compatibility", " domestically"], [" Android", " mainstream", " iOS", " macOS", " compatibility", "/support", " legacy", " Windows"], [" Android", " iOS", " mainstream", " compatibility", " limited", " Windows", " macOS", " legacy"], [" mainstream", " Android", " iOS", " compatibility", " limited", " commercially", " fully", " native"], [" mainstream", " Android", " limited", " iOS", " compatibility", " fully", " legacy", " commercially"], [" mainstream", " Android", " iOS", " compatibility", " limited", " legacy", " commercially", " OEM"], [" mainstream", " limited", " fully", " Android", " until", " iOS", " commercially", " compatibility"], [" mainstream", " limited", " fully", "\u6216\u672a", "\u6216\u7f3a", " compatibility", " commercially", "\u6216\u4e0d"], [" mainstream", "\u6216\u672a", " limited", "\u6216\u4e0d", " or", "\u6216\u7f3a", " compatibility", " fully"], ["\u6216\u672a", " mainstream", "/", " or", "/support", "\u6216\u4e0d", "\u6216\u7f3a", "/non"], [" mainstream", " universally", "\u6216\u672a", " everywhere", "/support", "\u6216\u7f3a", "/", " fully"], ["/", "/API", "/support", " universally", "\u6216\u672a", " mainstream", " everywhere", "/use"], ["\u6216\u672a", "/", "\u6216\u4e0d", "/API", "/use", "/opt", " mainstream", "\u6216\u88ab"], ["/", "/opt", "/API", "\u6216\u4e0d", "/common", "/use", " mainstream", "/config"], ["/", " optimized", "/default", "/opt", " mainstream", "/config", "\u6216\u672a", "/API"], [" everywhere", " mainstream", " optimized", "/default", "\u6216\u672a", "/opt", " universally", "optimized"], [" everywhere", "/default", "/opt", " optimized", " mainstream", "optimized", " Everywhere", " optimal"], [" everywhere", "/opt", " optimized", " Everywhere", "/default", " Android", "optimized", " optim"], [" everywhere", " Everywhere", "/opt", " Android", " optimized", "\u6210\u719f", " ubiquitous", "/default"], [" everywhere", "/opt", " Everywhere", " stable", " optimized", "/", "stable", "/default"], [" optimized", "/opt", " everywhere", " optim", " stable", " optimal", "optimized", " optimizations"], ["/opt", " everywhere", " optimized", " stable", " optim", " optimal", "/per", " on"], ["/opt", "/", " everywhere", " on", " optim", " optimized", "/per", "/default"], ["/", "/st", "/opt", "/per", "/default", " on", "/p", "/main"]], "p": [[0.962, 0.0213, 0.0029, 0.0016, 0.0011, 0.001, 0.0009, 0.0008], [0.4917, 0.0295, 0.0045, 0.0031, 0.0026, 0.002, 0.0018, 0.0018], [0.5821, 0.4001, 0.0037, 0.0035, 0.002, 0.0009, 0.0007, 0.0006], [0.0285, 0.0236, 0.0222, 0.0162, 0.0126, 0.0119, 0.0119, 0.0112], [0.041, 0.041, 0.0339, 0.03, 0.0193, 0.016, 0.0081, 0.0076], [0.0767, 0.0362, 0.0265, 0.0249, 0.0182, 0.0151, 0.0133, 0.0104], [0.1335, 0.0977, 0.0715, 0.0631, 0.0523, 0.0461, 0.0359, 0.0359], [0.0808, 0.0629, 0.0591, 0.0555, 0.049, 0.046, 0.0246, 0.0217], [0.2051, 0.0969, 0.0666, 0.0588, 0.043, 0.0404, 0.0335, 0.0315], [0.1036, 0.0973, 0.0859, 0.0489, 0.0262, 0.0204, 0.0192, 0.0109], [0.4365, 0.4365, 0.0358, 0.0316, 0.0204, 0.0058, 0.0031, 0.0029], [0.0411, 0.0142, 0.0034, 0.0034, 0.0032, 0.0032, 0.003, 0.0028], [0.0117, 0.0055, 0.0043, 0.0038, 0.0036, 0.0034, 0.0028, 0.0023], [0.0175, 0.0136, 0.0073, 0.0064, 0.0039, 0.0039, 0.0037, 0.0037], [0.0271, 0.0113, 0.0073, 0.0073, 0.0064, 0.0047, 0.0042, 0.0034], [0.0176, 0.0107, 0.0089, 0.0078, 0.0069, 0.0065, 0.0054, 0.0054], [0.0238, 0.0174, 0.0068, 0.006, 0.0057, 0.0053, 0.0053, 0.005], [0.0117, 0.0067, 0.0067, 0.0028, 0.0028, 0.0026, 0.0024, 0.0024], [0.0126, 0.0092, 0.0072, 0.0068, 0.0053, 0.0049, 0.0036, 0.003], [0.0085, 0.007, 0.0058, 0.0045, 0.0043, 0.0035, 0.0033, 0.0027], [0.0161, 0.0142, 0.0098, 0.0086, 0.0081, 0.0059, 0.0049, 0.0043], [0.0062, 0.0026, 0.0023, 0.0023, 0.0023, 0.002, 0.002, 0.0016], [0.0048, 0.0023, 0.0016, 0.0015, 0.0014, 0.0012, 0.0012, 0.0012], [0.0306, 0.0211, 0.0128, 0.0113, 0.0088, 0.0088, 0.0082, 0.0077], [0.0166, 0.0166, 0.0089, 0.0078, 0.0074, 0.0069, 0.0057, 0.0054], [0.0247, 0.004, 0.004, 0.0036, 0.0029, 0.0026, 0.0023, 0.0023], [0.0467, 0.0072, 0.0067, 0.0063, 0.0046, 0.0046, 0.0041, 0.0041], [0.0507, 0.0507, 0.0371, 0.0349, 0.0349, 0.0211, 0.0187, 0.0187], [0.0375, 0.0331, 0.0274, 0.0188, 0.0156, 0.0156, 0.0129, 0.0101], [0.0324, 0.0305, 0.0286, 0.0144, 0.0135, 0.0112, 0.0099, 0.0093], [0.1304, 0.0578, 0.0511, 0.033, 0.033, 0.0273, 0.0241, 0.0227], [0.0996, 0.0344, 0.0344, 0.0344, 0.0237, 0.0209, 0.0209, 0.0196], [0.0442, 0.0304, 0.0252, 0.0209, 0.0184, 0.0184, 0.0163, 0.0163], [0.0894, 0.0422, 0.0273, 0.0226, 0.0176, 0.0114, 0.0107, 0.0107], [0.1155, 0.0242, 0.0227, 0.0147, 0.0107, 0.0101, 0.0089, 0.0089], [0.1035, 0.0358, 0.014, 0.0132, 0.0109, 0.0102, 0.0096, 0.009], [0.1028, 0.0229, 0.0179, 0.0179, 0.0102, 0.0096, 0.0084, 0.0074], [0.0846, 0.0292, 0.0167, 0.0167, 0.0156, 0.0122, 0.0114, 0.0095], [0.0914, 0.0432, 0.0262, 0.0246, 0.0231, 0.0149, 0.0124, 0.0109], [0.1105, 0.076, 0.0491, 0.0247, 0.018, 0.017, 0.0109, 0.0085], [0.1774, 0.0892, 0.074, 0.0199, 0.0137, 0.0121, 0.0113, 0.01], [0.3225, 0.0924, 0.0766, 0.0206, 0.0142, 0.0117, 0.0104, 0.0104], [0.2096, 0.1122, 0.068, 0.025, 0.0152, 0.0118, 0.0111, 0.0104], [0.2788, 0.0584, 0.0427, 0.0354, 0.0276, 0.0167, 0.0115, 0.0095], [0.311, 0.0477, 0.0371, 0.0212, 0.0199, 0.0128, 0.0113, 0.01], [0.2395, 0.0502, 0.0269, 0.0185, 0.0135, 0.0119, 0.0099, 0.0093], [0.2501, 0.0435, 0.015, 0.0141, 0.0133, 0.0133, 0.0117, 0.0086], [0.1972, 0.0343, 0.0322, 0.0302, 0.0284, 0.0267, 0.0162, 0.0111], [0.0718, 0.0675, 0.0634, 0.0436, 0.0385, 0.0361, 0.0361, 0.0125], [0.0884, 0.0417, 0.0392, 0.0346, 0.0305, 0.0253, 0.021, 0.0197], [0.0803, 0.0754, 0.0335, 0.0278, 0.0245, 0.0245, 0.023, 0.0216], [0.1332, 0.067, 0.0629, 0.0406, 0.0192, 0.018, 0.0159, 0.0149], [0.4137, 0.03, 0.03, 0.0264, 0.0219, 0.0193, 0.0171, 0.016], [0.113, 0.0501, 0.0416, 0.0345, 0.0252, 0.0196, 0.0196, 0.0196], [0.1342, 0.1184, 0.0675, 0.0384, 0.0361, 0.0339, 0.0319, 0.0264], [0.2258, 0.0884, 0.0831, 0.0647, 0.0346, 0.0224, 0.0224, 0.0185], [0.3677, 0.1353, 0.068, 0.0498, 0.0266, 0.0221, 0.0183, 0.0134], [0.612, 0.0939, 0.0391, 0.0286, 0.0185, 0.0144, 0.0112, 0.0105], [0.472, 0.0929, 0.082, 0.0639, 0.0207, 0.0162, 0.0162, 0.0143], [0.2331, 0.2057, 0.1602, 0.1101, 0.0668, 0.0336, 0.0159, 0.0131], [0.2051, 0.181, 0.1409, 0.1098, 0.1098, 0.0179, 0.0168, 0.0168], [0.3851, 0.1036, 0.0859, 0.0807, 0.0521, 0.0406, 0.0192, 0.0116], [0.8842, 0.0343, 0.0267, 0.006, 0.006, 0.0056, 0.0028, 0.0025]], "ranks": {"Kotlin": [198606, 142627, 141077, 17788, 42659, 81288, 89812, 115315, 137086, 179953, 173438, 120206, 95668, 143243, 195578, 154063, 107738, 68903, 53337, 122227, 135249, 45941, 48245, 112178, 51770, 6469, 3225, 12822, 12557, 11513, 29039, 21992, 8102, 4891, 6505, 3041, 1151, 1156, 1090, 505, 739, 621, 856, 1218, 1372, 2790, 3941, 3953, 4685, 5933, 5914, 6249, 3616, 3368, 1283, 441, 152, 98, 182, 271, 399, 309, 608]}}, {"pos": 529, "top": [[" \u2013", ".", "\u2013", "\u00a0", "<|endoftext|>", " ", "-", "\u00a0\u00a0"], [" \u2013", "\u2013", " \u2018", "ting", " VERY", "  \n", "\u00b7", "\u2018"], ["\u2013", " \u2013", "\u2026..", "\u2018", "\u2026.", ".", "\u2026", "["], [" Blowjob", " milfs", " Shemale", "uggy", " cumshot", " Hidal", " Strec", " \u041a\u0440\u0430\u0441\u0438"], ["&(", " #\"", " @_", " @", "#/", "(@", "-/", "@"], ["-/", "\u3002", "\u662f", "#/", "\uff1f", " #\"", "\uff01", "ting"], ["\u3002", "\u662f", "\u3010", "\uff08", "\uff1f", "\u7684", "\u6709", "\uff01"], [" #\"", " \n\n\n", "\t\n\n\n", "\u662f", "athon", "\u7684", "-/", "\u3002"], [" #\"", "#\"", " \n\n\n", "\t\n\n\n", "athon", "\t\n\n", "-/", "\u3002"], [" #\"", "-/", "#\"", "#/", " Hidal", " V\u00edc", "\\/\\/", "#"], [" #\"", "#", "-/", "&", "\u00a0", " #", "\t", "#\""], ["-/", " veggies", "bies", " combo", " meds", " kinda", "athon", " #\""], ["-/", " veggies", " kinda", " meds", " combo", " devs", "bies", " combos"], ["-/", " kinda", " meds", " veggies", " combo", "/etc", " devs", " vibe"], [" kinda", "-/", " combo", " seperate", " alot", " thru", " meds", " info"], [" alot", " kinda", " thru", " veggies", " seperate", " anyways", " meds", "-/"], [" meds", "-/", " kinda", " specs", " info", " veggies", " alot", " thru"], [" meds", "-/", " veggies", " specs", " configs", "-tech", " devs", " vibe"], [" meds", "-/", " devs", " kinda", " veggies", " vibe", " combos", "-tech"], [" meds", " kinda", "-/", "-&", " devs", "\u5565", " comfy", " veggies"], ["-/", "\u5565", "#/", "-&", " kinda", "\u515c", "\u54b1", " #\""], ["htag", " meds", " autobio", " Hidal", " devs", "acerb", "ourcing", " combos"], ["htag", "ting", " devs", " meds", "uum", "ourcing", " autobio", " combos"], ["ting", "-/", "-&", "ably", "able", " impact", "impact", " needing"], ["\u5565", "-/", "#/", "\u515c", "ourcing", " kinda", " devs", "impact"], ["ourcing", "\u5565", "htag", " impactful", " devs", " meds", " pornstar", " autobio"], ["htag", "ourcing", " impactful", "\u5565", " devs", "-tech", " meds", "acerb"], [" tech", "-tech", " devs", " meds", " impact", " impactful", "ability", " specs"], [" tech", "-tech", " meds", "/etc", " impactful", " impact", " devs", "tech"], [" tech", " meds", " impactful", "-tech", " impact", " upgrade", " specs", " devs"], [" tech", " lack", " impact", " /", " upgrade", " technology", " modern", "/"], [" tech", " /", "/", " lack", " impact", " meds", "/etc", " technology"], [" tech", "/etc", "/", "\uff1f", " impactful", "\uff1f\uff09", "\u5565", " meds"], [" tech", "/etc", " meds", "tech", " impactful", "\uff1f\uff09", "-tech", " isn"], [" tech", "/etc", "tech", "\uff1f\uff09", " meds", " weird", " aren", " isn"], [" tech", "/etc", "tech", " limited", "\uff1f\uff09", "\uff1f\u201d", "\uff1f**", "-tech"], [" tech", "tech", "/etc", " optimized", " limited", " technology", " devs", "-tech"], [" tech", " optimized", " limited", "tech", "/etc", " optimizations", " devs", " optimization"], [" optimized", " tech", " optimizations", " optimization", " limited", "optimized", " implementation", " optimizing"], [" optimized", "optimized", " optimizations", " optimization", " tech", " optimizing", " limited", "tech"], [" optimized", " optimizations", " optimization", "optimized", " tech", " performance", " optimizing", " efficiency"], [" optimized", " optimizations", " optimization", "optimized", " optimizing", " performance", " optimize", " optimal"], [" optimized", " optimization", "optimized", " optimizations", " optimizing", " performance", " optimal", " implementation"], [" optimized", "optimized", " optimization", " optimizations", " optimizing", " optimal", " performance", " optimize"], [" optimized", " optimization", "optimized", " optimizations", " optimizing", " optimal", " performance", " implementation"], [" optimized", " optimal", " optimization", "optimized", " optimizations", " optimizing", " implementation", " optimize"], [" optimized", " optimal", " optimizations", " optimization", "optimized", " optimizing", " optimize", "/etc"], [" optimized", " optimal", " optimizing", "optimized", "/etc", "/", " availability", " optimizations"], [" optimized", " optimal", "optimized", "/etc", " optimizations", " optimizing", " availability", " optimization"], [" optimized", " optimal", "optimized", " availability", "available", " optimizing", " usable", " impactful"], [" optimized", "optimized", " optimal", "available", "-available", " usable", " availability", " reliable"], [" optimized", "optimized", " optimal", " optim", "available", " optimizing", " optimizations", " optimize"], [" optimized", "optimized", " optimal", " optimizing", " optim", " optimize", " optimizations", " optimization"], [" optimized", "optimized", " optimal", " defaulted", " defaults", " optimizations", " optimizing", " optim"], [" optimized", "optimized", " optimal", " optim", " optimize", "\u6210\u719f", " optimizations", " optimizing"], [" optimized", "optimized", " optimal", " default", "\u9ed8\u8ba4", " defaulted", " defaults", " optim"], [" optimized", "optimized", " optimal", " optim", " optimize", " optimizations", " optimizing", " optimization"], [" optimized", "optimized", " optimal", " optim", " optimize", "\u6210\u719f", " optimizing", "\u4f18\u5316"], [" optimized", "optimized", " optimal", " optim", " optimize", " stable", "\u6210\u719f", " optimizing"], [" optimized", "optimized", " optimal", " optim", " optimize", " optimizing", " optimization", " optimizations"], [" optimized", "optimized", " optimal", " optim", " optimize", " stable", " optimizing", " mature"], ["optimized", " optimized", " optimal", " mature", " optim", "optim", " stable", " optimize"], ["optimized", " optimized", "perform", "stable", "standard", "optim", "available", " optimal"]], "p": [[0.5609, 0.1711, 0.1252, 0.0713, 0.0097, 0.0091, 0.0066, 0.0066], [0.3003, 0.0279, 0.018, 0.0159, 0.014, 0.0066, 0.0062, 0.0055], [0.4317, 0.0905, 0.075, 0.0662, 0.0313, 0.0229, 0.0167, 0.0167], [0.0133, 0.0049, 0.0049, 0.0043, 0.004, 0.004, 0.0032, 0.0032], [0.0723, 0.025, 0.0207, 0.0183, 0.0152, 0.0118, 0.0118, 0.0092], [0.0224, 0.0064, 0.0053, 0.0041, 0.0037, 0.0028, 0.0027, 0.0022], [0.0673, 0.0281, 0.0281, 0.0233, 0.0205, 0.0133, 0.0117, 0.0103], [0.0339, 0.0193, 0.0091, 0.0081, 0.0081, 0.0059, 0.0059, 0.0055], [0.0485, 0.0215, 0.0215, 0.0202, 0.0157, 0.0139, 0.0079, 0.0074], [0.0408, 0.0233, 0.0097, 0.0086, 0.0067, 0.0063, 0.0038, 0.0036], [0.1054, 0.0564, 0.0498, 0.0388, 0.0195, 0.0143, 0.0134, 0.0126], [0.0063, 0.0044, 0.0038, 0.0036, 0.0034, 0.0034, 0.0032, 0.003], [0.02, 0.0084, 0.0061, 0.0051, 0.0037, 0.0035, 0.0035, 0.0035], [0.038, 0.0203, 0.0116, 0.0116, 0.009, 0.0058, 0.0051, 0.0051], [0.0634, 0.0559, 0.0281, 0.0182, 0.0103, 0.0103, 0.0091, 0.0086], [0.041, 0.034, 0.0234, 0.0182, 0.0171, 0.0161, 0.0142, 0.011], [0.0378, 0.0355, 0.0294, 0.0244, 0.0168, 0.0168, 0.0148, 0.0123], [0.0272, 0.0129, 0.0121, 0.0094, 0.0073, 0.0069, 0.0065, 0.0061], [0.0252, 0.0174, 0.0099, 0.0068, 0.006, 0.0044, 0.0044, 0.0044], [0.0125, 0.0103, 0.0076, 0.0059, 0.0059, 0.0049, 0.0038, 0.0038], [0.013, 0.0122, 0.0095, 0.0084, 0.0074, 0.0065, 0.0051, 0.0048], [0.0031, 0.0025, 0.0024, 0.0021, 0.0019, 0.0017, 0.0016, 0.0014], [0.0027, 0.0025, 0.0025, 0.0021, 0.0016, 0.0015, 0.0014, 0.0014], [0.0081, 0.0034, 0.0028, 0.0025, 0.0022, 0.002, 0.0019, 0.0017], [0.0052, 0.0036, 0.0028, 0.0028, 0.0022, 0.0022, 0.0022, 0.0021], [0.0038, 0.0035, 0.0031, 0.0031, 0.0026, 0.0026, 0.0024, 0.0021], [0.0041, 0.0032, 0.003, 0.0028, 0.0028, 0.0025, 0.0023, 0.0021], [0.0159, 0.0058, 0.0052, 0.0048, 0.0038, 0.0035, 0.0035, 0.0035], [0.0166, 0.0084, 0.0057, 0.0033, 0.0031, 0.0029, 0.0029, 0.0029], [0.0213, 0.0054, 0.0051, 0.0048, 0.0042, 0.0037, 0.0033, 0.0029], [0.0495, 0.0282, 0.0171, 0.0098, 0.0076, 0.0076, 0.0063, 0.0056], [0.0548, 0.0243, 0.0178, 0.0178, 0.0115, 0.0058, 0.0058, 0.0054], [0.0931, 0.0284, 0.0195, 0.0162, 0.0152, 0.0126, 0.0126, 0.0118], [0.1596, 0.0379, 0.0123, 0.0116, 0.0109, 0.0075, 0.007, 0.0058], [0.1815, 0.0668, 0.0169, 0.0109, 0.0109, 0.0102, 0.0085, 0.0062], [0.1461, 0.0326, 0.0288, 0.0128, 0.0088, 0.0073, 0.0064, 0.0057], [0.1666, 0.0349, 0.0187, 0.0155, 0.0113, 0.0057, 0.0054, 0.005], [0.1118, 0.0562, 0.0194, 0.0183, 0.0118, 0.0076, 0.0071, 0.0071], [0.3009, 0.0761, 0.0247, 0.0232, 0.0232, 0.0205, 0.0091, 0.0085], [0.4605, 0.055, 0.0456, 0.0355, 0.0294, 0.0096, 0.0058, 0.0054], [0.6633, 0.0544, 0.048, 0.0424, 0.0242, 0.0138, 0.0107, 0.0069], [0.8253, 0.0411, 0.0363, 0.032, 0.0171, 0.0052, 0.0046, 0.0028], [0.8654, 0.0261, 0.0261, 0.0231, 0.0096, 0.0058, 0.0038, 0.0035], [0.8441, 0.0327, 0.0255, 0.0225, 0.012, 0.0069, 0.0047, 0.0044], [0.8337, 0.0196, 0.0196, 0.0153, 0.0082, 0.0082, 0.0082, 0.0072], [0.8059, 0.0243, 0.013, 0.013, 0.0115, 0.009, 0.0045, 0.0042], [0.6818, 0.0494, 0.0233, 0.016, 0.016, 0.0142, 0.0104, 0.0076], [0.4996, 0.1047, 0.0151, 0.0117, 0.0117, 0.0104, 0.0104, 0.0092], [0.4297, 0.1485, 0.0228, 0.013, 0.0108, 0.0108, 0.0095, 0.0079], [0.4286, 0.1391, 0.0274, 0.0213, 0.0107, 0.0101, 0.0095, 0.0089], [0.3737, 0.1213, 0.0736, 0.061, 0.0224, 0.0224, 0.0154, 0.0136], [0.6155, 0.2907, 0.0347, 0.0041, 0.0041, 0.0039, 0.0034, 0.0027], [0.7084, 0.2606, 0.0101, 0.0026, 0.0023, 0.0014, 0.0014, 0.0009], [0.7743, 0.1958, 0.0052, 0.0041, 0.0015, 0.0015, 0.0013, 0.0012], [0.8098, 0.1595, 0.0216, 0.0014, 0.0011, 0.0009, 0.0008, 0.0007], [0.7509, 0.1152, 0.0791, 0.0121, 0.0074, 0.0074, 0.0051, 0.0035], [0.8695, 0.1038, 0.0141, 0.0031, 0.0031, 0.0015, 0.0015, 0.0007], [0.8913, 0.0829, 0.0127, 0.0041, 0.0025, 0.0017, 0.0013, 0.0007], [0.8493, 0.1302, 0.0094, 0.0035, 0.0019, 0.001, 0.0009, 0.0009], [0.8842, 0.0565, 0.0343, 0.0111, 0.006, 0.0022, 0.0009, 0.0008], [0.7471, 0.1889, 0.0372, 0.0121, 0.0035, 0.0035, 0.0011, 0.001], [0.6019, 0.3222, 0.0233, 0.0233, 0.0041, 0.0032, 0.0028, 0.0025], [0.8888, 0.0501, 0.0144, 0.0077, 0.006, 0.006, 0.0053, 0.0036]], "ranks": {"Kotlin": [208695, 223464, 196969, 98431, 165658, 93705, 62847, 105115, 65900, 142353, 147525, 80876, 67328, 90352, 200589, 182888, 94047, 39927, 46526, 77322, 149155, 76104, 123171, 206638, 79628, 38031, 27826, 78213, 70283, 51010, 139907, 98218, 44059, 27893, 64082, 39600, 15010, 13540, 22787, 9801, 12916, 11576, 9221, 13591, 23107, 32452, 23938, 25677, 41685, 44616, 37155, 22516, 9958, 6481, 4804, 2366, 1034, 842, 1109, 1367, 2311, 1796, 2978]}}, {"pos": 530, "top": [[".", "\u2026.", " ", "\u2026..", " (\u201c", "  ", ",", "<|endoftext|>"], [" (\u201c", "[\"@", " canceled", " \u200b\u200b", " theater", "  ", "\u0219i", "  \n\n"], ["\u2026.", "\u2026..", " \u200b\u200b", " \u2026.", "\u2026\u201d", "\u2026", " (\u201c", "[\u2026"], [" Blowjob", " **\u201c", " cumshot", " milfs", " Shemale", " canceled", " Geile", " Binomo"], [" **\u201c", " canceled", " \u200b\u200b", " theater", " _____", " gray", " (\u201c", " @_"], [" **\u201c", " \u200b\u200b", "\u0d4d\u0d1f", " theater", " canceled", " analyzer", " gray", " (\u201c"], [" **\u201c", " _____", " \u200b\u200b", "_____", ".\u201d", " \u3010", "\u3002\u201d", " (\u201c"], [" **\u201c", " \u200b\u200b", " _____", ".\u201d", "zed", "ally", " **\u201e", " **\""], [".\u201d", " \u200b\u200b", " **\u201c", "?\u201d", ",\u201d", "\u3002\u201d", ".\u201c", "!\u201d"], [".\u201d", "ally", "\u0671", "ized", "zed", " \u200b\u200b", "\u0670", ",\u201d"], [" \u200b\u200b", ".\u201d", "ized", " optimized", ".", ".-", "ally", " strategic"], ["ized", " optimized", " **\u201c", " optimizations", " optimization", "ization", "ally", " strategic"], [" optimized", "ized", " optimizations", " \u200b\u200b", "ally", " optimization", " leveraging", " theater"], [" optimized", " optimizations", "ized", " optimization", " leveraging", " fueled", " behaviors", " theater"], [" optimized", " leveraging", " fueled", " strategic", "ized", " behaviors", " transitioning", " utilizing"], [" optimized", " leveraging", " behaviors", " fueled", " utilizing", " strategic", " nuanced", "ized"], [" leveraging", " optimized", " strategic", "ized", " via", " utilizing", "ally", " strategically"], [" optimized", " leveraging", " optimizations", " optimization", " nuanced", " fueled", " strategic", " behaviors"], [" optimized", " leveraging", " fueled", " optimizations", " nuanced", "ized", " strategic", "ally"], [" leveraging", " optimized", " fueled", " nuanced", " optimizations", " strategic", "OKIE", "ized"], [" for", " via", " fueled", "ized", " leveraging", " strategically", " toward", " optimized"], [" ;;^", " milfs", " optimizations", "OKIE", " optimized", " leveraging", " Blowjob", " fueled"], [" ;;^", " optimized", " optimizations", " fueled", " leveraging", "ized", " nuanced", " strategic"], [" for", "ized", " toward", " optimized", " strategic", " through", " fueled", " strategically"], [" for", " leveraging", " optimized", " optimizations", " strategic", " nuanced", " optimization", " optimizing"], [" optimizations", " optimized", " leveraging", " optimization", " optimizing", " workflows", " impactful", " optimizer"], [" optimized", " optimizations", " optimization", " leveraging", " optimizing", " for", " optimizer", " workflows"], [" for", " optimized", " ___", " optimization", " **", " optimizations", " leveraging", " optimizing"], [" optimized", " optimization", " for", " optimizations", " leveraging", " optimize", " optimizing", " technologies"], [" optimized", " for", " optimization", " optimizations", " leveraging", " workflows", " optimize", " technologies"], [" for", " optimized", " by", " technology", " work", " performance", " optimization", " systems"], [" for", " by", " optimized", " work", " technology", " in", " modern", " through"], [" for", " optimized", " **", " tech", " modern", " leveraging", " by", " optimization"], [" for", " optimized", " tech", " optimization", " leveraging", " heavily", " modern", " optimizations"], [" for", " tech", " optimized", " leveraging", " globally", " nuanced", " heavily", " optimization"], [" for", " tech", " optimized", " heavily", " specialized", " hybrid", " nuanced", " leveraging"], [" for", " optimized", " optimizations", " tech", " optimization", " optimizing", " optimal", " specialized"], [" for", " optimized", " optimization", " optimizations", " optimizing", " tech", " optimal", " optim"], [" optimized", " for", " optimization", " optimizations", " optimizing", " optimal", " optim", " tech"], [" optimized", " for", " optimizations", " optimization", " optimizing", "optimized", " optimal", " optim"], [" optimized", " for", " optimizations", " optimization", " optimizing", "optimized", " optimize", " optim"], [" optimized", " optimization", " for", " optimizing", " optimizations", " optim", "optimized", " optimize"], [" optimized", " optimizing", " optimization", " optimizations", " for", " optim", "optimized", " optimal"], [" optimized", " optimizing", " optimization", " for", " optimizations", " optim", "optimized", " optimal"], [" optimized", " optimization", " optimizing", " for", " optimizations", " optim", "optimized", " specialized"], [" optimized", " for", " optimization", " optimizing", " optim", " optimizations", " optimal", " specialized"], [" optimized", " optim", " optimal", " optimizing", " optimization", " optimizations", " for", " specialized"], [" optimized", " for", " optimal", " optimizing", " optim", " optimization", " specialized", " targeted"], [" optimized", " for", " optimal", " optimizing", " optim", "optimized", " optimization", " optimizations"], [" optimized", " for", " universally", " everywhere", " optimal", " optimizing", " mainstream", " globally"], [" everywhere", " universally", " optimized", "\u5728\u6240\u6709", " \u0432\u0435\u0437\u0434\u0435", " for", " optimizing", "optimized"], [" everywhere", " universally", " for", "forall", "\u5728\u6240\u6709", " \u0432\u0435\u0437\u0434\u0435", " across", " mainstream"], [" universally", " everywhere", " mainstream", " for", "\u5728\u6240\u6709", "forall", " optimized", " optimizing"], [" for", "for", " everywhere", " Android", "forall", "\u4f4e\u7aef", " universally", " mainstream"], [" everywhere", "forall", "\u5728\u6240\u6709", "\u4f4e\u7aef", "\u5bf9\u6240\u6709", " Android", " mainstream", " Everywhere"], [" Android", "Android", " android", "android", " everywhere", "/android", "ANDROID", "forall"], [" Android", "Android", " android", "android", "/android", "_android", "-android", "ANDROID"], [" Android", "Android", " android", "android", "/android", " everywhere", "_android", "ANDROID"], [" Android", "Android", " android", "android", "/android", " everywhere", "ANDROID", "_android"], [" Android", "Android", " android", " everywhere", "android", "ANDROID", "roid", "-android"], [" Android", "Android", " android", " everywhere", "android", " mobile", "ANDROID", "-android"], [" Android", " everywhere", "Android", " on", " android", " for", "ANDROID", "android"], [" on", " for", " Android", " everywhere", "Android", " in", " across", " yet"]], "p": [[0.1223, 0.1014, 0.079, 0.0578, 0.0397, 0.0309, 0.0309, 0.0226], [0.0855, 0.0552, 0.0379, 0.0158, 0.014, 0.0123, 0.0123, 0.0096], [0.2945, 0.2945, 0.1576, 0.0452, 0.031, 0.0156, 0.0129, 0.0107], [0.058, 0.0257, 0.0242, 0.0213, 0.0114, 0.0069, 0.0061, 0.0054], [0.2328, 0.0191, 0.018, 0.0169, 0.0149, 0.0109, 0.0102, 0.0085], [0.2586, 0.0614, 0.01, 0.0078, 0.0065, 0.0065, 0.0065, 0.0057], [0.6221, 0.0146, 0.0121, 0.0121, 0.0074, 0.0065, 0.0061, 0.0039], [0.3914, 0.0639, 0.0183, 0.0111, 0.0081, 0.0076, 0.0063, 0.0046], [0.295, 0.1905, 0.1483, 0.0201, 0.0166, 0.0122, 0.0107, 0.0061], [0.0326, 0.0288, 0.0288, 0.027, 0.0145, 0.0136, 0.006, 0.006], [0.1721, 0.0813, 0.0525, 0.017, 0.0133, 0.0117, 0.0086, 0.0071], [0.0354, 0.0294, 0.0178, 0.0157, 0.0115, 0.0102, 0.0095, 0.0074], [0.0328, 0.0308, 0.0165, 0.0106, 0.01, 0.0094, 0.0073, 0.0069], [0.036, 0.017, 0.0132, 0.0097, 0.0091, 0.008, 0.0071, 0.0067], [0.0508, 0.0272, 0.0212, 0.0155, 0.0128, 0.0128, 0.0106, 0.0088], [0.0268, 0.0268, 0.0209, 0.0209, 0.0163, 0.0135, 0.0093, 0.0093], [0.029, 0.0155, 0.0146, 0.0137, 0.0129, 0.0129, 0.0129, 0.0121], [0.051, 0.0166, 0.0156, 0.0114, 0.0107, 0.01, 0.0083, 0.0057], [0.0264, 0.0171, 0.0117, 0.0117, 0.0081, 0.0067, 0.0063, 0.0059], [0.0208, 0.0153, 0.0143, 0.0098, 0.0082, 0.0068, 0.006, 0.0053], [0.0252, 0.0197, 0.0144, 0.0135, 0.0127, 0.0119, 0.0082, 0.0077], [0.0342, 0.0087, 0.0063, 0.0056, 0.0044, 0.0038, 0.0032, 0.003], [0.021, 0.012, 0.0093, 0.006, 0.006, 0.005, 0.0044, 0.0037], [0.0564, 0.0098, 0.0081, 0.0063, 0.0059, 0.0052, 0.0049, 0.0046], [0.0791, 0.0188, 0.0156, 0.0114, 0.0074, 0.0069, 0.0061, 0.0057], [0.0491, 0.0338, 0.0232, 0.0218, 0.008, 0.008, 0.0075, 0.0075], [0.0819, 0.0722, 0.0466, 0.0321, 0.0172, 0.0118, 0.0104, 0.0092], [0.2187, 0.0553, 0.0191, 0.0169, 0.0149, 0.0123, 0.0116, 0.0102], [0.0858, 0.0489, 0.0405, 0.0381, 0.0169, 0.0124, 0.0109, 0.0096], [0.0789, 0.0509, 0.0397, 0.0329, 0.0089, 0.0089, 0.0083, 0.0078], [0.5417, 0.0112, 0.0088, 0.006, 0.0053, 0.005, 0.0044, 0.0041], [0.4223, 0.0113, 0.006, 0.0057, 0.0057, 0.0057, 0.005, 0.0047], [0.3125, 0.0137, 0.0114, 0.01, 0.0069, 0.0051, 0.0051, 0.0045], [0.1429, 0.0494, 0.0361, 0.0125, 0.0097, 0.0091, 0.0086, 0.0067], [0.1466, 0.0692, 0.0348, 0.01, 0.01, 0.0094, 0.0088, 0.0083], [0.3868, 0.0318, 0.0298, 0.008, 0.0052, 0.0052, 0.0049, 0.0046], [0.2267, 0.2001, 0.0307, 0.0271, 0.0254, 0.0198, 0.01, 0.0078], [0.4735, 0.1636, 0.0208, 0.0208, 0.0111, 0.0098, 0.006, 0.0044], [0.4587, 0.2455, 0.0377, 0.0377, 0.0259, 0.0101, 0.0079, 0.0048], [0.4575, 0.3144, 0.04, 0.0376, 0.0242, 0.0058, 0.0058, 0.0054], [0.545, 0.2574, 0.0507, 0.0507, 0.0289, 0.0069, 0.0061, 0.005], [0.7571, 0.0548, 0.0484, 0.0484, 0.0427, 0.0084, 0.0074, 0.004], [0.8171, 0.0461, 0.0407, 0.028, 0.0247, 0.008, 0.0059, 0.0046], [0.7914, 0.0506, 0.0348, 0.0307, 0.0239, 0.0186, 0.0088, 0.0057], [0.7537, 0.0482, 0.0375, 0.0375, 0.0258, 0.0138, 0.0065, 0.0061], [0.6622, 0.0698, 0.0227, 0.0227, 0.02, 0.0146, 0.0114, 0.0089], [0.6337, 0.0278, 0.0262, 0.0246, 0.0231, 0.0204, 0.0149, 0.0124], [0.4705, 0.0637, 0.0438, 0.0249, 0.0194, 0.0151, 0.0125, 0.0081], [0.3719, 0.094, 0.0346, 0.0305, 0.0163, 0.0127, 0.0127, 0.0093], [0.1057, 0.0726, 0.0602, 0.0602, 0.0251, 0.0236, 0.0172, 0.0105], [0.1211, 0.0833, 0.0505, 0.0211, 0.0175, 0.0175, 0.0175, 0.0164], [0.1301, 0.0789, 0.0741, 0.0373, 0.0212, 0.0146, 0.0137, 0.0137], [0.0902, 0.0703, 0.0426, 0.0353, 0.0243, 0.0201, 0.0189, 0.0189], [0.1302, 0.0543, 0.035, 0.0329, 0.0309, 0.0256, 0.02, 0.0155], [0.2829, 0.1422, 0.1041, 0.0338, 0.0317, 0.028, 0.0218, 0.0205], [0.8115, 0.0755, 0.0168, 0.0168, 0.0123, 0.0096, 0.007, 0.0066], [0.8779, 0.0636, 0.0234, 0.0182, 0.0046, 0.0032, 0.0017, 0.0013], [0.8771, 0.072, 0.0182, 0.0161, 0.0032, 0.0025, 0.0022, 0.0017], [0.876, 0.0719, 0.0206, 0.016, 0.0032, 0.0022, 0.0019, 0.0017], [0.9205, 0.0519, 0.0116, 0.0038, 0.0029, 0.0014, 0.0014, 0.0012], [0.9177, 0.0403, 0.0216, 0.0042, 0.0029, 0.0026, 0.0026, 0.0018], [0.7641, 0.0805, 0.0488, 0.0261, 0.0231, 0.0169, 0.0048, 0.004], [0.596, 0.2193, 0.0914, 0.0554, 0.0058, 0.0031, 0.0029, 0.0026]], "ranks": {"Kotlin": [190585, 148293, 177210, 37641, 65635, 101898, 81331, 111682, 174356, 210088, 193866, 168805, 139637, 164679, 190497, 146228, 175435, 100795, 90091, 146556, 177592, 97126, 111536, 177253, 117308, 37848, 23289, 40970, 24477, 24561, 38158, 32350, 24046, 23818, 39345, 22697, 11359, 11711, 7550, 6140, 6314, 5798, 6145, 8820, 8517, 13535, 17749, 20190, 17384, 18004, 16122, 8392, 1921, 1667, 661, 51, 21, 21, 24, 19, 28, 34, 31]}}, {"pos": 531, "top": [[",", ".", ";", "\u2013", "\u2026..", "\u00a0\u00a0", "?", ":"], [",", "\u2013and", "\u2013", "\u200b", " \u00a0", ";", "\u00ad", "?,"], [",", ".", "\u2013", "\u2026..", ";", "\u2026.", "\u2013and", "\u200b"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " addir", " milfs", " Geile", "\ufffd\ufffd", "iversary", " aarhus", " Pubbl"], [".@", "@", ",@", ":@", "@c", "@d", "(@", "ed"], ["boarding", "sson", ":-", " \u00a0", "======", "rosso", "reddit", "!:"], ["\\\\\\", " \u00a0", " .....", "......", "sson", " ......", "=======", "\ufffd"], ["sson", "\\\\\\", "ness", "\ufffds", "nett", "\u00a7\u00c3", "#####", "athon"], ["athon", "#####", "\\\\\\", ".\u00bb", "&nbsp", "nette", "\ufffd", "\ufffd"], ["\\\\\\", "\u00ading", "/off", "sson", "\u00a7\u00c3", "nett", "nette", "\u54b1\u5011"], ["\\\\\\", "&nbsp", "/off", " //@", ".png", "\u00ading", "sson", "\ufffd"], ["nett", "/off", "\u54b1\u5011", "xon", "iance", "\u54b1\u4eec\u7684", "\u00a7\u00c3", "nette"], ["/off", "\u54b1\u5011", "\u0440\u044f\u0434\u0443", "xon", "\u76ae\u9769\u57ce", "\u00a7\u00c3", "nett", "\u4ea6\u6216\u662f"], ["/off", "\u54b1\u5011", "xon", "\u00a7\u00c3", " meds", " veggies", "\u76ae\u9769\u57ce", "unky"], ["/off", " Philly", "\u4fe9\u4eba", "\u5982\u82e5", " sorta", "\u516c\u53f7", "-esque", " thru"], ["/off", " pricey", "\u54b1\u5011", "-esque", " savvy", "\u5982\u82e5", " folks", "\u4fe9\u4eba"], ["/off", " folks", "\u00c3", "-esque", " savvy", " requisite", " pricey", "\u54b1\u5011"], ["/off", "-esque", "-ons", "\u5206\u5206\u949f", " Philly", " meds", "\u54b1\u5011", "\u6ca1\u5565"], ["/off", "-esque", "\uae50", "\u00a7\u00c3", " savvy", "\u6ca1\u5565", " pricey", "\u8fd9\u4e8b\u513f"], ["/off", "\u76f8\u8f83", " pricey", "\u6b64\u756a", "\u6b64\u524d\u7684", " hugely", "\u6ca1\u5565", " arguably"], ["much", "/off", "Though", "though", " \u00ad", " requisite", "\u76f8\u8f83", " notably"], ["AILS", " MEDIAM", "matchCondition", " pricey", "unky", " **>>", "\u623f\u7f51", "\u00e3ng"], [" ``", "\u0169a", " notably", "much", "\u4e0d\u751a", " pricey", "\u6b64\u524d\u7684", "/off"], [" much", " notably", "much", " \u00ad", " heavily", " hugely", " --", " largely"], ["&nbsp", "Though", "much", " hugely", " notably", "\u5373\u4fbf", "Whilst", " {{--<"], [" MEDIATEK", " MEDIAM", " **>>", "\\uD", "\u0274", "\u5176\u5b83\u5a92\u4f53", " ingy", " ;;^"], ["\u5176\u5b83\u5a92\u4f53", " MEDIATEK", " MEDIAM", "\\uD", "\u0274", "\u4efb\u4f55\u5a92\u4f53", " {{--<", "aptops"], [" --", " notably", " heavily", " arguably", " @", " hugely", " ____", " tech"], ["-era", " tech", "-heavy", " UK", " wides", " Silicon", " hardware", " heavily"], [" tech", "-era", " heavily", "-heavy", " hardware", " UK", " US", " Europe"], [" US", " tech", "-era", " heavily", " Europe", " modern", " ...", " "], [" US", " ", " modern", " heavily", " much", " even", " East", " \u2013"], [" modern", " US", " even", " heavily", " \u2013", " tech", " Western", " much"], ["\u2011", " tech", "-era", "\u2013", " \u2013", "\u200b", " \u2013,", " UK"], ["\u2011", " tech", "?**", "\u200b", "\uff1f\uff09", "-era", "...**", " Android"], ["\u2011", " Android", "\u200b", "\u2026\u2026", " iOS", "**\u2013", "\u2013", " \u2013"], [" Android", "\u2011", " JVM", "Android", " Java", " JDK", "(Android", " iOS"], [" Android", "Android", " iOS", "\u2011", "(Android", " android", "android", " JVM"], [" Android", " iOS", "Android", " android", "(Android", " JVM", " macOS", "-android"], [" Android", "Android", " android", "(Android", ".Android", "-android", "android", " iOS"], [" Android", "Android", " android", "(Android", ".Android", "-android", " iOS", "\u5b89\u5353"], [" Android", "Android", " android", "(Android", "-android", ".Android", " iOS", "\u5b89\u5353"], [" Android", "Android", " android", "-android", "(Android", ".Android", " iOS", " mobile"], [" Android", "Android", " android", "-android", "(Android", ".Android", " iOS", "\u5b89\u5353"], [" Android", "Android", " android", " iOS", "-android", ".Android", "(Android", " smartphones"], [" Android", " iOS", "-android", " android", ".Android", "(Android", "Android", " older"], [" Android", " iOS", " android", "-android", "(Android", " older", "Android", " Java"], [" Android", " iOS", " older", " android", "Android", " low", " limited", " Standard"], [" Android", " android", " iOS", " older", "-android", "Android", "(Android", "ANDROID"], [" Android", " older", "ANDROID", "-android", "\u4f4e\u7aef", " android", "Android", "(Android"], [" Android", "\u4f4e\u7aef", "-android", "ANDROID", "\u8001\u65e7", " older", " smartphones", "Android"], [" Android", "-android", "Android", "\u4f4e\u7aef", ".Android", "ANDROID", "/android", "_ANDROID"], [" Android", "-android", "Android", "/android", ".Android", "ANDROID", "_ANDROID", "android"], [" Android", "-android", "Android", "/android", "android", " android", ".Android", "ANDROID"], [" Android", "Android", "-android", "/android", " android", "android", "\u4f4e\u7aef", "_ANDROID"], [" Android", "Android", "-android", "/android", " android", "android", "_android", "ANDROID"], [" Android", "Android", " android", "-android", "android", "/android", "_android", "(Android"], [" Android", "Android", " android", "-android", "android", "_android", "/android", "(Android"], [" Android", "Android", " android", "-android", "android", "_android", "/android", "\u5b89\u5353"], [" Android", "Android", " android", "-android", "_android", "android", "/android", "ANDROID"], [" Android", "Android", " android", "-android", "_android", "android", "ANDROID", "/android"], [" Android", " android", "Android", "-android", " older", "_android", " mid", "ANDROID"], [" Android", " older", " all", " mid", "Android", " mobile", " android", " standard"]], "p": [[0.7378, 0.2395, 0.0072, 0.0047, 0.0016, 0.0009, 0.0009, 0.0008], [0.0237, 0.0163, 0.0144, 0.0087, 0.0077, 0.0032, 0.0032, 0.0025], [0.818, 0.1107, 0.0359, 0.015, 0.0059, 0.0016, 0.0014, 0.0011], [0.0066, 0.0045, 0.0027, 0.0019, 0.0017, 0.0015, 0.0014, 0.0013], [0.0725, 0.0565, 0.0413, 0.0208, 0.0143, 0.0134, 0.0104, 0.0104], [0.0061, 0.0044, 0.0029, 0.0027, 0.0025, 0.0024, 0.0024, 0.0024], [0.0239, 0.0211, 0.0155, 0.0145, 0.0128, 0.012, 0.0073, 0.0073], [0.0141, 0.0097, 0.0091, 0.0075, 0.0071, 0.0059, 0.0059, 0.0055], [0.0166, 0.0156, 0.0138, 0.0121, 0.0121, 0.0107, 0.0107, 0.0078], [0.016, 0.011, 0.0066, 0.0059, 0.0049, 0.004, 0.004, 0.0022], [0.0534, 0.0153, 0.0127, 0.0077, 0.006, 0.0056, 0.0056, 0.005], [0.0073, 0.0044, 0.0037, 0.003, 0.0025, 0.0024, 0.0024, 0.0024], [0.0054, 0.0033, 0.0027, 0.0024, 0.0019, 0.0019, 0.0015, 0.0015], [0.0057, 0.0027, 0.0024, 0.0022, 0.0019, 0.0017, 0.0017, 0.0017], [0.007, 0.0035, 0.0031, 0.002, 0.0019, 0.0018, 0.0016, 0.0016], [0.002, 0.0014, 0.0013, 0.0011, 0.0011, 0.0011, 0.0011, 0.0009], [0.0106, 0.0073, 0.0041, 0.0039, 0.0032, 0.002, 0.0018, 0.0017], [0.0075, 0.0018, 0.0015, 0.0015, 0.0014, 0.0013, 0.0013, 0.0012], [0.0077, 0.003, 0.0022, 0.0022, 0.0017, 0.0016, 0.0014, 0.0013], [0.0038, 0.0022, 0.0019, 0.0018, 0.0018, 0.0018, 0.0017, 0.0017], [0.0079, 0.0051, 0.0045, 0.0042, 0.0037, 0.0023, 0.0023, 0.0023], [0.0018, 0.0018, 0.0017, 0.0014, 0.0014, 0.0013, 0.0013, 0.0012], [0.0026, 0.0019, 0.0015, 0.0015, 0.0014, 0.0013, 0.0012, 0.0012], [0.0081, 0.0076, 0.0052, 0.0049, 0.0036, 0.0032, 0.003, 0.0028], [0.0042, 0.0037, 0.0037, 0.0027, 0.0026, 0.0026, 0.0021, 0.002], [0.0051, 0.0035, 0.0029, 0.0021, 0.0018, 0.0017, 0.0015, 0.0015], [0.0029, 0.0024, 0.0015, 0.0014, 0.0014, 0.0012, 0.0012, 0.0012], [0.0114, 0.0047, 0.0047, 0.0035, 0.0029, 0.0025, 0.0025, 0.0022], [0.0111, 0.0082, 0.0053, 0.0039, 0.0039, 0.0039, 0.0036, 0.0034], [0.0131, 0.0131, 0.007, 0.007, 0.0066, 0.0058, 0.0048, 0.0042], [0.0288, 0.0225, 0.0175, 0.0145, 0.0136, 0.012, 0.0106, 0.0094], [0.0254, 0.0211, 0.0211, 0.0198, 0.0113, 0.01, 0.0093, 0.0093], [0.0261, 0.0203, 0.0148, 0.0123, 0.0123, 0.0109, 0.0085, 0.0079], [0.0939, 0.0882, 0.0324, 0.0305, 0.0223, 0.0185, 0.0077, 0.0068], [0.1357, 0.0389, 0.0343, 0.0303, 0.0162, 0.0105, 0.0098, 0.0077], [0.1962, 0.0598, 0.0386, 0.0301, 0.0234, 0.022, 0.0194, 0.0111], [0.3894, 0.0597, 0.0527, 0.0206, 0.0182, 0.0171, 0.0125, 0.0118], [0.8375, 0.0346, 0.0163, 0.0127, 0.0099, 0.0099, 0.0068, 0.0047], [0.8811, 0.0321, 0.0126, 0.0098, 0.0081, 0.0038, 0.0038, 0.0028], [0.9417, 0.0134, 0.0119, 0.0072, 0.0034, 0.003, 0.0026, 0.0025], [0.966, 0.0138, 0.0057, 0.0051, 0.0016, 0.0015, 0.0014, 0.0009], [0.9783, 0.0075, 0.0045, 0.0027, 0.0021, 0.0013, 0.0008, 0.0004], [0.968, 0.0065, 0.0058, 0.0058, 0.0031, 0.0024, 0.0021, 0.0007], [0.9592, 0.0137, 0.005, 0.005, 0.0039, 0.0027, 0.0027, 0.0007], [0.946, 0.0119, 0.0072, 0.0064, 0.0056, 0.0039, 0.0028, 0.001], [0.9326, 0.0067, 0.0067, 0.0055, 0.0041, 0.0032, 0.0026, 0.0022], [0.8798, 0.0142, 0.0086, 0.0067, 0.0043, 0.0041, 0.0036, 0.003], [0.7835, 0.0153, 0.0153, 0.0099, 0.0072, 0.006, 0.005, 0.0039], [0.7716, 0.015, 0.0133, 0.0125, 0.0117, 0.0097, 0.0076, 0.0059], [0.6598, 0.0372, 0.024, 0.0199, 0.0165, 0.01, 0.0088, 0.0083], [0.3725, 0.0733, 0.0346, 0.0306, 0.0253, 0.0154, 0.0144, 0.0127], [0.8475, 0.0372, 0.0165, 0.0129, 0.0078, 0.0057, 0.005, 0.0044], [0.8678, 0.049, 0.0159, 0.0109, 0.0075, 0.0046, 0.004, 0.0038], [0.9449, 0.0173, 0.0153, 0.005, 0.0039, 0.0039, 0.0021, 0.0016], [0.9479, 0.0153, 0.0135, 0.0044, 0.0034, 0.0027, 0.0027, 0.0018], [0.9714, 0.0095, 0.0074, 0.0031, 0.0027, 0.0021, 0.0009, 0.0009], [0.9837, 0.0058, 0.004, 0.0019, 0.0017, 0.0013, 0.001, 0.0001], [0.9811, 0.0085, 0.0035, 0.0028, 0.0013, 0.001, 0.001, 0.0002], [0.9809, 0.0096, 0.004, 0.0024, 0.0011, 0.0009, 0.0006, 0.0002], [0.9909, 0.0059, 0.0017, 0.0008, 0.0003, 0.0002, 0.0001, 0.0], [0.9969, 0.0019, 0.0007, 0.0003, 0.0001, 0.0, 0.0, 0.0], [0.9951, 0.0017, 0.0015, 0.0006, 0.0003, 0.0002, 0.0002, 0.0001], [0.9914, 0.0028, 0.0028, 0.0006, 0.0004, 0.0004, 0.0003, 0.0002]], "ranks": {"Kotlin": [232877, 206781, 191699, 69655, 120780, 167738, 193541, 215451, 180233, 199861, 199597, 180990, 196978, 214181, 238202, 206450, 209879, 150220, 170780, 188506, 186191, 64593, 64279, 145491, 100872, 17179, 6968, 24005, 7148, 6681, 12560, 27606, 16727, 2353, 1827, 746, 104, 112, 103, 42, 60, 64, 77, 100, 98, 145, 173, 184, 109, 186, 331, 199, 64, 78, 49, 27, 19, 17, 18, 18, 26, 35, 20]}}, {"pos": 532, "top": [["s", "a", ".", "o", ",", "i", "\u201d.", "er"], ["s", "sWith", "\u201d.", "\u201d,", ".", "a", "erweise", "s\u00f3"], ["s", ",", ".", "\u2013", "\u2026.", "\u2026", " \u2013", ";"], ["sWith", "s", "sik", "szeit", "erweise", "schaft", "sver", "sche"], ["s", "ed", "a", "sWith", "s\u00f3", "sik", "sche", "sver"], ["s", "sWith", "a", ",", ".", "ed", "s\u00f3", "sver"], ["s", ".", ",", "a", "ed", "sWith", "(Android", " Android"], ["s", ".", ",", "sWith", "(Android", " Android", "s\u00f3", "sak"], ["s", ".", ",", "!.", "\u201d.", "!\u201d.", "\u00bb.", ";."], ["s", ",", ".", "(Android", ";", " Android", "!.", ".Android"], ["s", ".", ",", "...", " Android", ";", "&nbsp", "a"], ["s", " Android", ".Android", "(Android", "sak", "sWith", "s\u00f3", "(android"], ["s", " Android", "(Android", ".Android", "sWith", "sak", "s\u00f3", "(android"], [",", "s", " Android", ".", "(Android", ".Android", "s\u00f3", "(android"], [",", "s", ".", " Android", "-style", ".Android", ";", " Europe"], ["s", " Android", ",", ".Android", "\u51ed\u501f\u7740", "(Android", " largely", "sak"], ["s", ",", " Android", ".Android", ".", "(Android", "a", "-esque"], [".Android", " Android", "(Android", "s", ".google", "sWith", "schaft", ","], [".Android", "(Android", " Android", ".google", "s", "sWith", "-esque", "\u4e3a\u5168\u7403"], ["(Android", ".Android", " Android", ".google", "sWith", "\u4e3a\u5168\u7403", " Africa", " globally"], [".Android", " Android", "(Android", ".google", " Africa", "Android", " heavily", "sWith"], [".Android", " Android", "(Android", " android", "ANDROID", "_android", "(android", "Android"], [".Android", " Android", "(Android", "Android", " android", "ANDROID", ".google", "_ANDROID"], [" Android", " ,", ".Android", " .", "Android", "(Android", " Africa", " Asia"], [" Android", ".Android", "(Android", "Android", "ANDROID", " android", "/android", " \r\n\r\n"], [" Android", ".Android", "(Android", "Android", " android", "ANDROID", "/android", "_ANDROID"], [" Android", ".Android", "(Android", " android", "Android", "ANDROID", "_android", "_ANDROID"], [" Android", ".Android", "Android", " ,", " android", "(Android", " --", "ANDROID"], [" Android", "Android", ".Android", " android", "(Android", "ANDROID", "/android", "_ANDROID"], [" Android", ".Android", " android", "(Android", "Android", " .", "ANDROID", " ,"], [" Android", " .", " android", ".Android", "(Android", " ,", "Android", " ..."], [" Android", " .", " ,", " android", " heavily", " modern", " ...", ".Android"], [" .", " Android", " ,", " heavily", " famously", " but", " android", " ..."], [" Android", " android", "(Android", ".Android", "\u2014but", "-era", "Android", " famously"], [" Android", " android", "(Android", ".Android", "Android", " tech", " smartphone", "/android"], [" Android", "(Android", " android", ".Android", "Android", "\u2014but", "-era", "/android"], [" Android", "(Android", "Android", " android", ".Android", "/android", "android", "ANDROID"], [" Android", "Android", "(Android", " android", ".Android", "/android", "android", "ANDROID"], [" Android", " android", "Android", "(Android", ".Android", "/android", "android", "ANDROID"], [" Android", " android", "Android", "(Android", ".Android", "/android", "android", "ANDROID"], [" Android", "Android", " android", "(Android", ".Android", "/android", "android", "-android"], [" Android", "Android", " android", "(Android", ".Android", "/android", "android", "-android"], [" Android", "Android", " android", "(Android", ".Android", "/android", "-android", "android"], [" Android", "Android", " android", "(Android", ".Android", "/android", "-android", "android"], [" Android", " android", "Android", ".Android", "(Android", "/android", " iOS", "ANDROID"], [" Android", " android", ".Android", "(Android", " limited", " mainstream", "/android", " iOS"], [" Android", "(Android", " android", ".Android", "/android", " mainstream", " limited", " iOS"], [" Android", ").", " mainstream", "),", " Limited", " limited", " android", ".Android"], [" Android", "/android", " APK", " android", ".Android", " mainstream", "(Android", ")."], [" Android", "/android", " mainstream", " android", "(Android", ".Android", " APK", "ANDROID"], [" Android", "/android", ".Android", " APK", "(Android", "ANDROID", "Android", " android"], [" Android", ".Android", " JVM", "/android", "(Android", " APK", "Android", "ANDROID"], [" Android", "),", ".Android", "/android", "!),", "Android", " JVM", "ANDROID"], [" Android", "/android", "Android", ".Android", "android", " android", "ANDROID", "(Android"], [" Android", "/android", "Android", " android", ".Android", "android", "(Android", "ANDROID"], [" Android", " JVM", "/android", "Android", "android", " android", "(Android", "ANDROID"], [" Android", "Android", "/android", " android", "android", "(Android", ".Android", "_android"], [" Android", "Android", " android", " JVM", "/android", "(Android", " APK", " yet"], [" Android", "Android", " android", "/android", " JVM", " APK", "android", " yet"], [" Android", " JVM", " yet", " Kotlin", " APK", " WebView", " SDK", " Java"], [" yet", " Android", " JVM", " ARM", " APK", " ART", " Kotlin", " runtime"], ["),", " yet", " ARM", " ART", " ),", " JVM", " runtime", " SDK"], ["),", " ARM", " yet", " ART", ")", " APK", " JVM", " SDK"]], "p": [[0.9058, 0.0656, 0.0129, 0.0042, 0.0039, 0.0015, 0.0004, 0.0004], [0.7998, 0.0101, 0.0089, 0.0083, 0.0039, 0.0033, 0.0027, 0.0022], [0.313, 0.313, 0.2151, 0.0544, 0.0257, 0.0156, 0.0114, 0.0042], [0.0512, 0.0292, 0.0227, 0.0138, 0.0122, 0.0069, 0.0069, 0.0057], [0.9912, 0.002, 0.001, 0.0005, 0.0001, 0.0001, 0.0001, 0.0001], [0.9538, 0.003, 0.0027, 0.0016, 0.0015, 0.0014, 0.0012, 0.0008], [0.998, 0.001, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.984, 0.0052, 0.0012, 0.0011, 0.0007, 0.0004, 0.0003, 0.0002], [0.528, 0.4112, 0.0382, 0.0029, 0.0026, 0.002, 0.0007, 0.0006], [0.445, 0.445, 0.0389, 0.0019, 0.0014, 0.0013, 0.0011, 0.001], [0.6572, 0.1466, 0.1466, 0.0042, 0.0037, 0.0016, 0.0013, 0.0011], [0.0935, 0.0533, 0.0252, 0.0222, 0.0119, 0.0105, 0.0068, 0.0064], [0.0357, 0.0357, 0.0204, 0.0191, 0.0132, 0.008, 0.0075, 0.0062], [0.1468, 0.0289, 0.0199, 0.0165, 0.0128, 0.0106, 0.0069, 0.0053], [0.1766, 0.061, 0.0288, 0.0088, 0.0047, 0.0044, 0.0029, 0.0025], [0.0341, 0.0063, 0.0063, 0.0063, 0.003, 0.0028, 0.002, 0.0019], [0.4329, 0.0852, 0.0074, 0.0054, 0.0037, 0.0026, 0.0021, 0.002], [0.0262, 0.0192, 0.018, 0.0169, 0.0058, 0.0055, 0.0024, 0.0024], [0.0462, 0.0338, 0.0232, 0.0071, 0.0049, 0.0049, 0.0043, 0.003], [0.0385, 0.0362, 0.0194, 0.0076, 0.0036, 0.0032, 0.0028, 0.0028], [0.0373, 0.0329, 0.0241, 0.0065, 0.0047, 0.0035, 0.0031, 0.0029], [0.2753, 0.2586, 0.1384, 0.0094, 0.0083, 0.0073, 0.0069, 0.0061], [0.298, 0.298, 0.0587, 0.0203, 0.0096, 0.0096, 0.0055, 0.0055], [0.0915, 0.0807, 0.0555, 0.0231, 0.0149, 0.0124, 0.0066, 0.0055], [0.192, 0.1804, 0.124, 0.0907, 0.0168, 0.0158, 0.009, 0.0079], [0.7019, 0.1382, 0.074, 0.024, 0.0187, 0.0061, 0.0044, 0.0042], [0.7207, 0.1419, 0.0461, 0.0192, 0.018, 0.0052, 0.0049, 0.0043], [0.5271, 0.0591, 0.0382, 0.0317, 0.0279, 0.0232, 0.0085, 0.0075], [0.7087, 0.0901, 0.0619, 0.0376, 0.0293, 0.0054, 0.0045, 0.0027], [0.7722, 0.0525, 0.0409, 0.0384, 0.0299, 0.0032, 0.0026, 0.0025], [0.7384, 0.0535, 0.0368, 0.0223, 0.0223, 0.0144, 0.0087, 0.0064], [0.3213, 0.172, 0.0594, 0.0264, 0.0181, 0.0181, 0.0097, 0.0086], [0.4167, 0.1271, 0.1194, 0.0134, 0.0126, 0.0111, 0.0098, 0.0092], [0.4883, 0.0661, 0.0275, 0.0167, 0.0167, 0.0122, 0.0101, 0.0101], [0.6023, 0.0719, 0.0494, 0.0234, 0.0142, 0.0104, 0.0104, 0.0067], [0.612, 0.0606, 0.0416, 0.0237, 0.0185, 0.0077, 0.0053, 0.0053], [0.7284, 0.087, 0.0386, 0.0363, 0.0301, 0.0104, 0.0059, 0.0049], [0.8624, 0.0379, 0.0334, 0.0295, 0.0139, 0.0043, 0.004, 0.0017], [0.9204, 0.0216, 0.0191, 0.0169, 0.008, 0.0031, 0.0023, 0.001], [0.9274, 0.0218, 0.0192, 0.015, 0.0062, 0.003, 0.002, 0.0006], [0.9414, 0.0221, 0.0134, 0.0134, 0.0038, 0.0016, 0.0012, 0.0004], [0.963, 0.0137, 0.0094, 0.0065, 0.0035, 0.0013, 0.0007, 0.0005], [0.9504, 0.0154, 0.012, 0.0093, 0.0064, 0.0016, 0.0013, 0.0008], [0.9427, 0.0196, 0.0119, 0.0105, 0.0072, 0.0015, 0.0009, 0.0008], [0.9461, 0.0153, 0.0105, 0.0082, 0.0072, 0.0019, 0.0008, 0.0008], [0.9337, 0.0081, 0.0059, 0.0056, 0.0034, 0.003, 0.0022, 0.0017], [0.8461, 0.0128, 0.0113, 0.0088, 0.0083, 0.0083, 0.0042, 0.0035], [0.7019, 0.0212, 0.0146, 0.0146, 0.0137, 0.0121, 0.0094, 0.0078], [0.7353, 0.0184, 0.0184, 0.0119, 0.0099, 0.0099, 0.0082, 0.0082], [0.6991, 0.0225, 0.0198, 0.0164, 0.0164, 0.0154, 0.0128, 0.012], [0.6918, 0.0533, 0.0471, 0.0304, 0.0286, 0.0196, 0.0127, 0.0093], [0.571, 0.0726, 0.0365, 0.0284, 0.0284, 0.0221, 0.0195, 0.0152], [0.5961, 0.0807, 0.0554, 0.0432, 0.0432, 0.0217, 0.014, 0.0124], [0.7399, 0.1135, 0.0325, 0.0253, 0.0253, 0.0197, 0.0093, 0.0082], [0.846, 0.0541, 0.0372, 0.0137, 0.0137, 0.0094, 0.0065, 0.0044], [0.8217, 0.0464, 0.0409, 0.0281, 0.0133, 0.0091, 0.0091, 0.0063], [0.9215, 0.0315, 0.0149, 0.0131, 0.009, 0.0048, 0.0014, 0.0011], [0.8591, 0.0377, 0.0157, 0.0157, 0.0157, 0.0084, 0.0084, 0.0074], [0.878, 0.034, 0.0161, 0.0111, 0.0111, 0.0086, 0.0067, 0.0059], [0.2778, 0.2452, 0.2452, 0.062, 0.0228, 0.0201, 0.0115, 0.0115], [0.291, 0.2, 0.1375, 0.0573, 0.0446, 0.0446, 0.037, 0.0327], [0.3898, 0.1841, 0.1434, 0.0465, 0.0341, 0.0182, 0.0133, 0.0111], [0.921, 0.0191, 0.0169, 0.0149, 0.0038, 0.002, 0.002, 0.0013]], "ranks": {"Kotlin": [38447, 25152, 23528, 531, 1554, 2202, 2060, 6398, 7658, 11797, 8121, 2817, 1778, 7378, 34281, 15788, 12823, 6261, 10623, 25704, 13806, 573, 800, 11429, 2241, 264, 390, 1236, 396, 409, 881, 2564, 3446, 494, 666, 760, 155, 157, 89, 73, 133, 123, 129, 195, 236, 547, 473, 478, 300, 587, 400, 172, 58, 35, 20, 10, 12, 10, 11, 4, 7, 24, 16]}}, {"pos": 533, "top": [[",", ".", "s", "o", " \u2013", "a", "er", "\u2013"], ["s", ",", "\u2013", " \u2013", "en", ".", " \u2013,", "**\u2013"], [",", ".", "\u2013", "s", " \u2013", "\u2026", ".\u2013", ";"], ["\u52a0\u62ff\u5927", " Shemale", "---</", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\u5404\u79cd\u5404\u6837\u7684", "-------------</", "\u52c7\u5f80\u76f4\u524d", " YYS"], ["s", "en", "\u52c7\u5f80\u76f4\u524d", "\u65b0\u52a0\u5761", " \"@", "\u4e8b\u534a\u529f\u500d", "\u52a0\u62ff\u5927", "\u76f8\u8f85\u76f8\u6210"], ["\u4e8b\u534a\u529f\u500d", "s", "\u52c7\u5f80\u76f4\u524d", "\u65b0\u52a0\u5761", "\u76f8\u8f85\u76f8\u6210", "\u8eab\u4e34\u5176\u5883", "\u5404\u79cd\u5404\u6837\u7684", "\u52a0\u62ff\u5927"], ["s", "\u4e0d\u53ef\u601d\u8bae", "\u52c7\u5f80\u76f4\u524d", "\u8eab\u4e34\u5176\u5883", "\u4e8b\u534a\u529f\u500d", "en", " <![", "\u0647"], ["s", "\u52c7\u5f80\u76f4\u524d", "\u4e8b\u534a\u529f\u500d", "\u8eab\u4e34\u5176\u5883", "\u4e0d\u53ef\u601d\u8bae", "\u76f8\u8f85\u76f8\u6210", "\u8033\u719f\u80fd\u8be6", "en"], ["\u52c7\u5f80\u76f4\u524d", "s", "!\u201d.", "\u4e8b\u534a\u529f\u500d", "\u8eab\u4e34\u5176\u5883", "\u4e0d\u53ef\u601d\u8bae", "**!", "!\u201d"], ["\u52c7\u5f80\u76f4\u524d", "\u4e8b\u534a\u529f\u500d", "\u4e0d\u53ef\u601d\u8bae", "\u8eab\u4e34\u5176\u5883", "\u76f8\u8f85\u76f8\u6210", "\u8033\u719f\u80fd\u8be6", "\u5162\u5162\u4e1a\u4e1a", "s"], ["s", ",", "\u52c7\u5f80\u76f4\u524d", "\u4e0d\u53ef\u601d\u8bae", "\u8eab\u4e34\u5176\u5883", "\u4e8b\u534a\u529f\u500d", "en", "\u76f8\u8f85\u76f8\u6210"], ["\u52c7\u5f80\u76f4\u524d", "s", "\u4e8b\u534a\u529f\u500d", "\u4e0d\u53ef\u601d\u8bae", "\u8eab\u4e34\u5176\u5883", "\u76f8\u8f85\u76f8\u6210", "\u8033\u719f\u80fd\u8be6", "\u52a0\u62ff\u5927"], ["\u52c7\u5f80\u76f4\u524d", "\u4e8b\u534a\u529f\u500d", "\u52a0\u62ff\u5927", "\u76f8\u8f85\u76f8\u6210", "\u4e0d\u53ef\u601d\u8bae", "\u8033\u719f\u80fd\u8be6", "\u8eab\u4e34\u5176\u5883", "\u5162\u5162\u4e1a\u4e1a"], ["\u52c7\u5f80\u76f4\u524d", "\u52a0\u62ff\u5927", "\u4e8b\u534a\u529f\u500d", "\u4e0d\u53ef\u601d\u8bae", "\u76f8\u8f85\u76f8\u6210", "\u65b0\u52a0\u5761", "\u8eab\u4e34\u5176\u5883", "\u8033\u719f\u80fd\u8be6"], ["\u4e0d\u53ef\u601d\u8bae", "\u52c7\u5f80\u76f4\u524d", "\u8eab\u4e34\u5176\u5883", "\u52a0\u62ff\u5927", "\u76f8\u8f85\u76f8\u6210", "\u4e8b\u534a\u529f\u500d", " savvy", " touted"], [" savvy", " touted", " arguably", "\u4e0d\u53ef\u601d\u8bae", "\u52c7\u5f80\u76f4\u524d", " sprawling", " myriad", "aix"], ["\u52c7\u5f80\u76f4\u524d", " savvy", " touted", "\u4e0d\u53ef\u601d\u8bae", "s", "\u8eab\u4e34\u5176\u5883", " arguably", " sprawling"], ["\u52c7\u5f80\u76f4\u524d", "\u52a0\u62ff\u5927", "\u4e0d\u53ef\u601d\u8bae", "\u8033\u719f\u80fd\u8be6", "\u65b0\u52a0\u5761", "\u4e8b\u534a\u529f\u500d", " savvy", "\u8eab\u4e34\u5176\u5883"], ["\u52c7\u5f80\u76f4\u524d", " Gabrie", "\u52e4\u52e4\u6073\u6073", "\u4e8b\u534a\u529f\u500d", "\u4e0d\u53ef\u601d\u8bae", " touted", " savvy", "\u8033\u719f\u80fd\u8be6"], ["\u4e0d\u53ef\u601d\u8bae", "\u52c7\u5f80\u76f4\u524d", " myriad", "\u52a8\u8f84", "\u62e5\u6709\u7740", " arguably", " touted", " savvy"], [" myriad", "\u4e0d\u53ef\u601d\u8bae", " swiftly", " burgeoning", "\u52c7\u5f80\u76f4\u524d", " sprawling", " savvy", "\u62e5\u6709\u7740"], [" ;;^", "\u52c7\u5f80\u76f4\u524d", "\u4e0d\u53ef\u601d\u8bae", "\u62e5\u6709\u7740", "\u5f88\u591a\u95ee\u9898", "\u52a8\u8f84", "\u4e8b\u534a\u529f\u500d", "\u5750\u62e5"], ["\u62e5\u6709\u7740", "\u4e0d\u53ef\u601d\u8bae", "\u52a8\u8f84", "\u60f3\u65b9", "\u52c7\u5f80\u76f4\u524d", " myriad", "\u5750\u62e5", "\u5f88\u591a\u95ee\u9898"], [" myriad", "\u4e0d\u53ef\u601d\u8bae", " swiftly", "\u62e5\u6709\u7740", " arguably", " {{--<", "\u60f3\u65b9", " outright"], ["\u62e5\u6709\u7740", " myriad", " hugely", "\u5373\u4fbf", " swiftly", " pricey", "\u51c6\u786e\u628a\u63e1", "\u4e0d\u53ef\u601d\u8bae"], ["\u62e5\u6709\u7740", "\u5750\u62e5", "iha", " **'", " pricey", " MEDIATEK", " \u0627\u0631\u0627\u0626", "\u8270"], ["\u6301\u4e4b\u4ee5", "\u62e5\u6709\u7740", " skyrocket", " pricey", "\u5750\u62e5", "\u8270", "iha", " gritty"], [" arguably", "\r\n\r\n", " myriad", " wildly", " **", " hugely", " sprawling", " skyrocket"], [" arguably", " myriad", " wildly", "\r\n\r\n", " barely", " hugely", " heavily", " massive"], ["...**", " **", " massive", " wildly", " myriad", " barely", " skyrocket", " heavily"], [" even", " still", " ...", " barely", " massive", " much", " more", " heavily"], [" still", " even", " much", " more", " massive", " heavily", " barely", " modern"], [" even", " still", " much", " heavily", " massive", " more", " many", " only"], [" heavily", " even", " massive", " still", " massively", " huge", " aggressively", " slower"], [" heavily", " massive", " aggressively", " still", " massively", " lingering", " notoriously", " unpredictable"], [" notoriously", " slower", " heavily", " still", " unpredictable", " sluggish", " aggressively", " massive"], [" sluggish", " unpredictable", " slower", " notoriously", " inevitable", " aggressively", " heavily", " massive"], [" slower", " unpredictable", " inevitable", " notoriously", " sluggish", " inevitably", "\u2014even", " slow"], [" unpredictable", " slower", " inevitable", " sluggish", "\u2014even", " lingering", " slow", " notoriously"], [" unpredictable", " inevitable", " slower", " sluggish", " delays", " lingering", "\u2014even", " unavoidable"], [" unpredictable", " delays", " slower", " sluggish", " slow", " inevitable", " relentless", " massive"], [" unpredictable", " delays", " bursts", " erratic", " inevitable", " fragmentation", " spikes", " sluggish"], [" unpredictable", " bursts", " spikes", " delays", " erratic", " glitches", " latency", " fragmentation"], [" unpredictable", " bursts", " spikes", " delays", " unavoidable", " latency", " inevitable", " erratic"], [" unpredictable", " bursts", " delays", " spikes", " unavoidable", " interruptions", " erratic", " fragmentation"], [" unpredictable", " bursts", " spikes", " unavoidable", " delays", " erratic", " inevitable", " glitches"], [" unpredictable", " bursts", " spikes", " unavoidable", " glitches", " inevitable", " erratic", " delays"], [" bursts", " unpredictable", " spikes", " delays", " periodic", " glitches", " intermittent", " unavoidable"], [" bursts", " spikes", " unpredictable", " interruptions", " glitches", " periodic", " disruptions", " intermittent"], [" bursts", " unpredictable", " spikes", " interruptions", " glitches", " erratic", " intermittent", " unpredict"], [" interruptions", " bursts", " unpredictable", " glitches", " spikes", " unpredict", " intermittent", " erratic"], [" interruptions", " bursts", " unpredictable", " intermittent", " spikes", " sudden", " pauses", " periodic"], [" interruptions", " unpredictable", " spikes", " bursts", " sudden", " intermittent", " pauses", " latency"], [" unpredictable", " interruptions", " spikes", " unpredict", " pauses", " bursts", " latency", " sudden"], [" garbage", " GC", " unpredictable", "GC", " JVM", " unpredict", " memory", " allocations"], [" garbage", "\u5783\u573e", " GC", "GC", "(gc", "gc", " trash", " gc"], [" GC", " garbage", "GC", "gc", "(gc", " gc", "_gc", "\u5783\u573e"], [" GC", "GC", " garbage", " gc", "gc", "(gc", "_gc", ".gc"], [" GC", "GC", " garbage", " gc", "gc", "(gc", "_GC", "_gc"], [" GC", "GC", " garbage", "gc", " allocations", " gc", " pauses", "_GC"], [" pause", " GC", " pauses", " Pause", " garbage", "\u505c\u987f", "Pause", " unpredictable"], [" stop", " pause", " Stop", " pauses", " GC", " Pause", "\u505c\u987f", "Stop"], [" stop", " pause", " GC", " Stop", " ST", " pauses", " garbage", " allocation"]], "p": [[0.5797, 0.2133, 0.0692, 0.0611, 0.0255, 0.0154, 0.012, 0.0094], [0.4587, 0.3572, 0.0583, 0.0178, 0.0108, 0.0108, 0.0074, 0.007], [0.9294, 0.0463, 0.015, 0.003, 0.002, 0.0008, 0.0007, 0.0005], [0.0533, 0.0285, 0.0268, 0.0196, 0.0173, 0.0127, 0.0119, 0.0112], [0.6398, 0.0764, 0.0718, 0.0435, 0.0384, 0.0206, 0.017, 0.0063], [0.1919, 0.1591, 0.1093, 0.1093, 0.055, 0.026, 0.0229, 0.0202], [0.8521, 0.0274, 0.0274, 0.0213, 0.0156, 0.0107, 0.0033, 0.0029], [0.4933, 0.1815, 0.1413, 0.0405, 0.038, 0.0131, 0.0051, 0.0048], [0.2507, 0.152, 0.1184, 0.0982, 0.0464, 0.0319, 0.0117, 0.0117], [0.369, 0.1743, 0.1198, 0.0993, 0.0566, 0.0222, 0.0173, 0.0143], [0.967, 0.0084, 0.0048, 0.0033, 0.0027, 0.0023, 0.0019, 0.001], [0.28, 0.1925, 0.1243, 0.0625, 0.0356, 0.0295, 0.0191, 0.0179], [0.3613, 0.1035, 0.0806, 0.052, 0.0297, 0.0217, 0.0169, 0.014], [0.1267, 0.105, 0.0438, 0.0182, 0.0171, 0.0134, 0.0125, 0.0111], [0.0839, 0.074, 0.0199, 0.0121, 0.0107, 0.0094, 0.0069, 0.0065], [0.0285, 0.0267, 0.0222, 0.0196, 0.0173, 0.0126, 0.0111, 0.0087], [0.0248, 0.0193, 0.011, 0.011, 0.011, 0.0086, 0.0059, 0.0046], [0.0171, 0.0059, 0.0052, 0.0052, 0.0043, 0.0041, 0.0036, 0.0034], [0.006, 0.0044, 0.0039, 0.0034, 0.0034, 0.003, 0.0028, 0.0025], [0.005, 0.0036, 0.0034, 0.0022, 0.0021, 0.002, 0.0018, 0.0017], [0.0061, 0.0051, 0.0037, 0.0031, 0.0024, 0.002, 0.0019, 0.0018], [0.0038, 0.0036, 0.0026, 0.0022, 0.0018, 0.0014, 0.0013, 0.0012], [0.0034, 0.0032, 0.0021, 0.0017, 0.0014, 0.0014, 0.0013, 0.0013], [0.0045, 0.0037, 0.0023, 0.0021, 0.0018, 0.0017, 0.0017, 0.0017], [0.0032, 0.003, 0.002, 0.002, 0.0016, 0.0016, 0.0014, 0.0014], [0.0042, 0.0024, 0.0022, 0.002, 0.0019, 0.0019, 0.0016, 0.0016], [0.003, 0.003, 0.0022, 0.0019, 0.0018, 0.0017, 0.0016, 0.0016], [0.0082, 0.0082, 0.0064, 0.0053, 0.0036, 0.0036, 0.0034, 0.0032], [0.0143, 0.0143, 0.0134, 0.0098, 0.0067, 0.0063, 0.0059, 0.0056], [0.0347, 0.0326, 0.0164, 0.0145, 0.0128, 0.0106, 0.01, 0.0088], [0.0349, 0.0349, 0.0256, 0.0187, 0.0176, 0.0176, 0.0155, 0.0137], [0.0535, 0.0443, 0.0324, 0.0209, 0.0197, 0.0185, 0.0163, 0.0144], [0.0472, 0.0417, 0.0237, 0.0174, 0.0163, 0.0144, 0.0135, 0.0112], [0.0397, 0.0291, 0.0273, 0.0121, 0.0121, 0.0107, 0.0107, 0.0094], [0.0253, 0.0174, 0.012, 0.012, 0.0106, 0.0099, 0.0077, 0.0077], [0.024, 0.024, 0.0226, 0.0187, 0.0187, 0.0155, 0.0113, 0.0094], [0.0423, 0.0398, 0.0374, 0.0374, 0.0177, 0.0146, 0.0146, 0.0137], [0.0376, 0.0353, 0.0275, 0.0243, 0.0214, 0.0167, 0.0147, 0.013], [0.0626, 0.043, 0.0357, 0.0261, 0.0216, 0.0203, 0.0191, 0.0179], [0.1316, 0.0333, 0.0276, 0.0244, 0.0167, 0.0157, 0.0139, 0.0139], [0.1004, 0.0474, 0.0419, 0.0393, 0.0306, 0.0211, 0.0145, 0.0145], [0.1799, 0.0584, 0.0229, 0.0178, 0.0167, 0.013, 0.013, 0.0122], [0.17, 0.0587, 0.0356, 0.0335, 0.0245, 0.0216, 0.0149, 0.0149], [0.28, 0.1096, 0.0403, 0.0379, 0.0295, 0.0139, 0.0139, 0.0131], [0.188, 0.188, 0.0419, 0.0394, 0.0225, 0.0145, 0.0136, 0.0136], [0.2156, 0.1154, 0.0399, 0.0352, 0.0227, 0.0166, 0.0156, 0.0138], [0.212, 0.1286, 0.0688, 0.0392, 0.0346, 0.0253, 0.0238, 0.0174], [0.2566, 0.1212, 0.0833, 0.0326, 0.0306, 0.0306, 0.0224, 0.0211], [0.2959, 0.0902, 0.0547, 0.04, 0.0332, 0.0275, 0.0214, 0.0189], [0.2366, 0.087, 0.0722, 0.0678, 0.0496, 0.0341, 0.0207, 0.0194], [0.1771, 0.1143, 0.0575, 0.0395, 0.0349, 0.0211, 0.0187, 0.0165], [0.4869, 0.0747, 0.0619, 0.0582, 0.0375, 0.0275, 0.0214, 0.0167], [0.2045, 0.1805, 0.1593, 0.0586, 0.0486, 0.0486, 0.0403, 0.0355], [0.3203, 0.1335, 0.081, 0.0631, 0.0557, 0.0491, 0.0433, 0.0338], [0.7585, 0.1318, 0.0294, 0.0123, 0.0108, 0.0045, 0.0035, 0.0031], [0.9778, 0.0139, 0.0075, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001], [0.8938, 0.0734, 0.027, 0.0017, 0.0013, 0.0008, 0.0008, 0.0005], [0.9267, 0.0592, 0.0055, 0.0026, 0.0026, 0.0014, 0.0007, 0.0007], [0.9493, 0.0417, 0.0039, 0.0013, 0.0013, 0.0009, 0.0008, 0.0005], [0.9307, 0.0361, 0.0219, 0.0018, 0.0016, 0.0016, 0.0014, 0.0007], [0.3402, 0.2649, 0.1821, 0.046, 0.0217, 0.014, 0.0124, 0.0116], [0.4345, 0.2987, 0.097, 0.0458, 0.0357, 0.0191, 0.0116, 0.0058], [0.4358, 0.1817, 0.1817, 0.0972, 0.0191, 0.0169, 0.0132, 0.009]], "ranks": {"Kotlin": [188573, 86618, 51820, 3165, 3425, 9850, 10480, 15345, 28824, 50852, 49934, 18648, 13302, 18580, 89598, 132733, 103336, 101554, 125679, 195525, 214345, 169182, 194277, 223808, 196569, 111857, 103400, 144544, 132919, 102049, 145214, 153106, 167642, 153875, 188929, 190814, 151979, 148739, 141282, 79551, 99986, 90831, 41475, 27497, 33040, 75741, 48289, 49347, 40954, 29453, 38771, 14851, 1457, 617, 292, 188, 139, 180, 106, 77, 195, 292, 254]}}, {"pos": 534, "top": [[",", ".", "o", ";", "-", "\u2013", "a", "e"], [",", "er", ".", "\u2013", "\u2011", ";", "y", "e"], [",", ".", "\u2026", "\u2013", ";", "!", "er", "?"], ["\u52a0\u62ff\u5927", "\uc3df", " Blowjob", "\uad49\uc7a5", "cuci", "erias", "ting", "pered"], ["er", "e", "st", "ting", "ser", "t", "y", "o"], ["er", "ting", "ar", "ful", "t", "care", "e", "a"], ["ting", "er", "ful", "t", "e", "ment", "ted", "stop"], ["ting", "ful", "ment", "able", "mate", "bie", "ded", "fully"], ["ting", "ful", "ded", "mate", "bie", "ment", "pping", "!--"], ["ful", "ting", "fully", "ded", "ment", "rd", "ably", "!--"], ["ful", "ting", "&nbsp", "ment", "ably", "able", "fully", "ive"], ["ting", "ful", "ive", "ment", "pping", "ingly", "mate", "lessly"], ["ful", "ting", "ive", "ment", "ingly", "pping", "mate", "fully"], ["ful", "ting", "ingly", "pping", "mate", "fully", "ment", "ded"], ["ful", "fully", "ting", "ingly", "pping", "ably", "ment", "ded"], ["ful", "fully", "ingly", "ting", "es", "pping", "ably", "ish"], ["ful", "fully", "e", "ingly", "o", "ting", "es", "ish"], ["ful", "ingly", "fully", "pping", "ting", "ish", "es", "o"], ["ful", "pping", "ingly", "lessly", "fully", "nings", "ish", "mate"], ["ful", "pping", "ingly", "lessly", "fully", "ably", "nings", "kick"], ["ful", "\u90a3", "fully", "pping", "\u52a0", "ingly", "est", "\u4e00"], ["pping", "ivin", "ful", "pered", "edom", "buster", "\u5b89\u606f", " '//"], ["ful", "pping", "nings", "buster", "ingly", "fully", "lessly", "ish"], ["ful", "fully", "-&", "--", "ting", "fail", "ive", "nings"], ["-&", "--", "\u4e00", "\u90a3", "ful", "nings", "\u52a0", "fully"], ["-**", " -**", "\u90a3", "\u548c", "\u505c", "\u6b7b", "pping", "\u5927"], ["-**", "-stop", "uptime", "ware", "--)", "fires", "shutdown", "pping"], ["--", " --", "\u2011", "ful", "fully", "-&", "ably", "ware"], ["kill", "ware", "\u2011", "-stop", "uptime", "dead", "-time", "ful"], ["-**", "kill", "-stop", "**-", "ware", " -**", "dead", "restart"], ["kill", "-stop", "es", "dead", "ware", "-time", "time", "less"], ["kill", "es", "-stop", "less", "time", "ks", "stop", " Restart"], ["kill", "-stop", "time", "restart", "stop", "less", " Restart", "ware"], ["\u2011", "kill", "-stop", "uptime", "restart", "shutdown", "pause", "ware"], ["\u2011", "pause", "-stop", "uptime", "kill", "-**", "Pause", "shutdown"], ["\u2011", "pause", "-stop", "uptime", "shutdown", "Pause", "kill", "restart"], ["pause", "uptime", " Pause", "\u2011", "Pause", "-stop", "\u505c\u987f", "shutdown"], [" Pause", "pause", "-stop", "\u2011", "Pause", "shutdown", "\u505c\u987f", " Shutdown"], ["pause", " pauses", " Pause", "\u505c\u987f", "Pause", " pause", "\u6682\u505c", "-stop"], ["pause", "\u505c\u987f", " Pause", " pauses", " pause", "Shutdown", "\u6682\u505c", "Pause"], ["pause", " pauses", "\u6682\u505c", " pause", " Pause", "\u505c\u987f", "Pause", "_pause"], [" pauses", " pause", " Pause", "pause", "\u505c\u987f", "\u6682\u505c", "Pause", "_pause"], [" pauses", " pause", " Pause", "pause", "Pause", "\u6682\u505c", "\u505c\u987f", " shutdown"], [" Pause", " pause", "pause", " pauses", "Pause", "\u6682\u505c", "\u505c\u987f", " interruptions"], [" pauses", " Pause", " pause", "pause", "Pause", " interruptions", "\u6682\u505c", "-stop"], [" pauses", " interruptions", " pause", " Pause", "pause", " durations", "-stop", "Pause"], [" interruptions", " pauses", " pause", " durations", "pause", " Pause", "-stop", "\u2011"], ["\u2011", " pauses", " interruptions", "-stop", " durations", " pause", "pause", "Pause"], [" interruptions", "\u2011", " pauses", " durations", "pause", "\u505c\u987f", "-stop", "Pause"], [" interruptions", " durations", " pauses", "-stop", "-**", "-death", "uptime", "pause"], ["-stop", " interruptions", " durations", "-duration", "-**", "-zero", "-death", " pauses"], [" interruptions", "restart", "-stop", "-gap", " pauses", "uptime", "pause", "-death"], ["-stop", " pauses", "uptime", "restart", "-gap", " interruptions", "Pause", "Milliseconds"], ["-stop", " pauses", " interruptions", "restart", "-gap", "-**", "-java", "-*"], ["-stop", "(stop", "-gap", "-java", " pauses", "-motion", " Pause", "restart"], ["\u5783\u573e", " garbage", "-gap", "-java", "-stop", " pauses", "(stop", "-thread"], [" GC", "GC", "\u5783\u573e", "gc", " garbage", " gc", "(gc", "_GC"], [" GC", "GC", "-stop", "gc", " gc", "(stop", "(gc", " pauses"], ["GC", " GC", "-stop", "gc", " gc", "(stop", " pauses", "-gap"], ["-world", " GC", "GC", "world", "\u4e16\u754c\u7684", "-the", "gc", " world"], ["-the", "-world", " pauses", "-stop", "-and", " pause", " worlds", "-you"], ["-the", "-world", "-and", " pauses", "-at", "-The", "-you", " pause"], ["-the", "-The", "-", "-and", "-you", "-world", " pauses", "-at"]], "p": [[0.8553, 0.1312, 0.004, 0.0019, 0.0011, 0.0008, 0.0006, 0.0005], [0.7569, 0.0548, 0.0455, 0.0276, 0.0229, 0.0062, 0.0062, 0.0045], [0.8852, 0.0933, 0.0068, 0.0068, 0.0013, 0.0006, 0.0005, 0.0005], [0.0619, 0.0048, 0.0048, 0.0042, 0.0029, 0.0029, 0.0026, 0.0024], [0.5207, 0.0294, 0.0229, 0.0202, 0.0202, 0.0167, 0.0157, 0.0157], [0.1163, 0.0355, 0.0215, 0.0178, 0.0157, 0.0157, 0.0148, 0.0148], [0.1403, 0.0851, 0.0355, 0.0229, 0.0229, 0.0178, 0.0123, 0.0115], [0.0864, 0.0762, 0.015, 0.0124, 0.011, 0.0103, 0.0097, 0.0091], [0.0499, 0.0222, 0.0143, 0.0119, 0.0105, 0.0072, 0.0068, 0.006], [0.023, 0.0169, 0.0096, 0.0085, 0.0075, 0.0066, 0.0066, 0.0058], [0.1401, 0.0963, 0.0427, 0.0377, 0.0294, 0.0229, 0.0167, 0.013], [0.0367, 0.0345, 0.0223, 0.0163, 0.0144, 0.0127, 0.0087, 0.0087], [0.0525, 0.0525, 0.0281, 0.0248, 0.0193, 0.0193, 0.011, 0.0067], [0.0523, 0.0433, 0.0192, 0.015, 0.0141, 0.0124, 0.011, 0.008], [0.0994, 0.0603, 0.0389, 0.0236, 0.0184, 0.0162, 0.0152, 0.0143], [0.0798, 0.0312, 0.0276, 0.0178, 0.013, 0.013, 0.0101, 0.0101], [0.2071, 0.0557, 0.0298, 0.028, 0.028, 0.0263, 0.0193, 0.0181], [0.102, 0.0353, 0.0292, 0.0177, 0.0167, 0.0156, 0.0089, 0.0089], [0.0365, 0.0172, 0.0134, 0.0092, 0.0072, 0.0056, 0.0053, 0.0038], [0.0217, 0.009, 0.009, 0.0075, 0.0048, 0.0035, 0.0035, 0.0024], [0.0335, 0.008, 0.0075, 0.0058, 0.0051, 0.0048, 0.004, 0.0035], [0.0069, 0.0023, 0.002, 0.0016, 0.0016, 0.0015, 0.0014, 0.0014], [0.0111, 0.0072, 0.0038, 0.0028, 0.0025, 0.0025, 0.0022, 0.0022], [0.0176, 0.0057, 0.0054, 0.005, 0.0042, 0.0037, 0.0033, 0.0031], [0.0072, 0.006, 0.0032, 0.003, 0.003, 0.0022, 0.0021, 0.0019], [0.0168, 0.0035, 0.0029, 0.0029, 0.0024, 0.0023, 0.002, 0.002], [0.0102, 0.004, 0.0029, 0.0027, 0.0021, 0.002, 0.0019, 0.0019], [0.0239, 0.0128, 0.005, 0.0044, 0.0042, 0.0034, 0.0029, 0.0027], [0.0088, 0.0073, 0.0064, 0.0061, 0.0037, 0.0037, 0.0037, 0.0032], [0.0266, 0.0221, 0.0092, 0.0076, 0.0067, 0.0063, 0.0059, 0.0052], [0.0213, 0.0176, 0.01, 0.0089, 0.0089, 0.0078, 0.0078, 0.0069], [0.0227, 0.0107, 0.0095, 0.0095, 0.0078, 0.0074, 0.0057, 0.0051], [0.0169, 0.014, 0.0066, 0.0058, 0.0055, 0.0051, 0.0048, 0.0048], [0.0302, 0.0092, 0.0081, 0.0052, 0.0036, 0.0034, 0.0032, 0.003], [0.0412, 0.0086, 0.0081, 0.0072, 0.0067, 0.0046, 0.0041, 0.0038], [0.0347, 0.0113, 0.0099, 0.0064, 0.0057, 0.0057, 0.0053, 0.0039], [0.026, 0.0216, 0.0179, 0.0158, 0.0148, 0.0131, 0.009, 0.0084], [0.0382, 0.0316, 0.0262, 0.0262, 0.0192, 0.0169, 0.0116, 0.0116], [0.0797, 0.0483, 0.0483, 0.0376, 0.0332, 0.0332, 0.0243, 0.0243], [0.0791, 0.051, 0.048, 0.0398, 0.0351, 0.0351, 0.033, 0.031], [0.11, 0.071, 0.0627, 0.0627, 0.0553, 0.0458, 0.0335, 0.0231], [0.1761, 0.1211, 0.1068, 0.0943, 0.0832, 0.0648, 0.0505, 0.0326], [0.1503, 0.1327, 0.1171, 0.1171, 0.0912, 0.071, 0.0553, 0.0203], [0.1739, 0.1354, 0.1195, 0.1195, 0.0822, 0.064, 0.0267, 0.0195], [0.1553, 0.1068, 0.1003, 0.0885, 0.0831, 0.0504, 0.0306, 0.0254], [0.1564, 0.1075, 0.0652, 0.0508, 0.0395, 0.0371, 0.0308, 0.0255], [0.135, 0.135, 0.0563, 0.0412, 0.0363, 0.0363, 0.0321, 0.0266], [0.2338, 0.086, 0.0759, 0.0382, 0.0337, 0.0262, 0.0217, 0.0169], [0.0657, 0.0618, 0.058, 0.0375, 0.0311, 0.0213, 0.0188, 0.0156], [0.0593, 0.0434, 0.0408, 0.028, 0.0218, 0.0218, 0.017, 0.015], [0.0634, 0.0299, 0.0281, 0.0248, 0.0193, 0.015, 0.0133, 0.0133], [0.0368, 0.0269, 0.0269, 0.021, 0.0185, 0.0174, 0.0153, 0.0144], [0.0705, 0.0516, 0.0354, 0.0294, 0.0229, 0.0229, 0.0229, 0.0215], [0.2258, 0.0608, 0.0306, 0.0306, 0.0253, 0.021, 0.0174, 0.0154], [0.3531, 0.3116, 0.1012, 0.0212, 0.0129, 0.0054, 0.005, 0.005], [0.2206, 0.1338, 0.1181, 0.0673, 0.0434, 0.0233, 0.0181, 0.0181], [0.4485, 0.3493, 0.0607, 0.0473, 0.0417, 0.0253, 0.0082, 0.0056], [0.3875, 0.3875, 0.0673, 0.0524, 0.0408, 0.0133, 0.008, 0.0063], [0.3543, 0.3543, 0.115, 0.0479, 0.0291, 0.0226, 0.02, 0.0083], [0.8478, 0.0478, 0.0256, 0.0137, 0.0121, 0.0069, 0.0061, 0.0057], [0.7681, 0.1942, 0.0141, 0.0059, 0.0052, 0.0014, 0.0008, 0.0008], [0.9887, 0.004, 0.0031, 0.0017, 0.0004, 0.0003, 0.0002, 0.0001], [0.9993, 0.0003, 0.0002, 0.0001, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Kotlin": [208800, 159635, 157110, 51576, 97330, 93705, 129832, 183292, 182506, 223556, 206343, 160721, 130507, 181136, 230035, 201315, 214310, 197933, 189558, 195285, 211117, 131897, 193114, 229901, 198422, 135413, 73471, 179052, 104582, 29236, 51726, 17237, 44836, 19417, 21667, 23403, 10337, 8186, 11202, 1166, 1377, 2385, 1154, 722, 640, 1634, 1985, 2073, 3914, 6172, 12723, 11185, 8156, 3554, 2054, 2139, 1335, 1645, 2652, 3622, 9779, 23590, 30132]}}, {"pos": 535, "top": [[" \u2013", ".", "\u2013", "\u201e", "\"", "-", "\u200b\u200b", "<|endoftext|>"], [" \u2013", " (\u201e", " \u2013**", ":\\\"", " \u2013,", " \\\"", " \u201e", "\u201e"], [" \u2013", "\u2013", "\u2013and", " \u2013,", ".\u2013", "\u201e", " \u2013**", "["], ["``", " ``", " ``(", " *\u201e", "\\\":\\\"", " YYS", " \\\"{", "\u30f3"], ["\u30f3", " *@", "``", " (\u201e", "\u0647", " \u201e", "*@", ":@"], ["\u5728", "\u30f3", ":@", "\uff08", "\u8861", " @(", " \uff08", "\u0647"], ["\u5728", "``", " \uff1c", "\u30f3", "\u4e2d", "\u0647", "\u5bf9", "\uff08"], ["``", " *@", "\u0441\u044f", " \uff1c", " \\\"$", "\u0647", "\u30f3", "}\\\""], [" \uff1c", " *@", "``", " \\\"$", "\u0441\u044f", "}\\\"", "\\\"\\", " {*"], ["\u0441\u044f", " \uff1c", "\u0647", " _$", " \\\"$", " \\@", "\u30f3", "\\\"\\"], [" *@", " \uff1c", " \\@", "\u0441\u044f", " #@", " -**", "\u0647", " @_"], [" -**", " \uff1c", " _$", " **\u3010", "\uad49\uc7a5", " **\u25a0", "\u0441\u044f", " **\u300c"], ["\u52a0\u62ff\u5927", "\u0441\u044f", " freaking", "\uad49\uc7a5", "-minus", "\u5728", " \uff1c", "\u7684"], ["\u52a0\u62ff\u5927", "-minus", " freaking", "zelfde", "-esque", "kids", "\u0441\u044f", "\u0647"], [" --", "\u0647", " \u2212", "\u4e00\u4e2a", "-minus", " busted", "\u4e00", " freaking"], ["-esque", "kids", "zelfde", "\u0647", " freaking", " \u2015", " \u2212", "\u52a0\u62ff\u5927"], ["en", "u", "-esque", "kids", "e", "h", "\u0647", "os"], ["kids", "-esque", "-minus", "-big", "-get", "-ish", "stuff", " grin"], ["kids", "\u0647", " freaking", "-esque", "-minus", "\u90a3", "-done", " booze"], ["\u90a3", " --", "\u672c", "\u5927", "\u7684", "\u4e00", "\u524d", "\u4e00\u4e2a"], [" --", "\u90a3", "\u4e00", "\u672c", "\u5927", "\u7684", "\u524d", "\u4e00\u4e2a"], ["``", "ktop", "bucks", "kids", "inbox", "Sharper", "\u52a0\u62ff\u5927", "okay"], ["``", " --", "\u0647", " ``", "kids", "ktop", "stuff", "}\\\""], [" --", " ``", "\u0647", "``", " \u2015", "Doing", " \u2212", "ultz"], [" --", "\u90a3", "\n\n", " ...\\", " \n\n", "\u4e00", "   \n\n", "kids"], [" --", " -**", "\u90a3", "uptime", "kids", "\u6b7b", "\u5927", "\u4e8b\u4ef6"], [" --", " shutdown", "uptime", "-minus", "kids", " ops", " -**", "\u5320"], [" --", "\n\n", " \n\n", " \u2014", " ``", "--", " ops", "\u5320"], [" --", " shutdown", "\u2010", " restart", " reboot", " kills", " ops", " \u2212"], [" --", " shutdown", " kills", " kill", " restart", " stuff", " reboot", "\u2010"], [" shutdown", " --", " kills", " stuff", "\u2010", " restart", " kill", " dead"], [" kills", " kill", " shutdown", " restart", " stuff", " dead", " freezes", " reboot"], [" kills", " shutdown", " stuff", " kill", " dead", " restart", " tech", " things"], [" tech", " shutdown", "\u2011", "\u2010", " freezes", " kills", " \u2014", " stuff"], [" tech", " shutdown", " kills", " freezes", "\u6b7b", "\u2010", "\u2011", "kill"], ["\u2013", "\u2011", " *\u2013", " \u2013", " \u2014", "\u6b7b", "\u2014\u2014", "freeze"], [" shutdown", " freezes", " \u2014", " timeouts", "freeze", " *\u2013", "queue", "uptime"], [" shutdown", " freezes", " Shutdown", "freeze", " freeze", " Timer", " timeouts", " pause"], [" shutdown", " freezes", " Shutdown", " pause", " freeze", "Shutdown", "freeze", " timeouts"], [" shutdown", " pause", " Shutdown", "\u6682\u505c", " freezes", "Shutdown", "\u2011", "pause"], [" shutdown", " freezes", " pause", " Shutdown", "\u6682\u505c", " freeze", " Restart", " pauses"], [" shutdown", " pause", " freezes", " Shutdown", "\u6682\u505c", " freeze", " Pause", " pauses"], [" shutdown", " pause", "\u6682\u505c", " freezes", " freeze", " Shutdown", " Pause", " pauses"], [" pause", "\u6682\u505c", " shutdown", " freezes", " Pause", " freeze", "pause", " pauses"], [" pause", " freezes", " shutdown", " freeze", "\u6682\u505c", " pauses", " Pause", "pause"], [" freezes", " shutdown", " pause", " freeze", " pauses", "\u6682\u505c", " interruptions", " freezing"], [" pause", " freezes", " pauses", " shutdown", "\u6682\u505c", " interruptions", " freeze", " Pause"], [" pause", " pauses", " shutdown", " freezes", "\u6682\u505c", " interruptions", " freeze", " snapshots"], [" pauses", "\u2014or", " freezes", " interruptions", "\u6216\u90e8\u5206", "\u6216\u56e0", " pause", "-death"], ["\u2014or", "-or", "-death", "\u2014even", " pauses", "\u6216\u90e8\u5206", " interruptions", "-stop"], ["-death", "\u2014or", "\u6216\u90e8\u5206", "-or", "\u6216", " interruptions", "-stop", " pauses"], ["\u6216", "\u6216\u4e0e", "\u2014or", " interruptions", " pauses", "\u6216\u90e8\u5206", "\u6216\u8005", "-death"], [" pauses", "\u6216\u4e0e", " interruptions", " moments", " glitches", "\u6216", " snapshots", " spikes"], [" pauses", " interruptions", "-death", " moments", "-stop", "\u6216\u4e0e", " \u043f\u0430\u0443", " glitches"], [" pauses", "\u6216\u4e0e", "-stop", "-thread", "(stop", " threads", "-death", "-clock"], [" garbage", " pauses", "\u5783\u573e", "-thread", "-death", "\u6216\u4e0e", " threads", " GC"], [" GC", " garbage", "\u5783\u573e", "GC", "gc", "_gc", "(gc", " gc"], ["-world", " world", "\u4e16\u754c\u7684", "\u4e16\u754c", " GC", "world", " worlds", " pauses"], ["-world", " world", "\u4e16\u754c", "\u4e16\u754c\u7684", " GC", "world", " worlds", " pauses"], ["-world", " world", "world", "\u4e16\u754c\u7684", "\u4e16\u754c", " worlds", "_world", " mundo"], ["-world", " world", "world", " worlds", "\u4e16\u754c\u7684", " pauses", "_world", "\u4e16\u754c"], ["-world", " world", " pauses", " worlds", " pause", "\u4e16\u754c\u7684", "world", " Pause"], ["-world", " world", "-", " pauses", "\u4e16\u754c\u7684", " worlds", " GC", "-w"]], "p": [[0.7744, 0.1048, 0.0133, 0.011, 0.0059, 0.0056, 0.0049, 0.0043], [0.6342, 0.0858, 0.0381, 0.0297, 0.0262, 0.0231, 0.0169, 0.0149], [0.8207, 0.098, 0.0248, 0.0219, 0.0076, 0.0043, 0.0028, 0.0028], [0.7759, 0.0386, 0.032, 0.0046, 0.0034, 0.0034, 0.003, 0.003], [0.1966, 0.1193, 0.06, 0.0302, 0.0266, 0.0235, 0.0195, 0.0195], [0.0609, 0.0347, 0.0238, 0.0099, 0.0088, 0.0088, 0.0068, 0.0068], [0.103, 0.0665, 0.0429, 0.0314, 0.023, 0.023, 0.0191, 0.0191], [0.1239, 0.0378, 0.0229, 0.0215, 0.0179, 0.0168, 0.0131, 0.009], [0.0481, 0.0274, 0.0258, 0.0188, 0.0138, 0.0084, 0.0084, 0.0079], [0.0144, 0.0087, 0.0072, 0.0072, 0.006, 0.0056, 0.0053, 0.0053], [0.0481, 0.0452, 0.0331, 0.0201, 0.0147, 0.0089, 0.0079, 0.0074], [0.0116, 0.0116, 0.009, 0.0055, 0.0051, 0.004, 0.004, 0.0033], [0.0083, 0.0028, 0.0027, 0.0023, 0.0023, 0.0022, 0.0021, 0.002], [0.016, 0.0076, 0.0063, 0.0059, 0.0038, 0.0038, 0.0036, 0.0036], [0.02, 0.0089, 0.0069, 0.0057, 0.0054, 0.0051, 0.0045, 0.0042], [0.0065, 0.0054, 0.0047, 0.0044, 0.0044, 0.0039, 0.0036, 0.0034], [0.0329, 0.0309, 0.0187, 0.0176, 0.0165, 0.0107, 0.01, 0.0083], [0.0103, 0.0091, 0.0081, 0.0052, 0.0046, 0.004, 0.004, 0.0038], [0.005, 0.0037, 0.0037, 0.0033, 0.0031, 0.0023, 0.002, 0.0019], [0.0247, 0.0097, 0.0091, 0.008, 0.0062, 0.0052, 0.0049, 0.0046], [0.0408, 0.036, 0.017, 0.0085, 0.0085, 0.008, 0.008, 0.0059], [0.0039, 0.0036, 0.002, 0.0019, 0.0011, 0.0011, 0.0011, 0.001], [0.0175, 0.0155, 0.0053, 0.0047, 0.0039, 0.0027, 0.0022, 0.0017], [0.3431, 0.0097, 0.0055, 0.0052, 0.0019, 0.0016, 0.0016, 0.0014], [0.0794, 0.0051, 0.0045, 0.0033, 0.0029, 0.0027, 0.0026, 0.0026], [0.006, 0.0057, 0.0039, 0.0037, 0.0037, 0.0032, 0.0022, 0.0018], [0.0193, 0.0041, 0.0038, 0.0034, 0.003, 0.0028, 0.0025, 0.0023], [0.6733, 0.0458, 0.0021, 0.002, 0.002, 0.0015, 0.0014, 0.0012], [0.1338, 0.015, 0.0086, 0.008, 0.0063, 0.0063, 0.0063, 0.0059], [0.0551, 0.0356, 0.0158, 0.0148, 0.0131, 0.0109, 0.009, 0.007], [0.031, 0.02, 0.02, 0.0188, 0.0156, 0.0146, 0.0129, 0.0107], [0.0203, 0.0203, 0.0179, 0.0158, 0.0102, 0.0096, 0.007, 0.0058], [0.026, 0.019, 0.0179, 0.0168, 0.0131, 0.0123, 0.0108, 0.0102], [0.0117, 0.0103, 0.0097, 0.0091, 0.0086, 0.0081, 0.0081, 0.0059], [0.0083, 0.0073, 0.0064, 0.0064, 0.0053, 0.005, 0.0044, 0.0042], [0.0205, 0.0181, 0.0132, 0.0091, 0.0085, 0.0059, 0.0055, 0.0055], [0.0133, 0.0104, 0.0091, 0.0086, 0.0086, 0.0059, 0.0055, 0.0055], [0.0345, 0.0185, 0.0163, 0.0135, 0.0105, 0.0087, 0.0087, 0.0072], [0.1032, 0.0357, 0.023, 0.0203, 0.0179, 0.0168, 0.0149, 0.0131], [0.0839, 0.0272, 0.0272, 0.024, 0.0212, 0.0176, 0.0176, 0.0129], [0.1045, 0.0385, 0.0319, 0.03, 0.0264, 0.0125, 0.0104, 0.0104], [0.3352, 0.0796, 0.0703, 0.0483, 0.0454, 0.0454, 0.0228, 0.0214], [0.3181, 0.1326, 0.071, 0.0667, 0.0626, 0.0404, 0.0296, 0.0245], [0.1804, 0.124, 0.1164, 0.0752, 0.0517, 0.0428, 0.0378, 0.0277], [0.1616, 0.1426, 0.1426, 0.0525, 0.0463, 0.0463, 0.0318, 0.0248], [0.1834, 0.126, 0.0764, 0.0675, 0.0436, 0.0319, 0.0233, 0.0125], [0.1449, 0.1202, 0.0729, 0.0643, 0.0604, 0.0344, 0.0285, 0.0196], [0.0955, 0.0842, 0.0842, 0.0743, 0.0374, 0.033, 0.0273, 0.0188], [0.0623, 0.0485, 0.0428, 0.0334, 0.0313, 0.0294, 0.0294, 0.0215], [0.1619, 0.0867, 0.0765, 0.0464, 0.0436, 0.0264, 0.0193, 0.0182], [0.1009, 0.042, 0.0327, 0.0308, 0.024, 0.0225, 0.0211, 0.0165], [0.0813, 0.0633, 0.0559, 0.0493, 0.0435, 0.0409, 0.0219, 0.0181], [0.2246, 0.0344, 0.0324, 0.0304, 0.0222, 0.0222, 0.0209, 0.0196], [0.3098, 0.0394, 0.0288, 0.0239, 0.0186, 0.0164, 0.0154, 0.0113], [0.1537, 0.0566, 0.0284, 0.0284, 0.0251, 0.0236, 0.0195, 0.0172], [0.3916, 0.1054, 0.0874, 0.0284, 0.0152, 0.0118, 0.0118, 0.0098], [0.4443, 0.346, 0.0875, 0.0681, 0.0118, 0.0092, 0.0092, 0.0092], [0.5903, 0.2461, 0.0485, 0.0428, 0.0229, 0.0178, 0.0066, 0.004], [0.9532, 0.0288, 0.005, 0.0039, 0.003, 0.0021, 0.0008, 0.0007], [0.8563, 0.1313, 0.0058, 0.0027, 0.0024, 0.0009, 0.0002, 0.0001], [0.9201, 0.0755, 0.0012, 0.0012, 0.001, 0.0003, 0.0001, 0.0001], [0.9427, 0.0414, 0.0092, 0.0018, 0.0014, 0.0008, 0.0008, 0.0003], [0.9962, 0.0017, 0.0005, 0.0005, 0.0002, 0.0001, 0.0001, 0.0001]], "ranks": {"Kotlin": [139467, 93809, 94963, 10792, 19430, 66267, 45320, 51674, 19937, 74920, 37572, 18846, 7790, 49244, 130449, 106168, 70117, 54556, 75598, 117718, 172343, 41377, 114728, 226542, 166457, 65908, 36955, 143662, 79611, 31934, 60522, 37935, 65983, 10298, 12169, 10881, 3544, 1906, 2216, 693, 1768, 2625, 2563, 1359, 1261, 3226, 1779, 2771, 4568, 4225, 12648, 7103, 3484, 1655, 1121, 1719, 1098, 2453, 5311, 11191, 15242, 16923, 7790]}}, {"pos": 536, "top": [["s", " \u2013", "\u2013", "a", "i", "t", "er", "."], ["s", " \u2013", "\u0627\u062a", "\u2013", "\u2013\u2013", "scape", "sWith", "es"], ["s", " \u2013", "\u2013", "a", "\u2013and", "t", "**\u2013", "i"], ["s", "sula", "sium", "\u0627\u062a", "sik", "sver", "sWith", "sprozess"], ["s", "\u0627\u062a", "a", "sver", "sik", "es", "sche", "sor"], ["s", "a", "\u0627\u062a", "sver", "t", "s\u00f3", "sWith", "sor"], ["s", "t", "\u0627\u062a", "a", "s\u00f3", "sor", "sWith", "es"], ["s", "sor", " favourite", " realise", "sver", "s\u00f3", "\u0627\u062a", "sche"], ["s", "sik", "\ufe0f", "\u0627\u062a", "sWith", "sor", "scape", "sver"], ["s", "s\u00f3", " favourite", " hugely", " favourites", "scape", "\u0627\u062a", " whilst"], ["s", "\ufe0f", "scape", " \ufffd", " \ufffd", "es", " \ufffd", "a"], ["s", " !_", " **", " *_", " \ufffd", "sium", " **#", "sver"], ["s", "sWith", "\ufe0f", " \ufffd", " \ufffd", "sver", "szeit", " impactful"], ["s", "\ufe0f", "-esque", " freaking", "sWith", " \r\n\r\n", "es", "\u0627\u062a"], ["s", " \u2013", " \u2014", "es", " busted", "-esque", " myriad", " incredibly"], ["s", " incredibly", "es", "-esque", " myriad", " showcasing", " antics", " busted"], ["s", "es", "a", "e", "t", " myriad", " incredibly", "o"], ["s", "es", " incredibly", " antics", " stuff", " blockbuster", " big", " myriad"], ["s", " incredibly", " stuff", " antics", " freaking", "sWith", " busted", " myriad"], ["s", " --", " incredibly", " myriad", " stuff", " hugely", "es", " \n\n"], ["s", " \n\n", "\n\n", " --", " \r\n\r\n", " myriad", " \u2014", "\r\n\r\n"], ["s", "sWith", " antics", " stuff", " apocalypse", "szeit", " blockbuster", "siz"], ["s", " --", " stuff", "sWith", " incredibly", " antics", "es", " blockbuster"], ["s", " --", "es", " myriad", " incredibly", " spectacular", "--", " #"], ["s", " \n\n", " --", "\n\n", " \r\n\r\n", "\r\n\r\n", "--", " myriad"], ["s", " --", " \n\n", " events", " shutdown", " incredibly", " stuff", " \r\n\r\n"], ["s", " --", " shutdown", " events", " \n\n", " operations", " reboot", " stuff"], [" --", "\n\n", "s", " \n\n", " ...", " ,", " ~", " events"], ["s", " --", " events", " \n\n", " shutdown", " ,", " massive", " stuff"], ["s", " events", " shutdown", " --", " \n", " stuff", " even", " event"], ["s", " events", " even", " ,", " \n", " moments", " ", " over"], ["s", " even", " events", " ...", " time", " ", " moments", " stuff"], ["s", " even", " events", " stuff", " moments", " effects", " time", " times"], ["s", " even", " events", " stuff", " moments", " effects", " technologies", " storms"], ["s", " stuff", " events", " moments", " even", " tech", " reductions", " crashes"], ["s", " events", " moments", " reductions", " crashes", " delays", " stuff", " \u2014"], ["s", " delays", " moments", " events", " reductions", " stuff", "\u2014even", " interruptions"], ["s", " events", " moments", " interruptions", " stuff", " delays", " reductions", " shutdown"], [" interruptions", " events", "s", " moments", " delays", " stuff", " pauses", " crashes"], [" interruptions", " moments", " events", " pauses", "s", " shutdown", " crashes", " delays"], [" interruptions", " moments", " events", " periods", " pauses", "s", " delays", " optimizations"], [" interruptions", " events", " moments", " pauses", " periods", " shutdown", " cycles", " cleanup"], [" interruptions", " pauses", " shutdown", " moments", " events", " periods", " bursts", " periodic"], [" interruptions", " pauses", " events", " periods", " moments", " shutdown", " bursts", " disruptions"], [" interruptions", " moments", " periods", " pauses", " bursts", " events", " shutdown", " disruptions"], [" interruptions", " periods", " moments", " events", " bursts", " pauses", " cycles", " occasionally"], [" interruptions", " moments", " periods", " bursts", " pauses", " events", " occasional", " occasionally"], [" interruptions", " moments", " periods", " bursts", "\u2014even", " occasional", " occasionally", " events"], [" interruptions", "\u2014even", "\u2014or", " moments", " periods", " bursts", " or", " glitches"], ["\u2014or", " interruptions", "\u2014even", " moments", " bursts", " glitches", " pauses", " or"], ["\u2014or", " interruptions", " glitches", " pauses", " moments", " bursts", "\u6216\u56e0", "\u6216\u5c0f"], [" interruptions", "\u2014or", " pauses", " or", "\u6216\u56e0", "\u6216\u5c0f", " interrupts", " glitches"], [" pauses", " interruptions", " spikes", " moments", " glitches", "\u2014or", " bursts", " periods"], [" pauses", " interruptions", " spikes", " moments", " glitches", " periods", " interrupts", " latency"], [" pauses", " moments", " interruptions", " spikes", " periods", " garbage", " interrupts", " glitches"], [" garbage", " pauses", "\u5783\u573e", " interruptions", " GC", " moments", " dumps", " spikes"], [" GC", " garbage", "GC", "\u5783\u573e", " gc", " pauses", "_gc", "gc"], [" GC", " garbage", "GC", " pauses", " gc", "gc", "_gc", "\u5783\u573e"], [" GC", " garbage", " pauses", "GC", " gc", "\u5783\u573e", "gc", "_gc"], [" pauses", " GC", " garbage", " latency", "GC", " pause", " spikes", " gc"], [" pauses", " pause", " Pause", " events", " \u043f\u0430\u0443", "Pause", "\u505c\u987f", "pause"], [" pauses", " pause", " Pause", "Pause", " \u043f\u0430\u0443", "pause", " paused", "\u505c\u987f"], [" pauses", " pause", " pa", " events", " \u043f\u0430\u0443", " GC", " cycles", " spikes"]], "p": [[0.9995, 0.0004, 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], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.998, 0.0003, 0.0002, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001], [1.0, 0.0, 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], [1.0, 0.0, 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], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9998, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9558, 0.0022, 0.0015, 0.0013, 0.0011, 0.0008, 0.0008, 0.0007], [0.975, 0.0008, 0.0005, 0.0004, 0.0004, 0.0004, 0.0003, 0.0003], [0.9994, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9963, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9978, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.999, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.998, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9975, 0.0002, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9776, 0.0158, 0.002, 0.0005, 0.0003, 0.0002, 0.0001, 0.0001], [0.4524, 0.0175, 0.0078, 0.0069, 0.0039, 0.0039, 0.0035, 0.003], [0.9138, 0.013, 0.0027, 0.0018, 0.0014, 0.0013, 0.0009, 0.0008], [0.8479, 0.084, 0.001, 0.0009, 0.0006, 0.0006, 0.0006, 0.0006], [0.4263, 0.2014, 0.1892, 0.0449, 0.0146, 0.0078, 0.0022, 0.0019], [0.4987, 0.1521, 0.0464, 0.0076, 0.0041, 0.0038, 0.0032, 0.0028], [0.4794, 0.1139, 0.0175, 0.0145, 0.0073, 0.005, 0.0047, 0.0044], [0.3799, 0.1686, 0.1233, 0.062, 0.0201, 0.0079, 0.0033, 0.0027], [0.6349, 0.0432, 0.0103, 0.0062, 0.0055, 0.0038, 0.0033, 0.0031], [0.5656, 0.0206, 0.0086, 0.0071, 0.0067, 0.0063, 0.0049, 0.0046], [0.3673, 0.025, 0.0183, 0.0081, 0.0076, 0.0067, 0.0067, 0.0059], [0.407, 0.026, 0.0131, 0.0131, 0.0062, 0.0058, 0.0051, 0.0048], [0.3595, 0.0802, 0.0179, 0.0116, 0.0079, 0.007, 0.0062, 0.0045], [0.1904, 0.0481, 0.0375, 0.0242, 0.0166, 0.013, 0.0107, 0.0101], [0.0885, 0.0537, 0.0346, 0.027, 0.0197, 0.0185, 0.0144, 0.0136], [0.0524, 0.0492, 0.0383, 0.0263, 0.0248, 0.0233, 0.0205, 0.0181], [0.2283, 0.0373, 0.0329, 0.029, 0.0199, 0.0187, 0.0176, 0.0165], [0.2038, 0.0427, 0.0276, 0.0259, 0.0243, 0.019, 0.0148, 0.013], [0.047, 0.047, 0.0442, 0.0344, 0.0323, 0.0268, 0.0252, 0.0236], [0.0681, 0.0498, 0.044, 0.0343, 0.0284, 0.0235, 0.0208, 0.0195], [0.1048, 0.0495, 0.0362, 0.032, 0.0265, 0.0234, 0.0182, 0.0171], [0.1106, 0.0491, 0.0433, 0.0433, 0.0359, 0.0317, 0.0263, 0.0205], [0.1992, 0.083, 0.0473, 0.0325, 0.0306, 0.0306, 0.0164, 0.0154], [0.1751, 0.0416, 0.0391, 0.0367, 0.0367, 0.0304, 0.0223, 0.0144], [0.2345, 0.0492, 0.0434, 0.0408, 0.0298, 0.028, 0.0181, 0.0132], [0.173, 0.0721, 0.0637, 0.0411, 0.0301, 0.0249, 0.0161, 0.0151], [0.1925, 0.0909, 0.0551, 0.0457, 0.0334, 0.0334, 0.0334, 0.0295], [0.1385, 0.0894, 0.0741, 0.0614, 0.0509, 0.0373, 0.0273, 0.0273], [0.1599, 0.1246, 0.0804, 0.0553, 0.0458, 0.043, 0.0335, 0.0296], [0.3296, 0.1764, 0.0649, 0.0446, 0.037, 0.0288, 0.0288, 0.0271], [0.2707, 0.2389, 0.0533, 0.0304, 0.0268, 0.0222, 0.0196, 0.0184], [0.3283, 0.1757, 0.1368, 0.0392, 0.0185, 0.0185, 0.0185, 0.0174], [0.4866, 0.1394, 0.123, 0.0352, 0.0242, 0.0214, 0.0156, 0.0138], [0.6206, 0.1569, 0.0509, 0.035, 0.0121, 0.0114, 0.0089, 0.0061], [0.6349, 0.0669, 0.0669, 0.0358, 0.0217, 0.014, 0.0132, 0.0096], [0.7571, 0.1491, 0.0484, 0.0084, 0.004, 0.0035, 0.0035, 0.0024], [0.4864, 0.4292, 0.0581, 0.013, 0.0037, 0.0029, 0.0023, 0.0018], [0.7026, 0.1078, 0.0839, 0.0839, 0.0078, 0.0033, 0.0033, 0.0025], [0.6703, 0.1496, 0.0907, 0.0706, 0.0058, 0.0035, 0.0027, 0.0021], [0.8654, 0.0912, 0.0231, 0.0058, 0.0051, 0.0024, 0.0013, 0.0011], [0.9961, 0.0032, 0.0003, 0.0001, 0.0001, 0.0001, 0.0, 0.0], [0.9926, 0.0067, 0.0003, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9983, 0.001, 0.0003, 0.0001, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Kotlin": [94566, 55770, 60374, 6270, 13673, 23348, 52967, 64381, 14430, 133667, 23289, 8130, 3920, 33684, 152120, 142835, 94885, 52497, 66001, 93687, 162703, 27675, 105394, 200623, 173269, 68448, 39245, 84904, 45385, 33480, 58777, 43912, 50888, 30986, 32182, 29334, 14678, 11365, 12007, 5024, 7701, 8935, 6670, 6580, 7101, 12824, 17405, 17028, 12260, 6736, 6973, 3690, 1506, 816, 597, 365, 313, 325, 416, 495, 3036, 4622, 7398]}}, {"pos": 537, "top": [[".", ",", "\u2013", "\u00a0\u00a0", " \u2013", ";", " ", "\u2026."], [" \u2013,", "\u2014.", "\u2013", "   \n", "   \n\n", "  \n  \n", "[\"@", "\u2014\""], ["\u2013", ",", ".", ".\u2013", " \u2013,", ";", "\u2014.", "\u2026.."], [" Ejem", " Shemale", " Blowjob", " St\u00e9ph", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "odle", " \u041f\u043e\u043f\u0440\u043e", " milfs"], [" \t ", " (@", " \n\n\n\n\n", "\u2014.", "%!", "[\"@", " @\"", " \u200e"], [" \t ", " \n\n\n\n\n", "\u2014.", "\ud83d\ude09", "%!", " \u200b\u200b", "\ud83d\ude42", "undi"], ["\u2014.", " \t ", "%!", "!\u201c", "\u201d\u2014", "?\u201c", "/*@", " (_."], [" \t ", "   \n", " \t\n", "yssey", "    \n", " _)", "  \n    \n", "      \n"], ["!.", "!\u201d.", " \n            \n", " \n    \n", "\u2014.", "   \n\n", "  \n    \n", " \n\n\n"], ["\u2014and", "\u52e4\u52e4\u6073\u6073", "\u2014but", "\u2014\"", "\u2014or", " \t ", "\u2014", "\u2014all"], ["\u2014", "\u2014and", "\u2014but", " \u2014", "\u2014\"", "\u2014.", ")\u2014", "\u2014or"], ["rompt", "turnstile", "\u52e4\u52e4\u6073\u6073", "avanaugh", " **\u2014", " \t ", "\u9877\u523b", ".pause"], ["\u52e4\u52e4\u6073\u6073", "avanaugh", "rompt", "baugh", "turnstile", " **\u2014", " Pergun", "\u9877\u523b"], ["\u52e4\u52e4\u6073\u6073", "avanaugh", " entirety", "\u9877\u523b", " momentarily", "rompt", "baugh", "\u2014is"], [" \u2014", "\u2014and", "\u2014", "\u2014or", "\u2014even", "\u2014not", "\u2014but", " \u00ad"], [" \u2014", "\u2014and", "\u2014or", " \u00ad", "\u2014", " swiftly", " midway", "\u2014even"], [" \u2014", "\u2014and", "\u2014", " myriad", " hefty", " lingering", " midway", " swiftly"], [" \u2014", "\u2014and", " hefty", " lingering", " midway", "\u2014or", " momentarily", " myriad"], [" \u2014", "\u2014and", "\u2014or", "\u2014even", " midway", " hefty", "\u2014not", " lingering"], [" \u2014", "\u2014and", "\u2014or", "\u2014even", ")\u2014", " midway", "\u2014not", " swiftly"], [" \u2014", "<|endoftext|>", "\u2014and", " \n\n", " swiftly", " midway", "\u2014or", " lingering"], ["ksam", " midway", " lingering", " momentarily", ".pause", "\u9877\u523b", " amid", "baugh"], [" \u2014", " momentarily", " midway", " --", ".pause", " swiftly", " lingering", " dramatically"], [" \u2014", " --", " dramatically", " momentarily", " midway", " swiftly", " rapidly", " seemingly"], [" \n\n", "  \n\n", "   \n\n", " \r\n\r\n", "\n\n", " \u2014", " \n\n\n", " \n  \n"], [" \n\n", "  \n\n", " \n  \n", "   \n\n", " \r\n\r\n", " \n    \n", " \n\n\n", " \u2014"], [" \n\n", " pauses", " moments", " durations", " \u2014", " microseconds", " momentarily", " bursts"], [" \n\n", "\n\n", " \u2014", " --", " rapidly", " ,", " nearly", " moments"], [" \n\n", " moments", " \u2014", " hours", " time", " rapidly", " during", " minutes"], [" \n\n", " moments", " \n  \n", " hours", " time", " pauses", " \n", " bursts"], [" \n\n", " during", " moments", " time", " \u2014", " hours", " occasionally", " \n"], [" during", " time", " \u2014", " ...", " even", " moments", " hours", " minutes"], [" even", " moments", " time", " during", " occasionally", " \u2014", " minutes", " hours"], [" even", " \u2014", " occasionally", " moments", " unpredictable", "\u2014even", " bursts", " potentially"], [" unpredictable", " spikes", " moments", " bursts", " potentially", " catastrophic", "\u2014even", " occasionally"], [" \u2014", "\u2014even", " occasionally", " potentially", " unpredictable", " inevitable", " spikes", " inevitably"], [" unpredictable", "\u2014even", " occasionally", " \u2014", " inevitable", " potentially", " inevitably", " milliseconds"], [" unpredictable", " milliseconds", " inevitable", " occasionally", " inevitably", " even", " potentially", " slower"], [" milliseconds", " unpredictable", " spikes", " even", " microseconds", " inevitable", " delays", " bursts"], [" milliseconds", " unpredictable", " microseconds", " spikes", " jitter", " pauses", " delays", " bursts"], [" milliseconds", " microseconds", " spikes", " unpredictable", " delays", " bursts", " pauses", " interruptions"], [" milliseconds", " microseconds", " spikes", " unpredictable", " glitches", " jitter", " bursts", " delays"], [" milliseconds", " spikes", " glitches", " bursts", " interruptions", " microseconds", " unpredictable", " pauses"], [" milliseconds", " spikes", " bursts", " microseconds", " unpredictable", " interruptions", " glitches", " periods"], [" spikes", " bursts", " milliseconds", " unpredictable", " periods", " interruptions", " microseconds", " glitches"], [" spikes", " unpredictable", " bursts", " periods", " milliseconds", " microseconds", " interruptions", " occasionally"], [" spikes", " bursts", " unpredictable", " inevitable", " unavoidable", " milliseconds", " interruptions", " microseconds"], [" spikes", " bursts", " unavoidable", " inevitable", " unpredictable", " periods", "\u54ea\u6015", " interruptions"], [" spikes", " bursts", " unavoidable", " inevitable", " interruptions", "\u2014even", " unpredictable", " disrupt"], [" spikes", " inevitable", " bursts", " unavoidable", " interruptions", " unpredictable", " disrupt", " glitches"], [" inevitable", " unavoidable", " spikes", " unpredictable", " bursts", " disrupt", " glitches", " inevitably"], [" inevitable", " inevitably", " spikes", " unavoidable", " disrupt", " inevit", " bursts", " \u043d\u0435\u0438\u0437\u0431\u0435"], [" disrupt", " inevitable", " spikes", " bursts", " disrupting", " inevit", " unavoidable", " interrupts"], [" inevitable", " disrupt", " spikes", " inevit", " unavoidable", " will", " occurs", "\u2014even"], [" occurs", " occur", " will", " happens", " inevitable", " disrupt", "\u53d1\u751f\u65f6", " inevit"], [" will", " occur", " kills", " occurs", " inevitable", " happens", " happen", " WILL"], [" will", " kills", " disrupt", " inevitable", " occur", " WILL", " kill", " killer"], [" kills", " will", " occur", " disrupt", " destroys", " happen", " spikes", " kill"], [" kills", " destroys", " will", " destroy", " kill", " killing", " destroying", " disrupt"], [" kills", " kill", " killing", "kill", " killer", " will", " killed", " destroys"], [" kill", " will", " kills", " killing", "kill", " killer", " killed", " destroy"], [" will", " kill", " occur", " WILL", " kills", " happen", " >", " destroy"], [" will", " kill", " occur", " happen", " spike", " destroy", " cause", " or"]], "p": [[0.2861, 0.1966, 0.1735, 0.0467, 0.0412, 0.0342, 0.0302, 0.0172], [0.1155, 0.0701, 0.0482, 0.0452, 0.0425, 0.0292, 0.0274, 0.0258], [0.3698, 0.1747, 0.1278, 0.0415, 0.0252, 0.0236, 0.0196, 0.0127], [0.0088, 0.0083, 0.0078, 0.0078, 0.0064, 0.005, 0.0044, 0.0044], [0.0372, 0.029, 0.0199, 0.0165, 0.0121, 0.0121, 0.0114, 0.0107], [0.0325, 0.0174, 0.0053, 0.0047, 0.0047, 0.0047, 0.0044, 0.0044], [0.0291, 0.0137, 0.0101, 0.0094, 0.0089, 0.0078, 0.0054, 0.0054], [0.0126, 0.0105, 0.0082, 0.0072, 0.0068, 0.0068, 0.0049, 0.0041], [0.0283, 0.025, 0.0234, 0.0234, 0.0207, 0.0194, 0.0183, 0.0125], [0.0144, 0.0119, 0.0093, 0.0068, 0.0053, 0.0044, 0.0044, 0.0039], [0.1204, 0.0881, 0.0443, 0.0304, 0.0223, 0.0223, 0.0197, 0.0144], [0.0042, 0.0035, 0.0032, 0.0032, 0.003, 0.003, 0.003, 0.0025], [0.0054, 0.0044, 0.0037, 0.0035, 0.0027, 0.0027, 0.0024, 0.0022], [0.0037, 0.0035, 0.0033, 0.0031, 0.0024, 0.0024, 0.0023, 0.002], [0.1963, 0.0987, 0.0496, 0.0341, 0.0172, 0.0118, 0.0118, 0.0111], [0.3308, 0.0371, 0.0199, 0.0137, 0.0128, 0.0094, 0.0064, 0.0064], [0.1659, 0.0327, 0.0224, 0.0154, 0.0145, 0.0145, 0.0128, 0.0094], [0.1028, 0.0179, 0.0139, 0.0108, 0.0096, 0.007, 0.0058, 0.0058], [0.1636, 0.0414, 0.0236, 0.0162, 0.0098, 0.0092, 0.0072, 0.0072], [0.2952, 0.0659, 0.0275, 0.0177, 0.0074, 0.0069, 0.0065, 0.0065], [0.1926, 0.0356, 0.0203, 0.0149, 0.0109, 0.008, 0.0058, 0.0058], [0.007, 0.0062, 0.0048, 0.0045, 0.0045, 0.004, 0.004, 0.0026], [0.0366, 0.0184, 0.0153, 0.0087, 0.0082, 0.0082, 0.0068, 0.0053], [0.0649, 0.0288, 0.0082, 0.0082, 0.0082, 0.0073, 0.0064, 0.0053], [0.7646, 0.0405, 0.0204, 0.014, 0.0109, 0.0075, 0.007, 0.0058], [0.6473, 0.0222, 0.0184, 0.0173, 0.0152, 0.0053, 0.0044, 0.0034], [0.0418, 0.0287, 0.0197, 0.0154, 0.0136, 0.0106, 0.0106, 0.0082], [0.4038, 0.0546, 0.0214, 0.0138, 0.0115, 0.0101, 0.0089, 0.0074], [0.2176, 0.0378, 0.0215, 0.0202, 0.019, 0.0148, 0.0139, 0.0131], [0.0489, 0.0358, 0.0297, 0.0262, 0.0246, 0.0246, 0.0217, 0.018], [0.1736, 0.0412, 0.0412, 0.0302, 0.0283, 0.0221, 0.0152, 0.0152], [0.0471, 0.0391, 0.0367, 0.0324, 0.0304, 0.0286, 0.0144, 0.0127], [0.1381, 0.0477, 0.0349, 0.0308, 0.029, 0.0165, 0.0155, 0.0155], [0.0724, 0.068, 0.0342, 0.0302, 0.0221, 0.0221, 0.0172, 0.0162], [0.0332, 0.0293, 0.0243, 0.0201, 0.0189, 0.0167, 0.0157, 0.0147], [0.0998, 0.0443, 0.0286, 0.0252, 0.0252, 0.0196, 0.0196, 0.0185], [0.0559, 0.0559, 0.0464, 0.0385, 0.0299, 0.0299, 0.0281, 0.0248], [0.0622, 0.0516, 0.0428, 0.0313, 0.0276, 0.0259, 0.0215, 0.0202], [0.1461, 0.0648, 0.0393, 0.0288, 0.0288, 0.027, 0.027, 0.0175], [0.3006, 0.0809, 0.0714, 0.0556, 0.0218, 0.0218, 0.0192, 0.0181], [0.2599, 0.1018, 0.0657, 0.0481, 0.0274, 0.0274, 0.0257, 0.0227], [0.308, 0.1, 0.0687, 0.0535, 0.0535, 0.0472, 0.0305, 0.0305], [0.2034, 0.1584, 0.0848, 0.066, 0.066, 0.0583, 0.0454, 0.0259], [0.195, 0.1721, 0.0633, 0.0633, 0.0525, 0.0435, 0.0339, 0.0281], [0.181, 0.1098, 0.0969, 0.0754, 0.0518, 0.0458, 0.0458, 0.0203], [0.1951, 0.1519, 0.0921, 0.0718, 0.0493, 0.0384, 0.0318, 0.016], [0.2224, 0.1191, 0.1191, 0.0562, 0.0496, 0.0283, 0.0266, 0.025], [0.1608, 0.1253, 0.076, 0.063, 0.0556, 0.0491, 0.0337, 0.0337], [0.1628, 0.1268, 0.0871, 0.0819, 0.0679, 0.0466, 0.0301, 0.0172], [0.1583, 0.1233, 0.1022, 0.096, 0.0702, 0.0353, 0.0275, 0.0178], [0.2994, 0.1172, 0.059, 0.0381, 0.0336, 0.0296, 0.0262, 0.0217], [0.3936, 0.0533, 0.0533, 0.047, 0.0415, 0.0252, 0.0252, 0.0153], [0.2533, 0.1537, 0.1356, 0.0267, 0.0251, 0.0236, 0.0236, 0.0221], [0.3693, 0.0934, 0.0642, 0.0603, 0.0303, 0.0268, 0.0236, 0.0236], [0.2141, 0.1472, 0.1299, 0.1146, 0.0695, 0.0372, 0.029, 0.0176], [0.3182, 0.1703, 0.071, 0.0488, 0.0431, 0.0431, 0.0315, 0.0203], [0.2612, 0.1585, 0.1234, 0.0376, 0.0354, 0.0312, 0.0259, 0.0178], [0.2, 0.1213, 0.0736, 0.0649, 0.0573, 0.0506, 0.0307, 0.0271], [0.2635, 0.1245, 0.0755, 0.0588, 0.0519, 0.0404, 0.0357, 0.0315], [0.4345, 0.3384, 0.0755, 0.0666, 0.0191, 0.0191, 0.008, 0.0055], [0.3659, 0.2219, 0.2219, 0.0495, 0.034, 0.0265, 0.011, 0.0076], [0.7853, 0.1365, 0.0119, 0.0072, 0.006, 0.006, 0.0053, 0.0047], [0.546, 0.2922, 0.0349, 0.0308, 0.0083, 0.0078, 0.0069, 0.0057]], "ranks": {"Kotlin": [187378, 164235, 68418, 21725, 54555, 90518, 56472, 146110, 139633, 194821, 172173, 127848, 96668, 153410, 234368, 214547, 190018, 198792, 197280, 208765, 226967, 149220, 218158, 239813, 189607, 93263, 61205, 151211, 101923, 18271, 48804, 53941, 83651, 44951, 47993, 33349, 30134, 27845, 37396, 21982, 24063, 30916, 14246, 18027, 17923, 45030, 38008, 34142, 46850, 31745, 28576, 22228, 40780, 31440, 23752, 11148, 5369, 6169, 7553, 5081, 10971, 1946, 1995]}}, {"pos": 538, "top": [["s", " \u2013", "\u2013", ",", ".", "\u2013and", "t", "y"], ["s", " \u2013", "\u2013", "\u2013and", "\u0627\u062a", "sWith", " \u2013**", "es"], ["s", "\u2013", " \u2013", "\u2013and", ",", ".\u2013", ".", " \u2013,"], ["s", "sWith", "sprozess", "\u0627\u062a", "sii", "sula", "scha", "sche"], ["s", "\u0627\u062a", "sWith", "sche", "en", "\u2013and", "t", "er"], ["s", "\u0627\u062a", "sWith", "\u2013and", "t", "\u2013", "sor", "sense"], ["s", "\u0627\u062a", "t", "   \n", "sor", "sand", "er", "r"], ["s", "\u0627\u062a", "   \n", "sWith", "sense", "sburg", "sche", "sand"], ["s", "   \n", "   \n\n", "\u0627\u062a", "\u2013and", "sWith", "    \n\n", "    \n"], ["s", "\u2013and", "\u2013", "\u0627\u062a", "sWith", "   \n", "\u2013\u2013", "ingly"], ["s", "\u2013and", "\u2013", "er", "\u0627\u062a", "t", "r", "   \n"], ["s", "sWith", "\u0627\u062a", "ingly", "svar", "sburg", "er", "sii"], ["s", "sWith", "\u0627\u062a", "ingly", "er", "\u2013and", "svar", "saf"], ["s", "sWith", "\u0627\u062a", "\u2013and", "sii", "sste", "svar", "-esque"], ["s", "\u2013and", "sWith", " busted", " arguably", "\u0627\u062a", "-esque", " --"], ["s", "-esque", "sWith", " busted", " arguably", " hefty", "\u2013and", " incredibly"], ["s", "-esque", " incredibly", "sWith", "\u2013and", " busted", " hefty", " standout"], ["s", "\u2013and", "sWith", " hefty", " busted", "\u0627\u062a", " tweaking", "-esque"], ["s", "sWith", " hefty", "\u0627\u062a", " looming", "\u2013and", " busted", " incredibly"], ["s", "\u2013and", " hugely", " hefty", " wildly", " utterly", " swiftly", " looming"], ["s", "<|endoftext|>", "\u2013and", " hugely", "Though", " wildly", " utterly", " swiftly"], ["s", "sWith", " busted", "sste", "\u0627\u062a", " looming", " hugely", " wildly"], ["s", " --", " looming", " wildly", " hugely", " disastr", " busted", " utterly"], ["s", " --", " hugely", " looming", " dramatically", " much", " eventually", " wildly"], ["s", "\n\n", " \r\n\r\n", " \n\n", "Though", "   \n\n", " hugely", " --"], ["s", " wildly", " hugely", " looming", " busted", " --", " dramatically", " drastically"], ["s", " wildly", " looming", " busted", " hugely", " drastically", " unpredict", " skyrocket"], ["\n\n", " \n\n", "s", " --", " wildly", " eventually", " hugely", " dramatically"], ["s", "\n\n", " wildly", " looming", " dramatically", " hugely", " \n\n", " incredibly"], ["s", " \n\n", " wildly", " dramatically", " looming", " even", " unpredict", " unpredictable"], [" \n\n", "s", "\n\n", " even", " ...", " eventually", " wildly", " dramatically"], [" ...", "s", " even", " **", " eventually", " inevitably", " \n\n", " dramatically"], [" even", " inevitably", " eventually", " inevitable", " looming", "s", " unpredictable", " dramatically"], [" inevitably", " dramatically", " unpredictable", " inevitable", " looming", " wildly", " catastrophic", " even"], [" looming", " inevitably", " inevitable", " unpredictable", " relentlessly", " horrific", " relentless", " aggressively"], [" inevitably", " sluggish", " spikes", " slower", " inevitable", " slow", " unpredictable", " jitter"], [" inevitably", " sluggish", " unpredictable", " jitter", " spikes", " inevitable", " stutter", " slower"], [" stutter", " jitter", " glitches", " unpredictable", " spikes", " slower", " sluggish", " inevitably"], [" stutter", " glitches", " jitter", " spikes", " unpredictable", " glitch", " disrupt", " slower"], [" jitter", " stutter", " glitches", " spikes", " flick", " glitch", " unpredictable", " slowdown"], [" stutter", " jitter", " flick", " glitches", " glitch", " slowdown", " spikes", " framerate"], [" stutter", " jitter", " glitches", " glitch", " flick", " interruptions", " spikes", " disruptions"], [" stutter", " glitches", " jitter", " spikes", " glitch", " interruptions", " flick", " bursts"], [" glitches", " stutter", " spikes", " jitter", " interruptions", " glitch", " bursts", " flick"], [" glitches", " spikes", " jitter", " interruptions", " bursts", " stutter", " glitch", " disruptions"], [" spikes", " glitches", " jitter", " bursts", " interruptions", " stutter", " erratic", " flick"], [" spikes", " bursts", " glitches", " interruptions", " jitter", " erratic", " stutter", " crashes"], [" bursts", " spikes", " glitches", " interruptions", " jitter", " disrupt", " crashes", " disruptions"], [" bursts", " spikes", " interruptions", " glitches", " disrupt", " jitter", " erratic", " disruptions"], [" bursts", " glitches", " spikes", " interruptions", " disrupt", " erratic", " jitter", " crashes"], [" glitches", " interruptions", " bursts", " disrupt", " spikes", " erratic", " disrupting", " glitch"], [" interruptions", " interrupts", " disrupt", " spikes", " glitches", " interrupt", " bursts", "\u4e2d\u65ad"], [" spikes", " interruptions", " glitches", " bursts", " disrupt", " interrupts", " stutter", " interrupt"], [" spikes", " stutter", " glitches", " interruptions", " interrupts", " interrupt", " disrupt", " jitter"], [" spikes", " glitches", " interrupts", " stutter", "\u8dcc\u7834", " interrupt", " disrupt", " interruptions"], [" spikes", " stutter", "\u8dcc\u7834", " interrupts", " framerate", " spike", " glitches", " jitter"], [" stutter", " spikes", " cause", "\u9020\u6210", " causing", " interrupts", " interrupt", " jitter"], [" stutter", " spikes", " spike", " cause", " jitter", " causing", "cause", " interrupt"], [" stutter", " spike", " spikes", " jitter", " cause", " causing", " flick", "\u5e27"], [" stutter", " spike", " kill", " drop", " spikes", " cause", " flick", " dropped"], [" cause", " stutter", " kill", " spike", " drop", " causing", "cause", " causes"], [" cause", " spike", " kill", " drop", " stutter", " frame", " dip", " tear"], [" cause", " stutter", " drop", " spike", " kill", " tear", " exceed", " hitch"]], "p": [[0.9988, 0.0008, 0.0003, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9982, 0.001, 0.0006, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.6994, 0.2573, 0.0348, 0.0047, 0.0032, 0.0002, 0.0001, 0.0001], [0.3325, 0.0213, 0.0156, 0.0146, 0.0078, 0.0073, 0.0061, 0.0057], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0, 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], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9996, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9975, 0.0009, 0.0003, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9982, 0.0004, 0.0003, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9983, 0.0004, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.963, 0.0045, 0.0006, 0.0003, 0.0003, 0.0003, 0.0002, 0.0002], [0.856, 0.0054, 0.0027, 0.0014, 0.0007, 0.0007, 0.0006, 0.0005], [0.9648, 0.0009, 0.0006, 0.0005, 0.0004, 0.0004, 0.0004, 0.0003], [0.9958, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0], [0.9813, 0.0011, 0.001, 0.0004, 0.0002, 0.0002, 0.0002, 0.0002], [0.9596, 0.0011, 0.0006, 0.0006, 0.0005, 0.0004, 0.0004, 0.0003], [0.8345, 0.003, 0.0021, 0.0018, 0.0017, 0.0017, 0.0011, 0.0011], [0.5836, 0.051, 0.0031, 0.0029, 0.0025, 0.0021, 0.002, 0.0019], [0.1065, 0.0087, 0.0082, 0.0041, 0.0039, 0.0036, 0.0036, 0.0034], [0.0975, 0.0091, 0.0075, 0.0071, 0.0066, 0.0055, 0.0055, 0.0038], [0.0899, 0.0138, 0.0095, 0.0084, 0.0079, 0.0074, 0.0074, 0.0074], [0.053, 0.0152, 0.0152, 0.0134, 0.0134, 0.0126, 0.0118, 0.0118], [0.0295, 0.0179, 0.0131, 0.0102, 0.009, 0.0079, 0.007, 0.0066], [0.0485, 0.019, 0.0115, 0.0095, 0.009, 0.0066, 0.0062, 0.0058], [0.1357, 0.0184, 0.0173, 0.0143, 0.0111, 0.0072, 0.0072, 0.0068], [0.0482, 0.0275, 0.0201, 0.013, 0.0122, 0.0095, 0.0079, 0.0074], [0.077, 0.0321, 0.0195, 0.0161, 0.0134, 0.0098, 0.0086, 0.0076], [0.0572, 0.037, 0.0288, 0.0254, 0.0211, 0.0128, 0.0128, 0.012], [0.0451, 0.033, 0.0291, 0.0257, 0.0146, 0.0121, 0.0121, 0.0107], [0.0296, 0.0203, 0.014, 0.0123, 0.0116, 0.0102, 0.0096, 0.0096], [0.0218, 0.017, 0.017, 0.016, 0.015, 0.0124, 0.0117, 0.011], [0.026, 0.0229, 0.0148, 0.0139, 0.0108, 0.0108, 0.009, 0.009], [0.026, 0.0244, 0.0203, 0.0203, 0.0158, 0.0139, 0.0123, 0.0108], [0.0377, 0.0354, 0.0294, 0.0294, 0.0259, 0.0229, 0.0229, 0.0215], [0.0331, 0.0292, 0.0258, 0.0242, 0.0242, 0.0242, 0.0177, 0.0177], [0.0595, 0.0559, 0.0435, 0.0409, 0.0339, 0.0206, 0.0193, 0.0181], [0.1086, 0.1086, 0.0659, 0.0513, 0.0482, 0.0331, 0.0292, 0.0147], [0.1903, 0.168, 0.058, 0.0545, 0.0399, 0.0311, 0.0292, 0.0274], [0.3474, 0.1641, 0.1278, 0.047, 0.047, 0.0415, 0.0415, 0.0112], [0.246, 0.1916, 0.1317, 0.0799, 0.0622, 0.0484, 0.0377, 0.0259], [0.1917, 0.1493, 0.1163, 0.0799, 0.0549, 0.0549, 0.0428, 0.0377], [0.1838, 0.1263, 0.1115, 0.0766, 0.0766, 0.0676, 0.041, 0.0206], [0.1859, 0.1127, 0.1127, 0.0995, 0.0603, 0.047, 0.0303, 0.0236], [0.1834, 0.1428, 0.1428, 0.0866, 0.0764, 0.0319, 0.0233, 0.0219], [0.1795, 0.1584, 0.1584, 0.1234, 0.0332, 0.0332, 0.0293, 0.0275], [0.1845, 0.1437, 0.1437, 0.1437, 0.0363, 0.0283, 0.0266, 0.022], [0.1639, 0.1446, 0.1446, 0.1276, 0.0603, 0.0389, 0.0184, 0.0173], [0.2974, 0.0801, 0.0801, 0.0707, 0.0707, 0.0295, 0.0168, 0.0148], [0.2037, 0.0849, 0.0849, 0.0849, 0.0749, 0.0749, 0.0661, 0.0354], [0.3275, 0.1063, 0.0731, 0.0569, 0.0569, 0.0569, 0.0502, 0.0345], [0.3016, 0.0979, 0.0979, 0.0594, 0.0524, 0.0462, 0.0383, 0.0299], [0.408, 0.1032, 0.0709, 0.0552, 0.043, 0.038, 0.0245, 0.0245], [0.3336, 0.1786, 0.0512, 0.0424, 0.031, 0.0291, 0.0274, 0.0242], [0.2708, 0.1279, 0.0501, 0.039, 0.0367, 0.0367, 0.0323, 0.0285], [0.7466, 0.0613, 0.0289, 0.0289, 0.0225, 0.0121, 0.0094, 0.0073], [0.6941, 0.057, 0.057, 0.0346, 0.0305, 0.0127, 0.0127, 0.006], [0.2444, 0.2444, 0.1019, 0.1019, 0.0794, 0.0375, 0.0227, 0.013], [0.7629, 0.0488, 0.043, 0.0335, 0.023, 0.0158, 0.0123, 0.008], [0.7417, 0.0537, 0.0505, 0.0505, 0.0306, 0.0047, 0.0044, 0.0044], [0.7024, 0.0951, 0.0422, 0.0396, 0.0396, 0.0057, 0.005, 0.0037]], "ranks": {"Kotlin": [191632, 159008, 143508, 22475, 40702, 82250, 157317, 163109, 192538, 220803, 228655, 176912, 166093, 175740, 224887, 205058, 217633, 211091, 215545, 238610, 242345, 226730, 236066, 243900, 243334, 234511, 223010, 229051, 219476, 183774, 208788, 190963, 187983, 142874, 159712, 111707, 89426, 91317, 100818, 79941, 81099, 93808, 47073, 44157, 41558, 65690, 46755, 66498, 62954, 55997, 41928, 24360, 22362, 8399, 6553, 4239, 1846, 4231, 2983, 3123, 7462, 4222, 4068]}}, {"pos": 539, "top": [[".", ",", ";", "\u00a0\u00a0", "\u2013", "?", "\u00a0", ":"], [".", "\u2013", "\u00ad", "\uff0e", ",", "\u00ac", ";", "  \n"], [".", ",", "\u2013", "\u2026", ";", "\u2026.", ":", "?"], [" Shemale", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "uggy", "\u0e21\u0e19\u0e38\u0e29", "\uad49\uc7a5", "\ub370\ubbf8", " milfs", " Blowjob"], ["\u00ac", ".", "\u00a0\u00a0", ":...", "...", "...'", ":", "...("], ["\u00a0\u00a0", ".", ":", "   \n", "!", "\u00ac", "  \n", "\u2026."], ["...'", "  \n", "...", "\u00ac", "   \n", "...\"", "...(", ":..."], ["...'", "   \n", "  \n", ":...", "...**", "  \r\n", "       \n", "          \n"], ["...", "...'", "  \n", ":...", "  \n\n", "   \n", "...\"", "  \n  \n"], ["\u00ad", "\u00a0\u00a0", " \u00ad", "...", "...\\", "...'", ":...", "\u00ac"], ["...", "...'", "...\\", ":...", "...\"", "[...]", "  \n", " \u00ad"], [" havoc", "...**", "...\\", "...'", " trouble", "...", "Trou", " **'"], [" havoc", "...**", "...\\", "...'", " trouble", "Trou", " **'", ":..."], [" havoc", "Trou", " trouble", "\u6df7\u4e71", " izman", " backlash", "\u5012\u903c", "\u4e0d\u5229\u5f71\u54cd"], [" havoc", " trouble", "Trou", " horrific", "f\u00e4llig", "\u9669\u60c5", " Trouble", " backlash"], [" havoc", " backlash", " wildly", " horrific", "Trou", " standout", " sprawling", " entirety"], [" havoc", " hefty", " sprawling", " standout", " fallout", " glitches", " backlash", "\u5927\u5e45\u589e\u52a0"], [" havoc", " hefty", " glitches", " sprawling", " backlash", "Trou", " horrific", "\u5927\u5e45\u589e\u52a0"], [" havoc", " hefty", " horrific", " wreak", " glitches", "\u7f6a\u9b41\u7978\u9996", " chaos", " rampant"], [" havoc", " wildly", " myriad", " hefty", " wreak", " horrific", " sprawling", " drastically"], [" havoc", " myriad", " wildly", " drastically", " hefty", "Trou", " sprawling", " wreak"], [" havoc", " glitches", " wildly", " horrific", " skyrocket", " wreak", " drastically", " incredibly"], [" havoc", " massive", " drastically", " wildly", " incredibly", " myriad", " massively", " huge"], [" havoc", " massive", " wildly", " drastically", " dramatically", " heavily", " much", " myriad"], [" havoc", " wildly", " myriad", " massive", " drastically", " dramatically", " heavily", " hugely"], [" havoc", " glitches", " massive", " wildly", " incredibly", " slowdown", " spikes", " nightmares"], [" havoc", " glitches", " spikes", " bursts", " explosions", " massive", " crashes", " unpredictable"], [" wildly", " massive", " heavily", " havoc", " dramatically", " dramatic", " much", " huge"], [" glitches", " spikes", " havoc", " panic", " crashes", " unpredictable", " massive", " bursts"], [" crashes", " glitches", " spikes", " panic", " unpredictable", " havoc", " nightmares", " bursts"], [" unpredictable", " crashes", " panic", " spikes", " massive", " glitches", " nightmares", " bursts"], [" panic", " crashes", " unpredictable", " explosions", " nightmares", " catastrophic", " shock", " huge"], [" panic", " nightmares", " unpredictable", " catastrophic", " massive", " spikes", " crashes", " explosions"], [" glitches", " panic", " catastrophic", " unpredictable", " nightmares", " spikes", " havoc", " crashes"], [" glitches", " havoc", " spikes", " catastrophic", " panic", " glitch", " unpredictable", " frantic"], [" glitches", " glitch", " spikes", " crashes", " stutter", " jitter", " delays", " catastrophic"], [" glitches", " stutter", " glitch", " jitter", " spikes", " delays", " crashes", " unpredictable"], [" glitches", " stutter", " glitch", " jitter", " spikes", " delays", " interruptions", " crashes"], [" glitches", " stutter", " glitch", " delays", " jitter", " spikes", " interruptions", " delay"], [" glitches", " stutter", " jitter", " glitch", " spikes", " delays", " interruptions", " flick"], [" stutter", " glitches", " jitter", " glitch", " interruptions", " framerate", " delays", " spikes"], [" stutter", " glitches", " jitter", " glitch", " interruptions", " framerate", " spikes", " flick"], [" stutter", " glitches", " jitter", " glitch", " spikes", " interruptions", " framerate", " bursts"], [" glitches", " stutter", " glitch", " spikes", " jitter", " interruptions", " framerate", " bursts"], [" glitches", " spikes", " stutter", " jitter", " glitch", " interruptions", " bursts", " framerate"], [" glitches", " spikes", " jitter", " stutter", " interruptions", " bursts", " glitch", " framerate"], [" glitches", " spikes", " interruptions", " bursts", " jitter", " stutter", " framerate", " glitch"], [" glitches", " spikes", " bursts", " interruptions", " stutter", " jitter", " framerate", " glitch"], [" spikes", " glitches", " bursts", " interruptions", " framerate", " jitter", " stutter", " instantaneous"], [" glitches", " spikes", " bursts", " interruptions", " jitter", "\u77ac\u95f4", " stutter", " framerate"], [" glitches", " spikes", " bursts", "\u77ac\u95f4", " interruptions", " stutter", " jitter", " framerate"], [" spikes", " glitches", " interruptions", " bursts", " stutter", " jitter", "\u77ac\u95f4", " framerate"], [" spikes", " stutter", " glitches", "\u5361\u987f", " bursts", " jitter", " framerate", " interruptions"], [" stutter", " spikes", " glitches", " jitter", " framerate", "\u5361\u987f", " bursts", " interruptions"], [" spikes", " stutter", " glitches", " framerate", " jitter", " spike", "\u5361\u987f", "\u5e27"], [" framerate", " stutter", "\u5e27", " spikes", "/frame", " FPS", "_fps", " glitches"], [" stutter", " framerate", "\u5e27", " spikes", " dropped", "_fps", " FPS", " glitches"], [" stutter", " framerate", "\u5e27", " dropped", " jitter", " spikes", "/frame", " FPS"], [" frame", "\u5e27", " frames", " Frame", "/frame", "-frame", "Frame", "frame"], [" frame", "\u5e27", " frames", " Frame", " framerate", "-frame", "/frame", "Frame"], [" frame", " framerate", " Frame", " dropped", "-frame", " stutter", "\u5e27", " frames"], [" frame", " Frame", " framerate", "-frame", " frames", "\u5e27", "/frame", " stutter"], [" frame", " stutter", " Frame", " frames", " micro", " dropped", " framerate", " fram"]], "p": [[0.9134, 0.075, 0.002, 0.0018, 0.0015, 0.0011, 0.0008, 0.0008], [0.11, 0.0553, 0.0405, 0.0204, 0.018, 0.0169, 0.0131, 0.0102], [0.7074, 0.2297, 0.0242, 0.0122, 0.0079, 0.0024, 0.0023, 0.0015], [0.0144, 0.0064, 0.0039, 0.0036, 0.0034, 0.0025, 0.0025, 0.0024], [0.0572, 0.0474, 0.0446, 0.0254, 0.0175, 0.012, 0.0093, 0.0093], [0.1091, 0.013, 0.0115, 0.0101, 0.0074, 0.007, 0.0066, 0.0054], [0.2487, 0.2337, 0.0974, 0.0713, 0.0337, 0.0262, 0.0231, 0.0159], [0.0954, 0.0698, 0.0616, 0.02, 0.0146, 0.0094, 0.0083, 0.0083], [0.2383, 0.1358, 0.1276, 0.0933, 0.0441, 0.0414, 0.0343, 0.0267], [0.0591, 0.0433, 0.0382, 0.0382, 0.0337, 0.0297, 0.0247, 0.0247], [0.5524, 0.0748, 0.062, 0.0275, 0.0214, 0.0189, 0.0189, 0.0167], [0.0864, 0.0219, 0.0219, 0.0181, 0.0071, 0.0052, 0.0052, 0.0046], [0.0414, 0.0105, 0.0077, 0.0077, 0.0041, 0.0026, 0.0025, 0.0022], [0.0372, 0.0044, 0.0029, 0.002, 0.002, 0.0016, 0.0015, 0.0015], [0.0664, 0.0031, 0.0027, 0.0017, 0.0017, 0.0015, 0.0014, 0.0013], [0.011, 0.0026, 0.0022, 0.0022, 0.002, 0.0019, 0.0019, 0.0018], [0.0137, 0.0021, 0.0019, 0.0017, 0.0017, 0.0017, 0.0017, 0.0016], [0.0385, 0.0067, 0.0028, 0.0028, 0.0022, 0.0022, 0.0022, 0.0018], [0.0706, 0.007, 0.0066, 0.0051, 0.0045, 0.0035, 0.0035, 0.0033], [0.1149, 0.0114, 0.0107, 0.0078, 0.0073, 0.0061, 0.0057, 0.0045], [0.0501, 0.0153, 0.0144, 0.0053, 0.005, 0.0047, 0.0044, 0.0036], [0.1171, 0.0051, 0.0045, 0.0045, 0.0043, 0.0038, 0.0031, 0.0031], [0.1152, 0.0188, 0.0121, 0.0114, 0.0089, 0.0083, 0.0069, 0.0069], [0.0301, 0.0182, 0.0142, 0.0098, 0.0098, 0.0092, 0.0086, 0.0086], [0.0344, 0.0135, 0.0112, 0.0093, 0.0087, 0.0082, 0.0072, 0.0064], [0.1166, 0.0314, 0.0115, 0.0108, 0.0075, 0.007, 0.007, 0.0062], [0.0955, 0.033, 0.0188, 0.0121, 0.0114, 0.0114, 0.0114, 0.0114], [0.0146, 0.0146, 0.0137, 0.0129, 0.0121, 0.0088, 0.0073, 0.0069], [0.0243, 0.0228, 0.0178, 0.0147, 0.0147, 0.0138, 0.013, 0.0122], [0.0386, 0.0363, 0.0265, 0.022, 0.0194, 0.0142, 0.0133, 0.0133], [0.0235, 0.0207, 0.0207, 0.0194, 0.0142, 0.0134, 0.0134, 0.0134], [0.025, 0.0195, 0.0183, 0.0152, 0.0142, 0.0134, 0.0118, 0.0118], [0.0214, 0.0189, 0.0178, 0.0167, 0.0122, 0.0115, 0.0108, 0.0101], [0.0642, 0.0532, 0.0323, 0.0303, 0.0303, 0.0251, 0.0236, 0.0236], [0.0657, 0.0352, 0.033, 0.031, 0.0292, 0.0213, 0.0213, 0.0156], [0.1497, 0.0457, 0.0403, 0.0277, 0.026, 0.0216, 0.0216, 0.0168], [0.2426, 0.074, 0.0653, 0.0396, 0.0372, 0.0176, 0.0146, 0.0121], [0.202, 0.0896, 0.0656, 0.0351, 0.031, 0.031, 0.0177, 0.0137], [0.3523, 0.1296, 0.0694, 0.0575, 0.0477, 0.0371, 0.0349, 0.01], [0.2965, 0.1587, 0.1091, 0.0849, 0.0401, 0.0243, 0.0178, 0.0178], [0.266, 0.1828, 0.1257, 0.0864, 0.0558, 0.0383, 0.0247, 0.0218], [0.4539, 0.1892, 0.0894, 0.0614, 0.0478, 0.0199, 0.0199, 0.0176], [0.3393, 0.2643, 0.0972, 0.0757, 0.052, 0.0358, 0.0169, 0.0149], [0.3195, 0.2196, 0.0808, 0.0629, 0.0555, 0.0382, 0.0231, 0.0217], [0.3477, 0.0996, 0.0879, 0.0685, 0.0685, 0.0685, 0.0471, 0.0285], [0.2569, 0.2001, 0.0834, 0.065, 0.065, 0.065, 0.0348, 0.0254], [0.291, 0.2266, 0.0736, 0.0736, 0.0506, 0.0446, 0.0254, 0.0186], [0.304, 0.2683, 0.0871, 0.0528, 0.0363, 0.0341, 0.0194, 0.0183], [0.2909, 0.2567, 0.1213, 0.0394, 0.0326, 0.0307, 0.0271, 0.0128], [0.2685, 0.237, 0.1629, 0.0412, 0.0321, 0.022, 0.022, 0.0161], [0.3768, 0.1571, 0.0953, 0.051, 0.0423, 0.0226, 0.02, 0.0176], [0.2618, 0.2311, 0.1588, 0.0662, 0.0584, 0.0244, 0.0157, 0.013], [0.5007, 0.268, 0.0986, 0.0171, 0.0171, 0.0151, 0.0133, 0.0133], [0.4323, 0.3367, 0.0965, 0.0355, 0.0215, 0.0148, 0.009, 0.009], [0.5394, 0.1984, 0.1364, 0.0443, 0.0144, 0.0068, 0.0056, 0.0056], [0.4301, 0.2609, 0.096, 0.0847, 0.0167, 0.0147, 0.0147, 0.0115], [0.4324, 0.2622, 0.0456, 0.0313, 0.019, 0.0168, 0.0168, 0.0131], [0.8388, 0.0884, 0.0093, 0.0093, 0.0082, 0.0044, 0.0034, 0.003], [0.5086, 0.1651, 0.1135, 0.0607, 0.0368, 0.0368, 0.0223, 0.0174], [0.7105, 0.0661, 0.0661, 0.0515, 0.0243, 0.0243, 0.0189, 0.0115], [0.5837, 0.1672, 0.0479, 0.0291, 0.0291, 0.0256, 0.0226, 0.0226], [0.9173, 0.0277, 0.0115, 0.0102, 0.0055, 0.0048, 0.0042, 0.0042], [0.9801, 0.0066, 0.0024, 0.0019, 0.0019, 0.0017, 0.0015, 0.0005]], "ranks": {"Kotlin": [229694, 207526, 156926, 33725, 67999, 118528, 179689, 206578, 219713, 241527, 240649, 232464, 218660, 230843, 242064, 232479, 235647, 226956, 223267, 244245, 245176, 229228, 241370, 244510, 242621, 209240, 198554, 217395, 192132, 167883, 184094, 171131, 165841, 119448, 114040, 73794, 33064, 29514, 31954, 25510, 30651, 49190, 25170, 22008, 27888, 43775, 37408, 48763, 42700, 59281, 54568, 38713, 19976, 6982, 5725, 6036, 2333, 9717, 4653, 6685, 11635, 20682, 15219]}}, {"pos": 540, "top": [[" \u2013", "\u2013", ".", ",", " ", "\u2026..", "\u2013and", " [\u2026]"], [" \u2013", "\u2013", "\u2013and", "\u2013\u2013", "\u00ad", ".\u2013", " \u2018", " *\u2013"], ["\u2013", " \u2013", "\u2013and", "\u2026..", "\u2026", ".\u2013", "\u2026.", "\u2013\u2013"], ["buster", "odle", "flate", "``", " *\u2013", " ``", "':''", " pupper"], ["@", " @", "&", " \u2018", "*@", "\u2018", ":@", " '@"], ["\u2013", "\u2013and", "bod", "(Frame", "board", "\u2013\u2013", " *\u2013", "flate"], ["\u2018", " \u2018", "i", "&", "ster", "@", " *\u2013", "~"], ["ster", " @", " \u2018", "i", " \u2013", "\u2013and", "@", "\u2018"], ["&", "\u2013", "<|endoftext|>", "\u2018", " \u2018", " \u2013", "\u2013and", "i"], ["\u2013", "\u2013and", "\u2013\u2013", "(Frame", "&", "less", "-&", "i"], ["\u2013", "@", "&", "i", "-", " \u2013", "less", "e"], ["less", "ingly", "caster", "(Frame", "stride", "buster", "board", "bite"], ["less", "ingly", "(Frame", "lessness", "ster", "buster", "gable", "board"], ["less", "ingly", "\u2013", "(Frame", "ar", "st", "stride", "lessness"], ["\u2013", "i", "e", "less", "o", "cap", "st", "ingly"], ["ingly", "-esque", "ar", "less", "ball", "cap", "\u5931\u63aa", "tte"], ["e", "\u2013", "ar", "less", "i", "o", "st", "ers"], ["less", "kits", "beat", "kick", "oire", "ingly", "ball", "board"], ["less", "ingly", "kick", "oire", "beat", "(Frame", "stakes", "bite"], ["\u2013", "less", "e", "ingly", "-&", "i", "cap", "beat"], ["<|endoftext|>", "i", "e", "\u2013", "less", "cap", "d", "beat"], ["(Frame", "bite", "oire", "buster", "ingly", "kick", "blink", "beat"], ["less", "ingly", "(Frame", "beat", "bite", "oire", "kick", "lessly"], ["less", "beat", "(Frame", "ingly", "ball", "oire", "bite", "kick"], [" \r\n\r\n", "beat", " \r\n", "(Frame", "kick", "stride", ".Frame", "uptime"], [" framerate", "beat", "Pixel", "(Frame", "kick", "uptime", "Stride", "stride"], [" framerate", " pixel", "Pixel", "-motion", "uptime", "(Frame", "beat", " shutter"], [" framerate", " shutter", " flick", "beat", " motion", " jitter", " footage", "stride"], [" framerate", " shutter", " flick", "beat", " pixel", "uptime", "(Frame", "Pixel"], [" framerate", " shutter", " flick", " spikes", " pixel", " kicks", " jitter", "beat"], [" spikes", " flick", " shutter", " crashes", " kicks", " moments", " framerate", " speeds"], [" crashes", " spikes", " flick", " shutter", " kicks", " flashes", " framerate", " animation"], [" spikes", " flick", " kicks", " crashes", " shutter", " flashes", " moments", " jitter"], [" framerate", " pixel", " spikes", " flick", " crashes", " jitter", "ptime", " glitch"], [" framerate", "ptime", " pixel", " spikes", " flick", "uptime", "\u5468\u671f\u7684", " jitter"], [" framerate", " *\u2013", " jitter", " flick", " spikes", " milliseconds", "ptime", " stutter"], [" framerate", " jitter", " stutter", " milliseconds", " latency", " flick", " spikes", " glitch"], [" framerate", " stutter", " jitter", " flick", " pixel", " milliseconds", " latency", " fps"], [" framerate", " stutter", " jitter", " milliseconds", " flick", " glitches", " delays", " spikes"], [" framerate", " jitter", " stutter", " milliseconds", " flick", " delays", " fps", " glitch"], [" framerate", " stutter", " jitter", " delays", " fps", " delay", " milliseconds", " latency"], [" framerate", " stutter", " jitter", " glitches", " glitch", " fps", " milliseconds", "\u5cf0\u503c"], [" framerate", " stutter", " jitter", "\u5cf0\u503c", " glitches", " glitch", " spikes", " milliseconds"], [" framerate", " stutter", "\u5cf0\u503c", " jitter", " spikes", " glitches", " glitch", " slowdown"], [" framerate", " jitter", " spikes", "\u5cf0\u503c", " glitches", " stutter", " glitch", " slowdown"], [" framerate", " spikes", " jitter", " stutter", " glitches", "\u5cf0\u503c", " slowdown", " delays"], [" framerate", " spikes", " jitter", " glitches", " stutter", " delays", " crashes", " peaks"], [" spikes", " framerate", " glitches", " jitter", "\u5cf0\u503c", " stutter", " crashes", " slowdown"], [" spikes", " framerate", " glitches", " jitter", " stutter", "\u5cf0\u503c", " timeouts", " crashes"], [" spikes", " glitches", " framerate", " stutter", " jitter", " slowdown", " timeouts", " bursts"], [" glitches", " spikes", " framerate", " stutter", " jitter", " timeouts", " slowdown", "\u5361\u987f"], [" spikes", " glitches", " stutter", " slowdown", "\u5361\u987f", " interruptions", " jitter", " timeouts"], [" stutter", " spikes", "\u5361\u987f", " glitches", " slowdown", " jitter", " delays", "\u5ef6\u8fdf"], [" spikes", " stutter", " glitches", " jitter", "\u5361\u987f", " latency", " framerate", "(Frame"], [" spikes", " stutter", " glitches", " jitter", "(Frame", " latency", " drops", " framerate"], [" stutter", " spikes", " jitter", " glitches", " latency", " drops", " timeouts", " interruptions"], [" drops", " skips", " dropping", "-drop", " drop", " skipping", "drop", " dropped"], [" stutter", " drops", " dropping", " drop", "-drop", " skips", " dropped", "drop"], [" drops", " stutter", "-drop", " dropping", " drop", " Drops", " dropped", "drop"], [" drops", " drop", "-drop", " dropping", " stutter", " dropped", " Drops", "drop"], [" drops", " Drops", " dips", "-drop", " drop", "drops", " spikes", " stutter"], [" drops", " stutter", " dips", " spikes", " drop", " Drops", "drops", "-drop"], [" drops", " stutter", " stalls", " dips", " spikes", " skips", " drop", " Drops"]], "p": [[0.9491, 0.0417, 0.0028, 0.0013, 0.001, 0.0008, 0.0006, 0.0004], [0.7656, 0.1708, 0.0489, 0.0043, 0.0009, 0.0003, 0.0003, 0.0002], [0.6719, 0.2801, 0.0261, 0.0109, 0.0051, 0.0018, 0.0013, 0.0007], [0.0049, 0.0046, 0.0038, 0.0034, 0.0032, 0.003, 0.0026, 0.0026], [0.3037, 0.0528, 0.0386, 0.0301, 0.0171, 0.0171, 0.0142, 0.0111], [0.0112, 0.0105, 0.0099, 0.0072, 0.0064, 0.0053, 0.005, 0.0047], [0.1447, 0.039, 0.0268, 0.0196, 0.0173, 0.0153, 0.0119, 0.0112], [0.0166, 0.0137, 0.0129, 0.01, 0.0094, 0.0083, 0.0078, 0.0069], [0.0994, 0.0727, 0.0441, 0.0389, 0.0389, 0.0323, 0.0236, 0.0173], [0.086, 0.0231, 0.0035, 0.0026, 0.0022, 0.002, 0.0019, 0.0018], [0.2464, 0.0456, 0.0428, 0.0355, 0.0123, 0.0123, 0.009, 0.0074], [0.024, 0.0073, 0.0047, 0.0039, 0.0039, 0.0037, 0.0031, 0.0031], [0.0684, 0.0135, 0.0119, 0.0093, 0.0072, 0.0064, 0.0056, 0.0047], [0.0362, 0.0104, 0.0076, 0.0059, 0.0049, 0.0046, 0.0036, 0.0036], [0.0326, 0.012, 0.0106, 0.01, 0.0088, 0.0068, 0.0068, 0.006], [0.0048, 0.0045, 0.0043, 0.004, 0.0027, 0.0023, 0.0021, 0.002], [0.037, 0.0225, 0.0198, 0.0186, 0.0186, 0.0175, 0.0106, 0.0094], [0.0176, 0.01, 0.0083, 0.0078, 0.0078, 0.0069, 0.0065, 0.0061], [0.0152, 0.0111, 0.0104, 0.0098, 0.0098, 0.0076, 0.0067, 0.0067], [0.014, 0.0116, 0.0116, 0.008, 0.008, 0.0075, 0.0059, 0.0043], [0.2027, 0.0079, 0.0061, 0.0051, 0.0035, 0.0033, 0.0029, 0.0027], [0.0208, 0.0077, 0.0064, 0.0053, 0.0047, 0.0044, 0.0028, 0.0028], [0.0221, 0.0098, 0.0053, 0.0049, 0.0041, 0.0038, 0.0036, 0.0034], [0.0115, 0.0045, 0.0035, 0.0031, 0.0026, 0.0023, 0.002, 0.0019], [0.0089, 0.0089, 0.0084, 0.0029, 0.0024, 0.0023, 0.0023, 0.0023], [0.0163, 0.0087, 0.0077, 0.0077, 0.0056, 0.005, 0.0044, 0.0039], [0.0175, 0.0069, 0.0064, 0.0044, 0.0042, 0.0042, 0.0039, 0.0035], [0.0104, 0.0071, 0.0049, 0.0049, 0.0046, 0.0026, 0.0025, 0.0023], [0.0106, 0.0069, 0.0069, 0.0057, 0.005, 0.0044, 0.0039, 0.0039], [0.014, 0.0085, 0.0075, 0.0051, 0.0048, 0.0038, 0.0035, 0.0035], [0.012, 0.01, 0.0083, 0.0078, 0.0078, 0.0053, 0.0053, 0.0053], [0.0121, 0.0114, 0.0114, 0.0083, 0.0083, 0.0078, 0.0074, 0.0065], [0.0129, 0.0121, 0.0107, 0.0089, 0.0074, 0.0065, 0.0065, 0.0054], [0.0335, 0.014, 0.0116, 0.0102, 0.009, 0.0066, 0.0048, 0.004], [0.0314, 0.0079, 0.0075, 0.0066, 0.0055, 0.0043, 0.0043, 0.0043], [0.0355, 0.0102, 0.009, 0.009, 0.0084, 0.0066, 0.0062, 0.0062], [0.0829, 0.0325, 0.0305, 0.0197, 0.0163, 0.0135, 0.0112, 0.0087], [0.133, 0.0432, 0.0336, 0.0231, 0.0169, 0.0159, 0.014, 0.0132], [0.209, 0.0871, 0.0679, 0.022, 0.022, 0.0207, 0.0172, 0.0161], [0.3447, 0.0769, 0.0723, 0.025, 0.0194, 0.0172, 0.0172, 0.0161], [0.6023, 0.0362, 0.034, 0.0249, 0.0249, 0.0142, 0.0142, 0.0133], [0.5775, 0.0782, 0.0572, 0.0174, 0.0164, 0.0164, 0.0128, 0.012], [0.4448, 0.0876, 0.0726, 0.0365, 0.0303, 0.0303, 0.0284, 0.0143], [0.3851, 0.0712, 0.0555, 0.046, 0.0336, 0.0316, 0.0279, 0.0231], [0.3881, 0.0634, 0.0595, 0.0525, 0.0409, 0.0299, 0.0206, 0.0206], [0.2169, 0.149, 0.0849, 0.0484, 0.0427, 0.0259, 0.0243, 0.0229], [0.1843, 0.1843, 0.0768, 0.0722, 0.0438, 0.0249, 0.0234, 0.022], [0.181, 0.181, 0.0969, 0.0625, 0.0379, 0.0335, 0.0245, 0.0203], [0.195, 0.1832, 0.0865, 0.0525, 0.0493, 0.0233, 0.016, 0.016], [0.1522, 0.1185, 0.0983, 0.0494, 0.0494, 0.0233, 0.0233, 0.0219], [0.1565, 0.0838, 0.0787, 0.0372, 0.029, 0.0256, 0.0225, 0.0199], [0.1918, 0.1494, 0.1027, 0.0585, 0.0485, 0.0428, 0.0378, 0.0215], [0.3284, 0.2558, 0.1208, 0.0571, 0.0392, 0.0238, 0.0185, 0.0164], [0.3875, 0.3018, 0.0524, 0.0318, 0.0281, 0.0117, 0.011, 0.0091], [0.4684, 0.2213, 0.0559, 0.0339, 0.0193, 0.0171, 0.016, 0.0103], [0.6596, 0.189, 0.0226, 0.0146, 0.0083, 0.0061, 0.005, 0.0047], [0.5185, 0.1157, 0.1021, 0.0546, 0.0482, 0.0331, 0.0292, 0.0201], [0.4151, 0.4151, 0.0341, 0.0301, 0.0234, 0.0207, 0.0125, 0.0111], [0.8577, 0.0377, 0.0202, 0.0178, 0.0178, 0.0122, 0.0122, 0.0074], [0.8517, 0.048, 0.0291, 0.0177, 0.0121, 0.0121, 0.0083, 0.0057], [0.9873, 0.0036, 0.0015, 0.0013, 0.0013, 0.0012, 0.001, 0.0006], [0.9631, 0.0121, 0.0045, 0.0031, 0.0031, 0.0027, 0.002, 0.0019], [0.9675, 0.0201, 0.0021, 0.0019, 0.0013, 0.0013, 0.0011, 0.0008]], "ranks": {"Kotlin": [207901, 216641, 177097, 73525, 135516, 156492, 173150, 229682, 235595, 239161, 244968, 230751, 188616, 224276, 244981, 232981, 231157, 221392, 207699, 239823, 240377, 199331, 212577, 233233, 218249, 156126, 94360, 170915, 145712, 121878, 167587, 130316, 170083, 71026, 56743, 37043, 17178, 16352, 22445, 17346, 18480, 22929, 17250, 11298, 15848, 25060, 22087, 19511, 35681, 43362, 53361, 46427, 36035, 20680, 8937, 5572, 1968, 5200, 4430, 2146, 5622, 18036, 8322]}}, {"pos": 541, "top": [[".", ",", " \u2013", "\u2013", " ", "\u00a0", "-", ";"], ["**\u2013", "  \n  \n", "\u2013and", "   \n", " \n  \n", "\u2013", " **\u2013", "  \n"], ["**\u2013", "\u2013and", "\u2013", " **\u2013", ".", "(**", " '**", "\u2026**"], ["\uc3df", " '**", " **:", "\uff0d\uff0d", "\uff0a\uff0a\uff0a\uff0a", " \n \n", "\uff3f\uff3f", "\u2019**"], [" \n  \n", " \n \n", " \n\n", "  \n  \n", " \n        \n", " \n", " \n\n\n\n\n", " \n\n\n"], [" \n  \n", " \uff08", " \n", " \n \n", "\u2019**", "   \n", "\uff01", " \n        \n"], ["\u2019**", " \n  \n", " \n \n", " **", " \n    \n", " **\u2018", " **(", "  \n  \n"], [" \n \n", " \n  \n", "\u2019**", " \n    \n", " \r\n \r\n", "  \n  \n", " \n        \n", " '**"], [" \n  \n", " \n    \n", " \n\n", " \n \n", " \n", "  \n  \n", " \n\n\n", " \n            \n"], ["  \n  \n", " \n  \n", " \n \n", " \n    \n", " \r\n \r\n", "\\_", " \n            \n", " \r\n"], [" \n  \n", "  \n  \n", " \n \n", " \n", " \n    \n", " ", " \n\n", " \n            \n"], [" **", " \n  \n", " \n    \n", " ****", " )**", " \n            \n", " \n        \n", " \r\n"], [" **", " )**", " \n  \n", " **:", " \n            \n", " '**", "\u2019**", " \n    \n"], [" surge", " plummet", " showcasing", " syncing", "kick", " down", " skyrocket", " insanely"], [" down", " heavily", " plummet", " off", " dropping", " onto", " showcasing", " wildly"], [" showcasing", " skyrocket", " wildly", " heavily", " down", " incentiv", " due", " incredibly"], [" down", " heavily", " incredibly", " showcasing", " due", " skyrocket", " wildly", " off"], [" down", " heavily", " skyrocket", " plummet", " wildly", " lingering", " \u2019", "kick"], [" \u2019", " down", " skyrocket", " heavily", " plummet", " wildly", " fueled", " critical"], [" \u2019", " --", " \u2013", " heavily", " even", " down", "\u2014even", " \u2014"], ["<|endoftext|>", " --", " \n\n", " \n  \n", " heavily", " \u2014", " wildly", " even"], [" \u2019", " heavily", " even", " skyrocket", " down", " wildly", " ''", " quickly"], [" \u2019", " --", " heavily", " even", " ''", " down", " across", " wildly"], [" \u2019", " ,", " even", " --", " over", " heavily", " \u2018", " down"], [" \n  \n", " \n\n", " \u2019", " \r\n \r\n", " \r\n\r\n", " --", " \r\n", " \n"], [" **", " \n  \n", " .**", " \u2019", " )**", " \r\n \r\n", " \n\n", " \r\n"], [" **", " \u2019", " \n  \n", " --", " .**", " spikes", " heavily", " even"], [" \u2019", " --", " **", " \n\n", " \n  \n", " heavily", " even", " ,"], [" **", " .**", " \u2019", " \n  \n", " spikes", " even", " )**", " heavily"], [" **", " .**", " \n  \n", " even", " \u2019", " spikes", " )**", "\u2011"], [" even", " during", " **", " due", " .**", " over", " ,", " ."], [" even", " **", " .**", " .", " during", " due", " over", " critical"], [" even", " .**", " **", " critical", " spikes", " due", " during", " worse"], [" even", " spikes", " critical", " heavily", " \u2013", "\u2014even", " worse", " due"], [" even", " spikes", " .**", " critical", "\u2014even", " worse", " disproportionately", " heavily"], [" even", "\u2014even", " .**", " \u201c", " spikes", " critical", " \u2014", " \u2013"], [" even", "\u2014even", " spikes", " critical", " jitter", " notoriously", " .**", " despite"], [" even", "\u2014even", " \u201c", " critical", " spikes", " jitter", " .**", " notoriously"], [" even", "\u2014even", " \u201c", " spikes", " jitter", " critical", " notoriously", " worse"], [" even", " spikes", " jitter", "\u2014even", " critical", " unpredictable", " \u201c", " during"], [" even", " spikes", " jitter", " during", " critical", " due", " bursts", " unpredictable"], [" even", " spikes", " jitter", " during", " spike", " critical", "\u2014even", " bursts"], [" spikes", " jitter", " even", " during", " erratic", " bursts", " critical", " spike"], [" spikes", " even", " jitter", " during", " bursts", " critical", " unpredictable", " fluct"], [" spikes", " even", " jitter", " during", " critical", " unpredictable", " every", " bursts"], [" even", " spikes", " jitter", " unpredictable", " critical", " during", " every", " bursts"], [" even", " spikes", " inevitable", " jitter", " every", " unpredictable", " erratic", " EVERY"], [" spikes", ".**", " during", " even", " every", " unpredictable", " erratic", " inevitable"], [".", " (>", " spikes", ".**", " exceeding", " erratic", " **.", " inevitable"], [" spikes", ".", ".**", " (>", " anywhere", "\u8fbe\u4e0d\u5230", "\u65e0\u6cd5\u6ee1\u8db3", " inconsistent"], [".**", " **.", ".", "**.", " (>", "+.", " **.**", "()."], [".**", "\u8fbe\u4e0d\u5230", "**.", ".", " **.", " exceeding", "\u8dcc\u7834", "+."], ["\u8fbe\u4e0d\u5230", ".**", " exceeding", "\u8dcc\u7834", ".", "**.", " (>", " disrupting"], [".**", " ruining", ".", " exceeding", " instantly", "\u8dcc\u7834", " spikes", "**."], [" exceeding", "\u8dcc\u7834", " instantly", "\u77ac\u95f4", " preventing", " ruining", ".**", " violating"], [" exceeding", "\u8dcc\u7834", " instantly", " ruining", " preventing", "\u77ac\u95f4", " below", ".**"], [" below", " exceeding", " BELOW", " instantly", "\u8dcc\u7834", " ruining", "\u77ac\u95f4", " preventing"], [" below", " instantly", "\u8dcc\u7834", " BELOW", " spikes", "\u77ac\u95f4", " exceeding", " ruining"], [" below", " exceeding", " instantly", "\u8dcc\u7834", " BELOW", " spikes", ".", " ruining"], [" below", " BELOW", " instantly", " spikes", " killing", ".", "below", " exceeding"], [" below", ".", " instantly", " spikes", " BELOW", " killing", " exceeding", " (>"], [".", " below", " instantly", " >", " (>", " (<", ",", " spikes"], [".", ",", " below", " at", " instantly", " (>", " (<", " >"]], "p": [[0.655, 0.273, 0.0306, 0.0164, 0.0077, 0.0044, 0.0015, 0.0015], [0.173, 0.0986, 0.0926, 0.087, 0.0721, 0.0265, 0.0207, 0.0171], [0.5635, 0.0524, 0.0383, 0.0264, 0.0205, 0.0205, 0.0181, 0.016], [0.0564, 0.0321, 0.0302, 0.0195, 0.0195, 0.0172, 0.0134, 0.0104], [0.2689, 0.127, 0.127, 0.0929, 0.0342, 0.0235, 0.0195, 0.0183], [0.1017, 0.058, 0.0424, 0.0291, 0.0114, 0.0107, 0.0107, 0.0101], [0.4052, 0.0704, 0.0455, 0.0333, 0.0333, 0.0294, 0.0294, 0.0229], [0.1087, 0.1021, 0.0453, 0.0453, 0.0353, 0.0228, 0.0189, 0.0167], [0.2581, 0.1219, 0.1145, 0.0653, 0.0613, 0.0448, 0.0256, 0.0155], [0.1216, 0.0889, 0.0255, 0.0064, 0.0057, 0.0053, 0.0047, 0.0044], [0.2952, 0.1086, 0.0453, 0.04, 0.0177, 0.0156, 0.0101, 0.0095], [0.0298, 0.0232, 0.0218, 0.0091, 0.0085, 0.0085, 0.0067, 0.0052], [0.0247, 0.0055, 0.0046, 0.0038, 0.0036, 0.0036, 0.0031, 0.0028], [0.0044, 0.0041, 0.0034, 0.0034, 0.0032, 0.0032, 0.003, 0.0028], [0.0139, 0.0095, 0.0074, 0.0062, 0.0045, 0.0045, 0.004, 0.004], [0.0162, 0.0134, 0.0081, 0.0067, 0.0067, 0.0063, 0.0063, 0.006], [0.0147, 0.0089, 0.0089, 0.0078, 0.0078, 0.0078, 0.0078, 0.0078], [0.0109, 0.0066, 0.0062, 0.0062, 0.0062, 0.0055, 0.0048, 0.0045], [0.0168, 0.0109, 0.0102, 0.0079, 0.0079, 0.0075, 0.0066, 0.0066], [0.0664, 0.0355, 0.019, 0.0179, 0.0168, 0.0158, 0.0148, 0.0148], [0.5836, 0.0146, 0.0107, 0.0094, 0.0065, 0.0042, 0.0039, 0.0037], [0.0288, 0.0174, 0.0154, 0.0106, 0.0093, 0.0077, 0.0064, 0.0057], [0.115, 0.0543, 0.0213, 0.0213, 0.0188, 0.0114, 0.0089, 0.0083], [0.052, 0.038, 0.0315, 0.0278, 0.0203, 0.0191, 0.0149, 0.0123], [0.2516, 0.1959, 0.032, 0.0249, 0.0249, 0.0234, 0.0142, 0.0133], [0.2522, 0.2369, 0.0341, 0.0341, 0.0235, 0.0194, 0.0172, 0.0161], [0.0712, 0.0459, 0.0297, 0.0279, 0.0204, 0.0169, 0.0169, 0.0149], [0.0774, 0.0603, 0.0532, 0.047, 0.0303, 0.0268, 0.0236, 0.0222], [0.1557, 0.0446, 0.037, 0.0348, 0.0211, 0.0186, 0.0145, 0.012], [0.2805, 0.0588, 0.0458, 0.0315, 0.023, 0.0168, 0.0123, 0.0109], [0.1531, 0.0467, 0.0321, 0.0283, 0.0266, 0.025, 0.0221, 0.0207], [0.144, 0.1194, 0.0439, 0.0342, 0.0342, 0.0207, 0.0152, 0.0143], [0.307, 0.0286, 0.0209, 0.0209, 0.0153, 0.0135, 0.0135, 0.0105], [0.2243, 0.0323, 0.0252, 0.0196, 0.0135, 0.0119, 0.0119, 0.0119], [0.0619, 0.0482, 0.0375, 0.0292, 0.0201, 0.0189, 0.0147, 0.013], [0.0976, 0.0556, 0.0522, 0.0407, 0.0218, 0.0218, 0.0218, 0.0192], [0.2091, 0.0872, 0.0235, 0.0152, 0.0142, 0.0142, 0.0126, 0.0092], [0.1917, 0.0428, 0.0259, 0.0215, 0.0215, 0.019, 0.0123, 0.0108], [0.2416, 0.0539, 0.0371, 0.0307, 0.0239, 0.0211, 0.0083, 0.0078], [0.2582, 0.0613, 0.0396, 0.0256, 0.0165, 0.0107, 0.01, 0.0083], [0.2063, 0.0713, 0.0591, 0.0279, 0.0169, 0.0132, 0.0109, 0.0103], [0.1547, 0.1365, 0.0999, 0.0391, 0.0135, 0.0135, 0.0135, 0.0127], [0.1888, 0.0838, 0.0787, 0.029, 0.0199, 0.0199, 0.0155, 0.0155], [0.1424, 0.1424, 0.0462, 0.0181, 0.015, 0.0141, 0.0124, 0.0124], [0.1156, 0.0619, 0.0482, 0.0331, 0.0228, 0.0177, 0.0177, 0.0147], [0.1962, 0.119, 0.0341, 0.022, 0.022, 0.0171, 0.0171, 0.0142], [0.1479, 0.1082, 0.0291, 0.0274, 0.0257, 0.0257, 0.0227, 0.0146], [0.1171, 0.0667, 0.0431, 0.0278, 0.018, 0.0158, 0.0158, 0.0158], [0.103, 0.0968, 0.0854, 0.0518, 0.026, 0.0158, 0.0148, 0.0139], [0.0789, 0.0696, 0.029, 0.0273, 0.0187, 0.0176, 0.0146, 0.0146], [0.1443, 0.0681, 0.0601, 0.044, 0.0172, 0.0162, 0.0152, 0.0152], [0.2033, 0.1233, 0.066, 0.0582, 0.0275, 0.0189, 0.0178, 0.0178], [0.2105, 0.1277, 0.0774, 0.0642, 0.0344, 0.0344, 0.0344, 0.0268], [0.1672, 0.0655, 0.0543, 0.0543, 0.0479, 0.0309, 0.0309, 0.0226], [0.3839, 0.1033, 0.0756, 0.0488, 0.0405, 0.038, 0.0158, 0.0158], [0.4504, 0.0691, 0.0446, 0.0394, 0.0288, 0.027, 0.0198, 0.0186], [0.2202, 0.1336, 0.0761, 0.0631, 0.0593, 0.0434, 0.0434, 0.0298], [0.3516, 0.0889, 0.0737, 0.065, 0.0447, 0.0348, 0.0348, 0.0271], [0.3263, 0.0878, 0.0775, 0.0728, 0.0567, 0.0344, 0.0323, 0.0268], [0.8326, 0.0162, 0.0152, 0.0098, 0.0098, 0.0087, 0.0077, 0.0077], [0.5604, 0.1606, 0.0629, 0.0231, 0.0169, 0.0149, 0.0091, 0.0085], [0.7892, 0.1371, 0.0113, 0.0106, 0.0064, 0.005, 0.0039, 0.0024], [0.9986, 0.0007, 0.0005, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Kotlin": [169368, 86716, 98443, 23250, 55619, 76369, 101046, 168768, 181870, 221252, 215713, 167367, 102301, 141550, 183294, 104377, 110362, 120030, 130136, 209787, 224742, 157570, 169694, 203359, 195068, 133445, 128473, 175123, 128380, 128358, 146551, 96843, 83394, 122640, 116312, 108093, 119661, 107359, 126127, 121768, 114976, 117012, 71370, 71847, 75148, 114732, 122978, 138679, 157585, 125771, 100377, 63371, 110296, 72900, 53741, 54739, 37016, 48223, 28565, 17437, 27487, 2017, 1727]}}, {"pos": 542, "top": [[" \u2013", ".", ",", "\u2013", ";", "\u00a0\u00a0", "\u00a0", "\u2026."], [" \u2013", "\u2013", "\u2013and", " \u2013,", ",", " \u200b\u200b", ".", "\u2013\u2013"], [",", "\u2013", ".", " \u2013", ";", "\u2013and", "\u2026", "\u2026.."], [" milfs", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Shemale", " Blowjob", "-------------</", " ;;^", " pornstar", "----------</"], [" Millennials", "\u65b0\u52a0\u5761", "\u52a0\u62ff\u5927\u7684", ":@", " Aussie", " (@", "\u2193\u2193", " millennials"], [" \u200b\u200b", "<|quad_end|>", "!:", "!\u201d.", "!).", ".", "!\u201c", "\u65b0\u52a0\u5761"], ["  \n", "  \n\n", "   \n", "\uff01", " \u2019", " \n", " \n\n", "   \n\n"], ["   \n", "   \n\n", "<|quad_end|>", "  \n", "  \r\n", "  \n\n", "   \r\n", " \t\n"], ["   \n\n", "  \n\n", " \n\n", "   \n", "  \n", "    \n\n", " \n    \n", " \n"], ["<|quad_end|>", "Though", " pricey", " though", "\u4e94\u82b1\u516b", "\u6ca1\u5565", "<|object_ref_start|>", " \u00ad"], [" though", " \u00ad", "\u00a0", " @", " even", " wouldn", "though", "(@"], [" veggies", "\u751a\u81f3\u4f1a", " anyways", " uncomfort", "\u4e94\u82b1\u516b", " pricey", " tweaks", " skinny"], [" anyways", " arguably", " veggies", "\u4e94\u82b1\u516b", " nonetheless", " uncomfort", "\u582a\u6bd4", " unpredict"], [" tweaks", " anyways", " arguably", " tweaking", "-esque", " veggies", " albeit", " pricey"], [" though", " arguably", " even", " swiftly", " aggressively", " albeit", " sprawling", " looming"], [" arguably", " though", " sprawling", "\u5373\u4fbf\u662f", " myriad", " swiftly", " hefty", " pricey"], [" arguably", "-esque", " nuanced", " tweaks", " sprawling", " akin", " incentiv", " savvy"], [" arguably", "\u582a\u6bd4", " albeit", "-esque", " tweaks", "\u751a\u81f3\u4f1a", " sprawling", " incentiv"], [" arguably", "\u751a\u81f3\u4f1a", " albeit", "\u5373\u4fbf\u662f", "\u582a\u6bd4", "-esque", "\u52a8\u8f84", "\u751a\u81f3\u6709"], [" arguably", " albeit", " though", "\u5373\u4fbf", "\u5373\u4fbf\u662f", " notably", " even", " swiftly"], ["<|endoftext|>", " though", "Though", "though", " swiftly", " arguably", "\u5373\u4fbf", " myriad"], [" arguably", " even", "\u751a\u81f3\u4f1a", " albeit", " notably", " swiftly", "\u5373\u4fbf\u662f", "\u5373\u4fbf"], [" even", " though", " arguably", " notably", " swiftly", " merely", " myriad", " ultimately"], [" even", " though", " arguably", " notably", " merely", " ultimately", " swiftly", " much"], [" though", "Though", "though", " even", "\u5373\u4fbf", " arguably", " notably", " hugely"], [" even", "\u5373\u4fbf", " though", " arguably", " hugely", " famously", "\u5373\u4fbf\u662f", " notably"], [" even", "\u5373\u4fbf", " arguably", " though", " notably", " hugely", " famously", " ultimately"], [" even", " though", " arguably", " notably", " heavily", "<|endoftext|>", " eventually", " much"], [" even", " though", " arguably", " famously", " heavily", "<|endoftext|>", " eventually", " notably"], [" even", " arguably", " eventually", " famously", " though", " often", " heavily", " despite"], [" even", "<|endoftext|>", " ,", " often", " .", " ...", " only", " eventually"], [" even", " ,", " only", " often", " many", " .", " much", " more"], [" even", " only", " often", " ,", " **", " rarely", " \u201c", " heavily"], [" even", " heavily", " only", " often", " famously", " arguably", " rarely", " despite"], [" even", " notoriously", " famously", " relentless", " worse", " heavily", "\u2014even", " unpredictable"], [" even", " notoriously", " worse", " relentless", "\u2014even", " heavily", " unpredictable", " relentlessly"], [" even", " notoriously", "\u6839\u672c\u65e0\u6cd5", " worse", " impossible", " relentless", "\u2014even", " unpredictable"], [" even", " notoriously", "\u6839\u672c\u65e0\u6cd5", " worse", "\u2014even", " impossible", " relentless", " unpredictable"], [" even", " notoriously", "\u2014even", " impossible", "\u6839\u672c\u65e0\u6cd5", " relentless", " unpredictable", " worse"], [" even", " unpredictable", " impossible", " notoriously", "\u2014even", " relentless", "\u6839\u672c\u65e0\u6cd5", "even"], [" even", " unpredictable", " notoriously", " impossible", " relentless", "even", " worse", "\u2014even"], [" even", " unpredictable", "\u2014even", " notoriously", " relentless", " worse", " impossible", " inefficient"], [" even", " unpredictable", " notoriously", " worse", " relentless", " inherently", " inefficient", "\u2014even"], [" even", " unpredictable", " notoriously", " worse", " relentless", " unavoidable", " inefficient", " inherently"], [" even", " unpredictable", " worse", " notoriously", " relentless", " inefficient", " impossible", " slower"], [" even", " unpredictable", " worse", " notoriously", " unavoidable", " relentless", " impossible", " inherently"], [" even", " unpredictable", " ANY", " NEVER", "\u2014even", " unavoidable", " worse", "even"], [" NEVER", " even", " ANY", " unpredictable", " relentless", " worse", " EVERY", "\u6839\u672c\u65e0\u6cd5"], ["\u6839\u672c\u65e0\u6cd5", "\u505a\u4e0d\u5230", " NEVER", " relentless", " cannot", " worse", "\u65e0\u6cd5\u6ee1\u8db3", "\u7edd\u5bf9\u4e0d\u80fd"], ["\u6839\u672c\u65e0\u6cd5", "\u505a\u4e0d\u5230", " glitches", " ANY", "\u7edd\u5bf9\u4e0d\u80fd", "\u54ea\u6015", "\u5373\u4fbf\u662f", " NEVER"], ["\u6839\u672c\u65e0\u6cd5", "\u505a\u4e0d\u5230", " ANY", "\u54ea\u6015", " cannot", "\u662f\u65e0\u6cd5", "cannot", "\u65e0\u6cd5\u6ee1\u8db3"], ["\u6839\u672c\u65e0\u6cd5", "\u505a\u4e0d\u5230", "\u65e0\u6cd5\u6ee1\u8db3", " cannot", "\u662f\u65e0\u6cd5", "\u8fbe\u4e0d\u5230", "cannot", " NEVER"], ["\u505a\u4e0d\u5230", "\u6839\u672c\u65e0\u6cd5", " cannot", "\u8fbe\u4e0d\u5230", "\u662f\u65e0\u6cd5", " achieving", "cannot", " NEVER"], [" cannot", "\u505a\u4e0d\u5230", "\u6839\u672c\u65e0\u6cd5", " achieving", "\u4f60\u4e0d\u80fd", "\u662f\u65e0\u6cd5", "cannot", "\u662f\u4e0d\u80fd"], [" achieving", "\u4f60\u4e0d\u80fd", " cannot", "\u8fbe\u4e0d\u5230", "\u505a\u4e0d\u5230", "\u662f\u65e0\u6cd5", " you", "cannot"], [" achieving", " aiming", " Android", "\u8fbe\u4e0d\u5230", " garbage", " targeting", " hitting", " syncing"], [" garbage", " Android", " achieving", " GC", " Java", " Users", " aiming", " JNI"], [" garbage", " Android", " GC", " targeting", " JNI", " You", " Java", " achieving"], [" garbage", " You", " achieving", " Target", " targeting", " Android", " GC", " JNI"], [" hitting", " garbage", " async", " Async", " You", " Android", " achieving", " targeting"], [" hitting", " You", " Async", " async", " garbage", " Rendering", " Android", " achieving"], [" hitting", " Android", " You", " Kotlin", " At", " Async", " Rendering", " JNI"], [" At", " You", " Async", " On", " Target", " Android", " Your", " Kotlin"]], "p": [[0.4144, 0.4144, 0.1048, 0.0495, 0.0038, 0.0019, 0.0017, 0.0013], [0.3947, 0.0777, 0.0153, 0.0047, 0.0025, 0.0023, 0.0018, 0.0016], [0.4637, 0.4092, 0.0913, 0.018, 0.004, 0.0038, 0.002, 0.0016], [0.0162, 0.0119, 0.0099, 0.0072, 0.0047, 0.0041, 0.0036, 0.0034], [0.0025, 0.0025, 0.0017, 0.0017, 0.0015, 0.0014, 0.0013, 0.0012], [0.0159, 0.0029, 0.0028, 0.0019, 0.0016, 0.0016, 0.0011, 0.001], [0.2598, 0.1576, 0.058, 0.0274, 0.0166, 0.0122, 0.0095, 0.0074], [0.063, 0.018, 0.0117, 0.0085, 0.0062, 0.0038, 0.0033, 0.0031], [0.2665, 0.2352, 0.2076, 0.0409, 0.016, 0.0141, 0.0086, 0.0086], [0.001, 0.001, 0.001, 0.0009, 0.0009, 0.0008, 0.0008, 0.0008], [0.0354, 0.0215, 0.0157, 0.0115, 0.0079, 0.0051, 0.0051, 0.0051], [0.004, 0.0024, 0.0024, 0.0023, 0.002, 0.002, 0.002, 0.0019], [0.0053, 0.0032, 0.0025, 0.0024, 0.002, 0.0018, 0.0014, 0.0013], [0.0025, 0.0025, 0.0023, 0.002, 0.002, 0.0016, 0.0016, 0.0015], [0.0158, 0.009, 0.0051, 0.0037, 0.0037, 0.0033, 0.0026, 0.0023], [0.0228, 0.013, 0.0089, 0.0048, 0.0045, 0.0042, 0.0037, 0.0037], [0.049, 0.0337, 0.0217, 0.0149, 0.0096, 0.0091, 0.0071, 0.0071], [0.0095, 0.007, 0.0045, 0.0042, 0.0031, 0.0029, 0.0026, 0.0023], [0.0148, 0.0066, 0.0051, 0.0037, 0.0033, 0.0033, 0.0026, 0.0023], [0.0168, 0.0096, 0.0075, 0.0062, 0.0058, 0.0051, 0.0045, 0.0038], [0.4536, 0.0187, 0.01, 0.0054, 0.005, 0.0044, 0.0037, 0.0033], [0.0104, 0.0087, 0.0052, 0.0044, 0.0036, 0.0026, 0.0025, 0.0022], [0.0205, 0.0192, 0.017, 0.0091, 0.0085, 0.0071, 0.0049, 0.0049], [0.0283, 0.0266, 0.0111, 0.0098, 0.0072, 0.0067, 0.0063, 0.0063], [0.078, 0.0325, 0.0174, 0.0154, 0.012, 0.0093, 0.0068, 0.0056], [0.0273, 0.0129, 0.0121, 0.0094, 0.0083, 0.0047, 0.0047, 0.0047], [0.0478, 0.0165, 0.0121, 0.0114, 0.0073, 0.0073, 0.0069, 0.0057], [0.1234, 0.0454, 0.0228, 0.0138, 0.0115, 0.0115, 0.0108, 0.0095], [0.2404, 0.0504, 0.0392, 0.0174, 0.0144, 0.012, 0.0112, 0.0106], [0.4484, 0.0197, 0.0174, 0.0163, 0.0153, 0.0135, 0.0112, 0.0105], [0.4822, 0.0576, 0.029, 0.0165, 0.0155, 0.0155, 0.0155, 0.0121], [0.4456, 0.0414, 0.0303, 0.0173, 0.0173, 0.0112, 0.0112, 0.0092], [0.5748, 0.0269, 0.0144, 0.0093, 0.0087, 0.0068, 0.0068, 0.0064], [0.3236, 0.0207, 0.0183, 0.0151, 0.0111, 0.0092, 0.0086, 0.0081], [0.1762, 0.0238, 0.0145, 0.0136, 0.0113, 0.0106, 0.0099, 0.0099], [0.1182, 0.0558, 0.0281, 0.0219, 0.0205, 0.011, 0.011, 0.0097], [0.115, 0.079, 0.0423, 0.031, 0.02, 0.02, 0.0146, 0.0114], [0.3312, 0.0477, 0.0255, 0.024, 0.0225, 0.0176, 0.0165, 0.0106], [0.4039, 0.0311, 0.0293, 0.0275, 0.0243, 0.0147, 0.0122, 0.0122], [0.3046, 0.0342, 0.0342, 0.0266, 0.0207, 0.0207, 0.0195, 0.0092], [0.4041, 0.0376, 0.0201, 0.0201, 0.0189, 0.0084, 0.0084, 0.007], [0.2245, 0.0879, 0.0415, 0.0237, 0.0184, 0.0099, 0.0077, 0.0077], [0.1629, 0.0872, 0.0266, 0.0195, 0.0151, 0.0126, 0.0118, 0.0111], [0.3147, 0.1088, 0.0312, 0.0275, 0.0147, 0.0108, 0.0089, 0.0089], [0.226, 0.0942, 0.0326, 0.0238, 0.0113, 0.0088, 0.0082, 0.0082], [0.4292, 0.0546, 0.0375, 0.0101, 0.0089, 0.0089, 0.0061, 0.0051], [0.1808, 0.0708, 0.0518, 0.0429, 0.0277, 0.0245, 0.0245, 0.0168], [0.0836, 0.0575, 0.0371, 0.0327, 0.0255, 0.0211, 0.0128, 0.012], [0.1057, 0.0267, 0.0236, 0.0208, 0.0152, 0.0134, 0.0119, 0.0119], [0.0443, 0.0416, 0.0223, 0.0135, 0.0127, 0.0127, 0.0127, 0.0112], [0.0752, 0.0517, 0.0378, 0.0355, 0.0244, 0.0179, 0.0131, 0.0123], [0.1405, 0.0664, 0.0229, 0.0229, 0.0179, 0.0148, 0.0079, 0.0079], [0.0858, 0.059, 0.0554, 0.0405, 0.0231, 0.0231, 0.014, 0.0116], [0.0527, 0.03, 0.0206, 0.0194, 0.0182, 0.0182, 0.0125, 0.0118], [0.115, 0.0273, 0.0176, 0.0146, 0.0146, 0.0121, 0.01, 0.0089], [0.0556, 0.0359, 0.0247, 0.0232, 0.0169, 0.0124, 0.0103, 0.0097], [0.112, 0.0439, 0.0283, 0.0195, 0.0183, 0.0134, 0.0118, 0.0104], [0.3577, 0.0515, 0.0294, 0.0259, 0.0178, 0.0148, 0.0139, 0.013], [0.2399, 0.0503, 0.0472, 0.0368, 0.0368, 0.0346, 0.0253, 0.0223], [0.5269, 0.0759, 0.0555, 0.0359, 0.018, 0.0149, 0.0124, 0.0124], [0.2473, 0.0665, 0.0552, 0.0457, 0.043, 0.0245, 0.0179, 0.0148], [0.0872, 0.0638, 0.0638, 0.0563, 0.0439, 0.025, 0.0207, 0.0172], [0.5788, 0.2734, 0.0154, 0.0078, 0.0068, 0.0047, 0.0044, 0.0039]], "ranks": {"Kotlin": [226282, 156609, 127601, 6204, 5283, 24249, 37816, 87937, 118129, 163509, 179314, 98132, 61402, 79510, 180025, 132442, 71331, 76279, 124388, 191268, 222187, 162189, 185736, 213249, 201560, 122683, 96225, 119859, 102316, 66078, 71017, 47298, 34221, 64295, 110900, 70277, 68328, 63566, 58293, 71878, 78473, 76941, 50678, 55972, 79511, 92029, 113917, 133709, 89136, 40737, 41772, 21047, 22988, 10926, 3606, 53, 9, 14, 16, 12, 13, 4, 8]}}, {"pos": 543, "top": [[" \u2013", ".", "\u2013", "\u2026..", "\u00a0\u00a0", "\u2026.", "\u00a0", "\u2013and"], [" \u2013", " \u2013**", "\u2013and", "**\u2013", "\u2013\u2013", " \u2013,", "\u2013", "   \n"], ["**\u2013", " \u2013**", " \u2013", "\u2013", "\u2013and", " **\u2013", "\u2026..", "\u2026**"], [" milfs", " **:**", " Shemale", " Blowjob", " Strec", " **:", "ielen", " pupper"], [" **#", " @_", " *@", "iha", "-**", "*******", " **:", "ersp"], ["-**", " **#", "iha", " **:", " **\u2013", "\u2026**", " \r\n", " **\u20ac"], ["-**", " \r\n", " \r\n\r\n", " **#", "\u2026**", "iha", "\u662f", "   \r\n"], [" **#", "iha", "-**", " **\u20ac", "   \r\n", " \r\n", " \r\n\r\n", " **:"], [" \r\n\r\n", "       \n\n", " **#", "   \n\n", "\t\n\n", " \r\n", "     \n\n", "iha"], ["iha", "\u2013and", " \r\n", "\u2013\u2013", "Sharper", " Hidal", "**\u2013", "daq"], ["\u2013", " \r\n", "iha", "#", "(#", "\u2013and", " #", " #\""], ["iha", " **#", "Sharper", " veggies", " **+", "isecond", "ieli", "flix"], ["iha", " veggies", " pornstar", "flix", " carbs", "Sharper", " booze", " comfy"], [" veggies", "iha", " carbs", " skinny", " meds", " pornstar", " booze", " comfy"], ["iha", " veggies", " skinny", " booze", " carbs", " comfy", " meds", " kids"], [" skinny", "iha", " veggies", "kids", " carbs", " kids", " booze", " comfy"], [" skinny", " kids", " veggies", "kids", "-tech", " booze", "iha", " tech"], ["kids", "-tech", " kids", " skinny", " veggies", " tini", "-big", " carbs"], ["kids", "-tech", "-big", " tini", " carbs", " booze", " veggies", "iha"], ["kids", "-big", " tini", "iha", "-&", " pricey", "-ish", " hugely"], ["<|endoftext|>", "Though", " hugely", "though", "kids", " tini", "\u6ca1\u6cd5", "just"], ["kids", "iha", "Sharper", " booze", "bucks", "-big", "uptime", " pricey"], [" hugely", "kids", " incredibly", " pricey", "iha", " tini", " busted", " \u062d\u062a"], [" hugely", " \u062d\u062a", " incredibly", " barely", "Though", " wildly", " uncomfort", "\u54ea\u6015"], [" \r\n\r\n", "Though", " pricey", " hugely", "\r\n\r\n", "\u5373\u4fbf", " isn", "\u6ca1\u6cd5"], [" pricey", "Sharper", "uptime", " veggies", " anyways", "kids", " carbs", "Feels"], [" pricey", " hugely", "uptime", " busted", " isn", " insanely", " skinny", "Feels"], [" hugely", " barely", " incredibly", " even", " wildly", " arguably", " famously", " plenty"], [" barely", " incredibly", " huge", " isn", " hugely", " even", " tech", " wildly"], [" barely", " even", " hits", " dozens", " incredibly", " huge", " tech", " isn"], [" even", " huge", " high", " barely", " dozens", " only", " every", " incredibly"], [" even", " only", " high", " huge", " just", " barely", " dozens", " every"], [" even", " only", " barely", " incredibly", " dozens", " huge", " fast", " high"], [" incredibly", " even", " insanely", " notoriously", " barely", " dozens", " huge", " massively"], [" insanely", " incredibly", " notoriously", " relentless", "/fast", " tech", "ptime", "uptime"], ["/fast", "ptime", " notoriously", " fastest", " insanely", " incredibly", " relentless", " overclock"], ["ptime", "/fast", " fastest", "uptime", " insanely", " overclock", " notoriously", " milliseconds"], ["ptime", " milliseconds", " fastest", " overclock", "\u6bcf\u79d2", " fast", " framerate", "/fast"], ["ptime", " milliseconds", "\u6bcf\u79d2", " fastest", "Milliseconds", " framerate", "\u6bcf\u5206\u949f", " speeds"], [" milliseconds", "\u6bcf\u79d2", "Milliseconds", " framerate", "ptime", " fastest", "\u6bcf\u5206\u949f", "-fast"], ["\u6bcf\u79d2", " framerate", " milliseconds", "ptime", "\u6bcf\u5206\u949f", " fastest", "Milliseconds", " speeds"], ["\u6bcf\u79d2", " milliseconds", "\u6bcf\u5206\u949f", " framerate", "Milliseconds", "ptime", " speeds", "-fast"], ["\u6bcf\u79d2", " milliseconds", "\u6bcf\u5206\u949f", " framerate", "Milliseconds", "-fast", " deadlines", " speeds"], ["\u6bcf\u79d2", "\u6bcf\u5206\u949f", " milliseconds", " framerate", "Milliseconds", "\u6bcf\u5c0f\u65f6", " speeds", " deadlines"], ["\u6bcf\u79d2", "\u6bcf\u5206\u949f", " milliseconds", " framerate", " deadlines", " speeds", "Milliseconds", "\u6bcf\u5c0f\u65f6"], ["\u6bcf\u79d2", "\u6bcf\u5206\u949f", " milliseconds", "\u5e73\u5747\u6bcf", " requires", "\u6bcf\u5c0f\u65f6", " requirement", " required"], [" requires", "\u6bcf\u79d2", "-required", " requirement", " require", "requires", " required", "\u8981\u6c42\u5728"], [" requires", "\u6bcf\u79d2", "requires", " require", "-required", " Requires", " requirement", " required"], [" requires", "requires", "\u6bcf\u79d2", "\u6807\u51c6\u8981\u6c42", "-required", "\u89c4\u8303\u8981\u6c42", "\u8981\u6c42\u5728", " Requires"], ["requires", "\u6bcf\u79d2", " Requires", "Requires", "\u89c4\u8303\u8981\u6c42", " requires", "\u6807\u51c6\u8981\u6c42", " framerate"], ["\u6bcf\u79d2", "requires", " framerate", " requires", " Requires", "Requires", "\u8981\u6c42\u7684", " \u0442\u0440\u0435\u0431\u0443\u0435\u0442"], [" framerate", " requires", "/fast", " Requires", "Requires", " milliseconds", "requires", "\u8981\u6c42"], [" latency", " milliseconds", " framerate", " requires", " jitter", "\u6bcf\u79d2", " Requires", "Milliseconds"], [" milliseconds", " latency", " framerate", " jitter", "Milliseconds", "\u6beb\u79d2", " requires", "_latency"], [" milliseconds", " latency", "Milliseconds", " framerate", "\u5e27", "\u5468\u671f", " microseconds", " timestep"], ["\u5e27", " framerate", " milliseconds", "/frame", "-frame", " latency", "Frame", " frames"], ["\u5e27", "/frame", "-frame", " milliseconds", " Frame", " frame", " frames", " latency"], ["\u5e27", "/frame", "-frame", " frame", "Frame", " Frame", " frames", "frame"], ["\u5e27", "-frame", " frame", " frames", "Frame", " Frame", "/frame", "frames"], [" frame", " frames", "-frame", " Frame", "Frame", "\u5e27", "/frame", "frame"], [" frames", "-frame", " frame", " Frame", "Frame", "/frame", "\u5e27", "frames"], ["1", "-frame", " frames", " frame", " ms", " Frame", "/frame", "/ms"], ["1", "6", "8", "5", "2", "3", "4", "9"]], "p": [[0.7577, 0.085, 0.0584, 0.0157, 0.0139, 0.0122, 0.0045, 0.004], [0.0881, 0.0472, 0.0173, 0.0135, 0.0127, 0.0068, 0.0068, 0.0039], [0.4395, 0.0921, 0.0813, 0.0674, 0.0493, 0.0463, 0.0206, 0.017], [0.0153, 0.0072, 0.0056, 0.0044, 0.0032, 0.0032, 0.003, 0.003], [0.0981, 0.0281, 0.015, 0.0141, 0.0086, 0.0086, 0.0067, 0.0055], [0.0329, 0.0121, 0.0094, 0.0074, 0.0065, 0.0054, 0.0042, 0.0039], [0.0727, 0.0566, 0.0389, 0.0389, 0.0285, 0.0208, 0.0162, 0.0112], [0.0361, 0.0299, 0.0193, 0.0141, 0.0125, 0.0117, 0.0086, 0.0076], [0.0588, 0.0203, 0.0158, 0.0149, 0.0123, 0.0109, 0.0096, 0.0085], [0.0339, 0.0059, 0.0036, 0.0034, 0.0023, 0.0015, 0.0014, 0.0012], [0.0349, 0.0289, 0.024, 0.0187, 0.0187, 0.0137, 0.0128, 0.0094], [0.0333, 0.0202, 0.0058, 0.0037, 0.0021, 0.0018, 0.0017, 0.0016], [0.0075, 0.0071, 0.0024, 0.0024, 0.0023, 0.0023, 0.0015, 0.0014], [0.0191, 0.0139, 0.0051, 0.004, 0.004, 0.004, 0.0038, 0.0031], [0.0291, 0.0089, 0.0074, 0.0061, 0.0048, 0.0045, 0.0045, 0.0045], [0.0108, 0.0101, 0.0089, 0.0084, 0.0058, 0.0054, 0.0051, 0.0037], [0.0303, 0.0208, 0.0184, 0.0172, 0.0105, 0.0098, 0.0077, 0.0072], [0.0325, 0.0185, 0.0136, 0.0127, 0.012, 0.012, 0.0112, 0.0112], [0.0224, 0.012, 0.0093, 0.0088, 0.0082, 0.0077, 0.0064, 0.006], [0.0085, 0.0055, 0.004, 0.0036, 0.0033, 0.0029, 0.0029, 0.0029], [0.0114, 0.0114, 0.004, 0.0037, 0.0024, 0.0019, 0.0019, 0.0015], [0.0054, 0.0051, 0.0031, 0.0024, 0.0023, 0.002, 0.0018, 0.0016], [0.0036, 0.0028, 0.0025, 0.0019, 0.0018, 0.0018, 0.0017, 0.0013], [0.0038, 0.0016, 0.0015, 0.0014, 0.0013, 0.0012, 0.001, 0.001], [0.0096, 0.0051, 0.0031, 0.0031, 0.0026, 0.0026, 0.0017, 0.0016], [0.0054, 0.0033, 0.0025, 0.0021, 0.0021, 0.002, 0.002, 0.0019], [0.0029, 0.0017, 0.0014, 0.0012, 0.0011, 0.0011, 0.001, 0.0009], [0.0048, 0.0037, 0.0033, 0.0031, 0.0026, 0.0021, 0.0019, 0.0019], [0.0052, 0.0046, 0.0034, 0.0034, 0.0032, 0.0028, 0.0025, 0.0022], [0.0105, 0.0098, 0.0044, 0.0044, 0.0044, 0.0041, 0.0034, 0.0034], [0.066, 0.0214, 0.0189, 0.0189, 0.0157, 0.0157, 0.0138, 0.0115], [0.0629, 0.0316, 0.0232, 0.018, 0.0159, 0.0149, 0.014, 0.0124], [0.0975, 0.0262, 0.018, 0.0124, 0.0109, 0.0091, 0.008, 0.008], [0.0216, 0.0148, 0.0131, 0.0123, 0.0096, 0.0062, 0.0062, 0.0055], [0.0099, 0.0072, 0.0068, 0.0032, 0.003, 0.003, 0.003, 0.0028], [0.0132, 0.0124, 0.0091, 0.0085, 0.0066, 0.0066, 0.0048, 0.0038], [0.0267, 0.0134, 0.0126, 0.0105, 0.0077, 0.0077, 0.0077, 0.0063], [0.0307, 0.0211, 0.0175, 0.0113, 0.0088, 0.0083, 0.0073, 0.0073], [0.0436, 0.041, 0.0264, 0.0133, 0.0125, 0.0117, 0.0117, 0.011], [0.0793, 0.058, 0.033, 0.033, 0.031, 0.0156, 0.0138, 0.0114], [0.2399, 0.0883, 0.0687, 0.0346, 0.0325, 0.0305, 0.0197, 0.0174], [0.3171, 0.1167, 0.0587, 0.0587, 0.0356, 0.0179, 0.0168, 0.0158], [0.2731, 0.1138, 0.0735, 0.0347, 0.0326, 0.0224, 0.0224, 0.0186], [0.4306, 0.1234, 0.0703, 0.0312, 0.0178, 0.013, 0.013, 0.0095], [0.3245, 0.1054, 0.0388, 0.0207, 0.0207, 0.0195, 0.0143, 0.0134], [0.2889, 0.1365, 0.0304, 0.0237, 0.0185, 0.0163, 0.0153, 0.0135], [0.1309, 0.0746, 0.0581, 0.0375, 0.0331, 0.0274, 0.0258, 0.0242], [0.1996, 0.0537, 0.0537, 0.0418, 0.0393, 0.0306, 0.0306, 0.0287], [0.0564, 0.053, 0.0498, 0.0413, 0.0342, 0.0302, 0.0284, 0.0284], [0.0693, 0.0507, 0.0395, 0.0395, 0.0371, 0.0327, 0.0239, 0.0165], [0.0502, 0.0367, 0.0286, 0.0269, 0.0252, 0.0144, 0.0135, 0.0127], [0.0418, 0.0418, 0.0369, 0.027, 0.0224, 0.0186, 0.0186, 0.0145], [0.0816, 0.0766, 0.0465, 0.0234, 0.0194, 0.0142, 0.0133, 0.0133], [0.112, 0.112, 0.0321, 0.0266, 0.0126, 0.0111, 0.0111, 0.0092], [0.1705, 0.0756, 0.038, 0.0357, 0.0204, 0.0191, 0.0191, 0.018], [0.201, 0.0613, 0.0448, 0.0448, 0.0349, 0.0272, 0.0187, 0.0176], [0.1329, 0.0554, 0.052, 0.0231, 0.0191, 0.0169, 0.0159, 0.0149], [0.2161, 0.1683, 0.1311, 0.0747, 0.0546, 0.0376, 0.0331, 0.0311], [0.2266, 0.1557, 0.1557, 0.1213, 0.107, 0.0833, 0.0649, 0.0307], [0.3228, 0.1728, 0.1525, 0.1048, 0.0925, 0.0495, 0.0386, 0.0206], [0.2509, 0.2214, 0.2214, 0.0923, 0.0526, 0.03, 0.0248, 0.0219], [0.8173, 0.028, 0.0192, 0.0132, 0.0091, 0.0071, 0.0049, 0.0038], [0.9953, 0.0019, 0.0012, 0.0006, 0.0004, 0.0003, 0.0001, 0.0001]], "ranks": {"Kotlin": [144435, 85227, 60766, 17849, 17983, 47619, 53975, 85176, 89853, 190644, 161443, 64664, 26662, 35799, 141148, 136693, 139020, 172903, 172726, 216430, 237960, 210377, 228992, 235449, 209566, 176409, 193801, 204130, 202135, 196885, 179148, 192803, 208246, 168851, 160518, 158915, 127310, 102141, 93736, 63567, 75474, 75906, 41195, 46234, 82714, 139429, 105392, 114676, 120872, 130659, 103364, 36853, 45061, 30005, 25466, 12881, 6651, 30643, 87058, 59156, 38639, 17171, 9136]}}, {"pos": 544, "top": [[".", ",", " \u2013", "a", "\u2013", ";", "o", "!"], [" \u2013", ".", "\u00ad", "\u2013", "\uff0e", "\u00adi", ",", "sWith"], [".", ",", "\u2013", " \u2013", ".\u2013", "\u3002", "\u2026.", "\u2026.."], [" milfs", "-------------</", "----------</", " cumshot", " **\u25a0", " Blowjob", "erias", " ;;^"], ["kits", "erweise", "raries", "sWith", "er", "izer", "\u52a0\u62ff\u5927\u7684", "\u0902\u092c\u0930"], ["kits", "sWith", "\uff01", "erweise", "ICAST", "neighbor", "nok", "sider"], ["er", "\uff01", "raries", "\uff01**", "kits", "sider", "sWith", "igators"], ["er", "svar", "raries", "sWith", "erweise", "ifier", "sider", " **\u25a0"], ["\u00adi", "er", "ifier", "raries", "\u00adt", "erator", "sWith", "erweise"], ["\u00adi", "er", " \u00ad", "\u00adt", "\u00adtion", "\u00ading", "\u00ad", "\u00ads"], ["er", "a", " \u00ad", "o", "\u00ad", "\u00adi", "ly", "s"], ["er", "erweise", "raries", "isecond", "enner", "erator", "\u00adi", "erie"], ["er", "ly", "raries", "erweise", "erator", "erie", "\u88f3", "ners"], ["er", "raries", "ly", "\u88f3", "-esque", "erweise", "en", "erator"], ["er", "o", "a", "n", "-esque", "an", "en", "aft"], ["er", "o", "a", "-esque", "an", "kids", "aft", "n"], ["o", "a", "er", "n", "d", "ed", "an", "-esque"], ["o", "a", "er", "n", "an", "ed", "-esque", "d"], ["o", "a", "er", "-esque", "n", "ed", "an", "d"], ["o", "a", "er", "d", "n", "ahead", "-esque", "an"], ["<|endoftext|>", "a", "d", "o", "n", "an", "Though", "though"], ["ahead", "-esque", "ed", "ly", "fully", "er", "ing", " sprawling"], ["a", "ed", "o", "n", "d", "an", "fully", "ly"], ["a", "o", "an", "ed", "n", "d", "er", " heavily"], ["a", "n", " though", " heavily", "ed", " hugely", "d", "an"], [" games", " gaming", " massively", " heavily", " game", " massive", " multit", " hardware"], [" gaming", " games", " programming", " game", " multit", " gamers", " motors", " robotic"], [" games", " heavily", " complex", " game", " gaming", " rapidly", " many", " heavy"], [" games", " gaming", " game", " complex", " heavily", " tech", " gameplay", " programming"], [" games", " gaming", " workflows", " game", " complex", " gameplay", " tech", " multit"], [" complex", " games", " game", " modern", " technology", " heavily", " gaming", " systems"], [" complex", " games", " game", " modern", " many", " large", " work", " live"], [" complex", " games", " game", " many", " modern", " multiple", " heavily", " gaming"], [" workflows", " gameplay", " gaming", " games", " tech", " complex", " algorithms", " multiplayer"], [" workflows", " algorithms", " gaming", " computational", " tech", " gameplay", " multiplayer", " games"], ["\u2026*", " workflows", "\u2026**", " \u2026", "\u2011", " hardware", " gameplay", " algorithms"], [" workflows", " gameplay", " animations", " gaming", " hardware", " computational", " algorithms", " physics"], [" workflows", " gameplay", " animations", " animation", " multiplayer", " workflow", " gaming", " game"], [" workflows", " gameplay", " animations", " workflow", " animation", " gaming", " computational", " hardware"], [" gameplay", " workflows", " animations", " animation", " gaming", " game", " workflow", " physics"], [" gameplay", " workflows", " animations", " animation", " gaming", " game", " workflow", " games"], [" workflows", " animation", " computational", " animations", " gameplay", " physics", " workflow", " gaming"], [" gameplay", " workflows", " animation", " animations", " physics", " computational", " gaming", " workflow"], [" animation", " animations", " workflows", " gameplay", " physics", " computational", " workflow", " optimizations"], [" animations", " workflows", " animation", " gameplay", " computational", " physics", " workflow", " processing"], [" workflows", " animations", " gameplay", " animation", " physics", " computational", " workflow", " synchronization"], [" workflows", " gameplay", " animations", " workflow", " physics", " synchronization", " animation", " computational"], [" workflows", " gameplay", " animations", " animation", " synchronization", " synchronized", " computational", " workflow"], [" workflows", " gameplay", " animations", "-sync", "-intensive", " synchronized", " syncing", " synchronization"], [" workflows", " gameplay", " animations", "-sync", " syncing", "\u6bcf\u79d2", " synced", " SYNC"], [" animations", "\u6bcf\u79d2", " gameplay", " workflows", "\u6570\u636e\u5904\u7406", "/update", "-intensive", "-sync"], ["\u6570\u636e\u5904\u7406", " animations", "/update", " syncing", "\u6bcf\u79d2", "!**", "-intensive", "/UI"], ["\u6570\u636e\u5904\u7406", "\u6bcf\u79d2", " syncing", " gameplay", "/update", "-intensive", " processing", " updates"], ["/UI", "\u6570\u636e\u5904\u7406", " UI", "UI", " syncing", "\u6bcf\u79d2", " animations", " physics"], ["/UI", " UI", "\u6570\u636e\u5904\u7406", "UI", " GameObject", " allocations", " syncing", " physics"], ["/render", "/UI", "\u6570\u636e\u5904\u7406", "-render", "\u6e32\u67d3", "/update", " allocations", " UI"], ["/render", "/UI", "\u6e32\u67d3", " UI", "-render", " render", " rendering", " allocations"], [" physics", " allocations", " updating", " GameObject", "/update", "alloc", " update", " updates"], [" physics", " frame", "-frame", "\u5e27", "/frame", "physics", "Physics", " Physics"], [" frame", "-frame", "\u5e27", " physics", "/frame", "frame", " Frame", " frames"], [" frame", " physics", "-frame", " plugin", "\u5e27", " Frame", "/frame", " frames"], ["2", "0", "6", " frame", "3", " plugin", "4", "5"], ["2", "6", "0", "3", "7", "1", "8", "4"]], "p": [[0.9312, 0.0525, 0.0063, 0.0028, 0.0013, 0.0006, 0.0005, 0.0005], [0.0504, 0.0445, 0.0174, 0.0128, 0.0099, 0.0068, 0.0064, 0.0053], [0.8616, 0.0486, 0.0403, 0.0131, 0.0045, 0.0042, 0.0021, 0.0015], [0.0145, 0.0106, 0.0093, 0.0093, 0.0068, 0.0057, 0.0053, 0.0044], [0.0286, 0.0237, 0.0105, 0.0105, 0.0064, 0.005, 0.0039, 0.0036], [0.027, 0.0093, 0.005, 0.0044, 0.0032, 0.0029, 0.0029, 0.0027], [0.1017, 0.033, 0.0274, 0.0095, 0.0095, 0.0083, 0.0069, 0.0065], [0.0137, 0.0121, 0.0121, 0.0089, 0.0078, 0.0078, 0.0057, 0.0054], [0.0724, 0.06, 0.0162, 0.0152, 0.0134, 0.0134, 0.0111, 0.0104], [0.0863, 0.0672, 0.028, 0.0218, 0.0181, 0.0085, 0.0071, 0.0052], [0.9111, 0.0332, 0.0138, 0.007, 0.0029, 0.0024, 0.0024, 0.0014], [0.0602, 0.0105, 0.0077, 0.0056, 0.0046, 0.0046, 0.0041, 0.0041], [0.1635, 0.0087, 0.0076, 0.0067, 0.0063, 0.0046, 0.0034, 0.0032], [0.1663, 0.0145, 0.0057, 0.0044, 0.0042, 0.0032, 0.0027, 0.0024], [0.1766, 0.0394, 0.0271, 0.0083, 0.0083, 0.0083, 0.006, 0.0044], [0.0778, 0.0237, 0.0209, 0.0119, 0.0072, 0.0072, 0.0068, 0.0064], [0.3184, 0.2991, 0.0971, 0.0336, 0.018, 0.014, 0.014, 0.008], [0.359, 0.1406, 0.0853, 0.0244, 0.0168, 0.0139, 0.0123, 0.0115], [0.3023, 0.1952, 0.0435, 0.0384, 0.0141, 0.0133, 0.011, 0.0097], [0.0706, 0.0456, 0.0168, 0.0131, 0.0123, 0.0123, 0.0096, 0.0074], [0.7393, 0.0135, 0.0087, 0.0056, 0.0044, 0.0025, 0.002, 0.0018], [0.0059, 0.0038, 0.0038, 0.0034, 0.0026, 0.0023, 0.0012, 0.0012], [0.0292, 0.0292, 0.0242, 0.0157, 0.0138, 0.013, 0.0101, 0.0095], [0.0208, 0.0126, 0.0098, 0.0092, 0.0087, 0.0076, 0.0063, 0.0053], [0.0068, 0.006, 0.0057, 0.0053, 0.0047, 0.0047, 0.0044, 0.0036], [0.0174, 0.0127, 0.0073, 0.0053, 0.005, 0.0032, 0.0022, 0.0021], [0.0267, 0.0162, 0.006, 0.0053, 0.0046, 0.0038, 0.0038, 0.0034], [0.0156, 0.0147, 0.0095, 0.0095, 0.0084, 0.0051, 0.0051, 0.0045], [0.0562, 0.0266, 0.0266, 0.0171, 0.0086, 0.0076, 0.0067, 0.0067], [0.0634, 0.0464, 0.0361, 0.0233, 0.0219, 0.0206, 0.0171, 0.0133], [0.0762, 0.0673, 0.0383, 0.0141, 0.0141, 0.0132, 0.0132, 0.0132], [0.0692, 0.0327, 0.0254, 0.0211, 0.0186, 0.0136, 0.012, 0.0106], [0.0462, 0.0383, 0.0263, 0.015, 0.0132, 0.0132, 0.0117, 0.0103], [0.2061, 0.0336, 0.0316, 0.0279, 0.0217, 0.018, 0.018, 0.0124], [0.1615, 0.0281, 0.0181, 0.017, 0.0141, 0.0133, 0.0117, 0.0117], [0.0984, 0.0636, 0.0161, 0.0151, 0.0133, 0.011, 0.011, 0.0104], [0.0764, 0.0409, 0.0384, 0.0206, 0.0193, 0.015, 0.0141, 0.0125], [0.1169, 0.0626, 0.0626, 0.0296, 0.0168, 0.0158, 0.0131, 0.0116], [0.1529, 0.0818, 0.0466, 0.0283, 0.0266, 0.025, 0.0194, 0.0183], [0.1091, 0.0798, 0.0621, 0.0427, 0.0259, 0.0229, 0.0157, 0.013], [0.1405, 0.1239, 0.0907, 0.0663, 0.0313, 0.0313, 0.0202, 0.019], [0.179, 0.0659, 0.0659, 0.0619, 0.0546, 0.0482, 0.0292, 0.0156], [0.1054, 0.0931, 0.0931, 0.0931, 0.044, 0.044, 0.0172, 0.0152], [0.1337, 0.1256, 0.0811, 0.0593, 0.0338, 0.0298, 0.015, 0.0103], [0.114, 0.1071, 0.0945, 0.0475, 0.0288, 0.0239, 0.0164, 0.0136], [0.1382, 0.095, 0.0541, 0.0541, 0.0349, 0.0187, 0.0165, 0.0137], [0.2191, 0.0381, 0.0358, 0.0279, 0.0262, 0.0204, 0.0191, 0.0169], [0.1223, 0.0578, 0.0479, 0.0213, 0.0156, 0.0156, 0.0146, 0.0137], [0.077, 0.0497, 0.0364, 0.0111, 0.0076, 0.0076, 0.0072, 0.0072], [0.0452, 0.0375, 0.0242, 0.0122, 0.0065, 0.0061, 0.0054, 0.0051], [0.016, 0.0133, 0.0117, 0.0103, 0.0103, 0.0086, 0.0067, 0.0063], [0.0291, 0.0156, 0.0146, 0.0083, 0.0069, 0.0057, 0.0057, 0.0048], [0.0718, 0.0281, 0.0264, 0.015, 0.0125, 0.011, 0.0103, 0.0097], [0.0425, 0.0399, 0.0214, 0.0147, 0.013, 0.0122, 0.0114, 0.0108], [0.0783, 0.0538, 0.0307, 0.0198, 0.0145, 0.012, 0.012, 0.0083], [0.0687, 0.0417, 0.0392, 0.0346, 0.0305, 0.0197, 0.0163, 0.0153], [0.0691, 0.0505, 0.0394, 0.0271, 0.0239, 0.0198, 0.0198, 0.0186], [0.0983, 0.0596, 0.034, 0.0282, 0.0249, 0.0249, 0.0171, 0.0161], [0.3886, 0.162, 0.1185, 0.0765, 0.0385, 0.0193, 0.016, 0.016], [0.6124, 0.1064, 0.0829, 0.0392, 0.0253, 0.0237, 0.0144, 0.0144], [0.5726, 0.0825, 0.0825, 0.0323, 0.0236, 0.0135, 0.0112, 0.0087], [0.4658, 0.1106, 0.1039, 0.0523, 0.028, 0.0247, 0.0124, 0.0117], [0.987, 0.011, 0.0006, 0.0004, 0.0003, 0.0002, 0.0002, 0.0002]], "ranks": {"Kotlin": [209508, 155014, 85658, 15105, 10054, 28902, 56798, 99227, 154481, 206369, 205907, 154598, 106000, 97637, 204057, 167050, 195403, 195094, 153392, 213686, 230186, 182369, 162418, 203136, 166369, 82138, 43669, 82948, 41755, 19994, 35055, 54066, 50048, 5798, 4236, 5083, 2987, 4466, 6824, 8110, 16097, 11235, 5665, 5783, 8438, 8088, 7517, 8076, 8045, 15937, 15184, 5703, 4809, 4946, 1852, 536, 526, 955, 1186, 1552, 626, 380, 965]}}, {"pos": 545, "top": [[".", ",", " \u2013", "\u2013", "y", ";", ".\u2013", "\u2013and"], ["\u2013", "\u2013and", " \u2013", "een", ".\u2013", " \u2013**", ".", "al"], ["\u2013", ".", " \u2013", ".\u2013", "\u2013and", ",", "..", "\u2026.."], [" milfs", " ;;^", "*\u201c.", " Blowjob", " Strec", "':''", "flix", " cumshot"], [" \\\"", "@$", ".*(", " \\\"$", "*\u201c.", " *\u201e", ".\\\"", " *\u00ab"], ["odiac", "egers", "\u0441\u043e\u0442", "pedia", "*\u201c.", "flix", "een", "ropol"], [" \n \n", " *\u00ab", ".\\\"", "\\\"", " \n", "__)", " *\u201e", " \\\""], [" \\\"", "}\\\"", " \\\"$", ".\\\"", " *\u00ab", "\\\"", " *\u201e", " \n \n"], [" \n \n", ".\\\"", " \\\"$", "\\\"", " *\u00ab", "}\\\"", " \\\"", " *\u201e"], [" \n \n", " \\\"$", ".\\\"", " \\\"", "-$", "\uff62", "}\\\"", "ive"], [" \\\"", ".\\\"", " \n \n", "\\\"", " \\\"$", "-$", "}\\\"", "\\\"\\"], [" *\u00ab", " \\\"", " \\\"$", "flix", "ive", "odiac", "\uff62", " **\u300c"], [" *\u00ab", "flix", "egers", " veggies", "odiac", "ive", " \\\"", "Sharper"], ["flix", " veggies", "\uff62", "-ish", " *\u00ab", "Sharper", "\u4e3d\u4e1d", " kids"], [" kids", "-ish", " buzz", " pals", "\uff62", "horn", "kids", " veggies"], [" kids", "kids", " buzz", " skinny", " veggies", "-ish", "\u5982\u82e5", "\u6e21\u5047"], [" kids", "kids", "-ish", " buzz", " skinny", " veggies", " kid", "al"], [" kids", "kids", " buzz", "-ish", " veggies", " skinny", "-tone", " kid"], ["kids", " buzz", " kids", "\u4e3d\u4e1d", "buzz", "-ish", " skinny", " veggies"], [" buzz", "\ufffd", "buzz", " kids", "kids", " --", "ish", " frantic"], ["<|endoftext|>", " \n\n", "y", "Though", "n", " --", " \n \n", "even"], [" buzz", "Sharper", "bucks", "buzz", " kids", "kids", "ily", "\u4e3d\u4e1d"], [" --", " ``", " buzz", "ish", " hugely", "ly", "ily", "fully"], [" --", " barely", "fully", "ly", " hugely", " even", " buzz", " ''"], [" \n\n", " \r\n\r\n", "   \n\n", " \n\n\n", " \n \n", " --", "     \n\n", "\t\n\n"], [" \n\n", " \r\n\r\n", " pricey", " --", "   \n\n", " hugely", " buzz", " \n \n"], [" --", " \n\n", " pricey", " hugely", " buzz", " famously", "\u7fb9", " frantic"], [" --", " famously", " even", " hugely", " speed", " barely", " fast", " arguably"], [" speed", " famously", " buzz", " tech", " speeds", " even", " pace", " fast"], [" speed", " tech", " buzz", " fast", " pace", " even", " speeds", " **"], [" even", " high", " fast", " speed", " demand", " tech", " performance", " "], [" even", " high", " fast", " -", " speed", " demand", " critical", " only"], [" even", " only", " fast", " must", " high", " -", " demand", " speed"], [" fast", " tech", " demand", " fastest", " incredibly", " peak", " mega", " speed"], [" tech", " insanely", " MUST", " overclock", " impossible", " fastest", "/fast", " requires"], [" fastest", " insanely", "\u2011", "/fast", " overclock", " MUST", " impossible", " fast"], [" insanely", " impossible", " MUST", " overclock", " fastest", " requires", " flawless", " tech"], [" requires", " MUST", " impossible", " insanely", " overclock", " flawless", " fastest", " require"], [" impossible", " requires", " insanely", " flawless", " MUST", " fastest", " overclock", " Impossible"], [" framerate", " impossible", " flawless", " fastest", " speed", " speeds", " overclock", " requires"], [" framerate", " speed", " speeds", " fastest", " overclock", " requires", " flawless", " fast"], [" framerate", " speeds", " overclock", " speed", " requires", " demanding", " demands", " fastest"], [" speeds", " overclock", " speed", " framerate", " flawless", " requires", " demanding", " achievable"], [" speeds", " achievable", " requires", " speed", " framerate", " require", " requirement", " peak"], [" requires", " requirement", " require", " speeds", " required", " demands", " speed", " strict"], [" requires", " require", " demands", " required", " requirement", " demanding", " strict", " flawless"], [" requires", " require", " requirement", " demands", "requires", " required", " Requires", " demanding"], [" requires", " require", "requires", " requirement", " demands", " required", "Requires", " requirements"], [" requires", " require", "requires", "Requires", " Requires", " demands", " requirement", " requiring"], [" requires", "requires", "Requires", " require", " Requires", " \u0442\u0440\u0435\u0431\u0443\u0435\u0442", " requieren", " Require"], [" requires", "requires", "Requires", " Requires", " \u0442\u0440\u0435\u0431\u0443\u0435\u0442", " require", " requieren", "\u8981\u6c42\u7684"], [" requires", "requires", "Requires", " Requires", " require", " \u0442\u0440\u0435\u0431\u0443\u0435\u0442", " FPS", "\u8981\u6c42\u7684"], [" requires", "requires", "Requires", " FPS", " require", " Requires", " \u0442\u0440\u0435\u0431\u0443\u0435\u0442", "\u8981\u6c42"], [" requires", " FPS", "requires", " fps", " framerate", "Requires", " Requires", " \u0442\u0440\u0435\u0431\u0443\u0435\u0442"], [" requires", " FPS", " framerate", "requires", " fps", "Requires", " Requires", "Hz"], [" FPS", " fps", "fps", " framerate", "FPS", "_fps", " requires", "\u5e27"], [" FPS", " fps", "fps", "FPS", " framerate", "_fps", "\u5e27", " Mbps"], [" FPS", " fps", "fps", "FPS", " framerate", "Hz", " Hz", "_fps"], [" FPS", " fps", "fps", "\u5e27", " frames", "FPS", "-frame", " frame"], [" FPS", " fps", "fps", "FPS", " frames", "\u5e27", " frame", "-frame"], [" FPS", " fps", "fps", "FPS", " frames", " framerate", "-frame", " Hz"], [" FPS", " fps", "0", "fps", "FPS", " Hz", " TPS", " FP"], ["0", " FPS", " fps", "1", "2", "3", "fps", "4"]], "p": [[0.7522, 0.1153, 0.0617, 0.0545, 0.0027, 0.002, 0.0015, 0.0011], [0.0416, 0.0345, 0.0223, 0.0144, 0.0093, 0.0087, 0.0068, 0.0047], [0.4845, 0.1782, 0.1782, 0.0656, 0.0374, 0.0213, 0.0035, 0.0033], [0.0109, 0.004, 0.004, 0.0038, 0.0036, 0.0033, 0.0022, 0.002], [0.0231, 0.0217, 0.0149, 0.0132, 0.0116, 0.0096, 0.0085, 0.0048], [0.0151, 0.0076, 0.0046, 0.0032, 0.0032, 0.0025, 0.002, 0.0019], [0.0432, 0.0432, 0.0358, 0.0279, 0.0231, 0.0217, 0.0204, 0.018], [0.0617, 0.0511, 0.0511, 0.0451, 0.0291, 0.0213, 0.02, 0.02], [0.0844, 0.0617, 0.0512, 0.0374, 0.033, 0.0274, 0.0274, 0.0188], [0.0446, 0.037, 0.027, 0.0239, 0.0164, 0.0128, 0.0093, 0.0068], [0.3936, 0.1859, 0.0604, 0.0567, 0.0533, 0.0127, 0.0093, 0.0087], [0.0475, 0.0186, 0.0154, 0.0053, 0.0047, 0.0032, 0.0027, 0.0024], [0.0093, 0.0093, 0.0034, 0.003, 0.0028, 0.0027, 0.0012, 0.0011], [0.0065, 0.0025, 0.0019, 0.0016, 0.0015, 0.0015, 0.0013, 0.0012], [0.0094, 0.0033, 0.0028, 0.0025, 0.0025, 0.0023, 0.002, 0.0019], [0.012, 0.006, 0.0053, 0.0047, 0.0044, 0.0025, 0.0019, 0.0018], [0.031, 0.0146, 0.0129, 0.0114, 0.0107, 0.0095, 0.0039, 0.0029], [0.0305, 0.0223, 0.0119, 0.0087, 0.006, 0.0047, 0.0032, 0.0032], [0.0087, 0.0087, 0.0072, 0.0044, 0.0032, 0.0028, 0.0028, 0.0027], [0.0099, 0.0047, 0.0041, 0.0032, 0.0032, 0.003, 0.0023, 0.0021], [0.0305, 0.0238, 0.012, 0.0112, 0.0073, 0.0053, 0.005, 0.0039], [0.0041, 0.003, 0.0023, 0.0022, 0.0018, 0.0018, 0.0013, 0.0012], [0.0614, 0.0061, 0.005, 0.0037, 0.0033, 0.0033, 0.0031, 0.0031], [0.0497, 0.0046, 0.0043, 0.0041, 0.0036, 0.0032, 0.0025, 0.0023], [0.6959, 0.0831, 0.0253, 0.012, 0.0099, 0.006, 0.0047, 0.0047], [0.025, 0.0126, 0.0052, 0.0049, 0.0041, 0.0036, 0.0026, 0.0026], [0.0111, 0.0052, 0.0034, 0.0028, 0.0026, 0.0025, 0.0021, 0.0017], [0.0295, 0.0096, 0.0058, 0.0058, 0.0048, 0.0037, 0.0037, 0.0035], [0.0113, 0.0077, 0.006, 0.0053, 0.005, 0.0044, 0.0044, 0.0044], [0.0104, 0.0098, 0.0092, 0.0063, 0.0059, 0.0056, 0.0056, 0.0049], [0.0567, 0.0285, 0.0222, 0.0184, 0.0119, 0.0077, 0.0068, 0.0068], [0.0388, 0.0302, 0.0221, 0.0126, 0.0104, 0.0098, 0.0092, 0.0092], [0.102, 0.0228, 0.0228, 0.0189, 0.0138, 0.0107, 0.0101, 0.0084], [0.0084, 0.0079, 0.0062, 0.0062, 0.0058, 0.0055, 0.0055, 0.0055], [0.0104, 0.0097, 0.0067, 0.0067, 0.0063, 0.0059, 0.0049, 0.0046], [0.0132, 0.0116, 0.0097, 0.0091, 0.0085, 0.0071, 0.0071, 0.0071], [0.0171, 0.0142, 0.011, 0.011, 0.0104, 0.0091, 0.0086, 0.0063], [0.029, 0.0256, 0.0226, 0.0176, 0.0137, 0.0121, 0.0094, 0.0078], [0.0705, 0.0276, 0.0202, 0.019, 0.0167, 0.0123, 0.0123, 0.009], [0.0432, 0.0297, 0.0262, 0.0246, 0.0246, 0.0231, 0.0231, 0.0204], [0.0577, 0.0542, 0.0542, 0.0373, 0.029, 0.029, 0.0212, 0.0129], [0.071, 0.0488, 0.0459, 0.0315, 0.0296, 0.0278, 0.0191, 0.0169], [0.0642, 0.0366, 0.0323, 0.0323, 0.0208, 0.0196, 0.0173, 0.0162], [0.0528, 0.0386, 0.0386, 0.025, 0.0234, 0.022, 0.022, 0.022], [0.0881, 0.0391, 0.0391, 0.0367, 0.0304, 0.0286, 0.0269, 0.0237], [0.2126, 0.0609, 0.0505, 0.037, 0.037, 0.0306, 0.0198, 0.0154], [0.5912, 0.1027, 0.0277, 0.026, 0.026, 0.0148, 0.0131, 0.0096], [0.7118, 0.1237, 0.019, 0.019, 0.019, 0.0139, 0.0122, 0.0084], [0.6262, 0.1233, 0.0748, 0.04, 0.0214, 0.0095, 0.0079, 0.007], [0.5162, 0.2152, 0.1152, 0.048, 0.048, 0.0065, 0.0027, 0.0027], [0.4363, 0.2999, 0.0974, 0.0381, 0.0169, 0.0169, 0.0055, 0.0038], [0.4883, 0.2036, 0.0797, 0.0293, 0.0189, 0.0178, 0.007, 0.0048], [0.4789, 0.1137, 0.0445, 0.0369, 0.021, 0.021, 0.0145, 0.0128], [0.2166, 0.1399, 0.0797, 0.0548, 0.0427, 0.0259, 0.0138, 0.0115], [0.3251, 0.0875, 0.0875, 0.0772, 0.0681, 0.0221, 0.0143, 0.0134], [0.6743, 0.2811, 0.0261, 0.0124, 0.0031, 0.0007, 0.0004, 0.0002], [0.7664, 0.1938, 0.0262, 0.0059, 0.0059, 0.0003, 0.0001, 0.0001], [0.6812, 0.2506, 0.0559, 0.0076, 0.0022, 0.001, 0.0004, 0.0003], [0.6758, 0.2486, 0.0432, 0.0096, 0.0085, 0.0052, 0.0031, 0.0024], [0.9105, 0.0747, 0.0079, 0.0033, 0.0016, 0.0005, 0.0004, 0.0004], [0.9468, 0.0471, 0.003, 0.0018, 0.0004, 0.0001, 0.0001, 0.0001], [0.9393, 0.0468, 0.0063, 0.0036, 0.0009, 0.0008, 0.0003, 0.0003], [0.9916, 0.0059, 0.0004, 0.0003, 0.0002, 0.0001, 0.0001, 0.0001]], "ranks": {"Kotlin": [146660, 109755, 56768, 9824, 7558, 12348, 26829, 52259, 46450, 74431, 55255, 39669, 20303, 15430, 80151, 83117, 80419, 53732, 37594, 92302, 189198, 70808, 143601, 207173, 123144, 50065, 53678, 91463, 69736, 28058, 40260, 50858, 84759, 18150, 17749, 15680, 16963, 10646, 12025, 16387, 27222, 28071, 14589, 23364, 39461, 63840, 57808, 60009, 70701, 79308, 117818, 94949, 48589, 30359, 20409, 23988, 9223, 19405, 31771, 20691, 26847, 13721, 15088]}}, {"pos": 546, "top": [[".", ",", "s", "?", "o", ";", " \u2013", "-"], ["\u2011", " \u2013", "s", ".", ",", "\u2013", "?", ";"], [".", ",", "\u2013", "s", "?", ";", " \u2013", "\u2011"], [" milfs", " Blowjob", " cumshot", " Shemale", " **>>", "cuci", " pupper", " creampie"], ["s", " @", " *@", " @_", " *.", "auss", "%!", " \"@"], ["!\u201d.", "s", "sip", " \u201c.", " \u201d", " \").", " @", "sver"], ["s", " \u201d", "\n", " !!!", " \u00bb.", " \u300d", "!\u201d.", " -"], ["s", "sche", "phans", "-eyed", "scheid", "sdale", "sung", " Crescent"], ["s", "!\u201d.", "\u0092", "\u201d.", " \u00bb.", " @", "!", "sche"], ["s", ",", "ness", "\u0629", "\u9e92", "sport", "-h", "scape"], ["s", " @", ",", "-", "\u2011", "@", "!", "."], ["s", " fans", "yron", "scape", "lymp", "sville", "s\u00e1g", "\u9e92"], ["s", " fans", "ness", "scape", "-esque", "szeit", "-ish", " St\u00e9ph"], ["s", "-esque", " fans", "-style", "-ish", "ness", "-eyed", "scape"], ["s", "-esque", " fans", "-st", "-style", " star", " fashion", "-tr"], ["s", "-esque", " buzz", " pop", " fans", " loung", " pops", "es"], ["s", "-esque", "es", " buzz", " pop", " fans", " skinny", " pops"], ["s", "-esque", " buzz", "siz", " fans", "-ish", "-tech", "\u0627\u062a"], ["s", "siz", " buzz", "-esque", "\u0627\u062a", " fans", "szeit", "sche"], ["s", "speed", "\u0627\u062a", "-esque", " buzz", "siz", " swo", "-ish"], ["s", "<|endoftext|>", " \n\n", " \r\n\r\n", "\r\n\r\n", "speed", " @", " though"], ["s", " buzz", "speed", " speed", " loung", "\u817e\u817e", " ''", "pace"], [" ''", " \u2019", "s", " speed", " ever", " even", " buzz", " dozens"], [" speed", "s", " \u2019", " ever", " even", " live", " dozens", " ''"], [" \r\n\r\n", " \n\n", " speed", "\u2011", "speed", "\r\n\r\n", " speeds", "-speed"], [" speed", " speeds", " framerate", "-speed", "\u2011", " pace", "speed", " sprint"], [" speeds", " speed", " framerate", " sprint", " clock", " pace", " overclock", " selfie"], [" speed", " speeds", "\u2011", " pace", " clock", " sprint", " \ufffd", " motion"], [" speed", " speeds", " sprint", " overclock", " Instagram", " selfie", " pace", " esports"], [" speeds", " speed", " overclock", " sprint", " Instagram", " esports", " smartphones", " selfie"], [" speed", " speeds", " **", " sprint", " faster", " Instagram", " pace", " time"], [" speed", " faster", " speeds", " \u200b\u200b", " **", " time", " sprint", " fast"], [" speed", " faster", " speeds", " fast", " fastest", " sprint", " time", " quickly"], [" faster", " speeds", " speed", " sprint", " fastest", " pace", " overclock", " upgrades"], [" faster", " sprint", " fastest", " speed", " speeds", " overclock", " \ufffd", " pace"], [" faster", " speed", " fastest", " sprint", " speeds", " fast", " \ufffd", " pace"], [" speed", " faster", " speeds", " fastest", " sprint", " fast", " framerate", " overclock"], [" speed", " faster", " speeds", " fastest", " framerate", " sprint", " fast", " Speed"], [" speed", " faster", " speeds", " fastest", " framerate", " fast", " milliseconds", " Speed"], [" speed", " faster", " speeds", " fastest", " framerate", " milliseconds", " fast", " Speed"], [" speed", " speeds", " faster", " framerate", " fastest", "\u6bcf\u79d2", " Speed", " Faster"], [" framerate", "\u6bcf\u79d2", " speeds", " speed", " faster", " fps", " milliseconds", " fastest"], [" framerate", "\u6bcf\u79d2", " speeds", " faster", " speed", " fps", "\u6bcf\u5206\u949f", " milliseconds"], ["\u6bcf\u79d2", " framerate", " speeds", " faster", " speed", "\u6bcf\u5206\u949f", " fps", " milliseconds"], ["\u6bcf\u79d2", " speeds", " speed", " framerate", "\u6bcf\u5206\u949f", " faster", " fps", " milliseconds"], ["\u6bcf\u79d2", "\u6bcf\u5206\u949f", " speed", " framerate", " speeds", " faster", " fps", " fast"], ["\u6bcf\u79d2", "\u6bcf\u5206\u949f", " framerate", " requires", " speeds", " fps", "\u6bcf\u5c0f\u65f6", " weekly"], ["\u6bcf\u79d2", " requires", "\u6bcf\u5206\u949f", " framerate", " weekly", " require", "\u6bcf", " demands"], [" requires", "\u6bcf\u79d2", "\u6bcf\u5206\u949f", " framerate", " require", "requires", " \u043a\u0430\u0436\u0434\u044b\u0435", "\u6bcf\u5c0f\u65f6"], [" requires", "requires", "\u610f\u5473\u7740", "\u6bcf\u79d2", "Requires", " Requires", " require", "\u6bcf\u5206\u949f"], [" requires", "requires", "\u610f\u5473\u7740", " Requires", "Requires", " require", " \u0442\u0440\u0435\u0431\u0443\u0435\u0442", "\u6807\u51c6\u8981\u6c42"], [" requires", "requires", " Requires", "Requires", " require", "\u610f\u5473\u7740", " \u0442\u0440\u0435\u0431\u0443\u0435\u0442", "\u8981\u6c42"], [" requires", "requires", " Requires", " require", "Requires", "\u610f\u5473\u7740", " \u0442\u0440\u0435\u0431\u0443\u0435\u0442", "\u8981\u6c42"], [" requires", "requires", " Requires", "\u610f\u5473\u7740", "Requires", " require", " \u0442\u0440\u0435\u0431\u0443\u0435\u0442", "\u8981\u6c42"], [" requires", "requires", "\u8981\u6c42", " require", " Requires", "Requires", " \u0442\u0440\u0435\u0431\u0443\u0435\u0442", "\u8981\u6c42\u5728"], [" requires", " FPS", "\u610f\u5473\u7740", "requires", " fps", " require", " framerate", " Requires"], [" requires", " FPS", " fps", "requires", "\u610f\u5473\u7740", " framerate", "fps", "\u8981\u6c42"], [" FPS", " fps", " requires", "fps", " framerate", "FPS", "\u610f\u5473\u7740", "Hz"], [" FPS", " fps", " frames", "fps", " requires", "\u5e27", " frame", "FPS"], [" FPS", " fps", "fps", "FPS", " frames", "\u5e27", " requires", " frame"], [" FPS", " fps", "fps", "FPS", " frames", " framerate", " Hz", "\u5e27"], [" FPS", " fps", "fps", "FPS", " Hz", " =", " FP", " TPS"], [" FPS", " fps", "fps", " Hz", "FPS", "Hz", "ms", " FP"]], "p": [[0.9454, 0.0323, 0.0077, 0.0034, 0.0018, 0.0012, 0.001, 0.001], [0.0442, 0.039, 0.0344, 0.0344, 0.0252, 0.0135, 0.0032, 0.0032], [0.6921, 0.2546, 0.0099, 0.0044, 0.0041, 0.0019, 0.0018, 0.0016], [0.034, 0.0117, 0.0049, 0.0043, 0.003, 0.0026, 0.0026, 0.0022], [0.1902, 0.0956, 0.033, 0.0138, 0.0101, 0.0048, 0.0045, 0.0042], [0.023, 0.0203, 0.0085, 0.0079, 0.0051, 0.0045, 0.0043, 0.0031], [0.3436, 0.0125, 0.0076, 0.0052, 0.0046, 0.0041, 0.0038, 0.0036], [0.1751, 0.0082, 0.0072, 0.006, 0.0039, 0.0032, 0.0032, 0.0027], [0.5977, 0.018, 0.0071, 0.004, 0.0038, 0.0038, 0.0036, 0.0033], [0.2965, 0.0054, 0.0045, 0.0033, 0.0026, 0.0019, 0.0017, 0.0015], [0.8656, 0.0296, 0.0066, 0.004, 0.0029, 0.0028, 0.0021, 0.0017], [0.0191, 0.004, 0.0031, 0.0029, 0.0026, 0.0024, 0.0019, 0.0019], [0.0454, 0.0054, 0.0045, 0.0037, 0.0033, 0.0024, 0.0018, 0.0017], [0.1535, 0.0118, 0.0046, 0.0041, 0.0034, 0.0028, 0.0016, 0.0013], [0.6243, 0.0051, 0.0013, 0.0012, 0.0012, 0.0009, 0.0009, 0.0008], [0.1997, 0.0041, 0.0032, 0.0024, 0.0022, 0.0017, 0.0017, 0.0012], [0.79, 0.0024, 0.0016, 0.0016, 0.001, 0.0008, 0.0007, 0.0006], [0.4303, 0.0045, 0.0042, 0.0029, 0.0016, 0.0013, 0.0012, 0.0011], [0.4882, 0.0048, 0.004, 0.0033, 0.0026, 0.0023, 0.0019, 0.0019], [0.4639, 0.0045, 0.0043, 0.0029, 0.0029, 0.002, 0.0015, 0.0014], [0.2753, 0.1384, 0.0065, 0.0031, 0.0022, 0.0022, 0.0021, 0.0021], [0.0112, 0.0039, 0.0037, 0.0034, 0.003, 0.0028, 0.0025, 0.0024], [0.0183, 0.0134, 0.0126, 0.0118, 0.0049, 0.0038, 0.0036, 0.0032], [0.0124, 0.0096, 0.0052, 0.0048, 0.0043, 0.0031, 0.0029, 0.0028], [0.101, 0.0477, 0.0145, 0.0061, 0.0057, 0.0039, 0.0039, 0.0037], [0.0258, 0.0188, 0.0114, 0.0051, 0.0039, 0.0039, 0.0037, 0.0033], [0.0488, 0.0404, 0.0109, 0.0085, 0.0075, 0.0066, 0.0058, 0.0058], [0.1257, 0.0408, 0.0124, 0.0124, 0.0103, 0.0097, 0.0097, 0.0071], [0.0649, 0.0573, 0.0198, 0.0154, 0.0113, 0.0088, 0.0083, 0.0078], [0.0368, 0.0325, 0.0174, 0.0163, 0.0135, 0.0099, 0.0077, 0.0068], [0.065, 0.042, 0.0288, 0.0186, 0.0186, 0.0145, 0.0128, 0.0113], [0.0623, 0.0244, 0.0215, 0.0157, 0.0157, 0.0148, 0.0131, 0.0096], [0.1173, 0.059, 0.0316, 0.0279, 0.0169, 0.0159, 0.0149, 0.014], [0.1011, 0.0508, 0.0508, 0.0508, 0.0256, 0.0146, 0.0128, 0.0065], [0.0797, 0.0515, 0.0376, 0.0354, 0.0312, 0.0243, 0.0157, 0.0157], [0.1624, 0.0767, 0.0597, 0.0495, 0.0465, 0.0194, 0.0182, 0.0161], [0.2304, 0.2164, 0.1022, 0.062, 0.0312, 0.0178, 0.0147, 0.0138], [0.2205, 0.1423, 0.0978, 0.0492, 0.0232, 0.0193, 0.0181, 0.017], [0.2368, 0.1963, 0.1268, 0.0387, 0.0387, 0.0194, 0.0161, 0.0142], [0.2384, 0.2384, 0.1126, 0.0824, 0.047, 0.0236, 0.0184, 0.0162], [0.2506, 0.1722, 0.1722, 0.1184, 0.0634, 0.0384, 0.0233, 0.0141], [0.2942, 0.1784, 0.1082, 0.0843, 0.0744, 0.0351, 0.0241, 0.0213], [0.291, 0.1375, 0.1213, 0.107, 0.0736, 0.0271, 0.0224, 0.0175], [0.2618, 0.2039, 0.0963, 0.075, 0.0584, 0.0455, 0.0333, 0.0157], [0.1913, 0.1688, 0.1315, 0.0904, 0.0484, 0.0484, 0.0293, 0.0167], [0.2497, 0.1179, 0.0811, 0.0811, 0.0811, 0.0317, 0.0232, 0.0124], [0.3916, 0.1633, 0.099, 0.0413, 0.0321, 0.0208, 0.0143, 0.0126], [0.2842, 0.1953, 0.1521, 0.0436, 0.0233, 0.0206, 0.0133, 0.0125], [0.3061, 0.2701, 0.1126, 0.0343, 0.0251, 0.0162, 0.0119, 0.0119], [0.6801, 0.0812, 0.0558, 0.0339, 0.0299, 0.0233, 0.0205, 0.0086], [0.8456, 0.0787, 0.0199, 0.0199, 0.0175, 0.0057, 0.0027, 0.0016], [0.9132, 0.0515, 0.0115, 0.009, 0.0079, 0.002, 0.0009, 0.0004], [0.9335, 0.0362, 0.0092, 0.0071, 0.0063, 0.0026, 0.001, 0.0007], [0.917, 0.0403, 0.0102, 0.0079, 0.0079, 0.0055, 0.002, 0.001], [0.9355, 0.0249, 0.0104, 0.0092, 0.0049, 0.0034, 0.0018, 0.0012], [0.8423, 0.037, 0.0288, 0.0254, 0.0254, 0.0064, 0.0064, 0.0064], [0.4608, 0.3167, 0.1165, 0.0158, 0.0139, 0.0123, 0.0123, 0.0074], [0.4573, 0.2448, 0.1906, 0.0375, 0.0122, 0.0108, 0.0074, 0.0058], [0.496, 0.3008, 0.0592, 0.0317, 0.0317, 0.0247, 0.0117, 0.008], [0.9169, 0.0664, 0.0079, 0.0062, 0.0007, 0.0003, 0.0002, 0.0002], [0.9614, 0.0329, 0.0031, 0.0021, 0.0001, 0.0001, 0.0001, 0.0], [0.9455, 0.0471, 0.005, 0.0014, 0.0004, 0.0001, 0.0001, 0.0], [0.9275, 0.0462, 0.017, 0.0023, 0.0023, 0.0005, 0.0004, 0.0004]], "ranks": {"Kotlin": [147080, 105391, 48570, 4799, 5998, 18229, 24094, 168987, 214375, 234087, 224200, 167829, 113199, 165127, 209492, 158276, 175546, 171707, 161234, 196790, 224119, 118743, 153345, 197247, 150626, 89415, 34821, 67570, 45519, 19013, 20031, 31590, 64524, 13596, 10231, 9813, 8207, 10469, 16532, 16778, 24202, 35702, 19848, 26388, 52357, 91885, 86331, 86419, 88404, 83221, 117697, 77216, 62349, 31267, 21570, 19549, 11315, 16832, 33043, 20218, 22525, 12312, 8044]}}, {"pos": 547, "top": [[" \u2013", "\u0629", "@@@@", " @", "@\"", " \uff5c", " [@", " *@"], [" \u2013**", " \uff5e", "\uff20", "\uff5e\uff5e", " \r\n \r\n", " \u2013", " \ufffd", " [@"], [" \u2013**", "**\u2013", " \u2013", " \u2013,", " *\u2013", " \uff5c", ".\u2013", " \r\n \r\n"], ["\\xa", "\uff0d\uff0d", "\uff0a\uff0a\uff0a\uff0a", "\uff1d\uff1d\uff1d\uff1d", "\uff0a\uff0a", "\uff5e\uff5e", "\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a", "\uff3f\uff3f"], ["\uff20", "\\xa", " ****", " *@", " \uffe5", " @(", " \uff5c", "@@@@"], [" ****", "\\xa", " \uff5c", " \uffe5", "\uff5e\uff5e", "\uff20", " \uff5e", "\uff1d\uff1d\uff1d\uff1d"], ["\\xa", " \uff5c", " ****", " \uffe5", "\uff5e\uff5e", "\uff20", " \uff5e", " {{$"], ["\\xa", "\uff20", " ****", " \uffe5", " [@", " \uff5c", " *@", " \r\n \r\n"], [" [@", "\\xa", " \uff5c", "\uff20", " \ufffd", " \r\n \r\n", " \uffe5", " *@"], ["\\xa", " [@", " {{$", " [[", "\\xf", "\uff5e\u300d", "\",@\"", "\uff20"], ["\\xa", " [@", " [[", " ****", " \uff5c", " #@", " @", " *@"], ["\\xa", " {{$", " ****", "\\xf", " **\u300c", "\uff5e\u300d", " *@", "\uff0a\uff0a\uff0a\uff0a"], ["\\xa", " FPS", "\uff5e\u300d", "\\xf", " ****", "\u2011", " St\u00e9ph", " **\u300c"], ["\\xa", "\u2011", " FPS", " \u0442\u0440\u0451", " St\u00e9ph", "\uff5e\u300d", "\\xf", "\u5f7f"], ["\\xa", "\u2011", " whilst", "\u5f7f", "\u0648\u0631\u0627\u064b", " \ufffd", " FPS", " \ufffd"], ["\\xa", "\u2011", " FPS", " St\u00e9ph", "\ufffd", " incredibly", "\\xf", " \ufffd"], ["\\xa", " incredibly", " \u2013", " FPS", " arguably", " via", " instantly", " iconic"], ["\\xa", " FPS", " incredibly", "\\xf", " \uffe5\uffe5", "\u5f7f", "\ufffd", " ****"], ["\\xa", " FPS", " St\u00e9ph", " incredibly", " \uffe5\uffe5", " arguably", "\ufffd", " !***"], ["\\xa", " &#", " \ufffd", " --", " arguably", " incredibly", "\u2011", " wildly"], [" though", "<|endoftext|>", " \n  \n", "\uff20", " --", " @", " &#", " just"], [" St\u00e9ph", " FPS", " incredibly", " arguably", " even", " \uffe5\uffe5", " atop", " across"], [" even", " ever", " across", " ,", " incredibly", " arguably", " just", " at"], [" ,", " at", " even", " on", " in", " ever", " across", " just"], [" \n  \n", " \r\n \r\n", " \r\n\r\n", " \n\n", " &#", "\\xa", " atop", " \n\t\n"], [" FPS", " \n  \n", " framerate", " atop", "\\xa", " ****", " )**", " !***"], [" FPS", " framerate", " pornstar", " atop", " overclock", " gaming", " speed", " ****"], [" even", " ,", " speed", " whilst", " atop", " on", " famously", " arguably"], [" speed", " even", " atop", " FPS", " famously", " at", " ,", " rapidly"], [" speed", " even", " FPS", " pornstar", " during", " speeds", " atop", " rapidly"], [" speed", " at", " even", " only", " on", " over", " ,", " in"], [" only", " at", " even", " on", " speed", " in", " ,", " without"], [" only", " even", " speed", " ,", " at", " just", " rapidly", " quickly"], [" only", " even", " speed", " rapidly", " incredibly", " faster", " requires", " quickly"], [" rapidly", " speed", " incredibly", " requires", " only", " even", " fastest", " rapid"], [" speed", " rapidly", " requires", " faster", " fastest", " fast", " only", " rapid"], [" speed", " requires", " faster", " rapidly", " fastest", " fast", " must", " speeds"], [" requires", " speed", " must", " require", " faster", " requiring", " required", " fastest"], [" requires", " speed", " requiring", " require", " demands", " demanding", " required", " must"], [" requires", " speed", " faster", " requiring", " require", " fastest", " required", " rapidly"], [" requires", " speed", " faster", " fastest", " fast", " speeds", " require", " rapid"], [" speed", " faster", " requires", " milliseconds", " latency", " timing", " time", " rapid"], [" milliseconds", " faster", " latency", " speed", " deadlines", " timing", " requires", " clock"], [" requires", " milliseconds", "\u6bcf\u79d2", " faster", " deadlines", " speed", " require", " latency"], [" requires", " required", " milliseconds", " require", " deadlines", " requiring", "\u6bcf\u79d2", " every"], [" requires", "\u6bcf\u5206\u949f", " every", " require", " required", "\u6bcf\u79d2", " demands", " milliseconds"], [" requires", " require", "\u5e73\u5747\u6bcf", "\u6bcf\u5206\u949f", " demands", " required", " requiring", "\u6bcf\u79d2"], [" requires", " require", "\u5e73\u5747\u6bcf", " demands", " every", "requires", "\u6bcf\u5206\u949f", " requiring"], [" requires", " require", "\u5e73\u5747\u6bcf", " demands", " requiring", "\u6bcf\u5206\u949f", "requires", "\u6bcf\u79d2"], [" requires", "requires", " Requires", " require", "\u610f\u5473\u7740", "Requires", "\u5e73\u5747\u6bcf", "\u6bcf\u79d2"], [" requires", "requires", " Requires", "\u610f\u5473\u7740", " require", "Requires", " \u0442\u0440\u0435\u0431\u0443\u0435\u0442", "\u610f\u5473\u8457"], [" requires", "requires", " Requires", " require", "Requires", "\u610f\u5473\u7740", " \u0442\u0440\u0435\u0431\u0443\u0435\u0442", " requiring"], [" requires", "requires", " Requires", " require", "Requires", "\u610f\u5473\u7740", " \u0442\u0440\u0435\u0431\u0443\u0435\u0442", " requiring"], [" requires", "requires", " allows", "\u610f\u5473\u7740", "\u5141\u8bb8", " Requires", " require", "Requires"], ["\u5141\u8bb8", " requires", " allows", "\u5141\u8bb8\u7684", "allows", " allowable", "\u5141\u8a31", "requires"], [" requires", "\u610f\u5473\u7740", " require", "requires", " Requires", " means", " allows", "\u5141\u8bb8"], [" requires", " allows", "requires", "\u610f\u5473\u7740", "\u7559\u7ed9", " require", "\u5141\u8bb8", " Requires"], [" requires", " allows", "\u7559\u7ed9", "requires", " require", " means", " demands", "\u610f\u5473\u7740"], [" requires", " allows", "\u7559\u7ed9", " gives", "requires", " =", " require", " Requires"], [" requires", " =", " gives", " allows", " leaves", " means", "\u7559\u7ed9", " require"], [" =", " requires", " leaves", " means", " gives", " allows", " budget", "\u7559\u7ed9"], [" allows", " =", " requires", " means", " leaves", " gives", " demands", "allows"], [" requires", " =", " means", " allows", " leaves", " gives", " demands", " implies"]], "p": [[0.6743, 0.1172, 0.0131, 0.0075, 0.0055, 0.0051, 0.0048, 0.0043], [0.1464, 0.065, 0.065, 0.0573, 0.0506, 0.0394, 0.037, 0.0307], [0.2397, 0.2116, 0.1132, 0.0882, 0.0535, 0.0417, 0.0417, 0.0345], [0.1093, 0.1093, 0.0906, 0.0663, 0.0402, 0.0402, 0.0229, 0.0215], [0.2657, 0.1107, 0.0715, 0.0593, 0.0338, 0.028, 0.0263, 0.0218], [0.1249, 0.1035, 0.0628, 0.059, 0.052, 0.0489, 0.0231, 0.0204], [0.3555, 0.1018, 0.0793, 0.0292, 0.0242, 0.0201, 0.0188, 0.0166], [0.1633, 0.0874, 0.0725, 0.053, 0.053, 0.0468, 0.0388, 0.0302], [0.2, 0.1291, 0.0691, 0.0573, 0.0538, 0.0506, 0.0348, 0.0239], [0.644, 0.0438, 0.0172, 0.0118, 0.0111, 0.0056, 0.0052, 0.0046], [0.5593, 0.1603, 0.0169, 0.014, 0.0116, 0.0116, 0.0116, 0.009], [0.3023, 0.0464, 0.0361, 0.0233, 0.011, 0.0081, 0.0067, 0.0063], [0.0853, 0.0244, 0.0179, 0.0158, 0.0148, 0.0108, 0.0102, 0.0084], [0.0487, 0.0357, 0.0085, 0.0085, 0.0085, 0.008, 0.0066, 0.0048], [0.0266, 0.0125, 0.0056, 0.0049, 0.0041, 0.0036, 0.0036, 0.0034], [0.0164, 0.0037, 0.0037, 0.0027, 0.0025, 0.0025, 0.0024, 0.0024], [0.0282, 0.0098, 0.0081, 0.0067, 0.0043, 0.0028, 0.0023, 0.0022], [0.0313, 0.0095, 0.0037, 0.0033, 0.0026, 0.0024, 0.0023, 0.0023], [0.0238, 0.0073, 0.0057, 0.0057, 0.005, 0.0034, 0.0025, 0.0024], [0.0214, 0.0166, 0.0147, 0.0107, 0.0095, 0.0079, 0.0074, 0.0074], [0.0247, 0.0204, 0.0159, 0.0109, 0.0109, 0.0103, 0.0097, 0.0091], [0.0074, 0.0074, 0.007, 0.0058, 0.0051, 0.0051, 0.0042, 0.004], [0.0222, 0.0152, 0.0143, 0.0126, 0.0126, 0.0119, 0.0119, 0.0105], [0.0375, 0.0214, 0.0214, 0.0147, 0.0147, 0.0147, 0.013, 0.0122], [0.1682, 0.0513, 0.0311, 0.0292, 0.0242, 0.0166, 0.0138, 0.0107], [0.0224, 0.0211, 0.0154, 0.0128, 0.0106, 0.0088, 0.0082, 0.0082], [0.0354, 0.0157, 0.0108, 0.0108, 0.0095, 0.0058, 0.0045, 0.0045], [0.0198, 0.0198, 0.0136, 0.0106, 0.0093, 0.0077, 0.0077, 0.0077], [0.0231, 0.0103, 0.0096, 0.008, 0.0071, 0.0055, 0.0052, 0.0048], [0.0187, 0.0069, 0.0069, 0.005, 0.0047, 0.0039, 0.0039, 0.0037], [0.0333, 0.0244, 0.0244, 0.0215, 0.0167, 0.0157, 0.0148, 0.013], [0.0509, 0.0309, 0.029, 0.0256, 0.0212, 0.0199, 0.0146, 0.0121], [0.0927, 0.0466, 0.0234, 0.0172, 0.0172, 0.0142, 0.0142, 0.0142], [0.0594, 0.0408, 0.0338, 0.0193, 0.016, 0.0141, 0.0117, 0.0117], [0.0401, 0.0293, 0.0243, 0.0167, 0.0167, 0.013, 0.0122, 0.0115], [0.1022, 0.0514, 0.0454, 0.0376, 0.0293, 0.0258, 0.0243, 0.0178], [0.1482, 0.1308, 0.0399, 0.0331, 0.0292, 0.0201, 0.0156, 0.0138], [0.3863, 0.0671, 0.0383, 0.0263, 0.0263, 0.017, 0.017, 0.015], [0.5545, 0.0455, 0.0313, 0.0276, 0.0259, 0.0244, 0.0229, 0.0215], [0.4814, 0.0837, 0.0371, 0.0289, 0.0272, 0.0255, 0.0187, 0.0175], [0.2724, 0.1652, 0.0884, 0.0608, 0.021, 0.0185, 0.0174, 0.0174], [0.1579, 0.0958, 0.0958, 0.0845, 0.0352, 0.0352, 0.0311, 0.0311], [0.1201, 0.0935, 0.0643, 0.0643, 0.0501, 0.047, 0.039, 0.0304], [0.1457, 0.1286, 0.0504, 0.0418, 0.0287, 0.027, 0.0238, 0.0223], [0.3247, 0.0498, 0.0439, 0.0439, 0.0302, 0.025, 0.0235, 0.0221], [0.3269, 0.0416, 0.0367, 0.0324, 0.0304, 0.0286, 0.0237, 0.0237], [0.6751, 0.0489, 0.0204, 0.018, 0.0159, 0.0149, 0.0124, 0.0124], [0.8168, 0.0461, 0.0117, 0.0103, 0.0091, 0.0075, 0.0075, 0.0075], [0.8161, 0.0406, 0.0169, 0.0109, 0.0085, 0.0071, 0.0062, 0.0059], [0.8719, 0.0434, 0.0205, 0.0205, 0.0075, 0.004, 0.0036, 0.0028], [0.8914, 0.0503, 0.0238, 0.0112, 0.0087, 0.0053, 0.0015, 0.0006], [0.9253, 0.0407, 0.015, 0.0091, 0.0049, 0.0018, 0.0006, 0.0004], [0.9377, 0.0321, 0.0134, 0.0072, 0.0038, 0.0023, 0.0006, 0.0004], [0.8625, 0.0295, 0.0295, 0.0179, 0.0139, 0.0123, 0.0075, 0.004], [0.382, 0.2975, 0.2317, 0.019, 0.0102, 0.009, 0.0079, 0.0054], [0.8739, 0.0633, 0.0125, 0.0125, 0.0086, 0.0086, 0.0067, 0.0022], [0.8616, 0.026, 0.0203, 0.0158, 0.0158, 0.0096, 0.0084, 0.0084], [0.9028, 0.0187, 0.0165, 0.0129, 0.0069, 0.0061, 0.0054, 0.0047], [0.8846, 0.0303, 0.0126, 0.0111, 0.0098, 0.0077, 0.0077, 0.006], [0.596, 0.2484, 0.0297, 0.0297, 0.0204, 0.018, 0.0159, 0.0052], [0.4605, 0.2465, 0.1164, 0.0485, 0.0485, 0.026, 0.0108, 0.0074], [0.3705, 0.3705, 0.1545, 0.0391, 0.0237, 0.0237, 0.0023, 0.0015], [0.3073, 0.2393, 0.1864, 0.1451, 0.0534, 0.0286, 0.0223, 0.0019]], "ranks": {"Kotlin": [35653, 29424, 20463, 9394, 10256, 14524, 17031, 50733, 76692, 115775, 101769, 81791, 44405, 91340, 108260, 90250, 79074, 87413, 94699, 179139, 193387, 98889, 112732, 144322, 121664, 67231, 47792, 66850, 66450, 57041, 58026, 57923, 137393, 84254, 94532, 109471, 88415, 85006, 111478, 101603, 112424, 112903, 78989, 75812, 90386, 139637, 130573, 142222, 147406, 156000, 172153, 136968, 143226, 101260, 78441, 47261, 52152, 64801, 73903, 65599, 44185, 48131, 55507]}}, {"pos": 548, "top": [[" \u2013", "o", "es", "y", "u", ",", "s", "e"], ["es", " \u2013", " (\u201c", "\u0647", " very", " \u2192", "en\u00ed", " old"], ["es", " \u200b\u200b", " \u2013", "s", ",", "\u2026..", "u", "\u2013"], [" ``", "ielen", " pupper", " :</", " Nues", "odle", " cumshot", "busters"], [" @", " (@", "es", " =", " =>", " \u201c", " +", "s"], [" \u201c", " @", " \u201c.", " \u201d", "=\u201d", " (@", " =", " =>"], [" @", " =", " =>", "es", " +", " >>>", " \u201d", " \u201c"], [" @", " =", " =>", " (@", " !!!", " @\"", " +=", " >>>"], [" @", " @\"", " *=", " %#", " =", " (@", " !!!", " +="], [" +=", " @", " @\"", " %#", " =", " %+", "/=", " aka"], [" @", " #", " =", " +=", " +", " @\"", " (@", " %+"], [" =", " +=", " +", " #", " *=", " =>", " @", " combo"], [" =", " +=", " +", " Plus", " aka", " combo", " nice", " scary"], [" Plus", " nice", " bigger", " =", " aka", " huge", " scary", " big"], [" Plus", " goodies", " big", " pretty", " huge", " bigger", " plus", " combo"], [" pretty", " freaking", " goodies", " kids", " nice", " aka", " big", " scary"], [" freaking", " big", " pretty", " scary", " goodies", " nice", " aka", " bigger"], [" freaking", " goodies", " gotta", " scary", " veggies", " crappy", " bigger", " kids"], [" freaking", " goodies", " crappy", " scary", " gotta", " veggies", " !!!!", " comfy"], [" freaking", " gotta", " %+", " scary", " goodies", " crappy", " %#", " shit"], [" %+", " freaking", " gotta", " +=", "/=", " goodies", " %#", " ASAP"], [" freaking", " %+", " scary", " bigger", " goodies", " PLUS", " crappy", " ASAP"], [" %+", " freaking", " big", " huge", " bigger", " goodies", " PLUS", " forever"], [" %+", " +", " huge", " forever", " big", " PLUS", " bigger", " #"], [" %+", " freaking", " +", " crunch", " bigger", " PLUS", " +=", " #"], [" freaking", " %+", " crunch", " PLUS", " bigger", " goodies", " ASAP", " gotta"], [" %+", " crunch", " freaking", " bigger", " framerate", " PLUS", " avg", " fastest"], [" bigger", " +", " big", " crunch", " huge", " %+", " freaking", " #"], [" crunch", " %+", " average", " +", " huge", " fastest", " avg", " ASAP"], [" average", " fastest", " faster", " avg", " crunch", " huge", " fast", " big"], [" huge", " fast", " average", " big", " +", " high", " just", " every"], [" huge", " fast", " incredibly", " +", " big", " average", " every", " EVERY"], [" incredibly", " fast", " fastest", " huge", " avg", " faster", " EVERY", " average"], [" incredibly", " huge", " EVERY", " fastest", " avg", " freaking", " average", " fast"], [" incredibly", " EVERY", " fastest", " avg", " fast", " ASAP", " huge", " average"], [" fastest", " fast", " faster", " ASAP", " EVERY", " incredibly", " speed", " avg"], [" fastest", " faster", " speed", " fast", " ASAP", " incredibly", "\u6bcf\u79d2", " framerate"], [" fastest", " faster", " fast", " speed", "\u6bcf\u79d2", " avg", " incredibly", " ASAP"], [" fastest", "\u6bcf\u79d2", " faster", " fast", " speed", " milliseconds", " rapid", "\u6bcf\u5206\u949f"], [" fastest", " milliseconds", " faster", "\u6bcf\u79d2", " fast", " rapid", " speed", " latency"], ["\u6bcf\u79d2", " milliseconds", " fastest", " time", " latency", " timeframe", " faster", " avg"], [" milliseconds", "\u6bcf\u79d2", " timeframe", " latency", " time", " deadlines", " microseconds", " rapid"], [" milliseconds", " timeframe", "\u6bcf\u79d2", " deadlines", " latency", " deadline", " TimeSpan", " microseconds"], [" milliseconds", "\u6bcf\u79d2", " microseconds", " timeframe", "\u6bcf\u5206\u949f", "\u6beb\u79d2", " latency", " TimeSpan"], [" milliseconds", "\u6bcf\u79d2", "\u6bcf\u5206\u949f", " microseconds", " timeframe", " avg", " latency", " deadlines"], [" milliseconds", "\u6bcf\u5206\u949f", "\u6bcf\u79d2", " microseconds", " latency", " avg", " timeframe", " deadlines"], [" avg", " timeframe", " milliseconds", "\u6bcf\u5206\u949f", "\u6bcf\u79d2", " microseconds", " latency", " tiny"], [" timeframe", "\u6bcf\u79d2", " avg", "\u6bcf\u5206\u949f", " \u043a\u0430\u0436\u0434\u044b\u0435", " EACH", " milliseconds", " \u2264"], ["\u6bcf\u79d2", "\u6bcf\u5206\u949f", " \u043a\u0430\u0436\u0434\u044b\u0435", " timeframe", " TimeSpan", " milliseconds", "/=", " \u2264"], ["\u6bcf\u79d2", "\u6bcf\u5206\u949f", " \u043a\u0430\u0436\u0434\u044b\u0435", "ptime", "/=", " TimeSpan", " milliseconds", " **+"], [" **+", "/=", " **#", "\u6bcf\u79d2", "ptime", " **.", "\u6bcf\u5206\u949f", "!**"], ["/=", " **+", " **#", "!**", "ptime", " milliseconds", " TimeSpan", " **."], ["/=", " milliseconds", " **+", " latency", " microseconds", " \u2264", " TimeSpan", " **#"], ["/=", " **+", " milliseconds", " **#", " latency", " \u2264", " **", "!**"], ["/=", " milliseconds", " **+", " latency", " microseconds", " \u2264", " allotted", "_<"], [" **+", "/=", " milliseconds", " timestep", " latency", " framerate", " **", " **#"], [" **+", " **", "/=", " milliseconds", " **#", " allotted", " \u2264", " latency"], [" **+", "/=", "/frame", " **", "\u5e27", " framerate", " milliseconds", " frame"], [" ~", " frame", " Frame", "\u5e27", " frames", "Frame", "/frame", " <"], [" ~", " <", " frame", " Frame", "/frame", " frames", "Frame", "\u5e27"], [" <", " ~", " frame", " **", " \u2264", " max", " Frame", "/frame"], [" ~", " <", " **", "~", " (~", "<", "/~", " max"], [" ~", " <", " **", " ", " max", " \u2264", "8", " refresh"]], "p": [[0.2911, 0.2734, 0.1765, 0.0394, 0.0211, 0.0154, 0.0113, 0.01], [0.1854, 0.0773, 0.0049, 0.0049, 0.0041, 0.0034, 0.003, 0.0026], [0.2637, 0.0519, 0.0458, 0.0335, 0.0158, 0.0109, 0.007, 0.0055], [0.0033, 0.0029, 0.0027, 0.0024, 0.0023, 0.0021, 0.0019, 0.0019], [0.1925, 0.1168, 0.103, 0.0708, 0.043, 0.043, 0.0245, 0.0203], [0.0513, 0.0482, 0.0258, 0.0201, 0.0138, 0.0138, 0.0107, 0.0089], [0.1465, 0.1072, 0.0288, 0.0255, 0.0225, 0.0198, 0.0186, 0.0186], [0.254, 0.0366, 0.0285, 0.0222, 0.0173, 0.0162, 0.0143, 0.0126], [0.0833, 0.0288, 0.0254, 0.0254, 0.0254, 0.0239, 0.0224, 0.0186], [0.0475, 0.0211, 0.0136, 0.0128, 0.0128, 0.01, 0.01, 0.0083], [0.5412, 0.1368, 0.0646, 0.0163, 0.0154, 0.0077, 0.0073, 0.0056], [0.0343, 0.0322, 0.0236, 0.0172, 0.0111, 0.0105, 0.0087, 0.0077], [0.0296, 0.0216, 0.0191, 0.0179, 0.0123, 0.0096, 0.009, 0.008], [0.0295, 0.0158, 0.0148, 0.0139, 0.0139, 0.0131, 0.0123, 0.0123], [0.0381, 0.0336, 0.0315, 0.0296, 0.0278, 0.0246, 0.0217, 0.0204], [0.054, 0.0395, 0.0349, 0.0328, 0.0308, 0.0272, 0.0272, 0.0255], [0.05, 0.0442, 0.0366, 0.0344, 0.0303, 0.0268, 0.0252, 0.0252], [0.0608, 0.0325, 0.0325, 0.0253, 0.021, 0.0136, 0.0136, 0.012], [0.0213, 0.0095, 0.0078, 0.0078, 0.0065, 0.0054, 0.0048, 0.0045], [0.0456, 0.0168, 0.0158, 0.0123, 0.0115, 0.0096, 0.0066, 0.0058], [0.0636, 0.0411, 0.0171, 0.0125, 0.0098, 0.0098, 0.0098, 0.0086], [0.0291, 0.0138, 0.0074, 0.0074, 0.0057, 0.0054, 0.0051, 0.0039], [0.0391, 0.0237, 0.0197, 0.0163, 0.0163, 0.0119, 0.0119, 0.0119], [0.0348, 0.0225, 0.0175, 0.0145, 0.0145, 0.0113, 0.01, 0.0094], [0.0437, 0.022, 0.0142, 0.0118, 0.0118, 0.011, 0.0104, 0.0097], [0.0348, 0.0255, 0.012, 0.01, 0.0094, 0.006, 0.006, 0.006], [0.0155, 0.0129, 0.0107, 0.0078, 0.0047, 0.0039, 0.0037, 0.0033], [0.0141, 0.0124, 0.0117, 0.011, 0.011, 0.0103, 0.0075, 0.0075], [0.0116, 0.0085, 0.0085, 0.0085, 0.0085, 0.0075, 0.0071, 0.0066], [0.022, 0.0151, 0.0118, 0.0111, 0.0104, 0.0104, 0.0098, 0.0092], [0.0315, 0.023, 0.023, 0.0179, 0.0158, 0.0096, 0.009, 0.009], [0.0581, 0.0331, 0.0177, 0.0167, 0.0157, 0.0147, 0.0122, 0.0101], [0.0419, 0.0348, 0.0307, 0.0288, 0.0198, 0.0198, 0.0175, 0.0164], [0.0608, 0.0393, 0.027, 0.0238, 0.021, 0.0174, 0.0174, 0.0144], [0.0421, 0.0372, 0.0308, 0.0226, 0.0199, 0.0187, 0.0155, 0.0137], [0.1496, 0.0664, 0.055, 0.0313, 0.0294, 0.026, 0.0229, 0.0202], [0.1599, 0.0755, 0.0626, 0.0626, 0.0296, 0.023, 0.0216, 0.0203], [0.1241, 0.0853, 0.0624, 0.0429, 0.026, 0.0203, 0.0203, 0.0203], [0.1241, 0.0908, 0.0753, 0.0429, 0.0403, 0.0356, 0.0295, 0.0277], [0.1783, 0.0955, 0.0698, 0.0579, 0.0511, 0.048, 0.033, 0.0291], [0.1339, 0.1182, 0.1043, 0.0633, 0.0493, 0.0435, 0.0318, 0.0233], [0.3053, 0.0875, 0.0772, 0.0531, 0.0468, 0.0468, 0.0284, 0.0235], [0.2752, 0.1147, 0.0893, 0.0788, 0.0614, 0.0422, 0.0329, 0.0272], [0.5348, 0.082, 0.0439, 0.0387, 0.0283, 0.0266, 0.0235, 0.0235], [0.3585, 0.0906, 0.0623, 0.055, 0.0378, 0.0378, 0.0313, 0.0276], [0.2141, 0.0893, 0.0893, 0.0422, 0.0422, 0.0372, 0.0309, 0.024], [0.0929, 0.0929, 0.077, 0.0723, 0.06, 0.0321, 0.0321, 0.0283], [0.1013, 0.0741, 0.0741, 0.0696, 0.035, 0.0309, 0.0226, 0.0226], [0.1726, 0.0868, 0.0676, 0.0495, 0.0319, 0.0319, 0.0234, 0.0234], [0.1842, 0.0986, 0.0926, 0.0598, 0.0598, 0.0363, 0.0234, 0.0207], [0.3925, 0.3925, 0.0389, 0.0172, 0.0172, 0.0119, 0.0068, 0.0056], [0.4006, 0.1569, 0.0542, 0.0256, 0.0212, 0.0187, 0.0187, 0.0176], [0.2683, 0.1267, 0.0769, 0.0411, 0.032, 0.025, 0.0207, 0.0151], [0.3207, 0.1041, 0.0811, 0.0338, 0.0318, 0.0218, 0.017, 0.0141], [0.4886, 0.0704, 0.0621, 0.0215, 0.0139, 0.013, 0.013, 0.0108], [0.1591, 0.1319, 0.08, 0.026, 0.0229, 0.0202, 0.0179, 0.0139], [0.3616, 0.0973, 0.0914, 0.0246, 0.0103, 0.0096, 0.0091, 0.008], [0.1191, 0.0987, 0.0563, 0.0321, 0.025, 0.025, 0.022, 0.0207], [0.2277, 0.2277, 0.1076, 0.0949, 0.0652, 0.0508, 0.0448, 0.0212], [0.5003, 0.1433, 0.1116, 0.0411, 0.022, 0.0207, 0.0182, 0.0118], [0.5039, 0.3925, 0.0152, 0.0111, 0.0068, 0.0063, 0.0036, 0.0034], [0.8376, 0.1456, 0.0082, 0.0007, 0.0006, 0.0006, 0.0005, 0.0004], [0.9876, 0.0097, 0.0012, 0.0004, 0.0002, 0.0001, 0.0001, 0.0]], "ranks": {"Kotlin": [205467, 126002, 86648, 24560, 38059, 51884, 87006, 113190, 117906, 190284, 158578, 85292, 112337, 149784, 208924, 189959, 171909, 113949, 89490, 154240, 233197, 224699, 240980, 245546, 244460, 231114, 220890, 237643, 226127, 209579, 227752, 215255, 197249, 193786, 181262, 178502, 92612, 83654, 99761, 62953, 83187, 76271, 38105, 30975, 48180, 104203, 77911, 90263, 86441, 119452, 104577, 47917, 54707, 49511, 44042, 22259, 25456, 61812, 35158, 42493, 34875, 58588, 41335]}}, {"pos": 549, "top": [["s", " ~", "es", "~", "o", "y", "  \n", "e"], [" ~", "s", " ~~", " '~", "es", " \\\"", " \\\\", "~"], ["s", " ~", "~", "~~", " ~~", " '~", "(~", "~,"], [" ``", "``", " ~", " ~~", " ____", " ~>", " \u301c", "ingly"], [" ~", "ingly", "s", " ~~", " ~>", " -->", " ____", "~"], [" ~", "ingly", " ~~", "~~", " ~>", " ____", "\u0103\u021b", "\u0d30\u0d4d"], [" ~", " ~~", "~~", " ____", "~", " (~", " ~>", " \u301c"], [" ~", " ~~", "~~", " ____", " ~>", "~", " (~", "(~"], [" ~", "~", " ~~", "(~", "~~", " (~", "/~", " ____"], [" ~", "~", "/~", "(~", "~~", " (~", " ~~", "s"], [" ~", "~", "(~", "~~", "s", " (~", "/~", " ~~"], [" ~", "~", " (~", " ~~", "/~", "(~", "~~", "-ish"], [" ~", "~", "-ish", " (~", "(~", "/~", "~~", " ~~"], [" ~", "-ish", "~", "(~", " (~", "/~", "s", "~~"], [" ~", "~", "-ish", "/~", " (~", "(~", "s", " Philly"], [" ~", "-ish", "~", "s", " (~", "/~", "(~", " Philly"], [" ~", "s", "~", "-ish", "/~", " (~", "(~", " Philly"], ["~", "-ish", " ~", "/~", "~~", "(~", "s", " (~"], ["-ish", " ~", "/~", "~", "~~", " (~", " Philly", "(~"], [" ~", "~", "-ish", "/~", "(~", " ~=", " (~", "~~"], ["~", " ~", "/~", "(~", " ~=", "-ish", "7", " (~"], [" ~", "-ish", "/~", "~", " ~=", " //~", " Philly", "ish"], [" ~", "~", "7", "/~", "8", "6", "9", "5"], ["~", " ~", "7", "8", "9", "6", "/~", "5"], ["~", "7", "9", "8", "6", "/~", "   \n\n", "5"], ["YNC", "-ish", " ~=", "/~", "avg", "~", " ~", "uptime"], ["uptime", "YNC", " uptime", " framerate", "\u5cf0\u503c", "avg", "\u6bcf\u79d2", "Milliseconds"], [" ~", "-ish", "uptime", " framerate", " uptime", "~", "avg", " (~"], ["uptime", "avg", " uptime", "-ish", "YNC", " framerate", "ptime", " ~"], ["avg", " uptime", "YNC", " framerate", "ptime", "uptime", "\u6bcf\u79d2", "\u5cf0\u503c"], [" ~", " uptime", " (~", "avg", "-ish", "~", "ptime", "\u6bcf\u79d2"], [" ~", " (~", "~", " uptime", "avg", "\u6bcf\u79d2", " faster", "-ish"], [" ~", "~", " (~", "\u6bcf\u79d2", "-ish", "(~", "avg", " uptime"], [" ~", " (~", "uptime", "\u6bcf\u79d2", "avg", "ptime", "/fast", "-ish"], [" ~", " (~", "(~", " avg", "avg", "\u6bcf\u79d2", "uptime", "/~"], ["\u6bcf\u79d2", " ~", "speed", " (~", "/fast", "fast", "\u5cf0\u503c", "ptime"], ["\u6bcf\u79d2", "speed", " latency", " milliseconds", " framerate", "Speed", " fastest", " speed"], ["\u6bcf\u79d2", " \u200b\u200b", "speed", " milliseconds", "ptime", " speed", " fastest", " faster"], [" milliseconds", "\u6bcf\u79d2", "ptime", "Milliseconds", " latency", " microseconds", " framerate", "speed"], [" milliseconds", "Milliseconds", "speed", "\u6bcf\u79d2", "milliseconds", " microseconds", " latency", " fastest"], ["\u6bcf\u79d2", " milliseconds", " timeframe", "ptime", " microseconds", "Milliseconds", "time", "milliseconds"], [" milliseconds", "\u6bcf\u79d2", "Milliseconds", " microseconds", " timeframe", "milliseconds", "ptime", " latency"], [" milliseconds", "\u6bcf\u79d2", " timeframe", "Milliseconds", " microseconds", " TimeSpan", " latency", "\u5468\u671f\u7684"], [" milliseconds", " microseconds", "Milliseconds", "\u6bcf\u79d2", " timeframe", "milliseconds", " TimeSpan", "\u6beb\u79d2"], [" milliseconds", "Milliseconds", " microseconds", "\u6bcf\u79d2", " TimeSpan", "\u6bcf\u5206\u949f", " timeframe", "milliseconds"], [" milliseconds", "\u6bcf\u79d2", " microseconds", "Milliseconds", "\u6bcf\u5206\u949f", "ptime", " timeframe", " TimeSpan"], [" milliseconds", " microseconds", "ptime", " (~", "\u6bcf\u79d2", " timeframe", "(~", "Milliseconds"], ["(~", " (~", "\u6bcf\u79d2", "\u7ea6", " timeframe", "\u6bcf\u5206\u949f", " milliseconds", "\u6bcf"], ["\u6bcf\u79d2", " milliseconds", "\u6bcf\u5206\u949f", " microseconds", "ptime", "(~", "Milliseconds", "\u6bcf"], ["(~", "\u6bcf\u79d2", "ptime", "\u6bcf\u5206\u949f", "\u7ea6", " milliseconds", "=~", "Milliseconds"], ["(~", "=~", "\u7ea6", "ptime", " (~", "/~", "\u6bcf\u79d2", "(\"~"], [" microseconds", " milliseconds", "ptime", "milliseconds", "Milliseconds", "(~", " TimeSpan", " (~"], [" milliseconds", " microseconds", "milliseconds", "Milliseconds", " timestep", " msec", "ptime", "Millis"], [" milliseconds", " microseconds", " msec", "milliseconds", "Millis", " TimeSpan", "minutes", "seconds"], [" milliseconds", " microseconds", "milliseconds", "Millis", "Milliseconds", "Nano", " msec", "\u6beb\u79d2"], [" milliseconds", "milliseconds", "Millis", " microseconds", "Nano", "tick", "\u6beb\u79d2", " msec"], [" milliseconds", "Millis", "milliseconds", " microseconds", "tick", " msec", "Nano", "Milliseconds"], ["8", "frame", " milliseconds", "/frame", "frames", "Frame", "\u5e27", ".ms"], ["/ms", " ms", ".ms", "ms", "(ms", "8", " milliseconds", " msec"], ["8", " ms", "ms", "/ms", "(ms", " milliseconds", ".ms", "Ms"], ["8", " eight", " ms", "ms", "eight", "\u516b\u5e74", " milliseconds", "\u634c"], ["8", "ms", " ms", " eight", " milliseconds", "9", "1", "7"], ["8", "7", "9", "6", "1", "5", "4", "3"]], "p": [[0.9232, 0.059, 0.0038, 0.0031, 0.0007, 0.0005, 0.0005, 0.0005], [0.469, 0.469, 0.0097, 0.0076, 0.0059, 0.0046, 0.0036, 0.0036], [0.3946, 0.2712, 0.1864, 0.0324, 0.0196, 0.0163, 0.006, 0.003], [0.3306, 0.2005, 0.0371, 0.0327, 0.0225, 0.0128, 0.0128, 0.0106], [0.5816, 0.0508, 0.0508, 0.0477, 0.0225, 0.0187, 0.0146, 0.0137], [0.2475, 0.0552, 0.0487, 0.0278, 0.0278, 0.0261, 0.0131, 0.0131], [0.3605, 0.1813, 0.1033, 0.0357, 0.0261, 0.0158, 0.014, 0.0131], [0.4736, 0.1637, 0.0389, 0.0365, 0.0267, 0.0195, 0.0152, 0.0087], [0.409, 0.1328, 0.0805, 0.0553, 0.0405, 0.0336, 0.0261, 0.0261], [0.4616, 0.2181, 0.0403, 0.0334, 0.0334, 0.0277, 0.0123, 0.0096], [0.6707, 0.2177, 0.0168, 0.0148, 0.0131, 0.0123, 0.009, 0.0058], [0.8059, 0.0312, 0.019, 0.0139, 0.0101, 0.0084, 0.0084, 0.0079], [0.4978, 0.0594, 0.0463, 0.0299, 0.0264, 0.0205, 0.0133, 0.0117], [0.3548, 0.1226, 0.0744, 0.0274, 0.0257, 0.0241, 0.0095, 0.0089], [0.5775, 0.1137, 0.0572, 0.0288, 0.0254, 0.021, 0.0164, 0.0057], [0.518, 0.123, 0.0746, 0.0375, 0.0311, 0.0189, 0.0147, 0.0061], [0.302, 0.1519, 0.1519, 0.1427, 0.016, 0.016, 0.015, 0.0063], [0.1641, 0.1542, 0.0684, 0.0323, 0.0285, 0.0236, 0.0222, 0.0127], [0.1417, 0.0555, 0.0358, 0.0336, 0.018, 0.0132, 0.0109, 0.0096], [0.3711, 0.255, 0.0778, 0.0645, 0.0223, 0.0153, 0.0119, 0.0105], [0.3911, 0.2093, 0.112, 0.0235, 0.0195, 0.0152, 0.0067, 0.0056], [0.1349, 0.0466, 0.0387, 0.0151, 0.0134, 0.0098, 0.0067, 0.0067], [0.3251, 0.1273, 0.0388, 0.0388, 0.0221, 0.0221, 0.0195, 0.0143], [0.182, 0.171, 0.0555, 0.0337, 0.0297, 0.0297, 0.0262, 0.0169], [0.1035, 0.052, 0.0358, 0.0316, 0.0316, 0.0246, 0.0217, 0.0204], [0.0176, 0.0165, 0.01, 0.0088, 0.0083, 0.0078, 0.0073, 0.0069], [0.011, 0.0097, 0.0076, 0.0071, 0.0063, 0.0052, 0.004, 0.0038], [0.0602, 0.0184, 0.0162, 0.0111, 0.0111, 0.0098, 0.0092, 0.0068], [0.0196, 0.0119, 0.0119, 0.0105, 0.0092, 0.0087, 0.0077, 0.0068], [0.0149, 0.014, 0.0109, 0.0102, 0.0085, 0.0075, 0.007, 0.0066], [0.0291, 0.0213, 0.0166, 0.0146, 0.0129, 0.0094, 0.0094, 0.0089], [0.1627, 0.0266, 0.0234, 0.0086, 0.0081, 0.0076, 0.0076, 0.0067], [0.1166, 0.0295, 0.023, 0.019, 0.0123, 0.0115, 0.0108, 0.0096], [0.0391, 0.0209, 0.0135, 0.0135, 0.0127, 0.0119, 0.0099, 0.0093], [0.1923, 0.0707, 0.0168, 0.0139, 0.0139, 0.0108, 0.0075, 0.007], [0.0431, 0.0231, 0.0204, 0.018, 0.0169, 0.0131, 0.0096, 0.009], [0.0896, 0.0841, 0.0226, 0.0226, 0.0226, 0.0176, 0.0176, 0.0166], [0.1185, 0.0361, 0.0319, 0.0319, 0.0264, 0.0206, 0.0206, 0.0206], [0.138, 0.1144, 0.0541, 0.0349, 0.0328, 0.0289, 0.0289, 0.0225], [0.1695, 0.0852, 0.0586, 0.055, 0.0486, 0.0355, 0.0229, 0.0216], [0.0873, 0.0873, 0.0724, 0.0639, 0.0388, 0.0364, 0.0284, 0.0266], [0.1675, 0.1305, 0.0897, 0.0616, 0.0616, 0.0374, 0.0291, 0.0274], [0.1629, 0.1438, 0.1269, 0.077, 0.0599, 0.0342, 0.0235, 0.0207], [0.3538, 0.1014, 0.0742, 0.0654, 0.0373, 0.0273, 0.0241, 0.0226], [0.2223, 0.119, 0.105, 0.105, 0.0283, 0.0266, 0.0249, 0.0234], [0.1787, 0.1018, 0.0957, 0.0657, 0.0375, 0.0375, 0.0331, 0.0274], [0.11, 0.0805, 0.0589, 0.0553, 0.0405, 0.0357, 0.0357, 0.0296], [0.1778, 0.0789, 0.0397, 0.035, 0.0273, 0.0273, 0.0241, 0.0187], [0.1299, 0.0576, 0.0509, 0.0396, 0.0308, 0.0256, 0.0226, 0.0199], [0.0446, 0.0446, 0.0446, 0.0288, 0.0254, 0.0198, 0.0198, 0.0175], [0.0995, 0.0878, 0.039, 0.0252, 0.0236, 0.0209, 0.0196, 0.0184], [0.0533, 0.0415, 0.0268, 0.0252, 0.0196, 0.0135, 0.0077, 0.0072], [0.131, 0.0659, 0.0482, 0.0189, 0.0147, 0.013, 0.0101, 0.0089], [0.1147, 0.0449, 0.0273, 0.0273, 0.0212, 0.0155, 0.0094, 0.0069], [0.2753, 0.0894, 0.0894, 0.0422, 0.0397, 0.029, 0.0256, 0.0212], [0.1921, 0.1405, 0.0624, 0.0486, 0.0456, 0.0314, 0.0215, 0.019], [0.1286, 0.078, 0.0571, 0.0571, 0.0346, 0.0253, 0.0253, 0.0144], [0.0991, 0.0681, 0.0468, 0.0365, 0.0342, 0.0322, 0.0302, 0.0284], [0.2004, 0.1768, 0.1561, 0.1377, 0.0947, 0.0507, 0.0327, 0.0155], [0.7704, 0.0763, 0.0558, 0.0193, 0.0086, 0.008, 0.0049, 0.0043], [0.9049, 0.051, 0.0129, 0.0054, 0.0035, 0.0035, 0.0025, 0.0017], [0.9984, 0.0005, 0.0004, 0.0002, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Kotlin": [158864, 92132, 81898, 35154, 60784, 76490, 79016, 78213, 107162, 172085, 157461, 114824, 87667, 91345, 182055, 150011, 157274, 139802, 148255, 217244, 231111, 220004, 231616, 223521, 192953, 157924, 102518, 126524, 113160, 39134, 75626, 56815, 71127, 109830, 109748, 65619, 29692, 36109, 33035, 26635, 35045, 41588, 11046, 14705, 14275, 30435, 18626, 23153, 19188, 34284, 26237, 9297, 10107, 9103, 20072, 13245, 9712, 36191, 8383, 8787, 6611, 40300, 53036]}}, {"pos": 550, "top": [[".", " \u2013", "\u2026..", "\u2026\u2026", ",", "\u2013", " [\u2026]", ";"], [" \u2013", "\u2026..", ":\\\"", "\u2013", "es", "\u2026\u2026", "(\\\"", " \u200b\u200b"], ["\u2026..", "\u2026\u2026", " \u2013", "\u2013", ".", "\u2026", "\u2026.", ".\u2013"], [" Shemale", " milfs", " **\u201e", " Geile", "``", "\\\":\\\"", " Nues", ":\\\""], ["@\"", "@\\", "@", "ed", ".@", ":@", " (@", "//@"], [" \u200b\u200b", "\u2026\u2026\u3002", "ed", "!\u00bb", "@\"", ":@", "\u2026..", "@\\"], ["\u2026\u2026", "  \n", "@\"", "\u2014\u2014", "......", "\u2026\u2026\u3002", "   \n", " ......"], ["@\"", ".\u00bb", "  \n", "!\u00bb", "   \n", ":\\\"", "@", " \u200b\u200b"], [".\u00bb", "@\"", "!\u00bb", "......", "  \n", " \u200b\u200b", "\u00bb", "\u2026\u2026"], ["@\\", "@\"", ".\u00bb", "@", "!\u00bb", "#####", "\\n", ",@"], ["@", "@\\", "@\"", ".\u00bb", ".@", "\\n", "&", ",@"], [" **\u00ab", " **\u300c", "egger", " **\u201e", "illion", ":\\\"", "raquo", "uage"], [" **\u00ab", ".\u00bb", "ible", "raquo", "ware", "igan", ".\u00ab", "illion"], [".\u00bb", "ware", "ers", "raries", "peng", ".\u00ab", "!\u00bb", "igan"], ["an", ".\u00bb", "ware", "ed", "peng", "illion", "ers", "!\u00bb"], ["an", "es", "ed", "ers", "illion", "kids", "-ish", "&m"], ["an", "es", "ed", "n", "ers", "os", "s", "ar"], ["es", "an", "ed", ":pk", "-ish", "os", "!\u00bb", "kids"], ["raries", "raquo", " Geile", "uage", " Gabrie", ":pk", "splash", "\u0639\u0637"], ["an", "uage", "ware", "\u0639\u0637", "ug", "much", "&m", "n"], ["<|endoftext|>", "an", "n", "d", "Though", "\n\n", "--", "&"], [" ``", "uage", "eenth", "\u00e3ng", "splash", "\u0169i", "\u4e8b\u534a\u529f\u500d", "\u6210\u529f\u540e\u5373\u53ef"], [" ``", "an", " \u00ad", "much", "n", "Though", " --", " ''"], ["an", "much", " \u00ad", " ``", "<|endoftext|>", "n", " much", " {{--<"], [" \n\n", "   \n\n", "  \n\n", " \r\n\r\n", "    \n\n", "      \n\n", "\n\n", "     \n\n"], ["   \n\n", " framerate", "uptime", " \r\n\r\n", "entimes", " \n\n", "  \n\n", " MEDIATEK"], [" ;;^", " speeds", " speed", " uptime", "uptime", " overtime", " hours", " milliseconds"], [" speed", " hours", " ,", " speeds", " even", " faster", " fast", " over"], [" speed", " speeds", " faster", " hours", " nightly", " milliseconds", " uptime", " fast"], [" speed", " \u2013", " speeds", " hours", " faster", " nightly", " overtime", " time"], [" speed", " \u2013", " time", " hours", " speeds", " faster", " night", " hits"], [" \u2013", " speed", " ", " time", " hours", " fast", " faster", " hit"], [" \u2013", " speed", "\u2013", " time", " hours", " faster", " ", " \u2014"], [" \u2013", "\u2013", " speed", " hours", " speeds", "\u2014if", " faster", " time"], [" speed", "/fast", "\u2014if", " \u2013", " hours", " speeds", " overtime", "-hour"], [" \u2013", "/fast", " speed", " milliseconds", " /", " \u2026", " speeds", " faster"], [" speed", " milliseconds", " speeds", "/fast", " fastest", "Speed", "speed", " /"], [" milliseconds", " time", " speed", " /", " hours", " \u200b\u200b", " fastest", " fast"], [" milliseconds", " time", " hours", " microseconds", " speed", " latency", "ptime", " timeframe"], [" milliseconds", " time", " microseconds", " latency", "Milliseconds", " speed", "milliseconds", "\u6beb\u79d2"], [" milliseconds", " time", " timeframe", " microseconds", "ptime", "\u7684\u65f6\u95f4", " latency", " deadlines"], [" milliseconds", " timeframe", " time", " microseconds", " deadlines", " TimeSpan", "\u65f6\u9650", "\u7684\u65f6\u95f4"], [" milliseconds", " timeframe", "\u65f6\u9650", " deadlines", " deadline", " microseconds", " TimeSpan", "\u6bcf\u79d2"], [" milliseconds", " microseconds", " timeframe", " TimeSpan", " latency", " time", " deadline", "Milliseconds"], [" milliseconds", " microseconds", " timeframe", " time", " limit", " timer", "\u65f6\u9650", " timers"], [" milliseconds", " limit", " microseconds", " timeframe", "\u65f6\u9650", " allotted", " time", " limited"], [" milliseconds", " timeframe", " limit", " microseconds", "ptime", "\u65f6\u9650", " timer", " allotted"], [" milliseconds", " timeframe", " limit", " allotted", " microseconds", " limits", "\u65f6\u9650", " each"], [" milliseconds", " timeframe", " microseconds", "\u6bcf\u79d2", "each", "\u6bcf", " EACH", " allotted"], [" milliseconds", " microseconds", "ptime", " timeframe", "\u6bcf\u79d2", " TimeSpan", "\u65f6\u9650", "milliseconds"], [" milliseconds", " microseconds", " TimeSpan", " timeframe", "ptime", "\u6bcf\u79d2", "milliseconds", "8"], [" milliseconds", " microseconds", " timeframe", "ptime", " TimeSpan", "milliseconds", " latency", " CPU"], [" milliseconds", " microseconds", " latency", " timeframe", "milliseconds", " TimeSpan", " seconds", " deltaTime"], [" milliseconds", " microseconds", " latency", "milliseconds", " seconds", " minutes", "Milliseconds", "seconds"], [" milliseconds", " microseconds", "milliseconds", "Milliseconds", "\u6beb\u79d2", " latency", " msec", " millis"], [" milliseconds", " microseconds", " per", "milliseconds", "Milliseconds", "/frame", "-frame", " msec"], [" milliseconds", " microseconds", "Milliseconds", "-frame", " msec", " ms", " latency", " per"], [" milliseconds", " ms", "ms", "-frame", " microseconds", "/frame", " msec", " frames"], [" ms", "ms", ".ms", " milliseconds", "/ms", "(ms", "-ms", "-frame"], [" ms", "ms", " milliseconds", "/ms", ".ms", "(ms", "-ms", "_ms"], [" ms", "ms", " milliseconds", "/ms", ".ms", "-ms", "(ms", " msec"], ["ms", " ms", " milliseconds", "/ms", ".ms", "(ms", "ns", " MS"], ["ms", ".", " ms", "3", "/ms", "MS", "ns", ".ms"]], "p": [[0.6896, 0.1198, 0.05, 0.0441, 0.0389, 0.0134, 0.0092, 0.0028], [0.2648, 0.0521, 0.0297, 0.0231, 0.0169, 0.0169, 0.0149, 0.014], [0.3558, 0.2158, 0.1483, 0.1019, 0.0794, 0.013, 0.0095, 0.0089], [0.0303, 0.0196, 0.0184, 0.0173, 0.0112, 0.0068, 0.0056, 0.005], [0.1076, 0.1011, 0.0838, 0.0613, 0.0576, 0.0396, 0.029, 0.0256], [0.3166, 0.0179, 0.0168, 0.0139, 0.0131, 0.0108, 0.0108, 0.0102], [0.1328, 0.1101, 0.0589, 0.0489, 0.0296, 0.0262, 0.0246, 0.0246], [0.1051, 0.0466, 0.0387, 0.0321, 0.0266, 0.025, 0.0235, 0.022], [0.1274, 0.0773, 0.0602, 0.0414, 0.0365, 0.0284, 0.0267, 0.0251], [0.0619, 0.0376, 0.0311, 0.0201, 0.0157, 0.0147, 0.0138, 0.0122], [0.2057, 0.1172, 0.1034, 0.0711, 0.0627, 0.0358, 0.0191, 0.018], [0.0331, 0.0167, 0.0065, 0.0061, 0.0048, 0.0048, 0.0045, 0.0042], [0.0105, 0.0087, 0.0077, 0.0064, 0.0064, 0.0056, 0.0053, 0.0053], [0.0148, 0.0102, 0.0066, 0.0066, 0.0051, 0.0048, 0.0048, 0.0037], [0.0175, 0.0068, 0.0057, 0.0037, 0.0034, 0.0034, 0.0034, 0.003], [0.0205, 0.0103, 0.0075, 0.0067, 0.0055, 0.0046, 0.0043, 0.004], [0.0291, 0.0257, 0.0156, 0.0147, 0.0089, 0.0084, 0.0065, 0.0065], [0.0069, 0.0061, 0.0035, 0.0033, 0.0033, 0.0031, 0.0029, 0.0024], [0.0051, 0.0048, 0.0045, 0.0042, 0.0029, 0.0026, 0.0024, 0.0023], [0.004, 0.0027, 0.0021, 0.0019, 0.0019, 0.0018, 0.0018, 0.0016], [0.2726, 0.0254, 0.0082, 0.0082, 0.0064, 0.0044, 0.0037, 0.0034], [0.0069, 0.0033, 0.0027, 0.0014, 0.0014, 0.0014, 0.0014, 0.0013], [0.0126, 0.0087, 0.0056, 0.0053, 0.003, 0.0026, 0.0021, 0.0018], [0.011, 0.0059, 0.0046, 0.0043, 0.0026, 0.0025, 0.0025, 0.0019], [0.2824, 0.1512, 0.0976, 0.028, 0.0124, 0.011, 0.0091, 0.0085], [0.0106, 0.0047, 0.0044, 0.0032, 0.0028, 0.0027, 0.0025, 0.0022], [0.0102, 0.0084, 0.0084, 0.0058, 0.0042, 0.0029, 0.0026, 0.0024], [0.0761, 0.017, 0.0124, 0.0124, 0.0117, 0.0097, 0.0091, 0.0091], [0.0715, 0.0247, 0.0097, 0.0097, 0.0075, 0.0046, 0.0043, 0.004], [0.0953, 0.0213, 0.02, 0.0146, 0.0121, 0.0089, 0.0089, 0.0089], [0.1056, 0.0388, 0.0236, 0.0183, 0.0162, 0.0134, 0.0087, 0.0067], [0.0913, 0.0711, 0.0489, 0.0296, 0.018, 0.0116, 0.0116, 0.0102], [0.4202, 0.0472, 0.0443, 0.0304, 0.0185, 0.0144, 0.0144, 0.0105], [0.3534, 0.0839, 0.0256, 0.0137, 0.0129, 0.0114, 0.0107, 0.0107], [0.0214, 0.0214, 0.0201, 0.0177, 0.0147, 0.0122, 0.0089, 0.0089], [0.0532, 0.05, 0.0441, 0.0184, 0.0173, 0.0162, 0.0143, 0.0143], [0.1897, 0.0743, 0.031, 0.0273, 0.0257, 0.0241, 0.0241, 0.0213], [0.0675, 0.0634, 0.0559, 0.0436, 0.0436, 0.0319, 0.0125, 0.0117], [0.3328, 0.1896, 0.0543, 0.0373, 0.0241, 0.0166, 0.0146, 0.0089], [0.4401, 0.0526, 0.0494, 0.0233, 0.016, 0.0133, 0.0117, 0.011], [0.2726, 0.1136, 0.0418, 0.0418, 0.0326, 0.0287, 0.0254, 0.0238], [0.2881, 0.0935, 0.0729, 0.0567, 0.039, 0.0304, 0.0285, 0.0252], [0.2123, 0.1287, 0.0885, 0.0781, 0.0608, 0.0445, 0.0254, 0.0197], [0.5231, 0.0708, 0.0379, 0.0168, 0.0158, 0.0148, 0.0116, 0.009], [0.456, 0.0744, 0.0374, 0.0274, 0.0213, 0.0188, 0.0166, 0.0122], [0.3626, 0.0522, 0.0461, 0.0298, 0.0192, 0.0181, 0.017, 0.0141], [0.2345, 0.0672, 0.0593, 0.0434, 0.0218, 0.0218, 0.017, 0.017], [0.1515, 0.0762, 0.0557, 0.0338, 0.0318, 0.016, 0.0117, 0.0097], [0.1519, 0.0525, 0.0435, 0.0281, 0.0219, 0.0206, 0.0193, 0.0193], [0.1582, 0.0426, 0.0376, 0.0312, 0.0228, 0.0228, 0.013, 0.0101], [0.151, 0.086, 0.0217, 0.0217, 0.018, 0.0159, 0.0132, 0.0103], [0.3008, 0.2201, 0.0263, 0.017, 0.0159, 0.0117, 0.0071, 0.0055], [0.5978, 0.1941, 0.0337, 0.0159, 0.0097, 0.0085, 0.0075, 0.0052], [0.6905, 0.136, 0.0126, 0.0093, 0.0072, 0.0053, 0.005, 0.005], [0.7281, 0.2086, 0.0194, 0.0125, 0.0036, 0.0026, 0.0019, 0.0011], [0.5992, 0.2204, 0.017, 0.015, 0.0103, 0.0075, 0.0067, 0.0063], [0.5244, 0.1929, 0.0315, 0.023, 0.0123, 0.0102, 0.0085, 0.007], [0.1729, 0.1049, 0.0926, 0.0817, 0.0677, 0.034, 0.0194, 0.0194], [0.8364, 0.1453, 0.005, 0.0039, 0.0027, 0.0018, 0.0008, 0.0008], [0.7916, 0.2001, 0.0022, 0.0015, 0.0013, 0.0008, 0.0006, 0.0004], [0.6993, 0.2915, 0.0029, 0.0022, 0.0012, 0.0011, 0.0007, 0.0002], [0.8897, 0.1063, 0.0009, 0.0005, 0.0004, 0.0002, 0.0002, 0.0002], [0.9793, 0.0179, 0.0024, 0.0002, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Kotlin": [161671, 133637, 85612, 19543, 41303, 66370, 52820, 118046, 113212, 168437, 148740, 71039, 71644, 70247, 183106, 143507, 148415, 162435, 122357, 203158, 237632, 224228, 236027, 236734, 224212, 126837, 64112, 104489, 99505, 104306, 87253, 95406, 52027, 12663, 11772, 11360, 5587, 4313, 2890, 2283, 4831, 8608, 4074, 2556, 5506, 9057, 6681, 11387, 14306, 14367, 8262, 8618, 4626, 2245, 5557, 4427, 5168, 27258, 14470, 9861, 22709, 34506, 29892]}}, {"pos": 551, "top": [[".", " \u2013", ",", "\u2013", ";", "\u00a0\u00a0", "\u00a0", " \u200b\u200b"], [" \u2013", "\u2013", ".", " \u200b\u200b", ";", "\u2013and", ",", ":."], [".", "\u2013", ",", "\u2026..", "\u2026.", " \u2013", ";", " \u200b\u200b"], [" milfs", " Blowjob", " Shemale", " Guta", " cumshot", "-------------</", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " pornstar"], [" \u201c.", " \u200b\u200b", " (@", " HK", " \u201c", "(@", " Guta", " Krem"], [" \u200b\u200b", " \u201c.", "!\u201d.", "!\u201c", " Guta", " HK", "\u2026..", "."], [" \u200b\u200b", ".\u201d", " \u201c.", ".\u201c", " \n", "!\u201d", "\u201c.", "\u201d."], [" \u200b\u200b", " \t\n", "   \n", "!\u201d.", "!.", "!\u201c", " \n", "!:"], [" \u200b\u200b", "!\u201d.", "!\u201d", "\u201c.", "!.", ".\u201d", "!\u201c", " \n"], ["\u6709\u70b9\u513f", "\u00adt", "\u00a0", "!:", " \t\n", " \u00ad", "\u70b9\u513f", ".pretty"], [" @", "\u00a0", ".", "@", ".@", " \u200b\u200b", "&nbsp", "(@"], ["-esque", "-ish", "haps", "Sharper", " skinny", " veggies", "\u54e5\u534e", " carbs"], ["-esque", "-ish", " veggies", "htar", " flavorful", " skinny", "avior", " crunchy"], ["-esque", "-ish", " veggies", " vibe", "Sharper", " pricey", " skinny", " vibes"], ["-esque", "-ish", " smack", " effortlessly", " savvy", " wildly", " sorta", " pricey"], ["-esque", " wildly", " touted", " savvy", " standout", " effortlessly", " hefty", "-ish"], ["-esque", " wildly", " standout", " savvy", "-ish", " hefty", " effortlessly", "Though"], ["-esque", "-ish", "-lite", "Though", " savvy", "wow", "-tech", " hefty"], ["-esque", "Sharper", "avg", "ksom", "wow", "-ish", " tini", " hefty"], ["<|endoftext|>", "Though", "&", "though", "much", "-&", "\u00a0", " &"], ["<|endoftext|>", "8", "Though", "7", " \n\n", "6", "2", "4"], ["ksom", "\u4e5f\u5e76\u4e0d", "\uc728\uc744", "\uc728", "\u6bd4\u8d77\u6765", "haps", "-esque", "uptime"], ["8", "<|endoftext|>", "7", "Though", "9", "6", "4", "5"], ["<|endoftext|>", "8", "7", "Though", "9", "6", " though", "much"], [" \n\n", "  \n\n", "\n\n", "   \n\n", "8", "7", " \r\n\r\n", "Though"], [" \n\n", "  \n\n", "   \n\n", " \r\n\r\n", "\u9891\u6b21", "uptime", "\t\n\n", "ksom"], ["uptime", "\u6bcf\u5206\u949f", "\u6bcf\u5c0f\u65f6", "ksom", "\uc728", " speed", "\u9891\u6b21", "\u6bcf\u79d2"], [" \n\n", " speed", " hours", " ,", " time", " eight", " seven", " over"], [" speed", " hours", "\u6bcf\u5206\u949f", " speeds", " roughly", "\u6bcf\u5c0f\u65f6", " eight", "\u6bcf\u79d2"], [" speed", " hours", " speeds", " average", " rate", " overtime", " pace", " time"], [" \n", " speed", " .", " time", " \u200b\u200b", " hours", " average", " power"], [" speed", " time", " .", " hours", "8", " power", " \u2013", " ..."], [" \u2013", " .", " speed", " time", " \u2014", "\u2013", "\u2011", " hours"], [" speed", " \u2013", " fastest", " speeds", " faster", " \u200b\u200b", " time", " hours"], ["\u6bcf\u5206\u949f", "\u6bcf\u79d2", " speed", " fastest", "\u2011", " speeds", " avg", "\u6bcf\u5c0f\u65f6"], [" \u200b\u200b", "\u6bcf\u79d2", "\u6bcf\u5206\u949f", " fastest", "/fast", " speed", " \u200b", " faster"], [" \u200b\u200b", " speed", "\u6bcf\u79d2", " fastest", " milliseconds", " latency", "\u6bcf\u5206\u949f", " speeds"], [" \u200b\u200b", "\u200b\u200b", "\u6bcf\u79d2", "\u200b", " \u200b", " speed", " milliseconds", " latency"], [" \u200b\u200b", " milliseconds", " latency", " fastest", " speed", "\u200b\u200b", "\u6bcf\u79d2", " microseconds"], [" milliseconds", " \u200b\u200b", "milliseconds", " latency", " fastest", "\u200b\u200b", " microseconds", " speed"], [" milliseconds", " latency", " delay", "ptime", "\u6bcf\u79d2", "milliseconds", " microseconds", " fastest"], [" milliseconds", " latency", "\u6bcf\u79d2", "milliseconds", "Milliseconds", " microseconds", "ptime", "\u5468\u671f\u7684"], [" milliseconds", "\u6bcf\u79d2", " latency", "Milliseconds", "milliseconds", " microseconds", "\u6bcf\u5206\u949f", "ptime"], [" milliseconds", "\u6bcf\u79d2", "\u6beb\u79d2", " microseconds", " latency", "Milliseconds", "milliseconds", "\u6bcf\u5206\u949f"], [" milliseconds", "\u6bcf\u79d2", " microseconds", "\u6bcf\u5206\u949f", "\u6beb\u79d2", "Milliseconds", " latency", "milliseconds"], [" milliseconds", "\u6bcf\u79d2", "\u6beb\u79d2", " microseconds", "\u6bcf\u5206\u949f", "milliseconds", "Milliseconds", " latency"], [" milliseconds", "\u6bcf\u79d2", "\u6bcf", " microseconds", "milliseconds", "\u6bcf\u5206\u949f", "\u6beb\u79d2", "\u6bcf\u4e2a"], ["\u6bcf", "8", " milliseconds", "\u6bcf\u79d2", "7", "Each", "\u6bcf\u4e2a", "9"], ["\u6bcf", "\u6bcf\u79d2", " milliseconds", " microseconds", "\u6bcf\u5206\u949f", "\u6beb\u79d2", "\u6bcf\u4e2a", " latency"], [" milliseconds", "\u6bcf\u79d2", " microseconds", "\u6bcf", "\u6beb\u79d2", "\u6bcf\u5206\u949f", "milliseconds", "conds"], [" milliseconds", " microseconds", "milliseconds", "\u6beb\u79d2", "conds", "ptime", " latency", "Seconds"], [" milliseconds", " microseconds", "milliseconds", "Milliseconds", " framerate", "ptime", "\u6beb\u79d2", " latency"], [" milliseconds", " microseconds", "Milliseconds", "milliseconds", " latency", "\u5e27", " framerate", " deltaTime"], [" milliseconds", " microseconds", " latency", "milliseconds", "Milliseconds", "\u6beb\u79d2", " msec", " deltaTime"], [" milliseconds", " microseconds", "milliseconds", "\u6beb\u79d2", "Milliseconds", "\u5e27", " millis", " latency"], [" milliseconds", "\u5e27", " microseconds", "milliseconds", "-frame", " msec", "frame", "Milliseconds"], [" milliseconds", "Milliseconds", "-frame", " msec", " microseconds", "\u5e27", " latency", "frame"], ["3", "ms", "-frame", " ms", " milliseconds", "frame", " latency", "Milliseconds"], [" ms", "ms", ".ms", "-ms", " milliseconds", "/ms", " msec", "(ms"], [" ms", "ms", " milliseconds", "-ms", "/ms", ".ms", "(ms", "3"], [" ms", "ms", "3", " milliseconds", "/ms", "(ms", "-ms", ".ms"], ["3", " ms", "ms", " milliseconds", "/ms", "-ms", "(ms", " MS"], ["3", "4", "2", "1", "6", "5", "7", "8"]], "p": [[0.8495, 0.0697, 0.0479, 0.0107, 0.0054, 0.0033, 0.0024, 0.0017], [0.1307, 0.058, 0.0069, 0.0057, 0.0031, 0.0031, 0.0024, 0.0022], [0.37, 0.3266, 0.1361, 0.0567, 0.0501, 0.0143, 0.0064, 0.0036], [0.0272, 0.0165, 0.0088, 0.005, 0.0044, 0.0042, 0.0032, 0.0032], [0.0074, 0.0065, 0.0037, 0.0029, 0.0023, 0.0018, 0.0015, 0.0015], [0.2378, 0.0143, 0.0025, 0.0021, 0.0015, 0.0012, 0.0012, 0.0011], [0.2211, 0.1112, 0.0493, 0.0493, 0.0361, 0.0339, 0.0248, 0.0219], [0.1279, 0.0153, 0.0135, 0.0127, 0.0119, 0.0119, 0.0099, 0.0064], [0.315, 0.1023, 0.0703, 0.0376, 0.0376, 0.0332, 0.0259, 0.0214], [0.0048, 0.0043, 0.0035, 0.0029, 0.0028, 0.0026, 0.0024, 0.0019], [0.1607, 0.086, 0.0808, 0.0629, 0.018, 0.0169, 0.0169, 0.0149], [0.0062, 0.0046, 0.0035, 0.0033, 0.0033, 0.0024, 0.0024, 0.0023], [0.0199, 0.0155, 0.0061, 0.0035, 0.0029, 0.0029, 0.0025, 0.0024], [0.0748, 0.0376, 0.004, 0.0033, 0.0027, 0.0023, 0.0021, 0.0017], [0.0306, 0.0082, 0.005, 0.0044, 0.0037, 0.0028, 0.0027, 0.0027], [0.0556, 0.0075, 0.0055, 0.0055, 0.0055, 0.0043, 0.0043, 0.004], [0.0654, 0.01, 0.0078, 0.0073, 0.0069, 0.0069, 0.0061, 0.0057], [0.0765, 0.0142, 0.0041, 0.0036, 0.0032, 0.0028, 0.0028, 0.0025], [0.0119, 0.005, 0.0025, 0.0022, 0.0018, 0.0016, 0.0012, 0.0012], [0.1001, 0.0185, 0.0082, 0.0041, 0.0039, 0.0036, 0.0034, 0.003], [0.9948, 0.0003, 0.0002, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001], [0.0031, 0.0016, 0.0016, 0.0015, 0.0012, 0.0011, 0.0011, 0.001], [0.0134, 0.0111, 0.0104, 0.0092, 0.0043, 0.0032, 0.0017, 0.0017], [0.0105, 0.0087, 0.0082, 0.0068, 0.0032, 0.0032, 0.0021, 0.0019], [0.5452, 0.0349, 0.0289, 0.024, 0.0106, 0.0106, 0.0088, 0.0083], [0.0523, 0.0091, 0.0085, 0.0055, 0.0038, 0.0031, 0.0017, 0.0016], [0.0065, 0.0065, 0.0037, 0.0035, 0.0033, 0.0029, 0.0026, 0.0026], [0.0295, 0.023, 0.0131, 0.0084, 0.0058, 0.0055, 0.0051, 0.0048], [0.0123, 0.0115, 0.0054, 0.0045, 0.0045, 0.0035, 0.0027, 0.0026], [0.0468, 0.0221, 0.0152, 0.0152, 0.0105, 0.0087, 0.0087, 0.0087], [0.1966, 0.0563, 0.0342, 0.0183, 0.0161, 0.0152, 0.0118, 0.0111], [0.0442, 0.0323, 0.0252, 0.0196, 0.0173, 0.0173, 0.0163, 0.0153], [0.2856, 0.0387, 0.0363, 0.032, 0.0207, 0.0207, 0.0111, 0.0104], [0.0599, 0.0438, 0.0301, 0.0266, 0.025, 0.0234, 0.0194, 0.0151], [0.0389, 0.0366, 0.0251, 0.0222, 0.0162, 0.0162, 0.0143, 0.0134], [0.1215, 0.1073, 0.0611, 0.0447, 0.0307, 0.0307, 0.0255, 0.0211], [0.1431, 0.1344, 0.1114, 0.0526, 0.0526, 0.034, 0.0319, 0.03], [0.7446, 0.0539, 0.0186, 0.0186, 0.0155, 0.0145, 0.0128, 0.01], [0.4359, 0.1415, 0.0358, 0.0336, 0.0316, 0.0246, 0.0149, 0.0149], [0.3777, 0.1305, 0.048, 0.0424, 0.0351, 0.0227, 0.0227, 0.02], [0.3806, 0.0621, 0.0455, 0.0333, 0.0312, 0.0312, 0.0312, 0.0167], [0.4139, 0.0868, 0.0676, 0.0436, 0.041, 0.034, 0.0282, 0.0117], [0.3583, 0.1403, 0.0623, 0.0313, 0.0276, 0.026, 0.019, 0.0178], [0.5816, 0.0838, 0.029, 0.024, 0.024, 0.0187, 0.0187, 0.0155], [0.5471, 0.1383, 0.0396, 0.035, 0.0226, 0.0187, 0.0165, 0.0129], [0.4319, 0.1026, 0.0549, 0.0402, 0.0402, 0.0244, 0.0202, 0.019], [0.2458, 0.0704, 0.0548, 0.0401, 0.0202, 0.0178, 0.013, 0.0115], [0.1328, 0.0627, 0.052, 0.0431, 0.0246, 0.0217, 0.0169, 0.0159], [0.1335, 0.0592, 0.0556, 0.0205, 0.0159, 0.0159, 0.0159, 0.0097], [0.0485, 0.0313, 0.0244, 0.0179, 0.0148, 0.0131, 0.0131, 0.0115], [0.0516, 0.0313, 0.013, 0.0074, 0.007, 0.0051, 0.0051, 0.0051], [0.1371, 0.121, 0.0224, 0.0154, 0.0154, 0.005, 0.0047, 0.0044], [0.3523, 0.138, 0.0328, 0.0308, 0.0308, 0.0225, 0.0165, 0.0155], [0.287, 0.0602, 0.0322, 0.0236, 0.0236, 0.0162, 0.0134, 0.0105], [0.5704, 0.1273, 0.0601, 0.0413, 0.0343, 0.0118, 0.0104, 0.0098], [0.223, 0.06, 0.0467, 0.0413, 0.0266, 0.0221, 0.0207, 0.0162], [0.166, 0.0506, 0.0506, 0.037, 0.0348, 0.0239, 0.0186, 0.0175], [0.0787, 0.0508, 0.0255, 0.0225, 0.0176, 0.0121, 0.0088, 0.0083], [0.4759, 0.42, 0.0135, 0.0135, 0.0135, 0.0064, 0.0053, 0.0044], [0.7029, 0.2282, 0.0146, 0.0083, 0.0073, 0.005, 0.0044, 0.0039], [0.7344, 0.1276, 0.0994, 0.0112, 0.0092, 0.0049, 0.0041, 0.0016], [0.9769, 0.0139, 0.0075, 0.0003, 0.0002, 0.0001, 0.0001, 0.0001], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Kotlin": [229934, 176444, 118795, 13391, 33731, 74861, 113516, 159867, 189920, 192749, 208093, 144717, 166332, 168833, 233681, 180701, 212929, 192805, 210906, 241388, 245081, 234175, 239293, 244314, 241466, 207025, 136700, 177075, 162785, 121572, 131505, 131655, 153345, 50462, 55192, 53615, 36486, 32355, 11081, 7571, 13393, 14480, 3922, 5710, 11404, 19481, 13849, 14687, 8804, 11694, 14394, 4906, 2618, 2364, 3415, 8735, 9938, 31778, 13409, 2111, 5468, 12014, 18498]}}, {"pos": 552, "top": [[" \u2013", ".", "\u2013", "s", "\u2026..", ".\u2013", ",", "y"], [" \u2013", "  \n", "\u2013", "   \n", " \u2013**", "\u2013and", " *\u2013", "s"], [" \u2013", "\u2013", ".\u2013", ".", "\u2026..", "\u2013and", "\u2026.", "**\u2013"], [" milfs", " Blowjob", " Shemale", " cumshot", " **:**", " **.**", " **:", " **\u25cb"], [" ***", "  \n", " **.", " \"***", "   \n", " **.**", "***", " (@"], [".", " ***", " **", " **.", "   \n", " **,", "-**", "  \n"], ["  \n", ".", " ***", "\u3002", "\uff08", "***", " ____", "   \n"], [".", " ***", "  \n", "\\n", " ____", "***", "s", "**"], [".", "  \n", "s", "@", "\\n", ",", "   \n", "!"], [".", ",", "s", "\\n", "rd", "\u2013", ".\\", "  \n"], [".", "s", ",", "\\n", "@", ".\\", "-", "  \n"], [" ***", " ____", " **", "rd", "s", " **#", " --", " ___"], ["s", "rd", " --", "ward", "istrator", "--", " ***", "illion"], ["rd", "s", " --", "ward", "ra", "--", "orama", "illion"], ["s", " --", "--", "rd", "ward", " goof", "n", "ra"], ["s", " --", " goofy", " ballpark", " atop", "rd", "siz", " backstory"], ["s", "rd", "n", "o", "es", " goofy", " --", "ra"], ["s", "rd", "o", "n", "es", " --", "ra", "os"], [" --", "s", "rd", "n", "--", "o", "es", " &"], [" --", "--", "s", "n", "o", " &", "---", "m"], ["<|endoftext|>", " --", "--", "s", "n", "o", "2", "d"], [" --", "s", " ---", "--", "illion", " atop", "rd", " \"--"], [" --", "--", " ---", "n", "---", " #", "7", "s"], [" --", "--", "7", "n", "8", "s", " ---", "---"], ["\n\n", " \n\n", " --", "  \n\n", "--", "7", "2", "3"], [" ___", " --", " \n\n", "\n\n", " ____", " ---", " __", "  \n\n"], [" --", " hours", " atop", " ___", " speed", " clock", "s", " jack"], [" --", " ,", " \n\n", "--", "\n\n", " &", " \u2014", " ;"], [" --", " hours", " ,", " seven", " six", " \u2014", " speed", " eight"], [" --", " hours", " speed", " seven", " six", " rate", " average", " ,"], [" .", " ,", " \n", " speed", " hours", "\n", " seven", " six"], [" .", " seven", " \u2013", " six", " hours", " ,", " five", " time"], [" .", " \u2013", " speed", " hours", ".", " time", " six", " ,"], [" \u2013", "\u2013", " speed", " hours", " average", " time", " days", " \u2014"], [" avg", " average", " speed", " hours", " fastest", " peak", "/fast", " speeds"], [" speed", " fastest", " \u2013", " hours", " faster", "/fast", "\u6bcf\u79d2", " speeds"], [" speed", " fastest", " hours", " speeds", " faster", "\u6bcf\u79d2", " milliseconds", " fast"], [" speed", " fastest", " hours", " time", " fast", " faster", "\u6bcf\u79d2", " milliseconds"], [" speed", " fastest", " milliseconds", " time", "\u6bcf\u79d2", " hours", " faster", " seconds"], [" milliseconds", " speed", " fastest", " time", "\u6bcf\u79d2", " faster", " speeds", " delay"], [" time", " milliseconds", " speed", " fastest", "\u6bcf\u79d2", " delay", " timeframe", " latency"], [" milliseconds", " time", "\u6bcf\u79d2", " timeframe", " latency", " microseconds", " seconds", " fastest"], [" milliseconds", "\u6bcf\u79d2", " latency", " timeframe", " microseconds", " time", " avg", "\u6bcf\u5206\u949f"], [" milliseconds", "\u6bcf\u79d2", " microseconds", " seconds", " time", " minutes", " timeframe", " avg"], [" milliseconds", " minutes", " microseconds", "\u6bcf\u79d2", " time", " seconds", " avg", " each"], [" milliseconds", " minutes", "\u6bcf\u79d2", " seconds", " time", " microseconds", " each", "\u6bcf\u5206\u949f"], [" milliseconds", " each", " EACH", "\u6bcf\u79d2", " avg", " microseconds", " timeframe", "\u6bcf\u5206\u949f"], [" each", " EACH", " milliseconds", " timeframe", "\u6bcf\u79d2", "\u6bcf", "each", " per"], [" EACH", "\u6bcf\u79d2", " milliseconds", " each", "\u6bcf", " timeframe", "\u6bcf\u6761", "each"], [" milliseconds", "\u6bcf\u79d2", " timeframe", " EACH", " microseconds", "\u6bcf\u6761", "\u6bcf\u5206\u949f", "\u6bcf"], [" milliseconds", " timeframe", " microseconds", "\u6bcf\u79d2", " latency", " TimeSpan", " EACH", " downtime"], [" milliseconds", " timeframe", " microseconds", " latency", " seconds", " TimeSpan", "\u6bcf\u79d2", "CONDS"], [" milliseconds", " microseconds", " latency", " timeframe", " seconds", " minutes", " TimeSpan", "Seconds"], [" milliseconds", " microseconds", " latency", " seconds", " timeframe", " minutes", "Milliseconds", " CPU"], [" milliseconds", " microseconds", " latency", "Milliseconds", "\u6beb\u79d2", "milliseconds", " timeframe", " milli"], [" per", " milliseconds", " microseconds", "/frame", " frames", " latency", " timeframe", " ticks"], [" per", " milliseconds", " microseconds", "/frame", " frames", " latency", "frames", " FPS"], [" milliseconds", " per", "/frame", " frames", " microseconds", "frames", " FPS", " ms"], [" ms", "ms", " frames", " milliseconds", "/frame", "/ms", "frames", " frame"], [" ms", "ms", " milliseconds", "/ms", " frames", "(ms", ".ms", "_ms"], [" ms", "ms", " milliseconds", "/ms", "(ms", ".ms", " MS", "_ms"], ["ms", " ms", " milliseconds", "3", "/ms", "(ms", ".ms", " MS"], ["3", "ms", " ms", "4", "2", "1", "5", "7"]], "p": [[0.4794, 0.3734, 0.0944, 0.006, 0.0044, 0.0041, 0.0041, 0.0034], [0.458, 0.0796, 0.0332, 0.0157, 0.0108, 0.0084, 0.007, 0.0065], [0.3379, 0.2982, 0.1596, 0.0968, 0.0295, 0.0191, 0.0123, 0.0116], [0.0302, 0.025, 0.0126, 0.0118, 0.0118, 0.0092, 0.0076, 0.0072], [0.3946, 0.0185, 0.0173, 0.0153, 0.0144, 0.0135, 0.0135, 0.0119], [0.104, 0.0761, 0.0359, 0.0298, 0.0298, 0.0232, 0.0181, 0.016], [0.2937, 0.1782, 0.0954, 0.0257, 0.02, 0.0166, 0.0156, 0.0137], [0.2871, 0.1356, 0.0992, 0.0267, 0.0221, 0.0195, 0.0126, 0.0118], [0.8613, 0.026, 0.0045, 0.0045, 0.0035, 0.0033, 0.0031, 0.0031], [0.4963, 0.1422, 0.0631, 0.0407, 0.0383, 0.0205, 0.0192, 0.0132], [0.8699, 0.0141, 0.0132, 0.0117, 0.0117, 0.0059, 0.0052, 0.0043], [0.143, 0.0634, 0.0361, 0.0264, 0.0193, 0.0171, 0.016, 0.0151], [0.1107, 0.0672, 0.015, 0.008, 0.0055, 0.0049, 0.0046, 0.0031], [0.1505, 0.1505, 0.007, 0.0066, 0.0058, 0.0052, 0.004, 0.0028], [0.2426, 0.0838, 0.0478, 0.0372, 0.0065, 0.005, 0.0039, 0.0035], [0.0785, 0.0113, 0.0088, 0.0053, 0.0047, 0.0037, 0.003, 0.0029], [0.59, 0.0229, 0.0084, 0.004, 0.0031, 0.0027, 0.0027, 0.0018], [0.4088, 0.0246, 0.0231, 0.014, 0.0075, 0.0055, 0.0043, 0.0028], [0.1593, 0.1028, 0.0314, 0.0148, 0.0102, 0.007, 0.0062, 0.0054], [0.7034, 0.1222, 0.0422, 0.0165, 0.0089, 0.0042, 0.0037, 0.0037], [0.4429, 0.1846, 0.1192, 0.0364, 0.025, 0.0118, 0.0092, 0.0086], [0.8565, 0.0058, 0.004, 0.0015, 0.001, 0.0009, 0.0009, 0.0008], [0.9279, 0.0205, 0.0038, 0.0038, 0.0024, 0.0018, 0.0013, 0.0012], [0.8598, 0.0244, 0.0035, 0.0033, 0.0027, 0.0027, 0.0026, 0.0026], [0.5537, 0.1586, 0.0661, 0.0293, 0.0259, 0.0148, 0.0115, 0.0115], [0.292, 0.2743, 0.0575, 0.0289, 0.0199, 0.0199, 0.0145, 0.0121], [0.1183, 0.015, 0.0081, 0.0071, 0.0063, 0.0059, 0.0049, 0.0043], [0.5901, 0.0427, 0.013, 0.0122, 0.0095, 0.0095, 0.0066, 0.0054], [0.3353, 0.0228, 0.0167, 0.0147, 0.0115, 0.0095, 0.0079, 0.007], [0.0458, 0.043, 0.0261, 0.0216, 0.0179, 0.0168, 0.0158, 0.0149], [0.3731, 0.0347, 0.0347, 0.0174, 0.0174, 0.0145, 0.0136, 0.0113], [0.1486, 0.0312, 0.0293, 0.0275, 0.0228, 0.0228, 0.0201, 0.0167], [0.2885, 0.0997, 0.0237, 0.0209, 0.0184, 0.0173, 0.0135, 0.0135], [0.1479, 0.0656, 0.0374, 0.033, 0.0146, 0.0129, 0.0101, 0.0101], [0.0442, 0.0304, 0.0285, 0.0236, 0.0173, 0.0153, 0.0112, 0.0099], [0.0819, 0.0497, 0.0301, 0.0266, 0.0207, 0.0183, 0.0172, 0.0161], [0.3294, 0.0944, 0.037, 0.0347, 0.0326, 0.027, 0.0239, 0.0186], [0.2019, 0.0896, 0.045, 0.033, 0.0291, 0.0273, 0.0176, 0.0176], [0.156, 0.1141, 0.0889, 0.0611, 0.0476, 0.0348, 0.0255, 0.0198], [0.2375, 0.185, 0.1441, 0.0564, 0.0388, 0.0266, 0.0235, 0.0208], [0.2238, 0.1975, 0.0933, 0.0726, 0.0499, 0.0441, 0.0173, 0.0162], [0.4362, 0.125, 0.0555, 0.0297, 0.0217, 0.0204, 0.018, 0.0169], [0.4066, 0.132, 0.0486, 0.0429, 0.0355, 0.026, 0.0179, 0.0148], [0.6168, 0.0506, 0.0447, 0.0348, 0.0239, 0.0239, 0.0186, 0.0128], [0.3722, 0.0536, 0.0473, 0.0473, 0.0445, 0.0418, 0.0325, 0.0224], [0.2568, 0.0475, 0.0394, 0.0326, 0.0326, 0.0326, 0.0288, 0.0271], [0.1776, 0.1012, 0.1012, 0.0478, 0.0309, 0.0272, 0.024, 0.0187], [0.1629, 0.1269, 0.0679, 0.0497, 0.0412, 0.0387, 0.0364, 0.0207], [0.0951, 0.0839, 0.0696, 0.0542, 0.0422, 0.0372, 0.0309, 0.0309], [0.2005, 0.1142, 0.0693, 0.042, 0.0271, 0.0165, 0.0155, 0.0128], [0.2004, 0.1466, 0.0785, 0.0447, 0.0348, 0.0106, 0.0078, 0.0078], [0.3161, 0.1917, 0.1318, 0.0333, 0.0115, 0.0102, 0.0079, 0.0079], [0.5989, 0.1336, 0.0715, 0.0715, 0.0181, 0.0117, 0.0075, 0.0038], [0.7133, 0.0965, 0.0586, 0.0202, 0.0123, 0.0051, 0.0048, 0.0027], [0.8693, 0.0809, 0.0103, 0.0075, 0.0036, 0.0033, 0.0031, 0.0016], [0.4409, 0.3891, 0.0868, 0.0171, 0.0097, 0.0076, 0.0049, 0.0032], [0.3547, 0.313, 0.1152, 0.0374, 0.033, 0.0138, 0.0121, 0.0089], [0.3535, 0.1892, 0.1013, 0.0577, 0.0542, 0.0241, 0.0212, 0.0146], [0.8403, 0.1004, 0.0288, 0.012, 0.0034, 0.003, 0.0018, 0.0018], [0.8724, 0.1181, 0.004, 0.0019, 0.0013, 0.0005, 0.0004, 0.0003], [0.877, 0.1187, 0.0019, 0.0012, 0.0003, 0.0003, 0.0002, 0.0001], [0.6775, 0.32, 0.0006, 0.0005, 0.0004, 0.0002, 0.0002, 0.0001], [0.9458, 0.0534, 0.0004, 0.0001, 0.0001, 0.0, 0.0, 0.0]], "ranks": {"Kotlin": [176792, 69946, 49737, 7951, 8883, 26710, 44626, 80323, 113658, 95257, 118689, 70449, 76288, 135354, 199675, 80180, 123329, 121754, 146767, 226154, 226781, 198507, 229082, 238013, 213060, 114181, 118839, 200139, 166880, 132413, 129853, 83409, 87239, 73246, 101512, 97810, 73067, 77385, 53992, 33607, 57191, 46448, 13035, 10001, 22113, 35864, 31654, 43606, 39717, 20756, 13612, 7567, 5187, 1841, 2287, 2154, 1795, 3896, 3176, 3367, 4141, 7907, 8130]}}, {"pos": 553, "top": [[" \u2013", "\u2013", "i", " [\u2026]", " \u2013,", "\u2013and", "\u2013\u2013", ".\u2013"], [" \u2013", "\u2013", "\u2013\u2013", " \u2013,", "  \n\n", " *\u2013", "\u2013and", "  \n"], [" \u2013", "\u2013", "\u2013and", " \u2013,", " [\u2026]", ".\u2013", "\u2013\u2013", "\u2026"], [" ``", ")__", ":__", " ____", "__:", " FStar", "``", " Ejem"], [" -->", " (@", " ____", " @", "  \n\n\n", " @_", " *\u201c", " \ufffd"], [" ____", " \n  \n", "(ms", " \n \n", " \r\n \r\n", " *\u201c", " __(", "   \n"], ["\ufffd\ufffd", " ____", " \n \n", "   \n", "  \n", " \n  \n", "____", " \ufffd"], ["\ufffd\ufffd", " \n \n", "   \n", " ____", " \ufffd", " \r\n \r\n", "    \n", " \n  \n"], ["\ufffd\ufffd", " \ufffd", " \n \n", " \n", "\ufffd", " \n\n\n", " \n  \n", "   \n\n"], ["\ufffd\ufffd", " \ufffd", "\u2013\u2013", " \n \n", "--", " \r\n \r\n", "\ufffd", " \t\n"], ["\ufffd\ufffd", "--", "\ufffd", ".", " \ufffd", "\u2013\u2013", " \n \n", ".@"], [" *\u201c", "\ufffd\ufffd", " $__", " ____", " -->", " \n \n", " \r\n \r\n", "\u2013\u2013"], ["\ufffd\ufffd", "\u2013\u2013", " *\u201c", "\u20ac\u201c", " $__", " -->", ".fm", " ____"], ["\u2013", "\u2013\u2013", "--", "\u2013and", "\ufffd\ufffd", " \u2013", "\u20ac\u201c", "(ms"], ["--", "\u2013", "\u2013\u2013", " \u2013", "\u2013and", " whilst", " ", " \ufffd"], [" whilst", " \u2013", "--", "\u2013", " \ufffd", "i", "\u2013\u2013", " incredibly"], [",", " \u2013", "\u2013", "--", "\u2013\u2013", "i", "\u2013and", ";"], ["\u2013\u2013", " \u2013", "\u2013", "--", "\u2013and", "\ufffds", ",", "(ms"], ["\ufffd\ufffd", " \ufffd", "--", "\ufffds", "\ufffd", " incredibly", "<|endoftext|>", "(ms"], ["<|endoftext|>", "--", " \ufffd", " --", "\ufffd", "\ufffd\ufffd", " whilst", " swiftly"], ["<|endoftext|>", " \n\n", "  \n\n", "--", "\n\n", "\ufffd", "\ufffd\ufffd", " \ufffd"], ["\ufffds", " instantly", " ''", " \ufffd", " ``", "/MM", "(ms", " --"], ["<|endoftext|>", "--", " --", " \ufffd", " \u2013", "\ufffd\ufffd", "\u2013", "\ufffd"], ["<|endoftext|>", "\ufffd\ufffd", " --", " \ufffd", "--", "\ufffd", " \n  \n", " ,"], [" \n\n", "  \n\n", "<|endoftext|>", "   \n\n", " \r\n\r\n", "\n\n", " \n  \n", " \n \n"], [" \n\n", " \n  \n", "  \n\n", " \r\n\r\n", "   \n\n", " microseconds", " \n \n", " milliseconds"], [" microseconds", " milliseconds", " latency", " seconds", "Milliseconds", " \n\n", " minutes", " overnight"], [" \n\n", " ,", "  \n\n", "\n\n", " --", " \n  \n", " __", " ____"], [" microseconds", " milliseconds", " \n\n", " \n  \n", " latency", " seconds", " --", "Milliseconds"], [" \n  \n", " \n", " microseconds", " milliseconds", " \n \n", " --", " ''", " \u2013"], [" \n", " \n\n", " \n  \n", " ,", " ''", " .", " milliseconds", " time"], [" .", " \n\n", " \n", " time", " \n  \n", " ...", " ", " ,"], [" .", " time", " ,", " \u2013", " every", " minutes", " during", " on"], [" \u2013", " milliseconds", " avg", " microseconds", " time", " latency", "/day", " deadline"], [" avg", " milliseconds", " latency", " microseconds", " time", "/day", " deadline", " seconds"], [" milliseconds", " latency", " \u2013", " microseconds", " time", " avg", " instantly", " seconds"], [" milliseconds", " latency", " microseconds", "ptime", " instantly", " time", " speed", " every"], [" milliseconds", " latency", " time", "ptime", " every", " instantly", " microseconds", " speed"], [" milliseconds", " time", " deadline", " latency", "ptime", " timeframe", " every", " deadlines"], [" milliseconds", " deadline", " latency", " time", " timeframe", " deadlines", " microseconds", " delay"], [" deadline", " timeframe", " time", " deadlines", " milliseconds", " latency", " delay", "ptime"], [" deadline", " timeframe", " deadlines", " time", " milliseconds", " latency", " timeout", " delay"], [" deadline", " timeframe", " deadlines", " milliseconds", " latency", " time", "\u65f6\u9650", " timeline"], [" deadline", " timeframe", " deadlines", " milliseconds", " latency", " time", " microseconds", " timeout"], [" deadline", " timeframe", " deadlines", " milliseconds", " latency", " time", " limit", " microseconds"], [" deadline", " timeframe", " deadlines", " limit", " every", " latency", " milliseconds", "\u6bcf\u5206\u949f"], [" timeframe", " deadline", " deadlines", " each", " every", " limit", "\u65f6\u9650", " allotted"], [" timeframe", " deadline", " deadlines", " each", " every", " limit", "\u65f6\u9650", " EVERY"], [" timeframe", " each", " deadline", " EACH", " every", "\u6bcf\u6761", " deadlines", " EVERY"], [" timeframe", " deadline", " deadlines", " totalTime", "ptime", " EACH", "\u65f6\u9650", "\u6bcf\u6761"], [" timeframe", " deadline", " totalTime", " deadlines", "\u65f6\u9650", "ptime", " latency", " timestep"], [" timeframe", " deadline", "ptime", " totalTime", " framerate", " latency", " deadlines", " TimeSpan"], [" timeframe", " latency", " deadline", "\u65f6\u9650", " deadlines", " per", " timestep", " framerate"], [" latency", " timeframe", " per", " budget", " timestep", " framerate", " deadlines", " totalTime"], [" latency", " framerate", " timeframe", " timestep", "/frame", " allotted", " budget", " deadline"], [" per", "/frame", " latency", " timeframe", " framerate", " deadline", " timestep", " budget"], [" per", "/frame", " budget", " latency", " deadline", " timestep", " framerate", " timeframe"], [" per", "/frame", " latency", " budget", " frame", " framerate", " render", "\u5e27"], [" frame", "/frame", " frames", "frame", " Frame", "Frame", "\u5e27", "-frame"], [" frame", "/frame", " frames", " Frame", "frame", "Frame", "-frame", "\u5e27"], [" budget", " per", " frame", "\u9884\u7b97", " Budget", " budgets", "Budget", "budget"], [" per", " budget", " frame", "/frame", " budgets", " Budget", " frames", " Frame"], [" per", " frame", " budget", "/frame", " frames", " Frame", " budgets", " fram"]], "p": [[0.9643, 0.02, 0.0095, 0.0039, 0.0004, 0.0003, 0.0002, 0.0002], [0.9686, 0.0074, 0.0065, 0.0045, 0.0024, 0.0018, 0.0014, 0.0011], [0.7478, 0.2428, 0.0035, 0.0014, 0.0014, 0.0011, 0.0006, 0.0004], [0.0233, 0.0193, 0.015, 0.0133, 0.0117, 0.0117, 0.011, 0.0103], [0.156, 0.0737, 0.0506, 0.0506, 0.0476, 0.0447, 0.042, 0.0327], [0.0383, 0.0298, 0.028, 0.0232, 0.0232, 0.0193, 0.0181, 0.0181], [0.2753, 0.1013, 0.0654, 0.0542, 0.0422, 0.0422, 0.0309, 0.029], [0.1728, 0.0816, 0.0767, 0.0767, 0.072, 0.0636, 0.0495, 0.03], [0.1122, 0.0771, 0.0564, 0.0564, 0.0498, 0.0468, 0.0413, 0.0413], [0.1105, 0.0975, 0.067, 0.0407, 0.0382, 0.0263, 0.0218, 0.0204], [0.3665, 0.0496, 0.0496, 0.0466, 0.0249, 0.0171, 0.0171, 0.0142], [0.1453, 0.1132, 0.0416, 0.0391, 0.0345, 0.0305, 0.0223, 0.0163], [0.0421, 0.0372, 0.0255, 0.0212, 0.0199, 0.0146, 0.0121, 0.0106], [0.1463, 0.1291, 0.0736, 0.0348, 0.0326, 0.0186, 0.0094, 0.0088], [0.2433, 0.2017, 0.0578, 0.051, 0.0213, 0.0137, 0.0114, 0.0114], [0.1207, 0.0473, 0.0417, 0.0346, 0.0185, 0.0153, 0.0135, 0.0135], [0.1686, 0.1686, 0.0903, 0.0293, 0.0167, 0.0122, 0.0089, 0.0084], [0.047, 0.0414, 0.0414, 0.0208, 0.0162, 0.0162, 0.0135, 0.0068], [0.0347, 0.0238, 0.0164, 0.0113, 0.0106, 0.0099, 0.0073, 0.0073], [0.9555, 0.0047, 0.0018, 0.0013, 0.001, 0.0008, 0.0004, 0.0002], [0.9997, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0096, 0.007, 0.007, 0.0051, 0.0048, 0.0045, 0.0045, 0.004], [0.4255, 0.0372, 0.0256, 0.024, 0.0155, 0.0137, 0.0113, 0.01], [0.455, 0.0257, 0.02, 0.02, 0.0166, 0.0114, 0.0101, 0.0094], [0.5932, 0.1324, 0.1243, 0.0356, 0.0216, 0.014, 0.0131, 0.0035], [0.4074, 0.0625, 0.0587, 0.0551, 0.0245, 0.0158, 0.0158, 0.0079], [0.1987, 0.1365, 0.0324, 0.0185, 0.0093, 0.0087, 0.0077, 0.0072], [0.7491, 0.0309, 0.0226, 0.0188, 0.0129, 0.0114, 0.0094, 0.0083], [0.178, 0.1302, 0.051, 0.0373, 0.0226, 0.0137, 0.0137, 0.0107], [0.2335, 0.2335, 0.0279, 0.0279, 0.0204, 0.0169, 0.0103, 0.0103], [0.5036, 0.0565, 0.0531, 0.0195, 0.0172, 0.0118, 0.0087, 0.0076], [0.0754, 0.0625, 0.0552, 0.0314, 0.0295, 0.0278, 0.0278, 0.0261], [0.0635, 0.0527, 0.0495, 0.041, 0.0206, 0.0182, 0.0151, 0.0151], [0.0645, 0.0443, 0.0305, 0.0269, 0.0209, 0.0197, 0.0163, 0.0127], [0.0432, 0.0337, 0.0246, 0.0246, 0.0217, 0.0192, 0.0159, 0.0124], [0.0848, 0.0454, 0.0312, 0.0259, 0.0243, 0.0215, 0.0215, 0.0189], [0.1488, 0.1088, 0.0293, 0.0293, 0.0275, 0.0214, 0.0201, 0.0157], [0.1614, 0.0811, 0.0462, 0.0338, 0.0298, 0.0232, 0.0205, 0.0205], [0.1866, 0.0999, 0.0778, 0.0778, 0.0367, 0.0345, 0.0305, 0.0269], [0.2054, 0.1412, 0.0856, 0.0756, 0.071, 0.0589, 0.0315, 0.0315], [0.1953, 0.1723, 0.1184, 0.0814, 0.0718, 0.0559, 0.0436, 0.0219], [0.3476, 0.2108, 0.1449, 0.0684, 0.0366, 0.0222, 0.0105, 0.0105], [0.5482, 0.1571, 0.1571, 0.0188, 0.0129, 0.01, 0.0078, 0.0054], [0.5183, 0.2161, 0.0901, 0.0292, 0.0108, 0.0079, 0.0074, 0.0065], [0.4604, 0.2464, 0.08, 0.019, 0.0131, 0.0115, 0.0079, 0.007], [0.4067, 0.2467, 0.0801, 0.0216, 0.0131, 0.0123, 0.0102, 0.0079], [0.3305, 0.2917, 0.1073, 0.0271, 0.0271, 0.0271, 0.0069, 0.0061], [0.5201, 0.1689, 0.0621, 0.0354, 0.0333, 0.0148, 0.0074, 0.0074], [0.378, 0.1083, 0.0657, 0.0451, 0.0424, 0.0291, 0.0257, 0.0156], [0.5094, 0.0885, 0.0287, 0.0287, 0.0254, 0.021, 0.0198, 0.0145], [0.7555, 0.0426, 0.0214, 0.0178, 0.0147, 0.0108, 0.0089, 0.0051], [0.8016, 0.0214, 0.0156, 0.0156, 0.0101, 0.0095, 0.0084, 0.0051], [0.7085, 0.0959, 0.0242, 0.0214, 0.0189, 0.0167, 0.013, 0.0115], [0.2681, 0.1626, 0.1117, 0.0466, 0.0411, 0.0341, 0.0301, 0.0283], [0.3189, 0.0914, 0.0711, 0.0521, 0.0489, 0.0336, 0.0279, 0.0231], [0.9745, 0.0178, 0.001, 0.001, 0.0009, 0.0009, 0.0005, 0.0004], [0.9749, 0.0139, 0.0021, 0.0021, 0.0007, 0.0005, 0.0005, 0.0005], [0.8285, 0.1121, 0.0118, 0.0063, 0.0056, 0.0049, 0.0043, 0.0021], [0.7826, 0.136, 0.0209, 0.0162, 0.0126, 0.0126, 0.0112, 0.0036], [0.8335, 0.1278, 0.0135, 0.0082, 0.005, 0.0039, 0.003, 0.0023], [0.9065, 0.0351, 0.0129, 0.0114, 0.0114, 0.0101, 0.0037, 0.0029], [0.7364, 0.1862, 0.0605, 0.0044, 0.0039, 0.0014, 0.0013, 0.0011], [0.4952, 0.3857, 0.067, 0.0279, 0.0091, 0.0017, 0.0012, 0.0012]], "ranks": {"Kotlin": [137082, 109644, 74313, 5072, 6953, 15309, 14866, 31615, 24637, 50004, 47576, 19534, 14035, 51071, 144187, 116050, 83471, 98092, 84204, 129688, 158207, 43836, 98954, 109426, 81260, 10647, 2999, 31276, 9374, 14075, 57791, 40938, 60811, 7231, 14154, 9853, 9458, 7550, 8096, 6173, 8005, 15825, 6930, 4196, 9518, 17305, 15035, 17791, 17100, 9359, 5822, 4498, 5474, 3317, 2096, 1347, 1203, 1724, 1792, 1965, 2533, 3893, 2319]}}, {"pos": 554, "top": [[" \u2013", "\u2013", ".", "er", "-", " [\u2026]", "\u2026..", "\u00a0"], ["\u2011", "carat", "\u88ab\u4f9b\u5e94\u5546", "YPRE", " Depor", "onger", "isers", "pagesize"], ["\u2013", " \u2013", "\u2013and", ".\u2013", "\u2026..", " \u2013,", "\u2011", "**\u2013"], [" \u041f\u043e\u043f\u0440\u043e", " milfs", " pupper", " ;;^", " aarhus", " backpage", "ebrit", " FStar"], ["itorial", "\u2011", " Depor", "ingly", "gris", "ilion", "ctic", "archical"], ["datap", "itorial", "ctic", "carat", "fst", "caps", "ilion", "quisite"], ["\u2011", "datap", " [\u2026]", "FIG", "\u2018", "itorial", "ARSE", "pot"], ["missive", "\u2011", "itorial", "tridge", "atively", "cord", " `_", "ingham"], [" [\u2026]", "\u2011", "   \n\n", "    \n\n", " \n    \n", "  \n\n", "#####", " \n\n"], ["\u2011", "\u2013", " [\u2026]", "\\xf", ".\u2013", "\u2013and", "-$", "-\\"], ["\u2011", " [\u2026]", "2", "\\xf", ".@", "@", "\u2013", "\\xe"], ["\\xf", "\u2011", " `_", " `\\", "tridge", "utum", "ubber", "itorial"], ["\u2011", " `_", "missive", " annum", "\\xf", "itorial", "erate", " `\\"], ["\u2011", " annum", "cord", "erate", "missive", "itone", "\u5ea6\u9ad8", "-ish"], [" `", "\u2011", " annum", " \ufffd", "\u5925", " `/", "poon", " `_"], [" `", " annum", "\\xf", " \ufffd", " folks", " \u00ad", " goodies", " `/"], ["\u2011", "er", "o", "-ish", " annum", " [\u2026]", " folks", "w"], ["\u2011", " [\u2026]", " annum", "\\xf", "-ish", "missive", "fect", "poon"], [" annum", "\\xf", "missive", "xec", "icke", "poon", "oce", "itone"], [" [\u2026]", " annum", " `/", "\u2011", " `\\", " \ufffd", "\u6f2a", " `%"], ["<|endoftext|>", "  \n\n", " [\u2026]", " \n\n", "   \n\n", " \r\n\r\n", "\n\n", "Though"], [" annum", "etime", " iParam", "ptime", "xec", "missive", "icke", " `%"], [" \ufffd", " \u00ad", " \ufffd", "\u6f2a", " \r\n", " annum", " requisite", "\ufffd\ufffd"], [" \r\n", "Whilst", " \u00ad", " \ufffd", " \ufffd", "\u6f2a", " `/", "\ufffd\ufffd"], [" \n\n", "  \n\n", "   \n\n", " \r\n\r\n", "\n\n", "\r\n\r\n", "    \n\n", "  \r\n\r\n"], [" \r\n\r\n", " \n\n", "   \n\n", " \r\n", "\r\n\r\n", "  \n\n", " \n    \n", "  \r\n\r\n"], ["ftime", "\u6bcf\u5206\u949f", "ptime", " timestep", "vertime", " annum", " time", " MEDIATEK"], [" \n\n", "   \n\n", "  \n\n", " \r\n\r\n", "\n\n", " time", " \n  \n", " ,"], [" \n\n", " time", "   \n\n", " \n  \n", " \n    \n", " hour", " \r\n\r\n", " minutes"], [" \n", " time", " \n  \n", " \n\n", " \n    \n", " ", " \u2013", " each"], [" time", " \n", " .", " ,", " each", " ", " day", " minutes"], [" .", " time", " ,", " ", " each", " day", " \u2013", " every"], [" .", " \u2013", " ,", " time", " ", " each", " day", " every"], [" \u2013", "\u2011", " time", "\u2013", " .", " ", " each", "\u2014but"], ["\u2011", " \u2013", " time", " each", " .", " every", " day", " \u201c"], [" \u2013", "\u2011", " time", " .", " each", "\u2013", " \u201c", " [\u2026]"], ["\u2011", " time", " \u2013", " each", " pace", " milliseconds", " speed", " framerate"], [" time", "\u2011", " each", " \u2013", " every", " frame", " framerate", " milliseconds"], [" time", " each", " cycle", " every", " framerate", "\u2011", " frame", " milliseconds"], [" cycle", " time", " framerate", " frame", " pixel", "\u2011", " each", " milliseconds"], [" framerate", " cycle", " time", "\u6bcf\u79d2", " timeframe", " milliseconds", " frame", "\u5468\u671f"], [" framerate", " cycle", " frame", "\u6bcf\u79d2", "-cycle", " milliseconds", " pixel", " timeframe"], [" cycle", " framerate", "-cycle", " frame", "\u6bcf\u79d2", " timeframe", " cycles", " milliseconds"], [" cycle", " framerate", " timeframe", " frame", " milliseconds", "\u6bcf\u79d2", " time", " cycles"], [" cycle", " frame", " cycles", " timeframe", " each", " framerate", " milliseconds", " average"], [" cycle", " each", " frame", " cycles", " every", " deadline", " timeframe", " average"], [" cycle", " every", " frame", " each", " framerate", " cycles", " timeframe", " avg"], [" cycle", "\u2014including", " every", " entire", " cycles", " frame", " timeframe", "-cycle"], [" cycle", "\u2014including", " EVERY", "-cycle", " EACH", " timeframe", " lifecycle", " every"], [" INCLUDING", "\u2014including", "INCLUDING", "\u5305\u62ec\u4f46\u4e0d\u9650\u4e8e", " EVERY", " entire", " cycle", "\u5168\u6d41\u7a0b"], [" EVERY", " entire", " INCLUDING", "INCLUDING", "\u5168\u6d41\u7a0b", "+.", "\u5168\u90e8\u8d23\u4efb", "\u5305\u62ec\u4f46\u4e0d\u9650\u4e8e"], [".**", " **.", " INCLUDING", "**.", "+.", " **.**", "INCLUDING", " entire"], [" **.", " **.**", " INCLUDING", ".**", "**.", "\u5e27", " timestep", " framerate"], [" **.", ".**", " **.**", " timestep", "**.", " INCLUDING", "\u5e27", " TOTAL"], [" INCLUDING", " cycle", " TOTAL", "INCLUDING", " **.", "\u5e27", " allowable", "cycle"], ["\u5e27", " frame", "-frame", " INCLUDING", " cycle", "frame", " frames", " timestep"], [" frame", "\u5e27", "-frame", " cycle", " **.", "frame", " render", ".**"], [" frame", "\u5e27", "-frame", " render", "frame", "\u6e32\u67d3", " frames", "/render"], [" frame", "-frame", "frame", "\u5e27", " frames", " Frame", "Frame", "_frame"], [" frame", "-frame", " frames", "frame", "\u5e27", " Frame", "Frame", "_frame"], [" frame", "-frame", "\u5e27", " Frame", " frames", "frame", "_frame", "Frame"], [" frame", "-frame", " frames", " Frame", "frame", "\u5e27", "_frame", "Frame"], [" frame", "-frame", "frame", " Frame", "\u5e27", " frames", "_frame", "Frame"]], "p": [[0.866, 0.0489, 0.0024, 0.002, 0.0016, 0.0012, 0.001, 0.001], [0.005, 0.0034, 0.0027, 0.0023, 0.0021, 0.0018, 0.0017, 0.0017], [0.7273, 0.1115, 0.022, 0.0118, 0.0081, 0.0052, 0.0038, 0.0036], [0.0063, 0.0063, 0.0049, 0.0043, 0.0038, 0.0033, 0.0033, 0.003], [0.0109, 0.0066, 0.0043, 0.0043, 0.0043, 0.0043, 0.004, 0.0038], [0.0145, 0.0077, 0.0057, 0.0037, 0.0032, 0.002, 0.0018, 0.0018], [0.015, 0.008, 0.0071, 0.0049, 0.004, 0.0038, 0.0038, 0.0031], [0.0135, 0.0093, 0.0072, 0.006, 0.0056, 0.0047, 0.0047, 0.0041], [0.1369, 0.0536, 0.0368, 0.0144, 0.012, 0.0106, 0.0099, 0.0064], [0.0526, 0.0142, 0.0142, 0.0067, 0.0052, 0.0052, 0.0046, 0.0036], [0.3533, 0.0839, 0.0094, 0.0083, 0.0073, 0.0073, 0.0073, 0.0039], [0.0206, 0.0125, 0.0091, 0.0086, 0.0076, 0.0071, 0.0071, 0.0059], [0.0146, 0.0114, 0.0083, 0.0078, 0.0074, 0.0074, 0.0057, 0.0054], [0.0241, 0.0078, 0.0045, 0.0042, 0.0037, 0.0037, 0.0035, 0.0035], [0.0124, 0.0109, 0.008, 0.007, 0.0043, 0.004, 0.0038, 0.0035], [0.011, 0.0097, 0.0067, 0.0063, 0.0049, 0.0049, 0.0043, 0.0043], [0.0136, 0.0113, 0.0083, 0.0064, 0.0053, 0.005, 0.005, 0.0044], [0.0062, 0.0062, 0.0058, 0.0042, 0.0037, 0.0027, 0.0026, 0.0026], [0.0053, 0.0034, 0.003, 0.0025, 0.0022, 0.0022, 0.0021, 0.002], [0.0035, 0.0033, 0.0026, 0.002, 0.0019, 0.0018, 0.0017, 0.0017], [0.9296, 0.0017, 0.0014, 0.0012, 0.0012, 0.0011, 0.0008, 0.0006], [0.0041, 0.0019, 0.0018, 0.0017, 0.0017, 0.0016, 0.0016, 0.0016], [0.0035, 0.0029, 0.0027, 0.0026, 0.002, 0.0018, 0.0018, 0.0016], [0.0051, 0.0021, 0.002, 0.0019, 0.0018, 0.0016, 0.0015, 0.0014], [0.5019, 0.1192, 0.1192, 0.1052, 0.0161, 0.0134, 0.0118, 0.0092], [0.1048, 0.0386, 0.034, 0.0104, 0.0071, 0.0067, 0.0063, 0.0059], [0.006, 0.0053, 0.0053, 0.005, 0.0047, 0.0041, 0.0028, 0.0023], [0.3337, 0.0274, 0.0242, 0.0129, 0.0114, 0.0101, 0.0057, 0.0057], [0.0321, 0.0183, 0.0111, 0.0098, 0.0086, 0.0052, 0.0046, 0.0046], [0.1624, 0.0527, 0.0411, 0.03, 0.0249, 0.0249, 0.0104, 0.0098], [0.0814, 0.0675, 0.0436, 0.0385, 0.0361, 0.0206, 0.0117, 0.0086], [0.1071, 0.0888, 0.065, 0.0573, 0.0419, 0.0145, 0.01, 0.0094], [0.234, 0.1177, 0.0809, 0.0556, 0.0359, 0.0141, 0.0117, 0.0085], [0.6154, 0.1212, 0.0419, 0.0164, 0.0082, 0.0068, 0.0068, 0.0041], [0.0984, 0.072, 0.0676, 0.0465, 0.0161, 0.0117, 0.011, 0.011], [0.3616, 0.2485, 0.046, 0.014, 0.0132, 0.0103, 0.0103, 0.0058], [0.1426, 0.111, 0.0435, 0.0248, 0.0181, 0.016, 0.015, 0.0133], [0.1328, 0.1328, 0.0757, 0.0278, 0.0231, 0.0191, 0.0132, 0.0124], [0.1542, 0.106, 0.0604, 0.039, 0.0304, 0.0285, 0.0285, 0.0252], [0.0939, 0.0829, 0.0779, 0.0687, 0.0325, 0.0305, 0.0286, 0.0253], [0.1499, 0.1499, 0.0854, 0.0625, 0.026, 0.026, 0.0168, 0.0148], [0.223, 0.223, 0.0639, 0.053, 0.0235, 0.0235, 0.0235, 0.0221], [0.4602, 0.0706, 0.0355, 0.0333, 0.0313, 0.0244, 0.0244, 0.0215], [0.3218, 0.0866, 0.0493, 0.0384, 0.0281, 0.0171, 0.0171, 0.0171], [0.4827, 0.035, 0.0256, 0.0226, 0.0226, 0.0165, 0.0114, 0.0107], [0.4945, 0.046, 0.0358, 0.0217, 0.0192, 0.0103, 0.0091, 0.0091], [0.2959, 0.0426, 0.0275, 0.0259, 0.0189, 0.0189, 0.0189, 0.0138], [0.2196, 0.0713, 0.0358, 0.0297, 0.0217, 0.018, 0.0169, 0.0149], [0.1164, 0.055, 0.0517, 0.0277, 0.019, 0.019, 0.019, 0.0179], [0.0907, 0.0752, 0.0517, 0.0402, 0.0334, 0.0276, 0.0168, 0.0148], [0.0486, 0.0429, 0.0356, 0.0314, 0.0244, 0.0216, 0.0203, 0.0158], [0.0548, 0.0484, 0.0312, 0.0312, 0.0293, 0.0243, 0.0243, 0.0167], [0.2275, 0.0739, 0.0612, 0.0508, 0.0448, 0.0289, 0.0212, 0.0145], [0.3099, 0.0736, 0.061, 0.0539, 0.0348, 0.0288, 0.0186, 0.012], [0.2553, 0.0829, 0.0535, 0.0472, 0.0346, 0.0269, 0.0269, 0.0223], [0.3435, 0.2084, 0.0495, 0.041, 0.032, 0.032, 0.0249, 0.0161], [0.321, 0.25, 0.0632, 0.0383, 0.0281, 0.0264, 0.0233, 0.0133], [0.4351, 0.1814, 0.0857, 0.0589, 0.0261, 0.0158, 0.0109, 0.0102], [0.979, 0.0051, 0.0051, 0.004, 0.0031, 0.0019, 0.0011, 0.0004], [0.9898, 0.0032, 0.0025, 0.0019, 0.001, 0.0009, 0.0004, 0.0002], [0.9854, 0.0097, 0.0012, 0.0012, 0.001, 0.0008, 0.0004, 0.0003], [0.9868, 0.0066, 0.0019, 0.0017, 0.0009, 0.0008, 0.0004, 0.0003], [0.9988, 0.0003, 0.0003, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001]], "ranks": {"Kotlin": [216607, 185428, 197849, 60555, 78520, 153457, 146757, 142260, 144162, 184988, 173063, 120632, 101427, 155550, 212323, 153846, 160710, 164069, 172069, 209622, 238576, 217691, 240003, 241757, 212627, 95423, 86819, 183618, 166512, 122908, 163267, 157878, 199874, 106678, 75665, 60146, 32299, 42058, 29519, 14770, 14203, 28082, 16908, 9509, 18165, 34314, 25809, 19450, 16515, 28572, 27438, 17979, 9858, 5628, 4792, 2736, 1025, 1645, 3923, 3593, 4684, 5436, 5446]}}, {"pos": 555, "top": [[" \u2013", ".", "\u2013", ",", " ", "\u2026..", "-", " [\u2026]"], [" \u2013", "\u2013", "\u2013and", "\u2013\u2013", "\u00ad", " \u2018", "  \n", "\u2026.."], [" \u2013", "\u2013", "\u2026", "\u2026..", ".", ",", "\u2013and", "\u2026."], ["buster", " pupper", "caster", " ``", "odle", "enzi", "':''", "flate"], [" @", "@", " \u2018", "i", " (@", " \u2013", ".@", " "], [" \u2018", "\u2026..", "board", " \u2013", "ar", "cast", "\u2013", "i"], [" \u2018", " \u2013", "\u2018", ".\u2019", "\u2026..", "\u2019", " \u2019", "i"], [" \u2013", " \u2018", "ster", "less", " @", "\u2013", "\u2026..", "i"], [".", " \u2013", ",", "\u2013", ";", " \u2018", " [\u2026]", "!"], [",", "\u2013", ";", "\u2013and", " \u2013", "\u2013\u2013", ".", ".\u2013"], [",", ".", "\u2013", ";", " \u2013", " ", "e", "!"], ["less", " \u2013", "(Frame", ",", "\u2013", "oire", "caster", "gable"], [" \u2013", ",", "\u2013", "less", ".", " ", ";", "\u2013\u2013"], [",", " \u2013", "\u2013", ".", " ", ";", "e", "less"], [",", " \u2013", "\u2013", " ", ";", ".", " in", " ,"], [" \u2013", " ,", ",", " in", " as", " ", " from", "e"], [",", " \u2013", ";", "\u2013", "e", " in", ".", " ,"], [",", " \u2013", "\u2013", ";", ".", " in", " from", " ,"], [" \u2013", ",", " ,", " .", "\u2013", ";", "e", " &"], [" \u2013", ",", " ,", "\u2013", " \u2014", ";", "\u2014", "\u2013\u2013"], ["<|endoftext|>", " \u2013", " ,", "\u2013", ",", ";", " \u2014", "\u2014"], [" ,", " \u2013", "oire", " .", " during", " ultimately", "(Frame", " ;"], [" \u2013", " ,", " .", "\u2013", " during", " ;", " in", " at"], [" ,", " \u2013", " .", " ;", " during", " in", " at", " ultimately"], [" \u2013", "\u2013", " ,", " \u2014", "\u2013\u2013", ",", ";", " ;"], [" \u2013", " ,", " \u2014", " during", " atop", "\u2013\u2013", " while", " ;"], [" ,", " \u2013", " during", " ;", " atop", " while", " \u2014", " motion"], [" ,", " \u2013", " during", " ;", " while", " \u2014", " .", " over"], [" \u2013", " ,", " during", " \u2014", "\u2013", " ;", " while", " ."], [" ,", " \u2013", " during", " \u2014", " ", " while", " ;", " at"], [" ,", " \u2013", " .", " during", " at", " over", " ;", " "], [" ,", " .", " \u2013", " during", " ", " at", " in", " on"], [" \u2013", " ,", " during", " .", " over", " ", " \u2014", " at"], [" \u2013", " \u2014", " ,", "\u2013", " during", " .", " time", " "], [" \u2013", " ,", " time", " every", " rapidly", " even", " \u2014", " over"], [" \u2013", " .", " ,", " time", " rapidly", " quickly", " faster", " must"], [" rapidly", " quickly", " \u2013", " .", " without", " must", " instantly", " faster"], [" must", " .", " quickly", " every", " even", " rapidly", " without", " faster"], [" quickly", " rapidly", " time", " must", " every", " without", " even", " instantly"], [" without", " every", " must", " time", " quickly", " rapidly", " even", " impossible"], [" without", " time", " every", " deadline", " must", " quickly", " rapidly", " faster"], [" time", " deadline", " deadlines", " tight", " limits", " rapidly", " every", " barely"], [" deadline", " deadlines", " time", " tight", " limits", " every", " faster", " limit"], [" deadline", " deadlines", " tight", " time", " limit", " limits", " barely", " every"], [" barely", " tight", " deadline", " limit", " limits", " average", " deadlines", " only"], [" barely", " only", " tight", " half", " limit", " every", " limits", " almost"], [" barely", " tight", " tiny", " limit", " only", " limits", " every", " ONLY"], [" barely", " tight", " limit", " limits", " EVERY", " incredibly", " tiny", " impossible"], [" barely", " impossible", " EVERY", " minus", " limits", " tight", " limit", " budgets"], [" ANY", " barely", " impossible", "\u7684\u4efb\u4f55", " EVERY", " tight", " entire", " incredibly"], [" ANY", "\u7684\u4efb\u4f55", " impossible", " EVERY", ";if", "anything", " anything", " Anything"], [" ANY", ".", "+.", "().", ".If", "\u7684\u4efb\u4f55", ";if", " impossible"], [" ANY", ".", ".If", "+.", " Anything", ".**", "**.", ";if"], [".", ".If", ".**", "+.", "**.", " **.**", " ANY", " If"], [".If", "\u7559\u7ed9", " INCLUDING", " allowable", " allowance", ".", " allocating", "INCLUDING"], [".", "\u7559\u7ed9", " budgets", " ANY", " **.**", ".If", "+.", " INCLUDING"], ["\u7559\u7ed9", " INCLUDING", ".", " **.**", "INCLUDING", " leaving", "\u7559\u51fa", " budgets"], ["\u7559\u7ed9", " leaving", ".", " Leave", " leave", " INCLUDING", " leaves", " **.**"], ["\u7559\u7ed9", ".", " Leave", " leaving", " leave", " INCLUDING", " leaves", " You"], ["\u7559\u7ed9", " GC", " leaving", ".", " leave", " leaves", " Leave", " You"], [" budget", " budgets", " Budget", ".", "budget", "\u9884\u7b97", "Budget", "-budget"], [" budget", ".", " budgets", " Budget", " *", " allowance", "Budget", " GC"], [".", " budget", " total", " *", " window", " GC", ",", " allowance"]], "p": [[0.925, 0.0317, 0.0317, 0.0062, 0.0015, 0.0007, 0.0005, 0.0004], [0.8686, 0.086, 0.0049, 0.0019, 0.0013, 0.0008, 0.0007, 0.0005], [0.6586, 0.3111, 0.0083, 0.0073, 0.0039, 0.003, 0.0018, 0.0018], [0.0032, 0.0019, 0.0017, 0.0017, 0.0015, 0.0015, 0.0013, 0.0013], [0.1366, 0.0778, 0.0345, 0.0253, 0.0174, 0.0153, 0.0105, 0.0099], [0.0176, 0.0114, 0.0073, 0.0065, 0.0057, 0.005, 0.0045, 0.0039], [0.3116, 0.0422, 0.0396, 0.0372, 0.0165, 0.0146, 0.0137, 0.0137], [0.082, 0.0639, 0.0302, 0.025, 0.0183, 0.0162, 0.0126, 0.0111], [0.3535, 0.1569, 0.1078, 0.0397, 0.029, 0.0273, 0.0176, 0.0121], [0.2594, 0.1304, 0.031, 0.0121, 0.0089, 0.0054, 0.0048, 0.0035], [0.4925, 0.1599, 0.1245, 0.0666, 0.0519, 0.0066, 0.0043, 0.0031], [0.0121, 0.0051, 0.0029, 0.0029, 0.0024, 0.0022, 0.0019, 0.0017], [0.1187, 0.0437, 0.0362, 0.0182, 0.0092, 0.0067, 0.0043, 0.0028], [0.2625, 0.0586, 0.0429, 0.0179, 0.0096, 0.009, 0.0033, 0.0029], [0.1479, 0.139, 0.0398, 0.0274, 0.0166, 0.0146, 0.0089, 0.0074], [0.0573, 0.0254, 0.0211, 0.0198, 0.01, 0.0094, 0.0094, 0.0083], [0.5566, 0.0802, 0.0168, 0.0131, 0.0102, 0.0085, 0.0066, 0.0062], [0.389, 0.2674, 0.0182, 0.0171, 0.0125, 0.0043, 0.0036, 0.0026], [0.3006, 0.0407, 0.0337, 0.0117, 0.0049, 0.0046, 0.004, 0.0038], [0.5214, 0.0751, 0.0456, 0.0313, 0.0054, 0.0051, 0.0045, 0.0033], [0.322, 0.0867, 0.0765, 0.0264, 0.011, 0.0086, 0.0071, 0.0067], [0.0436, 0.0299, 0.0081, 0.0071, 0.0059, 0.0055, 0.0036, 0.003], [0.3896, 0.2085, 0.0151, 0.0111, 0.0081, 0.0081, 0.0063, 0.0059], [0.3499, 0.2259, 0.0369, 0.0136, 0.0112, 0.0093, 0.0082, 0.0073], [0.4269, 0.079, 0.045, 0.0146, 0.0137, 0.0107, 0.0107, 0.0073], [0.206, 0.0381, 0.014, 0.014, 0.0132, 0.0096, 0.0071, 0.0058], [0.1136, 0.0689, 0.0608, 0.0164, 0.0127, 0.0088, 0.0077, 0.0064], [0.6172, 0.0692, 0.0211, 0.0145, 0.0094, 0.0088, 0.0083, 0.0073], [0.311, 0.2921, 0.0508, 0.0272, 0.0175, 0.0137, 0.0078, 0.0069], [0.4158, 0.2522, 0.0563, 0.0301, 0.0111, 0.0092, 0.0086, 0.0086], [0.542, 0.0942, 0.0689, 0.0504, 0.0136, 0.0112, 0.0106, 0.0099], [0.3657, 0.1524, 0.0925, 0.0495, 0.032, 0.0206, 0.0194, 0.0133], [0.3467, 0.1856, 0.0414, 0.0389, 0.0208, 0.0184, 0.0173, 0.0152], [0.8311, 0.0143, 0.0087, 0.0081, 0.0072, 0.0063, 0.006, 0.0053], [0.1207, 0.0253, 0.0253, 0.0238, 0.021, 0.0185, 0.0185, 0.0153], [0.3123, 0.051, 0.045, 0.0273, 0.0213, 0.0176, 0.0176, 0.0137], [0.0557, 0.0407, 0.0383, 0.0317, 0.0298, 0.0263, 0.0263, 0.0247], [0.0813, 0.0493, 0.0435, 0.0339, 0.0318, 0.0318, 0.0219, 0.0219], [0.0696, 0.0577, 0.0509, 0.0478, 0.0397, 0.0397, 0.0373, 0.0309], [0.0573, 0.0506, 0.0475, 0.0446, 0.0347, 0.0347, 0.0326, 0.0254], [0.0859, 0.0807, 0.0358, 0.0358, 0.0316, 0.0297, 0.0262, 0.018], [0.1363, 0.0997, 0.0534, 0.0237, 0.0209, 0.0196, 0.0196, 0.0184], [0.1735, 0.077, 0.0638, 0.0321, 0.0207, 0.0183, 0.0161, 0.0142], [0.1174, 0.0432, 0.0336, 0.0336, 0.0246, 0.0246, 0.0217, 0.0169], [0.0973, 0.0628, 0.0489, 0.046, 0.0432, 0.0246, 0.0217, 0.0192], [0.4183, 0.0933, 0.0441, 0.0323, 0.0236, 0.0208, 0.0126, 0.0105], [0.5373, 0.0303, 0.0285, 0.0251, 0.0196, 0.0162, 0.0119, 0.0112], [0.4129, 0.0281, 0.0248, 0.0248, 0.0181, 0.0181, 0.017, 0.0141], [0.1486, 0.0482, 0.0293, 0.0258, 0.0258, 0.0243, 0.0177, 0.0157], [0.229, 0.0744, 0.0579, 0.0227, 0.0177, 0.0129, 0.0107, 0.0107], [0.4728, 0.0342, 0.0342, 0.0302, 0.0162, 0.0152, 0.0152, 0.0134], [0.2315, 0.08, 0.0623, 0.0313, 0.026, 0.0215, 0.0202, 0.019], [0.2243, 0.1541, 0.12, 0.0268, 0.0173, 0.0173, 0.0135, 0.0127], [0.2198, 0.1419, 0.0522, 0.0382, 0.0279, 0.0279, 0.0232, 0.0232], [0.0706, 0.0585, 0.0456, 0.0402, 0.0402, 0.0313, 0.0244, 0.0229], [0.0657, 0.0657, 0.0452, 0.0452, 0.0398, 0.0374, 0.0274, 0.0274], [0.7936, 0.0371, 0.0289, 0.0106, 0.0106, 0.0083, 0.0069, 0.0061], [0.7696, 0.0383, 0.0383, 0.0232, 0.0205, 0.0181, 0.0091, 0.0085], [0.6207, 0.045, 0.0397, 0.0397, 0.0329, 0.0256, 0.0155, 0.0146], [0.2851, 0.2516, 0.0721, 0.0721, 0.0598, 0.034, 0.032, 0.0151], [0.909, 0.0352, 0.0311, 0.0048, 0.0042, 0.0033, 0.0029, 0.0018], [0.847, 0.0788, 0.0226, 0.0137, 0.0035, 0.0031, 0.0029, 0.0029], [0.9992, 0.0005, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Kotlin": [215286, 176580, 160374, 30169, 45830, 93254, 121078, 181969, 206824, 231566, 230120, 189583, 149361, 160147, 191980, 172377, 196326, 193422, 215060, 237191, 233279, 177093, 194251, 209288, 176250, 100659, 89509, 115061, 115448, 131989, 113193, 95547, 113745, 79950, 140337, 114935, 132530, 133312, 154843, 149953, 136693, 172676, 99531, 59831, 56347, 113439, 101553, 122465, 154798, 159963, 176060, 106193, 89362, 76679, 44523, 10802, 4120, 2240, 2647, 786, 1380, 192, 202]}}, {"pos": 556, "top": [[" \u2013", ".", ",", "\u2013", ";", "\u00a0", "\u00a0\u00a0", "\u2026."], [" \u2013", "\u2013", "\u2013and", " \u2013,", ",", " \u200b\u200b", ".", "\u2013\u2013"], ["\u2013", ",", ".", " \u2013", "\u2026..", "\u2026.", "\u2013and", ";"], [" milfs", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Shemale", " Blowjob", " ;;^", "-------------</", "----------</", " pornstar"], [" \u201c.", " \u201c", " Millennials", ":@", " Aussie", " Krem", " \u200b\u200b", "\u65b0\u52a0\u5761"], [" \u200b\u200b", ".", " \u201c.", "\u2026.", "\u2026..", "!:", "!\u201d.", ","], ["\uff01", " \n", " \u201c", "<|endoftext|>", "  \n", "  \n\n", " \n\n", "   \n"], ["   \n", "   \n\n", "!.", " \n", "!:", "!\u201d.", " \t\n", "\uff01"], [" \n\n", "   \n\n", "\u00a0", "  \n\n", "<|endoftext|>", "!.", ".", " \n"], ["\u00a0", "\u2013and", "!:", ",", "<|quad_end|>", "\u8ddf\u81ea\u5df1", "!,", "Though"], ["<|endoftext|>", "\u00a0", ",", ".", " @", " though", " ", "\ufffd"], [" arguably", "\u582a\u6bd4", " incredibly", "\u8ba4\u8ba4\u771f", " famously", " oddly", " skinny", " veggies"], [" incredibly", " arguably", "-esque", " veggies", " though", " folks", " effortlessly", " crunch"], ["-esque", " incredibly", " mostly", " folks", " though", " even", "\u7cbe\u7ec6\u5316\u7ba1\u7406", "\u582a\u6bd4"], [" though", " even", " just", ",", " mostly", " \u2013", "\u2013", " still"], [" though", " incredibly", " arguably", " mostly", " even", " just", " folks", " often"], [" incredibly", " though", " folks", " arguably", " just", ",", " wouldn", "-esque"], [" incredibly", "-esque", " tweaking", "\u582a\u6bd4", "\u8ba4\u8ba4\u771f", " tweaks", "\u8db3\u8db3", "\u7684\u4e8b\u513f"], ["\u582a\u6bd4", "\u8ba4\u8ba4\u771f", "\u751a\u81f3\u4f1a", "\u98de\u5feb", " incredibly", "\u3059\u3089", "\u751a\u81f3\u6709", "\u518d\u600e\u4e48"], [" arguably", "\u5373\u4fbf\u662f", " swiftly", " though", " albeit", " hugely", "\u98de\u901f", "\u5373\u4fbf"], ["<|endoftext|>", " though", "Though", " swiftly", " myriad", " hugely", " arguably", " barely"], ["\u98de\u901f", "\u706b\u901f", " swiftly", " arguably", "\u98de\u5feb", "\u4e5f\u5e76\u4e0d", "\u52a8\u8f84", "\u5373\u4fbf\u662f"], [" swiftly", " though", " arguably", " even", " barely", " hugely", " myriad", "\u98de\u901f"], [" swiftly", " arguably", " though", " myriad", "Though", " barely", " hugely", "\u98de\u901f"], [" \n\n", "Though", " though", "\u5373\u4fbf", " swiftly", " \r\n\r\n", "  \n\n", " arguably"], ["\u98de\u901f", "\u706b\u901f", "\u98de\u5feb", " swiftly", " arguably", "\u5373\u4fbf\u662f", "\u5373\u4fbf", "\u8ba4\u8ba4\u771f"], [" swiftly", " arguably", "\u98de\u901f", "\u706b\u901f", "\u98de\u5feb\u5730", " barely", " wildly", "\u98de\u5feb"], [" \n\n", " even", " though", "<|endoftext|>", "\n\n", " nearly", " barely", " swiftly"], [" \n\n", " barely", " nearly", "  \n\n", "<|endoftext|>", "\n\n", " rapidly", " even"], [" even", " nearly", " barely", " rapidly", " only", " quickly", " every", " just"], [" even", " only", " ", " ,", " nearly", " rapidly", " quickly", " just"], [" even", " only", " quickly", " ", " rapidly", " barely", " fast", " just"], [" even", " only", " quickly", " rapidly", " barely", " fast", " just", " rapid"], [" even", " only", " barely", " rapidly", " quickly", " nearly", " incredibly", " impossible"], [" even", " impossible", " barely", " rapidly", " incredibly", " only", " nearly", " quickly"], [" impossible", " barely", " even", " rapidly", " extremely", " incredibly", " nearly", " notoriously"], [" impossible", " even", " barely", " notoriously", " incredibly", " unpredictable", " relentlessly", " dozens"], [" impossible", " even", " every", " unpredictable", " incredibly", " dozens", " barely", " extremely"], [" impossible", " even", " unpredictable", " every", " incredibly", " barely", " relentlessly", " extremely"], [" impossible", " even", " unpredictable", " anything", " ANY", " any", " every", " incredibly"], [" impossible", " even", " unpredictable", " anything", " delays", " any", " time", " every"], [" unpredictable", " even", " delays", " time", " impossible", " any", " anywhere", " anything"], [" unpredictable", " delays", " anywhere", " even", " any", " anything", " milliseconds", " impossible"], [" unpredictable", " delays", " any", " even", " ANY", " unpredict", " anywhere", " anything"], [" unpredictable", " any", " anywhere", " delays", " ANY", " bursts", " every", " anything"], [" ANY", " any", " unpredictable", " anywhere", " every", " barely", " anything", " even"], [" ANY", " any", " anywhere", " anything", " anytime", " every", "\u7684\u4efb\u4f55", " unpredictable"], [" ANY", " any", " anywhere", "\u7684\u4efb\u4f55", " anything", " anytime", "\u4efb\u4f55\u4e00\u4e2a", "\u4efb\u4f55"], [" ANY", "\u7684\u4efb\u4f55", " any", "\u4efb\u4f55\u4e00\u4e2a", " anywhere", " anything", "\u4efb\u4f55", " anytime"], [" ANY", "\u7684\u4efb\u4f55", " any", "\u4efb\u4f55\u4e00\u4e2a", "\u4efb\u4f55", "\u4efb\u4f55\u5f62\u5f0f\u7684", " anything", " slightest"], [" ANY", "\u7684\u4efb\u4f55", "\u4efb\u4f55", "\u4efb\u4f55\u4e00\u4e2a", " any", "\u4efb\u4f55\u5f62\u5f0f\u7684", " anything", "anything"], [" ANY", "\u7684\u4efb\u4f55", "\u4efb\u4f55", " any", "\u4efb\u4f55\u5f62\u5f0f\u7684", "\u4efb\u4f55\u4e00\u4e2a", " Anything", " anything"], [" ANY", "\u7684\u4efb\u4f55", " any", "\u4efb\u4f55", "\u4efb\u4f55\u5f62\u5f0f\u7684", " anything", "\u4efb\u4f55\u4e00\u4e2a", " Anything"], [" ANY", " any", "\u7684\u4efb\u4f55", " anything", "\u4efb\u4f55", " Anything", "\u4efb\u4f55\u4e00\u4e2a", "\u4efb\u4f55\u5f62\u5f0f\u7684"], [" ANY", " any", "\u7684\u4efb\u4f55", "\u4efb\u4f55", " Anything", " anything", "\u4efb\u4f55\u4e00\u4e2a", "anything"], [" ANY", " any", "\u7684\u4efb\u4f55", "\u4efb\u4f55", " Anything", "_any", " anything", " Any"], [" ANY", " GC", " garbage", " Any", " any", " Anything", "\u4efb\u4f55", "\u7684\u4efb\u4f55"], [" GC", " ANY", " garbage", " Any", " any", " JVM", ".gc", "\u4efb\u4f55"], [" ANY", " GC", " Any", " garbage", " any", " You", "_any", " ONE"], [" GC", " garbage", "GC", "_GC", " ANY", " Any", ".gc", " JVM"], [" GC", " You", " Any", "GC", " If", " garbage", " ANY", " you"], [" GC", " You", " Any", " One", " If", "GC", " JVM", " *"], [" You", " Any", " If", " One", " GC", " A", " There", " Your"]], "p": [[0.4048, 0.4048, 0.1023, 0.0703, 0.0054, 0.0018, 0.0017, 0.0013], [0.2855, 0.0562, 0.0098, 0.003, 0.0015, 0.0013, 0.0011, 0.001], [0.5942, 0.2186, 0.0911, 0.0626, 0.0075, 0.0051, 0.0043, 0.0043], [0.0158, 0.0102, 0.0085, 0.0062, 0.0038, 0.0035, 0.0026, 0.0026], [0.0032, 0.0025, 0.0018, 0.0017, 0.0017, 0.0013, 0.0013, 0.0012], [0.0334, 0.007, 0.0066, 0.0043, 0.0035, 0.0035, 0.0033, 0.0027], [0.1669, 0.0509, 0.0449, 0.0372, 0.0329, 0.029, 0.0272, 0.0256], [0.0583, 0.0189, 0.0189, 0.0139, 0.0139, 0.0108, 0.0089, 0.007], [0.4024, 0.0898, 0.0744, 0.0481, 0.0291, 0.0291, 0.0274, 0.0227], [0.0047, 0.0022, 0.0017, 0.0016, 0.0014, 0.0013, 0.001, 0.001], [0.3008, 0.2494, 0.104, 0.0433, 0.015, 0.015, 0.0091, 0.0062], [0.0022, 0.0019, 0.0018, 0.0018, 0.0017, 0.0016, 0.0015, 0.0013], [0.006, 0.0024, 0.0021, 0.0018, 0.0017, 0.0016, 0.0014, 0.0014], [0.0037, 0.0027, 0.0017, 0.0015, 0.0015, 0.0011, 0.001, 0.0009], [0.0283, 0.0098, 0.0098, 0.0076, 0.0067, 0.0046, 0.0041, 0.0038], [0.0093, 0.0072, 0.0068, 0.0068, 0.0064, 0.0056, 0.005, 0.0039], [0.0311, 0.0189, 0.0167, 0.0138, 0.0108, 0.0101, 0.0101, 0.0095], [0.0042, 0.004, 0.0035, 0.0027, 0.0027, 0.0026, 0.0023, 0.002], [0.0056, 0.0026, 0.0026, 0.0023, 0.002, 0.0017, 0.0017, 0.0016], [0.0071, 0.0062, 0.004, 0.0033, 0.0033, 0.0031, 0.0029, 0.0028], [0.9053, 0.0024, 0.002, 0.0016, 0.0005, 0.0004, 0.0004, 0.0003], [0.004, 0.0031, 0.0029, 0.0023, 0.0019, 0.0018, 0.0018, 0.0017], [0.018, 0.0091, 0.0075, 0.0055, 0.0055, 0.0043, 0.004, 0.0033], [0.0113, 0.0057, 0.0053, 0.0037, 0.0037, 0.0037, 0.0037, 0.0029], [0.0264, 0.0219, 0.0081, 0.0063, 0.0063, 0.0052, 0.0036, 0.0034], [0.0036, 0.0032, 0.0028, 0.0027, 0.0025, 0.0022, 0.0019, 0.0018], [0.0099, 0.0044, 0.0037, 0.003, 0.0028, 0.0028, 0.0025, 0.0024], [0.0487, 0.0179, 0.0168, 0.0158, 0.0158, 0.0148, 0.0102, 0.0096], [0.1031, 0.0203, 0.0191, 0.0191, 0.0168, 0.0148, 0.0139, 0.0131], [0.0686, 0.0367, 0.0324, 0.0252, 0.0173, 0.0153, 0.0144, 0.0127], [0.0948, 0.0575, 0.0507, 0.0448, 0.0289, 0.0255, 0.0225, 0.0212], [0.1841, 0.1117, 0.032, 0.032, 0.0265, 0.0249, 0.0194, 0.0182], [0.2553, 0.1366, 0.0472, 0.0391, 0.0305, 0.0197, 0.0144, 0.0105], [0.176, 0.0781, 0.0445, 0.0418, 0.0347, 0.0224, 0.0164, 0.0144], [0.0646, 0.0535, 0.0444, 0.0346, 0.0305, 0.0286, 0.021, 0.0163], [0.0675, 0.0464, 0.0339, 0.0299, 0.0248, 0.0233, 0.0206, 0.016], [0.1343, 0.0464, 0.0282, 0.0219, 0.0194, 0.0171, 0.016, 0.016], [0.1592, 0.124, 0.0244, 0.0229, 0.0229, 0.0215, 0.0215, 0.0123], [0.1673, 0.1673, 0.0291, 0.0291, 0.0257, 0.0188, 0.0156, 0.0129], [0.1638, 0.1276, 0.0933, 0.0366, 0.0323, 0.0285, 0.0222, 0.0173], [0.1233, 0.1158, 0.062, 0.0353, 0.0312, 0.0293, 0.0258, 0.0228], [0.0889, 0.0784, 0.0737, 0.042, 0.0271, 0.0271, 0.0239, 0.0198], [0.109, 0.0484, 0.0333, 0.0312, 0.0293, 0.0215, 0.0202, 0.0202], [0.2069, 0.0462, 0.0408, 0.0338, 0.028, 0.0263, 0.0232, 0.0192], [0.1418, 0.0591, 0.0359, 0.0359, 0.0316, 0.0297, 0.0204, 0.018], [0.1438, 0.1052, 0.0679, 0.0599, 0.0412, 0.0195, 0.0172, 0.0152], [0.6287, 0.0663, 0.0485, 0.0259, 0.0157, 0.0157, 0.0139, 0.0115], [0.7188, 0.1415, 0.0316, 0.0217, 0.0169, 0.0085, 0.007, 0.0066], [0.742, 0.0782, 0.069, 0.0154, 0.0093, 0.0082, 0.006, 0.0053], [0.6836, 0.1525, 0.0561, 0.034, 0.0182, 0.0086, 0.0052, 0.0052], [0.6455, 0.144, 0.0771, 0.0413, 0.0195, 0.0118, 0.0092, 0.0063], [0.6172, 0.1377, 0.0737, 0.0307, 0.0271, 0.0239, 0.0164, 0.0145], [0.8859, 0.0343, 0.0236, 0.0162, 0.0098, 0.0053, 0.0041, 0.0041], [0.8649, 0.0335, 0.0203, 0.0158, 0.0158, 0.0109, 0.0075, 0.0058], [0.8415, 0.0288, 0.0254, 0.0175, 0.012, 0.0106, 0.0088, 0.005], [0.7924, 0.0507, 0.0307, 0.0239, 0.0128, 0.0113, 0.01, 0.005], [0.4183, 0.2537, 0.0933, 0.0343, 0.0303, 0.0267, 0.0184, 0.0134], [0.4687, 0.2509, 0.0815, 0.0171, 0.0171, 0.0125, 0.0081, 0.0076], [0.3598, 0.3175, 0.1031, 0.043, 0.0203, 0.0158, 0.0116, 0.0109], [0.9781, 0.0058, 0.0051, 0.0015, 0.0015, 0.0013, 0.001, 0.0009], [0.9584, 0.0137, 0.0044, 0.0039, 0.0031, 0.0024, 0.0014, 0.0012], [0.8376, 0.0473, 0.0368, 0.0253, 0.0077, 0.0044, 0.0036, 0.0028], [0.5585, 0.16, 0.11, 0.0756, 0.0589, 0.0102, 0.0062, 0.0043]], "ranks": {"Kotlin": [230312, 176439, 149639, 11727, 12330, 52928, 67207, 102630, 151680, 179978, 200986, 92121, 96072, 89108, 187416, 141796, 160686, 119770, 139718, 209191, 229010, 194957, 216811, 223720, 219849, 192458, 176150, 192528, 176836, 176764, 154834, 116596, 156272, 162612, 198664, 189414, 187289, 175615, 164859, 140464, 134851, 131359, 77193, 75647, 85360, 94739, 105731, 85171, 84683, 80500, 111371, 37224, 23368, 16754, 3107, 332, 120, 109, 138, 99, 121, 50, 54]}}, {"pos": 557, "top": [[".", ",", " \u2013", ";", "\u2013", "\u00a0", "\u00a0\u00a0", "?"], ["\u2013", ".", " \u2013", ",", "\u2013and", ";", " \u200b\u200b", ".\u2013"], [".", ",", "\u2013", " \u2013", ";", ".\u2013", "\u2026.", "\u2013and"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Shemale", " pornstar", " milfs", " Blowjob", " \u041f\u043e\u043f\u0440\u043e", " Guta", "\u54e5\u534e"], ["&A", "neighbor", "%A", ".@", "@return", "@c", "@a", ",@"], [" \u200b\u200b", "neighbor", "\u7fe1", ":href", "serialization", ".ua", "&A", "ANA"], ["   \n", "&A", "AAAA", "%A", "......", " \u200b\u200b", "\t  ", "\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0"], ["ustralian", "older", "iewicz", "htar", "isher", "ucar", "icano", "ureka"], ["   \n\n", "  \n\n", "\t\n\n", " \n\n", "older", " \t\n", "iewicz", "&A"], ["\u2013", "\u2013and", "!,", "\u00ads", "\u00adt", "\u00adtion", "Though", "\u00a0"], ["\u00a0", "...", "\u2013", "@", "2", "&", " [\u2026]", "Though"], ["-ish", " pricey", "verage", "qa", "-esque", "indow", "<|fim_suffix|>", "\u0636\u0627"], ["-ish", " pricey", "verage", "egis", "-esque", "ustralian", "ultiple", "qa"], [" pricey", "-ish", "-esque", " savvy", "qa", "verage", " fanc", " hefty"], [" pricey", " folks", " touted", " savvy", "-esque", " busted", " hefty", " sorta"], [" pricey", " touted", " folks", " hefty", " savvy", "-esque", " plenty", " sprawling"], [" folks", " hefty", "-esque", " pricey", " savvy", " plenty", " touted", " nicely"], [" pricey", " savvy", " hefty", "-esque", " touted", "-ish", " folks", " nasty"], ["-esque", " savvy", " hefty", " pricey", " folks", "-ish", " touted", " nasty"], [" hefty", " pricey", " myriad", "\u5373\u4fbf", " folks", "-esque", "Though", " seemingly"], ["Though", "<|endoftext|>", "though", "\u5373\u4fbf", " myriad", " swiftly", " though", " pricey"], [" pricey", "\u00e3ng", "ishi", " savvy", "\u8ddf\u4eba", "\u9ad8\u901f\u589e\u957f", " bigger", "\u54e5\u534e"], [" even", " pricey", " dozens", " {{--<", " barely", " nearly", " myriad", " dramatic"], [" even", " myriad", " nearly", " seemingly", " just", " much", " dozens", "Though"], ["Though", " \n\n", " &#", "\n\n", " though", " myriad", "   \n\n", " seemingly"], [" pricey", " hefty", "\u5373\u4fbf", " wildly", " hugely", "uptime", " quicker", " {{--<"], [" pricey", " spike", " hefty", " {{--<", " massive", " spikes", " wildly", " even"], ["\n\n", " even", " '", " \n\n", " nearly", " just", " seemingly", " though"], [" massive", " even", " spikes", " dozens", " spike", " nightly", " hefty", " barely"], [" spikes", " spike", " even", " massive", " dozens", " nightly", " ...", " **"], [" even", " dozens", " massive", " nearly", " spikes", " hundreds", " hit", " "], [" even", " dozens", " just", " ...", " hit", " a", " @", " hundreds"], [" even", " dozens", " massive", " hit", " just", " barely", " potentially", " hits"], [" even", " dozens", "\u2014even", "  \n\n", " spikes", "\u54ea\u6015", " sluggish", " nasty"], [" spikes", " sluggish", "\u52a8\u8f84", " dozens", "\u2014even", "  \n\n", "?...", " spike"], [" sluggish", "\u2026*", " slower", " spikes", " glitches", " slow", " spike", " downtime"], [" sluggish", " slower", " spikes", " slow", " unpredictable", " latency", "Milliseconds", " dozens"], [" slower", " sluggish", " spikes", " milliseconds", " latency", " slow", " unpredictable", " glitches"], [" sluggish", " slower", " milliseconds", " spikes", " slow", " jitter", " glitches", " latency"], [" garbage", " trash", " cleanup", " JVM", "\u5783\u573e", " scav", " jitter", " Java"], [" garbage", " cleanup", " trash", " JVM", " Java", " milliseconds", " sluggish", " jitter"], [" garbage", " cleanup", " trash", " jitter", " milliseconds", " microseconds", " glitch", " spikes"], [" garbage", " cleanup", " spikes", " milliseconds", " spike", " bursts", " jitter", " glitch"], [" cleanup", " garbage", " bursts", " spikes", " sudden", " milliseconds", " jitter", " spike"], [" cleanup", " bursts", " sudden", " garbage", " spikes", " jitter", " unpredictable", " spike"], [" cleanup", " bursts", " sudden", " spikes", " unpredictable", " garbage", " jitter", " average"], [" occasional", " sudden", " ANY", " tiny", " bursts", " slightest", " jitter", " unpredictable"], ["\u54ea\u6015", " slightest", "\u54ea\u6015\u662f", " ANY", "\u5373\u4f7f\u662f", " tiny", " occasional", "\u5076\u5c14"], ["\u54ea\u6015", " slightest", " occasional", "\u54ea\u6015\u662f", " sudden", "\u52a8\u8f84", " ANY", "\u5076\u5c14"], [" slightest", " ANY", "\u54ea\u6015", "\u7684\u4efb\u4f55", "\u4efb\u4f55\u5f62\u5f0f\u7684", "\u52a8\u8f84", " sudden", "\u54ea\u6015\u662f"], [" slightest", " ANY", "\u54ea\u6015", "\u4efb\u4f55\u5f62\u5f0f\u7684", "\u7684\u4efb\u4f55", "\u5c0f\u5c0f\u7684", "\u4efb\u4f55\u4e00\u4e2a", "\u8f7b\u5fae"], [" slightest", "\u8f7b\u5fae", "\u5076\u5c14", "\u5c0f\u5c0f\u7684", " occasional", " minor", "\u4efb\u4f55\u5f62\u5f0f\u7684", " sudden"], [" slightest", " minor", "\u8f7b\u5fae", "\u5c0f\u5c0f\u7684", "\u54ea\u6015", " sudden", " tiny", "\u8f7b\u5fae\u7684"], [" slightest", " minor", "\u5c0f\u5c0f\u7684", " tiny", " sudden", "\u8f7b\u5fae", " spike", " slight"], [" garbage", " slightest", " minor", " GC", " tiny", "\u5c0f\u5c0f\u7684", "\u8f7b\u5fae", " CPU"], [" garbage", " GC", "\u5783\u573e", "GC", "_GC", ".gc", " heap", "(gc"], [" GC", " garbage", "GC", "_GC", "\u5783\u573e", ".gc", "_gc", "gc"], [" GC", " garbage", "GC", "_GC", ".gc", "gc", "_gc", " gc"], [" GC", " garbage", "GC", "_GC", ".gc", "gc", " gc", "_gc"], [" GC", "GC", " garbage", " single", "_GC", " minor", ".gc", " gc"], [" GC", " garbage", " single", "GC", " minor", " micro", "_GC", ".gc"], [" GC", " single", " garbage", " minor", "GC", " micro", " tiny", "_GC"], [" GC", " single", " garbage", " minor", "GC", " micro", " standard", " "]], "p": [[0.934, 0.0527, 0.0043, 0.0023, 0.002, 0.0016, 0.0005, 0.0004], [0.2508, 0.2079, 0.1953, 0.0867, 0.03, 0.0281, 0.0104, 0.0063], [0.5906, 0.2462, 0.1318, 0.0123, 0.0066, 0.002, 0.0014, 0.0013], [0.0171, 0.0104, 0.0038, 0.0034, 0.0034, 0.0019, 0.0018, 0.0017], [0.0252, 0.0053, 0.0053, 0.005, 0.0047, 0.0044, 0.0044, 0.0041], [0.0289, 0.0022, 0.0015, 0.0014, 0.0011, 0.0011, 0.0011, 0.0011], [0.0072, 0.0072, 0.0053, 0.005, 0.0036, 0.0034, 0.0034, 0.003], [0.0119, 0.0056, 0.0034, 0.003, 0.0023, 0.0023, 0.0022, 0.0021], [0.0207, 0.0063, 0.0063, 0.0059, 0.0052, 0.0049, 0.0046, 0.0046], [0.0065, 0.0057, 0.0024, 0.0022, 0.0021, 0.0017, 0.0015, 0.0015], [0.0845, 0.0794, 0.0452, 0.0274, 0.0156, 0.0138, 0.0114, 0.0095], [0.0046, 0.004, 0.0038, 0.0031, 0.0016, 0.0014, 0.0013, 0.0013], [0.008, 0.007, 0.004, 0.004, 0.0035, 0.0023, 0.002, 0.0018], [0.0175, 0.0136, 0.0113, 0.0039, 0.0029, 0.0022, 0.0018, 0.0015], [0.02, 0.0129, 0.0101, 0.0095, 0.0074, 0.0069, 0.0065, 0.0054], [0.0226, 0.0166, 0.0094, 0.0083, 0.0083, 0.0065, 0.0024, 0.0021], [0.0266, 0.0151, 0.0151, 0.0134, 0.0125, 0.0118, 0.0071, 0.0063], [0.0161, 0.0133, 0.0125, 0.0104, 0.0067, 0.0063, 0.0056, 0.0046], [0.0218, 0.0205, 0.0192, 0.0159, 0.0085, 0.008, 0.008, 0.0071], [0.0106, 0.0093, 0.0082, 0.0077, 0.006, 0.0053, 0.0047, 0.0039], [0.0402, 0.019, 0.0066, 0.0062, 0.0058, 0.0035, 0.0027, 0.0023], [0.0067, 0.0015, 0.0014, 0.0014, 0.0012, 0.0012, 0.0012, 0.0011], [0.0026, 0.0026, 0.0021, 0.002, 0.0019, 0.0019, 0.0019, 0.0018], [0.0039, 0.003, 0.0028, 0.0025, 0.0025, 0.0023, 0.0023, 0.0022], [0.0196, 0.0087, 0.0053, 0.0053, 0.0036, 0.0034, 0.003, 0.003], [0.0069, 0.0035, 0.0031, 0.002, 0.0019, 0.0016, 0.0016, 0.0016], [0.0051, 0.0026, 0.0024, 0.0021, 0.002, 0.002, 0.0019, 0.0019], [0.0491, 0.0204, 0.0159, 0.0109, 0.0091, 0.0066, 0.0046, 0.0043], [0.0182, 0.0142, 0.0104, 0.0104, 0.0097, 0.0052, 0.0049, 0.0046], [0.0205, 0.017, 0.017, 0.0117, 0.011, 0.0097, 0.0071, 0.0063], [0.0983, 0.0319, 0.0219, 0.0081, 0.0076, 0.0071, 0.0071, 0.0067], [0.123, 0.0331, 0.0147, 0.0122, 0.0114, 0.0089, 0.0089, 0.0079], [0.1695, 0.0277, 0.0108, 0.0108, 0.0084, 0.0066, 0.0062, 0.0062], [0.0555, 0.0231, 0.0192, 0.0149, 0.0103, 0.0096, 0.0091, 0.0091], [0.0208, 0.0172, 0.0134, 0.0119, 0.0098, 0.0098, 0.0087, 0.0087], [0.0429, 0.0203, 0.0203, 0.0179, 0.0158, 0.0096, 0.0096, 0.0084], [0.0859, 0.0381, 0.0246, 0.0169, 0.0169, 0.0159, 0.0132, 0.0132], [0.045, 0.0373, 0.0241, 0.0226, 0.0213, 0.02, 0.0188, 0.0156], [0.0581, 0.0453, 0.0331, 0.0258, 0.0242, 0.0228, 0.0201, 0.0201], [0.555, 0.0663, 0.0663, 0.0131, 0.0102, 0.0095, 0.007, 0.007], [0.2978, 0.1095, 0.0356, 0.0314, 0.0216, 0.0123, 0.0108, 0.0102], [0.3225, 0.2083, 0.0282, 0.0249, 0.0234, 0.0081, 0.0076, 0.0076], [0.1984, 0.1203, 0.0391, 0.0367, 0.0223, 0.0209, 0.0185, 0.0163], [0.1101, 0.0805, 0.0459, 0.0431, 0.0405, 0.0278, 0.0217, 0.0217], [0.1114, 0.056, 0.0494, 0.0494, 0.0436, 0.0319, 0.0282, 0.0233], [0.0499, 0.0499, 0.0469, 0.0469, 0.0389, 0.0303, 0.0251, 0.0236], [0.0617, 0.0545, 0.0374, 0.0352, 0.0292, 0.0242, 0.0213, 0.0213], [0.6621, 0.0698, 0.0616, 0.031, 0.0213, 0.0137, 0.0121, 0.0089], [0.1408, 0.1167, 0.1097, 0.0457, 0.0356, 0.0334, 0.0295, 0.0245], [0.2382, 0.0993, 0.0641, 0.0469, 0.0303, 0.0285, 0.0222, 0.0196], [0.4587, 0.0515, 0.0427, 0.0354, 0.0275, 0.0215, 0.0202, 0.0157], [0.3566, 0.0426, 0.0214, 0.0201, 0.0201, 0.0201, 0.0157, 0.0122], [0.4, 0.1011, 0.0695, 0.0396, 0.024, 0.0226, 0.0146, 0.0137], [0.1182, 0.1111, 0.0594, 0.0339, 0.0281, 0.0205, 0.015, 0.0125], [0.1948, 0.1339, 0.0673, 0.0493, 0.0339, 0.0281, 0.0281, 0.0233], [0.8653, 0.1033, 0.0109, 0.0035, 0.0021, 0.0014, 0.0008, 0.0007], [0.7713, 0.195, 0.0206, 0.0028, 0.0025, 0.0022, 0.0019, 0.0017], [0.914, 0.0402, 0.0313, 0.0037, 0.0029, 0.0023, 0.002, 0.0014], [0.9252, 0.0461, 0.0192, 0.0023, 0.0016, 0.0014, 0.0011, 0.0007], [0.9594, 0.0176, 0.0155, 0.0019, 0.0014, 0.0009, 0.0004, 0.0002], [0.9306, 0.017, 0.015, 0.0133, 0.0049, 0.002, 0.0015, 0.0007], [0.903, 0.0241, 0.0137, 0.0137, 0.0094, 0.0033, 0.0013, 0.0011], [0.5796, 0.3515, 0.0164, 0.0154, 0.0042, 0.0034, 0.0027, 0.0013]], "ranks": {"Kotlin": [220674, 221357, 200666, 38476, 41993, 69024, 134472, 163254, 196950, 227946, 234142, 189099, 100881, 122368, 212445, 119025, 198860, 180229, 213211, 240712, 238029, 206471, 236051, 239175, 236067, 209031, 187112, 194131, 143907, 112225, 167887, 183286, 160919, 103234, 126430, 101618, 23256, 15727, 13353, 1656, 3401, 5534, 3216, 4828, 6383, 10895, 11455, 12147, 8302, 10017, 29023, 9150, 7523, 4467, 1979, 474, 297, 412, 486, 442, 942, 376, 350]}}, {"pos": 558, "top": [[" \u2013", ".", "\u2013", ",", "\u00a0\u00a0", "\u2026.", "\u00a0", "\u2026.."], [" \u2013", "\u2013", "\u2013and", "\u2013\u2013", " \u2013,", " \u2013**", ".\u2013", " |\u2013"], ["\u2013", " \u2013", "\u2013and", ".\u2013", "\u2013\u2013", "\u2026..", "**\u2013", " \u2013,"], [" milfs", " Shemale", " Strec", " Hidal", " Blowjob", " Pubbl", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Geile"], ["&(", "@g", " CDI", " Highlander", "insip", "#", " @_", "@$"], ["\u2013", "\u2013and", "odd", "\ud83d\ude42", "insip", " **\u2013", " \ud83d\ude42", "\u00a0\u00a0"], ["   \n", "     \n", "       \n", "   \r\n", "    \n", " \t\n", "enco", "\u2013"], ["   \n", "   \r\n", " veggies", "       \n", " \t\n", "    \n", " **\u20ac", "     \n"], ["   \n\n", "   \n", "    \n", "athon", "       \n", "\u2013and", " \t\n", "     \n"], ["\u2013", "\u2013and", "\u2013\u2013", "-ish", "-down", "\u00a0", " |\u2013", "-dollar"], ["\u2013", "...", "-", " \u2013", " [\u2026]", "\u2013and", "-C", "-ish"], [" veggies", " pricey", "-ish", "isecond", " skinny", " comfy", "ollar", " fridge"], [" veggies", " pricey", "-ish", " comfy", " skinny", "isecond", "flix", " fridge"], [" veggies", " pricey", " comfy", "-ish", " skinny", " meds", " vibe", "isecond"], [" pricey", "-tech", " skinny", " comfy", " veggies", "-lite", " vibe", " busted"], [" pricey", " skinny", " veggies", " kids", " comfy", " touted", " folks", "kids"], [" skinny", " pricey", " tech", "\u2013", " veggies", "-tech", "-ish", " kids"], ["-tech", "-ish", " pricey", " skinny", " veggies", " comfy", " tech", " carbs"], [" pricey", "-tech", "-ish", "-big", " comfy", " skinny", "kids", " teens"], ["-ish", " pricey", "-big", " comfy", "iha", "kids", " booze", " magari"], ["Though", "7", "5", "1", "-ish", "9", "2", "6"], ["ptime", "DTV", "uptime", "iha", " pricey", "Sharper", "YNC", "Splash"], [" pricey", " bigger", " ''", "Lifetime", "MSN", "\u7fb9", "uptime", "Deadline"], [" hugely", " bigger", "\u7fb9", " &#", "\u9592", " big", " pricey", " ''"], [" \n\n", " \r\n\r\n", "   \n\n", "\r\n\n", "  \n\n", "\r\n\r\n", "\t\n\n", "Though"], ["ptime", " framerate", "uptime", "DTV", "isecond", " pricey", " NYC", "YNC"], ["ptime", " clock", "uptime", " framerate", " clocks", " uptime", " milliseconds", " spike"], [" clock", " time", " speed", " night", "ptime", " hour", " weekend", "uptime"], ["ptime", " clock", "uptime", " speed", " night", " hour", " milliseconds", " peak"], ["ptime", " clock", " blackout", " peak", " speed", " milliseconds", " clocks", " night"], [" speed", " clock", " time", " night", " peak", " hour", " jitter", " spike"], [" time", " speed", " clock", " night", " fast", " day", " air", " hour"], [" time", " clock", " night", " speed", " peak", " weekend", " faster", " fast"], ["ptime", " peak", "uptime", "-time", " \u2013", "-hour", " time", " downtime"], ["ptime", "uptime", "\u2011", "/fast", " spike", " tech", " glitches", " glitch"], ["ptime", "/fast", " milliseconds", " downtime", "/time", " glitches", " latency", "uptime"], [" latency", "ptime", " milliseconds", " delay", " downtime", " slower", " delays", " time"], [" milliseconds", " latency", " time", "ptime", " peak", " delay", " downtime", " slower"], [" milliseconds", " latency", " time", " microseconds", "ptime", "Milliseconds", " delay", " downtime"], [" milliseconds", " garbage", " JVM", "Milliseconds", " latency", " microseconds", " Java", " trash"], [" milliseconds", " JVM", " microseconds", " Java", " time", " latency", "Milliseconds", " garbage"], [" milliseconds", " microseconds", "Milliseconds", " latency", " time", "\u6beb\u79d2", " downtime", "milliseconds"], [" milliseconds", " microseconds", " latency", "Milliseconds", " downtime", " peak", " pauses", " spikes"], [" milliseconds", " microseconds", "Milliseconds", " peak", " latency", " spike", " spikes", " delay"], [" milliseconds", " microseconds", "Milliseconds", " latency", " spike", " spikes", " jitter", " glitch"], [" milliseconds", " microseconds", " spikes", " spike", "Milliseconds", " glitch", " latency", " jitter"], [" milliseconds", " microseconds", "Milliseconds", " spikes", " spike", " latency", " jitter", " glitch"], ["\u54ea\u6015", " milliseconds", " slightest", " spikes", " microseconds", " even", " spike", " anywhere"], [" microseconds", " milliseconds", "-delay", "Milliseconds", " spikes", "\u54ea\u6015", " spike", " downtime"], ["-delay", "Milliseconds", " milliseconds", " microseconds", " downtime", " dozen", "\u54ea\u6015", " handful"], ["Milliseconds", "-delay", " milliseconds", "timeout", "uptime", "_DELAY", " millis", "ptime"], ["Milliseconds", " milliseconds", "-delay", "milliseconds", "!**", " microseconds", "timeout", " glitch"], [" milliseconds", " latency", "Milliseconds", " microseconds", " millis", "-delay", "milliseconds", "\u6beb\u79d2"], [" milliseconds", " latency", "Milliseconds", " millis", "milliseconds", "\u6beb\u79d2", " microseconds", "-delay"], [" milliseconds", "Milliseconds", "\u6beb\u79d2", " microseconds", "milliseconds", " millis", " latency", " mill"], [" milliseconds", "\u6beb\u79d2", "milliseconds", "Milliseconds", " microseconds", " millis", " latency", " mill"], [" milliseconds", "\u6beb\u79d2", " millis", "Milliseconds", " mill", "milliseconds", " microseconds", "mill"], [" milliseconds", "\u6beb\u79d2", " mill", " millis", "Milliseconds", "milliseconds", " ms", " microseconds"], [" ms", " milliseconds", "ms", "/ms", "\u6beb\u79d2", " mill", "(ms", "-ms"], [" ms", "ms", " milliseconds", "/ms", "(ms", "-ms", "\u6beb\u79d2", " mill"], [" ms", "ms", " milliseconds", "-ms", " mill", ".ms", "(ms", "/ms"], [" ms", "ms", " milliseconds", "-ms", " mill", " MS", "2", "(ms"], ["2", "5", "1", "3", "4", "ms", "6", "0"]], "p": [[0.6134, 0.2257, 0.0941, 0.0197, 0.0093, 0.0073, 0.0064, 0.005], [0.6665, 0.1685, 0.0454, 0.0138, 0.0037, 0.002, 0.0014, 0.0005], [0.812, 0.097, 0.0666, 0.009, 0.0033, 0.0021, 0.0017, 0.0014], [0.0149, 0.0051, 0.0043, 0.0031, 0.0029, 0.0029, 0.0026, 0.0024], [0.0048, 0.0033, 0.0024, 0.0021, 0.0021, 0.0021, 0.0018, 0.0018], [0.0075, 0.0062, 0.0026, 0.0019, 0.0019, 0.0018, 0.0018, 0.0017], [0.2733, 0.0271, 0.0211, 0.0128, 0.01, 0.0064, 0.006, 0.005], [0.0375, 0.0156, 0.0061, 0.0058, 0.0048, 0.0048, 0.0048, 0.0045], [0.0391, 0.0253, 0.0163, 0.0127, 0.0099, 0.0087, 0.0087, 0.0077], [0.1519, 0.0281, 0.0046, 0.0023, 0.0016, 0.0015, 0.0014, 0.0014], [0.5288, 0.015, 0.0141, 0.0124, 0.0097, 0.0071, 0.0067, 0.0059], [0.0064, 0.0053, 0.0037, 0.0027, 0.0024, 0.0022, 0.0018, 0.0018], [0.0112, 0.005, 0.0047, 0.0036, 0.0028, 0.0027, 0.0021, 0.0019], [0.0152, 0.0098, 0.0056, 0.0052, 0.0046, 0.003, 0.003, 0.003], [0.0324, 0.0082, 0.0077, 0.0077, 0.006, 0.0053, 0.005, 0.005], [0.0558, 0.0205, 0.0141, 0.0091, 0.0091, 0.0076, 0.0067, 0.0063], [0.0406, 0.0337, 0.0246, 0.0192, 0.0169, 0.0169, 0.0169, 0.014], [0.0528, 0.0438, 0.0266, 0.0172, 0.0151, 0.0142, 0.0111, 0.0092], [0.0253, 0.0197, 0.0163, 0.0135, 0.0119, 0.0105, 0.0064, 0.0056], [0.0144, 0.0136, 0.0112, 0.0053, 0.0036, 0.0034, 0.003, 0.0028], [0.0112, 0.0036, 0.0034, 0.0032, 0.0028, 0.0027, 0.0027, 0.0027], [0.0066, 0.0033, 0.0033, 0.0029, 0.0024, 0.0021, 0.002, 0.0018], [0.0034, 0.0023, 0.0021, 0.0019, 0.0019, 0.0015, 0.0014, 0.0014], [0.0023, 0.0021, 0.0015, 0.0013, 0.0012, 0.0012, 0.0011, 0.0011], [0.1258, 0.0763, 0.0141, 0.0091, 0.0086, 0.0076, 0.0076, 0.0063], [0.0104, 0.0098, 0.0098, 0.0041, 0.0032, 0.0026, 0.0022, 0.0022], [0.0126, 0.0126, 0.0092, 0.0049, 0.0041, 0.0038, 0.0032, 0.0028], [0.0203, 0.0108, 0.0102, 0.009, 0.0058, 0.0055, 0.004, 0.0037], [0.0213, 0.0188, 0.0101, 0.0095, 0.0065, 0.0057, 0.0057, 0.0054], [0.0315, 0.0261, 0.0131, 0.0131, 0.0116, 0.0109, 0.009, 0.009], [0.0374, 0.0374, 0.033, 0.0213, 0.0107, 0.0074, 0.0069, 0.0057], [0.041, 0.041, 0.0319, 0.03, 0.0091, 0.0086, 0.0071, 0.0063], [0.0254, 0.0175, 0.0154, 0.0145, 0.0099, 0.0073, 0.006, 0.006], [0.0249, 0.0086, 0.0081, 0.0059, 0.0059, 0.0059, 0.0059, 0.0049], [0.0394, 0.0271, 0.0211, 0.012, 0.0113, 0.0113, 0.01, 0.01], [0.0676, 0.0437, 0.0234, 0.0194, 0.0125, 0.0125, 0.0117, 0.0117], [0.0705, 0.0585, 0.0585, 0.019, 0.0139, 0.013, 0.0123, 0.0115], [0.0737, 0.0651, 0.0611, 0.0271, 0.0239, 0.0211, 0.0094, 0.0094], [0.2516, 0.087, 0.0561, 0.0301, 0.0249, 0.0194, 0.0161, 0.0125], [0.2519, 0.0871, 0.0528, 0.0341, 0.0283, 0.022, 0.0125, 0.0125], [0.2128, 0.0506, 0.0446, 0.0326, 0.0271, 0.0239, 0.0211, 0.0154], [0.4871, 0.0846, 0.0376, 0.0311, 0.0201, 0.013, 0.013, 0.0101], [0.4543, 0.0654, 0.0423, 0.0423, 0.0146, 0.0137, 0.0129, 0.0107], [0.4327, 0.055, 0.0244, 0.0244, 0.019, 0.019, 0.0168, 0.0168], [0.3179, 0.0856, 0.0458, 0.0357, 0.0296, 0.0261, 0.0191, 0.0168], [0.1889, 0.0576, 0.0478, 0.0478, 0.0272, 0.0199, 0.0187, 0.0176], [0.1519, 0.0865, 0.0463, 0.0206, 0.0193, 0.0141, 0.0133, 0.0125], [0.0644, 0.0367, 0.0252, 0.0237, 0.0223, 0.0173, 0.0163, 0.0163], [0.0233, 0.0233, 0.0218, 0.0193, 0.016, 0.016, 0.015, 0.0133], [0.053, 0.0439, 0.0302, 0.0126, 0.0086, 0.0086, 0.0081, 0.0067], [0.0397, 0.035, 0.0188, 0.01, 0.01, 0.0065, 0.0057, 0.005], [0.0781, 0.0536, 0.0144, 0.0136, 0.012, 0.012, 0.0106, 0.0082], [0.3435, 0.1623, 0.0766, 0.03, 0.03, 0.0282, 0.022, 0.0182], [0.4687, 0.1046, 0.0464, 0.0361, 0.034, 0.0264, 0.0264, 0.0125], [0.7692, 0.0631, 0.0631, 0.0434, 0.0298, 0.0141, 0.0031, 0.0018], [0.6992, 0.1072, 0.0394, 0.0348, 0.0307, 0.0239, 0.0078, 0.0069], [0.611, 0.1363, 0.0471, 0.0391, 0.0324, 0.0252, 0.0209, 0.0119], [0.7314, 0.06, 0.0235, 0.0235, 0.0207, 0.0152, 0.0104, 0.0092], [0.719, 0.1416, 0.0669, 0.0217, 0.0192, 0.0116, 0.0055, 0.0033], [0.7083, 0.23, 0.0353, 0.0051, 0.0045, 0.0031, 0.0023, 0.0021], [0.6388, 0.2663, 0.0318, 0.0193, 0.0125, 0.003, 0.003, 0.0026], [0.5507, 0.334, 0.0166, 0.0107, 0.0089, 0.0045, 0.0042, 0.0031], [0.8342, 0.1129, 0.0471, 0.0027, 0.0021, 0.0002, 0.0002, 0.0002]], "ranks": {"Kotlin": [173070, 120161, 96736, 15038, 17721, 40549, 51474, 114578, 168240, 214831, 203017, 115460, 45637, 43111, 174523, 155477, 155455, 123886, 135122, 196686, 203067, 161868, 196718, 210834, 202784, 119584, 85456, 126564, 125321, 44255, 117643, 137068, 60339, 62248, 19680, 11887, 758, 1312, 1087, 56, 279, 695, 446, 472, 534, 2028, 2527, 2764, 3763, 9778, 15420, 3423, 1432, 394, 870, 306, 199, 647, 708, 1189, 1169, 6531, 7624]}}, {"pos": 559, "top": [[" \u2013", ".", ",", "\u2013", "y", ";", "\u2013and", ".\u2013"], [" \u2013", "\u2013and", "\u2013", "een", " \u2013**", ".\u2013", " \u2013,", "eer"], ["\u2013", "\u2013and", " \u2013", ".\u2013", " \u2013,", " \u2013**", "**\u2013", " *\u2013"], [" milfs", " Blowjob", " Shemale", " ;;^", " cumshot", " Geile", " Strec", " Pubbl"], ["een", "agog", "\u516e\u516e", "flix", "carat", "\u9418", "\u96f6\u516b", "eer"], ["ropol", " \u200b\u200b", "carat", ".nz", " Azerbai", "\u0441\u043e\u0442", "flix", "een"], ["pants", "tone", "\u4f46\u4e0d\u9650\u4e8e", "__)", "een", "flix", " --", "b\u0259"], ["ropol", "een", "atson", "\u6700\u65b0\u53d1\u5e03", "ulance", "owski", "\u53ef\u68a6", "flix"], ["egger", "een", "/&", " \u200b\u200b", " \n    \n", " \n \n", "athon", "\u6700\u65b0\u53d1\u5e03"], ["\u2013and", "een", "eer", "-ish", "voud", "atson", "esian", "\u5162\u5162\u4e1a\u4e1a"], ["een", "-&", "y", "eer", ".&", "g", "-ish", "--"], ["eer", "egger", "esian", "yce", "pants", "-ish", "uari", "ily"], ["eer", "een", "flix", "-ish", "ball", "pants", "ish", " veggies"], ["-ish", "een", "tour", "ball", "flix", "esian", "tig", " veggies"], ["ish", "-ish", " --", "een", "tour", "y", "tone", " kids"], [" kids", "es", "y", "ish", "ball", "kids", " veggies", " --"], ["y", "es", "e", "t", "ish", "w", "ball", "-ish"], ["-ish", "y", "ish", "ball", "es", "tone", "een", "kids"], ["/&", "ish", "-&", "-ish", "een", "fish", "ball", "eer"], ["-&", "ish", "/&", " --", "een", "eer", "ingly", "fully"], [" --", "-&", "e", "y", "ish", "een", "t", "--"], ["ish", "ingly", "fully", "&apos", "/&", "\u8ddf\u4eba", "eer", "&quot"], [" --", "fully", "ish", " ``", " ''", "ingly", "ily", "ey"], [" --", "fully", "ish", "een", "ful", "e", "ey", " ''"], [" --", "fully", "ish", " &#", " {{--<", "Whilst", "--", " battling"], [" pornstar", "bike", "Sharper", "\u76f8\u5173\u6cd5\u5f8b\u8d23\u4efb", " ;;^", "punk", "ily", "ppy"], [" --", "\u5176\u5b83\u5a92\u4f53", "&quot", " gaming", "ily", " {{--<", "bike", " tech"], [" --", " \n\n", "fully", "\n\n", " complex", " video", " touring", " gaming"], [" tech", " games", " gaming", " physics", " video", " laser", " technology", " game"], [" complex", " tech", " games", " technology", " battles", " gaming", " combat", " game"], [" complex", " large", " game", " high", " games", " heavy", " fire", " live"], [" large", " complex", " high", " live", " heavy", " game", " fighting", " fire"], [" complex", " large", " high", " time", " live", " heavy", " massive", " fighting"], [" tech", " complex", " mega", " technology", " battles", " multimedia", " digital", " gaming"], [" tech", "/&", "lemetry", "fuck", " telemetry", "\u2011", " mega", "-heavy"], ["\u2026*", "2", "\u2011", " ...\"", " ...)", "3", " tech", "...*"], [" tech", "lemetry", "ptime", " mega", " overclock", "-heavy", "\u2011", " lifecycle"], ["\u2011", " tech", " /", " complex", " mega", " -", "lemetry", " night"], [" complex", " time", " tech", " /", " hours", " milliseconds", "\u2011", " -"], [" complex", " time", " milliseconds", "time", " latency", " tech", " load", "complex"], [" time", "time", " milliseconds", " hours", " latency", " complex", " downtime", " tech"], [" milliseconds", " time", "time", " downtime", " hours", " latency", "-time", " jitter"], [" milliseconds", " downtime", " time", " spikes", " explosions", " weeks", " bursts", " overtime"], [" milliseconds", " spikes", " weeks", " minutes", " time", " spike", " unpredictable", " hours"], [" milliseconds", " spikes", " spike", " minutes", " weeks", " bursts", " unpredictable", " time"], [" minutes", " milliseconds", " spikes", " ~", " burst", " seconds", " spike", " emergency"], ["\u2011", " milliseconds", " weeks", " bursts", " occasional", " spikes", " minutes", " unpredictable"], ["\u2011", " occasional", " bursts", " spikes", " weeks", " minutes", " downtime", " spike"], [" dozen", "-hour", " downtime", "/month", "-minute", " bursts", "-week", " spikes"], ["-minute", "-hour", "-delay", " downtime", " glitch", " dozen", "-heavy", "-sized"], ["-minute", "\u2013", " downtime", "-delay", "-tier", "/month", "-heavy", "-hour"], [" downtime", "-minute", " CPU", "-delay", "\u2013", " glitch", "-hour", "-cycle"], ["-minute", " CPU", " downtime", "-delay", "\u2013", "-hour", "-cycle", "-byte"], ["-minute", " downtime", "-delay", "-hour", "\u2013", " CPU", "-byte", "-cycle"], ["-byte", " milliseconds", " CPU", "-delay", " microseconds", "-thread", " latency", "Milliseconds"], [" garbage", " GC", "-byte", " CPU", "-delay", " milliseconds", "-thread", "GC"], [" GC", "-byte", " garbage", "GC", "-thread", "gc", " pause", " gc"], [" GC", "-byte", " garbage", "GC", "gc", "-thread", " gc", "-minute"], [" ms", "ms", "/ms", "-ms", "(ms", ".ms", "_ms", " MS"], ["ms", " ms", "-ms", " GC", "/ms", "(ms", ".ms", " MS"], ["ms", " ms", "-ms", " MS", " GC", ".ms", "/ms", "(ms"], ["ms", " ms", " MS", " GC", "\u2013", "-ms", "GC", ".ms"], ["ms", "0", " ms", "-ms", "\u2013", "MS", "5", "gc"]], "p": [[0.4669, 0.3637, 0.0811, 0.0716, 0.0033, 0.0025, 0.0022, 0.0014], [0.0815, 0.0362, 0.0133, 0.0125, 0.0081, 0.0034, 0.0032, 0.0026], [0.2649, 0.2649, 0.1938, 0.1509, 0.0109, 0.0103, 0.0091, 0.0049], [0.0116, 0.0062, 0.0062, 0.0058, 0.0058, 0.0035, 0.0033, 0.0029], [0.0032, 0.0024, 0.0022, 0.0022, 0.002, 0.0018, 0.0017, 0.0017], [0.0041, 0.0034, 0.0032, 0.0027, 0.0023, 0.0022, 0.0022, 0.0019], [0.0094, 0.0094, 0.0088, 0.0069, 0.0069, 0.005, 0.0039, 0.0037], [0.0064, 0.006, 0.0047, 0.0044, 0.0037, 0.0037, 0.0029, 0.0027], [0.0355, 0.0139, 0.0102, 0.0102, 0.0096, 0.0079, 0.0058, 0.0058], [0.0125, 0.008, 0.0063, 0.0049, 0.0036, 0.0031, 0.0026, 0.0025], [0.0619, 0.0513, 0.0292, 0.0292, 0.0138, 0.013, 0.0114, 0.0114], [0.0044, 0.0041, 0.0034, 0.0032, 0.0032, 0.003, 0.0025, 0.0025], [0.0095, 0.0084, 0.0058, 0.0058, 0.0037, 0.0033, 0.0031, 0.0031], [0.0078, 0.0044, 0.0042, 0.0042, 0.0034, 0.0032, 0.0032, 0.0029], [0.0079, 0.0065, 0.0061, 0.0061, 0.0051, 0.004, 0.0033, 0.0033], [0.0148, 0.0096, 0.0096, 0.0066, 0.0062, 0.0055, 0.0055, 0.0048], [0.0848, 0.0401, 0.0259, 0.0259, 0.0178, 0.0167, 0.0167, 0.013], [0.0192, 0.0169, 0.014, 0.0124, 0.0124, 0.0052, 0.0049, 0.0043], [0.0296, 0.018, 0.014, 0.0102, 0.0102, 0.0066, 0.0062, 0.0058], [0.033, 0.0156, 0.0156, 0.0147, 0.0089, 0.0054, 0.0048, 0.0048], [0.024, 0.0176, 0.0137, 0.0121, 0.0107, 0.0094, 0.0088, 0.0078], [0.0096, 0.0035, 0.0026, 0.0019, 0.0017, 0.0015, 0.0015, 0.0014], [0.0224, 0.0211, 0.0186, 0.0099, 0.0088, 0.0068, 0.005, 0.0039], [0.0673, 0.0264, 0.0097, 0.0059, 0.004, 0.004, 0.0034, 0.0026], [0.0642, 0.0105, 0.0044, 0.0039, 0.003, 0.0025, 0.0023, 0.0019], [0.0041, 0.0027, 0.0025, 0.0018, 0.0015, 0.0015, 0.0014, 0.0013], [0.0033, 0.0024, 0.0022, 0.0022, 0.0017, 0.0016, 0.0014, 0.0014], [0.0232, 0.011, 0.0049, 0.0038, 0.0036, 0.0036, 0.0031, 0.0031], [0.0066, 0.0048, 0.0045, 0.0037, 0.0035, 0.0033, 0.0033, 0.0033], [0.0084, 0.007, 0.007, 0.0066, 0.0058, 0.0055, 0.0055, 0.0051], [0.0252, 0.0135, 0.0112, 0.0105, 0.0105, 0.0105, 0.0099, 0.0087], [0.0221, 0.0207, 0.0161, 0.0111, 0.0098, 0.0098, 0.0092, 0.0086], [0.0202, 0.019, 0.0123, 0.0084, 0.0084, 0.0079, 0.0074, 0.007], [0.0503, 0.0153, 0.0112, 0.0077, 0.0072, 0.006, 0.0056, 0.0056], [0.022, 0.0133, 0.0052, 0.0043, 0.0041, 0.0036, 0.0036, 0.003], [0.0478, 0.0422, 0.0256, 0.0187, 0.0146, 0.0129, 0.0121, 0.0073], [0.0184, 0.0099, 0.0056, 0.0044, 0.0041, 0.0036, 0.0036, 0.003], [0.0255, 0.0128, 0.01, 0.0083, 0.0083, 0.0057, 0.0047, 0.0047], [0.0878, 0.0642, 0.0152, 0.0112, 0.0105, 0.0098, 0.0087, 0.0087], [0.0549, 0.0377, 0.0167, 0.0157, 0.0139, 0.0084, 0.0074, 0.007], [0.1546, 0.0534, 0.0286, 0.0173, 0.0163, 0.0163, 0.0127, 0.0119], [0.0575, 0.0507, 0.0477, 0.0255, 0.0106, 0.0106, 0.01, 0.0088], [0.0499, 0.0365, 0.0221, 0.0183, 0.0162, 0.0134, 0.0118, 0.0111], [0.0713, 0.0231, 0.0217, 0.018, 0.018, 0.0169, 0.0159, 0.014], [0.0342, 0.0266, 0.0195, 0.0183, 0.0134, 0.0111, 0.0111, 0.0098], [0.0254, 0.0154, 0.0145, 0.0145, 0.0106, 0.0106, 0.0106, 0.0099], [0.0424, 0.02, 0.0146, 0.0121, 0.0114, 0.0114, 0.0107, 0.0101], [0.1359, 0.0208, 0.0173, 0.0143, 0.0135, 0.0092, 0.0087, 0.0082], [0.0311, 0.0227, 0.0227, 0.0201, 0.0156, 0.0156, 0.0147, 0.0107], [0.0357, 0.0335, 0.0261, 0.0203, 0.0179, 0.0158, 0.0131, 0.0109], [0.0404, 0.0315, 0.0296, 0.0245, 0.0191, 0.0168, 0.014, 0.0123], [0.0875, 0.0388, 0.0284, 0.0195, 0.0172, 0.0118, 0.0118, 0.0098], [0.0992, 0.0875, 0.0822, 0.0469, 0.044, 0.0267, 0.0251, 0.0183], [0.1332, 0.0759, 0.0522, 0.046, 0.0406, 0.0359, 0.0316, 0.0279], [0.1834, 0.1112, 0.0922, 0.0595, 0.0525, 0.0248, 0.0182, 0.0182], [0.2943, 0.1785, 0.1306, 0.0699, 0.033, 0.0257, 0.0227, 0.0095], [0.5083, 0.187, 0.165, 0.0269, 0.0135, 0.0082, 0.0064, 0.005], [0.6219, 0.1388, 0.0578, 0.0578, 0.0257, 0.02, 0.0089, 0.0045], [0.8286, 0.144, 0.0104, 0.0072, 0.0034, 0.0026, 0.0011, 0.001], [0.5845, 0.4017, 0.0051, 0.0035, 0.0011, 0.001, 0.0009, 0.0006], [0.6167, 0.374, 0.0025, 0.0015, 0.0013, 0.0008, 0.0007, 0.0007], [0.8298, 0.1634, 0.0016, 0.0014, 0.001, 0.0007, 0.0003, 0.0002], [0.9927, 0.0036, 0.0025, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001]], "ranks": {"Kotlin": [176704, 96376, 68399, 17133, 13453, 30034, 40713, 107570, 112900, 158201, 136684, 45770, 38817, 42919, 136692, 83049, 96371, 112500, 83109, 170019, 224576, 202415, 215845, 233868, 234648, 131094, 135776, 176767, 140947, 79599, 142457, 169684, 184222, 35016, 20738, 9699, 10228, 12603, 10149, 2906, 6215, 11751, 5286, 3851, 5886, 20168, 24546, 26125, 34935, 24271, 26118, 5730, 2023, 1041, 414, 199, 143, 257, 931, 1060, 1461, 1547, 2928]}}, {"pos": 560, "top": [[" \u2013", "\u2013", "i", " [\u2026]", "\u2013and", " \u2013,", ".\u2013", "\u2026.."], [" \u2013", "\u2013", "\u2013\u2013", "\u2013and", " \u2013,", " *\u2013", "**\u2013", " \u2013**"], ["\u2013", " \u2013", "\u2013and", ".\u2013", "\u2013\u2013", " \u2013,", " [\u2026]", "\u2026"], [" FStar", " ``", " Ejem", ")__", " Insg", "``", ":__", " Eskort"], [" \ufffd", "\u2013\u2013", " -->", "\ufffd", "-->", "@", " @", "\ufffd\ufffd"], ["(ms", " \t\n", "\u2013\u2013", " \n \n", " \n  \n", " \ufffd", " \r\n \r\n", "-->"], ["\ufffd\ufffd", " \ufffd", "\ufffd", " \n \n", " ____", " \n  \n", "-->", " -->"], [" \ufffd", "\ufffd\ufffd", " \n \n", " \r\n \r\n", "\ufffd", "    \n", " ____", "   \n"], [" \ufffd", " \n \n", "\ufffd\ufffd", "   \n\n", "\ufffd", " \n\n\n", " \n    \n", " \n  \n"], [" \n \n", " \ufffd", "\ufffd\ufffd", "\u2013\u2013", " \r\n \r\n", " \n  \n", "--", "\ufffds"], ["\ufffd\ufffd", " \n \n", " \ufffd", "--", " \n  \n", "\ufffd", "</tool_response>", "\u2013\u2013"], [" \n \n", "\u6700\u65b0\u53d1\u5e03", "\ufffd\ufffd", " \n    \n", "</tool_response>", " $__", " \r\n \r\n", " \n\t\n"], [" \n \n", "\u6700\u65b0\u53d1\u5e03", ".fm", " $__", "\ufffd\ufffd", "\uff62", " \ufffd", "\u20ac\u201c"], ["\u6700\u65b0\u53d1\u5e03", " \n \n", "--", "\ufffd\ufffd", " \ufffd", ".fm", "Whilst", "\u2013\u2013"], ["--", " \ufffd", "\u2013", " ", "\ufffd", " \n \n", " \u2013", "&"], [" \ufffd", "--", " ", " off", " w", " incredibly", " &", " --"], ["--", " \ufffd", " \u2013", "\u2013", "\ufffd", ",", " ", "\ufffds"], ["--", " \ufffd", "\u2013", "\u6700\u65b0\u53d1\u5e03", "\ufffds", "\ufffd", "\u2013\u2013", " \u2013"], [" \ufffd", "--", "\ufffd\ufffd", "\ufffd", "&", " --", "<|endoftext|>", " &"], ["<|endoftext|>", "--", " \ufffd", " --", "&", "\ufffd", "\ufffd\ufffd", " \n\n"], ["<|endoftext|>", "\n\n", " \n\n", "--", "  \n\n", " \ufffd", "   \n\n", " \n\n\n"], [" --", " ''", " \ufffd", " ``", " \"\"", "&quot", " lingering", "\ufffdt"], [" --", "--", " \ufffd", " ''", " \n\n", "\n\n", "<|endoftext|>", "\ufffd\ufffd"], ["<|endoftext|>", " \n\n", " --", "--", " \ufffd", "\n\n", "\ufffd\ufffd", " \n  \n"], [" \n\n", "\n\n", "  \n\n", "   \n\n", " \n\n\n", " \r\n\r\n", " \n  \n", " \n \n"], [" \n\n", "\n\n", "   \n\n", "  \n\n", " \n  \n", " \n \n", " \r\n\r\n", " \n\n\n"], [" \n\n", "\n\n", " microseconds", " \n  \n", " ____", " \n \n", "   \n\n", " \\\""], [" \n\n", "\n\n", "  \n\n", "   \n\n", " \n  \n", " --", " \n", " ____"], [" \n\n", " \n  \n", "\n\n", " \n    \n", " microseconds", "   \n\n", " \n \n", " \n"], [" \n\n", " \n  \n", " ____", " \n", " __", " \n \n", " \n    \n", "____"], [" \n\n", " \n  \n", " \n", " \\\"", " \n    \n", " \n \n", "  \n\n", "   \n\n"], [" \n\n", " \\\"", " \n  \n", " flick", " speed", " or", " ", " jitter"], [" or", " flick", " \\\"", " jitter", " speed", " \n  \n", " bursts", " \u2013"], [" latency", " jitter", " flick", " delay", " microseconds", " tech", " milliseconds", " \u2013"], [" jitter", " latency", " flick", " tech", " delay", " microseconds", " spike", " milliseconds"], [" jitter", " latency", " delay", " downtime", " shutdown", "/fast", " stutter", " flick"], [" latency", " jitter", " delay", " downtime", " stutter", " flick", " milliseconds", " bottleneck"], [" latency", " jitter", " delay", " downtime", " milliseconds", " flick", " shutdown", " stutter"], [" latency", " delay", " jitter", " downtime", " milliseconds", " time", " spike", " microseconds"], [" latency", " delay", " downtime", " jitter", " milliseconds", " delays", " time", " microseconds"], [" delay", " latency", " downtime", " delays", " time", " milliseconds", " jitter", " microseconds"], [" delay", " latency", " downtime", " delays", " time", " milliseconds", " jitter", " microseconds"], [" latency", " delay", " milliseconds", " downtime", " delays", " time", " microseconds", " duration"], [" delay", " latency", " milliseconds", " delays", " downtime", " jitter", " microseconds", " spike"], [" delay", " latency", " jitter", " downtime", " spikes", " delays", " spike", " bursts"], [" delay", " spike", " spikes", " jitter", " downtime", " latency", " bursts", " glitch"], [" glitches", " downtime", " delay", " spikes", " glitch", " jitter", " bursts", " spike"], [" glitch", " glitches", " downtime", " spike", " spikes", " bursts", " accidental", " delay"], [" glitch", " glitches", " downtime", " spike", " spikes", " jitter", " bursts", " latency"], [" glitch", " glitches", " downtime", " jitter", " spike", " accidental", " delay", " spikes"], [" glitch", " glitches", " downtime", " cleanup", " spike", " jitter", " delay", " spikes"], [" CPU", " glitch", " glitches", " GPU", " spike", " cleanup", " downtime", " pause"], [" CPU", " glitch", " spikes", " spike", " glitches", " GPU", " pause", " latency"], [" CPU", " glitch", " pause", " spike", " spikes", " GPU", " glitches", " cleanup"], [" garbage", " GC", " CPU", " JVM", " GPU", "GC", "\u5783\u573e", " glitch"], [" garbage", " GC", "\u5783\u573e", "GC", " gc", " JVM", " heap", " trash"], [" GC", "GC", " garbage", "_gc", " gc", "gc", "\u5783\u573e", "_GC"], [" GC", "GC", "gc", " gc", "_gc", " garbage", "_GC", ".gc"], [" GC", "GC", "gc", " gc", "_gc", " garbage", "_GC", "(gc"], [" GC", "GC", " gc", "gc", "_GC", "_gc", " garbage", ".gc"], [" GC", "GC", " pause", " gc", "gc", " garbage", " Pause", "_gc"], [" GC", "GC", " pause", " gc", " Pause", "gc", " garbage", "_gc"], [" GC", "GC", " pause", " gc", " garbage", " allocation", "_gc", "gc"]], "p": [[0.9543, 0.0224, 0.0175, 0.003, 0.0004, 0.0003, 0.0002, 0.0002], [0.9085, 0.0311, 0.0311, 0.0095, 0.0089, 0.0026, 0.0008, 0.0007], [0.7422, 0.241, 0.0093, 0.0021, 0.0016, 0.0011, 0.0009, 0.0008], [0.0195, 0.0134, 0.0092, 0.0077, 0.0077, 0.0063, 0.0056, 0.0056], [0.1923, 0.1322, 0.0551, 0.0551, 0.0486, 0.0277, 0.026, 0.026], [0.0358, 0.0278, 0.0262, 0.0231, 0.0231, 0.0217, 0.0159, 0.0149], [0.4916, 0.2322, 0.0854, 0.0356, 0.0203, 0.0102, 0.009, 0.0085], [0.2282, 0.2282, 0.2014, 0.0577, 0.029, 0.0241, 0.0187, 0.0187], [0.208, 0.1835, 0.1113, 0.056, 0.0436, 0.041, 0.0385, 0.0319], [0.2648, 0.1175, 0.067, 0.0591, 0.0406, 0.0246, 0.0231, 0.0217], [0.2982, 0.205, 0.0708, 0.0487, 0.0295, 0.0245, 0.0191, 0.0179], [0.154, 0.0642, 0.05, 0.0389, 0.0323, 0.0236, 0.0236, 0.0222], [0.0588, 0.038, 0.0216, 0.0169, 0.0158, 0.0123, 0.0109, 0.0102], [0.0268, 0.0209, 0.0143, 0.0127, 0.0127, 0.0093, 0.0093, 0.0093], [0.1998, 0.0326, 0.0224, 0.0164, 0.0099, 0.0082, 0.0073, 0.0064], [0.0261, 0.0203, 0.009, 0.008, 0.0048, 0.0048, 0.0045, 0.0043], [0.0909, 0.0379, 0.023, 0.0191, 0.0139, 0.0096, 0.0085, 0.0075], [0.084, 0.045, 0.0114, 0.0114, 0.0114, 0.0094, 0.0073, 0.0069], [0.161, 0.1334, 0.063, 0.0317, 0.0205, 0.0181, 0.0071, 0.0071], [0.3272, 0.2249, 0.0605, 0.0324, 0.0127, 0.0112, 0.0072, 0.005], [0.9861, 0.0055, 0.0052, 0.0005, 0.0002, 0.0001, 0.0001, 0.0001], [0.019, 0.019, 0.0179, 0.0168, 0.0123, 0.0096, 0.0051, 0.0045], [0.2447, 0.123, 0.0619, 0.0453, 0.0275, 0.0167, 0.0167, 0.0167], [0.2002, 0.1559, 0.1465, 0.0835, 0.0506, 0.0394, 0.0211, 0.0136], [0.925, 0.0461, 0.0132, 0.0071, 0.0026, 0.0013, 0.0009, 0.0008], [0.9594, 0.01, 0.0083, 0.0061, 0.0033, 0.0025, 0.0024, 0.0011], [0.5166, 0.0398, 0.02, 0.0156, 0.0147, 0.0138, 0.0095, 0.0074], [0.8541, 0.131, 0.0051, 0.002, 0.0015, 0.0011, 0.0005, 0.0004], [0.7772, 0.0341, 0.025, 0.0067, 0.0059, 0.0052, 0.0052, 0.0052], [0.2951, 0.1905, 0.1484, 0.0581, 0.0292, 0.0258, 0.0242, 0.0214], [0.2837, 0.2837, 0.0865, 0.0299, 0.0181, 0.0141, 0.0141, 0.0117], [0.1368, 0.083, 0.0444, 0.0135, 0.0099, 0.0082, 0.0073, 0.006], [0.0215, 0.0215, 0.019, 0.0115, 0.0108, 0.0095, 0.0095, 0.0079], [0.0258, 0.0214, 0.0157, 0.0122, 0.0108, 0.0108, 0.0095, 0.0079], [0.0373, 0.035, 0.0241, 0.0176, 0.0129, 0.0121, 0.0089, 0.0073], [0.0495, 0.041, 0.0206, 0.0171, 0.0161, 0.0151, 0.0151, 0.0151], [0.0817, 0.0636, 0.0234, 0.022, 0.0182, 0.0161, 0.0142, 0.0104], [0.1059, 0.05, 0.0323, 0.0222, 0.0196, 0.0162, 0.0126, 0.0119], [0.1197, 0.0641, 0.0499, 0.0469, 0.0365, 0.0162, 0.0134, 0.0126], [0.1238, 0.1163, 0.0851, 0.0516, 0.0485, 0.0215, 0.0178, 0.0139], [0.2742, 0.1295, 0.1009, 0.0507, 0.042, 0.0308, 0.0187, 0.0165], [0.1793, 0.1397, 0.1158, 0.0582, 0.0483, 0.04, 0.0293, 0.0228], [0.1518, 0.1111, 0.0717, 0.0595, 0.0361, 0.0318, 0.0281, 0.0233], [0.1439, 0.0638, 0.0563, 0.0387, 0.0302, 0.0283, 0.0221, 0.0183], [0.112, 0.0467, 0.0342, 0.0321, 0.0302, 0.0302, 0.0302, 0.0235], [0.0696, 0.0422, 0.0422, 0.0309, 0.029, 0.029, 0.0273, 0.0226], [0.0438, 0.0411, 0.0386, 0.0363, 0.0363, 0.032, 0.0283, 0.0266], [0.079, 0.0479, 0.045, 0.0329, 0.0309, 0.0309, 0.0291, 0.0273], [0.0804, 0.0709, 0.0588, 0.0203, 0.0191, 0.0179, 0.0179, 0.014], [0.1116, 0.1049, 0.0465, 0.032, 0.0194, 0.0161, 0.0151, 0.0151], [0.1305, 0.1016, 0.0374, 0.0257, 0.0166, 0.0156, 0.0129, 0.0129], [0.1492, 0.1401, 0.0798, 0.0705, 0.0354, 0.0354, 0.0354, 0.0276], [0.2489, 0.1251, 0.0808, 0.0759, 0.0713, 0.0555, 0.0246, 0.0192], [0.1818, 0.125, 0.0712, 0.0669, 0.0521, 0.046, 0.0316, 0.0279], [0.6113, 0.2888, 0.0237, 0.0112, 0.0082, 0.0068, 0.0044, 0.0028], [0.7182, 0.2642, 0.0132, 0.0014, 0.0006, 0.0005, 0.0003, 0.0002], [0.9864, 0.0066, 0.0059, 0.0003, 0.0003, 0.0003, 0.0001, 0.0001], [0.9882, 0.011, 0.0003, 0.0003, 0.0001, 0.0001, 0.0, 0.0], [0.992, 0.0076, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9959, 0.0041, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9987, 0.0012, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9984, 0.001, 0.0004, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9993, 0.0006, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Kotlin": [126570, 83231, 73106, 6649, 15561, 21243, 23054, 38790, 42482, 73867, 64227, 29925, 19585, 64159, 147296, 112183, 101592, 116553, 102768, 137323, 174341, 82335, 132998, 147216, 120768, 16701, 14595, 54073, 19036, 7053, 26301, 24793, 22815, 9297, 22971, 20675, 12603, 11491, 11081, 4078, 7980, 11510, 7261, 9868, 12409, 26215, 40018, 53646, 39011, 27477, 29593, 3720, 433, 282, 128, 104, 149, 153, 144, 195, 556, 777, 452]}}, {"pos": 561, "top": [["  \n", " (\u201e", "\ufffd", ".", "s", " McCoy", "\u00ac", " AVC"], ["schild", " (\u201e", " GC", "  \n", " \\\"", "  \n\n", " AVC", " \u00ac"], [" GC", " (\u201e", "\u201a", "schild", ":\\\"", ",\\\"", "(gc", "s"], [" Shemale", " ``(", " ``", " \\\"{", " \\\"%", " \\\"\"", " milfs", " YYS"], [" GC", " @_", " [@", " (@", " gc", " _____", " *@", "  \n\n"], [" GC", ".gc", " gc", "avanaugh", "GC", " @_", "%C", " Guta"], ["s", " GC", " _____", " gc", " .....", "\\xc", "GC", ".gc"], [" GC", " _____", " gc", "s", "  \n\n", ".gc", "(gc", "GC"], ["  \n\n", "s", " GC", ".gc", " _____", "schild", " [@", "(gc"], ["(gc", "s", ".gc", " GC", "schild", "\u00c3", "\\xc", " gc"], ["s", " [@", "...\\", "\\xc", "\\n", " GC", "\\.", "\u00c3"], [".gc", " GC", "(gc", "%C", "\ufffd", " _____", "...\\", "\\xc"], [" GC", ".gc", "(gc", "s", "\ufffd", "Tumblr", "utel", "avanaugh"], ["s", " GC", "(gc", ".gc", " entirety", " gc", "GC", "QC"], ["s", " GC", " \u00ad", " though", "\u00c3", " \ufffd", " arguably", " albeit"], ["s", " GC", "\u00c3", " \u00ad", " OC", " APC", " myriad", " arguably"], ["s", " GC", "\u00c3", " myriad", " ops", " OC", " gc", "(gc"], [" GC", "s", "(gc", ".gc", "GC", "\u00c3", " ops", " AVC"], [" GC", "(gc", ".gc", " AVC", "GC", "_GC", "\ufffd", "s"], [" GC", ".gc", "(gc", "s", " AVC", "\u00c3", "Haunted", "\ufffd"], ["  \n\n", "s", " GC", "<|endoftext|>", "GC", "\u00c3", ".gc", "(gc"], [".gc", "Haunted", " GC", "(gc", "svc", " havoc", "scheid", "avanaugh"], [" GC", "Haunted", " ``", ".gc", " havoc", " %+", "(gc", " AVC"], [" &#", " &", " --", "\u00c3", " GC", "s", " ``", " though"], ["  \n\n", " \n\n", " &#", "   \n\n", "<|fim_suffix|>", " --", " {{--<", "?..."], [" meltdown", "<|fim_suffix|>", "  \n\n", " havoc", " \n\n", " \u02c7", "Haunted", "GuidId"], [" meltdown", " ``", " reboot", " shutdown", " ;;^", " havoc", "GuidId", " layoffs"], [" ,", " \n\n", " --", " ``", " &", " ''", " `", " \\\""], [" meltdown", " shutdown", " \n\n", " restart", " reboot", " fires", "  \n\n", " @"], [" ...", " ...\\", " \n  \n", " shutdown", " meltdown", " ._", " restart", "..."], [" ...", " shutdown", " restart", " meltdown", " reboot", " resets", " cleanup", " fires"], [" ...", " \n\n", " ...\\", "...", "  \n\n", " ....", " @", " restart"], [" ...", " .", " ....", " dead", " meltdown", "...", " @", " kills"], ["  \n\n", " meltdown", " resets", " shutdown", " cleanup", " losses", " spikes", " restart"], [" meltdown", " spikes", " shutdown", " resets", " cleanup", " kills", " spike", " meds"], [" meltdown", " shutdown", "/", " kills", "7", "?...", " resets", " restart"], [" shutdown", " latency", " spikes", " kills", " resets", " delays", " slowdown", " meltdown"], [" shutdown", " latency", " kills", " spikes", " cleanup", " downtime", " slowdown", " resets"], [" shutdown", " cleanup", " garbage", " spikes", " downtime", " latency", " kills", " resets"], [" cleanup", " garbage", " shutdown", " scav", " restart", " trash", "\u5783\u573e", " spikes"], [" cleanup", " garbage", " shutdown", " scav", " restart", " downtime", " spikes", " reboot"], [" cleanup", " garbage", " shutdown", " scav", " restart", " downtime", " spikes", " dump"], [" cleanup", " garbage", " shutdown", " spikes", " restart", " pauses", " spike", " bursts"], [" cleanup", " shutdown", " garbage", " spikes", " bursts", " pause", " pauses", " restart"], [" cleanup", " shutdown", " spikes", " bursts", " spike", " garbage", " triggered", " restart"], [" cleanup", " shutdown", " spikes", " bursts", " spike", " crashes", " garbage", " restart"], [" cleanup", " shutdown", " spikes", " bursts", " interruption", " spike", " interruptions", " downtime"], [" cleanup", " shutdown", " spikes", " bursts", " interruption", " glitches", " spike", " resets"], [" cleanup", " spikes", " shutdown", " bursts", " glitches", " spike", " resets", " interruptions"], [" cleanup", " spikes", " shutdown", " glitches", " spike", " bursts", " interruption", " interruptions"], [" cleanup", " glitches", " resets", " bursts", " glitch", " spikes", " shutdown", " sweeps"], [" pause", " spikes", " cleanup", " pauses", " spike", " interruption", " interruptions", " interrupts"], [" spikes", " spike", " pause", " pauses", " bursts", " downtime", " interruption", " cleanup"], [" spikes", " pauses", " spike", " pause", " cleanup", " interruption", " bursts", " resets"], [" GC", "GC", " gc", " garbage", "gc", " pause", " pauses", " spikes"], [" GC", " garbage", "GC", "\u5783\u573e", " gc", " pause", " pauses", " trash"], [" GC", "GC", " garbage", " gc", "gc", " pause", "(gc", " pauses"], [" GC", "GC", " pause", " pauses", " gc", "gc", "(gc", " garbage"], [" GC", "GC", " pause", " gc", "(gc", "gc", " pauses", "_GC"], [" pause", " spike", " GC", " pauses", "GC", " spikes", " Pause", " gc"], [" pause", " Pause", " pauses", " spike", "pause", "Pause", "_pause", " GC"], [" pause", " Pause", " pauses", "pause", " spike", "Pause", " pa", "_pause"], [" pause", " spike", " pa", " Pause", "pause", " pauses", " GC", " stutter"]], "p": [[0.03, 0.0206, 0.0125, 0.0117, 0.011, 0.0097, 0.0086, 0.0071], [0.0812, 0.0492, 0.0338, 0.0264, 0.0219, 0.0205, 0.017, 0.017], [0.0628, 0.0521, 0.0405, 0.0381, 0.0316, 0.0159, 0.0109, 0.0102], [0.0272, 0.0255, 0.0137, 0.0113, 0.0113, 0.0073, 0.0065, 0.0061], [0.2711, 0.0777, 0.0502, 0.0252, 0.0173, 0.0153, 0.0135, 0.0112], [0.1408, 0.0109, 0.0102, 0.0079, 0.0075, 0.007, 0.007, 0.0062], [0.2068, 0.1943, 0.1714, 0.0192, 0.0181, 0.0141, 0.0132, 0.011], [0.2631, 0.0754, 0.0754, 0.0625, 0.043, 0.0334, 0.0261, 0.0158], [0.3409, 0.0491, 0.0338, 0.0218, 0.017, 0.017, 0.017, 0.015], [0.0404, 0.038, 0.0296, 0.0191, 0.014, 0.0096, 0.0096, 0.008], [0.1244, 0.1098, 0.0709, 0.0335, 0.0261, 0.0245, 0.0245, 0.0149], [0.0204, 0.0169, 0.0149, 0.0075, 0.0071, 0.0071, 0.0066, 0.0046], [0.0182, 0.0142, 0.0118, 0.0081, 0.0059, 0.0049, 0.0032, 0.0032], [0.0825, 0.0304, 0.0209, 0.0105, 0.0036, 0.0036, 0.0034, 0.0034], [0.094, 0.0144, 0.0068, 0.006, 0.005, 0.0047, 0.0034, 0.0034], [0.2642, 0.0278, 0.0096, 0.0058, 0.0043, 0.004, 0.0031, 0.0028], [0.6579, 0.0272, 0.0113, 0.0027, 0.0024, 0.0022, 0.0018, 0.0016], [0.0487, 0.0261, 0.0168, 0.0096, 0.009, 0.007, 0.0045, 0.0043], [0.0473, 0.0197, 0.0185, 0.0068, 0.0053, 0.005, 0.005, 0.0044], [0.0275, 0.0147, 0.013, 0.0051, 0.0051, 0.0045, 0.0031, 0.0031], [0.0374, 0.0188, 0.0089, 0.0054, 0.0048, 0.0045, 0.0042, 0.0039], [0.0062, 0.0052, 0.0024, 0.0023, 0.0022, 0.002, 0.0019, 0.0019], [0.0073, 0.0057, 0.0054, 0.0037, 0.0033, 0.0022, 0.002, 0.0019], [0.0084, 0.0074, 0.0037, 0.0033, 0.0033, 0.0029, 0.0027, 0.0023], [0.0182, 0.011, 0.0103, 0.0049, 0.0038, 0.0034, 0.0025, 0.0025], [0.0034, 0.0028, 0.0027, 0.0025, 0.0024, 0.0021, 0.0021, 0.002], [0.0127, 0.0047, 0.0044, 0.0044, 0.0039, 0.0025, 0.0022, 0.002], [0.0135, 0.0087, 0.0082, 0.0068, 0.0068, 0.006, 0.0056, 0.005], [0.013, 0.0108, 0.0101, 0.0058, 0.0051, 0.0045, 0.0035, 0.0035], [0.2527, 0.0439, 0.0143, 0.0143, 0.0118, 0.0118, 0.0111, 0.0098], [0.0819, 0.0195, 0.0183, 0.0172, 0.0152, 0.0098, 0.0086, 0.0081], [0.4113, 0.0263, 0.0218, 0.0192, 0.0181, 0.0132, 0.0091, 0.008], [0.1435, 0.0496, 0.0098, 0.0086, 0.0086, 0.0071, 0.0071, 0.0063], [0.0425, 0.0227, 0.0101, 0.0089, 0.0089, 0.0084, 0.0079, 0.0069], [0.0274, 0.0089, 0.0084, 0.0084, 0.0074, 0.0074, 0.0065, 0.0051], [0.0105, 0.0092, 0.0076, 0.0072, 0.0072, 0.0068, 0.0063, 0.0063], [0.013, 0.0114, 0.0107, 0.0107, 0.0101, 0.0101, 0.0095, 0.0065], [0.0291, 0.0188, 0.0166, 0.0121, 0.0121, 0.0114, 0.0101, 0.0095], [0.0458, 0.0405, 0.0231, 0.0203, 0.0169, 0.0158, 0.0149, 0.014], [0.3104, 0.2004, 0.0307, 0.0239, 0.0113, 0.0083, 0.0069, 0.0069], [0.3169, 0.1321, 0.0277, 0.019, 0.0168, 0.0108, 0.0079, 0.0058], [0.5146, 0.1148, 0.0212, 0.0146, 0.0137, 0.0065, 0.0065, 0.0057], [0.3775, 0.0656, 0.0616, 0.0213, 0.0166, 0.0146, 0.0138, 0.0129], [0.281, 0.0667, 0.0217, 0.0191, 0.0159, 0.014, 0.014, 0.0116], [0.2071, 0.0919, 0.0408, 0.0298, 0.0193, 0.0181, 0.0181, 0.017], [0.185, 0.093, 0.0639, 0.0342, 0.025, 0.0118, 0.0118, 0.0111], [0.1782, 0.0743, 0.0511, 0.0351, 0.0257, 0.0257, 0.0156, 0.0156], [0.213, 0.0691, 0.0394, 0.0327, 0.0239, 0.0198, 0.0198, 0.0175], [0.1715, 0.0383, 0.0359, 0.0338, 0.0263, 0.0192, 0.017, 0.017], [0.208, 0.0385, 0.0385, 0.0361, 0.034, 0.0319, 0.0182, 0.0171], [0.1697, 0.0624, 0.0356, 0.0334, 0.026, 0.0245, 0.0203, 0.019], [0.0826, 0.0776, 0.0644, 0.0568, 0.0442, 0.0416, 0.0367, 0.0252], [0.2712, 0.1451, 0.113, 0.0998, 0.0173, 0.0144, 0.0144, 0.0127], [0.2611, 0.1397, 0.1313, 0.1233, 0.0353, 0.0189, 0.013, 0.0122], [0.7178, 0.1602, 0.0357, 0.0149, 0.0131, 0.0102, 0.008, 0.008], [0.4597, 0.4057, 0.0549, 0.0229, 0.0157, 0.0066, 0.0066, 0.0045], [0.8799, 0.0927, 0.0076, 0.0059, 0.0036, 0.0036, 0.0028, 0.0013], [0.7882, 0.1067, 0.0647, 0.0144, 0.0099, 0.0047, 0.0041, 0.002], [0.8693, 0.0916, 0.0204, 0.0052, 0.0046, 0.0028, 0.0024, 0.0009], [0.7903, 0.0735, 0.0649, 0.0393, 0.0099, 0.0068, 0.0041, 0.0029], [0.9936, 0.0022, 0.0015, 0.0015, 0.0007, 0.0002, 0.0001, 0.0], [0.9972, 0.0013, 0.0004, 0.0003, 0.0003, 0.0002, 0.0001, 0.0001], [0.9935, 0.0041, 0.0008, 0.0003, 0.0003, 0.0002, 0.0002, 0.0001]], "ranks": {"Kotlin": [41861, 38931, 19459, 5074, 15538, 25841, 34726, 65653, 65697, 138683, 128273, 102056, 66884, 135297, 206680, 166183, 136323, 99996, 97234, 160702, 218977, 134358, 206714, 228950, 199562, 111749, 77443, 143405, 90073, 17114, 30484, 28966, 55082, 12990, 18102, 12075, 6539, 5418, 8155, 2972, 6011, 7821, 5362, 6926, 5982, 16427, 20639, 16121, 12238, 10609, 12453, 6457, 1177, 509, 313, 209, 190, 275, 231, 351, 1483, 4463, 4194]}}, {"pos": 562, "top": [[",", ".", ";", "\"", "?", "-", "\u00a0", "\u00a0\u00a0"], [";", ",", "\u2013", "\u00ad", "?", "\u2014", ".", " \u200b\u200b"], [",", ".", ";", "\u2013", "?", "[", "\"", "!"], ["_ASC", " \u041f\u043e\u043f\u0440\u043e", " St\u00e9ph", "uggy", " Blowjob", "odle", " Shemale", " Ejem"], ["@", ".@", " (@", "//@", ",@", "?", "@$", " @"], [" \u200b\u200b", "gregate", "@", "!", "?", ".@", "%!", " Pause"], ["?", "!", "//@", "@", "!\"", ".@", "!?", "%!"], ["uvre", "?", "-ish", "gregate", "!", "    \n", " _)", "(_)"], ["?", "!", ".", "!?", "!.", ".\u00bb", " [].", "?."], [",", ";", "\u2014", "\ufffd\ufffd", "-ish", " \u00ad", "!\\", "\u2014\""], [",", ".", "?", ";", "\u2014", "...", "!", "?..."], ["gregate", "\u4f59\u7bc7", ".','", "rompt", " Pergun", " \u041f\u043e\u043f\u0440\u043e", " momentarily", "uvre"], ["gregate", "\u4f59\u7bc7", " hrvat", " Pergun", "rompt", " momentarily", " altercation", "\u79bb\u4e16"], ["gregate", " entirety", " hrvat", " momentarily", " flurry", "\u65cb\u5373", " lingering", "\u663e\u8457\u63d0\u5347"], [" \u2014", " momentarily", "\u2014", " midway", " yet", " requisite", " arguably", " lingering"], [" momentarily", " \u2014", " lingering", " midway", " entirety", " arguably", " yet", " flurry"], [" lingering", " momentarily", ",", " midway", " yet", " likely", " arguably", " akin"], [" lingering", " momentarily", " midway", " flurry", " amid", "rompt", " looming", " \u2014"], [" momentarily", " lingering", " midway", " flurry", " amid", "rompt", " looming", " atop"], [" \u2014", " momentarily", " midway", " lingering", " amid", " merely", " yet", " seemingly"], [" \u2014", "<|endoftext|>", " midway", " momentarily", " merely", " though", " lingering", " \n\n"], [" momentarily", " midway", " lingering", " amid", " flurry", "Millis", "\u9877\u523b", "ksam"], [" momentarily", " midway", " --", " merely", " \u2014", " seemingly", " lingering", "Millis"], [" \u2014", " --", " momentarily", " midway", " though", " seemingly", " merely", " yet"], [" \n\n", "   \n\n", "  \n\n", " \n\n\n", "\n\n", " \r\n\r\n", " \u2014", " \n  \n"], [" \n\n", " \r\n\r\n", " momentarily", "uptime", "   \n\n", " \n    \n", " \n\n\n", " \n  \n"], [" momentarily", "uptime", " microseconds", " pauses", " lingering", " midway", " milliseconds", " pause"], [" \n\n", " ?", " ,", " --", " momentarily", " \u2014", " even", " during"], [" \n\n", " \n  \n", " momentarily", " time", " overnight", " lingering", "  \n\n", " minutes"], [" \n\n", " ...", " \n  \n", "...", " [...]", " ___", " \n", " \u2014"], [" \n\n", " \n  \n", " time", " even", " during", " \u2014", " unexpectedly", " ..."], [" \n\n", " ...", " <", "  \n\n", " @", " time", " \n  \n", " \u2014"], [" \n\n", " even", " would", " \u2014", " time", " ...", " instantly", " ?"], [" \u2014", " would", " even", " wouldn", " \n\n", " barely", " might", " time"], [" would", " wouldn", " barely", " panicked", " \u2014", " might", " inevitable", " worse"], [" would", " \u2014", " worse", " barely", " time", " wouldn", " inevitable", " impossible"], [" would", " wouldn", " barely", " impossible", " inevitable", " \u2014", " worse", " inevitably"], [" would", " disproportionately", " inevitable", " impossible", " inevitably", " worse", " wouldn", " barely"], [" disproportionately", " inevitable", " impossible", " would", " inevitably", " barely", " instantly", " even"], [" inevitable", " disproportionately", " impossible", " inevitably", " would", " critical", " unavoidable", " wouldn"], [" disproportionately", " inevitable", " would", " critical", " impossible", " loss", " unavoidable", " wouldn"], [" disproportionately", " critical", " percentage", " loss", " would", " disproportionate", " crippling", " catastrophic"], [" disproportionately", " percentage", " critical", " disproportionate", " worse", " loss", " threshold", " proportion"], [" critical", " disproportionately", " percentage", " catastrophic", " unavoidable", " worse", " loss", " inevitable"], [" percentage", " disproportionately", " critical", " disproportionate", " worse", " catastrophic", " crippling", " loss"], [" percentage", " disproportionately", " half", " disproportionate", " crippling", " percentages", "\u5360\u6bd4", " worse"], [" percentage", " disproportionately", "\u5360\u6bd4", " percentages", " instantly", " disproportionate", " half", " crippling"], [" percentage", "\u5360\u6bd4", " percentages", " percent", " disproportionately", " instantly", " half", " crippling"], [" percentage", "\u5360\u6bd4", " instantly", " percentages", " disproportionately", " crippling", " half", " halfway"], [" crippling", "\u5360\u6bd4", " percentage", " instantly", " disrupt", " disproportionately", " cripp", " ruining"], [" crippling", " disrupt", " cripp", " percentage", " catastrophic", "\u5360\u6bd4", " ruining", " violates"], [" crippling", " cripp", " ruining", " instantly", " disrupt", "\u5360\u6bd4", " violates", " loses"], [" crippling", " instantly", " cripp", " ruining", " disrupt", " ruin", " violates", " catastrophic"], [" ruining", " crippling", " destroys", " cripp", " ruin", " violates", " instantly", " loses"], [" kills", " instantly", " ruining", " cripp", " violates", " crippling", " destroys", " loses"], [" kills", " destroys", " instantly", " cripp", " ruining", " violates", " renders", " crippling"], [" kills", " destroys", " cripp", " violates", " renders", " ruining", " kill", " triggers"], [" kills", " destroys", " ruining", " cripp", " wipes", "\u6bc1", " violates", " ruin"], [" kills", " destroys", " consumes", " crashes", " ruining", " cripp", " wipes", " eats"], [" kills", " destroys", " eats", " kill", " wipes", " killing", " consumes", "kill"], [" kills", " eats", " destroys", " kill", " wipes", " killing", " consumes", " breaks"], [" kills", " eats", " breaks", " destroys", " wipes", " +", " is", " ruins"], [" kills", " breaks", " eats", " ruins", " destroys", " wipes", " +", " is"]], "p": [[0.4102, 0.3195, 0.1037, 0.0432, 0.0297, 0.0116, 0.0091, 0.0066], [0.117, 0.0315, 0.0245, 0.0169, 0.0149, 0.0116, 0.0102, 0.008], [0.5146, 0.3121, 0.0696, 0.0373, 0.029, 0.005, 0.0039, 0.0022], [0.0113, 0.0083, 0.0083, 0.0073, 0.0069, 0.0065, 0.005, 0.0039], [0.4137, 0.0675, 0.041, 0.0182, 0.0067, 0.0063, 0.0059, 0.0059], [0.0339, 0.0182, 0.0091, 0.0071, 0.0067, 0.0046, 0.0036, 0.003], [0.0265, 0.0207, 0.0133, 0.0125, 0.0118, 0.0071, 0.0067, 0.0052], [0.0176, 0.0129, 0.0107, 0.0094, 0.0069, 0.0065, 0.0054, 0.0039], [0.045, 0.0256, 0.0213, 0.0121, 0.01, 0.0094, 0.0089, 0.0078], [0.0082, 0.0057, 0.0041, 0.0034, 0.003, 0.0027, 0.0021, 0.0018], [0.0531, 0.0499, 0.0468, 0.044, 0.044, 0.0236, 0.0195, 0.0111], [0.0066, 0.0031, 0.0027, 0.0027, 0.0026, 0.0021, 0.0021, 0.002], [0.0124, 0.0038, 0.0028, 0.0028, 0.0024, 0.002, 0.002, 0.0018], [0.0101, 0.0054, 0.0042, 0.0042, 0.0026, 0.0024, 0.0023, 0.0018], [0.0371, 0.0175, 0.0155, 0.0137, 0.0106, 0.0057, 0.0037, 0.0035], [0.0153, 0.0126, 0.0126, 0.0105, 0.006, 0.0053, 0.0039, 0.0034], [0.0242, 0.0167, 0.0147, 0.0122, 0.0089, 0.0089, 0.0065, 0.0054], [0.0183, 0.0172, 0.0071, 0.0056, 0.0034, 0.0032, 0.0026, 0.0026], [0.0136, 0.0106, 0.0077, 0.006, 0.0039, 0.003, 0.0028, 0.0028], [0.0656, 0.0291, 0.02, 0.0129, 0.0101, 0.0057, 0.0048, 0.0042], [0.067, 0.0149, 0.0124, 0.0109, 0.0097, 0.0091, 0.008, 0.0071], [0.0171, 0.016, 0.0091, 0.0071, 0.0043, 0.0041, 0.0026, 0.0025], [0.041, 0.0265, 0.0265, 0.0133, 0.011, 0.0097, 0.0081, 0.0059], [0.0273, 0.0188, 0.0146, 0.0107, 0.0101, 0.0094, 0.0083, 0.0065], [0.6484, 0.0236, 0.0222, 0.0222, 0.0208, 0.0152, 0.0056, 0.0044], [0.0716, 0.0097, 0.0071, 0.0055, 0.0049, 0.0043, 0.0043, 0.0036], [0.0317, 0.011, 0.0103, 0.0071, 0.0071, 0.0067, 0.0067, 0.0052], [0.0441, 0.0284, 0.0251, 0.0195, 0.0184, 0.0162, 0.0134, 0.0134], [0.3058, 0.0222, 0.0222, 0.0119, 0.0119, 0.0092, 0.0077, 0.0068], [0.254, 0.12, 0.0603, 0.0285, 0.0236, 0.0222, 0.0143, 0.0135], [0.1335, 0.028, 0.0232, 0.0205, 0.0181, 0.0159, 0.0141, 0.0132], [0.4171, 0.0342, 0.0208, 0.0143, 0.0126, 0.0126, 0.0118, 0.0118], [0.0815, 0.03, 0.0282, 0.0233, 0.0219, 0.0193, 0.0151, 0.0142], [0.0791, 0.0698, 0.033, 0.031, 0.0257, 0.0188, 0.0166, 0.0129], [0.0721, 0.0496, 0.0234, 0.0207, 0.0142, 0.0125, 0.0118, 0.0111], [0.1338, 0.0492, 0.0218, 0.0193, 0.0181, 0.016, 0.0141, 0.0124], [0.1759, 0.0346, 0.0287, 0.027, 0.0253, 0.0238, 0.0224, 0.0197], [0.112, 0.0387, 0.0342, 0.0321, 0.025, 0.0221, 0.0195, 0.0183], [0.0597, 0.0437, 0.041, 0.0362, 0.0249, 0.0206, 0.0161, 0.0133], [0.0687, 0.0607, 0.0269, 0.021, 0.0174, 0.0144, 0.0135, 0.0105], [0.0396, 0.0272, 0.024, 0.0176, 0.0176, 0.0129, 0.0129, 0.0129], [0.0763, 0.0318, 0.0264, 0.0219, 0.0219, 0.0205, 0.016, 0.015], [0.0809, 0.0433, 0.0359, 0.0317, 0.0181, 0.0181, 0.017, 0.015], [0.0489, 0.0489, 0.0358, 0.0246, 0.0231, 0.0192, 0.0159, 0.0149], [0.1404, 0.1239, 0.0215, 0.019, 0.019, 0.0179, 0.0179, 0.0158], [0.1469, 0.1469, 0.0421, 0.0225, 0.0212, 0.0165, 0.0165, 0.0165], [0.2734, 0.061, 0.0573, 0.0475, 0.0326, 0.0224, 0.0224, 0.0211], [0.515, 0.079, 0.079, 0.0373, 0.0329, 0.0273, 0.0188, 0.01], [0.3097, 0.1139, 0.061, 0.0538, 0.037, 0.0288, 0.0198, 0.0136], [0.1339, 0.1182, 0.0865, 0.0717, 0.0435, 0.0408, 0.0233, 0.0193], [0.2374, 0.0724, 0.0639, 0.0342, 0.0321, 0.0321, 0.0266, 0.0235], [0.2747, 0.0613, 0.0421, 0.024, 0.0226, 0.0199, 0.0176, 0.0137], [0.2421, 0.1296, 0.1144, 0.0507, 0.0421, 0.0255, 0.024, 0.0212], [0.1599, 0.0911, 0.071, 0.071, 0.0458, 0.0296, 0.0261, 0.0245], [0.1051, 0.0637, 0.0496, 0.0496, 0.0363, 0.032, 0.0283, 0.025], [0.4429, 0.0439, 0.0301, 0.0266, 0.025, 0.0235, 0.0152, 0.0134], [0.6746, 0.0489, 0.018, 0.0149, 0.0132, 0.0116, 0.0102, 0.0096], [0.6653, 0.1682, 0.0177, 0.0156, 0.0108, 0.0061, 0.0061, 0.0058], [0.4989, 0.3429, 0.0319, 0.0117, 0.0117, 0.0104, 0.0104, 0.0071], [0.9173, 0.0356, 0.0115, 0.0115, 0.0033, 0.0033, 0.0033, 0.0026], [0.9458, 0.0135, 0.0119, 0.0056, 0.0044, 0.0017, 0.0015, 0.0013], [0.8906, 0.0209, 0.0163, 0.0144, 0.0127, 0.0082, 0.0039, 0.0027], [0.8768, 0.0437, 0.0182, 0.0086, 0.0067, 0.0063, 0.0056, 0.0056]], "ranks": {"Kotlin": [203191, 216885, 103373, 34822, 78499, 91880, 43872, 79021, 80619, 186754, 146020, 89530, 48509, 134357, 206981, 161961, 157461, 144282, 136064, 203535, 229097, 169221, 219038, 234997, 186483, 64768, 58941, 150395, 64282, 21272, 58415, 42541, 27062, 29165, 46740, 44698, 47103, 42210, 53884, 35869, 44458, 54290, 24671, 27356, 36779, 81859, 86605, 80857, 92914, 64927, 45434, 24146, 69624, 40137, 28838, 28943, 14850, 28136, 26156, 21645, 26129, 9508, 7900]}}, {"pos": 563, "top": [[".", ",", "\u00a0", ";", "\u2013", " \u2013", " ", "\u00a0\u00a0"], [",", ".", "\u2013", " \u2013", ";", "\u2013and", " \u200b\u200b", " "], [",", ".", "\u2013", ";", " \u2013", "\u2013and", ".\u2013", "\u2026"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " milfs", " ;;^", " Shemale", "----------</", " Strec", " Blowjob", " Hidal"], [".", ",", " \u200b\u200b", ".@", "&(", " MIS", ":", "\u00a0\u00a0"], [",", ".", " \u200b\u200b", "\u00a0", "\u00a0\u00a0", ":", "<|quad_end|>", "\u2026."], ["\u00a0", ".", ",", "\u00a0\u00a0", "  \n", " \n", " ", "   \n"], ["<|quad_end|>", "   \n", "iland", "ness", "avour", "    \n", " luckily", " \t\n"], ["\u00a0", ".", ",", "!.", "\u2013and", "\u0436\u0451", "<|quad_end|>", " \n    \n"], [",", "\u00a0", "\u2013and", "\u2013", " \u0442\u0440\u0451", "\u0436\u0451", "\u0436\u0434\u0451", "\u76f8\u8f83"], ["\u00a0", ",", " though", "\u2013", "\u2013and", " albeit", ".", " tweaked"], [" anyways", " \u0442\u0440\u0451", " uncomfort", " quicker", " thankfully", " oddly", " \u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435", " pricey"], [" anyways", " pricey", "\u582a\u6bd4", " uncomfort", " impactful", " incredibly", " \uad49\uc7a5\ud788", " thankfully"], [" anyways", " pricey", " tweaked", " tweaking", " quicker", " gritty", "\u76f8\u8f83", " akin"], [" though", " akin", " effortlessly", " arguably", " outright", " tweaked", " busted", " pricey"], [" plenty", " arguably", " though", " oddly", " pricey", " outright", " hefty", " just"], [" incredibly", " arguably", " oddly", " just", " tweaking", " though", " tweaked", " plenty"], [" oddly", " tweaking", " incredibly", " pricey", " hefty", " tweaked", " goofy", " arguably"], [" incredibly", " arguably", " oddly", " wildly", " barely", " tweaking", " hefty", " ridiculously"], [" barely", " hugely", " wildly", " arguably", " just", " uncomfort", " effortlessly", " incredibly"], ["<|endoftext|>", " though", " barely", " hugely", " just", " wildly", "Though", " arguably"], [" wildly", " barely", " hugely", " just", " arguably", " uncomfort", " looming", " outright"], [" just", " barely", " wildly", " though", " even", " hugely", " arguably", " much"], [" just", " barely", " though", " much", " even", " merely", " arguably", " --"], [" \n\n", " though", " hugely", "Though", "\n\n", " barely", " just", " wildly"], [" wildly", " hugely", " barely", " arguably", " pricey", " uncomfort", " famously", " incredibly"], [" barely", " wildly", " arguably", " uncomfort", " famously", " hugely", " incredibly", " just"], [" \n\n", " just", " barely", " even", "\n\n", " wildly", " though", " --"], [" \n\n", " barely", " wildly", " even", " just", " enough", " arguably", " incredibly"], [" barely", " even", " wildly", " enough", " worse", " \n\n", " uncomfort", " arguably"], [" even", " barely", " enough", " just", " wildly", " worse", " \n\n", " incredibly"], [" even", " just", " barely", " wildly", " enough", " incredibly", " worse", " much"], [" even", " just", " barely", " enough", " wildly", " worse", " incredibly", " truly"], [" even", " barely", " worse", " enough", " wildly", " incredibly", " just", "\u2014even"], [" barely", " enough", " worse", " incredibly", " even", " wildly", " impossible", " inevitable"], [" enough", " worse", " barely", " impossible", " inevitable", " incredibly", " just", " relentless"], [" enough", " worse", " impossible", " barely", " inevitable", " incredibly", " just", " wildly"], [" worse", " impossible", " enough", " disproportionately", " inevitable", " barely", " incredibly", " relentless"], [" enough", " impossible", " disproportionately", " inevitable", " relentless", " worse", " barely", " relentlessly"], [" inevitable", " disproportionately", " enough", " impossible", " relentless", " crippling", " unavoidable", " huge"], [" disproportionately", " inevitable", " enough", " crippling", " huge", " devastating", " relentless", " impossible"], [" disproportionately", " crippling", " catastrophic", " worse", " inevitable", " enough", " critical", " devastating"], [" disproportionately", " catastrophic", " disproportionate", " crippling", " proportion", " worse", " unacceptable", "\u5360\u6bd4"], [" catastrophic", " disproportionately", " unacceptable", " disastrous", "\u5360\u6bd4", " fatal", " unavoidable", " devastating"], [" disproportionately", " catastrophic", " percentage", " unacceptable", " disastrous", " proportion", "\u5360\u6bd4", " crippling"], [" disproportionately", " percentage", "\u5360\u6bd4", " catastrophic", " disastrous", " proportion", " disproportionate", " crippling"], [" disproportionately", " percentage", "\u5360\u6bd4", " disastrous", " catastrophic", " percentages", " disproportionate", " crippling"], ["\u5360\u6bd4", " percentage", " disproportionately", " percentages", " disproportionate", " percent", " proportion", " catastrophic"], ["\u5360\u6bd4", " percentage", " disproportionately", " crippling", " catastrophic", " unacceptable", " disproportionate", " disastrous"], ["\u5360\u6bd4", " catastrophic", " crippling", " disproportionately", " fatal", "\u81f4\u547d", " disastrous", " percentage"], [" catastrophic", " crippling", " unacceptable", " disastrous", "\u81f4\u547d", " fatal", "\u5360\u6bd4", " disproportionately"], [" unacceptable", " catastrophic", " crippling", " disastrous", "\u81f4\u547d", " fatal", " impossible", " relentless"], [" catastrophic", " unacceptable", " disastrous", " crippling", " fatal", "\u81f4\u547d", " devastating", " lethal"], [" catastrophic", " disastrous", " unacceptable", " fatal", " crippling", " devastating", "\u81f4\u547d", " catastrophe"], [" unacceptable", " catastrophic", " acceptable", " disastrous", " fatal", "acceptable", "\u81f4\u547d", " crippling"], [" unacceptable", " catastrophic", " acceptable", " fatal", " lethal", " disastrous", "\u81f4\u547d", "acceptable"], [" unacceptable", " catastrophic", " fatal", " acceptable", "\u81f4\u547d", " lethal", " disastrous", "\u81f4\u547d\u7684"], [" unacceptable", " catastrophic", " acceptable", " fatal", " disastrous", "acceptable", "\u81f4\u547d", " lethal"], [" unacceptable", " catastrophic", " acceptable", " disastrous", "\u707e\u96be", " fatal", " catastrophe", "acceptable"], [" catastrophic", " fatal", " unacceptable", " disastrous", " lethal", " acceptable", "\u707e\u96be", "\u81f4\u547d"], [" catastrophic", " unacceptable", " fatal", " disastrous", " lethal", " acceptable", "\u707e\u96be", " deadly"], [" catastrophic", " unacceptable", " fatal", " acceptable", " disastrous", " lethal", " deadly", " instant"], [" catastrophic", " unacceptable", " a", " fatal", " acceptable", " lethal", " disastrous", " invisible"]], "p": [[0.6126, 0.3716, 0.0041, 0.0041, 0.0025, 0.0018, 0.0006, 0.0004], [0.3331, 0.3331, 0.1016, 0.048, 0.0351, 0.0057, 0.0033, 0.0029], [0.7688, 0.1179, 0.104, 0.0046, 0.0011, 0.0007, 0.0006, 0.0005], [0.0092, 0.0046, 0.0046, 0.0034, 0.0032, 0.0028, 0.0028, 0.0026], [0.0552, 0.023, 0.0123, 0.0062, 0.004, 0.0024, 0.0023, 0.0021], [0.0697, 0.0543, 0.0213, 0.0176, 0.0107, 0.0057, 0.0025, 0.0022], [0.5605, 0.1037, 0.0246, 0.0204, 0.0192, 0.0149, 0.0075, 0.0046], [0.005, 0.0042, 0.0039, 0.0037, 0.0031, 0.0029, 0.0024, 0.0022], [0.183, 0.0281, 0.0125, 0.0117, 0.0097, 0.0067, 0.0036, 0.0031], [0.0288, 0.0238, 0.0093, 0.0057, 0.0044, 0.0044, 0.0037, 0.0028], [0.0827, 0.0568, 0.0345, 0.0105, 0.0099, 0.0068, 0.0064, 0.0053], [0.0066, 0.0038, 0.0036, 0.0036, 0.0033, 0.0033, 0.0031, 0.0028], [0.0234, 0.0049, 0.0023, 0.0022, 0.002, 0.002, 0.002, 0.0019], [0.0143, 0.0072, 0.0041, 0.0036, 0.0023, 0.0022, 0.0021, 0.0021], [0.0159, 0.0097, 0.0085, 0.008, 0.008, 0.0071, 0.0055, 0.0055], [0.0084, 0.0084, 0.0079, 0.0074, 0.0074, 0.007, 0.0062, 0.0058], [0.0148, 0.0139, 0.013, 0.013, 0.0108, 0.0108, 0.0102, 0.0095], [0.0127, 0.0119, 0.0087, 0.0087, 0.0072, 0.0056, 0.005, 0.0044], [0.0207, 0.0151, 0.0133, 0.0118, 0.0111, 0.0092, 0.0086, 0.0081], [0.0227, 0.0156, 0.0156, 0.0114, 0.0101, 0.0095, 0.0089, 0.0084], [0.1664, 0.0113, 0.01, 0.0094, 0.0094, 0.0088, 0.0065, 0.005], [0.0074, 0.0069, 0.0058, 0.0048, 0.0045, 0.004, 0.0037, 0.0035], [0.0215, 0.0167, 0.0084, 0.0084, 0.0084, 0.0079, 0.0079, 0.0058], [0.0207, 0.0126, 0.0111, 0.0092, 0.0086, 0.0059, 0.0059, 0.0059], [0.0254, 0.0144, 0.0082, 0.0082, 0.0073, 0.0064, 0.0053, 0.005], [0.0104, 0.0081, 0.0072, 0.0063, 0.006, 0.0056, 0.0049, 0.0046], [0.0137, 0.0121, 0.0089, 0.0078, 0.0065, 0.0054, 0.0054, 0.0051], [0.0424, 0.0274, 0.0257, 0.0213, 0.02, 0.0156, 0.0138, 0.0129], [0.069, 0.0648, 0.0369, 0.027, 0.0254, 0.0154, 0.0128, 0.0128], [0.0382, 0.0337, 0.0262, 0.0231, 0.0217, 0.0204, 0.0159, 0.014], [0.1298, 0.0653, 0.0421, 0.0421, 0.0372, 0.0212, 0.0137, 0.0137], [0.1675, 0.0698, 0.0656, 0.033, 0.02, 0.02, 0.0166, 0.0146], [0.1628, 0.0497, 0.0438, 0.022, 0.0207, 0.0172, 0.0126, 0.0067], [0.1194, 0.0564, 0.0564, 0.0342, 0.0221, 0.0162, 0.0143, 0.0126], [0.0506, 0.0446, 0.0307, 0.0239, 0.0211, 0.0175, 0.0164, 0.0154], [0.0937, 0.0605, 0.0502, 0.0324, 0.0223, 0.0163, 0.0153, 0.0135], [0.0669, 0.0628, 0.0554, 0.0521, 0.0358, 0.0149, 0.014, 0.0132], [0.0701, 0.0546, 0.0546, 0.0513, 0.0425, 0.0292, 0.0275, 0.0189], [0.062, 0.0583, 0.0483, 0.0454, 0.0353, 0.0353, 0.0332, 0.0228], [0.0779, 0.0687, 0.0472, 0.0417, 0.0346, 0.0238, 0.0197, 0.0185], [0.0484, 0.0454, 0.0427, 0.0377, 0.0332, 0.0293, 0.0293, 0.0276], [0.1057, 0.0823, 0.0469, 0.0343, 0.0303, 0.0251, 0.0251, 0.0236], [0.2451, 0.0547, 0.0514, 0.0332, 0.0293, 0.0275, 0.0214, 0.0201], [0.1089, 0.1023, 0.0427, 0.0427, 0.0354, 0.0354, 0.0332, 0.0312], [0.2581, 0.0739, 0.0653, 0.0449, 0.0449, 0.0421, 0.029, 0.0272], [0.3106, 0.0693, 0.0448, 0.0371, 0.0349, 0.0327, 0.0289, 0.0225], [0.1927, 0.1324, 0.1169, 0.043, 0.0404, 0.0356, 0.0278, 0.023], [0.3399, 0.2336, 0.1251, 0.046, 0.0217, 0.0169, 0.0149, 0.014], [0.2148, 0.0895, 0.079, 0.045, 0.0351, 0.0226, 0.0176, 0.0176], [0.1714, 0.0917, 0.0917, 0.063, 0.0382, 0.0337, 0.0298, 0.017], [0.193, 0.1412, 0.0856, 0.0519, 0.0296, 0.0261, 0.023, 0.0169], [0.2442, 0.2155, 0.0844, 0.0745, 0.02, 0.0156, 0.0122, 0.0095], [0.3981, 0.2131, 0.1141, 0.0888, 0.0476, 0.012, 0.0106, 0.0088], [0.5824, 0.1473, 0.1147, 0.0422, 0.029, 0.01, 0.0088, 0.005], [0.8998, 0.0448, 0.0349, 0.0047, 0.0037, 0.0032, 0.0012, 0.0007], [0.8346, 0.0534, 0.0367, 0.0324, 0.0093, 0.0082, 0.0082, 0.003], [0.5905, 0.1917, 0.0799, 0.0428, 0.0202, 0.0202, 0.0139, 0.0037], [0.7541, 0.1156, 0.0701, 0.0122, 0.0108, 0.0051, 0.0045, 0.004], [0.5494, 0.3332, 0.0579, 0.0274, 0.0101, 0.0069, 0.0025, 0.0025], [0.5785, 0.1878, 0.1139, 0.037, 0.0224, 0.0154, 0.012, 0.0057], [0.7031, 0.1078, 0.0952, 0.0309, 0.0187, 0.0165, 0.0042, 0.0037], [0.6506, 0.1645, 0.0605, 0.0367, 0.0286, 0.0196, 0.0039, 0.0036], [0.3755, 0.2278, 0.201, 0.0576, 0.0508, 0.024, 0.0187, 0.0061]], "ranks": {"Kotlin": [237920, 228966, 208339, 63932, 114953, 166904, 229615, 233671, 233645, 239813, 240144, 193630, 152767, 177992, 235294, 229361, 233336, 222922, 236590, 243624, 246863, 243414, 245613, 247091, 245954, 229674, 219958, 235505, 223240, 198878, 225791, 229738, 231260, 171825, 185492, 191186, 171978, 126560, 135878, 86068, 114336, 126813, 46180, 43031, 65589, 114339, 103855, 99899, 113522, 132840, 165705, 128239, 132827, 71712, 70593, 37935, 39375, 44414, 63341, 50696, 85386, 92863, 39470]}}, {"pos": 564, "top": [[".", ",", "\u2013", " \u2013", ";", ",.", "\u00a0\u00a0", "\u00a0"], ["\u2013", ".", " \u2013", ",", " \u200b\u200b", "\u2013and", ";", ".\u2013"], [".", "\u2013", ",", "\u2026.", "\u2026..", ".\u2013", " \u2013", ";"], [" milfs", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Shemale", " Blowjob", " pornstar", " Guta", " Geile", " cumshot"], [":.", "\u7fe1", "!.", " \u200b\u200b", "!!!!!", ".ua", " \u062c\u062f\u064b\u0627", "\u663e\u7740"], [" \u200b\u200b", "!.", "\u2026.", "!:", "\u2026..", "\u7fe1", " \u062c\u062f\u064b\u0627", "!,"], ["!.", ":.", "!\"", ".....", "stra", " \u062c\u062f\u064b\u0627", "\u2026..", "ayar"], [" \u062c\u062f\u064b\u0627", "!.", "icanos", "!:", "ustralian", "unea", "vious", " dicip"], ["!.", ".", ":.", ",.", "!:", ";.", " \u200b\u200b", "!,"], [",", "!,", "!.", "!:", ":.", "\u7279\u8272\u548c", ",.", "\u3082\u3057\u3063\u304b\u308a"], [".", "!.", ":.", " bigger", ",.", ",", " chance", "?."], [" bigger", " chance", " havoc", " pricey", " guts", " booze", "-ish", " nasty"], [" bigger", " pricey", " veggies", " guts", " chance", " hassle", " booze", " savvy"], [" bigger", " savvy", " pricey", " guts", "-ish", " flashy", " vibe", "\u6ca1\u5565"], [" bigger", " savvy", " big", " flashy", " hefty", " pricey", " plenty", " busted"], [" bigger", " savvy", " plenty", " pricey", " big", " nasty", " hefty", " flashy"], [" bigger", " savvy", " big", " plenty", " nasty", " hefty", " pricey", " tricky"], [" bigger", " nasty", " savvy", " big", " hefty", " flashy", " pricey", " tweaks"], [" nasty", " flashy", " savvy", " hefty", " bigger", " big", " tweaks", " pricey"], [" hefty", " hugely", " bigger", " nasty", " big", " flashy", " savvy", " wildly"], [" hugely", " wildly", " hefty", " tweaking", " pricey", " bigger", " savvy", " busted"], [" bigger", " hugely", " big", " flashy", " wildly", " tweaking", " nasty", " hefty"], [" hugely", " just", " wildly", " truly", " big", " hefty", " bigger", " even"], [" just", " hugely", " much", " even", " wildly", " truly", " myriad", " hefty"], [" hugely", " \n\n", "\n\n", " wildly", " hefty", " myriad", " truly", " genuinely"], [" hugely", " hefty", " wildly", " pricey", " nasty", " incredibly", " worse", " bigger"], [" worse", " hugely", " wildly", " bigger", " havoc", " bouncing", " nasty", " hefty"], [" even", " just", " wildly", " worse", " hugely", " much", " truly", " barely"], [" worse", " even", " wildly", " dead", " critical", " looming", " hugely", " just"], [" worse", " even", " dead", " critical", " glitches", " wildly", " bigger", " tweaks"], [" even", " worse", " dead", " critical", " just", " big", " wildly", " hit"], [" even", " worse", " big", " critical", " just", " hit", " dead", " bigger"], [" even", " worse", " critical", " dead", " .", " big", " bigger", " just"], [" worse", " nasty", " tiny", " bigger", " glitch", " tweaks", " glitches", " relentless"], [" worse", " relentless", " nasty", " inevitable", " glitch", " tiny", " critical", " glitches"], [" worse", " relentless", " glitch", " glitches", " critical", " jitter", " inevitable", " faster"], [" glitches", " worse", " glitch", " jitter", " inevitable", " relentless", " stutter", " nasty"], [" worse", " glitches", " glitch", " stutter", " jitter", " fatal", " dead", " inevitable"], [" glitches", " glitch", " worse", " failure", " inevitable", " fatal", " jitter", " stutter"], [" glitches", " glitch", " inevitable", " nightmare", " failure", " loss", " fatal", " jitter"], [" glitch", " glitches", " failure", " loss", " fatal", " disruption", " disastrous", " stutter"], [" glitches", " glitch", " disruption", " stutter", " loss", " failure", " failures", " jitter"], [" glitches", " glitch", " disruption", " loss", " stutter", " failure", " failures", " worse"], [" glitches", " glitch", " stutter", " disruption", " loss", " crashes", " failure", " slowdown"], [" glitches", " glitch", " loss", " worse", " failure", " unacceptable", " stutter", " disastrous"], [" glitches", " glitch", " loss", " worse", " disastrous", " disruption", " stutter", " failure"], [" glitches", " loss", " glitch", " disastrous", " disruption", " worse", " catastrophic", " failure"], [" glitches", " glitch", " percentage", " catastrophic", " loss", " disastrous", " failure", " disruption"], [" glitches", " glitch", " disastrous", " catastrophic", " stutter", " percentage", " loss", " crippling"], [" glitches", " crippling", " glitch", " catastrophic", " ruining", " disastrous", " glaring", " fatal"], [" catastrophic", " crippling", " catastrophe", " disastrous", " glitches", " glitch", " FAILURE", " nightmare"], [" catastrophic", " FAILURE", " glitch", " failure", " catastrophe", " glitches", " crippling", "FAILURE"], [" catastrophic", " stutter", " failure", " catastrophe", " crippling", " FAILURE", "\u5931\u8d25", " disastrous"], [" catastrophic", " stutter", " failure", " catastrophe", " glitch", " crippling", " unacceptable", " FAILURE"], [" catastrophic", " unacceptable", " noticeable", " stutter", " failure", " catastrophe", " glitch", " FAILURE"], [" catastrophic", " stutter", " failure", " unacceptable", " noticeable", " framerate", " FAIL", " catastrophe"], [" stutter", " catastrophic", " failure", " FAIL", " visible", " framerate", "\u5931\u8d25", " unacceptable"], [" stutter", " catastrophic", " framerate", " visible", " failure", "visible", "-visible", " FAIL"], [" catastrophic", " stutter", " frame", " framerate", " catastrophe", "\u5e27", " failure", " disaster"], [" missed", " catastrophic", " failure", " stutter", " miss", " frame", " fatal", " catastrophe"], [" catastrophic", " stutter", " visible", " fatal", " failure", " catastrophe", " frame", " disaster"], [" catastrophic", " stutter", " fatal", " failure", " catastrophe", " disaster", " frame", " visible"], [" stutter", " catastrophic", " frame", " fatal", " visible", " disaster", " failure", " death"]], "p": [[0.9048, 0.0842, 0.0061, 0.0017, 0.0014, 0.0002, 0.0002, 0.0002], [0.3635, 0.1717, 0.118, 0.0338, 0.0218, 0.0124, 0.0103, 0.0085], [0.5445, 0.227, 0.1768, 0.0211, 0.0078, 0.0053, 0.0044, 0.003], [0.0139, 0.013, 0.0122, 0.0062, 0.0054, 0.004, 0.0021, 0.002], [0.0066, 0.0042, 0.0021, 0.0021, 0.0017, 0.0017, 0.0016, 0.0015], [0.0226, 0.0088, 0.0083, 0.0073, 0.0065, 0.0061, 0.0033, 0.0031], [0.0191, 0.008, 0.007, 0.0066, 0.0066, 0.0062, 0.0043, 0.004], [0.0066, 0.0054, 0.0037, 0.0029, 0.0024, 0.0021, 0.0021, 0.0016], [0.1902, 0.1392, 0.07, 0.0166, 0.0156, 0.0156, 0.0129, 0.0122], [0.0127, 0.0082, 0.0082, 0.0044, 0.0022, 0.0021, 0.0021, 0.0018], [0.0534, 0.0184, 0.0135, 0.0105, 0.0093, 0.0093, 0.0072, 0.0068], [0.0066, 0.0033, 0.0026, 0.0021, 0.002, 0.0016, 0.0016, 0.0016], [0.0052, 0.0033, 0.0029, 0.002, 0.002, 0.0019, 0.0019, 0.0018], [0.0117, 0.0046, 0.004, 0.0038, 0.0034, 0.003, 0.003, 0.0028], [0.0204, 0.0192, 0.0096, 0.0096, 0.0075, 0.0071, 0.0071, 0.0066], [0.0062, 0.0058, 0.0048, 0.0043, 0.0043, 0.0043, 0.0035, 0.0023], [0.0282, 0.0182, 0.0182, 0.0161, 0.0133, 0.0125, 0.0098, 0.0076], [0.022, 0.0194, 0.0142, 0.0118, 0.0111, 0.0086, 0.0072, 0.0056], [0.0313, 0.026, 0.019, 0.0179, 0.009, 0.007, 0.007, 0.007], [0.0213, 0.0213, 0.0129, 0.0121, 0.0121, 0.0095, 0.0095, 0.0083], [0.0212, 0.01, 0.01, 0.0073, 0.0057, 0.005, 0.0047, 0.0042], [0.0135, 0.0082, 0.0077, 0.0068, 0.0056, 0.005, 0.005, 0.005], [0.0179, 0.0131, 0.0109, 0.0079, 0.0079, 0.0075, 0.0075, 0.0066], [0.0133, 0.0125, 0.0071, 0.0067, 0.0067, 0.0046, 0.0043, 0.0034], [0.0239, 0.0164, 0.0106, 0.0088, 0.0083, 0.0068, 0.005, 0.0047], [0.0402, 0.019, 0.0148, 0.0123, 0.0102, 0.0102, 0.0102, 0.0084], [0.0155, 0.0121, 0.0088, 0.0069, 0.0065, 0.0065, 0.0057, 0.0054], [0.0299, 0.0193, 0.0103, 0.008, 0.008, 0.0071, 0.0059, 0.0052], [0.0304, 0.0209, 0.0119, 0.0064, 0.006, 0.0056, 0.0053, 0.0053], [0.0589, 0.0158, 0.0102, 0.0096, 0.009, 0.008, 0.0075, 0.0062], [0.0776, 0.0367, 0.0144, 0.0135, 0.0119, 0.0119, 0.0087, 0.0077], [0.1033, 0.0245, 0.018, 0.0169, 0.0169, 0.0116, 0.0109, 0.0096], [0.0557, 0.0247, 0.015, 0.0124, 0.0117, 0.011, 0.0097, 0.0097], [0.0425, 0.0214, 0.0214, 0.0189, 0.0147, 0.013, 0.0115, 0.0101], [0.0416, 0.0237, 0.0223, 0.0163, 0.0135, 0.0135, 0.0105, 0.0093], [0.0493, 0.0339, 0.0193, 0.015, 0.0141, 0.0133, 0.0133, 0.0125], [0.0539, 0.0395, 0.0348, 0.0289, 0.0211, 0.0175, 0.0164, 0.01], [0.05, 0.0414, 0.0389, 0.0184, 0.0173, 0.0162, 0.0135, 0.0135], [0.0777, 0.0416, 0.0196, 0.0185, 0.0173, 0.0173, 0.0163, 0.0144], [0.0479, 0.0373, 0.035, 0.0199, 0.0199, 0.0176, 0.0155, 0.0137], [0.0767, 0.0561, 0.032, 0.0282, 0.0206, 0.0206, 0.0194, 0.0161], [0.2562, 0.1761, 0.0474, 0.0418, 0.0306, 0.0224, 0.0136, 0.0106], [0.2602, 0.2026, 0.0425, 0.0352, 0.0352, 0.0242, 0.0138, 0.0138], [0.2936, 0.2018, 0.0423, 0.0309, 0.0213, 0.0176, 0.0166, 0.0129], [0.123, 0.1085, 0.0618, 0.0331, 0.0292, 0.0258, 0.0242, 0.0242], [0.1234, 0.0848, 0.0548, 0.0275, 0.0243, 0.0215, 0.0202, 0.0189], [0.0924, 0.0561, 0.0561, 0.03, 0.0234, 0.0234, 0.0206, 0.0206], [0.1047, 0.0766, 0.0597, 0.03, 0.0282, 0.0265, 0.0161, 0.0161], [0.1325, 0.0969, 0.0216, 0.0203, 0.0179, 0.0168, 0.0168, 0.0168], [0.109, 0.0661, 0.0548, 0.0515, 0.0354, 0.0354, 0.0243, 0.0122], [0.1537, 0.0823, 0.0641, 0.0414, 0.0389, 0.0389, 0.0267, 0.0251], [0.0989, 0.082, 0.0723, 0.0467, 0.0467, 0.0439, 0.0387, 0.0321], [0.2648, 0.0974, 0.067, 0.0591, 0.0591, 0.046, 0.0316, 0.0279], [0.3117, 0.1299, 0.0788, 0.0422, 0.0329, 0.029, 0.0256, 0.024], [0.2295, 0.1577, 0.0844, 0.0844, 0.0745, 0.0227, 0.0213, 0.0201], [0.2142, 0.1668, 0.0788, 0.0788, 0.0372, 0.0328, 0.029, 0.0256], [0.2179, 0.1923, 0.0801, 0.0486, 0.0379, 0.0295, 0.023, 0.023], [0.8003, 0.0452, 0.0242, 0.0188, 0.0114, 0.0078, 0.0069, 0.0069], [0.3626, 0.1941, 0.0917, 0.0714, 0.0433, 0.0298, 0.0298, 0.0263], [0.242, 0.242, 0.1009, 0.1009, 0.0786, 0.0328, 0.0255, 0.0225], [0.4651, 0.1332, 0.0713, 0.0555, 0.049, 0.0337, 0.0297, 0.0204], [0.4225, 0.1996, 0.0572, 0.0369, 0.0347, 0.0326, 0.0326, 0.0288], [0.5551, 0.1403, 0.0751, 0.0456, 0.0244, 0.019, 0.0139, 0.0096]], "ranks": {"Kotlin": [200645, 161386, 128070, 16423, 30881, 80812, 173996, 191707, 185246, 220559, 216130, 149936, 107959, 147083, 222460, 177305, 216455, 204072, 218214, 244099, 245722, 242179, 245963, 246843, 246461, 233110, 221703, 230985, 219361, 182717, 219906, 205071, 217063, 100559, 79701, 63076, 42849, 43554, 64287, 68028, 69085, 70452, 38744, 32483, 55019, 105282, 95368, 90110, 68644, 91668, 107952, 67046, 93068, 71574, 85096, 44986, 26268, 56105, 58984, 58207, 89039, 93220, 79924]}}, {"pos": 565, "top": [[" \u2013", ".", "\u2013", ",", "\u2026.", "\u2026..", "\u00a0\u00a0", "\u00a0"], [" \u2013", "\u2013", "\u2013and", "\u2013\u2013", " \u2013**", " \u2013,", "**\u2013", ".\u2013"], ["\u2013", " \u2013", "\u2013and", ".\u2013", "\u2026..", "**\u2013", "\u2013\u2013", "\u2026."], [" milfs", " Shemale", " Strec", " Hidal", " Pubbl", " Blowjob", " pupper", "aruhi"], [" @_", " **#", "insip", "ensored", "@$", "@g", " Highlander", " *@"], ["ropa", "insip", " fridge", "\ud83d\ude42", "odd", " **\u2013", " \ud83d\ude42", "aleigh"], ["   \n", "enco", " **#", "-**", "   \r\n", " @_", "ropa", " veggies"], [" veggies", " **\u20ac", " **#", "   \r\n", " *@", "-**", "sdale", "VERY"], ["-ish", "athon", "#\"", "#:", "VERY", " *@", " \t\n", "\u70b9\u51fb\u4e0a\u65b9"], ["\u2013and", "\u2013", "-ish", "\u2013\u2013", " veggies", " pricey", "ilename", "%H"], ["\u2013", "-ish", "...\\", "-heavy", "-tech", " vibe", ".\u2013", "#"], [" veggies", " **#", "isecond", " **+", " pricey", " comfy", " booze", " fridge"], [" veggies", " comfy", "isecond", " pricey", "flix", " skinny", " framerate", " crunchy"], [" veggies", " comfy", " pricey", " skinny", " vibe", "isecond", " booze", "Feels"], [" pricey", " veggies", " busted", " skinny", " comfy", " goofy", " vibe", " booze"], [" pricey", " skinny", " veggies", " goofy", " comfy", "kids", " booze", " busted"], [" veggies", " skinny", " pricey", " kids", "kids", "-ish", " comfy", " booze"], [" veggies", " skinny", "-ish", " booze", " comfy", " pricey", "-big", " meds"], [" booze", " comfy", " skinny", " veggies", " pricey", "-big", " goofy", " carbs"], ["-ish", " booze", " pricey", "-big", "kids", " comfy", " skinny", "Sharper"], ["Though", " hugely", " pricey", " tini", " disastr", " busted", "-ish", "Tiny"], [" busted", " pricey", " booze", "-big", " bigger", "kids", " disastr", "-hit"], [" busted", " hugely", " pricey", " --", "Though", " quicker", " hefty", " battling"], [" hugely", "Though", " \u00ad", " \ufffd", " \r\n\r\n", " --", " disastr", " outright"], [" \n\n", " \r\n\r\n", "\n\n", "  \n\n", "   \n\n", "\r\n\r\n", "\t\n\n", "Though"], ["\r\n\n", " \r\n\r\n", " pricey", " hugely", " framerate", "\u591a\u8fdc", " hefty", " crippling"], [" hugely", " disastr", " crippling", " worse", " pricey", "\u9592", " framerate", " uncomfort"], [" hugely", " just", " disastr", " \ufffd", " \u2013", " wildly", " uncomfort", " barely"], [" worse", " hugely", " uncomfort", " crippling", " barely", " disastr", " unlucky", " dead"], [" worse", " dead", " loss", " \u2013", " clock", " stalled", " meltdown", " unlucky"], [" \u2013", " dead", " ", "\u2013", " worse", " loss", " time", " down"], [" \u2013", " ", " dead", "\u2013", " \n\n", " just", " worse", " half"], [" \u2013", "\u2013", "\u2011", " \n\n", " dead", " tiny", " worse", " \n  \n"], [" \u2013", "\u2013", "\u2011", " tiny", " jitter", "-hit", " worse", " wouldn"], ["\u2011", "!\u201d", "\u5cf0\u503c", " jitter", "\u2013", " worse", " shortfall", "!**"], ["\u2011", "\u2013", "\u2026*", "!\u201d", " \u2013", "!**", "!\u2019", "!*"], ["\u2011", " jitter", " \u2013", "\u2013", " \u2013**", "%!", "\u5cf0\u503c", "\u5360\u6bd4"], ["\u5360\u6bd4", "\u6bd4\u4f8b", " percentage", "\u2011", " disproportionately", " \u2013", "\u2013", "percentage"], ["\u5360\u6bd4", "\u6bd4\u4f8b", " percentage", "percentage", " disproportionately", "\u7684\u6bd4\u4f8b", " \u2013", "\u2011"], ["\u6bd4\u4f8b", "\u5360\u6bd4", "percentage", " percentage", "\u767e\u5206\u6bd4", "%!", "\u7684\u6bd4\u4f8b", "Percentage"], [" percentage", "percentage", "\u5360\u6bd4", "\u6bd4\u4f8b", "\u767e\u5206\u6bd4", "Percentage", "Percent", "percent"], [" percentage", "percentage", "\u5360\u6bd4", "\u6bd4\u4f8b", "Percentage", "Percent", "\u7684\u6bd4\u4f8b", " proportion"], [" percentage", "percentage", "\u5360\u6bd4", "\u6bd4\u4f8b", "\u7684\u6bd4\u4f8b", "\u767e\u5206\u6bd4", " percentages", "Percentage"], [" percentage", "\u5360\u6bd4", "percentage", "Percent", "\u6bd4\u4f8b", "Percentage", "-percent", "percent"], [" percentage", "percentage", "\u5360\u6bd4", " percentages", " percent", "\u767e\u5206\u6bd4", "Percentage", "\u6bd4\u4f8b"], [" percentage", "\u5360\u6bd4", "percentage", "\u4e09\u5206\u4e4b\u4e00", " percentages", " (%)", " percent", " %-"], [" percentage", "percentage", "\u5360\u6bd4", "\u767e\u5206\u6bd4", " %-", " percentages", " (%)", " percent"], [" percentage", "\u5360\u6bd4", "percentage", "\u767e\u5206\u6bd4", "Percent", "Percentage", "\u4e09\u5206\u4e4b\u4e00", " percentages"], ["\u5360\u6bd4", " percentage", "percentage", "\u4e09\u5206\u4e4b\u4e00", "\u767e\u5206\u6bd4", " \u0628\u0646\u0633\u0628\u0629", "-percent", " (%)"], ["\u5360\u6bd4", "\u4e09\u5206\u4e4b\u4e00", "percentage", "-percent", " \u0628\u0646\u0633\u0628\u0629", "%!", " percentage", "\u767e\u5206\u4e4b"], ["%!", "percentage", "-percent", "%/", "\u5360\u6bd4", " +%", "\u4e09\u5206\u4e4b\u4e00", "/%"], ["%!", "%**", "\u5360\u6bd4", "%</", "percentage", "!**", "\u4e09\u5206\u4e4b\u4e00", "%-"], ["%**", "%!", "+%", " (%)", "/%", "%</", " +%", "%/"], ["%**", "%)", ">%", "%!", "%</", "\">%", "+%", "/%"], ["+%", "%**", "%</", ">%", " +%", "/%", "\">%", " (%)"], ["+%", "%**", "%</", "%!", ">%", " %+", "\u066a", "\u5eff"], ["+%", "%**", "\u5eff", " +%", "%</", "\">%", "\u4e8c\u5341\u56db", ">%"], ["+%", "\u5eff", "\u4e8c\u5341\u56db", "%**", "%</", " +%", "%", "\">%"], ["\u4e8c\u5341\u56db", "+%", "\u5eff", "2", "twenty", "\u4e8c\u5341", "icip", "ouch"], ["2", "\u4e8c\u5341\u56db", " quarter", "\u00bc", "\u5eff", "icip", " twenty", "twenty"], ["\u4e8c\u5341\u56db", "2", " %", "%", "+%", " %-", "\u00bc", " %,"], ["2", "\u4e8c\u5341\u56db", "\u00bc", " %", " ~", "%", " quarter", "-quarter"], ["2", "1", "4", "5", "3", "6", "8", "7"]], "p": [[0.3845, 0.2643, 0.2332, 0.052, 0.014, 0.0124, 0.008, 0.0055], [0.3089, 0.1003, 0.0474, 0.0185, 0.005, 0.0047, 0.0014, 0.0013], [0.7571, 0.1025, 0.0798, 0.0108, 0.0101, 0.0051, 0.0051, 0.0042], [0.019, 0.0054, 0.004, 0.0037, 0.0033, 0.0031, 0.0029, 0.0026], [0.0047, 0.0024, 0.0021, 0.0019, 0.0018, 0.0017, 0.0016, 0.0016], [0.0025, 0.0022, 0.0016, 0.0015, 0.0015, 0.0014, 0.0014, 0.0013], [0.0076, 0.0046, 0.0043, 0.0043, 0.0038, 0.0032, 0.0032, 0.0032], [0.0105, 0.0098, 0.0049, 0.0049, 0.003, 0.003, 0.0026, 0.0025], [0.0054, 0.0051, 0.0039, 0.0039, 0.0037, 0.0035, 0.0035, 0.0033], [0.0061, 0.0051, 0.0025, 0.0017, 0.0016, 0.0015, 0.0013, 0.0011], [0.0202, 0.019, 0.0062, 0.0062, 0.0058, 0.0058, 0.0051, 0.0051], [0.0066, 0.0048, 0.0035, 0.002, 0.002, 0.002, 0.0019, 0.0019], [0.0143, 0.0041, 0.003, 0.0025, 0.0021, 0.0019, 0.0019, 0.0019], [0.0254, 0.0057, 0.005, 0.0037, 0.0032, 0.003, 0.0027, 0.0025], [0.0238, 0.0154, 0.0127, 0.0106, 0.0106, 0.0068, 0.0047, 0.0044], [0.0111, 0.0098, 0.0092, 0.0067, 0.0041, 0.0038, 0.0038, 0.0038], [0.0609, 0.0474, 0.027, 0.0175, 0.0164, 0.0113, 0.0113, 0.0099], [0.0211, 0.0154, 0.0136, 0.0106, 0.0088, 0.0088, 0.0083, 0.0064], [0.0082, 0.0073, 0.0073, 0.0056, 0.0053, 0.0041, 0.0039, 0.0036], [0.0048, 0.0045, 0.0045, 0.004, 0.0033, 0.0029, 0.0027, 0.0023], [0.0052, 0.0038, 0.003, 0.0022, 0.0022, 0.0019, 0.0018, 0.0017], [0.0034, 0.0028, 0.0025, 0.0024, 0.0015, 0.0013, 0.0013, 0.0013], [0.0036, 0.003, 0.0028, 0.0022, 0.0021, 0.0019, 0.0015, 0.0014], [0.0047, 0.003, 0.0028, 0.0021, 0.0021, 0.002, 0.0018, 0.0015], [0.2622, 0.0623, 0.055, 0.0402, 0.0244, 0.0168, 0.009, 0.0066], [0.0075, 0.0055, 0.0048, 0.004, 0.0021, 0.0017, 0.0017, 0.0016], [0.0028, 0.0018, 0.0017, 0.0015, 0.0015, 0.0014, 0.0013, 0.0012], [0.0041, 0.003, 0.0024, 0.0024, 0.0022, 0.0021, 0.002, 0.002], [0.0055, 0.0043, 0.0036, 0.0031, 0.0028, 0.0028, 0.0026, 0.0026], [0.0156, 0.0101, 0.0089, 0.0074, 0.0065, 0.0054, 0.0045, 0.0045], [0.0472, 0.0197, 0.0163, 0.0163, 0.0119, 0.0119, 0.0105, 0.0072], [0.0698, 0.0374, 0.0177, 0.0156, 0.0146, 0.0129, 0.0121, 0.0121], [0.3627, 0.0592, 0.0359, 0.0218, 0.0055, 0.0052, 0.0052, 0.0049], [0.321, 0.0812, 0.0263, 0.0071, 0.0033, 0.0031, 0.0031, 0.003], [0.1228, 0.0101, 0.0089, 0.0069, 0.0065, 0.0061, 0.0051, 0.0048], [0.3096, 0.0239, 0.0186, 0.0136, 0.0106, 0.0073, 0.0068, 0.0068], [0.0781, 0.0144, 0.0136, 0.0088, 0.0082, 0.0077, 0.0068, 0.006], [0.0968, 0.0708, 0.0518, 0.0277, 0.0277, 0.0261, 0.0203, 0.0191], [0.2031, 0.1908, 0.1087, 0.0376, 0.0293, 0.0275, 0.0243, 0.0201], [0.2038, 0.1914, 0.1689, 0.1161, 0.0333, 0.0259, 0.019, 0.0157], [0.2465, 0.2176, 0.192, 0.1028, 0.0277, 0.0215, 0.0158, 0.0131], [0.3413, 0.1423, 0.0978, 0.0762, 0.036, 0.0298, 0.017, 0.015], [0.3424, 0.1427, 0.1259, 0.0764, 0.0281, 0.0248, 0.0248, 0.0248], [0.2288, 0.2019, 0.1388, 0.048, 0.0451, 0.031, 0.0291, 0.0213], [0.5937, 0.091, 0.0626, 0.0261, 0.0203, 0.014, 0.014, 0.0102], [0.5523, 0.0847, 0.0514, 0.0214, 0.0201, 0.0189, 0.0178, 0.013], [0.4354, 0.1247, 0.1101, 0.0278, 0.0261, 0.0246, 0.018, 0.0159], [0.2581, 0.2581, 0.1565, 0.0349, 0.0225, 0.0212, 0.0199, 0.0199], [0.2976, 0.1593, 0.1095, 0.0486, 0.0244, 0.0216, 0.0216, 0.0123], [0.1081, 0.1015, 0.0954, 0.0616, 0.0291, 0.0213, 0.0213, 0.0156], [0.0958, 0.0701, 0.0546, 0.0546, 0.0513, 0.0352, 0.0242, 0.0189], [0.0521, 0.0406, 0.0231, 0.0204, 0.018, 0.018, 0.0159, 0.0159], [0.0448, 0.0225, 0.0128, 0.0094, 0.0094, 0.0078, 0.0069, 0.0069], [0.2635, 0.0261, 0.0245, 0.0203, 0.0203, 0.0191, 0.0179, 0.0149], [0.3847, 0.0806, 0.0381, 0.0381, 0.0297, 0.0279, 0.0169, 0.014], [0.6296, 0.0334, 0.0313, 0.0131, 0.0123, 0.009, 0.0084, 0.0074], [0.4337, 0.0334, 0.0245, 0.0148, 0.0116, 0.0075, 0.0075, 0.007], [0.4771, 0.0269, 0.021, 0.0163, 0.0087, 0.0077, 0.0072, 0.0056], [0.2631, 0.0803, 0.0168, 0.0102, 0.0079, 0.0079, 0.0066, 0.0043], [0.475, 0.0684, 0.0082, 0.0082, 0.0072, 0.0036, 0.0034, 0.0025], [0.7678, 0.0556, 0.0298, 0.0091, 0.0055, 0.0036, 0.0033, 0.0029], [0.9327, 0.0015, 0.0013, 0.0007, 0.0006, 0.0005, 0.0004, 0.0002], [0.9998, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Kotlin": [169282, 129205, 101803, 18518, 23949, 57229, 62947, 94174, 109939, 183726, 149704, 80369, 55932, 66217, 193601, 180293, 177819, 153760, 166122, 225413, 244155, 242565, 245330, 246963, 245681, 226294, 225537, 232114, 222313, 162722, 192030, 199900, 189847, 142692, 91825, 87306, 46666, 45462, 65961, 37908, 52481, 62000, 15367, 22734, 29799, 33812, 25723, 37888, 32779, 93991, 183546, 167574, 159407, 175439, 197514, 183735, 216671, 179102, 177401, 143707, 120231, 196524, 167878]}}, {"pos": 566, "top": [[".", " \u2013", ",", "\u2013", "y", ";", "\u2013and", ".\u2013"], ["\u2013and", "een", " \u2013", "\u2013", ".\u2013", " \u2013**", " Hidal", "eer"], ["\u2013", "\u2013and", ".\u2013", " \u2013", ".", ",", " \u2013,", "**\u2013"], [" milfs", " ;;^", " Shemale", " Blowjob", " cumshot", " Pubbl", " Hidal", " Strec"], ["flix", "pedia", "\u516e\u516e", "een", "eer", "hound", "ingly", "ensored"], [" \u200b\u200b", "pedia", "flix", "egers", "een", "\u516e\u516e", "\u0441\u043e\u0442", "carat"], ["\u4f46\u4e0d\u9650\u4e8e", "flix", "tone", "__)", "pants", "pedia", " \u200b\u200b", "een"], [".\\\"", "\u6700\u65b0\u53d1\u5e03", "flix", "egers", "-ish", "sdale", "ulance", "atson"], [" \u200b\u200b", ".\\\"", "\\\"\",", "-ish", "athon", "\u6700\u65b0\u53d1\u5e03", "..)", "egger"], ["-ish", "\u4e94\u989c\u516d\u8272\u7684", "atson", "\u52e4\u52e4\u6073\u6073", "flix", "\u4e3d\u4e1d", "\u5162\u5162\u4e1a\u4e1a", "\u2013and"], [".\\\"", " \u200b\u200b", "-ish", ".&", "een", "eer", "-tone", "."], ["flix", " pornstar", "yton", "\u4e94\u989c\u516d\u8272\u7684", " BBQ", " Blowjob", " milfs", "hound"], ["flix", " pornstar", "hound", " veggies", "bies", "-ish", "yton", " milfs"], ["flix", "-ish", " veggies", "bies", "hound", "\u516e\u516e", " pornstar", " BBQ"], ["-ish", " kids", " veggies", " meds", " comfy", " Aussie", "kids", "ish"], [" kids", "kids", " veggies", "-ish", " skinny", " comfy", "flix", " BBQ"], [" kids", "kids", " veggies", "-ish", "ish", "ball", "bies", " skinny"], ["kids", " kids", "-ish", " veggies", "bies", " meds", "ish", "ball"], ["kids", " kids", " veggies", "flix", " meds", "-ish", "bies", "lessly"], ["kids", " kids", "lessly", "-ish", "ish", "ey", "ingly", "eer"], [" --", "kids", " kids", "ish", "y", "ful", "ey", "lessly"], ["kids", " kids", "lessly", "ish", "ingly", "-ish", "ful", " --"], [" --", "ish", " kids", "fully", "lessly", "kids", "ful", "ey"], [" --", "fully", "ish", "--", " disastr", "-&", "ful", "lessly"], [" \n\n", "\n\n", " --", " \r\n\r\n", "   \n\n", "Though", "\r\n\r\n", "--"], [" --", "lessly", "kids", "\r\n\n", " kids", "-ish", "ish", "ingly"], [" --", "lessly", "ish", " disastr", " kids", "ingly", "kids", " worse"], [" --", " ''", "ish", " {{--<", " disastr", " ?", "\u2011", " worse"], [" --", "\u2011", "ish", " {{--<", "time", " ''", " worse", " disastr"], ["\u2011", " --", " \n  \n", " ____", "time", " __", "ish", " \\\""], [" --", "\u2011", " \n  \n", " \\\"", " \n\n", "time", " time", "ish"], [" --", "\u2011", " \n\n", " \n  \n", " \\\"", " -", " ____", " "], [" --", "\u2011", " \n  \n", " \n\n", " \\\"", "2", " -", "time"], [" \u2013", "\u2011", "\u2013", " \n  \n", " \u2014", "time", " \n\n", " risk"], ["\u2011", "\u2013", " \n  \n", " \n\n", " \u2013", "2", "\uff1f", " \n    \n"], ["\u2011", "\u2013", " \u2013", " \n  \n", " \n\n", "2", "time", "\u2014\u2014"], ["\u2011", " \u2013", "\u2013", " fucking", "time", " \u200b\u200b", " \n\n", "\u2014\u2014"], ["\u2011", " \u2013", "\u2013", " fucking", "time", " milliseconds", " shit", " fuck"], ["\u2011", " \u2013", "\u2013", "time", " milliseconds", " fucking", " time", "\uff01"], ["\u2011", "\uff01", "\u635f\u5931", "time", "\u3002", " \u2013", " loss", "\u2013"], [" percentage", "\u2011", " loss", "time", " percent", "\u635f\u5931", "\uff01", " time"], [" percentage", " loss", " percent", "percentage", "\u2011", "\u6bd4\u4f8b", "\u2013", "time"], [" percentage", " loss", "\u635f\u5931", "-loss", "loss", " percent", "percentage", " losses"], [" percentage", " percent", " loss", "-percent", "percentage", "percent", "\u635f\u5931", "\u767e\u5206\u6bd4"], [" percentage", " percent", "percentage", " percentages", " ratio", "\u767e\u5206\u6bd4", " proportion", " loss"], [" percentage", " percent", " percentages", " loss", " proportion", "-percent", "percentage", " ratio"], [" percentage", " percent", "percentage", " percentages", "\u767e\u5206\u6bd4", "-percent", " \u0628\u0646\u0633\u0628\u0629", "\u5360\u6bd4"], [" percentage", "percentage", " percent", "\u767e\u5206\u6bd4", " percentages", "-percent", " Percentage", "Percent"], [" percentage", "-percent", " percent", "percentage", "\u767e\u5206\u6bd4", "Percent", "/%", "percent"], ["-percent", " percentage", "percentage", "\u5360\u6bd4", "-%", "/%", "Percent", " percent"], ["-percent", " percentage", "percentage", "/%", "Percent", "%!", "%/", "percent"], ["%!", "/%", " percentage", "-percent", "!/", "[%", "%/", "+%"], ["/%", "%!", "!/", "-percent", " percentage", "/", "%/", "%"], ["%", "/%", "%!", "-fold", "%**", "-percent", "/fast", "%</"], ["+%", "%", "+/", "+", "/%", " +%", "%!", " %+"], ["+%", "%", "+", "+/", " %+", "/%", " +%", "%!"], ["+%", "%", "+", " %+", " +%", " %", "+/", "-tier"], ["+%", "%", "+", " %+", " %", " +%", "-fold", "++"], ["%", "+%", " %", "+", " %+", "-fold", "++", "5"], ["%", " %", "+%", "5", "+", "-fold", " %+", "0"], ["%", " %", "+%", " `%", " percentage", "4", " %+", " '%'"], ["4", "%", "5", "+%", "0", "3", " %", "+"], ["4", "5", "3", "0", "2", "6", "7", "1"]], "p": [[0.4339, 0.3379, 0.1097, 0.0968, 0.0048, 0.0029, 0.0029, 0.0017], [0.0145, 0.012, 0.0099, 0.0077, 0.0021, 0.002, 0.0018, 0.0018], [0.3902, 0.1843, 0.1348, 0.0871, 0.0678, 0.0151, 0.0046, 0.0046], [0.0172, 0.0063, 0.0059, 0.0049, 0.0049, 0.0034, 0.0032, 0.0032], [0.0056, 0.0046, 0.0036, 0.0036, 0.003, 0.0026, 0.0022, 0.0022], [0.0059, 0.0052, 0.0046, 0.0034, 0.003, 0.0025, 0.0023, 0.0022], [0.0089, 0.0083, 0.0069, 0.0057, 0.0051, 0.0045, 0.0045, 0.0033], [0.0081, 0.0067, 0.0063, 0.0049, 0.0041, 0.0036, 0.0034, 0.0032], [0.0513, 0.0166, 0.0101, 0.0095, 0.0074, 0.0058, 0.0054, 0.0051], [0.0086, 0.0038, 0.0034, 0.0025, 0.002, 0.0019, 0.0018, 0.0015], [0.0957, 0.0793, 0.0258, 0.0201, 0.0138, 0.0079, 0.0065, 0.0061], [0.0078, 0.0035, 0.0022, 0.0022, 0.0016, 0.0016, 0.0015, 0.0015], [0.0171, 0.0026, 0.0025, 0.0023, 0.0019, 0.0019, 0.0017, 0.0017], [0.0123, 0.0058, 0.0051, 0.0026, 0.0023, 0.0021, 0.0018, 0.0017], [0.0087, 0.0068, 0.006, 0.0039, 0.0032, 0.0027, 0.0023, 0.0023], [0.0116, 0.0085, 0.008, 0.0046, 0.0031, 0.0023, 0.0023, 0.0019], [0.031, 0.0242, 0.0166, 0.0147, 0.0069, 0.0061, 0.0048, 0.0048], [0.0211, 0.0186, 0.0128, 0.0083, 0.0064, 0.005, 0.0039, 0.0032], [0.0108, 0.0084, 0.0062, 0.0062, 0.0055, 0.0035, 0.0035, 0.0031], [0.022, 0.0076, 0.0076, 0.0067, 0.0052, 0.0038, 0.0036, 0.0026], [0.0311, 0.0201, 0.0189, 0.013, 0.0095, 0.0089, 0.0061, 0.0058], [0.0181, 0.017, 0.015, 0.0133, 0.0055, 0.0049, 0.0046, 0.0046], [0.108, 0.0129, 0.0114, 0.0083, 0.0083, 0.0073, 0.0065, 0.0054], [0.0942, 0.0077, 0.005, 0.0037, 0.0034, 0.0028, 0.0027, 0.0024], [0.3795, 0.062, 0.0353, 0.0228, 0.0178, 0.0054, 0.004, 0.004], [0.0109, 0.0071, 0.0048, 0.0038, 0.0035, 0.0029, 0.0024, 0.0022], [0.0103, 0.0052, 0.0052, 0.0033, 0.0024, 0.0022, 0.0019, 0.0015], [0.1632, 0.0092, 0.0052, 0.0041, 0.0038, 0.003, 0.0025, 0.0025], [0.0548, 0.0377, 0.0062, 0.0037, 0.0037, 0.0037, 0.0031, 0.0027], [0.177, 0.1009, 0.0448, 0.0199, 0.012, 0.012, 0.0106, 0.0094], [0.0879, 0.0729, 0.0222, 0.0173, 0.0163, 0.0135, 0.0135, 0.0112], [0.1079, 0.0697, 0.0615, 0.0256, 0.0212, 0.0121, 0.01, 0.01], [0.1021, 0.0795, 0.0582, 0.0258, 0.0167, 0.0157, 0.0108, 0.0101], [0.1687, 0.1489, 0.0548, 0.0483, 0.013, 0.0115, 0.0101, 0.0065], [0.4784, 0.0393, 0.027, 0.0238, 0.0174, 0.0154, 0.0099, 0.0088], [0.6026, 0.0766, 0.0635, 0.0097, 0.0081, 0.0076, 0.0052, 0.0043], [0.4014, 0.0655, 0.0351, 0.02, 0.0137, 0.0114, 0.0065, 0.0057], [0.5605, 0.0974, 0.0246, 0.0132, 0.0048, 0.0043, 0.0035, 0.0031], [0.3482, 0.0937, 0.0163, 0.0135, 0.0135, 0.0112, 0.0099, 0.0082], [0.155, 0.0883, 0.0305, 0.0253, 0.0163, 0.0163, 0.0153, 0.0127], [0.1108, 0.0593, 0.0523, 0.0383, 0.0298, 0.0263, 0.0247, 0.0181], [0.2954, 0.0546, 0.0353, 0.0292, 0.0242, 0.0177, 0.0167, 0.0157], [0.1409, 0.0754, 0.0314, 0.0245, 0.023, 0.0203, 0.0179, 0.0131], [0.2588, 0.0615, 0.0397, 0.035, 0.0309, 0.0212, 0.0155, 0.0137], [0.7492, 0.051, 0.0241, 0.0188, 0.0155, 0.0114, 0.0107, 0.0073], [0.631, 0.0968, 0.023, 0.0179, 0.0148, 0.0102, 0.0096, 0.0085], [0.6785, 0.0631, 0.0462, 0.0338, 0.0232, 0.0218, 0.017, 0.0075], [0.6914, 0.0729, 0.0729, 0.0304, 0.0268, 0.0268, 0.0099, 0.0087], [0.4317, 0.1588, 0.0963, 0.0705, 0.019, 0.0178, 0.0157, 0.0115], [0.2536, 0.1743, 0.1198, 0.0267, 0.0267, 0.0251, 0.0222, 0.0208], [0.1278, 0.0935, 0.0642, 0.0415, 0.039, 0.0285, 0.0285, 0.0184], [0.0647, 0.0647, 0.0418, 0.0346, 0.027, 0.0224, 0.0136, 0.0136], [0.127, 0.0497, 0.0321, 0.0266, 0.0266, 0.0221, 0.0221, 0.0195], [0.15, 0.0379, 0.0356, 0.0261, 0.023, 0.0191, 0.014, 0.0131], [0.4505, 0.0735, 0.0419, 0.0347, 0.0211, 0.0175, 0.0106, 0.0083], [0.6278, 0.0622, 0.0294, 0.0276, 0.019, 0.0095, 0.0062, 0.0048], [0.5754, 0.1367, 0.0368, 0.0286, 0.0153, 0.0105, 0.0093, 0.006], [0.3692, 0.224, 0.0877, 0.0236, 0.0162, 0.0068, 0.0064, 0.0056], [0.3584, 0.1494, 0.0456, 0.0276, 0.0215, 0.019, 0.0139, 0.0108], [0.494, 0.0432, 0.0432, 0.0297, 0.0204, 0.0192, 0.007, 0.007], [0.7922, 0.0946, 0.0737, 0.0039, 0.0039, 0.0024, 0.0015, 0.0013], [0.5262, 0.3398, 0.0262, 0.0246, 0.0204, 0.0085, 0.0066, 0.0022], [0.9962, 0.0036, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Kotlin": [180795, 101451, 79343, 18698, 13348, 34077, 34799, 99217, 99420, 140271, 100896, 56815, 75090, 104936, 184754, 160769, 174172, 164632, 140927, 213103, 241371, 236363, 243989, 247198, 244396, 206548, 219564, 240719, 241972, 214365, 220439, 196458, 179608, 119177, 77072, 70251, 53723, 40893, 49037, 36173, 67598, 79297, 32828, 64554, 92221, 145626, 83093, 68759, 58860, 97186, 167572, 99019, 105379, 57769, 33657, 32820, 57552, 58671, 85816, 24978, 18689, 31963, 37787]}}, {"pos": 567, "top": [[".", ",", ";", "\u2026.", ":", "\u00a0\u00a0", "?", "\u2026.."], [" (\u201c", "?\u201d", "\u00ac", " \uff3b", "=\u201d", "ufer", "-yyyy", "nok"], ["\u2026.", "\u2026..", "\u2026\u201d", ".", "\u2026\"", "\u2026", ",", " (\u201c"], [" cumshot", " milfs", " Blowjob", " \u0e15\u0e38\u0e25", "----</", "NDAR", " Strec", " YYS"], [" (\u201c", "_____", " \u201c", "\u00ac", " \u201c.", " _____", "@\"", "\uff0c\u201c"], [" \u201c.", " (\u201c", " \u201c", "\u2026\u201d", "_____", " \u201d", "=\u201d", " _____"], [".\u201d", "\u201d", "_____", " _____", "\u2026\u201d", "\u201d:", "  \n", " (\u201c"], [" _____", ".\u201d", "_____", "-gray", "  \n", " aluminum", " \u201c.", "\u201d:"], [".\u201d", "\u2026\u201d", "\u201d:", "\u201d", ",\u201d", " \u201c.", "\u201d)", "!\u201d"], ["\u00adt", "\u00ac", "\u00ad", "\u00adtion", " \u00ad", "\u00ading", "\u00adi", "\u2026\u201d"], ["\u00ac", " \u00ad", "\u2026\u201d", "\u00ad", "  \n", ".\u201d", "@\"", ".\")"], [" _____", "-gray", "\u00adtion", " aluminum", "\u00adi", "\u00ading", "-yyyy", "ovsky"], ["-gray", " aluminum", "\u00ading", "NDAR", "ovsky", "\u00adtion", " theater", "ptime"], ["\u00adtion", "\u00ading", "-gray", "avu", "-yyyy", "\u00adi", "ambre", "NDAR"], ["\u00ac", " \u00ad", "\u00ad", "\u00adt", "teen", "\u00ading", " teen", " teens"], [" \u00ad", " teens", "\u00ac", " teen", "teen", " buzz", "-gray", "\u9732\u73e0"], [" \u00ad", " teens", "-gray", "\u00ac", " teen", "teen", "\u00adi", "\u00ad"], [" teens", "\u00ac", " \u00ad", "-gray", "\u00adi", "teen", " teen", "\u00adt"], ["\u00adi", " \u00ad", "\u00ading", "\u00ac", "\u00adtion", "\u00adt", " teens", "-yyyy"], [" \u00ad", "\u00ac", "\u00ad", "teen", "\u00adi", "\u00adt", "\u00adtion", "\u00ading"], [" \u00ad", "\u00ad", "\u00ac", "teen", " \u2014", "\u00adt", "\u00a0\u00a0", "\u2014\""], ["teen", " \u00ad", "\u00adtion", "aney", "\u00adi", "\u00ading", "skyl", "\u00ac"], [" \u00ad", "teen", "\u00ac", "\u00ad", "\u00adtion", "\u00ading", " \u2019", "aney"], [" \u00ad", "teen", "\u00ad", " \u2014", "\u00ac", "\u00adtion", "\u00adt", " teen"], [" \u00ad", "\u00ad", "teen", "  \n\n", " \u2014", "\u00adt", "\u00ads", "\u00adtion"], ["teen", " \u00ad", "skyl", "\u00adtion", "spur", " \u0627\u0631\u0627\u0626", "_utc", "nty"], ["teen", " \u00ad", "_utc", "\u00adtion", "skyl", "nty", "-hours", "spur"], [" \u00ad", "teen", "\u00ad", " \u2019", " \u2014", "\u00adtion", " \u2212", " bouncing"], [" \u00ad", "teen", "\u00adtion", " \u2014", " \u2212", "_utc", " bouncing", " gunfire"], [" \u00ad", " \u2014", " \u2013", "\u2011", " \u2212", "teen", "\u00adtion", "\u00ad"], [" \u00ad", " -", " .", " \u2013", " \u2014", " ", " time", " hours"], [" .", " -", " ", " \u2013", " \u2014", " \u00ad", " time", "\u2011"], [" \u2013", "\u2011", " \u00ad", "\u00ad", "\u200b", " .", " \u200b\u200b", "\u2013"], [" \u00ad", " \u2013", "\u00ad", " \u200b\u200b", "\u2013", "\u00adtion", "\u00adt", "\u2011"], [" \u00ad", "\u2011", "\u00ad", "\u00adtion", "\u00adt", "teen", "\u00adi", "!\u201d"], ["\u2011", " \u00ad", " \u2013", "\u00ad", "\u2013", "time", "!\u201d", "\u200b"], ["\u2011", " \u00ad", "time", " \u2013", "\u00ad", " \u200b\u200b", "\u200b", " /"], ["\u2011", " \u2013", " \u00ad", "\u00ad", " /", " \u200b\u200b", "\u200b", "time"], ["\u2011", " \u2013", "\u6bd4\u4f8b", " \u00ad", " percent", " \u200b\u200b", " percentage", "\u00ad"], [" percentage", "\u2011", "\u6bd4\u4f8b", " percent", "percent", "percentage", "\u767e\u5206\u6bd4", " \u200b\u200b"], [" percentage", " percent", "percentage", "\u6bd4\u4f8b", "\u767e\u5206\u6bd4", " percentages", "\u5360\u6bd4", "percent"], [" percentage", " percent", "percentage", "\u6bd4\u4f8b", " percentages", " (%)", " proportion", "percent"], [" percentage", " percent", " (%)", " percentages", "percentage", "\u767e\u5206\u6bd4", "\u6bd4\u4f8b", "Percent"], [" percentage", " percent", "percent", "percentage", "Percent", "-percent", " (%)", " percentages"], [" percentage", " percent", " percentages", "percent", "-percent", "percentage", "\u767e\u5206\u6bd4", " %"], [" percentage", " percent", " %", "-percent", " percentages", " %-", "percentage", "percent"], [" percentage", " percent", "-percent", " %-", " %", " percentages", "percentage", "percent"], [" percentage", " percent", "-percent", " %", "percentage", " percentages", " %-", "percent"], [" percentage", " percent", "-percent", " %", "percentage", "%!", " (%)", " percentages"], [" percentage", " percent", "-percent", "percentage", "%!", " shortfall", "_percent", "percent"], [" percentage", "-percent", " percent", "percentage", " loss", " shortfall", "%!", "_percent"], [" loss", " percentage", "%!", " failure", "-percent", " disruption", " percent", " downtime"], [" loss", " slowdown", " disruption", " downtime", " delay", " interruption", " shortfall", " failure"], [" loss", " slowdown", " disruption", " delay", " downtime", " failure", " interruption", " glitch"], [" loss", " slowdown", " latency", " delay", " framerate", " disruption", " failure", " glitch"], [" loss", " framerate", "\u635f\u5931", " latency", " slowdown", "-loss", "loss", "Loss"], [" loss", " latency", " framerate", " penalty", " drop", " slowdown", "\u635f\u5931", " violation"], [" framerate", " drop", " stutter", " loss", " latency", " dropout", " penalty", " degradation"], [" frame", "\u5e27", "-frame", "/frame", "frame", " Frame", "Frame", " frames"], [" frame", "\u5e27", "-frame", "frame", "/frame", " Frame", " frames", " framerate"], [" frame", "-frame", "\u5e27", " framerate", " FPS", " Frame", "%", "/frame"], [" frame", "%", "-frame", "\u5e27", " Frame", "frame", " framerate", " FPS"], ["%", " frame", "\u5e27", "-frame", "frame", " Frame", "%-", " stutter"]], "p": [[0.944, 0.0415, 0.0028, 0.0013, 0.0011, 0.001, 0.0009, 0.0006], [0.0345, 0.0077, 0.0064, 0.0053, 0.005, 0.0047, 0.0039, 0.0039], [0.3122, 0.2933, 0.0952, 0.0654, 0.0273, 0.0212, 0.0121, 0.0107], [0.0115, 0.0095, 0.0037, 0.0033, 0.0027, 0.0024, 0.002, 0.002], [0.0481, 0.0292, 0.0292, 0.0258, 0.0227, 0.0147, 0.0114, 0.0114], [0.0762, 0.0462, 0.0434, 0.017, 0.0141, 0.0124, 0.011, 0.0103], [0.0955, 0.0657, 0.0657, 0.058, 0.058, 0.0424, 0.033, 0.031], [0.0436, 0.0233, 0.0133, 0.0133, 0.0117, 0.0081, 0.0076, 0.0052], [0.1508, 0.0669, 0.046, 0.0358, 0.0231, 0.0217, 0.0192, 0.018], [0.0282, 0.0234, 0.0207, 0.0194, 0.0182, 0.0142, 0.0125, 0.0086], [0.0921, 0.0463, 0.0409, 0.0361, 0.0264, 0.0248, 0.0193, 0.0181], [0.024, 0.005, 0.005, 0.0039, 0.0035, 0.0032, 0.0024, 0.0024], [0.007, 0.0038, 0.0029, 0.0024, 0.0024, 0.0021, 0.002, 0.0019], [0.0034, 0.0034, 0.0026, 0.0025, 0.0025, 0.0022, 0.0019, 0.0017], [0.1863, 0.0686, 0.0173, 0.0068, 0.006, 0.0053, 0.0047, 0.0032], [0.0075, 0.0075, 0.0062, 0.0045, 0.0031, 0.0029, 0.0028, 0.0015], [0.0153, 0.0119, 0.0064, 0.0056, 0.0047, 0.0028, 0.0027, 0.0027], [0.0161, 0.011, 0.0092, 0.0076, 0.0046, 0.0041, 0.0038, 0.0034], [0.0296, 0.0204, 0.0131, 0.0123, 0.008, 0.0048, 0.0043, 0.004], [0.2037, 0.0515, 0.0293, 0.0167, 0.0108, 0.0079, 0.0074, 0.007], [0.4087, 0.0667, 0.0261, 0.0123, 0.0116, 0.0051, 0.0038, 0.0033], [0.0133, 0.0104, 0.0036, 0.0032, 0.0028, 0.0026, 0.0026, 0.0025], [0.3439, 0.0265, 0.0133, 0.0111, 0.0036, 0.0032, 0.0028, 0.002], [0.5346, 0.0152, 0.0111, 0.0028, 0.0019, 0.0018, 0.0014, 0.0012], [0.7221, 0.0205, 0.0049, 0.0038, 0.0028, 0.0024, 0.0023, 0.002], [0.0057, 0.0044, 0.0027, 0.0019, 0.0017, 0.0014, 0.0013, 0.0013], [0.0089, 0.0042, 0.0027, 0.002, 0.0013, 0.0011, 0.0011, 0.0011], [0.2206, 0.008, 0.0022, 0.002, 0.002, 0.0019, 0.0017, 0.0014], [0.087, 0.0052, 0.0034, 0.0018, 0.0017, 0.0013, 0.0013, 0.0011], [0.1959, 0.0925, 0.0265, 0.0151, 0.0125, 0.0059, 0.0046, 0.0046], [0.0728, 0.05, 0.039, 0.0323, 0.0323, 0.0285, 0.0135, 0.0135], [0.118, 0.0762, 0.0524, 0.0408, 0.036, 0.0181, 0.015, 0.0141], [0.402, 0.1226, 0.0744, 0.0398, 0.0374, 0.0374, 0.0257, 0.0138], [0.3571, 0.1023, 0.0661, 0.0376, 0.0214, 0.0122, 0.0108, 0.0108], [0.2234, 0.064, 0.0343, 0.0087, 0.0081, 0.0076, 0.0067, 0.0063], [0.3642, 0.0558, 0.0361, 0.0299, 0.0205, 0.0193, 0.016, 0.0125], [0.1295, 0.054, 0.0308, 0.0239, 0.0199, 0.0136, 0.0083, 0.0083], [0.3439, 0.0362, 0.03, 0.0194, 0.0171, 0.0118, 0.0098, 0.0092], [0.3724, 0.0504, 0.0306, 0.0287, 0.0287, 0.0253, 0.0238, 0.0164], [0.1527, 0.1189, 0.0986, 0.0637, 0.0466, 0.0437, 0.0341, 0.0249], [0.5737, 0.088, 0.0685, 0.0304, 0.0286, 0.0252, 0.0237, 0.0237], [0.6512, 0.1282, 0.0223, 0.0223, 0.0209, 0.0144, 0.0144, 0.0119], [0.6928, 0.073, 0.0569, 0.0345, 0.0237, 0.0237, 0.0112, 0.0112], [0.5198, 0.2455, 0.0377, 0.0275, 0.0215, 0.0202, 0.0189, 0.0178], [0.5402, 0.2891, 0.0209, 0.0185, 0.0185, 0.0163, 0.0163, 0.0093], [0.5901, 0.2788, 0.0178, 0.0139, 0.0139, 0.0122, 0.0095, 0.0074], [0.4663, 0.2828, 0.0557, 0.0338, 0.0263, 0.0181, 0.0141, 0.0097], [0.4126, 0.2502, 0.1043, 0.0633, 0.0219, 0.0141, 0.0133, 0.0086], [0.5897, 0.169, 0.0904, 0.0148, 0.0101, 0.0084, 0.0062, 0.0062], [0.589, 0.116, 0.1023, 0.0312, 0.0157, 0.0095, 0.0051, 0.004], [0.438, 0.2069, 0.0977, 0.0247, 0.0192, 0.0124, 0.0103, 0.008], [0.2339, 0.1419, 0.0461, 0.0382, 0.0317, 0.0317, 0.0279, 0.0279], [0.3617, 0.1709, 0.0807, 0.0555, 0.0432, 0.0381, 0.0169, 0.0169], [0.5405, 0.1064, 0.0444, 0.0269, 0.0237, 0.0163, 0.0144, 0.0127], [0.7183, 0.0459, 0.0246, 0.0169, 0.0149, 0.0149, 0.0124, 0.0102], [0.8166, 0.0522, 0.015, 0.0116, 0.0103, 0.0071, 0.0062, 0.0059], [0.6134, 0.0571, 0.0571, 0.0305, 0.0305, 0.021, 0.0127, 0.012], [0.2281, 0.1568, 0.1077, 0.0654, 0.0449, 0.0309, 0.0309, 0.0272], [0.5839, 0.2434, 0.0697, 0.0226, 0.0226, 0.02, 0.0137, 0.0121], [0.8011, 0.0658, 0.0452, 0.0242, 0.0166, 0.0147, 0.0069, 0.0061], [0.7482, 0.0696, 0.0372, 0.0329, 0.0155, 0.0137, 0.0121, 0.01], [0.6252, 0.1791, 0.0513, 0.0353, 0.0189, 0.0108, 0.0095, 0.0074], [0.9924, 0.0043, 0.0007, 0.0004, 0.0002, 0.0002, 0.0002, 0.0001]], "ranks": {"Kotlin": [188325, 102876, 98791, 20403, 38555, 55833, 66390, 135612, 173775, 182293, 192318, 127346, 114510, 173192, 232104, 190214, 203359, 214679, 216101, 245067, 247278, 242711, 243818, 246362, 245862, 232357, 215306, 241934, 236815, 226312, 227484, 199709, 173400, 138844, 89335, 95458, 53195, 52528, 57051, 23612, 33743, 59366, 18412, 19137, 28381, 87759, 82228, 64745, 115559, 109581, 127960, 94865, 101033, 72697, 73658, 35318, 24289, 34517, 37166, 45101, 67912, 73361, 42153]}}, {"pos": 568, "top": [["\u2013", " \u2013", ".", ",", "\u2013and", " \u200b\u200b", "-", " "], ["\u2013", " \u2013", "\u2013and", "   \n", " \u200b\u200b", "\u2013\u2013", ".\u2013", "  \n"], ["\u2013", " \u2013", "\u2013and", ".\u2013", ".", ",", " \u200b\u200b", "\u2026.."], [" Shemale", " pornstar", "_%", " Milf", " \\\"%", "\u6700\u65b0\u53d1\u5e03", "\u00e3ng", " Blowjob"], [" \u200b\u200b", "\u2013", "%", "\u2013\u2013", " \t\n", " ", "   \n", " (@"], [" \u200b\u200b", "\u2013", ".", ".\u2013", " \t\n", "   \n", "%", "\u2013and"], [" \u200b\u200b", " [\u2026]", "   \n", " %", ".", "%", "  \n", " ______"], ["   \n", " \u200b\u200b", ":%", ".", " %", "_%", " #%", ",%"], [" \u200b\u200b", " [\u2026]", "/%", "   \n", ":%", ".", "%", ",%"], ["\u2013", "\u2013and", "/%", ".\u2013", "\u2013\u2013", " \\%", ":%", " |\u2013"], ["\u2013", " [\u2026]", ".\u2013", "%", " \\%", ".%", ":%", " \u2013"], [" %", " \\%", "/%", "_%", ":%", " \\\"%", " \\\"$", "\u6700\u65b0\u53d1\u5e03"], [" %", " \\%", "_%", " percentage", " \\\"%", " +%", " #%", "/%"], [" %", " percentage", "/%", " \\%", "_%", ":%", " #%", " \\\"%"], [" %", " percentage", "\u2013", " \u2013", "/%", " resurgence", " dominance", " potential"], [" %", " percentage", " resurgence", " impact", " potential", " showcasing", " popularity", " incentiv"], [" \u2013", " %", "\u2013", " potential", " impact", " percentage", " \u200b", " popularity"], [" %", " percentage", " \u2013", "/%", " potential", " impact", " loss", " percent"], [" %", " #%", " percentage", "/%", " +%", " %+", " \\%", " percent"], [" %", " #%", " \u2013", " %+", "/%", " &", " --", " percentage"], ["<|endoftext|>", " %", "\n\n", " #", " \u2013", " #%", " \n\n", "  \n\n"], [" %", " #%", " percentage", " %+", "/%", " percent", " %#", " impact"], [" %", " --", " #%", " percentage", " %+", " #", " impact", " loss"], [" %", "<|endoftext|>", " --", " \u2013", " percentage", " ,", " over", " impact"], [" \n\n", "<|endoftext|>", "   \n\n", "  \n\n", "\u2013", " %", "\n\n", " \u2013"], [" %", " percentage", " #%", " percent", " impact", " slowdown", " rate", " %+"], [" %", " percentage", " rate", " percent", " loss", " impact", " portion", " ratio"], [" %", " percentage", " ,", " --", " over", " \u2013", " rate", " off"], [" %", " percentage", " percent", " rate", " loss", " power", " ratio", " impact"], [" percentage", " rate", " %", " loss", " \u2013", " power", " reduction", " cost"], [" percentage", " rate", " loss", " power", " %", " over", " .", " reduction"], [" percentage", " rate", " %", " power", " reduction", " loss", " ratio", " percent"], [" .", " \u2013", " power", " percentage", " rate", " %", " loss", " impact"], [" \u2013", " loss", " percentage", " power", " risk", " reduction", " rate", " ."], [" percentage", " %", " \u2013", " loss", " percent", " reduction", " risk", " ratio"], [" \u2013", " percentage", " loss", " reduction", " percent", " risk", " worse", " rate"], [" percentage", " loss", " reduction", " \u2013", " slowdown", " performance", " risk", " percent"], [" percentage", " loss", " reduction", " percent", " \u2013", " ratio", " disproportionately", " performance"], [" percentage", " loss", " ratio", " percent", " reduction", " disproportionately", " risk", " proportion"], [" percentage", " loss", " percent", " reduction", " ratio", " percentages", "\u5360\u6bd4", " proportion"], [" percentage", " loss", " percent", " percentages", " proportion", "\u5360\u6bd4", " ratio", " reduction"], [" percentage", " loss", " percent", " losses", " percentages", " proportion", " ratio", " reduction"], [" percentage", " percentages", " percent", " loss", " (%)", " losses", " proportion", " Percentage"], [" percentage", " loss", " percent", " percentages", " losses", " (%)", " shortfall", " Percentage"], [" percentage", " percent", " percentages", " loss", " %.", " Percentage", " (%)", "percentage"], [" percentage", " loss", " percent", " percentages", " losses", " shortfall", " reduction", " Percentage"], [" percentage", " loss", " percentages", " percent", "percentage", " Percentage", "\u5360\u6bd4", " shortfall"], [" percentage", " loss", " percent", " percentages", " shortfall", " reduction", " deficit", " downtime"], [" percentage", " loss", " shortfall", " percent", " percentages", " deficit", "percentage", " downtime"], [" percentage", " loss", " shortfall", " downtime", " deficit", "percentage", "\u5360\u6bd4", " disruption"], [" percentage", " loss", " shortfall", "percentage", " downtime", "\u5360\u6bd4", " failure", "-percent"], [" loss", " shortfall", " failure", " downtime", " framerate", "\u635f\u5931", " slowdown", " deficit"], [" loss", " slowdown", " downtime", " failure", " framerate", " shortfall", "\u635f\u5931", " disruption"], [" loss", " slowdown", " failure", " framerate", " downtime", "\u635f\u5931", " disruption", " shortfall"], [" loss", " framerate", " failure", " slowdown", "\u635f\u5931", " latency", " shortfall", " downtime"], [" loss", " framerate", "\u635f\u5931", " slowdown", " latency", " failure", "Loss", "-loss"], [" loss", " framerate", " latency", " slowdown", " dropout", " penalty", " stutter", " drop"], [" framerate", " stutter", " loss", " latency", " slowdown", " drop", " spike", " penalty"], [" frame", "\u5e27", " framerate", " Frame", "/frame", "Frame", "frame", "-frame"], [" frame", " framerate", " Frame", "\u5e27", "/frame", "-frame", "frame", "Frame"], [" frame", " budget", " framerate", " Frame", " Budget", "\u5e27", "-budget", " FPS"], [" frame", " budget", " framerate", " Frame", " fram", "\u5e27", " drop", " stutter"], [" frame", " framerate", " stutter", " budget", " drop", " Frame", " latency", " hitch"]], "p": [[0.3268, 0.3268, 0.2884, 0.0127, 0.0047, 0.0044, 0.0044, 0.0041], [0.5026, 0.1632, 0.0771, 0.0152, 0.0098, 0.0081, 0.0041, 0.0041], [0.8989, 0.0575, 0.0187, 0.0061, 0.005, 0.003, 0.002, 0.0018], [0.019, 0.0079, 0.0055, 0.0042, 0.0033, 0.0027, 0.0026, 0.0024], [0.0661, 0.0275, 0.0228, 0.0201, 0.013, 0.0122, 0.0122, 0.0108], [0.3747, 0.0308, 0.0175, 0.0145, 0.0136, 0.0128, 0.01, 0.0094], [0.1041, 0.0715, 0.0672, 0.0492, 0.0462, 0.036, 0.0193, 0.016], [0.0677, 0.0598, 0.0411, 0.0386, 0.0386, 0.0265, 0.0265, 0.0234], [0.2014, 0.0741, 0.0373, 0.035, 0.035, 0.0309, 0.0256, 0.0212], [0.1756, 0.0607, 0.0503, 0.0503, 0.0444, 0.0368, 0.0305, 0.0174], [0.147, 0.0838, 0.0652, 0.0508, 0.0328, 0.0308, 0.0308, 0.0289], [0.1353, 0.0724, 0.0413, 0.0342, 0.0284, 0.0221, 0.0195, 0.0172], [0.0532, 0.0415, 0.0268, 0.0268, 0.0252, 0.0184, 0.0119, 0.0105], [0.0533, 0.047, 0.0237, 0.0184, 0.0153, 0.0105, 0.0077, 0.0072], [0.0594, 0.0232, 0.0103, 0.0091, 0.0086, 0.0071, 0.0055, 0.0052], [0.0291, 0.0107, 0.0083, 0.0069, 0.0069, 0.0057, 0.0054, 0.0047], [0.036, 0.0299, 0.0205, 0.015, 0.0091, 0.008, 0.0076, 0.0055], [0.0269, 0.0163, 0.0105, 0.0082, 0.0073, 0.006, 0.0044, 0.0044], [0.2036, 0.0401, 0.0259, 0.0167, 0.0101, 0.0095, 0.0084, 0.0079], [0.1936, 0.0204, 0.0204, 0.0109, 0.0103, 0.008, 0.0055, 0.0055], [0.9878, 0.0011, 0.0003, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001], [0.1856, 0.0251, 0.0162, 0.0072, 0.0046, 0.0044, 0.0039, 0.0039], [0.2503, 0.0318, 0.0133, 0.0125, 0.0055, 0.0055, 0.0055, 0.0036], [0.0741, 0.029, 0.0146, 0.0114, 0.0073, 0.0054, 0.0054, 0.005], [0.0925, 0.072, 0.0465, 0.0437, 0.034, 0.034, 0.022, 0.0161], [0.2292, 0.0744, 0.0177, 0.0121, 0.0121, 0.0089, 0.0069, 0.0051], [0.184, 0.0767, 0.0171, 0.0142, 0.0076, 0.0076, 0.0049, 0.0049], [0.0983, 0.0219, 0.0194, 0.016, 0.0125, 0.0117, 0.011, 0.0097], [0.1342, 0.1113, 0.0233, 0.0233, 0.0193, 0.0125, 0.0097, 0.0097], [0.0815, 0.0385, 0.03, 0.0282, 0.0264, 0.0233, 0.016, 0.0151], [0.0701, 0.0331, 0.0292, 0.0242, 0.0177, 0.0167, 0.0167, 0.0157], [0.1046, 0.0361, 0.0339, 0.03, 0.0264, 0.0264, 0.0193, 0.0182], [0.1296, 0.0948, 0.0448, 0.0421, 0.0199, 0.0175, 0.0155, 0.0155], [0.1657, 0.0419, 0.037, 0.0271, 0.0211, 0.0198, 0.0164, 0.0154], [0.0914, 0.0406, 0.0381, 0.0381, 0.0297, 0.0279, 0.0204, 0.0159], [0.1964, 0.0387, 0.0363, 0.0301, 0.0183, 0.0134, 0.0118, 0.0118], [0.06, 0.0563, 0.0439, 0.0387, 0.025, 0.0221, 0.0161, 0.0161], [0.2737, 0.0539, 0.0327, 0.0307, 0.0288, 0.0239, 0.0186, 0.0145], [0.4747, 0.0442, 0.0323, 0.0303, 0.0268, 0.0143, 0.0119, 0.0119], [0.708, 0.0659, 0.0292, 0.0147, 0.0138, 0.0084, 0.0079, 0.0079], [0.8152, 0.046, 0.0246, 0.0096, 0.0085, 0.0071, 0.0071, 0.0066], [0.8129, 0.0756, 0.0191, 0.0131, 0.0116, 0.007, 0.0045, 0.0045], [0.92, 0.0191, 0.0169, 0.0149, 0.0029, 0.0023, 0.002, 0.0016], [0.8423, 0.0538, 0.0254, 0.0224, 0.0073, 0.003, 0.003, 0.0027], [0.9241, 0.0246, 0.0169, 0.0116, 0.0016, 0.0014, 0.0014, 0.0012], [0.8454, 0.054, 0.0225, 0.0175, 0.0044, 0.0032, 0.0032, 0.0022], [0.8915, 0.0269, 0.021, 0.0163, 0.0036, 0.0025, 0.002, 0.0018], [0.7239, 0.0865, 0.0248, 0.015, 0.0076, 0.0067, 0.0067, 0.0063], [0.7449, 0.089, 0.0175, 0.0145, 0.012, 0.0094, 0.0083, 0.0057], [0.4145, 0.2219, 0.072, 0.0234, 0.0161, 0.0151, 0.0142, 0.0097], [0.3054, 0.2378, 0.1123, 0.0365, 0.0251, 0.0143, 0.0118, 0.0118], [0.6609, 0.0543, 0.0479, 0.0423, 0.0176, 0.0121, 0.0107, 0.0094], [0.6785, 0.0918, 0.0434, 0.0263, 0.0205, 0.016, 0.0141, 0.0141], [0.8061, 0.0354, 0.0243, 0.019, 0.013, 0.0115, 0.009, 0.007], [0.8935, 0.0185, 0.0144, 0.0127, 0.0112, 0.0053, 0.0032, 0.0032], [0.7852, 0.1365, 0.0127, 0.0077, 0.0068, 0.0047, 0.0025, 0.0022], [0.5875, 0.2161, 0.0482, 0.0292, 0.0095, 0.0084, 0.0084, 0.0074], [0.6468, 0.1124, 0.0773, 0.0365, 0.0134, 0.0134, 0.0134, 0.0105], [0.8217, 0.0595, 0.0464, 0.0193, 0.0171, 0.0103, 0.0081, 0.0071], [0.9224, 0.0279, 0.0116, 0.0116, 0.0062, 0.0038, 0.0033, 0.0029], [0.4416, 0.4416, 0.0767, 0.0049, 0.0038, 0.003, 0.0026, 0.002], [0.8633, 0.0625, 0.043, 0.0066, 0.0027, 0.0024, 0.0019, 0.0018], [0.9478, 0.0135, 0.0072, 0.0056, 0.0044, 0.0025, 0.0015, 0.0015]], "ranks": {"Kotlin": [115711, 65114, 64388, 5604, 22432, 29635, 60036, 93697, 112460, 152769, 144269, 92699, 54091, 90736, 187567, 128061, 170307, 183618, 154080, 208611, 236961, 219093, 233610, 245085, 236241, 177589, 184916, 222926, 196858, 158688, 188011, 147788, 173862, 121380, 83553, 102527, 68392, 58794, 59235, 59731, 73420, 70378, 25037, 26384, 42573, 93016, 85814, 86757, 85385, 55334, 48085, 29022, 39497, 29373, 35563, 19117, 15809, 20775, 19879, 19982, 34833, 40082, 27585]}}, {"pos": 569, "top": [[" \u2013", "\u2013", ".", " ", ",", "-", "\u2026..", "\u2013and"], [" \u2013", "\u2013", "\u2013and", "\u2013\u2013", "\u00ad", " ", "  ", ".\u2013"], [" \u2013", "\u2013", "\u2013and", "\u2026", "\u2026..", ",", ".\u2013", "\u2026."], ["buster", "flate", " *\u2013", "caster", " FStar", "odle", " pupper", "psilon"], ["@", " @", " \u2018", " \u2013", "&", "\u2013\u2013", ":@", " (@"], ["\u2026..", "(Frame", " fst", "bod", "\u2013", " \u2018", "board", "less"], ["ster", " \u2018", "less", "\u2018", "&", "\u2026..", "lets", "i"], ["less", "ster", "gable", "\ufffds", "(Frame", "buster", "bite", "ingly"], ["less", "&", "\u2013", "\ufffds", " \u2013", "ster", "gable", "\u2013and"], ["\u2013", "\u2013and", "less", "\u2013\u2013", "(Frame", " \u00ad", "\u7f14\u9020", " unmist"], ["\u2013", "&", "less", "@", "i", "-&", "e", " \u2013"], ["less", "buster", "caster", "lessness", "(Frame", "ingly", "gable", "stride"], ["less", "lessness", "ingly", "(Frame", "buster", "caster", "gable", "stride"], ["less", "(Frame", "ingly", "stride", "-esque", "buster", "lessness", "caster"], ["\u2013", " rendition", "ingly", "-esque", " requisite", "\u6301\u7eed\u63d0\u5347", "cap", "less"], ["-esque", "\u627e\u5bfb", "\u4e0d\u5149", "\u8fd8\u6709\u7740", "\u62e5\u6709\u7740", "\u6301\u7eed\u63d0\u5347", "\u5982\u82e5", " rendition"], ["-esque", "\u2013", "e", "less", "ingly", "kids", "cap", "tte"], ["-esque", "kids", "bite", "less", "beat", "cap", "kick", "ingly"], ["bite", "buster", "-esque", "ingly", "kids", "-&", "kick", "beat"], ["-&", "ingly", "less", "bite", "cap", "buster", "kick", "-esque"], ["<|endoftext|>", "-&", "bite", "Though", "\u4e0d\u5149", "less", "cap", "\u5373\u4fbf"], ["buster", "bite", "(Frame", "oire", "kick", "\u5931\u63aa", "\u6301\u7eed\u63d0\u5347", "kids"], ["less", "bite", " looming", "lessly", "buster", "lessness", "ingly", "\u6362\u4ee3"], ["less", " looming", "\u6362\u4ee3", "bite", "buster", "(Frame", "\u6301\u7eed\u63d0\u5347", "lessly"], [" \r\n\r\n", " \r\n", "beat", "<|object_ref_end|>", " framerate", "bite", "   \n\n", "buster"], [" framerate", "stride", "Stride", "beat", "uptime", "buster", "kick", "(Frame"], [" framerate", "uptime", "Stride", "beat", "stride", " uptime", "buster", "pace"], [" framerate", " shutter", "beat", " atop", " looming", " spike", "uptime", " spikes"], [" framerate", "uptime", "beat", " flick", "ptime", "buster", " shutter", "bite"], [" framerate", " spike", " uptime", "uptime", "ptime", " spikes", "\u5cf0\u503c", " shutter"], [" spike", " spikes", " pace", " crashes", " cycle", "less", " kicks", " deadline"], [" spike", " spikes", " crashes", " kicks", " fight", "less", " flick", " crash"], [" spikes", " \u2013", " kicks", " flick", " fight", " spike", "less", " time"], [" framerate", " glitch", " spike", " flick", " crashes", " spikes", "beat", "kick"], [" framerate", "ptime", " glitch", " spike", " flick", "\u5cf0\u503c", "beat", " spikes"], [" framerate", " flick", " glitch", "ptime", "beat", "less", "\u5cf0\u503c", " jitter"], [" framerate", " stutter", " delay", " latency", " flick", " glitch", "ptime", " jitter"], [" framerate", " delay", " flick", " latency", " stutter", " pixel", " deadline", "ptime"], [" framerate", " delay", " delays", " stutter", " flick", " deadline", " latency", " pixel"], [" framerate", " delay", " delays", " slowdown", " latency", " stutter", " pixel", " flick"], [" framerate", " delay", " slowdown", " delays", " latency", " speed", " fps", " slowing"], [" framerate", " slowdown", " delay", " delays", " latency", " slowing", " fps", " stutter"], [" framerate", " slowdown", " delay", " slowing", " slower", " latency", " deadline", " glitch"], [" framerate", " slowdown", " delay", " deadline", " delays", " slower", " slowing", " slows"], [" framerate", " slowdown", " delay", " delays", " deadline", " shortfall", " slowing", " slows"], [" framerate", " delay", " slowdown", " shortfall", " delays", " deadline", " slowing", " latency"], [" framerate", " slowdown", " delay", " shortfall", " deadline", " delays", " timeline", " downtime"], [" framerate", " slowdown", " delay", " deadline", " shortfall", " timeline", " downtime", " delays"], [" framerate", " slowdown", " shortfall", " deadline", " delay", " downtime", " timeout", " glitch"], [" framerate", " slowdown", " shortfall", " loss", " delay", " downtime", " deficit", " deadline"], [" framerate", " slowdown", " shortfall", " loss", " delay", " deficit", " downtime", " glitch"], [" loss", " slowdown", " delay", " shortfall", " deficit", " downtime", "\u5ef6\u8bef", "\u4e22\u5931"], [" loss", " slowdown", "\u4e22\u5931", " delay", "-loss", "\u635f\u5931", " framerate", " disruption"], [" loss", "\u4e22\u5931", " delay", " slowdown", "\u635f\u5931", " framerate", "-loss", " disruption"], [" loss", "\u4e22\u5931", " latency", "\u635f\u5931", " delay", "-loss", "\u5ef6\u8bef", " slowdown"], [" loss", "\u4e22\u5931", " latency", "-loss", "\u635f\u5931", " missed", " delay", " lost"], [" drop", " loss", "\u4e22\u5931", "drop", " latency", " drops", " missed", "-drop"], [" drop", " drops", "drop", " stutter", "-drop", " dropped", " latency", " dropping"], [" drop", " drops", "drop", " dropped", "-drop", " dropping", " loss", "\u4e22\u5931"], [" drop", " loss", " time", "-time", "-drop", " budget", " missed", " latency"], [" budget", "-budget", "budget", " Budget", "\u9884\u7b97", "Budget", " budgets", "_budget"], [" budget", "-budget", " drop", " time", " Budget", "budget", " loss", "-time"], [" drop", " budget", " time", " loss", "-time", " stutter", " spike", " dropout"]], "p": [[0.968, 0.0201, 0.0045, 0.0026, 0.0016, 0.0004, 0.0004, 0.0002], [0.7996, 0.1389, 0.0146, 0.0054, 0.0035, 0.0008, 0.0006, 0.0006], [0.5223, 0.4609, 0.0058, 0.0031, 0.0031, 0.001, 0.0009, 0.0007], [0.0035, 0.0023, 0.0021, 0.0015, 0.0015, 0.0013, 0.0013, 0.0012], [0.1195, 0.0601, 0.0365, 0.0183, 0.0172, 0.0134, 0.0126, 0.0104], [0.0135, 0.0068, 0.0056, 0.005, 0.005, 0.0047, 0.0039, 0.0032], [0.0312, 0.0294, 0.0229, 0.0167, 0.0115, 0.0108, 0.0101, 0.0095], [0.0327, 0.0211, 0.0094, 0.0088, 0.0078, 0.0057, 0.005, 0.0037], [0.0309, 0.0291, 0.0226, 0.0166, 0.0146, 0.0146, 0.0137, 0.0129], [0.0187, 0.0073, 0.0039, 0.0029, 0.0024, 0.0021, 0.0018, 0.0014], [0.1016, 0.0398, 0.0257, 0.0177, 0.0107, 0.0078, 0.0057, 0.0051], [0.0113, 0.0037, 0.0032, 0.003, 0.0027, 0.0022, 0.0021, 0.0021], [0.0241, 0.0089, 0.0083, 0.0073, 0.0069, 0.0035, 0.0033, 0.0029], [0.0056, 0.0032, 0.0032, 0.0027, 0.0025, 0.0025, 0.0024, 0.0021], [0.005, 0.0024, 0.0022, 0.0021, 0.0018, 0.0016, 0.0016, 0.0015], [0.0047, 0.0037, 0.003, 0.0029, 0.0024, 0.0017, 0.0016, 0.0014], [0.0115, 0.0061, 0.0042, 0.004, 0.0035, 0.0031, 0.0031, 0.0026], [0.0085, 0.0052, 0.0031, 0.0031, 0.0026, 0.0026, 0.0024, 0.0023], [0.0053, 0.0053, 0.005, 0.0041, 0.0039, 0.0034, 0.003, 0.0024], [0.0055, 0.0038, 0.0033, 0.0033, 0.0022, 0.002, 0.0019, 0.0019], [0.0025, 0.0022, 0.0022, 0.0022, 0.0022, 0.0019, 0.0018, 0.0016], [0.0067, 0.0059, 0.0049, 0.0032, 0.0022, 0.0017, 0.0013, 0.0012], [0.007, 0.0048, 0.004, 0.0033, 0.0031, 0.0031, 0.0031, 0.0027], [0.0049, 0.0026, 0.0026, 0.0025, 0.0023, 0.0017, 0.0017, 0.0017], [0.0126, 0.0063, 0.0036, 0.0025, 0.0023, 0.0022, 0.0021, 0.0019], [0.021, 0.0036, 0.0036, 0.0034, 0.0032, 0.0032, 0.0028, 0.0024], [0.0218, 0.0049, 0.0038, 0.0038, 0.0036, 0.0036, 0.0029, 0.0028], [0.0091, 0.0043, 0.0038, 0.0036, 0.0032, 0.0028, 0.0028, 0.0026], [0.0096, 0.0079, 0.0045, 0.0042, 0.0042, 0.0037, 0.0035, 0.0033], [0.0261, 0.0066, 0.0062, 0.0062, 0.0055, 0.0048, 0.004, 0.0035], [0.0138, 0.013, 0.0101, 0.0079, 0.0079, 0.0074, 0.0069, 0.0069], [0.0131, 0.0108, 0.0108, 0.0096, 0.0096, 0.009, 0.009, 0.009], [0.0114, 0.01, 0.01, 0.01, 0.01, 0.0089, 0.0089, 0.0078], [0.0301, 0.0104, 0.0098, 0.0092, 0.0086, 0.0086, 0.0081, 0.0067], [0.0367, 0.0112, 0.0105, 0.0099, 0.0087, 0.0077, 0.0072, 0.0072], [0.0641, 0.0143, 0.0119, 0.0119, 0.0081, 0.0081, 0.0077, 0.0068], [0.1674, 0.0188, 0.0176, 0.0166, 0.0129, 0.0129, 0.0121, 0.0114], [0.2653, 0.0263, 0.0232, 0.017, 0.015, 0.0132, 0.0103, 0.0097], [0.3467, 0.0469, 0.0236, 0.0208, 0.0162, 0.0152, 0.0134, 0.0134], [0.4491, 0.0733, 0.0306, 0.0238, 0.021, 0.0127, 0.0112, 0.0099], [0.601, 0.1183, 0.0493, 0.0264, 0.017, 0.011, 0.0067, 0.0067], [0.7519, 0.0545, 0.0292, 0.0122, 0.0095, 0.0074, 0.0057, 0.0057], [0.6468, 0.0531, 0.0221, 0.0134, 0.0126, 0.0118, 0.0111, 0.0092], [0.3235, 0.119, 0.0818, 0.032, 0.0266, 0.0249, 0.0249, 0.0183], [0.3444, 0.1118, 0.0987, 0.0283, 0.0266, 0.022, 0.0171, 0.0161], [0.3608, 0.1327, 0.1034, 0.0296, 0.0278, 0.0261, 0.0123, 0.0096], [0.4538, 0.1012, 0.0614, 0.035, 0.0256, 0.0137, 0.0088, 0.0078], [0.4103, 0.0808, 0.0406, 0.0316, 0.0262, 0.0132, 0.0109, 0.0096], [0.3209, 0.0762, 0.0492, 0.0383, 0.0232, 0.016, 0.011, 0.0103], [0.259, 0.1224, 0.079, 0.0291, 0.0273, 0.0226, 0.0176, 0.0166], [0.1848, 0.1121, 0.0989, 0.0873, 0.0283, 0.0221, 0.0207, 0.0152], [0.1415, 0.1248, 0.0972, 0.059, 0.0459, 0.0279, 0.0246, 0.0231], [0.4647, 0.1175, 0.0629, 0.0629, 0.0231, 0.0231, 0.0204, 0.014], [0.4742, 0.154, 0.0441, 0.0303, 0.0236, 0.0236, 0.0184, 0.0184], [0.5745, 0.2395, 0.0252, 0.0223, 0.0135, 0.0093, 0.0082, 0.0082], [0.597, 0.1938, 0.0297, 0.0204, 0.014, 0.0124, 0.0109, 0.0109], [0.2213, 0.2213, 0.1521, 0.0559, 0.0384, 0.0339, 0.0299, 0.0264], [0.4439, 0.1122, 0.0681, 0.0468, 0.0413, 0.0413, 0.0284, 0.0284], [0.6661, 0.0702, 0.0547, 0.0426, 0.0376, 0.0293, 0.0258, 0.0138], [0.5341, 0.0819, 0.0341, 0.0301, 0.0301, 0.0301, 0.0266, 0.0235], [0.9761, 0.0084, 0.0058, 0.0051, 0.0024, 0.0011, 0.0005, 0.0001], [0.9397, 0.0195, 0.0152, 0.0063, 0.0038, 0.003, 0.0018, 0.0015], [0.5439, 0.2001, 0.065, 0.0506, 0.0175, 0.0128, 0.0106, 0.0106]], "ranks": {"Kotlin": [211755, 191260, 173225, 55069, 98046, 131321, 194571, 224573, 239835, 244834, 246175, 240999, 222037, 238115, 246651, 242926, 243918, 242323, 234669, 244195, 244772, 226590, 240080, 245193, 226275, 183385, 146641, 210892, 196396, 143458, 210848, 200424, 195765, 121453, 104440, 64708, 50909, 55156, 63901, 57897, 77336, 76594, 51380, 33678, 45073, 100777, 94656, 83848, 77166, 90659, 107521, 81523, 91933, 56328, 20636, 14848, 11663, 14895, 15541, 16457, 27595, 23680, 12498]}}, {"pos": 570, "top": [[",", ".", " \u2013", "\u2013", "i", ";", "y", "o"], ["ing", "\u0629", "ed", " \u2013", "ation", "\u2013", "ting", "i\u00e8me"], ["\u2013", " \u2013", ",", "ing", "\u2013and", ".", "ed", "ting"], ["\u0629", "ing", "ation", " St\u00e9ph", "ting", " Strec", "\u52a0\u62ff\u5927", " milfs"], ["ed", "ing", "\u0629", "ation", ".@", "i", "ting", "@"], ["ed", "ing", "\u0629", "\uffe5", " \uffe5", "i", "ting", "ation"], ["ed", "<|endoftext|>", "ing", "ting", " \n\n", "\u0629", "@", "ation"], ["ed", "ing", "<|endoftext|>", "ting", "ation", " \n\n", "@", " @"], ["<|endoftext|>", " \n\n", "ed", "ing", "\u00a0", "ation", "ting", "\ufe0f"], ["ed", "ing", "ation", "ting", "\u00a0", ",", "\u0629", " $"], ["ed", "ing", "ting", "ation", "<|endoftext|>", "\u00a0", "\ufe0f", "@"], ["ed", "ing", "ting", "ation", "\u0629", " &$", " \uffe5", "\ufe0f"], ["ed", "ing", "ting", "ation", "\u0629", "ted", "\ufe0f", "eer"], ["ed", "ing", "ting", "ation", "\u0629", "ted", " arguably", " entirety"], ["ed", "ing", "<|endoftext|>", "ting", " arguably", " requisite", "ation", " "], ["ed", " arguably", "ing", " requisite", " myriad", " bolster", " looming", " touted"], ["ed", "ing", "ting", "ation", " arguably", " requisite", "ted", "\u0629"], ["ed", "ing", "ting", "\u0629", "ted", "ation", " \uffe5", " pricey"], ["ed", "ing", "\u0629", " \uffe5", "ting", "ation", "\u513f", " shortfall"], ["ed", "ing", "ting", "\u0629", " \uffe5", "ted", "edly", "ation"], ["<|endoftext|>", "ed", "ing", " \n\n", " \uffe5", "ting", "\uffe5", "ation"], ["ed", "ing", "ting", "\u0629", "edly", "ation", " shortfall", "-budget"], ["ed", "ing", "ting", " requisite", "edly", " looming", "\u9996\u5ea6", " arguably"], ["ed", "ing", "ting", "ation", "edly", " arguably", "\u5c3d\u5728", " looming"], [" \n\n", "ed", "ing", " \r\n\r\n", " requisite", "edly", "\u9996\u5ea6", " arguably"], ["ing", "ed", " shortfall", "\u9996\u5ea6", "edly", "ting", " looming", " arguably"], ["ing", "ed", " shortfall", " budget", "ting", " looming", "_budget", "edly"], ["ed", "ing", " ,", " for", " --", " arguably", " $", " ;"], [" shortfall", "ed", "ing", " budget", " arguably", " for", " barely", " ,"], ["ing", " shortfall", "ed", " budget", " arguably", " for", " looming", " beyond"], [" for", " ,", "ed", " .", " beyond", "ing", " ;", " over"], [" .", " for", " ,", "ed", " beyond", " barely", " over", " "], [" .", " for", " ,", "ed", " beyond", " barely", " only", " just"], [" barely", " shortfall", "ed", " beyond", " \u2014", " budget", " arguably", " potentially"], [" shortfall", "\u4ec5\u5269", " barely", "ed", " .**", " budget", " uncomfort", "\u4e0a\u9650"], [" shortfall", " .**", "ed", "\u4ec5\u5269", " budget", " wasted", " barely", " \u2014"], [" shortfall", "\u4ec5\u5269", " wasted", " budget", " uncomfort", " exhausted", "-budget", " barely"], [" shortfall", " budget", " wasted", "\u4ec5\u5269", " disproportionately", "-budget", " budgets", " unnecessarily"], [" budget", " wasted", " shortfall", " budgets", "-budget", " costs", "\u4ec5\u5269", " deficit"], [" budget", " budgets", " wasted", "-budget", "\u9884\u7b97", " shortfall", " costs", "budget"], [" budget", " budgets", "-budget", " wasted", " costs", "\u9884\u7b97", " Budget", " shortfall"], [" budget", " budgets", "-budget", " costs", "\u9884\u7b97", " Budget", "budget", " allocation"], [" budget", " budgets", "-budget", " allocation", " shortfall", " Budget", "\u9884\u7b97", " wasted"], [" budget", " budgets", " allocation", "-budget", " shortfall", " allowance", "\u5360\u6bd4", " allocations"], [" budget", " budgets", " allocation", " allowance", " wasted", " percentage", " shortfall", " deficit"], [" budget", " allocation", " wasted", " budgets", " percentage", " allowance", " loss", " shortfall"], [" budget", " allocation", "\u5360\u6bd4", " wasted", " budgets", " percentage", "\u4ec5\u5269", " loss"], [" budget", "\u5360\u6bd4", " wasted", " loss", " entire", " allocation", " allowance", " budgets"], [" wasted", " budget", " allocation", " loss", "\u4ec5\u5269", "\u5360\u6bd4", " allowance", " deficit"], [" loss", " budget", " wasted", " losses", " deficit", " shortfall", "\u5360\u6bd4", "\u4ec5\u5269"], [" loss", " shortfall", " wasted", " budget", " deficit", " payout", "\u635f\u5931", " losses"], [" loss", " wasted", "\u635f\u5931", "\u6d6a\u8d39", " shortfall", " deficit", " lost", "\u7684\u635f\u5931"], [" loss", "\u635f\u5931", " wasted", " lost", "\u6d6a\u8d39", " losses", "-loss", " losing"], [" loss", " wasted", "\u635f\u5931", " lost", "\u4e22\u5931", "\u6d6a\u8d39", " losses", " losing"], [" loss", "\u635f\u5931", " lost", " wasted", "\u4e22\u5931", " losses", " violation", "\u6d6a\u8d39"], [" loss", "\u635f\u5931", " wasted", " lost", "\u4e22\u5931", " overrun", " violation", " losses"], [" loss", " wasted", " overrun", " violation", "\u635f\u5931", " drain", " lost", "\u6d6a\u8d39"], [" loss", " overrun", " wasted", " violation", " drain", " penalty", "\u635f\u5931", " theft"], [" loss", " overrun", " theft", " wasted", " gone", " violation", " drain", " burn"], [" loss", " violation", " theft", " drain", " burn", " overrun", " gone", " steal"], [" loss", " violation", " drain", " burn", " steal", " theft", " bleed", " kill"], [" loss", " drain", " burn", " violation", " steal", " wipe", " theft", " leak"], [" loss", " drain", " burn", " steal", " violation", " theft", " leak", " kill"]], "p": [[0.6399, 0.2668, 0.0464, 0.0171, 0.0036, 0.0032, 0.0026, 0.0025], [0.1176, 0.1105, 0.1105, 0.0247, 0.018, 0.0159, 0.008, 0.0062], [0.4769, 0.3278, 0.0687, 0.0223, 0.0153, 0.0064, 0.0053, 0.0039], [0.0209, 0.0044, 0.0025, 0.0023, 0.0022, 0.0021, 0.0021, 0.0018], [0.7931, 0.1008, 0.0199, 0.0069, 0.005, 0.002, 0.002, 0.0014], [0.8131, 0.0857, 0.014, 0.0043, 0.0043, 0.0028, 0.0028, 0.0026], [0.6193, 0.1566, 0.0892, 0.024, 0.0187, 0.0137, 0.0088, 0.0065], [0.6165, 0.114, 0.1071, 0.0288, 0.0239, 0.0164, 0.0094, 0.0094], [0.6769, 0.1176, 0.0916, 0.0262, 0.014, 0.0091, 0.0071, 0.0066], [0.4386, 0.1424, 0.0408, 0.0383, 0.016, 0.0124, 0.0124, 0.0067], [0.6683, 0.1025, 0.0313, 0.0202, 0.0157, 0.009, 0.009, 0.0074], [0.2948, 0.0793, 0.0512, 0.0399, 0.0242, 0.0147, 0.013, 0.013], [0.5775, 0.1655, 0.0238, 0.0198, 0.0136, 0.0044, 0.0021, 0.002], [0.7218, 0.0918, 0.0232, 0.0062, 0.0043, 0.0043, 0.0019, 0.0017], [0.6695, 0.0276, 0.0123, 0.009, 0.009, 0.0054, 0.0035, 0.0029], [0.2572, 0.0447, 0.0289, 0.0106, 0.0083, 0.0057, 0.0057, 0.005], [0.7889, 0.0689, 0.0053, 0.0041, 0.0034, 0.0021, 0.0021, 0.002], [0.5069, 0.0605, 0.0144, 0.0087, 0.0053, 0.0053, 0.0047, 0.003], [0.3111, 0.0448, 0.01, 0.0083, 0.0083, 0.0057, 0.0044, 0.003], [0.1545, 0.0367, 0.0163, 0.0112, 0.0082, 0.006, 0.0053, 0.005], [0.3731, 0.1762, 0.0347, 0.0186, 0.012, 0.0041, 0.0032, 0.0025], [0.0721, 0.0437, 0.0118, 0.0063, 0.0059, 0.0036, 0.0036, 0.0036], [0.1116, 0.0437, 0.0092, 0.0067, 0.0056, 0.0049, 0.0041, 0.0041], [0.2252, 0.1206, 0.0127, 0.0064, 0.0064, 0.0053, 0.0036, 0.0036], [0.0475, 0.0394, 0.0348, 0.0211, 0.0088, 0.0064, 0.006, 0.0044], [0.0495, 0.034, 0.0118, 0.0104, 0.0092, 0.0081, 0.0056, 0.0056], [0.0569, 0.0443, 0.0209, 0.0087, 0.0072, 0.0068, 0.006, 0.0053], [0.0533, 0.0323, 0.0303, 0.0153, 0.0143, 0.0119, 0.0093, 0.0087], [0.0441, 0.0441, 0.0415, 0.0208, 0.0119, 0.0105, 0.0077, 0.0072], [0.0454, 0.0454, 0.0426, 0.0243, 0.0167, 0.0138, 0.0079, 0.0079], [0.1016, 0.0743, 0.0398, 0.0398, 0.0257, 0.0156, 0.0114, 0.0114], [0.197, 0.1354, 0.0601, 0.0302, 0.0221, 0.0111, 0.0092, 0.0087], [0.3501, 0.0885, 0.0474, 0.0306, 0.0238, 0.0164, 0.0136, 0.0106], [0.0396, 0.0372, 0.0349, 0.0199, 0.0128, 0.0106, 0.0094, 0.0088], [0.0537, 0.0326, 0.0136, 0.0128, 0.0113, 0.0106, 0.0077, 0.0073], [0.0562, 0.0341, 0.0207, 0.0171, 0.0171, 0.0133, 0.0118, 0.0092], [0.0573, 0.0506, 0.0419, 0.0394, 0.0164, 0.0136, 0.012, 0.0106], [0.0629, 0.0521, 0.046, 0.0192, 0.018, 0.014, 0.0096, 0.0085], [0.2048, 0.103, 0.0625, 0.0356, 0.0203, 0.0179, 0.0139, 0.0109], [0.4456, 0.1127, 0.0532, 0.0441, 0.0285, 0.0268, 0.0222, 0.0135], [0.6372, 0.1255, 0.0298, 0.0247, 0.0232, 0.0181, 0.0117, 0.0117], [0.7298, 0.1628, 0.025, 0.0118, 0.0092, 0.0081, 0.0049, 0.0043], [0.6744, 0.1932, 0.0261, 0.014, 0.0075, 0.0075, 0.0066, 0.0066], [0.621, 0.1223, 0.045, 0.0241, 0.0165, 0.0155, 0.0121, 0.0121], [0.5533, 0.0749, 0.0454, 0.0377, 0.0275, 0.0243, 0.0178, 0.0084], [0.4279, 0.0656, 0.0656, 0.0544, 0.0274, 0.0241, 0.0177, 0.0138], [0.2813, 0.059, 0.0554, 0.0489, 0.0358, 0.0336, 0.0316, 0.0316], [0.168, 0.0618, 0.0618, 0.0545, 0.0545, 0.0481, 0.0331, 0.0258], [0.2004, 0.1073, 0.0785, 0.0507, 0.0447, 0.0371, 0.0211, 0.0211], [0.233, 0.0912, 0.0912, 0.0589, 0.0589, 0.0488, 0.0261, 0.0217], [0.1545, 0.1363, 0.0937, 0.0937, 0.073, 0.0237, 0.0173, 0.0163], [0.3503, 0.2407, 0.069, 0.0347, 0.0326, 0.0306, 0.0113, 0.0106], [0.7848, 0.073, 0.0443, 0.0127, 0.0112, 0.0087, 0.0068, 0.0053], [0.8227, 0.0464, 0.0464, 0.0193, 0.0071, 0.0071, 0.0071, 0.0043], [0.8729, 0.0435, 0.016, 0.016, 0.0097, 0.0046, 0.0028, 0.0028], [0.8315, 0.0532, 0.0196, 0.0196, 0.0092, 0.0092, 0.0063, 0.0056], [0.5883, 0.1313, 0.062, 0.0376, 0.0293, 0.0258, 0.0122, 0.0108], [0.3375, 0.1594, 0.1407, 0.0587, 0.0277, 0.019, 0.0168, 0.0131], [0.3578, 0.1162, 0.0798, 0.0704, 0.0427, 0.0294, 0.0259, 0.0202], [0.3116, 0.1146, 0.0695, 0.0695, 0.0372, 0.0328, 0.029, 0.0226], [0.3572, 0.0903, 0.0797, 0.0703, 0.0376, 0.0376, 0.0259, 0.0259], [0.5407, 0.0732, 0.0417, 0.0417, 0.0269, 0.021, 0.0197, 0.0174], [0.5711, 0.0531, 0.0531, 0.0365, 0.0365, 0.0251, 0.0236, 0.0208]], "ranks": {"Kotlin": [185092, 169757, 192678, 49690, 70042, 83336, 112652, 190037, 186923, 223683, 216157, 187982, 108377, 139054, 206599, 187357, 190749, 166081, 141527, 184759, 227456, 175932, 218026, 239558, 228753, 206423, 182876, 213807, 197266, 164924, 216579, 213949, 205739, 144084, 126742, 137785, 131519, 84091, 93260, 84684, 113292, 118972, 64224, 57356, 60501, 118166, 88316, 94642, 97285, 77506, 79674, 91477, 121417, 56093, 47140, 42257, 22999, 23564, 26730, 19722, 26802, 28722, 26449]}}, {"pos": 571, "top": [[" \u2013", ".", "\u2013", ",", "-", "\u00a0", " ", "["], [" \u2013", "\u2013", "\u2013and", " \u2013**", "**\u2013", " \u2013,", ".\u2013", "   \n"], ["\u2013", " \u2013", ".\u2013", "\u2013and", "**\u2013", ".", ",", " \u2013,"], [" **\u300c", " '**", "\uff1f**", "\u00bb.**", " \u2013**", " **>>", " **:**", "\uff0d\uff0d"], ["**\u2013", ".\u2013", " **\u2013", " \u2013**", " \u2013", "(**", "-**", "\u2013"], ["**\u2013", "-**", " **\u2013", ".\u2013", "(**", "\u5728", " \u2013**", "\uff01"], ["\u5728", "  \n", "\uff1f**", "\uff09**", "\uff01", "\uff1f", "\uff08", "**\u2013"], ["**\u2013", "\uff1f**", "  \n", "   \n", "-**", "    \n", " **\u2013", " \u2013**"], ["    \n", "  \n", "   \n", "**\u2013", ".\u2013", " \n    \n", "     \n", "  \r\n"], ["**\u2013", ".\u2013", " **\u2013", "\u2013", " \u0442\u0440\u0451", "\u2013and", "  \r\n", " \u2013**"], [".\u2013", "\u2013", "**\u2013", " **\u2013", " \u2013", "  \n", "\\n", " \u2013**"], [" **\u2013", "**\u2013", " **", " detriment", " '**", " **+", "ivement", " \u2013**"], ["**\u2013", " **\u2013", " \u2013**", " detriment", "\u6b86\u5c3d", "lessness", "baugh", "\u60e8\u91cd"], [" entirety", " impactful", "**\u2013", " detriment", "lessness", "\u60e8\u91cd", "\u6b86\u5c3d", " \u0442\u0440\u0451"], [" entirety", " detriment", " impactful", " impacting", " reliant", " incentiv", " via", " aiding"], [" entirety", " impactful", " detriment", " impacting", " leveraging", " aiding", " reliant", " incentiv"], [" entirety", " via", " detriment", " due", " akin", " impactful", " aiding", " potentially"], [" entirety", " via", " detriment", " albeit", " \u2013", " impactful", " due", " akin"], [" via", " detriment", " arguably", " entirety", " albeit", " potentially", " crippling", " loss"], [" \u2013", " arguably", " via", " albeit", " --", " due", " beyond", " even"], ["<|endoftext|>", " ,", " --", " \u2013", " merely", " though", " arguably", " albeit"], [" --", " arguably", " .", " beyond", " ,", " outright", " albeit", " entirety"], [" --", " ,", " merely", " ;", " arguably", " .", " over", " beyond"], [" ,", " --", " .", " ;", " over", " merely", " owing", " \u2013"], [" --", " ,", " though", " ;", " .", " merely", " outright", " \u2013"], [" --", " .**", " arguably", " outright", " ,", " atop", " **", " amid"], [" ,", " --", " ;", " .", " over", " due", " arguably", " whilst"], [" ,", " --", " .", " over", " ;", " \u2013", " even", " though"], [" ,", " .", " --", " over", " .**", " \u2013", " ;", " due"], [" .", " .**", " **", " ,", " --", " \u2013", " \u2014", " disproportionately"], [" .", " \u2013", " ,", " over", " even", " \u2014", " .**", " due"], [" .", " **", " ,", " \u2013", " .**", " even", " over", " due"], [" .", " \u2013", " even", " ,", " **", " \u2014", " .**", " over"], [" \u2013", " .", " even", " \u2014", " disproportionately", " heavily", " potentially", " arguably"], [" .", " disproportionately", " potentially", " worse", " even", " arguably", " heavily", " crippling"], [" .", " \u2013", " worse", " disproportionately", " potentially", " even", " .**", " \u2014"], [" .", " worse", " potentially", " disproportionately", " even", " .**", " \u2013", " crippling"], [" disproportionately", " .", " worse", " even", " potentially", " .**", " impossible", " crippling"], [" even", " disproportionately", " .", " worse", " \u2013", " impossible", "\u2014even", " wasted"], [" disproportionately", " .", " even", "\u2011", " .**", " worse", " wasted", " impossible"], [" .", ".**", " disproportionately", " even", " loss", " risking", " worse", " .**"], [" loss", " .", " worse", " losses", " disproportionately", " crippling", " unacceptable", " critical"], [" worse", " losses", " loss", " unacceptable", " .**", " potentially", " disproportionately", " ."], [" worse", " unacceptable", " potentially", " risking", " critical", " loss", " losses", " worst"], [" .", " worse", " loss", " unacceptable", " critical", " losses", " disproportionately", " %."], [" worse", " even", " .", " unacceptable", " alone", " loss", " every", " unpredictable"], [" worse", " dangerously", " potentially", " impossible", " risking", " alone", " unpredictable", " unacceptable"], [".**", ".", " potentially", " instantly", " dangerously", " risking", " impossible", " loss"], [".", " plus", ".**", "+.", " PLUS", " alone", " worse", " impossible"], [".", " plus", "+.", ".**", " PLUS", " instantly", " crippling", "++."], [".**", ".", "+.", "**.", " **.", " unacceptable", "++.", " **.**"], [".**", ".", "**.", "+.", "++.", " **.", " **.**", " instantly"], [".**", ".", "**.", " **.", " instantly", " **.**", " unacceptable", "+."], [".**", ".", " instantly", " **.", " **.**", "+.", "**.", " unacceptable"], [" unacceptable", " instantly", ".**", ".", " **.**", " **.", "**.", "+."], [" BEFORE", " before", " unacceptable", " instantly", ".**", ".", " **.", "-before"], [" instantly", " BEFORE", ".**", " before", ".", " unacceptable", "\u77ac\u95f4", " instant"], [" instantly", " BEFORE", " before", ".", " *", " unacceptable", ".**", " **."], [" *", " instantly", ".", " unacceptable", " before", " BEFORE", " **", ".**"], [" *", " before", ".", " instantly", " unacceptable", " BEFORE", " **", "-before"], [" *", ".", " instantly", " unacceptable", ".*", "*.", " before", " **"], [" *", ".", " instantly", "*.", " before", ".*", " unacceptable", ","], [".", " *", ",", " before", " instantly", ".*", "*.", " immediately"]], "p": [[0.359, 0.2796, 0.2178, 0.1321, 0.0023, 0.0021, 0.0018, 0.0009], [0.7719, 0.1184, 0.0339, 0.0233, 0.0219, 0.0059, 0.0032, 0.0032], [0.5443, 0.4239, 0.0145, 0.0078, 0.0032, 0.0025, 0.0013, 0.0009], [0.0092, 0.0086, 0.0071, 0.0067, 0.0059, 0.0049, 0.0041, 0.0038], [0.0348, 0.0288, 0.0225, 0.0198, 0.0186, 0.0136, 0.012, 0.0047], [0.0464, 0.0464, 0.0436, 0.0182, 0.0125, 0.0067, 0.0055, 0.0046], [0.1308, 0.0425, 0.0399, 0.0311, 0.0242, 0.0242, 0.0242, 0.0227], [0.0699, 0.0398, 0.0374, 0.033, 0.0291, 0.0291, 0.0257, 0.0146], [0.1469, 0.0739, 0.0477, 0.0255, 0.0145, 0.0137, 0.01, 0.0083], [0.0321, 0.0207, 0.0067, 0.0063, 0.0059, 0.0052, 0.0052, 0.0041], [0.1074, 0.0612, 0.0289, 0.0155, 0.0137, 0.0128, 0.01, 0.0088], [0.0084, 0.0079, 0.0062, 0.0048, 0.0045, 0.0045, 0.0031, 0.0031], [0.0099, 0.0073, 0.0064, 0.0056, 0.0039, 0.0039, 0.0032, 0.003], [0.0101, 0.009, 0.0079, 0.0066, 0.0037, 0.0035, 0.0029, 0.0027], [0.0844, 0.0201, 0.0147, 0.0051, 0.0048, 0.0042, 0.0037, 0.0033], [0.085, 0.0276, 0.0115, 0.0084, 0.0058, 0.0054, 0.0037, 0.0037], [0.1027, 0.0202, 0.0115, 0.0115, 0.0102, 0.007, 0.0062, 0.0058], [0.031, 0.0146, 0.0121, 0.0065, 0.0065, 0.0054, 0.0048, 0.0048], [0.0136, 0.0113, 0.0088, 0.0077, 0.0064, 0.005, 0.0047, 0.0041], [0.0733, 0.0238, 0.0223, 0.0197, 0.0144, 0.0106, 0.0099, 0.0099], [0.1028, 0.0334, 0.0314, 0.0158, 0.0148, 0.0139, 0.0131, 0.0096], [0.031, 0.0176, 0.0137, 0.0114, 0.0107, 0.0083, 0.0078, 0.0069], [0.1569, 0.0614, 0.0199, 0.0176, 0.0165, 0.0137, 0.0107, 0.0094], [0.1464, 0.1292, 0.0271, 0.0224, 0.0198, 0.0136, 0.0106, 0.01], [0.1616, 0.0524, 0.0318, 0.016, 0.0125, 0.0125, 0.0103, 0.0097], [0.1138, 0.0832, 0.0164, 0.0136, 0.0113, 0.0106, 0.0106, 0.0099], [0.0794, 0.0375, 0.0214, 0.0214, 0.0189, 0.0156, 0.0138, 0.013], [0.2924, 0.0892, 0.0613, 0.0272, 0.024, 0.0137, 0.0121, 0.0107], [0.1862, 0.0996, 0.0442, 0.0344, 0.0252, 0.0222, 0.0144, 0.0144], [0.1513, 0.1335, 0.0918, 0.0862, 0.0491, 0.0434, 0.0218, 0.0159], [0.5585, 0.1412, 0.0856, 0.0131, 0.0123, 0.0085, 0.0058, 0.0055], [0.6052, 0.0819, 0.0438, 0.0438, 0.025, 0.0152, 0.0081, 0.0049], [0.553, 0.1089, 0.0426, 0.0293, 0.0167, 0.0138, 0.0122, 0.0095], [0.2459, 0.1091, 0.0516, 0.0333, 0.0276, 0.0244, 0.0229, 0.0148], [0.0821, 0.0725, 0.044, 0.0364, 0.0322, 0.0235, 0.0195, 0.0134], [0.2609, 0.062, 0.04, 0.04, 0.0293, 0.0228, 0.0214, 0.0201], [0.0775, 0.0604, 0.0567, 0.0366, 0.0344, 0.0162, 0.0153, 0.0143], [0.0631, 0.0631, 0.0593, 0.0434, 0.0298, 0.0205, 0.0192, 0.0181], [0.0925, 0.0527, 0.0527, 0.0362, 0.0249, 0.022, 0.0206, 0.0161], [0.0464, 0.0436, 0.041, 0.0319, 0.0248, 0.0233, 0.0182, 0.0182], [0.0551, 0.0334, 0.0295, 0.0295, 0.0295, 0.0244, 0.0216, 0.0203], [0.0568, 0.0502, 0.0471, 0.0471, 0.0367, 0.0286, 0.0223, 0.0173], [0.0738, 0.0349, 0.0349, 0.0327, 0.0308, 0.0255, 0.0255, 0.0225], [0.08, 0.0456, 0.0294, 0.0294, 0.0294, 0.0229, 0.0215, 0.0168], [0.0671, 0.0592, 0.0317, 0.028, 0.0232, 0.0218, 0.0192, 0.0192], [0.0904, 0.0377, 0.0332, 0.0293, 0.0259, 0.0243, 0.0228, 0.0189], [0.0469, 0.0414, 0.0365, 0.0365, 0.0303, 0.0284, 0.0267, 0.0267], [0.0823, 0.0683, 0.0499, 0.0322, 0.0251, 0.0251, 0.0196, 0.0184], [0.3307, 0.1562, 0.0507, 0.0395, 0.0371, 0.0225, 0.0155, 0.012], [0.1989, 0.1367, 0.1284, 0.0732, 0.0392, 0.0325, 0.0163, 0.0127], [0.2859, 0.1531, 0.1351, 0.0439, 0.0364, 0.0283, 0.025, 0.0235], [0.3954, 0.2718, 0.0606, 0.0606, 0.0325, 0.021, 0.0185, 0.0185], [0.4174, 0.2869, 0.064, 0.0565, 0.044, 0.0221, 0.0183, 0.0092], [0.3071, 0.3071, 0.0776, 0.0568, 0.0345, 0.0268, 0.0252, 0.0196], [0.3993, 0.1886, 0.1144, 0.1144, 0.0225, 0.0212, 0.0137, 0.0078], [0.4153, 0.1731, 0.119, 0.119, 0.0386, 0.0386, 0.0076, 0.0071], [0.5496, 0.0843, 0.0579, 0.0579, 0.0451, 0.0398, 0.0351, 0.0213], [0.38, 0.1089, 0.0961, 0.0848, 0.0583, 0.0514, 0.0454, 0.0214], [0.494, 0.2059, 0.0669, 0.059, 0.0459, 0.0358, 0.0169, 0.0075], [0.4425, 0.2684, 0.1119, 0.0871, 0.0194, 0.0172, 0.0067, 0.0059], [0.9505, 0.0369, 0.0039, 0.0014, 0.0013, 0.0013, 0.0009, 0.0004], [0.5845, 0.4017, 0.0033, 0.0022, 0.0016, 0.0014, 0.0007, 0.0004], [0.9989, 0.0009, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Kotlin": [143288, 55245, 36995, 3504, 5164, 17422, 23823, 50209, 79439, 148897, 183196, 126576, 103472, 116599, 194645, 120488, 161358, 174884, 171670, 233668, 242666, 232665, 239810, 242384, 241801, 220798, 216380, 223462, 220377, 193524, 213469, 176574, 191945, 177770, 190835, 208943, 203684, 177023, 186686, 165261, 169388, 193824, 119530, 104752, 85941, 141635, 136639, 153953, 171786, 123886, 137205, 118903, 151534, 126717, 118252, 80559, 46476, 36998, 42642, 21103, 18027, 2517, 1596]}}, {"pos": 572, "top": [[".", " \u2013", ",", "\u2013", ";", "\u2026.", "\u00a0\u00a0", "\u2026.."], [" \u2013", "\u2013", "\u2013and", ",", " \u2013,", " \u200b\u200b", ".", " very"], [",", "\u2013", ".", " \u2013", ";", "\u2026", "\u2026.", "\u2026.."], [" milfs", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Shemale", " Blowjob", " ;;^", "-------------</", " pornstar", " Guta"], ["\u65b0\u52a0\u5761", ":@", " Millennials", "\u52a0\u62ff\u5927\u7684", " Aussie", " cittadin", " Krem", " millennials"], ["!:", " \u200b\u200b", "\u2026..", ".", "!\u201d.", "\u2026.", "!.", "!)."], ["  \n\n", "  \n", "   \n", "<|endoftext|>", "\uff01", "!\u201d", "\u00a0\u00a0", "   \n\n"], ["   \n", "   \n\n", "!:", "  \n", "  \n\n", "!.", " \t\n", "    \n"], ["   \n\n", "  \n\n", " \n\n", "   \n", "!.", "!\u201d.", "    \n\n", "!\u201d"], ["!:", "Though", "\u8ddf\u81ea\u5df1", "\u76f8\u8f85\u76f8\u6210", "\u8ba4\u8ba4\u771f", " though", " pricey", "\u4fe9\u4eba"], [",", "\u00a0", " though", "<|endoftext|>", ".", " \u00ad", " even", " @"], [" pricey", " veggies", "\u751a\u81f3\u4f1a", "\u582a\u6bd4", "\u8ba4\u8ba4\u771f", " arguably", " **#", " skinny"], [" pricey", " incredibly", " veggies", " arguably", "\u582a\u6bd4", " anyways", " even", " skinny"], [" incredibly", " even", " hugely", " pricey", " arguably", " hefty", " though", " effortlessly"], [" though", " even", " just", " arguably", " incredibly", " hugely", " swiftly", " myriad"], [" even", " though", " arguably", " incredibly", " myriad", " sprawling", " plenty", " just"], [" arguably", " though", " incredibly", " myriad", " even", "-esque", " hugely", " tweaks"], [" arguably", " even", " tweaks", " tweaking", " incredibly", " hugely", " wouldn", " massively"], [" even", " arguably", " incredibly", " hugely", " famously", " tweaking", " albeit", " hefty"], [" even", " arguably", " hugely", " though", "<|endoftext|>", " albeit", " famously", " myriad"], ["<|endoftext|>", " though", " even", "Though", " hugely", " arguably", " swiftly", " myriad"], [" even", " arguably", " hugely", " famously", " incredibly", " ultimately", " myriad", " swiftly"], [" even", " though", " arguably", " hugely", " swiftly", "<|endoftext|>", " ultimately", " much"], ["<|endoftext|>", " even", " though", " hugely", " arguably", " much", " ultimately", " swiftly"], ["\n\n", "<|endoftext|>", " though", "Though", " hugely", " even", " \n\n", " arguably"], [" hugely", " even", " arguably", " though", "\u5373\u4fbf", " famously", " incredibly", " wildly"], ["\n\n", " even", " hugely", " arguably", " famously", " though", "\u5373\u4fbf", "<|endoftext|>"], ["\n\n", " even", "<|endoftext|>", " \n\n", " though", " arguably", " hugely", " famously"], ["\n\n", "<|endoftext|>", " even", " \n\n", "  \n\n", " arguably", " famously", " hugely"], [" even", "<|endoftext|>", " \n\n", " ...", "  \n\n", " \u2026", "...", " famously"], ["<|endoftext|>", " even", " ...", " \n\n", "...", " \u2026", " .", "  \n\n"], [" ...", "<|endoftext|>", "...", " even", " \u2026", "\u2026", " \n\n", " [...]"], [" even", " **", " \u2026", "<|endoftext|>", "\u2026", " .", " famously", " *"], [" even", " heavily", " **", " relentless", " famously", " aggressively", " incredibly", " forced"], [" even", " relentlessly", " relentless", " notoriously", "\u2014even", " heavily", " worse", " famously"], ["<|endoftext|>", " even", " relentless", " notoriously", " worse", " relentlessly", " \u2026", " [\u2026]"], [" impossible", " relentless", " even", " relentlessly", " notoriously", " worse", " unpredictable", " NEVER"], [" impossible", " even", " relentless", " worse", " relentlessly", " notoriously", " incredibly", " unpredictable"], [" impossible", " even", " relentless", " relentlessly", " worse", " notoriously", " unpredictable", " incredibly"], [" impossible", " relentless", " even", " unpredictable", " relentlessly", " worse", " NEVER", " incredibly"], [" impossible", " even", " relentless", " unpredictable", " worse", " relentlessly", " inevitable", " incredibly"], [" relentless", " impossible", " unpredictable", " even", " worse", " relentlessly", " notoriously", " inevitable"], [" relentless", " unpredictable", " impossible", " worse", " even", " relentlessly", " notoriously", " inevitable"], [" unpredictable", " impossible", " relentless", " even", " worse", " unacceptable", " notoriously", " inevitable"], [" impossible", " unpredictable", " relentless", " even", " worse", " unacceptable", " critical", " guaranteed"], [" impossible", " unpredictable", " worse", " relentless", " unacceptable", " even", " NEVER", " inevitable"], [" impossible", " NEVER", " relentless", " inevitable", " unpredictable", " unavoidable", " ANY", " Impossible"], [" impossible", " NEVER", " inevitable", " unpredictable", " relentless", " worse", " never", " unavoidable"], [" impossible", " worse", "\u6839\u672c\u65e0\u6cd5", " NEVER", " inevitable", "\u505a\u4e0d\u5230", " Worse", " relentless"], ["\u505a\u4e0d\u5230", " worse", " glitches", " Worse", " impossible", " panic", " inevitable", " unavoidable"], [" impossible", "\u505a\u4e0d\u5230", " unacceptable", " glitches", "\u6839\u672c\u65e0\u6cd5", " unavoidable", " cannot", " inevitable"], [" impossible", " unacceptable", "\u505a\u4e0d\u5230", " unavoidable", " Impossible", "\u6839\u672c\u65e0\u6cd5", " NEVER", " **+"], [" unacceptable", " impossible", " **", " **+", "\u505a\u4e0d\u5230", " Impossible", " cannot", " NEVER"], ["\n", " **", " unacceptable", " impossible", " **+", " **\"", " **#", " cannot"], [" unacceptable", " impossible", " acceptable", " intoler", "\n", " Impossible", " **", " unthinkable"], [" unacceptable", " impossible", " intoler", " acceptable", " **", " unavoidable", " unsustainable", " Impossible"], [" unacceptable", " **", " impossible", " **+", " Impossible", " intoler", " acceptable", " unavoidable"], [" unacceptable", " **", " impossible", " acceptable", " unsustainable", " Impossible", " unavoidable", " **+"], [" unacceptable", " acceptable", " Accept", " **", "acceptable", " unsustainable", " impossible", " Impossible"], [" unacceptable", " **", " acceptable", " Accept", " impossible", " unus", " *", " unsustainable"], [" unacceptable", " *", " **", "\n", " Accept", " acceptable", " You", " unus"], [" unacceptable", " *", " **", " That", " Accept", " You", "\n", " acceptable"], [" That", " You", " *", " Un", " One", " With", " unacceptable", " Accept"]], "p": [[0.5953, 0.219, 0.1328, 0.0336, 0.0052, 0.002, 0.0019, 0.0015], [0.2754, 0.045, 0.01, 0.0027, 0.0025, 0.0019, 0.0019, 0.0014], [0.4889, 0.3807, 0.085, 0.0215, 0.0054, 0.0042, 0.0029, 0.0027], [0.0194, 0.011, 0.0104, 0.0059, 0.0049, 0.0038, 0.0036, 0.0028], [0.0027, 0.0022, 0.0022, 0.0014, 0.0014, 0.0013, 0.0012, 0.0011], [0.0048, 0.0045, 0.0023, 0.0019, 0.0017, 0.0016, 0.0014, 0.0013], [0.1859, 0.1278, 0.0642, 0.0366, 0.0303, 0.0153, 0.0143, 0.0126], [0.0738, 0.0371, 0.0083, 0.0083, 0.0078, 0.0069, 0.0047, 0.0035], [0.2998, 0.125, 0.059, 0.0336, 0.0297, 0.0246, 0.0231, 0.0149], [0.0011, 0.001, 0.0007, 0.0006, 0.0006, 0.0006, 0.0006, 0.0005], [0.0445, 0.0369, 0.0306, 0.0164, 0.012, 0.012, 0.0106, 0.0106], [0.0032, 0.003, 0.0019, 0.0017, 0.0014, 0.0013, 0.0013, 0.0013], [0.0036, 0.0034, 0.0034, 0.0023, 0.0022, 0.0018, 0.0014, 0.0012], [0.0056, 0.0053, 0.0032, 0.0028, 0.0025, 0.0022, 0.0022, 0.0018], [0.021, 0.0185, 0.0073, 0.0064, 0.0057, 0.0047, 0.0039, 0.0037], [0.0181, 0.0181, 0.0133, 0.0055, 0.0049, 0.0046, 0.0043, 0.004], [0.0295, 0.0123, 0.0115, 0.0079, 0.0079, 0.0075, 0.007, 0.0058], [0.0166, 0.0095, 0.0089, 0.0079, 0.0074, 0.0061, 0.0061, 0.0045], [0.0709, 0.0626, 0.0278, 0.0261, 0.0149, 0.0058, 0.0058, 0.0051], [0.0796, 0.0514, 0.0293, 0.0228, 0.0147, 0.0108, 0.0108, 0.0101], [0.9821, 0.0008, 0.0005, 0.0004, 0.0003, 0.0002, 0.0002, 0.0002], [0.0807, 0.0279, 0.0231, 0.0085, 0.0062, 0.0052, 0.0048, 0.0046], [0.1002, 0.0306, 0.027, 0.0238, 0.0112, 0.0106, 0.0106, 0.0093], [0.2217, 0.0635, 0.0319, 0.0161, 0.0117, 0.011, 0.0097, 0.0063], [0.1287, 0.1002, 0.0608, 0.0392, 0.0287, 0.0253, 0.0174, 0.0154], [0.0865, 0.0594, 0.0264, 0.0193, 0.0193, 0.016, 0.0091, 0.0086], [0.1043, 0.0717, 0.0493, 0.0233, 0.0193, 0.0141, 0.0133, 0.0117], [0.3903, 0.0637, 0.0599, 0.0283, 0.0194, 0.0161, 0.0134, 0.0086], [0.3325, 0.178, 0.079, 0.0655, 0.0309, 0.0156, 0.0114, 0.0114], [0.3466, 0.0823, 0.0566, 0.0343, 0.0222, 0.0222, 0.0173, 0.0152], [0.8011, 0.0452, 0.0452, 0.0227, 0.0156, 0.0065, 0.0039, 0.0039], [0.3369, 0.2973, 0.0852, 0.0663, 0.0485, 0.026, 0.0215, 0.0202], [0.2205, 0.2071, 0.0462, 0.0193, 0.015, 0.015, 0.0117, 0.011], [0.1091, 0.0276, 0.0276, 0.0178, 0.0148, 0.0122, 0.0101, 0.0101], [0.1045, 0.0219, 0.0219, 0.0193, 0.0171, 0.0171, 0.0171, 0.0133], [0.1209, 0.0445, 0.0306, 0.0238, 0.021, 0.0197, 0.0197, 0.0185], [0.0608, 0.0536, 0.0368, 0.0325, 0.0325, 0.0305, 0.0144, 0.0127], [0.0992, 0.0682, 0.0602, 0.0322, 0.0284, 0.0251, 0.0134, 0.0126], [0.1773, 0.0949, 0.0508, 0.0225, 0.0225, 0.0155, 0.0146, 0.0137], [0.1834, 0.0675, 0.0559, 0.0361, 0.0182, 0.016, 0.0133, 0.0133], [0.1464, 0.0736, 0.0649, 0.0327, 0.0145, 0.0136, 0.0106, 0.0094], [0.0851, 0.0799, 0.0623, 0.0402, 0.0229, 0.0215, 0.0115, 0.0108], [0.0854, 0.0854, 0.0802, 0.0295, 0.0295, 0.0203, 0.0139, 0.0116], [0.1204, 0.0938, 0.0881, 0.0502, 0.0416, 0.0153, 0.0127, 0.0127], [0.1355, 0.0822, 0.0413, 0.0365, 0.0302, 0.0221, 0.0152, 0.0111], [0.1371, 0.0689, 0.0537, 0.0393, 0.0369, 0.0287, 0.0174, 0.0136], [0.2439, 0.1082, 0.0351, 0.0351, 0.031, 0.0227, 0.0188, 0.0138], [0.1918, 0.0851, 0.026, 0.0202, 0.019, 0.0168, 0.0157, 0.0148], [0.1398, 0.0514, 0.0454, 0.0401, 0.0354, 0.0332, 0.0201, 0.0201], [0.0497, 0.0439, 0.0412, 0.0321, 0.0266, 0.0183, 0.0172, 0.0161], [0.1785, 0.0897, 0.048, 0.0351, 0.0274, 0.0188, 0.0188, 0.0146], [0.2504, 0.1617, 0.0361, 0.0281, 0.0264, 0.0219, 0.015, 0.0141], [0.2522, 0.1268, 0.0599, 0.0301, 0.0235, 0.0235, 0.0194, 0.0151], [0.3321, 0.1474, 0.1384, 0.0696, 0.0199, 0.0129, 0.0083, 0.0078], [0.9879, 0.0046, 0.0007, 0.0007, 0.0005, 0.0003, 0.0003, 0.0003], [0.9803, 0.0075, 0.0014, 0.0009, 0.0006, 0.0005, 0.0005, 0.0005], [0.9363, 0.022, 0.0067, 0.002, 0.0019, 0.0012, 0.001, 0.001], [0.9621, 0.0065, 0.0027, 0.002, 0.0014, 0.0008, 0.0007, 0.0007], [0.9764, 0.0058, 0.0037, 0.0024, 0.0011, 0.0007, 0.0006, 0.0004], [0.9226, 0.0169, 0.0085, 0.0031, 0.0029, 0.0023, 0.0021, 0.002], [0.8176, 0.0523, 0.0523, 0.0071, 0.0055, 0.0049, 0.0036, 0.0031], [0.4083, 0.2806, 0.1502, 0.0245, 0.0169, 0.0096, 0.009, 0.0048], [0.2195, 0.2195, 0.1175, 0.1037, 0.0555, 0.0358, 0.0262, 0.0262]], "ranks": {"Kotlin": [230125, 176807, 158875, 9204, 7359, 32573, 49548, 92325, 114312, 174328, 208456, 115812, 83595, 66465, 184353, 107875, 108690, 104398, 149136, 213382, 230357, 198276, 220088, 229369, 220225, 173626, 139395, 145317, 131084, 94067, 118196, 68582, 46061, 67402, 140377, 96877, 96945, 106084, 93216, 107375, 116298, 112274, 80511, 89657, 87976, 104549, 123281, 142475, 130734, 84604, 107520, 49894, 72728, 60663, 38794, 13113, 5961, 5742, 5592, 3311, 3638, 685, 814]}}, {"pos": 573, "top": [[" \u2013", ".", " (\u201e", " \u2013,", "\u2013", ".\u2013", "\u2013and", " \u200b\u200b"], [" \u2013**", "**\u2013", " *\u2013", " Strec", "\u52a0\u62ff\u5927\u7684", " \u2013,", " \u0641\u0631\u0647\u0646", "CallCheck"], [".\u2013", "**\u2013", "\u2013and", "\u2013", "\u3002", ".", " \u2013,", "\u2026.."], [" Shemale", " milfs", " ``(", "\uff3f\uff3f", " cumshot", "':''", " Blowjob", "``"], ["\u7684", "\u5728", "\uff08", "\u548c", "\u4e2d", "\uff1f", "\u3002", "\u7b49"], ["\uff1f", "\u3002", "\u5728", "\uff01", "\u7684", "\u4e2d", "\uff08", "\u548c"], ["\u4e2d", "\uff08", "\u3002", "\u5728", "\u7684", "\uff1f", "\u548c", "\uff01"], ["\u4e2d", "\u5728", "\u7684", "\uff08", "\u3002", "\uff1f", "\u591a", "\u548c"], ["   \n\n", "  \n\n", "    \n\n", "\n\n", "\u3002", "\uff08", " \n\n", "        \n\n"], ["raries", "!:", ".:**", "ly", "\ufe0e", ".\u2022", "ighbor", "ifacts"], ["\u3002", "\uff01", "\u4e2d", "\u5728", "\uff08", "\uff0c", "\uff1f", "\u7684"], [" **\u201e", "raries", " **:", " Shemale", " **\u3010", " milfs", "\uff1f**", " **:**"], [" **:", " milfs", " **\u201e", "htags", " Shemale", "raries", "_:", "htag"], ["raries", " milfs", " Shemale", "htags", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " LGBTQ", " incentiv", " pornstar"], ["ly", " incentiv", "raries", "\u5468\u906d", " LGBTQ", " --", "\u5373\u4fbf", " arguably"], ["ly", " --", " arguably", " incentiv", " savvy", " swiftly", " standout", " touted"], ["ly", "\u2013", " arguably", "...", "Though", "-esque", "\u2013and", " standout"], ["ly", "\u2013", "  \n\n", "<|endoftext|>", "...", "-esque", "\u2013and", "\ufe0f"], ["ly", "-esque", " incredibly", " arguably", " savvy", " gritty", "Though", " thru"], ["ly", "<|endoftext|>", " arguably", "  \n\n", "ally", "\ufe0f", "\u5373\u4fbf", "ically"], ["<|endoftext|>", "  \n\n", "   \n\n", " \n\n", "  \n  \n", "Though", "ly", "\u5373\u4fbf"], [" **", " fueled", "ly", " **\u2022", "icile", " arguably", " uniquely", " leveraging"], ["<|endoftext|>", " arguably", " uniquely", "ly", " --", " swiftly", "  \n\n", " deeply"], ["<|endoftext|>", " --", " arguably", "  \n\n", " uniquely", " swiftly", " heavily", " notably"], ["  \n\n", " \n\n", "\n\n", "   \n\n", "\r\n\r\n", " \r\n\r\n", "  \r\n\r\n", "<|endoftext|>"], ["  \n\n", " \n\n", " \r\n\r\n", "   \n\n", "\r\n\r\n", "  \r\n\r\n", " **", "\t\n\n"], ["  \n\n", "\n\n", " \n\n", "\r\n\r\n", " \r\n\r\n", "   \n\n", "<|endoftext|>", "  \r\n\r\n"], ["  \n\n", "\n\n", " \n\n", "<|endoftext|>", "\r\n\r\n", " \r\n\r\n", "   \n\n", "  \r\n\r\n"], ["  \n\n", "\n\n", " \n\n", "<|endoftext|>", "\r\n\r\n", " \r\n\r\n", "   \n\n", "  \r\n\r\n"], ["  \n\n", " \n\n", "<|endoftext|>", "   \n\n", "\n\n", " \r\n\r\n", " heavily", "  \r\n\r\n"], ["<|endoftext|>", "  \n\n", " \n\n", " ,", " heavily", "\n\n", " \u2013", " even"], ["<|endoftext|>", "  \n\n", " \n\n", " ,", " heavily", "\n\n", " \u2013", " -"], [" \u2013", "<|endoftext|>", "  \n\n", " \u2014", " ,", " heavily", " \u201c", " -"], ["  \n\n", " \u2013", "\u2011", " heavily", " deeply", " **", " **\u2013", "<|endoftext|>"], [" **\u201c", " **\u2013", "  \n\n", " **", "\u2026**", "\u2014even", " leveraging", "\u2011"], ["  \n\n", "\u2026**", " **\u2013", "\u2011", " **\u201c", " \u2013", "<|endoftext|>", "\u2014even"], [" **\u2013", " **\u201c", "\u7f3a\u4e4f", " notoriously", "\u2014even", "  \n\n", " inefficient", " bottleneck"], [" **\u2013", " **\u201c", "\u2011", "\u7f3a\u4e4f", " bottleneck", " inefficient", "\u2014even", " notoriously"], [" **\u2013", " inefficient", " **\u201c", " bottleneck", "\u7f3a\u4e4f", " \u2013,", " relentless", " notoriously"], [" inefficient", " **\u2013", " sluggish", " bottleneck", "\u7f3a\u4e4f", " relentless", " **\u201c", " notoriously"], [" inefficient", " bottleneck", " sluggish", "-heavy", " relentless", " leveraging", "\u7f3a\u4e4f", " hardware"], [" inefficient", " bottleneck", " sluggish", " hardware", "-heavy", " leveraging", " glitches", "\u2014even"], [" bottleneck", " inefficient", " sluggish", " leveraging", "-heavy", " inherently", " acceler", " hardware"], [" inefficient", " bottleneck", " sluggish", " leveraging", " notoriously", " transitioning", " inherently", "-heavy"], [" inefficient", " bottleneck", "-heavy", " inability", " inherently", " notoriously", " slower", " glitches"], [" inefficient", " bottleneck", "-heavy", " inability", " glitches", " inherently", " exacerbated", "\u7f3a\u4e4f"], [" bottleneck", " inefficient", " glitches", " Worse", "-heavy", " synergy", "\u7f3a\u4e4f", "  \n\n"], ["  \n\n", " Worse", " Transition", "\u7f3a\u4e4f", " bottleneck", " Hybrid", " lacks", " inefficient"], [" Worse", " bottleneck", " inability", " lacks", " Speed", "\u7f3a\u4e4f", " glitches", " Hybrid"], [" fkk", " bottleneck", "\u7f3a\u4e4f", " Complexity", " Lack", "\u6210\u672c\u9ad8", " Hardware", " Transition"], [" Complexity", " fkk", "\u6210\u672c\u9ad8", "\u7f3a\u4e4f", " knull", " Hardware", " bottleneck", "!!:"], [":**", " Complexity", " **:", " GPU", "+:", "-**", "\uff1a**", " **:**"], ["-**", ":**", " **\u2013", " **:", " CPU", " Complexity", " **\"", " **"], ["-**", " CPU", " concurrency", "Concurrency", " **\u2013", " **", ":**", " **+"], [" CPU", " concurrency", "-**", "Concurrency", " GPU", " JVM", "CPU", "-thread"], [" Kotlin", " CPU", "Concurrency", " concurrency", "-**", " JVM", "-thread", " Serialization"], [" Kotlin", " CPU", " JIT", " JVM", "-**", " concurrency", " **", "Concurrency"], [" Kotlin", " JIT", " CPU", " JVM", " JNI", "JNI", "-thread", "CPU"], [" JIT", " Kotlin", " JNI", " CPU", " JVM", "JNI", " **", " Memory"], [" Async", " async", " Kotlin", "Async", " Native", "async", " **", "Native"], [" Async", " async", " Kotlin", " Native", "Async", " **", "-**", "async"], [" **", "-**", " Async", " async", " Kotlin", " Native", "**", ",**"], [" Kotlin", "-", " Async", "-**", " async", "-K", " Native", "Async"]], "p": [[0.6291, 0.2464, 0.0123, 0.0096, 0.0084, 0.0079, 0.0066, 0.0054], [0.0309, 0.0212, 0.0078, 0.0069, 0.0061, 0.0039, 0.0037, 0.0037], [0.403, 0.1578, 0.0845, 0.0512, 0.0331, 0.0311, 0.0258, 0.0107], [0.0124, 0.0117, 0.0067, 0.0063, 0.0059, 0.0059, 0.0055, 0.0055], [0.1343, 0.0923, 0.0815, 0.0494, 0.0361, 0.03, 0.0219, 0.0193], [0.1952, 0.1428, 0.1184, 0.1112, 0.0674, 0.0525, 0.0435, 0.0264], [0.2175, 0.1164, 0.0965, 0.0965, 0.0907, 0.0706, 0.0485, 0.0294], [0.1055, 0.0931, 0.0875, 0.0725, 0.0601, 0.0343, 0.0302, 0.0302], [0.2465, 0.192, 0.1495, 0.055, 0.0485, 0.0378, 0.0378, 0.0244], [0.0094, 0.0094, 0.0078, 0.0065, 0.0057, 0.005, 0.0047, 0.0047], [0.1949, 0.1259, 0.0813, 0.0525, 0.0525, 0.0318, 0.0299, 0.0233], [0.0368, 0.0197, 0.0185, 0.0127, 0.0099, 0.0082, 0.0077, 0.0068], [0.0175, 0.0113, 0.0088, 0.0083, 0.0073, 0.0073, 0.0069, 0.0064], [0.0155, 0.0137, 0.01, 0.0057, 0.0054, 0.005, 0.0044, 0.0042], [0.0471, 0.0153, 0.0032, 0.0017, 0.0017, 0.0016, 0.0015, 0.0015], [0.0549, 0.013, 0.0115, 0.0108, 0.0066, 0.0054, 0.0048, 0.004], [0.0977, 0.0247, 0.015, 0.0141, 0.0117, 0.0103, 0.0097, 0.0071], [0.121, 0.0832, 0.0186, 0.0154, 0.012, 0.0099, 0.0088, 0.0077], [0.128, 0.0222, 0.0153, 0.0135, 0.0068, 0.005, 0.005, 0.0044], [0.1206, 0.0269, 0.0082, 0.0068, 0.0068, 0.0064, 0.006, 0.0044], [0.9606, 0.0187, 0.0007, 0.0004, 0.0003, 0.0003, 0.0003, 0.0002], [0.0096, 0.0071, 0.0062, 0.0058, 0.0048, 0.004, 0.0026, 0.0022], [0.0159, 0.0103, 0.0103, 0.0066, 0.0066, 0.0062, 0.0062, 0.0049], [0.2568, 0.0128, 0.0094, 0.0068, 0.006, 0.0057, 0.005, 0.0044], [0.8263, 0.0438, 0.0341, 0.0172, 0.0118, 0.0104, 0.0052, 0.0036], [0.7711, 0.0339, 0.0233, 0.0205, 0.0141, 0.0103, 0.0038, 0.0034], [0.6452, 0.0989, 0.0724, 0.025, 0.0143, 0.0111, 0.0056, 0.0049], [0.4482, 0.1868, 0.1868, 0.0472, 0.0105, 0.0087, 0.0068, 0.0027], [0.5688, 0.1847, 0.1438, 0.0467, 0.0104, 0.0063, 0.0056, 0.0023], [0.7632, 0.097, 0.0169, 0.0066, 0.0062, 0.0043, 0.004, 0.0033], [0.2874, 0.2103, 0.1126, 0.0285, 0.0173, 0.0152, 0.0126, 0.0105], [0.3551, 0.2023, 0.0792, 0.0292, 0.0129, 0.0129, 0.0114, 0.0101], [0.2446, 0.0581, 0.0513, 0.0399, 0.0228, 0.0228, 0.0138, 0.013], [0.2839, 0.0595, 0.0206, 0.0181, 0.015, 0.015, 0.011, 0.0103], [0.0931, 0.0601, 0.0302, 0.0172, 0.0126, 0.0087, 0.0081, 0.0067], [0.1057, 0.0773, 0.0566, 0.0566, 0.0499, 0.0414, 0.0251, 0.0143], [0.0262, 0.0217, 0.0109, 0.008, 0.008, 0.008, 0.0062, 0.0055], [0.0275, 0.0189, 0.0089, 0.0089, 0.0079, 0.0074, 0.0061, 0.0058], [0.0117, 0.0117, 0.011, 0.0091, 0.0085, 0.0071, 0.0071, 0.0071], [0.0134, 0.0098, 0.0087, 0.0087, 0.0076, 0.0063, 0.0056, 0.0056], [0.022, 0.0207, 0.0161, 0.0111, 0.0092, 0.0076, 0.0071, 0.0063], [0.0294, 0.0294, 0.0202, 0.009, 0.0084, 0.0074, 0.0048, 0.0045], [0.0299, 0.0299, 0.0247, 0.0071, 0.0063, 0.0059, 0.0055, 0.0046], [0.0938, 0.0443, 0.0144, 0.0112, 0.0099, 0.0093, 0.0093, 0.0082], [0.097, 0.0315, 0.0116, 0.009, 0.0085, 0.0066, 0.0066, 0.0051], [0.0593, 0.0205, 0.0097, 0.008, 0.0075, 0.0063, 0.0055, 0.0052], [0.0396, 0.0328, 0.0137, 0.0107, 0.01, 0.0069, 0.0065, 0.0057], [0.0213, 0.0177, 0.0166, 0.0156, 0.0156, 0.0114, 0.0101, 0.0101], [0.0165, 0.0113, 0.0106, 0.01, 0.0094, 0.0073, 0.0069, 0.0061], [0.0067, 0.0059, 0.0056, 0.0049, 0.0043, 0.0041, 0.0036, 0.0034], [0.0228, 0.0101, 0.0074, 0.0045, 0.0045, 0.004, 0.004, 0.0037], [0.0561, 0.0362, 0.0341, 0.0125, 0.0111, 0.0111, 0.0104, 0.0092], [0.0981, 0.0464, 0.0339, 0.0248, 0.0219, 0.0182, 0.016, 0.016], [0.1776, 0.0576, 0.0328, 0.024, 0.0187, 0.0176, 0.0165, 0.0146], [0.2348, 0.0462, 0.0434, 0.0318, 0.0318, 0.0232, 0.0181, 0.016], [0.1617, 0.0813, 0.0764, 0.0718, 0.0409, 0.0384, 0.0361, 0.0219], [0.301, 0.081, 0.0557, 0.0434, 0.0359, 0.0317, 0.0298, 0.0263], [0.3072, 0.0827, 0.0827, 0.0777, 0.0471, 0.0286, 0.0184, 0.0184], [0.2018, 0.1781, 0.0615, 0.0578, 0.0543, 0.0273, 0.0257, 0.0257], [0.5358, 0.2531, 0.0413, 0.0267, 0.0195, 0.0152, 0.0143, 0.006], [0.3397, 0.2998, 0.1036, 0.0432, 0.018, 0.0149, 0.0132, 0.0124], [0.3441, 0.1189, 0.0986, 0.0817, 0.0678, 0.0411, 0.0265, 0.0098], [0.1731, 0.1626, 0.0768, 0.0496, 0.0411, 0.0301, 0.0234, 0.0118]], "ranks": {"Kotlin": [156911, 31506, 14279, 2581, 1387, 4013, 12479, 25743, 27185, 14352, 18553, 6162, 5104, 5988, 73900, 37974, 83984, 82662, 144859, 177556, 211408, 146666, 188044, 224988, 219932, 191652, 183532, 214643, 200790, 191065, 194515, 155568, 182266, 111640, 115947, 86558, 91466, 87238, 72348, 39667, 33510, 26334, 14963, 14643, 17812, 19915, 20022, 10238, 3129, 2254, 1833, 126, 34, 31, 19, 1, 1, 1, 2, 3, 3, 5, 1]}}, {"pos": 574, "top": [[" \u2013", ".", "\u2013", "\u00a0\u00a0", "\u00a0", " \u200b\u200b", "\u200b\u200b", ","], [" \u200b\u200b", "\u200b\u200b", " \u2013", " Vip", " Hidal", "\u0648\u0631\u0634", "\u2013", " Avan"], ["\u2013", " \u200b\u200b", "\u200b\u200b", ".", " \u2013", ".\u2013", ",", "\u2026.."], [" milfs", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Shemale", " Blowjob", " pornstar", "odle", " cumshot", " handjob"], [" Highlander", "odal", "\u519c\u6751\u5546\u4e1a\u94f6\u884c", " **+", " cristi", " Zer", "arder", "\u063a\u0646"], ["arder", "rania", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " \u200b\u200b", " **\u00ab", "odal", "enticate", "thritis"], [" **\u00ab", " **\u300c", " **\"", " **-", "**-", " **\u2022", "\u200b\u200b", "STANCE"], [" **\u00ab", "**-", "\u029c", " **+", " **\u2022", " **-", "thritis", "arder"], ["\t\n\n\n", "\u200b\u200b", " \n\n\n", " \n\n\n\n\n", "  \n\n\n", "arder", "   \n\n", "\u00adi"], ["\u00adi", "\u99a8", "\u00adtion", "\u00a0\u00a0", "\u00adt", "\u0449\u0451", " \u00ad", "\u00ads"], ["\u00a0", ",", "\u00a0\u00a0", "\u00ad", " \u00ad", ".", ":...", "\u200b"], [" **\u2022", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "turnstile", "Verbose", " **+", " ten\u00e5r", "Sexy", "riors"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\u5ba3\u5c0e", " workflows", "STANCE", "enticate", " ten\u00e5r", " **\u2022", "rowse"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\u5ba3\u5c0e", "STANCE", "hipster", "rowse", "\u0449\u0451", " workflows", "\u67ad"], ["\u5468\u906d", "\u5ba3\u5c0e", "\u67ad", "\u0449\u0451", ".perform", "\u708e\u708e\u590f\u65e5", " poorly", "\u667a\u6167\u578b"], [" diverse", " sprawling", " \u00ad", " &#", "\u5468\u906d", " nuanced", " poorly", " -"], [" util", " diverse", " sprawling", " bolster", "-esque", " myriad", " social", "&#"], ["&#", " sprawling", " technologies", "-esque", " diverse", " reliant", "\u0449\u0451", " Massive"], [" &#", "&#", " myriad", " sprawling", "-esque", "\u5468\u906d", " oftmals", " burgeoning"], [" &#", "&#", " myriad", " sprawling", " swiftly", " burgeoning", "\u5373\u4fbf", "<|endoftext|>"], ["<|endoftext|>", " \n\n", " \n\n\n", "  \n\n", "\n\n", " &#", "Though", "&#"], [" &#", " swiftly", " sprawling", " {{--<", " oftmals", " rapidly", " heavily", " myriad"], [" --", " &#", " much", " \u2015", " heavily", " rapidly", " notably", " ,"], ["<|endoftext|>", " ,", " much", " -", " heavily", " notably", " uniquely", " --"], [" \n\n", " \r\n\r\n", " \n\n\n", "  \n\n", " &#", "   \n\n", "\n\n", "\r\n\r\n"], [" **", " technologies", " \n\n", " technology", " heavily", " modern", " technological", " notably"], [" technologies", " technology", " complex", " modular", " modern", " technological", " systems", " notably"], [" \n\n", "\n\n", " ,", " --", " complex", " notably", " heavily", " ..."], [" technologies", " \n\n", "\n\n", " technology", " modern", " complex", " modular", " systems"], [" \n\n", " ...", " **", " technologies", " ___", " [...]", " technology", "...**"], [" technology", " modern", " technologies", " ...", " \n\n", " **", " systems", " complex"], [" ...", " modern", " technology", " technologies", " complex", " \u2026", " systems", " ,"], [" modern", " technology", " technologies", " hybrid", " complex", " Modern", " systems", " mostly"], [" workflows", " technologies", " technology", " tech", " toolkit", " smartphones", " STEM", " frameworks"], [" workflows", " technologies", " tech", " STEM", " technology", " toolkit", " frameworks", " Android"], [" workflows", " Kotlin", " \u200b\u200b", " \u2026", " Russian", "\u2026**", " Nordic", " JetBrains"], [" Kotlin", " workflows", "otlin", " Russian", " Android", " JetBrains", " \u200b\u200b", " Ukrainian"], [" Kotlin", "otlin", " Android", " interoper", " workflows", " JetBrains", " Russian", " kotlin"], [" Kotlin", "otlin", " interoper", " workflows", " Android", " Russian", " kotlin", " JetBrains"], [" Russian", " Kotlin", " \u200b\u200b", "Russian", " interoper", "otlin", " Icelandic", " Nordic"], [" Russian", " Kotlin", "Russian", " interoper", "\u4fc4\u7f57\u65af", "\u4fc4\u8bed", " Soviet", " \u200b\u200b"], [" Russian", " Kotlin", " interoper", "Russian", "\u4fc4\u8bed", "\u4fc4\u7f57\u65af", "otlin", " Native"], [" interoper", " Kotlin", "\u4fc4\u8bed", " workflows", "otlin", " JetBrains", " Russian", "Russian"], [" interoper", " Kotlin", "\u4fc4\u8bed", " workflows", "otlin", " kotlin", "Russian", "\u4fc4\u7f57\u65af"], [" interoper", " Kotlin", " workflows", "otlin", "interop", " JetBrains", " kotlin", "\u4fc4\u8bed"], [" interoper", " Kotlin", " workflows", " JetBrains", "\u4fc4\u8bed", "otlin", "interop", " kotlin"], [" interoper", " workflows", " Kotlin", " JetBrains", " avoidance", "interop", "\u4fc4\u8bed", "otlin"], [" interoper", " JetBrains", " Kotlin", " workflows", "interop", "otlin", ".jetbrains", "Russian"], [" interoper", " JetBrains", " Kotlin", "otlin", "interop", "\u4fc4\u8bed", ".jetbrains", " workflows"], [" interoper", " Kotlin", " JetBrains", "otlin", ".jetbrains", "interop", "Interop", "\u4fc4\u8bed"], [" interoper", " JetBrains", ".jetbrains", " Kotlin", "otlin", "Interop", "\u4fc4\u8bed", "-native"], [" interoper", "Interop", " Kotlin", "-native", "interop", " JetBrains", ";**", " fragmentation"], [" Kotlin", " interoper", " kotlin", "otlin", " JetBrains", "Interop", ".kotlin", "-native"], [" Kotlin", " JetBrains", " kotlin", "otlin", " interoper", " Coroutine", "Interop", " concurrency"], [" Kotlin", " kotlin", ".kotlin", " kotlinx", " Coroutine", " JVM", "alloc", "otlin"], [" Kotlin", " kotlin", ".kotlin", " kotlinx", "ktor", " JVM", " Coroutine", " coroutine"], [" Kotlin", " kotlinx", " kotlin", ".kotlin", "JNI", "/native", "Native", " Native"], [" Kotlin", " kotlinx", " kotlin", ".kotlin", " Memory", "ktor", " Native", "Memory"], [" coroutine", " Kotlin", " Coroutine", " cor", " kotlinx", ".coroutines", " memory", " Memory"], [" cor", " coroutine", " suspend", " memory", " Coroutine", " Memory", " Cor", "\u5185\u5b58"], [" memory", " cor", " Memory", " coroutine", "\u5185\u5b58", "memory", " Cor", "Memory"], [" memory", " Memory", " cor", " coroutine", " Concurrent", " concurrency", "\u5185\u5b58", " Cor"], [" **", " Memory", " cor", " Concurrent", " Cor", " async", " Kotlin", " Coroutine"]], "p": [[0.6128, 0.1065, 0.0779, 0.0473, 0.0444, 0.0325, 0.0135, 0.0064], [0.0236, 0.0119, 0.0053, 0.0034, 0.0028, 0.0025, 0.0021, 0.0018], [0.2576, 0.2006, 0.1143, 0.089, 0.0836, 0.0349, 0.0128, 0.01], [0.0263, 0.0181, 0.0181, 0.017, 0.011, 0.0052, 0.0052, 0.0022], [0.0053, 0.0039, 0.0029, 0.0022, 0.0022, 0.0022, 0.0021, 0.002], [0.0051, 0.0042, 0.004, 0.0033, 0.0029, 0.0023, 0.0019, 0.0017], [0.024, 0.0078, 0.0061, 0.0053, 0.0037, 0.0035, 0.0029, 0.0029], [0.0073, 0.005, 0.005, 0.0045, 0.0037, 0.0035, 0.0033, 0.0031], [0.0259, 0.0215, 0.0095, 0.0084, 0.0084, 0.0079, 0.0051, 0.0048], [0.004, 0.0038, 0.0027, 0.0024, 0.0023, 0.0018, 0.0018, 0.0017], [0.1973, 0.0499, 0.0365, 0.0322, 0.0303, 0.0143, 0.0126, 0.0119], [0.0033, 0.0033, 0.002, 0.002, 0.0019, 0.0018, 0.0016, 0.0015], [0.0043, 0.0033, 0.0022, 0.0022, 0.0017, 0.0016, 0.0016, 0.0013], [0.003, 0.0025, 0.0023, 0.0018, 0.0012, 0.0012, 0.0012, 0.0011], [0.0032, 0.0018, 0.0016, 0.0013, 0.0009, 0.0009, 0.0009, 0.0008], [0.0041, 0.0024, 0.0021, 0.0021, 0.0018, 0.0016, 0.0015, 0.0015], [0.0031, 0.0027, 0.0021, 0.0021, 0.002, 0.0019, 0.0019, 0.0019], [0.0026, 0.0018, 0.0017, 0.0016, 0.0015, 0.0015, 0.0014, 0.0014], [0.0186, 0.0154, 0.0034, 0.003, 0.0027, 0.0021, 0.0014, 0.0014], [0.0382, 0.018, 0.0059, 0.0033, 0.0026, 0.0026, 0.0022, 0.0018], [0.9329, 0.0055, 0.002, 0.0011, 0.0005, 0.0005, 0.0004, 0.0004], [0.0046, 0.0023, 0.0023, 0.0022, 0.002, 0.0014, 0.0012, 0.0011], [0.012, 0.0106, 0.006, 0.0053, 0.0047, 0.0044, 0.0044, 0.0044], [0.1819, 0.0159, 0.0091, 0.0062, 0.0052, 0.0046, 0.0035, 0.0035], [0.3227, 0.0234, 0.0206, 0.0118, 0.0081, 0.0071, 0.0063, 0.0059], [0.076, 0.0382, 0.0317, 0.0192, 0.0141, 0.0103, 0.0091, 0.008], [0.036, 0.0263, 0.0132, 0.0091, 0.008, 0.008, 0.0067, 0.0063], [0.2798, 0.2469, 0.019, 0.0062, 0.0062, 0.0051, 0.0051, 0.0048], [0.0535, 0.0535, 0.0345, 0.0305, 0.0163, 0.0163, 0.0099, 0.0072], [0.2588, 0.2431, 0.0577, 0.035, 0.0273, 0.0212, 0.02, 0.0129], [0.1056, 0.0822, 0.0773, 0.0682, 0.0565, 0.0221, 0.0208, 0.0195], [0.3679, 0.0724, 0.0413, 0.0162, 0.0134, 0.0126, 0.0098, 0.0098], [0.108, 0.0742, 0.0213, 0.0137, 0.0114, 0.01, 0.0094, 0.0069], [0.3093, 0.0943, 0.0393, 0.0186, 0.0186, 0.012, 0.0099, 0.0093], [0.2332, 0.0279, 0.0279, 0.0204, 0.0149, 0.0102, 0.008, 0.008], [0.0565, 0.0342, 0.0342, 0.0284, 0.0221, 0.0172, 0.0162, 0.0152], [0.4301, 0.0453, 0.0426, 0.0353, 0.0293, 0.0228, 0.0108, 0.0079], [0.5038, 0.0641, 0.0322, 0.0267, 0.0251, 0.0195, 0.0118, 0.0098], [0.4846, 0.0791, 0.048, 0.0227, 0.02, 0.0188, 0.0114, 0.0101], [0.2311, 0.1916, 0.0377, 0.0333, 0.0244, 0.019, 0.0178, 0.0167], [0.3145, 0.1087, 0.0901, 0.0426, 0.0353, 0.0228, 0.0122, 0.0108], [0.1433, 0.1188, 0.0985, 0.0767, 0.0411, 0.0194, 0.0118, 0.0118], [0.3154, 0.1235, 0.0293, 0.0202, 0.0202, 0.0167, 0.0167, 0.0157], [0.3128, 0.0743, 0.0351, 0.033, 0.0273, 0.0176, 0.0146, 0.0114], [0.4036, 0.0482, 0.0331, 0.0228, 0.0157, 0.0138, 0.013, 0.0122], [0.3636, 0.0338, 0.028, 0.0193, 0.0193, 0.0181, 0.011, 0.0075], [0.2887, 0.0286, 0.0196, 0.0196, 0.0185, 0.0144, 0.0119, 0.0119], [0.3351, 0.0293, 0.0228, 0.0178, 0.0167, 0.0122, 0.0084, 0.0079], [0.2315, 0.026, 0.0244, 0.0158, 0.0148, 0.0131, 0.0131, 0.0123], [0.1383, 0.0449, 0.0422, 0.0372, 0.0256, 0.0176, 0.0176, 0.0069], [0.1268, 0.0266, 0.0266, 0.022, 0.0142, 0.0134, 0.0104, 0.0104], [0.2052, 0.0404, 0.0278, 0.0245, 0.0179, 0.0158, 0.0149, 0.008], [0.7762, 0.0411, 0.0183, 0.0183, 0.0171, 0.0063, 0.0046, 0.0036], [0.7624, 0.0315, 0.0245, 0.0149, 0.009, 0.0058, 0.0055, 0.0033], [0.9099, 0.0453, 0.0101, 0.0042, 0.004, 0.0029, 0.0023, 0.0021], [0.9069, 0.0452, 0.0213, 0.0101, 0.0042, 0.0015, 0.0014, 0.001], [0.7808, 0.0823, 0.0303, 0.0236, 0.0111, 0.0087, 0.0081, 0.0068], [0.7823, 0.154, 0.0143, 0.0098, 0.0041, 0.0028, 0.0025, 0.0019], [0.4304, 0.1794, 0.1233, 0.1088, 0.0514, 0.0115, 0.0115, 0.0101], [0.3197, 0.2198, 0.1176, 0.0916, 0.0461, 0.0359, 0.0262, 0.0124], [0.5592, 0.1248, 0.0972, 0.0459, 0.0231, 0.0132, 0.0132, 0.0109], [0.2783, 0.1585, 0.0749, 0.0661, 0.0515, 0.0312, 0.0228, 0.0228], [0.4948, 0.049, 0.0358, 0.0279, 0.0262, 0.0231, 0.0217, 0.0204]], "ranks": {"Kotlin": [233463, 171402, 113633, 30229, 20257, 39224, 44361, 109691, 94396, 185185, 201591, 104943, 88499, 101336, 184412, 124395, 167519, 113128, 155945, 206942, 176977, 51362, 43470, 85751, 7210, 853, 738, 6732, 1986, 917, 1925, 4941, 2440, 39, 7, 2, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 2, 4, 3, 1, 1, 1, 1, 1, 1, 2, 9, 16, 14, 7]}}, {"pos": 575, "top": [["s", " \u2013", "**.", "**\u2013", " **\u2013", "**:", "er", "**"], ["s", "**\u2013", " **", " **\u2013", "**.", " \u2013**", "-**", "**,"], ["s", "**\u2013", "\u2026**", " **\u2013", "**.", "**\u3002", " \u2013**", "**,"], ["\uff1f**", "\u300d**", " **\u00ab", " **\u300c", " **:", "\u2019**", ">**", "\u3002**"], ["s", " **", "-**", ">**", "...**", "**.", "**\u3002", "\u2026**"], ["s", "-**", " **", "**.", "\u2026**", ">**", "(**", "\uff1f**"], ["s", " **", "...**", "**", "**\u3002", "-**", "\u2019**", "\uff1f**"], ["...**", "s", "-**", "**", "\u2026**", " **", "**\u3002", "**-"], ["...**", "s", "\u2026**", "**.", "**", "!**", "**\u3002", "-**"], ["s", "\u2026**", "...**", "-**", "!**", " **\u2013", "**\u2013", "**,"], ["s", "...**", "\u2026**", "a", "er", "**", ".**", "..."], ["...**", " **", "s", "-**", "\u2026**", " **#", "**-", ">**"], ["...**", "s", " **", "-**", "\u2026**", " **\u2013", " **\u00ab", "er"], ["s", "...**", "-**", " **", "\u2026**", "er", "ing", " **\u2013"], ["s", "er", "a", "...**", "ing", "o", " **", "\u2026**"], ["s", "a", "er", "o", "ing", "n", "...**", "es"], ["s", "a", "...**", "ing", "o", "er", " **", "n"], ["s", "...**", "-**", "a", "**\u2013", " **", "\u2026**", " **\u2013"], ["s", "...**", " **", "a", "-**", "**-", "**\u2013", "\u2026**"], ["s", "...**", "a", "**,", "ing", "er", "**\u2013", "&#"], ["<|endoftext|>", "s", "a", "o", " myriad", "Though", "<|file_sep|>", "&#"], ["s", " ;;^", "nheim", "\u4e0d\u53ef\u601d\u8bae", "\u52c7\u5f80\u76f4\u524d", "\u76f8\u8f85\u76f8\u6210", "sense", "ska"], ["s", "ing", "\u4e0d\u53ef\u601d\u8bae", " myriad", "\ufffd\ufffd", " mundane", "a", "\u9592"], ["s", "a", " ultimately", " myriad", "ing", " --", " notably", " eventual"], [" \r\n\r\n", "s", " \n\n", "\r\n\r\n", " \r\n", "Though", " myriad", "\ufffd\ufffd"], [" **", "...**", " **#", " ;;^", ">**", " **'", " -**", " weaponry"], [" **", " weaponry", "...**", "\ufffd\ufffd", " \r\n\r\n", " \n\n", "\r\n\r\n", "\u6301\u4e4b\u4ee5"], [" \n\n", " **", "\n\n", " heavily", " \r\n\r\n", " notably", " ultimately", " --"], [" **", " \n\n", " heavily", " impact", " infrastructure", "\n\n", " hardware", "s"], [" **", " infrastructure", "...**", " technology", " impact", " hardware", " power", " complex"], [" power", " **", " heavily", " impact", " technology", " complex", " heavy", " commercial"], [" power", " heavily", " high", " critical", " heavy", " complex", " **", " over"], [" power", " technology", " complex", " critical", " high", " impact", " heavily", " heavy"], [" technology", " infrastructure", " technological", " hardware", " tech", " complexity", " systems", " complex"], [" complexity", " infrastructure", " complex", " vulnerabilities", " hardware", " automation", " reliance", " modular"], [" complexity", " complex", " hardware", "\u2026**", "**\u2013", " infrastructure", " modular", " software"], [" complexity", " slower", " complex", " bottleneck", " performance", " inefficient", " slow", " hardware"], [" complexity", " complex", " bottleneck", " software", " Complexity", " latency", " infrastructure", " performance"], [" complexity", " complex", " automation", " latency", " consumption", " Java", " inefficient", " hardware"], [" Java", " complexity", " fragmentation", " complex", " JVM", " bottleneck", " latency", " coordination"], [" Java", " complexity", " CPU", " translation", " runtime", " fragmentation", " JVM", " engine"], [" Java", " CPU", " runtime", " engine", " translation", " automation", " fragmentation", " computational"], [" Java", " fragmentation", " automation", " translation", " engine", " CPU", " runtime", " asynchronous"], [" translation", " Translation", " translations", " automation", " Java", " fragmentation", " translators", " engine"], [" fragmentation", " translation", " conversions", " automation", " Java", " conversion", " translations", " inefficient"], [" translation", " translations", " conversions", " fragmentation", " Translation", " automation", " conversion", " Java"], [" conversions", " translation", " Translation", " translations", " fragmentation", " conversion", " automation", " indirect"], [" Translation", " conversions", " translation", " translations", " Processing", " Conversion", " conversion", " Transition"], [" Translation", " translations", " fragmentation", " conversions", " translation", " Hybrid", " interoper", " Processing"], [" Translation", " fragmentation", " Conversion", " translations", " Processing", " Complexity", " conversions", " translation"], [" Complexity", " Translation", " fragmentation", " Processing", " Shemale", " Serialization", "!**", " Interfaces"], [" Complexity", " CPU", " Interface", " JIT", " Runtime", " Serialization", " Interfaces", " fragmentation"], [" Kotlin", " CPU", " Serialization", " Runtime", " Processing", " JVM", " overhead", " Complexity"], [" Kotlin", " CPU", " Serialization", " concurrency", " Threads", " Runtime", " threading", "Concurrency"], [" Kotlin", " CPU", " JVM", " Serialization", " JNI", " Threads", " Thread", " Runtime"], [" Kotlin", " Serialization", " JNI", "JNI", " CPU", " JVM", "-thread", " serialization"], [" Kotlin", " JNI", "JNI", " Android", " JIT", " JVM", " GC", " Serialization"], [" Kotlin", " JNI", " JIT", " JVM", "JNI", " Android", " GC", " Native"], [" Kotlin", " JNI", " JIT", " JVM", "JNI", " GC", " Layout", " Android"], [" Async", " async", " Kotlin", " Native", "Async", " asynchronous", "async", " JNI"], [" Kotlin", " Async", " async", " Native", " JNI", "Async", " asynchronous", "async"], [" Kotlin", " Async", " async", " Native", " JNI", " Plugin", "Async", "async"], [" Kotlin", "K", " Async", "Async", " async", "Native", "JNI", "Compose"]], "p": [[0.9975, 0.001, 0.0006, 0.0005, 0.0001, 0.0, 0.0, 0.0], [0.7955, 0.0838, 0.0308, 0.024, 0.0129, 0.0088, 0.0088, 0.0054], [0.8601, 0.08, 0.0202, 0.0179, 0.0108, 0.0017, 0.0015, 0.001], [0.2008, 0.0948, 0.0786, 0.0477, 0.0349, 0.0272, 0.0272, 0.024], [0.981, 0.0031, 0.0031, 0.0021, 0.0017, 0.0013, 0.001, 0.001], [0.3784, 0.2601, 0.1084, 0.0242, 0.0188, 0.0188, 0.0166, 0.0166], [0.7185, 0.059, 0.0405, 0.0316, 0.0279, 0.0246, 0.0149, 0.0116], [0.3093, 0.2729, 0.1461, 0.0369, 0.0369, 0.0326, 0.0254, 0.0174], [0.6264, 0.1088, 0.066, 0.0275, 0.0275, 0.0214, 0.0167, 0.0147], [0.9528, 0.0198, 0.0154, 0.0039, 0.0011, 0.0009, 0.0007, 0.0005], [0.9725, 0.0178, 0.004, 0.0021, 0.0007, 0.0003, 0.0002, 0.0002], [0.525, 0.248, 0.1034, 0.0627, 0.0159, 0.0123, 0.0048, 0.0024], [0.3484, 0.3484, 0.2113, 0.0367, 0.0286, 0.0036, 0.003, 0.0027], [0.5319, 0.1957, 0.0597, 0.0495, 0.0362, 0.0265, 0.0092, 0.0086], [0.9658, 0.0074, 0.0065, 0.0025, 0.0019, 0.0014, 0.001, 0.0006], [0.9877, 0.0071, 0.001, 0.0008, 0.0007, 0.0002, 0.0001, 0.0001], [0.9954, 0.0017, 0.0011, 0.0003, 0.0002, 0.0002, 0.0001, 0.0], [0.6308, 0.298, 0.0075, 0.007, 0.0062, 0.0062, 0.0051, 0.0031], [0.9021, 0.0542, 0.0025, 0.0024, 0.0008, 0.0006, 0.0005, 0.0004], [0.5631, 0.0063, 0.0059, 0.003, 0.003, 0.0028, 0.0023, 0.0023], [0.1217, 0.1074, 0.0421, 0.0039, 0.003, 0.003, 0.0025, 0.0022], [0.0133, 0.0032, 0.0026, 0.0023, 0.0016, 0.0015, 0.0015, 0.0014], [0.0215, 0.002, 0.002, 0.0016, 0.0014, 0.0014, 0.0011, 0.001], [0.0268, 0.0056, 0.0027, 0.0027, 0.0018, 0.0018, 0.0015, 0.0012], [0.0116, 0.007, 0.0045, 0.0038, 0.0031, 0.0024, 0.0023, 0.0017], [0.0464, 0.0086, 0.0032, 0.003, 0.0028, 0.0028, 0.0026, 0.0026], [0.0113, 0.0037, 0.0027, 0.0022, 0.002, 0.0018, 0.0016, 0.0015], [0.0354, 0.0115, 0.0115, 0.0042, 0.004, 0.0035, 0.0031, 0.0031], [0.0255, 0.0225, 0.005, 0.0042, 0.0042, 0.0039, 0.0039, 0.003], [0.0896, 0.0114, 0.0094, 0.0078, 0.0078, 0.0061, 0.0051, 0.0047], [0.0095, 0.0079, 0.0079, 0.0074, 0.0069, 0.0057, 0.0054, 0.0054], [0.0152, 0.0104, 0.0104, 0.0076, 0.0072, 0.0072, 0.0052, 0.0052], [0.0208, 0.0092, 0.0087, 0.0077, 0.0072, 0.0064, 0.006, 0.0056], [0.0293, 0.0214, 0.0189, 0.0147, 0.0138, 0.013, 0.0122, 0.0101], [0.0504, 0.0325, 0.0185, 0.0127, 0.0112, 0.0082, 0.0082, 0.0082], [0.0748, 0.0275, 0.0259, 0.0178, 0.0157, 0.0138, 0.0122, 0.0101], [0.1999, 0.0419, 0.0394, 0.0254, 0.0164, 0.0154, 0.0136, 0.0128], [0.2302, 0.0659, 0.0189, 0.0157, 0.0108, 0.0095, 0.0095, 0.0095], [0.0696, 0.029, 0.0199, 0.0155, 0.0146, 0.0137, 0.0137, 0.0137], [0.0923, 0.0464, 0.0219, 0.016, 0.016, 0.0151, 0.0141, 0.0125], [0.1495, 0.0355, 0.0313, 0.0229, 0.0229, 0.0215, 0.0179, 0.0131], [0.1586, 0.0454, 0.0354, 0.0332, 0.0293, 0.0276, 0.0229, 0.0167], [0.0546, 0.0482, 0.0425, 0.0331, 0.0258, 0.0258, 0.0242, 0.0138], [0.0603, 0.0323, 0.0323, 0.0285, 0.0251, 0.0236, 0.0173, 0.0162], [0.0505, 0.027, 0.0238, 0.0186, 0.0174, 0.0164, 0.0164, 0.0128], [0.0386, 0.0283, 0.0266, 0.0234, 0.0234, 0.0161, 0.0125, 0.0118], [0.0348, 0.0289, 0.0255, 0.0225, 0.0225, 0.0164, 0.0154, 0.0128], [0.0516, 0.0355, 0.0244, 0.0229, 0.0215, 0.0202, 0.019, 0.0178], [0.0321, 0.0284, 0.0221, 0.0208, 0.0183, 0.0118, 0.0092, 0.0086], [0.0483, 0.0228, 0.0108, 0.0095, 0.0095, 0.0089, 0.0079, 0.0074], [0.0196, 0.0184, 0.0162, 0.0153, 0.0105, 0.0093, 0.0082, 0.0077], [0.0348, 0.0255, 0.0225, 0.0225, 0.0164, 0.0164, 0.012, 0.012], [0.1757, 0.0779, 0.0368, 0.0223, 0.021, 0.0174, 0.0163, 0.0163], [0.1405, 0.124, 0.0456, 0.0403, 0.0244, 0.0244, 0.0179, 0.0158], [0.3517, 0.1294, 0.0785, 0.0371, 0.0255, 0.0175, 0.0145, 0.0145], [0.9259, 0.0103, 0.0091, 0.0055, 0.0049, 0.0049, 0.0026, 0.0022], [0.8502, 0.0698, 0.0176, 0.0121, 0.0094, 0.0057, 0.0045, 0.0027], [0.8078, 0.0965, 0.0276, 0.0168, 0.0148, 0.0102, 0.0026, 0.0019], [0.5638, 0.2074, 0.098, 0.0248, 0.0193, 0.015, 0.015, 0.0063], [0.4779, 0.2558, 0.1992, 0.0127, 0.0099, 0.0068, 0.0068, 0.0036], [0.4481, 0.308, 0.1648, 0.0197, 0.0093, 0.0047, 0.0034, 0.0034], [0.4292, 0.2297, 0.1579, 0.0274, 0.0242, 0.0084, 0.0058, 0.0048], [0.3961, 0.1457, 0.1001, 0.0884, 0.0287, 0.0197, 0.0174, 0.0127]], "ranks": {"Kotlin": [107209, 66348, 30381, 6240, 3933, 8078, 12850, 33742, 46170, 79189, 102009, 32388, 15117, 32941, 101496, 46659, 41994, 23059, 58443, 109563, 155120, 67541, 102957, 164582, 139342, 69981, 74094, 127256, 84974, 59548, 74476, 96386, 63094, 14031, 5578, 1862, 194, 247, 288, 48, 91, 122, 106, 168, 310, 380, 410, 371, 154, 50, 42, 11, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1]}}, {"pos": 576, "top": [[" \u2013", ".", "\u2026..", " [\u2026]", "\u2013", " ", "\u2026.", " \u200b\u200b"], [" HK", "alyzer", " Kensington", "aoke", "sWith", " Kar", " \u2013", "mill"], [" \u2013", "\u2026..", "\u2013", "\u2013and", " \u200b\u200b", "\u2026.", "\u2026\u2026", "ankan"], [" Blowjob", "rypton", " Shemale", " milfs", " Golk", " Kasat", " Guta", "odle"], [" HK", "HK", "rypton", "nik", "&A", "iosk", " KF", " AK"], ["rypton", "HK", " HK", " Vk", "nsk", "elib", "nik", " Guta"], ["rypton", "iosk", "ernels", "-k", "-K", "iko", "ky", "ks"], ["rypton", "ikin", "iest", "istry", "ik", "intosh", "urious", "ie"], ["istry", "ian", "ie", "ik", "kin", "kan", "ulator", "ish"], ["-K", "ie", "ish", "ik", "-k", "ian", "ler", "ward"], ["ian", "-K", "ish", "&", "ie", "-k", "ik", "...\""], ["ian", "istry", "ish", "iki", "ik", "-k", "kk", "-K"], ["ian", "ish", "ik", "-k", "-K", "istry", "iki", "ie"], ["ian", "-k", "ik", "ish", "iki", "-K", "kk", "erk"], ["ian", "ish", "ork", "ik", "iki", "ie", "-k", "kk"], ["ik", "ish", "ie", "ian", "iki", "ks", "-k", "k"], ["ish", "ik", "k", "ie", "ian", "y", "ers", "ks"], ["ik", "-k", "ish", "ki", "iki", "ian", "ork", "ks"], ["ik", "ish", "iki", "ork", "ian", "kk", "ki", "-k"], ["ish", "ik", "iki", "ian", "kin", "-&", "&", "ace"], ["&", "@", "ish", "w", "ik", "2", "j", "ine"], ["iki", "ish", "&quot", "owski", "iko", "ik", "smith", "istry"], ["ish", "iki", "&quot", "ik", "kin", "fully", "wo", "ian"], ["ish", "fully", "iki", "wo", "ian", "kin", "&quot", "ine"], ["&quot", "ish", "&#", "\\u", "&lt", "fully", "iki", "kin"], ["ish", "iki", "istry", "ishly", "istani", "omics", " famously", "iko"], ["ish", "\n\n", "ian", " famously", "iki", "fully", "istry", "kin"], ["\n\n", " ...", " \n\n", " '", " ,", "...", " famously", " --"], ["\n\n", "\\u", "ian", " \n\n", "kin", "ish", " famously", "Modern"], ["ian", "\\u", " ...", " heavily", "iki", " modern", " famously", "ish"], [" ...", " '", " modern", " heavily", "ian", " \\\"", " technology", " often"], [" ...", " '", "...", " -", " heavily", " modern", " many", " ,"], [" heavily", " mostly", " often", " modern", " '", " even", " itself", " -"], ["-centric", "-heavy", " tech", "-core", "-focused", " inherently", " modular", "-tech"], ["-centric", "-heavy", "-core", "-focused", "-leaning", "\u2026*", "ling", " notoriously"], ["-centric", "-heavy", "-core", "\u2026\"", "\u2026*", "-language", "-leaning", "-focused"], ["-heavy", "-centric", "-core", "-leaning", "-native", "-language", "-runtime", " inherently"], ["-heavy", "-centric", "-core", "-runtime", "-leaning", "\u590d\u6742\u5ea6", "complex", "\u590d\u6742"], ["-heavy", "-centric", "-language", "-runtime", "-core", "\u8bed\u8a00", "-leaning", " notoriously"], ["\u8bed\u8a00", "-language", "-heavy", "-native", "\u6162", " Language", "-centric", "complex"], ["-language", "-heavy", "-native", "\u8bed\u8a00", " Language", " Software", "-runtime", " interoper"], ["-language", "\u8bed\u8a00", "-heavy", " Language", "-native", " interoper", " languages", " Software"], ["-language", "-heavy", " interoper", "\u8bed\u8a00", "-native", " Language", " inherently", " Software"], ["-language", " Language", "\u8bed\u8a00", "-heavy", "-native", " Software", " Programming", " Complexity"], ["-language", "-heavy", "-native", " Language", "-speed", "-runtime", "-fast", " slower"], [" Language", "-heavy", "-language", "-native", " Complexity", " inherently", " Software", " Speed"], ["-native", "-heavy", " Complexity", " Language", "-lite", " inherently", "-vs", "-language"], ["-native", " Language", " Transition", " Slow", " Complexity", " Processing", "-heavy", " inherently"], ["-native", "-lite", "-syntax", " Language", " Processing", " Complexity", " Runtime", " Toolkit"], ["-native", "-lite", "ptime", " Runtime", " Language", " Toolkit", "-language", " Complexity"], ["-native", " Language", "\u8bed\u8a00", " Complexity", "-Language", "-language", " Toolkit", " Kotlin"], ["-native", "/native", "/K", " Runtime", "native", "/Framework", "Native", "+/"], [" Kotlin", "-native", "/K", "otlin", ".kotlin", "/native", " Runtime", "native"], [" Kotlin", "-native", "otlin", ".kotlin", " Runtime", "/K", "/native", " kotlin"], [" Kotlin", ".kotlin", " kotlin", "/K", "otlin", " kotlinx", " JVM", "/k"], [" Kotlin", "otlin", " kotlin", ".kotlin", " JVM", "-native", "/native", " Coroutine"], [" Kotlin", "otlin", " JVM", " kotlin", ".kotlin", " kotlinx", " Coroutine", "/native"], [" Kotlin", " JVM", "otlin", " kotlinx", "VM", ".kotlin", " kotlin", "Jvm"], [" Kotlin", " JVM", " Coroutine", " coroutine", ".coroutines", "otlin", " kotlinx", "/K"], [" Kotlin", "/N", "otlin", " Native", " coroutine", " Coroutine", " kotlinx", " kotlin"], ["/N", "/K", " Native", " Kotlin", "otlin", " coroutine", " cor", " Coroutine"], ["/N", "/K", " Native", "otlin", " Serialization", "/native", " coroutine", " cor"], ["/N", "otlin", "/K", " Native", "script", "-N", "/MM", " cor"]], "p": [[0.2965, 0.1236, 0.0455, 0.0167, 0.0139, 0.0101, 0.0101, 0.0079], [0.0058, 0.0043, 0.0038, 0.0033, 0.0029, 0.0028, 0.0028, 0.0028], [0.1235, 0.0962, 0.0749, 0.007, 0.0065, 0.0051, 0.0042, 0.0035], [0.0204, 0.0109, 0.0096, 0.0055, 0.0051, 0.0045, 0.0045, 0.0033], [0.0489, 0.0489, 0.0204, 0.007, 0.0066, 0.0062, 0.0062, 0.0062], [0.0349, 0.0308, 0.0128, 0.0106, 0.0078, 0.0061, 0.005, 0.0047], [0.2432, 0.0129, 0.0094, 0.0054, 0.005, 0.0045, 0.0042, 0.0039], [0.034, 0.016, 0.0142, 0.0117, 0.0117, 0.011, 0.0091, 0.0086], [0.0303, 0.0284, 0.0208, 0.0208, 0.0152, 0.0143, 0.0134, 0.0126], [0.0795, 0.0482, 0.04, 0.04, 0.0312, 0.0312, 0.013, 0.0101], [0.1077, 0.0695, 0.0653, 0.0653, 0.0478, 0.0449, 0.0328, 0.0212], [0.0316, 0.0279, 0.0279, 0.0217, 0.0169, 0.0159, 0.0124, 0.0116], [0.05, 0.0285, 0.0251, 0.0222, 0.0208, 0.0184, 0.0173, 0.0143], [0.0263, 0.0263, 0.0247, 0.0247, 0.0232, 0.0181, 0.0159, 0.015], [0.0681, 0.0413, 0.0322, 0.0322, 0.0221, 0.0183, 0.0126, 0.0118], [0.0463, 0.0339, 0.0281, 0.0181, 0.016, 0.0086, 0.008, 0.008], [0.0696, 0.0509, 0.035, 0.035, 0.0329, 0.0226, 0.0155, 0.0146], [0.0909, 0.0487, 0.0429, 0.023, 0.0203, 0.0203, 0.0203, 0.0191], [0.1108, 0.0811, 0.0523, 0.017, 0.015, 0.0141, 0.0141, 0.0132], [0.0744, 0.0451, 0.0227, 0.0213, 0.0177, 0.0177, 0.0121, 0.0107], [0.0269, 0.0185, 0.0163, 0.0112, 0.0112, 0.0105, 0.0087, 0.0082], [0.0443, 0.0209, 0.0144, 0.0135, 0.0087, 0.0077, 0.0056, 0.0056], [0.0362, 0.0234, 0.0118, 0.0092, 0.0086, 0.0081, 0.0067, 0.0059], [0.0247, 0.0109, 0.0091, 0.008, 0.0071, 0.0066, 0.0052, 0.0043], [0.0201, 0.0166, 0.0166, 0.0122, 0.0065, 0.0054, 0.0051, 0.0048], [0.0126, 0.0098, 0.0056, 0.0049, 0.0038, 0.0038, 0.0036, 0.0036], [0.0089, 0.0045, 0.0037, 0.0035, 0.0031, 0.0027, 0.0027, 0.0024], [0.1444, 0.0173, 0.0119, 0.0087, 0.0049, 0.0049, 0.0038, 0.0036], [0.0396, 0.0057, 0.005, 0.0044, 0.0039, 0.0039, 0.0039, 0.0022], [0.0139, 0.0116, 0.0075, 0.007, 0.0066, 0.0062, 0.0062, 0.0062], [0.0216, 0.0149, 0.014, 0.0102, 0.009, 0.008, 0.0075, 0.0062], [0.1114, 0.0206, 0.0194, 0.0151, 0.0142, 0.0133, 0.0086, 0.0086], [0.0363, 0.0194, 0.0151, 0.0111, 0.0111, 0.0092, 0.0086, 0.0081], [0.1093, 0.055, 0.0202, 0.0157, 0.0157, 0.009, 0.009, 0.0079], [0.1268, 0.0283, 0.0118, 0.0111, 0.0081, 0.0072, 0.0063, 0.0056], [0.0869, 0.0465, 0.0182, 0.0104, 0.0097, 0.0081, 0.0067, 0.0067], [0.0766, 0.0719, 0.0182, 0.0086, 0.0067, 0.0067, 0.0063, 0.0049], [0.0384, 0.0318, 0.0097, 0.0086, 0.0063, 0.0063, 0.0059, 0.0055], [0.0454, 0.0201, 0.0101, 0.0101, 0.0095, 0.0058, 0.0054, 0.0054], [0.0522, 0.0317, 0.0263, 0.0205, 0.0071, 0.0071, 0.0066, 0.0062], [0.0465, 0.032, 0.03, 0.0265, 0.0206, 0.0092, 0.0086, 0.0067], [0.0869, 0.0362, 0.03, 0.0265, 0.0249, 0.0171, 0.0125, 0.011], [0.059, 0.0231, 0.0204, 0.0159, 0.0159, 0.0149, 0.0149, 0.0132], [0.0586, 0.0586, 0.026, 0.0216, 0.0158, 0.0158, 0.0079, 0.007], [0.044, 0.0284, 0.0235, 0.0235, 0.0111, 0.0098, 0.0087, 0.0076], [0.044, 0.0267, 0.025, 0.0118, 0.0104, 0.0081, 0.0076, 0.0072], [0.0445, 0.0347, 0.0154, 0.0154, 0.0144, 0.0077, 0.0077, 0.0068], [0.0299, 0.015, 0.0125, 0.0125, 0.011, 0.0091, 0.0076, 0.0076], [0.0347, 0.0198, 0.0093, 0.0073, 0.0068, 0.0064, 0.0064, 0.0053], [0.045, 0.0156, 0.01, 0.0083, 0.0078, 0.0069, 0.0069, 0.0069], [0.0206, 0.0142, 0.0104, 0.0091, 0.0076, 0.0076, 0.0067, 0.0063], [0.3583, 0.0485, 0.0333, 0.0148, 0.0139, 0.0074, 0.0074, 0.0066], [0.4817, 0.1218, 0.0786, 0.0289, 0.0225, 0.0165, 0.0088, 0.0061], [0.528, 0.104, 0.0263, 0.0218, 0.0192, 0.017, 0.0141, 0.011], [0.9149, 0.0355, 0.0313, 0.0062, 0.0042, 0.0029, 0.0005, 0.0003], [0.8308, 0.0469, 0.0322, 0.0195, 0.0134, 0.0119, 0.0092, 0.0049], [0.8092, 0.0664, 0.0244, 0.0216, 0.0131, 0.0131, 0.0084, 0.0045], [0.6353, 0.2337, 0.0406, 0.0149, 0.0116, 0.0091, 0.008, 0.0062], [0.7219, 0.0593, 0.0523, 0.0359, 0.0317, 0.0218, 0.015, 0.0091], [0.4369, 0.1252, 0.1105, 0.067, 0.0591, 0.0591, 0.0204, 0.0192], [0.8131, 0.0589, 0.0405, 0.0217, 0.0149, 0.0116, 0.0116, 0.0075], [0.951, 0.0164, 0.0106, 0.0068, 0.0013, 0.0011, 0.001, 0.0009], [0.9876, 0.0059, 0.0023, 0.0004, 0.0002, 0.0002, 0.0001, 0.0001]], "ranks": {"Kotlin": [133265, 24707, 11028, 965, 783, 758, 1318, 4104, 6933, 12453, 10084, 1619, 2619, 4572, 23536, 5990, 8674, 5017, 6609, 24161, 54192, 12898, 28486, 20808, 9643, 1556, 2523, 17355, 13224, 13831, 10126, 24076, 26971, 3676, 1875, 1122, 451, 148, 127, 14, 25, 27, 17, 67, 128, 170, 238, 353, 38, 14, 8, 12, 1, 1, 1, 1, 1, 1, 1, 1, 4, 10, 12]}}, {"pos": 577, "top": [["@\"", " \u2013", " *@", "en", "@", ",", ".", "i"], [" *@", "@\"", " (@", " @\"", " @{", " \\\"\"", " [@", " @("], [" \u2013", "\u2013", "[", ".", " \u2013,", ",", "@\"", "@"], [" \\\"\"", " *\u201e", "``", "*\u201c.", " ``", " ``(", "\\\"\\", " Kotlin"], [" *@", "@\"", " @\"", " (@", " [@", " @(", "@", "@$"], [" *@", " Kotlin", "@\"", " @\"", ":@", "*\u201c.", " *\u201e", " *\u201c"], [" *\u201e", " *@", " *\"", "!\"", " \\\"\"", "\\\"\"", "\\\\\"", " Kotlin"], [" *\u201e", " \\\"\"", " *@", "\\\"\"", " *\"", "\\\\\"", "!.", "!\""], [" *\u201e", "!.", " *\"", " *@", "\\\"\"", "\\\\\"", " \\\"\"", "!\""], [",", "!\"", "!.", ".", "\\\\\"", "\\\"\"", ",.", "!!."], [".", ",", "!\"", "...\"", "\\\"\"", "!", "!.", ".\\\""], ["-esque", " Kotlin", " *\"", " *\u201e", "&apos", " \\\"\"", " *\u201c", "-inspired"], [" Kotlin", "-esque", " *\u201e", " \\\"", "-inspired", "-K", " \\\"\"", "'s"], ["-esque", " Kotlin", "-inspired", ",", "-K", "-style", "'s", "!\""], ["-esque", ",", "'s", "!\"", " &", "an", " mostly", " truly"], ["-esque", " Kotlin", "&apos", " mostly", ",", " truly", "&#", " &"], ["-esque", ",", " Kotlin", "s", "'s", "&apos", " mostly", " modern"], [" Kotlin", "-esque", "&apos", " kotlin", " LGBTQ", "-inspired", " Loki", " freelancer"], ["-esque", " Kotlin", "&apos", " LGBTQ", " kotlin", " Loki", "-inspired", " Scots"], ["&apos", " Kotlin", "-esque", " \\\"\"", " LGBTQ", " kotlin", " TikTok", " \\\""], [" Kotlin", "&apos", "-esque", " famously", "&#", " mostly", " \\\"\"", " Wikipedia"], [" Kotlin", " ``", " ;;^", "&apos", " kotlin", " \\\"\"", " LGBTQ", " ''"], [" ``", " Kotlin", "&apos", " ''", " \\\"", "&quot", " \\\"\"", "``"], [" Kotlin", " \\\"", " ,", "&apos", " -", "\\u", " ''", "&#"], [" Kotlin", "\\u", " \n\n", " kotlin", "\\\"\"", "&apos", " \\\"", "\n \n"], [" Kotlin", " kotlin", "\\u", " Russian", " \\\"", "otlin", "\\\"\"", "Russian"], [" Kotlin", " kotlin", "otlin", " Russian", " Korean", "-language", " Icelandic", "\n \n"], [" Kotlin", "\n\n", " \n\n", "\\u", " kotlin", " \\\"", " __", " ''"], [" Kotlin", " kotlin", " \\\"", "\\\"\"", "\\u", "\n \n", " Korean", " Russian"], [" Kotlin", " kotlin", " \\\"", "\\\"\"", " ...\\", "\n \n", " LGBTQ", "\\\"\\"], [" Kotlin", " kotlin", "\\\"\"", " ...\\", "\n \n", " toolkit", "\\\"\\", " LGBTQ"], [" Kotlin", " kotlin", " Russian", " \\\"", " ...", " Korean", " language", " LGBTQ"], [" Kotlin", " kotlin", " Russian", " LGBTQ", "otlin", " Korean", " language", " toolkit"], [" Kotlin", " kotlin", "otlin", " Russian", " languages", " toolkit", " LGBTQ", " Android"], [" Kotlin", " kotlin", "otlin", "-language", " languages", " language", " Russian", "Russian"], [" Kotlin", " kotlin", "Russian", " Russian", "otlin", "-Russian", "-language", "\u4fc4\u8bed"], [" Kotlin", " kotlin", "otlin", "Russian", " Russian", "\u4fc4\u8bed", "-Russian", "-language"], [" Kotlin", " kotlin", "otlin", "Russian", " Russian", "\u4fc4\u8bed", "-Russian", ".kotlin"], [" Kotlin", " kotlin", "otlin", " Russian", "Russian", ".kotlin", "\u4fc4\u8bed", "-Russian"], [" Kotlin", " kotlin", "otlin", "Russian", " Russian", "\u4fc4\u8bed", "-Russian", ".kotlin"], [" Kotlin", " kotlin", "Russian", "otlin", " Russian", "-Russian", "\u4fc4\u8bed", " Ukrainian"], [" Kotlin", " kotlin", "otlin", "Russian", "-language", "\u4fc4\u8bed", " languages", "-Russian"], [" Kotlin", " kotlin", "otlin", " interoper", "\u4fc4\u8bed", "-language", " languages", "Russian"], [" Kotlin", " kotlin", "otlin", "-language", " Language", " interoper", " languages", "-Russian"], [" Kotlin", " kotlin", "otlin", "-language", " Language", "-Russian", " languages", " language"], [" Kotlin", " kotlin", "otlin", " Language", "-Russian", "-language", " interoper", " languages"], [" Kotlin", " kotlin", " Language", "otlin", " interoper", "-Russian", "-language", " workflows"], [" Kotlin", " kotlin", " Language", "-Russian", "otlin", " animations", " interoper", "-language"], [" Kotlin", " kotlin", "otlin", "-Russian", ".kotlin", "-language", " animations", " Language"], [" Kotlin", ".kotlin", "otlin", "-Russian", "-native", " kotlin", "-language", " Toolkit"], [" Kotlin", "-language", ".kotlin", " Language", "-native", "-Russian", " Toolkit", "otlin"], ["-native", " Kotlin", "/K", "/native", "-Russian", " Runtime", "/C", "/N"], [" Kotlin", "/K", "-native", " Runtime", " Compiler", "/runtime", "/native", " Coroutine"], [" Kotlin", " Runtime", "-native", " Compiler", " Coroutine", "/runtime", " runtime", "/K"], [" Kotlin", " kotlin", ".kotlin", " Coroutine", "/K", " coroutine", " JVM", " Runtime"], [" Kotlin", " Coroutine", " coroutine", " JVM", "-native", " kotlin", " DSL", "/native"], [" Kotlin", " Coroutine", " coroutine", " JVM", " kotlin", "/K", ".coroutines", " DSL"], [" Kotlin", " JVM", " Coroutine", " coroutine", "/K", " DSL", " kotlinx", ".coroutines"], [" coroutine", " Coroutine", " cor", "\u534f", ".coroutines", " Cor", "Coroutine", " Kotlin"], [" cor", " coroutine", " Coroutine", " Cor", "\u534f", "/N", ".coroutines", " suspend"], [" cor", "/N", " coroutine", " Cor", " Coroutine", " Native", ".coroutines", "-cor"], ["/N", " cor", " Cor", " Native", " coroutine", " Coroutine", "/K", "/C"], ["/N", "/C", "/", " Cor", "/J", "/K", "/c", " Native"]], "p": [[0.2325, 0.2184, 0.1169, 0.0588, 0.0588, 0.043, 0.0216, 0.0179], [0.5379, 0.0642, 0.0209, 0.0153, 0.0119, 0.0112, 0.0112, 0.0105], [0.8959, 0.0505, 0.0068, 0.0064, 0.005, 0.005, 0.0025, 0.0018], [0.0948, 0.0837, 0.054, 0.0421, 0.024, 0.0137, 0.0113, 0.0083], [0.7612, 0.0587, 0.0203, 0.0203, 0.0102, 0.0079, 0.0075, 0.0075], [0.0684, 0.0344, 0.0099, 0.0068, 0.0056, 0.0056, 0.0056, 0.005], [0.113, 0.0997, 0.0827, 0.0471, 0.0416, 0.0237, 0.0222, 0.0196], [0.224, 0.1276, 0.1276, 0.0824, 0.0642, 0.0323, 0.0323, 0.0143], [0.138, 0.1218, 0.1144, 0.0786, 0.0739, 0.0477, 0.0448, 0.0395], [0.3878, 0.1259, 0.0813, 0.0299, 0.016, 0.016, 0.015, 0.0103], [0.4182, 0.2239, 0.0389, 0.0303, 0.0208, 0.0208, 0.0184, 0.0143], [0.0697, 0.051, 0.0256, 0.0241, 0.0187, 0.0137, 0.0083, 0.0073], [0.0393, 0.0369, 0.0164, 0.0113, 0.0082, 0.006, 0.0057, 0.0053], [0.1419, 0.0132, 0.0075, 0.0066, 0.0062, 0.0055, 0.0052, 0.0049], [0.0495, 0.0437, 0.0086, 0.0067, 0.0067, 0.0067, 0.0059, 0.0056], [0.0936, 0.0093, 0.0087, 0.0047, 0.0041, 0.0036, 0.0036, 0.0036], [0.0978, 0.0492, 0.0141, 0.0067, 0.0062, 0.0062, 0.0038, 0.003], [0.0789, 0.0696, 0.0226, 0.0054, 0.0047, 0.0042, 0.0042, 0.0025], [0.0733, 0.0571, 0.0504, 0.0127, 0.0057, 0.0047, 0.0041, 0.0036], [0.067, 0.049, 0.0317, 0.0071, 0.0062, 0.0049, 0.0038, 0.0031], [0.0141, 0.0133, 0.0081, 0.0049, 0.0032, 0.0032, 0.0032, 0.0022], [0.1476, 0.0309, 0.02, 0.0156, 0.0114, 0.0073, 0.0057, 0.0042], [0.1249, 0.1102, 0.0554, 0.0489, 0.0358, 0.0109, 0.009, 0.0075], [0.0222, 0.0208, 0.0208, 0.0126, 0.0077, 0.0072, 0.0063, 0.0056], [0.2722, 0.0536, 0.0163, 0.0154, 0.0112, 0.0106, 0.0087, 0.0082], [0.8745, 0.0264, 0.0055, 0.0026, 0.0025, 0.002, 0.0019, 0.0017], [0.7856, 0.0223, 0.0041, 0.0027, 0.0025, 0.0023, 0.0022, 0.0019], [0.3145, 0.0376, 0.0353, 0.0177, 0.0108, 0.0108, 0.0095, 0.0089], [0.643, 0.0161, 0.0133, 0.0125, 0.0098, 0.0098, 0.0056, 0.0056], [0.6961, 0.0306, 0.0174, 0.0164, 0.0073, 0.0064, 0.0057, 0.0047], [0.724, 0.1043, 0.015, 0.0097, 0.0091, 0.0052, 0.004, 0.0038], [0.6071, 0.053, 0.0162, 0.0081, 0.006, 0.0046, 0.0041, 0.0036], [0.5402, 0.0368, 0.0174, 0.0068, 0.005, 0.005, 0.0039, 0.0036], [0.7608, 0.0909, 0.0051, 0.0048, 0.0045, 0.0029, 0.0024, 0.0023], [0.719, 0.1604, 0.007, 0.0058, 0.0052, 0.0031, 0.0029, 0.0028], [0.8033, 0.1232, 0.0089, 0.0074, 0.0061, 0.004, 0.0027, 0.0024], [0.8918, 0.083, 0.0053, 0.0034, 0.0025, 0.001, 0.001, 0.0008], [0.9264, 0.0592, 0.0055, 0.001, 0.0009, 0.0005, 0.0004, 0.0004], [0.9412, 0.0469, 0.0063, 0.0006, 0.0004, 0.0003, 0.0002, 0.0002], [0.9371, 0.0467, 0.0049, 0.0022, 0.0012, 0.0009, 0.0005, 0.0004], [0.9476, 0.0324, 0.0041, 0.0025, 0.0021, 0.0008, 0.0007, 0.0006], [0.933, 0.041, 0.0028, 0.0022, 0.001, 0.0009, 0.0009, 0.0009], [0.9198, 0.0519, 0.0045, 0.0023, 0.0012, 0.0011, 0.0011, 0.0008], [0.8762, 0.0494, 0.0063, 0.0052, 0.0041, 0.0028, 0.0026, 0.0017], [0.8618, 0.0429, 0.0084, 0.0042, 0.004, 0.0029, 0.0029, 0.0027], [0.7906, 0.0394, 0.0106, 0.0073, 0.0068, 0.0064, 0.0057, 0.0039], [0.7087, 0.04, 0.0122, 0.0108, 0.0095, 0.0084, 0.0074, 0.0054], [0.746, 0.0308, 0.0155, 0.0083, 0.0083, 0.005, 0.005, 0.0044], [0.7621, 0.023, 0.0149, 0.0149, 0.009, 0.0075, 0.0075, 0.0038], [0.7494, 0.0166, 0.0129, 0.0114, 0.0107, 0.01, 0.0094, 0.0045], [0.6449, 0.0302, 0.0221, 0.0195, 0.0126, 0.0118, 0.0067, 0.0059], [0.3959, 0.187, 0.0732, 0.0305, 0.0153, 0.0099, 0.0099, 0.0099], [0.7405, 0.0608, 0.0473, 0.0144, 0.0093, 0.006, 0.0053, 0.0047], [0.588, 0.0796, 0.062, 0.0426, 0.0312, 0.0108, 0.0101, 0.0095], [0.9714, 0.0139, 0.0065, 0.0021, 0.0013, 0.0006, 0.0005, 0.0005], [0.6035, 0.1959, 0.0561, 0.0182, 0.0161, 0.0142, 0.0104, 0.0067], [0.5213, 0.2173, 0.08, 0.0333, 0.0115, 0.0095, 0.0095, 0.009], [0.4934, 0.2993, 0.0315, 0.0191, 0.0169, 0.0159, 0.0102, 0.0085], [0.5564, 0.232, 0.1242, 0.0457, 0.0148, 0.0102, 0.0062, 0.0029], [0.6567, 0.2416, 0.042, 0.0289, 0.012, 0.0044, 0.0039, 0.0027], [0.5381, 0.3264, 0.0567, 0.0501, 0.0184, 0.0041, 0.0013, 0.0006], [0.9384, 0.0283, 0.0092, 0.0063, 0.0056, 0.0038, 0.0009, 0.0009], [0.9965, 0.0019, 0.0004, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001]], "ranks": {"Kotlin": [1292, 220, 485, 8, 44, 2, 8, 18, 38, 14, 28, 2, 1, 2, 66, 2, 3, 1, 2, 2, 1, 1, 2, 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, 2, 1, 1, 1, 1, 1, 1, 8, 39, 72, 177, 150]}}, {"pos": 578, "top": [[" \u2013", " [\u2026]", ".", ",", "@\"", "\"", " \u00b7", "\u0647"], ["\\\"", "(\\\"", " \\\"", "\u4f46\u4e0d\u9650\u4e8e", ":\\\"", "\u0647", "\\\")", "=\\\""], [" \u2013", "\u200b\u200b", " \u200b\u200b", ".", "@\"", "'[", "[", "\""], ["\u4f46\u4e0d\u9650\u4e8e", " Nues", "\\\")", "\\\"\\", " \\\"", "\u0647", " Hidal", " knull"], ["@\"", "@\",", "@\\", "\u0647", "\u4f46\u4e0d\u9650\u4e8e", "\\\"", "\\\")", "(\\\""], ["\u4f46\u4e0d\u9650\u4e8e", "\u0647", "@\",", "@\"", "-\\", " \u200b\u200b", "@\\", "\u304a\u624b"], ["\u4f46\u4e0d\u9650\u4e8e", "\u0647", "@\"", "\u4e86", "\\\"", "\\\\\"", ":\\\"", "\\\")"], ["\u4f46\u4e0d\u9650\u4e8e", "\\\\\"", " '\\\"", "=\\\"", ":\\\"", "\\\")", "@\"", " \\\"$"], ["\\\\\"", "\u4f46\u4e0d\u9650\u4e8e", " '\\\"", ":\\\"", "=\\\"", "\\\"\",", " \\\"$", "\\\""], ["\u4f46\u4e0d\u9650\u4e8e", "\\\\\"", "-\\", "\u0647", " '\\\"", "=\\\"", " \\\"$", "@\""], ["\\\\\"", "\\\"", "\\n", "@\"", "\u4f46\u4e0d\u9650\u4e8e", ".\\\"", "\\\")", "-\\"], ["\u4f46\u4e0d\u9650\u4e8e", "\\\\\"", " \\\"$", " '\\\"", "iverse", "=\\\"", "flix", "{\\\""], ["\u4f46\u4e0d\u9650\u4e8e", "flix", "iverse", " '\\\"", "\\\\\"", "=\\\"", " \\\"", "alytics"], ["\u4f46\u4e0d\u9650\u4e8e", "flix", "\\\\\"", " Nues", "iverse", "-ish", " '\\\"", "\u0647"], ["\\\\\"", "\u4f46\u4e0d\u9650\u4e8e", " \\\"", "\\\")", "}\\\"", "\u0647", " '\\\"", "=\\\""], ["\u4f46\u4e0d\u9650\u4e8e", "es", " \\\"", "\u0647", "-&", "\\\\\"", "/&", "&"], ["es", "\u0647", "u", "&", "\\\\\"", "n", "\u4f46\u4e0d\u9650\u4e8e", "os"], ["\\\"", "\\\\\"", "\\\")", " \\\"", "\u0647", "es", "=\\\"", "\\\"\\"], ["\\\\\"", "\\\"", "/&", "\"&", "\u0647", "\\\")", "&quot", "-&"], ["\\\\\"", "\\\")", "\\\"", "\"&", "-&", "\\\\/", "\\\"]", "{\\\""], ["@", "\"&", "&", "\\\\\"", "@\",", "u", "\\\")", "@\""], ["\\\")", " Nues", "flix", " ;;^", "osphere", "&quot", "\\\\\"", "\\\"\\"], ["&quot", "\\\")", "\\\\\"", " \\\"", "\\\"]", "\\\"", "\\\"\\", "\"&"], ["&", "ion", " \\\"", " --", "&quot", "ive", "\"&", "\\\")"], [" \n\n", " ...\\", "\\u", "\n\n", "\\\\\"", " \r\n\r\n", "\\\\/", "_\\"], [" ...\\", " \n\n", " ___", " **\u3010", " _:", " -**", "\\\")", "\\\\\""], [" ...\\", "\n\n", " \n\n", " _:", " ___", "\\\")", "\\\\/", "\\u"], ["\n\n", " \n\n", " --", " ___", " __", " ...\\", " _", "\r\n\r\n"], ["\n\n", " \n\n", " \\\"", " ...\\", " technology", " __", " --", " ___"], [" ...", " ...\\", " ...\"", " ___", " __", " ......", "...", "...\\"], [" \\\"", " technology", " _:", " __", " ___", " ...", " .**", " ."], [" ,", " .", " ...", " \\\"", " only", " technology", " mostly", " more"], [" .", " ,", " technology", " even", " mostly", " hybrid", " only", " modern"], [" technology", " tech", " hybrid", " technologies", " hybrids", " globally", " interoper", " ecosystem"], [" tech", " technology", " hybrid", " interoper", " hybrids", " ecosystem", " technologies", " infrastructure"], [" interoper", " tech", " hybrid", " technology", " hybrids", " ecosystem", " hardware", " /"], [" interoper", " tech", " hybrid", " hybrids", " hardware", " scalability", " incompatible", " technology"], [" interoper", " hybrid", " hybrids", " tech", " hardware", " /", " scalability", " Hybrid"], [" interoper", " hardware", " tech", " hybrid", " hybrids", " /", " scalability", " firmware"], [" interoper", " \u200b\u200b", " hardware", " hybrid", " /", " hybrids", " tech", "\u200b\u200b"], [" hardware", " /", " tech", " interoper", " technology", " hybrid", " hybrids", " Hardware"], [" interoper", " hardware", " technology", " tech", " hybrid", " engine", " hybrids", " Hardware"], [" interoper", " hardware", " hybrid", " technology", " hybrids", " /", " tech", " Hybrid"], [" interoper", " hybrid", " Hybrid", " hybrids", " /", " transitioning", " Dual", " technology"], [" hybrid", " hybrids", " Hybrid", " interoper", " transition", " /", " conversions", " overseas"], [" /", " hybrids", " hybrid", " Hybrid", " transition", " vs", " conversions", "/"], ["/", " /", " vs", " Hybrid", " hybrids", " hybrid", " equivalents", "/N"], ["/", " lacks", " vs", " Hybrid", "/N", " Transition", " hybrids", " equivalents"], [" lacks", " vs", "/", "/N", "/M", "/Linux", " interoper", " equivalents"], [" lacks", "/N", "/Linux", " vs", " conversions", "/M", " Transition", " interoper"], ["/N", "/Linux", " lacks", " Transition", "/M", "/X", "(/", "/C"], [" interoper", "+:", " Performance", " Interface", " optimizations", ":**", " conversions", "-native"], [" interoper", ":**", "+:", " optimizations", " overhead", " conversions", ":*", " Conversion"], [" interoper", " overhead", "runtime", " Runtime", " concurrency", " optimizations", "Concurrency", " runtime"], [" Memory", " overhead", " interoper", " runtime", " Serialization", " allocator", "runtime", " memory"], [" Serialization", " serialization", " Memory", " Runtime", " runtime", " interoper", " overhead", " ABI"], [" GC", " Memory", " Serialization", " ABI", "GC", " garbage", "\u5783\u573e", " Native"], [" Memory", " GC", " ABI", "/native", " memory", " Serialization", " Native", " Compilation"], [" overhead", " Memory", " GC", " ABI", " memory", "GC", " Compilation", "\u5f00\u9500"], [" overhead", " Memory", " ABI", " GC", " memory", " Serialization", " Runtime", " Compilation"], [" overhead", " ABI", " GC", " Memory", " Compilation", " Serialization", " Ahead", " LLVM"], [" overhead", " ABI", " Memory", " GC", " Ahead", " Serialization", " Over", " Native"], [" overhead", "ative", " ABI", " Memory", "ABI", "FF", "over", " GC"]], "p": [[0.5469, 0.0328, 0.0328, 0.0155, 0.0146, 0.0129, 0.0121, 0.0121], [0.2658, 0.1612, 0.1515, 0.0462, 0.0298, 0.028, 0.0232, 0.0218], [0.0968, 0.0802, 0.0487, 0.0335, 0.0335, 0.0335, 0.0295, 0.0261], [0.3102, 0.0113, 0.01, 0.0088, 0.0083, 0.0083, 0.006, 0.0057], [0.3229, 0.1048, 0.0721, 0.0561, 0.0527, 0.0265, 0.0234, 0.022], [0.0511, 0.0374, 0.0213, 0.0177, 0.0177, 0.0129, 0.0083, 0.0069], [0.59, 0.0427, 0.0377, 0.013, 0.013, 0.0115, 0.007, 0.0062], [0.1919, 0.0485, 0.0333, 0.0333, 0.0294, 0.0215, 0.019, 0.0168], [0.1549, 0.1367, 0.0417, 0.0346, 0.0305, 0.0237, 0.0237, 0.0153], [0.2121, 0.1369, 0.0305, 0.012, 0.0093, 0.0093, 0.0093, 0.0077], [0.1474, 0.1078, 0.0789, 0.0614, 0.045, 0.0373, 0.035, 0.0329], [0.1899, 0.0699, 0.0177, 0.0166, 0.0138, 0.0121, 0.0107, 0.0107], [0.1013, 0.0479, 0.0176, 0.0114, 0.0107, 0.0089, 0.0069, 0.0069], [0.0937, 0.039, 0.0082, 0.0072, 0.0056, 0.0053, 0.005, 0.005], [0.0908, 0.0707, 0.0334, 0.019, 0.0139, 0.0139, 0.0139, 0.0108], [0.0381, 0.0336, 0.0217, 0.0169, 0.0169, 0.0132, 0.0116, 0.0096], [0.1439, 0.0221, 0.0221, 0.0126, 0.0118, 0.0098, 0.0092, 0.0081], [0.2737, 0.0692, 0.0394, 0.0198, 0.0154, 0.0154, 0.0145, 0.0145], [0.1007, 0.042, 0.0271, 0.0255, 0.0255, 0.0225, 0.012, 0.01], [0.1035, 0.0459, 0.0431, 0.0191, 0.014, 0.0124, 0.0116, 0.0109], [0.0428, 0.0294, 0.026, 0.0202, 0.019, 0.0139, 0.0115, 0.0102], [0.0107, 0.01, 0.01, 0.0078, 0.0057, 0.0051, 0.0045, 0.0045], [0.029, 0.0256, 0.0176, 0.01, 0.0094, 0.0089, 0.0078, 0.0078], [0.0136, 0.0112, 0.0099, 0.0087, 0.0073, 0.0073, 0.0053, 0.005], [0.104, 0.0382, 0.0317, 0.0298, 0.017, 0.0159, 0.0141, 0.0132], [0.1097, 0.0314, 0.023, 0.0168, 0.0109, 0.009, 0.009, 0.009], [0.0724, 0.0235, 0.0195, 0.0183, 0.0162, 0.0104, 0.0092, 0.0087], [0.8579, 0.0904, 0.0024, 0.002, 0.0017, 0.0014, 0.0009, 0.0007], [0.6073, 0.0565, 0.006, 0.0053, 0.0044, 0.0044, 0.0041, 0.0034], [0.4217, 0.2898, 0.078, 0.0253, 0.0163, 0.0073, 0.0068, 0.0068], [0.0742, 0.0397, 0.02, 0.0176, 0.0121, 0.0114, 0.0107, 0.0083], [0.0433, 0.0317, 0.0298, 0.0192, 0.0181, 0.0159, 0.0124, 0.0097], [0.0305, 0.0163, 0.0153, 0.0144, 0.0127, 0.0127, 0.0119, 0.0087], [0.0776, 0.039, 0.0252, 0.0163, 0.0144, 0.0112, 0.0087, 0.0068], [0.0479, 0.0309, 0.0291, 0.0226, 0.0176, 0.0146, 0.0089, 0.0065], [0.0253, 0.0238, 0.0144, 0.0099, 0.0082, 0.0064, 0.0057, 0.0057], [0.0373, 0.0156, 0.0114, 0.0094, 0.0073, 0.0061, 0.0047, 0.0045], [0.0377, 0.0202, 0.0147, 0.0147, 0.0147, 0.007, 0.0065, 0.0061], [0.0356, 0.0179, 0.0158, 0.0148, 0.0115, 0.0115, 0.007, 0.0058], [0.0193, 0.016, 0.016, 0.0125, 0.011, 0.011, 0.0103, 0.0097], [0.0421, 0.0372, 0.0308, 0.0226, 0.0212, 0.0187, 0.0165, 0.0094], [0.0569, 0.0569, 0.0391, 0.0305, 0.0153, 0.0127, 0.0119, 0.0112], [0.1386, 0.035, 0.0241, 0.0213, 0.0156, 0.0121, 0.0114, 0.0107], [0.0551, 0.0379, 0.0379, 0.0244, 0.023, 0.0203, 0.0179, 0.0139], [0.0782, 0.0505, 0.037, 0.0306, 0.0186, 0.0154, 0.0128, 0.0128], [0.0741, 0.0614, 0.0577, 0.0422, 0.0155, 0.0146, 0.0146, 0.0121], [0.0951, 0.0741, 0.0542, 0.0449, 0.035, 0.0241, 0.0165, 0.0146], [0.1906, 0.0901, 0.0901, 0.0242, 0.0167, 0.0156, 0.0138, 0.0122], [0.1204, 0.0827, 0.0569, 0.0345, 0.0119, 0.0112, 0.0105, 0.0099], [0.1166, 0.0403, 0.023, 0.023, 0.0203, 0.019, 0.0148, 0.0148], [0.2112, 0.0324, 0.0269, 0.0185, 0.0153, 0.0127, 0.0112, 0.0105], [0.0844, 0.0481, 0.0214, 0.0177, 0.0166, 0.0166, 0.0138, 0.013], [0.0787, 0.0308, 0.0308, 0.024, 0.0187, 0.0176, 0.0146, 0.0146], [0.0326, 0.0254, 0.0238, 0.021, 0.021, 0.0186, 0.0186, 0.0174], [0.0961, 0.0401, 0.0376, 0.0354, 0.0332, 0.0293, 0.0293, 0.0293], [0.1422, 0.0631, 0.0462, 0.0383, 0.0383, 0.028, 0.0218, 0.0218], [0.1783, 0.1151, 0.0579, 0.048, 0.0451, 0.0351, 0.031, 0.0257], [0.2732, 0.0783, 0.0691, 0.0326, 0.0288, 0.0288, 0.0288, 0.0239], [0.9122, 0.0354, 0.0147, 0.0051, 0.0026, 0.0024, 0.0023, 0.0018], [0.6472, 0.1274, 0.0322, 0.0134, 0.0134, 0.0092, 0.0087, 0.0053], [0.8074, 0.0456, 0.0168, 0.0139, 0.004, 0.0035, 0.0033, 0.0031], [0.5389, 0.0826, 0.0416, 0.0127, 0.0119, 0.0087, 0.0072, 0.0068], [0.292, 0.1296, 0.1143, 0.0612, 0.0175, 0.0165, 0.0088, 0.0073]], "ranks": {"Kotlin": [135809, 47889, 46640, 9090, 16138, 22565, 21253, 28926, 17537, 49211, 20751, 4174, 3591, 10261, 30238, 56148, 26848, 14945, 42260, 87198, 127050, 33216, 30841, 65672, 28392, 1734, 1140, 12710, 7446, 4002, 2661, 27873, 30950, 9136, 14414, 5471, 6215, 5740, 6789, 3693, 5456, 2779, 2456, 3958, 8302, 9701, 12603, 14628, 19485, 31954, 27868, 7458, 1105, 968, 355, 135, 147, 124, 143, 404, 545, 788, 737]}}, {"pos": 579, "top": [[" \u2013", "\u2013", ",", ".", "e", "\u00a0", ".\u2013", ";"], [" \u2013", "\u2013", " \u2013**", "**\u2013", ".\u2013", "\u2013and", " \u2013,", " *\u2013"], ["\u2013", " \u2013", ".\u2013", ",", ".", "\u2013and", " \u2013**", "**\u2013"], [" milfs", " Hidal", " **:", " **:**", "*\u201c.", " ;;^", " Shemale", " Blowjob"], [" *\u2013", " *.", " **.", " *", "etik", " **\u2013", " \u2013**", " *@"], [" **\u2013", " Indigenous", " **:", " Hidal", " *\u2013", " **.", " \u2013**", "**\u2013"], [" **", " **.", " **\u00ab", " **\u2013", " *\u00ab", " **:", " **^", " **-"], [" **\u00ab", " **.", " **", " **^", " **:", " **\u2013", " *\u00ab", " **-"], [" **\u00ab", " **.", " *\u00ab", " **", " **^", " **.**", " **\u20ac", " **'"], [" **\u2013", ".${", " **\u00ab", "/native", " **", "-native", " **^", "\u7eaf\u5929\u7136"], [" **\u2013", ",", " **.", " **", ".", " **\u00ab", ".${", ".**"], [" **\u00ab", " **", " **\u2013", " **.", " *\u00ab", " **\u2018", " **'", " **^"], [" **\u00ab", " **", " **\u2013", " **.", " **\u201e", " *\u00ab", " transformative", " Indigenous"], [" transformative", " Indigenous", " **\u00ab", "-era", " **\u2013", "-native", " technologies", "-inspired"], [" Indigenous", " transformative", " iconic", "-esque", "-era", " arguably", " util", " Native"], [" Indigenous", " transformative", "\u51ed\u501f\u7740", " sprawling", " arguably", "-esque", " Native", "-era"], [" Indigenous", " transformative", " technologies", "-esque", " iconic", " Native", " indigenous", " \u2013"], [" Indigenous", " transformative", " technologies", " **\u2013", " Global", " hybrids", " Native", "-inspired"], [" Indigenous", " transformative", " **", " **\u2013", "-esque", " sprawling", " **^", "-inspired"], [" Indigenous", " sprawling", " Native", " European", " transformative", " uniquely", " largely", " indigenous"], ["<|endoftext|>", " \n\n", " \n\n\n", " \u2013", " European", " sprawling", " uniquely", " Native"], [" Indigenous", " **", " **\u2013", " **^", " Kurdish", " Native", " **\u00ab", " transformative"], ["<|endoftext|>", " \u2013", " __", " \n\n\n", " Indigenous", " ,", " Native", " uniquely"], ["<|endoftext|>", " \u2013", " ,", "\u2013", "1", "2", "\u00a0", " \n\n\n"], [" \n\n", " __", " \n\n\n", "\n\n", " \r\n\r\n", "\r\n\r\n", "   \n\n", ".__"], [" \n\n", " __", "Russian", " **", " Kurdish", " Russian", " Ukrainian", " Kotlin"], [" Mongolia", " Kotlin", "\u8499\u53e4", " Icelandic", " Kurdish", " Ukrainian", " Norwegian", " Russian"], [" \n\n", "\n\n", " __", " Mongolia", " \r\n\r\n", " Russian", "\u8499\u53e4", "\r\n\r\n"], [" \n\n", " Russian", " Ukrainian", " technology", "Russian", " ...", " Mongolia", "\n\n"], ["...**", " ...", " __", "...*", " ...\"", " **", " **:", " ...)"], ["...**", " ...", " **:", " __", " **", " technology", " **.", " Ukrainian"], [" ...", "...**", " ...\"", "...", " technology", "...*", " **", " __"], [" technology", " ...", " technologies", " Russian", " Ukrainian", " software", " Mongolia", " **"], [" technology", " Ukrainian", " technologies", " Russian", " Mongolia", " software", " interoper", " Kurdish"], ["...**", " ...", "\u2026**", " \u2026", " technology", "...*", " ...\"", "\u2026*"], [" \u2026", " ...", "\u2026**", "...**", "\u2026*", " ...\"", " Kotlin", " Russian"], [" Russian", " Mongolia", " Kotlin", "\u8499\u53e4", "\u4fc4\u7f57\u65af", " Ukrainian", "Russian", " Kurdish"], [" Kotlin", " Russian", " Mongolia", " Icelandic", " Ukrainian", "\u8499\u53e4", " Kurdish", " Indigenous"], [" Kotlin", " Russian", " Icelandic", " Mongolia", "\u8499\u53e4", " software", " JetBrains", "Russian"], [" Russian", "Russian", " Mongolia", " Kotlin", "\u8499\u53e4", "\u4fc4\u7f57\u65af", " Icelandic", "\u4fc4\u8bed"], [" Russian", "Russian", " Kotlin", "\u8499\u53e4", "\u4fc4\u7f57\u65af", " Mongolia", " Icelandic", " LLVM"], [" Kotlin", " Russian", "\u8499\u53e4", " LLVM", "Russian", " Mongolia", " Icelandic", " Kurdish"], [" Kotlin", " LLVM", "\u8499\u53e4", " Mongolia", " workflows", " JetBrains", " Icelandic", " Russian"], [" Kotlin", " workflows", " LLVM", "\u8499\u53e4", " Mongolia", " Kurdish", " fragmentation", " JetBrains"], [" Kotlin", "\u8499\u53e4", " LLVM", " workflows", " Mongolia", " fragmentation", " JetBrains", " Kurdish"], [" fragmentation", " Kotlin", " Mongolia", " LLVM", " workflows", "\u8499\u53e4", " crash", " freeze"], [" fragmentation", " workflows", " lacks", " LLVM", " Kotlin", " freezes", "\u8499\u53e4", " Mongolia"], [" lacks", " lacked", " Kotlin", " workflows", " fragmentation", " Without", " LLVM", " lack"], [" lacks", " lacked", " LLVM", " fragmentation", " Kotlin", " workflows", "\u7f3a\u4e4f", " lack"], [" lacks", " LLVM", " workflows", " fragmentation", " JetBrains", " Kotlin", " RNG", " lacked"], [" lacks", " JetBrains", "Frozen", " Kotlin", "\u7f3a\u4e4f", "-Russian", " LLVM", " fragmentation"], [" LLVM", "+:", " JetBrains", " lacks", ":*", " Kotlin", ":**", " Runtime"], [" LLVM", " Kotlin", " JetBrains", "llvm", "+:", " **:", ":*", ":**"], [" LLVM", " JetBrains", " Kotlin", "llvm", " Runtime", " SIMD", " llvm", " concurrency"], [" Kotlin", " LLVM", " GC", " garbage", " Allocator", " Memory", " JVM", " runtime"], [" garbage", " GC", "\u5783\u573e", "GC", " Kotlin", " LLVM", " Allocator", "_GC"], [" GC", " garbage", "\u5783\u573e", "GC", " LLVM", "_GC", "gc", " Kotlin"], [" GC", "GC", " Memory", " LLVM", " memory", " Kotlin", "_GC", "Memory"], [" GC", " Memory", " memory", "GC", "Memory", "memory", " LLVM", " Kotlin"], [" Memory", " memory", " Allocation", " allocations", " GC", " allocation", "Memory", " Allocator"], [" Memory", " memory", " concurrency", " GC", " Allocation", "Memory", " LLVM", " Mem"], [" Memory", " concurrency", " memory", " Allocation", " Concurrent", " Serialization", " GC", " Allocator"], [":**", " Memory", " Allocation", " Serialization", " Heap", " Concurrent", " concurrency", " ABI"]], "p": [[0.8233, 0.1621, 0.0081, 0.0034, 0.0009, 0.0005, 0.0005, 0.0002], [0.7891, 0.1761, 0.0186, 0.0022, 0.0021, 0.0017, 0.0011, 0.0008], [0.5519, 0.4298, 0.0101, 0.0033, 0.0026, 0.0006, 0.0005, 0.0004], [0.0266, 0.0111, 0.0098, 0.0092, 0.0076, 0.0067, 0.0059, 0.0056], [0.0518, 0.0379, 0.0168, 0.0079, 0.0075, 0.0075, 0.007, 0.0062], [0.0172, 0.0052, 0.0046, 0.0041, 0.0032, 0.0028, 0.0018, 0.0018], [0.2057, 0.1932, 0.0627, 0.0405, 0.0262, 0.014, 0.0116, 0.0102], [0.2651, 0.1419, 0.1333, 0.0407, 0.0359, 0.0262, 0.0192, 0.018], [0.3681, 0.1739, 0.0821, 0.0601, 0.0284, 0.0118, 0.0098, 0.0072], [0.0344, 0.0112, 0.0105, 0.0064, 0.006, 0.0047, 0.0044, 0.0041], [0.1146, 0.0695, 0.0653, 0.0478, 0.0308, 0.0199, 0.0176, 0.0165], [0.3887, 0.143, 0.034, 0.0219, 0.0142, 0.0133, 0.0104, 0.0059], [0.2989, 0.0856, 0.0131, 0.0116, 0.0075, 0.007, 0.0048, 0.0043], [0.0091, 0.0076, 0.0034, 0.003, 0.0028, 0.0026, 0.002, 0.0018], [0.0082, 0.0044, 0.003, 0.003, 0.003, 0.0022, 0.0022, 0.0022], [0.0142, 0.0049, 0.0046, 0.0032, 0.003, 0.0028, 0.0025, 0.0022], [0.0267, 0.0068, 0.0036, 0.0032, 0.0032, 0.003, 0.0026, 0.0026], [0.0187, 0.0069, 0.0065, 0.0045, 0.0029, 0.0025, 0.0024, 0.0024], [0.0134, 0.0081, 0.0049, 0.0046, 0.0043, 0.0038, 0.0036, 0.003], [0.0067, 0.0056, 0.0056, 0.0038, 0.0032, 0.0028, 0.0026, 0.0026], [0.2842, 0.0526, 0.0076, 0.0052, 0.0025, 0.002, 0.0019, 0.0018], [0.0151, 0.0091, 0.0081, 0.0055, 0.0049, 0.0043, 0.0038, 0.0023], [0.0711, 0.0489, 0.0132, 0.008, 0.0075, 0.0066, 0.0066, 0.0058], [0.8049, 0.0189, 0.0045, 0.0023, 0.0015, 0.0014, 0.001, 0.0009], [0.7314, 0.1054, 0.0284, 0.0172, 0.0172, 0.0063, 0.0056, 0.003], [0.0901, 0.0747, 0.0659, 0.0482, 0.0453, 0.04, 0.0311, 0.0293], [0.0726, 0.044, 0.0365, 0.0343, 0.0322, 0.0303, 0.0236, 0.0221], [0.509, 0.1136, 0.0393, 0.012, 0.0077, 0.0073, 0.0064, 0.0064], [0.1188, 0.0869, 0.041, 0.0282, 0.0265, 0.0234, 0.022, 0.022], [0.4748, 0.0878, 0.0684, 0.0173, 0.0143, 0.0112, 0.0105, 0.0093], [0.1189, 0.1117, 0.0636, 0.0528, 0.0466, 0.032, 0.0194, 0.0182], [0.9158, 0.0096, 0.0096, 0.0079, 0.0079, 0.0029, 0.0029, 0.0027], [0.1875, 0.0609, 0.0287, 0.0238, 0.0128, 0.012, 0.0088, 0.0088], [0.1243, 0.0379, 0.0379, 0.023, 0.023, 0.0179, 0.0131, 0.0131], [0.1936, 0.0915, 0.049, 0.046, 0.0297, 0.0246, 0.0192, 0.0169], [0.195, 0.1426, 0.0674, 0.0674, 0.0361, 0.0318, 0.0181, 0.0181], [0.1022, 0.096, 0.0902, 0.0582, 0.0312, 0.0293, 0.0228, 0.0228], [0.1174, 0.0973, 0.0973, 0.0316, 0.0217, 0.0204, 0.0169, 0.014], [0.1432, 0.0766, 0.0597, 0.0385, 0.0265, 0.0151, 0.0133, 0.0133], [0.2305, 0.0748, 0.0661, 0.0621, 0.0583, 0.0583, 0.0483, 0.0157], [0.19, 0.0843, 0.0699, 0.0511, 0.0511, 0.0398, 0.0213, 0.0188], [0.1241, 0.0801, 0.0429, 0.0429, 0.0356, 0.0356, 0.026, 0.023], [0.1024, 0.0583, 0.0515, 0.0259, 0.0243, 0.0228, 0.0167, 0.0157], [0.0859, 0.046, 0.046, 0.046, 0.0217, 0.014, 0.0124, 0.0124], [0.0638, 0.0387, 0.0364, 0.0342, 0.0266, 0.0207, 0.0161, 0.0126], [0.0309, 0.0256, 0.0213, 0.0213, 0.0188, 0.0146, 0.0121, 0.0114], [0.0311, 0.0292, 0.0292, 0.0242, 0.0201, 0.0147, 0.0107, 0.0107], [0.165, 0.021, 0.0135, 0.0127, 0.0112, 0.0112, 0.0099, 0.0093], [0.2144, 0.0256, 0.0121, 0.0114, 0.01, 0.0088, 0.0083, 0.0065], [0.0653, 0.0113, 0.0094, 0.0088, 0.0083, 0.0083, 0.0061, 0.0057], [0.0231, 0.0159, 0.0091, 0.008, 0.008, 0.0075, 0.0059, 0.0055], [0.0399, 0.0274, 0.0227, 0.0138, 0.0138, 0.0129, 0.0101, 0.0101], [0.2787, 0.1316, 0.1091, 0.0157, 0.0157, 0.013, 0.013, 0.0095], [0.4643, 0.0807, 0.0712, 0.0192, 0.0124, 0.0096, 0.0096, 0.0062], [0.2408, 0.1875, 0.1655, 0.0609, 0.0198, 0.0174, 0.0174, 0.0174], [0.3669, 0.3238, 0.1733, 0.0266, 0.0207, 0.0183, 0.0036, 0.0028], [0.7159, 0.141, 0.0588, 0.0588, 0.0043, 0.0029, 0.002, 0.0014], [0.7995, 0.0656, 0.0511, 0.0089, 0.0083, 0.0069, 0.0051, 0.0042], [0.4268, 0.4268, 0.051, 0.0241, 0.0121, 0.0073, 0.0035, 0.0029], [0.7866, 0.0829, 0.0444, 0.0119, 0.0087, 0.0087, 0.0077, 0.0044], [0.7173, 0.2055, 0.0191, 0.0075, 0.0055, 0.0048, 0.0033, 0.0031], [0.7123, 0.0851, 0.0455, 0.0378, 0.0157, 0.0102, 0.0079, 0.0062], [0.5318, 0.4142, 0.0142, 0.0036, 0.0028, 0.0018, 0.0016, 0.0014]], "ranks": {"Kotlin": [122441, 92203, 40765, 1895, 3067, 12196, 3119, 5442, 5278, 11747, 6607, 1889, 826, 3217, 15623, 6782, 3382, 537, 1063, 2367, 4141, 98, 131, 1638, 86, 8, 2, 25, 21, 22, 16, 43, 35, 16, 20, 7, 3, 1, 1, 4, 3, 1, 1, 1, 1, 2, 5, 3, 5, 5, 4, 6, 2, 3, 1, 5, 8, 6, 8, 172, 237, 337, 335]}}, {"pos": 580, "top": [[" \u2013", ".", "\u2013", " ", ",", ";", "?", "  \n"], [" \u2013", "  \n\n", "\u2013", "  \n", "  \r\n", "   \n", " \u2013**", "\u2013and"], [" \u2013", "\u2013", "\u2013and", ".\u2013", " \u2013,", ",", ".", " **\u2013"], [" Blowjob", " cumshot", " cristi", " ;;^", " milfs", " Shemale", "adrid", " **:**"], [" Zer", " **", " memory", "\u96f6\u516b", " cristi", " Memory", "\u0627\u0644\u0627\u062a", " system"], ["undur", " Zer", " Retrie", "oggio", "agog", " client", " Depos", "elog"], [" **", " ***", " MEMORY", "otence", "r\u00e5", " **-", " memory", " **\u2013"], [" **", " ***", "otence", " **\u20ac", "-memory", " memory", " **-", " MEM"], [" **", " ***", " **\u20ac", "/memory", "alej", " Tokens", "otence", " (**"], [" **", "/memory", " febbra", "emory", "\u6d3b\u52a8\u7684\u5f00\u5c55", "alej", "Resta", "\u7ad9\u5730\u94c1\u7ad9"], [" **", " memory", " space", " retention", "/memory", " Memory", "-memory", " ***"], [" **", " **\u00ab", " **\u20ac", " )**", " ***", " **-", " \"**", " **\u2013"], [" **", " **\u00ab", " **\u20ac", " )**", " **-", "alej", " **\u300c", "otence"], [" resources", " retention", " memory", " **", " acquisition", " allocation", " space", " consumption"], [" retention", " memory", " resources", " acquisition", " Memory", " space", " allocation", " capacity"], [" memory", " resources", " space", " Memory", " retention", " capacity", " acquisition", " system"], [" resources", " memory", " Memory", " space", " retention", " allocation", " storage", "/memory"], [" space", " Memory", " resources", " memory", " Space", " allocation", " gaps", "-space"], [" space", " Memory", "-space", " Space", " memory", "/memory", "-memory", " MEMORY"], [" space", "/memory", " memory", " Memory", "-space", " Space", " resources", "-memory"], ["<|endoftext|>", " \n\n", " \r\n\r\n", " space", " --", " Space", "  \n\n", " Memory"], [" space", " memory", " Space", " Memory", "/memory", " resources", " storage", "-space"], [" space", " memory", " Space", " --", " resources", " Memory", " loss", " \r\n"], ["<|endoftext|>", " space", " ,", " \u2013", " --", " ...", " memory", " long"], [" \r\n\r\n", " \n\n", " \r\n", " memory", " space", " --", " Memory", " \r\n \r\n"], [" memory", " **", " space", " storage", " Memory", " \r\n\r\n", " ...", " \n\n"], [" memory", " storage", " space", " Memory", " capacity", "-memory", " resources", " **"], [" memory", " space", " **", " storage", " \n\n", " --", " capacity", " resources"], [" memory", " storage", " space", " Memory", " capacity", " resources", " loss", " **"], [" memory", " storage", " space", " **", " consumption", " **:", " Memory", " loss"], [" memory", " storage", " space", " **", " Memory", " consumption", " capacity", " loss"], [" memory", " **", " storage", " space", " .**", " complex", " loss", " Memory"], [" memory", " storage", " space", " **", " Memory", " )**", " .**", " consumption"], [" memory", " storage", "-memory", "/memory", " vulnerabilities", " MEMORY", " Memory", " complexity"], [" memory", " MEMORY", " storage", "/memory", "-memory", " Memory", "MEMORY", " )**"], [" MEMORY", " memory", " Memory", "-memory", "MEMORY", "/memory", "Memory", "memory"], [" memory", " Memory", " MEMORY", "-memory", "MEMORY", "/memory", "Memory", "(memory"], [" Memory", " memory", " MEMORY", "-memory", "/memory", "Memory", "MEMORY", "(memory"], [" memory", " Memory", "-memory", "/memory", " MEMORY", ".memory", "Memory", "memory"], [" memory", " Memory", "-memory", " MEMORY", "/memory", "memory", "Memory", " garbage"], [" memory", " Memory", "-memory", "memory", "/memory", " MEMORY", "Memory", "(memory"], [" memory", " Memory", "-memory", "memory", "/memory", "\u5185\u5b58", "Memory", " allocator"], [" memory", "-memory", " Memory", " allocator", "MEMORY", "allocator", "/memory", " MEMORY"], [" memory", " Memory", "-memory", " allocator", "MEMORY", " MEMORY", " fragmentation", "memory"], [" memory", " Memory", " fragmentation", "-memory", " allocator", "MEMORY", "allocator", " MEMORY"], [" memory", " Memory", " fragmentation", "-memory", " management", " allocation", " allocations", " allocator"], [" Memory", " memory", " fragmentation", "-memory", " allocation", " allocator", "allocator", " allocations"], [" Memory", " fragmentation", " memory", " Allocation", " Management", ".Memory", "Memory", " Controlled"], [" Memory", "/memory", " fragmentation", ".Memory", "allocator", "Allocator", " Allocation", "-memory"], [" Memory", "/memory", " fragmentation", ".Memory", " Allocation", "-memory", " Constraints", "allocator"], [" Memory", "/memory", ".Memory", " Allocation", " Complexity", " Constraints", " fragmentation", "allocator"], [" Memory", "/memory", ".Memory", " Allocation", "-memory", "*:", "Memory", "(memory"], [" Memory", "/memory", " Allocation", "Memory", "-memory", ".Memory", "Allocator", ":*"], [" Memory", "/memory", ".Memory", "(memory", "-memory", " MEMORY", "Memory", ".mem"], ["/memory", " Memory", "(memory", " Allocation", " allocator", " allocation", "-memory", "Memory"], [" Allocation", " allocator", " allocation", " allocations", "alloc", "Allocator", "allocator", " Heap"], [" Allocation", " allocation", " allocations", " allocator", "alloc", "Allocator", " Allocator", "allocator"], [" Management", " Allocation", " management", " allocation", " Memory", " allocator", " allocations", "Allocator"], [" Management", " management", " leaks", "management", " Leak", " leak", " Allocation", " allocator"], [" Management", " management", " Allocation", " allocator", "management", " allocation", " leak", " leaks"], [" Management", " management", " Safety", " Allocation", " safety", " allocator", " overhead", " Allocator"], [" Management", " management", " Safety", " Allocation", " Allocator", " overhead", " allocator", " Leak"], [" Management", ":**", " Safety", " Allocation", " Model", " Allocator", " Leak", " Manager"]], "p": [[0.878, 0.0636, 0.0151, 0.0133, 0.0076, 0.0019, 0.0007, 0.0006], [0.9599, 0.0137, 0.0083, 0.0039, 0.0014, 0.0005, 0.0004, 0.0003], [0.8506, 0.1478, 0.0004, 0.0004, 0.0001, 0.0001, 0.0001, 0.0001], [0.0082, 0.0041, 0.0036, 0.0028, 0.0025, 0.0025, 0.0022, 0.0019], [0.0038, 0.0035, 0.0021, 0.0021, 0.0019, 0.0018, 0.0016, 0.0016], [0.0028, 0.0026, 0.0025, 0.0022, 0.0017, 0.0014, 0.0012, 0.0012], [0.1831, 0.0248, 0.0086, 0.0071, 0.0059, 0.0049, 0.0049, 0.0046], [0.3538, 0.0165, 0.0047, 0.0045, 0.0045, 0.0042, 0.0042, 0.0035], [0.1834, 0.0141, 0.0091, 0.0038, 0.0034, 0.003, 0.0026, 0.0026], [0.0071, 0.004, 0.0018, 0.0018, 0.0017, 0.0016, 0.0014, 0.0012], [0.0634, 0.0125, 0.0081, 0.0071, 0.0067, 0.0067, 0.0063, 0.0055], [0.5665, 0.0125, 0.0086, 0.0059, 0.0059, 0.0032, 0.003, 0.0026], [0.281, 0.0217, 0.0045, 0.0033, 0.0029, 0.0024, 0.0023, 0.0017], [0.0032, 0.0032, 0.0032, 0.003, 0.0028, 0.0026, 0.0023, 0.0022], [0.0059, 0.0055, 0.0049, 0.0038, 0.0036, 0.0036, 0.0031, 0.0031], [0.0058, 0.0058, 0.0048, 0.0045, 0.004, 0.0023, 0.0019, 0.0019], [0.0145, 0.0137, 0.0113, 0.0106, 0.0057, 0.0037, 0.0037, 0.0035], [0.0189, 0.013, 0.0089, 0.0079, 0.0079, 0.0045, 0.0042, 0.004], [0.0342, 0.0172, 0.0162, 0.0118, 0.0118, 0.0081, 0.0063, 0.0059], [0.0098, 0.0067, 0.0052, 0.0043, 0.0041, 0.0022, 0.0022, 0.0022], [0.4834, 0.0397, 0.0065, 0.0045, 0.0017, 0.0016, 0.0012, 0.0011], [0.0311, 0.0079, 0.0051, 0.004, 0.0033, 0.0027, 0.0023, 0.0018], [0.0841, 0.0121, 0.01, 0.0078, 0.0054, 0.0054, 0.0037, 0.0035], [0.1419, 0.0232, 0.0218, 0.0192, 0.0132, 0.0103, 0.0066, 0.004], [0.1397, 0.1088, 0.0353, 0.0228, 0.0214, 0.0157, 0.0084, 0.0051], [0.1291, 0.0736, 0.0347, 0.0239, 0.0175, 0.0154, 0.0154, 0.0106], [0.1848, 0.0467, 0.0266, 0.0118, 0.0086, 0.0086, 0.0072, 0.0067], [0.0894, 0.0542, 0.0309, 0.0309, 0.0187, 0.0146, 0.01, 0.0073], [0.2185, 0.0755, 0.0458, 0.023, 0.008, 0.007, 0.007, 0.007], [0.2, 0.0887, 0.0419, 0.0326, 0.0106, 0.0088, 0.0083, 0.0083], [0.2356, 0.0814, 0.0361, 0.0182, 0.0117, 0.0104, 0.0067, 0.0059], [0.1942, 0.0523, 0.0491, 0.0433, 0.0141, 0.011, 0.0103, 0.0085], [0.2064, 0.0522, 0.0297, 0.014, 0.0124, 0.0109, 0.0097, 0.008], [0.0853, 0.0277, 0.019, 0.0131, 0.0123, 0.0102, 0.0084, 0.0058], [0.0596, 0.034, 0.0193, 0.0193, 0.0182, 0.0151, 0.0091, 0.0086], [0.0674, 0.0674, 0.0493, 0.0361, 0.0318, 0.0318, 0.0248, 0.0248], [0.1313, 0.0961, 0.0796, 0.04, 0.0243, 0.0201, 0.0189, 0.0138], [0.266, 0.2205, 0.0673, 0.0298, 0.0218, 0.0218, 0.017, 0.0141], [0.3036, 0.2365, 0.032, 0.0282, 0.0265, 0.0194, 0.0182, 0.0161], [0.4794, 0.1556, 0.037, 0.0288, 0.0288, 0.0254, 0.0186, 0.0154], [0.4929, 0.2055, 0.0519, 0.0357, 0.0315, 0.0278, 0.0278, 0.0191], [0.5106, 0.1291, 0.1006, 0.0254, 0.0254, 0.0186, 0.0186, 0.0154], [0.2785, 0.1491, 0.1024, 0.0548, 0.0276, 0.0243, 0.0243, 0.0229], [0.2185, 0.1032, 0.0911, 0.043, 0.0357, 0.0245, 0.0216, 0.0216], [0.1064, 0.0778, 0.0645, 0.0569, 0.0443, 0.0286, 0.0197, 0.0163], [0.0992, 0.0875, 0.0726, 0.0284, 0.0267, 0.0236, 0.0195, 0.0152], [0.1737, 0.0771, 0.0639, 0.0388, 0.0208, 0.0208, 0.0195, 0.0152], [0.2694, 0.0468, 0.0208, 0.0195, 0.0195, 0.0172, 0.0172, 0.0172], [0.1382, 0.0272, 0.0272, 0.0226, 0.0199, 0.0199, 0.0176, 0.0165], [0.1799, 0.0401, 0.0243, 0.0178, 0.0167, 0.0157, 0.0139, 0.0139], [0.1267, 0.0722, 0.0301, 0.022, 0.0151, 0.0142, 0.0118, 0.0118], [0.2689, 0.1121, 0.06, 0.0497, 0.0283, 0.025, 0.0235, 0.0161], [0.1755, 0.1367, 0.0472, 0.0325, 0.0305, 0.0269, 0.0253, 0.0253], [0.2303, 0.2033, 0.1397, 0.1233, 0.0748, 0.0454, 0.0312, 0.0189], [0.1917, 0.1917, 0.1026, 0.0905, 0.0549, 0.0549, 0.0485, 0.0294], [0.2534, 0.1741, 0.1741, 0.1197, 0.0641, 0.0343, 0.0184, 0.0162], [0.4167, 0.2231, 0.1194, 0.0639, 0.0183, 0.0162, 0.0098, 0.0086], [0.2843, 0.1954, 0.1343, 0.1046, 0.0719, 0.0385, 0.0233, 0.016], [0.6164, 0.2569, 0.0271, 0.0211, 0.0164, 0.0145, 0.0078, 0.006], [0.4655, 0.4108, 0.0337, 0.0232, 0.0109, 0.0097, 0.0059, 0.0052], [0.5338, 0.2521, 0.1191, 0.0266, 0.0161, 0.0059, 0.0046, 0.0041], [0.7389, 0.0687, 0.0607, 0.0535, 0.0112, 0.0093, 0.0064, 0.006], [0.6854, 0.2521, 0.0266, 0.0126, 0.0034, 0.003, 0.0023, 0.0018]], "ranks": {"Kotlin": [135826, 87960, 54146, 8600, 17507, 23837, 12356, 37679, 49423, 98758, 83938, 36330, 44654, 64526, 118843, 81542, 45985, 29398, 47460, 77834, 98901, 24278, 12242, 32453, 4015, 1815, 1394, 4719, 1745, 2495, 3001, 7227, 6884, 1583, 1705, 284, 61, 96, 163, 273, 632, 971, 998, 1823, 2202, 5316, 6431, 4506, 6017, 3390, 3134, 829, 41, 55, 42, 33, 46, 96, 202, 252, 387, 641, 898]}}, {"pos": 581, "top": [[".", ",", "\u00a0\u00a0", " ", " \u200b\u200b", " \u2013", "\u2026.", ";"], ["  \n\n", " \u200b\u200b", " \u2013", "  ", "  \n", "\u2013", "\u00a0\u00a0", "   \n\n"], ["\u2026.", "\u2013", ".", "\u2026..", ",", "\u2026", " \u2013", " \u200b\u200b"], [" Shemale", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "endiz", " \u0434\u0435\u043a\u043b", "orgeous", "\ud07c", " Blowjob", " \u041a\u0440\u0430\u0441\u0438"], ["\u00a0\u00a0", " \u200b\u200b", ".", "\u2026.", ",", "\u00a0\u00a0\u00a0\u00a0", " ).", " "], [" \u200b\u200b", "\u00a0\u00a0", " Hospitality", "\u2026.", " System", ".Reg", ":System", " )."], ["  \n\n", "\u00a0\u00a0", "\u2014\u2014", "_____", ".\u2014", " **\"", ".\u201d", " _____"], [" \u200b\u200b", " \u201e", ".", "-intensive", "ssystem", "\u00a0\u00a0", ".\u00bb", " skills"], ["  \n\n", ".", " \u200b\u200b", ".\u00bb", "\u00a0\u00a0", ".\u201d", " \u00bb.", " ()."], [",", ".", "\u5468\u906d", "\u73a9\u513f", ".\u00bb", ";", ".[", "\u9053\u8fdc"], [".", ".[", ",", "\u2014and", "ized", "\u00a0\u00a0", ".\u00bb", "\ufffd"], [" **\u00ab", " **\u201e", " strategies", " processes", " policies", " frameworks", " \u00bb**", "ssystem"], [" processes", " system", " **\u201e", " systems", " strategic", " stabilization", " strategies", " **\u00ab"], [" strategic", " system", " processes", "ssystem", " strategies", " systems", " resources", " stabilization"], [" strategic", " efforts", " largely", " strategically", " critical", " tools", " strategies", " services"], [" system", " strategic", " largely", " strategically", " efforts", " systems", " \u2014", " critical"], [" largely", " system", " strategic", " systems", "ssystem", " efforts", " strategically", " resources"], ["ssystem", " strategic", " largely", " system", " efforts", " systems", " priorit", " strategies"], [" largely", " oversight", " space", "ssystem", " strategic", " entirety", " strategies", " priorit"], [" largely", " efforts", "ssystem", " entirety", " strategic", " oversight", " increasingly", " complexities"], ["<|endoftext|>", " ,", " \u2014", " largely", " efforts", " \n\n", " \u2013", " ultimately"], [" space", " efforts", " systems", " processes", " management", " system", " ,", " resources"], [" ,", " space", " .", " \u2013", " system", " management", " systems", " resources"], [" ,", " \u2013", " .", " ", "<|endoftext|>", " \u2014", " over", " and"], [" ,", " __", " .", " \u3002", ".__", " \n\n", " increasingly", " "], [" __", " **", " ___", " ,", " ______", ".__", " \u3002", " systems"], [" __", " systems", " processes", " ,", " infrastructure", " technology", " technologies", " **"], [" ,", " __", " ___", " systems", " .", " _", " system", " technology"], [" ,", " __", " systems", " system", " technology", " **", " .", " technologies"], [" __", " **", " ___", " ,", " ______", " ...", ".__", " ****"], [" ,", " **", " systems", " system", " processes", " technology", " __", " technologies"], [" ,", " .", " system", " ...", " systems", " **", " complex", " technology"], [" ,", " system", " .", " systems", " technology", " complex", " largely", " \u2013"], [" autonom", " technology", " technologies", " systems", " system", " \u2013", " globally", " algorithms"], ["...**", " autonom", " technology", " system", "\u2026**", " algorithms", "\u2026*", " technologies"], [" \u2026", " \u2013", "\u2026*", " **\u2013", "\u2026**", " \u2013**", "\u2026\u2026", " .**"], [" algorithms", " autonom", " engines", " \u200b\u200b", " System", "malloc", " Russian", " engine"], [" autonom", " System", " internally", " engine", " Icelandic", " \u200b\u200b", " unsustainable", " Russian"], [" autonom", "malloc", " algorithms", " System", " Icelandic", " unsustainable", " automated", " internally"], [" garbage", "malloc", " autonom", " scav", " \u200b\u200b", " Icelandic", "_malloc", "allocator"], ["malloc", " scav", " garbage", " autonom", " algorithms", " \u200b\u200b", "_malloc", "Malloc"], [" automated", " autonom", " scav", " Automated", " Automatic", " algorithms", "malloc", " automatic"], [" automated", " Automated", " autonom", " Automatic", " automatic", "\u81ea\u52a8\u5316", " algorithms", "Automatic"], [" automated", " Automated", " autonom", " Automatic", " algorithms", " automatic", "\u81ea\u52a8\u5316", " optimized"], [" automated", " Automated", " autonom", " algorithms", " Automatic", " automatic", " optimized", "\u81ea\u52a8\u5316"], [" automated", " autonom", " automatic", " Automated", " Automatic", " automat", " algorithms", " automation"], [" Automatic", " automated", " automatic", " Automated", " autonom", " automat", " optimized", " algorithms"], [" Automatic", " Automated", " automated", " automatic", " autonom", "Automatic", " lacks", "automatic"], [" Automatic", " Automated", " automated", " automatic", " lacks", " autonom", "automatic", " Semi"], [" Automated", " Automatic", " automated", " lacks", " autom\u00e1t", "allocator", "-automatic", "automatic"], [" Automated", " Automatic", " autom\u00e1t", "!!:", "allocator", ":System", "Allocator", "automatic"], ["!!:", ":**", " Automatic", "Allocator", " LLVM", "+:", " Automated", " autom\u00e1t"], [" LLVM", " JetBrains", "llvm", " Kotlin", ":**", "!!:", " Automatic", "Allocator"], [" LLVM", "llvm", " JetBrains", " Kotlin", " llvm", "Allocator", "!!:", " JIT"], [" LLVM", "allocator", "Allocator", " Kotlin", "llvm", "Heap", " allocator", " GC"], ["\u5783\u573e", " garbage", " GC", " LLVM", "GC", " Kotlin", "Heap", " Heap"], [" GC", " garbage", "GC", "\u5783\u573e", "gc", "_GC", " LLVM", " Gar"], [" GC", "GC", " LLVM", "gc", "_GC", " Memory", " Kotlin", "allocator"], [" GC", "GC", " LLVM", "_GC", " Kotlin", " Arena", "allocator", "gc"], [" LLVM", " Increment", " ARC", " incremental", "ARC", " Reference", " Arena", " Native"], [" LLVM", " Reference", " incremental", " reference", " ARC", " Increment", ":mm", ":**"], [" Reference", " LLVM", ":**", " reference", " ARC", ":mm", " Conservative", " Linear"], [":**", "**:", " :**", ":mm", "\uff1a**", ":", ".:**", "**"]], "p": [[0.9333, 0.0194, 0.0125, 0.0104, 0.0038, 0.0032, 0.0026, 0.002], [0.1242, 0.0908, 0.0216, 0.0029, 0.0023, 0.0023, 0.0018, 0.0017], [0.2652, 0.234, 0.1609, 0.076, 0.0671, 0.0671, 0.0298, 0.028], [0.0038, 0.0026, 0.0013, 0.0012, 0.0012, 0.0012, 0.0011, 0.001], [0.0765, 0.0436, 0.0067, 0.0041, 0.0038, 0.0028, 0.0028, 0.0028], [0.0349, 0.0078, 0.0022, 0.0022, 0.0021, 0.0018, 0.0017, 0.0017], [0.0132, 0.0103, 0.0085, 0.0075, 0.0071, 0.0066, 0.0055, 0.0055], [0.0046, 0.0038, 0.0034, 0.0032, 0.003, 0.003, 0.0026, 0.0026], [0.0294, 0.0244, 0.0168, 0.0148, 0.0066, 0.0062, 0.0037, 0.0031], [0.0186, 0.0025, 0.0024, 0.0017, 0.0017, 0.0015, 0.0015, 0.0014], [0.0306, 0.0186, 0.0106, 0.0099, 0.0064, 0.006, 0.0057, 0.0057], [0.0074, 0.0057, 0.0035, 0.0027, 0.0025, 0.0024, 0.0022, 0.0021], [0.005, 0.0039, 0.0037, 0.0037, 0.0032, 0.003, 0.0027, 0.0024], [0.0062, 0.0043, 0.0043, 0.004, 0.0033, 0.0033, 0.0031, 0.0028], [0.0159, 0.008, 0.0071, 0.0066, 0.0055, 0.0055, 0.0052, 0.0052], [0.014, 0.014, 0.0124, 0.0085, 0.0075, 0.0066, 0.0058, 0.0058], [0.0139, 0.0123, 0.0095, 0.0066, 0.0066, 0.0058, 0.0058, 0.0058], [0.0064, 0.0061, 0.0057, 0.0057, 0.0047, 0.0039, 0.0034, 0.0034], [0.0049, 0.0046, 0.0043, 0.0043, 0.004, 0.0038, 0.0034, 0.0034], [0.0087, 0.0056, 0.005, 0.0047, 0.0039, 0.0036, 0.0032, 0.0032], [0.1879, 0.0573, 0.0538, 0.0224, 0.0113, 0.01, 0.0083, 0.005], [0.0085, 0.0055, 0.0052, 0.0046, 0.0046, 0.0046, 0.0043, 0.0038], [0.1289, 0.0224, 0.0154, 0.0128, 0.0099, 0.0088, 0.0082, 0.0082], [0.3526, 0.1075, 0.0508, 0.024, 0.0113, 0.0088, 0.0073, 0.0069], [0.1727, 0.0816, 0.0437, 0.0171, 0.0092, 0.0086, 0.0081, 0.0076], [0.429, 0.0292, 0.0214, 0.0214, 0.0188, 0.0177, 0.0122, 0.0101], [0.1198, 0.0236, 0.0184, 0.0162, 0.0126, 0.0111, 0.0111, 0.0092], [0.278, 0.2305, 0.0157, 0.0108, 0.0084, 0.0074, 0.0061, 0.0051], [0.1222, 0.1148, 0.0256, 0.0155, 0.0155, 0.0146, 0.0146, 0.0129], [0.4669, 0.1181, 0.0318, 0.028, 0.0141, 0.0124, 0.0097, 0.0086], [0.0474, 0.0369, 0.0347, 0.027, 0.0254, 0.0238, 0.0145, 0.012], [0.2282, 0.0422, 0.029, 0.0226, 0.0212, 0.0121, 0.0114, 0.01], [0.1742, 0.0208, 0.0172, 0.0152, 0.0119, 0.0111, 0.0105, 0.0098], [0.0171, 0.0142, 0.0125, 0.0117, 0.011, 0.011, 0.0071, 0.0067], [0.0256, 0.0137, 0.0107, 0.0089, 0.0073, 0.0065, 0.0065, 0.0065], [0.0209, 0.0153, 0.0135, 0.0135, 0.0099, 0.0082, 0.0077, 0.0072], [0.0113, 0.01, 0.0073, 0.0065, 0.0065, 0.0061, 0.0057, 0.0057], [0.0183, 0.0104, 0.0067, 0.0063, 0.0063, 0.0063, 0.0059, 0.0059], [0.0244, 0.0102, 0.0096, 0.0084, 0.0075, 0.0075, 0.0075, 0.0062], [0.0383, 0.0383, 0.036, 0.0218, 0.0117, 0.0097, 0.0091, 0.008], [0.0434, 0.0383, 0.0317, 0.0317, 0.0205, 0.0193, 0.015, 0.0103], [0.0933, 0.0933, 0.0441, 0.0322, 0.0303, 0.0196, 0.0184, 0.0173], [0.215, 0.0791, 0.0791, 0.0791, 0.0579, 0.0227, 0.0213, 0.02], [0.1289, 0.0609, 0.0505, 0.0445, 0.0326, 0.0306, 0.0198, 0.0136], [0.1821, 0.0713, 0.0713, 0.0432, 0.0359, 0.0337, 0.0204, 0.014], [0.247, 0.103, 0.0665, 0.0518, 0.0429, 0.0158, 0.0148, 0.0131], [0.1488, 0.1233, 0.096, 0.0848, 0.0293, 0.0178, 0.0157, 0.0108], [0.2213, 0.1429, 0.0765, 0.0464, 0.0151, 0.0103, 0.0081, 0.0071], [0.1036, 0.0859, 0.0489, 0.018, 0.0149, 0.0116, 0.0085, 0.0075], [0.0381, 0.0279, 0.0085, 0.0066, 0.0062, 0.0055, 0.0055, 0.0052], [0.0235, 0.0118, 0.0098, 0.0087, 0.0076, 0.0072, 0.0052, 0.0046], [0.0268, 0.0268, 0.0222, 0.0153, 0.0135, 0.0087, 0.0087, 0.0087], [0.3798, 0.0847, 0.0376, 0.0312, 0.0167, 0.0115, 0.0108, 0.0101], [0.5537, 0.0749, 0.0548, 0.0215, 0.0139, 0.007, 0.0058, 0.0058], [0.4108, 0.1039, 0.0714, 0.0714, 0.0359, 0.0317, 0.0192, 0.0192], [0.6331, 0.2639, 0.0405, 0.0116, 0.0102, 0.009, 0.0048, 0.0029], [0.4952, 0.1608, 0.1608, 0.1608, 0.0062, 0.0038, 0.0029, 0.0023], [0.7381, 0.1866, 0.0174, 0.0135, 0.0077, 0.0044, 0.003, 0.0022], [0.583, 0.1222, 0.1148, 0.0273, 0.02, 0.0089, 0.0065, 0.0061], [0.2111, 0.0827, 0.0534, 0.0416, 0.0304, 0.0184, 0.0135, 0.0127], [0.2251, 0.0778, 0.0645, 0.0606, 0.0324, 0.0237, 0.0153, 0.0144], [0.0734, 0.0689, 0.0418, 0.0369, 0.0306, 0.0185, 0.0185, 0.0185], [0.9881, 0.004, 0.0038, 0.0016, 0.0003, 0.0003, 0.0003, 0.0001]], "ranks": {"Kotlin": [168093, 110386, 133023, 22610, 77626, 114469, 116953, 172411, 191267, 210197, 200033, 120399, 93211, 135457, 191935, 130149, 99789, 55549, 61046, 101250, 139962, 48876, 28059, 58667, 13531, 3379, 1659, 6746, 5646, 5328, 5261, 13849, 18847, 1958, 1035, 256, 35, 24, 25, 45, 88, 135, 131, 179, 171, 373, 273, 267, 215, 138, 131, 60, 4, 4, 3, 6, 15, 7, 5, 16, 106, 180, 257]}}, {"pos": 582, "top": [[" \u2013", ".", ",", "\u2026..", "\u2013", " (\u201e", "  \n", ",."], ["  \n", " \u2013**", ",**", "\u52c7\u5f80\u76f4\u524d", "   \n", ",\\\"", ":**", " **\u2013"], ["\u2026\u2026", "\u2026..", "\u2013", ".", ",", ".\u2013", "\u2013and", "\u2026."], ["\u52a0\u62ff\u5927", " **\u201e", " ;;^", "-------------</", " milfs", " Shemale", " **:**", " ``("], ["\u52a0\u62ff\u5927", ":@", "\u65b0\u52a0\u5761", "ed", "\u52c7\u5f80\u76f4\u524d", " //@", "\u4e8b\u534a\u529f\u500d", ":**"], ["\u52a0\u62ff\u5927", "\u65b0\u52a0\u5761", "\u4e8b\u534a\u529f\u500d", "ed", "\u52c7\u5f80\u76f4\u524d", ".:**", " **\u201e", "\u0d4d\u0d1f"], [" **\u201e", "raries", ":**", " ##", " ..........", ".:**", " .....", " //@"], [" **\u201e", "\u52a0\u62ff\u5927", "raries", "\u52c7\u5f80\u76f4\u524d", ".:**", "\u4e8b\u534a\u529f\u500d", " (\u201e", "\u65b0\u52a0\u5761"], [" **\u201e", " (\u201e", "\u52c7\u5f80\u76f4\u524d", ",..", "raries", ".:**", " *\u201e", ":**"], ["\u52c7\u5f80\u76f4\u524d", "\u4e8b\u534a\u529f\u500d", "\u52a0\u62ff\u5927", "\u65b0\u52a0\u5761", "\u52e4\u52e4\u6073\u6073", "\u5162\u5162\u4e1a\u4e1a", "\u8033\u719f\u80fd\u8be6", "\u4e0d\u53ef\u601d\u8bae"], ["\u52c7\u5f80\u76f4\u524d", "\u4e0d\u53ef\u601d\u8bae", "\u4e8b\u534a\u529f\u500d", "raries", ":...", ",..", "\u5162\u5162\u4e1a\u4e1a", "..."], [" **\u201e", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\u52c7\u5f80\u76f4\u524d", "raries", "\u52a0\u62ff\u5927", "\u8033\u719f\u80fd\u8be6", "\u52e4\u52e4\u6073\u6073", "\u4e8b\u534a\u529f\u500d"], ["\u52c7\u5f80\u76f4\u524d", "\u52a0\u62ff\u5927", " **\u201e", "\u4e8b\u534a\u529f\u500d", "\u8033\u719f\u80fd\u8be6", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\u52e4\u52e4\u6073\u6073", "\u5162\u5162\u4e1a\u4e1a"], ["\u52c7\u5f80\u76f4\u524d", "\u52a0\u62ff\u5927", "\u4e8b\u534a\u529f\u500d", "\u52e4\u52e4\u6073\u6073", "\u8033\u719f\u80fd\u8be6", "\u4e0d\u53ef\u601d\u8bae", "\u65b0\u52a0\u5761", "\u5162\u5162\u4e1a\u4e1a"], ["\u52c7\u5f80\u76f4\u524d", " savvy", "\u4e0d\u53ef\u601d\u8bae", " revamped", " arguably", " transitioning", " folks", " ``"], [" folks", " savvy", " arguably", " transitioning", " touted", " showcasing", " incredibly", " kids"], [" arguably", " folks", " savvy", " myriad", " mostly", " incredibly", " touted", " transitioning"], ["\u52c7\u5f80\u76f4\u524d", " savvy", " transitioning", " arguably", "\u4e0d\u53ef\u601d\u8bae", " mostly", " revamped", " nuanced"], [" arguably", " transitioning", " savvy", "\u52c7\u5f80\u76f4\u524d", " touted", "\u4e0d\u53ef\u601d\u8bae", " fueled", " nuanced"], [" arguably", " transitioning", " swiftly", " myriad", "\u4e0d\u53ef\u601d\u8bae", " largely", " ultimately", " burgeoning"], ["<|endoftext|>", " arguably", " swiftly", " myriad", " ultimately", " largely", " heavily", " vastly"], [" ;;^", "\u4e0d\u53ef\u601d\u8bae", "\u62e5\u6709\u7740", "\u52c7\u5f80\u76f4\u524d", " arguably", "\u52a0\u62ff\u5927", "\u52e4\u52e4\u6073\u6073", " transitioning"], [" ``", " arguably", " swiftly", "\u4e0d\u53ef\u601d\u8bae", "\u62e5\u6709\u7740", " notably", " uniquely", " heavily"], [" arguably", " largely", " swiftly", " notably", " ``", " ultimately", " heavily", " uniquely"], [" \n\n", " arguably", " swiftly", "   \n\n", " vastly", " heavily", " notably", "  \n\n"], [" arguably", " heavily", " transitioning", "\u62e5\u6709\u7740", " vastly", " impactful", " sprawling", "\u52a0\u62ff\u5927"], [" heavily", " arguably", " sprawling", " transitioning", " vastly", " notably", " \n\n", "\u62e5\u6709\u7740"], [" \n\n", "\n\n", " heavily", " arguably", "  \n\n", " notably", " ultimately", " largely"], [" heavily", " \n\n", "\n\n", " arguably", " ultimately", " aggressively", " largely", " increasingly"], [" heavily", " arguably", " \n\n", " increasingly", " aggressively", " often", " even", " largely"], [" heavily", " often", " even", " arguably", " much", " largely", " increasingly", " modern"], [" even", " heavily", " often", " much", " arguably", " largely", " many", " mostly"], [" even", " heavily", " often", " much", " largely", " arguably", " mostly", " many"], [" heavily", " even", " notoriously", " often", " arguably", " largely", " aggressively", " technically"], [" notoriously", " heavily", " aggressively", " overly", " incredibly", " inherently", " deeply", " often"], [" notoriously", " heavily", " lacks", " aggressively", " lack", " often", " inherently", " unpredictable"], [" notoriously", " lacks", " lack", " inherently", " heavily", " aggressively", " poorly", " lacking"], [" notoriously", " lacks", " lack", " inherently", " slower", " poorly", " aggressively", " lacking"], [" notoriously", " lacks", " lack", " slower", " lacking", " inherently", " lacked", " poorly"], [" notoriously", " lacks", " inherently", " slower", " lack", " unpredictable", " lacking", "\u7f3a\u4e4f"], [" notoriously", " lacks", " lack", " slower", " inherently", " lacking", " unpredictable", " lacked"], [" notoriously", " lacks", " inherently", " lack", " slower", " lacking", " poorly", " inefficient"], [" inherently", " notoriously", " lacks", " lack", " slower", " inefficient", " lacking", " poorly"], [" inherently", " notoriously", " lacks", " slower", " lack", " unpredictable", " inefficient", " lacking"], [" notoriously", " lacks", " inherently", " lack", " unpredictable", " inefficient", " slower", " poorly"], [" lacks", " notoriously", " lack", " inherently", " unpredictable", " poorly", " lacked", " lacking"], [" lacks", " notoriously", " inherently", " lack", " unpredictable", " lacked", "\u7f3a\u4e4f", " slower"], [" lacks", " lack", " lacked", " inherently", " lacking", "\u7f3a\u4e4f", " notoriously", " unpredictable"], [" lacks", " lack", " lacked", " lacking", "\u7f3a\u4e4f", " slower", " Lack", " inherently"], [" lacks", "\u867d\u6709", "\u867d\u7136\u6709", " lacked", " lack", "\u867d\u7136\u73b0\u5728", "\u867d\u662f", " Lack"], [" lacks", "\u867d\u7136\u6709", "\u867d\u6709", "\u867d\u7136\u73b0\u5728", " lacked", "\u867d\u662f", "\u5982\u679c\u4f7f\u7528", "\u96d6\u7136"], [" lacks", " relies", "\u867d\u7136\u6709", "\u867d\u6709", " lacked", "\u867d\u7136\u73b0\u5728", "\u7f3a\u4e4f", " Lack"], [" lacks", " relies", "\u91c7\u7528\u7684\u662f", " lacked", "\u5982\u679c\u4f7f\u7528", " reliance", "_MALLOC", " Uses"], [" lacks", " relies", " Uses", " lacked", "\u7f3a\u4e4f", " reliance", " Lightweight", " reliant"], [" lacks", " garbage", " GC", " relies", " LLVM", "allocator", " Heap", "malloc"], [" garbage", " Kotlin", " GC", " lacks", "\u5783\u573e", " LLVM", " Gar", " Heap"], [" GC", " garbage", " Kotlin", "\u5783\u573e", "GC", " Gar", "_GC", " LLVM"], [" GC", " Kotlin", "GC", " garbage", "_GC", " LLVM", "allocator", " Uses"], [" GC", " Kotlin", " garbage", "GC", "_GC", " Uses", "allocator", " LLVM"], [" GC", " Uses", " Kotlin", " relies", " LLVM", " lacks", "allocator", " garbage"], [" LLVM", " Uses", " Reference", " GC", " ARC", " Kotlin", " Allocation", " While"], [" Uses", " LLVM", " Reference", " Kotlin", " Conservative", " ARC", " Allocation", " While"], [" Reference", " Uses", " Conservative", " Linear", " On", " While", " If", " Kotlin"]], "p": [[0.4723, 0.3678, 0.0321, 0.0221, 0.0172, 0.0152, 0.0111, 0.0046], [0.105, 0.0768, 0.0466, 0.0411, 0.0283, 0.0265, 0.0234, 0.0234], [0.2805, 0.2475, 0.1032, 0.0588, 0.0519, 0.0357, 0.0296, 0.0216], [0.0546, 0.0311, 0.0214, 0.013, 0.0122, 0.0122, 0.0122, 0.0114], [0.0796, 0.0748, 0.066, 0.0583, 0.0332, 0.0178, 0.0157, 0.013], [0.0641, 0.0641, 0.0566, 0.0285, 0.0267, 0.0162, 0.0143, 0.0143], [0.1309, 0.0618, 0.0425, 0.0425, 0.0399, 0.0292, 0.0258, 0.0214], [0.6254, 0.0275, 0.0214, 0.0189, 0.0177, 0.0167, 0.013, 0.0084], [0.482, 0.0613, 0.0349, 0.0289, 0.0272, 0.0187, 0.0146, 0.0121], [0.2821, 0.0713, 0.0629, 0.049, 0.049, 0.049, 0.0433, 0.0359], [0.1565, 0.0541, 0.0396, 0.0372, 0.0308, 0.0272, 0.0212, 0.0165], [0.1714, 0.0407, 0.0382, 0.0337, 0.0205, 0.015, 0.0141, 0.0124], [0.161, 0.076, 0.076, 0.0298, 0.0263, 0.0263, 0.0218, 0.017], [0.0965, 0.0663, 0.0276, 0.026, 0.0215, 0.0179, 0.0168, 0.0158], [0.0256, 0.024, 0.0165, 0.0146, 0.0129, 0.0121, 0.01, 0.0065], [0.0863, 0.036, 0.0181, 0.0181, 0.016, 0.016, 0.0103, 0.0091], [0.0374, 0.033, 0.0257, 0.0213, 0.0129, 0.0121, 0.0101, 0.0089], [0.0222, 0.0173, 0.0143, 0.0143, 0.0126, 0.0105, 0.0072, 0.0064], [0.0172, 0.0152, 0.0152, 0.0126, 0.0092, 0.0086, 0.0081, 0.0052], [0.0254, 0.0136, 0.0113, 0.0106, 0.0093, 0.0093, 0.0064, 0.006], [0.0307, 0.0164, 0.0164, 0.0094, 0.0094, 0.0083, 0.0083, 0.0064], [0.0074, 0.0051, 0.0033, 0.0033, 0.0031, 0.0027, 0.0024, 0.0022], [0.0209, 0.0093, 0.005, 0.0047, 0.0041, 0.0027, 0.0025, 0.0025], [0.0179, 0.0108, 0.0108, 0.0102, 0.0102, 0.0096, 0.0084, 0.0058], [0.0154, 0.0144, 0.0082, 0.006, 0.0053, 0.0053, 0.0053, 0.0044], [0.0081, 0.0053, 0.0041, 0.0041, 0.0038, 0.0036, 0.0036, 0.0032], [0.0119, 0.0119, 0.0053, 0.005, 0.0047, 0.0044, 0.0039, 0.0036], [0.0798, 0.0798, 0.0294, 0.0229, 0.0122, 0.0108, 0.0084, 0.0074], [0.0771, 0.0564, 0.0439, 0.0364, 0.0126, 0.0118, 0.0098, 0.0092], [0.1065, 0.0392, 0.0197, 0.0163, 0.0153, 0.0153, 0.0127, 0.0112], [0.0741, 0.0478, 0.035, 0.024, 0.0212, 0.0199, 0.0165, 0.0155], [0.0668, 0.0627, 0.0357, 0.0315, 0.0169, 0.0159, 0.0159, 0.0131], [0.0764, 0.0525, 0.0361, 0.0264, 0.0182, 0.0151, 0.0125, 0.011], [0.078, 0.0306, 0.0197, 0.0174, 0.0174, 0.0174, 0.0144, 0.0112], [0.0828, 0.0687, 0.0197, 0.0153, 0.0112, 0.0112, 0.0105, 0.0099], [0.2334, 0.0358, 0.0262, 0.0192, 0.018, 0.0159, 0.0149, 0.0124], [0.2585, 0.0396, 0.024, 0.0212, 0.0187, 0.0176, 0.0137, 0.0107], [0.1974, 0.0682, 0.0414, 0.0303, 0.0267, 0.0195, 0.0162, 0.0162], [0.1811, 0.1098, 0.0626, 0.0357, 0.0335, 0.0261, 0.023, 0.0191], [0.1761, 0.0782, 0.0474, 0.0445, 0.0347, 0.0254, 0.0198, 0.0154], [0.122, 0.1146, 0.0893, 0.0478, 0.0396, 0.035, 0.024, 0.0226], [0.109, 0.0798, 0.0704, 0.0661, 0.0259, 0.0259, 0.0243, 0.0243], [0.1264, 0.0868, 0.0816, 0.0561, 0.0561, 0.0282, 0.0194, 0.0194], [0.1173, 0.1035, 0.0757, 0.052, 0.052, 0.0336, 0.0297, 0.0246], [0.1154, 0.1154, 0.0618, 0.0481, 0.0452, 0.0311, 0.0257, 0.0213], [0.1635, 0.1056, 0.0875, 0.0388, 0.0284, 0.0251, 0.0195, 0.0195], [0.2408, 0.0734, 0.0609, 0.0537, 0.0326, 0.0174, 0.0106, 0.0106], [0.6934, 0.0731, 0.0286, 0.0163, 0.0144, 0.0144, 0.0099, 0.005], [0.6285, 0.0428, 0.0276, 0.0074, 0.0058, 0.0058, 0.0042, 0.0037], [0.4114, 0.0557, 0.0523, 0.0181, 0.011, 0.0103, 0.008, 0.0062], [0.2047, 0.1497, 0.0707, 0.023, 0.0139, 0.0123, 0.0108, 0.0096], [0.3151, 0.0376, 0.0332, 0.0243, 0.0167, 0.0167, 0.0147, 0.0095], [0.2698, 0.0993, 0.0195, 0.0098, 0.0098, 0.0098, 0.0087, 0.0087], [0.4255, 0.1145, 0.0146, 0.0113, 0.0088, 0.0073, 0.0073, 0.0069], [0.2719, 0.1755, 0.0829, 0.0503, 0.0269, 0.021, 0.0144, 0.0077], [0.6044, 0.1962, 0.0562, 0.0341, 0.0301, 0.0049, 0.0043, 0.0043], [0.6168, 0.2914, 0.0307, 0.0186, 0.0164, 0.0042, 0.0034, 0.002], [0.8288, 0.068, 0.025, 0.0152, 0.0072, 0.0059, 0.0046, 0.0034], [0.8026, 0.0581, 0.0189, 0.0167, 0.0147, 0.0122, 0.0089, 0.0079], [0.2333, 0.0806, 0.0806, 0.0712, 0.059, 0.0521, 0.0358, 0.0316], [0.1894, 0.1386, 0.0615, 0.0543, 0.0256, 0.0226, 0.0188, 0.0146], [0.3624, 0.0522, 0.0522, 0.0279, 0.0279, 0.0192, 0.018, 0.0169], [0.5148, 0.1302, 0.0615, 0.0423, 0.0397, 0.0241, 0.0129, 0.01]], "ranks": {"Kotlin": [171942, 101109, 72698, 11327, 14703, 21613, 21523, 36843, 31284, 48414, 52041, 28167, 22013, 35927, 110765, 39542, 49690, 31544, 51729, 132816, 167753, 95108, 121672, 152505, 136721, 50884, 42108, 92090, 59811, 54925, 63278, 105617, 132299, 114868, 111304, 55888, 54026, 46910, 40529, 26357, 32863, 20547, 14070, 15753, 27899, 51600, 50974, 48758, 23389, 7059, 4600, 618, 68, 69, 25, 2, 3, 2, 2, 2, 6, 4, 8]}}, {"pos": 583, "top": [[" \u2013", "\u2013", "<|endoftext|>", ".", ",", "\u00a0", " ", "\u2013and"], [" \u2013", "\u2013", "\u2013and", "\u2013\u2013", ".\u2013", ",", " \u2013,", "**\u2013"], ["\u2013", " \u2013", "\u2013and", ".\u2013", ",", "\u2013\u2013", ".", " \u2013,"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "STANCE", "ailles", "\u0e2a\u0e32\u0e18\u0e32\u0e23", " YYS", " milfs", "erias", " +#+#+#+#+#+"], ["\u2013\u2013", "\u2013", "\u2013and", ".\u2013", "[@", "**\u2013", " \u2013", " '@"], ["\u2013\u2013", "\u2013and", "**\u2013", "\u2013", " **\u2013", ".\u2013", "\u82b7", ":href"], ["**\u2013", " ***", "\u2019**", " \u00b4", "_________", "\u2013\u2013", " \ufffd", "\ufb01"], [" \u00b4", " ***", "**\u2013", " \\'", " )**", " **\u2013", " \\@", "\\-"], [" **#", " ***", " **\u201e", "...**", " **\u2013", "**\u2013", " **\u00ab", " \\@"], ["\u2013\u2013", "\\-", "\u2013", "\u2013and", "**\u2013", " **\u2013", "(\\'", " \\@"], ["\u2013", "\\-", "\u00a0", "[@", "\u2013\u2013", "&#", " \u2013", "\u2013and"], [" **\u00ab", " ***", " **\u201e", " **\u2013", " **\u300c", " **#", " **", "...**"], [" **\u00ab", " **\u201e", " **\u2013", " **\u300c", "**\u2013", " \u00bb**", "-**", " )**"], ["\u2013\u2013", "**\u2013", "(\\'", "\\-", " **\u2013", "\u2013and", "\u2013", " **\u201e"], ["\\-", "\u2013\u2013", "(\\'", "\u2013", " \\'", "\u2013and", "\u671d\u8457", "\\'"], ["(\\'", "\\-", "\u2013", "\u2013\u2013", "\u2013and", " \\'", " \u00ad", " \u00b4"], ["\u2013", "\u2013\u2013", "(\\'", "\u2013and", " \u2013", "\u00a0", "\\-", " \u00b4"], ["(\\'", "\u2013", "\u2013\u2013", "\u2013and", "**\u2013", "\\-", " \u00b4", "\u4f53\u7cfb\u5efa\u8bbe"], ["(\\'", " \\'", "\u4f53\u7cfb\u5efa\u8bbe", " \u00b4", "**\u2013", "=\\'", "\u2013\u2013", "/bind"], ["(\\'", "\u2013\u2013", " \\'", " &#", "\u2013and", "\u4f53\u7cfb\u5efa\u8bbe", "\u2013", " \u00b4"], ["<|endoftext|>", "\\-", " &#", "(\\'", " \\'", "&#", " \ufffd", "  \n  \n"], [" ``", "\u4f53\u7cfb\u5efa\u8bbe", "(\\'", " \u00bb**", "RIES", "ideshow", " \u02c7", "/bind"], [" ``", "``", " ''", "\u4f53\u7cfb\u5efa\u8bbe", " ``(", " \\'", "(\\'", "RIES"], [" ``", " ''", " \u00b4", "\u4f53\u7cfb\u5efa\u8bbe", " \\'", " &#", "\u52a0\u5165\u4e66\u7b7e", "(\\'"], [" ``", "\u4f53\u7cfb\u5efa\u8bbe", " ''", "``", "\u52a0\u5165\u4e66\u7b7e", "(\\'", " \\'", "\u4ec0\u9ebd"], [" ``", "/bind", "\u4f53\u7cfb\u5efa\u8bbe", "\u52a0\u5165\u4e66\u7b7e", "RIES", "ImageContext", " ``(", "\u5176\u5b83\u5a92\u4f53"], [" ``", " ``(", "\u4f53\u7cfb\u5efa\u8bbe", "/bind", "``", "ImageContext", "RIES", " ''"], [" ``", " ''", " `", " '`", " T\u00e9cn", "\u4ec0\u9ebd", "\u86c9", " \u00b4"], [" ``", "RIES", "\u4f53\u7cfb\u5efa\u8bbe", " ``(", "/bind", "``", " **\u00ab", " ''"], [" ``", " **\u00ab", " **\u300c", " \u00bb**", " **\u201e", " **", " )**", " systems"], [" ``", " **\u00ab", " \u00bb**", " systems", " **", " **\u201e", " )**", " networks"], [" systems", " ``", " **", " chains", " memory", " system", " networks", "-free"], [" systems", " ``", " networks", " memory", "-free", " chains", " )**", " system"], ["\u4f53\u7cfb\u5efa\u8bbe", " systems", " networks", "-free", "\u4f53\u7cfb\u548c", "/bind", " Systems", "less"], [" **\u2013", " )**", " **\u201e", " **+", "**\u2013", " **[", " **", " **\u2018"], ["**\u2013", " **\u2013", " )**", "\u2026**", " **[", " \u00bb**", "])**", " **"], [" )**", "\u4f53\u7cfb\u5efa\u8bbe", " memory", "/memory", "**\u2013", "\u4f53\u7cfb\u548c", " **", "less"], ["less", " )**", "\u4f53\u7cfb\u5efa\u8bbe", " memory", "marshaller", "/memory", " systems", "RIES"], [" memory", "/memory", " Memory", " garbage", "\u4f53\u7cfb\u5efa\u8bbe", " dependencies", "memory", "_lifetime"], [" garbage", " memory", "/memory", "memory", " Memory", "\u5783\u573e", "Memory", "_HEAP"], [" memory", " garbage", " Memory", "memory", "/memory", "\u5783\u573e", "-memory", " dependencies"], [" garbage", " dependencies", " memory", "-free", "_lifetime", " algorithms", " dependency", "-memory"], ["-free", " garbage", " dependencies", "-pointer", " algorithms", " allocator", " trackers", "-memory"], [" dependencies", " Dependency", " automatic", " dependency", " algorithms", " Reactive", "-free", " automated"], [" dependencies", " dependency", " Dependency", "-free", " algorithms", " Dependencies", " Reactive", " automatic"], [" dependency", " dependencies", " Dependency", "-free", " Reactive", " algorithms", " automatic", " automated"], [" dependencies", " dependency", "\\-", " Dependency", "-free", " algorithms", "\u2011", " **+"], ["\\-", " dependencies", "\u2011", " dependency", " Dependency", "-free", "\u2010", " algorithms"], ["-delay", " Dependency", "-free", " T\u00e9cn", "\\-", " dependencies", "\u2011", "-dependent"], ["-free", "-delay", " T\u00e9cn", "-dependent", "\\-", "\u52e4\u52e4\u6073\u6073", " Dependency", "-heavy"], ["-tracking", "|RF", "-free", "-pointer", "-pagination", "-delay", "-dependent", "-heavy"], ["/memory", "-memory", "-tracking", "-delay", " timeouts", "-heavy", "-dependent", "-based"], ["-based", "-tracking", "-memory", "-Based", "/memory", "-heavy", "-dependent", "-binding"], ["-based", "-tracking", "-Based", "-heavy", "-memory", "-free", "-dependent", "/memory"], ["-based", "-tracking", " garbage", "actoring", "resher", "-java", "-Based", "encing"], [" garbage", "\u5783\u573e", "/reference", "/ref", "(reference", "-reference", " trash", "-tracking"], [" garbage", "\u5783\u573e", "/ref", "gc", "GC", " GC", "/reference", ".gc"], [" counting", "-count", " counted", "\u8ba1\u6570", " counts", " Count", "\u30ab\u30a6\u30f3\u30c8", "count"], [" counting", "-count", " counted", "\u8ba1\u6570", " counts", "count", " Count", " count"], [" counting", "-count", " counted", " counts", "\u8ba1\u6570", "count", " count", " Count"], [" counting", "-count", " counted", " cycles", " counts", "\u8ba1\u6570", "-cycle", " GC"], [" counting", "-count", " counted", " cycles", " counts", " tracing", " tracking", " GC"], [" counting", "-count", " counted", " cycles", " counts", " tracing", " tracking", "-based"]], "p": [[0.9525, 0.0369, 0.0073, 0.0018, 0.0009, 0.0001, 0.0001, 0.0001], [0.8331, 0.1641, 0.0016, 0.0007, 0.0003, 0.0001, 0.0, 0.0], [0.7203, 0.265, 0.008, 0.0043, 0.0014, 0.0005, 0.0002, 0.0001], [0.0097, 0.002, 0.002, 0.0018, 0.0017, 0.0017, 0.0016, 0.0016], [0.2628, 0.1096, 0.0356, 0.0216, 0.0148, 0.0139, 0.0139, 0.0115], [0.05, 0.0251, 0.0236, 0.0162, 0.0092, 0.0039, 0.0034, 0.0019], [0.0853, 0.0378, 0.0334, 0.0314, 0.0295, 0.0244, 0.0229, 0.0216], [0.0883, 0.0473, 0.0368, 0.0325, 0.0223, 0.0185, 0.0174, 0.0135], [0.0805, 0.0627, 0.0488, 0.0405, 0.0278, 0.0261, 0.0191, 0.0159], [0.1118, 0.0528, 0.0266, 0.022, 0.0194, 0.0171, 0.0071, 0.0071], [0.3577, 0.1401, 0.0662, 0.0662, 0.0455, 0.0229, 0.019, 0.013], [0.06, 0.0497, 0.0497, 0.0467, 0.0364, 0.0321, 0.0283, 0.025], [0.1845, 0.1051, 0.0321, 0.0283, 0.0183, 0.0111, 0.0081, 0.0072], [0.0292, 0.0156, 0.0079, 0.0069, 0.0054, 0.0048, 0.0045, 0.0033], [0.1491, 0.0259, 0.0243, 0.0229, 0.009, 0.0062, 0.0033, 0.0029], [0.0359, 0.0247, 0.0159, 0.0159, 0.0075, 0.0071, 0.0038, 0.0036], [0.2722, 0.0325, 0.0223, 0.021, 0.0127, 0.0087, 0.0077, 0.0053], [0.1228, 0.0311, 0.0188, 0.0129, 0.0122, 0.0107, 0.0084, 0.0048], [0.043, 0.0058, 0.0051, 0.0043, 0.0043, 0.0031, 0.0031, 0.0026], [0.0413, 0.0118, 0.0111, 0.0072, 0.0046, 0.0046, 0.0044, 0.0034], [0.449, 0.0088, 0.0082, 0.0057, 0.0057, 0.0036, 0.0032, 0.0021], [0.0126, 0.0056, 0.0049, 0.0044, 0.0038, 0.0034, 0.0022, 0.0022], [0.5109, 0.0073, 0.0068, 0.0037, 0.0034, 0.0027, 0.0022, 0.0016], [0.2827, 0.0181, 0.0059, 0.0049, 0.0049, 0.0043, 0.0028, 0.0023], [0.26, 0.0054, 0.0054, 0.0051, 0.0048, 0.0048, 0.0045, 0.0031], [0.122, 0.0069, 0.0057, 0.0033, 0.0029, 0.0025, 0.0025, 0.0025], [0.2185, 0.0062, 0.004, 0.0031, 0.0026, 0.0021, 0.0021, 0.0018], [0.4517, 0.0128, 0.0034, 0.003, 0.003, 0.0024, 0.0021, 0.002], [0.2269, 0.0042, 0.003, 0.0029, 0.0029, 0.0025, 0.0025, 0.0025], [0.0763, 0.036, 0.0125, 0.0117, 0.0097, 0.0091, 0.0076, 0.0052], [0.1116, 0.0125, 0.0111, 0.0111, 0.0092, 0.0076, 0.0071, 0.0049], [0.0287, 0.0144, 0.0136, 0.0088, 0.0077, 0.0077, 0.0064, 0.0053], [0.0209, 0.0143, 0.0082, 0.0082, 0.0082, 0.0068, 0.0056, 0.0053], [0.006, 0.005, 0.003, 0.0028, 0.0028, 0.0025, 0.0022, 0.002], [0.0324, 0.0286, 0.0197, 0.0135, 0.0135, 0.0119, 0.0112, 0.0093], [0.0323, 0.0303, 0.0251, 0.0105, 0.0077, 0.0064, 0.0049, 0.0049], [0.0079, 0.0051, 0.0037, 0.0035, 0.0035, 0.0031, 0.0027, 0.0027], [0.0069, 0.0065, 0.0061, 0.0042, 0.0029, 0.0029, 0.0029, 0.0025], [0.0222, 0.0112, 0.0099, 0.0077, 0.006, 0.0036, 0.003, 0.0028], [0.0557, 0.0523, 0.0141, 0.0132, 0.011, 0.0097, 0.0085, 0.0055], [0.063, 0.063, 0.0141, 0.0124, 0.0109, 0.0097, 0.008, 0.0075], [0.0545, 0.0227, 0.0214, 0.0177, 0.0114, 0.0089, 0.0089, 0.0089], [0.0189, 0.0178, 0.0147, 0.0122, 0.0101, 0.0095, 0.0084, 0.007], [0.0218, 0.0192, 0.0141, 0.0124, 0.011, 0.0091, 0.0085, 0.008], [0.0425, 0.0227, 0.0156, 0.0147, 0.0095, 0.0089, 0.0079, 0.0065], [0.057, 0.0535, 0.0185, 0.0174, 0.0099, 0.0099, 0.0077, 0.0072], [0.0533, 0.0304, 0.0153, 0.0144, 0.0135, 0.0119, 0.0099, 0.0077], [0.1388, 0.0511, 0.0423, 0.0257, 0.0146, 0.0129, 0.0107, 0.0094], [0.0083, 0.0083, 0.0078, 0.0078, 0.0073, 0.0073, 0.0069, 0.0057], [0.0148, 0.0131, 0.0096, 0.0079, 0.0075, 0.0048, 0.0042, 0.004], [0.0082, 0.0072, 0.006, 0.006, 0.0056, 0.005, 0.0047, 0.0041], [0.0244, 0.0202, 0.019, 0.0148, 0.0079, 0.0066, 0.0066, 0.0062], [0.0879, 0.0568, 0.0304, 0.0209, 0.0196, 0.0163, 0.0119, 0.0093], [0.2681, 0.0438, 0.0411, 0.0234, 0.0133, 0.0098, 0.0098, 0.0081], [0.0799, 0.0516, 0.0333, 0.0276, 0.0168, 0.0139, 0.0115, 0.0115], [0.4982, 0.2353, 0.0674, 0.0463, 0.0193, 0.0097, 0.0081, 0.0063], [0.6049, 0.2225, 0.0341, 0.0134, 0.0134, 0.0098, 0.0076, 0.0063], [0.723, 0.1828, 0.0408, 0.028, 0.0071, 0.0017, 0.0016, 0.0016], [0.7773, 0.1734, 0.0266, 0.0142, 0.0041, 0.0007, 0.0007, 0.0006], [0.9043, 0.0742, 0.0146, 0.0025, 0.0025, 0.0004, 0.0003, 0.0003], [0.8886, 0.0568, 0.0268, 0.0184, 0.0011, 0.001, 0.0006, 0.0006], [0.9312, 0.0361, 0.0193, 0.0043, 0.0007, 0.0007, 0.0007, 0.0006], [0.9664, 0.0258, 0.0031, 0.0016, 0.0005, 0.0004, 0.0003, 0.0003]], "ranks": {"Kotlin": [156941, 117050, 103843, 15768, 36295, 58367, 70378, 156262, 123366, 174216, 193717, 93586, 60352, 123677, 185429, 132644, 150465, 84448, 145935, 210727, 216731, 101856, 86770, 127276, 73474, 59814, 23927, 69416, 24684, 18553, 21254, 22168, 36479, 16680, 11391, 4506, 1168, 1423, 1149, 856, 1750, 1446, 2153, 4320, 3528, 5075, 7916, 6432, 14898, 6163, 8284, 1775, 89, 127, 38, 168, 496, 740, 604, 904, 1632, 2539, 4250]}}, {"pos": 584, "top": [[".", ",", " ", "<|endoftext|>", ";", "[", "-", ":"], [" \\\"", "(\\\"", ",\\\"", "  \n  \n", ":\\\"", " (\u201e", "  \n", "\\\"\\"], [".", ",", " (\u201e", "[", "\u201e", ";", ":", ":\\\""], [" ``", " ``(", "``", " \\\"{", "\uff3f\uff3f", " Guta", "``,", " \\\"$"], [" ``", " (\u201e", " \u201e", "\u201e", "``", " \\\"$", ",\\\"", " ``("], [" \uff08", " (\u201e", " \\\"", " \\\"$", " ``", " \u201e", ",\\\"", " \uff09"], [" ``", " \u201e", "``", " (\u201e", " \\\"", ",\\\"", " \u3010", "\u201e"], [" ``", " ``(", " \\\"", "``", ",\\\"", " (\u201e", " \u201e", " \\\"$"], [" ``", " ``(", " \\\"$", " (\u201e", ",\\\"", " \\\"{", " \\\"", " [`"], [" ``", ",\\\"", " \\\"$", " ``(", ".\\\"", " \\\"", ".\\", ","], [" ``", " \\\"", " \\\"$", ".\\\"", ",\\\"", " ``(", "``", ".\\"], [" ``", " ``(", " **\u201e", " \\\"$", "``", "\u52a0\u62ff\u5927", " **\u300c", " \\\""], [" ``", "\u52a0\u62ff\u5927", " ``(", " \\\"", " \u201e", " \\\"$", " **\u201e", " values"], [" ``", " ", " entirety", "ed", " myriad", " arguably", " heavily", " albeit"], [" ``", " ", " --", " ostensibly", "--", " myriad", " and", " heavily"], [" ``", " myriad", " --", " arguably", " ostensibly", " purported", " requisite", " "], [" myriad", " ostensibly", " ", " arguably", " largely", " heavily", " purported", "ed"], [" ``", " myriad", " ostensibly", " heavily", "-esque", " arguably", " entirety", " largely"], [" ``", " myriad", " --", " ostensibly", " arguably", " purported", " heavily", "-esque"], [" ``", " --", " myriad", " ostensibly", " purported", " heavily", " arguably", " merely"], ["<|endoftext|>", " --", " ``", " \n\n", " myriad", " purported", " ,", " merely"], [" ``", " ``(", "``", " \\\"", " ''", "&quot", "\u52a0\u62ff\u5927", " \\\"$"], [" ``", " ``(", "``", " ''", " --", "&quot", " \\\"", "``,"], [" ``", " ,", " ''", " ``(", "``", " --", " and", " \\\""], [" ``", " ``(", "``", " ''", " \\\"", " ,", " \"\"", " [["], [" ``", " ``(", "``", " --", " ''", " \\\"", " ,", " \uff0c"], [" ``", " ``(", "``", " ''", " --", " ,", "``,", " *__"], [" ``", " --", " ,", " ''", " __", " ``(", " and", " ---"], [" ``", " ,", " --", " ''", " ``(", "``", " and", " ..."], [" ``", " ``(", "``", " ...", " ''", " --", " ,", " __"], [" ``", "``", " ``(", " ''", " ,", " \n", " --", " and"], [" ...", " ``", " and", " ,", " rather", " .", " instead", " after"], [" ``", " rather", " and", " ,", " instead", " but", " only", " ultimately"], [" ``", " rather", " instead", " systems", " and", " system", " indefinitely", " eventually"], [" ``", " rather", " ...", " system", " and", " systems", " instead", " heavily"], [" ...", " rather", " (\u201c", " \u2026", " and", " **", "\u2014but", " \u2014"], [" rather", " ``", " instead", " and", " internally", " redund", " \u2014", " /"], [" ``", " rather", " complex", " /", " instead", " (\u201c", " and", " \u201c"], [" rather", " complex", " (\u201c", " /", " inefficient", " dead", " ``", " failures"], [" rather", " complex", " (\u201c", " redund", " inefficient", " delays", " /", " algorithms"], [" algorithms", " delays", " inefficient", " complex", " algorithm", " redund", " rather", " dead"], [" inefficient", " algorithms", " algorithm", " redund", " mechanisms", " complex", " automated", " costs"], [" algorithms", " **+", " automated", " inefficient", " algorithm", " mechanisms", " automatic", " **"], [" inefficient", " algorithms", " **+", " algorithm", " mechanisms", " automatic", " automated", " costs"], [" inefficient", " delays", " costs", " requires", " algorithms", " **+", " amort", " algorithm"], [" inefficient", " delays", " costs", " requires", " failures", " limitations", " +", " automatic"], [" delays", " requires", " costs", " +", " inefficient", " failures", " slower", " errors"], [" delays", " requires", " failures", " +", " errors", " inefficient", " often", " lacks"], [" delays", " failures", " requires", " inefficient", " glitches", " lacks", " errors", " vs"], [" delays", " glitches", " requires", " lacks", " failures", " (+", " errors", " overlaps"], [" delays", " glitches", " requires", " errors", " failures", " overlaps", " slows", " lacks"], [" delays", " requires", " slows", " glitches", " overlaps", " (+", " lacks", " overhead"], [" delays", " overhead", " requires", " slows", " glitches", " overlaps", " leaks", " (+"], [" delays", " overhead", " +", " (+", " slows", " requires", " overlaps", " lacks"], [" delays", " overhead", " slows", " requires", " garbage", " lacks", " isn", " collisions"], [" garbage", " delays", "\u5783\u573e", " GC", "/rc", " overhead", " RC", " isn"], [" garbage", " GC", "\u5783\u573e", " delays", " isn", " (`", " overhead", "GC"], [" garbage", " GC", " isn", " (`", " delays", "GC", " leaks", " overhead"], [" overhead", " leaks", " GC", " garbage", " isn", "GC", " (`", " adds"], [" overhead", " leaks", " isn", " GC", " adds", " garbage", " (`", " RC"], [" overhead", " leaks", " adds", " GC", " introduces", " isn", " pauses", " RC"], [" overhead", " adds", " has", " isn", " introduces", " +", " leaks", " GC"], [" overhead", " +", " adds", " introduces", " has", " GC", " leaks", " isn"]], "p": [[0.6249, 0.3345, 0.0095, 0.0074, 0.0061, 0.0019, 0.0011, 0.001], [0.0964, 0.0402, 0.0355, 0.0229, 0.0123, 0.0115, 0.0084, 0.0066], [0.3356, 0.2036, 0.0454, 0.0454, 0.0243, 0.0115, 0.0065, 0.0037], [0.7897, 0.0735, 0.0393, 0.0021, 0.0012, 0.0011, 0.0011, 0.001], [0.1271, 0.099, 0.0321, 0.0221, 0.0104, 0.0087, 0.0081, 0.0072], [0.0196, 0.0173, 0.0119, 0.0119, 0.0099, 0.0087, 0.0087, 0.0077], [0.7747, 0.0386, 0.0282, 0.0161, 0.0151, 0.0125, 0.0125, 0.0076], [0.958, 0.0069, 0.005, 0.005, 0.0044, 0.0039, 0.0029, 0.0015], [0.5308, 0.0596, 0.0409, 0.0299, 0.0133, 0.0091, 0.0091, 0.0086], [0.3907, 0.0301, 0.0301, 0.025, 0.0161, 0.0126, 0.0052, 0.0046], [0.7854, 0.0416, 0.0163, 0.0163, 0.0105, 0.0082, 0.0041, 0.0039], [0.8453, 0.0421, 0.0025, 0.0022, 0.0011, 0.0008, 0.0007, 0.0007], [0.5196, 0.0061, 0.004, 0.0033, 0.0016, 0.0014, 0.0014, 0.0011], [0.0686, 0.0127, 0.006, 0.005, 0.0039, 0.003, 0.003, 0.0028], [0.2098, 0.0601, 0.0302, 0.0098, 0.0072, 0.0067, 0.0067, 0.0063], [0.0491, 0.0434, 0.0317, 0.0192, 0.0181, 0.0141, 0.0097, 0.0091], [0.0676, 0.0234, 0.0133, 0.0133, 0.011, 0.0097, 0.0086, 0.0086], [0.1664, 0.0255, 0.0137, 0.0088, 0.0078, 0.0069, 0.0057, 0.0057], [0.3944, 0.0391, 0.0286, 0.0153, 0.0099, 0.0068, 0.0053, 0.0053], [0.5764, 0.0368, 0.0164, 0.0073, 0.0064, 0.005, 0.0044, 0.0039], [0.8817, 0.0104, 0.0059, 0.0043, 0.0036, 0.0023, 0.0016, 0.0014], [0.9908, 0.0034, 0.0006, 0.0003, 0.0001, 0.0001, 0.0, 0.0], [0.999, 0.0006, 0.0003, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9916, 0.0016, 0.0008, 0.0005, 0.0004, 0.0004, 0.0002, 0.0002], [0.9962, 0.0012, 0.001, 0.0001, 0.0001, 0.0001, 0.0, 0.0], [0.9966, 0.0016, 0.0005, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9961, 0.0022, 0.0008, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9826, 0.0085, 0.0028, 0.0014, 0.0004, 0.0003, 0.0001, 0.0001], [0.9953, 0.0013, 0.0009, 0.0007, 0.0002, 0.0002, 0.0001, 0.0001], [0.9977, 0.0006, 0.0005, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001], [0.999, 0.0003, 0.0002, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.5723, 0.2105, 0.0323, 0.0285, 0.0098, 0.0093, 0.0053, 0.0023], [0.2673, 0.1047, 0.0868, 0.072, 0.0234, 0.0171, 0.0151, 0.0104], [0.1599, 0.0552, 0.0123, 0.0055, 0.0055, 0.0045, 0.0043, 0.0038], [0.1064, 0.0185, 0.0072, 0.0064, 0.0053, 0.005, 0.0047, 0.0039], [0.0337, 0.0279, 0.0116, 0.0109, 0.0091, 0.0091, 0.0085, 0.0071], [0.0326, 0.0113, 0.0088, 0.0057, 0.0053, 0.0044, 0.0041, 0.0037], [0.0326, 0.0326, 0.0088, 0.0082, 0.0073, 0.0064, 0.006, 0.005], [0.0186, 0.0128, 0.0106, 0.0078, 0.0068, 0.006, 0.006, 0.005], [0.0114, 0.0101, 0.0101, 0.0094, 0.0074, 0.0061, 0.0057, 0.0054], [0.0165, 0.0165, 0.0165, 0.0155, 0.0137, 0.0113, 0.0107, 0.0078], [0.0245, 0.023, 0.023, 0.0158, 0.0158, 0.0149, 0.0131, 0.0123], [0.0272, 0.024, 0.024, 0.0199, 0.0187, 0.0187, 0.0155, 0.0146], [0.0358, 0.0279, 0.0246, 0.018, 0.018, 0.0169, 0.0159, 0.0132], [0.0948, 0.0327, 0.0289, 0.0199, 0.0165, 0.0128, 0.012, 0.012], [0.0582, 0.0582, 0.0426, 0.0376, 0.013, 0.0108, 0.0108, 0.0089], [0.1096, 0.0908, 0.0295, 0.0216, 0.0216, 0.0102, 0.0084, 0.0084], [0.1609, 0.1253, 0.0317, 0.018, 0.018, 0.0141, 0.0141, 0.0124], [0.2391, 0.0442, 0.0304, 0.0196, 0.0184, 0.0184, 0.0153, 0.0127], [0.3472, 0.039, 0.0366, 0.0252, 0.0236, 0.0222, 0.0184, 0.0119], [0.4105, 0.0522, 0.0461, 0.018, 0.018, 0.015, 0.0116, 0.0103], [0.4967, 0.0298, 0.0247, 0.0218, 0.0141, 0.0141, 0.0141, 0.0132], [0.5615, 0.0433, 0.0263, 0.0247, 0.0159, 0.0124, 0.0117, 0.0109], [0.489, 0.0455, 0.0313, 0.0294, 0.0276, 0.0148, 0.0101, 0.0101], [0.2708, 0.0604, 0.0442, 0.0366, 0.0323, 0.0268, 0.0209, 0.0173], [0.7901, 0.0239, 0.0186, 0.0175, 0.0136, 0.0093, 0.0088, 0.0088], [0.862, 0.0379, 0.0109, 0.007, 0.0062, 0.0058, 0.0055, 0.0055], [0.2482, 0.2191, 0.1706, 0.0316, 0.0296, 0.0231, 0.018, 0.0132], [0.9803, 0.0058, 0.004, 0.0031, 0.0017, 0.0004, 0.0004, 0.0003], [0.9489, 0.0119, 0.0082, 0.0072, 0.0072, 0.0025, 0.0011, 0.0008], [0.9578, 0.0073, 0.005, 0.005, 0.005, 0.0039, 0.0017, 0.0011], [0.7397, 0.0417, 0.0368, 0.0325, 0.0253, 0.0197, 0.0197, 0.0174], [0.7749, 0.0437, 0.0386, 0.022, 0.0182, 0.0161, 0.0142, 0.0142]], "ranks": {"Kotlin": [209594, 110410, 72602, 12335, 11852, 39732, 62318, 105414, 65405, 138485, 126891, 98898, 105898, 183570, 221628, 178344, 174016, 104571, 159471, 201884, 211755, 86301, 86889, 101951, 85445, 30723, 18247, 71510, 47587, 32135, 39433, 50291, 58267, 38143, 44078, 26765, 15953, 10810, 8981, 10948, 11425, 8990, 8710, 13798, 17135, 30958, 43786, 60545, 109941, 72771, 104348, 49162, 19577, 13305, 5313, 4403, 4369, 3962, 4506, 3911, 3902, 3412, 5205]}}, {"pos": 585, "top": [[",", ".", "\u2013", " \u2013", ";", "\u2026.", "<|endoftext|>", "\u2026.."], [",", "\u2013", " \u2013", ".", ";", "\u2013and", "s", ":"], [",", "\u2013", ".", " \u2013", ";", "\u2026", "\u2026.", "\u2026.."], ["\u52a0\u62ff\u5927", " Guta", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "sula", " Shemale", " Nues", "\u65b0\u52a0\u5761", "\u52a0\u62ff\u5927\u7684"], [" \u201c", ",", "es", "s", " (\u201c", ",@", " \u00a0", "\u2026.."], ["\u2026..", ",", "\u2026.", " \u00a0", "\u00a0\u00a0", "=\u201d", ",\u2026", "."], ["  \n", " \u00a0", "\u2026\u2026", "s", "\u2026.", "\u2026..", "  \n\n", "\u00a0\u00a0"], ["  \n", " \u00a0", "\u2026..", "  \n\n", "s", "   \n", "raries", "\u7d2f\u7d2f"], [" \u00a0", ",", "\u2026..", "  \n\n", "  \n", "\u2026.", "\u2013and", ",\u2026"], [",", "\u2013and", " \u00a0", "\u2013", "\u00a0\u00a0", ",\u2026", "\u7d2f\u7d2f", "\u00a0"], [",", " \u00a0", "\u00a0", "\u00a0\u00a0", "\u2013", "s", " \u00ad", "\u00a0\u00a0\u00a0"], ["\u7d2f\u7d2f", "\u87c6", "htags", "\u52a9\u4e8e", "raries", "getVar", "\u9887\u5177", "\u52a0\u62ff\u5927"], ["\u52a0\u62ff\u5927", "htags", "\u7d2f\u7d2f", "\u52a9\u4e8e", "\u87c6", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "htag", "\u65b0\u52a0\u5761"], ["\u52a0\u62ff\u5927", "\u9887\u5177", "\u52a9\u4e8e", "htags", "\u7d2f\u7d2f", "\u771f\u6709", "\u87c6", "\u9887\u4e3a"], ["\u9887\u5177", " revamped", "\u65f6\u9ae6", " sprawling", " savvy", "\u52a8\u8f84", "\u7d2f\u7d2f", "\u4ece\u6ca1"], [" sprawling", "\u62e5\u6709\u7740", " savvy", " revamped", " arguably", "\u4eb2\u8eab\u4f53", "\u9887\u5177", "\u4ece\u6ca1"], [" arguably", " sprawling", " savvy", " wildly", " plenty", " revamped", " hefty", " hugely"], [" sprawling", " hugely", " revamped", " plenty", " arguably", "\u771f\u6709", " wildly", " hefty"], [" hugely", " sprawling", " wildly", " arguably", " revamped", " hefty", " dwind", " quirky"], [" hugely", " wildly", " sprawling", " arguably", " myriad", " plenty", " hefty", "\u76f8\u8f83"], [" hugely", " wildly", " sprawling", " myriad", " arguably", " plenty", "\u76f8\u8f83", " truly"], [" wildly", " hugely", " sprawling", "\u4ece\u6ca1", "\u52a8\u8f84", "\u7d2f\u7d2f", "\u751a\u81f3\u6709", " plenty"], [" hugely", " wildly", " sprawling", " arguably", " plenty", " dwind", " myriad", " much"], [" much", " hugely", " wildly", " myriad", " largely", " sprawling", " arguably", " plenty"], [" hugely", " myriad", " sprawling", " wildly", " arguably", " dwind", " much", " plenty"], [" hugely", " wildly", " sprawling", " dwind", " arguably", " glitches", "\u7d2f\u7d2f", " lingering"], [" hugely", " wildly", " sprawling", " arguably", " lingering", " dwind", " myriad", " glitches"], ["\n\n", " much", " hugely", " arguably", " wildly", " sprawling", " myriad", " largely"], [" wildly", " sprawling", " hugely", " myriad", " much", " lingering", " arguably", "\n\n"], [" **", " glitches", " ...", " lingering", " tweaks", " wildly", " harder", " sprawling"], [" ...", " **", " much", " glitches", " increasingly", " wildly", " tweaks", " less"], [" **", " ...", " less", " glitches", " much", " more", " increasingly", " harder"], [" much", " less", " harder", " slower", " even", " unpredictable", " rarely", " more"], [" glitches", " slower", " tweaks", " unpredictable", " struggles", " complexities", " limitations", " notoriously"], [" glitches", " slower", " complexities", " unpredictable", " notoriously", " limitations", " struggles", " tweaks"], [" slower", " glitches", " notoriously", " limitations", " complexities", " unpredictable", " delays", " often"], [" slower", " glitches", " notoriously", " limitations", " inefficient", " unpredictable", " slow", " often"], [" slower", " glitches", " limitations", " notoriously", " often", " sometimes", " inefficient", " slow"], [" slower", " glitches", " costs", " cost", " inefficient", " costly", " expensive", " limitations"], [" glitches", " slower", " limitations", " unpredictable", " costs", " disadvantages", " inefficient", " vulnerabilities"], [" costs", " slower", " cost", " inefficient", " glitches", " limitations", " drawbacks", " disadvantages"], [" costs", " cost", " glitches", "\u6210\u672c", " overhead", " costly", " inefficient", " limitations"], [" costs", " cost", " glitches", " overhead", " costly", " Costs", " complexities", "\u6210\u672c"], [" costs", " glitches", " cost", " overhead", " complexities", " drawbacks", " inefficient", " unpredictable"], [" costs", " glitches", " cost", " unpredictable", " overhead", " drawbacks", " inefficient", " repetitive"], [" costs", " glitches", " cost", " unpredictable", " repetitive", " spikes", " drawbacks", " overhead"], [" costs", " glitches", " unpredictable", " repetitive", " cost", " spikes", "\u6210\u672c\u9ad8", " pitfalls"], [" costs", " glitches", " cost", " repetitive", " unpredictable", " spikes", "\u6210\u672c\u9ad8", " bursts"], [" costs", " glitches", "\u6210\u672c\u9ad8", " unpredictable", " repetitive", " bursts", " pitfalls", " cost"], [" glitches", " costs", "\u6210\u672c\u9ad8", " pitfalls", " interruptions", " bursts", " unpredictable", " delays"], [" glitches", "\u6210\u672c\u9ad8", " costs", " delays", " complexities", " pitfalls", " overhead", ";**"], [" overhead", " glitches", "\u6210\u672c\u9ad8", " latency", " delays", " pitfalls", "\u5f00\u9500", " ineff"], [" overhead", " latency", "\u5f00\u9500", " glitches", " delays", " pitfalls", "\u6210\u672c\u9ad8", " costs"], [" overhead", " costs", "\u5f00\u9500", " latency", "\u6210\u672c", "\u6210\u672c\u9ad8", " concurrency", " delays"], [" overhead", " runtime", "runtime", "\u5f00\u9500", " costs", " latency", "\u6210\u672c", " garbage"], [" garbage", "\u5783\u573e", " overhead", " runtime", "runtime", " trash", " recycling", " recursion"], [" overhead", " garbage", " runtime", "\u5783\u573e", " recursion", "\u5f00\u9500", " recycling", " latency"], [" overhead", " runtime", " latency", " recursion", " cycles", "\u5f00\u9500", " garbage", " pitfalls"], [" overhead", "\u5f00\u9500", " latency", " runtime", " costs", "\u30aa\u30fc\u30d0\u30fc", " overwrite", " pitfalls"], [" overhead", "\u5f00\u9500", " pitfalls", " runtime", " costs", " latency", " performance", " pauses"], [" overhead", "\u5f00\u9500", " overwrite", " pauses", " pitfalls", " runtime", " latency", "-over"], [" overhead", "\u5f00\u9500", " pauses", " synchronization", " cycles", " fragmentation", " pitfalls", " contention"], [" overhead", "\u5f00\u9500", " pauses", " pause", " cycles", " pitfalls", " its", " runtime"]], "p": [[0.6993, 0.2573, 0.0211, 0.0164, 0.0025, 0.0006, 0.0004, 0.0002], [0.7536, 0.1682, 0.0331, 0.0258, 0.0107, 0.0015, 0.0011, 0.0004], [0.841, 0.129, 0.0224, 0.003, 0.0021, 0.0011, 0.0003, 0.0002], [0.0094, 0.0069, 0.0057, 0.0035, 0.0035, 0.0025, 0.0025, 0.0022], [0.0517, 0.0355, 0.0277, 0.0244, 0.0215, 0.0202, 0.0168, 0.0139], [0.1073, 0.1008, 0.0693, 0.0211, 0.0155, 0.0094, 0.0083, 0.0069], [0.2852, 0.2517, 0.0496, 0.0496, 0.0363, 0.032, 0.032, 0.0125], [0.0432, 0.0231, 0.0169, 0.0116, 0.008, 0.007, 0.0066, 0.0062], [0.1028, 0.0586, 0.0244, 0.0202, 0.019, 0.0131, 0.0102, 0.0079], [0.1401, 0.0079, 0.0074, 0.007, 0.0029, 0.0027, 0.0027, 0.0024], [0.2811, 0.1328, 0.0971, 0.0204, 0.0159, 0.0149, 0.0096, 0.007], [0.0037, 0.0029, 0.0026, 0.002, 0.0015, 0.0015, 0.0015, 0.0015], [0.0133, 0.0117, 0.0036, 0.003, 0.0019, 0.0019, 0.0017, 0.0015], [0.0052, 0.0036, 0.0023, 0.0022, 0.0018, 0.0017, 0.0015, 0.0014], [0.0035, 0.0024, 0.0024, 0.0022, 0.0021, 0.002, 0.0017, 0.0016], [0.0041, 0.0034, 0.003, 0.0025, 0.0025, 0.0022, 0.002, 0.0018], [0.0167, 0.013, 0.0089, 0.0084, 0.0079, 0.0079, 0.0079, 0.0079], [0.0088, 0.0082, 0.006, 0.0044, 0.0039, 0.0036, 0.0034, 0.0034], [0.0094, 0.0078, 0.005, 0.005, 0.0042, 0.0039, 0.0031, 0.0024], [0.0189, 0.0108, 0.0079, 0.0054, 0.0048, 0.0035, 0.0027, 0.0024], [0.0146, 0.0113, 0.0057, 0.0057, 0.0044, 0.0031, 0.0022, 0.0022], [0.0028, 0.0026, 0.0023, 0.0012, 0.001, 0.001, 0.001, 0.001], [0.0071, 0.0055, 0.0049, 0.0026, 0.0024, 0.0023, 0.0022, 0.0015], [0.0121, 0.01, 0.0057, 0.0054, 0.005, 0.0047, 0.0045, 0.0037], [0.013, 0.0042, 0.0042, 0.004, 0.0035, 0.0035, 0.0029, 0.0026], [0.0075, 0.004, 0.0033, 0.0023, 0.0019, 0.0016, 0.0015, 0.0015], [0.0083, 0.0065, 0.0061, 0.0033, 0.0031, 0.0027, 0.0025, 0.0022], [0.0931, 0.0126, 0.0111, 0.0092, 0.0092, 0.0067, 0.0067, 0.0063], [0.0131, 0.0123, 0.0115, 0.009, 0.0084, 0.0074, 0.007, 0.0058], [0.037, 0.0307, 0.0175, 0.0128, 0.0113, 0.0094, 0.0083, 0.006], [0.0534, 0.0237, 0.0163, 0.0163, 0.0119, 0.0112, 0.0105, 0.0105], [0.1006, 0.0691, 0.0175, 0.0164, 0.0164, 0.0113, 0.0106, 0.0094], [0.0367, 0.0286, 0.0163, 0.0135, 0.0112, 0.0112, 0.0112, 0.0112], [0.0888, 0.0271, 0.0225, 0.0211, 0.0211, 0.0164, 0.0145, 0.01], [0.084, 0.0241, 0.02, 0.0187, 0.0146, 0.0146, 0.0121, 0.0078], [0.1561, 0.0651, 0.0307, 0.0211, 0.0164, 0.0088, 0.0088, 0.0057], [0.2955, 0.0619, 0.0426, 0.0214, 0.013, 0.0101, 0.0101, 0.0084], [0.2223, 0.0528, 0.0341, 0.0301, 0.0171, 0.0171, 0.0151, 0.0134], [0.1852, 0.0931, 0.0822, 0.0267, 0.0251, 0.0251, 0.0235, 0.0221], [0.1154, 0.1084, 0.058, 0.0292, 0.0213, 0.0188, 0.0177, 0.0177], [0.4465, 0.0776, 0.0685, 0.0415, 0.0252, 0.0173, 0.0163, 0.0135], [0.8149, 0.1103, 0.0055, 0.0038, 0.0035, 0.0035, 0.0033, 0.0024], [0.8303, 0.0682, 0.0134, 0.0076, 0.0038, 0.0034, 0.0026, 0.0021], [0.7147, 0.0403, 0.0314, 0.0158, 0.0075, 0.007, 0.0062, 0.0055], [0.7299, 0.0412, 0.0363, 0.0098, 0.0076, 0.0067, 0.0056, 0.0056], [0.5969, 0.0555, 0.0432, 0.0231, 0.0132, 0.0116, 0.0066, 0.0066], [0.4704, 0.1348, 0.0265, 0.0249, 0.0194, 0.0142, 0.0098, 0.0086], [0.5527, 0.096, 0.0243, 0.0189, 0.0189, 0.0122, 0.0089, 0.0089], [0.2583, 0.1567, 0.0309, 0.0226, 0.0146, 0.0113, 0.0113, 0.0107], [0.3466, 0.0823, 0.0343, 0.0173, 0.0152, 0.0134, 0.0134, 0.0126], [0.2596, 0.031, 0.0257, 0.0241, 0.0188, 0.0156, 0.0095, 0.0083], [0.2348, 0.1109, 0.0434, 0.0298, 0.0298, 0.028, 0.0181, 0.017], [0.6617, 0.0273, 0.0257, 0.0188, 0.0129, 0.0121, 0.0107, 0.0078], [0.7491, 0.0329, 0.0256, 0.0146, 0.0089, 0.0069, 0.0061, 0.0047], [0.6536, 0.1136, 0.0473, 0.0224, 0.0174, 0.0136, 0.012, 0.0106], [0.7105, 0.109, 0.0849, 0.0401, 0.0079, 0.0042, 0.0033, 0.0023], [0.5808, 0.2137, 0.0289, 0.0255, 0.0175, 0.0106, 0.0088, 0.0069], [0.6418, 0.0869, 0.041, 0.032, 0.0118, 0.011, 0.0081, 0.0076], [1.0, 0.0, 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], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9998, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Kotlin": [218876, 219881, 211319, 75177, 98087, 153680, 180641, 225796, 226843, 238263, 241120, 213067, 188865, 203240, 225564, 222695, 212377, 207886, 225578, 232639, 238347, 218087, 225566, 238070, 229767, 183697, 169932, 208878, 189003, 119698, 135046, 101967, 183056, 88663, 116268, 86209, 79782, 54545, 64394, 65969, 75831, 57685, 59952, 49105, 49298, 69271, 80217, 82944, 100503, 56817, 88430, 36237, 7793, 4360, 2045, 1438, 1654, 2158, 3695, 4596, 5300, 14433, 9618]}}, {"pos": 586, "top": [["s", " \u2013", "\u2013", "\u044b", "\u0627\u062a", "es", "\u2026..", ".\u2013"], ["s", "\u044b", "\u0627\u062a", "\u05d9\u05dd", "schild", "siz", "ska", "ske"], ["s", "\u044b", "\u2026..", "\u0627\u062a", "\u2026\"", "\u05d9\u05dd", "ska", "es"], ["s", "\u05d9\u05dd", "\u044b", "\u0627\u062a", "schnitt", "satz", "ske", "schrift"], ["s", "\u0627\u062a", "\u044b", "es", "\u05d9\u05dd", "ske", "siz", "ska"], ["s", "\u0627\u062a", "\u044b", "\u05d9\u05dd", "siz", "es", "ske", "\u2026.."], ["s", "\u0627\u062a", "es", "\u044b", "ske", "\u05d9\u05dd", "siz", "\u2026.."], ["s", "\u044b", "\u0627\u062a", "\u05d9\u05dd", "es", "ske", "schild", "siz"], ["s", "\u044b", "\u0627\u062a", "es", "schild", "ske", "\u05d9\u05dd", " \u2026."], ["s", "es", "\u044b", "\u0627\u062a", "\u05d9\u05dd", "siz", "ska", "schild"], ["s", "es", " [\u2026]", "\u0627\u062a", "\u044b", ".\u2026", "\u2013\u2013", "ska"], ["s", "es", "\u044b", "\u0627\u062a", "\u05d9\u05dd", "siz", "schild", "sburg"], ["s", "es", "\u044b", "\u05d9\u05dd", "siz", "svar", "\u0627\u062a", "ske"], ["s", "es", "sWith", "\u05d9\u05dd", "\u044b", "siz", "svar", "ska"], ["s", "es", "\u0627\u062a", "sWith", "\u044b", "siz", "ska", "ed"], ["s", "es", "ed", "sWith", "\u044b", "\u0627\u062a", "siz", "\u05d9\u05dd"], ["s", "es", "ed", "\u0627\u062a", "sWith", "\u044b", "y", "siz"], ["s", "es", "sWith", "\u0627\u062a", "\u044b", "siz", "\u05d9\u05dd", "ska"], ["s", "es", "\u0627\u062a", "sWith", "\u044b", "svar", "ske", "siz"], ["s", "es", "\u0627\u062a", "\u044b", "svar", "siz", "sWith", "ska"], ["s", "<|endoftext|>", "es", "ed", "\u0627\u062a", "y", " beyond", " myriad"], ["s", "es", "sWith", "svar", "\u0627\u062a", "siz", "ska", "ske"], ["s", "es", "sWith", "\u0627\u062a", " beyond", "siz", "ska", "ed"], ["s", "es", " ,", " beyond", "ed", " over", " more", "y"], ["s", "es", " beyond", "sWith", " [[", "siz", "\u0627\u062a", "svar"], ["s", "es", "svar", "sWith", "ska", "sste", "skega", "schn"], ["s", "es", "schn", "svar", "sWith", " burdens", " costs", "ska"], ["s", " ,", " beyond", " --", " much", "es", " though", " over"], ["s", "es", " ,", " costs", " beyond", " burdens", " overhead", " shifting"], ["s", " .**", " **", " __", "es", " **,", " /**<", " costs"], ["s", " .**", " **", " .", "es", " costs", " **,", " **."], ["s", " **", " .**", " **,", " **.", " costs", " .", " **+"], ["s", " .**", " **", " costs", " slower", " faster", " .", " beyond"], ["s", " slower", " complexities", " complexity", " faster", " costs", " heavier", " beyond"], ["s", " slower", " complexities", " complexity", " costs", " .**", " overhead", " costly"], [" slower", "s", " .**", " complexities", " complexity", " faster", "\u2011", " **\u201c"], [" slower", "s", " faster", " complexity", " compared", " complexities", " slowing", " costly"], [" slower", " faster", "s", " overhead", " complexity", " costly", " costs", " slowing"], [" costs", " slower", " cost", " costly", " faster", " overhead", " expensive", " compared"], [" costs", " costly", " cost", " slower", " overhead", " faster", " burdens", " expensive"], [" costs", " cost", " costly", " overhead", " slower", " expensive", " burdens", "\u5f00\u9500"], [" costs", " cost", " overhead", " costly", " costing", " slower", " expensive", "\u5f00\u9500"], [" costs", " cost", " overhead", " costly", " slower", " Costs", " costing", " burdens"], [" costs", " overhead", " cost", " slower", " costly", " compared", " burdens", " slowing"], [" costs", " overhead", " cost", " costly", " slower", " inefficient", " compared", " burdens"], [" costs", " overhead", " cost", " compared", " slower", " inefficient", " costly", " burdens"], [" costs", " overhead", " cost", " compared", " inefficient", " slower", "-heavy", " costly"], [" costs", " especially", " compared", " overhead", " cost", " slower", " particularly", "-heavy"], [" costs", " compared", ";", " and", " overhead", " cost", " costly", "-heavy"], [";", ".;", " costs", " overhead", ";,", ";if", ";**", "-heavy"], [";", ".;", ";**", "\uff1b", ";if", ";.", ";,", "\u061b"], [";", ".;", ";**", ";.", "\uff1b", "\u061b", ";,", ";*"], [";", ";**", ".;", ";.", "\uff1b", ";*", "\u061b", "**;"], [";", ";**", ".;", ";.", ".", ";*", "\uff1b", "-heavy"], [";", ";**", ".;", "\uff1b", ";.", " garbage", ";*", "-heavy"], [";", " garbage", ";**", ".;", "\uff1b", ";.", " recursive", ";*"], [";", ".;", " garbage", ";**", ";.", ".", " recursive", ";,"], [";", ".;", " spikes", ";.", ".", ";**", "\uff1b", " unpredictable"], [";", ".;", " spikes", ".", " unpredictable", " recursive", ";.", " unpredict"], [";", ".", " spikes", " unpredictable", ".;", " unpredict", " allocations", ";."], [";", ".", " spikes", ".;", ",", " cycles", " ;", " and"], [";", ".", ",", " and", " spikes", " cycles", " ;", " overhead"], [".", ";", ",", " and", " spikes", " during", " overhead", " cycles"]], "p": [[1.0, 0.0, 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], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9882, 0.003, 0.002, 0.0008, 0.0005, 0.0005, 0.0003, 0.0002], [1.0, 0.0, 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], [1.0, 0.0, 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], [1.0, 0.0, 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], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9996, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9985, 0.0004, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9999, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9996, 0.0004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9998, 0.0002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9995, 0.0004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.999, 0.0006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9983, 0.0008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9963, 0.0012, 0.0007, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9834, 0.0018, 0.0007, 0.0006, 0.0003, 0.0003, 0.0003, 0.0003], [0.9908, 0.0028, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.9883, 0.0026, 0.0004, 0.0003, 0.0001, 0.0001, 0.0001, 0.0001], [0.9796, 0.0011, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.9366, 0.0023, 0.0009, 0.0009, 0.0007, 0.0005, 0.0004, 0.0004], [0.9128, 0.0027, 0.001, 0.0009, 0.0009, 0.0005, 0.0005, 0.0005], [0.7096, 0.0189, 0.0035, 0.0033, 0.0026, 0.0021, 0.0018, 0.0017], [0.9436, 0.0017, 0.0009, 0.0008, 0.0007, 0.0006, 0.0006, 0.0004], [0.9182, 0.0139, 0.0075, 0.0027, 0.0026, 0.0018, 0.0012, 0.0011], [0.8956, 0.0239, 0.0064, 0.0057, 0.0039, 0.0029, 0.0029, 0.002], [0.3681, 0.2867, 0.1272, 0.0413, 0.0221, 0.0087, 0.0059, 0.0046], [0.5453, 0.0507, 0.0371, 0.0155, 0.0155, 0.0088, 0.0078, 0.0073], [0.2568, 0.0506, 0.0211, 0.0175, 0.0164, 0.012, 0.0094, 0.0088], [0.1532, 0.0467, 0.025, 0.0183, 0.0172, 0.0134, 0.0118, 0.0111], [0.1159, 0.1023, 0.0354, 0.0243, 0.0228, 0.0157, 0.0138, 0.0122], [0.1923, 0.1096, 0.0277, 0.0216, 0.0216, 0.019, 0.0158, 0.0139], [0.1943, 0.0593, 0.0434, 0.0263, 0.0247, 0.0247, 0.0232, 0.0181], [0.2046, 0.1095, 0.0966, 0.0966, 0.0378, 0.0244, 0.019, 0.0168], [0.2338, 0.0916, 0.0759, 0.0713, 0.0433, 0.0246, 0.0246, 0.0192], [0.5441, 0.1214, 0.0573, 0.0475, 0.0271, 0.0136, 0.0106, 0.0094], [0.6948, 0.1207, 0.0503, 0.0392, 0.0056, 0.005, 0.005, 0.0047], [0.746, 0.0786, 0.0612, 0.0289, 0.0061, 0.0047, 0.0047, 0.0037], [0.5662, 0.1622, 0.0527, 0.0182, 0.0171, 0.011, 0.0092, 0.0092], [0.6294, 0.1239, 0.0585, 0.0158, 0.0131, 0.0123, 0.0084, 0.0079], [0.4585, 0.1314, 0.0703, 0.0376, 0.0228, 0.0138, 0.0138, 0.0115], [0.3331, 0.0842, 0.0374, 0.0273, 0.0257, 0.0257, 0.02, 0.0177], [0.3469, 0.1276, 0.047, 0.047, 0.0268, 0.0251, 0.0162, 0.0152], [0.2942, 0.1784, 0.0843, 0.0544, 0.0424, 0.0227, 0.0177, 0.0146], [0.735, 0.0268, 0.0268, 0.0173, 0.0119, 0.0112, 0.0082, 0.0056], [0.9589, 0.0176, 0.005, 0.0044, 0.0027, 0.0024, 0.0019, 0.0019], [0.9757, 0.0123, 0.0045, 0.0019, 0.0013, 0.0005, 0.0005, 0.0004], [0.9637, 0.02, 0.0065, 0.0019, 0.0014, 0.0006, 0.0005, 0.0004], [0.8899, 0.0345, 0.0135, 0.0082, 0.0036, 0.0032, 0.0027, 0.0019], [0.9105, 0.0167, 0.0108, 0.004, 0.0035, 0.0031, 0.0019, 0.0019], [0.885, 0.0251, 0.0162, 0.0111, 0.0028, 0.0026, 0.0026, 0.0025], [0.9441, 0.0112, 0.0053, 0.0044, 0.0028, 0.0022, 0.0013, 0.0011], [0.9285, 0.0117, 0.0036, 0.0031, 0.0028, 0.0022, 0.0018, 0.0014], [0.9021, 0.0121, 0.0069, 0.0054, 0.0037, 0.0022, 0.0021, 0.0016], [0.9322, 0.0133, 0.0043, 0.0026, 0.0026, 0.0012, 0.0012, 0.001], [0.9497, 0.0287, 0.0022, 0.0015, 0.001, 0.0009, 0.0008, 0.0005], [0.5044, 0.4452, 0.0236, 0.0023, 0.0021, 0.001, 0.0007, 0.0006], [0.8237, 0.0984, 0.0766, 0.0003, 0.0001, 0.0001, 0.0001, 0.0]], "ranks": {"Kotlin": [173690, 119805, 177692, 22591, 33957, 51701, 58032, 104075, 121575, 178543, 190761, 169368, 146123, 179386, 201302, 130645, 164689, 130995, 144474, 184916, 217315, 169797, 189628, 213021, 193918, 117722, 115141, 174640, 148819, 33186, 69091, 33479, 41206, 48204, 111595, 80170, 70298, 73232, 82123, 79022, 96877, 102259, 68083, 66111, 64631, 124934, 153994, 161193, 179147, 128800, 107869, 57412, 28396, 15718, 9840, 3333, 2958, 3056, 2828, 3269, 4466, 2546, 1890]}}, {"pos": 587, "top": [[" \u2013", ".", ",", "\u2013", ";", "\u00a0", "\u00a0\u00a0", "\u2026."], [" \u2013", "\u2013", "\u2013and", " \u2013,", "\u2013\u2013", ",", ".", ".\u2013"], ["\u2013", ",", ".", " \u2013", "\u2013and", ";", "\u2026..", "\u2026"], [" milfs", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Shemale", " Blowjob", " Guta", "-------------</", " ;;^", "----------</"], [":@", " \u201c", " \u201c.", " (@", " CIF", "\u65b0\u52a0\u5761", "\uff20", "!\u201c"], [",", " \u200b\u200b", "\u2026..", "!:", "\u00a0\u00a0", "\u2026.", ".", ":"], ["\u00a0\u00a0", "\u00a0", "  \n", " \u00a0", " \u2018", ".", "\uff01", " \u201c"], ["   \n", "   \n\n", "\u2013and", "!:", " \u201a", "  \n", "<|quad_end|>", "  \n\n"], ["   \n\n", "  \n\n", "\u00a0", " \n\n", "!\u201d", "    \n\n", " \u00ad", "   \n"], ["\u2013and", " \u00ad", "\u00a0", "\u2013", ",", "\u00a0\u00a0", "\u2013\u2013", "<|quad_end|>"], ["\u00a0", ",", "\u2013", " \u00ad", " \u2013", "\u2013and", "\u00a0\u00a0", " though"], [" folks", " pricey", "utang", " veggies", "\u4e94\u82b1\u516b", "unky", " stuff", " uncomfort"], [" folks", "\u4e94\u82b1\u516b", " uncomfort", "\u9700\u8c28\u614e", " pricey", "\u9760\u8c31\u7684", " complexities", " plenty"], [" albeit", " though", "\u4e94\u82b1\u516b", " plenty", " folks", " pricey", " complexities", "\u5373\u4fbf\u662f"], [" though", " yet", " albeit", " genuinely", " requisite", " plenty", " arguably", " swiftly"], [" though", " folks", " plenty", " myriad", "though", " arguably", " genuinely", " perhaps"], [" though", " folks", " plenty", " often", " even", " myriad", " arguably", " mostly"], [" though", " even", " arguably", " often", "-esque", " perhaps", " sometimes", " albeit"], [" even", " arguably", " often", " perhaps", " ultimately", " sometimes", " though", " albeit"], [" though", " even", "<|endoftext|>", " ultimately", " arguably", " perhaps", " often", " myriad"], ["<|endoftext|>", " though", " ultimately", "though", "Though", " even", " myriad", " much"], ["\u5e38\u5e38\u4f1a", " even", " ultimately", " often", "\u5f88\u591a\u95ee\u9898", " arguably", "\u751a\u81f3\u4f1a", " harder"], [" even", " ultimately", " often", " arguably", " though", " sometimes", "\u5e38\u5e38\u4f1a", " eventually"], [" even", " ultimately", " often", " sometimes", " though", " much", " eventually", " arguably"], [" though", " arguably", " ultimately", "Though", "\u5373\u4fbf", " even", "though", " sometimes"], [" even", " arguably", " harder", " sometimes", "\u5373\u4fbf", " ultimately", " often", "\u5e38\u5e38\u4f1a"], [" ultimately", " even", " arguably", " sometimes", " often", "\u5373\u4fbf", " eventually", " harder"], [" even", " ultimately", " often", " arguably", " though", " sometimes", " much", " eventually"], [" even", " often", " ultimately", " arguably", " myriad", " much", " sometimes", " many"], [" even", " often", " many", " sometimes", " increasingly", " ultimately", " much", " ,"], [" even", " often", " many", " ,", " sometimes", " much", " more", " eventually"], [" even", " often", " many", " ,", " more", " sometimes", " much", " complex"], [" even", " often", " sometimes", " many", " much", " more", " increasingly", " complex"], [" even", " often", " complex", " sometimes", " heavily", " many", " increasingly", " potentially"], [" often", " complex", " even", " heavily", " increasingly", " sometimes", " harder", " potentially"], [" complex", " often", " heavily", " notoriously", " even", " increasingly", " unpredictable", " inefficient"], [" complex", " often", " even", " inefficient", " unpredictable", " notoriously", " heavily", " slower"], [" even", " complex", " often", " rapidly", " unpredictable", " inefficient", " faster", " slower"], [" complex", " unpredictable", " even", " inefficient", " rapidly", " often", " slower", " faster"], [" complex", " unpredictable", " even", " inefficient", " rapidly", " often", " fragmented", " constantly"], [" complex", " unpredictable", " even", " inefficient", " rapidly", " fragmented", " constantly", " memory"], [" complex", " unpredictable", " rapidly", " garbage", " inefficient", " memory", " fragmented", " constantly"], [" complex", " unpredictable", " inefficient", " garbage", " clutter", " constantly", " fragmentation", " fragmented"], [" unpredictable", " crashes", " complex", " constantly", " inefficient", " rapidly", " rapid", " crashing"], [" unpredictable", " crashes", " rapid", " rapidly", " inefficient", " explosions", " complex", " bursts"], [" unpredictable", " crashes", " rapidly", " explosions", " rapid", " constantly", " bursts", " inefficient"], [" unpredictable", " crashes", " glitches", " bursts", " rapid", " constantly", " explosions", " fragmentation"], [" crashes", " unpredictable", " bursts", " glitches", " rapid", " constantly", " leaks", " collisions"], [" crashes", " glitches", " bursts", " clashes", " unpredictable", " collisions", " leaks", " rapid"], [" glitches", " crashes", " bursts", " collisions", " unpredictable", " leaks", " sudden", " fragmentation"], [" glitches", " crashes", " dumping", " collisions", " fragmentation", " leaks", " unpredictable", " clutter"], [" recursive", " looping", " garbage", " loops", " recycling", " glitches", " fragmentation", " leaks"], [" recursive", " garbage", " collisions", "\u9891\u7e41\u7684", " leaks", " Recursive", " recursion", " syncing"], [" recursive", " garbage", " syncing", "\u9891\u7e41\u7684", " cyclic", " Recursive", " recycling", " recursion"], [" garbage", "\u5783\u573e", " allocating", " realloc", "\u9891\u7e41", "alloc", "\u9891\u7e41\u7684", " allocations"], [" garbage", "\u5783\u573e", " recycling", " GC", " recycle", "\u9891\u7e41", " Recycling", " dealloc"], [" garbage", "\u5783\u573e", " recycling", " GC", " cyclic", " recycle", " Recycling", " allocating"], ["\u9891\u7e41", "alloc", " dealloc", " frequent", " allocations", "\u9891\u7e41\u7684", " allocating", " garbage"], ["\u9891\u7e41", " leaks", " frequent", " garbage", "\u9891\u7e41\u7684", " allocating", " Leak", " GC"], [" allocating", " allocations", "\u9891\u7e41", " frequent", " Allocation", " leaks", " allocation", "alloc"], [" cyclic", " frequent", " Fre", " cycles", "\u9891\u7e41", " Allocation", " Concurrent", " Cycle"], [" Concurrent", " Fre", " cyclic", " Allocation", " frequent", " allocating", " Complex", " Alloc"], [" Concurrent", " Complex", " Circular", " Fre", " Alloc", " Allocation", " Async", " If"]], "p": [[0.5867, 0.2771, 0.0701, 0.0482, 0.0037, 0.0021, 0.0021, 0.0011], [0.5246, 0.1246, 0.0231, 0.0038, 0.0029, 0.0029, 0.0011, 0.001], [0.5868, 0.3141, 0.0482, 0.0375, 0.0031, 0.0031, 0.0015, 0.0015], [0.0136, 0.01, 0.0057, 0.0044, 0.0037, 0.0032, 0.0029, 0.0025], [0.0045, 0.0035, 0.0022, 0.0019, 0.0018, 0.0017, 0.0017, 0.0016], [0.0046, 0.0046, 0.0041, 0.0034, 0.0032, 0.0026, 0.0022, 0.0018], [0.1799, 0.0455, 0.0401, 0.0313, 0.0259, 0.0243, 0.0229, 0.0229], [0.0521, 0.0246, 0.014, 0.0103, 0.0075, 0.0075, 0.0075, 0.0062], [0.2875, 0.2383, 0.0683, 0.0566, 0.0143, 0.0143, 0.0134, 0.0134], [0.0116, 0.0066, 0.0055, 0.0051, 0.0048, 0.0026, 0.0023, 0.0015], [0.4232, 0.1557, 0.1463, 0.0783, 0.0254, 0.0164, 0.0145, 0.0078], [0.0058, 0.0037, 0.0029, 0.0026, 0.0023, 0.0018, 0.0017, 0.0016], [0.0028, 0.0027, 0.0022, 0.0018, 0.0017, 0.0015, 0.0014, 0.0013], [0.004, 0.0019, 0.0017, 0.0014, 0.0012, 0.0011, 0.001, 0.001], [0.0703, 0.0084, 0.0074, 0.007, 0.0065, 0.0065, 0.0051, 0.0045], [0.081, 0.0359, 0.0232, 0.0097, 0.0091, 0.0066, 0.0059, 0.0059], [0.0862, 0.0557, 0.0232, 0.017, 0.017, 0.015, 0.0141, 0.0141], [0.0135, 0.0105, 0.0099, 0.0093, 0.006, 0.006, 0.0056, 0.0053], [0.0143, 0.0112, 0.0082, 0.0072, 0.0053, 0.0053, 0.005, 0.0047], [0.0225, 0.0186, 0.0136, 0.012, 0.0106, 0.0088, 0.0078, 0.0078], [0.7918, 0.0064, 0.0022, 0.0022, 0.0017, 0.0017, 0.0013, 0.0011], [0.0041, 0.0039, 0.003, 0.0028, 0.0027, 0.0025, 0.002, 0.0018], [0.0075, 0.007, 0.0062, 0.0055, 0.0045, 0.0042, 0.0029, 0.0029], [0.0223, 0.0197, 0.0127, 0.0112, 0.0112, 0.0099, 0.0087, 0.0053], [0.0131, 0.0062, 0.0062, 0.0062, 0.0062, 0.0058, 0.0045, 0.004], [0.0035, 0.0033, 0.0033, 0.0027, 0.0025, 0.0024, 0.0021, 0.0017], [0.0075, 0.007, 0.0062, 0.0048, 0.0045, 0.0038, 0.0033, 0.0031], [0.038, 0.0204, 0.0191, 0.0159, 0.0149, 0.0131, 0.0131, 0.0109], [0.0789, 0.0309, 0.0309, 0.0256, 0.0165, 0.0165, 0.0155, 0.0155], [0.2282, 0.1013, 0.0509, 0.0422, 0.0256, 0.0212, 0.0212, 0.0212], [0.2195, 0.0974, 0.0591, 0.0521, 0.0337, 0.0262, 0.0246, 0.0159], [0.3552, 0.0699, 0.0657, 0.0352, 0.031, 0.0292, 0.0257, 0.0101], [0.3901, 0.0986, 0.0466, 0.0341, 0.0151, 0.0118, 0.0111, 0.0104], [0.24, 0.0688, 0.0368, 0.0368, 0.021, 0.0127, 0.0119, 0.0099], [0.0633, 0.0595, 0.0493, 0.0281, 0.0141, 0.0133, 0.0097, 0.008], [0.0813, 0.0674, 0.0233, 0.0181, 0.0181, 0.017, 0.0133, 0.0117], [0.0428, 0.0355, 0.0355, 0.0333, 0.0259, 0.0215, 0.0178, 0.0168], [0.0636, 0.0465, 0.0362, 0.03, 0.0249, 0.0249, 0.0234, 0.022], [0.1235, 0.0454, 0.0401, 0.0377, 0.0312, 0.0202, 0.0148, 0.013], [0.1487, 0.0796, 0.0547, 0.0243, 0.0243, 0.0122, 0.0095, 0.0084], [0.0828, 0.0569, 0.0472, 0.0345, 0.0253, 0.0144, 0.0135, 0.0112], [0.0648, 0.0609, 0.0224, 0.0198, 0.0186, 0.0186, 0.0164, 0.0164], [0.0663, 0.0585, 0.0277, 0.019, 0.0139, 0.0139, 0.0131, 0.0115], [0.0986, 0.032, 0.0282, 0.0234, 0.022, 0.0207, 0.0171, 0.0133], [0.096, 0.0376, 0.0243, 0.0228, 0.0201, 0.0189, 0.0189, 0.0178], [0.0714, 0.0382, 0.0263, 0.0204, 0.0192, 0.018, 0.0141, 0.0141], [0.08, 0.0378, 0.0244, 0.0244, 0.0215, 0.0215, 0.0158, 0.0131], [0.0673, 0.0558, 0.0281, 0.0264, 0.0205, 0.0181, 0.015, 0.0141], [0.066, 0.0582, 0.0376, 0.0275, 0.0275, 0.0214, 0.0201, 0.0178], [0.1767, 0.037, 0.0307, 0.0254, 0.0225, 0.0211, 0.0128, 0.012], [0.0775, 0.0184, 0.0162, 0.0143, 0.0127, 0.0119, 0.0119, 0.0112], [0.0422, 0.0396, 0.0396, 0.0349, 0.0226, 0.0199, 0.0187, 0.0176], [0.0755, 0.038, 0.0203, 0.0191, 0.0179, 0.0169, 0.0169, 0.0169], [0.0767, 0.072, 0.032, 0.03, 0.0234, 0.022, 0.0194, 0.0171], [0.8578, 0.0202, 0.0139, 0.0122, 0.0108, 0.0074, 0.0058, 0.0048], [0.9278, 0.0593, 0.0026, 0.0008, 0.0007, 0.0006, 0.0005, 0.0005], [0.8925, 0.0346, 0.0127, 0.006, 0.0047, 0.0036, 0.0036, 0.0032], [0.2222, 0.0926, 0.0721, 0.0637, 0.0637, 0.0562, 0.0562, 0.0437], [0.2127, 0.1656, 0.069, 0.069, 0.037, 0.037, 0.0326, 0.0306], [0.1583, 0.0902, 0.0796, 0.0796, 0.066, 0.066, 0.0214, 0.0201], [0.1298, 0.1219, 0.0892, 0.0541, 0.0541, 0.0372, 0.0349, 0.0256], [0.1368, 0.0646, 0.0607, 0.0536, 0.0305, 0.0269, 0.0223, 0.0197], [0.2937, 0.1388, 0.048, 0.0398, 0.0291, 0.0257, 0.0241, 0.0227]], "ranks": {"Kotlin": [232881, 184783, 154941, 13637, 18461, 49448, 65351, 128209, 143614, 167709, 164822, 82158, 90781, 142589, 223344, 179360, 168861, 145411, 174658, 218086, 223348, 157469, 175087, 202767, 192349, 123360, 120428, 153739, 133724, 99214, 131677, 105288, 142888, 146001, 206721, 162098, 117190, 100208, 87623, 99977, 103208, 90226, 63276, 60218, 82772, 90794, 106408, 112732, 76623, 57838, 38366, 8414, 1630, 777, 609, 377, 302, 349, 280, 394, 570, 328, 392]}}, {"pos": 588, "top": [[" \u2013", "\u2013", ".", ",", "\u00a0", ".\u2013", "\u4f46\u4e0d\u9650\u4e8e", "\u2013and"], ["\u4f46\u4e0d\u9650\u4e8e", "\u2010", "\u2011", "(\\\"", " \uff5e", "\uff5e", "@\",", " \u2013"], ["\u2018", "\u2013", " \u2013", ".\u2013", "\uff5e", " \u2018", "\u2013and", "\u2011"], ["\u4f46\u4e0d\u9650\u4e8e", "':''", "idere", " \uff62", "flix", "\u4e86", "\u4eba", "\uc3df"], ["\u2018", "@", " \u2018", "\\$", "@\",", "\u4f46\u4e0d\u9650\u4e8e", "er", "@\""], ["\u2018", "\u4e86", "\u4e00", "\u4eba", "\uff5e", "\uff0c", "\u4f46\u4e0d\u9650\u4e8e", ")\uff0c"], ["\u4e86", "\u2018", "\u4f46\u4e0d\u9650\u4e8e", "\u7684", "\u4e00", "\u4e0a", "\u4eba", "\uff5e"], ["\u4e86", "\u4f46\u4e0d\u9650\u4e8e", "\u7684", " \uff62", "\u4e00", "\u4eba", "\u548c", "\uffe5"], ["\u4f46\u4e0d\u9650\u4e8e", "\u4e86", " \uff62", "\u2018", "\u7684", "@\",", "\u4eba", "\u2039"], ["\u4f46\u4e0d\u9650\u4e8e", "\\-", "\u00ad", "@\",", "\u00a2", "\u00a0", "\u2039", "\\$"], ["\u00ad", "\u00a0", "\\-", "\u2018", "@\",", "\u4f46\u4e0d\u9650\u4e8e", "er", "@"], ["\u4f46\u4e0d\u9650\u4e8e", "er", "\u4e86", " \n\t\n", "ernt", "@\",", "ive", "\\-"], ["\u4f46\u4e0d\u9650\u4e8e", "er", "\u00ad", "ive", "ernt", "\u2011", "\\-", "archical"], ["er", "\u4f46\u4e0d\u9650\u4e8e", "\u00ad", "\u00a0", "\\-", "ernt", "archical", "ive"], ["\u00ad", "er", "\\-", "\u00a2", " \u00ad", "\u4f46\u4e0d\u9650\u4e8e", "\u00a0", " \ufffd"], ["\u00ad", "er", " \u00ad", "\u00a0", " \u2018", "\u00a2", "\u2018", " \ufffd"], ["\u00a0", "\u00ad", "er", " \u00ad", "\u2018", "y", "\u2013", " \u2018"], ["\u00ad", "er", "\u00a0", " \u00ad", "\u2018", "ft", "\u2013", "le"], ["er", "\u00ad", " \u00ad", "ft", "le", "lect", "\u00ads", "akin"], ["\u00ad", "\u00a0", "er", "\u2018", " \u00ad", "\u00a2", " \u2018", "\u2013"], ["<|endoftext|>", "\u00a0", " \n\n", "\u00ad", "er", "\u2013", "Though", "le"], ["\u9891\u7e41\u7684", "peated", "er", "idle", "ely", "asional", "erings", "akin"], ["\u9891\u7e41\u7684", " frequ", "er", "peated", " frequent", "requent", "ely", " \u00ad"], ["\u00a0", " \u00ad", "\u00ad", " \u2018", "er", " frequent", "<|endoftext|>", " \ufffd"], ["\u00a0", " \u00ad", " \n\n", "\u00ad", " frequent", "\u9891\u7e41\u7684", " \u2018", "\u2013"], ["\u9891\u7e41\u7684", " frequent", " \n\n", "er", " frequ", "requent", "\u9891\u7e41", "quent"], ["\u9891\u7e41\u7684", " frequent", " disruptions", "er", "requent", " frequ", "peated", "quent"], [" \n\n", " frequent", "\u2011", "\u9891\u7e41\u7684", " occasional", "\n\n", " frequ", " \u2018"], [" \n\n", " frequent", "\u9891\u7e41\u7684", "\u2011", "\u9891\u7e41", " disruptions", " occasional", " bursts"], ["\u2011", " \n\n", " frequent", "\u9891\u7e41\u7684", " bursts", "er", " disruptions", "\u9891\u7e41"], [" frequent", "er", " bursts", " rapid", " occasional", "\u9891\u7e41\u7684", " frequ", " often"], [" frequent", "er", "\u2011", " often", " rapid", " occasional", " frequently", " repetitive"], ["\u2011", " frequent", "er", " bursts", " clashes", " repetitive", " occasional", " rapid"], [" frequent", "\u2011", "\u9891\u7e41\u7684", " bursts", " repetitive", "\u9891\u7e41", " spikes", " rapid"], ["\u9891\u7e41\u7684", " frequent", "\u9891\u7e41", "quent", "\u2011", "requent", "peated", " glitches"], ["\u9891\u7e41\u7684", "\u9891\u7e41", " frequent", "\u2011", "requent", "peated", "/fast", "quent"], ["\u9891\u7e41\u7684", "\u9891\u7e41", " frequent", "requent", "peated", "\u591a\u6b21", "/fast", " rapid"], ["\u9891\u7e41\u7684", "\u9891\u7e41", " frequent", " rapid", "requent", "\u2011", "peated", " bursts"], ["\u9891\u7e41\u7684", "\u9891\u7e41", " frequent", " rapid", "requent", " transient", " interactions", " frequently"], ["\u9891\u7e41\u7684", "\u9891\u7e41", " frequent", " rapid", " transient", " garbage", " scav", "requent"], ["\u9891\u7e41", " frequent", "\u9891\u7e41\u7684", " transient", " garbage", " rapid", " cycles", " scav"], [" frequent", "\u9891\u7e41", "\u9891\u7e41\u7684", " transient", " garbage", " cycles", " rapid", " recycling"], [" frequent", "\u9891\u7e41", "\u9891\u7e41\u7684", " transient", " garbage", " rapid", " recycling", " cycles"], ["\u9891\u7e41", " frequent", " rapid", "\u9891\u7e41\u7684", " destruction", " transient", " garbage", " fragmentation"], [" rapid", "\u9891\u7e41\u7684", " frequent", "\u9891\u7e41", " fragmentation", " destruction", " turnover", " garbage"], [" rapid", "\u9891\u7e41\u7684", " frequent", "\u9891\u7e41", " fragmentation", " destruction", " turnover", " bursts"], [" rapid", "\u9891\u7e41\u7684", " frequent", "\u9891\u7e41", " turnover", " destruction", " bursts", " fragmentation"], ["\u9891\u7e41\u7684", " rapid", "\u9891\u7e41", " frequent", " turnover", " destruction", " fragmentation", " turnovers"], ["\u9891\u7e41\u7684", " destruction", "\u9891\u7e41", " rapid", "requent", " fragmentation", " turnovers", " bursts"], ["\u9891\u7e41\u7684", " turnovers", " bursts", "\u9891\u7e41", "requent", " turnover", "/tiny", " destruction"], ["\u9891\u7e41\u7684", " turnovers", " bursts", "quent", "\u9891\u7e41", "\u9500\u6bc1", "/tiny", "/fast"], [" cleanup", "\u5783\u573e", " instantiation", "/tiny", "quent", " garbage", " lifecycle", " allocations"], ["quent", "/tiny", "\u8fdb\u51fa", " instantiation", " allocations", "\u9891\u7e41\u7684", " lifecycle", "\u5783\u573e"], ["quent", " instantiation", "/tiny", " allocations", "/small", " conversions", " garbage", " lifecycle"], [" allocations", "alloc", " allocation", "quent", " alloc", "Allocation", "malloc", " Allocation"], [" allocations", "alloc", " allocation", " garbage", "quent", " alloc", " Allocation", "Allocation"], [" GC", " allocations", "GC", " garbage", " allocation", "_GC", ".gc", "alloc"], [" allocations", " GC", " allocation", "alloc", "GC", " alloc", " Allocation", "Allocation"], [" allocations", " GC", " allocation", "GC", "alloc", " alloc", "_GC", ".gc"], [" allocation", " allocations", "alloc", " alloc", " allocating", " Allocation", "Alloc", "Allocation"], [" allocations", " allocation", "alloc", " alloc", " allocating", " Allocation", " Alloc", "Allocation"], [" allocation", " allocations", "alloc", " alloc", " allocating", " Allocation", " Alloc", "_alloc"], ["quent", " allocation", " allocations", "alloc", " alloc", " Allocation", " allocating", " Alloc"]], "p": [[0.7732, 0.0676, 0.03, 0.0206, 0.0104, 0.0055, 0.0038, 0.0036], [0.5415, 0.0473, 0.0418, 0.0392, 0.0346, 0.0154, 0.0144, 0.0136], [0.3861, 0.2067, 0.1178, 0.1039, 0.0317, 0.0247, 0.0232, 0.0085], [0.4124, 0.0141, 0.0097, 0.0091, 0.0086, 0.0059, 0.0059, 0.0034], [0.4978, 0.0525, 0.0493, 0.0281, 0.0205, 0.0133, 0.0117, 0.011], [0.1492, 0.1162, 0.0354, 0.0294, 0.0294, 0.0276, 0.019, 0.0167], [0.1846, 0.153, 0.0928, 0.0529, 0.0497, 0.0235, 0.0235, 0.022], [0.229, 0.1016, 0.033, 0.0291, 0.0291, 0.0227, 0.0129, 0.0114], [0.14, 0.0904, 0.0229, 0.0215, 0.0139, 0.0115, 0.0089, 0.0074], [0.0772, 0.0413, 0.0322, 0.0236, 0.0183, 0.0098, 0.0087, 0.0076], [0.0695, 0.0652, 0.0508, 0.0448, 0.0308, 0.029, 0.0256, 0.024], [0.1865, 0.0174, 0.0127, 0.0082, 0.0077, 0.0064, 0.006, 0.0053], [0.2028, 0.0375, 0.0122, 0.0101, 0.0084, 0.0069, 0.0061, 0.0054], [0.0995, 0.0728, 0.0323, 0.0072, 0.0068, 0.0064, 0.0064, 0.006], [0.114, 0.0446, 0.0254, 0.0198, 0.0186, 0.0154, 0.0154, 0.0154], [0.3172, 0.0665, 0.0625, 0.0551, 0.0203, 0.0116, 0.0116, 0.0096], [0.3857, 0.1608, 0.0861, 0.0192, 0.0124, 0.0085, 0.008, 0.008], [0.1699, 0.0802, 0.0708, 0.0245, 0.0158, 0.0075, 0.007, 0.0058], [0.043, 0.0335, 0.007, 0.0058, 0.0048, 0.0048, 0.004, 0.004], [0.0531, 0.0469, 0.0208, 0.0152, 0.0092, 0.006, 0.0056, 0.0056], [0.131, 0.0846, 0.0156, 0.0147, 0.013, 0.0074, 0.0061, 0.0058], [0.006, 0.0056, 0.0053, 0.0044, 0.0036, 0.0032, 0.003, 0.0028], [0.0146, 0.0078, 0.0069, 0.0065, 0.0054, 0.0047, 0.0042, 0.0037], [0.0656, 0.0351, 0.0213, 0.02, 0.0121, 0.0101, 0.0078, 0.0078], [0.046, 0.046, 0.0432, 0.0358, 0.0116, 0.008, 0.0071, 0.0071], [0.0262, 0.018, 0.0149, 0.0124, 0.0096, 0.0091, 0.0075, 0.0062], [0.033, 0.0273, 0.0176, 0.0146, 0.0137, 0.0107, 0.0078, 0.0078], [0.1435, 0.0768, 0.0411, 0.022, 0.0151, 0.0142, 0.0125, 0.0111], [0.0656, 0.0511, 0.0398, 0.031, 0.0129, 0.0129, 0.0121, 0.0121], [0.0807, 0.0381, 0.0336, 0.018, 0.0169, 0.014, 0.0116, 0.0085], [0.2262, 0.0326, 0.0288, 0.0186, 0.0164, 0.0113, 0.0106, 0.0099], [0.2346, 0.0462, 0.0218, 0.0205, 0.015, 0.0132, 0.0091, 0.0085], [0.196, 0.1434, 0.0363, 0.0171, 0.0111, 0.0104, 0.0098, 0.0098], [0.1091, 0.1025, 0.0276, 0.019, 0.0139, 0.0139, 0.013, 0.0122], [0.0769, 0.0466, 0.0387, 0.0301, 0.0301, 0.0194, 0.0125, 0.0072], [0.104, 0.0631, 0.0338, 0.0218, 0.0117, 0.011, 0.0097, 0.0097], [0.3728, 0.121, 0.0505, 0.0077, 0.0077, 0.0068, 0.0053, 0.0053], [0.2712, 0.0937, 0.073, 0.0153, 0.0119, 0.0099, 0.0064, 0.006], [0.3544, 0.1388, 0.1225, 0.0156, 0.0121, 0.0107, 0.0051, 0.0045], [0.1906, 0.179, 0.158, 0.0258, 0.0201, 0.0189, 0.013, 0.0114], [0.2167, 0.1912, 0.1235, 0.0354, 0.0189, 0.0189, 0.0167, 0.0115], [0.283, 0.2497, 0.118, 0.0298, 0.028, 0.0218, 0.016, 0.011], [0.16, 0.1033, 0.0756, 0.0627, 0.0589, 0.0589, 0.0231, 0.0217], [0.1172, 0.0858, 0.0806, 0.0757, 0.0336, 0.0296, 0.0262, 0.0204], [0.2787, 0.0799, 0.0705, 0.0516, 0.0354, 0.0313, 0.0178, 0.0167], [0.1751, 0.1364, 0.0937, 0.0644, 0.0304, 0.0237, 0.0196, 0.0173], [0.2541, 0.1059, 0.0775, 0.0684, 0.0303, 0.0285, 0.0173, 0.0162], [0.0849, 0.0849, 0.0704, 0.0454, 0.0427, 0.0293, 0.0259, 0.0189], [0.1077, 0.035, 0.0308, 0.0226, 0.0199, 0.0176, 0.0155, 0.0146], [0.0621, 0.0293, 0.0275, 0.0215, 0.0122, 0.0115, 0.0115, 0.0115], [0.0325, 0.0144, 0.012, 0.0105, 0.0105, 0.0093, 0.0093, 0.0087], [0.0268, 0.0222, 0.0196, 0.0153, 0.0144, 0.0127, 0.0127, 0.0127], [0.0794, 0.0794, 0.0227, 0.0201, 0.0138, 0.013, 0.0122, 0.0089], [0.142, 0.0714, 0.0592, 0.028, 0.0117, 0.0091, 0.0091, 0.0091], [0.8738, 0.0339, 0.0233, 0.016, 0.0125, 0.0067, 0.0046, 0.0046], [0.8785, 0.0341, 0.0265, 0.0125, 0.0098, 0.0067, 0.0059, 0.0046], [0.4187, 0.2878, 0.1359, 0.0728, 0.0184, 0.0112, 0.0112, 0.0112], [0.7342, 0.0683, 0.0683, 0.0532, 0.0323, 0.0119, 0.0064, 0.003], [0.5762, 0.1651, 0.1001, 0.078, 0.0325, 0.0064, 0.0056, 0.0056], [0.3998, 0.3998, 0.1298, 0.0421, 0.0073, 0.0073, 0.0035, 0.0031], [0.4886, 0.3805, 0.0584, 0.0276, 0.013, 0.0089, 0.0042, 0.0037], [0.478, 0.3723, 0.0392, 0.0306, 0.027, 0.0185, 0.0068, 0.0053], [0.3299, 0.2268, 0.1559, 0.1214, 0.0475, 0.0225, 0.0175, 0.0136]], "ranks": {"Kotlin": [205488, 191756, 166257, 46861, 102377, 126499, 126650, 137899, 132649, 208047, 189216, 166869, 141656, 170118, 219888, 207143, 225253, 224371, 215735, 222295, 241152, 225842, 237711, 243931, 240860, 224373, 194986, 223035, 159054, 90954, 156625, 159934, 161002, 152581, 178657, 148924, 98410, 79530, 63734, 40557, 38042, 43317, 24373, 25261, 29373, 39367, 43066, 40843, 42197, 47747, 61542, 18224, 1949, 1137, 632, 568, 1425, 1406, 2439, 2365, 1861, 3611, 2897]}}, {"pos": 589, "top": [[".", ",", "?", ";", "\u2013", " \u2013", " ", ":"], [":\\\"", " \u2013", "(\\\"", " \\\"", " Harbor", "emente", " (@", " DVR"], ["\u2013", " \u2013", ".", ",", "\u2026", ".\u2013", "\u2013and", "?"], [" Strec", "\u65f6\u6377", "uggy", "ieli", "eenth", "\u0e19\u0e32\u0e04\u0e21", " Blowjob", "emente"], ["&", "@", ".", "#", "&(", "(@", ".)", ".*"], [".", "\u2013", "\u00a0\u00a0", "\u00a0\u00a0\u00a0\u00a0", "\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0", "\u3002", ",", "\u00a0"], ["\u00a0", ".", "\u2013", "&", "\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0", "\u3002", ".\u201d", "\u00a0\u00a0\u00a0\u00a0"], ["\u00a0", ".", "ity", "\u2013", ".)", ".\"", "&", ")\""], ["\u00a0", ".", ",", " [\u2026]", "\u2013", ".\u201d", "&", ".)"], ["\u2013", "\u00a0", " frequent", ",", "\u2014\"", "\u00ad", " [\u2026]", "\u2014"], ["\u00a0", "\u2013", " [\u2026]", " frequent", "&", ",", "\u00ad", " \u2013"], [" frequent", "ity", " attendees", " recurring", "\u00a0", " interactions", " advancements", "ities"], [" frequent", " recurring", " interactions", "ity", " occasional", " attendees", "\u2013", " visits"], [" frequent", "\u2013", "\u00a0", " recurring", " occasional", " \u2013", " visits", " rapid"], [" frequent", "\u2013", "\u00a0", " ", " \u2013", " occasional", " frequently", " efforts"], [" frequent", "\u00a0", "\u2013", " \u2013", " ", "\u00ad", " s", " multiple"], ["\u00a0", "\u2013", " frequent", " \u2013", "<|endoftext|>", ",", "\u00ad", "\ufffd"], ["\u00a0", "\u2013", " frequent", " \u2013", " rapid", "\u00ad", " recurring", " occasional"], [" frequent", "\u2013", " \u2013", " rapid", " recurring", " occasional", "\u00a0", " visits"], ["\u2013", " frequent", "<|endoftext|>", "\u00a0", " \u2013", " rapid", "\u2014", " multiple"], ["<|endoftext|>", "\u00a0", " \n\n", "\u2013", " frequent", "  \n\n", " f", " "], [" frequent", " disruptions", " recurring", " interactions", " rapid", " clashes", " efforts", " bouts"], [" frequent", " rapid", " efforts", " disruptions", " interactions", " recurring", " bouts", " attempts"], ["<|endoftext|>", " frequent", " \u2013", "\u2013", " f", " ,", "\u00a0", " s"], [" frequent", "\u2013", " \n\n", " \u2013", " ", " attempts", " interactions", " rapidly"], [" frequent", " interactions", " disruptions", " recurring", " rapid", " events", " efforts", " attempts"], [" frequent", " interactions", " trips", " disruptions", " rapid", " events", " recurring", " rapidly"], [" frequent", " ,", " rapidly", " rapid", " frequently", " occasional", " heavy", " trips"], [" frequent", " rapid", " trips", " interactions", " rapidly", " recurring", " events", " multiple"], [" frequent", " interactions", " rapid", " trips", " traffic", " events", " workflows", " recurring"], [" frequent", " rapid", " trips", " multiple", " events", " interactions", " traffic", " recurring"], [" frequent", " multiple", " rapid", " trips", " recurring", " rapidly", " events", " social"], [" frequent", " rapid", " multiple", " /", " rapidly", " events", " trips", " high"], [" frequent", " rapid", " multiple", " trips", " interactions", " rapidly", " shifts", " traffic"], [" frequent", " rapid", " interactions", " multiple", " trips", " shifts", " recurring", " /"], [" /", " interactions", " frequent", " rapid", " multiple", " events", " complex", " recurring"], [" interactions", " frequent", " multiple", " rapid", " recurring", " rapidly", " complex", " events"], [" rapid", " frequent", " rapidly", " interactions", " multiple", " recurring", " events", " complex"], [" rapid", " rapidly", " transient", " interactions", " frequent", " garbage", " transfers", " temporary"], [" rapidly", " rapid", " transient", " garbage", " temporary", " frequent", " scav", " interactions"], [" transient", " rapidly", " rapid", " memory", " garbage", " temporary", " frequent", " allocations"], [" transient", " rapidly", " garbage", " rapid", " frequent", " memory", " allocations", " cycles"], [" transient", " rapidly", " rapid", " temporary", " garbage", " ephem", " fragmentation", " cycles"], [" transient", " rapid", " ephem", " rapidly", " temporary", " creation", " fleeting", " allocations"], [" rapid", " transient", " rapidly", " creation", " temporary", " ephem", " fragmentation", " cycles"], [" rapid", " creation", " rapidly", " transient", " transfers", " interactions", " fragmentation", " ephem"], [" rapid", " creation", " interactions", " rapidly", " transfers", " frequent", " transient", " cycles"], [" creation", " rapid", " interactions", " transient", " transfers", " fragmentation", " creations", " destruction"], [" creation", " rapid", " interactions", " creations", " fragmentation", " destruction", " bursts", " ephem"], [" bursts", " turnovers", " turnover", " creation", " creations", " interactions", " rapid", " transfers"], [" turnovers", " turnover", " bursts", " conversions", " births", " cleanup", " fragmentation", " collisions"], [" cleanup", " conversions", " turnover", " allocations", " lifecycle", " bursts", " cycles", " transfers"], [" allocations", " creation", " lifecycle", " conversions", " cycles", " bursts", " callbacks", " births"], [" allocations", " instantiation", " creation", " conversions", " lifecycle", " callbacks", " serialization", " garbage"], [" allocations", " allocation", "alloc", " alloc", " garbage", " Allocation", "Allocation", " allocating"], [" allocations", " allocation", "alloc", " garbage", " alloc", " Allocation", "Allocation", " allocating"], [" allocations", " allocation", " garbage", "alloc", " alloc", " GC", " Allocation", "Allocation"], [" allocations", " allocation", "alloc", " alloc", " Allocation", "Allocation", " allocating", "Alloc"], [" allocations", " allocation", "alloc", " GC", " alloc", " Allocation", "Allocation", " garbage"], [" allocations", " allocation", " alloc", "alloc", " Allocation", " allocate", " allocating", "Alloc"], [" allocations", " allocation", " alloc", "alloc", " Allocation", " plugin", " allocating", " allocate"], [" allocations", " allocation", " alloc", " Allocation", "alloc", " plugin", " allocating", " allocate"], [" allocations", " allocation", " alloc", " object", " plugin", " allocate", " Allocation", "alloc"]], "p": [[0.6209, 0.1894, 0.0373, 0.0329, 0.02, 0.02, 0.0121, 0.0073], [0.0166, 0.0083, 0.0065, 0.0065, 0.0047, 0.0027, 0.0025, 0.0024], [0.4995, 0.4408, 0.041, 0.003, 0.0025, 0.0022, 0.0013, 0.0008], [0.0081, 0.0022, 0.0014, 0.0013, 0.0012, 0.0012, 0.0012, 0.0012], [0.1746, 0.0995, 0.0684, 0.0442, 0.0209, 0.0209, 0.0173, 0.0173], [0.0596, 0.0362, 0.0219, 0.0206, 0.0133, 0.0125, 0.0125, 0.011], [0.4324, 0.0906, 0.0456, 0.0294, 0.026, 0.0244, 0.0202, 0.019], [0.1592, 0.0586, 0.0314, 0.0158, 0.0148, 0.0123, 0.0123, 0.0096], [0.5863, 0.1308, 0.0425, 0.0274, 0.0214, 0.0065, 0.0061, 0.0057], [0.1107, 0.104, 0.0232, 0.0159, 0.0132, 0.0132, 0.0075, 0.0066], [0.4062, 0.1164, 0.1093, 0.0355, 0.0148, 0.0096, 0.0074, 0.007], [0.144, 0.0195, 0.0118, 0.0118, 0.0092, 0.0076, 0.0076, 0.0072], [0.2492, 0.0159, 0.0141, 0.0085, 0.0071, 0.0062, 0.0062, 0.0062], [0.2321, 0.0551, 0.0277, 0.009, 0.0066, 0.0055, 0.0051, 0.0051], [0.1135, 0.0536, 0.0444, 0.0136, 0.012, 0.0077, 0.0056, 0.0056], [0.1077, 0.0893, 0.0449, 0.0176, 0.0146, 0.0088, 0.0069, 0.0054], [0.4786, 0.1371, 0.0287, 0.0186, 0.0145, 0.0113, 0.0057, 0.0057], [0.1159, 0.1089, 0.0483, 0.0189, 0.007, 0.0065, 0.0054, 0.0051], [0.0951, 0.0372, 0.0146, 0.0121, 0.0088, 0.0065, 0.0061, 0.0061], [0.0963, 0.0584, 0.0516, 0.0401, 0.0333, 0.0095, 0.0054, 0.0048], [0.9771, 0.0015, 0.0012, 0.001, 0.0007, 0.0004, 0.0002, 0.0002], [0.0467, 0.0172, 0.0111, 0.0104, 0.0067, 0.0059, 0.0056, 0.0049], [0.0659, 0.0095, 0.0089, 0.0079, 0.0074, 0.0061, 0.0061, 0.0058], [0.2437, 0.0241, 0.0114, 0.0094, 0.0083, 0.0069, 0.0065, 0.0065], [0.064, 0.0221, 0.0172, 0.0126, 0.0104, 0.0081, 0.0081, 0.0081], [0.0815, 0.034, 0.0194, 0.016, 0.0142, 0.0117, 0.0104, 0.0097], [0.0513, 0.0258, 0.0201, 0.0177, 0.0147, 0.013, 0.0108, 0.0089], [0.055, 0.0313, 0.0244, 0.0168, 0.0084, 0.0084, 0.0079, 0.0074], [0.0606, 0.0345, 0.0209, 0.0174, 0.0153, 0.0127, 0.0105, 0.0082], [0.0383, 0.0318, 0.028, 0.0247, 0.0141, 0.0103, 0.0091, 0.0091], [0.09, 0.0375, 0.0292, 0.0156, 0.0156, 0.0147, 0.0147, 0.013], [0.0597, 0.0265, 0.0234, 0.0125, 0.0097, 0.0097, 0.0092, 0.0086], [0.0693, 0.0225, 0.0198, 0.0186, 0.0128, 0.0113, 0.0106, 0.0083], [0.0666, 0.043, 0.0245, 0.0158, 0.014, 0.0109, 0.0109, 0.0109], [0.0566, 0.0303, 0.0236, 0.0208, 0.0162, 0.0152, 0.0111, 0.0092], [0.034, 0.03, 0.0265, 0.0249, 0.0194, 0.0194, 0.016, 0.011], [0.0399, 0.0352, 0.0331, 0.0311, 0.0292, 0.0188, 0.0188, 0.0188], [0.0618, 0.0331, 0.0331, 0.0274, 0.0214, 0.0214, 0.0177, 0.0177], [0.0422, 0.0397, 0.0397, 0.029, 0.029, 0.0241, 0.0241, 0.0165], [0.099, 0.0771, 0.0639, 0.0468, 0.0235, 0.0235, 0.0221, 0.0162], [0.0555, 0.049, 0.049, 0.0336, 0.0316, 0.0246, 0.0217, 0.0192], [0.0994, 0.0683, 0.0532, 0.0532, 0.0343, 0.0343, 0.0251, 0.0162], [0.2043, 0.0585, 0.055, 0.0334, 0.0294, 0.0294, 0.0215, 0.0179], [0.1011, 0.0739, 0.0421, 0.0372, 0.0328, 0.029, 0.0212, 0.0165], [0.1623, 0.0597, 0.0495, 0.0362, 0.0282, 0.0265, 0.0206, 0.0171], [0.1127, 0.0567, 0.0441, 0.0344, 0.0251, 0.0208, 0.0196, 0.0162], [0.1858, 0.0532, 0.0441, 0.0285, 0.0184, 0.0152, 0.0152, 0.0143], [0.0877, 0.0824, 0.0603, 0.0285, 0.0251, 0.0222, 0.0184, 0.0184], [0.1468, 0.0575, 0.0477, 0.0395, 0.024, 0.0225, 0.0155, 0.0155], [0.0626, 0.0487, 0.0458, 0.0357, 0.0357, 0.0216, 0.0203, 0.0191], [0.061, 0.0419, 0.0239, 0.0224, 0.0154, 0.0145, 0.0128, 0.0128], [0.1667, 0.0308, 0.029, 0.029, 0.0272, 0.0226, 0.0212, 0.0176], [0.0534, 0.0534, 0.0442, 0.0367, 0.0345, 0.0268, 0.0268, 0.0252], [0.1286, 0.0647, 0.0647, 0.0571, 0.0444, 0.0287, 0.021, 0.0164], [0.9755, 0.0158, 0.0035, 0.0021, 0.0005, 0.0004, 0.0004, 0.0004], [0.9767, 0.0158, 0.0027, 0.0017, 0.0011, 0.0005, 0.0004, 0.0002], [0.9631, 0.0257, 0.0045, 0.0024, 0.0013, 0.001, 0.0006, 0.0004], [0.9717, 0.0229, 0.0031, 0.001, 0.0005, 0.0002, 0.0001, 0.0001], [0.954, 0.0419, 0.0013, 0.0006, 0.0006, 0.0006, 0.0002, 0.0002], [0.8887, 0.1061, 0.0025, 0.0015, 0.0006, 0.0001, 0.0001, 0.0001], [0.9367, 0.0599, 0.0014, 0.0006, 0.0005, 0.0002, 0.0002, 0.0001], [0.8108, 0.1809, 0.0043, 0.0011, 0.0007, 0.0004, 0.0004, 0.0003], [0.6054, 0.3672, 0.0142, 0.0067, 0.0022, 0.001, 0.0008, 0.0006]], "ranks": {"Kotlin": [180380, 125715, 142251, 16885, 60428, 79332, 110473, 161466, 184329, 221905, 188627, 119127, 106916, 158720, 191524, 137622, 168951, 150229, 152462, 197350, 207973, 151267, 172001, 187234, 133904, 65758, 41009, 65240, 33499, 22680, 31943, 38823, 47429, 30113, 41951, 21358, 6690, 6648, 7064, 2659, 2334, 3640, 2620, 2566, 3367, 4773, 4956, 5135, 3820, 2465, 5801, 1372, 186, 110, 137, 113, 201, 227, 260, 243, 265, 285, 310]}}, {"pos": 590, "top": [[".", ",", " \u2013", ";", " ", " [\u2026]", "\",", ":"], [" (\u201c", "\u0629", " \u2013", "  \n\n", " (\\", "\u2011", "\u201d,", "ation"], [",", ".", " \u2013", "\u2013", ";", "\u2026..", " [\u2026]", " (\u2026)"], [" Strec", " Blowjob", " \u041a\u0440\u0430\u0441\u0438", " cumshot", " \u041f\u0440\u043e\u0438\u0441\u0448\u0435\u0441\u0442\u0432\u0438\u044f", " \u0417\u043e\u043b\u043e", "\ufffd\ufffd", "\u0629"], [" (\u201c", " (@", " \u201c.", " [@", "\u0629", "@$", " ($", "@"], [" (\u201c", " \u201c.", "\u0629", "=\u201d", " (\"-", " \u201c", " LoggerFactory", " Modification"], [" (\u201c", ".\u201d", "\u0629", " [$", " \u201c.", "  \n\n", "\u201d", ".\""], ["ation", "\u0629", "\ufffd\ufffd", " (\u201c", " [$", "\u17cb", "cg", "erator"], ["ation", " [$", ".\u201d", "\ufffd\ufffd", " (\u201c", ".\u201d*", " [...]", " [."], ["ation", "\ufffd\ufffd", " \u0442\u0440\u0451", " [$", "\u17cb", "-$", ";$", " \u0420\u0430\u0437\u0443"], ["ation", " [$", ".&", " $", ".*", ".$", "\ufffd\ufffd", ";$"], ["ation", " [$", " \u0420\u0430\u0437\u0443", "\u6765\u5f97\u53ca", " \u0442\u0440\u0451", " \u0417\u043e\u043b\u043e", "\ufffd\ufffd", "\u17cb"], ["ation", "\u6765\u5f97\u53ca", " Allocator", " [$", "ally", "erator", " \u0420\u0430\u0437\u0443", "\u0629"], ["\u2014\"", "ation", "e", "\u2014", "al", "-$", "\u0629", "\u6765\u5f97\u53ca"], ["e", "\u2014", "\u2014\"", "ation", " requisite", "o", " $", "l"], ["e", " requisite", "o", "ation", "\u2014", " potentially", "al", " disparate"], ["e", "o", ",", "\u2013", "t", "\u00a0", "d", "al"], ["e", "o", "\u062a", "ation", "\u0629", "al", " requisite", " entirety"], ["e", "\u0629", "\u062a", "ation", "\ufffd\ufffd", "aq", "-&", "o"], ["e", "-&", "\ufffd\ufffd", "\u062a", " &", " [$", "/$", "\u0629"], ["<|endoftext|>", "e", " \n\n", "\u00a0", "d", "\u2014", "t", "&"], ["e", "ation", " &", "\ufffd\ufffd", "erator", " allocator", " entirety", "ease"], ["e", " &", "ation", "\ufffd\ufffd", "ease", " resources", "d", " allocator"], ["<|endoftext|>", "e", "\u00a0", " &", "\u2013", "&", "d", "o"], ["e", " \n\n", "&", "  \n\n", "<|endoftext|>", "\u00a0", "\u2011", "d"], ["e", "\u2011", " *__", " .*", " allocator", " [...]", " ____", " **"], ["\n\n", " *__", " allocator", " \n\n", " .*", "e", " ____", " **"], [" ,", "\n\n", " and", " _", " &", " \n\n", "e", " rapidly"], [" allocator", " .*", " .**", " scav", " amort", " storage", "e", " allocations"], [" allocator", " .**", " **", " .*", " scav", " garbage", " amort", " ____"], [" allocator", " **", " .**", " scav", " garbage", " storage", " space", " costs"], [" **", " .**", " and", " /", " .*", " *", " garbage", " ."], [" /", " and", " scav", " shifting", " costs", " garbage", " budgets", " for"], [" scav", " budgets", " garbage", " cheap", " shifts", " amort", " shifting", " costs"], [" scav", " amort", " allocator", " budgets", " shifts", " consumption", " lifecycle", " garbage"], [" /", " scav", " *", "-heavy", " allocator", "\u2011", " amort", " lifecycle"], [" scav", " allocations", " budgets", " allocator", "-heavy", " costs", " /", " garbage"], [" scav", " allocations", " /", " rapidly", " allocator", " budgets", " garbage", " rapid"], [" garbage", " scav", " allocations", " cheap", " inefficient", " transient", " consumption", " rapidly"], [" allocations", " scav", " garbage", " cheap", " budgets", " transient", " memory", " allocation"], [" allocations", " allocation", " garbage", " memory", " scav", " cheap", " budgets", " lifecycle"], [" allocations", " recycling", " allocation", " garbage", " amort", " memory", " recycle", " lifecycle"], [" allocations", " recycling", " amort", " garbage", " recycle", " allocation", " budgets", " transient"], [" allocations", " amort", " allocation", " garbage", " fragmentation", " recycling", " ephem", " churn"], [" allocations", " fragmentation", " rapid", " costs", " amort", " cheap", " garbage", " churn"], [" allocations", " fragmentation", " recycling", " cheap", " destruction", " churn", " garbage", " creation"], ["-heavy", " destruction", " allocations", " creation", " accumulation", " rapid", " lifecycle", " costs"], ["/", "-heavy", " during", " destruction", " churn", " cheap", " creation", " allocations"], ["/", "-heavy", "/free", "/de", " destruction", "/d", " churn", " during"], ["/", "-heavy", "/de", "/free", " churn", "/d", "/A", "/rem"], ["/", "/de", "-heavy", "/delete", "/d", "/A", "/rem", "/free"], ["/", "/de", "/delete", "/d", "-heavy", "()/", "/rem", "+/"], ["/", "/delete", "/de", "/d", "()/", "/D", "/rem", "-heavy"], ["/", "/delete", "/de", "-heavy", "/Delete", "/free", "()/", "/d"], ["/delete", "/", "/al", " dealloc", "/de", " garbage", "\u9500\u6bc1", "/free"], [" garbage", " dealloc", " recycling", "/delete", "/", "dealloc", "/free", " disposal"], [" garbage", "\u5783\u573e", " disposal", " dealloc", " recycling", " GC", "/", "dealloc"], ["/release", "/free", " garbage", " dealloc", "dealloc", "/de", " freeing", "\u91ca\u653e"], ["/release", "/free", " garbage", " dealloc", " disposal", "\u91ca\u653e", " freeing", " release"], [" deal", " dealloc", "dealloc", "/de", "/free", "/release", " disposal", "Deal"], [" deal", "/de", " dealloc", "/", "/free", "dealloc", "Deal", "/release"], ["/de", " deal", "/", " dealloc", "dealloc", "/release", "/free", "Deal"], ["/de", "/", " deal", "/c", " dealloc", " in", "/d", "/al"]], "p": [[0.6286, 0.2969, 0.0178, 0.0123, 0.0058, 0.0048, 0.0017, 0.0014], [0.0584, 0.0401, 0.0259, 0.0215, 0.0054, 0.0054, 0.0051, 0.0048], [0.2782, 0.1912, 0.0961, 0.0621, 0.0401, 0.0312, 0.0189, 0.0178], [0.0146, 0.0137, 0.005, 0.0047, 0.0047, 0.0047, 0.0044, 0.0042], [0.1046, 0.0385, 0.0249, 0.0104, 0.0097, 0.0091, 0.0086, 0.0071], [0.0413, 0.0343, 0.0053, 0.0034, 0.003, 0.0026, 0.0022, 0.0022], [0.1308, 0.07, 0.0177, 0.0166, 0.0156, 0.0114, 0.0107, 0.0101], [0.1139, 0.0088, 0.0083, 0.006, 0.0057, 0.0053, 0.0034, 0.0032], [0.1045, 0.0595, 0.0559, 0.0125, 0.0103, 0.0097, 0.0081, 0.0076], [0.0325, 0.0127, 0.0093, 0.0073, 0.005, 0.0047, 0.0047, 0.0044], [0.1177, 0.0382, 0.0117, 0.0117, 0.0097, 0.0091, 0.0071, 0.0071], [0.0294, 0.0102, 0.0102, 0.0062, 0.0051, 0.0045, 0.0045, 0.0029], [0.0428, 0.0102, 0.0054, 0.0037, 0.0037, 0.0037, 0.0035, 0.0035], [0.0186, 0.0186, 0.0175, 0.0078, 0.0061, 0.0057, 0.0042, 0.0037], [0.0641, 0.0222, 0.0208, 0.0092, 0.0087, 0.006, 0.0053, 0.0041], [0.1854, 0.0081, 0.0063, 0.0049, 0.0038, 0.0036, 0.0036, 0.0034], [0.577, 0.0306, 0.0099, 0.0082, 0.0053, 0.0053, 0.0039, 0.0037], [0.134, 0.0097, 0.0052, 0.0046, 0.0036, 0.0034, 0.0022, 0.002], [0.1105, 0.0066, 0.0062, 0.0055, 0.0043, 0.0038, 0.0038, 0.0033], [0.1202, 0.0056, 0.005, 0.0039, 0.0036, 0.0034, 0.0034, 0.003], [0.7612, 0.0245, 0.0038, 0.0027, 0.0024, 0.0023, 0.002, 0.0019], [0.0102, 0.0074, 0.0051, 0.0042, 0.0026, 0.0024, 0.002, 0.0018], [0.0714, 0.015, 0.0097, 0.0038, 0.0031, 0.0026, 0.0026, 0.0024], [0.5374, 0.0683, 0.0135, 0.0119, 0.0077, 0.0068, 0.0064, 0.0034], [0.1074, 0.0786, 0.0175, 0.012, 0.012, 0.0088, 0.0078, 0.0078], [0.0206, 0.0206, 0.0125, 0.011, 0.011, 0.0097, 0.0097, 0.0091], [0.0194, 0.0171, 0.016, 0.0151, 0.0097, 0.0097, 0.0067, 0.0063], [0.0379, 0.0356, 0.0179, 0.0168, 0.009, 0.0085, 0.0075, 0.007], [0.0192, 0.018, 0.0124, 0.0109, 0.0055, 0.0055, 0.0049, 0.0046], [0.0306, 0.0185, 0.0185, 0.0093, 0.0077, 0.006, 0.006, 0.0053], [0.014, 0.0132, 0.0109, 0.0109, 0.0096, 0.008, 0.0075, 0.0075], [0.0335, 0.0179, 0.0168, 0.0123, 0.0109, 0.0102, 0.009, 0.0066], [0.0527, 0.0437, 0.0097, 0.0091, 0.0081, 0.0076, 0.0076, 0.0067], [0.0235, 0.0126, 0.0111, 0.0092, 0.0076, 0.0063, 0.0063, 0.0059], [0.0248, 0.0097, 0.0091, 0.0086, 0.0059, 0.0059, 0.0059, 0.0055], [0.0194, 0.0117, 0.011, 0.011, 0.0086, 0.0081, 0.0076, 0.0059], [0.0225, 0.0155, 0.0136, 0.0128, 0.0113, 0.0113, 0.0113, 0.0106], [0.0232, 0.0192, 0.0181, 0.015, 0.015, 0.0132, 0.0124, 0.011], [0.0497, 0.0467, 0.0221, 0.0195, 0.0161, 0.0152, 0.0152, 0.0152], [0.0416, 0.0367, 0.0304, 0.0184, 0.0184, 0.0127, 0.0127, 0.0119], [0.0705, 0.0313, 0.0276, 0.026, 0.0168, 0.0168, 0.0157, 0.0148], [0.1009, 0.0448, 0.042, 0.0371, 0.0327, 0.0255, 0.0211, 0.0211], [0.0939, 0.0569, 0.0569, 0.0368, 0.0345, 0.0286, 0.0223, 0.0185], [0.0915, 0.0279, 0.0279, 0.0204, 0.018, 0.0169, 0.0169, 0.0159], [0.0506, 0.0255, 0.0239, 0.0239, 0.0225, 0.0211, 0.0211, 0.0198], [0.0403, 0.0314, 0.026, 0.0244, 0.023, 0.023, 0.0216, 0.0203], [0.0406, 0.0358, 0.0262, 0.0246, 0.0246, 0.0246, 0.018, 0.0169], [0.0823, 0.0773, 0.0469, 0.0322, 0.0222, 0.0173, 0.0126, 0.0119], [0.4275, 0.0743, 0.0188, 0.0156, 0.0121, 0.0121, 0.0094, 0.0094], [0.2727, 0.146, 0.0306, 0.021, 0.012, 0.0113, 0.0073, 0.0064], [0.5624, 0.0631, 0.028, 0.0232, 0.0192, 0.016, 0.0141, 0.0091], [0.8536, 0.0156, 0.0138, 0.0074, 0.0065, 0.0054, 0.0048, 0.0042], [0.8765, 0.0234, 0.0161, 0.0055, 0.0049, 0.0034, 0.0032, 0.0028], [0.4676, 0.2503, 0.0384, 0.0117, 0.0097, 0.0091, 0.0067, 0.0067], [0.3309, 0.1771, 0.0948, 0.0349, 0.0308, 0.0308, 0.024, 0.024], [0.4275, 0.1225, 0.0579, 0.0511, 0.0398, 0.0351, 0.0351, 0.0241], [0.9262, 0.0103, 0.0091, 0.008, 0.008, 0.0071, 0.0043, 0.0026], [0.4636, 0.2812, 0.1034, 0.0627, 0.018, 0.0096, 0.0085, 0.0075], [0.7901, 0.1212, 0.0239, 0.0099, 0.0099, 0.0053, 0.0047, 0.0041], [0.4075, 0.2801, 0.0708, 0.0708, 0.043, 0.0335, 0.0335, 0.0096], [0.508, 0.2719, 0.0473, 0.0417, 0.0223, 0.0153, 0.0135, 0.0105], [0.9108, 0.0353, 0.0147, 0.0089, 0.004, 0.0021, 0.0018, 0.0017], [0.9622, 0.0291, 0.0017, 0.0007, 0.0006, 0.0004, 0.0004, 0.0004]], "ranks": {"Kotlin": [120175, 109585, 110431, 14786, 34394, 67148, 69461, 136472, 91792, 168216, 172929, 103920, 64645, 105381, 172800, 98426, 111388, 88677, 54140, 115397, 186308, 84293, 90990, 199709, 97176, 26574, 8989, 58148, 15119, 2972, 9609, 11716, 18382, 4723, 4331, 4005, 3869, 3307, 5561, 3201, 3163, 6660, 5539, 4687, 7886, 14943, 11443, 12983, 18950, 20269, 24644, 10874, 9613, 10527, 5523, 4484, 5043, 5449, 7110, 6650, 10775, 6789, 3916]}}, {"pos": 591, "top": [["er", "en", "o", "u", "\u7684", " \u2013", "i", "y"], ["er", "en", "\u7684", "u", "es", "\u0647", " \u2013", "\u201d\u3002"], ["er", "en", "\u7684", "\u2018", "\u2026\u201d", "\u2026", "\u2026\"", "\u201d\u2026"], ["\u7684", "\uff0d\uff0d\uff0d\uff0d", "\uff0a\uff0a\uff0a\uff0a", "\uff3f\uff3f", "en", "er", " pupper", "\u548c"], ["en", "er", "\u7684", " @_", " @(", "\uff20", "\u201d\u2026", " *@"], ["en", "er", "\u7684", "\u201d\u2026", "\u2019)", "\u4e2d", "\u548c", "iros"], ["en", "\u7684", "er", "\u201d\u2026", "\u4e2d", "\u201d)", "\u548c", "\u2019)"], ["en", "\u7684", "er", "\u201d\u2026", "*\u201d,", "precated", "\u2019)", "\u4e2d"], ["\u201d\u2026", "*\u201d,", "en", "er", "\u7684", "\u2019)", "\u201d)", "*\u201d."], ["en", "er", "precated", "*\u201d,", "iha", "ernt", "\u201d\u2026", "\",@\""], ["er", "en", "\u2019)", "*\u201d,", "\u201d\u2026", ")\u201d", ")\u2019", "\u201d)"], ["*\u201d,", "erate", "ernt", "en", "**\u201d,", "isode", "precated", "er"], ["er", "en", "isode", "erate", "ernt", "precated", "iros", "**\u201d,"], ["en", "er", "-/", "erate", "iha", "/de", "ernt", "aute"], ["en", "er", "o", "i", "-/", "aute", "al", "iha"], ["en", "er", "o", "i", "es", "al", "u", "ing"], ["en", "er", "o", "i", "es", "u", "al", "e"], ["er", "en", "o", "es", "i", "ing", "al", "u"], ["en", "er", "es", "erate", "iha", "o", "ing", "\u0629"], ["en", "er", "o", "i", "es", "al", "u", "ing"], ["en", "er", "o", "i", "u", "an", "e", "h"], ["en", "er", "ing", "es", "iha", "ary", "al", "ed"], ["er", "en", "ing", "es", "o", "ed", "e", "al"], ["er", "en", "o", "e", "ing", "es", "an", "a"], ["er", "en", "ing", "o", " \r\n\r\n", "ed", "e", " \n\n"], ["er", "en", "ing", "\u2011", "es", "ed", " lifecycle", "hip"], ["er", "ing", "en", " garbage", " lifecycle", " glitch", "es", "erate"], ["er", "ing", "\u2011", "en", "ed", " \n\n", "es", " lifecycle"], ["er", "\u2011", "ing", "en", " lifecycle", " garbage", "ed", "o"], ["er", "\u2011", "ing", "en", " lifecycle", " garbage", " **", "ed"], ["er", "\u2011", "ing", " garbage", "en", "es", " tech", " lifecycle"], ["\u2011", "er", "ing", "ed", " **", "en", " game", " garbage"], ["\u2011", "er", "ing", "ed", " tech", " /", " complex", " dead"], ["\u2011", " tech", "er", " lifecycle", "ing", " garbage", " scav", "en"], ["\u2011", " lifecycle", " \r\n\r\n", " tech", "er", " \n    \n", "ing", " \n\n"], ["\u2011", "\u2026*", " lifecycle", "er", " tech", "ing", "**\u2013", "\u201d\u2014"], ["\u2011", " lifecycle", "\u201d\u2014", "er", " tech", " garbage", "ing", "lemetry"], ["\u2011", " lifecycle", "er", "\u201d\u2014", " tech", " garbage", "lemetry", " optimizations"], ["\u2011", " lifecycle", " garbage", " transient", " cycles", " recycling", " scav", "lemetry"], ["\u2011", " lifecycle", " cycles", " recycling", " transient", " recycle", " garbage", " dynamic"], [" lifecycle", "\u2011", " recycling", " cycles", " transient", " recycle", " garbage", " dynamic"], [" lifecycle", " recycling", " recycle", " cycles", " transient", " garbage", " recycled", " recycl"], [" recycling", " recycle", " lifecycle", " cycles", " transient", " garbage", " recycled", " debris"], [" lifecycle", " recycle", " cycles", " recycling", " transient", " destruction", " garbage", " churn"], [" cycles", " destruction", " recycle", " lifecycle", " recycling", " garbage", " transient", " churn"], [" cycles", " destruction", " recycling", " recycle", " cycle", " garbage", " churn", " lifecycle"], [" cycles", " destruction", " during", " lifecycle", " cycle", " recycling", " transient", " recycle"], [" during", " cycles", " destruction", " lifecycle", " recycling", " cycle", " recycle", " churn"], [" cycles", " during", " lifecycle", " churn", " cycle", " destruction", " routines", " recycle"], [" cycles", " during", " lifecycle", " churn", " destruction", " loops", " routines", "during"], [" cycles", " lifecycle", "/delete", " during", " routines", "during", " workflows", "/reset"], [" lifecycle", " cycles", " (**", "ardown", " churn", "**\u2014", " during", " cleanup"], [" lifecycle", " cycles", " during", "ardown", " churn", " teardown", "ihilation", "during"], [" cycles", " lifecycle", "ardown", " during", " churn", " cycle", "cycle", " teardown"], [" cycles", " cycle", " lifecycle", "cycle", " churn", " recycle", " teardown", "\u5faa\u73af"], [" dealloc", " cycles", " allocation", " allocations", " lifecycle", " recycling", "alloc", " recycle"], [" cycles", " cycle", "cycle", " allocation", " garbage", "Cycle", " recycling", " dealloc"], [" allocation", " cycles", " dealloc", "alloc", " cycle", "allocation", "cycle", " recycle"], [" allocation", " cycles", "allocation", " dealloc", "alloc", " cycle", "cycle", " recycling"], [" allocation", "allocation", "alloc", " Allocation", "Allocation", " allocate", " allocations", "allocate"], [" allocation", "allocation", " Allocation", "alloc", "Allocation", " allocations", "_allocation", " allocate"], [" allocation", "allocation", " Allocation", "alloc", "Allocation", " allocations", " deal", " dealloc"], ["allocation", " allocation", " Allocation", " deal", "alloc", "-al", "Allocation", "deal"]], "p": [[0.3492, 0.2555, 0.1134, 0.057, 0.0346, 0.0305, 0.0087, 0.0053], [0.5186, 0.2776, 0.0959, 0.0138, 0.0095, 0.0074, 0.0048, 0.0033], [0.3837, 0.16, 0.1099, 0.0667, 0.0357, 0.0278, 0.0261, 0.0131], [0.2267, 0.0211, 0.0113, 0.0106, 0.0094, 0.0078, 0.006, 0.0047], [0.4503, 0.1877, 0.1138, 0.0136, 0.0077, 0.006, 0.0053, 0.0053], [0.2817, 0.1508, 0.1036, 0.0262, 0.0109, 0.0071, 0.0055, 0.0055], [0.27, 0.1975, 0.0876, 0.0469, 0.0267, 0.0208, 0.0184, 0.0162], [0.1154, 0.0793, 0.0425, 0.0242, 0.0138, 0.0101, 0.0084, 0.0065], [0.0743, 0.0655, 0.045, 0.0351, 0.0291, 0.0273, 0.0273, 0.0241], [0.052, 0.0316, 0.018, 0.0169, 0.0149, 0.0132, 0.0096, 0.0085], [0.1738, 0.1534, 0.0302, 0.0172, 0.0152, 0.0143, 0.0126, 0.0118], [0.0108, 0.0079, 0.0079, 0.0074, 0.007, 0.007, 0.0066, 0.0062], [0.0361, 0.0319, 0.0133, 0.0133, 0.0067, 0.0059, 0.0049, 0.0046], [0.1686, 0.1159, 0.013, 0.0084, 0.0061, 0.0048, 0.004, 0.004], [0.3885, 0.1835, 0.0319, 0.0125, 0.0086, 0.0052, 0.0052, 0.0049], [0.4022, 0.3132, 0.0617, 0.0177, 0.0147, 0.0057, 0.0054, 0.0048], [0.4143, 0.3656, 0.1345, 0.0282, 0.0092, 0.0052, 0.0043, 0.0038], [0.4607, 0.4065, 0.0277, 0.0062, 0.0037, 0.0031, 0.0031, 0.0021], [0.3317, 0.189, 0.0146, 0.0073, 0.0061, 0.0061, 0.0061, 0.0054], [0.5286, 0.1612, 0.0263, 0.011, 0.0075, 0.0071, 0.0049, 0.0043], [0.4068, 0.1321, 0.0586, 0.0295, 0.0216, 0.0168, 0.0108, 0.0102], [0.1846, 0.1734, 0.025, 0.0118, 0.0072, 0.0052, 0.0049, 0.0049], [0.4118, 0.283, 0.0524, 0.0232, 0.0193, 0.0132, 0.0049, 0.0046], [0.27, 0.2102, 0.1275, 0.0469, 0.0414, 0.0222, 0.0196, 0.0162], [0.2559, 0.1993, 0.0831, 0.0473, 0.0238, 0.0224, 0.0224, 0.0144], [0.2239, 0.0641, 0.0603, 0.0222, 0.0105, 0.0082, 0.0068, 0.0064], [0.1008, 0.0211, 0.0187, 0.0094, 0.0094, 0.0061, 0.0057, 0.0057], [0.3063, 0.0532, 0.0251, 0.0222, 0.0119, 0.0105, 0.0077, 0.005], [0.2273, 0.0507, 0.042, 0.0145, 0.0113, 0.0069, 0.0061, 0.003], [0.1644, 0.1545, 0.0391, 0.0093, 0.0072, 0.0072, 0.0056, 0.0053], [0.1723, 0.152, 0.0299, 0.0091, 0.0071, 0.0055, 0.0055, 0.0055], [0.1711, 0.1176, 0.0204, 0.0091, 0.0071, 0.0071, 0.0059, 0.0052], [0.1194, 0.0821, 0.0235, 0.0081, 0.0076, 0.0052, 0.0052, 0.0052], [0.3015, 0.016, 0.016, 0.015, 0.0075, 0.0043, 0.0038, 0.0031], [0.0772, 0.0284, 0.0126, 0.0111, 0.0076, 0.0067, 0.006, 0.0053], [0.3437, 0.0104, 0.0097, 0.0063, 0.0056, 0.0052, 0.0043, 0.0041], [0.1152, 0.0166, 0.0069, 0.0069, 0.0061, 0.0048, 0.0039, 0.0037], [0.3497, 0.027, 0.0057, 0.005, 0.005, 0.0044, 0.0044, 0.0028], [0.3881, 0.0435, 0.0091, 0.0086, 0.0063, 0.0059, 0.0041, 0.0041], [0.1377, 0.1072, 0.0128, 0.012, 0.0113, 0.0088, 0.0073, 0.0064], [0.1542, 0.0728, 0.0236, 0.0173, 0.0162, 0.0143, 0.0119, 0.0077], [0.2009, 0.1075, 0.0694, 0.0328, 0.0289, 0.0289, 0.0199, 0.0176], [0.1453, 0.0938, 0.0731, 0.0472, 0.0443, 0.0416, 0.0163, 0.0163], [0.055, 0.0402, 0.0402, 0.0334, 0.026, 0.0244, 0.0229, 0.0148], [0.0779, 0.0472, 0.0346, 0.0346, 0.0305, 0.0238, 0.0197, 0.0185], [0.1434, 0.0677, 0.0677, 0.0411, 0.0265, 0.0234, 0.0182, 0.0182], [0.1145, 0.0541, 0.0372, 0.0272, 0.0255, 0.024, 0.0187, 0.0165], [0.1221, 0.1012, 0.029, 0.0256, 0.024, 0.0199, 0.0187, 0.0121], [0.1634, 0.053, 0.0322, 0.0235, 0.0221, 0.0162, 0.0118, 0.0118], [0.0998, 0.0502, 0.0416, 0.0367, 0.0173, 0.0119, 0.0112, 0.0105], [0.0414, 0.0389, 0.0267, 0.0126, 0.0119, 0.0098, 0.0087, 0.0087], [0.0929, 0.0195, 0.0126, 0.0118, 0.0104, 0.0092, 0.0081, 0.0067], [0.0845, 0.0399, 0.0242, 0.0177, 0.0166, 0.0095, 0.0089, 0.0074], [0.2052, 0.0666, 0.0158, 0.0158, 0.014, 0.0123, 0.009, 0.008], [0.4961, 0.0557, 0.0557, 0.0383, 0.011, 0.0091, 0.0085, 0.008], [0.1576, 0.1391, 0.1391, 0.0744, 0.0657, 0.058, 0.058, 0.0398], [0.5016, 0.2369, 0.0599, 0.0412, 0.022, 0.0172, 0.0134, 0.0118], [0.2346, 0.207, 0.1108, 0.0978, 0.0672, 0.0462, 0.028, 0.0193], [0.262, 0.18, 0.0751, 0.0751, 0.0751, 0.0585, 0.0313, 0.0313], [0.8839, 0.0499, 0.0343, 0.0162, 0.0087, 0.0019, 0.0019, 0.001], [0.873, 0.0812, 0.0181, 0.0141, 0.0076, 0.0022, 0.0009, 0.0005], [0.8097, 0.1096, 0.0356, 0.019, 0.0102, 0.0029, 0.0023, 0.002], [0.7627, 0.1929, 0.0096, 0.007, 0.0062, 0.0045, 0.0031, 0.0028]], "ranks": {"Kotlin": [128985, 96879, 79933, 32268, 66553, 99107, 39269, 68606, 62782, 117972, 91864, 44580, 36277, 64884, 151209, 162852, 152501, 121648, 65210, 136390, 216618, 141662, 184350, 238231, 191585, 92759, 25699, 62094, 26886, 16631, 44815, 47727, 110306, 25618, 38154, 31348, 24454, 22751, 20509, 22552, 23023, 34196, 28843, 24240, 24625, 43354, 56905, 58751, 56384, 57877, 58708, 24259, 24089, 34634, 13303, 7741, 6692, 14769, 30601, 27350, 36013, 40073, 25994]}}, {"pos": 592, "top": [[" ****", " *@", " <![", "*\u201d,", " **.**", "**\u201d,", "**\u2013", " ######"], [" **\u3010", " **\u25a0", " **\u2018", " **:**", " **:", "**\u201d,", " **)", " **'"], [" **\u3010", "\u2019**", " **\u300c", " **\u25a0", "**\u201d,", " **:", " **.**", " \uff5c"], [" **\u3010", " **\u300c", " **\u25a0", " **>>", " **:**", " /**<", "\uff3f\uff3f", " *__"], [" **\u3010", " **\u25a0", " **\u300c", " **\u201c", "\u2019**", "\uff1f**", " -**", " ___"], [" **\u3010", " **\u25a0", " **\u300c", " **\u201c", "\uff1f**", " **)", "\u2019**", " **:"], [" **\u3010", " **\u300c", " **\u25a0", " **\u201c", "<|im_end|>", "\u2019**", " <<<", "\uff1f**"], [" **\u3010", " **\u300c", " **\u25a0", " **\u201c", "<|im_end|>", " <<<", " ___", "\u2019**"], [" **\u3010", "<|im_end|>", "\r\n\r\n\r\n\r\n", " **\u300c", " **\u201c", " ___", " \uff3b", " <<<"], [" **\u3010", "<|im_end|>", " ___", " **\u300c", " **\u201c", " **\u25a0", " <![", " \uff3b"], [" **\u3010", "<|im_end|>", " ___", " **\u300c", "\u548c", " **\u201c", " **\u25a0", "\uff1f**"], [" **\u3010", " **\u300c", " ___", " **\u25a0", "\uff1f**", " **\u201c", " *__", "(___"], [" **\u3010", " **\u300c", " ___", "\uff1f**", "___", " **\u25a0", " **\u201c", "<|im_end|>"], [" **\u3010", "<|im_end|>", " **\u300c", "___", " ___", "\u548c", "\uff1f**", "\u2019**"], [" **\u3010", "<|im_end|>", "\u548c", "___", " ___", "\u5728", "\uff1f**", "\r\n\r\n\r\n\r\n"], ["<|im_end|>", " **\u3010", "\u548c", "___", "\u5728", " ___", "\uff1f**", "\u6211"], ["<|im_end|>", " **\u3010", "___", "</think>", " ___", "\u548c", "\r\n\r\n\r\n\r\n", "\u5728"], ["<|im_end|>", " **\u3010", "\u548c", "___", "\u5728", "**\u3002", "</think>", "\uff1f**"], [" **\u3010", "<|im_end|>", "___", "\u548c", "</think>", "\r\n\r\n\r\n\r\n", "\uff1f**", "\u5728"], ["<|im_end|>", " **\u3010", "\u548c", "</think>", "\r\n\r\n\r\n\r\n", "___", "\r\n\r\n", "\u5728"], ["<|im_end|>", " **\u3010", "\u548c", "</think>", "\r\n\r\n\r\n\r\n", "\n\n", "\r\n\r\n", "\u5728"], ["<|im_end|>", " **\u3010", "</think>", "\u548c", "___", "\r\n\r\n\r\n\r\n", "<think>", "\u4e2d"], ["<|im_end|>", "\n\n", "</think>", "\r\n\r\n\r\n\r\n", "\r\n\r\n", "___", "<|endoftext|>", " **\u3010"], ["<|im_end|>", "\n\n", "<|endoftext|>", "\r\n\r\n", "\r\n\r\n\r\n\r\n", "</think>", "___", "\n\n\n\n\n"], ["<|im_end|>", "\n\n", "\r\n\r\n", "\r\n\r\n\r\n\r\n", " \n\n", "<|endoftext|>", " \r\n\r\n", "</think>"], ["<|im_end|>", "\n\n", "\r\n\r\n\r\n\r\n", "\r\n\r\n", " **\u3010", "</think>", "___", " \r\n\r\n"], ["<|im_end|>", "\n\n", "\r\n\r\n\r\n\r\n", "\r\n\r\n", "</think>", " **\u3010", "___", " \r\n\r\n"], ["<|im_end|>", "\n\n", "<|endoftext|>", "\r\n\r\n", "\r\n\r\n\r\n\r\n", " \n\n", "</think>", " \r\n\r\n"], ["<|im_end|>", "<|endoftext|>", "\n\n", "\r\n\r\n", " \n\n", "\r\n\r\n\r\n\r\n", "\n\n\n\n\n", " \r\n\r\n"], ["<|im_end|>", "<|endoftext|>", "\n\n", "\r\n\r\n\r\n\r\n", "\r\n\r\n", " \n\n", "\n\n\n\n\n", "</think>"], ["<|im_end|>", "<|endoftext|>", "\n\n", " \n\n", "</think>", "\r\n\r\n", "\r\n\r\n\r\n\r\n", "\n\n\n\n\n"], ["<|endoftext|>", "<|im_end|>", "\n\n", " \n\n", "\n\n\n\n", "\n\n\n\n\n", "\r\n\r\n", "\n\n\n"], ["<|endoftext|>", "<|im_end|>", "\n\n", " \n\n", "  \n\n", "\n\n\n\n\n", "\r\n\r\n", "\n\n\n\n"], ["<|endoftext|>", "<|im_end|>", "\n\n", " \n\n", "\r\n\r\n", "</think>", "  \n\n", "\r\n\r\n\r\n\r\n"], ["<|endoftext|>", "<|im_end|>", "\n\n", "</think>", " \n\n", "<|file_sep|>", "\n\n\n\n\n", "\r\n\r\n\r\n\r\n"], ["<|endoftext|>", "<|im_end|>", "\n\n", "</think>", "<|file_sep|>", "<|im_start|>", "\n\n\n\n\n", "\r\n\r\n\r\n\r\n"], ["<|endoftext|>", "<|im_end|>", "\n\n", "</think>", "<|file_sep|>", " \n\n", "<|im_start|>", "\r\n\r\n\r\n\r\n"], ["<|endoftext|>", "<|im_end|>", "</think>", "\n\n", "<|file_sep|>", "<|im_start|>", " \n\n", "\r\n\r\n\r\n\r\n"], ["<|endoftext|>", "<|im_end|>", "</think>", "<|file_sep|>", "<|im_start|>", "\n\n", "\r\n\r\n\r\n\r\n", "\u3002"], ["<|endoftext|>", "<|im_end|>", "</think>", "<|file_sep|>", "<|im_start|>", "\u3002", "\uff1f", "\r\n\r\n\r\n\r\n"], ["<|endoftext|>", "<|im_end|>", "</think>", "<|im_start|>", "<|file_sep|>", "\n\n", "\u3002", " \n\n"], ["<|endoftext|>", "<|im_end|>", "\n\n", "</think>", "<|file_sep|>", " \n\n", "<|im_start|>", "\r\n\r\n\r\n\r\n"], ["<|endoftext|>", "<|im_end|>", "</think>", "\n\n", "<|file_sep|>", " \n\n", "\r\n\r\n\r\n\r\n", "  \n\n"], ["<|endoftext|>", "<|im_end|>", "</think>", "\n\n", " \n\n", "<|file_sep|>", "\r\n\r\n\r\n\r\n", "  \n\n"], ["<|endoftext|>", "<|im_end|>", "\n\n", "</think>", " \n\n", "<|file_sep|>", "  \n\n", "\r\n\r\n\r\n\r\n"], ["<|endoftext|>", "<|im_end|>", "</think>", "<|file_sep|>", " \n\n", "  \n\n", "\r\n\r\n\r\n\r\n", "\n\n"], ["<|im_end|>", "<|endoftext|>", "</think>", "<|file_sep|>", "\r\n\r\n\r\n\r\n", "\u3002", " **\u3010", "\u5728"], ["<|im_end|>", "<|endoftext|>", "</think>", "\u3002", "\uff0c", "\u5728", "  \n\n", "\u3001"], ["<|im_end|>", "<|endoftext|>", "</think>", "\uff1f**", "<|file_sep|>", "\u3002", "\uff0c", "\u5728"], ["<|im_end|>", "<|endoftext|>", "\uff1f**", "</think>", ">**", " **\u3010", "]**", "!**"], ["<|endoftext|>", "<|im_end|>", "<|file_sep|>", "</think>", "<|im_start|>", "<|fim_middle|>", "\u3002", "\r\n\r\n\r\n\r\n"], ["<|endoftext|>", "<|im_end|>", "<|im_start|>", "</think>", "<|file_sep|>", "\u3002", "<|fim_middle|>", "\u5728"], ["<|endoftext|>", "<|im_end|>", "<|im_start|>", "</think>", "<|file_sep|>", "\r\n\r\n\r\n\r\n", "<|fim_prefix|>", "<|fim_middle|>"], ["<|endoftext|>", "<|im_end|>", "<|im_start|>", "</think>", "<|file_sep|>", "<|fim_prefix|>", "<|fim_middle|>", "<|quad_start|>"], ["<|im_end|>", "<|endoftext|>", "<|im_start|>", "</think>", "<|file_sep|>", "<|fim_prefix|>", "<|quad_start|>", ")\">"], ["<|im_end|>", "<|file_sep|>", "<|endoftext|>", "<|im_start|>", "</think>", "<|fim_prefix|>", "\u5c55\u5f00\u5168\u6587", ")\">"], ["<|im_end|>", "<|im_start|>", "<|file_sep|>", "\u5355", "</think>", "<|endoftext|>", "\u5c55\u5f00\u5168\u6587", "<|quad_start|>"], ["<|im_end|>", "\u5355", "</think>", "<|im_start|>", "<|file_sep|>", "<|endoftext|>", "\u53cc", ")\">"], ["<|im_end|>", "\u5355", "lobs", "</think>", "\u53cc", "<|file_sep|>", "<|endoftext|>", "<|im_start|>"], ["<|im_end|>", "<|endoftext|>", "\u5355", "<|im_start|>", "lobs", "</think>", "\u53cc", "\u7528\u6237"], ["<|im_end|>", "<|endoftext|>", "<|im_start|>", "</think>", "<|file_sep|>", "lobs", "\u5355", "ouser"], ["<|im_end|>", "<|endoftext|>", "</think>", "<|im_start|>", "\f", "ecure", "enia", "\r"], ["\n", "<|im_end|>", "\n \n", "\n\t\n", "<|im_start|>", "\n   \n", " Ngh", "\n     \n"]], "p": [[0.0295, 0.0244, 0.0244, 0.0202, 0.0168, 0.0158, 0.0096, 0.009], [0.3894, 0.0925, 0.0495, 0.0437, 0.03, 0.0249, 0.0234, 0.022], [0.552, 0.0482, 0.0293, 0.0228, 0.0189, 0.0147, 0.0138, 0.013], [0.5653, 0.1261, 0.1261, 0.016, 0.0091, 0.0071, 0.0055, 0.0046], [0.8814, 0.0321, 0.0134, 0.0081, 0.0025, 0.0022, 0.0022, 0.0021], [0.9422, 0.0119, 0.0087, 0.0049, 0.0016, 0.0016, 0.0015, 0.0014], [0.8993, 0.0225, 0.0083, 0.0078, 0.0042, 0.0042, 0.0014, 0.0013], [0.914, 0.0148, 0.0066, 0.0045, 0.0042, 0.0021, 0.0021, 0.0018], [0.798, 0.0841, 0.0065, 0.0065, 0.0047, 0.0042, 0.0037, 0.0035], [0.8614, 0.0244, 0.007, 0.0066, 0.0051, 0.004, 0.0037, 0.0035], [0.862, 0.0295, 0.0102, 0.0062, 0.0042, 0.0027, 0.0027, 0.0026], [0.9145, 0.009, 0.0074, 0.0058, 0.0045, 0.0029, 0.0018, 0.0017], [0.8907, 0.0144, 0.0119, 0.0053, 0.0047, 0.0041, 0.0036, 0.0032], [0.7514, 0.0274, 0.0121, 0.0121, 0.0114, 0.0101, 0.0083, 0.0065], [0.431, 0.2167, 0.0515, 0.0484, 0.0215, 0.0101, 0.0095, 0.007], [0.5603, 0.125, 0.0521, 0.0406, 0.0204, 0.0096, 0.0085, 0.0085], [0.877, 0.0561, 0.0234, 0.0056, 0.0046, 0.0025, 0.0019, 0.0018], [0.4772, 0.328, 0.0197, 0.0174, 0.0127, 0.0105, 0.0087, 0.0064], [0.3884, 0.3884, 0.0233, 0.0193, 0.016, 0.0081, 0.0076, 0.0076], [0.7889, 0.0832, 0.0164, 0.012, 0.0113, 0.0068, 0.0037, 0.0034], [0.9448, 0.0082, 0.0068, 0.005, 0.0041, 0.0039, 0.003, 0.0023], [0.7546, 0.1021, 0.0177, 0.0147, 0.0115, 0.0101, 0.0042, 0.0031], [0.9709, 0.0108, 0.0029, 0.0023, 0.0021, 0.0021, 0.0013, 0.0012], [0.9645, 0.02, 0.0035, 0.0027, 0.0021, 0.0014, 0.0009, 0.0005], [0.9411, 0.0413, 0.0049, 0.0026, 0.0023, 0.0012, 0.0012, 0.0009], [0.9482, 0.0119, 0.0082, 0.0072, 0.0036, 0.0028, 0.0024, 0.0021], [0.9476, 0.0286, 0.005, 0.0041, 0.0023, 0.0013, 0.0012, 0.0012], [0.8935, 0.0831, 0.0077, 0.0041, 0.0028, 0.0017, 0.0013, 0.0011], [0.7139, 0.1406, 0.1241, 0.0055, 0.0048, 0.0029, 0.0018, 0.0016], [0.8868, 0.0728, 0.0303, 0.0022, 0.0017, 0.0012, 0.0012, 0.0007], [0.4879, 0.4879, 0.0214, 0.0006, 0.0004, 0.0004, 0.0004, 0.0002], [0.6277, 0.2965, 0.075, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001], [0.9509, 0.0369, 0.012, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9519, 0.0326, 0.0154, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9788, 0.0203, 0.0009, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9525, 0.0474, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9669, 0.0331, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9669, 0.0331, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9627, 0.0373, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.8933, 0.1067, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9466, 0.0534, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9579, 0.0421, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.8807, 0.1192, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.562, 0.4377, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.6223, 0.3774, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.5621, 0.4378, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.7306, 0.2688, 0.0002, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9959, 0.0036, 0.0002, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9725, 0.0259, 0.0006, 0.0001, 0.0001, 0.0001, 0.0, 0.0], [0.6963, 0.176, 0.0136, 0.012, 0.012, 0.0073, 0.006, 0.0053], [0.8932, 0.1067, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.8174, 0.1824, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9145, 0.0851, 0.0003, 0.0, 0.0, 0.0, 0.0, 0.0], [0.8164, 0.1822, 0.0012, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.963, 0.0291, 0.0037, 0.0014, 0.0006, 0.0002, 0.0, 0.0], [0.9977, 0.0009, 0.0007, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.986, 0.0007, 0.0006, 0.0003, 0.0003, 0.0002, 0.0001, 0.0001], [0.9418, 0.0013, 0.0012, 0.0011, 0.0007, 0.0007, 0.0006, 0.0005], [0.9456, 0.0021, 0.0009, 0.0009, 0.0008, 0.0004, 0.0004, 0.0003], [0.7909, 0.0047, 0.0042, 0.0034, 0.0025, 0.0024, 0.0017, 0.0007], [0.9903, 0.0038, 0.0005, 0.0002, 0.0001, 0.0, 0.0, 0.0], [0.9704, 0.0026, 0.0019, 0.0016, 0.0002, 0.0001, 0.0001, 0.0001], [0.5585, 0.1246, 0.0033, 0.0031, 0.0028, 0.0018, 0.0014, 0.0014]], "ranks": {"Kotlin": [11779, 13245, 1686, 2879, 1769, 2361, 1413, 1966, 2193, 1388, 1598, 1036, 1050, 1039, 1765, 1809, 1890, 1725, 2670, 3830, 5240, 2968, 5405, 8058, 7350, 7494, 7470, 15020, 23087, 18550, 15242, 12015, 34857, 17140, 17312, 16148, 18895, 20162, 19061, 20488, 29422, 29406, 32092, 27900, 29711, 40537, 18926, 19167, 8201, 16447, 24026, 21459, 26335, 33622, 108277, 175330, 187851, 166808, 158108, 98038, 37318, 15749, 4831]}}, {"pos": 593, "top": [[" \u2013", ".", "\u00a0\u00a0", "   \n", "\u2013", " \u2013,", " \u200b\u200b", " (\u201e"], ["   \n", " \u2013**", "\u2013and", "**\u2013", " \u2013,", "  \r\n", " \u2013", "  \n"], ["\u2013", "\u2026..", ".\u2013", "\u2013and", " \u2013", ".", " \u2013,", "**\u2013"], [" milfs", " Shemale", " Blowjob", " cumshot", " **\u201e", " YYS", "':''", "-------------</"], ["\u52a0\u62ff\u5927", " @_", " **\u201e", " *@", " **\u201c", "*@", "\uff20", "\uff1f**"], [" **\u201c", "\uff1f**", "  \n\n", "  \n\n\n", " **\u201e", "\uff1f", "\uff01", "\uff01**"], ["\uff1f**", "\u4e2d", " **\u3010", "  \n\n", "\uff08", " **\u201c", " **\u201e", "    \n\n"], [" **\u3010", "   \n\n", "    \n\n", "\uff1f**", " **\u201e", "       \n\n", "     \n\n", "  \n\n"], ["  \n\n", "\n\n", "   \n\n", "    \n\n", "     \n\n", " \n\n", "       \n\n", "\t\n\n"], ["  \n\n", "\n\n", "   \n\n", "    \n\n", "     \n\n", "\t\n\n", "       \n\n", "  \n\n\n"], ["\n\n", "  \n\n", " \n\n", "\uff1f**", "\r\n\r\n", "    \n\n", "   \n\n", "     \n\n"], [" **\u3010", "\uff1f**", " *__", " **#", "(___", "____", " ___", " _$"], ["\uff1f**", " **\u3010", "___", "____", " ___", "(___", "**\u3002", " _:"], ["...**", "___", "\uff1f**", "____", "**\u3002", " **\u3010", "\u591a", "\u4ec0\u4e48"], ["\n\n", "  \n\n", " \n\n", "___", "\t\n\n", "\r\n\r\n", "\u591a", "\u4e2d"], ["\n\n", "___", "...**", "____", "<|im_end|>", "\u5728", "\u4ec0\u4e48", "...\\"], ["\n\n", "<|im_end|>", "___", "...**", "____", "\u4ec0\u4e48", "...\\", "\n\n\n\n"], ["\n\n", "<|im_end|>", "___", "...**", "\u5728", "**\u3002", "\u4e2d", "\u4ec0\u4e48"], ["___", "\n\n", "\u4ec0\u4e48", "...**", "<|im_end|>", "\uff1f**", " **\u3010", "**\u3002"], ["\n\n", "\r\n\r\n", "<|im_end|>", "\u4ec0\u4e48", "___", "  \n\n", "\n\n\n\n", "\u4e2d"], ["\n\n", "<|endoftext|>", "  \n\n", "\r\n\r\n", "<|im_end|>", " \n\n", "\n\n\n\n", "\n\n\n"], ["\n\n", "\r\n\r\n", "<|im_end|>", "___", "\n\n\n\n", "  \n\n", "...**", "<|endoftext|>"], ["\n\n", "<|endoftext|>", "\r\n\r\n", "<|im_end|>", "\n\n\n\n", "\n\n\n", "  \n\n", " \n\n"], ["\n\n", "<|endoftext|>", "<|im_end|>", "\r\n\r\n", "\n\n\n", "  \n\n", " \n\n", "\n\n\n\n"], ["\n\n", "  \n\n", "<|im_end|>", " \n\n", "\r\n\r\n", "<|endoftext|>", "\n\n\n\n", "   \n\n"], ["\n\n", "\r\n\r\n", "  \n\n", "<|im_end|>", " \n\n", "___", "...**", "\n\n\n\n"], ["\n\n", "  \n\n", " \n\n", "\r\n\r\n", "<|im_end|>", "\n\n\n\n", "<|endoftext|>", "\n\n\n"], ["\n\n", " \n\n", "  \n\n", "<|im_end|>", "\r\n\r\n", "<|endoftext|>", "\n\n\n\n", "\n\n\n"], ["\n\n", " \n\n", "  \n\n", "<|endoftext|>", "<|im_end|>", "\r\n\r\n", "\n\n\n\n", "\n\n\n"], ["\n\n", "  \n\n", " \n\n", "<|endoftext|>", "<|im_end|>", "\n\n\n\n", "\n\n\n", "\r\n\r\n"], ["\n\n", "<|endoftext|>", " \n\n", "  \n\n", "<|im_end|>", "...", "...\"", "\u2026\u2026"], ["\n\n", "<|endoftext|>", "<|im_end|>", "...", " \n\n", "  \n\n", "...**", "\u2026\u2026"], ["\n\n", "<|endoftext|>", "  \n\n", "<|im_end|>", " \n\n", "...", "\u2026", "\n\n\n"], ["\n\n", "<|endoftext|>", "<|im_end|>", "  \n\n", " \n\n", "...", "\n\n\n\n", "\n\n\n"], ["\n\n", "<|endoftext|>", "<|im_end|>", "...", "  \n\n", " \n\n", "\n\n\n\n", "\n\n\n"], ["\n\n", "<|endoftext|>", "<|im_end|>", "  \n\n", " \n\n", "\u2026\u2026", "...", "\n\n\n\n"], ["\n\n", "<|endoftext|>", "<|im_end|>", "  \n\n", " \n\n", "\u2026\u2026", "\n\n\n\n", "..."], ["<|endoftext|>", "\n\n", "<|im_end|>", "  \n\n", "\u2026\u2026", " \n\n", "...", "...**"], ["<|endoftext|>", "\n\n", "<|im_end|>", "  \n\n", "\u2026\u2026", "...", " \n\n", "...**"], ["<|endoftext|>", "<|im_end|>", "\n\n", "  \n\n", "\u2026\u2026", "...", " \n\n", "...**"], ["<|endoftext|>", "<|im_end|>", "\n\n", "\u2026\u2026", "  \n\n", "...", "...**", "...\""], ["<|endoftext|>", "\n\n", "<|im_end|>", " \n\n", "  \n\n", "...", "\u2026\u2026", "...**"], ["<|endoftext|>", "\n\n", "<|im_end|>", "  \n\n", " \n\n", "...**", "...", "...</"], ["<|endoftext|>", "<|im_end|>", "\n\n", "  \n\n", "...**", " \n\n", "...</", "\u2026\u2026"], ["<|endoftext|>", "<|im_end|>", "\n\n", "  \n\n", "...**", " \n\n", "...</", "..."], ["<|im_end|>", "<|endoftext|>", "\n\n", "  \n\n", " \n\n", "</think>", "\r\n\r\n", "<|im_start|>"], ["<|im_end|>", "<|endoftext|>", "\n\n", " \n\n", "  \n\n", "</think>", "\r\n\r\n", "<|im_start|>"], ["<|im_end|>", "<|endoftext|>", "\n\n", " \n\n", "  \n\n", "</think>", "...</", "<|im_start|>"], ["<|im_end|>", "<|endoftext|>", "\n\n", " \n\n", "  \n\n", "</think>", "<|im_start|>", "<think>"], ["<|im_end|>", "<|endoftext|>", "</think>", "<|im_start|>", "<think>", "</", "...</", "...**"], ["<|endoftext|>", "<|im_end|>", "<|im_start|>", "</think>", "<|file_sep|>", "<think>", "...</", "**\u201d"], ["<|endoftext|>", "<|im_end|>", "<|im_start|>", "</think>", "<think>", "...</", "**\u201d", ")</"], ["<|endoftext|>", "<|im_end|>", "<|im_start|>", "</think>", "**", "**\u201d", "]**", ">**"], ["<|endoftext|>", "<|im_end|>", "<|im_start|>", "</think>", "**", " *[", "]**", ">**"], ["<|im_end|>", "<|endoftext|>", "</think>", "<|im_start|>", " *[", "\u7528\u6237", "Wait", "wait"], ["<|im_end|>", "<|im_start|>", "</think>", "<|endoftext|>", "\u7528\u6237", " *[", "]**", "user"], ["</think>", " *[", "<|im_end|>", "*\\", "*</", " *\\", "<|im_start|>", "!*"], ["</think>", "\u601d\u8003", "*\\", "<|im_end|>", "<|im_start|>", "*</", "thought", " *\\"], ["</think>", "<|im_start|>", "<|im_end|>", " *[", "*\\", "!*", "thought", "*</"], ["</think>", "<|im_start|>", " *[", "*\\", "thought", " *(", "!*", "*"], ["</think>", "<|im_start|>", "<|im_end|>", "<|endoftext|>", "*", "<br", " *", " *("], ["</think>", "<|im_start|>", "<|endoftext|>", "<|im_end|>", "*", " *", "**", "<br"], ["<|im_start|>", "<|endoftext|>", "</think>", "<|im_end|>", "\n\n", "\u7528\u6237", "User", "user"]], "p": [[0.759, 0.1694, 0.009, 0.0079, 0.0074, 0.0058, 0.0051, 0.0048], [0.0377, 0.0244, 0.0178, 0.0157, 0.0148, 0.0079, 0.0062, 0.0054], [0.2963, 0.109, 0.109, 0.0962, 0.0962, 0.0749, 0.0377, 0.0312], [0.0265, 0.0194, 0.0142, 0.0092, 0.0067, 0.0043, 0.0036, 0.0036], [0.0176, 0.0166, 0.0146, 0.0121, 0.0047, 0.0039, 0.0039, 0.0037], [0.0805, 0.0405, 0.0278, 0.0169, 0.0149, 0.0109, 0.0102, 0.0096], [0.0989, 0.0467, 0.0467, 0.0221, 0.0183, 0.0183, 0.0172, 0.0152], [0.0723, 0.0723, 0.06, 0.0529, 0.0467, 0.0467, 0.0364, 0.0152], [0.2628, 0.2046, 0.1806, 0.1406, 0.0457, 0.0457, 0.0356, 0.0277], [0.4352, 0.1034, 0.0857, 0.0431, 0.0357, 0.0357, 0.0296, 0.0204], [0.7159, 0.0519, 0.0278, 0.0149, 0.014, 0.0123, 0.0116, 0.008], [0.1897, 0.1304, 0.0616, 0.0273, 0.0166, 0.0156, 0.0121, 0.0107], [0.1306, 0.1306, 0.1082, 0.0579, 0.0257, 0.0242, 0.0177, 0.0166], [0.062, 0.062, 0.0582, 0.0353, 0.0258, 0.0243, 0.0138, 0.013], [0.9609, 0.0094, 0.0031, 0.0027, 0.002, 0.0014, 0.0012, 0.0009], [0.7743, 0.0437, 0.041, 0.0125, 0.0092, 0.0071, 0.0071, 0.0049], [0.9649, 0.0177, 0.0083, 0.0025, 0.0012, 0.0005, 0.0005, 0.0004], [0.6287, 0.1026, 0.0294, 0.0276, 0.019, 0.0178, 0.0148, 0.013], [0.1737, 0.1353, 0.1053, 0.0724, 0.0439, 0.0439, 0.0266, 0.0221], [0.9769, 0.0075, 0.0026, 0.0011, 0.0008, 0.0008, 0.0006, 0.0003], [0.9851, 0.0141, 0.0004, 0.0001, 0.0001, 0.0001, 0.0, 0.0], [0.9989, 0.0006, 0.0002, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9988, 0.001, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9465, 0.0534, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9994, 0.0003, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9979, 0.0008, 0.0004, 0.0004, 0.0002, 0.0001, 0.0, 0.0], [1.0, 0.0, 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.9999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9997, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9998, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9876, 0.0124, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9526, 0.0474, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.7773, 0.2227, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.7306, 0.2688, 0.0005, 0.0, 0.0, 0.0, 0.0, 0.0], [0.7765, 0.2225, 0.001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.8211, 0.1427, 0.0361, 0.0, 0.0, 0.0, 0.0, 0.0], [0.8579, 0.1161, 0.0259, 0.0, 0.0, 0.0, 0.0, 0.0], [0.834, 0.0879, 0.0776, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.8851, 0.0641, 0.0499, 0.0003, 0.0001, 0.0001, 0.0001, 0.0], [0.6977, 0.2909, 0.0113, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.6379, 0.2347, 0.1256, 0.0006, 0.0004, 0.0003, 0.0001, 0.0001], [0.5697, 0.3915, 0.0364, 0.0008, 0.0003, 0.0003, 0.0001, 0.0001], [0.5178, 0.457, 0.0228, 0.0006, 0.0004, 0.0003, 0.0002, 0.0002], [0.5968, 0.362, 0.0382, 0.0017, 0.0012, 0.0, 0.0, 0.0], [0.6056, 0.3242, 0.0638, 0.0032, 0.0028, 0.0001, 0.0001, 0.0], [0.9558, 0.042, 0.0013, 0.0002, 0.0002, 0.0002, 0.0001, 0.0], [0.9807, 0.018, 0.0004, 0.0002, 0.0002, 0.0001, 0.0001, 0.0], [0.9693, 0.0293, 0.0003, 0.0003, 0.0001, 0.0, 0.0, 0.0], [0.9819, 0.018, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.7539, 0.2447, 0.0008, 0.0005, 0.0, 0.0, 0.0, 0.0], [0.7698, 0.2205, 0.0046, 0.0028, 0.0003, 0.0002, 0.0002, 0.0001], [0.7966, 0.1569, 0.0241, 0.0088, 0.0035, 0.0016, 0.0012, 0.0006], [0.7857, 0.0938, 0.0502, 0.0443, 0.0077, 0.0025, 0.0006, 0.0006], [0.4441, 0.1535, 0.0991, 0.0822, 0.0342, 0.0183, 0.0076, 0.0072], [0.2711, 0.1203, 0.113, 0.0937, 0.0501, 0.0443, 0.0391, 0.0153], [0.4108, 0.0556, 0.0522, 0.0522, 0.0522, 0.0382, 0.0382, 0.0317], [0.3896, 0.0677, 0.0437, 0.0411, 0.0386, 0.032, 0.03, 0.0282], [0.3925, 0.0773, 0.044, 0.0343, 0.0343, 0.0284, 0.0221, 0.0221], [0.5393, 0.2887, 0.0534, 0.0502, 0.0144, 0.006, 0.0056, 0.003], [0.4649, 0.4102, 0.1037, 0.0096, 0.0017, 0.0008, 0.0003, 0.0002], [0.6789, 0.3207, 0.0003, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Kotlin": [164996, 60110, 43411, 8903, 6305, 6597, 15897, 38156, 29493, 7507, 15740, 3134, 2683, 1685, 15255, 3003, 3687, 3290, 10554, 86075, 149974, 46587, 76507, 165142, 28536, 13317, 13802, 13740, 20749, 19684, 10686, 10250, 86125, 29899, 41308, 20891, 20781, 21220, 22591, 17904, 28859, 27207, 20062, 22708, 22810, 24447, 15329, 15368, 10172, 9928, 26605, 13727, 9560, 6674, 12144, 30364, 26336, 16486, 7946, 4102, 4117, 8726, 11643]}}], "cast": [{"w": "s", "n": 824, "best": 1, "layers": [0, 62], "score": 604.47, "echo": true}, {"w": "Android", "n": 1201, "best": 1, "layers": [4, 62], "score": 524.67, "echo": true}, {"w": "JVM", "n": 690, "best": 1, "layers": [5, 62], "score": 384.84, "echo": true}, {"w": "incredibly", "n": 882, "best": 1, "layers": [10, 49], "score": 383.34, "echo": false}, {"w": "hardware", "n": 868, "best": 1, "layers": [15, 62], "score": 351.01, "echo": false}, {"w": "GC", "n": 780, "best": 1, "layers": [0, 62], "score": 337.2, "echo": true}, {"w": "arguably", "n": 750, "best": 1, "layers": [9, 49], "score": 307.26, "echo": false}, {"w": "Kotlin", "n": 601, "best": 1, "layers": [3, 62], "score": 289.18, "echo": true}, {"w": "impossible", "n": 581, "best": 1, "layers": [32, 62], "score": 276.1, "echo": false}, {"w": "cheap", "n": 449, "best": 1, "layers": [12, 62], "score": 237.81, "echo": true}, {"w": "tech", "n": 598, "best": 1, "layers": [14, 62], "score": 228.09, "echo": true}, {"w": "even", "n": 471, "best": 1, "layers": [10, 62], "score": 217.84, "echo": true}, {"w": "physics", "n": 478, "best": 1, "layers": [9, 62], "score": 213.36, "echo": true}, {"w": "milliseconds", "n": 400, "best": 1, "layers": [25, 61], "score": 182.75, "echo": false}, {"w": "myriad", "n": 479, "best": 1, "layers": [9, 39], "score": 174.87, "echo": false}, {"w": "complex", "n": 367, "best": 1, "layers": [23, 62], "score": 174.07, "echo": true}, {"w": "CPU", "n": 440, "best": 1, "layers": [3, 62], "score": 171.94, "echo": true}, {"w": "requires", "n": 367, "best": 1, "layers": [33, 62], "score": 167.88, "echo": false}, {"w": "Java", "n": 518, "best": 1, "layers": [24, 62], "score": 158.27, "echo": false}, {"w": "hugely", "n": 444, "best": 1, "layers": [7, 34], "score": 155.85, "echo": false}, {"w": "relentless", "n": 444, "best": 1, "layers": [13, 51], "score": 150.06, "echo": false}, {"w": "aggressively", "n": 371, "best": 1, "layers": [11, 62], "score": 147.25, "echo": false}, {"w": "heavily", "n": 444, "best": 1, "layers": [13, 48], "score": 140.4, "echo": false}, {"w": "garbage", "n": 340, "best": 1, "layers": [26, 62], "score": 137.34, "echo": false}, {"w": "optimized", "n": 274, "best": 1, "layers": [10, 62], "score": 136.96, "echo": true}, {"w": "framerate", "n": 292, "best": 1, "layers": [12, 62], "score": 136.34, "echo": false}, {"w": "-esque", "n": 276, "best": 1, "layers": [11, 54], "score": 126.99, "echo": false}, {"w": "memory", "n": 318, "best": 1, "layers": [4, 62], "score": 124.98, "echo": true}, {"w": "\u2013and", "n": 400, "best": 1, "layers": [0, 35], "score": 122.55, "echo": false}, {"w": "wildly", "n": 401, "best": 1, "layers": [11, 48], "score": 117.36, "echo": false}, {"w": "FPS", "n": 261, "best": 1, "layers": [11, 62], "score": 110.82, "echo": true}, {"w": "runtime", "n": 280, "best": 1, "layers": [25, 62], "score": 110.54, "echo": true}, {"w": "notoriously", "n": 283, "best": 1, "layers": [18, 51], "score": 108.19, "echo": false}, {"w": "truly", "n": 285, "best": 1, "layers": [9, 48], "score": 105.31, "echo": false}, {"w": "speed", "n": 244, "best": 1, "layers": [18, 57], "score": 104.91, "echo": false}, {"w": "engine", "n": 263, "best": 1, "layers": [10, 62], "score": 101.95, "echo": true}, {"w": "unpredictable", "n": 277, "best": 1, "layers": [26, 62], "score": 101.81, "echo": true}, {"w": "spikes", "n": 266, "best": 1, "layers": [25, 62], "score": 99.5, "echo": false}, {"w": "kids", "n": 239, "best": 1, "layers": [1, 47], "score": 98.89, "echo": false}, {"w": "relentlessly", "n": 323, "best": 1, "layers": [12, 50], "score": 98.7, "echo": false}]}