{"id": "lv-pain-python-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", " Python", ".", " 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", " and", " a", " performance", " bottleneck", ".", " Python", " is", " fantastic", " for", " the", " server", " modules", ",", " data", " stores", ",", " and", " plugin", " logic", ",", " but", " forcing", " it", " to", " drive", " a", " real", "-time", " ", "3", "D", " viewport", " and", " complex", " async", " UI", " on", " mobile", "/desktop", " is", " fighting", " the", " language", "\u2019s", " fundamental", " design", ".", " You", "\u2019re", " asking", " for", " C", "++", "/", "R", "ust", "-level", " concurrency", " and", " rendering", " performance", " from", " a", " G", "IL", "-bound", ",", " interpreted", " language", ".", " It", " *", "can", "*", " be", " done", ",", " but", " it", " will", " require", " heavy", " reliance", " on", " C", "-", "extensions", " (", "like", " Py", "OpenGL", ",", " Py", "Side", "/", "Py", "Qt", ",", " or", " K", "ivy", ")", " and", " careful", " architectural", " isolation", " to", " prevent", " the", " UI", " from", " freezing", " during", " async", " operations", ".", "\n\n", "**", "Top", " ", "3", " Technical", " Ris", "ks", ":**", "\n\n", "1", ".", " ", " **", "The", " G", "IL", " &", " Real", "-Time", " UI", "/", "3", "D", " Performance", ":**", " Python", "\u2019s", " Global", " Interpreter", " Lock", " (", "G", "IL", ")", " will", " serialize", " your", " async", " tasks", ",", " making", " true", " parallel", "ism", " impossible", " in", " pure", " Python", ".", " On", " mobile", ",", " this", " means", " j", "anky", " frame", " rates", " in", " the", " ", "3", "D", " viewport", " and", " un", "responsive", " UI", " during", " heavy", " async", " calls", ".", " You", "\u2019ll", " need", " to", " off", "load", " rendering", " and", " heavy", " computation", " to", " C", "-", "extensions", " or", " separate", "<|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", " Python", ":", " what", " breaks", " first", ",", " and", " what", " exactly", " do", " you", " do", " about", " it", "?", "<|im_end|>", "\n", "<|im_start|>", "assistant", "\n", "<think>", "\n\n", "</think>", "\n\n", "**", "What", " Break", "s", " First", ":**", "\n", "The", " **", "3", "D", " View", "port", " on", " Android", "**.", "\n\n", "Python", " cannot", " hit", " ", "1", "2", "0", " FPS", " (", "8", ".", "3", "3", "ms", " per", " frame", ")", " on", " mid", "-range", " Android", " hardware", " in", " a", " single", "-thread", "ed", ",", " G", "IL", "-bound", " process", ".", " The", " overhead", " of", " the", " Python", " interpreter", ",", " garbage", " collection", " pauses", ",", " and", " the", " cost", " of", " crossing", " the", " Python", "-to", "-C", " boundary", " for", " every", " OpenGL", "/V", "ulkan", " call", " will", " tank", " your", " frame", " rate", ".", " The", " UI", " thread", " will", " also", " freeze", " during", " GC", " spikes", ",", " causing", " dropped", " frames", " and", " input", " lag", ".", "\n\n", "**", "What", " You", " Do", " About", " It", " (", "The", " \"", "Python", "-", "Only", "\"", " Comp", "romise", "):**", "\n\n", "You", " don", "\u2019t", " write", " the", " renderer", " in", " Python", ".", " You", " write", " a", " **", "C", "-extension", " bridge", "**", " that", " Python", " *", "imports", "*.", " This", " is", " still", " \"", "1", "0", "0", "%", " Python", "\"", " from", " the", " developer", "\u2019s", " perspective", " (", "the", " app", " is", " a", " `.", "py", "`", " file", " importing", " a", " `.", "so", "`", "/", "`.", "py", "d", "`", "),", " but", " the", " hot", " path", " is", " native", ".", "\n\n", "###", " ", "1", ".", " The", " ", "3", "D", " View", "port", ":", " Off", "load", " to", " a", " Native", " C", "-", "Extension", "\n", "*", "  ", " **", "Problem", ":**", " Pure", " Python", " OpenGL", "/V", "ulkan", " bindings", " (", "like", " Py", "OpenGL", ")", " are", "<|im_end|>", "\n"], "gen_start": 372, "start": 368, "track": ["Python"], "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", "\u4f46\u4e0d\u9650\u4e8e", " **\u3010", " \u00bb**", " **\u2014", "\\xc"], [" **\u300c", " **\u00ab", " **\u25a0", "\u4f46\u4e0d\u9650\u4e8e", " \u00bb**", " **\u3010", " **\u2014", "schild"], [" **\u300c", " **\u00ab", "schild", "\\xc", "\u4f46\u4e0d\u9650\u4e8e", "\r\r\n\r\r\n", "  \n\n", "s"], [" **\u300c", " **\u00ab", "\\xc", "\u4f46\u4e0d\u9650\u4e8e", "schild", "s", " />\\", "\\."], ["s", " **\u300c", " **\u00ab", "\\xc", "\\.", "schild", " \u00ad", "\u4f46\u4e0d\u9650\u4e8e"], [" **\u300c", " **\u00ab", "s", "schild", "\\xc", "\u044b", "\u4f46\u4e0d\u9650\u4e8e", " \u00bb**"], [" **\u300c", "s", " **\u00ab", "schild", "\u044b", "\\xc", " (\u00ab", "\u4f46\u4e0d\u9650\u4e8e"], ["s", " **\u00ab", " **\u300c", "schild", "\u044b", " (\u00ab", "\\xc", ".\u00ab"], ["s", " **\u300c", " **\u00ab", "schild", "\u044b", "\\xc", "\u4f46\u4e0d\u9650\u4e8e", "\u3044\u308b"], ["s", " **\u00ab", " **\u300c", "schild", "\u044b", "siz", "\u4f46\u4e0d\u9650\u4e8e", "svar"], ["s", " **\u00ab", "schild", "\u044b", " **\u300c", "siz", "\u0627\u062a", "\\xc"], ["s", " **\u00ab", " **\u300c", "schild", "\u044b", "\\xc", "\\.", "siz"], ["s", " **\u00ab", "\u044b", "schild", " **\u300c", "\\xc", "\u0627\u062a", "\u4f46\u4e0d\u9650\u4e8e"], ["s", "\\xc", "\u044b", "schild", "\\.", "  \n\n", "\u0627\u062a", "\\-"], ["s", "  \n\n", "\\.", " \u00ad", "\\xc", "\\-", "<|endoftext|>", " \n\n\n\n"], [" **\u00ab", " **\u300c", "schild", "s", " **\u25a0", "\u044b", " **\u2014", "svar"], [" **\u00ab", "s", " **\u300c", "  \n\n", "\u044b", "schild", " **\u2014", "\r\r\n\r\r\n"], [" **\u00ab", "s", "  \n\n", " **\u300c", " \u00ad", "\r\r\n\r\r\n", "schild", " \n\n\n\n"], ["  \n\n", " **\u00ab", "\r\r\n\r\r\n", "   \n\n", " \n\n\n\n", "s", " \u00ad", "schild"], [" **\u00ab", "  \n\n", " **\u300c", "\r\r\n\r\r\n", " **\u2014", "schild", " \n\n\n\n", "\u4f46\u4e0d\u9650\u4e8e"], [" **\u00ab", "schild", "  \n\n", "\r\r\n\r\r\n", "\u4f46\u4e0d\u9650\u4e8e", "s", " intele", "sii"], ["  \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", "<|im_end|>", " \n\n\n\n", "   \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\n", " \n\n", "  \n  \n", "?\\", "\u2728", "s"], ["  \n\n", "\u2728", " \n\n\n\n", "s", "   \n\n", " **[", " \u2705", "?\\"], ["  \n\n", "]**", "\u2728", "!**", "   \n\n", "  \r\n\r\n", " \n\n\n\n", "  \n  \n"], ["  \n\n", " **\u00ab", " **\u201c", " **[", "]**", "\u2019**", " **\u2014", "\u2728"], ["!**", "]**", "  \n\n", " **\u201c", " **\u00ab", "\u2019**", " **\u2014", "])**"], ["]**", " **\u00ab", "!**", " **\u201c", "  \n\n", "\u2019**", "])**", " **\u2014"], ["  \n\n", "]**", " **[", "!**", " **\u201c", " **\u00ab", "   \n\n", "])**"], ["  \n\n", "]**", "!**", " **[", " **\u00ab", " **\u201c", "])**", "\uff1f**"], ["]**", "  \n\n", "!**", "])**", "\u2728", "\u00adi", "\u2019**", "\u601d\u7ef4"], ["!**", "  \n\n", "]**", "])**", "\u2026**", "\u2019**", "\u2728", "\u601d\u7ef4"], ["!**", "  \n\n", "]**", "])**", "\u2026**", "\uff01**", "**!", "\u00adi"], ["!**", "]**", "])**", " **\u00ab", "\u2019**", ">**", ")**", "  \n\n"], ["!**", "]**", ">**", " **\u00ab", "])**", "\u2019**", "\uff01**", " **\u201c"], ["\u2019**", "]**", ">**", " )**", "!**", " **\u201c", " **\u00ab", "])**"], ["]**", ">**", "\u2019**", " )**", " **\u00ab", " **\u201c", "!**", "\u601d\u8003"], [" **\u00ab", ">**", " **\u201c", "]**", " **\"", "\u2019**", "!**", " **\u300c"], [" **\u00ab", " **\u201c", " **\u300c", " **\"", ">**", "\u2019**", "!**", "]**"], [">**", "\u706b\u82b1", "\u8f6c\u79fb", "]**", "\u2019**", "!**", "\u521b\u4f5c\u8005", "_transfer"], ["]**", ">**", ")**", "\u2019**", "\uff1a**", "\u3002**", "!**", ")\u300d"], ["\u2019**", ">**", "]**", ")**", "!**", " **\u3010", "])**", "\uff1a**"], [" **\u3010", ">**", "!**", "\u89e3\u7b54", "]**", "\u3002**", "\u2019**", ")**"], [" **\u3010", "!**", "\u5206\u6790", "]**", ">**", "\u3002**", "\u601d\u8003", "\u89e3\u7b54"], [" **\u3010", "\u601d\u8003", ">**", "\u5206\u6790", " **\u00ab", "\u3002**", " **\"", "Thinking"], ["Here", " **\u3010", "Thinking", "\u2019**", ">**", "\u8fd9\u91cc", " **\"", "\u3002**"], ["Here", " Here", "here", "\u8fd9\u91cc", " here", "\u8fd9\u91cc\u662f", "\u5728\u8fd9\u91cc", "_HERE"], ["Here", "here", "\u8fd9\u91cc", " here", " Here", "\u8fd9\u91cc\u662f", " HERE", "_HERE"], ["Here", "\u8fd9\u91cc", " Here", "here", "\u8fd9\u91cc\u662f", "HERE", " here", " HERE"], ["Here", "\u8fd9\u91cc", " Here", "\u804a", "here", "Chat", "HERE", "\u8fd9\u91cc\u662f"], ["Here", " Here", "\u8fd9\u91cc", "\n\n", "HERE", "\u8fd9\u91cc\u662f", "here", "\u804a"], ["Here", "\n\n", " Here", " here", "\u8fd9\u91cc", "HERE", "here", "_HERE"], ["\n\n", "Here", " \n\n", " Here", "\u6587\u9759", "uha", "\u6316\u6398\u516c\u53f8", "Okay"], ["\n\n", " \n\n", "  \n\n", "Here", "CHAT", " Here", "\r\n\r\n", " chat"], ["\n\n", "\n", " Here", "<|im_start|>", "Here", " Chat", "linky", " \n\n"]], "p": [[0.0535, 0.0269, 0.0153, 0.0144, 0.0135, 0.0112, 0.0087, 0.0068], [0.2994, 0.0554, 0.0381, 0.0217, 0.018, 0.0102, 0.0096, 0.0085], [0.6491, 0.0533, 0.039, 0.0252, 0.0236, 0.0056, 0.0044, 0.0041], [0.6362, 0.076, 0.0337, 0.018, 0.0124, 0.0097, 0.0055, 0.004], [0.6505, 0.1864, 0.0286, 0.0153, 0.0072, 0.005, 0.0032, 0.0027], [0.7547, 0.2162, 0.0061, 0.0042, 0.0018, 0.0007, 0.0006, 0.0005], [0.8451, 0.1296, 0.0032, 0.0027, 0.0025, 0.0021, 0.0009, 0.0004], [0.8217, 0.1618, 0.0023, 0.0014, 0.0012, 0.0007, 0.0007, 0.0004], [0.8155, 0.1104, 0.0085, 0.0075, 0.0046, 0.0035, 0.0033, 0.0031], [0.6852, 0.1349, 0.0301, 0.0183, 0.0151, 0.0118, 0.0072, 0.0043], [0.6227, 0.2021, 0.033, 0.033, 0.0166, 0.0078, 0.0074, 0.0061], [0.6574, 0.3105, 0.0175, 0.0022, 0.0011, 0.001, 0.0008, 0.0006], [0.3505, 0.3093, 0.3093, 0.006, 0.0028, 0.0021, 0.0017, 0.0015], [0.3989, 0.3106, 0.2135, 0.0088, 0.0083, 0.0042, 0.0035, 0.0029], [0.9375, 0.0195, 0.0161, 0.0049, 0.0043, 0.0009, 0.0005, 0.0005], [0.7842, 0.0685, 0.0501, 0.0184, 0.0127, 0.0032, 0.0027, 0.0018], [0.9568, 0.0113, 0.0057, 0.0042, 0.0027, 0.0007, 0.0006, 0.0006], [0.629, 0.1494, 0.0456, 0.0276, 0.0139, 0.0054, 0.0035, 0.0033], [0.8414, 0.0347, 0.0154, 0.0113, 0.0077, 0.005, 0.0037, 0.002], [0.908, 0.0069, 0.0069, 0.0033, 0.0031, 0.0026, 0.0021, 0.0019], [0.4927, 0.2989, 0.0123, 0.0123, 0.0066, 0.0058, 0.0045, 0.0033], [0.8901, 0.0569, 0.0056, 0.003, 0.0022, 0.0021, 0.0019, 0.0011], [0.6582, 0.138, 0.0395, 0.0155, 0.0065, 0.0061, 0.0037, 0.0037], [0.5581, 0.0755, 0.0488, 0.0278, 0.009, 0.008, 0.0062, 0.0045], [0.4828, 0.0478, 0.0155, 0.0137, 0.0107, 0.01, 0.0073, 0.0061], [0.2171, 0.0516, 0.0178, 0.0148, 0.0115, 0.009, 0.0051, 0.0048], [0.0226, 0.0073, 0.0069, 0.0061, 0.0037, 0.0035, 0.0033, 0.0033], [0.9024, 0.0577, 0.0057, 0.0044, 0.0042, 0.0014, 0.0012, 0.0009], [0.9089, 0.0201, 0.0114, 0.0069, 0.0061, 0.0054, 0.0037, 0.0015], [0.9383, 0.0086, 0.0076, 0.0067, 0.0043, 0.0041, 0.0013, 0.0012], [0.8164, 0.0075, 0.0049, 0.0038, 0.0033, 0.0029, 0.0026, 0.0022], [0.4788, 0.0082, 0.0064, 0.006, 0.0057, 0.0041, 0.0037, 0.0037], [0.7694, 0.0052, 0.0052, 0.0043, 0.0043, 0.0033, 0.0026, 0.0024], [0.3945, 0.0443, 0.0345, 0.0345, 0.0185, 0.0144, 0.0144, 0.0119], [0.0427, 0.0427, 0.0354, 0.0313, 0.0276, 0.0229, 0.0178, 0.0178], [0.098, 0.0594, 0.0558, 0.0558, 0.0409, 0.0409, 0.0361, 0.0281], [0.7557, 0.04, 0.0189, 0.013, 0.0122, 0.0095, 0.0079, 0.007], [0.2299, 0.0546, 0.0453, 0.0275, 0.0275, 0.0177, 0.0167, 0.0147], [0.0181, 0.017, 0.0159, 0.015, 0.0091, 0.008, 0.0075, 0.0071], [0.1289, 0.0782, 0.0347, 0.0254, 0.0164, 0.0154, 0.0145, 0.0128], [0.25, 0.1516, 0.0408, 0.015, 0.0117, 0.0091, 0.0075, 0.0059], [0.0937, 0.0416, 0.0196, 0.0163, 0.0163, 0.0135, 0.0093, 0.0087], [0.0813, 0.0633, 0.0463, 0.0361, 0.0281, 0.0193, 0.0141, 0.0117], [0.0617, 0.0545, 0.0452, 0.0374, 0.0242, 0.0227, 0.02, 0.02], [0.0724, 0.053, 0.0498, 0.025, 0.0235, 0.0235, 0.0118, 0.0092], [0.1492, 0.1092, 0.0963, 0.085, 0.0705, 0.0549, 0.0313, 0.0259], [0.1547, 0.0645, 0.0472, 0.0443, 0.0391, 0.0223, 0.0185, 0.0153], [0.0095, 0.0084, 0.0084, 0.0079, 0.0074, 0.0062, 0.0058, 0.0054], [0.0148, 0.0148, 0.0123, 0.0108, 0.009, 0.0084, 0.0084, 0.0058], [0.0547, 0.0426, 0.0332, 0.0332, 0.0228, 0.0147, 0.0147, 0.0108], [0.2981, 0.0277, 0.026, 0.0245, 0.0216, 0.0168, 0.0158, 0.0116], [0.103, 0.0356, 0.0314, 0.0295, 0.023, 0.023, 0.0179, 0.0148], [0.1212, 0.0419, 0.0306, 0.0198, 0.0186, 0.0175, 0.0154, 0.0154], [0.2305, 0.0178, 0.0157, 0.0108, 0.0084, 0.0065, 0.0058, 0.0058], [0.8476, 0.0422, 0.0422, 0.0372, 0.0155, 0.0073, 0.0016, 0.0013], [0.5377, 0.1359, 0.12, 0.0934, 0.05, 0.0208, 0.0126, 0.0087], [0.729, 0.1118, 0.0466, 0.032, 0.0171, 0.0134, 0.0118, 0.0118], [0.6017, 0.1343, 0.0596, 0.0206, 0.0206, 0.0142, 0.0125, 0.011], [0.6621, 0.0896, 0.0451, 0.0273, 0.0114, 0.0107, 0.0083, 0.0078], [0.3731, 0.3731, 0.0943, 0.0154, 0.0145, 0.0073, 0.006, 0.0039], [0.9928, 0.0012, 0.0008, 0.0001, 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.9398, 0.0028, 0.0004, 0.0003, 0.0002, 0.0002, 0.0001, 0.0001]], "ranks": {"Python": [74074, 194499, 137522, 118552, 88660, 120554, 84972, 138097, 133710, 122735, 52036, 79590, 46413, 45440, 55454, 97864, 58314, 50635, 68629, 81498, 28635, 123756, 43575, 62423, 30864, 68520, 90085, 15578, 2608, 2743, 18304, 27079, 11035, 13325, 6899, 7130, 8798, 7765, 10288, 17098, 33224, 31993, 62873, 36504, 8093, 3576, 5143, 2221, 2347, 9178, 9600, 7166, 9794, 4075, 5684, 1909, 6188, 34375, 81221, 49954, 21595, 43962, 12060]}}, {"pos": 369, "top": [["  \n\n", " \u200b\u200b", ".", " \n\n", "\u00a0\u00a0", "  ", "   \n", "\u00a0"], ["\uff1a**", "\uff1f**", " **:", " \u062f\u0645\u0634", " **:**", "**\u3002", " **'", "  \n\n"], ["**\u3002", "\u7684", "\uff1f**", "\u3002", " **\u3010", "\u3002**", "\u662f", "\uff1a**"], [" **\u3010", "\uff1f**", " **\u25cb", "**\u3002", " **\u201c", "\u7684", "\uff1a**", " **\u300c"], [" \n\n\n\n", " \n\n", " **\u3010", "  \n\n", "**\u3002", " **\u201c", "\uff1f**", "\uff1a**"], [" **\u3010", " \n\n\n\n", " **\u201c", " \n\n", "**\u3002", "  \n\n", "\uff1f**", " **\u25cb"], [" \n\n", "  \n\n", " **\u3010", " \n\n\n\n", "**\u3002", "\n\n\n\n", " **\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", " **\u3010", "    \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", "\n\n\n\n"], [" **\u3010", "  \n\n", "**\u3002", "\uff1f**", "\u7684", " \n\n", "\u548c", " \n\n\n\n"], ["  \n\n", " \n\n", " **\u3010", "   \n\n", "**\u3002", " \n\n\n\n", "     \n\n", "\uff1f**"], ["  \n\n", " **\u3010", "   \n\n", " \n\n", "\uff1f**", "**\u3002", " \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"], ["  \n\n", "   \n\n", " \n\n", "  \r\n\r\n", " \n\n\n\n", "**", "**\u3002", " **\u3010"], ["  \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", "  \r\n\r\n", " \r\n\r\n", " \n\n\n\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", " **\u3010", "   \n\n", " \n\n\n\n", " \r\n\r\n", "\r\n\r\n\r\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", "\r\n\r\n", " \r\n\r\n", "   \n\n", " \n\n\n", "\r\n\r\n\r\n"], ["  \n\n", " \n\n", "\n\n", "   \n\n", "\r\n\r\n", "<|endoftext|>", " \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", "\r\n\r\n"], [" \n\n", "  \n\n", " \n\n\n\n", " \r\n\r\n", "\r\n\r\n", " \n\n\n", "   \n\n", "  \r\n\r\n"], [" \n\n", "  \n\n", " \r\n\r\n", "<|im_end|>", "\r\n\r\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", "\r\n\r\n", " \n\n\n"], ["  \n\n", " \n\n\n\n", " \r\n\r\n", "  \r\n\r\n", "\ufffd", " \n\n", "   \n\n", "${"], ["\ufffd", "  \n\n", "  \r\n\r\n", "?**", "\uff1f**", " \r\n\r\n", " \n\n\n\n", "\u90a3"], ["\ufffd", "\uff1f**", "?**", "]**", " \r\n\r\n", "  \r\n\r\n", "  \n\n", "**\u201d"], ["  \n\n", " \r\n\r\n", "  \r\n\r\n", " \n\n\n\n", "]**", "   \n\n", "\uff1f**", "\r\n\r\n\r\n"], ["  \r\n\r\n", "  \n\n", " \r\n\r\n", "\uff1f**", "]**", "\uff09**", "\r\n\r\n\r\n", "!**"], ["  \r\n\r\n", "  \n\n", " \r\n\r\n", "\uff1f**", "\r\n\r\n\r\n", "\r\n\r\n\r\n\r\n", " \n\n\n\n", "   \n\n"], ["  \n\n", "  \r\n\r\n", " \n\n\n\n", "\uff1f**", "   \n\n", "\uff09**", "!**", "  \n\n\n"], ["\uff1f**", "  \n\n", "\uff09**", "!**", "]**", ">**", "**\u3002", "  \r\n\r\n"], ["!**", "]**", ">**", "\uff1f**", "\uff09**", "  \n\n", "\uff01**", "**!"], ["!**", "\uff1f**", "]**", ">**", "\uff01**", "\uff09**", "  \n\n", "\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**", "\t\n\n\n"], [">**", "!**", "\uff1f**", "\uff01**", "\uff09**", "]**", " \n\t\n", "\u2019**"], [">**", "!**", "\uff01**", "\uff1f**", "\u5e4c", "<|object_ref_start|>", "]**", "/story"], [">**", "!**", "\uff01**", ")**,", "\uff09**", "\uff1f**", "essay", "\u601d\u8003"], [">**", "\u2019**", "**\u3002", ";**", "!**", " **\u201c", "]**", "\u3002**"], ["**\u3002", "!**", "**\u201d", "\u2019**", "!\u201d.", "\u3001", "\u7684", "\uff01**"], [" \u0445\u0440\u043e", "\u8fde", ";**", "\u591a", "**\u3002", "\u2019**", "\u8bed\u97f3", "\u601d\u8003"], ["\u591a", "**\u3002", ";**", "Creat", "\u603b\u7ed3", "\u89e3\u7b54", "\u601d\u8003", "\u56de\u7b54"], ["_growth", "\u91cc\u7ea6", "\u6ca1\u5e2e\u52a9", "_serv", "<|object_ref_end|>", ".END", "\u535a\u683c", "\u4e13\u5bb6\u6307\u51fa"], ["\u91cc\u7ea6", "_growth", "\u56de\u7b54", "\u601d\u8003", "_serv", "\u63d0\u7eb2", "\u53d7\u7406", "\u7a33"], ["\u601d\u8003", "\u0435\u0442\u043e", "\u6dc0", "ackbar", "\u91cc\u7ea6", "\u4e0d\u884c\u4e86", "\u65c5", "anko"], ["\u601d\u8003", ";**", "\u0448\u0435\u043d\u044c", "NSObject", "_strike", "utum", "anko", "(observer"], ["\u5495", "\u9a7b\u9a6c", "brio", ".dex", "_vk", "utum", "acken", "\u79d1\u5a01"], ["\u9a7b\u9a6c", "anke", "unku", "\u79d1\u5a01", "-debug", "_GEN", "/bower", "_mtx"], ["</think>", "anke", "\u9a7b\u9a6c", "\u683c\u91cc", "_GEN", "Accessory", "ACK", "\u79d1"], ["</think>", "anke", "\u9a7b\u9a6c", "_GEN", "Accessory", "_commit", "\u62f7", ".dex"], ["\u9a7b\u9a6c", "</think>", "Accessory", "anke", "entro", "ipper", "\u4e0d\u6cbb", "_GEN"], ["</think>", "\u9a7b\u9a6c", "\u4e0d\u6cbb", "adden", "bery", "unku", "anke", "\uacbd"], ["</think>", "\u9a7b\u9a6c", "\u6dc0", "unku", "\u03bc\u03b9\u03c3", "\u4e0d\u6cbb", "bery", "\u0435\u0440\u044c"], ["</think>", "\uacbd", "bery", "\u9a7b\u9a6c", "\u4e09\u4e94", "unku", "\u5171\u5efa", "\n\n"], ["</think>", "bery", "agos", "\n\n", "\u7a0e\u91d1", "\uacbd", "unku", "eral"]], "p": [[0.2418, 0.2272, 0.1378, 0.089, 0.042, 0.0225, 0.0145, 0.0145], [0.0253, 0.0135, 0.0064, 0.0064, 0.0056, 0.0044, 0.0041, 0.0039], [0.368, 0.2529, 0.1195, 0.0284, 0.0267, 0.0172, 0.0152, 0.0143], [0.1602, 0.0217, 0.018, 0.0096, 0.0085, 0.008, 0.008, 0.0066], [0.3414, 0.1613, 0.118, 0.0492, 0.028, 0.0263, 0.0132, 0.011], [0.2376, 0.1633, 0.0725, 0.0601, 0.0388, 0.0322, 0.0284, 0.0092], [0.3543, 0.2019, 0.1781, 0.0397, 0.0241, 0.0121, 0.0114, 0.0107], [0.5363, 0.3253, 0.0389, 0.0184, 0.0105, 0.0077, 0.0068, 0.0049], [0.6833, 0.2849, 0.0182, 0.0028, 0.0015, 0.0013, 0.0013, 0.0012], [0.5895, 0.3575, 0.013, 0.0065, 0.0037, 0.0033, 0.0027, 0.0023], [0.6678, 0.2784, 0.0157, 0.0089, 0.004, 0.0035, 0.0033, 0.0026], [0.3117, 0.2928, 0.1077, 0.0449, 0.0155, 0.0137, 0.0094, 0.0083], [0.3376, 0.2179, 0.1096, 0.0295, 0.023, 0.019, 0.0139, 0.0131], [0.2544, 0.145, 0.0471, 0.0304, 0.0268, 0.0209, 0.0163, 0.0153], [0.3927, 0.0469, 0.0285, 0.0222, 0.0105, 0.0087, 0.0063, 0.0056], [0.1922, 0.0457, 0.0216, 0.0179, 0.0123, 0.0115, 0.0079, 0.0062], [0.9245, 0.0316, 0.0169, 0.0071, 0.0038, 0.0019, 0.0011, 0.0006], [0.9362, 0.022, 0.0151, 0.0028, 0.0025, 0.0019, 0.0013, 0.0011], [0.3883, 0.0922, 0.0526, 0.0494, 0.0299, 0.016, 0.0141, 0.0103], [0.8412, 0.0887, 0.0198, 0.006, 0.006, 0.0047, 0.0047, 0.0037], [0.7731, 0.1955, 0.0182, 0.0067, 0.0017, 0.0007, 0.0007, 0.0005], [0.4183, 0.1976, 0.0532, 0.05, 0.0323, 0.0222, 0.0208, 0.0162], [0.4263, 0.293, 0.1568, 0.0273, 0.0212, 0.0165, 0.0146, 0.0114], [0.4928, 0.2328, 0.0667, 0.0667, 0.0203, 0.0158, 0.0158, 0.0131], [0.4808, 0.2916, 0.1769, 0.0128, 0.0088, 0.0053, 0.0037, 0.0032], [0.5209, 0.358, 0.0229, 0.0157, 0.0157, 0.0139, 0.0123, 0.0108], [0.2172, 0.1589, 0.1026, 0.0549, 0.0244, 0.0229, 0.0215, 0.0178], [0.4481, 0.3954, 0.0325, 0.0253, 0.0197, 0.0153, 0.0135, 0.0119], [0.6131, 0.199, 0.0503, 0.0185, 0.0174, 0.0174, 0.0127, 0.0105], [0.2774, 0.09, 0.0482, 0.0425, 0.0425, 0.04, 0.0258, 0.0228], [0.0577, 0.035, 0.0256, 0.02, 0.0187, 0.0155, 0.0146, 0.0137], [0.0529, 0.0342, 0.0235, 0.0221, 0.0195, 0.0195, 0.0183, 0.0172], [0.2289, 0.0743, 0.0544, 0.0273, 0.0213, 0.02, 0.0188, 0.0166], [0.044, 0.0235, 0.0221, 0.0172, 0.0152, 0.0104, 0.0098, 0.0081], [0.084, 0.0741, 0.0187, 0.0187, 0.0176, 0.0165, 0.0155, 0.0121], [0.1398, 0.0312, 0.0228, 0.0167, 0.0167, 0.0115, 0.0101, 0.0101], [0.0952, 0.0894, 0.051, 0.045, 0.0373, 0.0309, 0.02, 0.0176], [0.1651, 0.083, 0.0607, 0.0607, 0.0346, 0.0253, 0.0253, 0.0154], [0.0504, 0.0253, 0.0238, 0.0185, 0.0136, 0.0112, 0.0093, 0.0064], [0.0651, 0.0307, 0.0271, 0.0211, 0.012, 0.0113, 0.0113, 0.0083], [0.1644, 0.0471, 0.0442, 0.0286, 0.0252, 0.0237, 0.0209, 0.0163], [0.1955, 0.1621, 0.056, 0.0526, 0.0362, 0.0319, 0.03, 0.0206], [0.0429, 0.0216, 0.0203, 0.0158, 0.0123, 0.0109, 0.009, 0.0085], [0.039, 0.0105, 0.0099, 0.0072, 0.0053, 0.0044, 0.0036, 0.0034], [0.0412, 0.0195, 0.0076, 0.0028, 0.0028, 0.0023, 0.0022, 0.0019], [0.0214, 0.0101, 0.0069, 0.0026, 0.0026, 0.0024, 0.002, 0.0019], [0.0752, 0.0429, 0.0295, 0.0158, 0.0139, 0.0108, 0.0108, 0.0108], [0.0107, 0.0094, 0.0083, 0.0069, 0.0061, 0.0044, 0.0037, 0.0033], [0.0025, 0.0017, 0.0015, 0.0013, 0.0012, 0.0012, 0.0011, 0.001], [0.003, 0.0027, 0.0024, 0.0022, 0.0022, 0.0018, 0.0017, 0.0017], [0.0015, 0.0012, 0.001, 0.0008, 0.0008, 0.0007, 0.0007, 0.0006], [0.004, 0.0016, 0.0012, 0.001, 0.001, 0.0009, 0.0009, 0.0008], [0.0017, 0.0015, 0.0011, 0.001, 0.0009, 0.0008, 0.0008, 0.0008], [0.0016, 0.0016, 0.0012, 0.0012, 0.0011, 0.0011, 0.0011, 0.001], [0.0018, 0.0012, 0.0011, 0.0011, 0.0011, 0.0009, 0.0009, 0.0009], [0.0093, 0.0056, 0.0025, 0.0016, 0.0015, 0.0015, 0.0013, 0.0013], [0.0189, 0.0079, 0.0045, 0.0029, 0.0024, 0.0021, 0.0015, 0.0015], [0.0244, 0.0123, 0.0084, 0.0058, 0.0045, 0.0023, 0.0019, 0.0019], [0.0367, 0.0184, 0.0072, 0.0064, 0.0034, 0.0022, 0.0022, 0.0022], [0.0485, 0.009, 0.0062, 0.0035, 0.0033, 0.0021, 0.002, 0.002], [0.0281, 0.0182, 0.0055, 0.0038, 0.003, 0.0026, 0.0026, 0.0023], [0.1126, 0.0032, 0.0032, 0.0026, 0.0022, 0.0021, 0.0021, 0.002], [0.9356, 0.0006, 0.0005, 0.0005, 0.0004, 0.0002, 0.0002, 0.0002]], "ranks": {"Python": [84499, 243852, 187043, 172654, 143945, 145904, 61442, 58347, 54892, 58086, 25290, 59308, 48611, 45133, 15640, 54837, 29236, 37063, 46273, 28763, 6850, 18043, 14980, 10850, 2948, 2017, 1691, 1009, 611, 756, 705, 1198, 923, 1361, 4456, 5348, 3556, 2019, 7430, 21582, 22821, 55191, 141221, 114860, 133453, 106025, 90002, 88458, 144916, 89484, 156182, 172736, 166537, 168034, 175256, 204989, 178196, 204770, 217694, 188228, 228283, 242106, 199418]}}, {"pos": 370, "top": [[" #####", "#####", "**\u2013", "\u0629", "<br", "\"\"\"", "es", "y"], [" **\u3010", "\uff5e\uff5e", "\uff1f**", "**\u2013", " \u2013**", "\uff1d\uff1d\uff1d\uff1d", " \\<", "__)"], [" **\u3010", "\uff1f**", "**\u3002", "__)", "**\u2013", ")__", ":__", " **.**"], [" **\u3010", " /**<", " **\u300c", "__)", " **>>", " **\u00ab", "\u300d**", "\uff1f**"], [" **\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", " /**<", " (__", " **"], [" **\u3010", " ____", " (__", " ___", " **#", " __", "____", " **\u300c"], [" **\u3010", "\n\n", "  \n\n", " (__", "\r\n\r\n", " ____", "\ufe0f", "____"], ["\n\n", " **\u3010", " ___", "  \n\n", "___", "\r\n\r\n", ".__", " ____"], [" **\u3010", "\n\n", " ___", " ____", "\r\n\r\n", " **#", " __", "\ufe0f"], [" **\u3010", " **#", "\ufe0f", "\r\n\r\n", "**", "(**", ">**", "e"], [" **\u3010", " **#", "**", "(**", " (**", "...\\", ">**", "\ufe0f"], [" **\u3010", " **#", "\r\n\r\n", "...\\", "...**", "**", ":__", " **["], ["\n\n", "\r\n\r\n", "  \n\n", " **\u3010", "...\\", " \r\n\r\n", " **[", "[^"], ["\n\n", "  \n\n", "<|endoftext|>", " \n\n", "\r\n\r\n", " \r\n\r\n", "e", "<|im_end|>"], [" **\u3010", "\r\n\r\n", " **[", " **#", " **", "\n\n", " \r\n\r\n", " \\<"], ["\r\n\r\n", "\n\n", " **\u3010", " \r\n\r\n", " \\<", " **", " **[", " ___"], ["\r\n\r\n", "\n\n", " \r\n\r\n", "  \n\n", " **\u3010", " **", " \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", "\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", "<|endoftext|>", "  \n\n", " **[", " [[", " **", "\u200c"], ["\u2011", "\ufffd", "  \n\n", " **[", " **", "\u200c", "[^", ":\\"], ["\u2011", " **[", " **", " **\u201c", " **\u2013", "**\u2014", "\u200c", "\ufe0f"], [" **[", "\u2011", " **", " **\u201c", "**\u2014", "  \n\n", " **\u3010", " **+"], ["\u2011", " **[", " **", " **\u201c", "**\u2014", " **\u20ac", "  \n\n", " **\u2014"], [" **", " **[", "\u2011", "  \n\n", " **\u201c", "**", " **\u20ac", " **\u2014"], [" **", " **[", "\u2011", " **\u20ac", " **\u2014", " **+", "**", " **\u2013"], ["\u2011", " **[", " **", "\ufffd", " **\u2014", "**\u2014", " **\u20ac", " *["], ["\u2011", " **[", " **", "\ufffd", "**\u2014", " **\u2014", "\uff09**", "**"], ["\u2011", "**\u2014", " **", " **\u2014", " **[", "\ufffd", "**", "\uff09**"], [" **\u2014", "**\u2014", "\u2011", " **", " **\u201c", " **[", "\u2019**", "\u2014not"], [" **\u2014", " **\u201c", "**\u2014", "\u2019**", "\uff1f**", " **", "\uff09**", "]**"], [" **", " **\u2014", " **\u201c", "\u2019**", "\uff09**", "\uff1f**", "\uff1a**", " **["], [" **", " **\u201c", " **\u2014", "\u2019**", " **[", " **\u20ac", " **+", "]**"], [" **", " **\u201c", "\u2019**", " **\u20ac", " **+", "\uff09**", "]**", " **\u2014"], [" **\u201c", " **", "\u2019**", " **\u20ac", "\uff09**", " **\u2014", "\uff1a**", " **+"], [" **\u201c", " **", "**", "\uff09**", "\u2019**", "\uff1a**", "\u201d**", " **#"], ["\uff09**", " **\u201c", " **", "**", "\u201d**", "\u2019**", "\uff1a**", "]**"], ["\uff09**", "\u2019**", " **\u201c", "**", "\u201d**", "]**", " **", ")**"], ["**", "\uff09**", " **\u201c", "\u2019**", ")**", " **", "**)", "\u201d**"], ["**", " **\u201c", " **", " **\"", "\uff09**", "\u2019**", ")**", "**)"], ["**", " **", " **\"", "\u2019**", " **\u201c", ">**", "\uff09**", "-**"], ["**", "\u2019**", "\"**", "\u201d**", " **\u201c", " **\"", "\uff09**", ")**"], ["**", "\u2019**", "\u201d**", "think", "Both", "\"**", ";**", "\uff09**"], ["**", "\uff09**", "\"**", "think", "\u201d**", ")**", "\u2019**", "This"], ["It", "\n\n", "This", "Let", "**", "The", "Q", "think"], ["Based", "This", "It", "Let", "\n\n", "think", " Based", "TL"], ["Based", "\n\n", "Let", "It", "This", " Based", "The", "TL"], ["\n\n", "Let", "It", "The", "Based", "This", "TL", "**"], ["\n\n", "The", "This", "9", "It", "Let", "8", "Based"], ["\n\n", "9", "The", "8", "7", "This", "3", "Q"], ["3", "8", "9", "7", "2", "6", "4", "5"]], "p": [[0.0408, 0.0263, 0.0263, 0.0232, 0.0181, 0.016, 0.0141, 0.0097], [0.079, 0.0742, 0.0543, 0.0397, 0.0291, 0.0256, 0.02, 0.0166], [0.5069, 0.1282, 0.0304, 0.0252, 0.0197, 0.0163, 0.0112, 0.0105], [0.4384, 0.0811, 0.0716, 0.017, 0.0124, 0.0117, 0.011, 0.0103], [0.7481, 0.0422, 0.0165, 0.0121, 0.0114, 0.0107, 0.0088, 0.0065], [0.9095, 0.0101, 0.0089, 0.0048, 0.0045, 0.004, 0.0037, 0.0037], [0.9096, 0.013, 0.0108, 0.0079, 0.0033, 0.0033, 0.0023, 0.0021], [0.8971, 0.0164, 0.0088, 0.0057, 0.005, 0.0047, 0.0029, 0.0029], [0.3477, 0.1449, 0.1129, 0.0996, 0.0685, 0.0604, 0.0173, 0.0173], [0.5844, 0.048, 0.0351, 0.0351, 0.0257, 0.0129, 0.0121, 0.0089], [0.4804, 0.1072, 0.0946, 0.0946, 0.0288, 0.0113, 0.01, 0.0088], [0.9017, 0.0155, 0.0129, 0.0073, 0.0057, 0.0044, 0.0037, 0.0033], [0.7535, 0.0331, 0.0177, 0.0166, 0.013, 0.0114, 0.0074, 0.0069], [0.5869, 0.0228, 0.0189, 0.0177, 0.0166, 0.0138, 0.0122, 0.0114], [0.4179, 0.1444, 0.0284, 0.0221, 0.0208, 0.0208, 0.0162, 0.0162], [0.3337, 0.0956, 0.0452, 0.0292, 0.0274, 0.02, 0.0156, 0.0156], [0.3198, 0.0491, 0.0382, 0.0279, 0.0263, 0.0204, 0.0132, 0.0103], [0.6437, 0.0387, 0.0301, 0.0207, 0.0098, 0.0081, 0.0076, 0.0067], [0.6894, 0.0236, 0.0208, 0.0173, 0.0092, 0.0063, 0.006, 0.0053], [0.2006, 0.1563, 0.0948, 0.089, 0.0651, 0.0289, 0.0175, 0.0165], [0.8428, 0.0539, 0.042, 0.0198, 0.0128, 0.0029, 0.0025, 0.0017], [0.4081, 0.0804, 0.0458, 0.0315, 0.0168, 0.014, 0.0116, 0.0116], [0.2669, 0.2356, 0.1429, 0.0299, 0.0206, 0.0206, 0.0193, 0.0171], [0.399, 0.1143, 0.1074, 0.0421, 0.0308, 0.0272, 0.0225, 0.0225], [0.5575, 0.1597, 0.1597, 0.0458, 0.0315, 0.009, 0.008, 0.0031], [0.412, 0.2205, 0.1337, 0.0919, 0.0492, 0.0263, 0.0091, 0.0059], [0.3366, 0.159, 0.0706, 0.0706, 0.0623, 0.0585, 0.0456, 0.0276], [0.6224, 0.1574, 0.1226, 0.0451, 0.0213, 0.0054, 0.0037, 0.002], [0.4081, 0.3601, 0.1169, 0.043, 0.0335, 0.0123, 0.0096, 0.0015], [0.6856, 0.153, 0.0723, 0.0142, 0.0142, 0.0104, 0.0063, 0.0063], [0.5721, 0.347, 0.0285, 0.0068, 0.0039, 0.0036, 0.0021, 0.0018], [0.7007, 0.0739, 0.0113, 0.0113, 0.0083, 0.0065, 0.0061, 0.0039], [0.8108, 0.0314, 0.0277, 0.0216, 0.0116, 0.0085, 0.0062, 0.0062], [0.6472, 0.1274, 0.0773, 0.0284, 0.0092, 0.0068, 0.0063, 0.0053], [0.2816, 0.2485, 0.125, 0.0914, 0.0124, 0.0103, 0.0091, 0.0091], [0.3936, 0.2705, 0.1641, 0.047, 0.0105, 0.0072, 0.0072, 0.0056], [0.5934, 0.2803, 0.0335, 0.0203, 0.0109, 0.0055, 0.0038, 0.0038], [0.8386, 0.1135, 0.0073, 0.0057, 0.0057, 0.0057, 0.0032, 0.0022], [0.6175, 0.1216, 0.1073, 0.0371, 0.0088, 0.0088, 0.0073, 0.005], [0.6056, 0.1193, 0.0529, 0.0439, 0.0142, 0.0111, 0.0086, 0.0072], [0.4127, 0.0674, 0.0674, 0.0463, 0.0435, 0.0384, 0.0193, 0.0181], [0.2108, 0.1201, 0.0879, 0.0684, 0.0344, 0.0209, 0.0143, 0.0112], [0.3115, 0.1076, 0.0695, 0.0613, 0.0396, 0.0349, 0.024, 0.0212], [0.2574, 0.2271, 0.1561, 0.0447, 0.0371, 0.0371, 0.0289, 0.0271], [0.3687, 0.2236, 0.0602, 0.0389, 0.0322, 0.0236, 0.0208, 0.0172], [0.3064, 0.2106, 0.0603, 0.05, 0.0208, 0.0208, 0.0196, 0.0173], [0.2772, 0.0746, 0.0546, 0.0292, 0.0258, 0.0189, 0.0177, 0.0138], [0.4054, 0.1588, 0.1091, 0.0484, 0.0401, 0.0333, 0.0148, 0.013], [0.1795, 0.1584, 0.1234, 0.0583, 0.0332, 0.0275, 0.0157, 0.0138], [0.1973, 0.1636, 0.1356, 0.0932, 0.0469, 0.0365, 0.0343, 0.0303], [0.3738, 0.1071, 0.0736, 0.0475, 0.0348, 0.0348, 0.0307, 0.0198], [0.2977, 0.2046, 0.0908, 0.0517, 0.0486, 0.0486, 0.0158, 0.0158], [0.5649, 0.1112, 0.0464, 0.0409, 0.0384, 0.0264, 0.0233, 0.0193], [0.2181, 0.0854, 0.0487, 0.0457, 0.026, 0.0245, 0.0216, 0.0203], [0.0917, 0.0205, 0.0097, 0.0091, 0.0075, 0.0075, 0.0071, 0.0059], [0.1473, 0.0165, 0.0146, 0.0129, 0.0114, 0.01, 0.0088, 0.0054], [0.0238, 0.0197, 0.0174, 0.0163, 0.0093, 0.0087, 0.0087, 0.0073], [0.0337, 0.0337, 0.0297, 0.0246, 0.0159, 0.0132, 0.0124, 0.0116], [0.0517, 0.0356, 0.0356, 0.0295, 0.0295, 0.0158, 0.0158, 0.009], [0.0657, 0.031, 0.0292, 0.0274, 0.0274, 0.0227, 0.0188, 0.0177], [0.3771, 0.051, 0.0226, 0.0213, 0.0176, 0.0176, 0.0101, 0.0089], [0.6754, 0.0246, 0.0169, 0.0124, 0.0075, 0.0062, 0.0052, 0.0043], [0.2535, 0.2535, 0.1742, 0.0823, 0.0499, 0.0499, 0.0389, 0.0389]], "ranks": {"Python": [53131, 223675, 129811, 137169, 82459, 108196, 83292, 119335, 107451, 73803, 20703, 24494, 26306, 15636, 20027, 43161, 22879, 16810, 17319, 20394, 8063, 57487, 37888, 106022, 57230, 77928, 78591, 53891, 5785, 21607, 23059, 53465, 21404, 9303, 23893, 23547, 13385, 23108, 13823, 14181, 19174, 44711, 44130, 23226, 11557, 10213, 14252, 6486, 3444, 2933, 6317, 19985, 59802, 23573, 10519, 4872, 2270, 1809, 1616, 1941, 939, 381, 242]}}, {"pos": 371, "top": [[".", " \u200b\u200b", "\u00a0\u00a0", "\u00a0", ",", "  \n\n", ";", "?"], ["  \n\n", "  \r\n\r\n", "  \r\n", "laves", "  \n  \n", "\u7ef4\u4e5f\u7eb3", "   \n\n", " \n  \n"], ["\u2026**", "\u3002", "**\u3002", "\uff1f**", "**?", "[__", "**.", "**!"], [" **\u3010", " Blowjob", "\uff1f**", " milfs", " **\u25cb", " cumshot", " **:**", " **:"], [" **\u201c", " \n\n\n\n", "  \n\n", "\uff1a**", " **\u3010", "\uff1f**", " **+", " **:"], [" **\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", " \n\n\n\n", "     \n\n", "  \r\n\r\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", "  \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", "  \r\n\r\n", "\n\n\n\n", "<|im_end|>", "  \n  \n"], ["  \n\n", " **\u3010", " \n\n", " **", " **'", " **\u201c", " **#", " **+"], [" **\u3010", "  \n\n", " **", "**!", " **'", " \n\n", " **#", "...**"], ["  \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", "   \n\n", " leveraging"], ["  \n\n", " \n\n", " **", "   \n\n", "**!", " impactful", "\n\n", "<|im_end|>"], ["  \n\n", " \n\n", "   \n\n", "<|im_end|>", " **", "\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", "<|endoftext|>", "<|im_end|>", "\r\n\r\n", "   \n\n", "\n\n\n\n"], ["\n\n", "  \n\n", " \n\n", "<|endoftext|>", "   \n\n", "\r\n\r\n", "<|im_end|>", "\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", "\r\n\r\n", "<|endoftext|>", "\n\n\n\n", "<|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", "<|endoftext|>", "\r\n\r\n", "   \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", "   \n\n", " \r\n\r\n", "\n\n\n\n"], ["  \n\n", " \n\n", "\n\n", "<|endoftext|>", "\r\n\r\n", "   \n\n", "<|im_end|>", " \r\n\r\n"], ["  \n\n", " \n\n", "\n\n", "<|endoftext|>", "<|im_end|>", "\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"], ["<|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"], ["  \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", "  \r\n\r\n", " \r\n\r\n", "\n\n"], ["  \n\n", " \n\n", "<|endoftext|>", "\n\n", " **", "\r\n\r\n", "   \n\n", "  \r\n\r\n"], ["  \n\n", " \n\n", "\n\n", "   \n\n", " **", "<|endoftext|>", "\r\n\r\n", "  \r\n\r\n"], [" **", "  \n\n", " **[", " **\u201c", " \n\n", " **#", "  \r\n\r\n", " **\u2014"], [" **", "  \n\n", " **[", " **\u201c", "<|endoftext|>", " aggressively", " relentless", " **\u2014"], [" **", "  \n\n", "<|endoftext|>", " **[", " **\u201c", " aggressively", " relentless", "  \r\n\r\n"], ["  \n\n", " **", " aggressively", " **[", " relentless", " brutal", "<|endoftext|>", " brutally"], [" **", " aggressively", " brutal", " stark", " brutally", "  \n\n", " relentless", " **\u2014"], [" **", " aggressively", " **\u2014", " **\u201c", " stark", " brutal", " brutally", " relentless"], [" **", " **\u201c", " **\u2014", " aggressively", "  \n\n", " stark", " brutally", " **["], [" **", " **\u201c", " aggressively", " stark", " **\u2014", " brutally", " **[", " brutal"], [" **", " **\u201c", " aggressively", "  \n\n", " stark", " brutally", " **#", " brutal"], [" **", " **\u201c", "  \n\n", " **#", " **\"", " **'", " **\u2014", " **\u20ac"], [" **", " **\u201c", " **\"", " **#", " **[", " **\u2014", " **'", " **\u2018"], [" **", " **\u201c", " **\"", " **'", " **#", " **[", "**", " **\u2018"], [" **", " **\"", " **\u201c", " **#", "**", " **'", " **[", " **\u3010"], [" **", " **\u201c", " **\"", "**", "\u2019**", " **[", " **#", " **\u20ac"], [" **", "**", " **\u201c", "\u2019**", " **[", " **\"", ";**", " **#"], [" **", "**", " **\u201c", " **\"", "\u2019**", " **[", ";**", "-**"], [" **", "**", " **\u201c", " **\"", "\u2019**", " **[", ";**", "-**"], [" **", "**", " **\"", " **\u201c", "\u2019**", " **[", "-**", ";**"], [" **", "**", " **\u201c", " **\"", "\u2019**", ">**", "-**", ";**"], [" **", "**", " **\u201c", "\u2019**", " **\"", ">**", "-**", ";**"], [" **", "**", " **\u201c", "\u2019**", " **\"", ">**", ")**", "-**"], [" **", "**", " **\u201c", " **\"", "\u2019**", ")**", ">**", "-**"], [" **", "**", " **\u201c", " **\"", " Gut", "\u2019**", "-**", " gut"], [" **", "**", " **\u201c", " **\"", " Gut", "\u2019**", "**,", "**."], [" **", "**", " **\"", "**,", " **\u201c", "**.", " **'", "\"**"], ["**", " **", "The", "This", "G", "###", "What", "\"G"]], "p": [[0.6196, 0.1077, 0.1077, 0.0576, 0.0509, 0.0094, 0.0054, 0.0044], [0.0184, 0.0034, 0.0025, 0.0021, 0.0017, 0.0014, 0.0014, 0.0013], [0.5974, 0.1176, 0.0916, 0.0169, 0.015, 0.0132, 0.0109, 0.0109], [0.0395, 0.0328, 0.0308, 0.0272, 0.0187, 0.0155, 0.0145, 0.01], [0.244, 0.0617, 0.0544, 0.0398, 0.0374, 0.0351, 0.0274, 0.0242], [0.2372, 0.0873, 0.068, 0.0529, 0.0412, 0.0387, 0.0195, 0.0195], [0.7333, 0.1444, 0.0236, 0.0172, 0.0098, 0.0092, 0.0068, 0.0044], [0.7593, 0.2175, 0.0108, 0.0021, 0.0019, 0.0017, 0.001, 0.0009], [0.5605, 0.4365, 0.0023, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001], [0.868, 0.0807, 0.0109, 0.0109, 0.0091, 0.0019, 0.0016, 0.0012], [0.7028, 0.293, 0.0017, 0.0007, 0.0003, 0.0002, 0.0002, 0.0001], [0.1656, 0.1461, 0.0886, 0.0649, 0.0538, 0.0474, 0.0347, 0.0239], [0.1399, 0.0661, 0.0621, 0.0515, 0.0427, 0.0312, 0.0243, 0.0202], [0.3233, 0.2681, 0.0678, 0.0438, 0.0283, 0.0207, 0.0118, 0.0104], [0.7898, 0.1997, 0.0028, 0.0016, 0.0005, 0.0004, 0.0003, 0.0003], [0.6656, 0.0795, 0.0115, 0.0074, 0.0061, 0.0048, 0.0042, 0.0035], [0.5882, 0.2778, 0.0178, 0.0074, 0.0061, 0.0035, 0.0033, 0.0024], [0.9002, 0.0837, 0.0054, 0.002, 0.0017, 0.0017, 0.0004, 0.0004], [0.7094, 0.2032, 0.066, 0.0101, 0.0018, 0.0017, 0.0012, 0.0009], [0.5728, 0.2706, 0.1448, 0.0044, 0.0023, 0.0018, 0.0013, 0.0006], [0.5504, 0.2946, 0.1228, 0.0311, 0.0003, 0.0002, 0.0001, 0.0001], [0.3666, 0.2855, 0.2855, 0.0207, 0.0034, 0.0026, 0.0025, 0.0018], [0.6395, 0.2076, 0.1427, 0.0043, 0.0016, 0.0014, 0.0008, 0.0007], [0.4824, 0.2279, 0.2011, 0.0838, 0.0017, 0.0008, 0.0007, 0.0004], [0.659, 0.1888, 0.147, 0.0024, 0.001, 0.0007, 0.0005, 0.0002], [0.5542, 0.231, 0.2039, 0.0048, 0.0026, 0.0012, 0.0006, 0.0006], [0.8577, 0.0704, 0.0548, 0.0139, 0.0021, 0.0003, 0.0002, 0.0001], [0.7894, 0.1211, 0.0832, 0.0053, 0.0006, 0.0001, 0.0001, 0.0], [0.747, 0.1298, 0.1146, 0.0044, 0.0019, 0.0006, 0.0004, 0.0004], [0.622, 0.1388, 0.1388, 0.0954, 0.0017, 0.0014, 0.0006, 0.0003], [0.4128, 0.2503, 0.195, 0.134, 0.0025, 0.0012, 0.0007, 0.0007], [0.777, 0.1192, 0.0638, 0.0341, 0.0011, 0.0006, 0.0004, 0.0003], [0.4308, 0.3355, 0.0903, 0.0401, 0.0048, 0.0031, 0.0027, 0.0024], [0.87, 0.063, 0.0382, 0.0097, 0.0052, 0.0028, 0.0023, 0.0023], [0.8465, 0.0396, 0.0212, 0.0187, 0.0187, 0.01, 0.0069, 0.0061], [0.9247, 0.0316, 0.0096, 0.0091, 0.0046, 0.004, 0.0038, 0.0023], [0.9364, 0.0161, 0.0098, 0.0052, 0.0049, 0.0046, 0.0038, 0.003], [0.6207, 0.2588, 0.0165, 0.0114, 0.0054, 0.005, 0.0037, 0.0033], [0.3901, 0.2088, 0.0249, 0.0118, 0.0098, 0.0076, 0.0063, 0.0056], [0.2809, 0.2639, 0.0336, 0.0315, 0.0131, 0.0096, 0.007, 0.0045], [0.201, 0.1382, 0.0308, 0.024, 0.0212, 0.0212, 0.0187, 0.0176], [0.0695, 0.0653, 0.0212, 0.0199, 0.0187, 0.0187, 0.0165, 0.0146], [0.1737, 0.0724, 0.0439, 0.0195, 0.0195, 0.0172, 0.0152, 0.0111], [0.3792, 0.0582, 0.0482, 0.0425, 0.0242, 0.0201, 0.0147, 0.0138], [0.5607, 0.0358, 0.0279, 0.018, 0.018, 0.0096, 0.0091, 0.0091], [0.6609, 0.0697, 0.02, 0.0187, 0.01, 0.0083, 0.0083, 0.0069], [0.9123, 0.0454, 0.0167, 0.0048, 0.0033, 0.002, 0.0017, 0.0016], [0.9213, 0.0589, 0.0043, 0.0038, 0.0029, 0.0016, 0.0014, 0.0008], [0.9958, 0.0025, 0.0005, 0.0003, 0.0003, 0.0001, 0.0001, 0.0001], [0.9832, 0.0031, 0.0031, 0.0028, 0.0022, 0.0009, 0.0007, 0.0005], [0.9617, 0.0226, 0.0031, 0.0024, 0.0021, 0.0014, 0.0013, 0.0007], [0.995, 0.0025, 0.0009, 0.0004, 0.0003, 0.0003, 0.0001, 0.0001], [0.9804, 0.0096, 0.0035, 0.0019, 0.0015, 0.0009, 0.0004, 0.0002], [0.9785, 0.014, 0.0019, 0.0019, 0.0015, 0.0005, 0.0003, 0.0002], [0.9724, 0.0157, 0.0035, 0.0031, 0.0024, 0.0004, 0.0003, 0.0003], [0.9659, 0.0292, 0.0016, 0.0013, 0.0009, 0.0002, 0.0002, 0.0001], [0.9178, 0.0665, 0.007, 0.0055, 0.0018, 0.0001, 0.0001, 0.0001], [0.9017, 0.0839, 0.0078, 0.0033, 0.002, 0.0001, 0.0001, 0.0001], [0.9609, 0.0329, 0.0039, 0.001, 0.0008, 0.0, 0.0, 0.0], [0.938, 0.06, 0.0008, 0.0005, 0.0002, 0.0001, 0.0, 0.0], [0.8922, 0.1066, 0.0005, 0.0004, 0.0001, 0.0, 0.0, 0.0], [0.6511, 0.3485, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.999, 0.0004, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0]], "ranks": {"Python": [92378, 240716, 134140, 189842, 131432, 136998, 28952, 63814, 32674, 51065, 16781, 38131, 26376, 10989, 16210, 42136, 43952, 51774, 77776, 121028, 76489, 150692, 109246, 83387, 17228, 33360, 38437, 19904, 13422, 12130, 10568, 12194, 15868, 13570, 15294, 23469, 22859, 18982, 14704, 7426, 8755, 14195, 17139, 18386, 13446, 8278, 8928, 8974, 8012, 15410, 31163, 30371, 34002, 24308, 25351, 14262, 7836, 8780, 11268, 3881, 3950, 346, 91]}}, {"pos": 372, "top": [["**", "**.", "**\u2013", "-**", " **", ".", "\u2026**", "(**"], [" **", "-**", "'**", "\uff1f**", "(**", "\u2019**", "**", "\u2026**"], ["\u2026**", "\uff1f**", "**", "\u2019**", "'**", " **", "-**", "(**"], ["\uff1f**", " **", " **\u300c", "\u2019**", "'**", "\u300d**", " **\u00ab", " **\u201e"], [" **", "**", "-**", "'**", "\u2019**", "\uff1f**", " **\u201c", "...**"], [" **", "-**", "**", "\u2019**", " **\u201c", "(**", "\uff1f**", "'**"], ["**", " **", "\u2019**", "-**", "'**", "\uff1f**", "\uff09**", "\u201d**"], ["**", " **", "-**", "'**", "\u2019**", "\uff1f**", "(**", " **'"], ["**", " **", "...**", "\u2019**", "-**", "'**", "(**", " **'"], ["**", " **", "...**", "-**", "'**", "\u2019**", ">**", "(**"], ["**", "...**", " **", "-**", "'**", "\u2019**", "(**", "!**"], [" **", "**", "...**", "'**", "-**", " **'", "\u2019**", "(**"], [" **", "**", "...**", "'**", "-**", " **'", "\u2019**", "(**"], ["...**", " **", "**", "'**", "-**", "\uff1f**", "(**", " **'"], ["**", " **", "...**", "'**", "\u2026**", "-**", "(**", "\u2019**"], ["**", " **", "...**", "'**", "-**", "\u2026**", "(**", "!**"], ["**", "...**", " **", "\u2026**", "(**", "'**", "-**", "!**"], ["**", " **", "...**", "(**", "  \n\n", "-**", "\u2026**", "'**"], ["**", "...**", " **", "'**", "-**", " **'", "\u2026**", "(**"], ["**", "...**", "  \n\n", " **", "\u2026**", "'**", " **'", "-**"], ["**", "  \n\n", "...**", " \n\n", "\u2026**", " **", "\n\n", "<|endoftext|>"], ["**", "...**", " **", "'**", " **'", "-**", "\u2019**", "\u2026**"], ["**", "...**", "  \n\n", " **", "'**", "\n\n", "\u2026**", " **'"], ["  \n\n", "\n\n", " \n\n", "**", "<|endoftext|>", "...**", " **", "  \n  \n"], ["  \n\n", "\n\n", " \n\n", "**", "   \n\n", "...**", "<|endoftext|>", "  \n  \n"], ["  \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", "...**", "**", "\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\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", "\u2019**"], [" **", "  \n\n", "**", "\uff1a**", ":**", "%**", " **'", " Immediate"], [" **", "**", "\uff1a**", "  \n\n", ":**", " **'", "'**", "]**"], [" **", "**", "\uff1a**", " **'", "'**", "\u2019**", "!**", "%**"], [" Immediate", " Reality", " Crisis", ":**", "\uff1a**", " Scenario", " Priority", " Overview"], [";**", "\uff1a**", "%**", ">**", "]**", "?**", ":**", "\u2019**"], [";**", " Immediate", "?**", "%**", ":**", "!**", "\uff1a**", " Reality"], [";**", " Reality", " Immediate", " Prediction", "\uff1a**", ":**", "...**", "%**"], [" Reality", " Immediate", " Prediction", ";**", " Biggest", " Who", ":**", " Outcome"], [" Reality", " Prediction", ";**", " Immediate", "\uff1a**", ">**", " Diagnosis", ":**"], [" what", "what", " What", "What", "\u4ec0\u4e48\u662f", " whats", " WHAT", ".what"], [" what", "what", " What", "\u4ec0\u4e48\u662f", "What", " whats", " g\u00ec", " WHAT"], [" what", "what", " What", "What", "\u4ec0\u4e48\u662f", " whats", " WHAT", ".what"], [" what", " What", "what", "What", "\u4ec0\u4e48\u662f", " whats", " WHAT", ".what"], [" Gut", " what", " gut", " What", "gut", "what", "What", " Guta"], [" Gut", " what", " What", " gut", "gut", "what", "What", ".what"], [" Gut", " What", " what", "gut", "what", " gut", "What", ".what"], ["What", "G", " What", " Gut", "The", "what", " what", "gut"]], "p": [[0.4568, 0.2158, 0.0375, 0.0331, 0.0311, 0.0258, 0.0258, 0.0166], [0.4785, 0.1068, 0.0942, 0.0734, 0.0571, 0.0571, 0.0393, 0.0099], [0.2995, 0.2058, 0.1415, 0.0858, 0.0757, 0.059, 0.0459, 0.0217], [0.2816, 0.0914, 0.0914, 0.0807, 0.0712, 0.0628, 0.0489, 0.0262], [0.4862, 0.2027, 0.0957, 0.0452, 0.0452, 0.0274, 0.0189, 0.0147], [0.5527, 0.2611, 0.066, 0.0275, 0.0214, 0.0189, 0.0147, 0.0042], [0.6925, 0.1545, 0.0443, 0.0304, 0.0163, 0.0127, 0.0099, 0.006], [0.6342, 0.1817, 0.0858, 0.0192, 0.0192, 0.009, 0.008, 0.0062], [0.6945, 0.1207, 0.057, 0.0269, 0.0185, 0.0185, 0.0087, 0.006], [0.5526, 0.1233, 0.1233, 0.066, 0.0514, 0.0214, 0.0079, 0.0079], [0.8092, 0.0853, 0.0853, 0.0048, 0.0048, 0.0018, 0.0014, 0.0008], [0.7363, 0.0996, 0.0996, 0.0252, 0.0119, 0.0082, 0.0027, 0.0023], [0.5474, 0.2586, 0.1221, 0.0309, 0.0165, 0.0042, 0.0037, 0.0037], [0.277, 0.2445, 0.2158, 0.1019, 0.0546, 0.0177, 0.0138, 0.0122], [0.4222, 0.2902, 0.2561, 0.0127, 0.0053, 0.0032, 0.0028, 0.0015], [0.5672, 0.3036, 0.0986, 0.0133, 0.0056, 0.002, 0.0018, 0.0016], [0.721, 0.142, 0.1253, 0.0026, 0.0023, 0.002, 0.001, 0.0007], [0.8356, 0.0881, 0.0534, 0.0039, 0.0039, 0.0034, 0.003, 0.0023], [0.7155, 0.1809, 0.0855, 0.0038, 0.0033, 0.0023, 0.0018, 0.0009], [0.5657, 0.3431, 0.041, 0.0171, 0.0063, 0.0055, 0.0023, 0.002], [0.3579, 0.3579, 0.2171, 0.0202, 0.0074, 0.0074, 0.0066, 0.004], [0.5797, 0.2738, 0.0889, 0.0175, 0.0057, 0.0057, 0.005, 0.005], [0.5162, 0.2439, 0.1017, 0.0792, 0.0107, 0.0065, 0.0065, 0.0051], [0.5974, 0.194, 0.0714, 0.049, 0.0337, 0.0232, 0.0124, 0.0024], [0.8289, 0.099, 0.068, 0.0009, 0.0008, 0.0006, 0.0005, 0.0005], [0.8631, 0.043, 0.0335, 0.0203, 0.014, 0.0123, 0.0024, 0.0021], [0.5201, 0.2457, 0.116, 0.0427, 0.0332, 0.0259, 0.0029, 0.0019], [0.5814, 0.3112, 0.101, 0.0031, 0.0016, 0.0007, 0.0002, 0.0002], [0.8285, 0.0873, 0.068, 0.0092, 0.0026, 0.0018, 0.0012, 0.0004], [0.9452, 0.0415, 0.0082, 0.0021, 0.0009, 0.0008, 0.0006, 0.0002], [0.7806, 0.1356, 0.044, 0.0303, 0.0013, 0.0012, 0.001, 0.0009], [0.6789, 0.2204, 0.0811, 0.016, 0.0009, 0.0007, 0.0002, 0.0001], [0.8229, 0.1114, 0.0282, 0.0194, 0.0059, 0.0015, 0.0009, 0.0004], [0.9053, 0.0511, 0.0351, 0.0037, 0.0007, 0.0005, 0.0004, 0.0004], [0.7619, 0.2183, 0.0096, 0.0031, 0.0015, 0.0007, 0.0005, 0.0004], [0.9643, 0.0257, 0.0039, 0.0035, 0.0014, 0.0003, 0.0001, 0.0001], [0.9633, 0.0227, 0.0094, 0.0024, 0.0007, 0.0005, 0.0001, 0.0001], [0.9117, 0.0401, 0.0312, 0.0042, 0.004, 0.0009, 0.0004, 0.0004], [0.8359, 0.0998, 0.0223, 0.0077, 0.0072, 0.0028, 0.0016, 0.0015], [0.8084, 0.0752, 0.0179, 0.0139, 0.0139, 0.0066, 0.0051, 0.0031], [0.8747, 0.0339, 0.0141, 0.0091, 0.0059, 0.0038, 0.0032, 0.003], [0.8091, 0.1241, 0.0139, 0.0108, 0.0016, 0.0014, 0.0014, 0.0013], [0.4249, 0.292, 0.0212, 0.0212, 0.0137, 0.0128, 0.0121, 0.0088], [0.6269, 0.1585, 0.0243, 0.0122, 0.0115, 0.0101, 0.0095, 0.0095], [0.6101, 0.1361, 0.0501, 0.0366, 0.0252, 0.0196, 0.0087, 0.0072], [0.3512, 0.2735, 0.0211, 0.0198, 0.0186, 0.0145, 0.0128, 0.012], [0.4057, 0.3581, 0.0485, 0.0294, 0.019, 0.0108, 0.0102, 0.009], [0.3448, 0.2092, 0.1269, 0.0529, 0.0283, 0.0266, 0.0235, 0.0161], [0.4833, 0.1222, 0.0952, 0.0397, 0.035, 0.0273, 0.0187, 0.0187], [0.2556, 0.0688, 0.0368, 0.0238, 0.0223, 0.021, 0.0174, 0.012], [0.2058, 0.1415, 0.0858, 0.0757, 0.0757, 0.059, 0.052, 0.0459], [0.114, 0.0945, 0.061, 0.0573, 0.0506, 0.0446, 0.0394, 0.0288], [0.2008, 0.0787, 0.0508, 0.0308, 0.0289, 0.0289, 0.0255, 0.0255], [0.3579, 0.1162, 0.0662, 0.0294, 0.0157, 0.0139, 0.0115, 0.0115], [0.3709, 0.0881, 0.0686, 0.0605, 0.0252, 0.0223, 0.0209, 0.0153], [0.6517, 0.2717, 0.0687, 0.0018, 0.0016, 0.0013, 0.001, 0.0005], [0.4622, 0.3176, 0.1927, 0.0051, 0.0051, 0.004, 0.0021, 0.0017], [0.5768, 0.2404, 0.1652, 0.0064, 0.0044, 0.0014, 0.0013, 0.0013], [0.5849, 0.3131, 0.0897, 0.0083, 0.001, 0.001, 0.0009, 0.0004], [0.6925, 0.2548, 0.0144, 0.0144, 0.0144, 0.0087, 0.0004, 0.0001], [0.6191, 0.2277, 0.1219, 0.0165, 0.0069, 0.0042, 0.0029, 0.0002], [0.5149, 0.2432, 0.1475, 0.0256, 0.0226, 0.0226, 0.02, 0.0003], [0.5046, 0.4453, 0.0323, 0.0053, 0.0023, 0.0023, 0.0013, 0.0009]], "ranks": {"Python": [4616, 155365, 48304, 81463, 42102, 60199, 8481, 22892, 11144, 4942, 2910, 10305, 7109, 16688, 8018, 14976, 5760, 6895, 25351, 39969, 11321, 35641, 23198, 26215, 10383, 46519, 44763, 34152, 10649, 10374, 8220, 8072, 8122, 8279, 5671, 7039, 11422, 10936, 12105, 10305, 10291, 16206, 12324, 16530, 13180, 7992, 10499, 10102, 22780, 45109, 78415, 73460, 82717, 57053, 73249, 83369, 85915, 105844, 87592, 44539, 34882, 3813, 331]}}, {"pos": 373, "top": [["\u00a0", ".", ",", "?", "\u00a0\u00a0", " \u2013", "\u2026.", "<|endoftext|>"], ["?", "??", "?,", ",", "\u200c", "?\u201d", "\ufffd", "?["], ["?", "\uff1f", ",", ".", "\u2026.", "\u2026..", "\u2026", "?,"], ["\uff3f\uff3f", " Shemale", "\uff0a\uff0a\uff0a\uff0a", "\uc3df", "-------------</", " \u300e", "\uad49\uc7a5", "----------</"], ["\ufffd\ufffd", "\uff1f", "\u866b", "\u4e3b\u610f", "\ufeff#", " \"@", " **\u201e", " \u300e"], ["\uff1f", "\ufffd\ufffd", " **:", " Shemale", " **\u201e", " \u300d", "letin", " **\u300c"], ["\uff1f", " **\u300c", " **\u3010", " \u300d", " \u300e", "\uff1f**", "\u300e", "\uff1f\u300d"], [" **\u300c", " **\u201e", " Shemale", " **\u3010", "\uff1f", "\uff1f\u300d", "\uff1f**", "\uc3df"], ["\uff1f", " **\u300c", "\uff1f\u300d", "?!", "?\u201d.", "?\u00bb", "!?", "\uff01\uff1f"], ["?!", " \u00a0 \u00a0 \u00a0 \u00a0", "UGHT", " \u00a0 \u00a0", "soever", "!?", "?=", "\uff1f\u300d"], ["\uff1f", "?!", " \u00a0 \u00a0 \u00a0 \u00a0", " \u00a0 \u00a0", "?=", "?\\", "?(", "???"], [" **\u300c", " ''", " **\u3010", "\uff1f\u300d", " ?**", "\u505a\u4ec0\u4e48", " **\u00ab", " '''"], [" **\u300c", " ''", "\uff1f\u300d", "\u505a\u4ec0\u4e48", "\u600e\u4e48\u4e86", " g\u00ec", "\u53eb\u4ec0\u4e48", ":''"], [" **\u300c", "\uff1f\u300d", "\u600e\u4e48\u4e86", "?!", "\u505a\u4ec0\u4e48", " g\u00ec", " ''", "\u4ec0\u4e48\u5462"], ["\uff1f", "?!", " ''", "\u4ec0\u4e48", "\uff1f\u300d", "\u600e\u4e48\u4e86", "\u505a\u4ec0\u4e48", " g\u00ec"], ["?!", " savvy", "\u4ec0\u4e48\u5462", "\uff1f\u300d", "\u4e8b\u513f", "\u73a9\u610f\u513f", "\u52b2\u513f", " g\u00ec"], ["?!", " savvy", "??", "\u4ec0\u4e48\u5462", "???", "?...", "\u52b2\u513f", "\u4e8b\u513f"], ["?!", "?...", "\uff1f", "?\u00bb", "??", "?", "???", "\u4ec0\u4e48"], ["?!", "?...", "?\u00bb", "!?", "??", "\u4ec0\u4e48", "\u00bb?", "???"], ["?!", "?...", "\u4ec0\u4e48", "?=", "\n\n", "\uff1f", "???", "what"], ["\n\n", "?...", "\u4ec0\u4e48", " \n\n", "...\\", "\uff1f", "?=", "  \n\n"], ["\u4ec0\u4e48", " ?**", " g\u00ec", "\uff1f", "?!", "?=", "**?", "\u662f\u4ec0\u4e48"], ["\u4ec0\u4e48", "\n\n", " ?**", "\uff1f", "?=", "?...", " g\u00ec", "\u662f\u4ec0\u4e48"], ["\n\n", "<|endoftext|>", "?...", " \n\n", "\u00a0", "\u4ec0\u4e48", "?=", " ?"], ["\n\n", " \n\n", "  \n\n", "?...", "?\\", "\r\n\r\n", " \r\n\r\n", "...\\"], ["\n\n", " \n\n", "?...", "  \n\n", "...**", "\u4ec0\u4e48", " ?**", "\r\n\r\n"], ["\n\n", " ?**", "?...", " \n\n", "\u4ec0\u4e48", "...**", " g\u00ec", "\r\n\r\n"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", " \r\n\r\n", "<|endoftext|>", "?...", "\t\n\n"], ["\n\n", " \n\n", "  \n\n", "...**", "?...", "\r\n\r\n", "\u2026**", " ?**"], ["\n\n", " \n\n", "  \n\n", "...", "?...", " ...", "...**", " ...\\"], ["\n\n", " \n\n", "  \n\n", "?...", " ...", "   \n\n", "...", " ?"], [" \n\n", "\n\n", "  \n\n", "<|endoftext|>", "   \n\n", " ...", "\ufffd", " \u2014"], ["  \n\n", " \n\n", " \u2014", "\n\n", "\ufffd", " \u00ad", "<|endoftext|>", "\u200b"], ["  \n\n", " \n\n", "\ufffd", " \u2014", "<|endoftext|>", " \u00ad", "\n\n", "\u2011"], ["  \n\n", " \u2014", "\ufffd", "\u2011", " \u00ad", " \n\n", "?**", "<|endoftext|>"], ["  \n\n", " \u2014", "<|endoftext|>", "\u2011", " \n\n", "\u200b", "\ufffd", " \u00ad"], [" \u2014", "  \n\n", " inevitable", " inevit", " WHY", " \u00ad", " havoc", "\u2011"], ["\u2011", " \u2014", " inevitable", " inevit", " WHY", " havoc", " fizz", " flawed"], ["\u2011", " WHY", " relentlessly", " inevitable", " flawed", " \u2014", " havoc", " inevit"], ["\u2011", " failures", " failure", " fallout", " inevitable", " inevit", " WHY", " flawed"], [" failures", " failure", " WHY", "?!", " WHAT", " fallout", " inevit", " inevitable"], [" failures", " fallout", " failure", " catastrophic", " havoc", "?):", " inevitable", " inevit"], [" fallout", " failures", " breakdown", " failure", " catastrophic", " havoc", " destabil", " inevitable"], [" breakdown", " inevitable", " inevit", " failures", " collapse", " Worse", " destabil", " failure"], [" breakdown", " Worse", " inevitable", " inevit", " failures", " collapse", " destabil", " failure"], [" inevitable", " immediate", " Immediate", " breakdown", " inevit", " Worse", " destabil", " Worst"], [" Immediate", " inevit", " inevitable", " immediate", " Worse", " breakdown", " Worst", " Collapse"], ["\u6700\u5148", " Immediate", " inevitable", " inevit", " Worse", ":**", " Worst", ":\\"], ["\u6700\u5148", "akest", " Immediate", " inevit", " Worse", "\u7b2c\u4e00\u4ef6\u4e8b", " Worst", ":**"], ["\u6700\u5148", " Immediate", ":**", " Worst", "akest", " Worse", ":\\", ":*"], ["?):", "?**", "\u6700\u5148", " Immediate", "\uff1f**", "\u7b2c\u4e00\u4ef6\u4e8b", "?*", "akest"], ["\u6700\u5148", "\u7b2c\u4e00\u4ef6\u4e8b", "?**", "?):", " Immediate", " Worse", "\u5fc5\u5148", "\u5d29\u584c"], ["\u6700\u5148", "\u7b2c\u4e00\u4ef6\u4e8b", "\u2019ll", "akest", ":**", " Immediate", " busted", "\u5d29\u584c"], ["\u6700\u5148", "\u7b2c\u4e00\u4ef6\u4e8b", " broke", "\u5d29\u584c", "\u2019ll", "?**", " \u0623\u0648\u0644\u0627\u064b", " happens"], [" happens", "\u6700\u5148", "\u5d29\u584c", " broke", " breaks", " gets", " fails", "\u5d29"], [" breaks", " Break", " broke", " Breaking", " breaking", " break", ".break", "-break"], [" breaks", " Break", " Breaking", " broke", " breaking", " break", ".break", "breaking"], [" breaks", " Break", " Breaking", " breaking", " broke", " break", " Broken", "-break"], [" Break", " breaks", " Breaking", " break", " breaking", " broke", " Broken", "-break"], [" breaks", " Break", " break", " Breaking", " breaking", " broke", "break", "-break"], [" breaks", " Break", " break", " breaking", "break", "-break", " broke", "_break"], [" breaks", " Break", " break", " Breaking", "-break", "break", " breaking", " broke"], [" Break", " breaks", " Breaking", " break", " BREAK", "-break", "Break", " Broken"]], "p": [[0.5818, 0.1667, 0.095, 0.0541, 0.0328, 0.029, 0.0039, 0.0035], [0.0153, 0.0127, 0.0105, 0.0099, 0.005, 0.0044, 0.0041, 0.0039], [0.1278, 0.0995, 0.0643, 0.0567, 0.039, 0.0344, 0.0304, 0.0209], [0.0157, 0.0139, 0.0108, 0.0066, 0.0054, 0.0048, 0.0048, 0.0048], [0.0217, 0.0096, 0.0028, 0.0023, 0.0023, 0.0023, 0.002, 0.002], [0.0131, 0.0115, 0.0031, 0.0023, 0.0023, 0.0023, 0.0021, 0.002], [0.0876, 0.0499, 0.0184, 0.0143, 0.0134, 0.0098, 0.0077, 0.0077], [0.0453, 0.0201, 0.0095, 0.0084, 0.0054, 0.0042, 0.0035, 0.0035], [0.0425, 0.0311, 0.0156, 0.0114, 0.0107, 0.0101, 0.0095, 0.0079], [0.0034, 0.0032, 0.0032, 0.0032, 0.003, 0.0022, 0.0017, 0.0016], [0.0944, 0.0446, 0.0446, 0.0419, 0.0211, 0.0175, 0.0154, 0.0154], [0.0681, 0.0152, 0.0081, 0.0076, 0.006, 0.0049, 0.0041, 0.0041], [0.0605, 0.0184, 0.0093, 0.0072, 0.0064, 0.0053, 0.0044, 0.0044], [0.0229, 0.013, 0.0115, 0.009, 0.0084, 0.0066, 0.0062, 0.0048], [0.061, 0.0326, 0.0164, 0.0145, 0.01, 0.0078, 0.0073, 0.006], [0.0078, 0.0069, 0.0061, 0.0035, 0.0031, 0.0029, 0.0027, 0.0025], [0.052, 0.0075, 0.0048, 0.0045, 0.0043, 0.0043, 0.0035, 0.0033], [0.1665, 0.0328, 0.024, 0.0155, 0.0094, 0.0083, 0.0083, 0.0078], [0.4283, 0.0451, 0.0227, 0.0095, 0.0095, 0.0083, 0.0083, 0.0078], [0.203, 0.1395, 0.0453, 0.0292, 0.0275, 0.0258, 0.0147, 0.0095], [0.1472, 0.1012, 0.0839, 0.0422, 0.0226, 0.0226, 0.0176, 0.0146], [0.066, 0.04, 0.0312, 0.0167, 0.0147, 0.0147, 0.0138, 0.0138], [0.0612, 0.0421, 0.0308, 0.0225, 0.0199, 0.0165, 0.0094, 0.0083], [0.2059, 0.1707, 0.0149, 0.0124, 0.0096, 0.007, 0.0055, 0.0052], [0.8065, 0.0662, 0.0402, 0.009, 0.0035, 0.0033, 0.0029, 0.0027], [0.3163, 0.0294, 0.0244, 0.019, 0.0157, 0.0131, 0.0123, 0.0074], [0.4073, 0.023, 0.0102, 0.0102, 0.0096, 0.0079, 0.0062, 0.0045], [0.9735, 0.0178, 0.0058, 0.0005, 0.0001, 0.0001, 0.0001, 0.0001], [0.9811, 0.0085, 0.0045, 0.0019, 0.0005, 0.0004, 0.0002, 0.0002], [0.7164, 0.1411, 0.1099, 0.0055, 0.0043, 0.0028, 0.0024, 0.0019], [0.7633, 0.1503, 0.0805, 0.0008, 0.0007, 0.0005, 0.0004, 0.0003], [0.5674, 0.2088, 0.2088, 0.0018, 0.0009, 0.0009, 0.0009, 0.0008], [0.4158, 0.2226, 0.0363, 0.022, 0.022, 0.0052, 0.0052, 0.0046], [0.73, 0.1268, 0.025, 0.0151, 0.0126, 0.0076, 0.0049, 0.0049], [0.2054, 0.038, 0.0296, 0.0179, 0.0158, 0.0158, 0.0131, 0.009], [0.2323, 0.0666, 0.0666, 0.0587, 0.0487, 0.0179, 0.0168, 0.014], [0.0326, 0.0254, 0.0136, 0.0136, 0.0113, 0.0113, 0.0106, 0.0106], [0.0293, 0.0101, 0.0101, 0.0095, 0.0095, 0.0089, 0.0074, 0.0065], [0.044, 0.0111, 0.0092, 0.0092, 0.0087, 0.0087, 0.0076, 0.0072], [0.0428, 0.013, 0.0123, 0.0115, 0.0108, 0.0102, 0.009, 0.0074], [0.0267, 0.0183, 0.0172, 0.0162, 0.0118, 0.0118, 0.0111, 0.0111], [0.0363, 0.0182, 0.0171, 0.0151, 0.0133, 0.0111, 0.0098, 0.0086], [0.0254, 0.0254, 0.0164, 0.0164, 0.0154, 0.0145, 0.0136, 0.0106], [0.0465, 0.032, 0.0282, 0.0234, 0.022, 0.022, 0.0194, 0.0194], [0.0398, 0.0398, 0.033, 0.0291, 0.0273, 0.0241, 0.0188, 0.0156], [0.0708, 0.0457, 0.0429, 0.0403, 0.0334, 0.0216, 0.0158, 0.0158], [0.1049, 0.0721, 0.0527, 0.034, 0.0282, 0.0249, 0.022, 0.0125], [0.1109, 0.0762, 0.0716, 0.0716, 0.0434, 0.0383, 0.0298, 0.0218], [0.3214, 0.0559, 0.0281, 0.0281, 0.0264, 0.0248, 0.0233, 0.0219], [0.1207, 0.1, 0.0732, 0.057, 0.0325, 0.0269, 0.0253, 0.0253], [0.1543, 0.0936, 0.047, 0.0304, 0.0237, 0.0209, 0.0196, 0.0184], [0.7789, 0.0302, 0.0098, 0.0098, 0.0063, 0.0056, 0.0049, 0.0046], [0.7933, 0.0113, 0.0078, 0.0061, 0.0057, 0.0053, 0.0044, 0.0044], [0.5641, 0.017, 0.017, 0.011, 0.0103, 0.0076, 0.0071, 0.0071], [0.1438, 0.1351, 0.0679, 0.0638, 0.0529, 0.0364, 0.0301, 0.0172], [0.7179, 0.1101, 0.0589, 0.0589, 0.0149, 0.0116, 0.0038, 0.0033], [0.5735, 0.211, 0.145, 0.0222, 0.0173, 0.0056, 0.0034, 0.0018], [0.6141, 0.256, 0.0942, 0.0144, 0.0077, 0.0068, 0.0012, 0.0009], [0.545, 0.3746, 0.0651, 0.0047, 0.0047, 0.0022, 0.0014, 0.0006], [0.8734, 0.1182, 0.0052, 0.0017, 0.0009, 0.0002, 0.0002, 0.0001], [0.9143, 0.0751, 0.0079, 0.0007, 0.0005, 0.0004, 0.0003, 0.0002], [0.9122, 0.0848, 0.0018, 0.0002, 0.0002, 0.0002, 0.0001, 0.0001], [0.8796, 0.119, 0.0004, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001]], "ranks": {"Python": [22679, 152648, 78473, 155777, 96492, 145274, 73650, 140970, 89923, 85517, 25850, 150343, 141962, 102530, 52420, 126414, 153914, 63891, 85953, 90195, 23735, 121814, 98817, 102082, 48774, 124137, 150245, 132545, 39344, 59384, 120059, 77440, 84255, 146755, 154414, 139419, 164941, 166244, 142007, 139047, 118079, 88730, 41597, 47589, 29387, 17724, 22264, 28974, 71934, 76612, 111889, 98040, 87516, 67072, 81473, 93251, 74420, 79657, 80786, 36840, 20201, 10540, 4152]}}, {"pos": 374, "top": [["s", ",", "er", "y", ".", "es", "o", "d"], ["s", "\u0627\u062a", "\u2011", "es", "er", "\u044b", "schild", "sul"], ["s", "\u0627\u062a", "\u044b", "es", "\u2011", "er", "sul", "sand"], ["s", "\u0627\u062a", "\u044b", "\u05d9\u05dd", "\u3044\u308b", "sburg", "sche", "sik"], ["s", "\u0627\u062a", "\u044b", "es", "\u05d9\u05dd", "sand", "sor", "sche"], ["s", "\u0627\u062a", "\u044b", "es", "\u05d9\u05dd", "siz", "sor", "sand"], ["s", "\u0627\u062a", "\u044b", "sor", "es", "\u05d9\u05dd", "sand", "sburg"], ["s", "\u0627\u062a", "\u044b", "sburg", "\u05d9\u05dd", "sand", "sia", "sor"], ["s", "\u0627\u062a", "\u044b", "sburg", "\u05d9\u05dd", "scheid", "sia", "sand"], ["s", "\u0627\u062a", "\u044b", "sburg", "\u05d9\u05dd", "sia", "siz", "sand"], ["s", "\u0627\u062a", "\u044b", "es", "sburg", "\u05d9\u05dd", "sia", "sand"], ["s", "\u0627\u062a", "sburg", "\u044b", "\u05d9\u05dd", "sia", "schild", "siz"], ["s", "\u0627\u062a", "sburg", "\u044b", "\u05d9\u05dd", "sia", "siz", "sense"], ["s", "\u0627\u062a", "\u044b", "sburg", "\u05d9\u05dd", "sense", "siz", "sia"], ["s", "\u0627\u062a", "\u044b", "es", "sense", "\u05d9\u05dd", "sburg", "sia"], ["s", "\u0627\u062a", "es", "\u044b", "\u05d9\u05dd", "er", "ful", "ness"], ["s", "\u0627\u062a", "es", "er", "y", "ful", "\u044b", "ness"], ["s", "\u0627\u062a", "es", "y", "er", "\u044b", "ful", "ingly"], ["s", "\u0627\u062a", "es", "ful", "\u044b", "ingly", "sing", "er"], ["s", "\u0627\u062a", "ingly", "es", "\u044b", "ful", "sing", "fully"], ["s", " \n\n", "\u0627\u062a", "ful", "es", "ingly", "fully", "er"], ["s", "\u0627\u062a", "ingly", "\u044b", "ful", "sia", "fully", "lessly"], ["s", " \n\n", "\u0627\u062a", "ingly", "fully", "\n\n", "ful", " --"], ["s", " \n\n", "\n\n", " --", "\u0627\u062a", " \r\n\r\n", "ingly", "fully"], [" \n\n", "\n\n", "s", "  \n\n", "\r\n\r\n", " \r\n\r\n", "\t\n\n", "...\\"], [" \n\n", "\n\n", "s", "\r\n\r\n", " \r\n\r\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", "___", " __"], ["\n\n", " \n\n", "s", "  \n\n", " ___", "\r\n\r\n", "___", " \r\n\r\n"], [" \n\n", "s", "\n\n", "  \n\n", " ___", "___", "?\\", " \n  \n"], [" \n\n", "s", "\n\n", "  \n\n", " ___", "?\\", " \r\n\r\n", " \n  \n"], ["s", " \n\n", " \u2014", "  \n\n", "\n\n", " \\", " @", " quickly"], ["s", " \u2014", " \n\n", " quickly", " havoc", " \\", "\u2014or", " worse"], ["s", " \u2014", "\u2014or", " havoc", " \n\n", "\u2014and", " fundamentally", " squarely"], ["s", " \u2014", " havoc", "\u2014or", " squarely", " cleanly", " worse", " fundamentally"], ["s", " \u2014", "\u2014or", " havoc", " unsustainable", " fundamentally", "\u2014and", " worse"], ["s", " \u2014", " havoc", " unsustainable", "\u2014or", " fundamentally", " ?:", "\u2014if"], ["s", " unsustainable", " \u2014", " havoc", " fundamentally", " inevit", " failure", " awkward"], [" failure", " unsustainable", " fundamentally", " catast", " failures", " \u2014", " havoc", " quickly"], [" unsustainable", " failure", " fundamentally", " inevit", " havoc", " horribly", " catast", " failures"], [" unsustainable", " failure", " catast", " failures", " Break", " fragile", " broken", " catastrophic"], [" catast", " unsustainable", "\u5d29\u6e83", " collapse", " failure", " fragile", " failures", " brittle"], [" fragile", " broken", "\u5d29\u6e83", " catast", " unsustainable", " brittle", " collapse", " breakdown"], [" Break", "\u5d29\u6e83", " broken", " catast", " breakdown", " failure", " collapse", " unsustainable"], [" catast", " unsustainable", " collapse", "\u5d29\u6e83", " worst", " inevit", " broken", " worse"], [" inevitable", " inevit", " catast", "\u5d29\u6e83", " Break", " unsustainable", " broken", " fastest"], [" inevit", " inevitable", " Break", " Worse", " Collapse", " catast", " Worst", " inevitably"], [":\\", ":", ":**", " inevit", " Worst", " Worse", "\u6700\u5148", " Break"], [":", ":\\", ":**", "\u6700\u5148", " Worse", "**:", " inevit", "__:"], [":", ":\\", ":**", ":*", "*:", "__:", "**:", ":\\\""], [":**", ":*", "*:", ":", ":\\", "\uff1a**", "**:", " **:"], [":**", "\u6700\u5148", ":*", "*:", ":\\", ":first", "\uff1a**", ":"], [":**", ":*", "\u6700\u5148", "\uff1a**", " :**", ":\\", ":</", ":\""], [":**", "\u6700\u5148", ":*", " \u0623\u0648\u0644\u0627\u064b", "\u9996\u5148", ":&", "\uff1a**", " :**"], [":**", "\u6700\u5148", ":*", "\u9996\u5148", ":first", " \u0623\u0648\u0644\u0627\u064b", "\u7b2c\u4e00\u65f6\u95f4", " FIRST"], [" first", "first", " FIRST", " First", ":first", "-first", "\u9996\u5148", "_first"], [" first", "first", " First", " FIRST", "\u9996\u5148", "-first", "First", ":first"], [" first", "first", " First", " FIRST", "\u9996\u5148", "-first", ":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"], [" First", "s", " first", "First", "first", " FIRST", "_first", "-first"], ["s", " First", "es", "ks", "ts", "ers", "ls", "ages"]], "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], [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.9993, 0.0004, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9957, 0.0028, 0.0005, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.5703, 0.392, 0.0195, 0.0092, 0.0038, 0.0026, 0.0005, 0.0002], [0.7587, 0.1318, 0.055, 0.0102, 0.0102, 0.0084, 0.0045, 0.0042], [0.4187, 0.2878, 0.1978, 0.0251, 0.0162, 0.0082, 0.005, 0.0023], [0.5561, 0.4331, 0.0042, 0.002, 0.0016, 0.0007, 0.0004, 0.0004], [0.5093, 0.4495, 0.0326, 0.0025, 0.0016, 0.0009, 0.0008, 0.0004], [0.871, 0.081, 0.0232, 0.0124, 0.0033, 0.001, 0.0007, 0.0007], [0.7786, 0.1737, 0.0302, 0.0111, 0.001, 0.0005, 0.0004, 0.0004], [0.8483, 0.1301, 0.0022, 0.0017, 0.0014, 0.0006, 0.0004, 0.0004], [0.9771, 0.0035, 0.0004, 0.0003, 0.0002, 0.0002, 0.0002, 0.0002], [0.6132, 0.0287, 0.0112, 0.0082, 0.0034, 0.0032, 0.0027, 0.0025], [0.2887, 0.0367, 0.0324, 0.0163, 0.0068, 0.0056, 0.0041, 0.0041], [0.2969, 0.0906, 0.0115, 0.009, 0.0079, 0.0062, 0.0062, 0.0051], [0.067, 0.0591, 0.0217, 0.0192, 0.0124, 0.0085, 0.0066, 0.0059], [0.0295, 0.0278, 0.0278, 0.0203, 0.014, 0.0085, 0.008, 0.007], [0.0324, 0.0286, 0.0209, 0.0173, 0.0163, 0.0163, 0.0163, 0.0127], [0.0334, 0.023, 0.0179, 0.0148, 0.0131, 0.0131, 0.0131, 0.0116], [0.0428, 0.0355, 0.0244, 0.0244, 0.0202, 0.0157, 0.0157, 0.013], [0.0455, 0.0333, 0.0312, 0.0276, 0.0259, 0.0243, 0.0243, 0.0229], [0.0361, 0.0339, 0.0318, 0.0318, 0.0299, 0.0281, 0.0248, 0.0219], [0.0398, 0.0374, 0.0351, 0.033, 0.0257, 0.0241, 0.0241, 0.0213], [0.04, 0.0353, 0.0311, 0.0292, 0.0258, 0.0242, 0.0242, 0.0228], [0.0326, 0.0307, 0.0288, 0.0288, 0.0271, 0.0211, 0.0211, 0.0198], [0.138, 0.0837, 0.0421, 0.0371, 0.0255, 0.0225, 0.0199, 0.0187], [0.2882, 0.1449, 0.039, 0.0304, 0.0237, 0.0222, 0.0173, 0.0163], [0.2584, 0.1146, 0.1077, 0.0449, 0.0212, 0.0212, 0.0199, 0.0199], [0.2882, 0.2544, 0.1981, 0.0501, 0.0268, 0.0196, 0.0153, 0.0119], [0.2916, 0.1215, 0.1215, 0.1073, 0.0651, 0.0574, 0.0395, 0.0327], [0.3432, 0.1837, 0.0676, 0.0362, 0.0319, 0.03, 0.0282, 0.0265], [0.7601, 0.0801, 0.026, 0.023, 0.023, 0.0079, 0.0066, 0.0062], [0.4827, 0.0951, 0.0653, 0.0509, 0.0449, 0.0226, 0.0176, 0.0176], [0.3231, 0.0926, 0.0817, 0.0496, 0.0496, 0.0496, 0.0249, 0.0249], [0.5552, 0.1404, 0.1239, 0.0456, 0.0244, 0.0215, 0.0168, 0.009], [0.6736, 0.1503, 0.071, 0.0431, 0.0179, 0.0058, 0.0051, 0.0045], [0.6348, 0.1416, 0.0974, 0.046, 0.0149, 0.0062, 0.0062, 0.0062], [0.4088, 0.4088, 0.0912, 0.0431, 0.0075, 0.0051, 0.0045, 0.004], [0.5977, 0.3625, 0.0205, 0.0066, 0.0036, 0.0019, 0.0019, 0.0007], [0.5758, 0.3957, 0.0174, 0.003, 0.0027, 0.0011, 0.0011, 0.0009], [0.8061, 0.1587, 0.0243, 0.0031, 0.002, 0.001, 0.0009, 0.0008], [0.9456, 0.0222, 0.0119, 0.003, 0.0023, 0.0014, 0.0007, 0.0004]], "ranks": {"Python": [15632, 109665, 71900, 144002, 137595, 150064, 90895, 117019, 121602, 134082, 123910, 147271, 136765, 115806, 78727, 133612, 113626, 86351, 111497, 170305, 113197, 149208, 102667, 71308, 17326, 26586, 50064, 48021, 26644, 22487, 18878, 18661, 25826, 62020, 73761, 46048, 42875, 46786, 34292, 31059, 31033, 23647, 28470, 22784, 24787, 16823, 20520, 19996, 26381, 55232, 68184, 66768, 60330, 55438, 93763, 101936, 73228, 51373, 35957, 10177, 8906, 4821, 3515]}}, {"pos": 375, "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", "---</", "wehr", "rokes", "agna"], ["  \n  \n", " \n  \n", "        \n        \n", "ively", " kids", "   \n", " Kills", "agna"], ["rokes", " \n  \n", "agna", " \uff08", "insky", " pretty", "\u7d2f\u7d2f", " kids"], [" \n", " \n  \n", "rokes", " Philly", "        \n        \n", "   \n", " havoc", " moms"], ["ighbors", " \n  \n", "\u7d2f\u7d2f", "breaker", "        \n        \n", "celed", "linky", "ickle"], [" \n    \n", " \n  \n", "        \n        \n", "linky", "breaker", " Philly", "ideshow", " \n        \n"], [" \n  \n", " \n \n", " havoc", "\u7d2f\u7d2f", "<|object_ref_start|>", "linky", ".pretty", "-Cds"], [" \n  \n", " \n", " \n\n", " \n \n", "  \n  \n", " \n\n\n", " havoc", "  \n\n"], [" havoc", " \n  \n", " \n\n", " \n", " ___", " ____", " --", "\u7d2f\u7d2f"], [" havoc", " \n  \n", " \n", " \n\n", " kids", " --", " pretty", " Philly"], [" havoc", " \n\n", " --", " pretty", " kids", " horribly", " bigger", " wildly"], [" \n\n", " --", " \u2014", "\n\n", " pretty", " havoc", "  \n\n", " kids"], [" --", " pretty", " \u2014", " kids", " \n\n", " horribly", " stuff", " wildly"], [" pretty", " bigger", " really", " just", " getting", " kids", " horribly", " incredibly"], [" \n\n", " \u2014", " pretty", " bigger", " really", " stuff", " big", " --"], [" \n\n", " --", " \u2014", " pretty", " bigger", " stuff", " horribly", " havoc"], [" \n\n", " --", "  \n\n", " \u2014", " pretty", " havoc", " horribly", " ---"], [" \n\n", "  \n\n", "\n\n", " --", "   \n\n", " \n  \n", " \n\n\n", "\t\n\n"], [" --", " havoc", " bigger", " horribly", " worse", " stuff", " harder", " pretty"], [" --", " \n\n", " horribly", " ---", " worse", " havoc", " \u2014", "\n\n"], [" --", " \n\n", " ,", " much", " worse", " even", " wildly", " horribly"], [" \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", "\n\n", " --", "  \n\n", " ___", " __", " \n  \n", " \n\n\n"], [" \n\n", " ___", " \n  \n", " __", " ...\\", " ____", "  \n\n", " ..."], [" \n\n", " ...", "\n\n", "  \n\n", " ___", " \n", " \u2026", " \n  \n"], [" \n\n", " ...", " ,", " \u2014", "\n\n", " \u2026", " --", " @"], [" ,", " \u2014", " :", " -", " --", " over", " even", " heavily"], [" \u2014", " \n\n", " --", " tech", " heavily", " incredibly", " technology", " fundamentally"], [" \u2014", " heavily", " fundamentally", " deeply", " seamlessly", " inherently", " directly", " purely"], [" \u2014", " \u2013", " \u2014\u2014", " hardware", " *", " \n\n", " infrastructure", " directly"], [" \u2014", " hardware", " directly", " \u2013", " *", " technology", " infrastructure", " \n\n"], [" hardware", " directly", " \u2013", " \u2014", " software", " technology", " infrastructure", " tech"], [" hardware", " directly", " \u2014", " technology", " speed", " software", " physics", " performance"], [" directly", " Python", " hardware", " seamlessly", " native", " dual", " \u2014", " physics"], [" hardware", " Python", " software", " directly", " tech", " technology", " engine", " performance"], [" hardware", " engine", " Python", " software", " technology", " physics", " tech", " seamlessly"], [" hardware", " engine", " software", " Python", " seamlessly", " directly", " technology", " tech"], [" hardware", " engine", " directly", " technology", " performance", " Direct", " seamlessly", " software"], [" directly", " hardware", " mainstream", " performance", " direct", " engine", " dual", " Direct"], [" mainstream", " directly", " traditional", " hardware", " dual", " direct", " performance", " Direct"], [" mainstream", " directly", " traditional", "\u76f4\u63a5\u7528", " Direct", "\u76f4\u63a5\u4f7f\u7528", " seamlessly", " direct"], [" traditional", " mainstream", " directly", " Traditional", " conventional", "\u76f4\u63a5\u4f7f\u7528", "\u76f4\u63a5\u7528", " Direct"], [" traditional", " mainstream", " Traditional", " conventional", "\u76f4\u63a5\u4f7f\u7528", " directly", "\u76f4\u63a5\u7528", " Direct"], [":", " Traditional", ":**", ":\\", " **:**", "__:", ":*", "**:"], ["\uff1a**", ":**", ":", " :**", "\uff1a", ":*", " **:", " **:**"], [":**", "\uff1a**", " :**", ":*", ":", "\uff1a", "**:", "*:"], [":**", ":*", " :**", "\uff1a**", ":\"", ":</", ":", "?**"], [":**", ":*", " :**", "\uff1a**", ":\"", ":", ":</", ":\\"], [":**", ":", ":*", " :**", ":\"", " first", ":first", "\u9996\u5148"], [" first", "first", ":**", " FIRST", " First", ":first", "-first", "\u9996\u5148"], [" first", "first", "\u9996\u5148", " First", " FIRST", "-first", ":first", "First"], [" first", "first", ":**", " First", " FIRST", "\u9996\u5148", ":first", "-first"], [" first", " First", "first", " FIRST", ":**", "\u9996\u5148", "First", ":first"], [" first", " First", "first", "_first", "First", ":**", " Pure", " FIRST"], [" first", " First", "first", "_first", " Pure", "First", " FIRST", ".first"], [" First", " first", "First", "_first", " Pure", "first", " FIRST", ":"], [" First", ":**", " Pure", " Immediately", " first", " Last", "_first", " Second"]], "p": [[0.4208, 0.2252, 0.1064, 0.0731, 0.0645, 0.0286, 0.0119, 0.0105], [0.0629, 0.049, 0.0316, 0.0316, 0.0279, 0.0096, 0.0085, 0.0066], [0.7005, 0.1074, 0.0477, 0.0448, 0.0255, 0.0155, 0.0094, 0.0065], [0.0087, 0.0053, 0.0032, 0.0023, 0.0018, 0.0017, 0.0017, 0.0017], [0.0115, 0.0108, 0.0101, 0.0084, 0.0074, 0.0035, 0.0035, 0.0035], [0.0086, 0.0067, 0.0049, 0.0043, 0.0043, 0.0036, 0.0028, 0.0025], [0.0179, 0.0179, 0.0066, 0.0058, 0.0048, 0.0042, 0.004, 0.0035], [0.0071, 0.0052, 0.0048, 0.0046, 0.0035, 0.0033, 0.0029, 0.0029], [0.0192, 0.0096, 0.008, 0.0058, 0.0043, 0.004, 0.0038, 0.0035], [0.0092, 0.0049, 0.0038, 0.0025, 0.0019, 0.0019, 0.0016, 0.0013], [0.3093, 0.1762, 0.1762, 0.069, 0.0113, 0.0106, 0.0082, 0.0077], [0.0408, 0.0263, 0.0124, 0.011, 0.011, 0.0085, 0.0071, 0.0059], [0.0516, 0.0355, 0.0259, 0.0202, 0.0123, 0.0102, 0.0095, 0.009], [0.0763, 0.0595, 0.0558, 0.0558, 0.0299, 0.016, 0.0125, 0.0125], [0.5494, 0.1676, 0.048, 0.0257, 0.0241, 0.0083, 0.0083, 0.0069], [0.1659, 0.0945, 0.0692, 0.0327, 0.0288, 0.0239, 0.0186, 0.0186], [0.1023, 0.0293, 0.0275, 0.0259, 0.0228, 0.0228, 0.0201, 0.0189], [0.268, 0.105, 0.0986, 0.0341, 0.0182, 0.0151, 0.0133, 0.0133], [0.2544, 0.1279, 0.106, 0.0729, 0.0304, 0.0252, 0.0222, 0.0222], [0.8288, 0.0874, 0.0081, 0.0081, 0.0046, 0.0036, 0.0028, 0.0022], [0.9862, 0.0075, 0.004, 0.0006, 0.0004, 0.0002, 0.0002, 0.0001], [0.147, 0.0477, 0.0421, 0.0372, 0.0328, 0.0272, 0.0255, 0.0225], [0.6688, 0.1691, 0.0095, 0.0058, 0.0058, 0.0058, 0.0051, 0.0045], [0.5974, 0.063, 0.0141, 0.0103, 0.0091, 0.008, 0.0062, 0.0059], [0.968, 0.0258, 0.0045, 0.0004, 0.0003, 0.0003, 0.0002, 0.0001], [0.9198, 0.0315, 0.0116, 0.0062, 0.0038, 0.0035, 0.0026, 0.002], [0.6202, 0.332, 0.0165, 0.0114, 0.0057, 0.0014, 0.0011, 0.0007], [0.6939, 0.2893, 0.0077, 0.0025, 0.0022, 0.0012, 0.0003, 0.0002], [0.889, 0.0827, 0.0068, 0.006, 0.003, 0.0018, 0.0014, 0.0004], [0.8738, 0.0435, 0.016, 0.011, 0.0097, 0.0097, 0.0059, 0.0059], [0.7925, 0.1377, 0.0239, 0.0069, 0.0061, 0.0047, 0.0042, 0.0039], [0.3099, 0.1558, 0.0538, 0.0271, 0.0211, 0.0145, 0.0136, 0.0128], [0.0965, 0.08, 0.0428, 0.0277, 0.0215, 0.0202, 0.0179, 0.0158], [0.3762, 0.1473, 0.0212, 0.0199, 0.0165, 0.0107, 0.0094, 0.0083], [0.2505, 0.0361, 0.016, 0.0125, 0.0117, 0.0117, 0.011, 0.0103], [0.6305, 0.0295, 0.0244, 0.023, 0.009, 0.0062, 0.0055, 0.0055], [0.318, 0.0911, 0.038, 0.038, 0.0179, 0.014, 0.0109, 0.0109], [0.1433, 0.0597, 0.0561, 0.0561, 0.0182, 0.0171, 0.0118, 0.0118], [0.1722, 0.0674, 0.0493, 0.0206, 0.0141, 0.0141, 0.0133, 0.0133], [0.1043, 0.0673, 0.0463, 0.0219, 0.0219, 0.0181, 0.016, 0.0141], [0.0931, 0.0725, 0.0413, 0.0302, 0.0267, 0.0235, 0.0221, 0.0195], [0.1002, 0.078, 0.0647, 0.0608, 0.0306, 0.0197, 0.0185, 0.0164], [0.0689, 0.0689, 0.0445, 0.0346, 0.0325, 0.0306, 0.0224, 0.0164], [0.0612, 0.0448, 0.0371, 0.0328, 0.0255, 0.0187, 0.0175, 0.0165], [0.0758, 0.046, 0.0381, 0.0279, 0.0262, 0.0246, 0.0231, 0.018], [0.0723, 0.068, 0.0467, 0.0387, 0.0342, 0.0221, 0.0221, 0.0207], [0.1563, 0.0786, 0.0575, 0.0349, 0.0349, 0.0272, 0.0225, 0.0212], [0.4106, 0.1176, 0.0759, 0.067, 0.0382, 0.0359, 0.0337, 0.0317], [0.2302, 0.1396, 0.096, 0.066, 0.0582, 0.0582, 0.0332, 0.0312], [0.1456, 0.0829, 0.0779, 0.0732, 0.0392, 0.0325, 0.0287, 0.0253], [0.1472, 0.1472, 0.1472, 0.0788, 0.0509, 0.0478, 0.0449, 0.0422], [0.2633, 0.1409, 0.1409, 0.0803, 0.0404, 0.0314, 0.023, 0.0216], [0.8437, 0.0611, 0.0371, 0.0225, 0.0094, 0.0032, 0.0027, 0.0022], [0.7757, 0.0818, 0.0438, 0.0207, 0.0161, 0.0125, 0.0052, 0.0049], [0.5902, 0.0799, 0.0799, 0.0377, 0.0294, 0.0259, 0.0259, 0.0139], [0.6309, 0.0665, 0.0587, 0.0518, 0.0518, 0.0403, 0.0277, 0.0131], [0.9179, 0.0403, 0.0168, 0.0116, 0.0062, 0.0012, 0.0009, 0.0009], [0.8858, 0.0343, 0.0208, 0.0208, 0.0162, 0.0087, 0.0022, 0.0013], [0.5712, 0.3464, 0.0284, 0.0221, 0.0105, 0.0034, 0.003, 0.0026], [0.8002, 0.1785, 0.0129, 0.0012, 0.0012, 0.0012, 0.0012, 0.0011], [0.7468, 0.2425, 0.0065, 0.0011, 0.0011, 0.001, 0.0004, 0.0001], [0.9591, 0.0372, 0.001, 0.0008, 0.0004, 0.0004, 0.0003, 0.0002], [0.999, 0.0002, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0]], "ranks": {"Python": [17329, 72563, 73745, 118596, 32010, 26574, 6172, 33136, 47849, 54614, 10481, 8197, 5551, 7743, 5442, 12732, 14420, 6624, 8670, 29388, 5409, 8115, 5604, 3261, 2379, 1272, 2211, 2436, 2574, 2565, 3025, 4071, 4465, 813, 1332, 160, 41, 35, 20, 2, 2, 3, 4, 11, 15, 14, 23, 56, 104, 543, 958, 273, 359, 497, 645, 354, 289, 253, 293, 128, 238, 147, 181]}}, {"pos": 376, "top": [["s", " \u2013", ".", "<|endoftext|>", "\u2013", ",", " ", "  \n"], ["s", " \u2013", "\u2013", " Very", " very", "  \n", "sWith", "spre"], ["s", "\u2013", " \u2013", "\u2026", ".", ",", "\u2013and", "?"], ["sWith", "sik", "schaft", "scha", "schn", "schrift", "sstr", "satz"], ["s", "sWith", "ively", "sik", "sand", "schaft", "iest", "sche"], ["s", "schaft", "sver", " **", "sWith", "sand", "spre", "sab"], ["s", "\u300d**", "sie", " **", "schaft", "sand", "sor", " \u00bb**"], [" **", "schaft", " **\u300c", "\u300d**", "schn", "s", "sik", " **.**"], ["schaft", "s", "schn", "sik", "\u300d**", " **.**", "schuss", "sheets"], ["s", "\\_", "\\-", "!\\", "\u5148\u5f97", "sand", "sword", "ively"], ["s", "\\_", "!\\", "?\\", "._", "\\'", "\\-", ","], ["s", " **", "._", " ___", " ______", " _", "\\_", ".__"], ["s", " **", " _", " ___", "._", "schaft", " `_", " ______"], ["s", "-ish", " _", "._", " kicking", " kicks", "\\'", "-ever"], ["s", "\n\n", " _", " \n\n", " ?", "  \n\n", "\\_", " --"], ["s", " ?", " ,", " really", " --", "\n\n", " \u2014", " -"], ["s", " really", " just", " ,", "?", " when", " happening", " pretty"], ["s", " \u2014", "?", " really", ",", " just", " ,", " ?"], ["s", " \u2014", " ?", " --", "\n\n", " \ufffd", " \n\n", "?"], [" --", " ?", " \u2014", "\n\n", " ___", " ---", " \ufffd", "s"], ["\n\n", " \n\n", " --", " ?", "  \n\n", " \u2014", " ,", " :"], [" ?", " --", " ?**", " ___", " :", " \u061f", "\n\n", " ---"], ["\n\n", " --", " ?", " ___", " \n\n", " :", " \u2014", " ---"], ["\n\n", " --", " ,", " ?", " \u2014", " :", " \n\n", "<|endoftext|>"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", " --", " ___", " ______", "<|endoftext|>"], ["\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", " ___", " ______", " __", " ____", "\r\n\r\n"], ["\n\n", " \n\n", "  \n\n", " ___", " ______", " __", " \u2014", " ____"], ["\n\n", " \n\n", " ___", "  \n\n", " ______", " ____", " ?", " __"], ["\n\n", " \n\n", " \u2014", " ?", " --", " :", " ,", " ["], [" :", " \u2014", " ?", " ,", " --", " early", " **", " \u2013"], [" \u2014", " **", " --", " :", " ?", " \u2013", " ______", " ___"], [" \u2014", " --", " :", " **", " quickly", " ?", " \u2013", " ?**"], [" \u2014", " :", " \u2013", " **", " ?", " \u2014\u2014", " --", " :**"], [" \u2014", " :", " \u2013", " ?", " **", " :**", " --", " ?**"], [" :", " \u2014", " ?", " \u2013", " quickly", " rapidly", " **", " --"], [" :", " \u2014", " quickly", " rapidly", " ?", " immediately", " --", " critical"], [" :", " \u2014", " quickly", " rapidly", " **", " failure", " critical", " immediately"], [" :", " quickly", " failure", " rapidly", " \u2014", " critical", " **", " unsustainable"], [" quickly", " rapidly", " :", " rapid", " \u2014", " failure", " critical", " fastest"], [" quickly", " rapidly", " :", " critical", " early", " rapid", " fastest", " failure"], [" :", " quickly", " fastest", " failure", " rapidly", " critical", " quickest", " immediately"], [" :", " fastest", " quickly", " critical", " immediate", " immediately", " failure", " early"], [" immediately", " immediate", " quickly", " first", " rapidly", " :", " fastest", " early"], [":", " **", " :", " Immediate", " immediate", " immediately", ":**", " :**"], [":", " :", ":**", " **", ":\\", " :**", "**:", "\uff1a**"], [":", " :", " **", ":**", " :**", "**:", " **:", "**"], [":", ":**", ":\\", " :", " :**", "**:", " **:", " **"], [":**", "\uff1a**", " **:", ":", " **", " :**", "**:", " **:**"], [":**", ":", "\uff1a**", " :**", " **:", ":*", ":\\", "**:"], [":**", "\uff1a**", " :**", ":*", ":", "**:", ":\\", "**"], [":**", "\uff1a**", ":*", " :**", ":", ":\\", "**:", "**"], [":**", "\uff1a**", ":", " :**", ":*", ":\\", ":</", "**:"], [":**", "\uff1a**", " :**", ":*", ":", ":\\", "**:", ":</"], [":**", " :**", "\uff1a**", ":*", ":", "**:", "?**", "**"], [":**", " :**", "\uff1a**", ":", ":*", "**:", "**", ":`"], [":**", " :**", ":", "\uff1a**", ":*", "**:", "**", " **:"], [":**", " :**", ":", ":*", "**", "\uff1a**", "**:", "?**"], [":**", ":", ":*", " :**", "**", ":\"", "\uff1a**", "**:"], [":**", ":", ":*", " :**", "**", ":The", "**:", "\uff1a**"], [":**", ":", "**", "**:", "\uff1a**", "?**", " :**", ".**"]], "p": [[0.6879, 0.2531, 0.0195, 0.0152, 0.0087, 0.0053, 0.0025, 0.0006], [0.8875, 0.0728, 0.0119, 0.0007, 0.0007, 0.0003, 0.0003, 0.0003], [0.5024, 0.3453, 0.127, 0.0086, 0.0034, 0.0028, 0.0015, 0.0011], [0.023, 0.0203, 0.0168, 0.0102, 0.0096, 0.007, 0.0058, 0.0055], [0.9974, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.7736, 0.0091, 0.0081, 0.0049, 0.0038, 0.0038, 0.0036, 0.0032], [0.8062, 0.0101, 0.009, 0.0074, 0.0066, 0.0042, 0.004, 0.0037], [0.0703, 0.066, 0.0228, 0.0201, 0.0189, 0.0167, 0.0115, 0.0108], [0.0712, 0.0262, 0.0246, 0.0159, 0.009, 0.009, 0.0075, 0.0062], [0.1656, 0.0326, 0.0044, 0.0037, 0.0032, 0.0028, 0.0028, 0.0027], [0.5644, 0.2504, 0.0141, 0.0125, 0.0097, 0.0071, 0.0063, 0.0059], [0.2123, 0.0942, 0.0326, 0.0174, 0.0144, 0.0106, 0.0088, 0.0053], [0.2135, 0.0289, 0.0175, 0.012, 0.012, 0.0078, 0.0069, 0.005], [0.672, 0.0043, 0.0038, 0.0029, 0.0021, 0.0018, 0.0017, 0.0016], [0.6708, 0.1696, 0.0102, 0.0096, 0.0035, 0.0035, 0.0026, 0.0024], [0.6396, 0.0281, 0.017, 0.0091, 0.0086, 0.0081, 0.0071, 0.0059], [0.8751, 0.0043, 0.0028, 0.0028, 0.0023, 0.0018, 0.0017, 0.0017], [0.4118, 0.0408, 0.0232, 0.015, 0.0132, 0.0103, 0.0091, 0.0067], [0.1346, 0.1188, 0.072, 0.0636, 0.0151, 0.0133, 0.0104, 0.0092], [0.2324, 0.1597, 0.1324, 0.0379, 0.0278, 0.0261, 0.023, 0.0123], [0.8517, 0.0898, 0.0129, 0.0107, 0.0089, 0.0083, 0.0018, 0.0013], [0.4351, 0.071, 0.071, 0.0627, 0.0204, 0.018, 0.0159, 0.0109], [0.8837, 0.064, 0.0208, 0.0072, 0.006, 0.0028, 0.0025, 0.0021], [0.64, 0.2354, 0.0281, 0.0248, 0.0182, 0.011, 0.0076, 0.0032], [0.9929, 0.0067, 0.0003, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9424, 0.0285, 0.0196, 0.0018, 0.0016, 0.001, 0.001, 0.0009], [0.971, 0.0178, 0.0031, 0.0021, 0.0015, 0.0011, 0.0011, 0.0006], [0.9947, 0.0046, 0.0003, 0.0001, 0.0001, 0.0001, 0.0, 0.0], [0.9854, 0.0141, 0.0002, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.4868, 0.4868, 0.0167, 0.0033, 0.0015, 0.0008, 0.0008, 0.0005], [0.6727, 0.2804, 0.014, 0.0123, 0.0058, 0.0024, 0.0024, 0.0024], [0.2227, 0.1735, 0.1735, 0.1052, 0.0342, 0.0342, 0.0283, 0.0152], [0.3298, 0.2569, 0.1006, 0.061, 0.0239, 0.0106, 0.01, 0.01], [0.7892, 0.0326, 0.0154, 0.0136, 0.0099, 0.0088, 0.0073, 0.0047], [0.7541, 0.0375, 0.0201, 0.0189, 0.0108, 0.0084, 0.0084, 0.0065], [0.8152, 0.0807, 0.0279, 0.008, 0.0058, 0.004, 0.0038, 0.0029], [0.5717, 0.1744, 0.0152, 0.0143, 0.0126, 0.0082, 0.0077, 0.0072], [0.3341, 0.1903, 0.0375, 0.0147, 0.013, 0.0101, 0.0089, 0.0089], [0.3166, 0.1804, 0.0313, 0.0202, 0.0131, 0.0123, 0.0123, 0.0115], [0.1335, 0.0761, 0.0407, 0.0247, 0.0192, 0.0192, 0.017, 0.0124], [0.12, 0.0344, 0.0323, 0.0252, 0.0173, 0.0162, 0.0135, 0.0127], [0.0804, 0.0553, 0.0519, 0.0245, 0.023, 0.023, 0.0216, 0.0191], [0.0861, 0.0491, 0.0407, 0.0317, 0.0298, 0.0247, 0.0232, 0.0192], [0.0634, 0.0526, 0.0464, 0.0264, 0.0248, 0.0219, 0.0206, 0.0193], [0.0814, 0.0385, 0.0339, 0.0319, 0.0281, 0.0264, 0.0233, 0.0219], [0.1446, 0.0934, 0.0642, 0.047, 0.0389, 0.0366, 0.0323, 0.0251], [0.1481, 0.1228, 0.0745, 0.0617, 0.0424, 0.0352, 0.0274, 0.0147], [0.5359, 0.0875, 0.0822, 0.0772, 0.0531, 0.0251, 0.0162, 0.0134], [0.4908, 0.1406, 0.1095, 0.0586, 0.0378, 0.0334, 0.023, 0.019], [0.7126, 0.1238, 0.0355, 0.0244, 0.0168, 0.0131, 0.0131, 0.0131], [0.3065, 0.1641, 0.1641, 0.1448, 0.0684, 0.0604, 0.0323, 0.0222], [0.4885, 0.2307, 0.1399, 0.0849, 0.0115, 0.0115, 0.0089, 0.007], [0.9587, 0.0176, 0.0137, 0.0057, 0.0035, 0.0003, 0.0001, 0.0001], [0.9633, 0.0156, 0.0074, 0.0065, 0.0065, 0.0004, 0.0001, 0.0], [0.952, 0.0154, 0.0154, 0.0082, 0.0082, 0.0003, 0.0001, 0.0001], [0.9835, 0.0066, 0.0052, 0.0024, 0.0019, 0.0001, 0.0001, 0.0], [0.9906, 0.0046, 0.004, 0.0004, 0.0002, 0.0001, 0.0, 0.0], [0.9919, 0.0041, 0.0025, 0.001, 0.0004, 0.0001, 0.0, 0.0], [0.9885, 0.0046, 0.004, 0.0012, 0.0009, 0.0006, 0.0001, 0.0], [0.9933, 0.0036, 0.001, 0.0009, 0.0006, 0.0002, 0.0002, 0.0], [0.9825, 0.014, 0.0021, 0.0005, 0.0004, 0.0001, 0.0001, 0.0001], [0.8455, 0.1469, 0.0021, 0.0016, 0.0013, 0.0009, 0.0004, 0.0002], [0.9954, 0.0025, 0.0017, 0.0002, 0.0001, 0.0001, 0.0, 0.0]], "ranks": {"Python": [16669, 50090, 40258, 84567, 5679, 33339, 5456, 26923, 14820, 10346, 1889, 3381, 2355, 1241, 1458, 3207, 4678, 2677, 2888, 7569, 3598, 7868, 4738, 4230, 3336, 5161, 4929, 3653, 3219, 3842, 3860, 5924, 7936, 8626, 17443, 6209, 6839, 7736, 6298, 7382, 8760, 7676, 8681, 8814, 6985, 6050, 7124, 7096, 7853, 13118, 14208, 12505, 13282, 14959, 20864, 3720, 1528, 1103, 1142, 498, 440, 137, 204]}}, {"pos": 377, "top": [[" \u2013", "  \n", ".", " (\u201e", "\u2026..", "   \n", "\u201e", "\u2026\u2026"], ["  \n", " \u2013**", "   \n", ",\\\"", ",**", ":**", ":\\\"", "\u30f3"], ["\u2026\u2026", "\u2026..", ".:**", ",**", " \u2013**", ":**", ",..", ";**"], [" ``(", " **\u201e", "``", " ``", "\u52a0\u62ff\u5927", "raries", " **:**", " ;;^"], [" ##", "raries", ":**", "\u52a0\u62ff\u5927", "ed", ".:**", " **\u201e", ":@"], [":**", ".:**", " **\u201e", "raries", "\u52a0\u62ff\u5927", ",**", "ed", "-**"], ["raries", " ~~", " ......", " **\u201e", " ##", ":**", "``", "\u5728"], [" **\u201e", " ~~", "raries", "\u52a0\u62ff\u5927", "\u52c7\u5f80\u76f4\u524d", " **\u3010", ".:**", ":**"], [" ~~", " **\u201e", "raries", " ____", " ......", ",\\\"", ",..", "\u52c7\u5f80\u76f4\u524d"], ["\u52c7\u5f80\u76f4\u524d", "\u52a0\u62ff\u5927", "\u8033\u719f\u80fd\u8be6", " ~~", "\u8eab\u4e34\u5176\u5883", "\u4e0d\u53ef\u601d\u8bae", "\u52e4\u52e4\u6073\u6073", "raries"], [" ____", " ~~", " ......", "...\\", "...**", ",\\\"", " ##", "____"], [" ____", "raries", " ~~", "\u52c7\u5f80\u76f4\u524d", "...**", " **\u201e", " ##", " backstory"], [" ____", " **\u201e", "raries", " ~~", "...**", "\u52a0\u62ff\u5927", "\u52c7\u5f80\u76f4\u524d", "aviors"], ["\u52c7\u5f80\u76f4\u524d", "raries", " backstory", "\u52a0\u62ff\u5927", "\u8eab\u4e34\u5176\u5883", "\u0103\u0219", " **\u201e", " LGBTQ"], ["\n\n", " --", "an", "\u52c7\u5f80\u76f4\u524d", "...", " backstory", "\u8eab\u4e34\u5176\u5883", "...**"], [" --", "an", "n", "ed", "\n\n", " folks", " theater", " kids"], ["<|endoftext|>", "\n\n", "n", "an", " --", "...", "ed", "d"], ["\n\n", "...", "<|endoftext|>", "...\\", "n", "...**", "an", ",**"], ["\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", " **\u3010", "...**", " **+", " --", " **\u2022", " **'"], ["\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", "...\\", "\r\n\r\n"], ["\n\n", " \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", " **", " ...", "<|endoftext|>", "\n\n\n", "   \n\n"], ["\n\n", " \n\n", "  \n\n", " **", " ...", "<|endoftext|>", " ,", " --"], [" ,", " **", " \u2014", " \u2013", "\n\n", " -", " initially", " ultimately"], [" **", "  \n\n", " \u2014", " fundamentally", " \n\n", " aggressively", " --", " essentially"], [" **", " aggressively", " fundamentally", " heavily", " dramatically", " --", " relentless", " swiftly"], [" **", "  \n\n", " *", " \u2014", " \u2013", " aggressively", " fundamentally", " rapidly"], [" **", "  \n\n", " *", " aggressively", " rapidly", " relentless", " fundamentally", " dramatically"], [" **", " *", " rapidly", " relentless", " aggressively", "  \n\n", " fundamentally", " dramatically"], [" **", " *", " rapidly", " relentless", " fundamentally", " aggressively", " dramatically", " relentlessly"], [" **", " rapidly", " relentless", " fundamentally", " *", " dramatically", " aggressively", " relentlessly"], [" **", " rapidly", " fundamentally", " relentless", " failure", " dramatically", " unsustainable", " catastrophic"], [" rapidly", " collapsing", " rapid", " fundamentally", " infrastructure", " breaking", " relentless", " critical"], [" **", " collapsing", " fundamentally", " rapidly", " breaking", " infrastructure", " critical", " crashing"], [" **", " collapsing", " failure", " infrastructure", " breaking", " crashing", " bottleneck", " unsustainable"], [" **", " collapsing", " infrastructure", " failure", " breaking", " critical", " bottleneck", " severely"], [" **", " immediately", " collapsing", " immediate", " fundamentally", " severely", " breaking", " rapidly"], [" **", " **\"", " **\u201c", "  \n\n", " immediate", " fundamentally", " unsustainable", " immediately"], [" **", " **\"", " **\u201c", "  \n\n", " **'", "  \n", " **#", " **("], [" **", " **\"", " **\u201c", " **'", "-**", " **(", "**", " **#"], [" **", " **\"", "**", "  \n", "-**", " **\u201c", ":**", " **#"], [" **", " **\"", " **\u201c", "**", "-**", " **#", " **-", "  \n"], [" **", " **\"", " **\u201c", "**", " **#", "  \n", " **\u3010", "-**"], [" **", " **\"", "**", " **\u201c", " **#", "-**", " **\u3010", " **'"], [" **", " **\"", "**", " **\u201c", "  \n", " **#", "-**", " **+"], [" **", "**", " **\"", " **\u201c", "-**", " **#", " **\u00ab", ",**"], [" **", "**", " **\"", "-**", " **\u201c", ";**", " **#", ",**"], [" **", "**", " **\"", " **\u201c", "-**", ";**", "]**", " **#"], [" **", " **\"", "**", " **\u201c", "]**", "-**", ";**", " **#"], [" **", " **\"", "**", " **\u201c", "]**", "-**", ";**", ",**"], [" **", " **\"", "**", "\n", "  \n", " **\u201c", " **+", " Attempt"], [" **", "\n", " Pure", "  \n", " **\"", "**", " pure", "\n\n"], [" **", "\n", " The", " Pure", "**", " **\"", " pure", " **\u201c"], ["\n", " The", " **", "  \n", "\n\n", " Pure", " Everything", " Your"]], "p": [[0.4151, 0.1731, 0.105, 0.0598, 0.0363, 0.0341, 0.0194, 0.0182], [0.479, 0.0735, 0.0648, 0.0446, 0.0369, 0.0224, 0.0186, 0.0136], [0.1571, 0.0953, 0.079, 0.0697, 0.0655, 0.0543, 0.0256, 0.0188], [0.0977, 0.081, 0.0556, 0.0491, 0.028, 0.0247, 0.0192, 0.0117], [0.1042, 0.0864, 0.0632, 0.0558, 0.0435, 0.0299, 0.0233, 0.0193], [0.1051, 0.0872, 0.0563, 0.0412, 0.0321, 0.0321, 0.0283, 0.0172], [0.103, 0.103, 0.0587, 0.0486, 0.0403, 0.0379, 0.0356, 0.0295], [0.2822, 0.0809, 0.0809, 0.0337, 0.0232, 0.0218, 0.018, 0.0169], [0.0905, 0.085, 0.0377, 0.0354, 0.0333, 0.0276, 0.0244, 0.0229], [0.102, 0.0482, 0.0228, 0.0214, 0.0214, 0.0214, 0.0189, 0.0189], [0.1861, 0.0776, 0.0643, 0.0501, 0.0442, 0.0323, 0.0184, 0.0184], [0.1518, 0.098, 0.0717, 0.0193, 0.0141, 0.011, 0.0091, 0.0052], [0.0589, 0.0489, 0.0489, 0.0431, 0.0231, 0.018, 0.0159, 0.0096], [0.088, 0.0534, 0.0173, 0.0173, 0.0163, 0.0093, 0.0082, 0.0077], [0.4204, 0.0686, 0.0127, 0.0099, 0.0093, 0.0093, 0.0087, 0.0068], [0.1092, 0.0705, 0.0455, 0.0402, 0.0229, 0.0108, 0.0084, 0.007], [0.2506, 0.1184, 0.0922, 0.0718, 0.0339, 0.0299, 0.0219, 0.011], [0.2916, 0.2004, 0.0889, 0.0651, 0.042, 0.0371, 0.0175, 0.0128], [0.4684, 0.1429, 0.0559, 0.0409, 0.0319, 0.0248, 0.0125, 0.011], [0.9983, 0.0007, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.9955, 0.0019, 0.0013, 0.0009, 0.0001, 0.0001, 0.0, 0.0], [0.5306, 0.1723, 0.0494, 0.0133, 0.0071, 0.0052, 0.0049, 0.0043], [0.9964, 0.0012, 0.0008, 0.0003, 0.0002, 0.0002, 0.0, 0.0], [0.9943, 0.0014, 0.001, 0.0007, 0.0007, 0.0003, 0.0001, 0.0001], [0.9944, 0.0036, 0.0019, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9821, 0.0075, 0.0066, 0.0019, 0.0006, 0.0002, 0.0001, 0.0001], [0.9987, 0.0009, 0.0002, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.998, 0.0017, 0.0002, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9987, 0.0009, 0.0003, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.965, 0.02, 0.0138, 0.0009, 0.0001, 0.0001, 0.0, 0.0], [0.9831, 0.0124, 0.004, 0.0002, 0.0001, 0.0, 0.0, 0.0], [0.8862, 0.05, 0.0162, 0.0068, 0.0068, 0.003, 0.0023, 0.0017], [0.0748, 0.062, 0.0214, 0.0178, 0.0157, 0.0157, 0.0138, 0.013], [0.4804, 0.037, 0.0307, 0.0175, 0.0175, 0.0145, 0.0136, 0.012], [0.6422, 0.0171, 0.0086, 0.0081, 0.0076, 0.0076, 0.0067, 0.0059], [0.7189, 0.0169, 0.014, 0.014, 0.0085, 0.007, 0.0066, 0.0062], [0.5689, 0.0221, 0.0183, 0.0161, 0.0161, 0.0152, 0.0152, 0.0086], [0.6461, 0.0208, 0.0172, 0.0143, 0.0143, 0.0134, 0.0118, 0.0081], [0.7239, 0.0141, 0.0133, 0.011, 0.0091, 0.008, 0.0067, 0.0055], [0.5441, 0.0186, 0.0154, 0.0136, 0.0094, 0.0078, 0.006, 0.0053], [0.0863, 0.0383, 0.0247, 0.0247, 0.0181, 0.017, 0.017, 0.0132], [0.0513, 0.0293, 0.0201, 0.0177, 0.0167, 0.0157, 0.0138, 0.0138], [0.1717, 0.0218, 0.0193, 0.0181, 0.0181, 0.0181, 0.016, 0.011], [0.0363, 0.0266, 0.025, 0.0235, 0.0194, 0.0183, 0.0172, 0.0161], [0.1342, 0.0248, 0.0248, 0.0182, 0.0171, 0.0151, 0.0141, 0.0141], [0.147, 0.029, 0.0212, 0.0212, 0.0187, 0.0187, 0.0187, 0.0165], [0.915, 0.0079, 0.0026, 0.002, 0.0015, 0.0015, 0.0014, 0.0009], [0.9823, 0.0062, 0.0021, 0.001, 0.0003, 0.0003, 0.0002, 0.0002], [0.9988, 0.0007, 0.0002, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9942, 0.0022, 0.001, 0.0009, 0.0004, 0.0002, 0.0001, 0.0001], [0.9995, 0.0002, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9978, 0.0013, 0.0003, 0.0002, 0.0001, 0.0001, 0.0, 0.0], [0.9984, 0.0007, 0.0004, 0.0002, 0.0001, 0.0, 0.0, 0.0], [0.9974, 0.0008, 0.0006, 0.0003, 0.0003, 0.0002, 0.0001, 0.0], [0.9984, 0.0006, 0.0004, 0.0001, 0.0001, 0.0001, 0.0, 0.0], [0.998, 0.0013, 0.0003, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.997, 0.0013, 0.0009, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.9981, 0.0007, 0.0006, 0.0001, 0.0001, 0.0001, 0.0, 0.0], [0.999, 0.0005, 0.0003, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9982, 0.0006, 0.0003, 0.0002, 0.0002, 0.0001, 0.0, 0.0], [0.9917, 0.0036, 0.0008, 0.0008, 0.0007, 0.0005, 0.0003, 0.0002], [0.9877, 0.0036, 0.002, 0.0016, 0.0012, 0.0005, 0.0005, 0.0003], [0.8711, 0.0491, 0.0491, 0.0132, 0.0062, 0.0049, 0.0004, 0.0004]], "ranks": {"Python": [15142, 85209, 73558, 108547, 24631, 38682, 27857, 67085, 58604, 112204, 36527, 28219, 15393, 7963, 3773, 7580, 13664, 9270, 18374, 45166, 37041, 97065, 73729, 48985, 16676, 83588, 75307, 24570, 16673, 13623, 13665, 16733, 21457, 33815, 51915, 27170, 29171, 20862, 17058, 18013, 16312, 11967, 10278, 11167, 10987, 9895, 10785, 9058, 4611, 8799, 5294, 1407, 1839, 2129, 1460, 273, 109, 95, 96, 51, 41, 20, 9]}}, {"pos": 378, "top": [[" \u2013", ".", "\u2013", " \u2013,", ".\u2013", "\u200b\u200b", "\u2013and", "   \n"], ["**\u2013", " \u2013**", " *\u2013", "\u2013and", " Guta", " \u2013,", "   \n", "alyzer"], ["\u3002", "\u2026..", "\uff1f", "\u2026\u2026", "**\u2013", "\u5728", "\u4e2d", "\u7684"], ["``", " **\u201e", " cumshot", " milfs", "raries", " ``(", "\uff1f**", " Shemale"], ["ly", "!\u201c", "____", ".\u201c", "raries", " *\u201c", ".\",\"", "\u4e2d"], ["!\u201c", "\u4e2d", "\uff01", "ly", ".\u201c", "____", "\u3002", "\uff1f"], ["\n\n", "\n\n\n", "\u4e2d", "____", "<|im_end|>", "\u3002", "____________", "!\u201c"], ["\n\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"], ["\u6700\u65b0\u53d1\u5e03", "\n\n    \n", "\n\n\n", ".\",\"", "   \n\n", "ly", "____", "\t\n\n\n"], ["\n\n\n", "\n\n", " ____", "____", "\u6700\u65b0\u53d1\u5e03", "ly", "...*", ".\",\""], [" ____", " **\u201e", "____", "\u6700\u65b0\u53d1\u5e03", "raries", " *__", " *\u201e", "htag"], [" ____", "____", " **\u201e", "\u6700\u65b0\u53d1\u5e03", "____________", "ighbor", "raries", "ly"], ["raries", " **\u201e", "pedia", "\u6700\u65b0\u53d1\u5e03", "ighbor", "ly", "\u9ecf", " ____"], ["\n\n", "ly", "\u9ecf", " moms", "   \n\n", "raries", "\n\n\n", " freaking"], [" centerpiece", " freaking", " folks", "ly", "   \n\n", " moms", " incredibly", "\n\n"], ["\n\n", "   \n\n", "ly", "\u2013and", "    \n\n", " incredibly", "a", " folks"], ["   \n\n", "  \n\n", "    \n\n", "\n\n", " \n\n", " **\u201e", "ly", "  \n\n\n"], ["   \n\n", " **\u201e", "\n\n", "  \n\n", "    \n\n", "...**", " \n\n", " incredibly"], ["\n\n", "  \n\n", " \n\n", "   \n\n", "    \n\n", "<|im_end|>", "<|endoftext|>", "\t\n\n"], ["\n\n", "  \n\n", " \n\n", "   \n\n", "<|endoftext|>", "    \n\n", "<|im_end|>", "\n\n\n"], ["\n\n", " **\u201e", " **", "...**", "   \n\n", " **\u3010", " \n\n", " **#"], ["\n\n", " \n\n", "  \n\n", "\n\n\n", "   \n\n", "    \n\n", "<|im_end|>", "\t\n\n"], ["\n\n", " \n\n", "  \n\n", "\n\n\n", "   \n\n", "<|endoftext|>", " \n\n\n", "<|im_end|>"], ["\n\n", " \n\n", "  \n\n", "   \n\n", "    \n\n", "\t\n\n", "<|im_end|>", "\r\n\r\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", " **", "\t\n\n", "\r\n\r\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\n", " **", "\r\n\r\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", " **", "<|endoftext|>", " \n\n\n", "  \n\n\n"], [" \n\n", "\n\n", "  \n\n", "<|endoftext|>", " --", " **", "   \n\n", " \u2014"], ["  \n\n", " \n\n", " \u2014", " \u2013", " **", " heavily", " --", " rapidly"], ["  \n\n", " \n\n", "<|endoftext|>", " \u2014", " aggressively", " **", " heavily", " swiftly"], ["  \n\n", " **", " \n\n", "<|endoftext|>", "\n\n", " aggressively", " heavily", " sprawling"], ["  \n\n", " \n\n", "\n\n", "<|endoftext|>", " **", "   \n\n", " \u2014", " aggressively"], ["  \n\n", " **", " \n\n", "\n\n", "<|endoftext|>", " aggressively", "   \n\n", " relentless"], [" **", "  \n\n", " *", " **\u201c", " aggressively", " \n\n", " relentless", " **\""], [" **", "  \n\n", " relentless", " aggressively", " *", " \u2014", " relentlessly", " rapidly"], [" **", "  \n\n", " relentless", " aggressively", " rapidly", " **\u201c", " relentlessly", "<|endoftext|>"], [" **", "  \n\n", "<|endoftext|>", " relentless", " aggressively", " rapidly", " relentlessly", " heavily"], [" **", " aggressively", " rapidly", " relentless", " swiftly", " relentlessly", " heavily", " arguably"], [" **", " aggressively", " rapidly", " relentless", " swiftly", "  \n\n", " relentlessly", " heavily"], [" **", " aggressively", " relentless", " rapidly", "  \n\n", " swiftly", " rapid", " **\""], [" **", " **\"", " aggressively", " rapidly", " relentless", " rapid", "  \n\n", " swiftly"], [" **", " **\"", "  \n\n", " **\u201c", " rapidly", " aggressively", " immediate", " swiftly"], [" **", " **\"", " **\u201c", " **\u2013", " **#", " **'", " **\u201e", " **\u2018"], [" **", " **\u201c", " **\"", " **'", " **#", " **[", " **(", " **\u2018"], [" **", " **\"", " **\u201c", " **'", "-**", " **#", " **(", " **\u2018"], [" **", " **\"", "-**", " **\u201c", " **'", " **#", " **(", " **["], [" **", " **\"", " **\u201c", "-**", " **'", " **#", " **-", " **+"], [" **", " **\"", " **\u201c", " **#", " **'", "-**", " **[", "**"], [" **", " **\"", " **\u201c", "**", " **#", "-**", " **[", " **'"], [" **", " **\u201c", " **\"", "**", " **#", "-**", " **[", " **\u2018"], [" **", " **\"", " **\u201c", "-**", " **#", "**", " **[", " **\u00ab"], [" **", "**", " **\"", " **\u201c", "-**", " **#", " **[", " **\u00ab"], [" **", "**", " **\"", " **\u201c", "-**", " **#", " **[", " **."], [" **", "**", " **\"", " **\u201c", "-**", " **#", " **[", " **."], [" **", " **\"", "**", " **\u201c", "-**", " **#", " **[", " **\u00ab"], [" **", " **\"", "**", " **\u201c", "-**", " **[", " **.", " **#"], [" **", "**", " **\"", " **\u201c", " Pure", " **[", " **.", " **\u00ab"], [" **", "**", " Pure", " **\"", " The", "Pure", " pure", " **\u201c"], ["**", "The", " **", " The", "Pure", " Pure", "Your", "Python"]], "p": [[0.7644, 0.1933, 0.0132, 0.0066, 0.0031, 0.0028, 0.0026, 0.0019], [0.1205, 0.0828, 0.0345, 0.0099, 0.0087, 0.0077, 0.006, 0.0047], [0.4218, 0.0884, 0.0689, 0.0445, 0.0392, 0.021, 0.0164, 0.0164], [0.02, 0.0176, 0.01, 0.0094, 0.0094, 0.0078, 0.0065, 0.0054], [0.2479, 0.0553, 0.0459, 0.038, 0.0336, 0.0278, 0.0245, 0.0191], [0.0692, 0.0446, 0.0419, 0.0307, 0.0288, 0.0288, 0.0224, 0.0175], [0.1887, 0.0892, 0.0837, 0.0372, 0.0255, 0.024, 0.0225, 0.0165], [0.1176, 0.0916, 0.0808, 0.0407, 0.0382, 0.0359, 0.0192, 0.018], [0.4546, 0.2147, 0.1672, 0.0423, 0.0329, 0.02, 0.0114, 0.0054], [0.1334, 0.0461, 0.0382, 0.0359, 0.0232, 0.0218, 0.0181, 0.0085], [0.2232, 0.1272, 0.0874, 0.0681, 0.0639, 0.0601, 0.0162, 0.0143], [0.0989, 0.0387, 0.0207, 0.0161, 0.0152, 0.0098, 0.0072, 0.0059], [0.125, 0.1174, 0.046, 0.0204, 0.0096, 0.008, 0.0071, 0.0058], [0.0351, 0.033, 0.0129, 0.0094, 0.0083, 0.0065, 0.0054, 0.0051], [0.2865, 0.0235, 0.0152, 0.0143, 0.0134, 0.0118, 0.0098, 0.0092], [0.0231, 0.0204, 0.0191, 0.0191, 0.018, 0.018, 0.0169, 0.0149], [0.1079, 0.1079, 0.0741, 0.02, 0.0155, 0.0146, 0.0137, 0.0129], [0.5758, 0.165, 0.0646, 0.0305, 0.0197, 0.0185, 0.0077, 0.0072], [0.2193, 0.206, 0.1103, 0.0628, 0.0297, 0.0149, 0.014, 0.0096], [0.8084, 0.0965, 0.0586, 0.0277, 0.0027, 0.0019, 0.0009, 0.0006], [0.8755, 0.056, 0.056, 0.0067, 0.0041, 0.0006, 0.0002, 0.0002], [0.4569, 0.0794, 0.0546, 0.0156, 0.0101, 0.0084, 0.0069, 0.0045], [0.9643, 0.0156, 0.0048, 0.0035, 0.0033, 0.0006, 0.0006, 0.0005], [0.9587, 0.0255, 0.0065, 0.0032, 0.0016, 0.0011, 0.0006, 0.0003], [0.8648, 0.071, 0.0553, 0.0058, 0.0008, 0.0005, 0.0003, 0.0003], [0.6339, 0.1816, 0.1101, 0.0246, 0.007, 0.0052, 0.0043, 0.0028], [0.8787, 0.0721, 0.0194, 0.0046, 0.0025, 0.0017, 0.001, 0.001], [0.9701, 0.0228, 0.0065, 0.0002, 0.0001, 0.0001, 0.0, 0.0], [0.7321, 0.1442, 0.1123, 0.0038, 0.003, 0.0007, 0.0005, 0.0005], [0.4638, 0.2813, 0.2483, 0.0035, 0.0008, 0.0005, 0.0004, 0.0003], [0.4162, 0.2861, 0.2861, 0.0041, 0.0028, 0.0011, 0.0003, 0.0003], [0.3999, 0.2748, 0.2425, 0.0199, 0.0057, 0.0054, 0.0039, 0.0035], [0.125, 0.0807, 0.0521, 0.049, 0.0297, 0.0159, 0.0124, 0.0116], [0.3531, 0.1472, 0.0396, 0.035, 0.0176, 0.0155, 0.0155, 0.0114], [0.4056, 0.0662, 0.0584, 0.0259, 0.0229, 0.0178, 0.0139, 0.0122], [0.576, 0.1285, 0.1001, 0.1001, 0.0238, 0.0093, 0.0034, 0.0024], [0.6343, 0.0806, 0.0459, 0.0231, 0.0132, 0.0124, 0.0116, 0.009], [0.7854, 0.0938, 0.0087, 0.0064, 0.006, 0.006, 0.005, 0.0034], [0.6572, 0.0947, 0.012, 0.01, 0.0094, 0.0094, 0.0073, 0.0057], [0.5968, 0.086, 0.014, 0.0109, 0.008, 0.0075, 0.0075, 0.0071], [0.3446, 0.1437, 0.0321, 0.0207, 0.0172, 0.0151, 0.0086, 0.0081], [0.2173, 0.0402, 0.0313, 0.026, 0.0148, 0.0123, 0.0123, 0.0108], [0.5145, 0.0397, 0.0199, 0.0176, 0.0114, 0.0083, 0.0083, 0.0069], [0.7875, 0.0144, 0.0112, 0.0106, 0.0082, 0.0053, 0.0044, 0.0036], [0.7627, 0.0123, 0.0116, 0.0102, 0.0085, 0.0062, 0.0062, 0.0043], [0.9368, 0.0081, 0.0076, 0.0063, 0.0026, 0.0018, 0.0014, 0.0013], [0.9867, 0.0059, 0.0052, 0.0003, 0.0002, 0.0002, 0.0002, 0.0001], [0.9896, 0.0052, 0.004, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001], [0.9998, 0.0002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9992, 0.0006, 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.9994, 0.0004, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9992, 0.0005, 0.0002, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9996, 0.0002, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9997, 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.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.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.9998, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9963, 0.0032, 0.0002, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9555, 0.0289, 0.012, 0.0027, 0.0002, 0.0001, 0.0001, 0.0]], "ranks": {"Python": [13961, 191616, 11889, 85179, 4888, 10263, 3304, 15140, 7614, 7502, 4261, 32454, 10328, 22549, 7719, 27462, 31507, 20895, 53075, 54860, 28476, 122669, 73700, 51337, 15250, 77357, 116770, 63138, 16573, 15543, 12827, 15139, 16317, 27334, 33745, 25028, 18009, 10233, 7335, 4685, 3539, 3759, 4206, 7553, 7996, 6774, 16584, 16872, 5947, 6303, 3019, 967, 606, 474, 452, 120, 79, 74, 73, 47, 42, 21, 8]}}, {"pos": 379, "top": [[".", ",", " \u2013", "\u2013", "\u00a0", "<|endoftext|>", ";", " "], [" \u2013", "\u2013", ",", ".", ";", "\u2013and", " ", ".["], ["\u2013", ".", " \u2013", ",", "\u2013and", ".\u2013", ";", "\u2026."], [" milfs", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Shemale", "TRGL", " ;;^", "-------------</", "----------</", " Blowjob"], ["@$", "kits", " CIF", "insip", " \u201c.", "&(", ":@", " Zer"], [" \u200b\u200b", "\u00a0\u00a0", "ut\u00e9", "kits", "insip", ".cast", "   \n", " **\u201c"], ["\u76db", " **\u2018", "   \n", " **\u201c", "<|object_ref_end|>", "  \n", "  \n\n", "\u2019**"], ["   \n", " **\u201e", "       \n", "ungan", "   \n\n", "      \n", "     \n", "        \n"], ["   \n\n", "  \n\n", " \n\n", "    \n\n", "        \n\n", "      \n\n", "     \n\n", "   \n"], ["<|object_ref_start|>", "\u99a8", "DMETHOD", "ArrayOf", "/{$", "\u2013and", "{$", "  \n  \n"], ["\u00a0", "...\\", "  \n  \n", "...", " \n\n", "<|object_ref_start|>", "   \n", "  \n\n"], ["DMETHOD", " **", " **'", " **#", " _$", "idere", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " **+"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " **\u201e", "idere", "DMETHOD", " **\u300c", " **\u00ab", "asley", "uksen"], [" impactful", "-themed", " vibe", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " LGBTQ", "\u708e\u708e\u590f\u65e5", " savvy", " vibes"], [" savvy", " arguably", " sprawling", " \\\"", " incredibly", " iconic", " upfront", " frontline"], [" savvy", " arguably", " incredibly", " sprawling", " overarching", " strategically", " \\\"", " upfront"], [" arguably", " savvy", " sprawling", " incredibly", " overarching", " myriad", " uniquely", " strategically"], [" savvy", " incredibly", " overarching", " arguably", " sprawling", " foundational", " gritty", " transformative"], [" incredibly", " arguably", " savvy", " overarching", " foundational", "\u2014even", " myriad", " sprawling"], [" arguably", " incredibly", " overarching", " myriad", " truly", " uniquely", " burgeoning", " --"], ["<|endoftext|>", " arguably", " myriad", " \n\n", " swiftly", " burgeoning", " uniquely", " overarching"], [" incredibly", " skyrocket", " ;;^", " foundational", "\u62e5\u6709\u7740", " arguably", " overarching", " sprawling"], [" ``", " --", " arguably", " uniquely", " incredibly", " overarching", " ''", " sprawling"], [" ``", " --", " arguably", " uniquely", " ultimately", " {{--<", " swiftly", " myriad"], [" \n\n", "\n\n", " \r\n\r\n", " --", "  \n\n", "\r\n\r\n", " arguably", "<|endoftext|>"], [" --", " ``", " \n\n", " **", " incredibly", " arguably", " foundational", " heavily"], ["\n\n", " \n\n", " --", " ``", "\r\n\r\n", " **", " foundational", " arguably"], [" \n\n", "\n\n", " --", " heavily", " ultimately", " rapidly", " much", " arguably"], [" \n\n", "\n\n", " heavily", " ultimately", " arguably", " **", " rapidly", " infrastructure"], [" \n\n", "  \n\n", " **", " ...", " heavily", " infrastructure", "\n\n", " rapidly"], [" ...", " \n\n", "\n\n", " **", "  \n\n", " \u2026", " complex", " heavily"], [" ...", " **", " complex", " \n\n", " heavily", " critical", " rapidly", "\n\n"], [" critical", " complex", " heavily", " rapidly", " power", " massive", " over", " ultimately"], [" fundamentally", " aggressively", " critical", " complex", " heavily", " strategically", " rapidly", " foundational"], [" aggressively", " fundamentally", " **", " critical", " heavily", " inherently", " dual", " rapidly"], [" aggressively", " rapidly", " \u2014", " fundamentally", " **", " critical", " *", " dual"], [" aggressively", " fundamentally", " rapidly", " critical", " hardware", " bottleneck", " relentless", " dual"], [" aggressively", " fundamentally", " hardware", " rapidly", " dual", " relentless", " bottleneck", " critical"], [" performance", " aggressively", " fundamentally", " bottleneck", " unsustainable", " rapidly", " critical", " hardware"], [" performance", " hardware", " unsustainable", " relentless", " dual", " fundamentally", " impossible", " rapidly"], [" performance", " hardware", " unsustainable", " bottleneck", " speed", " dual", " critical", " infrastructure"], [" performance", " hardware", " infrastructure", " bottleneck", " engine", " scalability", " speed", " unsustainable"], [" performance", " hardware", " bottleneck", " infrastructure", " speed", " critical", " scalability", " unsustainable"], [" performance", " requirement", " bottleneck", " requirements", " hardware", " speed", " infrastructure", " expectations"], [" performance", " requirement", " expectations", " requirements", " bottleneck", " expectation", " strict", " speed"], [" performance", " expectations", " requirement", " expectation", " strict", " requirements", " dual", " demands"], [" performance", " expectations", " requirement", " **", " expectation", " strict", " bottleneck", " simultaneous"], [" simultaneous", " performance", " requirement", " **", " expectations", " simultaneously", " requirements", " dual"], [" **", " **#", " **\u201c", " **'", " **\"", " **+", " **\u2018", " **\u201e"], [" **", " **\"", " **\u201c", " **#", " **'", " **+", " **\u00ab", " **\u2018"], [" **", " **\u201c", " **\"", " **#", " **+", " **'", " **\u00ab", " **\u201e"], [" **", " **\"", " **#", " **\u201c", " **+", " **'", " **.", " **\u00ab"], [" **", " **\"", " **\u201c", " **#", " **'", " **\u2018", " **+", " **\u201e"], [" **", " **\"", " **\u201c", " **#", " **+", " **\u00ab", " **'", " **\u2018"], [" **", " **\"", " **\u201c", " **#", " **\u00ab", " **+", " assumption", " **\u20ac"], [" **", " **\"", " **\u201c", " **#", " **+", " **\u00ab", " **'", "**"], [" **", " **\u201c", " **\"", " **#", " **+", " **\u00ab", " assumption", " illusion"], [" **", " **\"", " **\u201c", " **#", " illusion", " assumption", " **+", " **\u00ab"], [" **", " **\"", " **\u201c", " assumption", " **#", " **+", " Python", " GPU"], [" **", " **\"", " Python", " **\u201c", " assumption", " illusion", " premise", " GPU"], [" **", " **\"", " Python", " assumption", " illusion", " GPU", " **\u201c", " mobile"], [" **", " **\"", " **\u201c", " **.", " assumption", " **#", " **+", " Python"], [" **", " **\"", " Python", " assumption", " illusion", " mobile", " Android", " **\u201c"]], "p": [[0.6397, 0.1833, 0.1427, 0.0133, 0.0071, 0.0055, 0.0043, 0.0009], [0.6272, 0.1235, 0.1235, 0.0454, 0.0065, 0.0065, 0.0019, 0.0018], [0.4526, 0.2138, 0.1887, 0.1297, 0.0035, 0.0022, 0.0018, 0.0012], [0.0045, 0.0042, 0.0035, 0.0023, 0.002, 0.0018, 0.0018, 0.0016], [0.0027, 0.002, 0.0019, 0.0018, 0.0018, 0.0017, 0.0017, 0.0016], [0.0144, 0.0021, 0.0018, 0.0017, 0.0015, 0.0013, 0.0013, 0.0011], [0.0155, 0.0155, 0.0137, 0.0137, 0.0073, 0.0073, 0.0069, 0.0065], [0.0296, 0.0085, 0.0075, 0.007, 0.004, 0.0031, 0.0026, 0.0024], [0.111, 0.092, 0.0632, 0.0558, 0.0524, 0.0218, 0.0193, 0.016], [0.0026, 0.0024, 0.0021, 0.0019, 0.0014, 0.0013, 0.0013, 0.001], [0.5418, 0.0325, 0.0154, 0.0127, 0.0099, 0.0088, 0.0082, 0.0064], [0.0098, 0.0056, 0.002, 0.0016, 0.0016, 0.0015, 0.0015, 0.0012], [0.0059, 0.004, 0.003, 0.0023, 0.0019, 0.0018, 0.0017, 0.0014], [0.004, 0.0027, 0.0024, 0.002, 0.0018, 0.0016, 0.0016, 0.0015], [0.0219, 0.0086, 0.0071, 0.0059, 0.0043, 0.0041, 0.0041, 0.0036], [0.015, 0.0125, 0.0125, 0.0125, 0.0049, 0.0034, 0.0032, 0.0028], [0.0269, 0.0163, 0.0153, 0.0153, 0.0119, 0.0072, 0.0064, 0.0064], [0.038, 0.0158, 0.0149, 0.0096, 0.009, 0.0043, 0.0038, 0.0038], [0.0317, 0.0205, 0.0192, 0.016, 0.015, 0.0067, 0.0055, 0.0052], [0.0242, 0.0242, 0.0147, 0.0114, 0.0089, 0.0079, 0.0079, 0.0069], [0.2686, 0.0072, 0.0067, 0.0059, 0.0059, 0.0052, 0.0052, 0.0052], [0.0029, 0.0026, 0.0024, 0.0018, 0.0017, 0.0017, 0.0017, 0.0012], [0.0273, 0.0051, 0.0033, 0.0031, 0.0027, 0.0021, 0.0021, 0.0017], [0.0296, 0.0109, 0.0045, 0.004, 0.0038, 0.0031, 0.0029, 0.0024], [0.2576, 0.0421, 0.0272, 0.0155, 0.0128, 0.012, 0.0053, 0.0047], [0.0166, 0.0129, 0.0107, 0.0074, 0.0069, 0.0054, 0.0045, 0.0042], [0.0436, 0.0248, 0.016, 0.011, 0.0055, 0.0055, 0.0046, 0.0041], [0.1153, 0.0793, 0.0227, 0.0095, 0.0084, 0.0074, 0.0069, 0.0065], [0.1075, 0.0508, 0.0176, 0.01, 0.0083, 0.0078, 0.0073, 0.0069], [0.3464, 0.0251, 0.0195, 0.0162, 0.0134, 0.0092, 0.0081, 0.0068], [0.4534, 0.1567, 0.0478, 0.0372, 0.0107, 0.0061, 0.0054, 0.0044], [0.0938, 0.0345, 0.0185, 0.0173, 0.0119, 0.0105, 0.0099, 0.0082], [0.0144, 0.0136, 0.0112, 0.0106, 0.0093, 0.0073, 0.0073, 0.006], [0.0332, 0.0229, 0.0167, 0.0148, 0.0148, 0.0122, 0.0122, 0.0108], [0.0306, 0.0224, 0.0186, 0.0136, 0.0128, 0.0113, 0.0106, 0.0106], [0.0328, 0.0187, 0.0176, 0.0176, 0.0165, 0.0146, 0.0121, 0.0113], [0.037, 0.0186, 0.0164, 0.0136, 0.0113, 0.0094, 0.0094, 0.0083], [0.028, 0.0181, 0.016, 0.015, 0.0141, 0.0124, 0.011, 0.0097], [0.0182, 0.0161, 0.0161, 0.0133, 0.0125, 0.0118, 0.0118, 0.0111], [0.059, 0.0191, 0.0159, 0.014, 0.0132, 0.0132, 0.0124, 0.0124], [0.1011, 0.0308, 0.0187, 0.0155, 0.0121, 0.01, 0.01, 0.01], [0.2145, 0.0422, 0.02, 0.0165, 0.0121, 0.0114, 0.0107, 0.0078], [0.2004, 0.0225, 0.0186, 0.0175, 0.0106, 0.0094, 0.0094, 0.0088], [0.2538, 0.0222, 0.0184, 0.0173, 0.0135, 0.0126, 0.0119, 0.0105], [0.1095, 0.0403, 0.0295, 0.0229, 0.0139, 0.0139, 0.0131, 0.0123], [0.0498, 0.0342, 0.0322, 0.0162, 0.0152, 0.0152, 0.0118, 0.0104], [0.0305, 0.0269, 0.0197, 0.0163, 0.0153, 0.0105, 0.0099, 0.0093], [0.0333, 0.0312, 0.0312, 0.0215, 0.0189, 0.0189, 0.0101, 0.0101], [0.9689, 0.0048, 0.0048, 0.0045, 0.0033, 0.0013, 0.0009, 0.0004], [0.937, 0.025, 0.0172, 0.0104, 0.0034, 0.0016, 0.0006, 0.0006], [0.9602, 0.0176, 0.0121, 0.0065, 0.001, 0.0004, 0.0004, 0.0003], [0.9356, 0.032, 0.0151, 0.0133, 0.0011, 0.0007, 0.0002, 0.0002], [0.8409, 0.0782, 0.0609, 0.0154, 0.0009, 0.0007, 0.0006, 0.0005], [0.8425, 0.061, 0.0539, 0.0327, 0.0016, 0.0014, 0.001, 0.0007], [0.8872, 0.0442, 0.0344, 0.0184, 0.0036, 0.0017, 0.0015, 0.0007], [0.9568, 0.0175, 0.0155, 0.0044, 0.0011, 0.001, 0.0003, 0.0003], [0.971, 0.0122, 0.0095, 0.0027, 0.001, 0.0005, 0.0003, 0.0002], [0.9773, 0.0085, 0.0066, 0.0015, 0.001, 0.0008, 0.0005, 0.0003], [0.9827, 0.0075, 0.0035, 0.0009, 0.0008, 0.0005, 0.0005, 0.0005], [0.9764, 0.0066, 0.0027, 0.0024, 0.0017, 0.0012, 0.0008, 0.0006], [0.9894, 0.0019, 0.0015, 0.0008, 0.0007, 0.0006, 0.0006, 0.0004], [0.9979, 0.0009, 0.0006, 0.0001, 0.0001, 0.0001, 0.0, 0.0], [0.942, 0.0092, 0.0072, 0.0072, 0.0068, 0.0032, 0.0025, 0.0021]], "ranks": {"Python": [20470, 92259, 62364, 174146, 41428, 62867, 13616, 101032, 30951, 28234, 2427, 61670, 62238, 40092, 9992, 12702, 14317, 12420, 57676, 151114, 98109, 155563, 141556, 73639, 65929, 36445, 32564, 15244, 9834, 8331, 8121, 10998, 16867, 14705, 26781, 8941, 9012, 7180, 6634, 3590, 2601, 1824, 1589, 1900, 2530, 2333, 1757, 656, 413, 314, 128, 110, 108, 120, 45, 33, 12, 9, 6, 3, 3, 7, 3]}}, {"pos": 380, "top": [["s", "**.", "**\u2013", " \u2013", "**,", " **", " **\u2013", "**:"], ["s", " **", " **\u2013", "**\u2013", "**,", "-**", "**.", "\u2019**"], ["**\u2013", "\u2026**", " **\u2013", "**\u3002", " **", "\u2019**", "**.", "s"], [" **", "\u300d**", "\u2019**", " **\u00ab", " **\u300c", "\uff1f**", ">**", " **:"], [" **", "-**", ">**", "\u2019**", "**", " **#", " **.", "(**"], [" **", "-**", ">**", "\u2019**", "(**", "**", " **\u00ab", " **#"], [" **", "**", "-**", ">**", "\u300d**", "\u2019**", " **\u00ab", "**\u3002"], [" **", "**", "-**", " **\u00ab", "\u300d**", ">**", "\u2019**", " **#"], [" **", "**", "\u300d**", " **\u00ab", ">**", "-**", " **#", "\u2019**"], [" **", " **\u00ab", ">**", "\u300d**", "-**", " **#", " **\u300c", "**"], [" **", "**", " **\u00ab", "\u300d**", ">**", "-**", " **#", " **\u300c"], [" **", " **\u00ab", "\u300d**", " **\u300c", ">**", " **#", "-**", " **+"], [" **", " **\u00ab", " **\u300c", "\u300d**", "-**", ">**", " **#", " **+"], [" **", " **\u00ab", " **\u300c", "\u300d**", "-**", " **+", ">**", " \u00bb**"], [" **", " **\u00ab", "\u300d**", "-**", " **+", ">**", "**", " **#"], [" **", " **\u00ab", " '**", "\u300d**", "-**", " **+", ">**", " \"**"], [" **", " **\u00ab", " **+", ">**", " **#", " \"**", "-**", "**"], [" **", "**", " **\u00ab", "-**", ">**", " **+", "(**", "\u2019**"], [" **", "**", "-**", " **\u00ab", ">**", " **#", " **'", "\u2019**"], [" **", "**", "-**", ">**", "\u2019**", " **'", " **#", "(**"], [" **", "**", ">**", "-**", " **#", "\u2019**", "(**", "**,"], [" **", "**", ">**", "-**", " **\u00ab", "\u2019**", " **#", " **'"], [" **", "**", ">**", "-**", "\u2019**", " **'", " **#", "\u300d**"], [" **", "**", " **'", ">**", " **#", "\u2019**", "-**", "\u300d**"], [" **", "**", ">**", " **'", "-**", "\u2019**", " **#", "'**"], [" **", "**", ">**", " **'", " **#", "-**", "\u2019**", " **+"], [" **", "**", ">**", " **'", " **#", "-**", "\u2019**", " **+"], [" **", "**", " **'", " **#", ">**", " **\u2018", "-**", " **+"], [" **", "**", " **'", " **#", "-**", " **\u201c", ">**", "\u2019**"], [" **", "**", "  \n\n", " **'", " **\u201c", " \n\n", " **[", " **#"], [" **", "**", " **'", " **\u201c", " **#", " **.", " \n\n", " **\""], [" **", "**", " **'", " **\u201c", " \n\n", "  \n\n", " **#", " **["], [" **", " **'", " **\u201c", "**", " **,", " \"**", " **\"", " **."], [" **", " **\u201c", "**", " **'", "\u2026**", ">**", "-**", " **#"], [" **", "**", " **\u201c", " **'", " **#", " **\"", ">**", "-**"], [" **", "**", " **\u201c", "\u2019**", " **\u2013", "**\u2014", "\u2026**", " **'"], [" **", " **\u201c", "**", ">**", " **'", " \"**", " **\"", "\u2019**"], [" **", " **\u201c", "**", "\u2019**", ">**", " \"**", " **\"", "**\u2014"], [" **", " **\u201c", " \"**", " infrastructure", " **'", "**", " hardware", " logistical"], [" **", " **\u201c", " hardware", "**", " infrastructure", " dual", ">**", "!**"], [" **", " hardware", " infrastructure", "**", "!**", " performance", " software", " dual"], [" **", " hardware", " infrastructure", " performance", " software", " framerate", " bottleneck", " functionality"], [" **", " hardware", " infrastructure", " **#", " framerate", " bottleneck", " performance", " software"], [" **", " hardware", " infrastructure", " bottleneck", " performance", " workflow", " synchronization", " integration"], [" **", " infrastructure", " hardware", "**", " **#", " integration", " bottleneck", " **-"], [" **", " integration", " infrastructure", " synchronization", " coordination", " hardware", " bottleneck", " modular"], [" **", "**", " synchronization", " infrastructure", " integration", "!**", " coordination", " **#"], [" **", "**", " **+", " **#", " **'", ";**", "-**", " **-"], [" **", " synchronization", "**", "**,", " **+", " **'", ";**", " dual"], [" synchronization", " framerate", " interoper", " Dual", " synergy", " bottleneck", " Sync", " integration"], ["**!", "**.", ">**", " **", "]**", "!**", ")**.", "**\u3002"], [" runtime", " synchronization", " framerate", " Runtime", "!**", " interoper", "**!", " Interface"], [" Runtime", " runtime", " framerate", " synchronization", " Unified", " Performance", " Python", " JIT"], [" Runtime", " runtime", " framerate", " synchronization", " synchronous", " Performance", " Unified", " CPU"], [" runtime", " Runtime", " framerate", " Python", " threading", " CPU", " synchronization", " synchronous"], [" Python", " Android", " Runtime", " runtime", " threading", " CPU", " UI", " synchronous"], [" Python", " Android", "Python", " python", " Runtime", " threading", " Renderer", " renderer"], [" Python", " Mobile", " Android", " Desktop", " mobile", " Runtime", " desktop", " Renderer"], [" Python", " Mobile", " Android", " Desktop", " mobile", " Runtime", "Python", " python"], [" Mobile", " Python", " mobile", " Android", " Desktop", "mobile", "/mobile", " Plugin"], [" Mobile", " mobile", " Python", " Android", "mobile", "/mobile", "Mobile", "-mobile"], [" Mobile", " mobile", " Android", " Python", "mobile", "Mobile", "/mobile", "-mobile"], ["3", "1", "2", "Python", "Mobile", "Android", "mobile", " Mobile"]], "p": [[0.999, 0.0006, 0.0001, 0.0001, 0.0001, 0.0001, 0.0, 0.0], [0.5379, 0.3697, 0.0143, 0.0127, 0.0112, 0.0112, 0.0068, 0.0041], [0.4152, 0.2519, 0.1528, 0.0301, 0.0265, 0.0234, 0.0234, 0.0207], [0.2986, 0.141, 0.0666, 0.0666, 0.0519, 0.0458, 0.038, 0.0357], [0.8415, 0.0419, 0.0224, 0.0154, 0.012, 0.0082, 0.0073, 0.005], [0.8321, 0.0877, 0.0119, 0.0105, 0.0082, 0.0056, 0.0049, 0.0034], [0.8898, 0.0443, 0.0127, 0.0087, 0.0087, 0.0077, 0.0047, 0.0025], [0.8607, 0.0295, 0.0229, 0.0179, 0.0158, 0.0139, 0.004, 0.004], [0.7701, 0.0434, 0.0434, 0.0264, 0.0233, 0.0124, 0.011, 0.0086], [0.6984, 0.0736, 0.0573, 0.0446, 0.0348, 0.0164, 0.0113, 0.01], [0.9404, 0.0195, 0.0081, 0.0063, 0.0063, 0.0049, 0.0034, 0.0018], [0.9383, 0.0283, 0.0072, 0.0056, 0.0034, 0.0034, 0.003, 0.0016], [0.8817, 0.0639, 0.0126, 0.0086, 0.0059, 0.0032, 0.0032, 0.0028], [0.7749, 0.1347, 0.0206, 0.0142, 0.0111, 0.0059, 0.0046, 0.0046], [0.9942, 0.0012, 0.0007, 0.0005, 0.0004, 0.0004, 0.0004, 0.0003], [0.9871, 0.0059, 0.0008, 0.0007, 0.0007, 0.0006, 0.0006, 0.0006], [0.9985, 0.0005, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.9965, 0.0012, 0.0007, 0.0006, 0.0002, 0.0001, 0.0001, 0.0001], [0.9948, 0.0025, 0.0009, 0.0006, 0.0002, 0.0002, 0.0001, 0.0001], [0.99, 0.0086, 0.0004, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001], [0.9944, 0.0046, 0.0003, 0.0002, 0.0001, 0.0001, 0.0001, 0.0], [0.9964, 0.0007, 0.0005, 0.0004, 0.0003, 0.0003, 0.0002, 0.0002], [0.9983, 0.0008, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.9993, 0.0003, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9935, 0.0046, 0.0003, 0.0003, 0.0002, 0.0002, 0.0002, 0.0001], [0.9979, 0.0008, 0.0002, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001], [0.9985, 0.0008, 0.0001, 0.0001, 0.0001, 0.0001, 0.0, 0.0], [0.9997, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9985, 0.0012, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9989, 0.0009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9997, 0.0002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9996, 0.0002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9992, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9974, 0.0007, 0.0006, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.9979, 0.0006, 0.0004, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001], [0.9922, 0.0028, 0.0017, 0.0003, 0.0003, 0.0002, 0.0002, 0.0002], [0.9927, 0.0015, 0.001, 0.0004, 0.0003, 0.0003, 0.0003, 0.0003], [0.9785, 0.004, 0.0031, 0.0006, 0.0006, 0.0005, 0.0004, 0.0004], [0.9549, 0.006, 0.0013, 0.0009, 0.0009, 0.0007, 0.0007, 0.0007], [0.8789, 0.0056, 0.0036, 0.0034, 0.0025, 0.0025, 0.0018, 0.0018], [0.4579, 0.0293, 0.0167, 0.0115, 0.0108, 0.0101, 0.0089, 0.0084], [0.1655, 0.0943, 0.0393, 0.0254, 0.0198, 0.0186, 0.0128, 0.0128], [0.5536, 0.0215, 0.0167, 0.0122, 0.0079, 0.007, 0.007, 0.0062], [0.1663, 0.042, 0.0349, 0.0255, 0.0255, 0.0155, 0.0145, 0.0137], [0.7988, 0.0057, 0.0057, 0.0051, 0.0047, 0.0045, 0.0039, 0.0035], [0.6726, 0.0096, 0.008, 0.007, 0.0066, 0.0062, 0.0045, 0.0043], [0.748, 0.0088, 0.0073, 0.0073, 0.0054, 0.0047, 0.0039, 0.0037], [0.9796, 0.0045, 0.0028, 0.0021, 0.0019, 0.0007, 0.0007, 0.0006], [0.4751, 0.0222, 0.0127, 0.0099, 0.0099, 0.0093, 0.0064, 0.0056], [0.0589, 0.0159, 0.0149, 0.014, 0.0132, 0.0102, 0.009, 0.0085], [0.0836, 0.0785, 0.0738, 0.0651, 0.054, 0.0476, 0.0307, 0.0307], [0.0453, 0.0425, 0.0425, 0.0292, 0.0201, 0.0201, 0.0189, 0.0138], [0.0706, 0.0706, 0.0456, 0.0215, 0.019, 0.0179, 0.0148, 0.0139], [0.128, 0.0826, 0.0643, 0.0252, 0.0209, 0.0184, 0.0163, 0.0144], [0.1717, 0.1337, 0.0408, 0.028, 0.0263, 0.0247, 0.0247, 0.0205], [0.4603, 0.055, 0.0516, 0.0313, 0.019, 0.0168, 0.0148, 0.0115], [0.969, 0.0035, 0.0035, 0.0031, 0.0017, 0.0016, 0.0013, 0.0007], [0.8807, 0.0301, 0.0183, 0.0142, 0.0059, 0.0046, 0.003, 0.0028], [0.8845, 0.0499, 0.0098, 0.006, 0.006, 0.0053, 0.0036, 0.0025], [0.5099, 0.2409, 0.1655, 0.0537, 0.0057, 0.0044, 0.0034, 0.003], [0.603, 0.2848, 0.0636, 0.0182, 0.0161, 0.0059, 0.0019, 0.0017], [0.5375, 0.1977, 0.0934, 0.0727, 0.0389, 0.0064, 0.0049, 0.0047], [0.9689, 0.0122, 0.0035, 0.0031, 0.0027, 0.0019, 0.0011, 0.0011]], "ranks": {"Python": [29629, 178474, 20439, 144977, 108355, 102953, 23844, 46592, 39376, 41691, 13363, 65516, 65055, 117525, 84968, 86901, 65547, 45037, 38562, 79850, 75713, 99643, 62324, 38422, 30691, 31348, 23870, 9169, 9613, 4874, 5464, 8931, 16148, 48860, 55654, 12948, 10941, 7394, 6524, 3489, 2615, 2371, 2163, 2224, 3287, 3735, 5120, 3669, 893, 494, 133, 32, 7, 9, 4, 1, 1, 1, 1, 2, 3, 4, 4]}}, {"pos": 381, "top": [[" \u2013", ".", "\u2013", ",", "y", "\u2026..", ".\u2013", "\u2013and"], [" \u2013", "\u2013and", " \u2013**", "\u2013\u2013", "**\u2013", "\u2013", "  \n", ".\u2013"], ["\u2013", " \u2013", ".\u2013", "\u2013and", "**\u2013", "\u2026..", "\u2013\u2013", " \u2013,"], [" milfs", " Geile", "erias", " Strec", " Hidal", " \u041a\u0440\u0430\u0441\u0438", " Shemale", " FStar"], ["kits", "s", "es", " ***", " *\u2013", "erweise", "-**", "er"], ["-**", "kits", "-CS", " **\u2013", "**\u2013", "salt", " veggies", "s"], ["s", " ***", "***", "____", "er", "  \n", "-**", "es"], ["s", " ***", "-**", " veggies", "sdale", "egger", "illion", "**\u2013"], ["egger", "athon", " ***", "ilian", "\\xf", "\u4e94\u989c\u516d\u8272\u7684", "scheid", "er"], ["er", "\u2013\u2013", "s", "\\xf", "\u2013and", "illion", "\u52c7\u5f80\u76f4\u524d", "rd"], ["er", "s", "y", "\\n", "--", "***", "rd", "......"], [" ***", "er", "\\xf", "illion", "egger", "ilian", " veggies", "athon"], ["er", "illion", "\\xf", "orama", " veggies", "ball", " ***", "zinho"], ["er", "zinho", "illion", "orama", "ball", " veggies", "rd", "\\xf"], ["er", "--", "y", " --", "es", "rd", " \u2013", "\u2013"], ["er", "y", "es", "ball", "s", "n", "o", "an"], ["y", "es", "er", "o", "s", "n", "u", "ic"], ["o", "y", "er", "u", "es", "ic", "os", "n"], ["zinho", "u", "er", "o", "y", "es", "ic", "ball"], ["o", "u", "y", "\u2013", "es", "i", "n", "er"], ["<|endoftext|>", "3", "2", "u", "  \n\n", "o", "\n\n", "4"], ["zinho", "orama", "eiro", "illion", "ething", "ball", "iante", "esco"], [" --", " \ufffd", "zinho", "y", "u", "o", "er", "ic"], [" --", " \ufffd", "y", "o", "er", "u", "ahead", "fully"], [" \r\n\r\n", "\r\n\r\n", " --", "\n\n", " ____", "    \n\n", "____", "   \n\n"], [" ____", "orama", "...**", "____", " tech", " ___", "-tech", " !***"], ["\n\n", "\r\n\r\n", " ____", " \r\n\r\n", "...**", " --", " tech", "____"], ["\n\n", " \n\n", "\r\n\r\n", "  \n\n", " --", " ____", " \r\n\r\n", "    \n\n"], ["\n\n", " \n\n", "\r\n\r\n", " \r\n\r\n", "  \n\n", " tech", "    \n\n", "   \n\n"], [" ...", " ...\\", " tech", " ____", " technology", " \n\n", " ......", "...**"], [" ...", " technology", " tech", " complex", " hardware", " technical", " **", " engine"], [" complex", " technology", " heavily", " @", " -", " high", " ,", " technical"], [" heavily", " technology", " complex", " extremely", " critical", " massively", " incredibly", " tech"], [" tech", " hardware", " technology", " massively", " urgently", " heavily", "-heavy", " \u2013"], [" tech", "**\u2013", " *\u2013", "\u2011", "\u2026**", "**\u2014", " **\u2013", "-centric"], [" \u2013", "**\u2013", " tech", " *\u2013", "**\u2014", " urgently", " hardware", " **\u2013"], [" hardware", " tech", " urgently", " overclock", " scalability", " optimized", "**\u2013", " *\u2013"], [" hardware", " tech", " optimized", " overclock", " urgently", " ergonom", " scalability", " framerate"], [" hardware", " urgently", " tech", " optimized", " overclock", " ergonom", " massively", " framerate"], [" hardware", " framerate", " optimized", " tech", " overclock", " performance", "hardware", " physics"], [" hardware", " performance", " framerate", " tech", " overclock", " optimized", " technology", " scalability"], [" hardware", " performance", " framerate", " tech", " engineering", " overclock", "-performance", " optimized"], [" hardware", " performance", " framerate", "-engine", " overclock", " engineering", " physics", " gameplay"], [" hardware", " performance", " framerate", " propulsion", " overclock", " engineering", "-engine", "-performance"], [" framerate", " hardware", " performance", " engineering", " physics", " propulsion", " sprint", "-engine"], [" hardware", " framerate", " performance", " physics", " engineering", "-engine", " FPS", " propulsion"], [" hardware", " framerate", " performance", "-engine", " physics", " engineering", " infrastructure", " propulsion"], [" framerate", " performance", " hardware", " functionality", " FPS", "\\-", " requirement", "/"], [" framerate", " hardware", " functionality", "\\-", " propulsion", " FPS", "-engine", "-tier"], [" framerate", "/UI", "-heavy", " propulsion", " functionality", "!**", "-centric", "-tier"], [" framerate", "/UI", "!**", "\u8fbe\u4ea7\u5e74", " interoper", " Simulator", "-tier", " hardware"], [" framerate", " visualization", " viewport", " Visualization", " visuals", " interoper", "/UI", " backend"], [" framerate", " visualization", " viewport", " Rendering", " Visualization", "/UI", " renderer", " Renderer"], [" framerate", " viewport", " renderer", " Rendering", " Visualization", " Renderer", " visualization", "/UI"], [" viewport", " renderer", " Renderer", " framerate", " Rendering", " visualization", " shader", " Visualization"], [" viewport", " renderer", " Renderer", " Rendering", " framerate", "Renderer", " Visualization", "viewport"], [" viewport", " renderer", " Renderer", " Rendering", " rendering", "\u6e32\u67d3", "Renderer", "-render"], [" viewport", " Renderer", " renderer", " Rendering", " rendering", "\u6e32\u67d3", "Renderer", "-render"], [" viewport", " Renderer", " renderer", " Rendering", " rendering", "\u6e32\u67d3", " Pipeline", " Engine"], [" viewport", "Viewport", " renderer", "viewport", " Renderer", " View", " Rendering", " Viewer"], [" viewport", "Viewport", " renderer", "viewport", " Renderer", " View", " rendering", " Viewer"], [" viewport", "D", "Viewport", " renderer", " Renderer", " View", "rd", " rendering"], ["D", " viewport", "2", "0", "6", "Viewport", "1", "5"]], "p": [[0.3636, 0.2832, 0.2499, 0.0434, 0.0103, 0.0091, 0.0071, 0.0046], [0.1185, 0.0526, 0.0339, 0.0339, 0.03, 0.0233, 0.0182, 0.011], [0.4549, 0.2435, 0.1477, 0.0543, 0.0479, 0.0176, 0.0083, 0.0042], [0.0121, 0.0078, 0.0078, 0.0057, 0.0039, 0.0039, 0.0039, 0.0037], [0.0215, 0.0202, 0.0148, 0.0139, 0.0115, 0.009, 0.0062, 0.0051], [0.0162, 0.0153, 0.0119, 0.0105, 0.0056, 0.005, 0.0047, 0.0047], [0.1697, 0.1594, 0.0356, 0.026, 0.0203, 0.0148, 0.0131, 0.0079], [0.026, 0.0139, 0.0131, 0.0102, 0.0066, 0.0054, 0.0054, 0.0051], [0.0504, 0.012, 0.0112, 0.0093, 0.0077, 0.0047, 0.0044, 0.0037], [0.0161, 0.0151, 0.0118, 0.011, 0.0086, 0.0086, 0.0081, 0.0076], [0.3145, 0.1792, 0.0513, 0.0293, 0.0275, 0.0177, 0.0157, 0.0147], [0.0194, 0.0142, 0.0104, 0.0092, 0.0076, 0.0049, 0.0046, 0.0038], [0.0269, 0.0174, 0.0082, 0.0077, 0.0047, 0.0041, 0.0039, 0.0032], [0.0202, 0.009, 0.0079, 0.007, 0.0062, 0.0042, 0.0027, 0.0027], [0.0959, 0.0546, 0.0453, 0.0375, 0.0147, 0.0108, 0.0101, 0.0084], [0.0874, 0.0725, 0.0601, 0.0172, 0.0118, 0.0104, 0.0098, 0.0092], [0.2447, 0.1231, 0.102, 0.0795, 0.0513, 0.0311, 0.0189, 0.0167], [0.1097, 0.0802, 0.0708, 0.0552, 0.0404, 0.0261, 0.0168, 0.0158], [0.0708, 0.0403, 0.0277, 0.0245, 0.023, 0.0216, 0.0179, 0.0084], [0.0597, 0.0561, 0.0495, 0.0151, 0.0104, 0.0098, 0.0098, 0.0098], [0.8958, 0.0044, 0.0034, 0.003, 0.0027, 0.0027, 0.0024, 0.0024], [0.0349, 0.0083, 0.0022, 0.0021, 0.0018, 0.0017, 0.0017, 0.0017], [0.0285, 0.0087, 0.0087, 0.0082, 0.0068, 0.0068, 0.006, 0.0041], [0.0388, 0.0081, 0.0056, 0.0049, 0.0041, 0.0032, 0.003, 0.003], [0.0616, 0.0579, 0.0213, 0.0129, 0.0101, 0.0094, 0.0094, 0.0089], [0.0173, 0.0049, 0.0044, 0.0044, 0.0032, 0.0028, 0.0026, 0.0019], [0.1287, 0.0369, 0.0112, 0.006, 0.005, 0.0047, 0.0037, 0.0034], [0.8594, 0.0549, 0.009, 0.0054, 0.0045, 0.0029, 0.0029, 0.0011], [0.6157, 0.0649, 0.0198, 0.012, 0.0078, 0.0068, 0.0047, 0.0037], [0.1086, 0.0701, 0.0453, 0.0311, 0.0258, 0.0201, 0.013, 0.0074], [0.167, 0.1147, 0.0542, 0.0199, 0.0073, 0.0057, 0.0054, 0.0054], [0.0382, 0.0359, 0.0297, 0.0159, 0.0149, 0.0132, 0.0124, 0.0124], [0.0531, 0.0222, 0.0196, 0.0184, 0.0173, 0.0173, 0.0126, 0.0119], [0.0371, 0.024, 0.0199, 0.0137, 0.0137, 0.0128, 0.0113, 0.0088], [0.0203, 0.0179, 0.0123, 0.0102, 0.0096, 0.0085, 0.0075, 0.007], [0.0415, 0.0209, 0.0196, 0.0163, 0.0135, 0.0119, 0.0119, 0.0082], [0.0196, 0.0173, 0.0153, 0.0093, 0.0077, 0.0077, 0.0068, 0.006], [0.0349, 0.0176, 0.0121, 0.0121, 0.0113, 0.01, 0.0065, 0.0054], [0.0495, 0.0234, 0.0171, 0.0151, 0.0104, 0.0086, 0.0081, 0.0059], [0.1247, 0.0278, 0.0149, 0.0149, 0.014, 0.0102, 0.0085, 0.0085], [0.1695, 0.0355, 0.0334, 0.026, 0.0115, 0.0115, 0.0096, 0.0084], [0.2147, 0.0615, 0.051, 0.0146, 0.0137, 0.0121, 0.0094, 0.0094], [0.1357, 0.044, 0.0343, 0.0162, 0.0143, 0.0134, 0.0119, 0.0119], [0.079, 0.0697, 0.045, 0.0137, 0.0121, 0.01, 0.01, 0.01], [0.0634, 0.056, 0.0361, 0.016, 0.0117, 0.011, 0.0104, 0.0097], [0.0474, 0.0418, 0.0393, 0.021, 0.0164, 0.012, 0.0106, 0.0093], [0.0473, 0.0305, 0.0223, 0.0154, 0.0127, 0.012, 0.0112, 0.0093], [0.0333, 0.019, 0.0168, 0.013, 0.0102, 0.0102, 0.009, 0.009], [0.0769, 0.0125, 0.0111, 0.0104, 0.0098, 0.0076, 0.0052, 0.0049], [0.0816, 0.0097, 0.0063, 0.0063, 0.0049, 0.0043, 0.0043, 0.0041], [0.0284, 0.0119, 0.0092, 0.006, 0.0056, 0.0053, 0.0046, 0.0044], [0.1264, 0.0635, 0.0561, 0.0265, 0.0161, 0.0161, 0.0118, 0.0081], [0.1586, 0.0704, 0.0621, 0.0354, 0.0354, 0.0312, 0.0228, 0.0215], [0.2037, 0.0904, 0.0333, 0.0333, 0.0333, 0.0312, 0.0312, 0.0259], [0.2111, 0.1451, 0.0827, 0.0729, 0.0304, 0.0196, 0.0144, 0.0135], [0.7797, 0.0931, 0.0725, 0.0111, 0.0063, 0.0026, 0.0025, 0.0025], [0.3199, 0.3199, 0.2199, 0.0714, 0.0159, 0.0097, 0.0085, 0.0059], [0.3504, 0.2729, 0.2408, 0.0474, 0.0198, 0.012, 0.0064, 0.0057], [0.3744, 0.2573, 0.2573, 0.0447, 0.0128, 0.0069, 0.0053, 0.0053], [0.9672, 0.0177, 0.0045, 0.004, 0.0031, 0.0011, 0.0004, 0.0004], [0.9633, 0.0156, 0.0054, 0.0042, 0.0039, 0.0011, 0.0009, 0.0007], [0.8306, 0.0726, 0.0221, 0.0208, 0.0098, 0.0041, 0.0041, 0.003], [0.9923, 0.0016, 0.0011, 0.0006, 0.0005, 0.0003, 0.0003, 0.0003]], "ranks": {"Python": [13838, 146022, 34517, 136569, 12558, 27711, 1923, 9520, 9213, 4020, 1289, 4395, 3005, 10383, 7838, 7443, 2678, 1069, 1182, 2428, 570, 3279, 1303, 2233, 889, 2646, 1716, 1148, 311, 2099, 1137, 3108, 5496, 2807, 4923, 1574, 1122, 645, 639, 484, 372, 615, 447, 630, 828, 677, 986, 989, 1172, 729, 352, 153, 290, 314, 238, 398, 274, 241, 226, 227, 114, 79, 106]}}, {"pos": 382, "top": [[".", "\u00a0", ",", " \u200b\u200b", " \u2013", "\u2013", " ", "\u00a0\u00a0"], [" \u200b\u200b", " \u2013", "\u2013", "\u200b\u200b", " ", ".", "\u200b", "  "], ["\u2013", ".", " \u2013", " \u200b\u200b", ",", "\u2026", "\u2026.", "\u2026.."], ["&eacute", "\ufffd\ufffd", "emonic", "\u30bb\u30ec", " pornstar", "CCCCCC", "\u5510\u4e09", " Highlander"], [" \u200b\u200b", " ", "&D", "&nbsp", " @", " PD", " ND", " culture"], [" \u200b\u200b", "&D", " Lego", " Hollywood", " Hong", " Star", " Dream", " Pro"], [" \u200b\u200b", ".", " ", "\u200b\u200b", " ......", "\u00a0", "......", "!"], [" \u200b\u200b", ".", "\u200b\u200b", " ......", "......", " ", " Star", "   \n"], [" \u200b\u200b", ".", "......", " ......", "\u200b\u200b", "&nbsp", "...", " \n\n"], [",", ".", "...", " [\u2026]", "&nbsp", "\u00a0", " \u200b\u200b", "......"], ["...", ".", "......", " [\u2026]", "&nbsp", " [...]", "....", ","], [" vision", "...", "&nbsp", " complex", " movies", " pyramid", " visuals", "......"], [" vision", " complex", " movies", " visuals", " technology", " theater", " artists", " movie"], [" vision", " visuals", " technology", " complex", " movies", " drama", " movie", " lifestyle"], [" vision", " complex", " movies", " technology", " movie", " tech", " world", " classic"], [" tech", " movies", " kids", " vision", " movie", " technology", " complex", " visuals"], [" tech", " movies", " movie", " kids", " technology", " complex", " visuals", " vision"], [" tech", " visuals", " movies", " movie", " vision", " kids", " technology", " games"], [" complex", " movie", " tech", " movies", " music", "...", " technology", " TV"], [" movie", " complex", " movies", " music", " drama", " imagery", " incredibly", " tech"], ["<|endoftext|>", " \n\n", "  \n\n", "...", " [\u2026]", "\n\n", " [...]", " ..."], [" movie", " movies", " games", " music", " gameplay", " gaming", " Hollywood", " technology"], [" movie", " movies", " games", " technology", " complex", " game", " music", " gaming"], [" complex", " movie", " music", " movies", " games", " film", " technology", " world"], [" movie", " visuals", " movies", " artwork", " imagery", " architecture", " graphics", " games"], [" architecture", " sculptures", " graphics", " visuals", " sculpture", " cinema", " photography", " movies"], [" architecture", " movies", " visuals", " sculptures", " photography", " sculpture", " movie", " graphics"], [" film", " movies", " movie", " architecture", " technology", " visual", " video", " graphics"], [" film", " architecture", " technology", " movies", " graphics", " photography", " movie", " cinema"], [" architecture", " technology", " film", " graphics", " movies", " photography", " theater", " cinema"], [" architecture", " technology", " ...", " graphics", " theater", " visuals", " film", " movies"], [" ...", " technology", " film", " complex", " architecture", " movies", " tech", " video"], [" technology", " complex", " film", " architecture", " tech", " modern", " technologies", " hardware"], [" technology", " architecture", " tech", " technologies", " hardware", " complex", " software", " graphics"], [" tech", " technology", " hardware", " architecture", " complex", " visuals", " digital", " technologies"], [" hardware", " technology", " tech", " \u2026", " complex", " ...", " [...]", " software"], [" hardware", " tech", " technology", " graphics", " software", " animation", " animations", " GPU"], [" graphics", " software", " hardware", " animation", " technology", " animations", " architecture", " complex"], [" graphics", " complex", " hardware", " software", " architecture", " animation", " visual", " OpenGL"], [" graphics", " hardware", " complex", " GPU", " animation", " architecture", " OpenGL", " animations"], [" graphics", " GPU", " animation", " OpenGL", " hardware", " animations", " architecture", " shader"], [" graphics", " hardware", " animation", " GPU", " OpenGL", " visuals", " software", " animations"], [" graphics", " animation", " hardware", " visuals", " animations", " software", " GPU", " OpenGL"], [" graphics", " animation", " hardware", " animations", " visuals", " software", " architecture", " Graphics"], [" graphics", " hardware", " animation", " architecture", " animations", " software", " visuals", " GPU"], [" graphics", " animation", " hardware", " architecture", " animations", " visuals", " software", " GPU"], [" hardware", " graphics", " animation", " architecture", " animations", " software", " visuals", " workflow"], [" hardware", " graphics", " animation", " visuals", " architecture", " animations", " gameplay", " visualization"], [" hardware", " visuals", " animation", " graphics", " visualization", " animations", " framerate", " gameplay"], [" framerate", " visuals", " visualization", " hardware", " gameplay", " graphics", " animation", " workflow"], [" framerate", " visualization", " visuals", " hardware", " synchronization", " Visualization", " workflow", " animation"], [" framerate", " visuals", " visualization", " throughput", " viewport", " workflow", " performance", " Visualization"], [" framerate", " renderer", " visuals", " visualization", " Rendering", " viewport", " Renderer", " throughput"], [" framerate", " renderer", " viewport", " Rendering", " Renderer", " visualization", " visuals", " shader"], [" renderer", " framerate", " viewport", " Renderer", " pipeline", " Rendering", " shader", " loop"], [" renderer", " viewport", " Renderer", " Rendering", " framerate", " rendering", " pipeline", " render"], [" renderer", " Rendering", " Renderer", " rendering", " viewport", "\u6e32\u67d3", " Render", " render"], [" Rendering", " renderer", " Renderer", " rendering", "\u6e32\u67d3", " Render", " render", " viewport"], [" Rendering", " renderer", " Renderer", " rendering", " viewport", " Pipeline", " Render", " pipeline"], [" viewport", "Viewport", " Rendering", " renderer", " View", " Renderer", "viewport", " rendering"], [" viewport", "Viewport", " renderer", " View", " Renderer", "viewport", " Rendering", " rendering"], [" viewport", " View", "Viewport", " renderer", " Renderer", " rendering", " Rendering", " Render"], [" View", " viewport", " Renderer", " Render", " Rendering", " rendering", " renderer", "Viewport"]], "p": [[0.8343, 0.0415, 0.0222, 0.0173, 0.0127, 0.0093, 0.0087, 0.0077], [0.1661, 0.0539, 0.0394, 0.0211, 0.0175, 0.0175, 0.01, 0.0094], [0.3323, 0.1779, 0.1671, 0.0894, 0.0422, 0.0256, 0.0155, 0.01], [0.002, 0.0016, 0.0014, 0.0014, 0.0013, 0.0012, 0.0009, 0.0009], [0.1832, 0.017, 0.011, 0.0067, 0.0067, 0.0046, 0.0036, 0.0032], [0.5156, 0.0019, 0.0014, 0.0011, 0.0009, 0.0008, 0.0008, 0.0008], [0.7191, 0.0406, 0.0231, 0.0132, 0.0058, 0.0023, 0.0023, 0.0022], [0.6353, 0.0124, 0.0066, 0.0062, 0.0046, 0.0026, 0.0013, 0.0013], [0.4972, 0.1181, 0.0463, 0.0408, 0.0205, 0.0067, 0.0063, 0.0063], [0.1101, 0.0217, 0.0191, 0.0169, 0.0102, 0.0096, 0.0075, 0.0055], [0.4862, 0.0512, 0.0425, 0.0399, 0.0227, 0.0189, 0.0166, 0.0107], [0.0127, 0.0112, 0.0087, 0.0082, 0.0064, 0.0053, 0.005, 0.0047], [0.0203, 0.0096, 0.0075, 0.0062, 0.0055, 0.0051, 0.0037, 0.0037], [0.0234, 0.0076, 0.0076, 0.0076, 0.0071, 0.0049, 0.0043, 0.0041], [0.0172, 0.0098, 0.0098, 0.0067, 0.0059, 0.0056, 0.0049, 0.0046], [0.013, 0.0122, 0.0115, 0.0095, 0.0084, 0.0084, 0.007, 0.0065], [0.0197, 0.0144, 0.0112, 0.0105, 0.0099, 0.0093, 0.0072, 0.0064], [0.0199, 0.0137, 0.0121, 0.0094, 0.0088, 0.0088, 0.0083, 0.0065], [0.0125, 0.0125, 0.0091, 0.0091, 0.0076, 0.0071, 0.0067, 0.0063], [0.0092, 0.0072, 0.0049, 0.0041, 0.0036, 0.0036, 0.0036, 0.0036], [0.7872, 0.0185, 0.0068, 0.0064, 0.0039, 0.0022, 0.002, 0.0008], [0.01, 0.01, 0.0073, 0.0045, 0.0045, 0.0039, 0.0035, 0.0035], [0.018, 0.0124, 0.0109, 0.0075, 0.0058, 0.0058, 0.0058, 0.0055], [0.0077, 0.0072, 0.0064, 0.0056, 0.0053, 0.0053, 0.0039, 0.0036], [0.0183, 0.0172, 0.0152, 0.0118, 0.0105, 0.0087, 0.0081, 0.0056], [0.0274, 0.0257, 0.0227, 0.0227, 0.0213, 0.0188, 0.0166, 0.0166], [0.039, 0.0344, 0.0323, 0.0304, 0.0268, 0.0252, 0.0236, 0.0222], [0.0346, 0.0238, 0.0197, 0.0174, 0.0174, 0.0154, 0.0144, 0.012], [0.0421, 0.0349, 0.0289, 0.0199, 0.0199, 0.0199, 0.0155, 0.0145], [0.0522, 0.0432, 0.0382, 0.0262, 0.0231, 0.0217, 0.0204, 0.018], [0.0709, 0.0626, 0.0519, 0.0379, 0.0261, 0.0245, 0.023, 0.0216], [0.0633, 0.0594, 0.0361, 0.0264, 0.0248, 0.0141, 0.0133, 0.0125], [0.0908, 0.0314, 0.0216, 0.019, 0.0168, 0.0131, 0.0123, 0.0123], [0.0961, 0.0401, 0.0354, 0.0312, 0.0312, 0.0228, 0.0167, 0.0157], [0.0665, 0.0625, 0.0429, 0.0334, 0.0277, 0.0216, 0.0179, 0.0168], [0.0703, 0.0547, 0.0514, 0.0353, 0.0312, 0.0275, 0.0214, 0.0189], [0.1007, 0.0447, 0.0394, 0.037, 0.0348, 0.0271, 0.0239, 0.0198], [0.0617, 0.0511, 0.048, 0.031, 0.0257, 0.0242, 0.0227, 0.0213], [0.0726, 0.0531, 0.0441, 0.0322, 0.0303, 0.0236, 0.0221, 0.0173], [0.0741, 0.0577, 0.0509, 0.0422, 0.0373, 0.035, 0.0241, 0.0176], [0.3033, 0.072, 0.0677, 0.0437, 0.0234, 0.022, 0.0194, 0.0194], [0.4186, 0.0603, 0.0566, 0.047, 0.0414, 0.0251, 0.0251, 0.0208], [0.3724, 0.0942, 0.0781, 0.0393, 0.0393, 0.027, 0.0253, 0.0185], [0.3126, 0.1015, 0.079, 0.0479, 0.031, 0.0273, 0.0226, 0.0156], [0.1639, 0.1276, 0.1126, 0.0603, 0.0389, 0.0366, 0.0152, 0.0135], [0.144, 0.1271, 0.1194, 0.0498, 0.0413, 0.0235, 0.0221, 0.0152], [0.1742, 0.0726, 0.0602, 0.0322, 0.0251, 0.0236, 0.0208, 0.0184], [0.1557, 0.061, 0.0538, 0.0394, 0.0394, 0.0239, 0.0198, 0.0145], [0.1081, 0.0743, 0.0698, 0.0616, 0.0351, 0.0351, 0.0291, 0.0291], [0.1245, 0.1099, 0.0626, 0.043, 0.0357, 0.0261, 0.0203, 0.0169], [0.1516, 0.1257, 0.0979, 0.0193, 0.017, 0.016, 0.0141, 0.0117], [0.547, 0.0614, 0.0509, 0.0309, 0.0226, 0.0165, 0.0129, 0.0078], [0.6352, 0.0591, 0.046, 0.0406, 0.0217, 0.018, 0.0116, 0.0116], [0.7227, 0.0762, 0.0318, 0.0193, 0.017, 0.0132, 0.011, 0.0097], [0.3853, 0.2062, 0.1251, 0.0521, 0.0358, 0.0316, 0.0246, 0.0192], [0.4383, 0.3868, 0.0593, 0.0462, 0.028, 0.017, 0.0038, 0.0026], [0.5039, 0.238, 0.1274, 0.0602, 0.0414, 0.0056, 0.0049, 0.0049], [0.3866, 0.3011, 0.1422, 0.1255, 0.0103, 0.008, 0.008, 0.008], [0.3837, 0.2637, 0.2054, 0.0519, 0.0278, 0.0245, 0.0149, 0.009], [0.9752, 0.0123, 0.0027, 0.0027, 0.0019, 0.0017, 0.0013, 0.001], [0.9785, 0.0096, 0.004, 0.0019, 0.0017, 0.0013, 0.0009, 0.0009], [0.9581, 0.0106, 0.0073, 0.0073, 0.0035, 0.0029, 0.0024, 0.0011], [0.5562, 0.3374, 0.019, 0.0179, 0.0158, 0.0066, 0.0062, 0.004]], "ranks": {"Python": [21447, 48527, 31348, 14012, 674, 2373, 217, 143, 256, 317, 229, 255, 361, 795, 1110, 1143, 1513, 522, 670, 1321, 421, 369, 187, 806, 660, 1132, 1171, 521, 551, 645, 536, 1035, 1020, 563, 627, 144, 101, 119, 112, 119, 157, 147, 127, 153, 177, 312, 331, 481, 823, 1134, 836, 1040, 1041, 1590, 871, 1465, 1047, 802, 514, 705, 335, 133, 87]}}, {"pos": 383, "top": [["?", "d", "ings", "h", ".", "u", "y", "ably"], ["\uff0e", "\u00ad", "  \n", "ings", "?'", "\u00ading", "ment", "ingly"], ["?", "?'", "\uff0e", "'?", ",'", ".'", ".?", "ings"], [" ``", "``", "ingly", " ''", "ings", " \u300e", "hov", "\u3001\u300e"], ["ed", "ings", "est", "ingly", "ers", " '", " @", ".'"], ["ings", "ed", "ingly", "est", "hov", "ishly", "ment", "ers"], ["ings", ".'", "ed", "est", "ably", " '", "\uff0e", "d"], ["ings", "ment", "ers", "ed", "able", "less", "est", "ures"], ["ings", "ment", "able", "ey", "ery", "ers", "less", "ure"], ["ings", "ment", "able", "less", "ery", "ers", "ed", "ie"], ["ings", "ment", "able", "ers", "ed", "est", "ie", "ery"], ["ings", "ment", "ers", "able", "ery", "less", "ian", "ness"], ["ings", "ment", "ers", "ness", "able", "ery", "ful", "less"], ["ings", "ment", "ers", "ed", "ness", "ful", "able", "ship"], ["ings", "ment", "ers", "ed", "able", "est", "ful", "ship"], ["ings", "ers", "ment", "ed", "able", "est", "es", "ful"], ["ings", "ers", "ment", "ed", "est", "es", "able", "ful"], ["ings", "ment", "ers", "ed", "est", "ness", "able", "es"], ["ings", "ment", "ers", "ed", "est", "ingly", "ish", "ure"], ["ment", "ings", "ed", "ers", "ingly", "est", "ness", "ful"], ["ment", "ed", "d", "ings", "r", "est", "ers", "h"], ["ings", "ment", "ers", "ingly", "hoot", "ed", "ures", "ery"], ["ings", "ment", "ers", "ed", "ingly", "fully", "ery", "ably"], ["ment", "ed", "fully", "ings", " '", "ably", "ers", "ery"], ["ed", "ment", "ings", "d", "ers", "r", "h", "i"], ["ings", "ers", "ment", "ery", "hip", "ures", "pace", "ed"], ["ings", "ers", "ment", " viewport", "pace", " panor", " viewer", "oscope"], ["ment", "ers", " visual", "ings", " '", " visually", "ed", " ,"], ["ment", "ers", "ings", "ier", "pace", " viewport", " panor", " camera"], [" ...\\", "...\\", " ...", " viewport", "ment", "ers", "...'", "pace"], [" ...\\", "...\\", " ...", "...", "...'", "...\u201d", " ...\"", " ........"], [" ...", " ...\\", "ment", "ers", " visual", "...", " visually", " .."], [" visual", " '", " visually", " ,", " under", " complex", " and", " potentially"], [" visually", " visual", "ers", " visualization", " \u2014", " viewport", " camera", "ment"], [" visually", "ment", " viewport", " visual", " visualization", " viewer", "ware", "ers"], [" \u2014", "\u2011", "ment", " viewport", " visually", "pace", "\u513f", " technical"], [" optimized", " visually", " viewport", "ment", " optics", " GPU", " technical", " performance"], [" Android", " optimized", " iOS", " viewport", " UI", " mobile", " visually", " visual"], [" Android", " iOS", " visually", " visual", " optimized", " UI", " mobile", " \u2019"], [" Android", " iOS", " visually", " visual", " mobile", " \u2019", " optimized", " camera"], [" Android", " iOS", " Mobile", " mobile", " visually", " visual", " UI", " Visual"], [" Android", " Mobile", " iOS", " Visual", " visual", " mobile", " graphics", " Viewer"], [" Android", " Viewer", " graphics", " Mobile", " visuals", " animation", " Animation", " iOS"], [" Android", " Viewer", " Interface", " Visual", " Mobile", " Animation", " Graphics", " graphics"], [" Android", " Interface", " Animation", " Visual", " Mobile", " Live", " Viewer", " Video"], [" Animation", " Visual", " Interface", " Android", " Engine", " Live", " Module", " Mobile"], [" Android", " Animation", " Interface", " Visual", " Live", " Module", " Mobile", " Engine"], ["\\n", " Operating", " Mobile", "\\", " Live", " Interface", "**", " Animation"], ["\\n", ".\\", "**", "\\", " Interface", " Operating", ".**", ":\\"], [".**", "**", "**.", " Interface", ".\\", ";**", "/", " Operating"], [".**", "**.", "**", "/V", " Simulator", "\\.", ";**", " Interface"], [" framerate", " Performance", ".**", "/V", " implementation", " performance", " Engine", "\\."], [" framerate", " Rendering", " performance", " Performance", "/V", ".**", "/UI", " Engine"], [" framerate", " Rendering", " renderer", "/UI", " viewport", " Engine", " backend", " Performance"], [" framerate", " renderer", " Rendering", " Renderer", " viewport", "/V", " Performance", " performance"], [" framerate", " renderer", " Renderer", " Rendering", " FPS", "Renderer", " rendering", " Performance"], [" renderer", " Renderer", " Rendering", " framerate", "Renderer", " rendering", " FPS", " Render"], [" Rendering", " renderer", " Renderer", " rendering", " framerate", "Renderer", " Render", "\u6e32\u67d3"], [" Rendering", " renderer", " Renderer", " rendering", " Performance", " Render", " Pipeline", "Renderer"], ["port", " Rendering", " renderer", " Renderer", " viewport", "ports", " Render", " rendering"], ["port", " renderer", " Renderer", " Rendering", "ports", " Pipeline", " viewport", " pipeline"], ["port", "ports", " Renderer", " renderer", " Rendering", " Pipeline", "porter", " Frame"], ["port", "ports", "point", "porter", "Port", "p", "frame", " Renderer"]], "p": [[0.0676, 0.0526, 0.0362, 0.0265, 0.0265, 0.0265, 0.0206, 0.0182], [0.0558, 0.0299, 0.0181, 0.0181, 0.016, 0.011, 0.0086, 0.0086], [0.2101, 0.1974, 0.0823, 0.0641, 0.0221, 0.0221, 0.0208, 0.0184], [0.1395, 0.0453, 0.0079, 0.0074, 0.0065, 0.0061, 0.0048, 0.004], [0.283, 0.1716, 0.0593, 0.0557, 0.0263, 0.0124, 0.0117, 0.0075], [0.2225, 0.1964, 0.0387, 0.0363, 0.0098, 0.0092, 0.0081, 0.0081], [0.7611, 0.0158, 0.0131, 0.0109, 0.0085, 0.0075, 0.0062, 0.0058], [0.9363, 0.0142, 0.0038, 0.0038, 0.0034, 0.003, 0.0022, 0.0017], [0.8459, 0.0477, 0.0146, 0.0073, 0.0065, 0.0065, 0.0039, 0.0039], [0.7352, 0.0878, 0.0173, 0.0105, 0.0105, 0.0099, 0.0093, 0.0082], [0.6757, 0.1331, 0.0381, 0.0262, 0.0116, 0.0075, 0.0062, 0.0055], [0.5256, 0.1173, 0.0711, 0.0204, 0.0149, 0.014, 0.0102, 0.008], [0.4558, 0.148, 0.1152, 0.0147, 0.0138, 0.0107, 0.0101, 0.0101], [0.5297, 0.1518, 0.1182, 0.015, 0.011, 0.0103, 0.0086, 0.0071], [0.3727, 0.1995, 0.1554, 0.0648, 0.0186, 0.0186, 0.0136, 0.0088], [0.2092, 0.1846, 0.1846, 0.1269, 0.0301, 0.0266, 0.025, 0.0111], [0.2814, 0.1934, 0.1707, 0.1173, 0.0316, 0.0169, 0.0124, 0.0103], [0.4329, 0.1593, 0.1405, 0.0486, 0.0179, 0.0096, 0.0084, 0.0079], [0.2742, 0.177, 0.1217, 0.1009, 0.0225, 0.0128, 0.0113, 0.01], [0.3744, 0.2004, 0.0574, 0.042, 0.0186, 0.0155, 0.01, 0.0088], [0.2013, 0.1776, 0.0653, 0.0614, 0.035, 0.0272, 0.0256, 0.0256], [0.1999, 0.0649, 0.0506, 0.0224, 0.012, 0.0113, 0.01, 0.01], [0.1228, 0.0844, 0.058, 0.0257, 0.02, 0.0129, 0.0129, 0.0122], [0.0587, 0.0404, 0.0245, 0.0216, 0.0191, 0.0191, 0.0179, 0.0102], [0.0766, 0.0766, 0.0495, 0.041, 0.0282, 0.0265, 0.022, 0.0206], [0.1685, 0.0748, 0.0514, 0.0101, 0.0084, 0.0079, 0.0074, 0.0058], [0.0462, 0.0338, 0.016, 0.0103, 0.0086, 0.0063, 0.0055, 0.0055], [0.037, 0.0211, 0.0164, 0.0164, 0.0145, 0.012, 0.0113, 0.0106], [0.0527, 0.03, 0.022, 0.011, 0.0098, 0.0092, 0.0081, 0.0067], [0.1406, 0.0429, 0.0139, 0.0123, 0.0115, 0.0108, 0.0102, 0.0079], [0.5124, 0.1664, 0.0948, 0.0255, 0.0187, 0.0094, 0.0088, 0.0047], [0.1915, 0.075, 0.0115, 0.0115, 0.0108, 0.0102, 0.0102, 0.009], [0.0219, 0.0219, 0.0193, 0.016, 0.0141, 0.0071, 0.0063, 0.0063], [0.0393, 0.0174, 0.0088, 0.0082, 0.0064, 0.0064, 0.0064, 0.0064], [0.0359, 0.0181, 0.016, 0.0141, 0.0075, 0.0066, 0.0066, 0.0066], [0.0264, 0.0193, 0.0125, 0.0081, 0.0076, 0.0055, 0.0055, 0.0055], [0.0143, 0.0119, 0.0087, 0.0072, 0.006, 0.0056, 0.0056, 0.0053], [0.0328, 0.0165, 0.0155, 0.0121, 0.01, 0.0094, 0.0088, 0.0061], [0.0418, 0.0325, 0.0305, 0.0238, 0.0144, 0.0144, 0.012, 0.0099], [0.0762, 0.0218, 0.0181, 0.016, 0.0132, 0.0117, 0.011, 0.0097], [0.2086, 0.0301, 0.022, 0.0161, 0.0111, 0.0111, 0.0111, 0.0104], [0.1577, 0.0274, 0.0257, 0.0201, 0.0156, 0.0156, 0.0156, 0.0147], [0.1138, 0.0306, 0.0238, 0.0224, 0.0198, 0.0174, 0.0174, 0.0154], [0.0271, 0.0254, 0.0239, 0.0198, 0.0198, 0.0198, 0.0128, 0.0128], [0.0347, 0.0198, 0.0186, 0.0175, 0.0164, 0.0136, 0.0128, 0.0106], [0.0218, 0.0181, 0.0181, 0.017, 0.0141, 0.0141, 0.0132, 0.0132], [0.0156, 0.0129, 0.0121, 0.0107, 0.0107, 0.0101, 0.0101, 0.0078], [0.0292, 0.0189, 0.0147, 0.013, 0.013, 0.0114, 0.0114, 0.0108], [0.0821, 0.0365, 0.0365, 0.0302, 0.0098, 0.0092, 0.0076, 0.0072], [0.0972, 0.0858, 0.018, 0.0116, 0.009, 0.0062, 0.0062, 0.0058], [0.1801, 0.0485, 0.0167, 0.0167, 0.013, 0.0084, 0.0079, 0.0079], [0.074, 0.0272, 0.0187, 0.0121, 0.0113, 0.0113, 0.01, 0.01], [0.2348, 0.0298, 0.0263, 0.0205, 0.0193, 0.015, 0.0141, 0.0124], [0.3397, 0.0246, 0.0231, 0.0192, 0.018, 0.0149, 0.0149, 0.0132], [0.269, 0.0873, 0.0564, 0.0467, 0.0283, 0.0266, 0.0195, 0.0162], [0.3095, 0.1877, 0.1462, 0.129, 0.0288, 0.0288, 0.0145, 0.0106], [0.3003, 0.265, 0.2064, 0.0522, 0.0406, 0.0317, 0.0116, 0.0097], [0.3828, 0.2322, 0.1408, 0.0854, 0.0457, 0.0216, 0.0168, 0.0123], [0.3895, 0.184, 0.184, 0.0465, 0.032, 0.032, 0.0194, 0.0194], [0.3329, 0.2019, 0.1388, 0.0954, 0.0578, 0.0273, 0.0273, 0.0227], [0.6593, 0.0576, 0.0541, 0.0449, 0.0272, 0.0256, 0.0176, 0.0146], [0.9577, 0.0113, 0.0037, 0.0029, 0.0022, 0.0022, 0.0016, 0.0014], [0.995, 0.0023, 0.0005, 0.0003, 0.0002, 0.0001, 0.0001, 0.0001]], "ranks": {"Python": [10824, 49427, 85186, 71378, 5989, 33826, 6952, 18592, 23086, 50088, 23285, 64228, 81601, 68134, 23688, 24836, 26193, 21662, 25235, 49986, 10572, 19847, 9052, 17537, 12625, 8549, 9835, 4435, 5247, 5131, 3059, 2387, 4242, 1577, 1772, 215, 133, 198, 102, 58, 71, 169, 150, 338, 296, 434, 648, 1979, 1236, 1567, 896, 342, 272, 342, 226, 266, 125, 131, 117, 143, 108, 112, 103]}}, {"pos": 384, "top": [["\u2013", " \u2013", "\u2013and", ".", "\u2022", "\u00a0", ",", ".\u2013"], ["\\\"", " \\\"", "\\\":\\\"", "ment", "shire", "}\\\"", ":\\\"", "(\\\""], [":\\\"", "\\\"", ".\\\"", ",\\\"", "\\\"\\", " \\\"", " '\\\"", "\\\":\\\""], [" ``", "``", "\uff63", " \uff62", " ``(", "':''", "\\\":\\\"", "\\\",\\\""], [".\\\"", " \\\"", " \uff62", " -->", ":\\\"", "\uff63", "\\\",\\\"", "\\\""], [" \uff62", "\uff63", " -->", ".\\\"", ":\\\"", " ','", ".\ufffd", " \ufffd"], [" \uff62", " -->", "\uff63", ".\ufffd", ".\\\"", " \ufffd", " ____", " \u2502"], [" \uff62", "\uff63", ".\\\"", " -->", ".\ufffd", "\ufffds", " ``", " '\\\""], [" \uff62", "\uff63", ".\\\"", ".\ufffd", " -->", " '\\\"", ":\\\"", "\ufffds"], [".\\\"", "\uff63", ".''", ",''", ":''", " \uff62", ".\ufffd", " '\\\""], [".\\\"", ".\ufffd", "\uff63", " \uff62", ".''", ":\\\"", " \u2502", "\\\":\\\""], [".\\\"", " -->", "\uff63", " '\\\"", " \uff62", ":''", " \ufffd", ".\ufffd"], ["\uff63", ".\\\"", ":''", " '\\\"", ":\\\"", " ``", " \uff62", " \ufffd"], ["\uff63", ":''", " '\\\"", ".\\\"", " \uff62", ":\\\"", " \ufffd", "\uff62"], ["\uff63", " ``", ".\\\"", " \uff62", " '\\\"", " ''", "\u2237", "\\\":\\\""], [" seamlessly", " lockdown", "\uff63", " \\\"", " showcase", " showcased", "\u2237", " '\\\""], [" seamlessly", " showcase", " lockdown", " functionality", " viewport", "\uff63", " \uff62", "\ufffds"], [" '\\\"", "\uff63", " \uff62", ".\\\"", " seamlessly", " \\\"", " \ufffd", ":\\\""], [" '\\\"", " \uff62", " \ufffd", " seamlessly", " |--", " --", " \u02c7", " -->"], [" --", " \uff62", " \\<^", " '\\\"", " |--", " \u02c7", " seamlessly", " &#"], [" --", " \ufffd", " seemingly", " \\/", " myriad", " swiftly", "\u2237", " &#"], [" '\\\"", " --", " \ufffd", " \uff62", " \u02c7", " ``", " ''", " |\u2022"], [" --", " ''", " '\\\"", " ``", " \uff62", " \ufffd", ")--", " '--"], [" --", " ''", " \ufffd", " ``", " \\'", " seemingly", " myriad", " &#"], [" --", " ____", " \ufffd", " ''", " &#", " \\'", " ______", ")--"], [" --", " ____", " ______", " ___", " -->", " __", " '\\\"", " '--"], [" --", " ____", " ___", " __", " ______", " ``", " ''", " '\\\""], [" --", " ____", " __", " ___", " ______", " ''", " ?", " _____"], [" ____", " --", " ______", " ___", " __", " \n  \n", " '\\\"", " _____"], [" ____", " --", " ___", " ______", " __", " \n  \n", " -->", " ...\\"], [" ____", " --", " ___", " ...", " __", " ______", " -->", " ...\\"], [" --", " ,", " __", " ____", " ___", " ...", " ______", " heavily"], [" --", " heavily", " ,", " '", " rapidly", " seamlessly", " and", " under"], [" heavily", " seamlessly", " --", " rapidly", " \u2014", " visually", " specifically", " technology"], [" --", " seamlessly", " \u2014", "\u2014and", " heavily", " digitally", " rapidly", " specifically"], [" \u2014", " rapidly", "\u2014and", " \u2013", " \u2014\u2014", " \u2019", " seamlessly", " digitally"], [" rapidly", " seamlessly", " \u2014", " performance", " hardware", "\u2014and", " rapid", " optimized"], [" seamlessly", " rapidly", " hardware", " performance", " optimized", " functionality", " rapid", " overclock"], [" performance", " rapidly", " seamlessly", " hardware", " disproportionately", " heavily", " functionality", " dramatically"], [" performance", " rapidly", " hardware", " seamlessly", " speed", " overclock", " optimized", " functionality"], [" performance", " hardware", " speed", " rapidly", " functionality", " software", " seamlessly", " Performance"], [" performance", " hardware", " Performance", " functionality", " software", " speed", " engine", " rapidly"], [" performance", " hardware", " functionality", " Performance", " software", " throughput", " seamlessly", " engine"], [" performance", " Performance", " functionality", " hardware", " speed", " achieving", " @", " throughput"], [" performance", " @", " --", " Performance", " functionality", " achieving", " speed", " heavily"], [" performance", " @", " functionality", " under", " due", " simultaneously", " and", " --"], [" performance", " functionality", " simultaneously", " dramatically", " ", " under", " and", " specifically"], [" specifically", " performance", " simultaneously", " &", " concurrently", " functionality", " combined", " and"], [" itself", " specifically", " functionality", " performance", "'s", " and", " combined", " simultaneously"], [" itself", "'s", " functionality", " performance", " Performance", "\\.", " framerate", " throughput"], ["*.", "**.", " functionality", " framerate", " itself", "\uff61", " **.", "\\."], [" performance", " framerate", " Performance", "*.", " functionality", " throughput", " itself", " implementation"], [" performance", " framerate", " Performance", "*.", " latency", " scalability", " throughput", "performance"], [" framerate", " performance", " Performance", " latency", " throughput", "performance", " scalability", " implementation"], [" framerate", " performance", " latency", " scalability", " Performance", " throughput", " renderer", " runtime"], [" framerate", " performance", " Performance", " FPS", " renderer", " Renderer", " scalability", " Rendering"], [" framerate", " Renderer", " renderer", " Rendering", " performance", " Performance", " rendering", " FPS"], [" Renderer", " renderer", " Rendering", " framerate", " rendering", " Performance", " performance", " FPS"], [" Performance", " performance", " Renderer", " Rendering", "Performance", "performance", " framerate", " renderer"], [" Performance", " performance", " Rendering", " Renderer", " renderer", "Performance", " framerate", " rendering"], [" Performance", " performance", " Rendering", " Renderer", " FPS", " renderer", " Pipeline", " rendering"], [" Performance", " Frame", " performance", " on", " Rendering", " Renderer", " FPS", " Pipeline"], ["**.", "**", " Performance", " on", " Pipeline", " Frame", " Renderer", " Rendering"]], "p": [[0.6873, 0.1969, 0.0388, 0.025, 0.0098, 0.0076, 0.0059, 0.0049], [0.0979, 0.0632, 0.0193, 0.0181, 0.017, 0.015, 0.0103, 0.0091], [0.2993, 0.1505, 0.0972, 0.0489, 0.0159, 0.0149, 0.014, 0.0109], [0.2047, 0.1242, 0.1167, 0.0551, 0.0518, 0.026, 0.0102, 0.0085], [0.1244, 0.1098, 0.0803, 0.0519, 0.0487, 0.043, 0.0191, 0.0158], [0.1157, 0.0619, 0.0157, 0.0115, 0.0115, 0.0079, 0.004, 0.004], [0.3485, 0.1204, 0.073, 0.0391, 0.0269, 0.0252, 0.0223, 0.0223], [0.3611, 0.1414, 0.052, 0.052, 0.0357, 0.0231, 0.018, 0.0149], [0.2447, 0.1905, 0.158, 0.0513, 0.0292, 0.0201, 0.0189, 0.0166], [0.1321, 0.1095, 0.0624, 0.0314, 0.0295, 0.026, 0.0244, 0.023], [0.3292, 0.1138, 0.0782, 0.0347, 0.0238, 0.0224, 0.0136, 0.0136], [0.0501, 0.0442, 0.0367, 0.0237, 0.0222, 0.0184, 0.0163, 0.0163], [0.0484, 0.0455, 0.0377, 0.0313, 0.0244, 0.0157, 0.0148, 0.0139], [0.0357, 0.0191, 0.0149, 0.0132, 0.0096, 0.0096, 0.009, 0.009], [0.0279, 0.018, 0.0169, 0.014, 0.014, 0.0116, 0.0109, 0.0075], [0.0123, 0.0066, 0.0058, 0.0045, 0.004, 0.0035, 0.0033, 0.0031], [0.0065, 0.0033, 0.0031, 0.0022, 0.0022, 0.0021, 0.0021, 0.0021], [0.0108, 0.009, 0.009, 0.007, 0.0062, 0.0035, 0.0033, 0.0031], [0.0209, 0.0112, 0.0082, 0.006, 0.0053, 0.0044, 0.0044, 0.003], [0.031, 0.0146, 0.0107, 0.0095, 0.0078, 0.0074, 0.0065, 0.0065], [0.1713, 0.0317, 0.017, 0.0141, 0.0132, 0.0132, 0.0124, 0.0117], [0.0173, 0.0153, 0.0119, 0.0099, 0.0068, 0.0068, 0.0064, 0.005], [0.105, 0.0142, 0.0142, 0.0125, 0.0118, 0.0104, 0.0098, 0.0086], [0.3889, 0.0282, 0.0234, 0.0151, 0.0104, 0.0076, 0.0055, 0.0055], [0.5605, 0.0231, 0.014, 0.0132, 0.0091, 0.0085, 0.0075, 0.0066], [0.1356, 0.0932, 0.0221, 0.0172, 0.0152, 0.0126, 0.0118, 0.0087], [0.184, 0.0816, 0.0265, 0.0249, 0.022, 0.0142, 0.0133, 0.011], [0.4522, 0.1009, 0.0507, 0.0507, 0.0448, 0.0094, 0.0069, 0.0057], [0.1871, 0.0884, 0.0733, 0.0608, 0.0473, 0.0112, 0.0082, 0.0082], [0.2202, 0.1107, 0.0715, 0.0593, 0.0407, 0.0263, 0.0141, 0.0117], [0.2014, 0.1301, 0.1222, 0.0952, 0.0654, 0.0577, 0.0212, 0.0146], [0.2501, 0.0383, 0.0338, 0.0264, 0.0233, 0.0218, 0.017, 0.017], [0.1359, 0.0303, 0.0236, 0.0126, 0.0119, 0.0098, 0.0072, 0.0072], [0.0237, 0.0209, 0.0197, 0.0119, 0.0087, 0.0072, 0.0068, 0.0064], [0.0318, 0.0298, 0.0141, 0.0132, 0.0124, 0.0103, 0.0091, 0.0091], [0.0937, 0.0237, 0.0173, 0.0153, 0.0144, 0.0112, 0.0112, 0.0077], [0.0367, 0.0222, 0.0173, 0.0119, 0.0112, 0.0087, 0.0072, 0.0068], [0.0281, 0.0248, 0.0151, 0.0151, 0.0091, 0.0086, 0.0076, 0.0071], [0.0441, 0.0285, 0.0236, 0.0119, 0.0082, 0.0082, 0.0072, 0.0072], [0.1364, 0.0286, 0.0223, 0.0197, 0.0135, 0.0087, 0.0082, 0.0082], [0.3535, 0.0226, 0.0187, 0.0176, 0.0083, 0.0083, 0.0083, 0.0073], [0.5485, 0.0213, 0.0129, 0.0129, 0.0074, 0.0065, 0.0061, 0.0061], [0.3902, 0.0194, 0.0161, 0.0125, 0.0076, 0.0071, 0.0071, 0.0063], [0.3926, 0.0251, 0.0092, 0.0077, 0.006, 0.0053, 0.0046, 0.0044], [0.2639, 0.0149, 0.014, 0.0085, 0.008, 0.0062, 0.0058, 0.0058], [0.1011, 0.0121, 0.0078, 0.0078, 0.0073, 0.0061, 0.0057, 0.0057], [0.0617, 0.0166, 0.0069, 0.0065, 0.0065, 0.0061, 0.0057, 0.0057], [0.043, 0.0356, 0.0295, 0.0179, 0.0168, 0.0149, 0.0116, 0.0102], [0.0454, 0.0201, 0.0189, 0.0178, 0.0122, 0.0095, 0.0084, 0.0079], [0.0353, 0.0353, 0.0258, 0.0228, 0.0167, 0.0108, 0.0095, 0.0074], [0.0373, 0.0273, 0.0212, 0.0212, 0.0176, 0.0129, 0.0107, 0.0107], [0.1484, 0.09, 0.0794, 0.0399, 0.0331, 0.0258, 0.0177, 0.0122], [0.2991, 0.1413, 0.11, 0.0191, 0.0169, 0.0149, 0.0149, 0.014], [0.2592, 0.1781, 0.0743, 0.0373, 0.0188, 0.0121, 0.0121, 0.0114], [0.3087, 0.1872, 0.0536, 0.0418, 0.0392, 0.0369, 0.0287, 0.0136], [0.4589, 0.1688, 0.0904, 0.0377, 0.0332, 0.0293, 0.0139, 0.0139], [0.1994, 0.176, 0.1553, 0.1067, 0.0571, 0.0504, 0.0445, 0.0287], [0.2454, 0.1488, 0.1488, 0.1159, 0.0797, 0.062, 0.0483, 0.0201], [0.6488, 0.2387, 0.0285, 0.0196, 0.0135, 0.0105, 0.0072, 0.0072], [0.6588, 0.2139, 0.0328, 0.0289, 0.0094, 0.0083, 0.0065, 0.005], [0.6256, 0.1582, 0.0514, 0.0243, 0.0214, 0.0167, 0.013, 0.0122], [0.3785, 0.0957, 0.0658, 0.0545, 0.0512, 0.0399, 0.0399, 0.0352], [0.4929, 0.2328, 0.0971, 0.0315, 0.0191, 0.0191, 0.0191, 0.0149]], "ranks": {"Python": [18914, 201893, 113654, 72254, 4114, 45100, 4202, 24337, 13169, 43024, 6175, 16998, 15914, 17467, 11331, 7144, 9477, 8382, 14079, 35923, 14348, 38647, 26413, 21833, 20295, 8706, 7867, 4048, 4349, 3429, 3218, 3759, 5920, 6211, 5703, 962, 874, 747, 923, 742, 571, 887, 839, 1247, 1247, 1741, 2776, 3258, 3571, 2223, 1242, 515, 485, 630, 319, 362, 170, 137, 131, 108, 96, 35, 46]}}, {"pos": 385, "top": [[",", ".", "\u2013", ";", " \u2013", "\u2026..", ":", " [\u2026]"], [",", "\u2013", "\u200b", "\u2013and", ".", " \u2013", ";", " \u00a0"], [",", ".", "\u2013", "\u2026..", ";", "\u200b", " [\u2026]", " \u2013"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " addir", "orgeous", " aarhus", "\ube68", "eroon", "\ufffd\ufffd", " milfs"], [":@", "@", ",@", ".@", "ed", "(@", "@c", "@d"], ["boarding", "sson", " \u00a0", "\u2026..", "&R", ":@", "&A", "nement"], ["sson", " \ufffd", "\ufffds", " ......", "\ufffd", " \u00a0", "\ufffdt", "......"], ["\ufffds", "sson", " \ufffd", "\ufffdt", "&R", "/off", "&nbsp", "ishly"], ["&nbsp", "\ufffds", "athon", "/&", "&R", "\ufffd", "\ufffdt", " \ufffd"], ["\u00ading", "\ufffdt", "/off", "\ufffds", "&nbsp", "\u516c\u53f7", "\\\\\\", "\u0440\u044f\u0434\u0443"], ["&nbsp", " \ufffd", "\\\\\\", "\ufffdt", "\u00ading", "\ufffds", "\ufffd", "\ufffd"], ["\ufffdt", "\u516c\u53f7", "nett", "iance", "\ufffds", "\u54b1\u5011", "lington", "pping"], ["pping", "\u516c\u53f7", "\u54b1\u5011", "iance", "\u54b1\u4eec\u7684", "pper", " comfy", "shore"], ["shore", "\u516c\u53f7", "unky", "\u54b1\u5011", "pping", "\u54b1\u4eec\u7684", " comfy", "/off"], ["/off", " comfortably", " hubby", " effortlessly", " \ufffd", "-going", " \u041f\u043b\u044e\u0441", " thankfully"], [" &", " folks", " incredibly", " thru", " thankfully", " truly", " effortlessly", " showcasing"], [" folks", " incredibly", " &", " OP", "/off", " effortlessly", " Basics", " NYC"], [" folks", " meds", " Philly", "/off", " Basics", " comfy", " ASAP", " vibes"], [" folks", " comfy", " ASAP", " NYC", " meds", " busted", "/off", "\u4e8b\u513f"], [" folks", "&e", " ASAP", " \ufffd", "/off", " entirety", " pricey", " busted"], ["<|endoftext|>", " [...]", " \ufffd", "\ufffd", " requisite", " swiftly", "\u5373\u4fbf", "&e"], ["unky", "adget", "\u00e3ng", "exus", " MEDIAM", "\u8179\u5730", "_UNSUPPORTED", " -->"], [" \ufffd", " //~", "adget", " -->", " ``", "&e", "unky", "exus"], [" \ufffd", " --", " ``", " &#", " requisite", " swiftly", " vastly", " atop"], [" --", " ____", " //<", " &#", " \ufffd", " requisite", "adget", "\\\\\\"], [" ?**", " **\u3010", " ____", " -**", " **#", " !**", " **\u2022", " //<"], [" ____", " ?**", " !**", " @_", " -**", " **\u3010", " **#", "adget"], [" ____", " @_", " ?**", " @", " --", " ...\\", " ___", " !**"], [" ?**", " ____", " @_", " @", " !**", " -**", " *@", " \ufffd"], [" ____", " @", " ...\\", " [...]", " ...", " ......", " ?**", " **"], [" ...", " @", " **", " ____", " ......", " ...\\", " [...]", " -->"], [" @", " ...", " **", " ,", " -", " #", " heavily", " ~"], [" @", " **", " heavily", " hardware", " tech", " -", " \ufffd", " incredibly"], [" **", "\u2011", " tech", " !**", " hardware", " **\u2013", " \ufffd", " \ufffd"], [" !**", "!**", "\u2011", " **", "?**", "**\u201d", " -**", " \ufffd"], [" !**", "!**", "**", "\u2011", "**\u201d", "**\u2013", " \ufffd", " **\u201c"], [" hardware", " !**", "!**", " \ufffd", "**\u201d", "\u2011", " iOS", " \ufffd"], [" hardware", " iOS", " Android", "\u2011", " Hardware", " iPhone", " !**", "**\u201d"], [" hardware", " iOS", " Hardware", " Android", " iPhone", "\u786c\u4ef6", "hardware", " iPad"], [" Android", " iOS", " hardware", " iPhone", " Hardware", " iPad", " smartphone", "Android"], [" Android", " iOS", " iPhone", " hardware", " Hardware", " iPad", "Android", " smartphone"], [" Android", " iOS", " hardware", " iPhone", " Hardware", "Android", " iPad", " smartphone"], [" Android", " iOS", " hardware", " iPhone", " Hardware", " smartphone", " mobile", " smartphones"], [" Android", " iOS", " hardware", " iPhone", " Hardware", " mobile", " smartphone", " Mobile"], [" Android", " iOS", " hardware", " iPhone", " Hardware", " smartphones", " smartphone", " handheld"], [" Android", " iOS", " hardware", " Hardware", " iPhone", " smartphones", " handheld", " smartphone"], [" Android", " iOS", " Hardware", " hardware", " iPhone", " Smartphone", " smartphones", " handheld"], [" Android", " iOS", " Hardware", " hardware", " iPhone", " Mobile", " Smartphone", " handheld"], [" Android", " iOS", " Hardware", " Smartphone", " iPhone", " handheld", " Mobile", "/Linux"], [" Android", " iOS", " Hardware", "/Linux", " Smartphone", "\u4f4e\u7aef", "\u79fb\u52a8\u7aef", " handheld"], [" Android", " iOS", ".**", " Hardware", "\u79fb\u52a8\u7aef", " Smartphone", "**.", "\u4f4e\u7aef"], [" Android", " iOS", "\u79fb\u52a8\u7aef", " Mobile", "Android", " Linux", ".Android", " Smartphone"], [" Android", " iOS", "\u79fb\u52a8\u7aef", " Mobile", " macOS", " Linux", ".**", " Desktop"], [" Android", " iOS", "Android", " iPhone", "\u79fb\u52a8\u7aef", "-android", " Mobile", " iPad"], [" Android", " iOS", " Linux", "Android", " iPhone", " macOS", "-android", " Mobile"], [" Android", "Android", "-android", " iOS", " android", "_android", "\u5b89\u5353", "(Android"], [" Android", "Android", " android", "_android", "-android", "\u5b89\u5353", " Mobile", "(Android"], [" Android", "Android", " android", "_android", " Mobile", "-android", "\u5b89\u5353", "(Android"], [" Android", "Android", " Mobile", " android", "_android", "-android", "\u5b89\u5353", " mobile"], [" Android", "Android", " mid", " Mid", " android", "-android", "_android", " Mobile"], [" Android", "Android", " Mobile", " mobile", " android", " mid", " Mid", "-android"], [" Android", " Mobile", " Mid", "Android", " mid", " mobile", " android", "-android"], [" Android", " Mid", " Mobile", " mid", " mobile", "Android", " Middleware", " Python"]], "p": [[0.7306, 0.2372, 0.0104, 0.0072, 0.0025, 0.0021, 0.0012, 0.001], [0.1762, 0.1138, 0.0369, 0.0186, 0.0164, 0.0145, 0.0145, 0.0128], [0.7937, 0.0948, 0.0738, 0.0113, 0.005, 0.0037, 0.0025, 0.0021], [0.0049, 0.0026, 0.0022, 0.0019, 0.0018, 0.0018, 0.0012, 0.0012], [0.0405, 0.0405, 0.0381, 0.0204, 0.0149, 0.0132, 0.0124, 0.0102], [0.0047, 0.0044, 0.0044, 0.0032, 0.003, 0.0021, 0.0021, 0.0021], [0.0342, 0.0195, 0.0183, 0.0162, 0.0152, 0.0126, 0.0063, 0.0063], [0.0285, 0.0119, 0.0092, 0.0082, 0.0077, 0.0068, 0.0063, 0.006], [0.0281, 0.0171, 0.0125, 0.0091, 0.0076, 0.0071, 0.0063, 0.0063], [0.0119, 0.0044, 0.0041, 0.0039, 0.0034, 0.0034, 0.0034, 0.003], [0.0391, 0.0304, 0.0153, 0.0119, 0.0112, 0.0112, 0.0068, 0.006], [0.0037, 0.0034, 0.0032, 0.003, 0.0024, 0.0021, 0.002, 0.002], [0.0029, 0.0021, 0.0021, 0.002, 0.0016, 0.0016, 0.0015, 0.0015], [0.0033, 0.0012, 0.0011, 0.0011, 0.001, 0.001, 0.0009, 0.0009], [0.0038, 0.0028, 0.0028, 0.0023, 0.0022, 0.0021, 0.002, 0.0019], [0.05, 0.0366, 0.0268, 0.0098, 0.0072, 0.0064, 0.005, 0.005], [0.0386, 0.0234, 0.0125, 0.0059, 0.0056, 0.0043, 0.0038, 0.0038], [0.0106, 0.0082, 0.0073, 0.0068, 0.0056, 0.0056, 0.0053, 0.0047], [0.0065, 0.0058, 0.0054, 0.0051, 0.004, 0.0037, 0.0037, 0.0031], [0.0087, 0.0068, 0.0047, 0.0044, 0.0039, 0.0036, 0.0034, 0.003], [0.0122, 0.0095, 0.0074, 0.0065, 0.0061, 0.0048, 0.0042, 0.0031], [0.0025, 0.0022, 0.0019, 0.0017, 0.0017, 0.0016, 0.0014, 0.0014], [0.0043, 0.0028, 0.0026, 0.0026, 0.0023, 0.0021, 0.0021, 0.0021], [0.0342, 0.0152, 0.0076, 0.0049, 0.0049, 0.0043, 0.0026, 0.0025], [0.007, 0.0055, 0.0048, 0.0038, 0.0031, 0.0031, 0.0029, 0.0028], [0.0307, 0.0239, 0.0211, 0.0145, 0.0106, 0.0094, 0.0069, 0.0064], [0.0396, 0.0225, 0.0088, 0.0083, 0.0083, 0.0065, 0.0061, 0.0057], [0.1148, 0.029, 0.0165, 0.0137, 0.0121, 0.0094, 0.0089, 0.0073], [0.0401, 0.0294, 0.0229, 0.0167, 0.0095, 0.0062, 0.0054, 0.0051], [0.1606, 0.0669, 0.0521, 0.0406, 0.0358, 0.0316, 0.0316, 0.0297], [0.4247, 0.1468, 0.0575, 0.0507, 0.0395, 0.0271, 0.0199, 0.0113], [0.3739, 0.0888, 0.0394, 0.0175, 0.0164, 0.0145, 0.0128, 0.0113], [0.1155, 0.0794, 0.0147, 0.0107, 0.0107, 0.0101, 0.0089, 0.0084], [0.0538, 0.0347, 0.0186, 0.0186, 0.0164, 0.0088, 0.0078, 0.0078], [0.0708, 0.043, 0.043, 0.0261, 0.0158, 0.0131, 0.0131, 0.0123], [0.0774, 0.047, 0.0366, 0.0366, 0.0344, 0.0196, 0.0173, 0.0173], [0.0588, 0.0404, 0.0168, 0.0149, 0.014, 0.014, 0.014, 0.0131], [0.0954, 0.0544, 0.0374, 0.0351, 0.0273, 0.0177, 0.0114, 0.0107], [0.2628, 0.1241, 0.0624, 0.0551, 0.0429, 0.0123, 0.0123, 0.0102], [0.2625, 0.192, 0.124, 0.0706, 0.0378, 0.0168, 0.0148, 0.0148], [0.4654, 0.194, 0.076, 0.0714, 0.0337, 0.0141, 0.0141, 0.0132], [0.5096, 0.2124, 0.0782, 0.0782, 0.0369, 0.0088, 0.0077, 0.0068], [0.4269, 0.2016, 0.1223, 0.0742, 0.0397, 0.0121, 0.0083, 0.0073], [0.4419, 0.1266, 0.1189, 0.0598, 0.0562, 0.0118, 0.0098, 0.0098], [0.3912, 0.1532, 0.1053, 0.0564, 0.0221, 0.0195, 0.0172, 0.0143], [0.319, 0.1507, 0.1102, 0.0406, 0.0381, 0.0204, 0.0149, 0.014], [0.2431, 0.1385, 0.0952, 0.084, 0.0187, 0.0121, 0.0114, 0.0089], [0.2144, 0.1222, 0.0696, 0.0273, 0.0226, 0.0212, 0.0129, 0.0094], [0.2188, 0.1814, 0.0296, 0.0169, 0.0158, 0.0123, 0.0109, 0.0096], [0.1621, 0.0924, 0.03, 0.0265, 0.0234, 0.0133, 0.0091, 0.0086], [0.0676, 0.0635, 0.0385, 0.034, 0.0206, 0.0206, 0.0171, 0.0125], [0.7849, 0.0443, 0.0105, 0.0068, 0.0068, 0.0053, 0.0044, 0.0041], [0.7623, 0.0296, 0.0168, 0.007, 0.0058, 0.0058, 0.0048, 0.0048], [0.9366, 0.025, 0.003, 0.002, 0.0018, 0.0018, 0.0018, 0.0017], [0.9732, 0.0178, 0.0013, 0.0013, 0.0005, 0.0005, 0.0005, 0.0004], [0.9978, 0.0009, 0.0003, 0.0002, 0.0002, 0.0002, 0.0001, 0.0001], [0.999, 0.0005, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9991, 0.0004, 0.0001, 0.0001, 0.0001, 0.0001, 0.0, 0.0], [0.9993, 0.0003, 0.0002, 0.0001, 0.0001, 0.0001, 0.0, 0.0], [0.999, 0.0004, 0.0002, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9995, 0.0003, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9983, 0.0006, 0.0004, 0.0003, 0.0001, 0.0001, 0.0001, 0.0001], [0.909, 0.0513, 0.0352, 0.0015, 0.0004, 0.0003, 0.0002, 0.0001]], "ranks": {"Python": [103241, 230463, 148062, 234177, 208352, 193533, 96018, 185342, 153785, 180425, 152752, 184570, 151026, 178067, 113525, 120752, 93423, 86215, 105558, 149347, 98366, 150285, 105626, 42749, 99345, 83453, 57926, 15654, 12061, 4855, 4044, 5791, 5071, 6394, 8813, 2218, 666, 739, 1041, 467, 337, 250, 192, 144, 135, 124, 248, 188, 225, 235, 267, 49, 54, 77, 35, 52, 39, 63, 54, 52, 39, 23, 8]}}, {"pos": 386, "top": [["s", "a", ".", "o", "i", ",", "er", "\u201d."], ["s", "\u201d.", "\u201d,", "a", "sWith", "  \n\n", " \u2013", "s\u00f3"], ["s", ",", ".", "\u2013", "\u2026.", " \u2013", "\u2026", "a"], ["s", "sWith", "sik", "szeit", "sche", "erweise", "sze", "schaft"], ["s", "ed", "a", "sWith", "s\u00f3", "sik", "sche", "\u0627\u062a"], ["s", "a", "sWith", "s\u00f3", "(Android", "ed", " Android", "sver"], ["s", " Android", "(Android", " \u00bb.", "a", ".Android", "sWith", "sak"], ["s", "(Android", " Android", "sWith", ".Android", "sak", "s\u00f3", " android"], ["s", ".", " \u00bb.", " Android", "\u00bb.", "(Android", "\u201d.", "!\u201d."], ["s", ",", " Android", "(Android", ".", ".Android", "(android", " android"], ["s", " Android", ".", ",", "(Android", ".Android", " android", "a"], [" Android", "s", "(Android", ".Android", " android", "(android", "sak", " smartphones"], [" Android", "s", "(Android", ".Android", " android", "(android", "sak", "\u76f8\u8f85\u76f8\u6210"], [" Android", "s", "(Android", ".Android", " android", ",", "(android", "-style"], ["s", ",", " Android", ".", ".Android", "a", " android", " "], ["s", " Android", ",", " popular", ".Android", " even", " massively", " largely"], ["s", ",", " Android", "a", " popular", ".Android", "(Android", " massively"], ["s", " Android", "(Android", ".Android", ",", " android", " smartphones", "a"], [" Android", "s", "(Android", ".Android", " android", " Africa", " Google", ".google"], [" Android", "(Android", "s", ".Android", " ,", " Africa", " largely", " massively"], [" ,", "s", "<|endoftext|>", " Android", "(Android", ".Android", "a", " Africa"], [" Android", ".Android", "(Android", " android", " ``", "(android", "Android", "ANDROID"], [" Android", ".Android", " ``", "(Android", " ,", "Android", " android", "ANDROID"], [" ,", " Android", " ``", ".Android", " .", "(Android", " Africa", "Android"], [" Android", ".Android", "(Android", "Android", " android", " ``", "ANDROID", "_ANDROID"], [" Android", "(Android", ".Android", " android", "Android", "ANDROID", "_ANDROID", "/android"], [" Android", " android", ".Android", "(Android", "Android", " smartphone", "_android", "ANDROID"], [" Android", " ,", " android", "Android", ".Android", "(Android", " Africa", " India"], [" Android", " android", "Android", "(Android", ".Android", " Africa", "/android", "ANDROID"], [" Android", " android", "(Android", "Android", ".Android", " smartphone", " smartphones", " Africa"], [" Android", " android", "(Android", " .", ".Android", "Android", " smartphone", " smartphones"], [" Android", " .", " ,", " android", " @", " technology", " mobile", " ..."], [" Android", " .", " ,", " android", " technology", " mobile", " @", " via"], [" Android", " android", "(Android", " smartphone", "Android", " technology", "/android", ".Android"], [" Android", " android", "Android", "(Android", " smartphone", ".Android", "/android", " APK"], [" Android", "Android", " android", "(Android", ".Android", " smartphone", " Java", " APK"], [" Android", "Android", " android", "(Android", ".Android", " APK", " Java", " smartphone"], [" Android", "Android", " android", "(Android", ".Android", " smartphone", " APK", "/android"], [" Android", "Android", " android", "(Android", ".Android", " iOS", "/android", " smartphone"], [" Android", "Android", " android", "(Android", ".Android", " Java", " iOS", "/android"], [" Android", "Android", "(Android", " android", ".Android", " iOS", " Java", "/android"], [" Android", "Android", " android", "(Android", ".Android", " Java", "/android", " iOS"], [" Android", "Android", "(Android", " android", ".Android", " Java", " iOS", "/android"], [" Android", "Android", "(Android", " android", ".Android", " Java", " iOS", "/android"], [" Android", "Android", " android", "(Android", ".Android", " Java", " iOS", " via"], [" Android", "(Android", " android", ".Android", " via", "Android", " Java", " iOS"], [" Android", "(Android", " via", " android", "Android", " Java", ".Android", " iOS"], [" Android", " via", " specifically", "(Android", "Android", " using", " android", " due"], [" Android", " via", "(Android", " specifically", " APK", " under", "/android", " android"], [" Android", "**.", "(Android", " via", " **.", "*.", ".Android", "."], ["**.", "*.", ".", "().", " **.", ".**", " .", " ()."], ["*.", "**.", ".*", ".", ".**", " .**", "().", " ."], ["**.", "*.", ".**", ".", ".*", " **.", "`.", "()."], ["**.", "*.", ".**", ".", ".*", "`.", "\\.", "\"."], ["**.", "*.", ".**", ".*", "`.", ".", "**\u3002", " **."], ["**.", "*.", ".**", "`.", ".*", "**\u3002", ".", "'."], ["**.", ".**", "**\u3002", "*.", " **.", "`.", "**", " .**"], ["**.", ".**", "*.", "**\u3002", " breaks", " breaking", " **.", "\u8dcc\u7834"], ["**.", "*.", ".**", "**\u3002", "`.", " breaking", " breaks", " **."], [" hitting", " hits", "**.", " hit", " Hits", " Hit", "*.", "**"], ["**.", " hitting", " hits", " hit", "*.", "`.", "**", "."], ["**.", " hitting", " hits", "`.", ".**", "**", "*.", "**,"], ["**.", "**", ".**", "**,", "**\u3002", "**:", " **.", "*."]], "p": [[0.9707, 0.0228, 0.0018, 0.0015, 0.0006, 0.0005, 0.0002, 0.0001], [0.9705, 0.0026, 0.0026, 0.0019, 0.0016, 0.0014, 0.0005, 0.0004], [0.7604, 0.0802, 0.0551, 0.0379, 0.0148, 0.0131, 0.0115, 0.0031], [0.122, 0.0892, 0.0576, 0.0155, 0.0113, 0.01, 0.0078, 0.0073], [0.9946, 0.0012, 0.0009, 0.0004, 0.0001, 0.0001, 0.0001, 0.0001], [0.9906, 0.0014, 0.0011, 0.0004, 0.0003, 0.0003, 0.0002, 0.0001], [0.9984, 0.0003, 0.0002, 0.0001, 0.0001, 0.0001, 0.0, 0.0], [0.9769, 0.0048, 0.0048, 0.0015, 0.001, 0.0004, 0.0004, 0.0003], [0.9374, 0.0207, 0.0067, 0.0038, 0.0036, 0.0026, 0.0025, 0.0012], [0.8075, 0.1027, 0.0115, 0.0102, 0.009, 0.0035, 0.0012, 0.0008], [0.8428, 0.0539, 0.0198, 0.012, 0.0064, 0.0037, 0.0029, 0.0027], [0.3805, 0.0621, 0.0515, 0.0484, 0.0189, 0.0101, 0.0058, 0.0035], [0.3597, 0.0708, 0.0518, 0.0379, 0.023, 0.0116, 0.0062, 0.0058], [0.2274, 0.0575, 0.0349, 0.0225, 0.0187, 0.0165, 0.0094, 0.0044], [0.225, 0.0645, 0.0502, 0.0127, 0.005, 0.005, 0.0041, 0.0032], [0.184, 0.032, 0.0194, 0.0052, 0.0046, 0.0038, 0.0036, 0.0032], [0.6985, 0.0186, 0.0136, 0.0029, 0.0024, 0.002, 0.0017, 0.0013], [0.2795, 0.1028, 0.0168, 0.0168, 0.009, 0.0045, 0.0033, 0.0033], [0.1556, 0.0691, 0.0475, 0.037, 0.005, 0.0047, 0.0041, 0.0037], [0.0814, 0.0361, 0.0339, 0.0248, 0.0133, 0.0063, 0.0052, 0.0043], [0.0429, 0.0379, 0.0379, 0.0334, 0.0102, 0.0096, 0.007, 0.0051], [0.4205, 0.1205, 0.1063, 0.0105, 0.0068, 0.005, 0.0044, 0.0039], [0.3863, 0.0918, 0.0631, 0.0338, 0.011, 0.0103, 0.0103, 0.0038], [0.1385, 0.0654, 0.029, 0.0155, 0.0073, 0.0039, 0.0039, 0.0035], [0.4386, 0.0762, 0.0492, 0.0462, 0.028, 0.0132, 0.0086, 0.0059], [0.8627, 0.0379, 0.0334, 0.023, 0.009, 0.0026, 0.002, 0.0018], [0.8852, 0.0251, 0.0236, 0.0208, 0.0068, 0.0018, 0.0016, 0.0016], [0.6431, 0.0438, 0.0249, 0.0151, 0.0151, 0.0125, 0.0092, 0.0076], [0.8762, 0.0249, 0.0194, 0.0142, 0.0133, 0.0025, 0.0018, 0.0017], [0.8783, 0.032, 0.0234, 0.0161, 0.0076, 0.0032, 0.0019, 0.0017], [0.8718, 0.0383, 0.0117, 0.008, 0.0049, 0.0046, 0.0033, 0.0023], [0.3113, 0.1471, 0.0739, 0.0187, 0.0165, 0.0113, 0.0094, 0.0078], [0.4063, 0.1027, 0.0517, 0.0294, 0.0158, 0.0079, 0.0074, 0.0042], [0.7423, 0.069, 0.0154, 0.0082, 0.0077, 0.0041, 0.0037, 0.0034], [0.8359, 0.0686, 0.0286, 0.0173, 0.0064, 0.005, 0.0047, 0.0023], [0.8082, 0.0428, 0.0402, 0.026, 0.007, 0.004, 0.0033, 0.0033], [0.7647, 0.059, 0.0405, 0.0405, 0.0116, 0.0048, 0.0045, 0.0038], [0.8777, 0.0495, 0.034, 0.0182, 0.0049, 0.0017, 0.0017, 0.0013], [0.9, 0.0395, 0.0272, 0.0165, 0.0044, 0.0018, 0.0013, 0.0009], [0.8567, 0.0548, 0.0293, 0.0293, 0.0089, 0.0027, 0.0024, 0.0014], [0.8286, 0.0771, 0.0321, 0.0321, 0.0111, 0.0021, 0.0019, 0.0016], [0.8843, 0.0641, 0.0208, 0.0184, 0.0046, 0.0012, 0.0011, 0.001], [0.8632, 0.0625, 0.0295, 0.023, 0.0075, 0.0031, 0.0016, 0.0015], [0.8768, 0.0495, 0.0265, 0.0206, 0.0076, 0.0032, 0.002, 0.0016], [0.8634, 0.0335, 0.0295, 0.0216, 0.0123, 0.0058, 0.004, 0.002], [0.8256, 0.0282, 0.0207, 0.0125, 0.0098, 0.0081, 0.0076, 0.0056], [0.67, 0.0623, 0.0585, 0.0179, 0.0123, 0.0108, 0.0102, 0.0079], [0.4765, 0.1063, 0.0502, 0.0391, 0.0185, 0.0144, 0.0135, 0.0105], [0.2892, 0.1754, 0.0645, 0.0324, 0.0237, 0.0153, 0.0135, 0.0119], [0.1339, 0.0633, 0.0384, 0.0193, 0.0181, 0.0141, 0.011, 0.0097], [0.3802, 0.2961, 0.0848, 0.0215, 0.0189, 0.0178, 0.0178, 0.013], [0.4876, 0.2303, 0.0483, 0.0275, 0.0243, 0.013, 0.0122, 0.0108], [0.4461, 0.3474, 0.0604, 0.047, 0.0323, 0.0072, 0.0053, 0.0041], [0.5398, 0.2889, 0.0731, 0.0305, 0.0269, 0.0036, 0.0023, 0.0022], [0.668, 0.2458, 0.0202, 0.0079, 0.0058, 0.0045, 0.0035, 0.0033], [0.6209, 0.2588, 0.0212, 0.0114, 0.01, 0.005, 0.0042, 0.0031], [0.9646, 0.0177, 0.0057, 0.0051, 0.0011, 0.0011, 0.0005, 0.0004], [0.9429, 0.0222, 0.0082, 0.0046, 0.0022, 0.0019, 0.0017, 0.0013], [0.9651, 0.0121, 0.0083, 0.0022, 0.0021, 0.0011, 0.0008, 0.0005], [0.7685, 0.1178, 0.081, 0.0181, 0.003, 0.0015, 0.0012, 0.0008], [0.5695, 0.3048, 0.068, 0.0081, 0.0072, 0.0052, 0.0038, 0.0034], [0.987, 0.0024, 0.0022, 0.0017, 0.0015, 0.0015, 0.0013, 0.0003], [0.9521, 0.0474, 0.0002, 0.0002, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Python": [11520, 64802, 78276, 70609, 10295, 15638, 2697, 8354, 3985, 12489, 1764, 5689, 4008, 5221, 3404, 8277, 7737, 3205, 3627, 4976, 1576, 3894, 1394, 1539, 1181, 871, 741, 359, 292, 299, 240, 642, 491, 253, 212, 58, 16, 31, 30, 20, 23, 30, 30, 42, 45, 62, 103, 180, 432, 828, 846, 1082, 1851, 1254, 995, 109, 41, 45, 47, 15, 12, 16, 38]}}, {"pos": 387, "top": [["s", "  \n\n", " \u2013", " \n\n", "**.", "\u2026.", "  \n", "   \n\n"], ["s", " **[", " **\u2013", " **", " \"**", "**!", " **:", " **."], ["s", " **\u2013", " **[", " \n\n", "**.", "**!", "**\u2013", " **."], [" **\u300c", " **:", " **\u00ab", " **+", " **\u201e", " **\u3010", " **.", " **"], [" **#", " **.", " **:", " **", " **+", " \"**", " **-", " **["], [" **", " **.", " **:", " **#", " **+", "**!", " \"**", " **-"], [" **", " **.", " **[", " **\u00ab", " **#", "**!", " **\u300c", " **-"], [" **", " **\u00ab", " **\u201e", " **#", " **\u300c", " **:", " **-", " **+"], [" \n\n", " **#", " **\u201e", " **\u00ab", " **", "**!", " **\u300c", " **["], [" **", " **\u00ab", " **#", " **\u300c", " \"**", " **\u201e", " **+", "**!"], [" **", " **\u00ab", " **\u300c", " **#", " **\u201e", " \"**", " **[", " **\u3010"], [" **", " **\u00ab", " **\u300c", " **\u201e", " **#", " **+", " \"**", " **:"], [" **\u00ab", " **\u201e", " **\u300c", " **", " **:", " **\u3010", " **#", " **+"], [" **\u00ab", " **\u300c", " **\u201e", " **", " \u00bb**", " \"**", "**!", " **+"], [" **", "s", "a\u015f", " \"**", "sste", "**!", " **\u201e", "\u03c2"], [" **", "s", "a\u015f", " whilst", "sste", " \"**", " arguably", "\u65b0\u52a0\u5761"], ["s", " **", "**!", "a\u015f", " \"**", " incredibly", " arguably", "sii"], [" **", "**!", " **\u201e", " \"**", "s", " **#", " (**", " **\u00ab"], [" **", "**!", " \"**", " **\u201e", "s", " **#", "a\u015f", " **+"], [" \n\n", " **", "s", "**!", " arguably", " incredibly", " swiftly", " **#"], [" \n\n", "<|endoftext|>", "\n\n", "  \n\n", " \r\n\r\n", " \n\n\n\n", "s", "<|file_sep|>"], [" **", " **#", " \"**", " **+", " !**", " **\u3010", "**!", "a\u015f"], [" **", " \n\n", " arguably", " swiftly", " **#", "a\u015f", " \r\n\r\n", "\r\n\r\n"], [" \n\n", "<|endoftext|>", "\n\n", " **", " swiftly", " arguably", " \r\n\r\n", "\r\n\r\n"], [" \n\n", "\n\n", "\r\n\r\n", " \r\n\r\n", "  \n\n", " \n\n\n\n", "\t\n\n", "<|im_end|>"], [" \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\n\n", " **#", " arguably"], [" \n\n", "\n\n", " **", " \r\n\r\n", "\r\n\r\n", "  \n\n", " \n\n\n\n", " arguably"], [" \n\n", "\n\n", " \r\n\r\n", "\r\n\r\n", " **", "  \n\n", " \n\n\n\n", " arguably"], [" \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", " **", " ...", "\r\n\r\n", "<|endoftext|>", " \r\n\r\n"], [" \n\n", " **", "\n\n", " ...", "  \n\n", " \u2014", " heavily", " extremely"], [" heavily", " because", " extremely", " rapidly", " deeply", " overwhelmingly", " fundamentally", " incredibly"], [" fundamentally", " heavily", " overwhelmingly", " aggressively", " relentlessly", " purely", " extremely", " rapidly"], [" aggressively", " relentlessly", " overwhelmingly", " heavily", " notoriously", " meticulously", " fundamentally", "\u2014even"], [" notoriously", " aggressively", "\u2014even", " relentlessly", " overwhelmingly", " fundamentally", " \u2014", " heavily"], ["\u6839\u672c\u65e0\u6cd5", " notoriously", " aggressively", " relentlessly", " fundamentally", " overwhelmingly", " relentless", " brutally"], ["\u6839\u672c\u65e0\u6cd5", " notoriously", " aggressively", " relentlessly", " fundamentally", " relentless", " overwhelmingly", "\u2014even"], ["\u6839\u672c\u65e0\u6cd5", " relentlessly", " notoriously", " fundamentally", " aggressively", " impossible", " relentless", " overwhelmingly"], ["\u6839\u672c\u65e0\u6cd5", " relentlessly", " impossible", " notoriously", " relentless", " fundamentally", " aggressively", "\u2014even"], ["\u6839\u672c\u65e0\u6cd5", " impossible", " relentlessly", " relentless", " notoriously", " fundamentally", " aggressively", " brutal"], ["\u6839\u672c\u65e0\u6cd5", " impossible", " aggressively", " relentlessly", " notoriously", " fundamentally", " relentless", "\u2014even"], ["\u6839\u672c\u65e0\u6cd5", " impossible", " aggressively", " notoriously", " relentlessly", " fundamentally", " inherently", " relentless"], [" impossible", " notoriously", "\u6839\u672c\u65e0\u6cd5", " aggressively", " imposs", " relentlessly", " relentless", " fundamentally"], [" impossible", "\u6839\u672c\u65e0\u6cd5", " notoriously", " aggressively", " imposs", " drastically", " inherently", " relentlessly"], [" impossible", "\u6839\u672c\u65e0\u6cd5", " notoriously", " inherently", " aggressively", " fundamentally", " drastically", " imposs"], ["\u6839\u672c\u65e0\u6cd5", " impossible", " fundamentally", " imposs", " notoriously", " inherently", " realistically", " absolutely"], ["\u6839\u672c\u65e0\u6cd5", " impossible", " fundamentally", " imposs", " inherently", " utterly", " absolutely", " attempting"], ["\u6839\u672c\u65e0\u6cd5", " impossible", " imposs", "\u5c06\u65e0\u6cd5", "\u7edd\u5bf9\u4e0d\u80fd", "\u6839\u672c\u4e0d\u662f", " utterly", " fundamentally"], ["\u6839\u672c\u65e0\u6cd5", " impossible", " Impossible", " imposs", "\u7edd\u5bf9\u4e0d\u80fd", "\u65e0\u6cd5\u6ee1\u8db3", " attempting", "Impossible"], ["\u6839\u672c\u65e0\u6cd5", "  \n\n", " \n\n", "  \n", " impossible", " specifically", " Impossible", "Impossible"], ["\u6839\u672c\u65e0\u6cd5", " \n\n", "  \n\n", "\n\n", "  \n", " attempting", " Impossible", "  \n  \n"], [" \n\n", "  \n\n", "\u6839\u672c\u65e0\u6cd5", " specifically", " Specifically", "\n\n", "  \n", "  \n  \n"], [" \n\n", "  \n\n", " specifically", "\n\n", " Specifically", "\u6839\u672c\u65e0\u6cd5", " attempting", "  \n  \n"], [" specifically", " Specifically", "\u5177\u4f53\u6765\u8bf4", "specific", " espec\u00edf", " attempting", "Specific", "Attempting"], [" specifically", " Specifically", "\u5177\u4f53\u6765\u8bf4", "specific", " espec\u00edf", " attempting", "Specific", " Python"], [" specifically", " Specifically", "\n\n", " Python", "\u5177\u4f53\u6765\u8bf4", " \n\n", "specific", " espec\u00edf"], [" specifically", "\n\n", " Specifically", " Python", " \n\n", "\u5177\u4f53\u6765\u8bf4", "specific", " espec\u00edf"], [" Specifically", "\n\n", " specifically", " Python", " \n\n", "\u5177\u4f53\u6765\u8bf4", "specific", " espec\u00edf"], [" hitting", " Python", "\n\n", " Specifically", " specifically", " attempting", "Python", " Pure"], ["\n\n", " Specifically", " Python", " specifically", " Pure", " \n\n", " hitting", " pure"], ["\n\n", " Specifically", " \n\n", " Python", " Period", " Pure", " specifically", " hitting"], [" Specifically", " Pure", "\n\n", " Python", " Period", " Plain", " Nothing", " Standard"]], "p": [[0.9211, 0.0589, 0.007, 0.0062, 0.0031, 0.0006, 0.0003, 0.0002], [0.4063, 0.1495, 0.0907, 0.0485, 0.0428, 0.0428, 0.0378, 0.0378], [0.4855, 0.1228, 0.0956, 0.0745, 0.0657, 0.0399, 0.0274, 0.0274], [0.1888, 0.1471, 0.1145, 0.0695, 0.0613, 0.0396, 0.0372, 0.0349], [0.1978, 0.154, 0.1359, 0.1359, 0.0825, 0.0567, 0.0441, 0.0441], [0.2507, 0.1521, 0.1342, 0.0922, 0.0559, 0.0494, 0.0436, 0.0436], [0.3077, 0.0778, 0.0778, 0.0687, 0.0606, 0.0535, 0.0368, 0.0368], [0.2629, 0.1242, 0.1096, 0.0854, 0.0753, 0.0587, 0.0403, 0.0356], [0.1938, 0.1038, 0.1038, 0.0916, 0.0916, 0.0713, 0.0713, 0.049], [0.1854, 0.1444, 0.1124, 0.0876, 0.0773, 0.0499, 0.0389, 0.0343], [0.3813, 0.159, 0.1403, 0.0663, 0.0455, 0.0313, 0.0244, 0.019], [0.3107, 0.1884, 0.1884, 0.1009, 0.0371, 0.0255, 0.0199, 0.0155], [0.286, 0.2227, 0.2227, 0.0929, 0.0266, 0.0152, 0.0152, 0.0118], [0.3166, 0.1592, 0.1592, 0.1165, 0.019, 0.0179, 0.0102, 0.009], [0.5518, 0.04, 0.0242, 0.0147, 0.0115, 0.0108, 0.0084, 0.0069], [0.2912, 0.1766, 0.0447, 0.012, 0.01, 0.0094, 0.0094, 0.006], [0.9399, 0.053, 0.0012, 0.0004, 0.0003, 0.0002, 0.0002, 0.0002], [0.6856, 0.2522, 0.0207, 0.0086, 0.0076, 0.003, 0.0025, 0.0021], [0.7109, 0.1797, 0.0157, 0.0139, 0.0089, 0.0074, 0.004, 0.004], [0.2308, 0.1914, 0.1236, 0.0661, 0.0259, 0.0157, 0.009, 0.0079], [0.7801, 0.1972, 0.0046, 0.0044, 0.0014, 0.0011, 0.001, 0.0007], [0.2895, 0.0503, 0.0185, 0.0127, 0.0105, 0.0093, 0.0093, 0.0082], [0.1579, 0.1393, 0.0156, 0.0138, 0.0101, 0.0101, 0.0095, 0.0074], [0.3682, 0.064, 0.0388, 0.0251, 0.0172, 0.0162, 0.0134, 0.0111], [0.8697, 0.1039, 0.0097, 0.0097, 0.004, 0.0007, 0.0002, 0.0002], [0.8059, 0.0515, 0.0377, 0.0259, 0.0259, 0.0062, 0.0033, 0.0027], [0.7274, 0.0677, 0.0527, 0.0249, 0.0234, 0.0038, 0.002, 0.0012], [0.8764, 0.0924, 0.011, 0.0052, 0.0041, 0.0019, 0.0006, 0.0004], [0.835, 0.1281, 0.0093, 0.0087, 0.0072, 0.0036, 0.0008, 0.0004], [0.9642, 0.0121, 0.0074, 0.0065, 0.0035, 0.0014, 0.0008, 0.0004], [0.8778, 0.0816, 0.011, 0.0086, 0.0052, 0.0015, 0.0012, 0.001], [0.5772, 0.1137, 0.0608, 0.0445, 0.0082, 0.0068, 0.0068, 0.0053], [0.0306, 0.0239, 0.0239, 0.0224, 0.0211, 0.0186, 0.0175, 0.0175], [0.0432, 0.0297, 0.0231, 0.0217, 0.0192, 0.018, 0.018, 0.0169], [0.0325, 0.0305, 0.021, 0.0197, 0.0185, 0.0174, 0.0174, 0.0163], [0.0496, 0.032, 0.0301, 0.0301, 0.025, 0.0234, 0.0207, 0.0207], [0.051, 0.051, 0.0373, 0.0329, 0.0256, 0.0176, 0.0165, 0.0155], [0.0535, 0.0444, 0.0417, 0.0417, 0.0391, 0.0223, 0.0197, 0.0197], [0.0794, 0.0452, 0.0375, 0.0352, 0.0331, 0.0242, 0.0227, 0.0189], [0.0845, 0.0481, 0.0452, 0.0352, 0.0331, 0.0292, 0.0258, 0.0201], [0.0502, 0.0502, 0.0472, 0.0443, 0.0286, 0.0286, 0.0269, 0.0237], [0.0829, 0.0444, 0.0392, 0.0392, 0.0286, 0.0269, 0.0253, 0.0174], [0.0525, 0.0525, 0.0493, 0.0384, 0.0384, 0.0384, 0.0264, 0.0248], [0.2144, 0.0577, 0.0577, 0.0309, 0.0256, 0.0199, 0.0187, 0.0155], [0.2478, 0.0519, 0.0458, 0.0296, 0.0216, 0.0179, 0.0169, 0.0158], [0.1835, 0.0596, 0.0494, 0.0339, 0.03, 0.0248, 0.0206, 0.0193], [0.1613, 0.1257, 0.0558, 0.0298, 0.0263, 0.0263, 0.0263, 0.0247], [0.3909, 0.0819, 0.0467, 0.0235, 0.0235, 0.0195, 0.0161, 0.0152], [0.7979, 0.0273, 0.01, 0.0094, 0.0078, 0.0069, 0.0061, 0.0057], [0.7379, 0.0223, 0.0135, 0.0112, 0.0082, 0.0072, 0.0068, 0.006], [0.5704, 0.0875, 0.0681, 0.0413, 0.0118, 0.0111, 0.0087, 0.0072], [0.3426, 0.1619, 0.0982, 0.0866, 0.0866, 0.0141, 0.011, 0.0097], [0.3259, 0.1744, 0.1199, 0.1058, 0.0303, 0.0267, 0.0196, 0.0173], [0.4014, 0.1477, 0.115, 0.0655, 0.0329, 0.0226, 0.02, 0.0176], [0.9567, 0.0371, 0.0035, 0.0011, 0.0006, 0.0005, 0.0001, 0.0001], [0.9384, 0.0467, 0.0072, 0.003, 0.0011, 0.0009, 0.0004, 0.0003], [0.4108, 0.3199, 0.1713, 0.063, 0.0085, 0.0052, 0.004, 0.0031], [0.2929, 0.2929, 0.2585, 0.1078, 0.01, 0.0069, 0.0033, 0.0033], [0.383, 0.338, 0.1596, 0.0754, 0.0102, 0.0048, 0.0023, 0.0021], [0.2872, 0.2534, 0.2237, 0.1057, 0.0932, 0.0036, 0.0032, 0.0032], [0.8361, 0.0778, 0.0197, 0.0174, 0.0119, 0.0119, 0.0119, 0.0082], [0.9046, 0.0273, 0.0213, 0.0146, 0.01, 0.0069, 0.0061, 0.0033], [0.5229, 0.1322, 0.1322, 0.103, 0.026, 0.0066, 0.0062, 0.0062]], "ranks": {"Python": [48457, 217401, 171835, 172613, 141709, 177745, 66128, 118552, 113555, 157237, 119020, 148038, 151520, 194258, 134548, 153309, 60902, 41772, 103750, 144128, 85192, 183794, 154311, 130504, 37325, 83413, 130455, 108743, 83219, 55435, 36291, 28283, 49299, 87539, 97069, 65517, 80067, 57015, 43931, 32895, 25402, 24724, 14096, 15684, 15475, 10580, 15639, 18598, 19588, 14230, 5881, 348, 552, 277, 334, 8, 4, 4, 4, 2, 3, 4, 4]}}, {"pos": 388, "top": [[".", "\u00a0\u00a0", " \u200b\u200b", ",", "\u2026.", "\u00a0", " \u2013", "  \n\n"], ["  \n\n", "\uff1a**", "\uff1f**", " **:", " **'", "**!", "  \r\n\r\n", " \u2013**"], ["\u3002", " \n\n", "\u2026\"", "\u2026**", " \u2013", ".", "\u2026..", "  \n\n"], [" **\u3010", "\uff1f**", " **\u25cb", " **:", " **:**", " milfs", "\uff1a**", " Blowjob"], [" **\u201c", " **\u3010", " **:", "\uff1a**", " **#", "\uff1f**", "**\u3002", "  \n\n"], [" **\u201c", " **\u3010", "**!", " **:", "**\u3002", "\uff1f**", " **#", " **\""], [" **\u3010", " **\u201c", "**\u3002", "\uff1f**", "  \n\n", "\uff09**", "**!", "\u201d**"], [" **\u3010", " \n\n", "**!", "  \n\n", " **#", " **\u201c", " **'", "   \n\n"], [" \n\n", "  \n\n", "   \n\n", " **\u3010", "     \n\n", "       \n\n", "    \n\n", "      \n\n"], [" **\u3010", " **#", " **'", " **+", " **\"", "**!", " **", " **\u25cb"], [" **\u3010", " **#", " \n\n", " **", " **+", " **:", " **'", " **\""], [" **\u3010", " **:", " **#", " **+", " **'", " **\u25a0", " **", " **\u00ab"], [" **\u3010", " **:", " **'", " **#", " **\u00ab", " **+", " **\u300c", " **"], [" **\u3010", " **'", " milfs", " **+", " **:", " **#", " **\u00ab", " Shemale"], [" **", " **#", " **'", " **+", " **\u3010", " impactful", " \ufffd", "**!"], [" impactful", "\u62e5\u6709\u7740", " incentiv", " mindset", " incredibly", "-esque", " entirety", " transitioning"], [" \n\n", " impactful", " incredibly", "  \n\n", " arguably", " overarching", " mindset", " foundational"], ["  \n\n", " \n\n", "   \n\n", " **", " incredibly", " **\u201c", "**!", " \ufffd"], [" **", " **#", " incredibly", " **'", " **\u201c", "**!", " foundational", " arguably"], [" \n\n", "  \n\n", " incredibly", "\n\n", " **", " **#", " arguably", "<|endoftext|>"], [" \n\n", "  \n\n", "\n\n", "<|endoftext|>", "   \n\n", "\r\n\r\n", " \r\n\r\n", " arguably"], [" **", " **#", " **'", " **\u201c", " **\u3010", " incredibly", "\u62e5\u6709\u7740", " arguably"], [" \n\n", "\n\n", " **", " arguably", "\r\n\r\n", " foundational", "  \n\n", " myriad"], [" \n\n", "\n\n", "  \n\n", "\r\n\r\n", " arguably", "<|endoftext|>", " myriad", " **"], [" \n\n", "\n\n", "  \n\n", "\r\n\r\n", "   \n\n", " \r\n\r\n", "<|im_end|>", "<|endoftext|>"], [" \n\n", "  \n\n", "\n\n", "\r\n\r\n", " **", " \r\n\r\n", "   \n\n", "  \r\n\r\n"], [" \n\n", "  \n\n", "\n\n", " **", "\r\n\r\n", " \r\n\r\n", " arguably", "   \n\n"], [" \n\n", "  \n\n", "\n\n", "\r\n\r\n", " **", " \r\n\r\n", "   \n\n", "<|endoftext|>"], ["  \n\n", " \n\n", "\n\n", "\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", "   \n\n", " \r\n\r\n", " \u2014"], [" \n\n", "  \n\n", "<|endoftext|>", "\n\n", " \u2014", "   \n\n", "\r\n\r\n", " arguably"], ["  \n\n", " \n\n", "<|endoftext|>", " \u2014", "\n\n", "\u2014", " \u201c", " arguably"], ["  \n\n", " \u2014", " \n\n", " \u2013", "<|endoftext|>", "\u2014", "\u2011", " arguably"], ["  \n\n", " \u2014", " \n\n", "<|endoftext|>", "\u2014", "\u2011", "\u2014and", " arguably"], ["  \n\n", " \u2014", "<|endoftext|>", " \n\n", "\u2014even", " arguably", " relentlessly", "\u2014and"], ["  \n\n", "<|endoftext|>", " \u2014", " \n\n", "\u2014even", "\u2014and", "\u2011", " \u2013"], ["  \n\n", " \n\n", " \u2014", "<|endoftext|>", "\u2014even", "   \n\n", " relentlessly", " aggressively"], ["  \n\n", " \u2014", "\u2014even", " \n\n", "<|endoftext|>", " **", " relentlessly", " aggressively"], ["  \n\n", " \u2014", "\u2014even", "<|endoftext|>", " relentlessly", " **", " **\u201c", " aggressively"], ["  \n\n", " \u2014", " **\u201c", "\u2014even", " **", "<|endoftext|>", " relentlessly", " relentless"], ["  \n\n", "<|endoftext|>", " relentlessly", " relentless", " aggressively", " \u2014", " fundamentally", "\u2014even"], [" \u2014", " aggressively", " relentlessly", "\u2014even", " relentless", " fundamentally", " brutally", " rapidly"], [" aggressively", " **", " \u2014", "  \n\n", " relentlessly", "\u2014even", " relentless", " fundamentally"], [" aggressively", " **", " relentless", " relentlessly", " fundamentally", "  \n\n", "\u2014even", " brutally"], [" aggressively", " **", " relentless", " relentlessly", " fundamentally", " brutally", " squarely", "\u2014even"], [" **", " aggressively", "  \n\n", " **\u201c", " fundamentally", " squarely", " relentlessly", " relentless"], ["  \n\n", " **", " **\u201c", " \n\n", "  \r\n\r\n", "   \n\n", "\u2014even", " **\""], [" **", "  \n\n", " **\u201c", "\u2014even", " **#", " **\"", " Because", "**\u2014"], [" **", " **\u201c", " **\"", " **#", " **+", "-**", " **\u2013", " **\u2014"], [" **", "\u7406\u7531\u306f", " **#", " **\"", "\u6839\u672c\u65e0\u6cd5", " **+", " **\u201c", "-**"], ["\u7406\u7531\u306f", "\u7406\u7531", "\u6839\u672c\u65e0\u6cd5", "\u7406\u7531\u662f", "\u539f\u56e0\u5728\u4e8e", "\u7684\u7406\u7531", " **\"", " **\u201c"], ["\u6839\u672c\u65e0\u6cd5", "\u7406\u7531", " **\"", "\u7406\u7531\u306f", "\u7406\u7531\u662f", " **\u201c", " Impossible", "\u539f\u56e0\u5728\u4e8e"], ["\u7406\u7531", "\u7406\u7531\u306f", "\u7406\u7531\u662f", " specifically", " **\"", " Specifically", " reason", "\u7684\u7406\u7531"], ["\u7406\u7531", "\u7406\u7531\u306f", " reason", " reasons", "\u7406\u7531\u662f", " Reason", " Reasons", "\u7684\u7406\u7531"], [" specifically", " Specifically", "\u7406\u7531", "\u5177\u4f53\u6765\u8bf4", " attempting", " here", " Here", " reason"], [" specifically", " Specifically", " Python", "\u5177\u4f53\u6765\u8bf4", " attempting", "\u7406\u7531", " here", " Here"], [" Python", " Specifically", "Python", " specifically", " python", " attempting", " Trying", " Here"], [" Python", " Specifically", "Python", " specifically", " attempting", " Trying", "Attempting", " python"], [" Python", " Specifically", " specifically", "Python", " Trying", "Attempting", " attempting", " Why"], [" Python", " hitting", "Python", " Specifically", " python", " Trying", " specifically", " attempting"], [" Python", " Specifically", " hitting", " Trying", "Python", " specifically", " python", " attempting"], [" Python", " Pure", "Python", " Specifically", " hitting", "Pure", " pure", " Trying"], ["Python", "Pure", " Python", "Specific", "Here", " Specifically", "You", "There"]], "p": [[0.8483, 0.035, 0.0241, 0.01, 0.0083, 0.0083, 0.0078, 0.0057], [0.0196, 0.0127, 0.0099, 0.0093, 0.006, 0.0053, 0.0047, 0.0047], [0.3845, 0.0757, 0.0431, 0.0405, 0.0336, 0.0279, 0.0262, 0.0246], [0.0584, 0.0584, 0.0294, 0.0294, 0.0276, 0.0215, 0.0202, 0.0167], [0.3156, 0.0661, 0.0621, 0.0455, 0.0455, 0.0377, 0.0333, 0.0215], [0.3732, 0.1373, 0.1069, 0.0393, 0.0288, 0.0254, 0.0224, 0.0198], [0.5913, 0.08, 0.0355, 0.0313, 0.0215, 0.0202, 0.0179, 0.0168], [0.698, 0.0326, 0.0288, 0.0198, 0.0164, 0.0164, 0.0154, 0.0128], [0.7811, 0.1538, 0.0389, 0.0046, 0.0036, 0.0036, 0.0025, 0.0022], [0.1851, 0.1442, 0.0498, 0.044, 0.0413, 0.0235, 0.0221, 0.0087], [0.5328, 0.173, 0.0249, 0.0234, 0.0171, 0.0133, 0.0133, 0.0133], [0.1969, 0.0874, 0.0724, 0.0498, 0.0413, 0.025, 0.0235, 0.0162], [0.183, 0.1257, 0.0492, 0.0435, 0.0384, 0.036, 0.0264, 0.0219], [0.0405, 0.0296, 0.0262, 0.0191, 0.014, 0.0116, 0.0109, 0.0096], [0.037, 0.0224, 0.0175, 0.0164, 0.0128, 0.0106, 0.01, 0.0042], [0.1068, 0.0287, 0.0254, 0.0254, 0.0238, 0.0197, 0.0186, 0.0186], [0.1568, 0.0654, 0.0542, 0.0329, 0.029, 0.0256, 0.0165, 0.0165], [0.3566, 0.2777, 0.0426, 0.0376, 0.0353, 0.0258, 0.0178, 0.0157], [0.1664, 0.1075, 0.0948, 0.0448, 0.0371, 0.0145, 0.0137, 0.0128], [0.3732, 0.1138, 0.0609, 0.0393, 0.0254, 0.0154, 0.0145, 0.0128], [0.6176, 0.2575, 0.0651, 0.0395, 0.0025, 0.0016, 0.0006, 0.0005], [0.1294, 0.0447, 0.0198, 0.0175, 0.0155, 0.0145, 0.012, 0.012], [0.0934, 0.0775, 0.0441, 0.0366, 0.0251, 0.0143, 0.0143, 0.0119], [0.2778, 0.2303, 0.0426, 0.0332, 0.0214, 0.0147, 0.0115, 0.0074], [0.4436, 0.3049, 0.2375, 0.0063, 0.0023, 0.0018, 0.0009, 0.0005], [0.6118, 0.289, 0.0391, 0.0135, 0.0068, 0.0068, 0.0036, 0.0013], [0.5116, 0.1768, 0.0476, 0.0211, 0.0175, 0.0094, 0.0044, 0.0037], [0.6415, 0.2083, 0.1263, 0.0043, 0.0036, 0.002, 0.0012, 0.0008], [0.5515, 0.379, 0.0513, 0.0079, 0.0029, 0.0016, 0.0015, 0.0007], [0.5028, 0.4437, 0.0468, 0.0026, 0.0012, 0.0007, 0.0005, 0.0002], [0.5839, 0.3126, 0.0543, 0.0329, 0.0017, 0.0014, 0.0008, 0.0006], [0.3106, 0.3106, 0.2419, 0.0308, 0.0069, 0.0027, 0.0025, 0.0021], [0.2632, 0.205, 0.1243, 0.0216, 0.0191, 0.0149, 0.0085, 0.0079], [0.2934, 0.2017, 0.1079, 0.035, 0.02, 0.0137, 0.0137, 0.0114], [0.2566, 0.0833, 0.0419, 0.0198, 0.0175, 0.0175, 0.0128, 0.012], [0.4666, 0.1945, 0.1108, 0.0383, 0.0085, 0.0071, 0.0055, 0.0055], [0.7569, 0.0455, 0.0276, 0.0084, 0.0074, 0.0058, 0.0054, 0.0045], [0.4511, 0.0888, 0.0271, 0.0239, 0.0186, 0.0154, 0.0145, 0.0145], [0.2389, 0.1542, 0.0366, 0.0323, 0.0222, 0.0209, 0.0173, 0.0173], [0.3772, 0.0423, 0.0291, 0.0273, 0.0257, 0.0227, 0.0213, 0.0188], [0.1487, 0.04, 0.04, 0.0332, 0.0312, 0.0293, 0.0275, 0.0258], [0.082, 0.0529, 0.0439, 0.0439, 0.0342, 0.0235, 0.0142, 0.0142], [0.0654, 0.0449, 0.0449, 0.0397, 0.0373, 0.0329, 0.0329, 0.0273], [0.0756, 0.0667, 0.0553, 0.0458, 0.0315, 0.0315, 0.0315, 0.0261], [0.0822, 0.053, 0.0388, 0.0302, 0.0251, 0.0208, 0.0183, 0.0183], [0.1341, 0.0464, 0.0361, 0.0319, 0.0281, 0.0264, 0.0233, 0.0219], [0.7308, 0.0989, 0.0529, 0.0092, 0.0086, 0.0081, 0.0076, 0.0038], [0.3921, 0.3054, 0.1123, 0.0195, 0.0152, 0.0111, 0.0046, 0.0044], [0.9751, 0.0123, 0.0045, 0.0024, 0.0007, 0.0004, 0.0003, 0.0003], [0.5331, 0.0496, 0.0466, 0.0411, 0.0265, 0.0234, 0.0182, 0.0171], [0.1791, 0.1581, 0.1021, 0.0482, 0.0425, 0.0258, 0.0242, 0.0242], [0.1237, 0.1092, 0.1092, 0.0799, 0.0455, 0.0333, 0.0244, 0.0202], [0.237, 0.1052, 0.0563, 0.0497, 0.0467, 0.0412, 0.0363, 0.0341], [0.3365, 0.0964, 0.0964, 0.0751, 0.0663, 0.0455, 0.0333, 0.0313], [0.697, 0.1762, 0.021, 0.021, 0.0164, 0.0145, 0.0077, 0.0053], [0.5567, 0.1595, 0.0457, 0.0314, 0.0277, 0.0245, 0.0245, 0.0096], [0.892, 0.0444, 0.021, 0.0112, 0.0053, 0.0022, 0.002, 0.0017], [0.8922, 0.0305, 0.0238, 0.0127, 0.005, 0.0041, 0.0036, 0.0036], [0.7365, 0.128, 0.0324, 0.0196, 0.0153, 0.0077, 0.0056, 0.005], [0.932, 0.0171, 0.0151, 0.0081, 0.0055, 0.0049, 0.0038, 0.0023], [0.7806, 0.0726, 0.0565, 0.0184, 0.0184, 0.0184, 0.0041, 0.0032], [0.7722, 0.0559, 0.0436, 0.0339, 0.0182, 0.0182, 0.0097, 0.0067], [0.8366, 0.0472, 0.0416, 0.0072, 0.0064, 0.006, 0.0056, 0.0053]], "ranks": {"Python": [37228, 216904, 108542, 196657, 89244, 122729, 60941, 138813, 175524, 197576, 123000, 170266, 156403, 156382, 119009, 96747, 55718, 23624, 110246, 119452, 92204, 159299, 144651, 134450, 46295, 121452, 127475, 67459, 44307, 29078, 22636, 24872, 21964, 55102, 70397, 52197, 39095, 19529, 12523, 10107, 8576, 7379, 6955, 8776, 10961, 5301, 12011, 19116, 10532, 10752, 7767, 356, 390, 247, 185, 3, 1, 1, 1, 1, 1, 1, 1]}}, {"pos": 389, "top": [[" \u2013", "\u2013", ",", ".", "a", "<|endoftext|>", " ", "\u00a0"], [" \u2013", "\u2013", " \u2013,", "\u2013and", ",", ".", ".\u2013", "[@"], [" \u2013", "\u2013", " \u2013,", ",", ".\u2013", "\u2013and", ".", "**\u2013"], ["\uff0d\uff0d", " **\u300c", " ``", " **\u3010", " ``(", "enner", "-------------</", "\uff0a\uff0a\uff0a\uff0a"], [" (@", " @", " *@", " Python", "\uff20", " @}", " \"@", ":@"], [" \").", ",", " Python", "\uff01", "insip", "a", "\uff01\",", "-grey"], [" Python", "\uff01", ",", ".py", ".", "\uff08", "-python", "ting"], [".py", " Python", "/python", "-python", ".python", "\uff01\",", "\u00b4s", "_python"], [".py", "/python", "\u00b4s", "\uff01\",", " Python", "_python", ".python", " Django"], [",", ".py", "-style", "-esque", "/python", " Python", "-python", "_python"], [",", "-style", " Python", ".py", "-esque", "Python", "...", "-python"], ["-esque", "/python", " Python", ".py", "_python", ".python", " **", "-style"], ["-esque", " Python", "/python", "-style", ".python", "-python", ".py", "-friendly"], ["-esque", "-style", "/python", " Python", ",", "-python", ".python", "-era"], [",", "-esque", "-style", " Python", "a", " \"", "-era", "-python"], ["-esque", ",", "-style", "a", " arguably", " Python", " \"", " largely"], ["-esque", ",", "...", "a", "-style", "\u00a0", " arguably", " Python"], ["-esque", " Python", "-style", ",", "-python", "/python", "Python", "..."], ["-esque", " Python", "...", "-style", "-python", " arguably", "Python", "...\","], ["-esque", "<|endoftext|>", " largely", " \n\n", " arguably", " Python", " \r\n\r\n", "-style"], ["<|endoftext|>", " \n\n", "  \n\n", " \r\n\r\n", "\n\n", "   \n\n", "  \n  \n", " \n\n\n"], ["/python", "_python", " ``", " PYTHON", " Python", "-python", "-esque", "PYTHON"], [" ``", " ''", " Python", "_python", " PYTHON", "/python", " '''", ".py"], [" ``", " Python", " ''", "_python", " often", "Python", " --", " `"], [" \n\n", "Python", " \r\n\r\n", " Python", "_python", "/python", " ``", "\r\n\r\n"], [" Python", "/python", "Python", "_python", " python", "-python", " PYTHON", ".python"], [" Python", "/python", "_python", " python", "Python", "-python", " PYTHON", ".py"], [" Python", "\n\n", " \n\n", "_python", " --", " python", " __", " ..."], [" Python", "/python", "Python", " python", "_python", "-python", " PYTHON", ".py"], [" Python", "/python", "Python", " python", "-python", "_python", " PYTHON", " ...\\"], [" Python", "/python", " python", "Python", " ...", "-python", ".py", " **"], [" Python", " ...", " python", " often", "/python", " science", " heavily", " @"], [" mostly", " only", " often", " even", " ,", " Python", " heavily", " largely"], [" Python", "/python", " python", "-python", "Python", " PYTHON", " inherently", "_python"], ["/python", " Python", "Python", " python", "-python", " PYTHON", " inherently", "_python"], [" Python", "/python", "Python", " python", "-python", " PYTHON", "python", " inherently"], [" Python", "/python", "Python", " python", " PYTHON", "-python", "_python", "python"], [" Python", "/python", "Python", " python", " PYTHON", "-python", " inherently", "_python"], [" Python", "/python", "Python", " python", " PYTHON", "_python", "-python", "python"], [" Python", "Python", "/python", " python", "_python", "-python", " PYTHON", "python"], [" Python", "Python", "/python", " python", "_python", "-python", "python", " PYTHON"], [" Python", "Python", "/python", " python", "_python", "-python", " PYTHON", "python"], [" Python", "Python", "/python", " python", "_python", "-python", " PYTHON", ".python"], [" Python", "/python", " python", "Python", " inherently", " PYTHON", "-python", "_python"], [" Python", " python", "/python", " inherently", "Python", " PYTHON", " runtime", "-python"], [" Python", " inherently", "/python", " python", " PYTHON", "_python", "-python", " runtime"], [" inherently", " Python", "/python", " python", "-native", " workflows", " runtime", " PYTHON"], [" inherently", " Python", "-native", " fundamentally", " itself", "/python", " directly", " inherent"], [" inherently", " itself", "\u6839\u672c\u65e0\u6cd5", "-native", " fundamentally", " cannot", "\u76f4\u63a5\u6216\u95f4\u63a5", "/python"], [" inherently", "-native", "\u6839\u672c\u65e0\u6cd5", " cannot", " itself", " native", " lacks", " fundamentally"], ["\u6839\u672c\u65e0\u6cd5", " inherently", " cannot", "\u505a\u4e0d\u5230", "-native", "cannot", "\u662f\u65e0\u6cd5", "\u6839\u672c\u4e0d\u662f"], ["\u6839\u672c\u65e0\u6cd5", " cannot", " inherently", "-native", "cannot", "\u505a\u4e0d\u5230", " fundamentally", "\u6839\u672c\u4e0d\u662f"], [" cannot", "\u6839\u672c\u65e0\u6cd5", "-native", " inherently", "cannot", "\u6839\u672c\u4e0d\u662f", "\u6839\u672c\u6ca1\u6709", " incapable"], [" cannot", "\u6839\u672c\u65e0\u6cd5", "cannot", "-native", "\u505a\u4e0d\u5230", " inherently", " alone", " Cannot"], [" cannot", "cannot", "\u6839\u672c\u65e0\u6cd5", "Python", " Python", " alone", "alone", "/python"], [" cannot", "\u6839\u672c\u65e0\u6cd5", "cannot", " Python", "\u505a\u4e0d\u5230", "-native", "Python", "/python"], [" cannot", " Python", "Python", "/python", "cannot", "\u6839\u672c\u65e0\u6cd5", "/py", " Cannot"], [" cannot", " Python", "Python", "/python", " runtime", "cannot", " interpreter", "\u6839\u672c\u65e0\u6cd5"], [" interpreter", " cannot", "Interpreter", " interpre", " interpreted", " Interpreter", "interpreter", " Python"], [" interpreter", " cannot", " interpreted", " interpre", " Interpreter", "Interpreter", " interpret", " interpreting"], [" cannot", " simply", "\u2019s", " interpre", " interpreter", " interpreted", " Pure", " runtime"], [" cannot", "\u2019s", " simply", " running", " interpre", " Cannot", " runtime", "'s"], ["\u2019s", " cannot", " simply", " running", ",", " interpre", "+C", " interpreted"]], "p": [[0.7855, 0.1205, 0.0645, 0.0209, 0.0027, 0.0013, 0.0007, 0.0006], [0.7688, 0.1716, 0.0192, 0.0181, 0.011, 0.003, 0.0017, 0.0005], [0.5374, 0.4185, 0.0143, 0.0112, 0.0053, 0.0053, 0.0053, 0.0003], [0.0065, 0.0061, 0.0057, 0.005, 0.0035, 0.0035, 0.0031, 0.0031], [0.1004, 0.0393, 0.0369, 0.0326, 0.0198, 0.0154, 0.0136, 0.0106], [0.0049, 0.0049, 0.0041, 0.0041, 0.0032, 0.003, 0.0028, 0.0028], [0.0694, 0.0477, 0.0396, 0.0289, 0.024, 0.0212, 0.0137, 0.0106], [0.0765, 0.0464, 0.0219, 0.016, 0.0133, 0.0125, 0.0091, 0.0081], [0.0659, 0.0331, 0.0228, 0.0201, 0.0177, 0.0147, 0.0138, 0.0108], [0.2965, 0.0148, 0.0148, 0.0095, 0.009, 0.0084, 0.0079, 0.0066], [0.2838, 0.0595, 0.0559, 0.0525, 0.0525, 0.0206, 0.017, 0.015], [0.0443, 0.0443, 0.0304, 0.0223, 0.0135, 0.0127, 0.0112, 0.0105], [0.0389, 0.0303, 0.0251, 0.0195, 0.0152, 0.0098, 0.0077, 0.0068], [0.1943, 0.0593, 0.0218, 0.0181, 0.0117, 0.0117, 0.0085, 0.0075], [0.2382, 0.1637, 0.0469, 0.0077, 0.0072, 0.0068, 0.0056, 0.0038], [0.1999, 0.0691, 0.0093, 0.0077, 0.0068, 0.0064, 0.006, 0.0053], [0.3512, 0.2268, 0.0128, 0.0128, 0.012, 0.0106, 0.0057, 0.005], [0.3072, 0.0252, 0.0209, 0.0153, 0.0153, 0.0099, 0.0082, 0.005], [0.285, 0.0151, 0.0151, 0.0092, 0.0086, 0.0059, 0.0059, 0.0052], [0.0958, 0.0166, 0.0079, 0.0069, 0.0065, 0.0051, 0.0051, 0.0048], [0.8453, 0.0508, 0.0113, 0.0042, 0.0029, 0.0029, 0.0014, 0.0013], [0.0491, 0.0247, 0.0232, 0.0218, 0.0205, 0.0085, 0.0085, 0.0075], [0.3294, 0.0572, 0.0572, 0.0306, 0.0254, 0.0254, 0.0186, 0.0136], [0.1039, 0.0491, 0.0382, 0.0124, 0.0109, 0.008, 0.008, 0.0075], [0.116, 0.0849, 0.0704, 0.0704, 0.0515, 0.0377, 0.0293, 0.0202], [0.3929, 0.2383, 0.0993, 0.0774, 0.0532, 0.0285, 0.0251, 0.0111], [0.5467, 0.0838, 0.074, 0.074, 0.0541, 0.0308, 0.029, 0.0137], [0.1768, 0.1661, 0.1072, 0.0289, 0.0289, 0.0289, 0.0239, 0.0164], [0.4182, 0.1198, 0.0993, 0.0727, 0.0566, 0.0343, 0.0236, 0.0126], [0.3046, 0.1967, 0.1439, 0.0873, 0.0387, 0.0321, 0.0172, 0.0126], [0.3833, 0.1598, 0.141, 0.0458, 0.0315, 0.0296, 0.0203, 0.0149], [0.2557, 0.1208, 0.0607, 0.012, 0.0106, 0.0106, 0.0087, 0.0082], [0.0371, 0.0371, 0.0327, 0.0307, 0.0307, 0.0255, 0.0155, 0.0136], [0.2584, 0.189, 0.0893, 0.024, 0.0137, 0.0107, 0.01, 0.0094], [0.1846, 0.1734, 0.0819, 0.0638, 0.0342, 0.0266, 0.0134, 0.0126], [0.2594, 0.215, 0.1151, 0.0398, 0.0291, 0.0188, 0.0094, 0.0078], [0.4073, 0.2321, 0.1242, 0.0403, 0.0148, 0.0139, 0.0096, 0.0085], [0.4408, 0.1838, 0.1187, 0.0385, 0.0142, 0.0091, 0.0086, 0.0071], [0.6342, 0.1173, 0.0806, 0.0459, 0.009, 0.0085, 0.0066, 0.0055], [0.6234, 0.2024, 0.0956, 0.0274, 0.0166, 0.0069, 0.0051, 0.0051], [0.6678, 0.2457, 0.0377, 0.0202, 0.0065, 0.0054, 0.0035, 0.0033], [0.7581, 0.1493, 0.0428, 0.0229, 0.0066, 0.0045, 0.004, 0.0021], [0.7303, 0.1269, 0.0529, 0.0321, 0.0092, 0.0072, 0.0067, 0.0036], [0.7636, 0.0488, 0.0357, 0.0245, 0.0131, 0.007, 0.007, 0.0062], [0.6351, 0.0555, 0.046, 0.0432, 0.0159, 0.014, 0.0096, 0.0071], [0.4774, 0.1368, 0.0607, 0.0392, 0.0112, 0.0068, 0.0053, 0.005], [0.5331, 0.1435, 0.0171, 0.0125, 0.0104, 0.0092, 0.0067, 0.0056], [0.9036, 0.0114, 0.0054, 0.0037, 0.0029, 0.0027, 0.0027, 0.0024], [0.8031, 0.0243, 0.0201, 0.0122, 0.0089, 0.0051, 0.0048, 0.0037], [0.7319, 0.044, 0.0322, 0.0235, 0.0152, 0.0072, 0.0072, 0.0056], [0.3657, 0.2218, 0.1728, 0.0182, 0.0182, 0.0171, 0.0151, 0.0133], [0.4256, 0.2581, 0.1076, 0.0449, 0.0165, 0.0083, 0.0083, 0.0078], [0.4957, 0.2067, 0.0523, 0.0523, 0.0247, 0.015, 0.011, 0.0085], [0.696, 0.0831, 0.0571, 0.0306, 0.0174, 0.0073, 0.005, 0.0047], [0.6418, 0.0597, 0.041, 0.041, 0.0362, 0.022, 0.0194, 0.0171], [0.665, 0.0375, 0.0375, 0.0258, 0.0258, 0.0242, 0.0228, 0.013], [0.4206, 0.2551, 0.1547, 0.0731, 0.0305, 0.0144, 0.0034, 0.0032], [0.4238, 0.1559, 0.0946, 0.0348, 0.0348, 0.0348, 0.0348, 0.0271], [0.3815, 0.1238, 0.0964, 0.0751, 0.0663, 0.0516, 0.0516, 0.0355], [0.3227, 0.2218, 0.1345, 0.1048, 0.0385, 0.034, 0.034, 0.0182], [0.5606, 0.182, 0.0521, 0.0358, 0.0316, 0.0246, 0.0149, 0.0132], [0.7381, 0.2115, 0.0286, 0.0019, 0.0017, 0.0017, 0.0015, 0.0013], [0.8099, 0.1595, 0.0058, 0.0031, 0.0021, 0.0021, 0.0016, 0.0009]], "ranks": {"Python": [816, 649, 868, 53, 4, 3, 1, 2, 5, 6, 3, 3, 2, 4, 4, 6, 8, 2, 2, 6, 16, 5, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 6, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 10, 36, 79, 47, 43, 33, 3, 4, 2, 2, 8, 11, 10, 49, 88]}}, {"pos": 390, "top": [["s", " \u2013", "\u2013", ",", ".", " [\u2026]", ";", " \u2013,"], ["s", " \u2013", "\u2013", " \u2013,", " (\\", "\u2013and", "@\",", " \u2013**"], [" \u2013", "\u2013", "s", " \u2013,", ",", ".\u2013", "\u2013and", " |\u2013"], ["\u4f46\u4e0d\u9650\u4e8e", "schrift", " *\u00ab", "schriften", "\",@\"", "\u4f17\u6240\u5468\u77e5", "s", " /**<"], ["s", "\u4f46\u4e0d\u9650\u4e8e", "*\".", "\u4f17\u6240\u5468\u77e5", "#\",", "@\",", " (\\", "@@@@"], ["s", "\u4f17\u6240\u5468\u77e5", " (\\", "@\",", "schild", "\u4f46\u4e0d\u9650\u4e8e", " \u2013,", " ()->"], ["\u4f46\u4e0d\u9650\u4e8e", "s", " *\u00ab", "schild", "\\\"\",", "\u4f17\u6240\u5468\u77e5", " (\u2026)", "\\."], ["\u4f46\u4e0d\u9650\u4e8e", " *\u00ab", "\\\"\",", "schild", "schrift", "s", " **\u00ab", " \\\"$"], [" *\u00ab", "\\\"\",", "schild", "\u4f46\u4e0d\u9650\u4e8e", "*\",", "schrift", "\\\"\"", "s"], ["\u4f46\u4e0d\u9650\u4e8e", "\u4f17\u6240\u5468\u77e5", "schild", "s", "\\\"\",", "\u8086\u65e0\u5fcc", "\u4e0d\u53ef\u601d\u8bae", "\u52c7\u5f80\u76f4\u524d"], ["s", " *\u00ab", "\u4f46\u4e0d\u9650\u4e8e", " whilst", " (...)", "\\.", "\\\"\"", "\u00ba"], [" *\u00ab", "\u4f46\u4e0d\u9650\u4e8e", " **\u00ab", " /**<", " \\\"$", "schrift", "schild", "\u4f17\u6240\u5468\u77e5"], [" *\u00ab", " **\u00ab", "schrift", " \\\"", "\u4f46\u4e0d\u9650\u4e8e", " \\\"$", "schild", "\u4f17\u6240\u5468\u77e5"], ["schrift", " *\u00ab", " **\u00ab", "\u4f46\u4e0d\u9650\u4e8e", "\u4f17\u6240\u5468\u77e5", " entirety", "scht", "schild"], [" \\\"", "s", " entirety", "\u662f\u5426\u80fd\u591f", " utilizing", "schrift", "\u4e0d\u53ef\u601d\u8bae", "\\\"\","], [" entirety", "s", " utilizing", " \\\"", "\u662f\u5426\u80fd\u591f", "\u4f17\u6240\u5468\u77e5", "\u80fd\u591f\u8ba9", "\u4e0d\u80fd\u591f"], ["s", " entirety", "\u662f\u5426\u80fd\u591f", "schild", "\u80fd\u591f\u83b7\u5f97", "\u80fd\u591f\u8ba9", " truly", " perpet"], [" entirety", "schild", "s", "\u4f17\u6240\u5468\u77e5", "\u7edd\u5bf9\u4e0d\u80fd", "\u6839\u672c\u65e0\u6cd5", "scht", "\u662f\u5426\u80fd\u591f"], ["s", "\u6839\u672c\u65e0\u6cd5", "schrift", " (...)", " [...]", " entirety", "\u7edd\u5bf9\u4e0d\u80fd", " truly"], [" truly", "s", " entirety", " perpet", " entirely", "\u662f\u5426\u80fd\u591f", "\u6839\u672c\u65e0\u6cd5", " utterly"], ["<|endoftext|>", " truly", "s", " entirely", " \n\n", " utterly", " genuinely", " perpet"], ["schrift", "schuh", "\u6839\u672c\u65e0\u6cd5", " endlessly", "scht", "\u4e0d\u53ef\u601d\u8bae", "schn", "\u65e0\u65f6\u65e0\u523b"], [" entirely", " entirety", " truly", " endlessly", " perpet", "\u6839\u672c\u65e0\u6cd5", " uniquely", " utterly"], [" entirely", " fully", " truly", " entirety", " endlessly", " completely", " uniquely", " perpet"], [" entirely", " entirety", " utterly", " \r\n\r\n", "\r\n\r\n", " truly", " genuinely", " \\\""], [" /**<", " endlessly", "\u6839\u672c\u65e0\u6cd5", " entirely", "schuh", " incredibly", " *\u00ab", " utterly"], [" /**<", " endlessly", "\u6839\u672c\u65e0\u6cd5", " (...)", " entirely", " utterly", " *\u00ab", " entirety"], ["\n\n", " truly", " [...]", " entirely", "\r\n\r\n", " utterly", " incredibly", " fully"], [" truly", " incredibly", " perpet", " endlessly", "\u6839\u672c\u65e0\u6cd5", " entirely", " utterly", " wildly"], [" inherently", " entirely", " incredibly", " truly", " endlessly", "\u6839\u672c\u65e0\u6cd5", " perpet", " fundamentally"], [" entirely", " incredibly", " completely", " truly", " massively", " massive", " endlessly", " inherently"], [" fully", " completely", " entirely", " truly", " directly", " massive", " incredibly", " extremely"], [" fully", " completely", " directly", " entirely", " truly", " inherently", " fundamentally", " extremely"], [" fundamentally", " inherently", " entirely", " fully", " directly", " completely", " massively", " uniquely"], [" inherently", " fundamentally", " entirely", " directly", " genuinely", " fully", " unequiv", " literally"], [" inherently", "\u6839\u672c\u65e0\u6cd5", " reliably", " directly", " purely", " entirely", " fundamentally", " unequiv"], [" inherently", " directly", "\u6839\u672c\u65e0\u6cd5", " reliably", " literally", " unequiv", " fundamentally", " physically"], [" inherently", " directly", " reliably", " fundamentally", "\u6839\u672c\u65e0\u6cd5", " physically", " literally", " genuinely"], [" inherently", " directly", " reliably", " physically", "\u6839\u672c\u65e0\u6cd5", " fundamentally", " genuinely", " literally"], [" directly", " inherently", " direct", " reliably", " physically", " seamlessly", " speed", " fast"], [" directly", " speed", " inherently", " direct", " fast", " reliably", " rapid", "speed"], [" directly", " direct", " inherently", " Direct", " reliably", " speed", "\u76f4\u63a5\u4f7f\u7528", " fast"], [" directly", " direct", " inherently", " Direct", " reliably", " speed", " throughput", "\u76f4\u63a5\u8fdb\u5165"], [" directly", " inherently", " direct", " reliably", " achievable", " throughput", " achieving", " speed"], [" directly", " direct", " inherently", " reliably", " throughput", " achievable", " Direct", " achieving"], [" directly", " inherently", " direct", " reliably", " achievable", " physically", "\u6839\u672c\u65e0\u6cd5", " genuinely"], [" directly", " inherently", " direct", " reliably", " genuinely", " realistically", " physically", " ANY"], [" directly", " inherently", " direct", " reliably", " genuinely", "\u76f4\u63a5\u5728", "\u76f4\u63a5\u4f7f\u7528", " physically"], [" directly", " inherently", " direct", "\u76f4\u63a5\u4f7f\u7528", " reliably", "\u76f4\u63a5\u8fdb\u5165", " \u043d\u0430\u043f\u0440\u044f\u043c\u0443\u044e", "\u7684\u76f4\u63a5"], [" inherently", " directly", " reliably", "\u76f4\u63a5\u4f7f\u7528", " \u043d\u0430\u043f\u0440\u044f\u043c\u0443\u044e", " direct", "\u63d0\u4f9b\u4efb\u4f55", "\u76f4\u63a5\u8fdb\u5165"], [" inherently", " reliably", " \u043d\u0430\u043f\u0440\u044f\u043c\u0443\u044e", "\u76f4\u63a5\u4f7f\u7528", "\u76f4\u63a5\u8fdb\u5165", " directly", "\u76f4\u63a5", "\u76f4\u63a5\u5411"], [" reliably", " inherently", " achieving", " achieves", "\u539f\u751f", "-native", " achieve", " realistically"], [" inherently", " reliably", " achieves", " achieving", " achieve", "\u539f\u751f", "-native", " realistically"], [" inherently", " reliably", " achieves", "-native", " achieve", "\u539f\u751f", " sustain", " achieving"], [" reliably", " inherently", "-native", " magically", " achieve", " naturally", "\u539f\u751f", "_native"], [" reliably", " achieve", "-native", " reach", " inherently", " realistically", " achieves", "\u8fbe\u5230"], ["-native", " native", "_native", "\u539f\u751f", "native", " reliably", ".native", "Native"], ["-native", " native", "_native", " sustain", "native", " reliably", "\u539f\u751f", " achieve"], [" sustain", " native", "-native", "_native", " reliably", " achieve", " render", " renderer"], [" hit", " hitting", " hits", "_hit", " Hit", ".hit", "hit", "-hit"], [" hit", " hitting", " native", " sustain", " reliably", " n", " hits", " achieve"], [" hit", " sustain", " render", " drive", " achieve", " deliver", " maintain", " n"], [" hit", " n", " sustain", " render", " drive", " maintain", " achieve", " deliver"]], "p": [[0.6428, 0.2679, 0.0466, 0.0282, 0.0104, 0.0005, 0.0005, 0.0004], [0.9264, 0.0407, 0.011, 0.0075, 0.0012, 0.001, 0.001, 0.0007], [0.4605, 0.4064, 0.0428, 0.0378, 0.026, 0.0108, 0.0051, 0.0018], [0.0925, 0.0362, 0.0265, 0.0076, 0.0076, 0.0056, 0.0052, 0.0052], [0.9894, 0.0005, 0.0004, 0.0004, 0.0004, 0.0004, 0.0003, 0.0003], [0.8409, 0.0044, 0.0039, 0.0037, 0.0037, 0.0034, 0.003, 0.0025], [0.2466, 0.2176, 0.0202, 0.0158, 0.0108, 0.0079, 0.007, 0.0066], [0.0735, 0.0538, 0.0446, 0.0446, 0.0198, 0.0164, 0.0099, 0.0099], [0.1038, 0.0975, 0.0556, 0.0279, 0.0247, 0.0132, 0.0132, 0.0116], [0.0338, 0.017, 0.016, 0.0132, 0.0071, 0.0067, 0.0063, 0.0055], [0.2542, 0.0285, 0.0236, 0.0209, 0.0196, 0.0173, 0.0162, 0.0119], [0.1716, 0.0462, 0.036, 0.0181, 0.0124, 0.0103, 0.0071, 0.0059], [0.1249, 0.0521, 0.0279, 0.0217, 0.0217, 0.0132, 0.0116, 0.0116], [0.035, 0.0272, 0.0137, 0.0107, 0.0065, 0.0061, 0.0057, 0.005], [0.0511, 0.0451, 0.0424, 0.0156, 0.0078, 0.0069, 0.0069, 0.0069], [0.0589, 0.038, 0.018, 0.0131, 0.009, 0.0058, 0.0045, 0.0045], [0.1311, 0.0353, 0.0101, 0.0061, 0.0058, 0.0054, 0.0042, 0.0037], [0.0095, 0.0089, 0.0089, 0.0054, 0.0051, 0.0051, 0.0045, 0.0045], [0.0198, 0.0128, 0.0128, 0.0128, 0.0094, 0.0083, 0.0078, 0.0078], [0.0283, 0.025, 0.0143, 0.0118, 0.0104, 0.0086, 0.0081, 0.0076], [0.5283, 0.0067, 0.0059, 0.0049, 0.0049, 0.0049, 0.0043, 0.004], [0.0132, 0.0055, 0.0045, 0.0045, 0.0045, 0.0031, 0.0029, 0.0026], [0.0133, 0.011, 0.0086, 0.0071, 0.0063, 0.0049, 0.0041, 0.0038], [0.0287, 0.0163, 0.0154, 0.0099, 0.0087, 0.0077, 0.0077, 0.006], [0.0141, 0.0125, 0.0125, 0.0091, 0.0086, 0.0086, 0.0071, 0.0063], [0.014, 0.0091, 0.0085, 0.0049, 0.0043, 0.004, 0.004, 0.004], [0.0112, 0.0087, 0.0082, 0.0077, 0.0056, 0.0039, 0.0036, 0.0034], [0.0402, 0.0148, 0.013, 0.0108, 0.0102, 0.0084, 0.0066, 0.0062], [0.0092, 0.0086, 0.0086, 0.0071, 0.0063, 0.0063, 0.0059, 0.0056], [0.0132, 0.0124, 0.011, 0.0091, 0.0091, 0.0085, 0.008, 0.008], [0.0193, 0.0141, 0.0132, 0.0124, 0.0117, 0.0117, 0.0117, 0.0117], [0.0399, 0.0311, 0.0242, 0.0242, 0.0227, 0.0201, 0.0166, 0.0166], [0.0399, 0.0311, 0.0274, 0.0242, 0.0177, 0.0166, 0.0138, 0.013], [0.0709, 0.0666, 0.0518, 0.0335, 0.0314, 0.0314, 0.0179, 0.0168], [0.0832, 0.0369, 0.0326, 0.0254, 0.0254, 0.0254, 0.0254, 0.0186], [0.11, 0.0315, 0.0296, 0.0278, 0.0231, 0.0191, 0.018, 0.0158], [0.0918, 0.0557, 0.0491, 0.0317, 0.016, 0.016, 0.0141, 0.0132], [0.1311, 0.0582, 0.04, 0.0242, 0.0189, 0.0177, 0.0157, 0.0122], [0.1246, 0.11, 0.038, 0.0357, 0.0278, 0.0245, 0.018, 0.014], [0.2464, 0.1404, 0.0276, 0.0215, 0.0157, 0.0139, 0.0108, 0.0096], [0.2679, 0.0598, 0.0598, 0.0528, 0.0341, 0.0207, 0.0118, 0.0111], [0.3858, 0.1333, 0.0714, 0.015, 0.015, 0.0124, 0.0097, 0.0071], [0.3631, 0.1944, 0.081, 0.0192, 0.0103, 0.0103, 0.008, 0.0067], [0.3187, 0.1172, 0.0913, 0.0316, 0.0278, 0.0217, 0.018, 0.014], [0.3859, 0.1609, 0.0976, 0.0232, 0.0181, 0.017, 0.0091, 0.008], [0.297, 0.1494, 0.0906, 0.0549, 0.0108, 0.0102, 0.007, 0.0066], [0.2492, 0.1253, 0.0917, 0.0917, 0.0159, 0.0124, 0.0117, 0.0109], [0.4693, 0.1726, 0.072, 0.0465, 0.0151, 0.0125, 0.0125, 0.0076], [0.3592, 0.1697, 0.0403, 0.0295, 0.0179, 0.0168, 0.0123, 0.0123], [0.3078, 0.0882, 0.0778, 0.0345, 0.0286, 0.0197, 0.0153, 0.0135], [0.1369, 0.1002, 0.0238, 0.0238, 0.0224, 0.0164, 0.0154, 0.0136], [0.2738, 0.1377, 0.0211, 0.0186, 0.0175, 0.0136, 0.0113, 0.0106], [0.1902, 0.1307, 0.0657, 0.0452, 0.0331, 0.0257, 0.0213, 0.0188], [0.1438, 0.0638, 0.0563, 0.0363, 0.0363, 0.0341, 0.0266, 0.0235], [0.0971, 0.0756, 0.0589, 0.0488, 0.0431, 0.0431, 0.0296, 0.0296], [0.1709, 0.086, 0.0669, 0.046, 0.0358, 0.0337, 0.0316, 0.0297], [0.3311, 0.2275, 0.1075, 0.0575, 0.0508, 0.0175, 0.0165, 0.0137], [0.2684, 0.209, 0.0987, 0.0599, 0.0528, 0.0412, 0.0387, 0.0161], [0.1355, 0.1196, 0.1196, 0.0822, 0.064, 0.0531, 0.0365, 0.0267], [0.9178, 0.0277, 0.0148, 0.009, 0.0079, 0.0055, 0.0048, 0.0043], [0.8358, 0.0223, 0.0223, 0.0173, 0.0135, 0.0105, 0.0087, 0.0064], [0.8288, 0.068, 0.0284, 0.0063, 0.0059, 0.0056, 0.0052, 0.0043], [0.5516, 0.2029, 0.0846, 0.0659, 0.0214, 0.0138, 0.0101, 0.0051]], "ranks": {"Python": [34867, 194834, 151331, 210604, 160286, 153646, 50171, 121810, 127172, 162472, 112290, 160348, 153703, 155637, 111201, 123132, 135859, 93342, 87253, 110055, 61325, 99633, 82543, 53769, 54907, 39475, 20685, 11351, 12216, 9818, 5315, 7867, 14204, 11129, 14477, 10814, 6235, 4107, 4485, 1924, 890, 846, 789, 2104, 3374, 2743, 2796, 2491, 4967, 20369, 28791, 4451, 10552, 9989, 6191, 4438, 622, 632, 654, 695, 501, 181, 165]}}, {"pos": 391, "top": [[".", ",", "-", "\u00a0", ";", "!", "[", "\u00a0\u00a0"], [".", ",", "ting", " HIT", " Hit", " Hammer", "very", " Killer"], [".", ",", "\u2026", "\u2026.", ";", "!", "?", "\u2013"], [" Blowjob", "\uc3df", " milfs", "-------------</", "\uff0a\uff0a\uff0a\uff0a", " Shemale", " **\u25a0", "abria"], ["ting", " HIT", "ser", " Hit", "ters", "shot", "(hit", "shit"], ["ting", " HIT", "-hit", "odd", "(hit", "spot", "shit", ".Hit"], ["ting", "shit", "ters", " smack", "!'", "shot", "TING", "ted"], ["ting", "shit", "-hit", "shot", "spot", " **'", "TING", "!'"], ["ting", "shit", " busted", "shot", "!'", "-hit", "TING", "unnel"], ["ting", "-hit", " busted", "shot", "spot", " illim", "shit", "tdown"], ["ting", "-hit", "shit", " busted", "shot", "spot", " smack", " banged"], ["ting", " **>>", " **'", " busted", " **\u25a0", "ulut", "tdown", " '**"], ["ting", " **>>", " busted", " veggies", " **\u25a0", "ulut", " **'", " '**"], ["ting", " busted", " freaking", "shit", " veggies", "ulut", " anyways", "\u5927\u6da8"], [" busted", " freaking", "ting", " combo", " smack", " pricey", " sorta", " anyways"], [" busted", " freaking", " anyways", " skinny", " pricey", " veggies", " smack", " sorta"], [" busted", " smack", " freaking", " skinny", " pricey", " veggies", " hitting", "ting"], [" busted", " freaking", " pricey", " veggies", " skinny", " smack", "shit", "-hit"], [" freaking", " busted", " smack", " pricey", " skinny", "shit", "-hit", " ballpark"], [" smack", " busted", " pricey", " freaking", " squarely", " wildly", " ballpark", " skinny"], [" squarely", " smack", " wildly", " busted", " outright", " atop", " pricey", " hugely"], [" smack", " busted", " ballpark", " pricey", "\u5473\u513f", " freaking", " squarely", " fastball"], [" ''", " smack", " {{--<", " busted", " squarely", " ballpark", " pricey", " atop"], [" ''", " {{--<", " squarely", " outright", " wildly", " busted", " smack", " hugely"], [" {{--<", " squarely", " pricey", " \r\n\r\n", " iParam", " wildly", " hugely", " atop"], [" **#", " **'", " pricey", " ?**", " **+", " **>>", " ballpark", " freaking"], [" **#", " pricey", " ballpark", " **'", " framerate", " ?**", " !**", " busted"], [" pricey", " ?**", " **'", " squarely", " ballpark", " wildly", " atop", " --"], [" ?**", " wildly", " **", " **#", " pricey", " ballpark", " tech", " hits"], [" **", " **#", " tech", " hits", " ?**", " wildly", " !**", " ballpark"], [" **", " **#", " tech", " hits", " **'", " ?**", " !**", " ****"], [" **", " hits", " hit", " @", " even", " **#", " #", " tech"], [" even", " massively", " incredibly", " hit", " wildly", " massive", " hits", " fast"], [" massively", " incredibly", " insanely", " tech", " wildly", "\u2014even", "\u54ea\u6015\u662f", " **"], [" **", "!**", " !**", " **#", " massively", "\u2014even", "?**", " insanely"], [" !**", "!**", " **", "\u2014even", " **#", " massively", " framerate", " insanely"], [" framerate", " !**", " overclock", " fastest", " massively", " **#", " **", "!**"], [" framerate", " overclock", " !**", "!**", " insanely", " massively", " hardware", "\u5cf0\u503c"], [" framerate", " overclock", " !**", " insanely", "!**", " fastest", "\u5cf0\u503c", " massively"], [" framerate", " overclock", " speeds", "\u5cf0\u503c", " speed", "\u6bcf\u79d2", " fastest", " achievable"], [" framerate", "\u6bcf\u79d2", " overclock", " speeds", " throughput", " speed", " fps", " FPS"], [" framerate", "\u6bcf\u79d2", " throughput", " overclock", " fps", "\u5cf0\u503c", " benchmarks", " speeds"], [" framerate", " throughput", "\u6bcf\u79d2", " overclock", " fps", " speeds", " benchmarks", " achievable"], [" framerate", " achievable", "\u6bcf\u79d2", " throughput", "\u5cf0\u503c", " fps", " speeds", " FPS"], [" framerate", " achievable", " throughput", " reliably", "\u6bcf\u79d2", " fps", " benchmarks", " speeds"], [" framerate", " achievable", " reliably", "\u6bcf\u79d2", " throughput", " fps", "\u5cf0\u503c", " FPS"], [" reliably", " framerate", " anywhere", " achievable", " ANY", " comfortably", " throughput", " sustained"], [" reliably", " anywhere", " ANY", " framerate", " **#", " achievable", " comfortably", " consistently"], [" **#", "!**", " framerate", " **+", " reliably", " **", " anywhere", "\uff01**"], [" **#", "!**", " framerate", " **+", " reliably", ";**", "\u54ea\u6015\u662f", "\uff01**"], [" **#", "!**", " reliably", ";**", " **+", ">**", "\uff01**", " framerate"], [" **#", "!**", " **+", ";**", " reliably", " framerate", "**\u2014", "\uff01**"], [" **#", " reliably", "!**", " framerate", ";**", " **+", "\u2019**", "**\u2014"], [" **#", "!**", " **+", "\u2019**", ";**", " framerate", "**\u2014", ">**"], [" reliably", " framerate", " **#", "!**", " **+", " sustained", " consistently", ">**"], [" stable", "\u7a33\u5b9a\u7684", "\u7a33\u5b9a", "stable", " framerate", " reliably", " steady", " consistently"], [" consistent", " stable", "consistent", " consistently", "\u7a33\u5b9a", "stable", "\u7a33\u5b9a\u7684", " sustained"], [" sustained", " consistent", " sustain", " stable", " consistently", "consistent", " Sust", "\u7a33\u5b9a\u7684"], [" sustained", " stable", " consistent", "\u7a33\u5b9a\u7684", "\u7a33\u5b9a", " sustain", " consistently", "stable"], [" stable", " consistent", " sustained", " sustain", " steady", " consistently", "consistent", "\u7a33\u5b9a"], [" stable", " consistent", " sustained", " native", " steady", " sustain", " sustainable", " consistently"], [" sustained", " native", " consistent", " stable", " sustain", " steady", " sustainable", " "], [" ", " stable", " sustained", " native", " consistent", " sustain", " sustainable", " a"]], "p": [[0.887, 0.1059, 0.0012, 0.0011, 0.0009, 0.0004, 0.0003, 0.0003], [0.2211, 0.0866, 0.0384, 0.0133, 0.0052, 0.0046, 0.0043, 0.0032], [0.8264, 0.1627, 0.0015, 0.0009, 0.0008, 0.0006, 0.0006, 0.0005], [0.0193, 0.0125, 0.0103, 0.0063, 0.0063, 0.0052, 0.0049, 0.0046], [0.6078, 0.044, 0.0068, 0.0056, 0.0041, 0.0019, 0.0019, 0.0017], [0.0981, 0.0339, 0.017, 0.0086, 0.0076, 0.0071, 0.0063, 0.0043], [0.752, 0.0107, 0.0035, 0.0035, 0.0035, 0.0035, 0.0031, 0.0025], [0.4559, 0.0147, 0.0089, 0.0084, 0.0045, 0.0045, 0.0045, 0.0029], [0.384, 0.0085, 0.0075, 0.0075, 0.0058, 0.0055, 0.0033, 0.0031], [0.0419, 0.012, 0.0044, 0.0029, 0.0029, 0.0029, 0.0024, 0.0024], [0.211, 0.0196, 0.0105, 0.0093, 0.0039, 0.0034, 0.0032, 0.0027], [0.0167, 0.007, 0.0062, 0.0042, 0.0033, 0.0031, 0.0031, 0.0027], [0.0121, 0.0107, 0.0047, 0.0037, 0.0035, 0.0031, 0.0027, 0.0025], [0.0093, 0.0082, 0.0039, 0.003, 0.0027, 0.0025, 0.0023, 0.0023], [0.0771, 0.0143, 0.0111, 0.0104, 0.0092, 0.0076, 0.0056, 0.0056], [0.095, 0.0478, 0.0165, 0.0137, 0.0137, 0.0121, 0.0088, 0.0069], [0.0345, 0.0144, 0.0144, 0.0144, 0.0093, 0.0072, 0.005, 0.0047], [0.0182, 0.0118, 0.0081, 0.0076, 0.0076, 0.0056, 0.0049, 0.0036], [0.0142, 0.0111, 0.0092, 0.0076, 0.0049, 0.0043, 0.0041, 0.0034], [0.0217, 0.014, 0.0116, 0.0085, 0.007, 0.0055, 0.0033, 0.0033], [0.0144, 0.0127, 0.0087, 0.0087, 0.0082, 0.005, 0.0047, 0.0047], [0.0049, 0.0032, 0.0028, 0.0025, 0.0023, 0.0023, 0.0022, 0.0016], [0.0182, 0.0052, 0.0052, 0.0052, 0.0036, 0.0036, 0.0032, 0.0026], [0.0195, 0.0087, 0.0044, 0.0044, 0.0044, 0.0032, 0.003, 0.0028], [0.0079, 0.0058, 0.0051, 0.004, 0.0037, 0.0033, 0.0031, 0.0031], [0.0265, 0.0125, 0.0071, 0.0055, 0.0049, 0.0046, 0.0046, 0.0043], [0.0097, 0.0071, 0.0052, 0.0049, 0.0041, 0.0041, 0.0038, 0.0036], [0.0077, 0.0073, 0.0073, 0.0068, 0.0068, 0.0064, 0.0064, 0.0057], [0.0201, 0.0115, 0.0115, 0.0101, 0.0095, 0.0089, 0.0084, 0.0074], [0.0392, 0.0185, 0.0174, 0.0127, 0.0105, 0.0077, 0.0077, 0.0077], [0.2068, 0.0434, 0.0298, 0.0247, 0.0205, 0.0181, 0.0132, 0.0124], [0.2027, 0.0227, 0.0214, 0.0201, 0.0201, 0.0156, 0.0156, 0.0147], [0.1032, 0.023, 0.0203, 0.0158, 0.014, 0.0131, 0.0131, 0.0116], [0.0399, 0.0242, 0.0138, 0.0138, 0.0122, 0.0101, 0.0101, 0.0095], [0.0554, 0.0459, 0.0405, 0.0358, 0.0231, 0.0217, 0.014, 0.0102], [0.0484, 0.0455, 0.0293, 0.0229, 0.0229, 0.0148, 0.0115, 0.0101], [0.0352, 0.0274, 0.0227, 0.0166, 0.0156, 0.0138, 0.013, 0.0122], [0.0729, 0.0304, 0.0252, 0.0173, 0.0099, 0.0087, 0.0077, 0.0077], [0.0666, 0.0216, 0.0191, 0.0102, 0.009, 0.0085, 0.0085, 0.008], [0.4122, 0.0193, 0.016, 0.0133, 0.0124, 0.0091, 0.0086, 0.008], [0.5937, 0.0216, 0.0203, 0.0168, 0.0149, 0.0149, 0.0109, 0.0066], [0.6557, 0.0288, 0.0239, 0.0175, 0.0136, 0.0083, 0.0078, 0.0073], [0.4253, 0.0372, 0.0372, 0.0212, 0.0155, 0.0146, 0.0137, 0.0137], [0.3651, 0.0983, 0.0319, 0.0282, 0.016, 0.0151, 0.0117, 0.0117], [0.2198, 0.1608, 0.0247, 0.0232, 0.0192, 0.015, 0.0124, 0.0116], [0.1365, 0.073, 0.0391, 0.0173, 0.0135, 0.0093, 0.0087, 0.0087], [0.0948, 0.0739, 0.0575, 0.0255, 0.0175, 0.0106, 0.0088, 0.0083], [0.1539, 0.1539, 0.0603, 0.0566, 0.0162, 0.0126, 0.0126, 0.0119], [0.1558, 0.065, 0.0506, 0.037, 0.0307, 0.0254, 0.0175, 0.0154], [0.1798, 0.0621, 0.0427, 0.0294, 0.0276, 0.0229, 0.0178, 0.013], [0.1549, 0.0606, 0.0223, 0.021, 0.0185, 0.0174, 0.0153, 0.0127], [0.1802, 0.0549, 0.0313, 0.0276, 0.0229, 0.0229, 0.0123, 0.0108], [0.0677, 0.0495, 0.0437, 0.0282, 0.0265, 0.0234, 0.0234, 0.0194], [0.0882, 0.0646, 0.0346, 0.0325, 0.0305, 0.0269, 0.0238, 0.0153], [0.0367, 0.0344, 0.0344, 0.0153, 0.0153, 0.0144, 0.0135, 0.0099], [0.3744, 0.1008, 0.0947, 0.0785, 0.0348, 0.0239, 0.0211, 0.012], [0.2734, 0.2413, 0.1006, 0.0888, 0.0419, 0.0419, 0.0394, 0.0145], [0.6077, 0.1197, 0.0565, 0.0565, 0.044, 0.0267, 0.0111, 0.0105], [0.3374, 0.3374, 0.0664, 0.0457, 0.0403, 0.0403, 0.0216, 0.0216], [0.3948, 0.2113, 0.2113, 0.0324, 0.0286, 0.0153, 0.0112, 0.0093], [0.5544, 0.1402, 0.1092, 0.0662, 0.0148, 0.013, 0.009, 0.0048], [0.1955, 0.1837, 0.1837, 0.1621, 0.0385, 0.0182, 0.0182, 0.0151], [0.9346, 0.0161, 0.0161, 0.0098, 0.0059, 0.0028, 0.0016, 0.0013]], "ranks": {"Python": [12337, 135299, 41832, 124269, 55070, 116839, 17308, 62401, 46738, 110309, 85466, 139777, 132400, 123863, 108472, 153177, 183996, 173708, 188874, 211980, 145558, 209081, 190713, 183178, 131915, 169143, 126957, 107805, 73782, 75580, 31502, 19926, 29525, 55669, 46979, 42411, 33969, 33929, 34542, 24902, 14839, 27444, 20842, 32499, 31885, 38993, 27936, 21094, 40230, 90493, 75023, 21078, 27460, 29654, 17866, 16162, 15417, 10713, 13541, 6933, 5040, 661, 327]}}, {"pos": 392, "top": [[" \u2013", ".", "\u2013", ",", "\u2026.", "\u2026..", "\u00a0\u00a0", "\u00a0"], [" \u2013", "\u2013", "\u2013and", "\u2013\u2013", " \u2013**", "**\u2013", " \u2013,", ".\u2013"], ["\u2013", " \u2013", "\u2013and", "\u2026..", "**\u2013", ".\u2013", "\u2026.", "."], [" milfs", " Shemale", " Blowjob", " Bbw", " pornstar", "aruhi", " Strec", " pupper"], [" @_", " *@", " **#", "@g", " '@", "iha", "ieli", " ********"], ["\u5178\u793c", " **\u20ac", " **#", " fridge", "iha", " **\u2013", "aleigh", " **:"], [" **#", "\uff01", " *@", "-**", "\uff09**", "   \r\n", " ***", " **\u20ac"], [" *@", " **\u20ac", " @_", "iha", " **#", "VERY", "sdale", "-**"], [" *@", "athon", "   \n\n", "VERY", "!\u201d.", " \r\n\r\n", "(@", "@email"], ["-ish", "iha", "-down", "-cent", "-safe", "VERY", "athon", "-hit"], ["-", "-ish", " #", "-down", "#@", "(@", "-tech", " *@"], ["iha", "-ish", "Sharper", "opolitan", " **#", " veggies", "illion", "avirus"], ["-ish", " anyways", " veggies", "urent", "illion", " booze", "\u9e92", "ianne"], ["-ish", " flavours", " anyways", "-tech", " veggies", " vibes", " booze", "Sharper"], ["-ish", " incredibly", " effortlessly", " wildly", " flashy", "-tech", " vibe", " massively"], [" incredibly", " wildly", "-ish", " effortlessly", " guys", " kids", " skinny", " massively"], [" incredibly", "i", "-ish", " wildly", "-", "s", " effortlessly", " skinny"], ["-ish", "-tech", "-heavy", "-esque", " incredibly", "-big", " tech", " flashy"], ["i", " incredibly", "-tech", "-esque", "-ish", "-heavy", " effortlessly", " arguably"], ["<|endoftext|>", " &#", " \r\n\r\n", " --", " hugely", " myriad", "&#", " wildly"], ["<|endoftext|>", " \n\n", " \r\n\r\n", "\n\n", "\r\n\r\n", "  \n\n", "@", "2"], [" ''", " ``", " {{--<", " '''", "Sharper", "\u5176\u5b83\u5a92\u4f53", "iha", "\u56db\u6ea2"], [" ''", " ``", " {{--<", " '''", " --", " modern", " massively", " heavily"], [" ''", "<|endoftext|>", " --", " much", " ``", " {{--<", " notably", " ,"], [" {{--<", " ''", " \r\n\r\n", " --", " \n\n", "\r\n\r\n", "Whilst", " [["], [" framerate", " {{--<", " hardware", " OpenGL", " optics", " tech", " software", " cinemat"], [" hardware", " optics", " cinemat", " tech", " framerate", " technology", " software", " aerospace"], [" hardware", " technology", " tech", " modern", " --", " ''", " film", " visual"], [" technology", " hardware", " tech", " technologies", " software", " modern", " film", " music"], [" technology", " technologies", " tech", " hardware", " **", " software", " film", " modern"], [" technology", " modern", " technologies", " tech", " hardware", " complex", " technical", " software"], [" technology", " modern", " complex", " technical", " technologies", " tech", " film", " commercial"], [" technology", " modern", " complex", " directly", " technically", " technical", " instead", " technologies"], [" technology", " technologies", " hardware", " tech", " workflows", " technical", " software", " technically"], [" tech", " technology", " hardware", " technologies", " workflows", " software", " technical", " algorithms"], [" \u2026", "\u2026**", "\u2026*", " hardware", " [\u2026]", " technology", " \u2026.", " tech"], [" GPU", " hardware", "GPU", " OpenGL", " Hardware", " software", " Nvidia", " technical"], [" GPU", " hardware", " OpenGL", " software", "Direct", " technical", " directly", " workflows"], [" GPU", " OpenGL", " hardware", " directly", "GPU", " Vulkan", " technical", " Direct"], [" GPU", "GPU", " Vulkan", " gpu", " OpenGL", " hardware", " GPUs", " Nvidia"], [" GPU", "GPU", " OpenGL", " gpu", " Vulkan", " GPUs", " WebGL", " shader"], [" GPU", "GPU", " OpenGL", " WebGL", " DirectX", " Vulkan", " GPUs", "OpenGL"], [" GPU", " OpenGL", "GPU", " DirectX", " GPUs", " hardware", " WebGL", " Vulkan"], [" GPU", "Direct", "\u76f4\u63a5", " OpenGL", "GPU", " DirectX", " Direct", "\u76f4\u63a5\u4f7f\u7528"], ["Direct", " GPU", "\u76f4\u63a5", "\u76f4\u63a5\u4f7f\u7528", " Direct", " direct", " directly", " DirectX"], [" GPU", "Direct", " Direct", " direct", "\u76f4\u63a5\u4f7f\u7528", "\u76f4\u63a5", " DirectX", " directly"], ["Direct", "\u76f4\u63a5\u4f7f\u7528", "\u76f4\u63a5", " direct", " GPU", " Direct", " directly", "\u76f4\u63a5\u7528"], ["Direct", "\u76f4\u63a5", " Direct", " direct", "\u76f4\u63a5\u4f7f\u7528", " directly", "direct", " \u043d\u0430\u043f\u0440\u044f\u043c\u0443\u044e"], ["\u76f4\u63a5", "Direct", "\u76f4\u63a5\u4f7f\u7528", " \u043d\u0430\u043f\u0440\u044f\u043c\u0443\u044e", "\u76f4\u63a5\u7684", "\u76f4\u63a5\u63a5\u89e6", " Direct", "\u76f4\u63a5\u4ece"], ["\u76f4\u63a5", "Direct", "\u76f4\u63a5\u4f7f\u7528", "\u76f4\u63a5\u7684", "\u76f4\u63a5\u4ece", " \u043d\u0430\u043f\u0440\u044f\u043c\u0443\u044e", "\u76f4\u63a5\u63a5\u89e6", "\u76f4\u63a5\u5c06"], ["\u76f4\u63a5", "Direct", "\u76f4\u63a5\u4f7f\u7528", "\u76f4\u63a5\u7684", "\u76f4\u63a5\u63a5\u89e6", "direct", "\u76f4\u63a5\u8fdb\u5165", "\u76f4\u63a5\u4ece"], ["\u76f4\u63a5", "Direct", " GPU", "GPU", "\u76f4\u63a5\u4ece", "\u76f4\u63a5\u7684", " OpenGL", "direct"], [" GPU", "Direct", "GPU", "\u76f4\u63a5", " OpenGL", " shader", " Vulkan", " DirectX"], [" GPU", "GPU", " OpenGL", "Direct", " shader", " framebuffer", "\u76f4\u63a5", " CPU"], ["Direct", " OpenGL", " GPU", "\u76f4\u63a5", " shader", "\u76f4\u63a5\u4ece", " DirectX", " Direct"], [" GPU", "GPU", " OpenGL", " shader", "OpenGL", " gpu", "gpu", " Vulkan"], [" GPU", "GPU", " OpenGL", " shader", " gpu", " Vulkan", "OpenGL", "gpu"], [" GPU", "GPU", " OpenGL", " Vulkan", " shader", " gpu", "OpenGL", "gpu"], [" GPU", "GPU", " OpenGL", " Vulkan", " shader", "OpenGL", " driver", " gpu"], [" GPU", "GPU", " OpenGL", " Vulkan", " gpu", "gpu", " shader", " CPU"], [" GPU", "GPU", " OpenGL", " Vulkan", " direct", " GLES", " shader", " CPU"], [" GPU", " OpenGL", " Vulkan", " shader", " GLES", "GPU", " direct", " Direct"], ["1", "6", "2", "3", "4", "7", "8", "5"]], "p": [[0.4007, 0.3536, 0.1474, 0.0212, 0.02, 0.0176, 0.0083, 0.0054], [0.1757, 0.0503, 0.0238, 0.0154, 0.0106, 0.0068, 0.0064, 0.0022], [0.4749, 0.2243, 0.0533, 0.0442, 0.0415, 0.039, 0.0252, 0.0135], [0.0212, 0.0078, 0.0061, 0.0032, 0.0029, 0.0025, 0.0025, 0.0025], [0.0214, 0.0188, 0.0177, 0.0027, 0.002, 0.0016, 0.0016, 0.0016], [0.0046, 0.0034, 0.003, 0.0026, 0.0026, 0.0023, 0.0018, 0.0018], [0.0126, 0.0098, 0.0087, 0.0087, 0.0081, 0.0068, 0.006, 0.0056], [0.0463, 0.0117, 0.0091, 0.0076, 0.0071, 0.0067, 0.0055, 0.0043], [0.0308, 0.0289, 0.0094, 0.0073, 0.0065, 0.0061, 0.0054, 0.005], [0.0068, 0.0036, 0.0032, 0.003, 0.0025, 0.0024, 0.0018, 0.0015], [0.0548, 0.0401, 0.0108, 0.0089, 0.0084, 0.0084, 0.0074, 0.007], [0.0047, 0.0042, 0.0037, 0.0029, 0.0027, 0.0025, 0.0019, 0.0016], [0.0091, 0.0036, 0.003, 0.0023, 0.0022, 0.002, 0.0018, 0.0018], [0.0169, 0.0031, 0.0029, 0.0029, 0.0026, 0.0023, 0.0023, 0.0023], [0.0243, 0.0167, 0.0074, 0.0061, 0.0058, 0.0054, 0.0048, 0.0042], [0.0381, 0.018, 0.018, 0.0066, 0.0062, 0.0062, 0.0058, 0.0055], [0.0423, 0.0226, 0.0176, 0.0107, 0.0094, 0.0094, 0.0073, 0.0069], [0.0397, 0.0373, 0.01, 0.0083, 0.005, 0.0047, 0.0045, 0.0042], [0.006, 0.0056, 0.0049, 0.0041, 0.0028, 0.0028, 0.0026, 0.0026], [0.0273, 0.0057, 0.0045, 0.0045, 0.0039, 0.0037, 0.0037, 0.0031], [0.9894, 0.0036, 0.0006, 0.0005, 0.0004, 0.0002, 0.0002, 0.0001], [0.0808, 0.0169, 0.0116, 0.0031, 0.002, 0.0015, 0.0012, 0.0011], [0.4948, 0.1938, 0.0109, 0.0055, 0.0016, 0.0012, 0.0008, 0.0006], [0.0586, 0.019, 0.0139, 0.0123, 0.0115, 0.0102, 0.0051, 0.0051], [0.0332, 0.0214, 0.0189, 0.0167, 0.0095, 0.0084, 0.0074, 0.0069], [0.016, 0.0124, 0.0117, 0.0086, 0.008, 0.0063, 0.0046, 0.0038], [0.0178, 0.0157, 0.0108, 0.0095, 0.0084, 0.0084, 0.0079, 0.0074], [0.0142, 0.0134, 0.0098, 0.0072, 0.0072, 0.0063, 0.0063, 0.0059], [0.0641, 0.0532, 0.0366, 0.0366, 0.0173, 0.0162, 0.0098, 0.0087], [0.16, 0.0458, 0.0431, 0.0405, 0.038, 0.023, 0.0217, 0.0191], [0.1915, 0.0515, 0.0377, 0.0354, 0.0243, 0.0202, 0.0148, 0.013], [0.0928, 0.0497, 0.0235, 0.0183, 0.0142, 0.0118, 0.0098, 0.0081], [0.0673, 0.0384, 0.0133, 0.0125, 0.011, 0.0103, 0.0086, 0.008], [0.1044, 0.0525, 0.0493, 0.0493, 0.0318, 0.0281, 0.0233, 0.0117], [0.0862, 0.081, 0.0433, 0.0317, 0.028, 0.0124, 0.0103, 0.008], [0.0945, 0.0784, 0.0692, 0.0539, 0.0128, 0.0128, 0.0113, 0.0113], [0.1185, 0.1114, 0.0193, 0.0142, 0.0133, 0.0133, 0.0133, 0.0133], [0.0782, 0.0734, 0.0347, 0.0238, 0.021, 0.0198, 0.0174, 0.0164], [0.1966, 0.0872, 0.0723, 0.025, 0.0235, 0.0235, 0.0142, 0.0134], [0.6327, 0.117, 0.0261, 0.0203, 0.0191, 0.0131, 0.0109, 0.0075], [0.6965, 0.0943, 0.0474, 0.0186, 0.0174, 0.0106, 0.0093, 0.0093], [0.7334, 0.0773, 0.0773, 0.0111, 0.0105, 0.0092, 0.0068, 0.0063], [0.6915, 0.0643, 0.039, 0.0222, 0.0135, 0.0127, 0.0119, 0.0105], [0.3776, 0.1082, 0.0579, 0.0511, 0.048, 0.0351, 0.02, 0.0156], [0.2961, 0.1399, 0.1089, 0.0548, 0.0483, 0.0376, 0.0178, 0.0178], [0.2153, 0.19, 0.0699, 0.0657, 0.0352, 0.031, 0.0257, 0.0242], [0.1605, 0.1103, 0.0973, 0.0807, 0.0669, 0.0669, 0.0336, 0.0159], [0.4109, 0.1713, 0.063, 0.0556, 0.0522, 0.0205, 0.0141, 0.0117], [0.2521, 0.1628, 0.0818, 0.0301, 0.0234, 0.0207, 0.0161, 0.0151], [0.4553, 0.2151, 0.0791, 0.02, 0.0166, 0.0166, 0.0166, 0.0121], [0.3717, 0.2895, 0.0536, 0.0185, 0.0127, 0.0119, 0.0112, 0.0105], [0.1722, 0.1722, 0.0674, 0.0493, 0.011, 0.0086, 0.0081, 0.0071], [0.1889, 0.1146, 0.0695, 0.0576, 0.0576, 0.0372, 0.0226, 0.0187], [0.2867, 0.0991, 0.053, 0.053, 0.0413, 0.025, 0.0195, 0.0152], [0.2951, 0.158, 0.1086, 0.0746, 0.0352, 0.0311, 0.0258, 0.0242], [0.6454, 0.2095, 0.06, 0.0092, 0.0086, 0.0072, 0.0056, 0.0043], [0.6037, 0.2517, 0.0562, 0.0142, 0.0098, 0.0086, 0.0076, 0.0076], [0.5785, 0.3097, 0.0475, 0.0154, 0.0136, 0.0044, 0.0039, 0.0034], [0.5403, 0.2552, 0.0939, 0.0269, 0.0153, 0.0082, 0.0068, 0.0056], [0.6169, 0.2914, 0.0307, 0.0271, 0.0047, 0.0034, 0.0034, 0.0025], [0.6346, 0.125, 0.0758, 0.046, 0.0124, 0.0091, 0.0091, 0.0075], [0.278, 0.2165, 0.0583, 0.0353, 0.0353, 0.0332, 0.0214, 0.0189], [0.9491, 0.0185, 0.0044, 0.0044, 0.0032, 0.0027, 0.0022, 0.0018]], "ranks": {"Python": [90042, 206856, 118936, 151763, 38643, 105877, 20867, 83450, 44228, 43532, 9399, 75376, 34667, 32486, 12254, 20690, 30575, 10987, 5151, 6792, 351, 3182, 337, 1066, 486, 55, 97, 76, 28, 35, 71, 335, 421, 55, 89, 24, 21, 51, 114, 154, 128, 253, 357, 267, 597, 865, 1140, 400, 934, 516, 339, 154, 410, 414, 631, 416, 540, 421, 444, 188, 192, 335, 110]}}, {"pos": 393, "top": [[".", ",", " \u2013", "a", "\u2013", "o", ";", "!"], [" \u2013", "erweise", ".", "\u2013", "\u00adi", "\ufffd", "sWith", "\u00ad"], [".", ",", "\u2013", " \u2013", "\u2026..", "\u2026.", ".\u2013", "\u3002"], [" milfs", "-------------</", "----------</", " cumshot", " Blowjob", "erias", " pupper", " Shemale"], ["erweise", "raries", "kits", "ed", "\u52a0\u62ff\u5927\u7684", "izer", "er", "sWith"], ["erweise", "raries", "kits", "sWith", "\uff01", "\u52a0\u62ff\u5927\u7684", "ed", "!\u201d."], ["raries", "\uff01", "er", "ly", "\uff01**", "erweise", "**!", "\u5728"], ["raries", "erweise", "ly", "ner", "ifier", "er", "sWith", "dish"], ["ly", "er", "erweise", "raries", "!\u201d.", "\u00adi", "ifier", "!."], ["er", "ly", "\u00adi", "erweise", " \u00ad", "\u00adt", "\u00adtion", "a"], ["er", "a", "o", "ly", "en", "d", "an", "ed"], ["er", "erweise", "ly", "raries", "ily", "iard", "ian", "enner"], ["er", "ly", "erweise", "ian", "raries", "en", "ily", "a"], ["er", "raries", "-esque", "ly", "erweise", "en", "\u88f3", "aix"], ["o", "a", "er", "n", "d", "en", "an", "y"], ["o", "a", "n", "en", "er", "ed", "y", "d"], ["o", "a", "n", "d", "y", "e", "ed", "l"], ["o", "a", "ed", "n", "-esque", "y", "d", "en"], ["a", "o", "ed", "n", "-esque", "d", "e", "er"], ["o", "a", "ed", "d", "n", "ly", "y", "er"], ["<|endoftext|>", "a", "d", "o", "n", "e", "i", "l"], ["ly", " ``", "ahead", "auff", "fully", "er", "ed", "\u6e21\u5047"], [" ``", "ly", "a", "ed", "fully", "ing", " {{--<", " --"], ["a", " ``", "ly", "o", " much", "fully", " --", "ed"], ["a", "ly", " {{--<", " --", "ed", " ``", "Though", "fully"], ["ly", " {{--<", " tech", " **", " hardware", "\u6e21\u5047", " ``", " gaming"], [" ``", " tech", " hardware", " {{--<", " technology", "\u6e21\u5047", " --", " rugged"], [" --", " though", "\n\n", " \n\n", " much", " ,", " heavily", " tech"], [" tech", " technology", " hardware", " technologies", " complex", "a", " techn", " @"], [" ...", " technology", " tech", " technologies", " hardware", " complex", " **", "a"], [" ...", " technology", " tech", " technologies", " complex", " work", " hardware", " ,"], [" ...", " ,", " complex", " more", " work", " technology", " much", " through"], [" technology", " ,", " directly", " complex", " via", " using", " work", " through"], [" tech", " technology", " technologies", " workflows", " hardware", " software", " seamlessly", " engineering"], [" tech", " technology", " hardware", " technologies", " engineering", " seamlessly", " leveraging", " workflows"], ["\u2011", " \u2026", " hardware", " Android", "\u2026**", "\u2026\u2026", " tech", " technology"], [" Android", " hardware", "Python", " Python", " engineering", "Android", " tech", "engine"], [" Android", "Android", "Python", " Python", " engineering", " hardware", " technical", " iOS"], [" Android", "Android", "Python", " Python", " engineering", " Native", "Native", " native"], [" Android", "Android", "Native", "native", "Python", " native", " Native", "Java"], ["Native", "native", " Android", " Native", " native", "Android", "Python", "Java"], ["Native", " Android", "Android", " Native", "native", " native", "Java", " engine"], [" Android", "Native", "Android", " Native", " engine", "native", " native", " engineering"], [" Android", "Android", "Native", " engine", " Native", "native", "Java", "engine"], [" Android", " engine", " engineering", " engineer", " native", " workflows", " Native", "engine"], [" engine", " Android", " engineering", " engineer", " native", " interface", " workflows", " engineers"], [" Android", " engine", " engineering", " Native", " workflows", " native", " seamlessly", " hardware"], [" Android", "Native", " android", " Native", " engine", " engineering", " interface", " native"], [" **\u300c", " **\u3010", "Native", " **\u00ab", ";**", "-native", " **'", "\uff01**"], [";**", " **\u3010", ">**", " **\u300c", " **+", "!**", "\uff01**", "]**"], [";**", " **\u3010", " **[", "\uff01**", "\uff1f**", " **+", "!**", "\u771f\u6b63\u7684"], [";**", "!**", "\u4ee3\u7801", "JNI", " **\u3010", "\uff01**", "Python", " backend"], ["Python", ";**", " Python", "(**", ">**", "]**", ",**", "-native"], ["Python", ";**", "JNI", "-native", "(**", "/native", " **#", "!**"], ["Python", "JNI", " Python", " Android", "-native", "\u72ec\u7acb", "/native", "Android"], [" Python", "Python", "/native", "-native", "\u7eaf", "native", " Android", "/python"], [" Python", "Python", "\u7f16\u5199", "/python", " Android", "-native", "JNI", "native"], [" Python", "Python", "\u7f16\u5199", "ython", "-native", "\u5199", " shader", " native"], [" native", "native", "-native", " Native", "/native", "Native", "_native", ".native"], [" native", "native", " Native", "-native", "Native", "/native", "_native", " Write"], [" native", " Native", "native", "-native", "/native", "Native", " nat", " natives"], [" native", "2", "native", "-native", " Native", "0", "Native", " nat"], ["2", "3", "4", "0", "6", "1", "5", "8"]], "p": [[0.8915, 0.094, 0.0036, 0.0036, 0.0017, 0.0008, 0.0007, 0.0004], [0.0055, 0.0055, 0.0038, 0.0026, 0.0021, 0.0021, 0.0021, 0.002], [0.7637, 0.0857, 0.052, 0.014, 0.0102, 0.009, 0.0085, 0.0038], [0.019, 0.0115, 0.0084, 0.0079, 0.0066, 0.0048, 0.0042, 0.004], [0.0561, 0.0495, 0.0142, 0.0081, 0.0076, 0.0046, 0.0041, 0.0038], [0.0214, 0.0178, 0.0157, 0.0122, 0.0079, 0.0042, 0.004, 0.0031], [0.2343, 0.0631, 0.0263, 0.0181, 0.015, 0.0097, 0.0091, 0.0049], [0.0355, 0.0294, 0.0259, 0.0084, 0.0079, 0.0074, 0.0066, 0.0054], [0.102, 0.0453, 0.0311, 0.0311, 0.0258, 0.0189, 0.0095, 0.0089], [0.0733, 0.0418, 0.0325, 0.0112, 0.0077, 0.0073, 0.0068, 0.0064], [0.5048, 0.2385, 0.0774, 0.0366, 0.0152, 0.0135, 0.0112, 0.0072], [0.026, 0.0202, 0.0178, 0.0123, 0.007, 0.0054, 0.0042, 0.0033], [0.0701, 0.0425, 0.0147, 0.013, 0.0089, 0.0084, 0.0061, 0.0042], [0.0344, 0.0236, 0.0119, 0.0112, 0.0093, 0.0072, 0.0041, 0.0039], [0.1831, 0.1182, 0.0318, 0.0299, 0.0248, 0.0248, 0.0219, 0.016], [0.1754, 0.1548, 0.0325, 0.021, 0.021, 0.0197, 0.0174, 0.0153], [0.3701, 0.3266, 0.0442, 0.0285, 0.0222, 0.0222, 0.0196, 0.0119], [0.3697, 0.2106, 0.039, 0.0323, 0.0268, 0.0173, 0.0153, 0.0135], [0.2651, 0.2339, 0.0359, 0.0218, 0.015, 0.014, 0.0116, 0.0085], [0.0943, 0.0886, 0.0347, 0.0306, 0.027, 0.0174, 0.0154, 0.0145], [0.3486, 0.1365, 0.0472, 0.0345, 0.0223, 0.0163, 0.0112, 0.0099], [0.011, 0.0038, 0.0022, 0.002, 0.0019, 0.0014, 0.0014, 0.0013], [0.2204, 0.0338, 0.016, 0.0075, 0.0075, 0.0046, 0.0038, 0.0033], [0.0561, 0.0249, 0.0161, 0.0097, 0.0081, 0.0076, 0.0076, 0.0056], [0.0337, 0.0124, 0.008, 0.008, 0.0075, 0.0071, 0.0052, 0.0046], [0.0089, 0.0079, 0.0069, 0.0065, 0.0054, 0.0045, 0.0045, 0.0031], [0.0351, 0.0095, 0.0089, 0.0057, 0.0054, 0.0051, 0.0048, 0.0045], [0.051, 0.0137, 0.0129, 0.0121, 0.0107, 0.0094, 0.0078, 0.0078], [0.0575, 0.0255, 0.0212, 0.0199, 0.0128, 0.0121, 0.0073, 0.0073], [0.4133, 0.0494, 0.0436, 0.0141, 0.011, 0.0097, 0.0097, 0.0076], [0.3062, 0.1199, 0.0251, 0.0236, 0.0222, 0.0152, 0.0082, 0.0077], [0.0547, 0.0332, 0.0178, 0.0167, 0.0167, 0.0157, 0.013, 0.0108], [0.0213, 0.0188, 0.0156, 0.0147, 0.0138, 0.0122, 0.0107, 0.0089], [0.0788, 0.0695, 0.0576, 0.0478, 0.0349, 0.0146, 0.0121, 0.0121], [0.1707, 0.0554, 0.0336, 0.0279, 0.0246, 0.018, 0.0159, 0.0124], [0.1245, 0.1245, 0.023, 0.0169, 0.0158, 0.014, 0.0109, 0.0085], [0.0859, 0.0381, 0.0358, 0.0336, 0.0297, 0.0217, 0.0159, 0.014], [0.3363, 0.1237, 0.0333, 0.0148, 0.0139, 0.0123, 0.009, 0.009], [0.401, 0.1386, 0.029, 0.0166, 0.0137, 0.0137, 0.0137, 0.0129], [0.3666, 0.2089, 0.0411, 0.032, 0.0249, 0.0234, 0.0183, 0.0134], [0.1902, 0.1153, 0.1084, 0.0793, 0.0745, 0.07, 0.0292, 0.0147], [0.2229, 0.1736, 0.0873, 0.0873, 0.0724, 0.06, 0.0235, 0.0207], [0.1994, 0.1136, 0.0537, 0.0537, 0.0393, 0.0346, 0.0306, 0.0224], [0.1601, 0.0667, 0.0627, 0.038, 0.0217, 0.018, 0.018, 0.0169], [0.1076, 0.0838, 0.0449, 0.0272, 0.0256, 0.0176, 0.0165, 0.0165], [0.0934, 0.0566, 0.0566, 0.0251, 0.0251, 0.0152, 0.0152, 0.0152], [0.0421, 0.0328, 0.029, 0.0226, 0.0199, 0.0176, 0.0155, 0.0155], [0.0638, 0.0283, 0.0195, 0.0183, 0.0172, 0.0161, 0.0152, 0.0152], [0.0282, 0.0125, 0.0118, 0.0092, 0.0092, 0.0086, 0.0076, 0.0076], [0.0269, 0.0269, 0.0173, 0.0119, 0.0068, 0.0064, 0.006, 0.006], [0.036, 0.0338, 0.015, 0.0097, 0.0091, 0.0091, 0.0086, 0.0086], [0.0308, 0.0176, 0.0113, 0.0106, 0.0083, 0.0083, 0.0083, 0.0078], [0.0611, 0.0574, 0.0271, 0.0211, 0.0186, 0.0165, 0.0165, 0.0165], [0.0223, 0.0164, 0.0164, 0.0136, 0.0127, 0.0106, 0.0106, 0.0099], [0.0425, 0.0292, 0.0274, 0.0274, 0.0258, 0.0242, 0.0227, 0.0166], [0.1627, 0.1267, 0.0466, 0.0411, 0.0341, 0.0283, 0.0234, 0.022], [0.3463, 0.1124, 0.044, 0.0322, 0.0221, 0.0162, 0.0118, 0.0118], [0.1671, 0.0742, 0.0615, 0.029, 0.0273, 0.0241, 0.0187, 0.0176], [0.5732, 0.2389, 0.0685, 0.0366, 0.0323, 0.0222, 0.0064, 0.005], [0.7086, 0.1087, 0.0659, 0.0331, 0.0242, 0.0201, 0.0048, 0.0026], [0.8047, 0.0703, 0.0426, 0.0275, 0.0122, 0.0095, 0.0084, 0.0024], [0.5696, 0.093, 0.0639, 0.0388, 0.0342, 0.0195, 0.0143, 0.0111], [0.9998, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Python": [52809, 215826, 60573, 174606, 21647, 56227, 33971, 108480, 45330, 31976, 5180, 66854, 35413, 31199, 24625, 28148, 28035, 11381, 33077, 47795, 3351, 42286, 18399, 20306, 4144, 5517, 2098, 1265, 494, 369, 522, 1799, 1582, 229, 237, 42, 3, 3, 3, 5, 7, 15, 37, 51, 109, 126, 103, 97, 157, 126, 114, 5, 1, 1, 1, 1, 1, 1, 63, 34, 38, 57, 90]}}, {"pos": 394, "top": [[".", ",", " \u2013", "\u2013", "y", ";", ".\u2013", "\u2013and"], ["\u2013and", "\u2013", " \u2013", "een", " \u2013**", ".\u2013", " Hidal", "\uff5e\uff5e"], ["\u2013", " \u2013", ".", ".\u2013", ",", "\u2013and", "\u2026..", ".."], [" milfs", " Blowjob", "*\u201c.", " ;;^", " Strec", " cumshot", " Shemale", " pornstar"], ["*\u201c.", ".*(", " *\u201c", " \\\"", "@$", " \\\"$", ".\\\"", "pedia"], ["odiac", "*\u201c.", "egers", "\u0441\u043e\u0442", "pedia", " \n \n", " \u200b\u200b", "__(*"], [".\\\"", " __", ".__", " \n \n", "\\\"", " \\\"", " *\u201c", ".`"], [" \\\"", ".\\\"", " \\\"$", "}\\\"", ".__", "\\\"", " *\u00ab", "__)"], [".\\\"", " \n \n", "athon", "\\\"", " \n    \n", " \n\n\n", " \n\n", " \\\"$"], ["-$", ".\\\"", " \n \n", "@$", "-ish", "-J", ".|", " \\\"$"], [".\\\"", " \\\"", " \n \n", "\\\"", "@$", "-$", ".\\", " \\\"$"], [" \\\"", " *\u00ab", " \\\"$", " veggies", " kids", "ily", "__$", "ilian"], [" veggies", " *\u00ab", " \\\"", "flix", "egers", "odiac", "-ish", " kids"], [" veggies", " kids", "-ish", "flix", " skinny", " vibes", " hustle", "Sharper"], [" kids", "-ish", " \\\"", " skinny", " buzz", " --", " vibes", " vibe"], [" kids", " buzz", " skinny", " kid", "kids", " incredibly", " buzzing", "-ish"], [" kids", " buzz", "-ish", " skinny", " kid", "kids", " incredibly", "es"], [" kids", " buzz", "-ish", "kids", " skinny", " kid", "-tech", " buzzing"], [" --", " buzz", " kids", " skinny", "-ish", "kids", " buzzing", " ;;^"], [" --", " buzz", " wildly", " kids", " incredibly", " bouncing", " effortlessly", "\ufffd"], [" --", " though", "Though", "--", " wildly", " \u2014", " barely", " \n\n"], [" --", " anyways", " buzz", " ``", " ;;^", "Sharper", " incredibly", " ''"], [" --", " ``", " ''", " even", " incredibly", " wildly", " barely", " effortlessly"], [" --", " even", " ''", " ``", " barely", " wildly", " instantly", " though"], [" \n\n", " --", " \r\n\r\n", "   \n\n", " \n\n\n", " though", "Though", " \n \n"], [" --", " incredibly", " \n\n", " famously", " anyways", " \r\n\r\n", " wildly", " skyrocket"], [" --", " famously", " skyrocket", " wildly", " incredibly", " hugely", " speed", " __"], [" --", " even", " famously", " barely", " wildly", " incredibly", " hugely", " fast"], [" --", " even", " famously", " incredibly", " speed", " fast", " arguably", " barely"], [" --", " even", " \u2014", " fast", " \u2013", " speed", " high", " tech"], [" even", " \u2013", " \u2014", " fast", "\u2011", " high", " incredibly", " -"], [" even", " @", " -", " \u2013", " fast", " \u2018", " \u2014", " high"], [" even", " fast", " -", " only", " incredibly", " \u2013", " extremely", " \u2014"], [" tech", " insanely", " incredibly", "\u2014even", " likely", " rigor", " \u2014", " overclock"], [" tech", " insanely", " overclock", "\u2014even", " rigor", " MUST", " brutal", " (!"], ["\u2011", " overclock", " \u2013", " hardware", " \u2014", "/fast", " insanely", "\u2014even"], [" overclock", " insanely", " hardware", "/fast", " tech", " fastest", " fast", "\u2014even"], [" insanely", " overclock", "\u2011", " hardware", " impossible", " MUST", " fastest", " tech"], [" insanely", " impossible", " overclock", "\u2011", " hardware", " fastest", " speed", " fast"], [" overclock", "\u2011", " speed", " framerate", " insanely", "/fast", " fastest", " hardware"], [" overclock", " framerate", " speed", " hardware", "-speed", "/fast", " fastest", " achievable"], [" overclock", " framerate", " hardware", " achievable", "/fast", " optimized", "-speed", " speed"], [" overclock", " achievable", " hardware", " framerate", "-speed", " throughput", " optimized", "/fast"], [" achievable", " overclock", "\u8981\u6c42", " hardware", " framerate", "\u8981\u6c42\u7684", " impossible", " Impossible"], [" achievable", " impossible", " sprint", " requirement", " require", " required", " ultra", " hardware"], [" achievable", " impossible", " sprint", " Impossible", " hardware", " requirement", " demanding", " ultra"], ["-required", " impossible", " hardware", " Impossible", " achievable", " requirement", "\u8981\u6c42\u7684", " sprint"], [" requirement", "\u8981\u6c42\u7684", " sprint", "/fast", " achievable", "\u2014even", "-required", " requirements"], ["/fast", "\u8981\u6c42\u7684", " sprint", " framerate", "-required", "\u660e\u786e\u8981\u6c42", "_require", "\u2014even"], [" framerate", "/fast", "Requires", "-required", "\u8981\u6c42\u7684", "-speed", " Mbps", "Required"], [" framerate", "/fast", "\u2014even", "nowrap", "-tier", ".\u2013", " Mbps", "\ufffd"], [" framerate", " Mbps", " fps", " FPS", "/fast", " CPU", "fps", " RPM"], [" FPS", " framerate", " fps", " CPU", " Mbps", "fps", " BPM", " PWM"], [" FPS", " fps", " framerate", "fps", " Mbps", " CPU", " kHz", " PWM"], [" FPS", " fps", " framerate", "fps", " Mbps", " CPU", "Hz", " DPI"], [" FPS", " fps", "fps", "FPS", " framerate", "_fps", " TPS", "\u5e27"], [" FPS", " fps", "fps", "FPS", " framerate", "_fps", " TPS", "\u5e27"], [" FPS", " fps", "fps", "FPS", "_fps", " framerate", "\u5e27", "Hz"], [" FPS", " fps", "fps", "FPS", "\u5e27", " frames", "-frame", " frame"], [" fps", " FPS", "fps", " frames", "FPS", "\u5e27", "-frame", " frame"], [" FPS", " fps", "fps", "FPS", " frames", "-frame", "\u5e27", " frame"], [" FPS", " fps", "0", "fps", "FPS", " Hz", " TPS", " frames"], ["0", " FPS", "2", "1", " fps", "4", "8", "3"]], "p": [[0.7942, 0.0949, 0.0508, 0.0448, 0.003, 0.0018, 0.0017, 0.0011], [0.0145, 0.0128, 0.012, 0.0094, 0.0078, 0.0053, 0.0034, 0.0032], [0.4747, 0.1979, 0.1746, 0.0642, 0.0285, 0.0268, 0.0068, 0.0018], [0.0157, 0.007, 0.0051, 0.004, 0.0033, 0.0029, 0.0029, 0.0027], [0.0154, 0.0128, 0.0068, 0.0064, 0.0053, 0.0053, 0.005, 0.0044], [0.0108, 0.0042, 0.0037, 0.0029, 0.0029, 0.0024, 0.0017, 0.0017], [0.0458, 0.0278, 0.0278, 0.0216, 0.0203, 0.0169, 0.014, 0.0131], [0.0541, 0.0396, 0.0372, 0.024, 0.0088, 0.0088, 0.0088, 0.0088], [0.0689, 0.0536, 0.027, 0.0238, 0.0224, 0.021, 0.0154, 0.0144], [0.0518, 0.0334, 0.0179, 0.0123, 0.0123, 0.0096, 0.009, 0.0085], [0.178, 0.1571, 0.0309, 0.0309, 0.0226, 0.0166, 0.0137, 0.0121], [0.0269, 0.0174, 0.0087, 0.006, 0.0047, 0.0044, 0.0032, 0.003], [0.0066, 0.0062, 0.0035, 0.0035, 0.0027, 0.0026, 0.0024, 0.0021], [0.0056, 0.0032, 0.003, 0.003, 0.0027, 0.0017, 0.0017, 0.0016], [0.0309, 0.0073, 0.0065, 0.005, 0.0044, 0.0037, 0.0037, 0.0037], [0.044, 0.0183, 0.0081, 0.0049, 0.0044, 0.0041, 0.0038, 0.0038], [0.0538, 0.0224, 0.0154, 0.0145, 0.0073, 0.0068, 0.0068, 0.0057], [0.0916, 0.0279, 0.0204, 0.0192, 0.0124, 0.0097, 0.0055, 0.0052], [0.0103, 0.0075, 0.0058, 0.0043, 0.0038, 0.0033, 0.0029, 0.0026], [0.0686, 0.0068, 0.003, 0.0028, 0.0023, 0.0022, 0.0021, 0.0017], [0.0872, 0.0081, 0.0081, 0.0052, 0.0036, 0.0032, 0.003, 0.003], [0.0098, 0.0034, 0.0025, 0.0023, 0.0019, 0.0015, 0.0015, 0.0015], [0.1481, 0.0101, 0.0101, 0.0048, 0.0045, 0.0037, 0.0027, 0.0024], [0.1321, 0.009, 0.0075, 0.0048, 0.0042, 0.0037, 0.0037, 0.0035], [0.2027, 0.1019, 0.0581, 0.0138, 0.0095, 0.0042, 0.004, 0.0037], [0.0725, 0.0081, 0.0046, 0.0046, 0.0044, 0.0038, 0.0036, 0.0032], [0.066, 0.0031, 0.0031, 0.0023, 0.0023, 0.0016, 0.0016, 0.0016], [0.1382, 0.0107, 0.0088, 0.0042, 0.0042, 0.0039, 0.0037, 0.0037], [0.0922, 0.0182, 0.011, 0.0091, 0.0086, 0.0071, 0.0059, 0.0059], [0.0541, 0.0421, 0.029, 0.0187, 0.0155, 0.0113, 0.0107, 0.0078], [0.0841, 0.051, 0.0423, 0.0309, 0.0213, 0.0188, 0.0156, 0.0146], [0.0626, 0.0278, 0.0261, 0.0261, 0.023, 0.023, 0.0203, 0.0191], [0.1442, 0.0251, 0.0235, 0.0126, 0.0118, 0.0118, 0.0111, 0.0098], [0.0242, 0.0147, 0.0101, 0.0101, 0.0084, 0.0065, 0.0065, 0.0061], [0.019, 0.0139, 0.0079, 0.0062, 0.0062, 0.0051, 0.0048, 0.0045], [0.0213, 0.0176, 0.0166, 0.0146, 0.0137, 0.0129, 0.0121, 0.0121], [0.0207, 0.0194, 0.0133, 0.0118, 0.0118, 0.0111, 0.0081, 0.0067], [0.0249, 0.0249, 0.0171, 0.0142, 0.0125, 0.0086, 0.0086, 0.0081], [0.0297, 0.0297, 0.0246, 0.0217, 0.0169, 0.0149, 0.0124, 0.0124], [0.0478, 0.0422, 0.0212, 0.0187, 0.0176, 0.0165, 0.0146, 0.0146], [0.0888, 0.0288, 0.0254, 0.0224, 0.0211, 0.0186, 0.0175, 0.0136], [0.1185, 0.0385, 0.0319, 0.0319, 0.0141, 0.0141, 0.0125, 0.011], [0.111, 0.0318, 0.0233, 0.0193, 0.011, 0.0103, 0.0097, 0.0097], [0.0629, 0.0297, 0.018, 0.0149, 0.0149, 0.014, 0.0116, 0.0109], [0.066, 0.0332, 0.0178, 0.0167, 0.0147, 0.0138, 0.013, 0.0108], [0.0387, 0.0283, 0.025, 0.0161, 0.0161, 0.0126, 0.0104, 0.0092], [0.0178, 0.0167, 0.0157, 0.0147, 0.0139, 0.0139, 0.0122, 0.0101], [0.0313, 0.0276, 0.019, 0.0167, 0.0148, 0.013, 0.013, 0.0108], [0.0262, 0.0149, 0.014, 0.014, 0.0116, 0.0103, 0.0075, 0.0066], [0.0301, 0.0142, 0.0098, 0.0081, 0.0067, 0.0063, 0.0059, 0.0059], [0.0137, 0.0129, 0.0113, 0.0044, 0.0039, 0.0037, 0.0037, 0.0027], [0.1891, 0.0478, 0.0478, 0.0422, 0.0372, 0.0272, 0.0176, 0.0176], [0.253, 0.1123, 0.0725, 0.0388, 0.0322, 0.0235, 0.0134, 0.0118], [0.4407, 0.1186, 0.0719, 0.0319, 0.0282, 0.0219, 0.0086, 0.0081], [0.3389, 0.2056, 0.11, 0.0667, 0.0357, 0.0131, 0.009, 0.009], [0.7787, 0.1533, 0.0564, 0.0098, 0.0009, 0.0007, 0.0, 0.0], [0.8611, 0.0801, 0.0378, 0.0203, 0.0004, 0.0002, 0.0, 0.0], [0.8053, 0.109, 0.0661, 0.0189, 0.0003, 0.0002, 0.0001, 0.0], [0.7956, 0.122, 0.0576, 0.01, 0.0069, 0.0042, 0.0017, 0.0008], [0.5466, 0.3757, 0.0576, 0.0078, 0.0042, 0.0033, 0.002, 0.0017], [0.5685, 0.3907, 0.0321, 0.0038, 0.0023, 0.0006, 0.0006, 0.0004], [0.5318, 0.4142, 0.0265, 0.0234, 0.0013, 0.0004, 0.0004, 0.0003], [0.998, 0.0004, 0.0003, 0.0003, 0.0002, 0.0002, 0.0002, 0.0001]], "ranks": {"Python": [45713, 234330, 99901, 150675, 12493, 10768, 8743, 40754, 14205, 15611, 6825, 43829, 34341, 37704, 11156, 31071, 44666, 48707, 94569, 129147, 93979, 140400, 109848, 83022, 86309, 58706, 57441, 45196, 36952, 25081, 9719, 9943, 18965, 7792, 5706, 7018, 11289, 8699, 9357, 10385, 5056, 6218, 4000, 7690, 5022, 6728, 14837, 26482, 48803, 32906, 26136, 18104, 17932, 21606, 37870, 73564, 58888, 38649, 26002, 21872, 17436, 5169, 1438]}}, {"pos": 395, "top": [[".", ",", "s", "?", "o", ";", "!", "-"], ["\u2011", "s", " \u2013", ".", "\uff20", ",", "_VARS", "\u2013"], [".", ",", "\u2013", "?", "\u2011", "\u2026", "s", "\u2026.."], [" milfs", " Blowjob", " cumshot", " Shemale", "\uff0a\uff0a\uff0a\uff0a", "cuci", " pupper", " Busty"], ["s", " @", " *@", " @_", "!\u201d.", "\uff20", "auss", "sip"], ["!\u201d.", "s", "sip", " \u201c.", " @", " \u201d", "sver", " **."], ["s", "\u3000", "\u201d.", " \u201d", "!\u201d.", "sip", "phans", " !!!"], ["s", " @", "phans", "sche", "-eyed", "sdale", "sung", "sville"], ["s", ".", ",", " @", "!", "@", "\u3000", "\u201d."], ["s", ",", "!", "-", ".", "ten", "-h", "!,"], ["s", ",", ".", " @", "!", "-", "@", "o"], ["s", "\u9e92", "scape", "-ish", " fans", "syl", "yron", "lymp"], ["s", "-ish", "-esque", "scape", " fans", "\u9e92", "ness", " influencer"], ["s", "-esque", "-ish", " vibes", " fans", "-stop", "ptime", "scape"], ["s", "-esque", ",", " back", "-ish", " thanks", "-st", "-"], ["s", "-esque", " thanks", " back", " buzz", " -", " showcasing", " showcase"], ["s", "-esque", " thanks", " back", " hit", " buzz", " pop", " fans"], ["s", "-esque", " buzz", "-ish", " thanks", "-tech", " fans", " loud"], ["s", "-esque", " buzz", "-ish", "\u0627\u062a", " fans", "\u817e\u817e", "&apos"], ["s", " ever", "-esque", " even", "speed", " speed", " \u2019", "\u0627\u062a"], ["s", "<|endoftext|>", " though", " @", " ever", " even", " just", " ,"], [" ''", "s", " speed", "speed", " loung", "\u817e\u817e", " buzz", "&apos"], [" ''", " speed", "s", " even", " \u2019", " speeds", "speed", " fast"], [" speed", "s", " even", " ''", " ever", " fast", " quickly", " live"], [" speed", "speed", " speeds", " \r\n\r\n", "-speed", " pace", " \ufffd", " \ufffd"], [" speed", " speeds", " framerate", " pace", " sprint", "-speed", " overclock", "speed"], [" speeds", " speed", " overclock", " sprint", " pace", " smartphone", " framerate", " pixel"], [" speed", " speeds", " pace", " sprint", " clock", " \ufffd", " fast", " racing"], [" speed", " speeds", " sprint", " overclock", " smartphone", " Instagram", " smartphones", " pace"], [" overclock", " speeds", " sprint", " speed", " Instagram", " smartphones", " smartphone", " esports"], [" speed", " sprint", " speeds", " **", " overclock", " Instagram", " pace", " smartphone"], [" \ufffd", " speed", " Instagram", " sprint", " \ufffd", " \u200b\u200b", " \ufffd", " speeds"], [" speed", " fast", " sprint", " faster", " speeds", " fastest", " pace", " time"], [" speed", " sprint", " faster", " speeds", " overclock", " fastest", " fast", " pace"], [" sprint", " speed", " overclock", "/fast", " fastest", " speeds", " faster", " fast"], [" speed", " sprint", " faster", " fastest", " speeds", " fast", "/fast", " overclock"], [" speed", " speeds", " fastest", " faster", " fast", " sprint", " overclock", " rapid"], [" speed", " speeds", " fast", " faster", " fastest", " overclock", " sprint", " Speed"], [" speed", " speeds", " fast", " faster", " fastest", " framerate", " rapid", " overclock"], [" speed", " speeds", " framerate", " fastest", " faster", " fast", " Speed", "speed"], [" speed", " speeds", " framerate", "\u6bcf\u79d2", " Speed", " fastest", " fps", " faster"], [" framerate", "\u6bcf\u79d2", " fps", " speeds", " speed", " FPS", "\u6bcf\u5206\u949f", " frequency"], [" framerate", "\u6bcf\u79d2", " speeds", " fps", " speed", "\u6bcf\u5206\u949f", " FPS", " overclock"], [" framerate", "\u6bcf\u79d2", " fps", " speeds", " FPS", " speed", "\u6bcf\u5206\u949f", " pace"], ["\u6bcf\u79d2", " framerate", " speeds", " speed", " fps", "\u6bcf\u5206\u949f", " FPS", " weekly"], ["\u6bcf\u79d2", " framerate", "\u6bcf\u5206\u949f", " speed", " speeds", " fps", " FPS", " daily"], ["\u6bcf\u79d2", " framerate", "\u6bcf\u5206\u949f", " fps", " weekly", " daily", " FPS", " speeds"], ["\u6bcf\u79d2", " framerate", "\u6bcf\u5206\u949f", " (~", " weekly", " daily", " fps", " FPS"], [" (~", "\u6bcf\u79d2", "\u6bcf\u5206\u949f", " framerate", " (>", "\u6bcf\u5c0f\u65f6", " weekly", "/fast"], [" (~", " (>", " framerate", "\u6bcf\u79d2", "\u6bcf\u5206\u949f", " FPS", " ($", "/fast"], [" (~", " (>", " framerate", "\u6bcf\u79d2", " FPS", "/fast", "(~", "\u6bcf\u5206\u949f"], [" (~", " (>", " FPS", " framerate", " fps", "fps", "/fast", " (<"], [" (~", " FPS", " (>", " framerate", " fps", "fps", "FPS", "\u6bcf\u79d2"], [" FPS", " (~", " framerate", " fps", "fps", " (>", "FPS", "Hz"], [" FPS", " framerate", " fps", "fps", " (~", "FPS", "Hz", " DPI"], [" FPS", " fps", "fps", "FPS", " framerate", "_fps", "\u5e27", " frames"], [" FPS", " fps", "fps", "FPS", " framerate", "_fps", "\u5e27", " frames"], [" FPS", " fps", "fps", "FPS", " framerate", "\u5e27", "_fps", " frames"], [" FPS", " fps", "fps", "FPS", " frames", "\u5e27", " frame", " framerate"], [" FPS", " fps", "fps", "FPS", " frames", "\u5e27", " frame", " framerate"], [" FPS", " fps", "fps", "FPS", " frames", " framerate", "_fps", "\u5e27"], [" FPS", " fps", "fps", "FPS", " TPS", " UPS", " Hz", " frames"], [" FPS", " fps", "fps", "FPS", " Hz", " frames", " FP", "Hz"]], "p": [[0.9432, 0.0323, 0.0098, 0.0036, 0.0021, 0.0011, 0.0006, 0.0006], [0.0628, 0.0109, 0.0066, 0.0062, 0.0046, 0.0026, 0.0019, 0.0019], [0.6209, 0.2431, 0.0146, 0.0094, 0.0078, 0.0039, 0.0039, 0.0033], [0.031, 0.0114, 0.0042, 0.0042, 0.0037, 0.0029, 0.0024, 0.002], [0.1161, 0.0294, 0.0084, 0.0074, 0.0074, 0.0058, 0.0058, 0.0048], [0.0322, 0.0208, 0.0087, 0.0067, 0.006, 0.0038, 0.0036, 0.0032], [0.3407, 0.0192, 0.0066, 0.0062, 0.0062, 0.0031, 0.0031, 0.0024], [0.1728, 0.0171, 0.0071, 0.0063, 0.0052, 0.0043, 0.0041, 0.0036], [0.5322, 0.072, 0.0677, 0.041, 0.0234, 0.0092, 0.0086, 0.0063], [0.4532, 0.3757, 0.0021, 0.002, 0.0013, 0.0011, 0.0011, 0.001], [0.7313, 0.0873, 0.06, 0.0284, 0.0111, 0.0111, 0.0104, 0.0025], [0.1639, 0.0044, 0.0044, 0.0039, 0.0032, 0.0026, 0.0025, 0.0025], [0.1031, 0.009, 0.0085, 0.0051, 0.0043, 0.0033, 0.0033, 0.0027], [0.106, 0.0533, 0.0173, 0.0032, 0.0032, 0.0027, 0.0022, 0.0017], [0.5961, 0.0124, 0.0023, 0.0017, 0.0014, 0.0014, 0.0014, 0.0014], [0.365, 0.0081, 0.0049, 0.0038, 0.0026, 0.0023, 0.0023, 0.0022], [0.7963, 0.0031, 0.002, 0.0012, 0.0011, 0.0011, 0.0008, 0.0007], [0.6255, 0.0065, 0.0035, 0.0027, 0.0017, 0.0015, 0.0013, 0.0013], [0.5415, 0.0077, 0.0036, 0.002, 0.0017, 0.0015, 0.0014, 0.0014], [0.5252, 0.0033, 0.0029, 0.0029, 0.0028, 0.0024, 0.0023, 0.0023], [0.2529, 0.1441, 0.0072, 0.0063, 0.0038, 0.0038, 0.0034, 0.0032], [0.0174, 0.0088, 0.0044, 0.0034, 0.0024, 0.0024, 0.0024, 0.0022], [0.0744, 0.0147, 0.0069, 0.0051, 0.0048, 0.0037, 0.0029, 0.0029], [0.0194, 0.0092, 0.0076, 0.0063, 0.0043, 0.0041, 0.0038, 0.0036], [0.0284, 0.0098, 0.0092, 0.0056, 0.0053, 0.0038, 0.0032, 0.0028], [0.0536, 0.0346, 0.0112, 0.0068, 0.0068, 0.0064, 0.0056, 0.0056], [0.0622, 0.0584, 0.0157, 0.0139, 0.0108, 0.0101, 0.0101, 0.0101], [0.1746, 0.05, 0.0184, 0.0173, 0.0126, 0.0105, 0.0077, 0.0068], [0.0842, 0.0743, 0.0398, 0.033, 0.02, 0.0176, 0.0156, 0.0107], [0.0365, 0.0284, 0.0267, 0.0221, 0.0172, 0.0172, 0.0172, 0.0111], [0.0581, 0.0482, 0.0425, 0.0242, 0.0242, 0.0214, 0.0138, 0.0115], [0.0564, 0.0439, 0.0342, 0.0302, 0.025, 0.0208, 0.0183, 0.0134], [0.1406, 0.0456, 0.0244, 0.0244, 0.023, 0.0108, 0.0108, 0.009], [0.0887, 0.0691, 0.037, 0.0347, 0.0224, 0.0186, 0.0175, 0.0113], [0.0782, 0.0572, 0.0474, 0.0288, 0.0254, 0.0238, 0.021, 0.021], [0.1602, 0.0668, 0.0554, 0.052, 0.0459, 0.0459, 0.0246, 0.0246], [0.4265, 0.0952, 0.0509, 0.0479, 0.045, 0.0309, 0.0309, 0.0155], [0.4563, 0.0898, 0.0452, 0.0452, 0.0375, 0.0292, 0.0188, 0.0177], [0.4354, 0.1101, 0.0488, 0.0431, 0.0405, 0.0261, 0.0169, 0.0169], [0.5105, 0.1463, 0.0691, 0.0394, 0.0239, 0.0239, 0.0175, 0.012], [0.4022, 0.19, 0.1676, 0.048, 0.0227, 0.0227, 0.0156, 0.0146], [0.4524, 0.2137, 0.0694, 0.0308, 0.0272, 0.024, 0.0199, 0.0121], [0.3832, 0.2051, 0.0666, 0.0519, 0.0519, 0.0245, 0.0216, 0.0158], [0.2837, 0.2504, 0.0633, 0.0525, 0.0525, 0.0361, 0.0339, 0.0071], [0.1983, 0.1363, 0.0937, 0.0937, 0.0568, 0.0442, 0.0324, 0.0209], [0.2453, 0.1158, 0.0902, 0.0483, 0.0426, 0.04, 0.0376, 0.0312], [0.3915, 0.1271, 0.099, 0.0364, 0.0284, 0.0284, 0.0221, 0.0152], [0.28, 0.1498, 0.0854, 0.0518, 0.0486, 0.0429, 0.0203, 0.0179], [0.4759, 0.1984, 0.073, 0.0644, 0.0568, 0.0082, 0.0082, 0.0056], [0.8661, 0.0489, 0.0262, 0.0204, 0.0035, 0.0021, 0.0019, 0.0016], [0.7928, 0.0737, 0.0348, 0.0175, 0.0037, 0.0025, 0.0016, 0.0013], [0.8576, 0.0798, 0.0148, 0.0122, 0.0054, 0.0021, 0.0019, 0.0017], [0.6367, 0.1824, 0.0592, 0.0461, 0.0218, 0.008, 0.0026, 0.0022], [0.4786, 0.2261, 0.121, 0.0734, 0.0238, 0.0099, 0.0088, 0.003], [0.4705, 0.2519, 0.1528, 0.0438, 0.0142, 0.0092, 0.0038, 0.0034], [0.8155, 0.1251, 0.046, 0.0116, 0.0016, 0.0002, 0.0, 0.0], [0.8963, 0.0573, 0.0271, 0.0186, 0.0006, 0.0001, 0.0, 0.0], [0.8484, 0.0789, 0.0542, 0.0176, 0.0005, 0.0001, 0.0001, 0.0], [0.9192, 0.0458, 0.0245, 0.009, 0.0006, 0.0006, 0.0001, 0.0001], [0.539, 0.3705, 0.0827, 0.006, 0.0009, 0.0004, 0.0002, 0.0001], [0.7651, 0.1934, 0.0381, 0.0031, 0.0001, 0.0001, 0.0, 0.0], [0.7783, 0.1968, 0.0235, 0.0012, 0.0001, 0.0, 0.0, 0.0], [0.7188, 0.2334, 0.046, 0.0007, 0.0003, 0.0002, 0.0001, 0.0001]], "ranks": {"Python": [33279, 179480, 79993, 102677, 960, 2236, 2973, 16068, 18194, 24481, 5608, 12885, 9398, 12573, 5291, 4235, 7315, 10495, 10825, 27511, 14822, 22331, 8512, 14519, 14033, 19079, 17378, 5287, 6615, 8858, 5840, 5543, 7751, 7298, 11533, 10050, 8258, 6897, 7788, 13417, 22003, 32280, 20475, 32032, 31214, 36793, 48441, 47844, 96771, 130256, 95857, 38348, 25981, 25375, 20214, 34488, 41765, 24279, 14752, 11655, 11341, 2393, 1353]}}, {"pos": 396, "top": [[" \u2013", "\u0629", "@@@@", " @", " \uff5c", " [@", " *@", "@\""], ["\uff20", " \u2013**", " \uff5e", " \ufffd", "\uff5e\uff5e", " [@", " \r\n \r\n", " @("], [" \u2013**", "**\u2013", " *\u2013", " \uff5c", " \u2013,", " \r\n \r\n", " \u2013", " \uff5e"], ["\uff0a\uff0a\uff0a\uff0a", "\uff0d\uff0d", "\uff1d\uff1d\uff1d\uff1d", "\\xa", "\uff0a\uff0a", "\uff5e\uff5e", "\uff3f\uff3f", "\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a"], ["\uff20", " *@", " ****", "\\xa", " @(", " @_", " \uffe5", " @$"], [" ****", "\\xa", " \uff5c", "\uff20", " \uffe5", "\uff5e\uff5e", " {{$", " @_"], ["\\xa", " ****", " \uff5c", " [@", " {{$", " *@", " \uffe5", "\uff20"], ["\\xa", " [@", " ****", " *@", "\uff20", " @", " @(", " \uffe5"], [" [@", "\\xa", " *@", " \uff5c", "\uff20", " \r\n \r\n", " \ufffd", " ****"], ["\\xa", " [@", " {{$", " [[", "\\xf", " ****", " #@", " \".$"], ["\\xa", " [@", " [[", " ****", " \uff5c", " #@", " @", " {{$"], ["\\xa", " {{$", " ****", "\\xf", " **\u300c", " [[", " FPS", "\uff0a\uff0a\uff0a\uff0a"], ["\\xa", " FPS", " ****", " **\u300c", " {{$", "\uff5e\u300d", "\\xf", " St\u00e9ph"], ["\\xa", " FPS", " St\u00e9ph", " {{$", "\u5f7f", "\uff5e\u300d", "\\xf", " showcasing"], ["\\xa", " showcasing", " FPS", " whilst", " incredibly", " alongside", "\u5f7f", " \ufffd"], ["\\xa", " incredibly", " showcasing", " FPS", " alongside", " whilst", " St\u00e9ph", " MVP"], [" incredibly", "\\xa", " whilst", " showcasing", " alongside", " arguably", " FPS", " via"], [" incredibly", "\\xa", " ****", " FPS", " alongside", " \u200b\u200b", " [[", " across"], [" incredibly", "\\xa", " alongside", " across", " [[", " ****", " FPS", " arguably"], [" incredibly", " across", " alongside", " --", " &#", " whilst", " [[", "\\xa"], [" @", "<|endoftext|>", " [[", " though", " across", " alongside", " ,", " on"], [" alongside", " incredibly", " across", " {{--<", " [[", " ''", " whilst", " even"], [" across", " alongside", " ''", " incredibly", " ,", " [[", " on", " whilst"], [" ,", " on", " in", " across", " at", " alongside", " as", " during"], [" &#", " [[", " --", " whilst", " \n  \n", " \r\n \r\n", " across", " alongside"], [" ****", " incredibly", " --", " atop", " )**", " ***", " {{--<", " .**"], [" atop", " whilst", " ****", " --", " FPS", " framerate", " !**", " overclock"], [" --", " whilst", " ,", " @", " on", " across", " atop", " alongside"], [" atop", " ,", " speed", " on", " during", " across", " .**", " @"], [" .**", " **", " overclock", " speed", " )**", " atop", " FPS", " ****"], [" speed", " on", " even", " across", " despite", " incredibly", " during", " faster"], [" on", " without", " in", " speed", " at", " even", " during", " despite"], [" without", " on", " speed", " even", " despite", " at", " due", " during"], [" without", " even", " speed", " only", " rapidly", " faster", " despite", " at"], [" without", " rapidly", " speed", " despite", " incredibly", " seamlessly", " instantly", " heavily"], [" without", " \u2013", "\u2011", " \u2014", " despite", " rapidly", " speed", " purely"], [" without", " despite", " speed", " hardware", " due", " rapidly", " seamlessly", " reliably"], [" without", " speed", " hardware", " seamlessly", " even", " due", " rapidly", " via"], [" without", " hardware", " via", " across", " speed", " seamlessly", " inherently", " reliably"], [" speed", " framerate", " without", " seamlessly", " FPS", " CPU", " continuously", " hardware"], [" speed", " framerate", " CPU", " performance", " hardware", " without", " FPS", " continuously"], [" framerate", " speed", " performance", " hardware", " FPS", " CPU", " consistently", " throughput"], [" performance", " framerate", " speed", " throughput", " hardware", " FPS", " CPU", " continuously"], [" framerate", " FPS", " hardware", " performance", " speed", " without", " throughput", " reliably"], [" without", " anywhere", " framerate", " hardware", " consistently", " speed", " FPS", " via"], [" anywhere", " reliably", " consistently", " without", " inherently", " FPS", " continuously", " hardware"], [" anywhere", " reliably", " consistently", " ANY", " without", " purely", " inherently", " continuously"], [" anywhere", " without", " ANY", " reliably", " inherently", " WITHOUT", " directly", " consistently"], [" anywhere", " ANY", " directly", " inherently", " reliably", " purely", " routinely", " globally"], [" anywhere", " (~", " ANY", " (>", " reliably", " inherently", "\u4efb\u4f55\u5f62\u5f0f\u7684", "\u7684\u4efb\u4f55"], [" anywhere", " (~", " (>", " ANY", " Anything", "\u4efb\u4f55\u5f62\u5f0f\u7684", "\u6709\u4efb\u4f55", "anything"], [" anywhere", " (~", " (>", " Anything", " ($", "\u4efb\u4f55\u5f62\u5f0f\u7684", "\u6709\u4efb\u4f55", " ANY"], [" (~", " (>", " anywhere", " (<", " (**", " ($", " (*", " Anything"], [" (~", " (>", " (<", " (**", " (*", " ($", " anywhere", " (#"], [" (~", " (>", " (<", " (**", " (*", " anywhere", " (*.", " framerate"], [" (~", " (>", " (**", " anywhere", " (<", " (*", " rendering", "-native"], [" (~", " rendering", " (>", "/render", " Rendering", "-render", "\u6e32\u67d3", " (<"], [" rendering", " (~", "/render", "\u6e32\u67d3", " (>", " Rendering", "-render", " OpenGL"], [" (~", " rendering", " (>", " OpenGL", " native", " (<", "/render", " Rendering"], [" (~", " rendering", " (>", " (<", " native", " OpenGL", " ($", " (*"], [" (~", " (*", " native", " (", " (>", " ($", " (<", " rendering"], [" (~", " on", " (<", " (>", " (", " ($", " (*", " rendering"], [" (", " on", " (~", " n", " (>", " (<", " (*", " ($"]], "p": [[0.5817, 0.1298, 0.0187, 0.0121, 0.01, 0.0078, 0.0073, 0.0069], [0.1286, 0.0941, 0.0732, 0.0536, 0.0473, 0.0473, 0.0368, 0.0325], [0.2981, 0.2321, 0.0754, 0.0665, 0.0457, 0.0403, 0.0403, 0.023], [0.1098, 0.0755, 0.0666, 0.0626, 0.0552, 0.0315, 0.0261, 0.0245], [0.2706, 0.0775, 0.0728, 0.0728, 0.0344, 0.0323, 0.0252, 0.0196], [0.1569, 0.084, 0.0614, 0.0542, 0.0479, 0.035, 0.0226, 0.0212], [0.3268, 0.088, 0.0776, 0.039, 0.0286, 0.0237, 0.0209, 0.0184], [0.1842, 0.1266, 0.0721, 0.0636, 0.0496, 0.0466, 0.0363, 0.0301], [0.3143, 0.1485, 0.0425, 0.04, 0.0292, 0.0275, 0.0242, 0.0214], [0.7419, 0.0446, 0.0238, 0.012, 0.0068, 0.0044, 0.0041, 0.0037], [0.6323, 0.1032, 0.0261, 0.0203, 0.0096, 0.009, 0.0085, 0.0075], [0.3162, 0.0705, 0.0549, 0.0139, 0.0139, 0.0095, 0.0079, 0.007], [0.1423, 0.0298, 0.0247, 0.0232, 0.017, 0.0124, 0.0117, 0.0071], [0.0812, 0.0193, 0.017, 0.011, 0.0067, 0.0063, 0.0046, 0.0038], [0.0658, 0.013, 0.0095, 0.0089, 0.0069, 0.0065, 0.0057, 0.004], [0.0361, 0.0193, 0.011, 0.0103, 0.0043, 0.0038, 0.0038, 0.0034], [0.0677, 0.0182, 0.0111, 0.0104, 0.0081, 0.0067, 0.0059, 0.0056], [0.0396, 0.0372, 0.0107, 0.0094, 0.0094, 0.0073, 0.0061, 0.0061], [0.0293, 0.0214, 0.0108, 0.0101, 0.0101, 0.0084, 0.0058, 0.0054], [0.0235, 0.022, 0.0207, 0.0183, 0.0151, 0.0151, 0.0118, 0.0104], [0.0444, 0.0238, 0.0238, 0.021, 0.0197, 0.0185, 0.0174, 0.0144], [0.0207, 0.0183, 0.0172, 0.0111, 0.0098, 0.0086, 0.0072, 0.0063], [0.0286, 0.0269, 0.0223, 0.0209, 0.0209, 0.0209, 0.0185, 0.0173], [0.0631, 0.0433, 0.0338, 0.0247, 0.0247, 0.0232, 0.017, 0.015], [0.0456, 0.0402, 0.0355, 0.026, 0.0244, 0.0229, 0.019, 0.0168], [0.0444, 0.0287, 0.0238, 0.0174, 0.0154, 0.0127, 0.0127, 0.0112], [0.0226, 0.0212, 0.0155, 0.0146, 0.0137, 0.0129, 0.0114, 0.0107], [0.0678, 0.0363, 0.032, 0.0301, 0.0182, 0.0161, 0.0125, 0.0104], [0.0184, 0.0184, 0.0184, 0.0162, 0.0162, 0.0143, 0.0111, 0.0111], [0.0323, 0.0163, 0.0135, 0.0127, 0.0112, 0.0112, 0.0105, 0.0105], [0.0277, 0.0179, 0.0158, 0.0148, 0.0139, 0.0131, 0.0131, 0.0123], [0.0421, 0.0272, 0.0226, 0.0226, 0.0226, 0.0212, 0.0187, 0.0165], [0.0518, 0.0379, 0.0277, 0.0244, 0.023, 0.0216, 0.0203, 0.0203], [0.0435, 0.0264, 0.0248, 0.017, 0.0141, 0.0125, 0.0125, 0.0117], [0.0381, 0.0278, 0.014, 0.0124, 0.0124, 0.0109, 0.009, 0.009], [0.0707, 0.0486, 0.026, 0.0179, 0.0158, 0.0123, 0.0096, 0.0096], [0.0496, 0.0265, 0.0151, 0.0142, 0.0133, 0.0125, 0.0098, 0.0092], [0.0789, 0.0187, 0.0155, 0.0137, 0.0121, 0.0114, 0.0107, 0.01], [0.0539, 0.0211, 0.0145, 0.0136, 0.0136, 0.0128, 0.0128, 0.0106], [0.0558, 0.0248, 0.0233, 0.0141, 0.0133, 0.0125, 0.0125, 0.0125], [0.1384, 0.0373, 0.0256, 0.0212, 0.0199, 0.0176, 0.0155, 0.0107], [0.0456, 0.0355, 0.0355, 0.0333, 0.0276, 0.0229, 0.0148, 0.0139], [0.0422, 0.0396, 0.035, 0.0256, 0.024, 0.0226, 0.0155, 0.0155], [0.0401, 0.0377, 0.0313, 0.0259, 0.019, 0.0157, 0.0148, 0.0148], [0.0281, 0.0205, 0.0205, 0.0181, 0.017, 0.017, 0.016, 0.015], [0.0716, 0.0338, 0.0298, 0.0193, 0.015, 0.0141, 0.0141, 0.0132], [0.3707, 0.0416, 0.0223, 0.0173, 0.0144, 0.0127, 0.0127, 0.0112], [0.7103, 0.0312, 0.0214, 0.0167, 0.0138, 0.0115, 0.0065, 0.0065], [0.828, 0.0104, 0.0098, 0.0086, 0.0063, 0.0046, 0.0028, 0.0023], [0.8637, 0.0245, 0.0158, 0.007, 0.0045, 0.0035, 0.0033, 0.0026], [0.4397, 0.1427, 0.0922, 0.0633, 0.0281, 0.0206, 0.0133, 0.0125], [0.4397, 0.2667, 0.0866, 0.0193, 0.0125, 0.0117, 0.011, 0.011], [0.4227, 0.1461, 0.0537, 0.0369, 0.0174, 0.0128, 0.012, 0.0093], [0.5716, 0.1638, 0.0877, 0.0208, 0.0143, 0.0134, 0.0119, 0.0053], [0.4763, 0.1365, 0.1063, 0.0163, 0.0153, 0.0144, 0.0105, 0.0068], [0.5007, 0.087, 0.0249, 0.0234, 0.022, 0.0142, 0.0125, 0.0071], [0.3013, 0.1613, 0.1108, 0.0383, 0.0247, 0.0232, 0.0205, 0.0181], [0.2946, 0.1391, 0.0452, 0.0399, 0.033, 0.033, 0.0274, 0.0274], [0.2766, 0.1678, 0.0699, 0.0481, 0.0292, 0.0242, 0.0213, 0.0213], [0.2619, 0.2039, 0.0584, 0.0402, 0.0402, 0.0313, 0.0313, 0.019], [0.284, 0.0814, 0.0675, 0.0634, 0.0634, 0.0595, 0.0361, 0.0319], [0.2181, 0.1699, 0.1323, 0.1167, 0.0708, 0.0379, 0.0334, 0.0179], [0.2972, 0.2623, 0.1803, 0.1404, 0.0229, 0.0229, 0.0074, 0.0066]], "ranks": {"Python": [10749, 163988, 131802, 80333, 11803, 19120, 6043, 5500, 5238, 11977, 2223, 8363, 6261, 7515, 3069, 2673, 3696, 3203, 3729, 8237, 4316, 5511, 4097, 6275, 6236, 4070, 5485, 3564, 3550, 4111, 4013, 4087, 5643, 5527, 5387, 1484, 2917, 2155, 1252, 657, 417, 679, 626, 853, 1134, 1678, 2001, 2511, 5950, 22185, 23745, 5559, 17491, 11859, 3618, 2098, 2066, 1184, 1108, 900, 1488, 448, 407]}}, {"pos": 397, "top": [[" \u2013", ".", ",", "\u2013", "s", ";", "y", "o"], [" \u2013", "\u2013", "sWith", "\u2013and", "s", "\u2011", "\u2013\u2013", ","], ["\u2013", ",", ".\u2013", " \u2013", ".", "\u2013and", "\u2026", ";"], [" milfs", "erias", "eless", "\uff0a\uff0a\uff0a\uff0a", "eias", "eits", "auff", "sWith"], ["auf", "s", "sWith", "e", " \u200b\u200b", "ed", "es", "\u064a\u062f\u064a"], ["sWith", " \u200b\u200b", "auf", "kits", "\u064a\u062f\u064a", "\u0438\u0431", "aik", "enko"], ["s", "\u3002", "\uff1a", "\u5728", "\uff01", "\u0430\u0435\u043c", "raries", "sip"], ["i\u010d", "s", "sburg", "elet", "iest", "kannya", "sWith", "raries"], ["s", "i\u010d", "schuss", "i\u0161", "egger", "!\u201d.", "kannya", "sdale"], ["s", "luck", "sache", "i\u010d", "-Cds", "\u5404\u79cd\u5404\u6837\u7684", " veggies", "\u8033\u719f\u80fd\u8be6"], ["s", "o", "y", " @", "d", " #", " gotten", "-ish"], ["schuss", " veggies", "elet", "sache", " anyways", "i\u0161", " vibes", " incredibly"], [" veggies", " freaking", "schuss", " anyways", "erias", "\u582a\u6bd4", "luck", " incredibly"], [" veggies", " freaking", " pornstar", " ;;^", "schuss", " anyways", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " milfs"], [" incredibly", " freaking", " anyways", " veggies", " skyrocket", " glam", " popping", " ;;^"], [" incredibly", " kids", "s", " popping", " arguably", " anyways", " ;;^", " mostly"], [" incredibly", "s", " arguably", " though", " mostly", " getting", " popping", " just"], [" incredibly", " arguably", "\u8ba4\u8ba4\u771f", " thankfully", " freaking", " anyways", " effortlessly", " goofy"], [" arguably", "\u8ba4\u8ba4\u771f", " incredibly", " ;;^", " anyways", "\u751a\u81f3\u4e8e", " albeit", " freaking"], [" arguably", " anyways", "\u751a\u81f3\u4e8e", " albeit", "\u54ea\u6015\u662f", "\u4e5f\u4f7f\u5f97", "\u4ea6\u662f", "\u62e5\u6709\u7740"], [" arguably", " though", " amongst", " albeit", " whilst", "\u4e5f\u4f7f\u5f97", " notably", "\u751a\u81f3\u4e8e"], [" ;;^", "t\u00e9ri", " arguably", "\u4ea6\u662f", "\u751a\u81f3\u4e8e", "\u62e5\u6709\u7740", "\u5230\u5e95\u6709\u591a", " \u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435"], [" arguably", " notably", "\u751a\u81f3\u4e8e", "\u4ea6\u662f", " amongst", " famously", "\u4e5f\u4f7f\u5f97", "\u62e5\u6709\u7740"], [" arguably", " notably", " amongst", " though", " famously", " whilst", " ultimately", " outright"], [" whilst", " arguably", "Whilst", " notably", " famously", " though", " amongst", " entirety"], [" ;;^", "\u62e5\u6709\u7740", "\u751a\u81f3\u4e8e", " impactful", " +:+", " arguably", " \u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435", "\u4ea6\u662f"], [" ;;^", " atop", "\u62e5\u6709\u7740", " notably", " famously", " arguably", " \u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435", "\u751a\u81f3\u4e8e"], [" arguably", " notably", " famously", " atop", " whilst", " typically", " entirety", " amongst"], [" arguably", " famously", " atop", " notably", " typically", " incredibly", " globally", " even"], [" arguably", " famously", " notably", " typically", " atop", " globally", " even", " impactful"], [" arguably", " typically", " famously", " even", " notably", " globally", " potentially", " incredibly"], [" arguably", " typically", " even", " potentially", " globally", " critical", " notably", " famously"], [" typically", " arguably", " even", " famously", " potentially", " notably", " incredibly", " critical"], [" arguably", " typically", " famously", " notoriously", " technically", " notably", " incredibly", " massively"], [" arguably", " typically", " famously", " notoriously", " technically", " fastest", " incredibly", " massively"], [" fastest", " arguably", " typically", " faster", " framerate", " overclock", " rapid", " fast"], [" fastest", " speed", " framerate", " faster", " rapid", " overclock", " fast", " speeds"], [" framerate", " fastest", " speed", " faster", " overclock", " rapid", " FPS", " latency"], [" framerate", " fastest", " speed", " faster", " rapid", " FPS", " latency", " overclock"], [" fastest", " framerate", " speed", " rapid", " faster", " latency", " fast", " milliseconds"], [" framerate", " fastest", " speed", "\u6bcf\u79d2", " latency", " rapid", " faster", " milliseconds"], [" framerate", " rapid", " latency", " fastest", " milliseconds", "\u6bcf\u79d2", " faster", " speed"], [" latency", " milliseconds", "\u6bcf\u79d2", " framerate", " timeframe", "\u6bcf\u5206\u949f", " microseconds", " fastest"], ["\u6bcf\u79d2", " milliseconds", " latency", "\u6bcf\u5206\u949f", " framerate", " timeframe", " microseconds", " fastest"], ["\u6bcf\u79d2", " milliseconds", " latency", "\u6bcf\u5206\u949f", " framerate", " timeframe", " microseconds", "Milliseconds"], ["\u6bcf\u5206\u949f", "\u6bcf\u79d2", " latency", " framerate", " milliseconds", " rapid", "\u5e73\u5747\u6bcf", " timeframe"], ["\u6bcf\u79d2", "\u6bcf\u5206\u949f", " framerate", " latency", " timeframe", " rapid", "ptime", "/fast"], ["\u6bcf\u79d2", "\u6bcf\u5206\u949f", " framerate", " rapid", "\u5e73\u5747\u6bcf", "/fast", " \u043a\u0430\u0436\u0434\u044b\u0435", " latency"], ["\u6bcf\u79d2", "\u6bcf\u5206\u949f", "ptime", "\u5e73\u5747\u6bcf", " framerate", "\u6bcf\u5c0f\u65f6", " \u043a\u0430\u0436\u0434\u044b\u0435", " latency"], ["\u6bcf\u79d2", "\u6bcf\u5206\u949f", "\u6bcf\u5c0f\u65f6", "ptime", "\u5e73\u5747\u6bcf", " \u043a\u0430\u0436\u0434\u044b\u0435", "\u7ea6\u5408", " framerate"], ["\u6bcf\u79d2", "\u6bcf\u5206\u949f", "ptime", " framerate", "\u6bcf\u5c0f\u65f6", "/fast", " \u043a\u0430\u0436\u0434\u044b\u0435", " (~"], ["\u6bcf\u79d2", "\u6bcf\u5206\u949f", " framerate", " \u043a\u0430\u0436\u0434\u044b\u0435", "ptime", "/fast", " requiring", "\u5e73\u5747\u6bcf"], ["\u6bcf\u79d2", " latency", " framerate", "\u6bcf\u5206\u949f", " milliseconds", "_latency", " requiring", " microseconds"], [" latency", " framerate", " milliseconds", "\u6bcf\u79d2", "_latency", " requiring", "milliseconds", " microseconds"], [" latency", " framerate", " requiring", " milliseconds", "Cycle", "requires", "requ", "\u5468\u671f"], [" framerate", " latency", " requiring", "\u5e27", "requires", "requ", " milliseconds", "Cycle"], [" requiring", " framerate", " latency", "requ", "\u5e27", " Require", "Require", "requires"], [" requiring", " framerate", " latency", "\u5e27", "/frame", "requ", "frame", "-frame"], [" frame", "\u5e27", "Frame", " Frame", "frame", " ~", "-frame", "/frame"], [" ~", " \u2248", " frame", "Frame", " approx", " Frame", "approx", "frame"], [" ~", " <", " \u2248", "approx", " frame", "frame", " approx", "-frame"], [" <", " ~", "8", "approx", " \u2248", " approx", " sub", "\u2248"], ["8", "6", "1", "7", "5", "9", "4", "3"]], "p": [[0.4987, 0.2079, 0.1619, 0.1113, 0.0055, 0.0052, 0.0017, 0.0016], [0.5217, 0.1495, 0.0139, 0.0131, 0.0115, 0.0066, 0.0051, 0.0037], [0.7694, 0.1717, 0.0141, 0.0141, 0.011, 0.0085, 0.0018, 0.0016], [0.0067, 0.0049, 0.0043, 0.0043, 0.0038, 0.0034, 0.0034, 0.0034], [0.0414, 0.0343, 0.0343, 0.0322, 0.0236, 0.0236, 0.0143, 0.0126], [0.0196, 0.0119, 0.0105, 0.0099, 0.006, 0.006, 0.0036, 0.0034], [0.3528, 0.0121, 0.0107, 0.0083, 0.0057, 0.0057, 0.005, 0.005], [0.0235, 0.0092, 0.0081, 0.0067, 0.0052, 0.0046, 0.0046, 0.0046], [0.0206, 0.0171, 0.011, 0.0081, 0.0063, 0.0052, 0.0052, 0.0049], [0.0074, 0.0026, 0.0021, 0.002, 0.002, 0.0019, 0.0018, 0.0017], [0.2514, 0.0142, 0.0097, 0.0063, 0.0059, 0.0046, 0.0041, 0.0034], [0.0074, 0.0037, 0.002, 0.002, 0.0018, 0.0016, 0.0015, 0.0015], [0.0104, 0.0046, 0.0038, 0.003, 0.0019, 0.0018, 0.0018, 0.0017], [0.0039, 0.0027, 0.0021, 0.0021, 0.0021, 0.0018, 0.0016, 0.0015], [0.0031, 0.0027, 0.0023, 0.002, 0.0017, 0.0017, 0.0016, 0.0013], [0.0032, 0.0021, 0.0019, 0.0019, 0.0019, 0.0017, 0.0013, 0.0012], [0.0276, 0.0202, 0.0139, 0.0102, 0.0084, 0.0045, 0.0042, 0.0042], [0.0042, 0.0035, 0.0025, 0.0022, 0.002, 0.0015, 0.0014, 0.0014], [0.0041, 0.0022, 0.0022, 0.0018, 0.0017, 0.0015, 0.0014, 0.0014], [0.0077, 0.0034, 0.003, 0.0027, 0.0022, 0.0022, 0.0013, 0.0013], [0.0129, 0.0073, 0.0042, 0.0031, 0.0031, 0.0031, 0.0029, 0.0019], [0.0143, 0.0016, 0.0015, 0.0014, 0.0012, 0.0012, 0.0011, 0.001], [0.0145, 0.0039, 0.0034, 0.0028, 0.0028, 0.0027, 0.0025, 0.0025], [0.0146, 0.0107, 0.0047, 0.0044, 0.0039, 0.0031, 0.0031, 0.0027], [0.0066, 0.0062, 0.0045, 0.0037, 0.0033, 0.0033, 0.0027, 0.0027], [0.0066, 0.004, 0.0023, 0.0019, 0.0016, 0.0015, 0.0015, 0.0015], [0.0083, 0.0029, 0.0029, 0.0029, 0.0027, 0.0025, 0.0021, 0.002], [0.0229, 0.0148, 0.0131, 0.0054, 0.004, 0.0037, 0.0027, 0.0026], [0.0388, 0.0235, 0.0111, 0.0111, 0.006, 0.0046, 0.0038, 0.0023], [0.0442, 0.0285, 0.0209, 0.0184, 0.0072, 0.006, 0.0044, 0.0039], [0.0781, 0.0347, 0.0287, 0.0164, 0.0113, 0.0099, 0.0077, 0.0068], [0.0549, 0.0378, 0.0215, 0.0115, 0.0102, 0.0102, 0.0102, 0.0095], [0.0603, 0.05, 0.0323, 0.0119, 0.0087, 0.0087, 0.0087, 0.0072], [0.0653, 0.0422, 0.01, 0.0061, 0.0054, 0.005, 0.005, 0.0047], [0.0818, 0.025, 0.0076, 0.0071, 0.0059, 0.0049, 0.0043, 0.0032], [0.0553, 0.0488, 0.0315, 0.0231, 0.0159, 0.0131, 0.0131, 0.0116], [0.1376, 0.0888, 0.0784, 0.0539, 0.0327, 0.0255, 0.0225, 0.0198], [0.0946, 0.0784, 0.065, 0.0476, 0.0394, 0.0271, 0.0239, 0.0186], [0.1664, 0.0738, 0.0477, 0.0349, 0.0328, 0.0225, 0.0225, 0.0187], [0.1726, 0.1263, 0.0868, 0.0815, 0.0526, 0.0464, 0.0265, 0.0194], [0.2872, 0.1742, 0.0602, 0.0602, 0.0566, 0.0499, 0.0389, 0.0208], [0.1631, 0.127, 0.1121, 0.0989, 0.0989, 0.0873, 0.0412, 0.0364], [0.2061, 0.1818, 0.1103, 0.0859, 0.0758, 0.0358, 0.0217, 0.0192], [0.2329, 0.2329, 0.0971, 0.0667, 0.0667, 0.0459, 0.0204, 0.0159], [0.2528, 0.1353, 0.1194, 0.1194, 0.0564, 0.0195, 0.0183, 0.0134], [0.237, 0.2092, 0.0723, 0.0438, 0.0387, 0.0235, 0.0172, 0.0142], [0.2172, 0.2172, 0.0585, 0.0455, 0.0259, 0.0244, 0.0202, 0.0178], [0.3264, 0.2881, 0.0304, 0.0285, 0.0222, 0.0196, 0.0184, 0.0184], [0.3261, 0.254, 0.0251, 0.0208, 0.0184, 0.0153, 0.0119, 0.0105], [0.3821, 0.2626, 0.0355, 0.0334, 0.0158, 0.0123, 0.0102, 0.0102], [0.4793, 0.129, 0.0475, 0.0175, 0.0113, 0.0093, 0.0093, 0.0082], [0.3224, 0.1344, 0.0385, 0.0249, 0.0219, 0.0125, 0.0125, 0.0091], [0.2731, 0.1373, 0.0833, 0.0505, 0.0394, 0.0239, 0.0198, 0.0136], [0.2772, 0.0701, 0.0425, 0.0399, 0.0311, 0.0156, 0.0095, 0.0089], [0.2025, 0.0899, 0.0425, 0.0399, 0.0227, 0.0201, 0.0177, 0.0166], [0.1903, 0.1084, 0.0618, 0.0242, 0.0201, 0.0188, 0.0177, 0.0147], [0.1181, 0.0632, 0.0462, 0.0248, 0.0193, 0.017, 0.016, 0.015], [0.109, 0.0904, 0.0704, 0.0548, 0.0515, 0.0312, 0.0276, 0.0276], [0.1464, 0.1464, 0.114, 0.1006, 0.0888, 0.0784, 0.0692, 0.061], [0.3186, 0.1932, 0.0805, 0.0405, 0.0357, 0.0315, 0.0296, 0.0246], [0.3509, 0.1463, 0.1005, 0.0538, 0.0475, 0.0347, 0.0288, 0.0271], [0.578, 0.3094, 0.0224, 0.0164, 0.0077, 0.006, 0.0037, 0.0028], [0.9983, 0.0006, 0.0003, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001]], "ranks": {"Python": [15824, 88042, 36245, 128501, 21161, 71651, 5762, 25346, 28119, 36728, 7692, 28015, 38011, 55315, 41834, 52499, 52860, 138360, 177360, 188425, 129508, 159358, 122385, 117543, 153034, 148382, 112446, 66922, 40752, 38173, 25872, 33699, 37378, 80163, 70415, 18715, 3866, 4631, 7374, 18903, 28778, 24979, 17934, 56384, 31314, 49488, 80160, 63487, 125371, 106881, 51124, 26053, 55226, 51729, 34712, 21746, 18909, 33141, 45340, 24395, 38213, 22723, 2096]}}, {"pos": 398, "top": [[".", ",", " \u2013", "\u2026..", "\u2013", "\u2026\u2026", ";", "\""], [" \u2013", ":\\\"", " \u200b\u200b", "(\\\"", "\u200b\u200b", "  \n", "@@@@", " (\u201e"], ["\u2026\u2026", "\u2026..", ".", " \u2013", "\u2013", ",", " \u200b\u200b", ".\u2013"], [" Geile", " Shemale", "``", " ``", " **\u201e", " milfs", " Nues", "\\\":\\\""], ["@", "@\"", "ed", "@\\", ".@", ":@", " (@", "@g"], [" \u200b\u200b", "\u2026\u2026\u3002", "ed", "@g", "\u0639\u0637", ":@", "!\u00bb", "enko"], [" ......", "\u2026\u2026\u3002", "......", "\uff08", "\u2026\u2026", "@\"", ".\u00bb", "\u201e"], ["@\"", " ......", "   \n", "  \n", "#####", "\u201e", ":\\\"", "    \n"], ["......", " ......", ".\u00bb", "#####", "egger", "@\"", "    \n\n", "   \n\n"], ["@\\", "#####", "\\n", "@\"", "@", ".\u00bb", " \u00ad", "\u00ad"], ["@", "@\\", "@\"", ".\u00bb", "\\n", ".@", "&", "an"], ["egger", " **\u00ab", " **\u300c", "ware", "igan", "imonial", "illion", "enson"], ["ware", "egger", "uars", "igan", "raquo", " Geile", "imonial", " **\u00ab"], ["ware", "raries", " Geile", "uars", "\u4e94\u989c\u516d\u8272\u7684", "igan", "peng", "raquo"], ["ware", "\u0639\u0637", "raries", "peng", "star", "ified", "an", ".\u00bb"], ["ware", "raries", " Gabrie", "illion", " Nues", " Geile", "raquo", "esco"], ["ware", "ball", "kid", "os", "splash", "es", "kids", "star"], [":pk", "ware", "\u00bb)", "splash", "peng", "i\u00e8me", "esco", "\u0639\u0637"], [" Geile", "raquo", "uage", " Gabrie", "\u0639\u0637", "htag", "\u00bb)", "raries"], ["\u0639\u0637", "ware", "uage", "splash", "raquo", " Geile", "``", "\u00e3ng"], ["an", "Though", "d", "8", "n", "ware", "&", "ar"], [" ``", "``", " Geile", "uage", "\u00e3ng", " Gabrie", "htag", "ware"], [" ``", "``", " ``(", "uage", "illion", "ware", " Gabrie", "Chuck"], [" ``", "``", "illion", " +:+", "t\u00e9ri", " oftmals", "ware", "\u0169i"], [" MEDIATEK", "Chuck", "\u0639\u0637", "ByteBuffer", " +:+", "uptime", ")paren", "illion"], [" framerate", "uptime", " MEDIATEK", "YNC", "adget", "Ethernet", " ;;^", "eload"], [" Geile", "uptime", " framerate", " ;;^", " milfs", " overclock", " MEDIATEK", "ptime"], [" framerate", " speeds", " uptime", " overclock", "ptime", "uptime", "-speed", "-hour"], [" overclock", " uptime", "ptime", " pornstar", " milfs", "uptime", " bitrate", " framerate"], [" overclock", " pornstar", " uptime", "ptime", " bitrate", " pupper", " milfs", " esports"], [" \u200b\u200b", " speeds", " overclock", "ptime", " uptime", "-hour", " lifespan", " esports"], [" \u200b\u200b", " speeds", " speed", " faster", "\u200b\u200b", " overtime", "-hour", " fastest"], [" speeds", "-hour", " overclock", "ptime", " faster", "/fast", " uptime", " fastest"], ["ptime", "/fast", "-hour", "illion", "uptime", " overclock", " speeds", " billions"], ["/fast", "ptime", "illion", "-hour", " GPUs", " overclock", "!\u00bb", "uptime"], ["/fast", " overclock", " fastest", " GPUs", "speed", " speeds", "ptime", " \u200b\u200b"], ["speed", " fastest", " speeds", " speed", "/fast", "Speed", "\u6bcf\u79d2", " milliseconds"], ["\u6bcf\u79d2", " fastest", " speeds", " speed", "speed", " milliseconds", " overclock", "\u6bcf\u5c0f\u65f6"], ["\u6bcf\u79d2", " milliseconds", " framerate", "\u6bcf\u5c0f\u65f6", " speeds", "\u6bcf\u5206\u949f", "ptime", " fastest"], [" milliseconds", "milliseconds", "\u6bcf\u79d2", " fastest", "Milliseconds", "/fast", "speed", " latency"], ["\u6bcf\u79d2", " milliseconds", "milliseconds", " latency", "Milliseconds", "ptime", " fastest", "\u5468\u671f\u7684"], [" milliseconds", "\u6bcf\u79d2", "Milliseconds", "milliseconds", " latency", " microseconds", "\u6beb\u79d2", "/fast"], [" milliseconds", "\u6bcf\u79d2", "Milliseconds", "milliseconds", "\u5468\u671f\u7684", " TimeSpan", " microseconds", " latency"], [" milliseconds", "\u6bcf\u79d2", "\u6beb\u79d2", "milliseconds", " microseconds", "Milliseconds", " TimeSpan", "\u6bcf\u5206\u949f"], [" milliseconds", "\u6bcf\u79d2", "\u6bcf\u5206\u949f", "\u6beb\u79d2", "milliseconds", "Milliseconds", " microseconds", " TimeSpan"], ["\u6bcf\u79d2", " milliseconds", "\u6bcf\u5206\u949f", "\u6beb\u79d2", "milliseconds", " microseconds", "Milliseconds", "ptime"], ["\u6bcf\u79d2", " milliseconds", "\u6bcf\u5206\u949f", "milliseconds", "\u6bcf", "\u6beb\u79d2", " microseconds", "ptime"], ["\u6bcf", "\u6bcf\u79d2", " milliseconds", "\u6bcf\u5206\u949f", "milliseconds", "each", "_each", "\u6beb\u79d2"], ["\u6bcf\u79d2", " milliseconds", "\u6bcf\u5206\u949f", "\u6bcf", "milliseconds", " microseconds", "\u6beb\u79d2", "\u6bcf\u5c0f\u65f6"], ["\u6bcf\u79d2", " milliseconds", "\u6bcf\u5206\u949f", "milliseconds", "ptime", " microseconds", "\u6beb\u79d2", "\u6bcf"], [" milliseconds", "\u6bcf\u79d2", "milliseconds", " microseconds", "ptime", "\u6bcf\u5206\u949f", "\u6beb\u79d2", "8"], [" milliseconds", " microseconds", "milliseconds", "\u6bcf\u79d2", "ptime", "/fast", "\u6bcf", "Milliseconds"], [" milliseconds", " latency", " microseconds", "milliseconds", "\u6beb\u79d2", "Milliseconds", " timestep", "ptime"], [" milliseconds", " microseconds", " latency", "milliseconds", "\u6beb\u79d2", "Milliseconds", " msec", "ptime"], [" milliseconds", " microseconds", "milliseconds", "Milliseconds", "\u6beb\u79d2", " latency", " msec", " millis"], [" milliseconds", " microseconds", "milliseconds", "Milliseconds", "\u6beb\u79d2", " msec", "-frame", " latency"], [" milliseconds", " microseconds", "-frame", "Milliseconds", " msec", " latency", "ms", "\u6beb\u79d2"], ["ms", " ms", "-frame", " milliseconds", " microseconds", "hz", "Hz", "Milliseconds"], [" ms", "ms", "-ms", ".ms", "(ms", "/ms", " milliseconds", "_ms"], [" ms", "ms", "-ms", "/ms", "(ms", ".ms", " milliseconds", "_ms"], [" ms", "ms", "-ms", ".ms", "/ms", "(ms", " milliseconds", " MS"], ["ms", " ms", "/ms", "-ms", "(ms", ".ms", " milliseconds", "3"], ["ms", ".", " ms", "3", "-ms", "MS", "ns", "(ms"]], "p": [[0.8916, 0.057, 0.0238, 0.005, 0.0034, 0.003, 0.0025, 0.0013], [0.1474, 0.0478, 0.0373, 0.035, 0.0241, 0.0176, 0.0165, 0.0137], [0.3061, 0.2384, 0.1857, 0.1058, 0.0389, 0.0143, 0.0087, 0.0077], [0.0336, 0.0204, 0.0159, 0.0124, 0.0124, 0.0116, 0.0091, 0.0062], [0.0685, 0.0604, 0.0568, 0.0471, 0.0415, 0.039, 0.0285, 0.0268], [0.1771, 0.0165, 0.0083, 0.0061, 0.0053, 0.0047, 0.0044, 0.0044], [0.0988, 0.0412, 0.025, 0.0235, 0.0235, 0.0183, 0.0134, 0.0126], [0.0188, 0.0176, 0.0166, 0.0156, 0.0146, 0.0121, 0.0121, 0.0114], [0.0586, 0.0517, 0.0378, 0.0295, 0.0229, 0.0229, 0.0215, 0.0202], [0.0364, 0.0302, 0.0162, 0.0118, 0.0098, 0.0092, 0.0072, 0.0063], [0.1796, 0.0661, 0.0583, 0.0427, 0.0376, 0.0259, 0.0228, 0.0178], [0.0164, 0.0088, 0.0083, 0.0078, 0.0047, 0.0042, 0.0042, 0.0039], [0.0076, 0.0063, 0.0046, 0.0043, 0.0038, 0.0036, 0.0036, 0.0034], [0.0096, 0.0058, 0.0033, 0.0033, 0.0031, 0.0023, 0.002, 0.002], [0.0145, 0.0047, 0.0047, 0.0032, 0.0027, 0.0027, 0.0027, 0.0025], [0.0056, 0.0034, 0.0032, 0.0024, 0.0022, 0.0022, 0.0022, 0.0017], [0.0096, 0.0062, 0.0028, 0.0026, 0.0026, 0.0026, 0.0023, 0.0023], [0.0035, 0.0035, 0.0026, 0.0026, 0.0026, 0.0023, 0.0021, 0.002], [0.0108, 0.0035, 0.0031, 0.0027, 0.0027, 0.0026, 0.0024, 0.002], [0.0027, 0.0021, 0.0018, 0.0015, 0.0013, 0.0013, 0.0013, 0.0013], [0.0174, 0.005, 0.0044, 0.003, 0.003, 0.003, 0.0028, 0.0024], [0.0046, 0.004, 0.0028, 0.0022, 0.0019, 0.0018, 0.0018, 0.0017], [0.0472, 0.0324, 0.0032, 0.0018, 0.0016, 0.0014, 0.0014, 0.0013], [0.0143, 0.0044, 0.0019, 0.0016, 0.0015, 0.0014, 0.0012, 0.0012], [0.0011, 0.0009, 0.0009, 0.0008, 0.0008, 0.0008, 0.0008, 0.0008], [0.0024, 0.0024, 0.0022, 0.0015, 0.0014, 0.0012, 0.0011, 0.0011], [0.0027, 0.0026, 0.0024, 0.0023, 0.002, 0.0019, 0.0017, 0.0016], [0.0082, 0.0056, 0.0046, 0.0044, 0.0039, 0.0036, 0.0034, 0.0032], [0.0094, 0.005, 0.0042, 0.0037, 0.0035, 0.0033, 0.0031, 0.0029], [0.008, 0.0075, 0.0058, 0.0043, 0.0038, 0.0033, 0.0031, 0.0031], [0.0274, 0.0095, 0.0078, 0.0065, 0.0057, 0.0048, 0.0042, 0.0037], [0.0258, 0.0167, 0.0157, 0.0095, 0.0054, 0.0054, 0.0051, 0.0048], [0.0105, 0.0098, 0.0092, 0.0067, 0.0049, 0.0044, 0.0038, 0.0036], [0.0108, 0.0095, 0.0084, 0.0074, 0.0051, 0.0048, 0.0048, 0.0031], [0.0114, 0.0083, 0.0069, 0.0057, 0.0057, 0.0054, 0.0039, 0.0033], [0.0317, 0.015, 0.0132, 0.0117, 0.0091, 0.0091, 0.0085, 0.008], [0.0764, 0.0764, 0.0674, 0.0435, 0.0384, 0.0339, 0.0233, 0.0219], [0.0748, 0.0514, 0.0354, 0.0312, 0.0312, 0.0312, 0.0228, 0.0178], [0.1545, 0.0534, 0.0304, 0.0304, 0.0237, 0.0184, 0.0163, 0.0153], [0.1295, 0.0395, 0.0395, 0.0289, 0.0255, 0.0225, 0.0175, 0.0113], [0.1968, 0.1737, 0.0439, 0.0195, 0.0195, 0.0195, 0.0172, 0.0162], [0.3904, 0.2368, 0.0363, 0.0363, 0.025, 0.022, 0.0104, 0.0098], [0.4309, 0.1796, 0.0332, 0.0332, 0.0312, 0.0275, 0.0259, 0.0259], [0.6414, 0.0868, 0.0597, 0.0385, 0.0249, 0.0142, 0.0133, 0.0125], [0.4257, 0.2582, 0.0576, 0.0449, 0.0396, 0.0256, 0.0226, 0.0137], [0.3263, 0.2879, 0.136, 0.0567, 0.039, 0.0173, 0.0153, 0.0077], [0.2992, 0.1815, 0.1247, 0.0627, 0.0405, 0.0217, 0.0191, 0.0149], [0.3402, 0.1711, 0.0808, 0.0522, 0.0232, 0.0159, 0.0159, 0.0149], [0.3111, 0.1665, 0.0891, 0.0448, 0.0372, 0.0308, 0.0255, 0.0165], [0.2003, 0.156, 0.1007, 0.0784, 0.0447, 0.0307, 0.0211, 0.0175], [0.1194, 0.0771, 0.0724, 0.0439, 0.0235, 0.0207, 0.0183, 0.0172], [0.1727, 0.0868, 0.0495, 0.0194, 0.0182, 0.0151, 0.0125, 0.011], [0.4433, 0.1848, 0.0989, 0.0364, 0.0266, 0.0134, 0.0059, 0.0049], [0.5026, 0.0873, 0.082, 0.0321, 0.0221, 0.0162, 0.0059, 0.0052], [0.656, 0.114, 0.061, 0.0538, 0.0348, 0.0136, 0.0068, 0.0057], [0.5408, 0.1065, 0.0444, 0.0346, 0.0269, 0.0253, 0.0223, 0.0127], [0.3453, 0.1193, 0.068, 0.0564, 0.0364, 0.0266, 0.0183, 0.0152], [0.1501, 0.1244, 0.1098, 0.0666, 0.043, 0.0335, 0.0296, 0.0261], [0.8186, 0.1612, 0.0055, 0.0043, 0.0038, 0.0033, 0.0012, 0.0005], [0.8609, 0.132, 0.0019, 0.0013, 0.0011, 0.001, 0.0006, 0.0003], [0.7912, 0.2, 0.0029, 0.0015, 0.0015, 0.0012, 0.0008, 0.0002], [0.833, 0.164, 0.0005, 0.0004, 0.0004, 0.0003, 0.0002, 0.0002], [0.9931, 0.0041, 0.0022, 0.0005, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Python": [44024, 221882, 125299, 209649, 77502, 108800, 57025, 81482, 49731, 35494, 13466, 119314, 97775, 103158, 104904, 129998, 104182, 66092, 105988, 140502, 24020, 142839, 59844, 96558, 99652, 147363, 193895, 137699, 91788, 80301, 97908, 66900, 63831, 98192, 110355, 53782, 13121, 31749, 71670, 69373, 95398, 30226, 31101, 42992, 45489, 83079, 101303, 50661, 107101, 63999, 11382, 23736, 20880, 12081, 10818, 12911, 3466, 8126, 13287, 17592, 29001, 5759, 1892]}}, {"pos": 399, "top": [[".", " \u2013", ",", "\u2013", ";", "\u00a0\u00a0", "\u00a0", " "], [" \u2013", "\u2013", " \u200b\u200b", ".", ":.", " Vir", " Kensington", " Went"], [".", "\u2013", ",", "\u2026..", "\u2026.", " \u200b\u200b", " \u2013", ";"], [" milfs", " Blowjob", " cumshot", " Shemale", " Guta", " pornstar", "odle", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9"], [" \u200b\u200b", " HK", " \u201c.", "(@", " (@", ":@", ".", "\u201c."], [" \u200b\u200b", ".", " \u201c.", "\u2026.", "\u2026..", " HK", " \u201c", "\u00a0\u00a0"], [" \n", "   \n", "  \n", "\u3002", " \u200b\u200b", "\u000b", "\u201c", "\t  "], ["   \n", " \n", " \t\n", "\u000b", "       \n", "  \n", " \u200b\u200b", "    \n"], [" \u200b\u200b", " \n", "   \n", ".", "    \n", "\u201c.", "   \n\n", "\t\n"], [" \u00ad", " \t\n", "\u00ad", "\u00adt", "\u00a0", "\ufffd", "\u200b", "\u2013"], ["\u00a0", " @", "\n", "@", "2", "8", "&nbsp", "\ufffd"], [" ____", "haps", "avian", "ogar", "avior", "htar", "-ish", " _____"], ["htar", "ogar", "-ish", "-esque", "avior", "uptime", "igl", "avian"], ["-esque", "-ish", "uptime", "Sharper", "igl", "ergia", "igencia", "avian"], ["-esque", " flashy", " savvy", " pricey", "\u9738\u6c14", "-ish", "wow", " teen"], ["-esque", " savvy", " pricey", " touted", " standout", " goofy", " skinny", "kids"], ["-esque", " standout", "-tech", " savvy", " tech", " skinny", "-ish", " pricey"], ["-esque", "-tech", "bonus", "-ish", "Sharper", "boost", "avg", "wow"], ["-esque", "Sharper", "avg", "ksom", " Aviv", "\u9738\u6c14", "wow", "boost"], ["-esque", "boost", "Though", "Sharper", "&m", "-than", "avg", "\u76f8\u8f83"], ["<|endoftext|>", "8", "7", "9", "6", "Though", "2", "4"], ["ksom", "Sharper", "\u5de8\u517d", "\u6253\u6e38\u620f", "uptime", "-esque", "\uc728", "Splash"], ["-esque", "8", "Hyper", " oftmals", "ksom", "7", "\u5de8\u517d", "Though"], ["8", "7", "9", "Though", "6", "5", "Hyper", "4"], ["Though", "\u6b64\u756a", "\u642d\u914d\u4e0a", "\uc728\uc744", "8", "\u9ebe", "7", "Eight"], ["\uc728", "uptime", "\uc728\uc744", "baugh", "ksom", "\u5168\u7403\u7684", "\u9891\u6b21", "\u9ebe"], ["uptime", "\uc728", "\u6bcf\u5206\u949f", "\u6bcf\u5c0f\u65f6", "ksom", " ;;^", "\u6253\u6e38\u620f", " uptime"], [" overtime", "uptime", " hours", " microseconds", "-hours", " speed", "-hour", "\u6bcf\u5206\u949f"], [" pornstar", "uptime", "ptime", "\u6bcf\u79d2", " microseconds", " millennials", "\u6bcf\u5206\u949f", " overclock"], [" \u200b\u200b", "\u200b\u200b", "\u6bcf\u79d2", " uptime", " microseconds", "avg", " trillion", " millennials"], [" \u200b\u200b", " speed", "\u200b\u200b", " hours", " peak", " time", "\u6bcf\u79d2", " overtime"], [" speed", " \u2013", " \u200b\u200b", " time", " hours", " peak", "\u200b\u200b", " power"], [" \u2013", "\u2013", "\u2011", "\u6bcf\u79d2", " speed", "\u200b", " \u2014", " hours"], ["\u6bcf\u79d2", "\u6bcf\u5206\u949f", "\u6bcf\u5c0f\u65f6", "ptime", " fastest", " trillion", " peak", "-hour"], ["\u6bcf\u79d2", "\u6bcf\u5206\u949f", "\u6bcf\u5c0f\u65f6", " fastest", "/fast", " speed", " hourly", " speeds"], ["\u6bcf\u79d2", "\u6bcf\u5206\u949f", " fastest", "\u6bcf\u5c0f\u65f6", "/fast", " speed", "speed", " speeds"], ["\u6bcf\u79d2", " speed", "\u6bcf\u5206\u949f", " fastest", "speed", " speeds", "Speed", "\u6bcf\u5c0f\u65f6"], ["\u6bcf\u79d2", "\u6bcf\u5206\u949f", "\u6bcf\u5c0f\u65f6", " speed", " milliseconds", " \u200b\u200b", " framerate", " fastest"], ["\u6bcf\u79d2", " milliseconds", " framerate", " microseconds", "ptime", "\u6bcf\u5206\u949f", " latency", " speed"], [" milliseconds", "\u6bcf\u79d2", " framerate", "milliseconds", " microseconds", " latency", "Milliseconds", "ptime"], ["\u6bcf\u79d2", " milliseconds", " framerate", "ptime", " microseconds", "milliseconds", " latency", " timeframe"], [" milliseconds", "\u6bcf\u79d2", " microseconds", " latency", "milliseconds", " framerate", "ptime", "Milliseconds"], ["\u6bcf\u79d2", " milliseconds", "\u5468\u671f\u7684", " microseconds", " latency", "\u6bcf\u5206\u949f", "milliseconds", "ptime"], [" milliseconds", "\u6bcf\u79d2", "\u6beb\u79d2", " microseconds", "\u6bcf\u5206\u949f", "milliseconds", " latency", "Milliseconds"], ["\u6bcf\u79d2", " milliseconds", "\u6bcf\u5206\u949f", " microseconds", "\u6beb\u79d2", "milliseconds", "Milliseconds", "\u6bcf"], ["\u6bcf\u79d2", " milliseconds", "\u6bcf\u5206\u949f", "\u6beb\u79d2", " microseconds", "milliseconds", "Milliseconds", " latency"], ["\u6bcf\u79d2", " milliseconds", "\u6bcf\u5206\u949f", "milliseconds", " microseconds", "\u6bcf", "\u6beb\u79d2", "ptime"], ["\u6bcf", "\u6bcf\u79d2", " milliseconds", "\u6bcf\u5206\u949f", "milliseconds", "\u6beb\u79d2", " microseconds", "\u6bcf\u4e2a"], ["\u6bcf\u79d2", "\u6bcf", " milliseconds", "\u6bcf\u5206\u949f", "\u6beb\u79d2", " microseconds", "milliseconds", "ptime"], ["\u6bcf\u79d2", "\u6bcf", " milliseconds", "\u6beb\u79d2", "\u6bcf\u5206\u949f", "milliseconds", " microseconds", "ptime"], [" milliseconds", "milliseconds", " microseconds", "\u6beb\u79d2", "\u6bcf\u79d2", "ptime", "\u7ea6", "Milliseconds"], [" milliseconds", " microseconds", "milliseconds", "ptime", "Milliseconds", "\u6beb\u79d2", " framerate", "conds"], [" milliseconds", " microseconds", " latency", "milliseconds", "Milliseconds", "\u6beb\u79d2", " framerate", " deltaTime"], [" milliseconds", " microseconds", " latency", "milliseconds", "\u6beb\u79d2", " msec", "Milliseconds", "ptime"], [" milliseconds", " microseconds", "\u6beb\u79d2", "milliseconds", "Milliseconds", " msec", " millis", " latency"], [" milliseconds", " microseconds", "milliseconds", " msec", "\u6beb\u79d2", "Milliseconds", "\u5e27", " latency"], [" milliseconds", " msec", " microseconds", "Milliseconds", "\u6beb\u79d2", "milliseconds", "-frame", " ms"], ["ms", " ms", "3", " milliseconds", " ish", " microseconds", "8", "-frame"], [" ms", "ms", " milliseconds", "-ms", ".ms", "/ms", "(ms", " msec"], [" ms", "ms", "/ms", " milliseconds", "-ms", "(ms", ".ms", " MS"], [" ms", "ms", "/ms", "(ms", "-ms", "3", " milliseconds", " MS"], ["3", " ms", "ms", "/ms", "(ms", "-ms", " MS", " milliseconds"], ["3", "4", "6", "2", "5", "1", "8", "7"]], "p": [[0.8336, 0.0879, 0.0366, 0.0127, 0.0068, 0.0036, 0.0027, 0.0019], [0.0263, 0.016, 0.0117, 0.0055, 0.0033, 0.003, 0.0025, 0.0025], [0.6438, 0.1436, 0.0679, 0.0466, 0.0363, 0.0126, 0.0118, 0.0052], [0.0384, 0.0264, 0.0103, 0.0086, 0.0076, 0.004, 0.0038, 0.003], [0.0212, 0.0155, 0.0121, 0.0047, 0.0044, 0.0037, 0.0032, 0.0032], [0.4082, 0.0131, 0.0096, 0.0066, 0.0066, 0.0026, 0.0024, 0.002], [0.1147, 0.0577, 0.0449, 0.024, 0.0226, 0.0199, 0.0165, 0.0129], [0.039, 0.0153, 0.0127, 0.0087, 0.0072, 0.0064, 0.006, 0.0056], [0.2432, 0.0543, 0.0291, 0.0241, 0.02, 0.0176, 0.0176, 0.0166], [0.0151, 0.0133, 0.0117, 0.0104, 0.0097, 0.0091, 0.0067, 0.0046], [0.0849, 0.0621, 0.0515, 0.0484, 0.0401, 0.0377, 0.0293, 0.0276], [0.0107, 0.0042, 0.0024, 0.0022, 0.0016, 0.0016, 0.0015, 0.0014], [0.0028, 0.0025, 0.0023, 0.0022, 0.002, 0.002, 0.0019, 0.0018], [0.0055, 0.003, 0.0025, 0.002, 0.0017, 0.0013, 0.0012, 0.001], [0.0081, 0.0019, 0.0018, 0.0018, 0.0015, 0.0015, 0.0015, 0.0014], [0.0152, 0.003, 0.0028, 0.0024, 0.0023, 0.0017, 0.0013, 0.0012], [0.0356, 0.0055, 0.0048, 0.0035, 0.0029, 0.0026, 0.0026, 0.0024], [0.0134, 0.0081, 0.0028, 0.0022, 0.0022, 0.0022, 0.002, 0.002], [0.0029, 0.0025, 0.0018, 0.0016, 0.0014, 0.0013, 0.0012, 0.0011], [0.0051, 0.0033, 0.0031, 0.0017, 0.0013, 0.0013, 0.0012, 0.0011], [0.4487, 0.0346, 0.0269, 0.0174, 0.0144, 0.012, 0.0112, 0.0106], [0.0025, 0.0015, 0.0014, 0.0014, 0.0014, 0.0011, 0.001, 0.001], [0.0028, 0.0016, 0.0013, 0.0013, 0.0012, 0.0012, 0.001, 0.001], [0.0112, 0.0098, 0.0039, 0.0032, 0.003, 0.0018, 0.0018, 0.0012], [0.0019, 0.0012, 0.0012, 0.0011, 0.001, 0.001, 0.001, 0.0009], [0.0024, 0.0024, 0.0015, 0.0013, 0.0012, 0.0012, 0.001, 0.0009], [0.004, 0.0024, 0.0019, 0.0015, 0.0014, 0.0013, 0.0012, 0.0012], [0.0043, 0.0034, 0.0032, 0.003, 0.0026, 0.0025, 0.0025, 0.0023], [0.0043, 0.0029, 0.0027, 0.0027, 0.0027, 0.0026, 0.0023, 0.0023], [0.0387, 0.0126, 0.0076, 0.0046, 0.0041, 0.0041, 0.0038, 0.0038], [0.0541, 0.0165, 0.0146, 0.0128, 0.0078, 0.0073, 0.0069, 0.0069], [0.028, 0.0232, 0.0232, 0.0192, 0.0181, 0.0117, 0.011, 0.0103], [0.2975, 0.0852, 0.0215, 0.0168, 0.0168, 0.0115, 0.0108, 0.0102], [0.0439, 0.0364, 0.0221, 0.0092, 0.0081, 0.0076, 0.0072, 0.0072], [0.1189, 0.0986, 0.0437, 0.0111, 0.0098, 0.0092, 0.0071, 0.0063], [0.2797, 0.0908, 0.0314, 0.0295, 0.0277, 0.0168, 0.0108, 0.0102], [0.4108, 0.1106, 0.076, 0.0433, 0.0298, 0.0263, 0.0232, 0.0192], [0.4014, 0.0616, 0.0397, 0.0373, 0.0351, 0.031, 0.0257, 0.0166], [0.1965, 0.1629, 0.0638, 0.0497, 0.0266, 0.0235, 0.0207, 0.0183], [0.3028, 0.1344, 0.0815, 0.0596, 0.0526, 0.0249, 0.016, 0.016], [0.2787, 0.1915, 0.0798, 0.0455, 0.0427, 0.0401, 0.0313, 0.0178], [0.3, 0.3, 0.049, 0.0406, 0.0381, 0.0279, 0.0231, 0.018], [0.2837, 0.2504, 0.0435, 0.0409, 0.0384, 0.0248, 0.0248, 0.0181], [0.3953, 0.2717, 0.0417, 0.0368, 0.0286, 0.0223, 0.0185, 0.0099], [0.5871, 0.1682, 0.0795, 0.0214, 0.0214, 0.0138, 0.0101, 0.0101], [0.468, 0.1951, 0.1183, 0.0463, 0.0264, 0.0206, 0.0125, 0.0103], [0.3618, 0.1819, 0.0669, 0.0432, 0.0381, 0.0337, 0.0217, 0.0217], [0.2564, 0.2409, 0.069, 0.0393, 0.0224, 0.0198, 0.0164, 0.012], [0.2751, 0.1567, 0.074, 0.0422, 0.0372, 0.024, 0.0212, 0.0129], [0.1919, 0.0706, 0.0623, 0.0402, 0.0378, 0.0333, 0.0276, 0.0215], [0.0556, 0.0317, 0.0317, 0.0192, 0.015, 0.015, 0.0124, 0.0085], [0.0878, 0.0642, 0.0344, 0.0126, 0.0119, 0.0119, 0.0105, 0.0064], [0.2016, 0.0952, 0.0423, 0.0309, 0.0226, 0.0188, 0.0121, 0.0114], [0.1642, 0.0533, 0.0442, 0.0222, 0.0184, 0.0184, 0.0153, 0.0112], [0.5652, 0.1185, 0.0765, 0.0719, 0.0339, 0.0133, 0.0133, 0.0097], [0.3043, 0.0819, 0.0723, 0.0497, 0.0412, 0.0172, 0.0134, 0.0118], [0.2292, 0.0898, 0.0843, 0.0424, 0.0291, 0.0213, 0.02, 0.0188], [0.1096, 0.0665, 0.0587, 0.0334, 0.0216, 0.0216, 0.0158, 0.0148], [0.6271, 0.3357, 0.0058, 0.0051, 0.0048, 0.0037, 0.0029, 0.0023], [0.82, 0.1615, 0.0031, 0.0031, 0.0028, 0.0022, 0.0015, 0.001], [0.8963, 0.0945, 0.0025, 0.0017, 0.0015, 0.0008, 0.0007, 0.0005], [0.7574, 0.169, 0.0705, 0.0006, 0.0004, 0.0004, 0.0003, 0.0002], [0.9999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Python": [57776, 196465, 136487, 184315, 28613, 73192, 43564, 69735, 58900, 36930, 13870, 139377, 100461, 132479, 104529, 160036, 82031, 41656, 78868, 73459, 12808, 120746, 30618, 50783, 53997, 96498, 163930, 65581, 44930, 10346, 27536, 24067, 33906, 43464, 61304, 30954, 13642, 32801, 55185, 85768, 92203, 75680, 94843, 95613, 67056, 99905, 130736, 50839, 120800, 96563, 43711, 89209, 77486, 47192, 27778, 30832, 8518, 8566, 14818, 7732, 16756, 5246, 2080]}}, {"pos": 400, "top": [[".", " \u2013", "\u2013", "s", "y", "\u2026..", ",", ".\u2013"], [" \u2013", "  \n", "\u2013", "   \n", " \u2013**", "s", "\u2013and", " *\u2013"], ["\u2013", " \u2013", ".\u2013", ".", "\u2026..", "\u2013and", "\u2026.", "**\u2013"], [" milfs", " Blowjob", " cumshot", " Shemale", " **:**", " ____", " **.**", " **\u25cb"], [" ***", "  \n", " \"***", "   \n", " ____", " ****", " **.", " ______"], [".", " ***", " **,", " **", ".\u2013", "   \n", " \u201c.", " \")"], [".", "  \n", " ____", " ***", "____", "\u3002", "\uff08", " ______"], [".", " ***", "s", "  \n", " ____", "rd", "--", "\\n"], [".", ",", "s", "!", ";", ".\u201d", "@", ":"], [".", ",", "s", ";", ":", "rd", "-", "\u2013"], [".", ",", "-", "s", ";", "@", "\"", ".\""], ["rd", " ***", "ward", " ____", "s", " \\\"$", " --", " \\\""], ["rd", "s", "ward", "ra", "istrator", "orama", "-CS", "ados"], ["rd", "s", "raries", "orama", "ward", "ra", " Cabr", "ados"], ["s", "rd", "ward", "ra", "--", " --", " Cabr", "n"], [" goofy", "s", " Nues", "rd", "orama", "raries", " Shepard", "rokes"], ["s", "rd", " goofy", "ala", "orama", "paced", "ra", " rookie"], ["rd", "s", "ra", "ala", " goofy", "-CS", "paced", "Cs"], ["rd", " --", "s", "htag", "rab", "\u0261", " \\\"$", "\u6709\u9053"], [" --", "rd", "--", "s", "n", ")--", "\"--", "r"], [" --", "s", "2", "3", "--", "n", "1", "4"], [" --", "rd", " ---", "s", "illion", " #%", " #", "htag"], [" --", "8", "7", "9", " ---", "2", "4", "n"], [" --", "8", "7", "9", "2", "n", "6", "3"], [" --", "7", "8", "9", "\n\n", "2", "6", "4"], [" --", " ___", " ---", " ____", " \n  \n", " ______", " horsepower", "illion"], [" --", " hours", "illion", " horsepower", " sleep", " overtime", " hour", " days"], [" --", " hours", " &", " ___", " ,", "illion", " rate", " #"], [" --", " hours", "illion", " horsepower", " hour", " rate", " speed", " seconds"], [" hours", " rate", " horsepower", " peak", " hour", " --", " speed", " seconds"], [" .", " hours", " time", " speed", " rate", " ,", " over", " \u2013"], [" \u2013", " hours", " time", " speed", " .", " six", " peak", " /"], [" \u2013", " hours", " time", " /", "\u2013", " speed", " peak", " hour"], [" peak", " hours", " \u2013", "\u2013", " speed", " hour", " time", " rate"], [" peak", " avg", " hours", " fastest", "/fast", " speed", " minimum", " hourly"], [" fastest", " speed", "/fast", " peak", " rapid", " milliseconds", "\u6bcf\u79d2", " fast"], [" speed", " fastest", " speeds", "/fast", "\u6bcf\u79d2", " fast", " milliseconds", " faster"], [" speed", " fastest", " milliseconds", " peak", " fast", " hours", "\u6bcf\u79d2", " rapid"], [" milliseconds", " fastest", " speed", "\u6bcf\u79d2", " latency", " rapid", " faster", " fast"], [" milliseconds", " speed", " fastest", "\u6bcf\u79d2", " latency", " microseconds", "/fast", " speeds"], [" milliseconds", "\u6bcf\u79d2", " latency", " microseconds", " fastest", " speed", " time", " delay"], [" milliseconds", " latency", "\u6bcf\u79d2", " microseconds", " time", " fastest", " timeframe", "milliseconds"], [" milliseconds", " latency", "\u6bcf\u79d2", " microseconds", " timeframe", "\u6bcf\u5206\u949f", "\u6beb\u79d2", " elapsed"], [" milliseconds", " microseconds", "\u6bcf\u79d2", " latency", "\u6beb\u79d2", " seconds", "\u6bcf\u5206\u949f", " timeframe"], [" milliseconds", "\u6bcf\u79d2", " microseconds", "\u6bcf\u5206\u949f", " latency", " minutes", " avg", " seconds"], [" milliseconds", "\u6bcf\u79d2", " latency", "\u6bcf\u5206\u949f", " microseconds", " rapid", " speed", " minutes"], [" milliseconds", "\u6bcf\u79d2", " latency", "\u6bcf\u5206\u949f", " microseconds", " each", " EACH", " timeframe"], [" milliseconds", "\u6bcf\u79d2", " latency", " timeframe", "\u6bcf", " each", "\u6bcf\u5206\u949f", " EACH"], [" milliseconds", "\u6bcf\u79d2", " latency", "\u6bcf", " microseconds", " timeframe", "\u6bcf\u5206\u949f", " each"], [" milliseconds", "\u6bcf\u79d2", " microseconds", " latency", "\u6bcf", " timeframe", "\u6bcf\u5206\u949f", "Milliseconds"], [" latency", " milliseconds", "\u6bcf\u79d2", " timeframe", " microseconds", "\u6bcf", " downtime", "\u6bcf\u5206\u949f"], [" latency", " milliseconds", " microseconds", " timeframe", " downtime", "\u6bcf\u79d2", "\u6bcf", " interval"], [" latency", " milliseconds", " microseconds", " timeframe", "\u6beb\u79d2", "Milliseconds", " downtime", " interval"], [" latency", " milliseconds", " microseconds", " timeframe", "Milliseconds", " timestep", "\u6beb\u79d2", " downtime"], [" milliseconds", " latency", " microseconds", "\u6beb\u79d2", "Milliseconds", " timeframe", "\u5e27", "milliseconds"], [" milliseconds", " per", " latency", " microseconds", "/frame", " frames", "\u5e27", " timeframe"], [" latency", " milliseconds", " per", "/frame", " frames", " microseconds", "-frame", "\u5e27"], ["/frame", " latency", " milliseconds", "-frame", " frames", " per", " ms", "\u5e27"], [" ms", "ms", " frames", " frame", "-frame", "\u5e27", "/frame", " Frame"], [" ms", "ms", "/ms", " frames", " frame", "-frame", "/frame", " milliseconds"], [" ms", "ms", "/ms", ".ms", "(ms", " MS", " milliseconds", "-ms"], ["ms", " ms", "3", "/ms", " MS", ".ms", "(ms", "MS"], ["3", "ms", " ms", "4", "2", "5", "1", "7"]], "p": [[0.5184, 0.3563, 0.0582, 0.0089, 0.0051, 0.0042, 0.0042, 0.0035], [0.4598, 0.0799, 0.0276, 0.0157, 0.0139, 0.0115, 0.009, 0.0079], [0.2987, 0.2636, 0.1812, 0.1599, 0.0261, 0.0169, 0.0109, 0.0066], [0.0262, 0.0204, 0.0109, 0.0103, 0.0075, 0.0071, 0.0066, 0.0062], [0.21, 0.0162, 0.0118, 0.0111, 0.0111, 0.0098, 0.0087, 0.0087], [0.5014, 0.0172, 0.0072, 0.0067, 0.0067, 0.0067, 0.0059, 0.0056], [0.1788, 0.0844, 0.0793, 0.0793, 0.0352, 0.0274, 0.0242, 0.0177], [0.667, 0.0354, 0.0354, 0.0147, 0.0138, 0.0074, 0.0065, 0.0058], [0.9699, 0.0089, 0.0037, 0.0011, 0.0009, 0.0008, 0.0007, 0.0007], [0.581, 0.3993, 0.0054, 0.0027, 0.0016, 0.0013, 0.0011, 0.0008], [0.934, 0.041, 0.0041, 0.0038, 0.003, 0.0012, 0.001, 0.0007], [0.0441, 0.0344, 0.0196, 0.0162, 0.0143, 0.0135, 0.0105, 0.0087], [0.051, 0.0146, 0.0107, 0.0043, 0.0042, 0.0037, 0.0036, 0.0026], [0.0411, 0.0086, 0.0063, 0.0049, 0.0046, 0.0039, 0.0028, 0.0022], [0.0953, 0.0616, 0.0146, 0.0094, 0.0069, 0.0049, 0.0041, 0.0039], [0.0044, 0.0032, 0.0021, 0.0018, 0.0017, 0.0013, 0.0011, 0.001], [0.0275, 0.0201, 0.0058, 0.0026, 0.0023, 0.0019, 0.0016, 0.0015], [0.0137, 0.0114, 0.0028, 0.0028, 0.0021, 0.0018, 0.0018, 0.0017], [0.0222, 0.0092, 0.0049, 0.0034, 0.0025, 0.0023, 0.002, 0.0019], [0.2986, 0.0315, 0.0296, 0.0203, 0.0158, 0.0048, 0.004, 0.0038], [0.1241, 0.1166, 0.0801, 0.0586, 0.0586, 0.0517, 0.0403, 0.0403], [0.4121, 0.0075, 0.0071, 0.0071, 0.0033, 0.0025, 0.0016, 0.0015], [0.7369, 0.0209, 0.0196, 0.0163, 0.0135, 0.0112, 0.0105, 0.0093], [0.5942, 0.0261, 0.0261, 0.0191, 0.0123, 0.0109, 0.0109, 0.0096], [0.2952, 0.0453, 0.0425, 0.0399, 0.0311, 0.0292, 0.0242, 0.0228], [0.1811, 0.0216, 0.0066, 0.0055, 0.0043, 0.004, 0.0029, 0.0021], [0.0338, 0.0247, 0.0103, 0.0062, 0.0049, 0.0046, 0.0038, 0.0036], [0.6495, 0.0209, 0.0119, 0.0072, 0.0053, 0.005, 0.0041, 0.0032], [0.0831, 0.0418, 0.0154, 0.0093, 0.0077, 0.0044, 0.0041, 0.0039], [0.0402, 0.0157, 0.013, 0.009, 0.009, 0.0084, 0.0079, 0.0066], [0.0594, 0.0463, 0.0233, 0.0219, 0.0205, 0.0181, 0.0141, 0.0097], [0.0315, 0.0296, 0.0231, 0.0149, 0.0109, 0.0102, 0.0102, 0.0102], [0.2032, 0.0376, 0.0312, 0.0293, 0.0228, 0.0189, 0.0147, 0.0079], [0.0472, 0.0444, 0.0305, 0.0287, 0.0163, 0.0135, 0.0127, 0.0072], [0.0368, 0.0223, 0.021, 0.021, 0.0174, 0.0174, 0.0087, 0.0082], [0.0822, 0.064, 0.0365, 0.0284, 0.0162, 0.0152, 0.0152, 0.0143], [0.2477, 0.1502, 0.0315, 0.0296, 0.0278, 0.0278, 0.0261, 0.0245], [0.1352, 0.0989, 0.0283, 0.0266, 0.0266, 0.025, 0.0207, 0.0207], [0.1148, 0.1079, 0.1013, 0.0654, 0.029, 0.0212, 0.02, 0.0187], [0.2827, 0.1255, 0.1107, 0.0977, 0.0434, 0.0338, 0.0205, 0.0181], [0.3388, 0.11, 0.0805, 0.0553, 0.0459, 0.0357, 0.0296, 0.0217], [0.5734, 0.0776, 0.0604, 0.0501, 0.0163, 0.0135, 0.0127, 0.0077], [0.4849, 0.1226, 0.0699, 0.0616, 0.0213, 0.0089, 0.0074, 0.0074], [0.6873, 0.0564, 0.0564, 0.0266, 0.0172, 0.0104, 0.0092, 0.0087], [0.4503, 0.1462, 0.0609, 0.0393, 0.0288, 0.012, 0.0113, 0.0093], [0.3151, 0.1089, 0.0703, 0.062, 0.0426, 0.0243, 0.0167, 0.0122], [0.2614, 0.1314, 0.0661, 0.0484, 0.0427, 0.0293, 0.0228, 0.0228], [0.1523, 0.1262, 0.0635, 0.0635, 0.056, 0.041, 0.034, 0.0282], [0.2125, 0.1372, 0.069, 0.0609, 0.0474, 0.0445, 0.0306, 0.0198], [0.2546, 0.175, 0.0501, 0.0501, 0.0471, 0.0324, 0.0286, 0.0173], [0.1423, 0.118, 0.0863, 0.0811, 0.0762, 0.0218, 0.0218, 0.0103], [0.2636, 0.2326, 0.117, 0.0856, 0.023, 0.0158, 0.0131, 0.008], [0.579, 0.2735, 0.061, 0.0186, 0.0047, 0.003, 0.0029, 0.0024], [0.6759, 0.1937, 0.0337, 0.0116, 0.0029, 0.0024, 0.0023, 0.0022], [0.5602, 0.2646, 0.0521, 0.014, 0.014, 0.0116, 0.0071, 0.0062], [0.3091, 0.2124, 0.146, 0.0537, 0.0537, 0.0369, 0.0306, 0.0174], [0.1737, 0.1533, 0.1533, 0.0771, 0.0498, 0.0413, 0.0364, 0.0221], [0.2055, 0.1033, 0.0912, 0.0805, 0.0589, 0.0589, 0.0405, 0.0335], [0.8155, 0.0759, 0.0279, 0.0246, 0.0149, 0.0116, 0.0091, 0.0062], [0.8976, 0.0946, 0.0025, 0.0013, 0.0011, 0.0006, 0.0004, 0.0004], [0.8787, 0.1189, 0.0015, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001], [0.6777, 0.3201, 0.0013, 0.0004, 0.0001, 0.0001, 0.0001, 0.0], [0.939, 0.06, 0.0008, 0.0001, 0.0001, 0.0, 0.0, 0.0]], "ranks": {"Python": [12132, 165675, 62127, 88627, 4218, 9319, 13192, 11714, 13019, 9459, 10319, 17165, 17265, 18557, 15302, 37389, 13464, 3924, 2381, 3924, 978, 7005, 751, 2862, 1638, 4715, 17031, 7526, 6454, 5006, 6677, 8369, 7507, 7405, 15638, 18076, 6338, 7220, 14786, 30138, 26059, 18098, 24780, 26654, 18282, 22496, 36371, 36786, 44703, 34359, 16175, 14564, 19398, 10910, 5886, 3815, 1701, 1108, 2296, 1682, 2316, 2839, 2193]}}, {"pos": 401, "top": [[".", " \u2013", "\u2013", ",", ";", "\u2026..", "s", "y"], [" \u2013**", "\u2013\u2013", " Strec", " \u2013", " **:**", " fkk", "**\u2013", " Hidal"], ["\u2013", " \u2013", "\u2013and", ".\u2013", "**\u2013", "\u2013\u2013", " **\u2013", "\u2026.."], [" **>>", " **:**", " !***", " **:", " milfs", " fkk", " **\u25cb", " \u041a\u0440\u0430\u0441\u0438"], [" ***", " --", " **", " ---", " ----", " **:", "-**", " \"**"], [" **:", " **", " ***", " \"**", "-**", " **)", " **:**", " **,"], [" --", " ---", " ***", " ``", "``", " **", "---", "**"], [" ``", " \\\"", " ***", " --", " ---", "\\\"", "``", " **"], [" ``", "``", "\\\"", " \\\"", " **.**", "**", "\"**", " \"**"], [" ``", "``", "\\\"", " \\\"", " \"**", "\\\"\\", "''", "---"], [" \\\"", "\\\"", " ``", "``", ".\\\"", " --", "---", " ---"], [" ``", " **", " \\\"", " **\u300c", "``", " ***", " **.**", " \"**"], [" ``", " **", "``", " **\u300c", " \\\"", " \"**", " **.**", "istrator"], [" ``", "``", "istrator", "ity", "ish", "raries", "pell", " \\\""], [" ``", " --", "``", " \\\"", "ish", "s", "ties", "ity"], [" ``", "``", " \\\"", " goofy", "pell", "ties", "bucks", "wares"], [" ``", "s", "ish", "ity", "pell", " goofy", "ties", " \\\""], [" ``", "pell", "``", "\u2501", " goofy", "wares", "LLLL", "aroo"], [" ``", "``", "\u2501", "pell", "LLLL", " ''", " \u00bb**", "aroo"], [" ``", " --", "``", " ''", " ---", "''", "\u2501", "ish"], [" --", "n", "s", "1", "3", "2", "l", "7"], [" ``", " ''", "s", " --", "ly", "``", "ish", " atop"], [" --", "n", " ''", "ly", "s", " ``", " ---", "l"], [" --", "s", "ly", "n", "1", "7", "3", "2"], ["1", "2", "7", "9", "3", "6", "n", "8"], [" --", "ly", " atop", " ''", " ---", "s", " upon", " speed"], [" ''", " speed", " atop", " speeds", " seconds", " overtime", "ly", " hours"], [" --", " ''", " ,", " atop", " speed", " hours", " upon", " to"], [" --", " ''", " atop", " speed", " hours", " seconds", " speeds", " ]]"], [" ''", " --", " atop", " speed", " hours", " seconds", " \\\"", " overtime"], [" ''", " speed", " to", " time", " ,", " hours", " --", " on"], [" speed", " \u2013", " to", " time", " \u2014", " ", " on", " ''"], [" \u2014", " speed", " \u2013", " time", " --", "\u2013", " to", " hours"], [" speed", " \u2013", "\u2013", " \u2014", " time", " speeds", " hours", " seconds"], [" speed", " speeds", " \u2014", " fastest", " pace", " clock", "\u2013", " time"], [" speed", " fastest", "\u6bcf\u79d2", " speeds", " \u2013", " \u2014", " milliseconds", "\u2013"], [" speed", " fastest", " speeds", "\u6bcf\u79d2", " milliseconds", " faster", " time", " Speed"], [" speed", " time", " fastest", "\u6bcf\u79d2", " milliseconds", " speeds", " seconds", " fast"], [" milliseconds", " speed", " time", "\u6bcf\u79d2", " fastest", " framerate", " hours", " seconds"], [" milliseconds", " time", " delay", " speed", " latency", " microseconds", " fastest", "\u6bcf\u79d2"], [" milliseconds", " time", " delay", "\u6bcf\u79d2", " latency", " speed", " timeframe", " microseconds"], [" milliseconds", " time", "\u6bcf\u79d2", " microseconds", " latency", " timeframe", " speed", " delay"], [" milliseconds", " microseconds", " timeframe", " latency", "\u6bcf\u79d2", " time", " speed", " interval"], [" milliseconds", " microseconds", " timeframe", " seconds", " latency", "\u6bcf\u79d2", " time", " delay"], [" milliseconds", " microseconds", "\u6bcf\u79d2", " speed", " latency", " seconds", " time", " timeframe"], [" milliseconds", " latency", " microseconds", " speed", "\u6bcf\u79d2", " seconds", " timeframe", " time"], [" milliseconds", " latency", " microseconds", "\u6bcf\u79d2", " each", " timeframe", " avg", " delay"], [" milliseconds", " timeframe", " each", " latency", " per", "\u6bcf\u79d2", " microseconds", "\u6bcf"], [" milliseconds", " microseconds", " latency", " timeframe", "\u6bcf\u79d2", "\u6bcf", " per", "\u6bcf\u5206\u949f"], [" milliseconds", "\u6bcf\u79d2", " latency", " microseconds", " timeframe", "\u6bcf", "Milliseconds", "\u6bcf\u5206\u949f"], [" timeframe", " milliseconds", " latency", " microseconds", "\u6bcf\u79d2", " framerate", " downtime", "Milliseconds"], [" milliseconds", " latency", " timeframe", " microseconds", " downtime", " interval", "CONDS", "\u6bcf\u79d2"], [" latency", " milliseconds", " microseconds", " timeframe", "\u6beb\u79d2", " timestep", "milliseconds", " framerate"], [" latency", " milliseconds", " microseconds", " timeframe", " framerate", " timestep", "\u6beb\u79d2", " seconds"], [" milliseconds", " latency", " microseconds", "\u6beb\u79d2", "\u5e27", " framerate", "milliseconds", "Milliseconds"], [" milliseconds", " per", " latency", "/frame", " microseconds", " frames", "\u5e27", "-frame"], ["/frame", " latency", " milliseconds", " per", " frames", "-frame", " microseconds", "\u5e27"], ["/frame", " latency", " milliseconds", "-frame", " frames", "ms", " per", " ms"], [" ms", "ms", " frame", " frames", "-frame", "/ms", "/frame", "\u5e27"], [" ms", "ms", "/ms", " frame", " frames", "-frame", "/frame", " milliseconds"], [" ms", "ms", "/ms", " MS", "-ms", " milliseconds", "(ms", ".ms"], ["ms", " ms", "/ms", " MS", "(ms", ".ms", "-ms", "ns"], ["ms", " ms", "3", "ns", "/ms", "-ms", "MS", " MS"]], "p": [[0.4603, 0.3585, 0.1319, 0.0202, 0.0035, 0.0029, 0.0027, 0.0026], [0.0582, 0.0178, 0.0122, 0.0084, 0.0084, 0.0074, 0.007, 0.0065], [0.3266, 0.3266, 0.0879, 0.0826, 0.0501, 0.0323, 0.0173, 0.0093], [0.0443, 0.0345, 0.0153, 0.0144, 0.0112, 0.0112, 0.0077, 0.0064], [0.2901, 0.0537, 0.0474, 0.0346, 0.0346, 0.0238, 0.0224, 0.021], [0.0897, 0.0791, 0.0544, 0.033, 0.0146, 0.0146, 0.0138, 0.0114], [0.1423, 0.1256, 0.1108, 0.0978, 0.0557, 0.0298, 0.0232, 0.0232], [0.145, 0.1129, 0.1061, 0.0997, 0.0568, 0.0568, 0.0415, 0.0415], [0.125, 0.1174, 0.1103, 0.0406, 0.0316, 0.0279, 0.0204, 0.0204], [0.0543, 0.0479, 0.0329, 0.0273, 0.0226, 0.02, 0.0188, 0.0155], [0.1568, 0.1384, 0.1078, 0.029, 0.0256, 0.0187, 0.0146, 0.0107], [0.4329, 0.0801, 0.0378, 0.0334, 0.0334, 0.0131, 0.0115, 0.0108], [0.0993, 0.0251, 0.0184, 0.0152, 0.0105, 0.0077, 0.0064, 0.006], [0.0511, 0.0074, 0.0048, 0.0041, 0.0041, 0.0037, 0.0034, 0.0029], [0.3082, 0.0185, 0.0185, 0.0185, 0.0093, 0.0082, 0.006, 0.0053], [0.0561, 0.0118, 0.0063, 0.0051, 0.0028, 0.0027, 0.0026, 0.0024], [0.0121, 0.0078, 0.0061, 0.0054, 0.0054, 0.0047, 0.0036, 0.003], [0.0095, 0.007, 0.0062, 0.0024, 0.0023, 0.0021, 0.0021, 0.002], [0.0244, 0.0168, 0.0042, 0.004, 0.004, 0.0024, 0.0021, 0.0018], [0.1614, 0.0524, 0.0298, 0.0263, 0.0091, 0.008, 0.0067, 0.0063], [0.1339, 0.1339, 0.1258, 0.0763, 0.0717, 0.0673, 0.0384, 0.0318], [0.2211, 0.1183, 0.0595, 0.0493, 0.0264, 0.011, 0.0091, 0.0076], [0.3534, 0.0894, 0.0789, 0.0741, 0.0449, 0.0422, 0.0199, 0.0146], [0.2856, 0.1051, 0.0818, 0.0769, 0.0301, 0.0283, 0.0234, 0.0234], [0.1565, 0.1219, 0.101, 0.0787, 0.0787, 0.0739, 0.0448, 0.0421], [0.1746, 0.0603, 0.047, 0.0173, 0.0135, 0.0112, 0.006, 0.0056], [0.0157, 0.0157, 0.0138, 0.013, 0.0122, 0.0108, 0.0101, 0.0095], [0.4662, 0.0715, 0.0298, 0.0205, 0.0132, 0.0097, 0.0075, 0.0071], [0.1866, 0.1753, 0.0569, 0.0185, 0.0153, 0.0099, 0.0068, 0.0064], [0.1313, 0.0293, 0.0293, 0.0243, 0.0167, 0.0138, 0.0138, 0.0122], [0.1257, 0.0492, 0.0338, 0.0263, 0.0263, 0.0132, 0.0132, 0.011], [0.037, 0.037, 0.0307, 0.0307, 0.0239, 0.0225, 0.0211, 0.0154], [0.0894, 0.0789, 0.0741, 0.0422, 0.0226, 0.0212, 0.0146, 0.0114], [0.1277, 0.0567, 0.047, 0.0389, 0.0366, 0.0303, 0.0196, 0.0162], [0.1088, 0.0293, 0.0228, 0.0228, 0.0201, 0.0178, 0.0167, 0.0157], [0.2205, 0.0594, 0.0492, 0.0383, 0.0383, 0.0338, 0.0298, 0.0298], [0.6172, 0.0507, 0.0476, 0.0327, 0.0255, 0.0186, 0.0155, 0.0155], [0.419, 0.0684, 0.05, 0.0366, 0.0323, 0.0285, 0.0173, 0.0153], [0.194, 0.1608, 0.0975, 0.0382, 0.0382, 0.0247, 0.0204, 0.018], [0.4151, 0.0926, 0.0817, 0.0496, 0.032, 0.0265, 0.022, 0.0207], [0.3108, 0.1664, 0.0836, 0.0421, 0.0395, 0.0371, 0.0308, 0.0255], [0.5558, 0.0752, 0.0403, 0.0334, 0.0277, 0.0277, 0.019, 0.0131], [0.5475, 0.0509, 0.0449, 0.0422, 0.029, 0.0226, 0.0212, 0.0137], [0.7309, 0.0387, 0.0195, 0.0183, 0.0172, 0.0143, 0.0134, 0.0092], [0.5916, 0.0586, 0.0355, 0.0244, 0.0229, 0.019, 0.0168, 0.0139], [0.4759, 0.0644, 0.0391, 0.0345, 0.0324, 0.0173, 0.0173, 0.0153], [0.3856, 0.0629, 0.049, 0.0461, 0.0382, 0.0359, 0.0204, 0.0132], [0.2226, 0.0928, 0.0723, 0.0599, 0.0563, 0.0321, 0.0266, 0.0266], [0.3617, 0.0859, 0.0712, 0.0629, 0.049, 0.0204, 0.0169, 0.0132], [0.3903, 0.0818, 0.0818, 0.0722, 0.0496, 0.0194, 0.0118, 0.0111], [0.1803, 0.1591, 0.1591, 0.1164, 0.0378, 0.0148, 0.0123, 0.0074], [0.2726, 0.2726, 0.1459, 0.1136, 0.0106, 0.0073, 0.006, 0.0057], [0.572, 0.3061, 0.0469, 0.0222, 0.0041, 0.0032, 0.0019, 0.0018], [0.579, 0.3099, 0.0327, 0.0094, 0.0039, 0.0034, 0.0029, 0.0022], [0.6964, 0.1554, 0.0572, 0.0164, 0.0068, 0.0068, 0.0068, 0.006], [0.4126, 0.1339, 0.1182, 0.0812, 0.0493, 0.0384, 0.0264, 0.0133], [0.1517, 0.1517, 0.1517, 0.1181, 0.0558, 0.0492, 0.036, 0.0248], [0.2936, 0.0841, 0.0742, 0.0742, 0.0655, 0.051, 0.0479, 0.0329], [0.8479, 0.13, 0.005, 0.0044, 0.0031, 0.0027, 0.0021, 0.0016], [0.8478, 0.1473, 0.0019, 0.0007, 0.0006, 0.0004, 0.0003, 0.0002], [0.8163, 0.1821, 0.0008, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.6222, 0.3774, 0.0002, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9914, 0.0086, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Python": [12462, 217483, 79545, 128860, 26319, 34373, 21894, 19776, 28910, 18322, 8824, 11666, 13856, 10076, 9330, 25749, 29787, 21010, 29215, 24519, 2452, 11520, 3138, 2958, 925, 3189, 7861, 6341, 7060, 6091, 8440, 12315, 10945, 7528, 12794, 8517, 3148, 4242, 11326, 24752, 30122, 28958, 51878, 73765, 51166, 49068, 83249, 57281, 84318, 63154, 27119, 16243, 17265, 10705, 4290, 3988, 2007, 1199, 2096, 1273, 1554, 2419, 2322]}}, {"pos": 402, "top": [[" \u2013", "\u2013", "i", " [\u2026]", " \u2013,", "\u2013and", "\u2013\u2013", ".\u2013"], [" \u2013", "\u2013\u2013", " \u2013,", "\u2013", "  \n\n", " *\u2013", "   \n\n", " \u2013**"], [" \u2013", "\u2013", " \u2013,", " [\u2026]", "\u2013and", ".\u2013", "\u2013\u2013", "\u2026"], [":__", " ``", ")__", " FStar", " Ejem", "__:", " ____", " \u041a\u0440\u0430\u0441\u0438"], [" *\u201c", " -->", " ____", "\ufffd\ufffd", " (@", "  \n\n\n", " \ufffd", "\u2013\u2013"], [" ____", " *\u201c", " \n \n", " \n  \n", "(ms", " \t\n", " \r\n \r\n", " __("], ["\ufffd\ufffd", " ____", " \n \n", " \ufffd", " *\u201c", " \n  \n", "____", "\ufffd"], ["\ufffd\ufffd", " \ufffd", " \n \n", " ____", " \r\n \r\n", "    \n", "\ufffd", "   \n"], [" \ufffd", "\ufffd\ufffd", "\ufffd", " *\u201c", " \n \n", " \n", " \n\n\n", " \n    \n"], [" \ufffd", "\ufffd\ufffd", "\u2013\u2013", "\ufffd", "--", " \t\n", "\ufffds", " \n \n"], ["\ufffd\ufffd", "\ufffd", ".", " \ufffd", ".\ufffd", ".@", "--", "@"], [" *\u201c", "\ufffd\ufffd", " whilst", "Whilst", " -->", " $__", " ____", " \ufffd"], [" whilst", " *\u201c", "\u20ac\u201c", "\u2013\u2013", "Whilst", "\ufffd\ufffd", " \ufffd", "\u6700\u65b0\u53d1\u5e03"], [" whilst", "Whilst", "\u2013", "\u2013\u2013", " Whilst", " \ufffd", "\ufffd\ufffd", "\u20ac\u201c"], [" whilst", "\u2013", "Whilst", "--", "\u2013\u2013", " \u2013", " ", " Whilst"], [" whilst", "Whilst", " amongst", " Whilst", " incredibly", " entirety", " akin", " showcasing"], [" whilst", ",", " \u2013", "\u2013", " incredibly", " entirety", " akin", "\u2013\u2013"], [" whilst", " entirety", " incredibly", "\u2013\u2013", "\u2013", "\ufffds", "-esque", ","], [" whilst", " incredibly", " \ufffd", "\ufffd\ufffd", " entirety", "/MM", "\ufffds", "-esque"], ["<|endoftext|>", " whilst", " \ufffd", "--", "\ufffd", "\ufffd\ufffd", "Whilst", " --"], ["<|endoftext|>", " \n\n", "\ufffd", " \ufffd", "1", "  \n\n", "\ufffd\ufffd", "--"], [" ''", " instantly", "/MM", " ``", "\ufffds", " entirety", " whilst", " akin"], [" ''", " \ufffd", " whilst", " --", " instantly", "''", "\ufffds", " ``"], ["\ufffd\ufffd", " \ufffd", " ''", " whilst", " --", " [[", " ,", " instantly"], [" \n\n", "   \n\n", " \r\n\r\n", "  \n\n", " \n  \n", "<|endoftext|>", " whilst", " \n \n"], [" microseconds", " milliseconds", " \n  \n", " latency", " framerate", " \n\n", " \r\n\r\n", " \n \n"], [" microseconds", " milliseconds", " latency", " seconds", " uptime", " cooldown", "Milliseconds", " overtime"], [" microseconds", " milliseconds", " ,", " \n\n", " seconds", " hours", " time", " overtime"], [" microseconds", " milliseconds", " latency", " seconds", " uptime", "Milliseconds", " downtime", "ptime"], [" microseconds", " milliseconds", " latency", " seconds", " deadline", " avg", " pacing", " duration"], [" \n", " time", " ,", " milliseconds", " seconds", " minutes", " speed", " on"], [" \u2013", " time", " on", " daily", " minutes", " for", " ", " hours"], [" \u2013", " time", " ,", " on", " daily", " minutes", " every", " speed"], [" \u2013", " avg", " deadline", " time", " latency", " pacing", " milliseconds", " microseconds"], [" avg", " latency", " deadline", " instantly", " rapid", " milliseconds", " time", " daily"], [" rapid", " speed", " milliseconds", " instantly", " latency", " fastest", "/fast", " rapidly"], [" latency", " milliseconds", " speed", " rapid", " instantly", " framerate", " microseconds", " fastest"], [" milliseconds", " latency", " rapid", " speed", " time", " framerate", " instantly", " rapidly"], [" milliseconds", " latency", " time", " timeframe", " deadline", " framerate", " delay", " microseconds"], [" latency", " milliseconds", " timeframe", " deadline", " framerate", " delay", " deadlines", " microseconds"], [" timeframe", " deadline", " latency", " deadlines", " milliseconds", " delay", " time", " microseconds"], [" timeframe", " deadline", " deadlines", " latency", " milliseconds", " time", " microseconds", " delay"], [" deadline", " deadlines", " timeframe", " latency", " milliseconds", " microseconds", " framerate", " elapsed"], [" deadline", " timeframe", " deadlines", " milliseconds", " latency", " microseconds", " framerate", " delay"], [" deadline", " timeframe", " deadlines", " latency", " milliseconds", " microseconds", "\u6bcf\u79d2", " framerate"], [" deadline", " timeframe", " deadlines", " latency", "\u6bcf\u79d2", "\u6bcf\u5206\u949f", " milliseconds", " interval"], [" timeframe", " deadline", " deadlines", " latency", " each", " every", " limit", "\u6bcf\u79d2"], [" timeframe", " deadline", " deadlines", " each", " latency", " limit", " every", " per"], [" timeframe", " deadline", " each", " deadlines", "\u6bcf", "\u6bcf\u6761", " latency", " cada"], [" timeframe", " deadline", " latency", " deadlines", "\u6bcf\u6761", " framerate", "\u6bcf", "\u6bcf\u79d2"], [" timeframe", " deadline", " latency", " framerate", " deadlines", " downtime", " timestep", "\u6bcf\u79d2"], [" timeframe", " latency", " framerate", "\u6bcf", " downtime", " deadline", "\u6bcf\u79d2", " timestep"], [" latency", " timeframe", " framerate", " per", " timestep", "\u6bcf", "/frame", " deadlines"], [" latency", " framerate", " per", " timeframe", " timestep", " deadlines", "/frame", " deadline"], [" latency", " framerate", "/frame", " timestep", " timeframe", " cycle", " cycles", "\u5e27"], [" per", "/frame", " framerate", " latency", " timestep", "\u5e27", " timeframe", " frame"], [" per", "/frame", " latency", " framerate", " timestep", "\u5e27", " frame", " framebuffer"], ["/frame", " per", " latency", " frame", "\u5e27", " framerate", " render", " timestep"], [" frame", "/frame", "frame", "Frame", "\u5e27", " frames", " Frame", "-frame"], [" frame", "/frame", " frames", "frame", "Frame", " Frame", "\u5e27", "-frame"], [" frame", "/frame", " per", " budget", " frames", "-frame", " Frame", "Frame"], [" frame", " per", "/frame", " frames", " budget", " Frame", "-frame", " fram"], [" frame", " per", "/frame", " frames", " budget", " fram", " Frame", " framerate"]], "p": [[0.9762, 0.0139, 0.0051, 0.0031, 0.0003, 0.0002, 0.0002, 0.0001], [0.9701, 0.0074, 0.0051, 0.0048, 0.0026, 0.0019, 0.0013, 0.0011], [0.8758, 0.1185, 0.0015, 0.0012, 0.0012, 0.0007, 0.0005, 0.0001], [0.0221, 0.0172, 0.0172, 0.0143, 0.0143, 0.0098, 0.0098, 0.0087], [0.0985, 0.0985, 0.0721, 0.032, 0.032, 0.03, 0.03, 0.0265], [0.0396, 0.0255, 0.0255, 0.024, 0.0225, 0.0225, 0.0165, 0.0106], [0.2967, 0.1401, 0.0584, 0.0455, 0.0427, 0.0313, 0.0276, 0.0276], [0.2266, 0.1375, 0.0736, 0.0573, 0.0446, 0.037, 0.0348, 0.0288], [0.1621, 0.1344, 0.0815, 0.056, 0.034, 0.0319, 0.0319, 0.0206], [0.1306, 0.1152, 0.0398, 0.0291, 0.0242, 0.0227, 0.0213, 0.0213], [0.3694, 0.0603, 0.0441, 0.0414, 0.0222, 0.0152, 0.0152, 0.0126], [0.135, 0.0638, 0.025, 0.0235, 0.0194, 0.0172, 0.0172, 0.0142], [0.0217, 0.0204, 0.0169, 0.0131, 0.0123, 0.0116, 0.0102, 0.0096], [0.1804, 0.0752, 0.0334, 0.0334, 0.0096, 0.009, 0.009, 0.0079], [0.3577, 0.1025, 0.0427, 0.0276, 0.0215, 0.0202, 0.013, 0.0101], [0.7551, 0.0514, 0.0115, 0.0089, 0.0061, 0.004, 0.0026, 0.0026], [0.1616, 0.0493, 0.0339, 0.0264, 0.0181, 0.0141, 0.0071, 0.0067], [0.0541, 0.0094, 0.0083, 0.0073, 0.0073, 0.0069, 0.0061, 0.0061], [0.043, 0.0191, 0.0179, 0.014, 0.0096, 0.008, 0.0066, 0.0062], [0.5534, 0.0515, 0.0215, 0.0115, 0.0084, 0.0054, 0.0042, 0.004], [0.9978, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.012, 0.006, 0.0057, 0.0053, 0.0047, 0.0047, 0.0044, 0.0034], [0.0503, 0.0269, 0.0135, 0.0135, 0.0105, 0.0099, 0.0093, 0.0087], [0.0246, 0.0246, 0.0217, 0.0124, 0.0109, 0.0085, 0.0085, 0.0085], [0.2011, 0.0509, 0.0478, 0.0396, 0.029, 0.0165, 0.0121, 0.0121], [0.0382, 0.0169, 0.0159, 0.0149, 0.0103, 0.0085, 0.0071, 0.0062], [0.1402, 0.1026, 0.0485, 0.019, 0.0123, 0.0095, 0.0084, 0.0084], [0.0679, 0.06, 0.0529, 0.0439, 0.0235, 0.0172, 0.0161, 0.0142], [0.1659, 0.1141, 0.0307, 0.0186, 0.0128, 0.0113, 0.0106, 0.0106], [0.0524, 0.0493, 0.0299, 0.0181, 0.016, 0.015, 0.0133, 0.0133], [0.0287, 0.027, 0.0253, 0.0144, 0.0144, 0.0136, 0.0136, 0.0127], [0.058, 0.0425, 0.0214, 0.0188, 0.0188, 0.0166, 0.0156, 0.0156], [0.0475, 0.0446, 0.0211, 0.0186, 0.0175, 0.0164, 0.0164, 0.0154], [0.0673, 0.0181, 0.015, 0.015, 0.0141, 0.0124, 0.0124, 0.0117], [0.0238, 0.021, 0.0186, 0.0164, 0.0164, 0.0128, 0.0128, 0.012], [0.0402, 0.0378, 0.0378, 0.0378, 0.0355, 0.0276, 0.0202, 0.019], [0.0889, 0.0611, 0.0476, 0.0371, 0.0271, 0.0239, 0.0225, 0.0198], [0.0717, 0.0717, 0.0524, 0.0435, 0.0281, 0.0248, 0.0233, 0.0219], [0.1162, 0.1026, 0.0622, 0.0585, 0.0549, 0.0294, 0.0259, 0.0244], [0.137, 0.1287, 0.0885, 0.0885, 0.0571, 0.0537, 0.0504, 0.0418], [0.1969, 0.1194, 0.1054, 0.0724, 0.0639, 0.0639, 0.0564, 0.0284], [0.2225, 0.1964, 0.1529, 0.0722, 0.0637, 0.0301, 0.0194, 0.0161], [0.3348, 0.1792, 0.1792, 0.0582, 0.04, 0.013, 0.0095, 0.0074], [0.3534, 0.2429, 0.0894, 0.0542, 0.0478, 0.0155, 0.0114, 0.0078], [0.4285, 0.1576, 0.0956, 0.0452, 0.0257, 0.0114, 0.0107, 0.0089], [0.3935, 0.1859, 0.0878, 0.05, 0.0143, 0.0135, 0.0126, 0.0082], [0.3593, 0.2798, 0.0708, 0.026, 0.026, 0.0123, 0.0116, 0.009], [0.6437, 0.1628, 0.0363, 0.0161, 0.0134, 0.0092, 0.0072, 0.0072], [0.5406, 0.0939, 0.0503, 0.0238, 0.021, 0.0174, 0.0135, 0.0105], [0.6114, 0.0938, 0.0252, 0.0197, 0.0112, 0.0105, 0.0093, 0.0087], [0.7478, 0.0422, 0.0309, 0.0199, 0.0137, 0.0083, 0.0065, 0.0061], [0.7355, 0.0604, 0.0366, 0.0222, 0.0135, 0.0105, 0.0072, 0.0072], [0.634, 0.2058, 0.052, 0.0217, 0.0116, 0.0085, 0.007, 0.0043], [0.7112, 0.0963, 0.0401, 0.0401, 0.0312, 0.0074, 0.007, 0.0045], [0.5792, 0.2131, 0.0475, 0.0327, 0.0128, 0.012, 0.0088, 0.0078], [0.7263, 0.1836, 0.0282, 0.0219, 0.0081, 0.0071, 0.0038, 0.0038], [0.7104, 0.1796, 0.0454, 0.0101, 0.0089, 0.0089, 0.0089, 0.0029], [0.5341, 0.1734, 0.1052, 0.0497, 0.0235, 0.0207, 0.0126, 0.0126], [0.8887, 0.0442, 0.0209, 0.0163, 0.0099, 0.0099, 0.006, 0.0028], [0.9296, 0.036, 0.0103, 0.008, 0.0055, 0.0043, 0.0026, 0.0026], [0.8605, 0.0485, 0.026, 0.0179, 0.0123, 0.0096, 0.0074, 0.004], [0.7087, 0.2301, 0.0214, 0.0101, 0.0069, 0.0061, 0.0054, 0.0026], [0.8817, 0.0439, 0.0342, 0.0161, 0.0072, 0.0026, 0.0021, 0.0015]], "ranks": {"Python": [20519, 149632, 49839, 114968, 9843, 34362, 11026, 14938, 9561, 13473, 3774, 7891, 9074, 9028, 18309, 15996, 12759, 14835, 15891, 34998, 5304, 33540, 14450, 13452, 6848, 23515, 32386, 14134, 31093, 23686, 26973, 29591, 27991, 29160, 38743, 13673, 8340, 13509, 17695, 26056, 17743, 28720, 32864, 36569, 29914, 28787, 45357, 40381, 69441, 93708, 23369, 10329, 12051, 11806, 3295, 3442, 3353, 3170, 1700, 1118, 789, 660, 628]}}, {"pos": 403, "top": [[" \u2013", "\u2013", "er", ".", "-", " [\u2026]", "\u2026..", "\u2013and"], ["\u2011", "carat", "YPRE", "onger", "\u88ab\u4f9b\u5e94\u5546", "\u064a\u0627\u064b", "isers", "Whilst"], ["\u2013", " \u2013", "\u2013and", ".\u2013", "\u2026..", "\u2011", " \u2013,", " [\u2026]"], [" \u041f\u043e\u043f\u0440\u043e", " pupper", " milfs", " aarhus", " backpage", "ebrit", " FStar", "erio"], ["\u2011", "itorial", "ER", "ingly", "archical", "hyper", "er", "gris"], ["datap", "itorial", "\u2011", "ctic", "fst", "carat", "caps", "quisite"], ["\u2011", " [\u2026]", "datap", "FIG", "cro", "ARSE", "cord", "missive"], ["missive", "\u2011", "atively", "cord", "itorial", "ingham", "tridge", "quisite"], [" [\u2026]", "\u2011", "   \n\n", ".\ufffd", "#####", " \n    \n", "    \n\n", "ingham"], ["\u2011", " [\u2026]", "\\xf", "\u2013", "-$", "cord", "-\\", "\\xe"], ["\u2011", " [\u2026]", "2", "\\xf", ".\ufffd", "1", " @", "4"], ["\\xf", "tridge", "ubber", "utum", "tesy", " annum", " `_", "swire"], [" annum", "missive", "tesy", "editary", "itorial", "swire", "utum", "erate"], [" annum", "cord", "xec", "missive", "\u5ea6\u9ad8", "utum", "tridge", "itone"], [" annum", " \ufffd", "cord", "itone", "\u5925", " `", "rne", "poon"], [" annum", "gross", "\\xf", "YPRE", "tesy", "utum", " acknowledgement", "yip"], [" annum", "w", "er", "o", " vibe", " folks", "fect", " attendee"], [" annum", "fect", "missive", "\u5ea6\u548c", "quisite", "\u5ea6\u7684", " attendee", "aud"], [" annum", "xec", "\u5ea6\u548c", "missive", "quisite", "fect", "\u5ea6\u9ad8", "\u5ea6\u7684"], [" annum", "w", " \ufffd", " [\u2026]", "Whilst", " requisite", " \ufffd", "gross"], ["<|endoftext|>", " [\u2026]", "1", "2", "Though", "w", "7", "8"], [" annum", "quisite", "xec", "oire", "\u6b21\u7684", "missive", "ptime", "bbe"], [" \ufffd", " annum", " \ufffd", " \u00ad", " time", " whilst", " requisite", " \u00b4"], ["Whilst", " whilst", " annum", " \ufffd", " \ufffd", " \u00ad", " time", " ,"], [" \n\n", "   \n\n", " \r\n\r\n", "  \n\n", "    \n\n", "     \n\n", "Whilst", " \r\n"], [" annum", "ptime", " \r\n\r\n", "   \n\n", "ivio", "vertime", " \n    \n", " timeframe"], [" annum", "ptime", " timestep", " time", " hour", "vertime", "\u6bcf\u5206\u949f", "ftime"], [" time", " \n\n", " hour", " ,", " day", " hours", " minute", " minutes"], [" time", " hour", "ptime", " annum", " day", " pace", " minute", " timestep"], [" time", " hour", " pace", " day", " rate", " month", " minute", " each"], [" time", " ,", " day", " each", " ", " per", " hour", " pace"], [" time", " ", " ,", " each", " day", " \u2013", " per", " every"], [" \u2013", " time", " ,", " ", " day", " each", " every", "\u2011"], [" \u2013", "\u2011", " time", "\u2013", " each", " ", " \u201c", " per"], ["\u2011", " \u2013", " each", " time", " per", " pace", " day", " every"], ["\u2011", " \u2013", " time", " each", " \u201c", " \u200b", " per", " pace"], ["\u2011", " time", " each", " \u2013", " pace", " framerate", " speed", " fastest"], ["\u2011", " each", " time", " pixel", " framerate", " per", " frame", " \u2013"], ["\u2011", " each", " framerate", " pixel", " time", " frame", " cycle", " every"], [" framerate", " pixel", " frame", "\u2011", "\u6bcf\u79d2", " time", " cycle", " pixels"], [" framerate", "\u6bcf\u79d2", " pixel", " cycle", " frame", " time", " timeframe", " pixels"], [" framerate", "\u6bcf\u79d2", " frame", " pixel", "\u5e27", " cycle", " frames", " milliseconds"], [" framerate", " cycle", "\u6bcf\u79d2", " frame", " pixel", "\u5e27", " milliseconds", " frames"], [" framerate", " cycle", " frame", "\u6bcf\u79d2", " milliseconds", " timeframe", "\u5e27", " pixel"], [" cycle", " frame", " framerate", " each", " milliseconds", " frames", " pixel", " avg"], [" cycle", " frame", " framerate", " each", " every", " frames", " avg", " milliseconds"], [" frame", " framerate", " cycle", " every", " each", " avg", " milliseconds", " frames"], [" frame", " cycle", " every", " timeframe", " framerate", " avg", " frames", " each"], [" framerate", " timeframe", " cycle", " frame", " milliseconds", "\u5e27", " avg", " frames"], [" framerate", "INCLUDING", "\u5305\u62ec\u4f46\u4e0d\u9650\u4e8e", " INCLUDING", "\u5e27", "\u2014including", "-frame", "/frame"], [" framerate", "INCLUDING", "\u5e27", "\u6bcf\u79d2", "\u5305\u62ec\u4f46\u4e0d\u9650\u4e8e", "-cycle", "!)", " timestep"], [" framerate", "\u5e27", " timestep", "INCLUDING", " timeframe", "-cycle", "-frame", "!)"], ["\u5e27", "-frame", " framerate", " timestep", " frame", " latency", "/frame", " timeframe"], [" timestep", "\u5e27", " frame", "-frame", " framerate", "-cycle", " cycle", " latency"], [" cycle", "\u5e27", "-cycle", " timestep", " cycles", "cycle", "Cycle", " frame"], ["\u5e27", " frame", "-frame", " cycle", "frame", " timestep", " frames", "Frame"], [" frame", "\u5e27", "-frame", " render", " cycle", "frame", "\u6e32\u67d3", " timestep"], [" frame", " render", "\u5e27", "-frame", "\u6e32\u67d3", " rendering", "frame", "-render"], [" frame", "frame", "-frame", "\u5e27", "Frame", " frames", " Frame", "_frame"], [" frame", "-frame", "frame", " frames", "Frame", "\u5e27", " Frame", "_frame"], [" frame", "-frame", "\u5e27", "frame", " frames", " Frame", "Frame", "_frame"], [" frame", "-frame", "frame", " frames", " Frame", "Frame", "\u5e27", "_frame"], [" frame", "-frame", "frame", " Frame", "Frame", "_frame", "\u5e27", " frames"]], "p": [[0.8678, 0.0432, 0.0029, 0.0019, 0.0014, 0.0012, 0.0008, 0.0008], [0.0046, 0.0041, 0.003, 0.0026, 0.0025, 0.0022, 0.0022, 0.0019], [0.7934, 0.0738, 0.0165, 0.0128, 0.0064, 0.005, 0.0042, 0.0029], [0.006, 0.0056, 0.0053, 0.0044, 0.0041, 0.0036, 0.003, 0.0025], [0.0125, 0.0086, 0.0071, 0.0063, 0.0063, 0.0043, 0.0041, 0.0041], [0.0105, 0.0064, 0.0053, 0.0041, 0.0039, 0.0028, 0.0025, 0.0023], [0.0208, 0.0076, 0.006, 0.0056, 0.0046, 0.0046, 0.0034, 0.0034], [0.0128, 0.012, 0.0064, 0.0061, 0.0057, 0.005, 0.005, 0.0042], [0.1239, 0.0485, 0.0139, 0.0115, 0.0108, 0.0096, 0.0079, 0.0051], [0.0355, 0.0157, 0.0102, 0.0058, 0.0042, 0.004, 0.0035, 0.0035], [0.1705, 0.0711, 0.0246, 0.0149, 0.0102, 0.0075, 0.0062, 0.0062], [0.0131, 0.0123, 0.0096, 0.008, 0.008, 0.0066, 0.0051, 0.0051], [0.0137, 0.0069, 0.0061, 0.0057, 0.0054, 0.0054, 0.005, 0.0047], [0.0208, 0.0053, 0.0044, 0.0044, 0.0041, 0.0034, 0.0032, 0.0032], [0.0141, 0.011, 0.0046, 0.0046, 0.0038, 0.0026, 0.0023, 0.0022], [0.0187, 0.0035, 0.0032, 0.0022, 0.0022, 0.0022, 0.002, 0.0018], [0.0201, 0.0074, 0.0045, 0.0045, 0.0039, 0.0035, 0.0035, 0.0033], [0.0237, 0.0044, 0.003, 0.0025, 0.0025, 0.0022, 0.0022, 0.0021], [0.0376, 0.0058, 0.0031, 0.0031, 0.0029, 0.0026, 0.0024, 0.0021], [0.0142, 0.0072, 0.0067, 0.0063, 0.0056, 0.0038, 0.0036, 0.003], [0.883, 0.0036, 0.0025, 0.0023, 0.0018, 0.0016, 0.0011, 0.0011], [0.0477, 0.0044, 0.0044, 0.0039, 0.0032, 0.0027, 0.0025, 0.0022], [0.0136, 0.012, 0.012, 0.0053, 0.0044, 0.0032, 0.003, 0.0028], [0.0099, 0.0093, 0.0068, 0.006, 0.0053, 0.003, 0.0028, 0.0025], [0.2507, 0.126, 0.0595, 0.0525, 0.0141, 0.0091, 0.0071, 0.0071], [0.0284, 0.0068, 0.0056, 0.0053, 0.0049, 0.0049, 0.0038, 0.0034], [0.0408, 0.0124, 0.0097, 0.0091, 0.0071, 0.0067, 0.0063, 0.0059], [0.0761, 0.0247, 0.016, 0.0132, 0.0124, 0.0075, 0.0055, 0.0055], [0.032, 0.0171, 0.0151, 0.0076, 0.0076, 0.0071, 0.0059, 0.0052], [0.1099, 0.0216, 0.0169, 0.014, 0.009, 0.0085, 0.008, 0.008], [0.1397, 0.0332, 0.0258, 0.0243, 0.0115, 0.0108, 0.0108, 0.0089], [0.1115, 0.072, 0.0465, 0.032, 0.0282, 0.0234, 0.011, 0.0104], [0.1768, 0.1072, 0.0447, 0.0371, 0.0307, 0.0239, 0.0154, 0.0136], [0.5752, 0.2116, 0.0223, 0.0144, 0.006, 0.006, 0.0044, 0.0041], [0.2054, 0.0431, 0.038, 0.0296, 0.0203, 0.0123, 0.0096, 0.0085], [0.5482, 0.157, 0.0176, 0.01, 0.0078, 0.0069, 0.0069, 0.0061], [0.4447, 0.0322, 0.0221, 0.0184, 0.0172, 0.0152, 0.0111, 0.0098], [0.3568, 0.0748, 0.04, 0.0228, 0.0228, 0.0189, 0.0157, 0.0147], [0.1286, 0.0941, 0.0688, 0.0607, 0.0368, 0.0305, 0.0238, 0.021], [0.2458, 0.1236, 0.0622, 0.0584, 0.0259, 0.0202, 0.0178, 0.0167], [0.3373, 0.1497, 0.0486, 0.026, 0.0216, 0.0158, 0.0139, 0.0131], [0.4336, 0.1242, 0.0708, 0.0665, 0.0429, 0.0203, 0.0158, 0.0131], [0.2615, 0.0962, 0.0904, 0.0798, 0.0427, 0.0276, 0.0243, 0.0215], [0.2647, 0.0807, 0.0521, 0.049, 0.0358, 0.0279, 0.0262, 0.0192], [0.1503, 0.0857, 0.0805, 0.0278, 0.0245, 0.0245, 0.0245, 0.0231], [0.1361, 0.106, 0.0533, 0.0501, 0.0344, 0.0184, 0.0184, 0.0173], [0.0647, 0.0608, 0.0537, 0.0504, 0.0369, 0.0306, 0.0287, 0.0197], [0.06, 0.06, 0.0342, 0.0302, 0.0302, 0.0207, 0.0207, 0.0195], [0.056, 0.03, 0.0249, 0.0194, 0.0194, 0.0194, 0.0194, 0.0151], [0.0573, 0.0394, 0.0271, 0.0224, 0.0186, 0.0164, 0.0128, 0.0128], [0.0818, 0.0387, 0.0207, 0.0207, 0.0161, 0.0125, 0.0111, 0.0098], [0.069, 0.0418, 0.0238, 0.0224, 0.021, 0.0174, 0.0174, 0.0136], [0.2966, 0.0622, 0.0622, 0.0584, 0.0515, 0.0401, 0.0243, 0.0215], [0.2329, 0.1704, 0.0488, 0.038, 0.0335, 0.0203, 0.0191, 0.0169], [0.2424, 0.1297, 0.101, 0.0694, 0.0613, 0.0508, 0.0328, 0.0255], [0.4036, 0.1906, 0.09, 0.0619, 0.0425, 0.0331, 0.0214, 0.0156], [0.2966, 0.231, 0.1236, 0.0455, 0.0455, 0.0401, 0.0294, 0.0229], [0.3277, 0.1366, 0.1366, 0.1064, 0.0645, 0.0305, 0.0269, 0.0185], [0.9789, 0.0066, 0.0066, 0.0024, 0.0024, 0.0019, 0.0009, 0.0002], [0.9898, 0.004, 0.0025, 0.0015, 0.0009, 0.0007, 0.0004, 0.0001], [0.9791, 0.0158, 0.0011, 0.0011, 0.0009, 0.0007, 0.0007, 0.0004], [0.9861, 0.0097, 0.001, 0.0009, 0.0008, 0.0005, 0.0005, 0.0003], [0.9978, 0.0009, 0.0006, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001]], "ranks": {"Python": [80981, 241457, 89087, 205104, 160809, 105913, 22595, 33984, 19125, 12194, 5374, 64589, 88444, 86178, 101381, 107953, 53631, 52047, 74545, 79875, 17425, 71702, 50769, 98992, 31097, 21353, 20862, 13344, 16637, 7404, 14609, 14965, 18467, 13170, 23287, 23445, 16388, 17406, 25732, 32580, 30849, 48013, 43291, 34026, 17322, 16465, 27413, 24125, 73547, 76660, 17474, 5313, 10330, 9438, 5550, 4359, 2684, 1614, 2026, 1409, 1012, 495, 680]}}, {"pos": 404, "top": [[" \u2013", "\u2013", ".", ",", " ", "\u2026..", " [\u2026]", "-"], [" \u2013", "\u2013", "\u2013and", " \u2018", "\u2013\u2013", "  \n", "\u00ad", "  "], [" \u2013", "\u2013", "\u2026..", "\u2026", "\u2013and", "\u2026.", ".\u2013", "."], ["buster", " pupper", "enzi", "flate", "odle", "caster", "':''", " Blowjob"], [" @", "i", " \u2018", "@", " \u2013", "st", " (@", " #"], ["\u2026..", "board", " \u2018", "i", " \u2013", "cast", "ar", "\u2013"], [" \u2018", ".\u2019", " \u2013", "\u2018", "i", "\u2019", "\u2026..", "\u2013"], ["\u2013", " \u2013", " \u2018", "i", "\u2026..", "less", "ster", ","], [".", " \u2013", ",", "\u2013", "<|endoftext|>", ";", " [\u2026]", " \u2018"], [",", "\u2013", ";", "\u2013and", " \u2013", "\u2013\u2013", ".", "i"], [",", ".", "\u2013", ";", " \u2013", " ", "i", "\u2026"], ["less", " \u2013", "oire", "gable", "ster", "ingly", "olet", "(Frame"], ["less", " \u2013", "ingly", "\u2013", "(Frame", ",", " onboard", "lessness"], [",", " \u2013", "\u2013", "less", " onboard", "ingly", "oire", " "], [" \u2013", ",", "\u2013", " ", " in", " ,", " at", " from"], [" \u2013", " ,", " in", " off", " at", " from", " as", " on"], [",", " \u2013", "\u2013", " ", " in", ";", " ,", "e"], [" \u2013", ",", "\u2013", " ,", ";", " in", " from", " at"], [" \u2013", " ,", ",", " .", " in", " at", " &", " from"], [" \u2013", " ,", ",", "\u2013", " as", " at", " along", " \u2014"], [" ,", "<|endoftext|>", " \u2013", " though", " along", "\u2013", " as", " ultimately"], [" ,", "oire", " \u2013", " ultimately", " during", " .", " through", " alongside"], [" ,", " \u2013", " over", " during", " .", " ;", " at", " as"], [" ,", " \u2013", " over", " during", " ;", " .", " at", " ultimately"], [" \u2013", " ,", "\u2013\u2013", " across", " ;", " \u2014", " while", "\u2013"], [" ,", " \u2013", " motion", " atop", " shutter", " during", " film", " across"], [" motion", " ,", " pixel", " shutter", " atop", " film", " footage", " during"], [" ,", " during", " over", " '", " ;", " while", " at", " motion"], [" ,", " during", " motion", " film", " ;", " over", " while", " \u2013"], [" ,", " during", " motion", " \u2013", " film", " \u2014", " time", " ;"], [" ,", " during", " \u2013", " motion", " speed", " over", " at", " time"], [" ,", " during", " at", " \u2013", " on", " .", " over", " in"], [" ,", " during", " \u2013", " at", " on", " over", " rapidly", " under"], [" \u2013", " rapidly", " during", " continuously", " rapid", " quickly", " instantly", " \u2014"], [" rapidly", " rapid", " quickly", " instantly", " fast", " faster", " continuously", " speed"], [" \u2013", " rapidly", " quickly", " rapid", " speed", " \u2014", " instantly", " faster"], [" rapidly", " speed", " rapid", " instantly", " fast", " quickly", " faster", " \u2013"], [" rapidly", " speed", " quickly", " instantly", " fast", " rapid", " instant", " time"], [" rapidly", " speed", " quickly", " fast", " rapid", " pixel", " time", " frame"], [" speed", " fast", " frame", " framerate", " cycle", " rapidly", " faster", " continuously"], [" speed", " faster", " fast", " fastest", " speeds", " framerate", " CPU", " time"], [" speed", " CPU", " framerate", " timing", " cycle", " processing", " sync", " synchronous"], [" cycle", " speed", " CPU", " timing", " framerate", " latency", " clock", " processing"], [" cycle", " framerate", " latency", " speed", " clock", " CPU", " timing", " processing"], [" cycle", " latency", " framerate", " cycles", " speed", " bottleneck", " processing", " workflow"], [" cycle", " processing", " cycles", " bottleneck", " latency", " framerate", " hardware", " rhythm"], [" cycle", " bottleneck", " every", " workflow", " limit", " cycles", " pace", " workflows"], [" cycle", " bottleneck", " cycles", " workflow", " tasks", " limit", " every", " workflows"], [" cycle", " budget", " without", " cycles", " bottleneck", " every", " limit", " pace"], [" cycle", " bottleneck", " entire", " budget", " framerate", " limit", " CPU", " WITHOUT"], [" entire", " bottleneck", " framerate", " cycle", " latency", " throughput", " limit", " deadline"], [" CPU", " bottleneck", " throughput", " latency", "CPU", " overhead", " lifecycle", " uptime"], [" latency", " CPU", " bottleneck", " limit", "CPU", " overhead", " throughput", ")"], [" budget", " budgets", " latency", "\u9884\u7b97", " CPU", " overhead", "-budget", "CPU"], [" latency", " budget", " budgets", "\u9884\u7b97", " overhead", " cycle", " CPU", " cycles"], [" budget", " budgets", " deadline", "\u9884\u7b97", " latency", "budget", "-budget", " deadlines"], [" budget", " budgets", "\u9884\u7b97", "budget", "-budget", "_budget", "Budget", " Budget"], [" budget", " budgets", "\u9884\u7b97", "budget", "-budget", "_budget", " Budget", "Budget"], [" budget", " budgets", "\u9884\u7b97", "budget", " Budget", "_budget", "Budget", "-budget"], [" budget", " budgets", "\u9884\u7b97", "budget", "_budget", " Budget", "-budget", " overhead"], [" budget", " Budget", "\u9884\u7b97", " budgets", "budget", "Budget", "_budget", "-budget"], [" budget", " budgets", " Budget", "\u9884\u7b97", "-budget", "_budget", ")", "budget"], [")", " budget", " )", "!)", ",", " bud", "?)", " budgets"]], "p": [[0.9718, 0.0157, 0.0084, 0.0015, 0.0007, 0.0004, 0.0002, 0.0002], [0.9613, 0.0212, 0.0016, 0.001, 0.0008, 0.0006, 0.0003, 0.0001], [0.8596, 0.1318, 0.0031, 0.0021, 0.0008, 0.0005, 0.0004, 0.0003], [0.0032, 0.0027, 0.0025, 0.0022, 0.002, 0.0016, 0.0015, 0.0014], [0.0723, 0.0638, 0.0283, 0.0266, 0.0207, 0.0098, 0.0092, 0.0072], [0.013, 0.0122, 0.0079, 0.0079, 0.0079, 0.0061, 0.0058, 0.0051], [0.141, 0.0315, 0.0315, 0.0296, 0.0296, 0.0216, 0.0191, 0.0158], [0.1015, 0.0953, 0.0397, 0.0273, 0.0257, 0.0188, 0.0137, 0.0089], [0.2112, 0.1864, 0.1645, 0.1131, 0.0443, 0.0367, 0.0223, 0.0209], [0.2749, 0.1667, 0.0349, 0.0094, 0.0088, 0.0057, 0.0054, 0.0031], [0.4943, 0.1819, 0.0973, 0.0669, 0.046, 0.0096, 0.0052, 0.0046], [0.0149, 0.0043, 0.0029, 0.0029, 0.0029, 0.0028, 0.0023, 0.0023], [0.0211, 0.0198, 0.0069, 0.006, 0.0037, 0.003, 0.0029, 0.0025], [0.0275, 0.0214, 0.0101, 0.0048, 0.0027, 0.0023, 0.0021, 0.0019], [0.1029, 0.0334, 0.0216, 0.0158, 0.0079, 0.0058, 0.0055, 0.0051], [0.0549, 0.0202, 0.0102, 0.0054, 0.0045, 0.0045, 0.0042, 0.004], [0.2644, 0.1507, 0.0217, 0.0096, 0.009, 0.009, 0.0085, 0.0066], [0.2095, 0.2095, 0.0172, 0.0098, 0.0098, 0.0086, 0.0059, 0.0056], [0.2245, 0.0936, 0.0222, 0.0135, 0.0087, 0.0072, 0.0064, 0.006], [0.3469, 0.1126, 0.0126, 0.0112, 0.0056, 0.0056, 0.0049, 0.0046], [0.227, 0.1215, 0.0611, 0.0078, 0.0069, 0.0064, 0.006, 0.005], [0.1015, 0.0083, 0.0074, 0.0051, 0.0051, 0.0037, 0.0037, 0.0033], [0.4163, 0.0723, 0.0076, 0.0076, 0.0067, 0.0063, 0.0063, 0.0052], [0.3822, 0.0356, 0.0096, 0.009, 0.0079, 0.0075, 0.0075, 0.007], [0.1562, 0.1467, 0.0078, 0.0078, 0.0064, 0.0064, 0.0064, 0.0061], [0.0478, 0.0155, 0.0137, 0.01, 0.0073, 0.0073, 0.0047, 0.0035], [0.0175, 0.0155, 0.0145, 0.0113, 0.0094, 0.0069, 0.0061, 0.0047], [0.5124, 0.0137, 0.0106, 0.01, 0.0088, 0.0078, 0.0078, 0.0073], [0.2374, 0.0388, 0.0195, 0.0098, 0.0086, 0.0081, 0.0076, 0.0076], [0.2061, 0.0358, 0.0316, 0.0316, 0.0109, 0.0103, 0.0091, 0.0085], [0.1592, 0.0355, 0.0277, 0.0179, 0.0139, 0.0115, 0.0115, 0.0102], [0.1987, 0.0502, 0.0345, 0.0305, 0.0269, 0.0185, 0.0163, 0.0153], [0.2145, 0.0479, 0.0397, 0.035, 0.0241, 0.0212, 0.0146, 0.0114], [0.1515, 0.0338, 0.0205, 0.0193, 0.017, 0.016, 0.015, 0.0141], [0.1329, 0.0554, 0.0316, 0.0297, 0.018, 0.0159, 0.014, 0.0132], [0.1598, 0.0911, 0.0552, 0.043, 0.0404, 0.0315, 0.0296, 0.0296], [0.1313, 0.0583, 0.0483, 0.0483, 0.0454, 0.0401, 0.0293, 0.0214], [0.0712, 0.0432, 0.0406, 0.0316, 0.0316, 0.0279, 0.0132, 0.0124], [0.0561, 0.0527, 0.0362, 0.032, 0.0182, 0.0161, 0.0142, 0.0133], [0.0926, 0.0194, 0.0151, 0.0142, 0.0142, 0.0133, 0.0125, 0.0104], [0.3033, 0.0386, 0.0282, 0.0249, 0.0234, 0.0206, 0.0182, 0.0133], [0.0677, 0.0465, 0.0411, 0.0386, 0.032, 0.0234, 0.0171, 0.0161], [0.0765, 0.041, 0.0385, 0.0264, 0.0248, 0.0248, 0.0233, 0.0193], [0.0762, 0.0338, 0.0298, 0.0232, 0.0193, 0.0181, 0.0181, 0.017], [0.1536, 0.0251, 0.0251, 0.0208, 0.0183, 0.0162, 0.0152, 0.0152], [0.1285, 0.0174, 0.0163, 0.0153, 0.0135, 0.0135, 0.0127, 0.012], [0.0998, 0.0209, 0.0185, 0.0163, 0.0163, 0.0144, 0.0127, 0.0119], [0.156, 0.0225, 0.0211, 0.0175, 0.0154, 0.0154, 0.0145, 0.0106], [0.1387, 0.0273, 0.0273, 0.0213, 0.0188, 0.0176, 0.0176, 0.0121], [0.0521, 0.0381, 0.0217, 0.0159, 0.014, 0.0132, 0.0116, 0.0116], [0.0281, 0.0206, 0.0206, 0.0193, 0.016, 0.016, 0.011, 0.0086], [0.0588, 0.043, 0.038, 0.038, 0.0245, 0.0203, 0.0123, 0.0096], [0.5462, 0.0576, 0.0349, 0.0199, 0.0187, 0.0187, 0.0155, 0.01], [0.2543, 0.1748, 0.1748, 0.0501, 0.0344, 0.0285, 0.0237, 0.0135], [0.2376, 0.1851, 0.1272, 0.0342, 0.0342, 0.0322, 0.0195, 0.0162], [0.3836, 0.2327, 0.0519, 0.043, 0.0335, 0.0245, 0.0216, 0.0179], [0.6927, 0.1364, 0.0644, 0.0345, 0.0209, 0.0144, 0.0144, 0.0099], [0.6609, 0.1671, 0.0542, 0.0373, 0.02, 0.0176, 0.0176, 0.0137], [0.7746, 0.0925, 0.0386, 0.03, 0.0161, 0.0142, 0.0125, 0.0076], [0.8632, 0.0625, 0.0109, 0.0109, 0.0096, 0.0085, 0.0062, 0.0058], [0.9828, 0.0052, 0.0046, 0.0035, 0.0019, 0.0012, 0.0006, 0.0003], [0.9695, 0.0122, 0.0045, 0.004, 0.0021, 0.0021, 0.0019, 0.0017], [0.9892, 0.0086, 0.0003, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001]], "ranks": {"Python": [32082, 114657, 144100, 116921, 13513, 51044, 26560, 28873, 16808, 49636, 14345, 24336, 20699, 17165, 14562, 19581, 18361, 17853, 15734, 45292, 16265, 19651, 10361, 22593, 16453, 7330, 9207, 3158, 3881, 2633, 3044, 5524, 6240, 4489, 7148, 1484, 1045, 1688, 1124, 269, 193, 257, 355, 528, 342, 363, 634, 421, 1110, 1371, 853, 85, 655, 857, 375, 497, 284, 193, 194, 208, 464, 327, 284]}}, {"pos": 405, "top": [[".", " \u2013", ",", "\u00a0", "\u2013", " ", "\u00a0\u00a0", ";"], [" \u2013", "\u2013", " ", "  \n\n", "  \n", "\u2013and", "  \n  \n", "."], ["\u2013", " \u2013", ",", ".", "\u2026", "\u2026..", "\u2026.", ";"], [" Shemale", " Blowjob", " **\u25cb", " **\u300c", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " **>>", " Strec", " **:**"], [" **#", " **", " **(", " (**", "(**", " **\u201c", " (@", "==>"], [" **#", " **", "(**", " **(", " **\u201c", " **\u20ac", " (**", "\uff01"], [" **", " **#", " **\u300c", " **(", " **\u3010", " ***", " **\u201c", " (**"], [" **\u300c", " **#", " **", " **\u20ac", " **\u3010", " **(", " (**", " **.**"], [" **#", " **\u20ac", " **\u300c", "(**", " **", " (**", " **.**", " **\u201c"], [" **#", " **\u300c", " **\u20ac", "alej", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "aleigh", " **>>", "ropy"], [" **", " **#", " **\u300c", " even", " alongside", " **\u20ac", " as", " thanks"], [" **\u300c", " **", " **\u00ab", " \u00bb**", " **#", " Shemale", " **\u20ac", " **+"], [" **\u300c", " **\u00ab", " **", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " \u00bb**", " Shemale", " Blowjob", "\u582a\u6bd4"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Shemale", " **\u300c", " Blowjob", "\u582a\u6bd4", " fueled", " anyways", " **\u00ab"], [" even", " effortlessly", " fueled", " often", " arguably", " just", " yet", " famously"], [" even", " often", " effortlessly", " just", " easily", " quickly", " mostly", " comfortably"], [",", " even", " just", " incredibly", " effortlessly", " often", " yet", " thanks"], [" even", " effortlessly", " incredibly", " fueled", " seamlessly", " comfortably", " savvy", " famously"], [" even", " effortlessly", " comfortably", " famously", " arguably", " incredibly", " relentlessly", " fueled"], [" even", " swiftly", " effortlessly", " arguably", " wildly", " yet", " famously", " comfortably"], ["<|endoftext|>", " even", " swiftly", " though", " as", " just", " yet", " merely"], [" even", " quickly", " swiftly", " effortlessly", " comfortably", " arguably", " just", " famously"], [" even", " as", " just", " merely", " swiftly", " in", " ,", " yet"], [" even", " ,", " as", " in", " just", " much", " merely", " over"], [" even", " though", " swiftly", " merely", " arguably", " yet", " while", " famously"], [" even", " **", " swiftly", " famously", " arguably", " merely", " atop", " effortlessly"], [" even", " swiftly", " merely", " rapidly", " ,", " famously", " atop", " despite"], [" even", " ,", " in", " over", " as", " quickly", " rapidly", " just"], [" even", " **", " ,", " rapidly", " in", " over", " quickly", " despite"], [" even", " **", " in", " \u2014", " only", " ,", " over", " during"], [" even", " in", " only", " on", " at", " over", " ,", " as"], [" even", " only", " in", " at", " on", " quickly", " without", " ,"], [" even", " only", " due", " in", " without", " at", " rapidly", " on"], [" even", " only", " rapidly", " due", " without", " \u2014", " extremely", " quickly"], [" even", " rapidly", " only", " \u2014", " purely", "\u2014even", " without", " extremely"], [" \u2014", "\u2014even", " purely", " without", " even", " \u2013", " extremely", " exclusively"], [" even", " purely", " without", " \u2014", "\u2014even", " reliably", " exclusively", " despite"], [" without", " even", " purely", " reliably", " \u2014", " rapidly", "\u2014even", " extremely"], [" without", " purely", " even", " reliably", " relentlessly", "\u2014even", " rapidly", " impossible"], [" without", " purely", " reliably", " even", "\u2014even", " impossible", " inherently", " notoriously"], [" without", " reliably", " even", " purely", " speed", " fast", " hardware", " rapidly"], [" reliably", " without", " purely", " consistently", " even", " hardware", "\u2014even", " inherently"], [" reliably", " without", " purely", " consistently", " even", " inherently", " anywhere", " due"], [" reliably", " without", " purely", " even", " consistently", " routinely", " inherently", " due"], [" reliably", " without", " purely", " anywhere", " consistently", " inherently", " routinely", " due"], [" reliably", " anywhere", " without", " purely", " consistently", " inherently", " routinely", " due"], [" reliably", " anywhere", " consistently", " purely", " inherently", " without", " due", " routinely"], [" anywhere", " reliably", " without", " due", " routinely", " consistently", " directly", " inherently"], [" anywhere", " reliably", " directly", " due", " purely", " routinely", " inherently", " consistently"], [" anywhere", " reliably", " ANY", " inherently", " routinely", " across", " directly", "\u4efb\u4f55\u5f62\u5f0f\u7684"], [" anywhere", " reliably", "\u6709\u4efb\u4f55", "\u4efb\u4f55\u5f62\u5f0f\u7684", " ANY", "\u7684\u4efb\u4f55", " inherently", "\u63d0\u4f9b\u4efb\u4f55"], [" anywhere", " reliably", "\u6709\u4efb\u4f55", " on", "\u4efb\u4f55\u5f62\u5f0f\u7684", " ANY", " onboard", "\u7684\u4efb\u4f55"], [" on", " reliably", " native", "\u0e1a\u0e19", " anywhere", " onboard", "-native", " cleanly"], [" on", " anywhere", " reliably", " native", "\u0e1a\u0e19", "-native", "\u6709\u4efb\u4f55", " onboard"], [" on", " reliably", " anywhere", " native", "\u6709\u4efb\u4f55", " CPU", "-native", " GPU"], [" native", " on", " reliably", " anywhere", "-native", "\u6709\u4efb\u4f55", " CPU", " GPU"], [" rendering", " reliably", " GPU", " native", " on", " anywhere", "-native", "Rendering"], [" rendering", " reliably", " GPU", " on", " native", " runtime", " renderer", " hardware"], [" rendering", " on", " reliably", " GPU", " native", " OpenGL", " consistently", " renderer"], [" on", " rendering", " reliably", " GPU", " native", " consistently", " CPU", " mid"], [" on", " rendering", " reliably", " consistently", " mid", " native", " for", " mobile"], [" on", " reliably", " rendering", " for", " consistently", " mid", " native", " in"], [" on", " for", " n", " reliably", " rendering", " consistently", " in", " with"]], "p": [[0.5841, 0.2149, 0.115, 0.0226, 0.0213, 0.0094, 0.0089, 0.0061], [0.339, 0.0668, 0.008, 0.007, 0.0051, 0.0043, 0.0035, 0.0031], [0.4367, 0.3002, 0.1104, 0.0975, 0.0246, 0.0059, 0.0052, 0.0031], [0.0221, 0.0143, 0.0111, 0.0067, 0.0063, 0.0049, 0.0034, 0.0032], [0.0911, 0.0109, 0.0102, 0.0096, 0.0096, 0.0075, 0.004, 0.0038], [0.0461, 0.0263, 0.017, 0.0103, 0.0097, 0.008, 0.0075, 0.0071], [0.2132, 0.1141, 0.1007, 0.0506, 0.0307, 0.0198, 0.0198, 0.0128], [0.3176, 0.1409, 0.1098, 0.1031, 0.0109, 0.0109, 0.0102, 0.0085], [0.1645, 0.1364, 0.1281, 0.0223, 0.0173, 0.0163, 0.0068, 0.0068], [0.0143, 0.0068, 0.0068, 0.0032, 0.0028, 0.0017, 0.0015, 0.0015], [0.0288, 0.0211, 0.0198, 0.0175, 0.0083, 0.0068, 0.0057, 0.0053], [0.1288, 0.0885, 0.0393, 0.0113, 0.0099, 0.0073, 0.0053, 0.0053], [0.0557, 0.0298, 0.0205, 0.0067, 0.0052, 0.0049, 0.0036, 0.0026], [0.0049, 0.0049, 0.0032, 0.0032, 0.0026, 0.0022, 0.0016, 0.0014], [0.0156, 0.0057, 0.0051, 0.0051, 0.0051, 0.0048, 0.0045, 0.0039], [0.0488, 0.0169, 0.0102, 0.0102, 0.0096, 0.0085, 0.007, 0.007], [0.1142, 0.0785, 0.0348, 0.0198, 0.0155, 0.0136, 0.01, 0.0094], [0.0195, 0.0183, 0.0104, 0.0081, 0.0076, 0.0076, 0.0072, 0.0059], [0.0312, 0.0189, 0.0138, 0.0101, 0.007, 0.0065, 0.0058, 0.0051], [0.0718, 0.0193, 0.0182, 0.0117, 0.011, 0.0091, 0.0086, 0.0081], [0.2124, 0.0393, 0.0198, 0.0198, 0.012, 0.0099, 0.0088, 0.0088], [0.1216, 0.0083, 0.0083, 0.0073, 0.0061, 0.0061, 0.0061, 0.0057], [0.1665, 0.0165, 0.0145, 0.0145, 0.0128, 0.0128, 0.0121, 0.0113], [0.1377, 0.0271, 0.0211, 0.0186, 0.0154, 0.012, 0.0113, 0.0113], [0.0591, 0.0317, 0.0262, 0.0132, 0.0091, 0.0085, 0.0085, 0.008], [0.0608, 0.0445, 0.012, 0.0113, 0.0088, 0.0082, 0.0077, 0.0068], [0.0843, 0.0129, 0.0089, 0.0083, 0.0083, 0.0078, 0.0069, 0.0069], [0.2062, 0.049, 0.0192, 0.0124, 0.0116, 0.0109, 0.0103, 0.0103], [0.2172, 0.0377, 0.0229, 0.0157, 0.0139, 0.0123, 0.0115, 0.0102], [0.2751, 0.1669, 0.0272, 0.0176, 0.0121, 0.0121, 0.0114, 0.0114], [0.2635, 0.0666, 0.038, 0.0357, 0.0278, 0.0261, 0.0245, 0.0158], [0.3284, 0.0608, 0.0536, 0.0223, 0.021, 0.0144, 0.0136, 0.0127], [0.2547, 0.1062, 0.0269, 0.0237, 0.0223, 0.0173, 0.0173, 0.0153], [0.1687, 0.0797, 0.0228, 0.0228, 0.0228, 0.0214, 0.0189, 0.0147], [0.0518, 0.043, 0.0278, 0.0278, 0.0261, 0.023, 0.0203, 0.0179], [0.2429, 0.0654, 0.0614, 0.0449, 0.029, 0.0212, 0.0165, 0.0165], [0.0864, 0.0673, 0.0673, 0.0558, 0.0524, 0.0219, 0.0181, 0.016], [0.134, 0.1043, 0.0595, 0.0248, 0.017, 0.016, 0.015, 0.0125], [0.1258, 0.0558, 0.0558, 0.0409, 0.015, 0.0141, 0.0141, 0.0125], [0.1273, 0.064, 0.0601, 0.0499, 0.0162, 0.0118, 0.0111, 0.0105], [0.1571, 0.0578, 0.0397, 0.0351, 0.0329, 0.0291, 0.02, 0.0156], [0.1303, 0.0655, 0.045, 0.031, 0.031, 0.0226, 0.0213, 0.0213], [0.148, 0.0744, 0.0398, 0.033, 0.0257, 0.0213, 0.0188, 0.0188], [0.225, 0.0828, 0.0345, 0.0286, 0.0223, 0.0209, 0.0173, 0.0173], [0.1386, 0.0655, 0.0329, 0.029, 0.0226, 0.0213, 0.0188, 0.0155], [0.2767, 0.0617, 0.0545, 0.0292, 0.0257, 0.0213, 0.02, 0.0177], [0.3059, 0.2103, 0.0322, 0.0303, 0.0285, 0.0267, 0.0267, 0.0208], [0.4668, 0.2205, 0.0492, 0.0383, 0.0205, 0.016, 0.015, 0.0141], [0.5574, 0.1098, 0.0518, 0.0295, 0.0203, 0.0179, 0.0149, 0.0085], [0.7691, 0.0811, 0.0075, 0.0055, 0.0049, 0.0049, 0.0046, 0.004], [0.6302, 0.1095, 0.0378, 0.0378, 0.0244, 0.0179, 0.0102, 0.0055], [0.6664, 0.0582, 0.0293, 0.0243, 0.0189, 0.0178, 0.0115, 0.0101], [0.7758, 0.0637, 0.0151, 0.0151, 0.0133, 0.0125, 0.0067, 0.0063], [0.6134, 0.0473, 0.0444, 0.0325, 0.021, 0.0197, 0.0174, 0.0112], [0.2953, 0.1086, 0.0482, 0.0482, 0.0201, 0.0201, 0.0201, 0.0156], [0.1216, 0.1008, 0.0947, 0.0785, 0.0395, 0.0198, 0.0145, 0.0145], [0.268, 0.1117, 0.0363, 0.0282, 0.0265, 0.0207, 0.0171, 0.0161], [0.3815, 0.1093, 0.0485, 0.0294, 0.026, 0.0244, 0.0202, 0.0148], [0.2698, 0.2101, 0.1637, 0.0531, 0.0184, 0.0172, 0.0162, 0.0143], [0.5443, 0.1559, 0.065, 0.0288, 0.0175, 0.012, 0.01, 0.0088], [0.634, 0.0972, 0.0858, 0.0279, 0.0159, 0.014, 0.009, 0.0066], [0.8837, 0.0267, 0.0221, 0.0183, 0.0081, 0.0028, 0.0012, 0.0011], [0.9515, 0.0174, 0.0154, 0.0037, 0.0025, 0.001, 0.0009, 0.0008]], "ranks": {"Python": [17130, 122750, 81951, 117533, 8133, 35862, 7681, 17424, 19404, 64393, 3075, 12944, 12881, 12626, 10087, 5614, 13291, 20858, 39694, 68594, 24039, 40341, 21904, 23082, 34590, 30096, 16664, 7731, 9928, 7777, 7646, 8189, 11387, 10154, 10846, 3608, 5531, 3401, 2313, 819, 533, 1293, 1071, 1808, 1954, 2885, 3884, 7178, 10191, 19409, 11172, 633, 2359, 1660, 645, 206, 59, 69, 56, 91, 129, 53, 81]}}, {"pos": 406, "top": [[",", ".", "\u2013", ";", " \u2013", ":", "\u2026..", "\u00a0"], [",", "\u2013", "\u2013and", "\u200b", ";", ".", "\u2026..", "?,"], [",", ".", "\u2013", "\u2026..", ";", "\u2013and", " [\u2026]", "\u2026."], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\ufffd\ufffd", "\ufffd\ufffd", " addir", " **>>", " Pubbl", "\u683c\u91cc\u62c9", "matchCondition"], [",", ".@", "@", ",@", "(@", "//@", " //@", ":@"], [",", " \u00a0", "/off", "\u2026..", "!:", "!),", ".@", ",@"], [" ......", "......", " .....", "\ufffd", " [...]", " \u00a0", ".....", "&nbsp"], [" ......", "......", "athon", "\ufffds", ".....", "ishly", "&nbsp", "\ufffd"], ["......", "&nbsp", " [...]", ".....", "\ufffd", "athon", " ......", ",&"], [",", " \u00ad", "\u00ading", "&nbsp", ",&", "\u00ad", "though", "much"], ["&nbsp", " \u00ad", ",", " [...]", "\ufffd", ",&", "\u00c3", "\u00ad"], [" folks", " hubby", "\u516c\u53f7", "-ish", "/off", " pricey", " Philly", "nette"], ["-ish", " folks", " pricey", "/off", "\u00ading", " hubby", " veggies", "ishly"], [" folks", "-ish", " \u00ad", " pricey", "\u00ading", " Philly", " savvy", "/off"], [" folks", " \u00ad", " Philly", " truly", " savvy", " smack", " arguably", "-but"], [" folks", " \u00ad", " savvy", " arguably", " sprawling", "\u60f3\u65b9", " wildly", " pricey"], [",", " folks", " just", " \u00ad", " incredibly", "\u00c3", " truly", "&nbsp"], [" folks", " \u00ad", " savvy", " just", " pricey", " incredibly", " Philly", "\u60f3\u65b9"], [" \u00ad", "\u60f3\u65b9", "\u2014or", "\u2014even", " just", " folks", " smack", " barely"], ["\u2014or", " \u00ad", " seemingly", "\u2014even", " barely", " {{--<", " just", " arguably"], ["<|endoftext|>", " \u00ad", " just", " {{--<", " seemingly", " swiftly", " though", "\u2014or"], [" {{--<", "\u60f3\u65b9", "xeda", "\u597d\u597d\u5730", "\u8ddf\u81ea\u5df1", " Polresta", "\u5373\u4fbf\u5982\u6b64", " arguably"], [" {{--<", " ``", " arguably", "\u60f3\u65b9", " outright", " seemingly", " truly", " just"], [" \u00ad", " {{--<", " just", " seemingly", " arguably", " much", " --", " truly"], [" {{--<", " --", " \u00ad", " arguably", " seemingly", " swiftly", " hugely", " outright"], [" {{--<", " MEDIATEK", " **", " MEDIAM", " **>>", "\u60f3\u65b9", " hardware", " --"], [" {{--<", " --", " hardware", " arguably", "\u60f3\u65b9", "\u90fd\u5e02\u8a00\u60c5", " MEDIATEK", " atop"], [" --", " {{--<", " arguably", " hardware", " hugely", " \u00ad", " vastly", " heavily"], [" hardware", " **", " tech", " Android", " digitally", " arguably", " heavily", " electronics"], [" hardware", " **", " tech", " digitally", " Android", " smartphone", " electronics", " tabletop"], [" hardware", " even", " heavily", " tech", " **", " arguably", " typically", " massively"], [" even", " hardware", " just", " ...", " heavily", " much", " ,", " a"], [" even", " just", " massively", " heavily", " only", " arguably", " hardware", " typically"], ["\u2014even", " hardware", " even", " massively", " arguably", " typically", " tech", " notoriously"], ["\u2014even", " hardware", " arguably", "\u2014or", " notoriously", "\u2014but", " tech", " typically"], [" hardware", "\u2014even", "hardware", "\u2014or", " arguably", "\u2014but", "\u2011", " \u2014"], [" hardware", "\u2014even", "hardware", " Hardware", "\u786c\u4ef6", "Hardware", " Android", " notoriously"], [" hardware", " Android", "hardware", " Hardware", "Hardware", " smartphone", "\u2014even", "\u786c\u4ef6"], [" hardware", "hardware", " Hardware", " Android", "Hardware", "\u786c\u4ef6", " iOS", " smartphone"], [" hardware", "hardware", " Hardware", " Android", "\u786c\u4ef6", "Hardware", " smartphone", " smartphones"], [" hardware", " Android", " Hardware", "hardware", " smartphone", " smartphones", "Hardware", "\u786c\u4ef6"], [" hardware", " Android", " Hardware", "hardware", "Hardware", " smartphone", "\u786c\u4ef6", " smartphones"], [" hardware", " Hardware", " Android", " smartphone", "hardware", " smartphones", " handheld", "Hardware"], [" hardware", " Hardware", " Android", "hardware", " handheld", " smartphone", " smartphones", "Hardware"], [" hardware", " Hardware", " handheld", " Android", " smartphone", " smartphones", "hardware", " laptops"], [" hardware", " handheld", " Hardware", " smartphone", " smartphones", " mediocre", "hardware", " Android"], [" hardware", " Hardware", " handheld", "hardware", " mediocre", " smartphone", " anywhere", " limited"], [" hardware", " mediocre", " handheld", " Hardware", " ANY", " moderate", " CPUs", " low"], [" hardware", " handheld", " mediocre", " CPUs", " Hardware", " CPU", " smartphones", "hardware"], [" hardware", " handheld", " mediocre", " CPUs", "hardware", " Hardware", " smartphones", " smartphone"], [" hardware", " handheld", " CPUs", "hardware", " smartphones", " mediocre", " ANY", "\u786c\u4ef6"], [" hardware", " handheld", " CPUs", " Android", "\u79fb\u52a8\u7aef", " smartphones", " CPU", " smartphone"], [" hardware", " handheld", " CPU", " CPUs", "hardware", " Android", " Hardware", "\u79fb\u52a8\u7aef"], [" hardware", " Android", "hardware", "-device", " Hardware", " CPU", "\u786c\u4ef6", " iOS"], [" hardware", " Android", " CPU", " GPU", " iOS", "-device", " Hardware", " CPUs"], [" Android", " middleware", " mid", "Android", " hardware", "-android", " mobile", " android"], [" Android", " middleware", " mid", "(Android", "Android", "_android", " android", "-android"], [" Android", " middleware", " mid", " hardware", "-device", "(Android", " GPU", "Android"], [" Android", " mid", " middleware", " mobile", "-device", "Android", " hardware", " android"], [" mid", " Mid", "mid", ",mid", ".mid", "(mid", " Android", " MID"], [" mid", " Mid", " Android", ",mid", "(mid", ".mid", " MID", "mid"], [" mid", " Mid", ",mid", " MID", " Android", ".mid", "mid", " mobile"], [" mid", " mobile", " Android", " Mid", " MID", " a", " middleware", ",mid"]], "p": [[0.7529, 0.1904, 0.0292, 0.0107, 0.004, 0.0013, 0.0013, 0.0011], [0.1099, 0.1033, 0.0261, 0.0245, 0.0123, 0.0102, 0.007, 0.0066], [0.8633, 0.0803, 0.0335, 0.0066, 0.0058, 0.0012, 0.0008, 0.0008], [0.009, 0.0045, 0.002, 0.002, 0.0017, 0.0015, 0.0015, 0.0013], [0.1408, 0.103, 0.0802, 0.0708, 0.0148, 0.0109, 0.0096, 0.0085], [0.0453, 0.0069, 0.0042, 0.004, 0.0035, 0.0033, 0.0031, 0.0031], [0.1295, 0.1143, 0.0255, 0.0199, 0.0187, 0.0128, 0.012, 0.0106], [0.0234, 0.0207, 0.0092, 0.0092, 0.0063, 0.0059, 0.0059, 0.0049], [0.0599, 0.0249, 0.0183, 0.0151, 0.0111, 0.0104, 0.0104, 0.0092], [0.0352, 0.0101, 0.0095, 0.0061, 0.0048, 0.0045, 0.0037, 0.0035], [0.0507, 0.0371, 0.0328, 0.0272, 0.01, 0.0078, 0.0073, 0.0069], [0.0058, 0.0037, 0.0037, 0.0037, 0.0033, 0.0033, 0.0031, 0.0024], [0.0066, 0.0058, 0.0055, 0.0043, 0.004, 0.0038, 0.0038, 0.0024], [0.0086, 0.0055, 0.0049, 0.0038, 0.0034, 0.003, 0.0025, 0.0023], [0.0179, 0.0123, 0.0062, 0.0058, 0.0038, 0.0031, 0.0027, 0.0024], [0.0263, 0.0059, 0.0052, 0.0049, 0.003, 0.003, 0.003, 0.0028], [0.0268, 0.0236, 0.0068, 0.0064, 0.0056, 0.0047, 0.0039, 0.0036], [0.0107, 0.0037, 0.0033, 0.0031, 0.0029, 0.0029, 0.0027, 0.0025], [0.0062, 0.0058, 0.0054, 0.0045, 0.0035, 0.0035, 0.0033, 0.0033], [0.0048, 0.0042, 0.0039, 0.0037, 0.0033, 0.0029, 0.0029, 0.0029], [0.0524, 0.0067, 0.0036, 0.003, 0.003, 0.003, 0.0028, 0.0026], [0.0062, 0.0021, 0.0012, 0.0012, 0.0011, 0.001, 0.0008, 0.0008], [0.0197, 0.0047, 0.003, 0.0025, 0.0022, 0.0021, 0.002, 0.0018], [0.0072, 0.0068, 0.0068, 0.005, 0.0044, 0.0041, 0.0041, 0.003], [0.0182, 0.0063, 0.0038, 0.0036, 0.0032, 0.0019, 0.0019, 0.0018], [0.0175, 0.0027, 0.0022, 0.0022, 0.0021, 0.0018, 0.0017, 0.0017], [0.0117, 0.0041, 0.0032, 0.0019, 0.0019, 0.0014, 0.0013, 0.0013], [0.013, 0.007, 0.0045, 0.0031, 0.0027, 0.0027, 0.0026, 0.0024], [0.0292, 0.0069, 0.0065, 0.0057, 0.0042, 0.0031, 0.0031, 0.0031], [0.0493, 0.0264, 0.0103, 0.0097, 0.0076, 0.0049, 0.0046, 0.004], [0.0611, 0.0211, 0.0154, 0.0145, 0.012, 0.01, 0.0083, 0.0073], [0.0553, 0.0149, 0.0123, 0.0116, 0.0116, 0.0096, 0.0085, 0.0085], [0.0711, 0.0159, 0.0123, 0.0102, 0.009, 0.0085, 0.008, 0.0075], [0.0965, 0.0663, 0.0276, 0.0244, 0.0215, 0.0115, 0.0115, 0.0108], [0.1895, 0.0953, 0.0329, 0.0256, 0.0156, 0.0156, 0.0121, 0.0094], [0.3963, 0.1209, 0.021, 0.012, 0.0112, 0.0093, 0.0088, 0.0088], [0.5625, 0.0557, 0.0317, 0.0124, 0.011, 0.0097, 0.008, 0.0067], [0.7119, 0.0402, 0.0244, 0.0157, 0.0084, 0.0079, 0.007, 0.0066], [0.8551, 0.0243, 0.0189, 0.0147, 0.0108, 0.0101, 0.004, 0.0029], [0.7848, 0.0345, 0.0185, 0.0173, 0.0153, 0.0127, 0.0087, 0.0053], [0.7204, 0.063, 0.0262, 0.0232, 0.0232, 0.0132, 0.0116, 0.0109], [0.8753, 0.0233, 0.0206, 0.016, 0.0091, 0.0076, 0.0052, 0.0046], [0.842, 0.0211, 0.0198, 0.0113, 0.0113, 0.0083, 0.0083, 0.006], [0.8115, 0.0335, 0.0168, 0.0109, 0.0096, 0.0085, 0.0066, 0.0066], [0.8021, 0.0166, 0.0156, 0.0122, 0.0122, 0.0101, 0.0065, 0.0051], [0.6926, 0.0286, 0.0223, 0.0112, 0.0099, 0.0093, 0.0077, 0.0064], [0.7236, 0.0264, 0.0233, 0.0117, 0.0091, 0.0049, 0.0043, 0.004], [0.4457, 0.0642, 0.0285, 0.0236, 0.0098, 0.0082, 0.0082, 0.0077], [0.2174, 0.0663, 0.0623, 0.0168, 0.0157, 0.0115, 0.0108, 0.0102], [0.1013, 0.0654, 0.029, 0.0146, 0.0137, 0.0121, 0.0083, 0.0065], [0.0775, 0.0728, 0.0209, 0.0162, 0.0143, 0.0099, 0.0099, 0.0093], [0.1188, 0.0721, 0.032, 0.0282, 0.0207, 0.0171, 0.0171, 0.0151], [0.4624, 0.0335, 0.0335, 0.0296, 0.0261, 0.0168, 0.0158, 0.0149], [0.7502, 0.048, 0.0227, 0.0166, 0.0146, 0.0146, 0.0114, 0.0078], [0.3765, 0.3322, 0.0741, 0.0309, 0.0309, 0.0165, 0.0114, 0.0083], [0.8992, 0.0308, 0.0187, 0.0069, 0.0053, 0.0047, 0.0047, 0.0037], [0.9533, 0.0106, 0.0082, 0.0039, 0.0039, 0.0034, 0.0034, 0.0024], [0.8861, 0.0268, 0.0236, 0.0162, 0.0112, 0.0041, 0.0041, 0.0036], [0.8323, 0.1126, 0.0119, 0.0064, 0.0044, 0.0039, 0.0039, 0.0026], [0.9981, 0.0007, 0.0004, 0.0002, 0.0002, 0.0001, 0.0001, 0.0], [0.9961, 0.001, 0.0007, 0.0005, 0.0003, 0.0003, 0.0003, 0.0003], [0.9953, 0.0017, 0.0005, 0.0005, 0.0004, 0.0004, 0.0003, 0.0003], [0.9864, 0.0059, 0.0031, 0.0011, 0.0005, 0.0003, 0.0003, 0.0003]], "ranks": {"Python": [115228, 241677, 155813, 224025, 133679, 139816, 74867, 133783, 78445, 100419, 72652, 139466, 128065, 92679, 65044, 74371, 82109, 76631, 79343, 97254, 36185, 78677, 42921, 26391, 44449, 36857, 23281, 9670, 3269, 2819, 2074, 3018, 3999, 3275, 2345, 982, 664, 880, 771, 444, 340, 400, 563, 962, 975, 1537, 1930, 2016, 3346, 4987, 3990, 730, 2177, 990, 133, 177, 74, 143, 130, 151, 79, 47, 25]}}, {"pos": 407, "top": [[",", ".", "\u2013", "-", ";", "\u2026..", "\u2026.", "\u2026"], ["\u2011", "\u00ad", "\u2013", "\u00adi", "\uff5e", "\u2013and", "ly", "\u00ading"], [",", "\u2013", ".", ".\u2013", "\u2011", "\u200b", "\u2013and", "\u2026.."], ["\uff0a\uff0a\uff0a\uff0a", "\uff1d\uff1d\uff1d\uff1d", " milfs", "weise", " \uc77c\uc808", "irectional", " Hidal", "ewire"], ["ly", "&nbsp", "ser", "son", "server", "n", "@", "ilion"], ["ly", "lif", "server", "FIG", ",mid", "ilion", "dias", "son"], ["ly", "&nbsp", " \ufffd", "\u4e00", "\u4e2d", ",mid", "\ufffd", "mid"], ["ly", "ivial", "&nbsp", "athon", "irectional", "stral", "ily", "-ID"], ["&nbsp", "athon", "ly", "<br", "ily", "\u00adi", "irectional", "ward"], ["&nbsp", " \u00ad", "\u00ading", "\u00adi", "[mid", "irectional", "parentId", ",mid"], ["&nbsp", " \u00ad", "[mid", "-&", "\u2011", "ly", "Mid", "<br"], ["ewire", "ustrial", "irectional", "ivial", "ily", " //~", "-low", " Hidal"], ["ewire", "irectional", "ustrial", "ivial", "-low", "-tier", "[mid", "quel"], ["irectional", "-tier", "ewire", "[mid", ",mid", "-low", "ivial", "ustrial"], [",mid", "irectional", "-tier", "[mid", "Mid", "\u2011", "-low", "ropped"], [",mid", "-low", "[mid", "irectional", "-tier", "Mid", "ly", "-ish"], [",mid", "-tier", "-low", "-ish", "[mid", "-market", "Mid", "-esque"], [",mid", "[mid", "-tier", "-market", "-low", "-ish", "irectional", "-tech"], [",mid", "[mid", "-market", " MEDIAM", "ewire", "irectional", "owntown", "-tier"], ["[mid", ",mid", "-market", "--)", " //~", "-tier", " //--", "irectional"], ["[mid", "Mid", " {{--<", ",mid", "-market", "--)", " //~", "(mid"], ["-market", " MEDIAM", "owntown", "ewire", "irectional", ",mid", "[mid", " iParam"], [" {{--<", "-market", " MEDIAM", "&eacute", "[mid", " iParam", " --", "Mid"], [" --", " {{--<", "\u2011", "Mid", " \u2015", "&nbsp", "-era", "-market"], ["&nbsp", "\u2011", "Though", "Mid", " {{--<", " --", " \u00ad", " \u2015"], ["-market", "\u2011", " {{--<", "amai", " MEDIAM", " pricey", " --", "-tier"], ["-market", "\u2011", "-era", "-tier", " pricey", "amai", "-tech", "-priced"], ["\u2011", "-market", "-era", " --", "-tier", " \r\n\r\n", "-priced", " {{--<"], ["\u2011", "-market", "-era", "-tier", "-priced", "-tech", "[mid", "-budget"], ["\u2011", "-era", "-market", "\u2014even", " \n  \n", "-tier", "-priced", "\u2013"], ["\u2011", "-era", "-market", " tech", "-heavy", "-tier", " \n  \n", "-tech"], ["\u2011", " mid", " -", " tech", " \u2014", " industry", "-era", " affordable"], ["\u2011", " \u2013", " mid", "-era", " \u2014", " -", " massively", " low"], ["\u2011", "\u2014even", "-tier", "-era", "\u2014if", " tech", "\u2013", "-level"], ["\u2011", "\u2014even", "-tier", "\u2013", "\u2014if", "-era", " \u00ad", " tech"], ["\u2011", "\u2013", "\u2014even", "\u2014if", " \u2013", "\u2014you", "**\u2014", "-tier"], ["\u2011", "-tier", "\u2014even", " hardware", " tech", "\u2014if", "\u2014you", "**\u2014"], ["\u2011", " hardware", "-tier", " tech", "\u2014even", " overclock", "-tech", "-budget"], ["\u2011", " hardware", "-tier", " tech", "\u2014even", "-tech", "-budget", " overclock"], ["\u2011", " hardware", "-tier", " tech", "hardware", "\u786c\u4ef6", " overclock", "-tech"], [" hardware", "\u2011", " tech", "hardware", "\u786c\u4ef6", " Hardware", "-tier", "-tech"], [" hardware", "hardware", " Hardware", "\u786c\u4ef6", "\u2011", "Hardware", "-tier", " tech"], [" hardware", " Hardware", "hardware", "\u786c\u4ef6", "-tier", "Hardware", " tech", "-budget"], [" hardware", "\u786c\u4ef6", " Hardware", "hardware", "-tier", "Hardware", "-budget", "-standard"], [" hardware", "-tier", "hardware", " Hardware", " mediocre", "\u786c\u4ef6", "\u2011", "-budget"], [" hardware", "-tier", " mediocre", " Hardware", "hardware", "\u786c\u4ef6", "-budget", "-low"], [" hardware", "-tier", " mediocre", "\u2011", "hardware", "-budget", "-medium", "-standard"], [" hardware", "\u2011", "-tier", "-budget", "-standard", "-low", "-grade", "-level"], [" hardware", "\u2011", "-tier", "-budget", "-standard", " Hardware", "-grade", "-low"], ["-tier", " hardware", "hardware", "\u786c\u4ef6", "-standard", "\u2011", "-grade", "-level"], ["-tier", " hardware", "\u786c\u4ef6", "hardware", "-grade", " Hardware", "-standard", "\u2011"], [" hardware", "-tier", "hardware", "\u786c\u4ef6", "-grade", "-range", " Hardware", "Hardware"], [" hardware", "\u786c\u4ef6", "hardware", "-tier", " Hardware", "Hardware", "-range", ".hardware"], [" hardware", "\u786c\u4ef6", "hardware", " Hardware", "Hardware", "-tier", "ardware", ".hardware"], [" hardware", "hardware", "\u786c\u4ef6", "-tier", " Hardware", " Android", "-range", "Hardware"], [" Android", " hardware", "-range", "-android", "Android", "/android", "\u786c\u4ef6", "hardware"], [" Android", "-range", "-android", " hardware", "Android", "/android", "-tier", "_android"], [" hardware", " Android", "\u786c\u4ef6", "hardware", "-range", " Hardware", "-android", "Hardware"], [" hardware", "-range", " Android", "-android", "hardware", "\u786c\u4ef6", "-tier", "Android"], ["-range", " hardware", " Android", "hardware", "\u786c\u4ef6", " Hardware", "range", "Hardware"], ["-range", "range", " range", " hardware", " Android", "Range", "_range", "Android"], ["-range", "range", " Android", " range", " hardware", "Android", "-tier", "Range"], ["-range", "-", "-tier", " range", "range", " Android", "-r", " hardware"]], "p": [[0.5878, 0.3565, 0.0177, 0.0108, 0.0035, 0.0021, 0.0016, 0.0012], [0.2952, 0.0659, 0.0292, 0.0228, 0.0214, 0.0189, 0.0147, 0.0147], [0.2864, 0.2528, 0.2375, 0.0208, 0.0195, 0.0143, 0.0126, 0.0086], [0.0079, 0.007, 0.0061, 0.0051, 0.0048, 0.0048, 0.004, 0.0037], [0.3874, 0.0181, 0.0125, 0.0117, 0.0086, 0.0067, 0.0059, 0.0052], [0.0426, 0.0147, 0.0101, 0.0074, 0.0069, 0.0069, 0.0065, 0.0065], [0.0937, 0.0268, 0.0184, 0.0112, 0.0105, 0.0105, 0.0099, 0.0093], [0.0255, 0.0073, 0.0069, 0.0069, 0.0047, 0.0047, 0.0042, 0.0039], [0.0845, 0.0138, 0.0089, 0.0065, 0.0054, 0.0045, 0.0042, 0.004], [0.0227, 0.0107, 0.0101, 0.0078, 0.0048, 0.0045, 0.0042, 0.0039], [0.2459, 0.0178, 0.009, 0.0084, 0.0084, 0.0066, 0.0054, 0.0048], [0.0048, 0.0045, 0.0045, 0.0038, 0.0028, 0.0024, 0.0021, 0.002], [0.0066, 0.0066, 0.0043, 0.0038, 0.0024, 0.0023, 0.002, 0.002], [0.0078, 0.0057, 0.0042, 0.0037, 0.0027, 0.0025, 0.0025, 0.0022], [0.0082, 0.0082, 0.0073, 0.0068, 0.0039, 0.0037, 0.0032, 0.0029], [0.0106, 0.0077, 0.0068, 0.0047, 0.0034, 0.0032, 0.0028, 0.0027], [0.0195, 0.0118, 0.0111, 0.0104, 0.0081, 0.0072, 0.0067, 0.0052], [0.0134, 0.0063, 0.0059, 0.0056, 0.0049, 0.0049, 0.0046, 0.0038], [0.0087, 0.0064, 0.006, 0.0041, 0.0032, 0.0028, 0.0026, 0.0026], [0.0094, 0.0094, 0.0073, 0.005, 0.0037, 0.0031, 0.0029, 0.0027], [0.0103, 0.008, 0.0066, 0.0055, 0.0055, 0.0046, 0.0033, 0.0031], [0.0095, 0.0079, 0.0035, 0.0035, 0.0033, 0.0033, 0.0023, 0.0019], [0.009, 0.0079, 0.0033, 0.0031, 0.0029, 0.0026, 0.0026, 0.0026], [0.0107, 0.0083, 0.0083, 0.0039, 0.0039, 0.0033, 0.0025, 0.0022], [0.0149, 0.0109, 0.0071, 0.0059, 0.0059, 0.0059, 0.0049, 0.004], [0.0173, 0.0144, 0.0056, 0.0053, 0.0053, 0.0034, 0.0034, 0.0032], [0.0409, 0.0133, 0.0091, 0.0076, 0.0055, 0.0049, 0.0046, 0.0043], [0.342, 0.0097, 0.0097, 0.008, 0.0052, 0.003, 0.0028, 0.0028], [0.5051, 0.0285, 0.0173, 0.0077, 0.006, 0.0056, 0.005, 0.0032], [0.9619, 0.002, 0.0014, 0.0006, 0.0005, 0.0005, 0.0004, 0.0004], [0.9828, 0.0015, 0.0004, 0.0004, 0.0003, 0.0003, 0.0003, 0.0002], [0.8134, 0.0062, 0.0043, 0.0035, 0.0023, 0.0023, 0.002, 0.002], [0.7105, 0.0089, 0.0079, 0.0048, 0.0042, 0.004, 0.0024, 0.0024], [0.9222, 0.0062, 0.0045, 0.0021, 0.0013, 0.001, 0.0007, 0.0005], [0.9715, 0.002, 0.0013, 0.0011, 0.0009, 0.0007, 0.0004, 0.0004], [0.9938, 0.0011, 0.0004, 0.0003, 0.0002, 0.0002, 0.0002, 0.0001], [0.9613, 0.0027, 0.0019, 0.0011, 0.0011, 0.0008, 0.0006, 0.0005], [0.972, 0.0019, 0.0018, 0.0009, 0.0006, 0.0005, 0.0004, 0.0003], [0.9585, 0.0057, 0.0039, 0.0015, 0.0009, 0.0007, 0.0006, 0.0005], [0.8207, 0.0717, 0.0103, 0.008, 0.0059, 0.0049, 0.0034, 0.0034], [0.5682, 0.209, 0.0266, 0.0207, 0.0172, 0.0172, 0.0134, 0.0081], [0.9042, 0.0188, 0.0166, 0.0121, 0.0073, 0.0054, 0.0035, 0.0033], [0.911, 0.0157, 0.0122, 0.0074, 0.0061, 0.0031, 0.0024, 0.002], [0.8137, 0.0191, 0.0191, 0.0191, 0.0102, 0.0062, 0.0052, 0.004], [0.822, 0.0151, 0.0097, 0.0086, 0.0063, 0.0063, 0.0049, 0.0043], [0.8024, 0.0258, 0.0147, 0.0108, 0.0089, 0.0054, 0.0051, 0.0045], [0.6745, 0.0489, 0.0204, 0.018, 0.0132, 0.0096, 0.009, 0.0085], [0.4335, 0.1698, 0.0457, 0.0245, 0.0245, 0.0158, 0.0131, 0.0109], [0.2423, 0.1773, 0.0575, 0.0255, 0.0176, 0.0155, 0.0128, 0.0113], [0.1546, 0.1282, 0.0304, 0.0304, 0.0286, 0.0237, 0.0209, 0.0185], [0.2637, 0.1703, 0.0553, 0.0431, 0.0296, 0.0131, 0.0131, 0.0096], [0.2477, 0.1599, 0.071, 0.0626, 0.0296, 0.0245, 0.023, 0.0123], [0.6665, 0.0902, 0.0796, 0.0483, 0.0293, 0.0189, 0.0061, 0.0054], [0.7963, 0.0839, 0.0741, 0.0212, 0.0114, 0.0037, 0.0021, 0.0015], [0.796, 0.0577, 0.0509, 0.0212, 0.0187, 0.0114, 0.0088, 0.0078], [0.5391, 0.175, 0.1062, 0.0827, 0.0268, 0.0184, 0.0112, 0.0068], [0.7542, 0.1021, 0.0482, 0.0258, 0.0201, 0.0201, 0.004, 0.0035], [0.7988, 0.0954, 0.0273, 0.0241, 0.0241, 0.0078, 0.0069, 0.0042], [0.5278, 0.22, 0.1512, 0.0298, 0.0181, 0.0159, 0.0124, 0.0059], [0.5713, 0.3927, 0.0152, 0.0081, 0.0044, 0.003, 0.0023, 0.0011], [0.9795, 0.0085, 0.0058, 0.0028, 0.0028, 0.0002, 0.0001, 0.0001], [0.9847, 0.0052, 0.0046, 0.0028, 0.0012, 0.0002, 0.0002, 0.0002], [0.9912, 0.0017, 0.001, 0.0007, 0.0007, 0.0007, 0.0007, 0.0003]], "ranks": {"Python": [30207, 206855, 65646, 161423, 72878, 49683, 23763, 57993, 38945, 55552, 36723, 155277, 119578, 104293, 80148, 109391, 91258, 95323, 138865, 182977, 114716, 180220, 182156, 152429, 61971, 96159, 84633, 81226, 49865, 90630, 41783, 14268, 24702, 53986, 57283, 54749, 64587, 70290, 76057, 43166, 21452, 25758, 19146, 25303, 29340, 17842, 30414, 21368, 21230, 23998, 45120, 10677, 20911, 13458, 9030, 4964, 5670, 5048, 4178, 3434, 2435, 1848, 2358]}}, {"pos": 408, "top": [[" \u2013", "\u2013", ".", ",", " ", "\u2013and", ".\u2013", "["], [" \u2013", "\u2013", " \u2013**", "\u2013\u2013", "\u2013and", "**\u2013", ".\u2013", " \u2013,"], [" \u2013", "\u2013", ".\u2013", "\u2013and", ",", "**\u2013", "\u2013\u2013", " \u2013,"], ["ieli", "enje", " \u2013**", "\u3093\u3070\u3093", "uarte", "**\u2013", "erokee", "inaldo"], [" \u2013", "\u2013\u2013", ".\u2013", "\u2013", "i", "[@", "en", " "], [" \u2013", ".\u2013", "\u2013\u2013", "\u2013", "\u2013and", "**\u2013", " **\u2013", " *\u2013"], [" \u2013", "\u2013\u2013", ".\u2013", "\u2013", "\u2013and", " ", " Centre", " ]["], [" \u2013", "\u2013\u2013", ".\u2013", "\u2013and", " Centre", "\u2013", "\u0436\u0434\u0451", " armour"], [" \u2013", ".\u2013", "\u2013and", "\u2013\u2013", "\u2013", ",", ".", " \u2013,"], [" \u2013", "\u2013", ".\u2013", "\u0436\u0434\u0451", "\u2013\u2013", "\u2013and", " Centre", " armour"], [" \u2013", " armour", " Centre", " centre", "\u0436\u0434\u0451", "\u2013", ".\u2013", " neighbourhood"], [" armour", " neighbourhood", " whilst", " Centre", "\u0436\u0434\u0451", " centre", " flavours", " specialised"], [" neighbourhood", " armour", " flavours", " specialised", " utilisation", " neighbours", " \u2013", " flavour"], [" neighbourhood", " armour", " \u2013", " flavours", " utilisation", " favourites", " Centre", " organisations"], [" \u2013", " armour", " neighbourhood", " Centre", " favourites", " whilst", " centre", " amongst"], [" \u2013", " neighbourhood", " showcasing", " popular", " popularity", " whilst", " showcase", " amongst"], [" \u2013", " popular", " popularity", " showcasing", " neighbourhood", " folks", " middle", " midd"], [" ballpark", " showcase", " \u2013", " showcasing", " popularity", " neighbourhood", " contenders", " outfits"], [" ballpark", " midd", " outf", " upscale", " contenders", " folks", " heavily", " Middle"], [" folks", " ballpark", " midd", " outf", " blockbuster", " swiftly", " heavily", "\u2013\u2013"], [" folks", " heavily", " swiftly", " [[", " popular", " ballpark", " midd", " --"], [" electronics", " ballpark", " gaming", " upscale", " gamers", " folks", "----------</", " startups"], [" ''", " [[", " electronics", " gaming", " folks", " ballpark", " commercial", " hardware"], [" ,", " ultimately", " high", " heavily", " popular", " whilst", " [[", " much"], [" whilst", " [[", " heavily", " hardware", " low", " high", " mid", " affordable"], [" hardware", " electronics", " smartphone", " Android", " gaming", " smartphones", " upgrades", " affordable"], [" hardware", " electronics", " smartphone", " smartphones", " Android", " gaming", " technology", " tech"], [" hardware", " \n\n", " low", " technology", " [[", " gaming", " tech", " Android"], [" Android", " hardware", " smartphone", " technology", " smartphones", " electronics", " tech", " technologies"], [" smartphones", " smartphone", " hardware", " Android", " technology", " ___", " tech", " electronics"], [" technology", " tech", " hardware", " smartphones", " smartphone", " Android", " technologies", " electronics"], [" technology", " hardware", " tech", " Android", " technologies", " mobile", " smartphones", " low"], [" hardware", " technology", " low", " tech", " cheap", " \u2013", " mobile", " Android"], [" hardware", " tech", " technology", " smartphone", " smartphones", " Android", " digital", " electronics"], [" hardware", " tech", " smartphone", " Android", " smartphones", " technology", " digital", " overclock"], [" hardware", " Android", " \u2013", " tech", " smartphone", " technology", " smartphones", " software"], [" hardware", " Android", " tech", " smartphone", " smartphones", " technology", " overclock", " software"], [" Android", " hardware", " smartphone", " smartphones", " tech", " android", " overclock", " technology"], [" hardware", " Android", " smartphone", " smartphones", " CPU", " tech", " CPUs", " Hardware"], [" hardware", " Android", " CPU", " overclock", " CPUs", " tech", " Hardware", " smartphones"], [" Android", " hardware", " android", " CPU", " smartphone", " smartphones", " tech", " CPUs"], [" Android", " hardware", " android", " smartphone", " CPUs", " CPU", " smartphones", " Hardware"], [" Android", " hardware", " CPUs", " android", " CPU", " smartphone", " smartphones", " Hardware"], [" Android", " hardware", " CPUs", " android", " CPU", " Hardware", " smartphone", " smartphones"], [" Android", " hardware", " CPUs", " android", " smartphones", " smartphone", " CPU", " engines"], [" hardware", " Android", " CPUs", " CPU", " smartphone", " smartphones", " android", " Hardware"], [" hardware", " Android", " CPUs", " CPU", " smartphone", " limited", " android", " smartphones"], [" hardware", " Android", " CPUs", " (~", " CPU", " android", " smartphones", " budgets"], [" hardware", " Android", " CPUs", " (~", " CPU", " GPUs", " smartphones", " processors"], [" hardware", " CPUs", " Android", " (~", " GPUs", " smartphones", " CPU", " Hardware"], [" hardware", " CPUs", " Hardware", " GPUs", " Android", "\u786c\u4ef6", " smartphones", " CPU"], [" Android", " hardware", " CPUs", "(Android", " smartphones", "Android", " GPUs", " android"], [" hardware", " Android", " Hardware", "\u786c\u4ef6", "hardware", " CPUs", "Hardware", " GPUs"], [" hardware", " Android", " Hardware", "\u786c\u4ef6", "hardware", "Hardware", "ardware", "Android"], [" hardware", " Android", " Hardware", "\u786c\u4ef6", "hardware", "Hardware", "Android", " iOS"], [" Android", " hardware", "Android", " android", "-android", " iOS", " Hardware", "_android"], [" Android", "Android", " hardware", " android", "-android", "_android", "(Android", "/android"], [" Android", " hardware", " Hardware", "\u786c\u4ef6", "Android", "hardware", " android", "-android"], [" Android", " hardware", "Android", " Hardware", " android", "\u786c\u4ef6", "-android", "hardware"], [" hardware", " Android", " Hardware", "\u786c\u4ef6", "hardware", "Hardware", "Android", " android"], [" Android", " hardware", "Android", " mobile", " android", " Hardware", "-android", "hardware"], [" Android", " hardware", " mobile", "Android", " android", "-android", " Hardware", "(Android"], [" Android", " hardware", " mobile", "Android", " ARM", " android", " Hardware", " Mobile"]], "p": [[0.9679, 0.0228, 0.0054, 0.0008, 0.0004, 0.0003, 0.0003, 0.0002], [0.9327, 0.0249, 0.0133, 0.0117, 0.0055, 0.0049, 0.003, 0.0023], [0.6116, 0.3709, 0.0077, 0.0053, 0.0013, 0.0012, 0.0006, 0.0004], [0.0129, 0.0042, 0.0033, 0.0033, 0.0025, 0.0025, 0.0024, 0.0021], [0.6212, 0.0479, 0.0256, 0.0156, 0.0114, 0.0114, 0.0114, 0.0114], [0.3236, 0.2856, 0.119, 0.1118, 0.0496, 0.0059, 0.0056, 0.0018], [0.8336, 0.0252, 0.0127, 0.0077, 0.0056, 0.0018, 0.0009, 0.0006], [0.2595, 0.031, 0.0291, 0.0213, 0.0089, 0.0074, 0.0069, 0.0069], [0.4552, 0.0698, 0.0351, 0.0273, 0.0166, 0.0051, 0.0047, 0.0033], [0.2835, 0.0865, 0.0463, 0.0318, 0.0281, 0.0233, 0.0181, 0.015], [0.383, 0.0587, 0.0518, 0.0216, 0.0203, 0.0191, 0.0168, 0.0102], [0.0628, 0.0316, 0.0279, 0.0262, 0.0231, 0.0204, 0.0191, 0.0191], [0.0263, 0.0192, 0.0159, 0.0103, 0.008, 0.008, 0.0071, 0.0071], [0.024, 0.0199, 0.01, 0.0094, 0.0073, 0.0069, 0.0064, 0.0064], [0.0289, 0.0128, 0.0106, 0.0069, 0.0057, 0.0057, 0.0044, 0.0044], [0.0263, 0.0103, 0.0075, 0.0071, 0.0055, 0.0049, 0.0038, 0.0036], [0.0444, 0.0099, 0.0053, 0.0047, 0.0039, 0.0036, 0.0034, 0.0034], [0.0042, 0.004, 0.004, 0.004, 0.0031, 0.0029, 0.0026, 0.0024], [0.0056, 0.0032, 0.0028, 0.0027, 0.0027, 0.0025, 0.0018, 0.0018], [0.0062, 0.0048, 0.0045, 0.0029, 0.0023, 0.0023, 0.0023, 0.0021], [0.0059, 0.0049, 0.0046, 0.0041, 0.0034, 0.0032, 0.0032, 0.0028], [0.0048, 0.0035, 0.0024, 0.0021, 0.0019, 0.0019, 0.0018, 0.0016], [0.0097, 0.0052, 0.004, 0.004, 0.0033, 0.0031, 0.0028, 0.0026], [0.0082, 0.005, 0.005, 0.0036, 0.0036, 0.0032, 0.003, 0.003], [0.0062, 0.0051, 0.0043, 0.0035, 0.0033, 0.0033, 0.0029, 0.0029], [0.0445, 0.0418, 0.0164, 0.0154, 0.012, 0.0099, 0.0093, 0.0093], [0.0616, 0.048, 0.0398, 0.0273, 0.0257, 0.0227, 0.0166, 0.0114], [0.0165, 0.0094, 0.0088, 0.0083, 0.0073, 0.0065, 0.0065, 0.0065], [0.0478, 0.035, 0.0241, 0.0241, 0.0226, 0.0187, 0.0176, 0.0165], [0.052, 0.0459, 0.0357, 0.0357, 0.0278, 0.0204, 0.0191, 0.018], [0.0593, 0.0434, 0.0408, 0.0383, 0.036, 0.036, 0.0232, 0.0132], [0.0616, 0.0257, 0.0213, 0.0146, 0.0129, 0.0129, 0.0129, 0.0129], [0.0492, 0.0434, 0.0232, 0.0232, 0.0141, 0.0141, 0.0091, 0.0085], [0.1058, 0.0727, 0.0414, 0.0366, 0.0251, 0.0222, 0.0126, 0.0126], [0.1696, 0.1497, 0.0551, 0.0295, 0.0277, 0.0244, 0.0123, 0.0108], [0.2654, 0.0862, 0.0862, 0.063, 0.0337, 0.0232, 0.0192, 0.0141], [0.4347, 0.1599, 0.0626, 0.0335, 0.0245, 0.0131, 0.0123, 0.0109], [0.3543, 0.3127, 0.0655, 0.0397, 0.0226, 0.0188, 0.0094, 0.0061], [0.6253, 0.1791, 0.0214, 0.0177, 0.0177, 0.0138, 0.0108, 0.0101], [0.5766, 0.1652, 0.0392, 0.0224, 0.0174, 0.0174, 0.012, 0.012], [0.4918, 0.2983, 0.0314, 0.0191, 0.0168, 0.0148, 0.0148, 0.0116], [0.637, 0.2655, 0.0192, 0.008, 0.0075, 0.0059, 0.0055, 0.0049], [0.5259, 0.319, 0.0192, 0.0192, 0.0124, 0.009, 0.008, 0.0062], [0.4298, 0.3793, 0.0242, 0.0157, 0.0138, 0.0095, 0.0069, 0.0069], [0.4136, 0.3221, 0.0248, 0.0206, 0.016, 0.016, 0.0142, 0.0071], [0.4028, 0.2769, 0.0201, 0.0138, 0.0138, 0.0129, 0.0101, 0.0079], [0.4709, 0.1349, 0.0266, 0.0161, 0.0086, 0.0086, 0.0081, 0.0076], [0.4002, 0.1472, 0.035, 0.0187, 0.0176, 0.0088, 0.0083, 0.0078], [0.2802, 0.1324, 0.0754, 0.0277, 0.0261, 0.0168, 0.0168, 0.0096], [0.3248, 0.1123, 0.0821, 0.0388, 0.0195, 0.0183, 0.0143, 0.0134], [0.4522, 0.1563, 0.0255, 0.0199, 0.0145, 0.0145, 0.0128, 0.0083], [0.7763, 0.1051, 0.0207, 0.0092, 0.0059, 0.0059, 0.0049, 0.0043], [0.8733, 0.092, 0.011, 0.0076, 0.0052, 0.0025, 0.0025, 0.0006], [0.976, 0.0108, 0.0045, 0.004, 0.0035, 0.0007, 0.0001, 0.0001], [0.9126, 0.0749, 0.0048, 0.0037, 0.0026, 0.0004, 0.0002, 0.0002], [0.9483, 0.0472, 0.0021, 0.0005, 0.0004, 0.0002, 0.0002, 0.0002], [0.9961, 0.0015, 0.0012, 0.0006, 0.0002, 0.0001, 0.0001, 0.0001], [0.6481, 0.3469, 0.0016, 0.0011, 0.001, 0.0006, 0.0002, 0.0001], [0.8904, 0.1063, 0.0015, 0.0004, 0.0003, 0.0003, 0.0002, 0.0001], [0.9283, 0.0672, 0.0023, 0.0011, 0.0007, 0.0001, 0.0001, 0.0], [0.9805, 0.018, 0.0009, 0.0005, 0.0, 0.0, 0.0, 0.0], [0.9771, 0.0203, 0.0013, 0.001, 0.0001, 0.0001, 0.0, 0.0], [0.9789, 0.0179, 0.0024, 0.0003, 0.0002, 0.0, 0.0, 0.0]], "ranks": {"Python": [18287, 211138, 41451, 44982, 11164, 39463, 18326, 38174, 37672, 70005, 25310, 81000, 74573, 48749, 26902, 27932, 41691, 58516, 61097, 80667, 36835, 70252, 25360, 22647, 18194, 9443, 6213, 4249, 2317, 2347, 1990, 2209, 2668, 1501, 1361, 554, 302, 403, 249, 113, 174, 152, 145, 162, 188, 202, 227, 213, 295, 618, 772, 177, 282, 315, 108, 148, 116, 150, 139, 215, 145, 60, 35]}}, {"pos": 409, "top": [["s", "a", ".", "o", "i", ",", "er", "\u2026."], ["s", "sWith", "  \n\n", "erweise", "\u201d.", "\u201d,", "  \r\n", "a"], ["s", ",", ".", "\u2026.", "\u2013", "\u2026", "a", " \u2013"], ["sWith", "sik", "s", "erweise", "szeit", "s\u00f6k", " **\u2022", "sver"], ["s", "ed", "sWith", "a", "sik", "s\u00f3", "\u0627\u062a", "sver"], ["s", "sWith", "a", "sver", "s\u00f3", "(Android", "sik", "ed"], ["s", "(Android", " Android", "sWith", "\u0627\u062a", "sak", "sik", ".Android"], ["s", "(Android", "sWith", " Android", "sak", "sik", "sburg", ".Android"], ["s", ".", "!\u201d.", "(Android", "\u201d.", "sWith", "sak", " Android"], ["s", ",", "(Android", " Android", ".Android", "\u76f8\u8f85\u76f8\u6210", "(android", "."], ["s", ",", " Android", ".", "(Android", "...", "&nbsp", ".Android"], ["s", " Android", "(Android", ".Android", "(android", "sak", "\u76f8\u8f85\u76f8\u6210", "sWith"], ["s", " Android", "(Android", ".Android", "(android", "sak", " android", "sWith"], ["s", " Android", "(Android", ".Android", "(android", " android", "sak", "\u76f8\u8f85\u76f8\u6210"], ["s", " Android", ".Android", " largely", "sak", " massively", "-style", "(android"], ["s", " Android", ".Android", "\u51ed\u501f\u7740", " massively", " arguably", " largely", "(Android"], ["s", " Android", " massively", ".Android", " arguably", " popular", " largely", "(Android"], ["s", ".Android", " Android", "(Android", "sWith", "sak", "ska", "\u51ed\u501f\u7740"], ["s", ".Android", " Android", "(Android", "sWith", " arguably", "sak", " hugely"], ["s", ".Android", "(Android", " Android", " hugely", " largely", " massively", " heavily"], ["s", "<|endoftext|>", " \r\n\r\n", " Android", " heavily", " hugely", "\r\n\r\n", " {{--<"], [" Android", ".Android", "(Android", " android", " ``", "(android", "_ANDROID", "sWith"], [" Android", " ``", ".Android", "(Android", " android", "s", " {{--<", "Android"], [" Android", " ``", ".Android", "s", " ,", " heavily", " {{--<", " largely"], [" 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", " India", " Africa", " heavily"], [" Android", " android", "Android", "(Android", ".Android", " Africa", " smartphone", " India"], [" Android", " android", "(Android", "Android", ".Android", " smartphone", " Africa", " smartphones"], [" Android", " android", "(Android", "Android", " .", ".Android", " smartphone", " Africa"], [" Android", " .", " android", " technology", " mobile", "s", " heavily", " Africa"], [" Android", " .", " ,", " heavily", " via", " mostly", " even", " only"], [" Android", " android", "(Android", " smartphone", " smartphones", " tech", " technology", " heavily"], [" Android", " android", "(Android", " smartphone", " smartphones", ".Android", "Android", " mobile"], [" Android", " android", "(Android", "Android", ".Android", " smartphone", " smartphones", " mobile"], [" Android", "(Android", "Android", " android", ".Android", " smartphone", " smartphones", "/android"], [" Android", " android", "(Android", "Android", ".Android", " smartphone", "/android", " smartphones"], [" Android", " android", "Android", "(Android", ".Android", " smartphone", "/android", " iOS"], [" Android", "(Android", "Android", " android", ".Android", " via", " iOS", "/android"], [" Android", "Android", "(Android", " android", ".Android", " hardware", "/android", " iOS"], [" Android", "(Android", "Android", " android", ".Android", " via", " hardware", " iOS"], [" Android", "(Android", "Android", " android", ".Android", " via", " hardware", " Java"], [" Android", "(Android", " via", " android", "Android", ".Android", " hardware", " iOS"], [" Android", " via", " hardware", " android", "(Android", " using", ".Android", "Android"], [" via", " Android", " without", " due", " hardware", " using", "(Android", " because"], [" via", " Android", " due", " without", " hardware", " because", "(Android", " using"], [" without", " via", " WITHOUT", " unless", "without", " using", " due", " Without"], [" without", " unless", " via", " WITHOUT", " using", " purely", " due", " solely"], [" without", " via", " purely", " anywhere", " mainstream", " solely", " unless", " directly"], ["\u7684\u4efb\u4f55", "\u4efb\u4f55\u5f62\u5f0f\u7684", " anywhere", "\u4ee5\u4efb\u4f55", "\u6709\u4efb\u4f55", " ANY", " via", "\u63d0\u4f9b\u4efb\u4f55"], ["\u7684\u4efb\u4f55", "\u4efb\u4f55\u5f62\u5f0f\u7684", " anywhere", "\u6709\u4efb\u4f55", " via", "\u4ee5\u4efb\u4f55", " ANY", " purely"], [" hardware", " purely", "-native", "\u7684\u4efb\u4f55", " without", " solely", " via", " native"], [" hardware", " via", "\u6709\u4efb\u4f55", " anywhere", "-native", "\u7684\u4efb\u4f55", " using", " without"], [" hardware", " Android", " CPU", " CPUs", " Hardware", " GPUs", "\u786c\u4ef6", " GPU"], [" hardware", " Android", " CPU", "\u786c\u4ef6", " Hardware", " GPU", " GPUs", "hardware"], [" Android", " hardware", " phones", "Android", "(Android", " smartphones", "/android", " android"], [" hardware", " Android", " Hardware", "\u786c\u4ef6", " devices", "hardware", " GPU", " GPUs"], [" hardware", " devices", "\u786c\u4ef6", " Hardware", " GPU", " Android", "hardware", " GPUs"], [" hardware", " devices", " Hardware", "\u786c\u4ef6", "hardware", " device", "Hardware", " CPU"], [" hardware", " devices", " Hardware", "\u786c\u4ef6", "hardware", " device", " CPU", " GPUs"], [" hardware", " devices", " Hardware", "\u786c\u4ef6", "hardware", " GPUs", " device", " via"], [" hardware", " devices", " via", "\u786c\u4ef6", " Hardware", " GPUs", "hardware", " phones"]], "p": [[0.9407, 0.0413, 0.0053, 0.0044, 0.0016, 0.0015, 0.0004, 0.0003], [0.9499, 0.0077, 0.0017, 0.0015, 0.0013, 0.0012, 0.001, 0.0009], [0.9469, 0.0144, 0.0068, 0.006, 0.005, 0.0034, 0.0023, 0.0017], [0.0647, 0.0473, 0.0346, 0.021, 0.0154, 0.0093, 0.0093, 0.0077], [0.9962, 0.0005, 0.0005, 0.0003, 0.0002, 0.0001, 0.0001, 0.0001], [0.9814, 0.0024, 0.0011, 0.0008, 0.0007, 0.0007, 0.0005, 0.0004], [0.9993, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9896, 0.0014, 0.0013, 0.0005, 0.0004, 0.0003, 0.0002, 0.0002], [0.9753, 0.0018, 0.0014, 0.001, 0.0009, 0.0007, 0.0007, 0.0006], [0.863, 0.0379, 0.0066, 0.0033, 0.0023, 0.0017, 0.0015, 0.0011], [0.9624, 0.0065, 0.0027, 0.0017, 0.0012, 0.0007, 0.0006, 0.0005], [0.1777, 0.0741, 0.0422, 0.0272, 0.0137, 0.0121, 0.0069, 0.0069], [0.1546, 0.0778, 0.0569, 0.0269, 0.0153, 0.0112, 0.0093, 0.0082], [0.0783, 0.0288, 0.0198, 0.0113, 0.0078, 0.0047, 0.0047, 0.0041], [0.1548, 0.0077, 0.0044, 0.0028, 0.0027, 0.0024, 0.0022, 0.0021], [0.1079, 0.0065, 0.0042, 0.0042, 0.0039, 0.0033, 0.0029, 0.0027], [0.7576, 0.002, 0.0012, 0.0012, 0.0012, 0.0011, 0.0011, 0.0008], [0.3553, 0.0095, 0.0084, 0.0065, 0.0048, 0.0022, 0.0019, 0.0019], [0.0825, 0.0112, 0.0093, 0.0082, 0.0036, 0.0023, 0.0022, 0.0021], [0.0419, 0.0068, 0.0064, 0.0053, 0.0041, 0.0029, 0.0027, 0.0025], [0.0799, 0.0074, 0.0037, 0.0037, 0.0035, 0.0033, 0.0033, 0.0031], [0.0631, 0.0433, 0.0317, 0.0059, 0.0052, 0.004, 0.0031, 0.0029], [0.0766, 0.0464, 0.0385, 0.0125, 0.0055, 0.0052, 0.0038, 0.0038], [0.0134, 0.0118, 0.0067, 0.0067, 0.0052, 0.0046, 0.0038, 0.0036], [0.0508, 0.0212, 0.0128, 0.0121, 0.01, 0.0073, 0.0061, 0.0054], [0.3366, 0.0623, 0.0549, 0.0378, 0.0115, 0.0115, 0.007, 0.0058], [0.4866, 0.0513, 0.0453, 0.0453, 0.013, 0.0079, 0.0061, 0.0054], [0.1928, 0.023, 0.014, 0.0116, 0.0102, 0.0066, 0.0062, 0.0051], [0.6656, 0.0513, 0.0331, 0.0292, 0.0177, 0.0042, 0.0037, 0.0033], [0.635, 0.0432, 0.0381, 0.0159, 0.0159, 0.008, 0.0071, 0.0071], [0.7057, 0.0451, 0.02, 0.0089, 0.0069, 0.0069, 0.0065, 0.0061], [0.262, 0.0906, 0.019, 0.0139, 0.0108, 0.0079, 0.0079, 0.007], [0.0573, 0.0506, 0.0186, 0.0175, 0.012, 0.0106, 0.0073, 0.0073], [0.4572, 0.0513, 0.0242, 0.0147, 0.0114, 0.0089, 0.0084, 0.0084], [0.5998, 0.0632, 0.0338, 0.0299, 0.0141, 0.0124, 0.0117, 0.0086], [0.7557, 0.0454, 0.0426, 0.0214, 0.0122, 0.0108, 0.0065, 0.0035], [0.72, 0.0629, 0.0432, 0.0358, 0.0297, 0.008, 0.0066, 0.004], [0.8687, 0.0382, 0.0297, 0.0297, 0.0124, 0.0038, 0.0023, 0.002], [0.9034, 0.0273, 0.0241, 0.0212, 0.0089, 0.0017, 0.0017, 0.0011], [0.8551, 0.0376, 0.0376, 0.0293, 0.0157, 0.0024, 0.0018, 0.0018], [0.8442, 0.0476, 0.042, 0.0289, 0.0175, 0.0015, 0.0014, 0.0013], [0.8987, 0.0308, 0.0239, 0.0165, 0.0128, 0.0017, 0.0016, 0.0012], [0.8469, 0.0614, 0.0256, 0.0199, 0.0155, 0.005, 0.0027, 0.0015], [0.8146, 0.0432, 0.0262, 0.0204, 0.0192, 0.0149, 0.0062, 0.0026], [0.4586, 0.2782, 0.0228, 0.0214, 0.0178, 0.0157, 0.0095, 0.0079], [0.3318, 0.1567, 0.0577, 0.0449, 0.0422, 0.024, 0.0121, 0.0083], [0.4589, 0.0515, 0.0484, 0.0243, 0.0243, 0.0215, 0.0167, 0.0157], [0.769, 0.0715, 0.0383, 0.0193, 0.011, 0.0085, 0.0085, 0.0067], [0.4352, 0.1034, 0.0805, 0.0589, 0.0488, 0.0357, 0.0278, 0.018], [0.1424, 0.118, 0.0762, 0.0524, 0.036, 0.0298, 0.028, 0.028], [0.2523, 0.1734, 0.0928, 0.0497, 0.0283, 0.025, 0.0207, 0.0152], [0.2089, 0.1436, 0.0599, 0.0562, 0.0562, 0.0411, 0.0363, 0.0266], [0.128, 0.1203, 0.0729, 0.0416, 0.039, 0.0367, 0.0367, 0.0324], [0.1994, 0.0942, 0.0781, 0.0734, 0.0571, 0.0537, 0.027, 0.0224], [0.8747, 0.0151, 0.0103, 0.0055, 0.0052, 0.0049, 0.0046, 0.0043], [0.9194, 0.0168, 0.007, 0.0062, 0.0048, 0.0033, 0.0026, 0.0023], [0.5297, 0.3641, 0.0141, 0.0097, 0.0086, 0.0086, 0.0076, 0.0067], [0.9703, 0.0108, 0.0045, 0.004, 0.0021, 0.0021, 0.0015, 0.0006], [0.9844, 0.0031, 0.0028, 0.0028, 0.0015, 0.0012, 0.0012, 0.0005], [0.9945, 0.0022, 0.0015, 0.0008, 0.0004, 0.0003, 0.0002, 0.0], [0.9856, 0.0109, 0.001, 0.0005, 0.0004, 0.0003, 0.0002, 0.0002], [0.99, 0.0067, 0.001, 0.0005, 0.0003, 0.0002, 0.0002, 0.0001], [0.9848, 0.0109, 0.0007, 0.0005, 0.0005, 0.0004, 0.0003, 0.0002]], "ranks": {"Python": [8525, 52513, 60596, 60403, 6154, 13690, 2708, 12279, 5774, 17215, 3265, 16742, 12101, 14935, 7281, 20739, 21133, 26585, 21719, 32273, 8653, 28697, 6805, 5522, 7553, 5606, 3374, 1226, 578, 676, 431, 833, 1293, 616, 678, 376, 343, 464, 342, 177, 146, 158, 178, 290, 407, 898, 1309, 1485, 2223, 6948, 8548, 1379, 4127, 7060, 1461, 953, 256, 272, 199, 362, 338, 122, 81]}}, {"pos": 410, "top": [[".", ",", "\u00a0", ";", " \u2013", " ", "\u2013", "s"], [" \u2013", "schild", " \u200b", "\u2013and", " \u2013,", "s", " \u200b\u200b", "\u2013"], ["\u2013", ",", ".", ".\u2013", " \u2013", "\u2013and", ";", ".["], ["enticate", " milfs", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " **\u300c", "satz", "schrift", "\u00bb.**", " Henrique"], [".", ",", "\u00a0", "\u76f8\u8f85\u76f8\u6210", " \u200b\u200b", "s", " \n\n\n\n", " "], [" \u200b\u200b", ".", "\u00a0", " \n\n\n\n", ",", "\u00a0\u00a0", ".\u2013", " \n\n\n\n\n"], ["\u00a0", "<|fim_suffix|>", " \r\n\r\n", "<|im_end|>", "&#", " <![", ".\u2022", "\r"], ["<|fim_suffix|>", "\u00a0", " \r\n\r\n", " **\u300c", "enticate", "/software", " **\u2013", "-intensive"], ["\u00a0", " \n\n", " \r\n\r\n", "<|fim_suffix|>", ".", "&nbsp", " \n\n\n", "\u00a0\u00a0"], ["\u00a0", ",", "\u00a0\u00a0", ".\u2013", ".[", ".${", "/software", "<|fim_suffix|>"], ["\u00a0", ".[", ",", "&nbsp", "\u00a0\u00a0", ".", "&#", " "], [" **\u300c", " **\u00ab", "/software", "ardware", "<|fim_suffix|>", " electronics", "ancock", " **"], [" **\u00ab", " **\u300c", "/software", "ardware", "\u76f8\u8f85\u76f8\u6210", ".\u00ab", "\u534e\u5fb7", " hardware"], ["/software", " electronics", " Hardware", "\u76f8\u8f85\u76f8\u6210", " Weapon", " hardware", "\u00a0", "-intensive"], [" requisite", "\u00a0", " arguably", " uniquely", " ostensibly", " \ufffd", " genuinely", " sophisticated"], [" arguably", " ostensibly", " requisite", " swiftly", " bolster", "\u8303\u56f4\u4e4b\u5185", " genuinely", " commonplace"], ["\u00a0", " arguably", " ostensibly", " requisite", " uniquely", " swiftly", " genuinely", " ultimately"], [" arguably", "\u00a0", " sprawling", " uniquely", " ostensibly", " swiftly", "/software", " comfortably"], [" arguably", " swiftly", " ostensibly", " uniquely", " genuinely", " albeit", "\u2014even", " ultimately"], [" arguably", " swiftly", " genuinely", " ostensibly", " uniquely", " ultimately", " albeit", " largely"], ["<|endoftext|>", "\u00a0", " swiftly", " arguably", " ultimately", " genuinely", " \n\n", " largely"], [" arguably", " ultimately", " uniquely", " albeit", " ``", " incredibly", "/software", " swiftly"], [" arguably", " ultimately", " ``", " swiftly", " uniquely", " vastly", " --", " largely"], [" ultimately", " ,", " arguably", " much", " subsequently", " largely", " swiftly", " --"], [" arguably", " whilst", " \r\n\r\n", " ultimately", " swiftly", " --", " vastly", " genuinely"], [" **", " hardware", " arguably", " .**", " vastly", " ultimately", "/software", " --"], [" hardware", " **", " arguably", " whilst", " weaponry", "/software", " vastly", " wielding"], [" **", " arguably", " hardware", " --", " **[", " vastly", " whilst", " heavily"], [" **", " hardware", " **[", " .**", " overclock", " arguably", " **\u2013", " heavily"], [" hardware", " **", " .**", " heavily", " arguably", " massively", " overclock", " vastly"], [" hardware", " heavily", " **", " .", " .**", " potentially", " arguably", " massively"], [" heavily", " .", " hardware", " significantly", " ,", " massively", " arguably", " largely"], [" heavily", " arguably", " .", " typically", " ,", " massively", " \u2013", " largely"], [" heavily", " \u2013", " arguably", " typically", " \u2014", " massively", " specifically", " essentially"], [" heavily", " arguably", " essentially", " notoriously", " massively", " extremely", " typically", " incredibly"], [" \u2014", " heavily", " \u2013", " essentially", " purely", " extremely", " notoriously", "\u2014even"], [" heavily", " purely", " notoriously", " without", "\u2014even", " inherently", " essentially", " extremely"], [" without", " hardware", " purely", " heavily", " inherently", " extremely", " fundamentally", " due"], [" without", " purely", " due", " via", " hardware", " heavily", " despite", " inherently"], [" without", " purely", " via", " inherently", " heavily", " hardware", " notoriously", " due"], [" without", " hardware", " heavily", " purely", " due", " via", " even", " inherently"], [" without", " hardware", " purely", " inherently", " heavily", " via", " even", " due"], [" without", " hardware", " inherently", " purely", " due", " via", " extremely", " heavily"], [" without", " inherently", " purely", " hardware", " due", " via", " notoriously", " using"], [" without", " inherently", " purely", " hardware", " via", " due", " using", " heavily"], [" without", " inherently", " purely", " due", " hardware", " solely", " directly", " unless"], [" inherently", " purely", " due", " solely", " directly", " without", " unless", " ANY"], [" without", " unless", " due", " purely", " directly", " inherently", " solely", " routinely"], [" unless", " purely", " due", " directly", " without", " solely", " **", " because"], [" purely", " unless", " anywhere", " solely", " directly", " without", "\u4efb\u4f55\u5f62\u5f0f\u7684", " due"], ["\u4efb\u4f55\u5f62\u5f0f\u7684", " anywhere", "\u7684\u4efb\u4f55", " unless", " ANY", " directly", "\u6709\u4efb\u4f55", "\u4ee5\u4efb\u4f55"], ["\u4efb\u4f55\u5f62\u5f0f\u7684", " anywhere", " purely", "\u7684\u4efb\u4f55", " without", "\u6709\u4efb\u4f55", " ANY", " unless"], [" purely", " solely", " without", "\u4efb\u4f55\u5f62\u5f0f\u7684", " anywhere", " unless", " directly", " using"], ["\u4efb\u4f55\u5f62\u5f0f\u7684", " using", " via", "\u6709\u4efb\u4f55", " anywhere", " without", " purely", " alone"], ["\u4efb\u4f55\u5f62\u5f0f\u7684", " when", " using", " via", "\u6709\u4efb\u4f55", " anywhere", " without", "\u7684\u4efb\u4f55"], [" when", " using", " via", "\u4efb\u4f55\u5f62\u5f0f\u7684", " anywhere", "\u6709\u4efb\u4f55", " while", "\u7684\u4efb\u4f55"], [" when", " using", " via", " doing", " relying", " while", "\u4efb\u4f55\u5f62\u5f0f\u7684", " anywhere"], [" when", " running", " via", " using", " while", " doing", " relying", " if"], [" running", " when", " via", " using", " if", " while", " without", " doing"], [" when", " running", " using", " while", " via", " purely", " if", " through"], [" running", " when", " via", " while", " purely", " using", " through", " if"], [" running", " while", " when", " via", " using", " if", " through", " without"], [" when", " while", " if", " via", " through", " running", " using", " without"]], "p": [[0.7994, 0.1479, 0.0065, 0.0065, 0.0057, 0.0033, 0.0022, 0.0019], [0.0446, 0.0288, 0.0175, 0.0164, 0.0093, 0.0093, 0.0088, 0.0088], [0.4421, 0.3443, 0.1118, 0.0283, 0.0283, 0.022, 0.0076, 0.0034], [0.0122, 0.0054, 0.0054, 0.0026, 0.0014, 0.0012, 0.0011, 0.0011], [0.0342, 0.0266, 0.0195, 0.0118, 0.0118, 0.0118, 0.0111, 0.0086], [0.0258, 0.0089, 0.0089, 0.0058, 0.0054, 0.0048, 0.0045, 0.0029], [0.0332, 0.0138, 0.0108, 0.0084, 0.0074, 0.007, 0.0051, 0.0045], [0.0285, 0.0252, 0.0143, 0.0099, 0.0087, 0.006, 0.0041, 0.0036], [0.6385, 0.0632, 0.0205, 0.0063, 0.0055, 0.0049, 0.0046, 0.0036], [0.6231, 0.0045, 0.0039, 0.0029, 0.0029, 0.0027, 0.0022, 0.0018], [0.9637, 0.0037, 0.0011, 0.0009, 0.0009, 0.0009, 0.0009, 0.0005], [0.0279, 0.0279, 0.0109, 0.0075, 0.0055, 0.0038, 0.0035, 0.0033], [0.0254, 0.0136, 0.01, 0.005, 0.0039, 0.0037, 0.0025, 0.0025], [0.0054, 0.0024, 0.0024, 0.0022, 0.002, 0.0019, 0.0015, 0.0014], [0.0039, 0.0039, 0.0032, 0.0025, 0.0025, 0.0022, 0.0021, 0.0021], [0.0082, 0.0073, 0.0064, 0.0032, 0.0027, 0.0025, 0.0022, 0.002], [0.1088, 0.0147, 0.0079, 0.0065, 0.0054, 0.0054, 0.0051, 0.0045], [0.0106, 0.0047, 0.0039, 0.0032, 0.0032, 0.003, 0.0027, 0.0025], [0.0276, 0.007, 0.007, 0.0066, 0.0062, 0.0048, 0.0045, 0.0042], [0.0241, 0.0155, 0.0094, 0.0083, 0.0083, 0.0078, 0.0078, 0.0065], [0.8746, 0.002, 0.0017, 0.0013, 0.0012, 0.0012, 0.0011, 0.0009], [0.0167, 0.0058, 0.0045, 0.004, 0.0037, 0.0029, 0.0029, 0.0029], [0.029, 0.0241, 0.0187, 0.0129, 0.0129, 0.0089, 0.0069, 0.0069], [0.0316, 0.0217, 0.0149, 0.0132, 0.0116, 0.0109, 0.0103, 0.0096], [0.0295, 0.0179, 0.0148, 0.0139, 0.0139, 0.0131, 0.0123, 0.007], [0.0808, 0.0297, 0.0192, 0.0159, 0.0103, 0.0085, 0.0075, 0.0066], [0.0391, 0.0286, 0.0144, 0.0135, 0.0099, 0.0082, 0.0082, 0.0064], [0.0687, 0.0209, 0.0185, 0.0174, 0.0135, 0.0112, 0.0112, 0.0099], [0.1627, 0.0637, 0.0363, 0.032, 0.0104, 0.0104, 0.0092, 0.0081], [0.1052, 0.0412, 0.0195, 0.0195, 0.0172, 0.0086, 0.0086, 0.0076], [0.079, 0.0479, 0.045, 0.0397, 0.0156, 0.0137, 0.0129, 0.0114], [0.0493, 0.0409, 0.0206, 0.017, 0.017, 0.0141, 0.0125, 0.0117], [0.0486, 0.0244, 0.019, 0.0179, 0.0168, 0.0158, 0.0158, 0.0158], [0.0654, 0.0397, 0.0372, 0.0273, 0.0212, 0.0176, 0.0176, 0.0165], [0.0678, 0.025, 0.0207, 0.0207, 0.0207, 0.0194, 0.0194, 0.0172], [0.0806, 0.0627, 0.0357, 0.0315, 0.0278, 0.0246, 0.0217, 0.0204], [0.053, 0.0412, 0.0342, 0.0342, 0.0321, 0.0207, 0.0195, 0.0195], [0.0624, 0.0403, 0.0379, 0.0379, 0.0277, 0.026, 0.0244, 0.019], [0.1364, 0.0416, 0.0367, 0.0345, 0.0286, 0.0269, 0.0269, 0.0252], [0.1395, 0.0546, 0.0311, 0.0258, 0.0214, 0.0201, 0.0201, 0.0189], [0.1484, 0.0546, 0.0311, 0.0292, 0.0275, 0.0275, 0.0177, 0.0156], [0.0983, 0.0526, 0.041, 0.034, 0.0282, 0.0249, 0.0234, 0.0219], [0.1133, 0.0472, 0.0444, 0.0392, 0.0269, 0.0269, 0.0223, 0.0185], [0.0775, 0.0567, 0.05, 0.0344, 0.0344, 0.0268, 0.0222, 0.0209], [0.0997, 0.0644, 0.0416, 0.0345, 0.0324, 0.0268, 0.0196, 0.0153], [0.1008, 0.0738, 0.0612, 0.0447, 0.0371, 0.0199, 0.0199, 0.0165], [0.1193, 0.0989, 0.0639, 0.0467, 0.0439, 0.0321, 0.0302, 0.0266], [0.2654, 0.2067, 0.0861, 0.076, 0.0671, 0.0461, 0.0263, 0.0117], [0.2425, 0.214, 0.1145, 0.0892, 0.0613, 0.0613, 0.0272, 0.0226], [0.1669, 0.0893, 0.0893, 0.0654, 0.0654, 0.0449, 0.0422, 0.0309], [0.2525, 0.1351, 0.1053, 0.0412, 0.0412, 0.0387, 0.0302, 0.0235], [0.2033, 0.096, 0.096, 0.0847, 0.0748, 0.0454, 0.04, 0.0332], [0.3667, 0.1051, 0.0927, 0.0637, 0.0301, 0.0234, 0.0207, 0.0194], [0.1848, 0.1631, 0.0989, 0.0529, 0.0497, 0.0321, 0.0302, 0.0302], [0.1442, 0.1273, 0.1123, 0.0875, 0.0565, 0.0531, 0.0302, 0.0284], [0.4138, 0.0815, 0.0719, 0.0635, 0.0464, 0.034, 0.0265, 0.0171], [0.2232, 0.1738, 0.1354, 0.0468, 0.0468, 0.0322, 0.0284, 0.0235], [0.4281, 0.1227, 0.0843, 0.0843, 0.0511, 0.0351, 0.0213, 0.0147], [0.3682, 0.253, 0.1535, 0.044, 0.0342, 0.0302, 0.0152, 0.0134], [0.3837, 0.097, 0.0856, 0.0755, 0.0588, 0.0519, 0.0404, 0.0357], [0.4439, 0.1122, 0.0874, 0.0874, 0.0601, 0.053, 0.0284, 0.0284], [0.2508, 0.1723, 0.1723, 0.1184, 0.0634, 0.0494, 0.0436, 0.0193], [0.2891, 0.1365, 0.1063, 0.1063, 0.0731, 0.0731, 0.0645, 0.0269]], "ranks": {"Python": [11304, 152122, 80649, 143452, 22861, 124234, 43090, 83906, 66000, 74325, 49758, 99640, 108390, 93844, 64530, 158875, 109892, 107848, 118024, 142662, 75436, 133743, 86691, 62621, 86142, 39652, 30894, 17689, 9908, 9080, 5240, 6312, 7328, 7645, 8832, 3719, 6821, 4440, 2955, 1080, 723, 1153, 985, 1972, 1812, 2879, 6171, 7351, 11688, 22688, 33122, 1752, 5612, 5470, 9389, 3570, 517, 691, 722, 576, 676, 353, 475]}}, {"pos": 411, "top": [[",", ".", "\u2013", ";", " \u2013", "\u00a0", "\u2026.", "\u00a0\u00a0"], ["\u2013", ",", ".", " \u2013", "\u2013and", ";", ".\u2013", " \u200b\u200b"], [",", ".", "\u2013", ".\u2013", "\u2026.", " \u2013", ";", "\u2026.."], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " milfs", "-------------</", " Blowjob", "aruhi", "----------</", "endiz", " Shemale"], ["zer", " \u0628\u0648\u062a\u064a\u0646", "start", "\u0902\u092c\u0930", " Zer", "pop", "iously", "CSI"], [" \u0628\u0648\u062a\u064a\u0646", "iously", "\u8d75\u4e3d\u9896", ":href", "-With", "odka", " \u041f\u0443\u0442\u0438\u043d", "_PCIE"], ["advert", "variably", "ning", "\u0103t", "-pocket", "iously", "start", "rated"], ["ighbour", "variably", "ners", "quirer", "acist", "avour", "iously", "advert"], ["ighbour", "!.", "variably", "arder", "avour", "athon", ";.", "\u2013and"], ["\u2013and", ",", "ighbour", "\uaecf", " \u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435", "\u6280\u672f\u4e13\u4e1a", " izman", "\u2013"], ["\u2013", "ning", "\u00a0", "\u2013and", "-ish", "-out", "ably", ","], ["\u611f\u5341\u8db3", " \u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435", "-ish", "ning", "\uaecf", "avour", "f\u00e4llig", "antly"], ["\u611f\u5341\u8db3", "-ish", " \u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "apkan", "f\u00e4llig", "\u3059\u3054\u304f", "\u5473\u513f"], ["\u611f\u5341\u8db3", "-ish", "\u5473\u513f", " \u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435", "\u54ea\u6015\u662f", "f\u00e4llig", "\u624e\u5806", "\u00e4v\u00e4"], ["\u611f\u5341\u8db3", "\u706b\u901f", "\u54ea\u6015\u662f", "-ish", " arguably", " sorta", "\u5473\u513f", "\u9887\u5177"], ["\u611f\u5341\u8db3", "\u54ea\u6015\u662f", "\u5473\u513f", "-ish", " arguably", "\u624e\u5806", " ballpark", "\u9760\u8c31\u7684"], [" incredibly", "-ish", " arguably", "\u611f\u5341\u8db3", "\u5473\u513f", "-esque", "\u2013", " hugely"], ["\u5473\u513f", "-ish", "\u611f\u5341\u8db3", "-esque", "\u8303\u513f", "\u54ea\u6015\u662f", "\u2014even", "\u54ea\u6015"], ["\u2014even", "\u611f\u5341\u8db3", "\u5473\u513f", "\u54ea\u6015\u662f", "-esque", " arguably", "\u2014or", "\u8303\u513f"], ["\u2014even", " arguably", " hugely", "\u2014or", " vastly", "\u54ea\u6015\u662f", " wildly", " utterly"], ["<|endoftext|>", "\u2014even", "\u2014or", " genuinely", " much", " vastly", " arguably", "much"], ["\u611f\u5341\u8db3", "\u76f8\u5173\u884c\u4e1a", "\u54ea\u6015\u662f", "itably", "\u5473\u513f", "\u8e0f\u8e0f\u5b9e\u5b9e", "\u5171\u540c\u6253\u9020", "\u751a\u81f3\u4f1a"], [" {{--<", " --", "\u611f\u5341\u8db3", " ''", " arguably", " hugely", " merely", " outright"], [" --", " {{--<", " ''", " much", " arguably", " merely", " barely", " hugely"], [" \r\n\r\n", " --", " {{--<", "\r\n\r\n", " \r\n", " \n\n", "Though", "  \r\n\r\n"], [" {{--<", "\u611f\u5341\u8db3", " --", "\u54ea\u6015\u662f", " *__", " hugely", " \u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435", " **'"], [" {{--<", " --", "\u611f\u5341\u8db3", " hugely", " arguably", " ''", " \u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435", "\u54ea\u6015\u662f"], [" --", " {{--<", " **", " arguably", " \r\n\r\n", " hugely", " ''", " vastly"], [" arguably", " --", " {{--<", " hugely", " **", "\u611f\u5341\u8db3", " heavily", " barely"], [" **", " --", " arguably", " heavily", "\u2014even", " even", " hugely", " vastly"], [" even", " .", " --", " **", " ,", " much", " heavily", " fully"], [" even", " .", " only", " **", " fully", " just", " ,", " much"], [" even", " fully", " only", " purely", " just", " essentially", " full", " ,"], [" purely", "\u2014even", " **", " fully", " technically", " essentially", " even", " entirely"], [" **", " purely", "\u2014even", " **\u201c", "\u2014or", " technically", " fully", " \u2014"], [" purely", " \u2014", "\u2014even", " \u2013", "\u2026*", "\u2026**", " \u2026", "\u2014or"], [" purely", "\u2014even", " \u2014", " traditional", "\u2014or", " \u201c", " \u2013", " entirely"], [" purely", "\u2014even", " traditional", " \u201c", " \u2014", " \u2013", "\u2014or", "\u2011"], [" purely", " traditional", "\u2014even", "\u7eaf\u7cb9", "\u7eaf\u7cb9\u7684", "\u2014or", " entirely", " \u2014"], [" purely", " traditional", "\u7eaf\u7cb9", "\u2011", "\u2014even", "\u7eaf\u7cb9\u7684", " pure", "\u76f4\u63a5"], [" purely", " traditional", " Python", "\u7eaf\u7cb9", " pure", "\u7eaf\u7cb9\u7684", "\u2014even", "\u2011"], [" purely", "\u2014even", "\u7eaf\u7cb9", " Python", " traditional", " pure", " software", "\u2014or"], [" purely", " pure", "\u7eaf\u7cb9", "\u7eaf\u7cb9\u7684", " traditional", " software", " mainstream", " Python"], [" purely", " pure", "\u7eaf\u7cb9", "\u7eaf\u7cb9\u7684", " workflows", " mainstream", " standalone", " direct"], [" purely", " direct", " mainstream", " directly", " workflows", " pure", " entirely", " traditional"], [" purely", " direct", " directly", " mainstream", " entirely", " pure", "\u76f4\u63a5\u4f7f\u7528", "\u7eaf\u7cb9\u7684"], [" purely", " ANY", " direct", " directly", " mainstream", "\u7eaf\u7cb9\u7684", " workflows", " pure"], [" direct", " directly", " ANY", " purely", " mainstream", "\u76f4\u63a5\u4f7f\u7528", "\u7eaf\u7cb9\u7684", " entirety"], ["\u4efb\u4f55\u5f62\u5f0f\u7684", " purely", "\u7eaf\u7cb9\u7684", " ANY", "\u7eaf\u7cb9", "\u76f4\u63a5\u4f7f\u7528", " mainstream", " direct"], ["\u4efb\u4f55\u5f62\u5f0f\u7684", " ANY", " mainstream", "\u7eaf\u7cb9\u7684", " entirety", "\u7684\u4efb\u4f55", "anything", " purely"], ["\u4efb\u4f55\u5f62\u5f0f\u7684", "\u7684\u4efb\u4f55", " ANY", "anything", "\u6709\u4efb\u4f55", "\u4efb\u4f55", "\u4ee5\u4efb\u4f55", "\u4efb\u4f55\u4e00\u4e2a"], ["\u4efb\u4f55\u5f62\u5f0f\u7684", " ANY", "anything", "\u6709\u4efb\u4f55", "\u7684\u4efb\u4f55", " anything", "\u4efb\u4f55", "Anything"], ["\u5e38\u89c4", "-native", " entirety", "\u4efb\u4f55\u5f62\u5f0f\u7684", "\u7eaf\u7cb9\u7684", " ANY", " mainstream", "\u6709\u4efb\u4f55"], ["\u6709\u4efb\u4f55", "\u4efb\u4f55\u5f62\u5f0f\u7684", "-native", " anything", " CPU", "-thread", "\u7684\u4efb\u4f55", "anything"], [" anything", " ANY", "\u4efb\u4f55\u5f62\u5f0f\u7684", "anything", "\u6709\u4efb\u4f55", " Anything", "Anything", " mainstream"], [" anything", " ANY", " Anything", "Anything", " pure", " any", "anything", "\u4efb\u4f55"], [" anything", " Anything", " ANY", "Anything", " any", "anything", "\u4efb\u4f55\u5f62\u5f0f\u7684", "\u4efb\u4f55"], [" any", " ANY", "_any", " GUI", " anything", " Anything", "\u6709\u4efb\u4f55", "\u4efb\u4f55"], ["-process", " any", " ANY", "_any", " anything", "\u4efb\u4f55", "-any", " Python"], [" pure", "-process", " any", " Pure", "Pure", "pure", "\u7eaf", " ANY"], [" pure", " Pure", " any", "-process", "Pure", "pure", "\u7eaf", " anything"], [" pure", " any", "-process", " anything", " Pure", " ANY", " UI", " GUI"], [" any", " pure", " a", "-process", " the", " anything", " main", " its"]], "p": [[0.5193, 0.4583, 0.0122, 0.0027, 0.002, 0.0019, 0.0011, 0.0007], [0.2697, 0.0773, 0.0414, 0.0284, 0.0118, 0.0046, 0.0044, 0.0034], [0.4582, 0.2779, 0.2452, 0.0037, 0.0031, 0.0024, 0.0021, 0.0019], [0.0108, 0.0066, 0.004, 0.0037, 0.0031, 0.0021, 0.0018, 0.0018], [0.0035, 0.0021, 0.0016, 0.0014, 0.0013, 0.0012, 0.0012, 0.0012], [0.0027, 0.0017, 0.0016, 0.0015, 0.0015, 0.001, 0.001, 0.0009], [0.0099, 0.0044, 0.0036, 0.003, 0.0028, 0.0027, 0.0027, 0.0023], [0.0059, 0.0056, 0.0038, 0.0032, 0.0025, 0.0023, 0.0018, 0.0018], [0.0095, 0.0062, 0.0048, 0.0026, 0.0021, 0.0018, 0.0016, 0.0014], [0.002, 0.0018, 0.0018, 0.0016, 0.0015, 0.0011, 0.0011, 0.0011], [0.0141, 0.0097, 0.0067, 0.0049, 0.0046, 0.0038, 0.0036, 0.0036], [0.0124, 0.0052, 0.0026, 0.0021, 0.002, 0.0017, 0.0014, 0.0014], [0.0101, 0.0035, 0.0027, 0.0016, 0.0013, 0.0013, 0.0013, 0.0012], [0.0049, 0.0023, 0.002, 0.0018, 0.0011, 0.001, 0.001, 0.001], [0.0067, 0.0025, 0.0022, 0.0018, 0.0017, 0.0013, 0.0012, 0.0012], [0.0077, 0.0036, 0.0028, 0.0023, 0.0021, 0.0018, 0.0015, 0.0014], [0.0143, 0.0105, 0.0092, 0.0082, 0.0077, 0.0064, 0.006, 0.0044], [0.0248, 0.0103, 0.0097, 0.0052, 0.0046, 0.0043, 0.0038, 0.0028], [0.0131, 0.0115, 0.0054, 0.0054, 0.0048, 0.0045, 0.0042, 0.0035], [0.0159, 0.0085, 0.007, 0.0066, 0.0045, 0.0035, 0.0033, 0.0033], [0.1192, 0.0104, 0.0056, 0.0049, 0.0046, 0.0043, 0.0043, 0.0038], [0.0062, 0.0026, 0.0023, 0.0019, 0.0019, 0.0016, 0.0014, 0.0014], [0.0086, 0.0055, 0.0052, 0.0034, 0.0026, 0.0022, 0.0022, 0.0022], [0.0203, 0.0109, 0.0051, 0.004, 0.0031, 0.0031, 0.0028, 0.0023], [0.0343, 0.0184, 0.0162, 0.0072, 0.0068, 0.0038, 0.0019, 0.0018], [0.0127, 0.0064, 0.006, 0.0022, 0.0016, 0.0016, 0.0014, 0.0013], [0.0146, 0.0129, 0.0039, 0.0024, 0.0021, 0.002, 0.0017, 0.0016], [0.104, 0.017, 0.0097, 0.0097, 0.0091, 0.008, 0.0052, 0.0049], [0.0081, 0.0076, 0.0067, 0.0063, 0.0059, 0.0049, 0.0049, 0.0043], [0.0649, 0.0128, 0.0106, 0.0093, 0.0088, 0.0077, 0.006, 0.0053], [0.0922, 0.0595, 0.0233, 0.0206, 0.0193, 0.0181, 0.0141, 0.0125], [0.2026, 0.0425, 0.0227, 0.0188, 0.0166, 0.0156, 0.0156, 0.0147], [0.1558, 0.0394, 0.0288, 0.0254, 0.0224, 0.0128, 0.0128, 0.0113], [0.1593, 0.0551, 0.0378, 0.0378, 0.0355, 0.0229, 0.0179, 0.0179], [0.1504, 0.0805, 0.0711, 0.0246, 0.0204, 0.0204, 0.0149, 0.0131], [0.1322, 0.0967, 0.0708, 0.0551, 0.0379, 0.0356, 0.026, 0.0245], [0.1085, 0.0958, 0.0701, 0.0292, 0.0227, 0.0156, 0.0138, 0.013], [0.1135, 0.0884, 0.0571, 0.0445, 0.0369, 0.0369, 0.027, 0.021], [0.1575, 0.1152, 0.048, 0.0257, 0.0188, 0.0188, 0.0166, 0.0166], [0.1256, 0.0715, 0.0408, 0.0383, 0.0317, 0.0232, 0.0218, 0.0193], [0.0703, 0.0515, 0.0312, 0.0275, 0.0214, 0.0157, 0.0122, 0.0115], [0.0872, 0.0412, 0.0266, 0.0266, 0.0207, 0.0207, 0.0183, 0.0152], [0.1612, 0.0434, 0.036, 0.0298, 0.0218, 0.0193, 0.017, 0.016], [0.1025, 0.0455, 0.0401, 0.0377, 0.0354, 0.0259, 0.0178, 0.0167], [0.1085, 0.0618, 0.0481, 0.0399, 0.0331, 0.0311, 0.0227, 0.0166], [0.1381, 0.0739, 0.0508, 0.0372, 0.0272, 0.0199, 0.0187, 0.0146], [0.1318, 0.1027, 0.0851, 0.0456, 0.0244, 0.0229, 0.019, 0.019], [0.1579, 0.123, 0.0958, 0.0845, 0.0452, 0.0331, 0.0214, 0.0166], [0.0867, 0.0526, 0.0526, 0.041, 0.0282, 0.0219, 0.0206, 0.0171], [0.137, 0.0473, 0.0346, 0.0306, 0.027, 0.0253, 0.0144, 0.0112], [0.4472, 0.0998, 0.0998, 0.0304, 0.0252, 0.0163, 0.0153, 0.0127], [0.1251, 0.0974, 0.086, 0.0669, 0.0629, 0.0406, 0.0217, 0.0204], [0.0463, 0.0384, 0.0318, 0.0318, 0.0281, 0.0248, 0.0248, 0.0219], [0.092, 0.0763, 0.036, 0.0318, 0.0264, 0.0264, 0.0248, 0.0233], [0.1792, 0.0659, 0.0582, 0.0582, 0.0582, 0.0453, 0.0453, 0.0258], [0.186, 0.0879, 0.0775, 0.0775, 0.0604, 0.0415, 0.0366, 0.0323], [0.251, 0.1523, 0.0923, 0.0719, 0.0635, 0.0385, 0.034, 0.034], [0.1149, 0.1149, 0.0615, 0.0543, 0.0479, 0.035, 0.0309, 0.0291], [0.6288, 0.1093, 0.0585, 0.0402, 0.0115, 0.0102, 0.009, 0.0079], [0.7322, 0.1123, 0.0468, 0.0221, 0.0172, 0.0152, 0.0063, 0.0041], [0.9131, 0.0215, 0.0215, 0.0148, 0.009, 0.0048, 0.0026, 0.001], [0.4081, 0.4081, 0.0709, 0.0158, 0.0085, 0.0058, 0.0048, 0.004], [0.5529, 0.1795, 0.0961, 0.0748, 0.0167, 0.0079, 0.0048, 0.0045]], "ranks": {"Python": [93202, 243952, 150554, 231273, 214936, 207969, 124772, 170332, 107430, 140437, 83689, 144968, 121875, 135248, 111298, 155015, 117541, 65111, 143460, 173848, 87508, 155782, 82631, 37194, 17217, 16991, 9520, 1772, 1028, 584, 633, 1388, 2542, 1048, 1504, 717, 221, 214, 98, 27, 3, 3, 8, 38, 78, 124, 223, 379, 889, 1845, 3532, 142, 432, 247, 96, 48, 10, 11, 8, 23, 15, 10, 9]}}, {"pos": 412, "top": [[".", ",", "\u2013", ";", " \u2013", "\u2026.", ",.", "\u00a0\u00a0"], [".", "\u2013", " \u200b\u200b", ",", " \u2013", ";", "\u2026..", "\u2013and"], [".", "\u2013", ",", "\u2026.", "\u2026..", "\u2026", " \u2013", ";"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Shemale", " milfs", " Blowjob", "aruhi", " pornstar", "sprozess", " \u041a\u0440\u0430\u0441\u0438"], [".@", ".", " \u200b\u200b", "\u2026.", "\u7fe1", ":.", "@d", " \"."], ["\u2026.", " \u200b\u200b", "\u2026..", ".", "!.", "\u7fe1", ":.", "sver"], [" .....", ".\"", ".....", ".\u201d", " \u062c\u062f\u064b\u0627", ":.", "\u2026.", "  \n"], [" \u062c\u062f\u064b\u0627", "sburg", "!.", ":.", "sprozess", "\u00fcnst", "onderen", "sver"], [".", ",", ",.", "!.", "...", "\u2026.", ":.", ".\""], [",", ".", "\u2026.", ",.", "\u2013", ";", "\u2026", "!,"], ["...", ".", ",", "\u2026", " [\u2026]", " ", ".\"", ".@"], [" somewhat", " unpredictable", " potentially", " unpredict", " funky", "-ish", " sorta", " solid"], ["...", " hardcore", "-ish", " savvy", " funky", " diverse", " solid", " unpredictable"], ["-esque", " savvy", "-ish", " funky", "...", " hardcore", " sorta", " big"], [" savvy", " sorta", " folks", " funky", "-esque", " showcase", " massive", " potentially"], [" savvy", " folks", " hefty", " wildly", " sorta", " pricey", " disparate", " potentially"], [" savvy", "-esque", " folks", " hefty", " myriad", " potentially", "s", "..."], [" savvy", "-esque", " quirky", " funky", " pricey", " sorta", "-ish", " hefty"], ["-esque", " savvy", " sorta", " hefty", " quirky", " funky", " flashy", " pricey"], [" hugely", " vastly", " sorta", "-esque", " myriad", " wildly", " savvy", " genuinely"], ["<|endoftext|>", " hugely", " vastly", " genuinely", "Though", " though", " largely", " myriad"], [" hugely", "\u5171\u540c\u6253\u9020", "\u8e0f\u8e0f\u5b9e\u5b9e", "\u611f\u5341\u8db3", " sprawling", "\u76f8\u5173\u884c\u4e1a", " massively", " savvy"], [" hugely", " sprawling", " ``", " vastly", " heavily", " massively", " aggressively", " largely"], [" largely", " heavily", " hugely", " fully", " --", " much", " ultimately", " rapidly"], [" hugely", " --", " heavily", " vastly", " largely", " sprawling", " seemingly", " &#"], [" hugely", " heavily", " massively", " multit", " sprawling", " complex", " wildly", " tech"], [" multit", " hugely", " multimedia", " heavily", " sprawling", " commercial", " complex", " tech"], [" complex", " heavily", " --", " commercial", " modern", " non", " rapidly", " full"], [" complex", " commercial", " modular", " tech", " multit", " multimedia", " modern", " software"], [" complex", " multit", " commercial", " tech", " modular", " startup", " software", " modern"], [" complex", " commercial", " modern", " non", " live", " heavily", " modular", " tech"], [" complex", " modern", " commercial", " non", " long", " live", " heavily", " full"], [" complex", " non", " modern", " long", " full", " even", " single", " fully"], [" complex", " modular", " tech", " hybrid", " traditional", " non", " mainstream", " multiple"], [" **", " complex", " modular", " hybrid", " **\u201c", " traditional", " standalone", " tech"], [" complex", " **", " traditional", " hybrid", " \u2014", " modular", " **\u201c", " \u201c"], [" complex", " hybrid", " traditional", " modular", " multit", " mainstream", " software", " Python"], [" hybrid", " complex", " traditional", " modular", " multit", " mixed", " \u201c", " software"], [" traditional", " complex", " hybrid", " multit", " mainstream", " \u201c", " modular", " unified"], [" traditional", " hybrid", " Python", " complex", " native", " mainstream", " multit", " unified"], [" Python", " traditional", " complex", " native", " runtime", "Python", " hybrid", " Java"], [" Python", " multit", " complex", " hybrid", " Java", " runtime", " integrated", " mainstream"], [" Python", " multit", " hybrid", " mainstream", " runtime", " Java", " integrated", " JVM"], [" multit", " hybrid", " mainstream", " integrated", " runtime", " Python", " dual", " powered"], [" multit", " integrated", " hybrid", " mainstream", " dual", " separate", " complex", " concurrently"], [" hybrid", " dual", " integrated", " mainstream", " multit", " concurrently", " complex", " separate"], [" mainstream", " integrated", " hybrid", " dual", " multit", " concurrently", " traditional", " concurrent"], [" mainstream", " integrated", " traditional", " hybrid", " concurrently", " unified", " dual", " concurrent"], [" mainstream", " integrated", " unified", " standalone", " traditional", " concurrently", " hybrid", " dual"], [" mainstream", " standalone", "\u5e38\u89c4\u7684", "andalone", " conventional", "\u7684\u4e3b\u6d41", " standard", "-standard"], [" mainstream", "\u5e38\u89c4\u7684", "andalone", "\u5e38\u89c4", " standalone", "-standard", "\u4efb\u4f55\u5f62\u5f0f\u7684", " conventional"], [" mainstream", "\u5e38\u89c4", " standalone", "\u5e38\u89c4\u7684", " conventional", "andalone", " standard", "-standard"], ["\u5e38\u89c4", " mainstream", "\u5e38\u89c4\u7684", " standard", " single", "-standard", " standalone", " conventional"], [" single", " multit", " standalone", "single", "\u5355\u4e00", "\u55ae\u4e00", " \ub2e8\uc77c", " runtime"], [" single", " loop", "MainThread", " mainstream", "-loop", "-thread", "\u5355\u4e00", " standalone"], ["-loop", " loop", " single", "-thread", "-native", " threaded", " runnable", "MainThread"], [" single", " loop", "-loop", " threading", "-thread", "single", " UI", " threaded"], [" single", " UI", " GUI", "single", " Single", " loop", " mainstream", " threaded"], [" single", " UI", "single", " interpreter", " GUI", " interpreted", "interpreter", " Single"], [" single", " interpreted", " interpreter", " UI", " interpre", " GUI", " mainstream", " synchronous"], [" single", " UI", " interpreted", " pure", " sandbox", " interpreter", " main", " reasonable"], [" single", " pure", " main", " UI", " interpreted", " mainstream", " standard", " sandbox"], [" single", " main", " pure", " standard", " mainstream", " UI", " tight", " synchronous"]], "p": [[0.8956, 0.0944, 0.0041, 0.0017, 0.0009, 0.0008, 0.0004, 0.0003], [0.2108, 0.1449, 0.0415, 0.0323, 0.0163, 0.0127, 0.0119, 0.0105], [0.6594, 0.1299, 0.1146, 0.0422, 0.0199, 0.0107, 0.0083, 0.0029], [0.0143, 0.0092, 0.006, 0.0053, 0.0032, 0.003, 0.0028, 0.0025], [0.0219, 0.017, 0.0133, 0.0076, 0.0071, 0.0071, 0.0063, 0.0049], [0.0552, 0.0458, 0.023, 0.0191, 0.008, 0.0055, 0.0055, 0.0051], [0.1331, 0.0669, 0.0316, 0.0159, 0.0124, 0.0116, 0.0085, 0.0085], [0.0139, 0.007, 0.0054, 0.0051, 0.0045, 0.0033, 0.0033, 0.0033], [0.6368, 0.104, 0.0359, 0.0192, 0.015, 0.0141, 0.0141, 0.0091], [0.5019, 0.0221, 0.0092, 0.0081, 0.0067, 0.0063, 0.0056, 0.0046], [0.5941, 0.1032, 0.0667, 0.0261, 0.0096, 0.009, 0.0085, 0.0075], [0.003, 0.003, 0.0026, 0.0026, 0.0023, 0.0022, 0.002, 0.002], [0.0039, 0.0033, 0.0031, 0.0031, 0.0029, 0.0023, 0.002, 0.0019], [0.0079, 0.0058, 0.0054, 0.0051, 0.0045, 0.004, 0.0035, 0.0031], [0.0141, 0.0125, 0.0071, 0.0049, 0.0049, 0.0046, 0.0041, 0.0041], [0.022, 0.0171, 0.0052, 0.0052, 0.0046, 0.0043, 0.0041, 0.0041], [0.0215, 0.0139, 0.013, 0.007, 0.0054, 0.0051, 0.0051, 0.0048], [0.0384, 0.0281, 0.0103, 0.0097, 0.0063, 0.0059, 0.0055, 0.0046], [0.028, 0.0205, 0.0091, 0.0059, 0.0055, 0.0043, 0.0036, 0.0031], [0.0166, 0.0078, 0.0074, 0.0065, 0.0061, 0.0061, 0.0054, 0.0054], [0.8346, 0.0014, 0.001, 0.0009, 0.0009, 0.0009, 0.0008, 0.0007], [0.0028, 0.0025, 0.0019, 0.0017, 0.0016, 0.0016, 0.0013, 0.0013], [0.0062, 0.0035, 0.0031, 0.0029, 0.0029, 0.0026, 0.0023, 0.0021], [0.0081, 0.0063, 0.006, 0.006, 0.0049, 0.0049, 0.0041, 0.0041], [0.0109, 0.0102, 0.0058, 0.0045, 0.0045, 0.004, 0.0038, 0.0038], [0.014, 0.0066, 0.0062, 0.0045, 0.0045, 0.0038, 0.0029, 0.0029], [0.0089, 0.0083, 0.0074, 0.0069, 0.0069, 0.0061, 0.0061, 0.0061], [0.0406, 0.0204, 0.0169, 0.014, 0.0091, 0.0091, 0.0085, 0.0085], [0.0623, 0.026, 0.0244, 0.0158, 0.0131, 0.0123, 0.0123, 0.0084], [0.0443, 0.0286, 0.0237, 0.0209, 0.0209, 0.0105, 0.0099, 0.0093], [0.077, 0.0283, 0.0283, 0.0152, 0.0152, 0.0104, 0.0098, 0.0098], [0.0869, 0.041, 0.0206, 0.0161, 0.0142, 0.0133, 0.0104, 0.0104], [0.0404, 0.0295, 0.0191, 0.0149, 0.014, 0.014, 0.0131, 0.0109], [0.1247, 0.0431, 0.0246, 0.0231, 0.0204, 0.0169, 0.014, 0.0123], [0.1955, 0.0719, 0.0319, 0.0182, 0.016, 0.0142, 0.0117, 0.0104], [0.1203, 0.0416, 0.039, 0.0345, 0.0286, 0.0196, 0.0184, 0.0184], [0.0734, 0.0608, 0.0608, 0.0347, 0.0238, 0.021, 0.0197, 0.0099], [0.1055, 0.0875, 0.0822, 0.0365, 0.0284, 0.0162, 0.0143, 0.0134], [0.1379, 0.0837, 0.0421, 0.0395, 0.0349, 0.0289, 0.0225, 0.0225], [0.0718, 0.0675, 0.0595, 0.0494, 0.0361, 0.0339, 0.0264, 0.0171], [0.1656, 0.0326, 0.0306, 0.0306, 0.0288, 0.0288, 0.0224, 0.0198], [0.2017, 0.051, 0.0373, 0.0373, 0.035, 0.0309, 0.0291, 0.0156], [0.0954, 0.048, 0.0423, 0.033, 0.033, 0.0291, 0.0257, 0.0166], [0.0654, 0.0654, 0.0543, 0.0397, 0.02, 0.0188, 0.0129, 0.0121], [0.062, 0.0583, 0.0548, 0.0483, 0.0332, 0.0228, 0.0201, 0.0147], [0.0613, 0.0541, 0.0478, 0.0372, 0.029, 0.0272, 0.0256, 0.0155], [0.0833, 0.0649, 0.061, 0.0326, 0.0239, 0.0211, 0.0198, 0.0164], [0.1646, 0.1204, 0.0345, 0.0345, 0.0304, 0.0304, 0.0286, 0.0185], [0.2455, 0.0749, 0.0332, 0.0243, 0.0215, 0.0167, 0.0139, 0.0139], [0.5104, 0.0419, 0.0164, 0.012, 0.0113, 0.0106, 0.0082, 0.0078], [0.1396, 0.0483, 0.0376, 0.0275, 0.0243, 0.0138, 0.0138, 0.0122], [0.0862, 0.0715, 0.0715, 0.0383, 0.0263, 0.0247, 0.0218, 0.0205], [0.1838, 0.0766, 0.0527, 0.0465, 0.0465, 0.0385, 0.0362, 0.03], [0.1795, 0.0748, 0.0547, 0.0376, 0.0332, 0.0275, 0.0259, 0.0243], [0.1379, 0.0948, 0.0837, 0.0837, 0.0575, 0.0349, 0.0187, 0.0187], [0.1306, 0.1017, 0.0792, 0.0424, 0.0227, 0.02, 0.0188, 0.0177], [0.1974, 0.0932, 0.0499, 0.0343, 0.0267, 0.0251, 0.0236, 0.0195], [0.5018, 0.0599, 0.0364, 0.0364, 0.022, 0.0152, 0.0092, 0.0086], [0.6213, 0.0397, 0.0309, 0.0273, 0.0213, 0.0166, 0.0166, 0.0146], [0.4804, 0.0737, 0.065, 0.0574, 0.0239, 0.0164, 0.0154, 0.0128], [0.3247, 0.1195, 0.0821, 0.0468, 0.0302, 0.0267, 0.0208, 0.0195], [0.3901, 0.1266, 0.0678, 0.0637, 0.0234, 0.0234, 0.0207, 0.0171], [0.5704, 0.0991, 0.0601, 0.0365, 0.0251, 0.0235, 0.0143, 0.0118]], "ranks": {"Python": [54915, 184840, 61616, 156536, 23462, 75650, 21359, 75443, 11793, 20608, 8154, 26034, 20596, 24171, 17255, 30543, 24723, 12040, 19204, 52066, 12852, 26648, 7842, 12790, 9544, 1291, 1141, 900, 511, 628, 1133, 2542, 3461, 758, 529, 78, 8, 17, 9, 3, 1, 1, 1, 6, 16, 22, 37, 58, 96, 413, 1532, 155, 316, 263, 274, 105, 10, 37, 21, 38, 21, 25, 42]}}, {"pos": 413, "top": [[".", ",", "\u00a0", "\"", "[", "\u2013", "-", "\u00a0\u00a0"], ["\u2011", "   \n", "  \n", "\u200c", "  \n\n", "\u2013", "    \n", "'["], [",", ".", "\u2013", "\u2026..", "[", "\u2026.", "\u2026", "\u2018"], [" Hidal", "carat", " Blowjob", " milfs", "odal", "TRGL", "\ufffd\ufffd", "\u519c\u6751\u5546\u4e1a\u94f6\u884c"], ["archical", "odal", " Organis", " organis", "\u519c\u6751\u5546\u4e1a\u94f6\u884c", " CIS", " CIF", "organis"], [" \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", "\u2011", "  \n", "\u2018"], ["\u2011", "\\(", ",", "\\-", " \\(", "  \n", "${", " \n"], ["\u2011", " \n\n", "  \n\n", " \n\n\n", " \n", " [...]", "\\-", "  \n"], ["\u83f8", " \n    \n", " showcase", " _", " \n\n\n", "\u2011", " \r\n", "\u0436\u0451"], [" showcase", "\u83f8", " [...]", "\u0436\u0451", "\u2011", "-esque", "\u0451\u043b", " _"], [" showcase", "-esque", " massive", " Massive", "\u83f8", "\u0436\u0451", "Single", " overarching"], ["\\-", " showcase", " Massive", " \n\n", "-esque", "  \n\n", " massive", " showcasing"], [" showcase", " multiple", " overarching", " massive", "-esque", " Massive", " entirety", " Multiple"], [" showcase", " overarching", " massive", " effortlessly", " Massive", "-esque", " moments", " multiple"], [" showcase", "/single", "-esque", " overarching", "-single", " effortlessly", " Massive", " entirety"], ["/single", " \r\n\r\n", "   \n\n", "  \n\n", "-single", "-esque", " showcase", "\\-"], [" \n\n", "  \n\n", " \r\n\r\n", "   \n\n", "\\-", "  \r\n\r\n", " \n\n\n", " \r\n"], ["<|endoftext|>", " \n\n", "  \n\n", "   \n\n", " \n\n\n", " \r\n\r\n", "  \r\n\r\n", "  \n\n\n"], ["SingleNode", "UnitOfWork", "/single", "\u65cf\u81ea\u6cbb\u53bf", "MUX", "odon", "\u0924\u0940\u092f", "DTV"], [" \r\n", " single", "/single", " outright", " massive", " \u2212", "SingleNode", " multiple"], [" single", " ,", " massive", " --", " multiple", " outright", " \u2212", " Single"], [" \n\n", " \r\n\r\n", "   \n\n", "  \n\n", " single", " \n\n\n", " \r\n", "  \r\n\r\n"], [" single", " *", "/single", " massive", "SingleNode", "UnitOfWork", " multiple", " effort"], [" single", " *", "/single", " _", "\u5355\u65e5", "SingleNode", "UnitOfWork", " production"], [" \n\n", " _", " single", " *", " ___", " ,", " .", "  \n\n"], [" single", " Single", " *", " _", " modular", "/single", " **", " massive"], [" **", " ___", " single", " \n    \n", " \n", " ______", " **.", "/single"], [" single", " **", " Single", " *", " .", " \n", " **.", "/single"], [" single", " .", " Single", " *", " multiple", " massive", " power", " complex"], [" single", " Single", " *", " multiple", " massive", " .", " mon", " power"], [" single", " Single", " multiple", "/single", " *", " SINGLE", "-single", " unified"], [" single", " Single", "/single", " SINGLE", " **", " *", "-single", "Single"], [" Single", " single", "/single", " SINGLE", " *", " \n\n", "Single", "\u2011"], [" Single", " single", " *", "/single", " SINGLE", "Single", "(single", " **"], [" Single", " single", "/single", " SINGLE", " unified", "Single", " Unified", " *"], [" Single", " single", "/single", " SINGLE", " unified", "-single", "(single", " Unified"], [" Single", " single", "/single", " SINGLE", "Single", "-single", "(single", "-thread"], [" Single", " single", "-thread", "/single", "(single", "-single", " thread", "Single"], [" Single", " single", "-thread", " thread", "-single", "/single", " Thread", "(single"], [" Single", " single", "-single", "/single", " SINGLE", "-thread", "(single", " thread"], [" Single", " single", "/single", "-single", " SINGLE", "\u5355\u4e00", "(single", "-thread"], [" single", " Single", "-single", " SINGLE", "/single", "(single", "\u5355\u4e00", "Single"], [" single", " Single", "-single", "/single", " SINGLE", "(single", "\u5355\u4e00", "\u55ae\u4e00"], [" single", " Single", "/single", "-single", " SINGLE", "\u5355\u4e00", "(single", "\u5355\u4e00\u7684"], [" single", " Single", "/single", "-single", " SINGLE", "(single", "\u5355\u4e00", "single"], ["/single", " single", "-single", " SINGLE", "\u5355\u4e00", "\u5355\u4e00\u7684", "(single", " Single"], ["/single", "-single", " single", "\u55ae\u4e00", "(single", "-thread", "\u5355\u4e00", "\u5355\u4e00\u7684"], ["/single", "-single", "(single", "-thread", "\u55ae\u4e00", "\u5355\u4e00", "_SINGLE", " SINGLE"], ["-thread", " thread", "/single", "-single", "(single", "\u7ebf\u7a0b", " threads", "thread"], ["-thread", "/single", "-single", "(single", " single", " thread", " Single", "\u7ebf\u7a0b"], ["-thread", " thread", "\u7ebf\u7a0b", " threads", "thread", " threaded", "Thread", "_thread"], ["-thread", " thread", "thread", " threads", "\u7ebf\u7a0b", "Thread", " threaded", "_thread"], ["-thread", " thread", "thread", "\u7ebf\u7a0b", " threads", "Thread", " threaded", "_thread"], ["-thread", " thread", "thread", " threads", "\u7ebf\u7a0b", "Thread", "_thread", " threaded"], ["-thread", " thread", "thread", " threads", " threaded", "\u7ebf\u7a0b", " threading", "Thread"], ["-thread", " thread", "-process", "thread", "\u7ebf\u7a0b", " threads", "Thread", " Thread"], ["-thread", "-process", " process", " thread", "thread", "process", " threaded", " threads"], ["-thread", "-process", " thread", " process", " threaded", "thread", " threading", "process"], ["-thread", "-process", " thread", " process", " threaded", "thread", " threading", "process"], ["-thread", "-process", " thread", " process", " threaded", " threading", "thread", "-"]], "p": [[0.6885, 0.1973, 0.0388, 0.0111, 0.0076, 0.0072, 0.0063, 0.0049], [0.0939, 0.0286, 0.0185, 0.0119, 0.0093, 0.0082, 0.006, 0.0044], [0.2274, 0.2274, 0.1217, 0.0448, 0.0199, 0.0175, 0.0155, 0.0078], [0.0058, 0.0033, 0.0023, 0.0019, 0.0016, 0.0016, 0.0014, 0.0014], [0.0056, 0.0032, 0.0032, 0.0028, 0.0028, 0.0027, 0.0027, 0.0025], [0.0219, 0.0181, 0.0091, 0.0067, 0.0059, 0.0049, 0.0046, 0.0043], [0.2401, 0.1207, 0.1065, 0.0883, 0.0779, 0.0688, 0.0305, 0.021], [0.1016, 0.0792, 0.0511, 0.0398, 0.0274, 0.0227, 0.0188, 0.0156], [0.1882, 0.1072, 0.0835, 0.0574, 0.0348, 0.0348, 0.0307, 0.0225], [0.0657, 0.0292, 0.0227, 0.0213, 0.0147, 0.0122, 0.0079, 0.0074], [0.0852, 0.0663, 0.0663, 0.0663, 0.0623, 0.055, 0.0333, 0.0313], [0.0066, 0.0066, 0.0055, 0.0045, 0.0043, 0.0043, 0.0038, 0.0035], [0.0115, 0.0101, 0.0051, 0.0045, 0.004, 0.0031, 0.0027, 0.0027], [0.0118, 0.0092, 0.0052, 0.0043, 0.0041, 0.0034, 0.0026, 0.0026], [0.0162, 0.0152, 0.0072, 0.0072, 0.0063, 0.0049, 0.0049, 0.0046], [0.0195, 0.0067, 0.0063, 0.0056, 0.0052, 0.0052, 0.0046, 0.0046], [0.0132, 0.008, 0.0058, 0.0055, 0.0052, 0.0048, 0.004, 0.004], [0.0109, 0.0058, 0.0058, 0.0055, 0.0048, 0.0035, 0.0023, 0.0022], [0.007, 0.0048, 0.0048, 0.0048, 0.0045, 0.004, 0.0037, 0.0035], [0.0513, 0.0453, 0.0242, 0.0201, 0.0147, 0.0122, 0.0074, 0.0048], [0.3782, 0.3135, 0.1307, 0.02, 0.0147, 0.0089, 0.0035, 0.0031], [0.0024, 0.0022, 0.0018, 0.0015, 0.0015, 0.0014, 0.0012, 0.0012], [0.0041, 0.003, 0.0028, 0.0017, 0.0017, 0.0016, 0.0015, 0.0014], [0.0108, 0.0026, 0.0023, 0.0021, 0.002, 0.0019, 0.0017, 0.0017], [0.1252, 0.0159, 0.015, 0.0116, 0.0103, 0.0059, 0.0052, 0.004], [0.0082, 0.006, 0.0044, 0.0034, 0.0025, 0.0023, 0.0021, 0.0019], [0.0111, 0.0046, 0.0039, 0.0026, 0.0025, 0.0023, 0.0019, 0.0018], [0.4144, 0.0635, 0.034, 0.0194, 0.0194, 0.0086, 0.0071, 0.0067], [0.0366, 0.0127, 0.0087, 0.0072, 0.0068, 0.0064, 0.0056, 0.0053], [0.0417, 0.0325, 0.0185, 0.0163, 0.0153, 0.0105, 0.0093, 0.0082], [0.1757, 0.0253, 0.0197, 0.0127, 0.0087, 0.0077, 0.0073, 0.0068], [0.3196, 0.049, 0.0246, 0.0116, 0.0097, 0.0071, 0.0059, 0.0049], [0.4027, 0.0242, 0.0156, 0.0107, 0.0079, 0.0069, 0.0061, 0.0061], [0.2321, 0.0379, 0.023, 0.0216, 0.0168, 0.0139, 0.0102, 0.0075], [0.4168, 0.1353, 0.0821, 0.0468, 0.0284, 0.0266, 0.0118, 0.0087], [0.2369, 0.1268, 0.0769, 0.0679, 0.0679, 0.0363, 0.022, 0.0183], [0.2808, 0.1813, 0.11, 0.0627, 0.0357, 0.0217, 0.0109, 0.0109], [0.4573, 0.1906, 0.0546, 0.0353, 0.0242, 0.0177, 0.0122, 0.0122], [0.3856, 0.3403, 0.0808, 0.0359, 0.0218, 0.014, 0.0132, 0.0109], [0.3488, 0.3078, 0.0606, 0.0417, 0.0345, 0.0305, 0.0286, 0.0144], [0.3715, 0.2894, 0.0646, 0.0368, 0.0287, 0.0269, 0.0269, 0.0197], [0.2401, 0.187, 0.1456, 0.0883, 0.0688, 0.0325, 0.0253, 0.0174], [0.3683, 0.325, 0.064, 0.0565, 0.0235, 0.0208, 0.0195, 0.0143], [0.4518, 0.2418, 0.054, 0.0476, 0.0371, 0.0211, 0.0211, 0.012], [0.3778, 0.2943, 0.0744, 0.0657, 0.0451, 0.0166, 0.0129, 0.0089], [0.6183, 0.2007, 0.0508, 0.0349, 0.0212, 0.0094, 0.0042, 0.0039], [0.5266, 0.1509, 0.0808, 0.0713, 0.0432, 0.0297, 0.0231, 0.0159], [0.445, 0.1445, 0.1275, 0.0993, 0.0365, 0.0251, 0.0251, 0.0134], [0.2924, 0.201, 0.201, 0.0448, 0.0349, 0.0308, 0.0308, 0.0272], [0.3374, 0.2319, 0.0586, 0.0403, 0.0403, 0.0356, 0.0356, 0.0277], [0.3826, 0.232, 0.0967, 0.0457, 0.0179, 0.0168, 0.0139, 0.0123], [0.71, 0.0312, 0.0214, 0.0101, 0.0101, 0.0084, 0.0084, 0.0084], [0.6732, 0.117, 0.0488, 0.038, 0.0102, 0.008, 0.0051, 0.0038], [0.9607, 0.0176, 0.0057, 0.0044, 0.0044, 0.0014, 0.0014, 0.001], [0.928, 0.0462, 0.0103, 0.0055, 0.0049, 0.0016, 0.0011, 0.0007], [0.9328, 0.041, 0.0104, 0.0063, 0.0049, 0.0014, 0.0009, 0.0008], [0.9564, 0.0255, 0.0106, 0.0016, 0.0014, 0.0011, 0.001, 0.0009], [0.9724, 0.0139, 0.0095, 0.001, 0.0009, 0.0009, 0.0004, 0.0004], [0.8899, 0.073, 0.0163, 0.0144, 0.0015, 0.0013, 0.001, 0.0008], [0.6161, 0.291, 0.0506, 0.0307, 0.0037, 0.0032, 0.0008, 0.0004], [0.8913, 0.057, 0.0238, 0.0163, 0.0068, 0.0022, 0.0007, 0.0004], [0.8741, 0.0559, 0.0339, 0.0264, 0.0059, 0.0012, 0.0009, 0.0003], [0.9064, 0.0398, 0.0398, 0.0101, 0.002, 0.0004, 0.0003, 0.0001]], "ranks": {"Python": [25176, 203878, 60520, 129679, 17630, 36560, 7267, 14731, 7995, 11048, 6209, 23265, 16807, 17939, 13180, 16837, 21904, 16126, 32596, 37223, 10771, 23350, 7928, 14481, 10131, 7396, 12268, 3762, 3323, 2947, 2197, 4621, 4509, 1401, 1137, 143, 18, 33, 40, 25, 24, 31, 55, 113, 96, 98, 144, 95, 69, 145, 560, 130, 137, 113, 187, 57, 25, 32, 85, 103, 37, 38, 48]}}, {"pos": 414, "top": [["i", "er", "o", " \u2013", "en", "ed", "y", "a"], ["er", "ed", "i", "en", "es", "\uff20", " \u2013", "\uff0d"], ["er", "i", "ed", " \u2013", "t", "en", "o", "u"], ["\uff0d\uff0d\uff0d\uff0d", "er", "\uff0a\uff0a", "\r\r\n", "\uff3f\uff3f", "\uff0a\uff0a\uff0a\uff0a", "ed", "\uff0d\uff0d"], ["er", "ed", "i", "\uff0d\uff0d\uff0d\uff0d", "\uff20", "\r\r\n", "en", "ers"], ["ed", "er", "ing", "i", "ers", " \r\n", "\u5728", "en"], ["ed", "er", "ing", "i", "ers", "ly", "o", "en"], ["ed", "er", "ing", "ly", "i", "ers", "en", "o"], ["ed", "er", "ing", "i", "ly", "o", "en", "ers"], ["ed", "er", "ing", "ly", "i", "o", "ers", "en"], ["ed", "er", "ing", "o", "i", "a", "ly", "en"], ["ed", "er", "ing", "ly", "o", "ers", "en", "es"], ["ed", "er", "ing", "ly", "ers", "en", "es", "o"], ["ed", "er", "ing", "ly", "o", "es", "en", "i"], ["ed", "er", "ing", "o", "i", "es", "en", "a"], ["ed", "er", "ing", "o", "es", "i", "en", "ers"], ["ed", "er", "ing", "o", "i", "es", "en", "e"], ["ed", "er", "ing", "o", "i", "es", "en", "ly"], ["ed", "er", "ing", "o", "i", "es", "en", "ly"], ["ed", "er", "ing", "o", "i", "ly", "es", "en"], ["ed", "er", "ing", "o", "i", "a", "ly", "e"], ["ed", "er", "ing", "ly", "edly", "es", "o", "i"], ["ed", "er", "ing", "ly", "o", "i", "edly", "es"], ["ed", "er", "ing", "ly", "o", "i", "edly", "es"], ["ed", "ing", "er", "ly", "edly", "o", "i", "al"], ["ed", "ing", "er", "ly", "edly", "ers", "ous", "ized"], ["ed", "ing", "er", "ly", "edly", "ers", "ous", "ized"], ["ed", "ing", "er", "ly", "edly", " __", " ___", "ous"], ["ed", "ing", "er", "edly", "ly", "ous", " __", " ___"], ["ed", "ing", "er", " ___", " __", "edly", "ly", "ous"], ["ed", "ing", "er", "edly", "ly", "ous", "ized", "ers"], ["ed", "ing", "er", "edly", "ly", " .", "ized", "es"], ["ed", "ing", "er", "ly", "edly", "ous", "ized", "ers"], ["ed", "ing", "er", "edly", "ly", "ous", "ized", "ers"], ["ed", "ing", "edly", "er", "ly", "ous", "ized", "able"], ["ed", "ing", "er", "edly", "ous", "ly", "ized", "able"], ["ed", "ing", "edly", "er", "ized", "ous", "ly", "able"], ["ed", "ing", "er", "edly", "ized", " Thread", "ous", "ly"], ["ed", "ing", " Thread", "edly", "ized", "er", "\u2011", " thread"], ["ed", "ing", " Thread", "-thread", " thread", "/thread", "edly", "ized"], ["ed", " Thread", " thread", "-thread", "/thread", "ing", "\u591a\u7ebf\u7a0b", "/single"], ["ed", " Thread", " thread", "-thread", "/thread", "\u591a\u7ebf\u7a0b", " threading", ".Thread"], ["ed", " Thread", "/single", " thread", " single", "-thread", " Single", " threading"], ["ed", "/single", " Thread", " thread", " single", " Single", "-thread", "/thread"], ["ed", "/single", " thread", " Thread", " single", "-thread", " synchronous", " Single"], ["ed", "/single", " single", " thread", " synchronous", " Thread", " Single", "/thread"], ["/single", "ed", " single", " synchronous", " thread", " Single", " workflow", "/thread"], ["/single", "ed", " single", " Single", " thread", " synchronous", " workflow", "(single"], ["/single", "ed", "/thread", " thread", " synchronous", "-thread", ".Thread", "\u2014even"], ["/single", "/thread", "\u2014even", "ed", "-thread", "\u6216\u5c11", "-single", "-centric"], ["/single", "-single", "(single", "/thread", "\u6216\u591a", "-thread", ".Thread", "-centric"], ["/single", "/thread", "-thread", ".Thread", "\u6216\u591a", "ed", "(single", " thread"], ["/single", "/thread", " runtime", "-thread", ".Thread", "ed", "\u6216\u591a", "-centric"], ["/thread", "-thread", ".Thread", " thread", " Thread", " runtime", " threading", "ed"], [" thread", "-thread", "/thread", ".Thread", " Thread", "thread", " threads", "\u7ebf\u7a0b"], ["ed", "/thread", "-thread", " thread", ".Thread", " runtime", " execution", " Thread"], ["-thread", "/thread", " Python", "ed", ".Thread", " thread", " loop", " execution"], ["-thread", "ed", " UI", "/thread", " runtime", " GUI", " Python", " execution"], ["ed", "-thread", " Python", " interpreter", "/thread", " UI", " thread", " GUI"], ["ed", " interpreter", " UI", " execution", " interpreted", "Interpreter", " GUI", " runtime"], ["ed", " interpreter", " UI", " runtime", " interpreted", " Python", " loop", " GUI"], ["ed", " UI", " interpreter", " loop", " execution", " runtime", " GUI", " Python"], ["ed", " UI", " interpreter", " GUI", " environment", " Python", " loop", " interpreted"]], "p": [[0.6269, 0.2306, 0.0515, 0.0401, 0.0101, 0.0074, 0.0058, 0.004], [0.5396, 0.2888, 0.0827, 0.0105, 0.0077, 0.0068, 0.0047, 0.0036], [0.6448, 0.2093, 0.0873, 0.0118, 0.0038, 0.0038, 0.0032, 0.0015], [0.2007, 0.1296, 0.0694, 0.0612, 0.054, 0.0328, 0.0308, 0.0145], [0.7923, 0.2003, 0.0014, 0.0008, 0.0007, 0.0005, 0.0004, 0.0003], [0.8649, 0.1326, 0.001, 0.0003, 0.0002, 0.0001, 0.0001, 0.0], [0.9815, 0.018, 0.0003, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9664, 0.0331, 0.0004, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9394, 0.0601, 0.0005, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9932, 0.0067, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9913, 0.0086, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9889, 0.011, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9939, 0.0059, 0.0002, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9966, 0.0032, 0.0002, 0.0, 0.0, 0.0, 0.0, 0.0], [0.996, 0.0036, 0.0002, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9968, 0.0028, 0.0003, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9939, 0.0052, 0.0007, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9953, 0.0041, 0.0006, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9934, 0.0059, 0.0004, 0.0002, 0.0001, 0.0, 0.0, 0.0], [0.997, 0.0025, 0.0004, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9927, 0.0046, 0.0013, 0.0005, 0.0004, 0.0001, 0.0001, 0.0001], [0.9977, 0.0017, 0.0006, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9973, 0.0017, 0.0008, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9889, 0.0076, 0.0025, 0.0005, 0.0002, 0.0001, 0.0, 0.0], [0.9953, 0.0025, 0.0019, 0.0002, 0.0001, 0.0, 0.0, 0.0], [0.9966, 0.0025, 0.0007, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9957, 0.0028, 0.0012, 0.0002, 0.0001, 0.0, 0.0, 0.0], [0.9945, 0.0036, 0.0012, 0.0002, 0.0001, 0.0, 0.0, 0.0], [0.9946, 0.0036, 0.001, 0.0002, 0.0001, 0.0001, 0.0, 0.0], [0.9882, 0.0075, 0.0017, 0.0004, 0.0002, 0.0002, 0.0002, 0.0001], [0.9923, 0.0052, 0.0013, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001], [0.9886, 0.0067, 0.0022, 0.0004, 0.0002, 0.0001, 0.0001, 0.0001], [0.9874, 0.0085, 0.0015, 0.0004, 0.0003, 0.0001, 0.0001, 0.0001], [0.9816, 0.0109, 0.0017, 0.0011, 0.0004, 0.0004, 0.0003, 0.0002], [0.9937, 0.0041, 0.0005, 0.0004, 0.0002, 0.0001, 0.0001, 0.0], [0.9902, 0.0059, 0.0008, 0.0004, 0.0003, 0.0002, 0.0002, 0.0001], [0.9859, 0.0066, 0.0012, 0.0012, 0.0005, 0.0004, 0.0003, 0.0001], [0.9828, 0.0066, 0.0014, 0.0009, 0.0006, 0.0004, 0.0003, 0.0003], [0.9551, 0.0136, 0.002, 0.0018, 0.0015, 0.0014, 0.0011, 0.0011], [0.9305, 0.0097, 0.0076, 0.0032, 0.003, 0.0025, 0.0022, 0.0019], [0.6999, 0.0785, 0.042, 0.0308, 0.0106, 0.0106, 0.0073, 0.0064], [0.3789, 0.158, 0.123, 0.0794, 0.0275, 0.0189, 0.0147, 0.0122], [0.2763, 0.1016, 0.1016, 0.0843, 0.0579, 0.048, 0.031, 0.0177], [0.3383, 0.1098, 0.0666, 0.0519, 0.0458, 0.0296, 0.0245, 0.0168], [0.2183, 0.0969, 0.0519, 0.0519, 0.043, 0.0278, 0.0261, 0.023], [0.1687, 0.1687, 0.062, 0.0354, 0.0312, 0.0243, 0.0243, 0.0189], [0.3185, 0.2189, 0.0431, 0.0261, 0.0217, 0.0159, 0.0149, 0.0131], [0.3544, 0.1477, 0.0351, 0.0146, 0.0146, 0.0121, 0.0089, 0.0083], [0.5141, 0.0329, 0.029, 0.0187, 0.01, 0.0083, 0.0069, 0.0057], [0.5802, 0.0199, 0.0155, 0.0136, 0.0128, 0.012, 0.012, 0.0083], [0.8485, 0.0273, 0.0121, 0.0107, 0.005, 0.0047, 0.0047, 0.0033], [0.298, 0.0518, 0.0429, 0.0356, 0.0203, 0.0139, 0.0085, 0.0085], [0.3519, 0.0255, 0.0255, 0.0239, 0.0225, 0.0155, 0.0136, 0.01], [0.2196, 0.1938, 0.0974, 0.046, 0.0297, 0.0217, 0.018, 0.0169], [0.2554, 0.2254, 0.2254, 0.0732, 0.0503, 0.0392, 0.0269, 0.021], [0.3464, 0.1636, 0.1444, 0.0531, 0.0284, 0.0184, 0.0172, 0.0152], [0.1711, 0.1176, 0.1176, 0.0713, 0.0556, 0.049, 0.0382, 0.0297], [0.1261, 0.1113, 0.1113, 0.0765, 0.0675, 0.0526, 0.0464, 0.0319], [0.7119, 0.0313, 0.0313, 0.0215, 0.0215, 0.019, 0.019, 0.0167], [0.6553, 0.1005, 0.0419, 0.0164, 0.0145, 0.0128, 0.0128, 0.012], [0.9209, 0.0158, 0.0131, 0.0075, 0.0038, 0.0035, 0.0031, 0.0029], [0.9958, 0.0005, 0.0003, 0.0002, 0.0002, 0.0002, 0.0002, 0.0001], [0.9887, 0.0008, 0.0003, 0.0003, 0.0002, 0.0002, 0.0002, 0.0002]], "ranks": {"Python": [26588, 169591, 92203, 100892, 19313, 29275, 10475, 6038, 6810, 13035, 4580, 4301, 3090, 4358, 3690, 3526, 5536, 2859, 3863, 7757, 4513, 2353, 2290, 3875, 1751, 668, 684, 696, 453, 461, 333, 612, 774, 487, 604, 282, 75, 78, 61, 25, 28, 25, 36, 45, 34, 20, 31, 20, 23, 55, 258, 107, 38, 38, 68, 20, 2, 7, 2, 9, 6, 8, 6]}}, {"pos": 415, "top": [[" \u200b\u200b", ".", "\u00a0\u00a0", " ", ",", "\u00a0", ";", " \u00a0"], [" \u200b\u200b", " \u2014\u2014", "\u00a0\u00a0", "  ", " \u2014", "rysler", " Huffman", "emente"], [" \u200b\u200b", "\u2026..", "\u2026.", "\u00a0\u00a0", " \u2014\u2014", " \u2026.", "\u2014\u2014", "\u200b"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " ;;^", " milfs", "----------</", " Blowjob", "-------------</", " Shemale", "TRGL"], [" _____", "_____", " **\u201c", " \u2014\u2014", " \uff08", " $$$", " \uff3b", "\u00a0\u00a0"], [" \u200b\u200b", " \uff08", "ness", "\u00a0\u00a0", " \u2014\u2014", "_____", " _____", " **\u201c"], [" _____", " \u2014\u2014", "_____", " \uff3b", "\u3000", " \uff08", "\u00a0\u00a0", " ________"], ["ness", " _____", " \u200b\u200b", "\u00a0\u00a0", " ", " \uff3b", "\u3000", "  "], [" \u200b\u200b", "ness", ",", ".", "\u00a0\u00a0", "\u3000", " \uff3b", " \u00ad"], [",", " \u00ad", "\u00a0\u00a0", "ness", " ", ";", "\u00a0", "\u00ading"], [" ", ",", ".", "ness", "\u00a0\u00a0", " and", "&nbsp", " \u00ad"], ["ness", " _____", " British", " showcasing", "ization", " \u00ad", " ________", "ized"], ["ness", " showcasing", " networking", " \u00ad", "ized", " vocal", " conceptual", " multiple"], ["ness", " \u00ad", " networking", " British", " showcasing", " post", " via", " multiple"], [" ", " \u00ad", " and", " \u2014", " both", " heavily", " British", " approach"], [" \u00ad", " \u2014", " both", " arguably", " approach", " aggressively", " single", " long"], [" approach", " via", " ", " single", " long", " st", " off", " well"], [" approach", " British", " heavily", " via", " massive", " single", " system", " media"], [" heavily", " single", " British", " aggressively", " approach", " media", " via", " mundane"], [" \u2014", " heavily", " much", " though", " ", " and", " ,", " myriad"], ["<|endoftext|>", " \n\n", "  \n\n", "\n\n", " though", " ", " ,", " \u2014"], [" heavily", " single", " ,", " much", " long", " aggressively", " outright", " multiple"], [" ,", " heavily", " single", " and", " much", " \u2014", " --", " modern"], [" ,", " and", " much", " single", " --", " '", " though", " long"], [" \n\n", "  \n\n", "\n\n", " ,", "   \n\n", " \u2014", " though", " \r\n\r\n"], [" ___", " ________", " \n\n", " _____", " ______", "  \n\n", " __", " ____"], [" ___", " ,", " \n\n", " ________", " __", " _", " _____", " heavily"], [" ___", " \n\n", " ________", " __", " ,", " _____", "\n\n", " ______"], [" ________", " ___", " ,", " ______", " __", " _____", " \n\n", " ____"], [" ________", " ,", " ___", " \n", " __", " ______", " .", " _____"], [" .", " ,", " single", " and", " or", " time", " ", " long"], [" ,", " .", " and", " single", " ", " over", " even", " long"], [" ,", " .", " and", " single", " or", " even", " over", " power"], [" traditional", " single", " or", " and", " ,", " -", " heavily", " \u2014"], [" single", " traditional", " \u2014", " /", " or", " .", " heavily", " mon"], [" \u2014", " traditional", " single", " -", " /", " .", " \u2014\u2014", " \""], [" \u2014", " single", " traditional", "/single", " \"", " \u201c", " \u2014\u2014", " /"], [" \u2014", " \u201c", " single", " traditional", " /", " mon", " \"", " or"], [" \u201c", " traditional", " single", " \u2014", " /", " Python", " mon", " or"], [" Python", " \u201c", " \u2014", " traditional", " single", " mon", " /", "\u2011"], [" Python", " single", " mon", " /", " traditional", "/single", " Single", " python"], [" Python", " single", " \u2014", "\u2014or", " mon", " software", " runtime", "/single"], [" Python", " single", " mon", "/single", " mono", " Single", " traditional", " runtime"], [" single", " mon", " Single", " Python", "/single", " mono", " traditional", " systems"], [" single", " mon", " traditional", " Python", "/single", " Single", " systems", " mono"], [" single", " traditional", " mon", " Python", "/single", " systems", " Single", " mono"], [" single", " traditional", " or", "/single", " mon", " conventional", " Python", " Single"], [" traditional", " or", " single", " conventional", " standard", "/single", " mon", " typical"], [" or", "\u2014or", "/single", "\u2014even", " traditional", " Python", "\u6216\u901a\u8fc7", "\u6216\u56e0"], [" or", "/single", "\u2014or", "\u6216\u56e0", "\u6216\u901a\u8fc7", "\u2014even", "\u6216\u5c0f", "\u6216\u975e"], ["/single", "\u6216\u591a", "\u6216\u5c0f", "\u6216\u901a\u8fc7", "\u6216\u56e0", "\u6216\u975e", "\u6216\u4e0e", " workflow"], ["\u6216\u56e0", "\u6216\u901a\u8fc7", "\u6216\u4e0e", "\u6216\u591a", "\u6216\u975e", " or", " CPU", "\u6216\u5176"], ["\u6216\u56e0", " runtime", " CPU", " Python", "/single", "\u6216\u591a", " workflows", " workflow"], [" thread", "-thread", " execution", "/thread", " runtime", " Python", " CPU", " threads"], [" thread", "/thread", "-thread", " threads", "MainThread", "\u7ebf\u7a0b", "thread", " Thread"], [" Python", " execution", " thread", " runtime", "/thread", "-thread", " loop", " python"], [" Python", " python", "Python", "/python", " execution", " thread", " loop", "python"], [" Python", " interpreter", "Interpreter", " runtime", " execution", "Python", " python", " thread"], [" Python", " interpreter", "Interpreter", " thread", "interpreter", "Python", " interpreted", " python"], [" interpreter", " Python", " interpreted", "Interpreter", " execution", " interpretation", "interpreter", " interpre"], [" interpreter", " Python", " execution", " environment", " runtime", " process", " interpreted", " interpretation"], [" environment", " process", " execution", " interpreter", " Python", " UI", " runtime", " loop"], [" process", " environment", " UI", ",", " execution", " interpreter", " event", " Python"]], "p": [[0.3255, 0.3255, 0.0876, 0.0876, 0.0208, 0.0126, 0.0092, 0.0087], [0.0869, 0.0046, 0.0028, 0.0019, 0.0018, 0.0018, 0.0017, 0.0015], [0.5559, 0.1593, 0.0355, 0.0295, 0.0102, 0.0051, 0.0045, 0.0035], [0.0148, 0.0139, 0.0115, 0.0102, 0.009, 0.0084, 0.0062, 0.0048], [0.3839, 0.1246, 0.0458, 0.0231, 0.018, 0.0085, 0.008, 0.0062], [0.1362, 0.128, 0.0568, 0.0415, 0.0252, 0.0222, 0.0222, 0.0173], [0.2985, 0.1701, 0.1598, 0.0487, 0.0458, 0.0315, 0.0179, 0.0168], [0.3456, 0.0439, 0.0439, 0.0388, 0.0172, 0.0126, 0.0098, 0.0092], [0.1092, 0.0964, 0.0799, 0.0662, 0.0244, 0.0178, 0.0095, 0.0095], [0.3829, 0.0487, 0.0379, 0.0335, 0.0295, 0.0062, 0.0062, 0.0038], [0.1269, 0.0929, 0.0235, 0.0195, 0.0172, 0.0161, 0.0134, 0.0111], [0.0257, 0.0042, 0.0033, 0.0033, 0.0029, 0.0029, 0.0027, 0.0024], [0.0325, 0.0053, 0.0044, 0.0041, 0.0028, 0.0025, 0.0025, 0.0024], [0.0125, 0.0067, 0.0052, 0.0041, 0.0036, 0.0036, 0.0036, 0.0032], [0.0599, 0.0183, 0.0104, 0.0063, 0.0063, 0.0046, 0.0046, 0.0046], [0.0067, 0.0049, 0.0041, 0.0041, 0.0038, 0.0038, 0.0036, 0.0036], [0.0068, 0.0056, 0.0041, 0.0041, 0.0036, 0.0036, 0.0036, 0.0036], [0.0062, 0.0037, 0.0033, 0.0031, 0.0029, 0.0029, 0.0024, 0.0023], [0.0053, 0.0044, 0.003, 0.0027, 0.0024, 0.0024, 0.0022, 0.0021], [0.0143, 0.0112, 0.0077, 0.0072, 0.0068, 0.0068, 0.0068, 0.006], [0.6943, 0.0417, 0.0238, 0.0072, 0.0036, 0.0036, 0.0027, 0.0025], [0.0065, 0.0039, 0.0033, 0.0029, 0.0021, 0.0021, 0.002, 0.0019], [0.028, 0.0091, 0.0067, 0.0055, 0.0049, 0.004, 0.0036, 0.0033], [0.072, 0.0118, 0.0086, 0.0076, 0.0063, 0.0059, 0.0059, 0.0059], [0.4338, 0.1097, 0.0356, 0.0148, 0.0066, 0.0066, 0.0055, 0.0045], [0.0779, 0.057, 0.0444, 0.0269, 0.0163, 0.0127, 0.0112, 0.0099], [0.052, 0.0405, 0.0278, 0.0278, 0.0131, 0.0123, 0.0102, 0.009], [0.1649, 0.1649, 0.1, 0.0646, 0.0472, 0.0368, 0.0346, 0.0346], [0.1133, 0.0829, 0.0535, 0.0368, 0.0345, 0.0345, 0.0237, 0.0163], [0.0599, 0.0562, 0.0496, 0.0411, 0.0301, 0.025, 0.0183, 0.0172], [0.1143, 0.0947, 0.0371, 0.0255, 0.0128, 0.0113, 0.0106, 0.0094], [0.1217, 0.0836, 0.0476, 0.0255, 0.0199, 0.0155, 0.0137, 0.0137], [0.0849, 0.0401, 0.0377, 0.0354, 0.0276, 0.0228, 0.0139, 0.0115], [0.0644, 0.0568, 0.0345, 0.0222, 0.0196, 0.0184, 0.0173, 0.0173], [0.11, 0.0857, 0.052, 0.0231, 0.0231, 0.0217, 0.0169, 0.0159], [0.3451, 0.0529, 0.0497, 0.0387, 0.0364, 0.0302, 0.025, 0.0221], [0.3442, 0.087, 0.0678, 0.0283, 0.0249, 0.022, 0.0207, 0.0182], [0.1805, 0.1095, 0.0752, 0.0624, 0.0295, 0.0203, 0.019, 0.019], [0.1012, 0.0893, 0.0839, 0.0788, 0.0422, 0.0309, 0.0256, 0.0212], [0.2585, 0.0653, 0.0396, 0.0396, 0.0309, 0.0272, 0.0226, 0.0137], [0.3347, 0.0582, 0.0311, 0.0228, 0.0189, 0.0157, 0.0115, 0.0115], [0.3979, 0.0446, 0.0394, 0.0271, 0.0198, 0.0128, 0.0128, 0.012], [0.1513, 0.1254, 0.0631, 0.0338, 0.0232, 0.0218, 0.0181, 0.0159], [0.2128, 0.0505, 0.0475, 0.0419, 0.0419, 0.0198, 0.0175, 0.0154], [0.1931, 0.0488, 0.0357, 0.0315, 0.0217, 0.0204, 0.0191, 0.0191], [0.184, 0.0465, 0.0437, 0.0282, 0.0206, 0.0206, 0.0182, 0.0182], [0.159, 0.1238, 0.0455, 0.0402, 0.0259, 0.0215, 0.0148, 0.0148], [0.2537, 0.1276, 0.0774, 0.0414, 0.0323, 0.0236, 0.0196, 0.0173], [0.4746, 0.0642, 0.0532, 0.0268, 0.0222, 0.0173, 0.0143, 0.0126], [0.3169, 0.0908, 0.0586, 0.0486, 0.0429, 0.0314, 0.0277, 0.0168], [0.3576, 0.0484, 0.0229, 0.019, 0.0167, 0.0139, 0.0122, 0.0101], [0.085, 0.075, 0.0704, 0.0622, 0.0354, 0.0276, 0.0259, 0.0229], [0.0862, 0.0714, 0.0671, 0.0523, 0.0382, 0.0337, 0.0205, 0.0205], [0.0845, 0.0845, 0.0745, 0.0745, 0.0658, 0.058, 0.0512, 0.0452], [0.457, 0.09, 0.0794, 0.0701, 0.0375, 0.0292, 0.0292, 0.0258], [0.331, 0.1772, 0.0837, 0.0575, 0.0575, 0.0308, 0.0308, 0.0165], [0.8851, 0.0343, 0.0303, 0.0068, 0.006, 0.0046, 0.0046, 0.0041], [0.6015, 0.1342, 0.0634, 0.0339, 0.0264, 0.0206, 0.0141, 0.0125], [0.4723, 0.2865, 0.0724, 0.0342, 0.0266, 0.0143, 0.0111, 0.0111], [0.6393, 0.1111, 0.0525, 0.0409, 0.0281, 0.0219, 0.0193, 0.017], [0.3274, 0.3274, 0.0569, 0.0502, 0.0443, 0.0391, 0.0237, 0.0209], [0.1669, 0.1669, 0.1669, 0.1012, 0.0696, 0.0478, 0.0422, 0.0329], [0.1873, 0.1873, 0.1136, 0.1002, 0.0689, 0.0608, 0.0418, 0.0369]], "ranks": {"Python": [27805, 210169, 160942, 126205, 1796, 7506, 1197, 573, 840, 1613, 526, 315, 208, 476, 1204, 1945, 2214, 566, 430, 2470, 2111, 658, 654, 1486, 829, 92, 140, 296, 126, 268, 449, 2426, 2455, 821, 271, 30, 9, 10, 6, 1, 1, 1, 1, 4, 4, 4, 7, 12, 6, 23, 64, 20, 4, 6, 14, 1, 1, 1, 1, 2, 1, 5, 8]}}, {"pos": 416, "top": [[",", ".", "\u2013", " \u2013", ";", "\u00a0", ",.", "<|endoftext|>"], ["\u2013", ",", " \u2013", ".", "\u2013and", ";", ".\u2013", "\u200b"], ["\u2013", ",", ".", " \u2013", "\u2013and", ";", ".\u2013", "\u2026"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "-------------</", " ;;^", " milfs", "----------</", "\ufffd\ufffd", "~\":\"", "\u0634\u0646\u0628"], [".@", ",@", ":@", "(@", "@", " \"@", " (@", "=@"], ["\u00a0\u00a0", ",", "odd", "\u2026but", "-and", ":@", "\u2013and", "!:"], ["\u3002", "\ufffd", "\u9ad8", "\u3002\uff08", "\u591a", "\u4e2d", "\uff08", "\uff0c"], [",@", "(@", ".@", "-and", "\u82e5\u975e", "-even", ":@", "\u6027"], [",", ".", "!.", ",@", "(@", ",.", ";", "  \n\n"], [",", "\u82e5\u975e", "Though", "\u2013and", "-but", "\u2013", "-,", "-esque"], ["...\\", "...", "-esque", "2", "@", "1", ".@", " albeit"], [" pricey", "unky", " funky", " gritty", " flavorful", " comfy", "-esque", " savvy"], [" impactful", " pricey", " flavorful", " savvy", "unky", "-esque", " leveraging", " societal"], [" impactful", "-esque", " savvy", " reliant", " simplistic", " pricey", " gritty", " leveraging"], [" savvy", " utilizing", " aggressively", " simplistic", " arguably", " sprawling", " requisite", " myriad"], [" savvy", " sprawling", " myriad", " touted", " aggressively", " arguably", " pricey", " --"], [" myriad", " savvy", " sprawling", " incredibly", " simplistic", " effortlessly", " disparate", "-esque"], [" savvy", " sprawling", "-esque", " pricey", " simplistic", " gritty", " funky", " hefty"], [" sprawling", " savvy", " aggressively", "-esque", " pricey", " simplistic", " stark", " touted"], [" sprawling", " myriad", " requisite", " pricey", " utterly", " burgeoning", " swiftly", " aggressively"], ["<|endoftext|>", " myriad", " sprawling", " requisite", " vastly", " swiftly", " burgeoning", " utterly"], [" sprawling", " disparate", "\u5927\u8086", " gritty", " pricey", "\u52a8\u8f84", " relentlessly", " aggressively"], [" sprawling", " disparate", " aggressively", " myriad", " relentlessly", " --", " requisite", " ``"], [" --", " sprawling", " myriad", " aggressively", " requisite", " disparate", " relentlessly", " ``"], [" sprawling", " requisite", " myriad", " --", " disparate", " utterly", "\u65e0\u4ece", " vastly"], [" sprawling", " simplistic", " disparate", " gritty", " stark", " aggressively", " unpredictable", " pricey"], [" sprawling", " disparate", " aggressively", " --", " unpredictable", " simplistic", " myriad", " heavily"], [" --", " sprawling", " heavily", " aggressively", " myriad", " unpredictable", " complex", " massive"], [" sprawling", " heavily", " unpredictable", " aggressively", " complex", " massive", " non", " disparate"], [" heavily", " complex", " aggressively", " sprawling", " non", " unpredictable", " massive", " modern"], [" complex", " heavily", " non", " un", " single", " modern", " massive", " unpredictable"], [" complex", " heavily", " un", " modern", " long", " single", " non", " high"], [" complex", " non", " heavily", " un", " single", " long", " high", " modern"], [" traditional", " heavily", " complex", " non", " purely", " modular", " modern", " un"], [" non", " traditional", " complex", " heavily", " single", " modular", " purely", " un"], [" traditional", " complex", " \u201c", "\u2011", " non", " modular", " \u2013", " conventional"], [" traditional", " slow", " complex", " non", " constrained", " slower", " \u201c", " modular"], [" traditional", " complex", " \u201c", " non", " internal", " modular", " internally", " domestic"], [" traditional", " \u201c", " complex", "\u2011", " non", " slow", " constrained", " internal"], [" traditional", " Python", " \u201c", "\u2011", " non", " complex", " constrained", " inherently"], [" Python", " traditional", " slow", " constrained", " fragmented", " complex", " optimized", " native"], [" Python", " optimized", " software", " fragmented", " computational", " Java", " inefficient", " CPU"], [" Python", " inefficient", " inherently", " software", " optimized", " fragmented", " constrained", " computational"], [" inefficient", " optimized", " Python", " fragmented", " inherently", " slow", " heavily", " software"], [" inefficient", " fragmented", " heavily", " inherently", " optimized", " slow", " Python", " constrained"], [" inefficient", " fragmented", " heavily", "-heavy", " reliant", " constrained", " inherently", " optimized"], ["-heavy", " fragmented", " inherently", " optimized", " constrained", " inefficient", " slow", " indirect"], [" inherently", " traditional", "-heavy", " via", " constrained", " mainstream", " CPU", " Python"], [" Python", " fragmented", " traditional", " mainstream", "-heavy", " CPU", " native", " direct"], [" mainstream", "-heavy", " Teixe", "-native", " reliant", "-standard", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " fragmented"], ["-standard", " mainstream", " Teixe", "\u5e38\u89c4\u7684", "-native", " standalone", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "andalone"], ["-native", " CPU", " Teixe", "-standard", " mainstream", " native", " synchronous", " standalone"], [" CPU", "-native", " synchronous", " JVM", " mainstream", " Teixe", "-standard", " runtime"], [" CPU", "-thread", " synchronous", "-native", " Teixe", " JVM", " runtime", " JIT"], [" CPU", "-thread", " runtime", "MainThread", " mainstream", " synchronous", "-loop", " JVM"], [" garbage", " JIT", " Python", " JVM", " CPU", " GC", "-native", " synchronous"], [" garbage", " Python", " GC", " JIT", "Python", " python", "-python", " bytecode"], [" interpreted", " interpreter", " garbage", "Interpreter", "interpreter", "interpreted", " GC", " interpre"], [" interpreted", " interpreter", "Interpreter", "interpreter", " interpre", "interpreted", " Interpreter", " interpret"], [" interpreted", " interpreter", " interpre", " interpret", "interpreter", " interpretation", "Interpreter", "interpreted"], [" interpreted", " GC", " interpreter", " garbage", " interpre", " JIT", "interpreted", " interpretation"], [" GC", " interpreted", " garbage", " interpreter", " JIT", " G", " GL", " pure"], [" interpreted", " G", " GC", " garbage", " interpreter", " JIT", " main", " GUI"]], "p": [[0.7618, 0.2183, 0.0158, 0.0017, 0.0017, 0.0003, 0.0001, 0.0001], [0.63, 0.2976, 0.0277, 0.019, 0.0115, 0.0042, 0.0007, 0.0002], [0.5989, 0.3633, 0.0141, 0.0124, 0.0075, 0.0017, 0.0004, 0.0003], [0.0038, 0.0019, 0.0016, 0.0014, 0.0014, 0.0009, 0.0009, 0.0009], [0.0572, 0.0446, 0.0393, 0.0288, 0.027, 0.0175, 0.0128, 0.0113], [0.0031, 0.0021, 0.0016, 0.0013, 0.0013, 0.0011, 0.001, 0.001], [0.0447, 0.0198, 0.0175, 0.0164, 0.0154, 0.0145, 0.012, 0.0113], [0.0133, 0.0091, 0.0055, 0.0049, 0.0038, 0.003, 0.0028, 0.0026], [0.3483, 0.1452, 0.0082, 0.0077, 0.0072, 0.0064, 0.0064, 0.0056], [0.1155, 0.004, 0.004, 0.0031, 0.0024, 0.0023, 0.0021, 0.0021], [0.0699, 0.0242, 0.0227, 0.0107, 0.0089, 0.0078, 0.0069, 0.0069], [0.0256, 0.0256, 0.0069, 0.0057, 0.0054, 0.0054, 0.0054, 0.0047], [0.0332, 0.0178, 0.0167, 0.0115, 0.0108, 0.0095, 0.0089, 0.007], [0.0414, 0.0414, 0.0196, 0.0126, 0.0126, 0.0126, 0.0077, 0.0072], [0.026, 0.0202, 0.0179, 0.0158, 0.0148, 0.0139, 0.0096, 0.0084], [0.0401, 0.0293, 0.0228, 0.0178, 0.013, 0.013, 0.0115, 0.0115], [0.0347, 0.0287, 0.0254, 0.0198, 0.0186, 0.0128, 0.0128, 0.0099], [0.0372, 0.0272, 0.024, 0.0187, 0.0155, 0.0088, 0.0078, 0.0061], [0.0324, 0.0153, 0.0144, 0.0119, 0.0112, 0.0105, 0.0099, 0.0082], [0.0191, 0.018, 0.009, 0.0075, 0.0066, 0.0066, 0.0058, 0.0058], [0.4959, 0.0085, 0.004, 0.0038, 0.0036, 0.0033, 0.0029, 0.0026], [0.005, 0.0027, 0.0024, 0.0024, 0.0022, 0.0022, 0.0021, 0.0021], [0.0081, 0.0056, 0.0052, 0.0046, 0.0041, 0.0036, 0.0032, 0.0032], [0.0111, 0.0098, 0.0086, 0.0052, 0.0046, 0.0046, 0.0036, 0.0036], [0.0114, 0.0094, 0.0083, 0.0083, 0.0061, 0.0044, 0.0037, 0.0035], [0.0208, 0.0072, 0.0064, 0.0041, 0.0041, 0.0039, 0.0039, 0.0034], [0.0281, 0.0081, 0.0076, 0.0067, 0.0063, 0.0055, 0.0049, 0.0043], [0.0334, 0.0203, 0.0168, 0.0102, 0.0079, 0.007, 0.0062, 0.0051], [0.0241, 0.0213, 0.0176, 0.0166, 0.0146, 0.0101, 0.0069, 0.0061], [0.0312, 0.0275, 0.0157, 0.013, 0.013, 0.0115, 0.0108, 0.0101], [0.0329, 0.029, 0.0213, 0.0176, 0.0155, 0.0129, 0.0129, 0.0121], [0.0258, 0.0228, 0.0214, 0.0201, 0.0189, 0.0156, 0.0156, 0.0138], [0.0303, 0.0251, 0.0196, 0.0184, 0.0162, 0.0126, 0.0126, 0.0111], [0.0485, 0.0355, 0.0313, 0.0294, 0.0123, 0.0115, 0.0095, 0.0095], [0.047, 0.047, 0.0442, 0.0268, 0.0196, 0.0143, 0.0135, 0.0135], [0.1917, 0.0622, 0.0378, 0.0276, 0.0259, 0.0168, 0.0123, 0.0108], [0.234, 0.0433, 0.0407, 0.018, 0.015, 0.0141, 0.0141, 0.0141], [0.2392, 0.0471, 0.0345, 0.0223, 0.0223, 0.0135, 0.0119, 0.0112], [0.2456, 0.0749, 0.0312, 0.0228, 0.0178, 0.0178, 0.0167, 0.0157], [0.1641, 0.0604, 0.0442, 0.0209, 0.0184, 0.0184, 0.0162, 0.0153], [0.2168, 0.0621, 0.0243, 0.0167, 0.013, 0.0122, 0.0122, 0.0115], [0.3413, 0.028, 0.028, 0.017, 0.0141, 0.0141, 0.0132, 0.011], [0.1174, 0.0279, 0.0279, 0.0279, 0.0262, 0.0231, 0.0159, 0.0149], [0.0613, 0.0421, 0.024, 0.0225, 0.0199, 0.0187, 0.0165, 0.0128], [0.0674, 0.0525, 0.0233, 0.0219, 0.0219, 0.017, 0.0125, 0.0117], [0.0428, 0.0428, 0.0229, 0.0229, 0.0168, 0.0158, 0.0148, 0.0139], [0.0522, 0.0232, 0.0218, 0.0192, 0.018, 0.017, 0.0117, 0.0109], [0.0288, 0.0288, 0.0288, 0.0198, 0.0186, 0.0154, 0.0154, 0.0154], [0.0219, 0.0182, 0.0161, 0.0142, 0.0133, 0.0117, 0.0097, 0.0091], [0.0223, 0.0127, 0.0112, 0.0105, 0.0099, 0.0072, 0.0068, 0.0064], [0.0347, 0.0326, 0.0211, 0.0175, 0.0164, 0.01, 0.0064, 0.0057], [0.068, 0.0497, 0.0283, 0.0266, 0.0235, 0.0142, 0.0134, 0.0126], [0.2089, 0.0496, 0.0283, 0.0266, 0.025, 0.0234, 0.0234, 0.022], [0.2209, 0.0558, 0.0493, 0.0409, 0.0281, 0.0264, 0.0264, 0.0133], [0.1671, 0.1302, 0.0479, 0.0423, 0.0423, 0.0373, 0.0373, 0.0329], [0.2066, 0.1253, 0.0976, 0.0671, 0.0592, 0.0317, 0.0263, 0.0232], [0.4799, 0.2267, 0.1558, 0.0239, 0.0164, 0.0128, 0.0088, 0.0053], [0.4772, 0.2254, 0.1207, 0.0732, 0.0346, 0.0185, 0.0185, 0.0068], [0.5021, 0.3451, 0.068, 0.0412, 0.0118, 0.0118, 0.0056, 0.0049], [0.6791, 0.2498, 0.0263, 0.0097, 0.0067, 0.0059, 0.0059, 0.0052], [0.7238, 0.1425, 0.0865, 0.017, 0.0071, 0.0034, 0.0034, 0.003], [0.5089, 0.3087, 0.0884, 0.0287, 0.0154, 0.005, 0.0041, 0.0041], [0.3613, 0.2191, 0.2191, 0.0711, 0.0297, 0.0159, 0.0085, 0.007]], "ranks": {"Python": [47922, 201663, 108274, 197169, 57087, 87507, 2544, 14058, 11207, 15816, 2155, 50333, 32656, 30303, 15377, 33066, 29206, 20993, 42593, 123841, 46416, 133974, 97816, 57627, 50345, 25371, 12862, 5759, 5882, 5854, 7083, 8608, 8164, 4319, 2369, 225, 27, 29, 20, 2, 1, 1, 1, 3, 7, 11, 10, 6, 1, 62, 244, 30, 14, 18, 11, 3, 2, 9, 22, 35, 21, 24, 17]}}, {"pos": 417, "top": [[".", " \u2013", ",", "\u2026..", "\u2026.", "\u2026\u2026", " [\u2026]", "-"], ["  \n\n", "  \n", " \u2013", "ging", "gable", " GG", " \u200b\u200b", " Gore"], ["\u2026..", " \u2013", ".", "\u2026\u2026", "\u2026.", "\u2013", "\u2026", " \u200b\u200b"], ["orgeous", " Shemale", "&eacute", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Geile", " Guta", " Gabrie", " Strec"], ["orgeous", "auss", " Guta", "auge", "ging", "dias", "@g", "ourmet"], ["auge", "ging", " Guta", "orgeous", "auss", "sWith", "dias", "zg"], ["ging", "splash", "GING", "gings", "gie", "orgeous", "itech", "sWith"], ["ging", "gie", "gings", "itech", "sdale", "GING", "athon", "gy"], ["ging", "athon", "itech", "gie", "egger", "iewicz", "gings", "gy"], ["itech", "gie", "ging", "GING", " Gabrie", "-&", "orgeous", "athon"], ["-&", "ging", "gie", "GING", "&nbsp", "itech", "gy", "/&"], ["itech", "egger", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "swire", " Gabrie", "gie", "untlet", "ularity"], ["itech", "ging", " Gabrie", "gie", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "untlet", "ewire", "ularity"], [" Gabrie", "itech", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "ularity", "-esque", " Palav", "ging", " Hidal"], ["-&", "-esque", "ging", "GING", " Gabrie", "gie", " sorta", "though"], ["-esque", " Gabrie", " comfy", " anyways", " busted", " veggies", "\u62e5\u6709\u7740", "-lite"], ["-esque", "ging", "gie", "-ish", "-tech", "tech", "GING", "-&"], ["-esque", "-tech", "itech", "ging", "gie", "tech", "-ish", "-big"], ["-esque", " Gabrie", "itech", "GED", "GING", "gie", "-&", ".gg"], ["-&", "-esque", "GING", "GED", "ging", "edly", "ace", "/&"], ["Though", "-&", "edly", "though", "-esque", "ed", "GING", "GED"], [" Gabrie", "GED", "edly", "GING", "itech", "ace", "acious", "ging"], ["edly", "GED", "ured", "-&", "ace", "GING", "acious", "-esque"], ["edly", "ed", " --", "-&", "id", "ured", "Though", "cha"], [" \n\n", "\n\n", "Though", "-&", "edly", " \r\n\r\n", "though", "   \n\n"], ["edly", "\u5565", "acious", "itech", "-esque", "GED", "-tech", "ily"], ["\n\n", "edly", " \n\n", "\u5565", "ed", "-esque", "iga", "acious"], ["\n\n", " \n\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\n", "   \n\n"], [" \n\n", " __", " **", " ____", "\n\n", " ...", "__", "   \n\n"], [" even", " @", " -", " \n\n", " arguably", "ed", " **", " --"], [" even", " -", "ed", " arguably", " essentially", " power", " --", " @"], ["-centric", "-heavy", "-powered", "-blocking", "-lock", "-driven", "edly", " tech"], ["-centric", "otech", "-heavy", "ithub", "tech", "/non", "fuck", "edly"], ["-centric", "-enabled", "-lock", "-blocking", "-heavy", "\u505c\u6ede", "fuck", "emic"], ["-centric", "-blocking", "\u505c\u6ede", "\u9650\u5236", "-enabled", "fuck", "\u7684\u9650\u5236", "-heavy"], ["\u9650\u5236", "-lock", "locked", "\u9501", "-centric", "-blocking", "\u7684\u9650\u5236", "-enabled"], ["\u9650\u5236", "\u7684\u9650\u5236", "-blocking", "\u9650\u5236\u7684", "\u9501", "\u9650\u5236\u4e86", "-lock", "\u53d7\u9650"], ["\u9650\u5236", "\u9501", "\u7684\u9650\u5236", "-lock", "\u675f\u7f1a", "locked", "\u9650\u5236\u4e86", "-blocking"], ["\u9650\u5236", "-lock", "\u9501", "\u7684\u9650\u5236", "-blocking", "locked", " mutex", "-thread"], ["-lock", "\u9650\u5236", "\u9501", "-blocking", " mutex", "\u7684\u9650\u5236", "locked", "-thread"], ["-lock", "\u9650\u5236", "-blocking", "\u9501", "\u7684\u9650\u5236", " mutex", "\u5236\u7ea6", " bottleneck"], ["\u9650\u5236", "-lock", "\u7684\u9650\u5236", "-blocking", "\u53d7\u9650", "\u9501", "\u9650\u5236\u7684", "\u9650\u5236\u4e86"], ["\u9650\u5236", "-lock", "-blocking", "\u7684\u9650\u5236", "\u9650\u5236\u7684", "\u9650\u5236\u4e86", " restriction", " restrictive"], ["\u9650\u5236", "-lock", "-blocking", "\u9650\u5236\u7684", "\u7684\u9650\u5236", "\u9650\u5236\u4e86", " restrictive", "\u53d7\u9650"], ["-lock", "-blocking", "\u9650\u5236", "\u7684\u9650\u5236", "\u9650\u5236\u7684", "\u9650\u5236\u4e86", " restrictive", "\u5236\u7ea6"], ["-lock", "-blocking", "\u9650\u5236", "-controlled", "\u9650\u5236\u7684", "-enabled", "\u53d7\u9650", "\u7684\u9650\u5236"], ["\u9650\u5236", "-blocking", "-lock", "\u9650\u5236\u7684", "\u53d7\u9650", "\u7684\u9650\u5236", "-enabled", "\u9650\u5236\u4e86"], ["-blocking", "\u53d7\u9650", "\u9650\u5236\u7684", "-lock", "\u9650\u5236", "-dependent", "-controlled", "-enabled"], ["-controlled", "-enabled", "\u53d7\u9650", "-blocking", "-dependent", "-lock", "-dominated", "-limit"], ["\u53d7\u9650", "-controlled", "-blocking", "\u53d7\u5236", "-enabled", "-dependent", " constrained", "-dominated"], ["-controlled", "\u53d7\u9650", " constrained", "-dependent", "-enabled", "-blocking", "-dominated", "\u53d7\u5236"], [" constrained", "\u53d7\u9650", "-controlled", "\u53d7\u5236", "-blocking", "-dependent", "-dominated", "-bound"], [" constrained", "\u53d7\u9650", "-controlled", "\u53d7\u5236", "-enabled", "-blocking", "-bound", "-dominated"], [" constrained", "-lock", "\u53d7\u9650", "locked", "-bound", "-controlled", "-blocking", "-thread"], [" constrained", "\u53d7\u9650", "locked", "-lock", "-bound", "-controlled", "-blocking", "\u53d7\u5236"], [" constrained", "\u53d7\u9650", "-bound", "-lock", "-controlled", "locked", "\u53d7\u5236", "-blocking"], [" constrained", "-lock", "locked", "-blocking", "\u53d7\u9650", "-bound", "\u9501", "\u675f\u7f1a"], [" constrained", "-bound", "-lock", "locked", "\u53d7\u9650", "-con", "\u675f\u7f1a", "\u9501"], [" constrained", "-bound", "-con", "-lock", "locked", "\u53d7\u9650", " bound", " locked"], [" constrained", "-bound", "-con", "locked", "-lock", " bound", "-controlled", "\u53d7\u9650"], ["IL", "-bound", " constrained", "-con", "IB", "IG", "RL", "Con"]], "p": [[0.7774, 0.0301, 0.0161, 0.0063, 0.0059, 0.0043, 0.0032, 0.0032], [0.0593, 0.0263, 0.0232, 0.0097, 0.0062, 0.0052, 0.0043, 0.004], [0.338, 0.1097, 0.0968, 0.0968, 0.0625, 0.0379, 0.0261, 0.0116], [0.016, 0.0059, 0.0043, 0.0028, 0.0028, 0.0028, 0.0025, 0.0023], [0.0294, 0.0148, 0.0139, 0.0108, 0.0084, 0.0062, 0.0058, 0.0051], [0.009, 0.009, 0.0085, 0.007, 0.0055, 0.0043, 0.0038, 0.0035], [0.0599, 0.0195, 0.0134, 0.0134, 0.0126, 0.0118, 0.0056, 0.0056], [0.0454, 0.0138, 0.0108, 0.0101, 0.0089, 0.0058, 0.0054, 0.0048], [0.0384, 0.0219, 0.0141, 0.0133, 0.0103, 0.0071, 0.0071, 0.0049], [0.0054, 0.0051, 0.0048, 0.0033, 0.0033, 0.0018, 0.0015, 0.0012], [0.0873, 0.0723, 0.0195, 0.0183, 0.0081, 0.0056, 0.0056, 0.0046], [0.0051, 0.0022, 0.0021, 0.002, 0.0019, 0.0019, 0.0019, 0.0015], [0.0059, 0.0043, 0.0043, 0.0038, 0.0022, 0.002, 0.002, 0.0019], [0.0043, 0.0041, 0.0026, 0.0025, 0.0019, 0.0018, 0.0015, 0.0014], [0.0126, 0.0111, 0.0046, 0.0036, 0.0032, 0.0028, 0.0026, 0.0025], [0.0173, 0.0082, 0.0028, 0.0018, 0.0017, 0.0017, 0.0016, 0.0014], [0.061, 0.0094, 0.006, 0.0057, 0.005, 0.0039, 0.0037, 0.0034], [0.0177, 0.0121, 0.0078, 0.0054, 0.0051, 0.0045, 0.0039, 0.0037], [0.0143, 0.0099, 0.0064, 0.0064, 0.0047, 0.0036, 0.0036, 0.0027], [0.0133, 0.0103, 0.0091, 0.0081, 0.0049, 0.0046, 0.004, 0.0038], [0.0156, 0.0114, 0.0083, 0.0074, 0.0051, 0.0047, 0.0042, 0.0037], [0.0065, 0.0057, 0.0054, 0.0051, 0.0051, 0.0031, 0.0029, 0.0025], [0.0092, 0.0046, 0.0044, 0.0041, 0.0034, 0.0032, 0.0032, 0.003], [0.0112, 0.0064, 0.0044, 0.0044, 0.0034, 0.0034, 0.003, 0.003], [0.0188, 0.0177, 0.0122, 0.0107, 0.0084, 0.0065, 0.0037, 0.0037], [0.0136, 0.01, 0.005, 0.0047, 0.0044, 0.0037, 0.0025, 0.0025], [0.0371, 0.0121, 0.0078, 0.0044, 0.0044, 0.0042, 0.0037, 0.0035], [0.5789, 0.3511, 0.0073, 0.0064, 0.0053, 0.0044, 0.0029, 0.0029], [0.5702, 0.1535, 0.0413, 0.0172, 0.0162, 0.0162, 0.0092, 0.0087], [0.781, 0.0208, 0.0152, 0.0143, 0.0134, 0.0134, 0.0092, 0.0087], [0.6922, 0.0568, 0.0223, 0.0127, 0.0087, 0.0082, 0.0064, 0.0053], [0.0483, 0.0243, 0.0228, 0.0214, 0.0178, 0.0178, 0.0167, 0.0147], [0.094, 0.0185, 0.0127, 0.012, 0.0077, 0.0068, 0.0068, 0.0068], [0.0158, 0.0102, 0.0055, 0.004, 0.004, 0.0031, 0.0027, 0.0026], [0.0071, 0.0043, 0.0035, 0.0031, 0.0024, 0.0023, 0.0023, 0.002], [0.0083, 0.0032, 0.0029, 0.0029, 0.0027, 0.0027, 0.0027, 0.0025], [0.0149, 0.0055, 0.0051, 0.0051, 0.0048, 0.0035, 0.0028, 0.0026], [0.0135, 0.0119, 0.0093, 0.0087, 0.0082, 0.0082, 0.0072, 0.0056], [0.0818, 0.0363, 0.022, 0.0151, 0.0142, 0.0134, 0.0111, 0.0104], [0.1778, 0.0542, 0.0309, 0.0309, 0.0187, 0.0176, 0.0137, 0.0121], [0.1566, 0.0695, 0.0509, 0.029, 0.024, 0.024, 0.0212, 0.0187], [0.1932, 0.1247, 0.0553, 0.0431, 0.0336, 0.0261, 0.0204, 0.0159], [0.2859, 0.0819, 0.0467, 0.0387, 0.025, 0.025, 0.0183, 0.0183], [0.3001, 0.1418, 0.0382, 0.0382, 0.0316, 0.0262, 0.0192, 0.018], [0.2419, 0.1143, 0.0693, 0.0612, 0.042, 0.0395, 0.0371, 0.0271], [0.1595, 0.1242, 0.0967, 0.0753, 0.0665, 0.0665, 0.0295, 0.023], [0.1192, 0.0988, 0.0988, 0.0497, 0.0412, 0.0387, 0.0283, 0.0266], [0.1452, 0.1364, 0.0827, 0.0345, 0.0304, 0.0286, 0.0237, 0.0209], [0.0927, 0.0769, 0.0722, 0.0528, 0.0411, 0.0341, 0.0301, 0.0283], [0.1048, 0.0869, 0.072, 0.0561, 0.0495, 0.0362, 0.0362, 0.034], [0.1213, 0.107, 0.107, 0.0945, 0.0834, 0.0326, 0.0271, 0.0254], [0.2292, 0.139, 0.0744, 0.0657, 0.0545, 0.0481, 0.0481, 0.0227], [0.3082, 0.1456, 0.0779, 0.0688, 0.0607, 0.0473, 0.0417, 0.0368], [0.3372, 0.2626, 0.1241, 0.0664, 0.0403, 0.0314, 0.0148, 0.0148], [0.3449, 0.3044, 0.112, 0.0321, 0.0283, 0.0283, 0.025, 0.0152], [0.2479, 0.2188, 0.1171, 0.1034, 0.0553, 0.0553, 0.0488, 0.0231], [0.3122, 0.2146, 0.1302, 0.1014, 0.0789, 0.029, 0.02, 0.0155], [0.5151, 0.2433, 0.0697, 0.0373, 0.0256, 0.0176, 0.0107, 0.0094], [0.8, 0.0579, 0.0398, 0.0213, 0.0147, 0.0147, 0.0129, 0.0037], [0.7768, 0.1051, 0.0438, 0.0161, 0.0076, 0.0067, 0.0043, 0.0036], [0.7667, 0.1938, 0.0091, 0.0055, 0.0052, 0.0033, 0.0031, 0.0013], [0.4575, 0.3145, 0.0795, 0.013, 0.0084, 0.0058, 0.0058, 0.0045], [0.5247, 0.052, 0.0488, 0.0123, 0.0102, 0.008, 0.0075, 0.0062]], "ranks": {"Python": [19516, 121726, 119867, 200565, 178299, 206521, 115079, 88479, 57903, 64622, 27371, 109178, 98356, 107211, 62694, 98937, 25628, 9869, 14568, 32943, 3543, 25395, 15630, 2290, 280, 36, 40, 307, 97, 154, 129, 961, 1602, 908, 1960, 1792, 231, 371, 680, 102, 101, 131, 331, 519, 524, 494, 668, 1206, 2045, 3710, 12954, 3710, 2506, 1819, 1279, 657, 103, 95, 150, 131, 124, 190, 40]}}, {"pos": 418, "top": [["s", "\u2026..", " [\u2026]", "\u200b", ".", "\u044b", ",", " \u200b"], ["s", "\u200b", " \u200b\u200b", "\u044b", "sen", "schild", "sens", "ske"], ["s", "\u2026..", "\u044b", "\u200b", ".", "schild", " \u200b\u200b", "\u2026."], ["satz", "schrift", "s", "scheid", "sier", "sik", "s\u00e1g", "sula"], ["s", "\u044b", "schild", "sik", "ske", "siz", "sir", "satz"], ["s", "siz", "\u044b", "sir", "sier", "ske", "sik", "CIL"], ["s", "nya", "ske", "siz", "\u044b", "sand", "som", "sor"], ["s", "\\n", "\u044b", "  \n\n", "  \n", "   \n", "sens", "sand"], ["s", "  \n\n", "   \n\n", "scheid", "\\n", "schild", "&nbsp", "!."], ["s", "siz", "\\n", "CIL", "s\u00e1g", "ske", "\u044b", "scheid"], ["s", "\\n", "&nbsp", "\\.", "...", " [...]", "...\\", ","], ["s", "&nbsp", "\\n", " [...]", "ske", "-esque", "scheid", "sword"], ["s", "-esque", "ates", "ized", "ske", "ary", "ASIL", "nya"], ["s", "-esque", " entirety", " atop", "ske", ",", "siz", "ty"], ["s", "-esque", "ty", " entirety", " atop", ",", "l", "n"], ["s", "-esque", " entirety", " incredibly", " atop", " amongst", " whilst", "siz"], ["s", "-esque", " entirety", "siz", " atop", "tech", "sort", "n"], ["s", "-esque", "tech", "siz", "-ish", "ske", "nya", "sort"], ["s", "-esque", "ske", "siz", "tech", "-ish", "spawn", "sort"], ["s", "-esque", "ty", "si", "tech", "sort", "-ish", "nya"], ["s", "  \n\n", " \n\n", "   \n\n", "d", "l", "n", "r"], ["iverse", "ASIL", "s", "-esque", "abyrinth", "spawn", "ated", "LOCKS"], ["s", "-esque", "ated", " ...\\", "iverse", "acious", "ASIL", "ized"], ["s", " ...", " &", "ated", " barely", "ized", " |", " ."], [" \n\n", "  \n\n", " ...", "   \n\n", "s", " ...\\", " \n", "\n\n"], [" ___", " ____", " __", " \n\n", " ...\\", " _____", "Python", " ..."], [" ___", " ____", " __", " ...", " _.", " _____", " _:", "s"], [" \n\n", " _", "\n\n", " __", " ...", " @", " ___", " ____"], [" __", " ____", " \n", " ___", " _", " \n\n", " _____", " ..."], [" \n", " ...", " ____", " __", " ...\\", " ___", " \n\n", " _____"], [" ...", " \n", " .", " ...\\", " \n\n", "s", " ____", " __"], [" ...", " \n", " .", " only", "s", " heavily", " -", " \n  \n"], [" .", " only", "s", " -", " barely", " heavily", " even", " \n"], ["s", " locked", " \n  \n", " lock", " barely", " only", "-heavy", " nowhere"], [" \n  \n", " \n    \n", " bottleneck", "\u7684\u9650\u5236", "s", " **", " locked", "  \n\n"], ["\u2011", " \n  \n", "\u7684\u9650\u5236", " \n", " .**", " \n    \n", "s", " restrict"], [" bottleneck", "\u7684\u9650\u5236", "\u2011", " *", "s", " restrict", " Python", "\u9650\u5236"], [" lock", " locked", " bottleneck", "\u7684\u9650\u5236", " mutex", " locking", "mutex", "locked"], [" lock", " locked", " bottleneck", "\u7684\u9650\u5236", " restrict", " locking", " blocking", " constrained"], [" lock", " bottleneck", " locked", "\u9650\u5236", "\u7684\u9650\u5236", " restrict", "\u9501", "\u2011"], [" lock", " locked", " bottleneck", " locking", "\u9650\u5236", "\u9501", " mutex", "\u7684\u9650\u5236"], [" lock", " locked", " locking", " mutex", " locks", " bottleneck", "-lock", "\u9501"], [" lock", " locked", " bottleneck", " locking", "-lock", " mutex", " locks", " restriction"], [" lock", " locked", " bottleneck", " locking", " locks", "-lock", " restriction", " mutex"], [" lock", " locked", " bottleneck", " restriction", " restrictions", " restrictive", " locking", " restrict"], [" locked", " lock", " bottleneck", " restrictive", " restriction", " locking", " restricted", " restrict"], [" bottleneck", " locked", " lock", " restriction", " restrictive", " constrained", " locking", "-blocking"], ["-controlled", " lock", " bottleneck", " locked", "-blocking", "-dominated", " restriction", " constrained"], ["-controlled", "-dominated", " lock", " bottleneck", " restriction", "-bound", " locked", "-blocking"], ["-controlled", "-dominated", "-bound", "-lock", "-blocking", "-dependent", " bottleneck", "-driven"], ["-controlled", "-dominated", "-dependent", "-enabled", " constrained", "-blocking", "-bound", "-driven"], ["-controlled", " constrained", "-dominated", "-dependent", "\u53d7\u9650", "-blocking", "-bound", "-enabled"], ["-controlled", "-dependent", "-dominated", " constrained", "-enabled", "-driven", "-bound", "-shared"], [" constrained", "-controlled", "-dependent", "-dominated", "\u53d7\u9650", "-bound", "\u53d7\u5236", "-blocking"], [" constrained", "\u53d7\u9650", "-controlled", "-dependent", "-bound", "-dominated", "\u53d7\u5236", "\u675f\u7f1a"], [" constrained", "\u53d7\u9650", "-bound", "-controlled", "-lock", "locked", "-blocking", "-dependent"], [" constrained", "-bound", "\u53d7\u9650", "-controlled", "locked", "-lock", "-dominated", "-dependent"], [" constrained", "-bound", "\u53d7\u9650", "-controlled", "-dominated", "locked", "-dependent", "-lock"], [" constrained", "locked", "-bound", "-lock", "-blocking", " locked", "\u675f\u7f1a", "\u53d7\u9650"], ["-bound", " constrained", " bound", "locked", "-lock", " locked", "-con", "\u53d7\u9650"], ["-bound", " constrained", " bound", "-con", "bound", "locked", " locked", " Bound"], ["-bound", "-con", " constrained", " bound", "-held", "-b", "-controlled", "locked"], ["-bound", "-", "-con", "-b", "-block", "-held", "-l", "-controlled"]], "p": [[0.9997, 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], [0.9999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0386, 0.022, 0.0133, 0.0118, 0.0118, 0.0092, 0.0086, 0.0086], [0.9992, 0.0001, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9989, 0.0002, 0.0001, 0.0001, 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.9986, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9886, 0.0005, 0.0005, 0.0003, 0.0003, 0.0002, 0.0002, 0.0002], [0.9935, 0.0003, 0.0003, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.9994, 0.0004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9875, 0.0004, 0.0003, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.977, 0.0006, 0.0003, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001], [0.9553, 0.0047, 0.0008, 0.0003, 0.0003, 0.0003, 0.0002, 0.0002], [0.9871, 0.0016, 0.0003, 0.0002, 0.0002, 0.0002, 0.0001, 0.0001], [0.9669, 0.0079, 0.0015, 0.0003, 0.0003, 0.0002, 0.0002, 0.0001], [0.9958, 0.0018, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9552, 0.0128, 0.0007, 0.0005, 0.0005, 0.0004, 0.0002, 0.0002], [0.9781, 0.0066, 0.0004, 0.0003, 0.0001, 0.0001, 0.0001, 0.0001], [0.9875, 0.0026, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.8559, 0.0214, 0.0147, 0.0054, 0.0037, 0.0035, 0.0033, 0.0027], [0.0096, 0.009, 0.0062, 0.0055, 0.004, 0.004, 0.0038, 0.0031], [0.0684, 0.0143, 0.0135, 0.0064, 0.0056, 0.005, 0.0044, 0.0039], [0.4015, 0.2435, 0.0057, 0.0051, 0.0042, 0.0039, 0.0037, 0.0037], [0.6869, 0.0639, 0.0439, 0.0266, 0.0207, 0.0172, 0.0104, 0.0081], [0.1277, 0.12, 0.0824, 0.0366, 0.0251, 0.0222, 0.0222, 0.0196], [0.1087, 0.096, 0.0902, 0.0483, 0.0228, 0.0201, 0.0157, 0.0115], [0.4575, 0.0846, 0.0747, 0.0702, 0.0513, 0.0292, 0.0258, 0.0242], [0.2077, 0.1519, 0.0764, 0.0633, 0.0559, 0.0463, 0.0318, 0.0318], [0.3031, 0.2217, 0.0868, 0.0561, 0.0465, 0.034, 0.0161, 0.0151], [0.294, 0.294, 0.0273, 0.0273, 0.0241, 0.0138, 0.0129, 0.0107], [0.1885, 0.1009, 0.0948, 0.024, 0.0212, 0.0121, 0.0121, 0.0113], [0.0665, 0.0403, 0.0216, 0.019, 0.0179, 0.0148, 0.0148, 0.0148], [0.0122, 0.0069, 0.0065, 0.0054, 0.0054, 0.0051, 0.0051, 0.0051], [0.0397, 0.0241, 0.0057, 0.005, 0.005, 0.005, 0.005, 0.0047], [0.0244, 0.0148, 0.0102, 0.009, 0.0084, 0.0079, 0.007, 0.0066], [0.0226, 0.0226, 0.0199, 0.0129, 0.0107, 0.0078, 0.0078, 0.0069], [0.0789, 0.0509, 0.0329, 0.0329, 0.0329, 0.0199, 0.0176, 0.0165], [0.099, 0.0771, 0.053, 0.0439, 0.0284, 0.0235, 0.0221, 0.0195], [0.0868, 0.0526, 0.0465, 0.0385, 0.0362, 0.0249, 0.0234, 0.0206], [0.1987, 0.1132, 0.0535, 0.0324, 0.0305, 0.0286, 0.0253, 0.0237], [0.2458, 0.1091, 0.0548, 0.0401, 0.0333, 0.0312, 0.0312, 0.0259], [0.2045, 0.0853, 0.0664, 0.0624, 0.0486, 0.0429, 0.0314, 0.0229], [0.1892, 0.1147, 0.0789, 0.0509, 0.0309, 0.0273, 0.0273, 0.0212], [0.1494, 0.1027, 0.1027, 0.0585, 0.0428, 0.0378, 0.0355, 0.0313], [0.1785, 0.1083, 0.0843, 0.0398, 0.0398, 0.0374, 0.0274, 0.0274], [0.1039, 0.0861, 0.0809, 0.0359, 0.0359, 0.0359, 0.0317, 0.0298], [0.0902, 0.0702, 0.066, 0.062, 0.04, 0.0353, 0.0353, 0.0332], [0.1415, 0.0758, 0.0489, 0.0459, 0.0358, 0.0336, 0.0336, 0.0316], [0.2154, 0.1153, 0.0545, 0.0481, 0.0424, 0.0424, 0.0424, 0.031], [0.5373, 0.0934, 0.0642, 0.0343, 0.0303, 0.0267, 0.0236, 0.0208], [0.3364, 0.1237, 0.1092, 0.0964, 0.0516, 0.0402, 0.0313, 0.0244], [0.3705, 0.1983, 0.1363, 0.0827, 0.0304, 0.0237, 0.0237, 0.0144], [0.5769, 0.1459, 0.0885, 0.0474, 0.0369, 0.0197, 0.0174, 0.012], [0.7673, 0.0916, 0.0491, 0.0141, 0.0124, 0.0109, 0.0109, 0.0066], [0.7611, 0.0487, 0.0379, 0.0334, 0.023, 0.023, 0.0109, 0.0085], [0.5754, 0.1649, 0.0687, 0.0535, 0.0417, 0.0197, 0.0119, 0.0082], [0.6604, 0.1148, 0.1013, 0.0478, 0.0107, 0.0107, 0.0083, 0.0065], [0.5856, 0.1901, 0.1307, 0.0257, 0.0156, 0.0122, 0.0065, 0.0051], [0.4914, 0.4337, 0.0191, 0.0131, 0.007, 0.007, 0.007, 0.0033], [0.7731, 0.1955, 0.0182, 0.0052, 0.0017, 0.0015, 0.0008, 0.0006], [0.9042, 0.0397, 0.0188, 0.0083, 0.0057, 0.0024, 0.0024, 0.0019], [0.8027, 0.1086, 0.0331, 0.0167, 0.0058, 0.0035, 0.0026, 0.0019]], "ranks": {"Python": [74747, 204992, 84453, 98387, 24333, 47389, 5912, 5509, 5979, 2962, 704, 838, 719, 1506, 1984, 2735, 2331, 366, 801, 1577, 203, 319, 85, 98, 42, 6, 9, 49, 24, 38, 19, 68, 138, 29, 22, 17, 6, 28, 37, 22, 41, 43, 84, 119, 126, 116, 155, 258, 438, 1039, 3015, 1000, 940, 891, 628, 404, 80, 77, 141, 101, 106, 109, 324]}}, {"pos": 419, "top": [[" \u2013", "<|endoftext|>", ".", ",", "\u2013", "@", "[", "\""], ["(\\\"", "\uff0e", "\\\"", " \\\"", ":\\\"", "@", ",\\\"", "\\\")"], ["\u2013", "\uff0e", "[", "\u2013and", " \u2013", "@", "\u2018", ","], ["(\\\"", " '\\\"", "\\\"\\", "\\\")", " \\\"", ":\\\"", "\u4f46\u4e0d\u9650\u4e8e", " \\\"{"], ["\uff0e", "(\\\"", " \uff0f", "\\\")", " --", " '\\\"", " \uff0c", ",\\\""], ["(\\\"", " \uff0f", "\uff0e", " \uff0c", " \uff1a", "@", " \u3001", "\\\")"], ["\uff0e", "(\\\"", " '\\\"", "\\\")", "\\\"", "@", " \uff0f", " --"], [" '\\\"", "(\\\"", "\\\")", ".\\\"", ",\\\"", "\uff0e", "\\\"", ":\\\""], [" '\\\"", "\uff0e", "(\\\"", "...\\", ".\\\"", "\\\")", ",\\\"", "\\-"], ["\\-", " '\\\"", "...\\", "_\\", " \\'", "\\\")", "\\\"\\", " requisite"], ["\\-", " --", "...\\", " requisite", " '\\\"", "\uff0e", " \\'", "\\\")"], [" '\\\"", " --", " '--", "\\-", "\u4f46\u4e0d\u9650\u4e8e", " requisite", "\uff0d\uff0d", " \ufffd"], [" '\\\"", " '--", " --", " requisite", "\u4f46\u4e0d\u9650\u4e8e", "(\\\"", ")--", " '}"], [" requisite", " '\\\"", " '--", " --", ")--", " swiftly", "\u5373\u4fbf", " reliant"], [" --", " requisite", " swiftly", " ostensibly", "\\-", "\u5018\u82e5", " myriad", "\u5373\u4fbf"], [" --", " requisite", " swiftly", " ostensibly", " myriad", " atop", " sprawling", " entirety"], [" --", " requisite", " myriad", " swiftly", " disparate", " ostensibly", " entirety", " akin"], [" --", " requisite", " myriad", " '\\\"", " entirety", " reliant", " sprawling", " swiftly"], [" --", " myriad", " requisite", " '\\\"", " entirety", " disparate", " '--", " atop"], [" --", " myriad", " requisite", " swiftly", "\u5373\u4fbf", " '--", " entirety", " '\\\""], [" --", " myriad", " requisite", " swiftly", "\u5373\u4fbf", " utterly", " entirety", " burgeoning"], [" --", " '\\\"", " '--", " myriad", " swiftly", " disparate", " requisite", " entirety"], [" --", " '\\\"", " myriad", " '--", " ``", " swiftly", " requisite", " entirety"], [" --", " myriad", " swiftly", " requisite", " ultimately", " ``", " heavily", " entirety"], [" --", " \n\n", " \r\n\r\n", " myriad", " requisite", " __", "   \n\n", " swiftly"], [" --", " __", " ___", " **'", " myriad", " '\\\"", " _", " '--"], [" --", " __", " ___", " _", " heavily", " myriad", " entirety", " '\\\""], [" --", " __", " _", " ___", " \n\n", " heavily", " ---", " ______"], [" --", " __", " ___", " \\\"", " heavily", " _", " ______", " massive"], [" --", " __", " \n", " \n  \n", " heavily", " ___", " \\\"", " massive"], [" --", " heavily", " .", " even", " ", " massive", " __", " \\\""], [" ", " even", " --", " heavily", " .", " long", " ,", " massive"], [" even", " --", " heavily", " .", " yet", " massive", " long", " over"], [" heavily", " even", " \u2014", " \u2013", " yet", " --", " massive", " "], [" heavily", " --", " \u2014", " .", " massively", " massive", " yet", " even"], [" \u2014", " .", " \u2013", " heavily", " --", " yet", " .\"", " essentially"], [" \u2014", " .", " heavily", " --", " .\"", " yet", " mainstream", " \u2013"], [" \u2014", " .", " \u2013", " heavily", " .\"", " --", " even", " yet"], [" \u2014", " .", " mainstream", " \u2013", " core", " --", " traditional", " system"], [" Python", " \u2014", " .", " \u2013", " mainstream", " core", " software", " .\""], [" Python", " software", " .", " .\"", " mainstream", " system", " performance", " systems"], [" Python", " software", " \u2014", " systems", " system", " mainstream", " programming", " \u2013"], [" software", " systems", " Python", " mainstream", " programming", " system", " operating", " environment"], [" systems", " mainstream", " software", " system", " core", " operating", " environments", " Python"], [" systems", " mainstream", " core", " software", " operating", " system", " environments", " environment"], [" systems", " mainstream", " core", " system", " environments", " operating", " operations", " software"], [" mainstream", " environments", " systems", " environment", " traditional", " operations", " core", " software"], [" mainstream", " environments", " environment", " systems", " traditional", " operations", " system", " standard"], [" mainstream", " environment", " environments", " systems", " system", " framework", " frameworks", " traditional"], [" mainstream", " environments", " environment", " systems", " frameworks", " setups", " workflows", " system"], [" environments", " frameworks", " environment", " workflows", " framework", " contexts", " ecosystem", " setups"], [" environment", " environments", " runtime", " frameworks", " framework", " workflows", " CPU", " contexts"], [" environment", " runtime", " environments", " frameworks", " framework", " CPU", " workflows", " ecosystem"], [" runtime", " environment", " environments", " execution", " CPU", " frameworks", " Python", " framework"], [" runtime", " environment", " execution", " thread", " environments", " threads", " Python", "MainThread"], [" runtime", " environment", " execution", " Python", " thread", " environments", " loop", " python"], [" Python", " python", "Python", " runtime", " execution", "/python", " environment", "python"], [" interpreter", " runtime", " Python", "Interpreter", " environment", "interpreter", " execution", "Python"], [" interpreter", "Interpreter", " process", "interpreter", " environment", " Python", " runtime", " Interpreter"], [" interpreter", " process", " environment", "Interpreter", "interpreter", " interpreted", " interpre", " interpretation"], [" environment", " interpreter", " process", " runtime", " Python", " interpretation", " execution", " interpreted"], [" environment", " process", " interpreter", " runtime", " execution", " Python", " loop", " context"], [" environment", " process", " interpreter", " execution", " runtime", " context", " loop", " Python"]], "p": [[0.3143, 0.158, 0.1231, 0.0659, 0.0619, 0.0201, 0.0189, 0.0167], [0.2778, 0.1909, 0.1685, 0.0312, 0.0293, 0.0243, 0.0228, 0.0167], [0.2409, 0.1655, 0.1461, 0.0886, 0.0609, 0.0537, 0.0326, 0.027], [0.2464, 0.1319, 0.08, 0.0663, 0.055, 0.0378, 0.0294, 0.026], [0.2694, 0.2378, 0.0565, 0.0388, 0.0267, 0.0251, 0.0221, 0.0172], [0.1031, 0.1031, 0.091, 0.0709, 0.0519, 0.0487, 0.0245, 0.0168], [0.2929, 0.0449, 0.035, 0.0309, 0.0256, 0.024, 0.0187, 0.0187], [0.1809, 0.1597, 0.0587, 0.043, 0.0356, 0.0335, 0.0335, 0.023], [0.1191, 0.0871, 0.0562, 0.0412, 0.0363, 0.025, 0.0234, 0.0207], [0.2617, 0.1161, 0.0243, 0.0178, 0.0139, 0.013, 0.013, 0.0122], [0.238, 0.0602, 0.0565, 0.0322, 0.0322, 0.0322, 0.0221, 0.0134], [0.1284, 0.057, 0.0253, 0.0185, 0.0174, 0.0163, 0.0099, 0.0087], [0.0714, 0.0263, 0.0232, 0.0192, 0.0097, 0.0055, 0.0052, 0.0046], [0.0345, 0.0269, 0.0153, 0.0119, 0.0072, 0.0068, 0.0064, 0.0064], [0.3518, 0.1008, 0.0198, 0.0145, 0.01, 0.0088, 0.0083, 0.0073], [0.357, 0.0797, 0.0167, 0.0157, 0.0138, 0.0115, 0.0061, 0.0058], [0.1778, 0.0789, 0.0577, 0.0212, 0.0129, 0.0114, 0.0107, 0.0094], [0.1371, 0.0174, 0.0154, 0.0077, 0.0077, 0.0068, 0.0068, 0.006], [0.0718, 0.0133, 0.0117, 0.0091, 0.0076, 0.0067, 0.0067, 0.0055], [0.3569, 0.0259, 0.0201, 0.0115, 0.0084, 0.0079, 0.0058, 0.0048], [0.4047, 0.0376, 0.0275, 0.0259, 0.0122, 0.0054, 0.0045, 0.004], [0.079, 0.0166, 0.0073, 0.005, 0.0033, 0.0029, 0.0029, 0.0029], [0.6124, 0.0087, 0.0072, 0.0068, 0.0068, 0.0041, 0.0039, 0.0027], [0.7746, 0.0086, 0.0043, 0.0038, 0.003, 0.0028, 0.0026, 0.0019], [0.7506, 0.0121, 0.0107, 0.0083, 0.0069, 0.0045, 0.0042, 0.0039], [0.5868, 0.0425, 0.0084, 0.0048, 0.004, 0.0035, 0.0031, 0.0031], [0.5302, 0.0674, 0.0125, 0.0103, 0.0071, 0.0063, 0.0043, 0.0036], [0.7353, 0.1278, 0.0236, 0.0162, 0.0072, 0.0036, 0.0022, 0.0019], [0.4513, 0.2269, 0.0211, 0.0136, 0.0113, 0.0106, 0.0064, 0.006], [0.2657, 0.1944, 0.0631, 0.0218, 0.0218, 0.017, 0.0124, 0.0097], [0.1491, 0.0584, 0.0548, 0.0276, 0.0178, 0.0178, 0.0167, 0.0122], [0.0499, 0.0499, 0.0499, 0.044, 0.0365, 0.0172, 0.0152, 0.0152], [0.0697, 0.051, 0.0373, 0.0329, 0.0226, 0.0137, 0.0129, 0.0129], [0.0796, 0.04, 0.0332, 0.0228, 0.0201, 0.0178, 0.0167, 0.0147], [0.0877, 0.05, 0.0251, 0.0196, 0.0162, 0.0134, 0.0126, 0.0098], [0.185, 0.0874, 0.0601, 0.0468, 0.025, 0.0152, 0.0143, 0.0087], [0.2198, 0.0407, 0.0297, 0.0279, 0.0132, 0.0116, 0.0097, 0.0097], [0.0918, 0.0593, 0.0383, 0.0181, 0.017, 0.0159, 0.0103, 0.0097], [0.0609, 0.0369, 0.0198, 0.0174, 0.0154, 0.0154, 0.0154, 0.0154], [0.0406, 0.0316, 0.0297, 0.0262, 0.0217, 0.0204, 0.018, 0.0124], [0.0775, 0.0533, 0.0222, 0.0143, 0.0127, 0.0127, 0.0119, 0.0112], [0.0925, 0.0767, 0.072, 0.03, 0.0182, 0.0171, 0.0125, 0.0125], [0.0798, 0.0661, 0.0455, 0.0312, 0.0243, 0.0202, 0.0178, 0.013], [0.0981, 0.0384, 0.0319, 0.0248, 0.0219, 0.0182, 0.0141, 0.0125], [0.0716, 0.036, 0.0299, 0.0263, 0.0218, 0.0218, 0.016, 0.0141], [0.0583, 0.0427, 0.0259, 0.0215, 0.0167, 0.0167, 0.0157, 0.0148], [0.062, 0.0483, 0.0426, 0.0376, 0.0201, 0.0157, 0.0147, 0.013], [0.0989, 0.0529, 0.0497, 0.0439, 0.0302, 0.0134, 0.0134, 0.0134], [0.0677, 0.0677, 0.0636, 0.0527, 0.0182, 0.0133, 0.0125, 0.011], [0.1223, 0.0578, 0.035, 0.035, 0.0309, 0.0188, 0.0146, 0.0137], [0.0849, 0.0484, 0.0484, 0.0293, 0.0229, 0.0215, 0.0215, 0.0215], [0.2015, 0.1385, 0.0577, 0.0542, 0.0422, 0.0273, 0.0256, 0.0155], [0.2152, 0.19, 0.1152, 0.0451, 0.0398, 0.031, 0.02, 0.02], [0.2815, 0.2484, 0.133, 0.0489, 0.0204, 0.0192, 0.0159, 0.014], [0.4703, 0.2853, 0.0496, 0.0386, 0.0265, 0.0125, 0.0098, 0.0086], [0.409, 0.2189, 0.1505, 0.0711, 0.018, 0.014, 0.0109, 0.0085], [0.7642, 0.0805, 0.0431, 0.038, 0.0159, 0.0109, 0.0085, 0.0058], [0.4103, 0.1938, 0.1038, 0.1038, 0.0713, 0.0382, 0.0204, 0.0075], [0.6802, 0.1043, 0.0633, 0.0558, 0.0299, 0.0233, 0.0086, 0.0046], [0.6197, 0.1776, 0.095, 0.024, 0.0165, 0.0114, 0.01, 0.0078], [0.79, 0.1373, 0.0393, 0.0113, 0.0047, 0.0032, 0.0022, 0.002], [0.8367, 0.1283, 0.0119, 0.0072, 0.005, 0.0016, 0.0016, 0.001], [0.8147, 0.1416, 0.0149, 0.0062, 0.0048, 0.0048, 0.0018, 0.0014]], "ranks": {"Python": [33725, 115696, 67607, 173695, 69723, 138322, 67704, 74269, 60325, 59649, 31883, 91697, 120647, 109520, 69016, 71103, 44404, 37831, 38844, 79947, 27350, 46427, 29670, 15121, 12734, 3180, 2362, 1678, 1372, 2108, 4210, 6726, 7761, 4926, 3889, 377, 88, 82, 31, 1, 1, 1, 3, 8, 16, 16, 24, 37, 20, 45, 88, 20, 9, 7, 7, 4, 1, 3, 6, 9, 5, 6, 8]}}, {"pos": 420, "top": [[" \u2013", "\u2013", ".", ",", ";", "\u2013and", " ", "\u00a0"], [" \u2013", "\u2013", "\u2013and", ".", ",", ".\u2013", " ", ";"], ["\u2013", " \u2013", "\u2013and", ",", ".\u2013", ".", "\u2026", "\u2026.."], [" Shemale", " Strec", "\ufffd\ufffd", "\ufffd\ufffd", "\u4eca\u5929\u5c0f\u7f16", "\u0e97\u0eb5", " BCHP", "\u6027\u5730"], ["\u2013", "\u2013and", " \u2013", ".\u2013", "\u2013\u2013", "elog", "es", ".sp"], ["\u2013", "\u2013and", ".\u2013", " \u2013", "\u2013\u2013", "\u2014\u2014", "**\u2013", "\u2026.."], ["\u2013", "\u2014\u2014", " \u2013", "\u2013and", " \u2014\u2014", ".**", "**\u2013", "\u2013\u2013"], ["\u2013", "\u2013and", " \u2013", "\u2014\u2014", ".\u2013", "   \n", "**\u2013", ".**"], ["\u2013", ",", "\u00a0", " \u2013", ".", "\u2013and", ".[", ".\u2013"], ["\u2013", ",", "\u00a0", " \u2013", "\u2013and", ";", ".[", "\u2014"], ["\u2013", "\u00a0", ",", " \u2013", ".[", "\u2014", ";", "."], ["\u2013", " \u2013", "\u2013and", "\u00a0", "**\u2013", ".**", "\u2014\u2014", "[^"], ["\u2013", " \u2013", "\u2013and", "\u00a0", "\u2014", "\u2014\u2014", ",", ".\u2013"], ["\u2013", " \u2013", ",", "\u2014", "\u00a0", "\u2013and", "\u2014\"", "\u2014\u2014"], ["\u2013", " \u2013", "\u2014", ",", " \u2014", " ", "--", "\u00a0"], ["\u2013", " \u2013", "\u2014", " \u2014", " arguably", "\u2013and", " largely", "\u2014\u2014"], ["\u2013", " \u2013", ",", "\u00a0", "\u2014", ";", "[", ".["], ["\u2013", " \u2013", ".^", ".[", "\u2013and", " arguably", ",", "\u2014"], [" \u2013", "\u2014\u2014", "\u2013", " \u2014", "\u2014", " arguably", ".^", " ultimately"], [" \u2014", "\u2014\u2014", " --", " \u2013", "\u2014", "\u2013", "--", " largely"], ["<|endoftext|>", " --", " \u2014", "--", "  \n\n", "\u2014\u2014", "\u2014", " \n\n"], [" --", " .**", " ultimately", " largely", " arguably", " .", " merely", " overwhelmingly"], [" --", " ultimately", " .", " largely", " .**", "--", " merely", " arguably"], [" --", " ,", " .", " ultimately", " largely", "--", " '", " merely"], [" --", "--", " .", " largely", " ,", " ultimately", " _", " \n\n"], [" --", " .**", " **", " __", " .", ".__", " ultimately", " _"], [" --", " _", " __", " **", " .", " .**", " ,", ".__"], [" --", " _", " __", " ,", " .", " **", " '", " \n\n"], [" .", " --", " __", " **", " ,", " .**", " _", " ultimately"], [" .", " **", " .**", " __", " --", " \u2014", " ,", " _"], [" .", " ,", " .**", " **", " ", " --", " \u2014", " that"], [" .", " ,", " ", " that", " --", " over", " \u2014", " ultimately"], [" .", " \u2014", " ,", " ", " even", " ultimately", " rapidly", " only"], [" \u2013", " \u2014", " heavily", " rapidly", " essentially", " effectively", " largely", " under"], [" .", " heavily", " \u2014", " rapidly", " effectively", " entirely", " essentially", " arguably"], [" \u2014", " .", " \u2013", " rapidly", " heavily", " .**", " .\"", " deeply"], [" .**", " \u2014", " .", "\u6839\u672c\u65e0\u6cd5", " heavily", " rapidly", "\u2014even", " unlikely"], [" .**", " .", " inherently", " rapidly", " heavily", "\u2014even", " \u2014", " unless"], [" due", " because", " .**", " inherently", " .", "\u2014even", " unless", " heavily"], [" .**", " .", " due", " inherently", " because", " even", " unless", "\u2014even"], [" due", " .**", " .", " because", " rapidly", ".**", " even", " inherently"], [" due", " .**", " inherently", "\u2014even", " bottleneck", " because", " .", " rapidly"], [" due", " .**", " bottleneck", " inherently", " inefficient", " because", " .", " heavily"], [" due", " bottleneck", " inefficient", " inherently", " overcrow", " congest", " heavily", " notoriously"], [" due", " bottleneck", " overcrow", " heavily", " .", " without", " severely", " unless"], [" due", " even", " combined", " simultaneously", " because", " unless", " without", " heavily"], [" even", " due", "\u2014even", " ANY", " inevitably", " unless", " because", " anywhere"], [" even", " due", "\u2014even", " combined", " because", "\u54ea\u6015", "even", " unless"], [" even", "\u2014even", " due", " unless", "\u54ea\u6015", "\u5373\u4fbf", " Even", " regardless"], ["\u2014even", " even", "\u54ea\u6015", "\u5373\u4fbf", "\u54ea\u6015\u662f", "even", " Even", "\u5373\u4fbf\u662f"], ["\u2014even", "\u54ea\u6015", "\u5373\u4fbf", "\u5373\u4f7f\u662f", " even", "\u4efb\u4f55\u5f62\u5f0f\u7684", "\u54ea\u6015\u662f", "\u5373\u4fbf\u662f"], ["\u2014even", " unless", "\u4efb\u4f55\u5f62\u5f0f\u7684", ".**", "\u5c24\u5176\u662f\u5728", "\u54ea\u6015", " without", "."], [" without", "\u2014even", " unless", ".", " WITHOUT", "\u4efb\u4f55\u5f62\u5f0f\u7684", " with", "without"], ["\u2014even", "\u5c24\u5176\u662f\u5728", "\u5c24\u5176\u662f", "\u4efb\u4f55\u5f62\u5f0f\u7684", " especially", "especially", " Especially", " unless"], ["\u2014even", " handling", "\u5c24\u5176\u662f", "\u5c24\u5176\u662f\u5728", " involving", " with", " especially", " interacting"], ["\u2014even", " handling", " while", "\u5c24\u5176\u662f", " overhead", "\u6709\u4efb\u4f55", " interacting", "\u5c24\u5176\u662f\u5728"], ["\u5c24\u5176\u662f", " handling", "\u2014even", " especially", "\u5c24\u5176\u662f\u5728", " doing", " while", " Especially"], ["\u5c24\u5176\u662f", " handling", " doing", " while", "\u2014even", " especially", " Especially", "\u5c24\u5176\u662f\u5728"], [" doing", " handling", " overhead", " while", "\u5c24\u5176\u662f", "\u2014even", " Doing", " interacting"], [" doing", " while", " handling", " overhead", ".", " with", "\u2014even", " when"], [" doing", " while", ".", " handling", " running", " overhead", " rendering", " executing"], [".", " while", " doing", ",", " with", " handling", " running", " overhead"], [".", ",", " with", " while", " doing", " handling", " running", " when"]], "p": [[0.6337, 0.1602, 0.1602, 0.0405, 0.0011, 0.0006, 0.0005, 0.0004], [0.547, 0.426, 0.0155, 0.0017, 0.0014, 0.0007, 0.0003, 0.0002], [0.8829, 0.1054, 0.0076, 0.0015, 0.001, 0.0009, 0.0001, 0.0001], [0.0032, 0.003, 0.0022, 0.0019, 0.0017, 0.0016, 0.0012, 0.0012], [0.1095, 0.0314, 0.0102, 0.009, 0.0084, 0.0018, 0.0018, 0.0015], [0.2941, 0.0544, 0.0121, 0.0069, 0.0057, 0.0031, 0.0022, 0.0015], [0.3903, 0.3444, 0.0183, 0.0161, 0.0086, 0.0081, 0.0076, 0.0063], [0.4985, 0.0718, 0.0409, 0.0206, 0.0125, 0.0063, 0.0055, 0.0049], [0.7569, 0.0484, 0.0484, 0.0427, 0.0276, 0.0189, 0.013, 0.0108], [0.741, 0.2123, 0.0093, 0.0082, 0.0073, 0.0041, 0.0034, 0.0015], [0.7478, 0.1012, 0.0542, 0.0478, 0.01, 0.0054, 0.0042, 0.0039], [0.3682, 0.044, 0.0302, 0.0251, 0.0172, 0.0126, 0.0118, 0.0087], [0.7256, 0.1429, 0.0171, 0.011, 0.0067, 0.0052, 0.0026, 0.0025], [0.8851, 0.0566, 0.0184, 0.0105, 0.0105, 0.0041, 0.001, 0.0008], [0.7159, 0.1169, 0.0666, 0.0102, 0.0096, 0.007, 0.0058, 0.0051], [0.5234, 0.1596, 0.0487, 0.0457, 0.0079, 0.007, 0.0066, 0.0055], [0.611, 0.1545, 0.0777, 0.0135, 0.0105, 0.0087, 0.0044, 0.0041], [0.3252, 0.1124, 0.0267, 0.0208, 0.0134, 0.0118, 0.0105, 0.0092], [0.1052, 0.0638, 0.0599, 0.0563, 0.0364, 0.0342, 0.0283, 0.0235], [0.085, 0.0799, 0.0622, 0.0455, 0.0355, 0.0313, 0.0294, 0.0276], [0.8155, 0.0085, 0.0085, 0.008, 0.0062, 0.0058, 0.0052, 0.0046], [0.1061, 0.0568, 0.0304, 0.0252, 0.0196, 0.0173, 0.0087, 0.0077], [0.7098, 0.0201, 0.0157, 0.0115, 0.0101, 0.0084, 0.0079, 0.0061], [0.4174, 0.0413, 0.0388, 0.0302, 0.0235, 0.0162, 0.0152, 0.0081], [0.6355, 0.0359, 0.014, 0.0109, 0.0096, 0.0091, 0.0075, 0.0071], [0.4564, 0.0745, 0.07, 0.0331, 0.0177, 0.0156, 0.0122, 0.0084], [0.5258, 0.0758, 0.059, 0.0297, 0.018, 0.0159, 0.0159, 0.0124], [0.382, 0.1405, 0.1028, 0.0707, 0.0664, 0.0334, 0.0202, 0.0158], [0.3476, 0.1279, 0.0776, 0.0643, 0.0568, 0.0533, 0.0323, 0.0105], [0.375, 0.1772, 0.0891, 0.0738, 0.054, 0.0225, 0.0155, 0.0155], [0.9533, 0.0068, 0.006, 0.003, 0.0027, 0.0025, 0.0017, 0.0013], [0.8219, 0.0409, 0.0117, 0.0063, 0.0055, 0.0041, 0.0038, 0.0034], [0.2235, 0.0565, 0.0413, 0.0221, 0.0208, 0.0208, 0.0195, 0.0172], [0.1049, 0.0677, 0.0301, 0.0234, 0.0194, 0.0161, 0.0142, 0.0142], [0.0539, 0.0419, 0.0327, 0.0307, 0.0175, 0.0164, 0.0154, 0.0136], [0.1896, 0.1674, 0.0655, 0.0398, 0.0351, 0.0273, 0.0114, 0.0078], [0.0615, 0.0423, 0.0241, 0.0241, 0.0212, 0.0188, 0.0176, 0.0146], [0.0441, 0.0389, 0.0236, 0.0236, 0.0208, 0.0184, 0.0153, 0.0135], [0.0547, 0.0353, 0.0353, 0.0312, 0.0228, 0.0214, 0.0178, 0.0167], [0.1045, 0.0436, 0.0361, 0.0219, 0.0219, 0.0206, 0.0206, 0.0141], [0.0523, 0.0338, 0.028, 0.0263, 0.0193, 0.0193, 0.016, 0.0132], [0.041, 0.0234, 0.0219, 0.0171, 0.0161, 0.0151, 0.0133, 0.0125], [0.0473, 0.0417, 0.0287, 0.0197, 0.0153, 0.0127, 0.0105, 0.0087], [0.0524, 0.0318, 0.017, 0.017, 0.015, 0.0124, 0.0124, 0.011], [0.0711, 0.0217, 0.0191, 0.0169, 0.0131, 0.0131, 0.0124, 0.0124], [0.1034, 0.0336, 0.0262, 0.0204, 0.0191, 0.018, 0.0159, 0.014], [0.1393, 0.0845, 0.0375, 0.0375, 0.0311, 0.0258, 0.0201, 0.0166], [0.5909, 0.0706, 0.0585, 0.0276, 0.0168, 0.0148, 0.0139, 0.0108], [0.473, 0.2532, 0.0413, 0.0365, 0.0195, 0.0172, 0.0172, 0.0134], [0.5192, 0.2452, 0.0426, 0.0332, 0.0258, 0.0201, 0.0201, 0.0157], [0.4735, 0.1357, 0.0726, 0.0303, 0.0303, 0.0303, 0.0303, 0.0267], [0.2292, 0.0792, 0.058, 0.0424, 0.0398, 0.0274, 0.0257, 0.0227], [0.1863, 0.1363, 0.0605, 0.0568, 0.0534, 0.0345, 0.0268, 0.0184], [0.6707, 0.0517, 0.0456, 0.0168, 0.0158, 0.0139, 0.0108, 0.009], [0.1605, 0.0973, 0.0973, 0.0336, 0.0246, 0.0204, 0.018, 0.0169], [0.1125, 0.1057, 0.0682, 0.0682, 0.0184, 0.0184, 0.0143, 0.0134], [0.2182, 0.1168, 0.0457, 0.043, 0.0404, 0.0356, 0.0356, 0.0295], [0.1289, 0.0886, 0.0832, 0.0648, 0.0369, 0.0347, 0.0288, 0.027], [0.1616, 0.1426, 0.1043, 0.0633, 0.0264, 0.0193, 0.0141, 0.0133], [0.2584, 0.122, 0.1012, 0.0839, 0.0272, 0.0226, 0.0187, 0.0176], [0.2869, 0.1196, 0.1123, 0.0725, 0.0468, 0.0413, 0.0302, 0.0221], [0.658, 0.0786, 0.0612, 0.0349, 0.0165, 0.0145, 0.0145, 0.0128], [0.929, 0.0673, 0.0008, 0.0007, 0.0005, 0.0003, 0.0001, 0.0001]], "ranks": {"Python": [14800, 70972, 103409, 199271, 109272, 168718, 75016, 131732, 74217, 68880, 26661, 86591, 65921, 40348, 23114, 28765, 17960, 9312, 7120, 22634, 13317, 15976, 14532, 17284, 20489, 2019, 2423, 2372, 1353, 1356, 1706, 3956, 4836, 3600, 3185, 1845, 3802, 2620, 2725, 1601, 1958, 2695, 3098, 4189, 4329, 6077, 12102, 19805, 28005, 36829, 31158, 3642, 14967, 5523, 9532, 2870, 474, 384, 271, 180, 174, 57, 90]}}, {"pos": 421, "top": [[" \u2013", ".", "\u2013", ",", ";", "\u00a0\u00a0", "\u2026.", "\u2026.."], [" \u2013", "\u2013", "\u2013and", " \u2013,", " \u200b\u200b", "\u2013\u2013", "  \n", ","], ["\u2013", " \u2013", "\u2026..", ".", ",", "\u2013and", "\u2026.", ".\u2013"], ["-------------</", "----------</", " milfs", " Shemale", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Blowjob", " ;;^", "\uff0a\uff0a\uff0a\uff0a"], [":@", "\uff20", " \u201c", "\u65b0\u52a0\u5761", " Millennials", " CIF", " \u201c.", " Krem"], [" \u200b\u200b", ",", "<|quad_end|>", "!:", ".", ":", "\uff01", "\u6dfc"], ["  \n\n", "  \n", "   \n", "\uff01", " \n\n", " \u2014\u2014", "\u2014\u2014", "   \n\n"], ["   \n", "   \n\n", "  \n\n", "  \n", "  \r\n", "<|quad_end|>", "<|object_ref_start|>", "   \r\n"], ["  \n\n", "   \n\n", " \n\n", "    \n\n", "      \n\n", "     \n\n", "   \n", "\t\n\n"], ["\u7a81\u5982\u5176", "\u8ba4\u8ba4\u771f", "\u5750\u62e5", "\u51ed\u501f\u7740", "\u7c89\u4e1d\u4eec", "\uaecf", "\u5468\u906d", "\u4fe9\u4eba"], [" though", " arguably", " even", " nonetheless", " mostly", " albeit", " uniquely", " outright"], [" arguably", " nonetheless", "\u7c89\u4e1d\u4eec", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\u8ba4\u8ba4\u771f", "\u611f\u5341\u8db3", " incredibly", "\u582a\u6bd4"], [" nonetheless", " arguably", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\u582a\u6bd4", "\u7c89\u4e1d\u4eec", " incredibly", "\u51ed\u501f\u7740", "\u62e5\u6709\u7740"], [" arguably", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\u7c89\u4e1d\u4eec", "\u51ed\u501f\u7740", " nonetheless", "\u8ba4\u8ba4\u771f", "\u582a\u6bd4", "_TODO"], [" arguably", " though", " even", " albeit", " outright", " sprawling", " truly", " mostly"], [" arguably", " sprawling", "\u51ed\u501f\u7740", " incredibly", " even", " myriad", " albeit", " outright"], [" arguably", " myriad", " sprawling", " incredibly", " albeit", " ultimately", " even", " largely"], [" arguably", " incredibly", " myriad", " sprawling", "\u51ed\u501f\u7740", " countless", "\u5374\u4f9d\u7136", " uniquely"], [" arguably", " incredibly", " myriad", " even", " countless", " sprawling", "\u5374\u4f9d\u7136", " ultimately"], [" arguably", " even", " myriad", "\u2014even", " ultimately", " incredibly", " merely", " albeit"], ["<|endoftext|>", " ultimately", " though", " arguably", " merely", " even", " myriad", " swiftly"], [" arguably", " even", " ultimately", " merely", "\u51ed\u501f\u7740", " incredibly", "\u62e5\u6709\u7740", " myriad"], [" even", " merely", " arguably", " ultimately", " myriad", " incredibly", " truly", " uniquely"], [" even", " merely", " ultimately", " arguably", " myriad", " much", " truly", " vastly"], [" arguably", " even", " merely", " myriad", " ultimately", " vastly", " though", "\u5373\u4fbf"], [" arguably", " even", " vastly", " incredibly", " merely", " ultimately", " myriad", " countless"], [" even", " arguably", " merely", " ultimately", " vastly", " incredibly", " myriad", " truly"], [" even", " arguably", " merely", " vastly", " ultimately", " truly", " myriad", " incredibly"], [" arguably", " even", " vastly", " merely", " ultimately", " myriad", " incredibly", " truly"], [" even", " arguably", " ultimately", " merely", " vastly", " **", " heavily", " truly"], [" even", " ,", " only", " ultimately", " arguably", " heavily", " effectively", " much"], [" even", " only", " ultimately", " ,", " forced", " critical", " massive", " heavily"], [" even", " only", " ultimately", " forced", " ,", " massive", " heavily", " essentially"], ["\u2014even", " even", " only", " fundamentally", " purely", " uniquely", " essentially", " heavily"], ["\u2014even", "\u6839\u672c\u65e0\u6cd5", " relentlessly", " relentless", " massively", " fundamentally", " even", " \u2014"], ["\u2014even", " \u2014", "\u6839\u672c\u65e0\u6cd5", " relentless", " \u2013", " impossible", " relentlessly", " notoriously"], ["\u6839\u672c\u65e0\u6cd5", "\u2014even", " impossible", " notoriously", " relentlessly", " relentless", " \u2014", " massively"], ["\u2014even", "\u6839\u672c\u65e0\u6cd5", " impossible", " even", " \u2014", " notoriously", " relentlessly", " relentless"], ["\u2014even", "\u6839\u672c\u65e0\u6cd5", " impossible", " even", " \u2014", " notoriously", " relentless", " relentlessly"], ["\u2014even", "\u6839\u672c\u65e0\u6cd5", " impossible", " even", " relentless", " notoriously", " relentlessly", " inevitable"], ["\u2014even", " even", "\u6839\u672c\u65e0\u6cd5", " impossible", " sluggish", " relentless", " inevitable", " brutal"], ["\u2014even", "\u6839\u672c\u65e0\u6cd5", " even", " sluggish", " inefficient", " impossible", " bottleneck", " slow"], ["\u2014even", "\u6839\u672c\u65e0\u6cd5", " even", " sluggish", " inefficient", " bottleneck", " inherently", " brute"], ["\u2014even", " sluggish", "\u6839\u672c\u65e0\u6cd5", " even", " bottleneck", " inefficient", " impossible", " inherently"], ["\u6839\u672c\u65e0\u6cd5", " inherently", " impossible", " bottleneck", " sluggish", " inefficient", " delays", " notoriously"], ["\u6839\u672c\u65e0\u6cd5", " inherently", "\u2014even", " even", " bottleneck", " notoriously", " impossible", " sluggish"], ["\u2014even", "\u6839\u672c\u65e0\u6cd5", " inevitable", " inevitably", " inherently", " bottleneck", " unavoidable", " sluggish"], ["\u2014even", " even", " inevitable", " inherently", " bottleneck", "\u5373\u4fbf", " sluggish", " delays"], ["\u2014even", " even", "\u5373\u4fbf", "\u5373\u4fbf\u662f", "even", "\u6839\u672c\u65e0\u6cd5", " Even", "\u54ea\u6015\u662f"], ["\u5373\u4fbf", "\u2014even", "\u5373\u4fbf\u662f", " Even", "even", "\u5373\u4f7f\u662f", "\u54ea\u6015", " even"], ["\u5373\u4fbf", "\u5373\u4fbf\u662f", "\u5373\u4f7f\u662f", "\u2014even", "\u54ea\u6015", " Even", "\u5373\u4f7f", "Even"], ["\u5373\u4fbf", " Even", "\u5373\u4fbf\u662f", "\u54ea\u6015", "\u2014even", "\u5373\u4f7f\u662f", " latency", "Even"], [" Even", " latency", "\u5373\u4fbf", "\u2014even", "\u5373\u4fbf\u662f", "\u5373\u4f7f\u662f", "\u54ea\u6015", "Even"], [" Even", "\u5373\u4fbf", "\u2014even", "\u5373\u4f7f\u662f", "\u5373\u4fbf\u662f", "even", " latency", "Even"], ["\u5373\u4fbf", " Even", " latency", "\u2014even", "\u5373\u4fbf\u662f", "\u5373\u4f7f\u662f", " CPU", "\u54ea\u6015"], [" CPU", " latency", "\u5373\u4fbf", " overhead", " Even", "\u5373\u4fbf\u662f", " buffering", "\u5373\u4f7f\u662f"], [" Even", "even", " even", "\u5373\u4fbf", "Even", "\u5373\u4f7f\u662f", " Python", "\u5373\u4fbf\u662f"], [" Even", " even", " latency", "even", "Even", "\u5373\u4fbf", " Android", "\u5373\u4f7f\u662f"], [" Even", " overhead", " latency", " JNI", " Android", " Python", " JIT", " even"], [" Even", " overhead", " latency", " garbage", " even", " Android", " JIT", " CPU"], [" Even", " Mobile", " mobile", " Android", " overhead", " garbage", " latency", " JIT"], [" Even", " Mobile", " Android", " JIT", " JNI", " garbage", " Context", " overhead"], [" Even", " The", " Mobile", " Mid", " Context", " Standard", " Every", " Pure"]], "p": [[0.647, 0.21, 0.0682, 0.0531, 0.0041, 0.0021, 0.0018, 0.0016], [0.3407, 0.063, 0.011, 0.0043, 0.0018, 0.0014, 0.0009, 0.0008], [0.6545, 0.2408, 0.0254, 0.0186, 0.0164, 0.0128, 0.0077, 0.003], [0.0122, 0.0089, 0.0089, 0.007, 0.0051, 0.0045, 0.0045, 0.0031], [0.0024, 0.0022, 0.0017, 0.0015, 0.0013, 0.0012, 0.0012, 0.0011], [0.0034, 0.0034, 0.0022, 0.0019, 0.0015, 0.0012, 0.0009, 0.0009], [0.2832, 0.092, 0.0263, 0.0218, 0.0218, 0.017, 0.0117, 0.011], [0.047, 0.0442, 0.0184, 0.0087, 0.0082, 0.0047, 0.0028, 0.0028], [0.3589, 0.2467, 0.2317, 0.019, 0.0062, 0.0051, 0.0042, 0.0033], [0.0019, 0.001, 0.0009, 0.0009, 0.0009, 0.0008, 0.0007, 0.0007], [0.0231, 0.0169, 0.0116, 0.0096, 0.0066, 0.0055, 0.0048, 0.0043], [0.0039, 0.0022, 0.0019, 0.0017, 0.0014, 0.0011, 0.0011, 0.001], [0.0057, 0.0048, 0.0033, 0.0023, 0.0021, 0.0016, 0.0015, 0.0013], [0.0023, 0.0021, 0.002, 0.0019, 0.0018, 0.0017, 0.0015, 0.0013], [0.0328, 0.0165, 0.0129, 0.0083, 0.0061, 0.0057, 0.0044, 0.0044], [0.0382, 0.0141, 0.0103, 0.0071, 0.0055, 0.0049, 0.004, 0.004], [0.1026, 0.0377, 0.0178, 0.0167, 0.0108, 0.0108, 0.0108, 0.0102], [0.0545, 0.0213, 0.0156, 0.0147, 0.0078, 0.0074, 0.0051, 0.0051], [0.0536, 0.0238, 0.0106, 0.0093, 0.0077, 0.0073, 0.0064, 0.0064], [0.0501, 0.0209, 0.0184, 0.0144, 0.0127, 0.0119, 0.0112, 0.0093], [0.4332, 0.009, 0.0079, 0.0079, 0.007, 0.007, 0.007, 0.0048], [0.0155, 0.01, 0.0061, 0.0054, 0.0054, 0.005, 0.005, 0.0039], [0.0289, 0.024, 0.024, 0.0155, 0.0094, 0.0073, 0.0061, 0.0053], [0.0444, 0.0305, 0.0197, 0.0185, 0.0099, 0.0072, 0.0072, 0.006], [0.0244, 0.0203, 0.019, 0.0158, 0.0123, 0.0102, 0.0102, 0.009], [0.0237, 0.0173, 0.0112, 0.0099, 0.0099, 0.0077, 0.0072, 0.006], [0.0404, 0.0278, 0.0179, 0.0179, 0.0149, 0.0109, 0.0096, 0.008], [0.0604, 0.047, 0.0304, 0.0196, 0.0196, 0.0127, 0.0093, 0.0093], [0.0648, 0.0306, 0.027, 0.0254, 0.0174, 0.0136, 0.0128, 0.012], [0.0816, 0.0465, 0.0437, 0.0171, 0.0161, 0.0125, 0.0118, 0.011], [0.1029, 0.0355, 0.0334, 0.0314, 0.0179, 0.0123, 0.0096, 0.009], [0.1023, 0.0547, 0.0228, 0.0201, 0.013, 0.0095, 0.0089, 0.0084], [0.0857, 0.0488, 0.0159, 0.0116, 0.009, 0.008, 0.0075, 0.007], [0.0396, 0.0256, 0.0226, 0.0226, 0.0165, 0.0129, 0.0129, 0.0121], [0.1166, 0.0203, 0.0148, 0.0131, 0.0108, 0.0096, 0.009, 0.0075], [0.1497, 0.0486, 0.0334, 0.0179, 0.0179, 0.0168, 0.0158, 0.0139], [0.1784, 0.1784, 0.0291, 0.0146, 0.0107, 0.0101, 0.0089, 0.0083], [0.2807, 0.1245, 0.0335, 0.0169, 0.0131, 0.0116, 0.0109, 0.0096], [0.4018, 0.1016, 0.031, 0.0257, 0.0121, 0.0089, 0.0089, 0.0083], [0.3615, 0.1036, 0.046, 0.0262, 0.0091, 0.008, 0.007, 0.0066], [0.2488, 0.0629, 0.046, 0.0406, 0.014, 0.0132, 0.0096, 0.0091], [0.3916, 0.025, 0.0235, 0.0152, 0.0134, 0.0118, 0.0098, 0.0076], [0.1678, 0.0292, 0.0274, 0.0257, 0.0213, 0.02, 0.0156, 0.0129], [0.1587, 0.0401, 0.0377, 0.0333, 0.0294, 0.0276, 0.0202, 0.0178], [0.0246, 0.0217, 0.0204, 0.0204, 0.0204, 0.0191, 0.0169, 0.0159], [0.0322, 0.0303, 0.0267, 0.0251, 0.0172, 0.0172, 0.0172, 0.0162], [0.1694, 0.0623, 0.0485, 0.0294, 0.0277, 0.0244, 0.0202, 0.0179], [0.4034, 0.0453, 0.0228, 0.0214, 0.0201, 0.0189, 0.0177, 0.0177], [0.4304, 0.1158, 0.0748, 0.0483, 0.0214, 0.0167, 0.0167, 0.013], [0.2517, 0.2517, 0.1189, 0.1049, 0.032, 0.032, 0.0301, 0.0301], [0.3221, 0.1185, 0.0814, 0.0814, 0.0634, 0.0526, 0.0264, 0.0248], [0.1862, 0.1543, 0.0996, 0.0643, 0.0568, 0.0533, 0.0323, 0.0304], [0.1851, 0.1851, 0.1633, 0.064, 0.0564, 0.0413, 0.0284, 0.0235], [0.3598, 0.17, 0.1168, 0.0625, 0.0487, 0.0335, 0.0295, 0.0261], [0.2732, 0.1657, 0.0691, 0.0609, 0.0573, 0.0475, 0.0254, 0.0239], [0.1534, 0.1354, 0.0991, 0.053, 0.0498, 0.0302, 0.0235, 0.0221], [0.7991, 0.0273, 0.0273, 0.0213, 0.0188, 0.0107, 0.0078, 0.0069], [0.6335, 0.0459, 0.0357, 0.0357, 0.0278, 0.0246, 0.0246, 0.0131], [0.5447, 0.1073, 0.0574, 0.0307, 0.0255, 0.0186, 0.0164, 0.0164], [0.4198, 0.1061, 0.1061, 0.0827, 0.0644, 0.0345, 0.0209, 0.0099], [0.5809, 0.0891, 0.054, 0.0477, 0.0328, 0.0308, 0.0199, 0.0121], [0.5772, 0.0734, 0.0369, 0.0254, 0.0238, 0.021, 0.0174, 0.0164], [0.7394, 0.1285, 0.0473, 0.012, 0.0072, 0.0044, 0.0041, 0.0036]], "ranks": {"Python": [92694, 213267, 186535, 189642, 57671, 114542, 31828, 92079, 73211, 117658, 18642, 60227, 77709, 78959, 42799, 35239, 40818, 27297, 70296, 98762, 64751, 110157, 74879, 63537, 79994, 72615, 29858, 22476, 28457, 9930, 6147, 5150, 8740, 15900, 30108, 22884, 16110, 13511, 9684, 6948, 5390, 6370, 5225, 6021, 5107, 4135, 6468, 7722, 8420, 6024, 2603, 286, 2058, 464, 646, 63, 7, 9, 6, 14, 12, 12, 13]}}, {"pos": 422, "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", ".", " \u201c.", ",", " \u200b\u200b", " \u201c[", " \"@", "\uff1a\u201c"], ["\u00a0\u00a0", " \u200b\u200b", ".", "   \n", ",", "\u00a0", "\uff01", "<|quad_start|>"], ["   \n", "  \n\n", "  \n", " \n\n", " \u2014\u2014", "\u2014\u2014", "       \n", "      \n"], ["   \n", "   \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"], [",", "\u00a0", "\u2013", "\u2013and", "\u00a0\u00a0", "  \n  \n", "   \n", "\u00ad"], ["\u00a0", ",", "\u2013", " ", "\u00a0\u00a0", " [\u2026]", " \u2013", "..."], ["\u5468\u906d", "-esque", "\u99a8", " arguably", "\u4ea6\u6216\u662f", "DMETHOD", "<|object_ref_start|>", "\u82e5\u975e"], [" impactful", "-esque", "\u5468\u906d", "\u4ea6\u6216\u662f", " showcased", " overarching", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\u2013and"], ["-esque", "\u5468\u906d", " overarching", " impactful", " showcased", " entirety", "\u708e\u708e\u590f\u65e5", "\u2013and"], [" arguably", "\u5468\u906d", " albeit", "-esque", " entirety", " overarching", " showcased", " savvy"], [" arguably", " entirety", " sprawling", " overarching", "\u5468\u906d", " incredibly", "-esque", " savvy"], [" myriad", " arguably", " overarching", " entirety", " sprawling", " incredibly", "-esque", " seemingly"], [" myriad", " arguably", " sprawling", "-esque", " overarching", " entirety", " incredibly", " seemingly"], [" myriad", " arguably", "\u2014even", " ultimately", "-esque", " incredibly", " seemingly", "\u2014or"], ["<|endoftext|>", " myriad", " arguably", " ultimately", "\u2014even", " seemingly", " vastly", " \u2014"], ["<|endoftext|>", " myriad", " \n\n", " ultimately", "  \n\n", "\u5373\u4fbf", " \u2014", " vastly"], [" myriad", " incredibly", " ultimately", " arguably", " hugely", " sprawling", " utterly", " vastly"], [" myriad", " ultimately", " vastly", " incredibly", " arguably", " requisite", " hugely", " seemingly"], [" myriad", " ultimately", " much", " vastly", " requisite", " continually", " arguably", " hugely"], [" myriad", " requisite", " vastly", "\u5373\u4fbf", " hugely", " ultimately", " utterly", " arguably"], [" myriad", " incredibly", " vastly", " hugely", " sprawling", " ultimately", " heavily", " arguably"], [" myriad", " ultimately", " vastly", " sprawling", " hugely", " heavily", " massive", " incredibly"], [" ultimately", " heavily", " myriad", " much", " even", " vastly", " arguably", " massive"], [" myriad", " ultimately", " massive", " heavily", " sprawling", " vastly", " incredibly", " relentless"], [" myriad", " massive", " heavily", " ultimately", " sprawling", " relentless", " vastly", " incredibly"], [" massive", " heavily", " even", " ultimately", " myriad", " relentless", " incredibly", " much"], [" massive", " heavily", " even", " ultimately", " rapidly", " critical", " incredibly", " power"], [" massive", " even", " heavily", " ultimately", " power", " critical", " rapidly", " relentlessly"], [" relentless", " massive", " inherently", " relentlessly", " incredibly", " heavily", " hardware", " massively"], [" relentless", " relentlessly", " inherently", " hardware", " meticulously", " massive", " notoriously", " myriad"], [" hardware", " bottleneck", " inherently", " relentless", " inefficient", " notoriously", " sluggish", " critical"], [" bottleneck", " hardware", " inefficient", " sluggish", " slower", " ineff", " inevitable", " notoriously"], [" bottleneck", " hardware", " inefficient", " sluggish", " slower", " logistical", " complexity", " latency"], [" bottleneck", " hardware", " sluggish", " inefficient", " latency", " slower", " CPU", " logistical"], [" garbage", " CPU", " delays", " bottleneck", " latency", " inefficient", " sluggish", " unpredictable"], [" delays", " latency", " garbage", " CPU", " bottleneck", " sluggish", " inefficient", " slower"], [" garbage", " latency", " cleanup", " delays", " overhead", " CPU", " jitter", " inefficient"], [" garbage", " latency", " delays", " overhead", " CPU", " cleanup", " jitter", " glitches"], [" garbage", " latency", " overhead", " delays", " CPU", " processing", " cleanup", " jitter"], [" delays", " latency", " garbage", " overhead", " jitter", " glitches", " processing", " fragmentation"], [" delays", " garbage", " latency", " overhead", " jitter", " glitches", " unpredictable", " CPU"], [" delays", " latency", " jitter", " glitches", " garbage", " overhead", " bottleneck", " interference"], [" delays", " latency", " glitches", " overhead", " jitter", " bottleneck", " garbage", " sluggish"], [" latency", " delays", " glitches", " overhead", " bottleneck", " sluggish", " jitter", " erratic"], [" latency", " delays", " bottleneck", " glitches", " sluggish", " overhead", " fragmentation", " jitter"], [" latency", " delays", " overhead", " bottleneck", " glitches", " sluggish", "\u8fd0\u8425\u6210\u672c", " jitter"], [" latency", " overhead", " bottleneck", " delays", " CPU", "\u5f00\u9500", " glitches", " slowdown"], [" latency", " overhead", " bottleneck", " buffering", " CPU", " delays", "\u5f00\u9500", "_latency"], [" overhead", " latency", " bottleneck", " CPU", "\u5f00\u9500", " buffering", " bott", " jitter"], [" combination", " overhead", " latency", "combination", " Combination", " bottleneck", " CPU", " combo"], [" overhead", " combination", " latency", "combination", " Combination", " CPU", " garbage", " bottleneck"], [" garbage", " GC", " overhead", " combination", "\u5783\u573e", " latency", "_GC", "combination"], [" latency", " garbage", " GC", " combination", " overhead", "_GC", "\u5783\u573e", "GC"], [" overhead", " GC", " garbage", " latency", "\u5f00\u9500", "GC", " combination", "_GC"], [" overhead", " garbage", " GC", " latency", "\u5f00\u9500", "GC", " combination", " Gar"], [" overhead", " GC", " garbage", " latency", " Gar", "GC", " startup", " combination"], [" overhead", " GC", " garbage", " latency", " Gar", " startup", "GC", " combination"], [" overhead", " GC", " garbage", " startup", " latency", " combination", " JIT", " Gar"]], "p": [[0.439, 0.3419, 0.183, 0.017, 0.0103, 0.0028, 0.0028, 0.0008], [0.804, 0.1022, 0.0243, 0.0101, 0.0084, 0.0024, 0.0023, 0.0012], [0.3556, 0.2769, 0.1903, 0.168, 0.0027, 0.0021, 0.0016, 0.0005], [0.006, 0.0019, 0.0018, 0.0016, 0.0016, 0.0014, 0.0014, 0.0013], [0.0209, 0.0135, 0.0093, 0.0072, 0.0047, 0.0047, 0.0041, 0.0039], [0.0507, 0.0371, 0.0211, 0.0187, 0.0175, 0.0061, 0.005, 0.0042], [0.2328, 0.0971, 0.0667, 0.0245, 0.0231, 0.0203, 0.018, 0.0149], [0.5709, 0.0322, 0.0284, 0.0162, 0.0126, 0.0098, 0.0092, 0.0087], [0.3459, 0.2694, 0.1851, 0.0565, 0.0322, 0.0092, 0.0087, 0.0081], [0.2431, 0.0894, 0.0542, 0.0479, 0.0165, 0.0146, 0.0054, 0.0045], [0.7129, 0.1404, 0.0516, 0.0084, 0.0074, 0.0051, 0.0045, 0.0042], [0.0044, 0.0039, 0.0034, 0.0029, 0.0024, 0.002, 0.0018, 0.0018], [0.0077, 0.0072, 0.0053, 0.0044, 0.0041, 0.0041, 0.0023, 0.0018], [0.0098, 0.0081, 0.0067, 0.0059, 0.0038, 0.0026, 0.0025, 0.0022], [0.0251, 0.0162, 0.0087, 0.0072, 0.0067, 0.006, 0.0053, 0.0053], [0.0123, 0.0102, 0.009, 0.0084, 0.0058, 0.0048, 0.0045, 0.0045], [0.0423, 0.0351, 0.02, 0.0121, 0.0121, 0.0114, 0.0114, 0.0089], [0.0235, 0.0162, 0.0134, 0.0104, 0.0098, 0.0081, 0.0081, 0.0056], [0.0391, 0.0324, 0.0153, 0.0135, 0.0119, 0.0112, 0.0112, 0.0087], [0.0341, 0.0301, 0.0142, 0.0098, 0.0092, 0.0086, 0.0067, 0.0063], [0.8906, 0.0019, 0.0013, 0.0011, 0.0006, 0.0006, 0.0006, 0.0006], [0.0091, 0.0049, 0.0049, 0.0043, 0.0031, 0.0029, 0.0029, 0.0028], [0.0173, 0.0082, 0.0047, 0.0044, 0.0039, 0.0034, 0.0032, 0.003], [0.0118, 0.0111, 0.0046, 0.0032, 0.003, 0.0028, 0.0026, 0.0025], [0.015, 0.0071, 0.0046, 0.0043, 0.004, 0.0036, 0.0031, 0.0024], [0.0063, 0.0032, 0.003, 0.0028, 0.0028, 0.0026, 0.0018, 0.0016], [0.0065, 0.0045, 0.0035, 0.0033, 0.0027, 0.0027, 0.0022, 0.0021], [0.0138, 0.0095, 0.0083, 0.0078, 0.0061, 0.0057, 0.0048, 0.0048], [0.0169, 0.0116, 0.0116, 0.0116, 0.008, 0.0066, 0.0058, 0.0043], [0.0167, 0.0157, 0.0157, 0.0115, 0.0084, 0.0066, 0.0066, 0.0066], [0.0295, 0.0191, 0.0131, 0.0116, 0.0116, 0.009, 0.007, 0.0066], [0.028, 0.0247, 0.0132, 0.0132, 0.0097, 0.0091, 0.0085, 0.008], [0.0195, 0.0143, 0.0111, 0.0104, 0.0067, 0.0067, 0.0059, 0.0056], [0.0266, 0.022, 0.0172, 0.0142, 0.0134, 0.0118, 0.0098, 0.0092], [0.029, 0.0155, 0.0146, 0.0107, 0.0094, 0.0089, 0.0078, 0.0065], [0.0485, 0.0276, 0.0168, 0.0168, 0.0102, 0.0096, 0.009, 0.0079], [0.1303, 0.0479, 0.045, 0.0273, 0.0176, 0.0107, 0.0083, 0.0078], [0.1178, 0.0461, 0.0205, 0.0141, 0.0117, 0.0103, 0.0085, 0.0085], [0.1133, 0.0535, 0.0269, 0.0269, 0.021, 0.0105, 0.0099, 0.0093], [0.0699, 0.0188, 0.0188, 0.0177, 0.0177, 0.0177, 0.0166, 0.0101], [0.0705, 0.0585, 0.0378, 0.0313, 0.0294, 0.0276, 0.0244, 0.0229], [0.0965, 0.0663, 0.0428, 0.0402, 0.0378, 0.0277, 0.0179, 0.0158], [0.0828, 0.073, 0.0534, 0.0416, 0.0269, 0.0237, 0.0223, 0.0185], [0.104, 0.0761, 0.0631, 0.0593, 0.0263, 0.0247, 0.0205, 0.0192], [0.1286, 0.1001, 0.0536, 0.0536, 0.0197, 0.0185, 0.0136, 0.0136], [0.0962, 0.0583, 0.0583, 0.0377, 0.0243, 0.0157, 0.0157, 0.0095], [0.1155, 0.0845, 0.0375, 0.0242, 0.0242, 0.0242, 0.0189, 0.0147], [0.2004, 0.1073, 0.0255, 0.0255, 0.0198, 0.0175, 0.0165, 0.0155], [0.0998, 0.0998, 0.0286, 0.0223, 0.0209, 0.0196, 0.0144, 0.0135], [0.1638, 0.0641, 0.0343, 0.0285, 0.0222, 0.0196, 0.0173, 0.0134], [0.0783, 0.0198, 0.0198, 0.0186, 0.0083, 0.0042, 0.0042, 0.0037], [0.3564, 0.1908, 0.0619, 0.0157, 0.013, 0.0122, 0.0069, 0.0061], [0.4479, 0.3953, 0.0778, 0.006, 0.0056, 0.0056, 0.005, 0.0027], [0.6534, 0.2724, 0.0325, 0.0064, 0.0032, 0.0025, 0.0015, 0.0009], [0.5583, 0.2054, 0.0856, 0.0404, 0.0169, 0.0102, 0.008, 0.0055], [0.4155, 0.3667, 0.0818, 0.0301, 0.0098, 0.0098, 0.0098, 0.0086], [0.8162, 0.0522, 0.0406, 0.0279, 0.0132, 0.0091, 0.0062, 0.0033], [0.4164, 0.4164, 0.0724, 0.0342, 0.0126, 0.0076, 0.0076, 0.0052], [0.9986, 0.0006, 0.0005, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9959, 0.0028, 0.0009, 0.0002, 0.0001, 0.0, 0.0, 0.0], [0.9984, 0.0008, 0.0007, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9679, 0.0177, 0.0122, 0.0004, 0.0004, 0.0003, 0.0002, 0.0001], [0.9838, 0.0075, 0.0052, 0.0007, 0.0006, 0.0005, 0.0002, 0.0001]], "ranks": {"Python": [29942, 156592, 124999, 175792, 41193, 64869, 25455, 83139, 34579, 30550, 7523, 67172, 70382, 119791, 83004, 66443, 79966, 46167, 82057, 163788, 99357, 188434, 165099, 153483, 167786, 154433, 111991, 61852, 55243, 44525, 27506, 29186, 39178, 25236, 23393, 5600, 2192, 2398, 915, 32, 26, 25, 41, 60, 95, 55, 52, 40, 66, 91, 225, 115, 222, 124, 236, 77, 10, 12, 11, 14, 17, 26, 18]}}, {"pos": 423, "top": [["s", " \u2013", "\u2013", "\u0627\u062a", "\u044b", "es", "\u2026..", ".\u2013"], ["s", "\u044b", "\u0627\u062a", "\u05d9\u05dd", "schild", "ska", "ske", "siz"], ["s", "\u044b", "\u2026..", "\u0627\u062a", "\u2026\"", "\u05d9\u05dd", "ska", "\u2013"], ["s", "\u05d9\u05dd", "\u044b", "\u0627\u062a", "schnitt", "satz", "ske", "schrift"], ["s", "\u0627\u062a", "\u044b", "\u05d9\u05dd", "ske", "es", "ska", "siz"], ["s", "\u044b", "\u0627\u062a", "\u05d9\u05dd", " \u200b\u200b", "siz", "ske", "ska"], ["s", "\u0627\u062a", "\u044b", "es", "\u05d9\u05dd", "ske", "siz", "ska"], ["s", "\u044b", "\u05d9\u05dd", "\u0627\u062a", "ske", "schild", "sburg", "ska"], ["s", " [\u2026]", " \u2026.", "\u044b", " \u200b\u200b", "\u0627\u062a", "schild", "\u2026.."], ["s", "\u044b", "\u2013", "\u2013\u2013", ".\u2013", "ska", "es", "\u05d9\u05dd"], ["s", " [\u2026]", "es", ".\u2013", ",", "\u2013", "\u2013\u2013", "\u044b"], ["s", "es", "\u044b", "\u05d9\u05dd", "ska", "\u0627\u062a", "schild", "ske"], ["s", "es", "\u05d9\u05dd", "\u044b", "ska", "siz", "ske", "\u0627\u062a"], ["s", "es", "ska", "\u05d9\u05dd", " \u2013", "\u044b", ".\u2013", "\u0627\u062a"], ["s", "es", " \u2013", "ska", "\u0627\u062a", "ed", " lavish", "\u044b"], ["s", "es", " \u2013", "ed", "y", "\u0627\u062a", " lavish", "\u044b"], ["s", "es", " \u2013", ",", "\u2013", "ed", " [\u2026]", "y"], ["s", "es", " \u2013", "\u2013", "\u0627\u062a", "\u2013\u2013", ",", "siz"], ["s", "es", "\u0627\u062a", " \u2013", " myriad", "\u044b", "siz", "ska"], ["s", "es", " \u2013", " myriad", "\u2013\u2013", "\u2013", " requisite", "\u0627\u062a"], ["<|endoftext|>", "s", "\u2013", " \u2013", " [\u2026]", " myriad", "\n\n", "es"], ["s", "es", "sste", " lavish", "siz", "\u0627\u062a", "ska", " myriad"], ["s", " myriad", " requisite", "es", " swiftly", " beyond", " shifting", " lavish"], ["s", " of", " myriad", " beyond", " requisite", "es", " swiftly", " shifting"], ["s", " \r\n\r\n", " requisite", " myriad", " \n\n", "\u6f2a", " complexities", " shifting"], ["s", " **\u2018", "sste", " **\u2013", "\u5f00\u9500", " overhead", " complexities", " **+"], ["s", " overhead", "\u5f00\u9500", "sste", " machinery", " burdens", " complexities", " **\u2018"], ["s", " overhead", " of", " myriad", " shifting", " spending", " lavish", " cost"], ["s", " overhead", " costs", " machinery", " lavish", " burdens", " cost", " ineff"], ["s", " overhead", " costs", " machinery", " shifting", " burdens", " ineff", " cost"], ["s", " overhead", " costs", " machinery", " labor", " of", " cost", " spending"], [" **", " overhead", " costs", "s", " cost", " **,", " labor", " of"], [" overhead", " costs", "s", " cost", " labor", " of", " spending", " machinery"], [" overhead", " costs", " bottleneck", " machinery", " meticulously", " tech", " powering", "-heavy"], [" **\u2018", " overhead", " meticulously", " **\u201c", " costly", " myriad", " powering", "\u52a8\u8f84"], [" *\u2013", " \u2013**", " overhead", "\u2014even", " **\u2018", " **\u2013", " **\u201c", " *\u201c"], [" overhead", "\u5f00\u9500", "\u2014even", " ineff", " inefficient", " costly", "\u52a8\u8f84", " burdens"], [" overhead", "\u5f00\u9500", " ineff", " inefficient", " bottleneck", " costly", " costs", " burdens"], [" overhead", "\u5f00\u9500", "\u2014even", " ineff", " burden", " costs", " burdens", " costly"], [" overhead", "\u5f00\u9500", " costs", "\u2014even", " burden", " burdens", " ineff", " costly"], [" overhead", "\u5f00\u9500", " costs", " bureaucracy", " burden", " cost", " ineff", " bureaucratic"], [" overhead", "\u5f00\u9500", " costs", " burden", " bureaucracy", " ineff", " inefficient", " bottleneck"], [" overhead", "\u5f00\u9500", " costs", " bureaucracy", " burden", " bottleneck", " inefficient", " cost"], [" overhead", "\u5f00\u9500", " costs", " inefficient", " bureaucracy", " ineff", " processing", " bottleneck"], [" overhead", " costs", "\u5f00\u9500", " bureaucracy", " cost", " latency", " inefficient", " ineff"], [" overhead", " costs", "\u5f00\u9500", " cost", " bureaucracy", " bottleneck", " latency", " interf"], [" overhead", " costs", " bottleneck", " latency", " bureaucracy", "\u5f00\u9500", " inherent", " ineff"], [" overhead", " costs", " transferring", " bottleneck", " inherent", " interf", " latency", " transfers"], [" overhead", " costs", "\u2014even", " transferring", " interf", "\u5f00\u9500", " bottleneck", " inherent"], [" overhead", "\u2014even", "\u5f00\u9500", "-heavy", " inherent", " transferring", " bottleneck", " costs"], [" overhead", "\u5f00\u9500", "\u8fd0\u8425\u6210\u672c", "-heavy", "\u5f80\u8fd4", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " inherent", " bureaucracy"], [" overhead", "\u5f00\u9500", "Combined", " parsing", "combined", "\u2014even", " syncing", " latency"], [" overhead", " buffering", "\u5f00\u9500", " parsing", " syncing", " serialization", "\u2014even", "\u5f80\u8fd4"], [" overhead", " buffering", " transferring", " syncing", " parsing", " serialization", " batching", "\u2014even"], [" transferring", " alone", " overhead", " syncing", " serialization", "malloc", " allocating", " allein"], [" serialization", "Python", " bytecode", " Python", " alone", " parsing", " garbage", " Serialization"], [" Python", "Python", " PyObject", "python", "-python", " python", ".python", " bytecode"], [" Python", "Python", " PyObject", "python", " bytecode", "-python", ".python", " garbage"], [" Python", "Python", " PyObject", "python", " bytecode", "-python", " python", ".python"], [" Python", "Python", " interpreter", " PyObject", " bytecode", " garbage", "interpreter", "-python"], [" Python", " bytecode", " of", "Python", " garbage", " PyObject", " GC", " interpreter"], [" of", " bytecode", " Python", " garbage", " GC", " alone", "Python", " context"], [" of", " alone", " bytecode", " garbage", " GC", " Python", " context", " marsh"]], "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.9835, 0.0046, 0.0024, 0.0009, 0.0007, 0.0007, 0.0005, 0.0004], [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.9997, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9994, 0.0001, 0.0, 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], [0.9997, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9996, 0.0002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9985, 0.0005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9976, 0.0005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.99, 0.0007, 0.0004, 0.0003, 0.0001, 0.0001, 0.0001, 0.0001], [0.6053, 0.3671, 0.0009, 0.0008, 0.0006, 0.0006, 0.0004, 0.0004], [0.8327, 0.0017, 0.0011, 0.001, 0.0009, 0.0009, 0.0008, 0.0008], [0.8097, 0.0033, 0.0029, 0.0023, 0.0017, 0.0016, 0.0015, 0.0012], [0.7934, 0.005, 0.0039, 0.0029, 0.0021, 0.0021, 0.0017, 0.0016], [0.4578, 0.0108, 0.0079, 0.0058, 0.0045, 0.0035, 0.0024, 0.0023], [0.2428, 0.01, 0.0065, 0.0057, 0.0054, 0.0047, 0.0039, 0.0035], [0.1739, 0.0118, 0.0081, 0.0046, 0.0046, 0.0044, 0.0041, 0.0038], [0.1677, 0.0177, 0.0089, 0.0078, 0.0078, 0.0069, 0.0065, 0.0065], [0.1092, 0.0294, 0.0139, 0.0102, 0.0074, 0.0074, 0.0066, 0.0062], [0.0875, 0.0343, 0.0152, 0.0104, 0.0072, 0.0072, 0.0067, 0.0067], [0.0821, 0.0565, 0.0284, 0.0111, 0.0087, 0.0087, 0.0076, 0.0067], [0.0963, 0.0333, 0.0333, 0.0215, 0.0139, 0.0122, 0.0101, 0.0095], [0.0296, 0.0261, 0.0123, 0.0096, 0.0075, 0.007, 0.0066, 0.0062], [0.0192, 0.0117, 0.0071, 0.0062, 0.0059, 0.0059, 0.0055, 0.0055], [0.0106, 0.0106, 0.0082, 0.006, 0.005, 0.0047, 0.0044, 0.0039], [0.0223, 0.0099, 0.0093, 0.0093, 0.0087, 0.0087, 0.0077, 0.0068], [0.0279, 0.0192, 0.0149, 0.014, 0.0124, 0.0116, 0.008, 0.0071], [0.1004, 0.0369, 0.0145, 0.0106, 0.0088, 0.0088, 0.0073, 0.0068], [0.1057, 0.0531, 0.0184, 0.0105, 0.0098, 0.0098, 0.0098, 0.0077], [0.2021, 0.0955, 0.0121, 0.0101, 0.0089, 0.0083, 0.0065, 0.0057], [0.5414, 0.1286, 0.0197, 0.0112, 0.0093, 0.0056, 0.0053, 0.0044], [0.6755, 0.0712, 0.0192, 0.0062, 0.0055, 0.0052, 0.0052, 0.0038], [0.7648, 0.0297, 0.0217, 0.0052, 0.0043, 0.0038, 0.0033, 0.0033], [0.8293, 0.025, 0.0195, 0.0046, 0.0044, 0.0038, 0.0034, 0.0025], [0.7236, 0.0524, 0.011, 0.0055, 0.0046, 0.0043, 0.0043, 0.0036], [0.4751, 0.0501, 0.0093, 0.0093, 0.0072, 0.0056, 0.0056, 0.005], [0.4516, 0.0348, 0.012, 0.0069, 0.0064, 0.0057, 0.005, 0.0047], [0.4849, 0.0398, 0.0095, 0.0089, 0.0083, 0.0069, 0.0069, 0.0069], [0.2825, 0.017, 0.0141, 0.0097, 0.0085, 0.0075, 0.0059, 0.0055], [0.1897, 0.0227, 0.0107, 0.0101, 0.0074, 0.0069, 0.0045, 0.0042], [0.0789, 0.0137, 0.0073, 0.0065, 0.0065, 0.0045, 0.0039, 0.0037], [0.0876, 0.0063, 0.0056, 0.0053, 0.0049, 0.0049, 0.0044, 0.0044], [0.1684, 0.0138, 0.0101, 0.0089, 0.0061, 0.0058, 0.0054, 0.0045], [0.0763, 0.0233, 0.016, 0.0133, 0.011, 0.0071, 0.0063, 0.0052], [0.065, 0.061, 0.0446, 0.0239, 0.0175, 0.0136, 0.0128, 0.012], [0.2989, 0.0667, 0.0519, 0.038, 0.0278, 0.0203, 0.0158, 0.0158], [0.4103, 0.3621, 0.0555, 0.0432, 0.0262, 0.018, 0.0159, 0.0109], [0.4176, 0.3253, 0.0499, 0.0343, 0.0267, 0.0236, 0.0236, 0.0183], [0.4672, 0.2834, 0.0558, 0.0299, 0.0299, 0.0205, 0.016, 0.0141], [0.5093, 0.1288, 0.0537, 0.0474, 0.0418, 0.0287, 0.0164, 0.0136], [0.4374, 0.1609, 0.0976, 0.0861, 0.0337, 0.0205, 0.017, 0.011], [0.8147, 0.0521, 0.0217, 0.0149, 0.0116, 0.0062, 0.0046, 0.0046], [0.9648, 0.0101, 0.0048, 0.0022, 0.0019, 0.0011, 0.0009, 0.0009]], "ranks": {"Python": [107583, 233107, 184765, 196360, 156910, 146823, 62137, 82772, 82078, 142573, 92530, 177282, 181380, 162926, 144832, 155926, 165169, 178942, 192741, 213443, 149955, 207055, 203376, 179691, 113767, 113568, 92959, 53170, 39224, 47921, 41658, 27986, 39933, 47466, 84510, 57597, 37970, 42077, 23570, 2897, 1536, 1036, 1152, 1432, 1766, 1112, 605, 679, 2865, 4674, 349, 39, 18, 13, 18, 2, 1, 1, 1, 1, 1, 3, 6]}}, {"pos": 424, "top": [[".", ",", " \u2013", "\u2013", ";", "\u2026.", "\u2026..", "\u00a0"], [" \u2013", "\u2013", "\u2013and", ".\u2013", "\u2013\u2013", ",", " \u2013,", "."], ["\u2013", ",", " \u2013", ".", "\u2026", "\u2026..", "\u2013and", ".\u2013"], [" milfs", " Guta", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Blowjob", " Shemale", " Strec", " Gabrie", " \u041a\u0440\u0430\u0441\u0438"], [".@", " \u200b\u200b", "@", ":@", ",", "\u2026..", " ", ".\u201c"], ["\u2026..", ",", " \u200b\u200b", "\u2013", "\u2026.", ".\u2013", ".", "\u2013and"], [",", "\u2013", "\u00a0", "\u2026..", " \u00a0 \u00a0", ".", ".\u2013", "\u2013and"], [",", "\u2013", ".\u2013", "\u2026..", "\u2013and", "-$", "..\"", " \n \n"], [",", "\u2013", "\u00a0", ".", "\u2026", "\u2013and", "\u2026..", ".\u2013"], [",", "\u2013", "\u2013and", "\u00a0", ".\u2013", "-$", " $\"", " \u2013"], [",", "\u2013", "\u00a0", "\u2026", " \u2013", " ", "\u2013and", " [\u2026]"], [" **\u2013", "\u2013", " \u2013", "\u2013and", " *\u2013", "**\u2013", " $\\", ","], [" \u2013", "\u2013", " **\u2013", "\u2013and", " pushing", " exploiting", " manipulating", " tackling"], [" \u2013", "\u2013", ",", "\u2013and", " pushing", " tackling", " exploiting", " shifting"], [" \u2013", "\u2013", " ", " pushing", " being", " doing", " going", "\u2013and"], [" \u2013", " going", " being", " getting", " pushing", " ", " doing", " \u2018"], [" \u2013", ",", "\u2013", " \u201c", " ", " going", " getting", " being"], [" \u2013", " tweaking", "\u2013and", " pushing", " spending", "\u2013", " getting", "-heavy"], [" \u201c", " \u2013", " pushing", " spending", " tweaking", " myriad", " pulling", " transitioning"], [" myriad", " \u201c", " \u2013", " \u2018", " swiftly", " pushing", " burgeoning", " shifting"], ["<|endoftext|>", " \n\n", " myriad", "\n\n", " swiftly", " though", " nearly", " continually"], [" ``", " pushing", " shifting", " spending", " tweaking", " myriad", " collapsing", " deploying"], [" ``", " myriad", " shifting", " ''", " pushing", " swiftly", " spending", " battling"], [" ``", " \u2018", "<|endoftext|>", " --", " over", " shifting", " myriad", " ,"], [" ``", " \n\n", " shifting", " --", " myriad", " {{--<", " ''", " pushing"], [" ``", " **", " transitioning", " hacking", " tweaking", " pushing", " manipulating", " shifting"], [" ``", " hacking", " **", " deploying", " pushing", " spending", " processing", " manipulating"], [" ,", " over", " ``", " --", " heavily", " running", " complex", " labor"], [" labor", " processing", " complex", " hacking", " technology", " spending", " **", " hardware"], [" **", " labor", " complex", " processing", " technology", " tech", " hacking", " heavily"], [" labor", " technology", " **", " complex", " processing", " tech", " hardware", " processes"], [" **", " complex", " technology", " labor", " *", " processing", " production", " work"], [" complex", " over", " even", " labor", " technology", " *", " processing", " heavily"], [" complex", " processing", " tech", " technology", " labor", " **", " handling", " processes"], [" **", " *\u201c", " **\u201c", "\u2026*", "\u2026**", " *", " -**", " labor"], ["\u2026*", " \u2026", "\u2026**", " *\u201c", " \u201c", " *", "...*", " **\u201c"], [" Python", " *", "Python", " *\u201c", " python", " **", " **\u201c", " processing"], [" Python", " processing", " handling", " python", " \u201c", "Python", " bureaucratic", " complex"], [" Python", "Python", " python", " \u201c", " processing", " handling", " managing", " bureaucratic"], [" Python", "Python", " python", "_python", "python", "/python", " translating", "-python"], [" Python", "Python", " python", "_python", "python", "/python", "-python", " scripting"], [" Python", "Python", " python", "_python", " scripting", "python", "/python", "-python"], [" Python", "Python", " python", "_python", " scripting", " interactions", " translating", " interface"], [" Python", "Python", " python", " interactions", " interface", " translating", " interfaces", " translation"], [" Python", " python", " interactions", " transfers", " transferring", "Python", " interface", " interfaces"], [" Python", " transferring", " interactions", " transfers", " python", " translating", " interf", " interfaces"], [" Python", " interactions", " transferring", " python", " transfers", " translating", " interf", " brid"], [" Python", " transferring", " interactions", " translating", " interf", " brid", " transfers", " interacting"], [" Python", " interf", " transferring", " interactions", " interacting", " translating", " interoper", " interfaces"], [" transferring", " interf", " Python", " interoper", " translating", " transitioning", " interactions", " interfaces"], [" translating", " transferring", "\u5f80\u8fd4", " interf", " transitioning", " Python", " interoper", " converting"], [" Python", " transferring", " translating", " interf", " interoper", " parsing", "Python", " overhead"], [" Python", "Python", " PyObject", " translating", " parsing", " transferring", "-python", "/python"], [" Python", " transferring", "Python", " translating", " PyObject", " parsing", " syncing", " converting"], [" Python", " transferring", "Python", " PyObject", " translating", " syncing", " JNI", " converting"], [" Python", "Python", " PyObject", " python", "-python", " JNI", "python", " serialization"], [" Python", "Python", " PyObject", " python", "-python", "python", "/python", "PyObject"], [" Python", "Python", " PyObject", " python", "-python", "python", "/python", "PyObject"], [" Python", "Python", " PyObject", " python", "-python", "python", "/python", "PyObject"], [" Python", "Python", " PyObject", " python", "-python", " interpreter", "PyObject", "python"], [" Python", "Python", " PyObject", " python", "-python", " interpreter", "python", "PyObject"], [" Python", " PyObject", " marsh", "Python", " bytecode", " python", " crossing", " JNI"], [" Python", " marsh", " JNI", " bytecode", " garbage", " PyObject", " JIT", " crossing"]], "p": [[0.7334, 0.1636, 0.0682, 0.0284, 0.0021, 0.0007, 0.0006, 0.0005], [0.6583, 0.1886, 0.0308, 0.0037, 0.0029, 0.0022, 0.0018, 0.0018], [0.7553, 0.1312, 0.062, 0.0258, 0.0084, 0.0058, 0.0035, 0.0031], [0.009, 0.0075, 0.007, 0.0051, 0.0045, 0.0035, 0.0033, 0.0031], [0.0598, 0.0438, 0.0438, 0.0386, 0.0266, 0.022, 0.0194, 0.0183], [0.1829, 0.1829, 0.1109, 0.0594, 0.0462, 0.036, 0.0205, 0.015], [0.2582, 0.1382, 0.0787, 0.0349, 0.0272, 0.0272, 0.0256, 0.0199], [0.2881, 0.1449, 0.0567, 0.0567, 0.0501, 0.0196, 0.0173, 0.0127], [0.7604, 0.0908, 0.0801, 0.0203, 0.0075, 0.0055, 0.0048, 0.0037], [0.4564, 0.4028, 0.0257, 0.0138, 0.0101, 0.0095, 0.0029, 0.0022], [0.7091, 0.1793, 0.0747, 0.013, 0.0101, 0.002, 0.0011, 0.0011], [0.052, 0.0217, 0.0169, 0.0159, 0.0096, 0.0085, 0.0066, 0.0062], [0.099, 0.0564, 0.0413, 0.0152, 0.0087, 0.0076, 0.0059, 0.0056], [0.1999, 0.0833, 0.0128, 0.0128, 0.012, 0.006, 0.0057, 0.0057], [0.2213, 0.056, 0.0233, 0.0133, 0.0097, 0.0076, 0.0076, 0.0071], [0.0813, 0.0281, 0.016, 0.0133, 0.0125, 0.0117, 0.011, 0.011], [0.3274, 0.2889, 0.0731, 0.0119, 0.0087, 0.0064, 0.006, 0.0036], [0.0255, 0.0187, 0.0155, 0.0106, 0.0094, 0.0073, 0.0061, 0.0047], [0.0361, 0.0219, 0.0171, 0.0103, 0.0091, 0.0063, 0.0049, 0.0049], [0.0242, 0.0166, 0.0166, 0.0084, 0.0074, 0.0065, 0.0057, 0.0057], [0.7679, 0.0029, 0.0028, 0.0024, 0.0017, 0.001, 0.0008, 0.0008], [0.0089, 0.0069, 0.0061, 0.0045, 0.0042, 0.0042, 0.0037, 0.0035], [0.0358, 0.0116, 0.0085, 0.0085, 0.008, 0.0062, 0.0049, 0.0043], [0.0149, 0.0124, 0.008, 0.0075, 0.0066, 0.0066, 0.0062, 0.0062], [0.0285, 0.0285, 0.0082, 0.0068, 0.0068, 0.006, 0.0047, 0.0041], [0.0531, 0.0343, 0.0134, 0.0092, 0.0087, 0.0063, 0.006, 0.0056], [0.0444, 0.0127, 0.0082, 0.0082, 0.0073, 0.0073, 0.0073, 0.006], [0.0225, 0.0128, 0.0128, 0.0106, 0.0078, 0.0073, 0.0073, 0.0064], [0.0353, 0.0147, 0.0138, 0.0108, 0.0101, 0.0095, 0.0095, 0.0095], [0.1568, 0.0329, 0.0187, 0.0165, 0.0129, 0.0078, 0.0078, 0.0073], [0.0471, 0.039, 0.039, 0.0304, 0.0268, 0.0173, 0.0099, 0.0077], [0.2139, 0.0272, 0.0176, 0.0176, 0.0137, 0.0106, 0.0065, 0.0061], [0.0206, 0.0161, 0.0151, 0.0125, 0.0118, 0.011, 0.0097, 0.0092], [0.0317, 0.0298, 0.0263, 0.0218, 0.0181, 0.0181, 0.0159, 0.0117], [0.1073, 0.0889, 0.0889, 0.0348, 0.0255, 0.0175, 0.0155, 0.0136], [0.6144, 0.0648, 0.0474, 0.0474, 0.0238, 0.0136, 0.0093, 0.0093], [0.6261, 0.062, 0.0426, 0.0293, 0.0243, 0.0147, 0.0115, 0.0079], [0.4677, 0.0361, 0.0248, 0.0219, 0.0181, 0.017, 0.0125, 0.0091], [0.534, 0.0438, 0.0363, 0.0266, 0.025, 0.0118, 0.0072, 0.0059], [0.7674, 0.1333, 0.028, 0.0109, 0.0029, 0.0026, 0.0017, 0.0015], [0.7568, 0.1913, 0.0202, 0.0062, 0.0029, 0.0023, 0.0016, 0.0011], [0.8784, 0.0817, 0.0207, 0.0052, 0.0014, 0.0013, 0.0009, 0.0008], [0.8436, 0.0611, 0.0255, 0.0106, 0.0053, 0.0037, 0.003, 0.0029], [0.641, 0.0635, 0.0282, 0.0282, 0.0182, 0.0142, 0.0117, 0.0091], [0.4466, 0.0471, 0.0471, 0.0442, 0.0415, 0.0237, 0.0237, 0.0222], [0.4166, 0.0498, 0.0498, 0.0388, 0.0342, 0.025, 0.0235, 0.0162], [0.3977, 0.0573, 0.0506, 0.0446, 0.0307, 0.0288, 0.0211, 0.0164], [0.2274, 0.1009, 0.0786, 0.0575, 0.0421, 0.0328, 0.0289, 0.0272], [0.1808, 0.0802, 0.0625, 0.0552, 0.043, 0.0356, 0.0335, 0.0261], [0.0731, 0.0687, 0.0606, 0.0443, 0.0417, 0.0223, 0.0209, 0.0153], [0.0417, 0.0253, 0.0197, 0.0197, 0.0153, 0.0153, 0.0135, 0.0087], [0.1136, 0.1067, 0.0571, 0.0418, 0.0287, 0.027, 0.0254, 0.021], [0.5885, 0.0902, 0.0214, 0.0214, 0.0201, 0.0189, 0.0108, 0.0108], [0.4549, 0.0896, 0.0698, 0.0423, 0.0351, 0.0188, 0.0129, 0.0129], [0.6178, 0.0738, 0.0575, 0.024, 0.024, 0.0187, 0.0106, 0.0094], [0.8413, 0.1005, 0.0175, 0.0106, 0.0073, 0.0044, 0.003, 0.0021], [0.898, 0.0737, 0.0113, 0.0088, 0.0029, 0.0025, 0.0012, 0.0005], [0.8913, 0.0732, 0.0185, 0.0077, 0.0025, 0.0025, 0.0015, 0.0007], [0.8998, 0.0739, 0.0128, 0.0061, 0.0025, 0.0017, 0.0007, 0.0005], [0.9547, 0.0254, 0.0106, 0.005, 0.0013, 0.0005, 0.0005, 0.0005], [0.9835, 0.0096, 0.0028, 0.0022, 0.0005, 0.0001, 0.0001, 0.0001], [0.9361, 0.0104, 0.0092, 0.0081, 0.0049, 0.0038, 0.0026, 0.0025], [0.8488, 0.0241, 0.0146, 0.0137, 0.0121, 0.0061, 0.0047, 0.0047]], "ranks": {"Python": [71307, 189327, 135931, 200983, 47787, 131625, 24083, 59839, 36096, 67234, 19188, 71409, 54083, 63890, 48813, 63998, 49091, 74974, 41412, 65956, 23425, 25609, 15455, 15869, 11849, 3301, 1582, 1880, 1102, 1380, 1165, 1538, 1715, 400, 156, 17, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 5, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]}}, {"pos": 425, "top": [[".", ",", " \u2013", "\u2013", ";", " ", "\u00a0\u00a0", "\u00a0"], [",", ".", " \u2013", "\u2013", ";", " ", ":", "\u2013and"], [".", ",", "\u2013", " \u2013", ";", "\u2026", "\u2026.", "\u2026.."], [" milfs", "-------------</", "----------</", " Blowjob", " Shemale", " cumshot", " ;;^", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9"], [".", ",", ".@", " \u201c.", " (@", "ed", " \u200b\u200b", " CIF"], [".", " \u200b\u200b", ",", " \u201c.", ":", "\u00a0\u00a0", "!\u201d.", " )."], [".", ".\u201d", ".\u2019", "  \n", ",", "   \n", " ", ".\""], [".", "   \n", ",", " \u200b\u200b", "  ", "  \n", ".@", "\u4e94\u989c\u516d\u8272\u7684"], [".", ",", ",.", ":", ";", ".\u201d", ":.", "  \n"], [",", ".", ";", ",.", " \u00ad", ":", "-,", "-J"], [",", ".", " ", "-", "er", "d", "...", ";"], ["\u4e94\u989c\u516d\u8272\u7684", "ician", "er", "igan", " junk", "\u518d\u63a5\u518d", " gadget", "ian"], ["\u88f3", "er", " DRM", "\u4e94\u989c\u516d\u8272\u7684", "ian", "igan", "\u8033\u719f\u80fd\u8be6", "-prepend"], [",", " inventive", "-esque", " albeit", " junk", " collateral", "\u88f3", "an"], ["an", " '", " \"", " ", "o", " requisite", " \ufffd", " Col"], ["an", "-esque", " tech", " potentially", " myriad", "o", " folks", " savvy"], [",", "o", " \"", "an", "e", "-esque", "y", " tech"], ["-esque", " tech", " savvy", "o", "-heavy", " myriad", " buzz", " Tech"], ["-esque", "\u6b64\u756a", " myriad", " tech", "o", " sprawling", " ultimately", "an"], ["-esque", " myriad", " ultimately", "\u6b64\u756a", " arguably", " hugely", " sprawling", " seemingly"], ["<|endoftext|>", " myriad", "an", "i", "\n\n", " \"", "o", " ultimately"], [" ``", " ;;^", " ''", "-esque", "\u5171\u540c\u6253\u9020", "\u6b64\u756a", "\u5de5\u4f5c\u53ca", " Gabrie"], [" ``", " ''", " --", "\u6b64\u756a", " ultimately", "-esque", " ;;^", " myriad"], [" ``", " ''", " --", " ultimately", " '", "\u6b64\u756a", " ,", " subsequently"], [" ``", " ''", " --", " ultimately", "\u6b64\u756a", " heavily", " \\\"", " requisite"], [" ``", " ;;^", " \\\"", " tech", " **>>", "-esque", " electronics", " MEDIAM"], [" ``", " tech", " software", " electronics", " hacker", " \\\"", " hardware", " ;;^"], [" --", " ,", " '", " ''", " ``", " ultimately", " heavily", " complex"], [" \\\"", " tech", " hardware", " complex", " heavily", " --", " system", " technology"], [" **", " complex", " technology", " \\\"", " tech", " hardware", " system", " __"], [" \\\"", " technology", " complex", " system", " tech", " **", " hardware", " software"], [" complex", " system", " \\\"", " power", " ,", " technology", " British", " **"], [" power", " system", " ,", " complex", " \\\"", " even", " technology", " \""], [" tech", " technology", " complex", " hardware", " system", " software", " power", " labor"], [" **", " **\u201c", " tech", " \u201c", " hardware", " *\u201c", " technology", " labor"], [" Python", " \u201c", " software", " tech", " complex", " **\u201c", " *\u201c", " technology"], [" Python", " python", " *", "_python", "Python", "/python", " software", " \u201c"], [" Python", " \u201c", " bureaucracy", " python", " labor", " infrastructure", " complex", "_python"], [" Python", " \u201c", " bureaucracy", " python", " labor", " infrastructure", "_python", " software"], [" Python", "Python", "_python", " python", " Java", "/python", "-python", " PYTHON"], [" Python", "Python", " Java", " python", "_python", "-python", " PYTHON", " JVM"], [" Python", "Python", " Java", " python", "_python", " JVM", " bytecode", " CPU"], [" Python", "_python", "Python", " Java", " python", " JVM", " interpreter", " bytecode"], [" Python", " CPU", " interpreter", " Java", " JVM", "_python", " python", " bytecode"], [" Python", " interpreter", " Java", " python", " CPU", "_python", " JVM", " engine"], [" Python", " interpreter", " CPU", "_python", " python", " Java", " JVM", " engine"], [" Python", " interpreter", " CPU", " python", " JVM", " Java", "_python", " machinery"], [" Python", " interpreter", " python", " CPU", " Interpreter", " JVM", " Java", " runtime"], [" Python", " python", "/python", "_python", " JVM", " interpreter", "-python", " Java"], [" Python", " JVM", "/python", "_python", ";**", "-python", ".python", " python"], [" Python", " JVM", "_python", "/python", "Python", ".python", "-python", "interpreter"], [" Python", " JVM", "Python", "interpreter", " interpreter", "/python", " PyObject", " Java"], [" Python", "Python", "/python", "-python", " python", "_python", " PyObject", ".python"], [" Python", "Python", " interpreter", "-python", " JVM", " python", " PyObject", "interpreter"], [" Python", "Python", " JVM", " interpreter", " runtime", " python", "interpreter", "-python"], [" Python", "Python", " python", " interpreter", "interpreter", "-python", "python", "/python"], [" Python", "Python", " python", "python", "/python", "-python", " PyObject", "_python"], [" Python", " interpreter", "interpreter", "Python", " Interpreter", "Interpreter", " python", "python"], [" interpreter", "interpreter", " Python", " Interpreter", "Interpreter", "Python", " interpre", " python"], [" interpreter", " Python", "interpreter", " Interpreter", "Interpreter", "Python", " interpre", " interpreted"], [" Python", " interpreter", "interpreter", "Python", " Interpreter", " python", "Interpreter", " interpreted"], [" Python", " interpreter", "interpreter", "Python", " Interpreter", " python", " Android", " PyObject"], [" Python", " interpreter", " Android", " Interpreter", " Java", "Python", "interpreter", " JVM"]], "p": [[0.8455, 0.1469, 0.0035, 0.0014, 0.0011, 0.0003, 0.0003, 0.0002], [0.3063, 0.2878, 0.1059, 0.0934, 0.0143, 0.0023, 0.0023, 0.0019], [0.5637, 0.3419, 0.0594, 0.0281, 0.0016, 0.0012, 0.0011, 0.0008], [0.0192, 0.0075, 0.0066, 0.0055, 0.0052, 0.0046, 0.0046, 0.004], [0.053, 0.0126, 0.0111, 0.0076, 0.0067, 0.0063, 0.0063, 0.0059], [0.294, 0.2151, 0.0511, 0.0054, 0.0045, 0.0042, 0.0015, 0.0014], [0.6923, 0.0391, 0.0345, 0.0237, 0.0209, 0.0196, 0.0163, 0.0072], [0.169, 0.0905, 0.0202, 0.0095, 0.0084, 0.0084, 0.0074, 0.0062], [0.8086, 0.1804, 0.0026, 0.0013, 0.0007, 0.0004, 0.0004, 0.0003], [0.914, 0.0048, 0.0012, 0.0007, 0.0006, 0.0005, 0.0004, 0.0003], [0.797, 0.1385, 0.0155, 0.0033, 0.0025, 0.0024, 0.0022, 0.0017], [0.0038, 0.0028, 0.0026, 0.0025, 0.0022, 0.0021, 0.0019, 0.0018], [0.003, 0.0026, 0.0023, 0.0022, 0.0017, 0.0016, 0.0016, 0.0016], [0.0028, 0.0019, 0.0015, 0.0013, 0.0011, 0.0011, 0.001, 0.001], [0.0134, 0.0111, 0.0059, 0.0052, 0.0052, 0.0049, 0.0028, 0.0028], [0.0082, 0.0064, 0.0041, 0.0039, 0.0034, 0.0034, 0.0028, 0.0026], [0.1286, 0.0473, 0.0154, 0.0144, 0.0127, 0.0088, 0.0064, 0.0057], [0.0368, 0.0088, 0.0041, 0.0025, 0.0024, 0.0022, 0.0021, 0.0021], [0.03, 0.003, 0.003, 0.0028, 0.0023, 0.0018, 0.0018, 0.0018], [0.0165, 0.0106, 0.0061, 0.0047, 0.0042, 0.0037, 0.0032, 0.0027], [0.239, 0.006, 0.0047, 0.0039, 0.0039, 0.0036, 0.0027, 0.0027], [0.0046, 0.003, 0.0025, 0.002, 0.0017, 0.0017, 0.0012, 0.0009], [0.1037, 0.0358, 0.0046, 0.0029, 0.0028, 0.0024, 0.002, 0.0016], [0.0745, 0.02, 0.0129, 0.0079, 0.0057, 0.0024, 0.0022, 0.0018], [0.0134, 0.0104, 0.0098, 0.0036, 0.0028, 0.0028, 0.0026, 0.0022], [0.0088, 0.0078, 0.0057, 0.0054, 0.0044, 0.0035, 0.0025, 0.0022], [0.0176, 0.0094, 0.0069, 0.0069, 0.0057, 0.0054, 0.0054, 0.0042], [0.0498, 0.0388, 0.0251, 0.0183, 0.0183, 0.0087, 0.0076, 0.0063], [0.0192, 0.0159, 0.0117, 0.011, 0.0075, 0.0071, 0.0062, 0.0059], [0.0442, 0.0268, 0.0252, 0.0252, 0.0196, 0.0173, 0.0143, 0.0135], [0.0709, 0.0626, 0.0356, 0.0278, 0.0261, 0.0245, 0.0149, 0.0131], [0.0234, 0.0206, 0.0194, 0.0151, 0.0142, 0.0133, 0.0071, 0.0071], [0.0205, 0.0181, 0.017, 0.0159, 0.0124, 0.0117, 0.0103, 0.0071], [0.0659, 0.0482, 0.0258, 0.0214, 0.0189, 0.0138, 0.0095, 0.0095], [0.1008, 0.0693, 0.0651, 0.0225, 0.0199, 0.0187, 0.0175, 0.0128], [0.0582, 0.0483, 0.0258, 0.0201, 0.0178, 0.013, 0.013, 0.0115], [0.7548, 0.0138, 0.0095, 0.0089, 0.0089, 0.0051, 0.0042, 0.004], [0.394, 0.1449, 0.0209, 0.0119, 0.0087, 0.0072, 0.0053, 0.0044], [0.4697, 0.1264, 0.0194, 0.0182, 0.0125, 0.011, 0.0056, 0.0052], [0.9062, 0.0291, 0.0138, 0.0129, 0.0069, 0.0019, 0.0017, 0.0015], [0.9252, 0.0317, 0.008, 0.0075, 0.0049, 0.0015, 0.0012, 0.0011], [0.9159, 0.0148, 0.0139, 0.0102, 0.0102, 0.0033, 0.002, 0.0019], [0.7822, 0.0268, 0.0208, 0.0184, 0.0143, 0.0105, 0.0077, 0.0072], [0.5776, 0.0306, 0.0254, 0.0238, 0.0186, 0.0145, 0.012, 0.0113], [0.399, 0.0349, 0.024, 0.0211, 0.0211, 0.0175, 0.0175, 0.0094], [0.324, 0.0321, 0.0195, 0.0195, 0.0126, 0.0126, 0.0111, 0.0076], [0.3401, 0.0279, 0.0217, 0.018, 0.0169, 0.0109, 0.0071, 0.0055], [0.3359, 0.0354, 0.0157, 0.0139, 0.009, 0.009, 0.007, 0.0054], [0.2915, 0.0145, 0.0145, 0.012, 0.0113, 0.01, 0.0069, 0.0064], [0.176, 0.0186, 0.0174, 0.0136, 0.012, 0.0113, 0.0073, 0.0064], [0.07, 0.0201, 0.0122, 0.0101, 0.0084, 0.0084, 0.0079, 0.0065], [0.5359, 0.0413, 0.0251, 0.0076, 0.0072, 0.0072, 0.0056, 0.0053], [0.9284, 0.028, 0.0063, 0.0049, 0.0038, 0.0026, 0.0019, 0.0018], [0.9177, 0.0216, 0.007, 0.0055, 0.0055, 0.0055, 0.0033, 0.0029], [0.9449, 0.0135, 0.0072, 0.0056, 0.0039, 0.0034, 0.0018, 0.0013], [0.9783, 0.0123, 0.0031, 0.0021, 0.0013, 0.0007, 0.0005, 0.0004], [0.9866, 0.011, 0.0017, 0.0003, 0.0001, 0.0001, 0.0001, 0.0], [0.8481, 0.0789, 0.0478, 0.0121, 0.0057, 0.005, 0.0014, 0.0003], [0.6316, 0.2324, 0.0666, 0.0404, 0.0278, 0.0009, 0.0001, 0.0001], [0.6973, 0.1998, 0.0649, 0.0306, 0.0053, 0.0009, 0.0004, 0.0003], [0.9625, 0.0329, 0.0019, 0.0014, 0.0008, 0.0003, 0.0001, 0.0], [0.9581, 0.0371, 0.0014, 0.0011, 0.0008, 0.0005, 0.0002, 0.0001], [0.9867, 0.0097, 0.0015, 0.0005, 0.0004, 0.0002, 0.0001, 0.0001]], "ranks": {"Python": [47531, 186149, 151724, 189177, 30720, 48863, 11928, 46467, 37029, 82258, 5961, 15963, 10983, 12316, 11629, 14695, 19066, 9500, 4836, 12310, 1376, 2530, 812, 667, 183, 10, 13, 65, 17, 39, 31, 261, 314, 29, 18, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 2, 1, 1, 1]}}, {"pos": 426, "top": [[" \u2013", ",", "\u2013", ".", "<|endoftext|>", " ", "a", " [\u2026]"], [" \u2013", "\u2013", ",", " \u2013,", "\u2013and", " \u200b", ".", "\u200b"], ["\u2013", " \u2013", ",", " \u2013,", ".", "\u2013and", ".\u2013", "\u3002"], [" ``", " ``(", "-------------</", " PYTHON", " \uffe5\uffe5", "\uff0d\uff0d", "erio", "----------</"], [" (@", " @", " Python", " \"@", "\uff20", ":@", " *@", ",@"], [" Python", " \").", ",", "-esque", " \u00a0", "\u957f\u6c99", " \u200b\u200b", "-log"], [" Python", " \u00a0", ".py", " \"\"\"", " $(", " Django", " PYTHON", "-python"], [" Python", ".py", ",", "/python", "\ufffds", " Django", "-python", ".python"], [",", ".", " \u00a0", " Python", "\ufffds", ".py", "......", " \u200b\u200b"], [",", "-esque", " Python", "-style", "\ufffds", ".py", "/python", "_python"], [",", " Python", "-esque", "-style", "...", ".", ".py", " \""], ["-esque", " Python", "/python", "-style", "_python", ".py", " PYTHON", " \\\""], ["-esque", " Python", "-style", "/python", " \\\"", "ian", "naire", "arily"], ["-esque", " Python", "-style", "/python", "-speaking", " PYTHON", " pyramid", "ian"], ["-esque", " \"", "-style", " Python", ",", " \u00ad", " ", "\u00ad"], ["-esque", " \"", " Python", " savvy", " \u00ad", " largely", " arguably", " classic"], ["-esque", " \"", ",", " Python", "-style", " savvy", "ized", "ian"], ["-esque", " Python", "/python", "-python", "_python", "-style", " PYTHON", " savvy"], ["-esque", " Python", "/python", " PYTHON", "-python", " Django", "_python", " python"], ["-esque", " Python", "_python", " PYTHON", "/python", " \\\"", "-python", " Django"], ["<|endoftext|>", "-esque", " Python", " \n\n", "  \n\n", "_python", "   \n\n", " \""], [" ``", " PYTHON", " Python", "/python", "-esque", "_python", "PYTHON", "-python"], [" ``", " Python", " PYTHON", " ''", "/python", "-esque", "_python", " '''"], [" ``", " Python", " ''", " British", " PYTHON", "-esque", "_python", " English"], [" ``", " Python", "_python", "/python", "Python", " PYTHON", " ''", " python"], [" Python", "/python", " python", "_python", " PYTHON", "Python", "-python", " ``"], [" Python", " python", "/python", "_python", "Python", " PYTHON", "-python", ".python"], [" Python", " python", " __", " ``", "_python", "/python", " ''", " '''"], [" Python", " python", "Python", "/python", " __", " PYTHON", "_python", "-python"], [" Python", " __", " python", "/python", "Python", "-python", " ____", " PYTHON"], [" Python", " python", "/python", "Python", "-python", ".py", "python", " PYTHON"], [" Python", " python", "/python", " \\\"", "Python", " physics", "-python", " science"], [" Python", " python", " itself", "/python", " \\\"", " py", " science", " system"], [" Python", "/python", " python", "Python", "-python", "-esque", " software", " PYTHON"], ["/python", " Python", " python", "Python", "-python", " PYTHON", "python", "_python"], [" Python", "/python", "Python", " python", "-python", "python", " PYTHON", ".python"], [" Python", "/python", "Python", " python", "python", "_python", " PYTHON", "-python"], [" Python", "/python", "Python", " python", "python", " PYTHON", "_python", " runtime"], [" Python", "Python", " python", "/python", "python", "_python", " PYTHON", ".python"], [" Python", "Python", " python", "/python", "_python", "python", ".python", " PYTHON"], [" Python", "Python", " python", "/python", "_python", "python", ".python", "-python"], [" Python", "Python", " python", "/python", "_python", " bytecode", "python", ".python"], [" Python", "Python", " python", " bytecode", "/python", "_python", ".python", "python"], [" Python", "Python", " python", " bytecode", "/python", "_python", " runtime", ".python"], [" Python", " python", "Python", " bytecode", " runtime", " interpreter", "/python", "_python"], [" Python", " python", " interpreter", "Python", " runtime", " bytecode", "/python", " language"], [" Python", " python", " runtime", " bytecode", " interpreter", "Python", "/python", " language"], [" Python", " python", " runtime", " interpreter", "Python", " bytecode", "/python", " machinery"], [" Python", "/python", " bytecode", " runtime", " interpreter", " python", "Python", "-syntax"], [" Python", "/python", " runtime", " bytecode", "Python", " interpreter", " python", "-language"], ["/python", " Python", " runtime", "Python", " bytecode", " bureaucracy", ".python", " interpreter"], [" runtime", " bytecode", " interpreter", "runtime", " Runtime", " overhead", "-runtime", " Interpreter"], [" runtime", "/python", " interpreter", " Python", "Python", "runtime", " bytecode", " Runtime"], [" interpreter", " runtime", " Python", " Interpreter", "Python", "/python", "interpreter", " bytecode"], [" interpreter", " Python", "Python", " runtime", "/python", "interpreter", "Interpreter", " Interpreter"], [" interpreter", "interpreter", " Interpreter", "Interpreter", " parser", " runtime", " bytecode", " Python"], [" interpreter", "interpreter", " Interpreter", " Python", "Interpreter", " PyObject", " bytecode", "Python"], [" interpreter", "interpreter", " Interpreter", "Interpreter", " VM", "VM", " interpre", " bytecode"], [" interpreter", "interpreter", "Interpreter", " Interpreter", " interpre", " interpret", " interpreting", " interpretation"], [" interpreter", "interpreter", " Interpreter", "Interpreter", " interpre", " interpret", " interpretation", " interpreted"], [" interpreter", " Interpreter", "interpreter", " VM", " runtime", "Interpreter", " bytecode", " interpre"], [" interpreter", " bytecode", " Interpreter", " runtime", " VM", "interpreter", "Interpreter", " Runtime"], [" interpreter", " bytecode", " Interpreter", " VM", " runtime", "interpreter", " Virtual", "Interpreter"]], "p": [[0.5276, 0.2824, 0.0809, 0.0407, 0.0232, 0.008, 0.0062, 0.0026], [0.347, 0.1447, 0.0683, 0.0603, 0.0441, 0.0196, 0.0196, 0.0119], [0.4743, 0.3694, 0.0727, 0.0268, 0.0208, 0.0126, 0.0064, 0.0018], [0.0146, 0.0042, 0.0035, 0.0029, 0.002, 0.002, 0.0019, 0.0019], [0.0723, 0.0638, 0.0364, 0.025, 0.0195, 0.0195, 0.0161, 0.0126], [0.0085, 0.0043, 0.0031, 0.0029, 0.0028, 0.0024, 0.0018, 0.0017], [0.1406, 0.0456, 0.0203, 0.0179, 0.0123, 0.0115, 0.0108, 0.0102], [0.0867, 0.041, 0.0233, 0.016, 0.016, 0.0097, 0.0091, 0.0076], [0.5091, 0.0781, 0.012, 0.012, 0.0093, 0.0088, 0.0068, 0.0064], [0.5391, 0.0099, 0.006, 0.003, 0.0023, 0.0023, 0.0022, 0.0021], [0.612, 0.0443, 0.0237, 0.0127, 0.0112, 0.0093, 0.0064, 0.0056], [0.0569, 0.0391, 0.0105, 0.0082, 0.0053, 0.0047, 0.0047, 0.0032], [0.0449, 0.0256, 0.0107, 0.0061, 0.0057, 0.0042, 0.0031, 0.0031], [0.0833, 0.0077, 0.0073, 0.0028, 0.0017, 0.0016, 0.0014, 0.0013], [0.0357, 0.018, 0.008, 0.0066, 0.0066, 0.0062, 0.0045, 0.0031], [0.0786, 0.0065, 0.0032, 0.0025, 0.0022, 0.0017, 0.0016, 0.0014], [0.3317, 0.0057, 0.005, 0.0039, 0.0031, 0.0031, 0.0021, 0.002], [0.3554, 0.0089, 0.0039, 0.0027, 0.0021, 0.0018, 0.0016, 0.0014], [0.4096, 0.014, 0.0043, 0.0035, 0.0029, 0.0028, 0.0026, 0.0015], [0.1968, 0.0098, 0.0043, 0.0041, 0.0038, 0.0018, 0.0018, 0.0014], [0.0337, 0.0169, 0.0103, 0.0096, 0.0062, 0.004, 0.0029, 0.0029], [0.0523, 0.0205, 0.0192, 0.0181, 0.0159, 0.0085, 0.0038, 0.0031], [0.4196, 0.0826, 0.0324, 0.0252, 0.0127, 0.0119, 0.0105, 0.0082], [0.1978, 0.0532, 0.0285, 0.0064, 0.005, 0.0047, 0.0047, 0.0044], [0.2434, 0.1476, 0.0543, 0.0397, 0.0309, 0.0241, 0.0213, 0.0188], [0.5716, 0.1445, 0.0532, 0.0469, 0.0414, 0.0414, 0.0162, 0.0087], [0.6923, 0.073, 0.0534, 0.0252, 0.0252, 0.0223, 0.0144, 0.005], [0.4179, 0.0602, 0.0566, 0.044, 0.0267, 0.0208, 0.0172, 0.0152], [0.5122, 0.089, 0.0836, 0.0785, 0.0255, 0.024, 0.0225, 0.0211], [0.4005, 0.1147, 0.1013, 0.0741, 0.0654, 0.0226, 0.0187, 0.0121], [0.447, 0.2111, 0.0605, 0.0443, 0.0184, 0.0093, 0.0087, 0.0072], [0.482, 0.1773, 0.0137, 0.0094, 0.0078, 0.0078, 0.0078, 0.0065], [0.2273, 0.1217, 0.0137, 0.0128, 0.0128, 0.012, 0.0113, 0.0106], [0.2179, 0.2179, 0.2047, 0.0158, 0.0139, 0.0102, 0.0084, 0.0079], [0.2739, 0.1882, 0.1768, 0.065, 0.0186, 0.012, 0.0106, 0.0094], [0.2716, 0.2716, 0.1547, 0.1063, 0.0163, 0.0112, 0.0093, 0.0041], [0.4322, 0.2621, 0.159, 0.0851, 0.0079, 0.0066, 0.0058, 0.0054], [0.5376, 0.1359, 0.1199, 0.0934, 0.0068, 0.0068, 0.0056, 0.0056], [0.6104, 0.1362, 0.1061, 0.0729, 0.0087, 0.0072, 0.005, 0.0041], [0.596, 0.2815, 0.0489, 0.0432, 0.0075, 0.0066, 0.0033, 0.0029], [0.6565, 0.2737, 0.0288, 0.0198, 0.0044, 0.0044, 0.003, 0.0017], [0.7846, 0.1545, 0.0304, 0.0087, 0.006, 0.0032, 0.0028, 0.0022], [0.7017, 0.201, 0.0308, 0.0165, 0.0113, 0.01, 0.0047, 0.0032], [0.7919, 0.0946, 0.0348, 0.0186, 0.0069, 0.0053, 0.0042, 0.0034], [0.7869, 0.0646, 0.0392, 0.0127, 0.0099, 0.0087, 0.0072, 0.0039], [0.7812, 0.0499, 0.0162, 0.0126, 0.0126, 0.0087, 0.0063, 0.0056], [0.7076, 0.0581, 0.0258, 0.0214, 0.0201, 0.0156, 0.0065, 0.0058], [0.5943, 0.0553, 0.0488, 0.0296, 0.0278, 0.023, 0.0131, 0.009], [0.3049, 0.0639, 0.06, 0.06, 0.0439, 0.0302, 0.0195, 0.0111], [0.1447, 0.0934, 0.0775, 0.0775, 0.0344, 0.0268, 0.0184, 0.0162], [0.1442, 0.0601, 0.0565, 0.0565, 0.0498, 0.0195, 0.0162, 0.0162], [0.3401, 0.0974, 0.0915, 0.0297, 0.018, 0.018, 0.0159, 0.014], [0.2904, 0.1372, 0.121, 0.1068, 0.0832, 0.0505, 0.0174, 0.0154], [0.6135, 0.1208, 0.0346, 0.0305, 0.0238, 0.0238, 0.021, 0.0185], [0.5939, 0.1325, 0.0911, 0.0552, 0.0335, 0.014, 0.0123, 0.0085], [0.886, 0.0642, 0.0143, 0.0143, 0.006, 0.0046, 0.0022, 0.0019], [0.8426, 0.1006, 0.0136, 0.0106, 0.0094, 0.0064, 0.0044, 0.0044], [0.9061, 0.0656, 0.0146, 0.0129, 0.0003, 0.0001, 0.0001, 0.0001], [0.9204, 0.0588, 0.0116, 0.009, 0.0001, 0.0, 0.0, 0.0], [0.9754, 0.0123, 0.0096, 0.0024, 0.0002, 0.0001, 0.0, 0.0], [0.9827, 0.0075, 0.0058, 0.0012, 0.0009, 0.0008, 0.0007, 0.0001], [0.9646, 0.0121, 0.0074, 0.0065, 0.0045, 0.0027, 0.0006, 0.0001], [0.9625, 0.0121, 0.0094, 0.0083, 0.0031, 0.0005, 0.0004, 0.0004]], "ranks": {"Python": [554, 609, 896, 19, 3, 1, 1, 1, 3, 3, 2, 2, 2, 2, 4, 3, 4, 2, 2, 2, 3, 3, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 15, 4, 3, 2, 8, 4, 18, 28, 38, 18, 99, 52]}}, {"pos": 427, "top": [[".", " \u2013", ",", "er", " ", ";", "o", "<|endoftext|>"], ["er", " \u2013", " \uff5e", " \u2018", "\uff20", " '@", "@@@@", " \u00a9"], [".", ",", ".\u2013", " \u2013", "\u2018", "\u2013", "er", "\u2018s"], ["\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a", " **\u300c", "\uff0a\uff0a\uff0a\uff0a", "\uff63", "\uff1d\uff1d\uff1d\uff1d", "':''", "\uff0a\uff0a", " \uff62"], ["er", ".", ".@", " '@", " \n\n\n", " \u00a9", "\uff20", " \u201c."], [".", "er", " \n\n\n", " \u201c.", ",", " \u201d", ".@", "\u2018s"], [".", " \n\n\n", ".\u201d", "er", ".\u00ab", ".\u2019", ".__", "\u00ae"], [".", "er", ",", ".\u00ab", " \n\n\n", ";", " \ufffd", " \u00ae"], [".", " \n\n\n", " \n\n", " \u00bb.", ".\u00ab", ".\u201d", ".\u00bb", ","], [",", ".", ";", ".''", "\u00a0", ".|", ":", ".["], [".", ",", "\u00a0", ";", ".[", "er", " ", ".\""], [" **\u300c", ".''", " \n  \n", " \n\n\n", "er", ".__", " ''", " \n \n"], ["er", ".\u00ab", " \u201a", " **\u300c", ".''", " ''", " \u00ab", "."], [",", ".", " ", "er", "\u00a0", " \u201a", "\u2019s", " arte"], [" ", ",", " at", ".", " \n\n\n", " \ufffd", "\u00a0", " largely"], [" ", ",", "e", " largely", " arguably", " \u2014", "\u00a0", "er"], [",", "\u00a0", ".", "e", " ", "a", ";", " \n\n"], [",", ".", " \n\n", " largely", " \n  \n", " \n\n\n", "\u00a0", "\u2014and"], [" largely", "\u2014and", " \n  \n", " arguably", " \n\n", "\u2014or", " ostensibly", " \u2014"], [" \n\n", " \n  \n", "\u2014and", " \u2014", " largely", " \n\n\n", "\u2014or", ","], [" \n\n", "<|endoftext|>", " \n\n\n", " \n  \n", "  \n\n", " largely", " \u2014", "\n\n"], [" ``", " ''", " \u00bb**", " largely", " )**", " \n  \n", "\u25c7\u25c6", "LIBINT"], [" ``", " ''", " --", " largely", " __", " \n  \n", " ultimately", " \u2015"], [" ``", " ,", " ''", " --", " largely", " much", " in", " at"], [" \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", " ,", " __", " .", " **", " and", " during"], [" ,", " and", " during", " rapidly", " **", " over", " at", " ."], [" even", " and", " ,", " rapidly", " over", " heavily", " quickly", " effectively"], [" rapidly", " heavily", " even", " and", " effectively", " quickly", " vastly", " increasingly"], [" rapidly", " heavily", " vastly", " effectively", " quickly", " increasingly", " deeply", " aggressively"], [" rapidly", " faster", " \u2014", " quickly", "\u2014and", " slower", " heavily", "\u2014even"], [" slower", " rapidly", " faster", " slow", " slowed", " slowing", " quickly", " speed"], [" rapidly", " slower", " faster", " quickly", " slow", " itself", " speed", " slowly"], [" slower", " even", " rapidly", " faster", " slow", " itself", " slowing", " quickly"], [" slower", " slow", " faster", " slowing", " even", " speed", " slows", " constantly"], [" slower", " speed", " faster", " slow", " slowing", " slows", " overhead", " CPU"], [" overhead", " CPU", " slower", " speed", " faster", "\u2014even", " slowing", " slow"], [" overhead", " CPU", " slower", " bottleneck", " speed", " faster", " engine", " inefficient"], [" overhead", " CPU", " bottleneck", " speed", " slower", " processing", " faster", " engine"], [" overhead", " itself", " bottleneck", " costs", " slower", " speed", " inefficient", " CPU"], [" itself", " overhead", " bottleneck", " inherently", " routinely", " slow", " constantly", " costs"], [" itself", " overhead", " plus", " even", " combined", " daily", " bottleneck", " constantly"], [" itself", " plus", " even", " overhead", " combined", "\u2014even", " alone", " and"], [" itself", " plus", "\u2014even", " alone", " alongside", " combined", " even", "\u672c\u8eab\u5c31\u662f"], [" itself", " plus", "\u2014even", " alone", "\u672c\u8eab\u5c31\u662f", " alongside", "\u672c\u8eab\u5c31", " overhead"], [" itself", " alone", "\u672c\u8eab\u5c31\u662f", " plus", "\u672c\u8eab\u5c31", "\u672c\u8eab\u7684", "\u672c\u8eab", "\u52a0\u4e0a"], [" plus", "\u52a0\u4e0a", " itself", "\u518d\u52a0\u4e0a", "\u52a0\u4e4b", " alone", " ditambah", " \u043f\u043b\u044e\u0441"], ["\u52a0\u4e0a", " plus", "\u518d\u52a0\u4e0a", " itself", " overhead", " ditambah", "\u52a0\u4e4b", "\u2014even"], ["\u52a0\u4e0a", " plus", " overhead", " itself", "\u2014even", " combined", "\u518d\u52a0\u4e0a", " ditambah"], [" alone", "alone", " combined", "\u52a0\u4e0a", " Alone", " plus", "combined", " overhead"], [" alone", " plus", " combined", "\u52a0\u4e0a", "alone", " overhead", " Alone", " +"], [" alone", "alone", " Alone", " combined", " overhead", " garbage", " itself", " plus"], [" alone", "alone", " garbage", " Alone", " plus", " bytecode", "\u52a0\u4e0a", " calling"], [" alone", " overhead", "alone", " garbage", " bytecode", " itself", " plus", " calling"], [" alone", " garbage", " itself", " plus", " +", " calling", " bytecode", " overhead"], [" alone", " itself", " calling", " garbage", " +", " loop", " bytecode", " overhead"], [" alone", ",", " +", " bytecode", " itself", " garbage", " overhead", " calling"], [",", " alone", " +", " overhead", " itself", " calling", " bytecode", "+C"]], "p": [[0.7857, 0.0345, 0.0269, 0.0209, 0.0099, 0.0053, 0.0041, 0.0039], [0.0932, 0.0726, 0.0531, 0.0208, 0.0152, 0.0081, 0.0072, 0.0068], [0.8304, 0.0602, 0.0195, 0.0143, 0.0134, 0.0126, 0.0038, 0.0036], [0.1475, 0.0654, 0.0273, 0.02, 0.0188, 0.0176, 0.0155, 0.0129], [0.1726, 0.0465, 0.0219, 0.0076, 0.0063, 0.0059, 0.0059, 0.0052], [0.1802, 0.0139, 0.0131, 0.0123, 0.0096, 0.0074, 0.0058, 0.0058], [0.4269, 0.0256, 0.0241, 0.0188, 0.0121, 0.0107, 0.01, 0.0083], [0.7721, 0.0206, 0.0133, 0.0097, 0.0059, 0.0043, 0.0036, 0.0036], [0.7962, 0.0256, 0.01, 0.01, 0.0083, 0.0083, 0.005, 0.005], [0.487, 0.487, 0.0084, 0.0011, 0.0011, 0.001, 0.0006, 0.0005], [0.9393, 0.0468, 0.0032, 0.0021, 0.0012, 0.0006, 0.0004, 0.0002], [0.0298, 0.0263, 0.0192, 0.0192, 0.0159, 0.0141, 0.0117, 0.008], [0.0122, 0.0089, 0.0074, 0.0074, 0.0069, 0.0069, 0.0051, 0.0048], [0.2104, 0.0441, 0.0098, 0.0092, 0.0049, 0.0039, 0.003, 0.003], [0.1683, 0.1021, 0.0189, 0.0167, 0.0138, 0.0115, 0.0108, 0.0095], [0.0318, 0.0206, 0.0206, 0.0181, 0.0117, 0.0091, 0.0086, 0.0081], [0.7799, 0.0343, 0.0183, 0.0118, 0.0111, 0.0067, 0.0046, 0.0034], [0.2305, 0.0214, 0.0147, 0.0138, 0.0101, 0.0095, 0.0074, 0.0065], [0.0391, 0.0345, 0.0196, 0.0173, 0.0135, 0.0119, 0.0119, 0.0112], [0.1167, 0.0753, 0.0587, 0.0486, 0.0334, 0.0245, 0.0168, 0.0131], [0.6328, 0.1813, 0.0431, 0.0169, 0.0085, 0.0043, 0.0033, 0.0026], [0.4268, 0.0578, 0.0069, 0.0065, 0.005, 0.0027, 0.0025, 0.0022], [0.7066, 0.0898, 0.0101, 0.0065, 0.0037, 0.0035, 0.0025, 0.0024], [0.218, 0.1242, 0.0551, 0.0356, 0.023, 0.0109, 0.0096, 0.009], [0.8188, 0.0462, 0.0205, 0.015, 0.0097, 0.0067, 0.0059, 0.0052], [0.3582, 0.159, 0.0751, 0.0663, 0.0455, 0.0244, 0.0168, 0.0102], [0.2072, 0.1717, 0.1516, 0.0594, 0.0408, 0.0318, 0.0232, 0.0218], [0.506, 0.1362, 0.039, 0.0367, 0.0367, 0.0163, 0.0135, 0.0112], [0.2057, 0.1328, 0.1034, 0.0589, 0.0589, 0.0336, 0.0278, 0.0169], [0.2538, 0.1276, 0.1126, 0.0727, 0.047, 0.0162, 0.0126, 0.0126], [0.102, 0.09, 0.0845, 0.0701, 0.0658, 0.0619, 0.0166, 0.013], [0.0685, 0.0344, 0.0222, 0.0222, 0.0209, 0.0209, 0.0153, 0.0153], [0.0593, 0.0557, 0.0492, 0.0383, 0.0263, 0.015, 0.0141, 0.0124], [0.0594, 0.0493, 0.0281, 0.0248, 0.0219, 0.017, 0.0141, 0.0125], [0.083, 0.0444, 0.0185, 0.0185, 0.0144, 0.0136, 0.0106, 0.0088], [0.1046, 0.0464, 0.0409, 0.0248, 0.0233, 0.0219, 0.0193, 0.0117], [0.1087, 0.0959, 0.0547, 0.0312, 0.0258, 0.0243, 0.0201, 0.0177], [0.0725, 0.064, 0.044, 0.0284, 0.0235, 0.0183, 0.0172, 0.0152], [0.062, 0.0275, 0.0275, 0.0243, 0.0228, 0.0189, 0.0157, 0.0138], [0.1148, 0.0329, 0.029, 0.029, 0.0226, 0.0212, 0.0199, 0.0199], [0.141, 0.091, 0.0666, 0.0626, 0.0404, 0.0261, 0.0261, 0.0179], [0.0668, 0.0627, 0.0488, 0.0405, 0.0261, 0.0217, 0.0169, 0.0159], [0.1394, 0.0701, 0.0399, 0.0331, 0.0258, 0.0201, 0.0177, 0.0147], [0.1826, 0.0492, 0.0298, 0.0298, 0.0263, 0.0192, 0.0192, 0.016], [0.1856, 0.0414, 0.0267, 0.0251, 0.0222, 0.0208, 0.0184, 0.0184], [0.1311, 0.0959, 0.0167, 0.0147, 0.0138, 0.013, 0.013, 0.013], [0.1809, 0.0487, 0.0379, 0.0191, 0.0148, 0.0131, 0.0116, 0.0116], [0.7069, 0.058, 0.0545, 0.0129, 0.0114, 0.0074, 0.0069, 0.0057], [0.4848, 0.2595, 0.0424, 0.0398, 0.0166, 0.0138, 0.0138, 0.0069], [0.7927, 0.0507, 0.0289, 0.0113, 0.0088, 0.0069, 0.0064, 0.005], [0.7068, 0.0844, 0.0352, 0.0274, 0.0227, 0.0177, 0.0166, 0.0122], [0.3251, 0.2235, 0.174, 0.0565, 0.0267, 0.0267, 0.0162, 0.0152], [0.5067, 0.1281, 0.0605, 0.0534, 0.0416, 0.0223, 0.0223, 0.0209], [0.3902, 0.0986, 0.0768, 0.0598, 0.0341, 0.032, 0.032, 0.022], [0.9641, 0.0138, 0.0095, 0.0051, 0.0016, 0.0014, 0.0008, 0.0006], [0.9385, 0.0134, 0.0118, 0.0092, 0.0092, 0.0026, 0.0021, 0.0014], [0.9718, 0.0122, 0.0024, 0.0019, 0.0013, 0.0009, 0.0008, 0.0006], [0.9439, 0.0135, 0.0053, 0.003, 0.003, 0.0023, 0.0018, 0.0016], [0.9101, 0.0243, 0.0101, 0.0061, 0.0058, 0.0054, 0.0033, 0.0026], [0.915, 0.0108, 0.009, 0.0051, 0.0051, 0.004, 0.0037, 0.0035], [0.7355, 0.0323, 0.0252, 0.0222, 0.0173, 0.0163, 0.0135, 0.0112], [0.4499, 0.2729, 0.0505, 0.0164, 0.0164, 0.0145, 0.0136, 0.0128], [0.9941, 0.0041, 0.0004, 0.0002, 0.0001, 0.0001, 0.0001, 0.0]], "ranks": {"Python": [15872, 148543, 120543, 153680, 22776, 72234, 11736, 14751, 8364, 13800, 1540, 1426, 2087, 2089, 3417, 3914, 4748, 1614, 2166, 6382, 3757, 3953, 1453, 1963, 979, 77, 60, 201, 88, 183, 190, 377, 738, 1152, 1442, 1597, 2817, 5768, 5004, 1776, 1271, 855, 646, 1199, 1081, 1226, 1236, 1145, 2196, 976, 1901, 440, 539, 467, 628, 390, 39, 39, 42, 91, 61, 85, 142]}}, {"pos": 428, "top": [[",", ".", "\u2013", ";", " \u2013", "\u00a0", ",.", "\u00a0\u00a0"], ["\u2013", ",", ".", " \u2013", "\u2013and", ";", ".\u2013", ".["], [",", "\u2013", ".", " \u2013", "\u2013and", ";", ".\u2013", "\u2026"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " milfs", "-------------</", " ;;^", "----------</", "\u54e5\u534e", "\ufffd\ufffd", " Blowjob"], [",", ".", "ingly", "\u00a0\u00a0", ",@", ":@", ".@", ".\u201c"], [",", ".", "\u00a0\u00a0", "\u00a0", "\u2013and", ";", "odd", ":"], [",", ".", "\u00a0", "ly", "\uff0c", "\u00a0\u00a0", "\u2014\u2014", ";"], [",", ".", "ly", "\u00a0", ";", "ably", "\u00a0\u00a0", "much"], [",", "\u00a0", ".", ";", "\u2013and", "!,", "\u00a0\u00a0", "ly"], [",", "\u00a0", "\u2013and", " \u00ad", "\u00ad", "!,", ";", "much"], [",", "\u00a0", " \u00ad", " albeit", ".", " though", "\u00ad", "ly"], ["unky", "ily", " uncomfort", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " albeit", "ly", "\u611f\u5341\u8db3", "\u5468\u906d"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "unky", " albeit", " uncomfort", "\u5468\u906d", "ardware", "ily", " impactful"], [" albeit", " arguably", " intric", " entirety", "\u5468\u906d", "\u8d8a\u53d1", " akin", " largely"], [" though", " albeit", " arguably", " largely", " amongst", " myriad", " seemingly", " truly"], [" largely", " myriad", " incredibly", " arguably", " sprawling", " though", " albeit", " vastly"], [",", "\u00a0", "o", " incredibly", " largely", " myriad", " seemingly", " arguably"], ["\u2013and", "-esque", " incredibly", ",", " myriad", " hefty", " sprawling", " effortlessly"], [" myriad", " incredibly", " inevitably", " seemingly", " countless", " albeit", " sprawling", " effortlessly"], ["<|endoftext|>", " myriad", " swiftly", " burgeoning", " seemingly", " largely", " vastly", " inevitably"], ["<|endoftext|>", "\n\n", " myriad", " swiftly", "<|file_sep|>", " burgeoning", " requisite", " seemingly"], [" myriad", "\u5145\u65a5\u7740", " inevitably", " intric", " burgeoning", " swiftly", "\u4e5f\u4f7f\u5f97", " sprawling"], [" myriad", " swiftly", " requisite", "\u5145\u65a5\u7740", " burgeoning", " seemingly", " merely", " intric"], [" myriad", " ultimately", " swiftly", " largely", " merely", " continually", " requisite", " seemingly"], ["\n\n", " myriad", " requisite", " \n\n", " \r\n\r\n", "\r\n\r\n", " intric", " seemingly"], [" complexities", " intric", " myriad", "\u7eb7\u7e41", " tweaking", "\u5145\u65a5\u7740", " sprawling", " intricate"], [" complexities", " myriad", " intric", "\n\n", " heavily", " sprawling", " uncomfort", " tweaking"], ["\n\n", " heavily", " myriad", " \n\n", " seemingly", " ultimately", " largely", " vastly"], [" heavily", " myriad", " complex", " ultimately", " increasingly", " seemingly", " sprawling", " intric"], [" heavily", " complex", " ultimately", " myriad", " much", " largely", " heavy", " even"], [" heavily", " even", " complex", " much", " heavy", " ultimately", " largely", " increasingly"], [" even", " heavily", " complex", " much", " heavy", " over", " power", " ultimately"], [" heavily", " even", " complex", " heavy", " power", " largely", " labor", " much"], [" heavily", " complex", " inherently", " meticulously", " aggressively", " complexities", " technological", " mechanisms"], [" heavily", " meticulously", " complex", " inherently", " aggressively", " complexities", " arguably", " myriad"], [" complex", " inherently", " inevitably", " complexities", " complexity", " sprawling", " heavily", " computational"], [" slower", " inefficient", " slow", " ineff", " slowing", " sluggish", " bottleneck", " buffering"], [" inefficient", " complex", " slower", " bottleneck", " overhead", " logistical", " ineff", " inherently"], [" inefficient", " slower", " labor", " ineff", " buffering", " handling", " bottleneck", " inherently"], [" garbage", " memory", " buffering", " inefficient", " clutter", " labor", " unpredictable", " Python"], [" memory", " garbage", " Python", "Python", " fragmentation", " overhead", " buffering", " inefficient"], [" memory", " garbage", " Python", " buffering", " processing", " handling", " runtime", " clutter"], [" garbage", " memory", " buffering", " processing", " handling", " Python", " inefficient", " automation"], [" garbage", " inefficient", " automated", " handling", " automation", " memory", " processing", " overhead"], [" garbage", " inefficient", " fragmentation", " delays", " handling", " overhead", " buffering", " automation"], [" garbage", " inefficient", " delays", " handling", " buffering", " fragmentation", " overhead", " automated"], [" garbage", " buffering", " delays", " inefficient", " handling", " fragmentation", " automated", " automation"], [" delays", " handling", " garbage", " buffering", " fragmentation", " automated", " inefficient", " interactions"], [" delays", " buffering", " fragmentation", " garbage", " glitches", " animations", " interruptions", " buffers"], [" buffering", " delays", " fragmentation", " glitches", " garbage", " sluggish", " bureaucracy", "\u5783\u573e\u5904\u7406"], [" buffering", "tijk", "_HEAP", "\u52a0\u4e4b", " delays", " fragmentation", " bureaucracy", "\u52a0\u4e0a"], [" overhead", " buffering", "\u52a0\u4e4b", "\u52a0\u4e0a", "\u518d\u52a0\u4e0a", " latency", " serialization", "_malloc"], [" buffering", " overhead", "\u52a0\u4e4b", "\u52a0\u4e0a", " serialization", "Python", " latency", "\u518d\u52a0\u4e0a"], [" buffering", " overhead", " serialization", " latency", " garbage", "\u52a0\u4e0a", "\u52a0\u4e4b", " Python"], [" garbage", " memory", "\u52a0\u4e0a", "_malloc", "\u52a0\u4e4b", "\u518d\u52a0\u4e0a", " serialization", " overhead"], [" garbage", "\u5783\u573e", "\u5783\u573e\u5904\u7406", " serialization", " bytecode", " GC", " memory", "\u52a0\u4e0a"], [" garbage", "\u5783\u573e", " GC", "GC", "gc", "(gc", "\u5783\u573e\u5904\u7406", " gc"], [" garbage", " GC", "GC", "\u5783\u573e", " PyObject", "(gc", "gc", " Python"], [" GC", " garbage", "GC", " PyObject", " Python", "\u5783\u573e", " memory", "(gc"], [" garbage", " GC", "\u5783\u573e", " memory", "GC", " Gar", " gc", "gc"], [" garbage", " GC", " memory", "\u5783\u573e", " Gar", "GC", " gc", "_GC"], [" garbage", " GC", " Gar", " memory", "GC", "\u5783\u573e", " gc", "_GC"], [" garbage", " GC", " memory", " object", " JIT", " Gar", " bytecode", " JNI"]], "p": [[0.8033, 0.1792, 0.0147, 0.0012, 0.0011, 0.0002, 0.0, 0.0], [0.4977, 0.4392, 0.0281, 0.0193, 0.0059, 0.0055, 0.0006, 0.0002], [0.7602, 0.2178, 0.0158, 0.0035, 0.0011, 0.0008, 0.0002, 0.0001], [0.0072, 0.0034, 0.0028, 0.002, 0.0018, 0.0015, 0.0012, 0.0011], [0.2708, 0.0082, 0.0047, 0.0039, 0.0019, 0.0019, 0.0018, 0.0015], [0.6646, 0.0114, 0.0048, 0.0024, 0.0015, 0.0015, 0.0013, 0.0008], [0.5438, 0.0394, 0.037, 0.0239, 0.0106, 0.01, 0.0078, 0.0068], [0.6904, 0.0184, 0.0126, 0.0039, 0.0034, 0.0022, 0.0021, 0.0019], [0.8058, 0.0259, 0.0229, 0.0033, 0.0019, 0.0019, 0.0016, 0.0012], [0.6083, 0.0018, 0.0014, 0.0012, 0.001, 0.001, 0.0009, 0.0007], [0.848, 0.035, 0.0061, 0.0042, 0.0017, 0.0017, 0.0016, 0.0014], [0.008, 0.0071, 0.0038, 0.003, 0.0028, 0.002, 0.002, 0.002], [0.0086, 0.0038, 0.0038, 0.0028, 0.0022, 0.0015, 0.0015, 0.0014], [0.0203, 0.0042, 0.004, 0.0035, 0.0033, 0.0029, 0.0029, 0.0027], [0.0698, 0.0578, 0.0273, 0.0241, 0.0129, 0.0107, 0.01, 0.0083], [0.0331, 0.0292, 0.0274, 0.0242, 0.0156, 0.0156, 0.0114, 0.0089], [0.434, 0.0335, 0.0245, 0.0179, 0.0158, 0.0109, 0.0085, 0.0062], [0.0225, 0.012, 0.0113, 0.01, 0.01, 0.0088, 0.0083, 0.0078], [0.0198, 0.0198, 0.0164, 0.0128, 0.0106, 0.01, 0.0094, 0.0088], [0.3169, 0.019, 0.0079, 0.0066, 0.0055, 0.0048, 0.004, 0.004], [0.9878, 0.0003, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.0026, 0.0025, 0.0019, 0.0017, 0.0016, 0.0016, 0.0014, 0.0013], [0.0066, 0.0043, 0.0035, 0.0033, 0.0029, 0.0024, 0.0023, 0.002], [0.0096, 0.0048, 0.004, 0.0038, 0.0035, 0.0035, 0.0033, 0.0033], [0.0259, 0.0095, 0.0074, 0.0054, 0.004, 0.004, 0.0031, 0.0031], [0.005, 0.0025, 0.0024, 0.0015, 0.0015, 0.0013, 0.0012, 0.001], [0.0063, 0.0059, 0.0046, 0.0041, 0.0032, 0.0026, 0.0022, 0.0019], [0.0621, 0.0178, 0.013, 0.0122, 0.0084, 0.0074, 0.0058, 0.0054], [0.0381, 0.0246, 0.0096, 0.0085, 0.007, 0.0062, 0.0058, 0.0055], [0.0431, 0.0124, 0.0109, 0.0109, 0.0096, 0.009, 0.007, 0.007], [0.0463, 0.0264, 0.0193, 0.0181, 0.011, 0.0103, 0.0091, 0.0086], [0.0364, 0.0364, 0.0183, 0.0183, 0.0126, 0.0126, 0.0081, 0.0076], [0.0394, 0.0239, 0.0239, 0.0113, 0.0078, 0.006, 0.0057, 0.0053], [0.0493, 0.0264, 0.0205, 0.0193, 0.0071, 0.0071, 0.0071, 0.0063], [0.0231, 0.018, 0.0169, 0.0149, 0.0075, 0.0075, 0.0059, 0.0055], [0.0226, 0.0212, 0.0107, 0.0094, 0.0073, 0.0065, 0.0061, 0.0057], [0.0873, 0.0724, 0.0207, 0.0195, 0.0172, 0.0152, 0.0098, 0.0092], [0.0303, 0.0172, 0.0172, 0.0126, 0.0126, 0.0119, 0.0111, 0.0111], [0.0405, 0.014, 0.0124, 0.0116, 0.0102, 0.0096, 0.009, 0.008], [0.1037, 0.0217, 0.018, 0.0132, 0.0124, 0.0103, 0.0096, 0.0096], [0.1306, 0.0744, 0.0451, 0.0177, 0.0138, 0.0129, 0.0129, 0.0101], [0.1302, 0.1223, 0.0615, 0.0226, 0.0188, 0.0129, 0.0129, 0.0114], [0.1091, 0.0401, 0.0276, 0.0202, 0.019, 0.0178, 0.0148, 0.0122], [0.1303, 0.033, 0.0257, 0.0257, 0.0241, 0.0226, 0.0176, 0.0137], [0.1038, 0.0433, 0.0232, 0.018, 0.018, 0.0159, 0.0132, 0.0103], [0.0683, 0.0236, 0.0173, 0.0143, 0.0134, 0.0111, 0.0111, 0.0087], [0.0326, 0.0287, 0.0238, 0.021, 0.0197, 0.0144, 0.0136, 0.0093], [0.0403, 0.0334, 0.0295, 0.0244, 0.0168, 0.0139, 0.0123, 0.0096], [0.0256, 0.0226, 0.0188, 0.0156, 0.0094, 0.0094, 0.0089, 0.0083], [0.0299, 0.016, 0.0117, 0.0091, 0.0076, 0.0067, 0.0063, 0.0059], [0.0138, 0.0065, 0.0058, 0.0051, 0.004, 0.004, 0.0037, 0.0037], [0.0515, 0.0484, 0.0189, 0.0157, 0.0157, 0.0139, 0.0074, 0.0074], [0.2555, 0.0473, 0.0223, 0.0197, 0.0185, 0.0127, 0.0119, 0.0119], [0.2393, 0.073, 0.0324, 0.0286, 0.0223, 0.0196, 0.0185, 0.0153], [0.6368, 0.0359, 0.0359, 0.0192, 0.0192, 0.0192, 0.015, 0.0132], [0.9392, 0.0284, 0.0056, 0.0038, 0.0021, 0.0018, 0.0012, 0.0009], [0.9558, 0.0198, 0.0175, 0.0014, 0.0011, 0.001, 0.0007, 0.0005], [0.7776, 0.1531, 0.0161, 0.0126, 0.0067, 0.0067, 0.0059, 0.0036], [0.6455, 0.2691, 0.0468, 0.0072, 0.0049, 0.0043, 0.0038, 0.0034], [0.9001, 0.0837, 0.0061, 0.0029, 0.0029, 0.0014, 0.0006, 0.0004], [0.8198, 0.1614, 0.0055, 0.0038, 0.003, 0.0026, 0.0007, 0.0005], [0.8406, 0.1461, 0.005, 0.003, 0.0014, 0.0011, 0.0006, 0.0002], [0.6048, 0.3237, 0.0341, 0.0086, 0.0052, 0.0025, 0.002, 0.0016]], "ranks": {"Python": [47431, 192304, 94131, 222828, 123955, 159423, 13037, 56638, 60919, 114746, 29687, 113779, 121631, 114368, 61658, 107372, 67113, 36711, 52848, 115471, 62291, 168152, 162152, 167362, 55308, 86943, 66077, 35449, 25603, 25232, 16412, 15989, 12643, 5652, 4626, 1315, 97, 165, 79, 7, 3, 3, 6, 14, 14, 17, 27, 10, 16, 61, 22, 17, 6, 8, 38, 18, 13, 8, 5, 16, 9, 23, 13]}}, {"pos": 429, "top": [[".", "o", "i", "a", ",", "e", "\u2026.", "\u2026"], ["i", "\u00ac", "o", "\u0629", "\u064b", "en\u00ed", "  \n\n", "!!!"], ["\u2026", ".", "\u2026.", "\u2026\u201d", ",", "i", "\u2026,", "\u201d\u2026"], ["\r\r\n", "\uff3f\uff3f", " Geile", "\u600e\u9ebd", "\u4ec0\u9ebd", " Blowjob", "eless", " **\u201c"], ["i", "bage", "\u00ac", " $$$", "o", "\uff20", "\u600e\u9ebd", "!!!"], ["bage", "i", " garbage", "oggio", "\u201d\u2026", "zg", "\u600e\u9ebd", " crap"], ["bage", "i", "\u201d\u2026", "\u00ac", " $$$", " crap", " trash", " garbage"], ["bage", "i", " crap", " trash", " garbage", " junk", "\u600e\u9ebd", "\u00ac"], [" \n\n", "...\u201d", "  \n\n", "\r\n\r\n", "...", "\n\n", "bage", " \r\n\r\n"], ["bage", " trash", " garbage", "trash", "&amp", "junk", "Dump", " $$$"], ["bage", "...", "&amp", "...\u201d", "...**", "\r\n\r\n\r\n\r\n", "\r\n\r\n", "\\xc"], ["bage", "\r\n\r\n\r\n\r\n", "...**", "trash", " trash", " \r\n\r\n", " garbage", "Dump"], ["bage", " garbage", " trash", "trash", "dump", " \r\n", " \r\n\r\n", "Dump"], [" garbage", " trash", "bage", "dump", " dumping", "trash", " \r\n\r\n", " junk"], [" \n\n", "  \n\n", " \n\n\n", " \r\n\r\n", "i", " \n\n\n\n", "o", "\r\n\r\n"], [" \n\n", "i", "o", "  \n\n", "&amp", " \n\n\n\n", "e", "bage"], ["o", " \n\n", "i", "  \n\n", "e", "a", "<|endoftext|>", "\u00a0"], [" \n\n", "  \n\n", " \n\n\n\n", "o", "bage", " \r\n\r\n", "i", "dump"], ["bage", "dump", " \n\n", "  \n\n", " trash", " garbage", "&amp", "\r\n\r\n\r\n\r\n"], [" \n\n", " \r\n\r\n", "  \n\n", " \n\n\n\n", "bage", " \n\n\n", "&amp", "\r\n\r\n\r\n\r\n"], ["<|endoftext|>", " \n\n", "  \n\n", "\n\n", " \n\n\n", " \r\n\r\n", "\r\n\r\n", " \n\n\n\n"], ["bage", " garbage", " trash", "trash", "Dump", " dumping", "dump", " junk"], ["bage", " garbage", " trash", "Dump", " dumping", "dump", "trash", " junk"], ["<|endoftext|>", " garbage", "bage", " dumping", " ...", " trash", " stuff", " dead"], [" \n\n", " garbage", "bage", " dumping", " \r\n\r\n", " trash", "\r\n\r\n", "dump"], [" garbage", "bage", " trash", "heap", " dumping", "dump", "trash", "Dump"], [" garbage", "bage", " trash", "heap", " dumping", " destruction", " junk", " heap"], [" garbage", "bage", " \n\n", " dead", " dumping", " destruction", " trash", " recycling"], [" garbage", "bage", " trash", " destruction", " dumping", " dead", " cleanup", " repair"], [" garbage", " trash", " dead", " destruction", "bage", " cleanup", " memory", " dumping"], [" garbage", " trash", " destruction", " stuff", "bage", " memory", " cleanup", " dead"], [" garbage", " destruction", " dead", " memory", " recycling", " trash", " dumping", " stuff"], [" garbage", " destruction", " recycling", " dumping", " dead", " memory", " trash", " stuff"], [" garbage", "bage", " trash", " scav", "dump", "fuck", " cleanup", " dumping"], [" garbage", "bage", "dump", " trash", " scav", " cleanup", "fuck", "Fuck"], ["bage", " garbage", " scav", "dump", "\u2011", "/memory", " cleanup", "Fuck"], [" garbage", "bage", " trash", " scav", "dump", "Fuck", "fuck", " slowdown"], [" garbage", "bage", " scav", " cleanup", " clutter", "\u2011", " trash", "dump"], [" garbage", "bage", " scav", " cleanup", " trash", " memory", " clutter", "/memory"], [" garbage", " trash", " cleanup", "\u5783\u573e", " scav", "\u5783\u573e\u5904\u7406", "bage", " recycling"], [" garbage", " cleanup", " trash", "\u5783\u573e", " scav", "bage", " recycling", "\u5783\u573e\u5904\u7406"], [" garbage", " cleanup", " trash", " scav", "\u5783\u573e", "bage", " recycling", "Cleanup"], [" garbage", " cleanup", "bage", " scav", " trash", "\u5783\u573e", " recycling", "\u5783\u573e\u5904\u7406"], [" garbage", " cleanup", "bage", " scav", " trash", "\u5783\u573e", "\u6e05\u7406", " recycling"], [" garbage", " cleanup", "bage", " scav", " trash", " interruptions", " unpredictable", " fragmentation"], [" garbage", " cleanup", " unpredictable", " interruptions", " scav", "bage", " clutter", " trash"], [" unpredictable", " interruptions", " garbage", " cleanup", "bage", " scav", " intermittent", " intermitt"], [" interruptions", " unpredictable", " garbage", " cleanup", " intermittent", " scav", " disruptions", " bursts"], [" interruptions", " unpredictable", " intermittent", " garbage", " disruptions", " cleanup", " glitches", "bage"], [" interruptions", " unpredictable", " intermittent", " bursts", "\u95f4\u6b47", " disruptions", " intermitt", " cleanup"], [" interruptions", " unpredictable", " cleanup", "bage", " bursts", " disruptions", "\u95f4\u6b47", " glitches"], [" interruptions", " unpredictable", " bursts", " cleanup", " interrupts", "\u95f4\u6b47", " pauses", " spikes"], [" interruptions", " unpredictable", " spikes", " unpredict", " cleanup", " pauses", " interrupts", "\u95f4\u6b47"], [" interruptions", " unpredictable", " spikes", " pauses", " fluctuations", " unpredict", " interrupts", " bursts"], [" interruptions", " garbage", " GC", "GC", " pauses", " spikes", " unpredictable", "\u5783\u573e"], [" garbage", "\u5783\u573e", " GC", " trash", "GC", "\u56de\u6536", " pauses", " recycling"], [" GC", " garbage", "GC", "\u5783\u573e", "gc", "_gc", "(gc", " gc"], [" GC", "GC", " garbage", " pauses", "(gc", "gc", " gc", "_gc"], [" GC", "GC", "gc", " gc", "(gc", " garbage", " pauses", "_gc"], [" GC", "GC", " pauses", " gc", "gc", " garbage", "(gc", "_gc"], [" pauses", " GC", "GC", " pause", " collector", " gc", " spikes", " garbage"], [" pauses", " GC", " collector", " pause", " collection", "GC", " gc", "\u505c\u987f"], [" collection", " GC", " pauses", "GC", " collector", "collection", "_collection", " pause"]], "p": [[0.4368, 0.1938, 0.067, 0.0591, 0.0555, 0.018, 0.0109, 0.008], [0.0752, 0.0334, 0.0276, 0.0168, 0.0148, 0.0131, 0.0115, 0.0108], [0.412, 0.1338, 0.0762, 0.0716, 0.0594, 0.0408, 0.0247, 0.0218], [0.0419, 0.0145, 0.0128, 0.0088, 0.0053, 0.005, 0.0044, 0.0034], [0.0632, 0.0383, 0.0218, 0.0117, 0.011, 0.0097, 0.0091, 0.0086], [0.0657, 0.0166, 0.0147, 0.0095, 0.0074, 0.0061, 0.0061, 0.0061], [0.1109, 0.0673, 0.0434, 0.0263, 0.0181, 0.015, 0.0117, 0.0091], [0.0905, 0.0427, 0.0276, 0.0276, 0.0229, 0.0122, 0.0108, 0.009], [0.1399, 0.0903, 0.0903, 0.0454, 0.0259, 0.0189, 0.0178, 0.0147], [0.0559, 0.017, 0.0133, 0.0081, 0.0081, 0.0081, 0.0067, 0.0067], [0.0412, 0.0363, 0.0341, 0.0341, 0.0301, 0.0235, 0.0235, 0.0207], [0.0246, 0.0191, 0.018, 0.014, 0.0131, 0.0085, 0.0085, 0.007], [0.0394, 0.0211, 0.0186, 0.0136, 0.0136, 0.012, 0.0106, 0.01], [0.0295, 0.0277, 0.0202, 0.0202, 0.0123, 0.0115, 0.0115, 0.0102], [0.2884, 0.0415, 0.0222, 0.0222, 0.0184, 0.0144, 0.0144, 0.0112], [0.0732, 0.0417, 0.0368, 0.0185, 0.0144, 0.0135, 0.0127, 0.0087], [0.0778, 0.073, 0.0686, 0.0223, 0.0209, 0.0127, 0.0119, 0.0112], [0.1257, 0.1257, 0.0281, 0.0281, 0.0264, 0.0205, 0.0181, 0.015], [0.0535, 0.0472, 0.0391, 0.0345, 0.0325, 0.0286, 0.0253, 0.0223], [0.2533, 0.0682, 0.0565, 0.0388, 0.0303, 0.0208, 0.0195, 0.0195], [0.5988, 0.3205, 0.0263, 0.0263, 0.008, 0.0052, 0.004, 0.0012], [0.1134, 0.0646, 0.0536, 0.0417, 0.0253, 0.0174, 0.0144, 0.012], [0.1012, 0.1012, 0.0576, 0.0328, 0.0272, 0.0212, 0.0146, 0.0107], [0.0313, 0.0294, 0.0115, 0.0102, 0.0079, 0.0066, 0.0058, 0.0048], [0.0756, 0.0627, 0.0488, 0.0203, 0.0149, 0.0123, 0.0123, 0.0096], [0.2464, 0.0852, 0.0355, 0.0139, 0.0115, 0.0096, 0.0079, 0.0079], [0.2787, 0.0427, 0.0202, 0.009, 0.0084, 0.007, 0.0054, 0.0048], [0.0699, 0.0188, 0.0166, 0.0107, 0.0101, 0.0078, 0.0065, 0.0054], [0.2307, 0.0377, 0.0139, 0.0101, 0.007, 0.0065, 0.0061, 0.0061], [0.2337, 0.0192, 0.0124, 0.0116, 0.0109, 0.0075, 0.0071, 0.0066], [0.2437, 0.0188, 0.0137, 0.0114, 0.0114, 0.0101, 0.0089, 0.0078], [0.1514, 0.0205, 0.0124, 0.0103, 0.0097, 0.0097, 0.0071, 0.0062], [0.0674, 0.0125, 0.0125, 0.0117, 0.011, 0.0091, 0.0091, 0.0076], [0.0472, 0.0368, 0.0099, 0.0072, 0.0072, 0.0064, 0.0047, 0.0044], [0.0407, 0.0359, 0.0132, 0.0117, 0.011, 0.0071, 0.0066, 0.0059], [0.0507, 0.0289, 0.0078, 0.0073, 0.0073, 0.0057, 0.0053, 0.0053], [0.0604, 0.0533, 0.0082, 0.0077, 0.0072, 0.0053, 0.005, 0.0044], [0.0727, 0.0441, 0.0092, 0.0068, 0.0049, 0.0046, 0.0044, 0.0041], [0.4943, 0.0262, 0.0192, 0.014, 0.0075, 0.0062, 0.0052, 0.004], [0.8632, 0.023, 0.0168, 0.0149, 0.0131, 0.0066, 0.0062, 0.0043], [0.8329, 0.0285, 0.0209, 0.0184, 0.0143, 0.0112, 0.0056, 0.0047], [0.7437, 0.1141, 0.0225, 0.0186, 0.0106, 0.0094, 0.0073, 0.0068], [0.7576, 0.0622, 0.019, 0.0178, 0.0178, 0.0139, 0.0079, 0.0066], [0.5355, 0.1195, 0.0364, 0.025, 0.0208, 0.0143, 0.0059, 0.0056], [0.4428, 0.1269, 0.0412, 0.022, 0.0195, 0.0152, 0.0098, 0.0081], [0.3267, 0.0685, 0.0568, 0.0415, 0.0344, 0.0268, 0.0105, 0.0105], [0.1601, 0.1327, 0.1247, 0.0627, 0.018, 0.0169, 0.0116, 0.009], [0.1842, 0.1527, 0.1049, 0.0636, 0.0249, 0.0182, 0.0161, 0.0161], [0.2617, 0.1316, 0.0259, 0.0215, 0.019, 0.0178, 0.0167, 0.0148], [0.2948, 0.1393, 0.0399, 0.0242, 0.0227, 0.0214, 0.0201, 0.0177], [0.2087, 0.0986, 0.0721, 0.0466, 0.0182, 0.0171, 0.0161, 0.0161], [0.5989, 0.0593, 0.0263, 0.0232, 0.0181, 0.015, 0.0117, 0.0117], [0.4632, 0.1704, 0.0278, 0.0191, 0.018, 0.0158, 0.0123, 0.0116], [0.4361, 0.0973, 0.0973, 0.0712, 0.0204, 0.018, 0.0169, 0.0159], [0.2393, 0.1644, 0.1644, 0.0997, 0.0997, 0.0286, 0.0223, 0.0153], [0.8568, 0.116, 0.0095, 0.0035, 0.0027, 0.0021, 0.0017, 0.0011], [0.5983, 0.2201, 0.1513, 0.0141, 0.004, 0.004, 0.0036, 0.0022], [0.7163, 0.2326, 0.0149, 0.009, 0.008, 0.0062, 0.0055, 0.0038], [0.7632, 0.2187, 0.0035, 0.0031, 0.0031, 0.0024, 0.0024, 0.0019], [0.7427, 0.1657, 0.0538, 0.0136, 0.0083, 0.005, 0.003, 0.0024], [0.695, 0.2557, 0.0238, 0.0053, 0.0047, 0.0028, 0.0022, 0.0022], [0.7405, 0.1872, 0.0174, 0.0136, 0.0136, 0.0136, 0.0022, 0.0013], [0.7489, 0.1475, 0.0789, 0.0073, 0.0065, 0.0015, 0.0014, 0.0012]], "ranks": {"Python": [15814, 68785, 63052, 87204, 33074, 87212, 18380, 13139, 10944, 13232, 1942, 15396, 19977, 17784, 18128, 23842, 24992, 8392, 7597, 8785, 824, 3862, 848, 973, 795, 247, 184, 75, 94, 199, 228, 608, 798, 894, 1038, 375, 76, 134, 98, 111, 85, 55, 130, 173, 123, 162, 184, 279, 1079, 1647, 1786, 1353, 987, 512, 385, 353, 187, 166, 270, 331, 281, 458, 368]}}, {"pos": 430, "top": [[".", ",", ";", " ", ":", "?", "\".", "s"], [".", ",", ";", ":", " \u200b\u200b", "s", " \\(", ".["], [",", ".", ";", "\u2026", ":", "\u2013", ".[", "["], ["\u52a0\u62ff\u5927", " Blowjob", "'gc", "{EIF", " Strec", " Geile", "oggio", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9"], [",", ".", ":", " \\(", ";", "\\(", " GC", " Pro"], [".", ",", ":", " ).", " \\(", " \".", ";", " GC"], [".", ",", ".\"", ":", ";", ".)", ").", ".("], [".", ",", ";", " GC", ".\"", ":", ").", ".\\"], [".", ",", ".\u00bb", ").", ";", "  \n\n", ".)", ".["], [",", ".", ".\\", ";", ".$", ".[", "\\.", ".\""], [".", ",", ".\\", ".[", ".\"", ";", "...", "\\."], [" **", " garbage", ".**", "\\xc", " Ward", ".", "\u6536\u85cf\u672c\u7ad9", ".\\"], [".", ",", " garbage", " .", " **", " processes", " Ward", " )."], [",", ".", " \"", " ", ";", " (\"", " and", " ."], [",", " ", " \"", " ,", ".", " and", ";", " \n\n"], [",", " \"", " ,", " ", " and", " largely", " .", " for"], [",", " \"", ".", ";", " ", " ,", "<|endoftext|>", " and"], [",", ".", " \"", ";", " (\"", "...", " ,", " and"], [",", " ,", " \"", "\u2014and", " .", " and", " largely", " (\""], [",", " ,", "\u2014and", " and", " \"", " largely", " &", " \u2014"], ["<|endoftext|>", " ,", " \n\n", ",", " \"", " and", "  \n\n", "\u2014and"], [" ,", " **", " and", " garbage", " largely", " .", " efforts", " **,"], [" ,", " and", " .", " **", " largely", " &", " efforts", " over"], [" ,", " and", " .", " \"", " &", " over", " largely", " much"], [" ,", " \n\n", " and", " &", ",", " **", " largely", " _"], [" **", " ,", " **,", " and", " *", " **\"", " \n\n", " _"], [" **", " ,", " and", " **,", " labor", " *", " .", " _"], [" ,", " and", " **", " _", " .", " \n\n", " ...", " over"], [" ,", " **", " .", " \n\n", " and", " ...", " _", " **,"], [" ...", " ,", " **", " and", " .", "...", " \n", " [...]"], [" ,", " **", " .", " and", " ...", " during", " over", " \n"], [" ,", " and", " **", " .", " ...", " over", " *", " during"], [" and", " ,", " **", " .", " heavily", " over", " *", " even"], [" and", " heavily", "\u2014and", " **", " ,", " increasingly", " heavy", " rapidly"], [" **", "\u2014and", " heavily", " and", " **\u201c", " increasingly", " rapidly", " labor"], [" **", "\u2014and", " **\u201c", " *", " (\u201c", " and", " )**", " \u2014"], [" **", " **\u201c", "\u2014and", " unpredictable", " *", " **\"", " )**", " delays"], [" **", " unpredictable", " delays", " and", " interference", " downtime", "\u2014and", " rapidly"], [" unpredictable", " delays", " interference", " downtime", " unpredict", " and", "\u2014and", " jitter"], [" unpredictable", " delays", " downtime", " unpredict", " interference", " garbage", " spikes", " interruptions"], [" unpredictable", " delays", " downtime", " interruptions", " unpredict", " interference", " cycles", " periodic"], [" unpredictable", " unpredict", " interruptions", " delays", " downtime", " erratic", " jitter", " scheduling"], [" unpredictable", " interruptions", " unpredict", " erratic", " spikes", " periodic", " disruptions", " bursts"], [" unpredictable", " interruptions", " unpredict", " spikes", " periodic", " erratic", " disruptions", " bursts"], [" unpredictable", " interruptions", " unpredict", " spikes", " erratic", " bursts", " disruptions", " fluctuations"], [" unpredictable", " interruptions", " unpredict", " spikes", " erratic", " bursts", " disruptions", " fluctuations"], [" unpredictable", " interruptions", " unpredict", " spikes", " erratic", " bursts", " fluctuations", " disruptions"], [" unpredictable", " interruptions", " spikes", " bursts", " unpredict", " erratic", " fluctuations", " disruptions"], [" unpredictable", " interruptions", " spikes", " bursts", " erratic", " unpredict", " glitches", " fluctuations"], [" unpredictable", " interruptions", " spikes", " bursts", " erratic", " unpredict", " glitches", " disruptions"], [" interruptions", " unpredictable", " spikes", " bursts", " glitches", " unpredict", " disruptions", " erratic"], [" interruptions", " unpredictable", " spikes", " bursts", " interrupts", " unpredict", " pauses", " downtime"], [" interruptions", " spikes", " unpredictable", " unpredict", " bursts", " interrupts", " pauses", " downtime"], [" spikes", " interruptions", " unpredictable", " unpredict", " pauses", " bursts", " fluctuations", " interrupts"], [" interruptions", " spikes", " unpredictable", " pauses", " unpredict", " GC", " interrupts", " garbage"], [" garbage", " GC", " spikes", "\u5783\u573e", " pauses", " interruptions", " unpredictable", "GC"], [" GC", " garbage", " pauses", "GC", " gc", "\u5783\u573e", "(gc", "gc"], [" pauses", " GC", " spikes", "GC", " pause", " garbage", " gc", "(gc"], [" GC", " pauses", " spikes", "GC", " gc", "(gc", " garbage", " pause"], [" spikes", " pauses", " GC", " jitter", " spike", " pause", "GC", " latency"], [" pauses", " spikes", " pause", " Pause", " GC", " jitter", " latency", " spike"], [" pauses", " spikes", " pause", " stops", " Pause", "\u505c\u987f", " stutter", " GC"], [" pauses", " spikes", " pause", " pa", " stalls", " stops", " GC", " cycles"]], "p": [[0.9223, 0.0757, 0.0007, 0.0002, 0.0002, 0.0001, 0.0, 0.0], [0.5815, 0.2747, 0.0113, 0.0088, 0.0032, 0.0011, 0.0008, 0.0006], [0.7048, 0.2938, 0.0009, 0.0003, 0.0001, 0.0, 0.0, 0.0], [0.0023, 0.002, 0.0017, 0.0014, 0.0013, 0.0011, 0.0011, 0.0011], [0.2969, 0.262, 0.0115, 0.0058, 0.0035, 0.0029, 0.0018, 0.0018], [0.331, 0.1075, 0.01, 0.0029, 0.0029, 0.0025, 0.002, 0.0017], [0.8776, 0.0437, 0.0076, 0.0043, 0.0032, 0.0028, 0.0019, 0.0018], [0.8724, 0.0673, 0.003, 0.0023, 0.0017, 0.0015, 0.0012, 0.0009], [0.9637, 0.0188, 0.0014, 0.0008, 0.0008, 0.0007, 0.0006, 0.0006], [0.5149, 0.2756, 0.0309, 0.0107, 0.0065, 0.0061, 0.0054, 0.0037], [0.8571, 0.0454, 0.0243, 0.0101, 0.0065, 0.0033, 0.0031, 0.0029], [0.0186, 0.0094, 0.0064, 0.003, 0.0021, 0.002, 0.002, 0.002], [0.008, 0.0066, 0.0052, 0.0046, 0.0038, 0.0029, 0.0028, 0.0022], [0.2987, 0.0278, 0.0131, 0.007, 0.0043, 0.004, 0.0028, 0.0024], [0.3635, 0.0762, 0.0762, 0.0205, 0.0141, 0.0141, 0.0091, 0.0085], [0.222, 0.0869, 0.0411, 0.0386, 0.0133, 0.0081, 0.0056, 0.0038], [0.9585, 0.0061, 0.0032, 0.0027, 0.0016, 0.0011, 0.0006, 0.0006], [0.9016, 0.0069, 0.0044, 0.0027, 0.0014, 0.0013, 0.0011, 0.0008], [0.3777, 0.0398, 0.031, 0.0188, 0.0114, 0.0107, 0.0065, 0.0065], [0.4542, 0.1013, 0.029, 0.029, 0.0176, 0.0129, 0.005, 0.0047], [0.9586, 0.0106, 0.0065, 0.002, 0.0014, 0.0013, 0.0011, 0.0006], [0.111, 0.0384, 0.0125, 0.0063, 0.0052, 0.0049, 0.0046, 0.0043], [0.5853, 0.0511, 0.0121, 0.0057, 0.0048, 0.0042, 0.0027, 0.0024], [0.7504, 0.0511, 0.0146, 0.0061, 0.0039, 0.0037, 0.0029, 0.0016], [0.4845, 0.0544, 0.0511, 0.0089, 0.0083, 0.0078, 0.0061, 0.0048], [0.7658, 0.0669, 0.0169, 0.0096, 0.0028, 0.0026, 0.0022, 0.0022], [0.3914, 0.3048, 0.0284, 0.0143, 0.0067, 0.0067, 0.0052, 0.0046], [0.7792, 0.0342, 0.0208, 0.0143, 0.0098, 0.0098, 0.0036, 0.0032], [0.554, 0.2309, 0.0243, 0.0229, 0.0229, 0.0148, 0.0101, 0.0062], [0.3494, 0.3083, 0.2119, 0.0325, 0.0154, 0.0064, 0.0032, 0.0027], [0.4291, 0.1229, 0.1085, 0.1085, 0.0845, 0.0048, 0.004, 0.0037], [0.3072, 0.1863, 0.1545, 0.0416, 0.0093, 0.0082, 0.0072, 0.006], [0.2838, 0.2505, 0.0866, 0.0361, 0.0081, 0.0076, 0.0063, 0.0059], [0.0752, 0.0428, 0.0355, 0.0313, 0.0215, 0.0158, 0.0115, 0.0108], [0.1764, 0.0394, 0.0186, 0.0164, 0.01, 0.01, 0.0088, 0.0073], [0.3366, 0.0663, 0.0276, 0.019, 0.0139, 0.0131, 0.0115, 0.0115], [0.3126, 0.0397, 0.0373, 0.0273, 0.0156, 0.0129, 0.0107, 0.01], [0.0885, 0.0689, 0.0174, 0.0174, 0.0164, 0.0144, 0.0136, 0.012], [0.1312, 0.0353, 0.0258, 0.0201, 0.0147, 0.0108, 0.0084, 0.0074], [0.2319, 0.0586, 0.026, 0.0216, 0.0179, 0.0168, 0.0131, 0.0123], [0.1892, 0.0789, 0.0654, 0.0309, 0.0199, 0.0187, 0.0114, 0.0114], [0.5619, 0.0671, 0.0407, 0.0247, 0.0232, 0.0159, 0.015, 0.011], [0.6078, 0.0823, 0.0499, 0.0303, 0.0221, 0.0134, 0.0105, 0.0092], [0.5792, 0.1007, 0.0611, 0.0198, 0.0164, 0.0164, 0.0113, 0.0106], [0.63, 0.1095, 0.0517, 0.0277, 0.0216, 0.0131, 0.009, 0.0084], [0.7303, 0.077, 0.0467, 0.0321, 0.0221, 0.0092, 0.0081, 0.0049], [0.7022, 0.122, 0.035, 0.0272, 0.0212, 0.0129, 0.0113, 0.0065], [0.5309, 0.1953, 0.0718, 0.0494, 0.0264, 0.0182, 0.016, 0.0125], [0.3747, 0.2005, 0.1216, 0.0738, 0.0447, 0.0348, 0.0271, 0.0136], [0.3105, 0.274, 0.1008, 0.089, 0.054, 0.054, 0.0155, 0.0136], [0.5136, 0.1299, 0.0788, 0.0478, 0.029, 0.0256, 0.0212, 0.0212], [0.6897, 0.0824, 0.0824, 0.0389, 0.0208, 0.0162, 0.0064, 0.0049], [0.6676, 0.149, 0.0797, 0.0259, 0.0157, 0.0122, 0.0108, 0.0051], [0.4534, 0.275, 0.1299, 0.0541, 0.0226, 0.0107, 0.0083, 0.0083], [0.3492, 0.3082, 0.1, 0.0688, 0.0473, 0.0417, 0.0174, 0.0093], [0.7604, 0.0707, 0.0486, 0.0379, 0.0334, 0.0139, 0.0075, 0.0066], [0.6059, 0.2229, 0.082, 0.0564, 0.0086, 0.0059, 0.0046, 0.0041], [0.6515, 0.1867, 0.0999, 0.0253, 0.0082, 0.0072, 0.0064, 0.003], [0.405, 0.3574, 0.1688, 0.0427, 0.0074, 0.0045, 0.0035, 0.0027], [0.7169, 0.2637, 0.008, 0.0029, 0.0023, 0.0014, 0.0011, 0.0007], [0.9366, 0.0599, 0.0026, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.979, 0.0096, 0.0096, 0.0003, 0.0002, 0.0002, 0.0001, 0.0001], [0.9789, 0.014, 0.0031, 0.0021, 0.0003, 0.0003, 0.0003, 0.0001]], "ranks": {"Python": [23223, 153805, 68699, 113840, 13581, 26661, 3995, 3463, 4677, 7021, 1859, 2236, 3551, 6143, 7036, 10267, 11102, 5977, 4909, 6911, 4291, 4866, 3912, 6352, 5160, 1426, 1199, 1739, 1322, 2951, 3813, 6090, 6725, 7588, 11131, 14402, 24660, 24740, 16265, 12699, 8126, 9042, 7997, 9701, 6181, 6436, 8183, 7421, 10615, 13262, 12721, 5622, 2350, 2647, 1269, 867, 690, 1117, 985, 812, 778, 915, 881]}}, {"pos": 431, "top": [[".", " \u2013", "\u2013", ",", "\u00a0\u00a0", " ", "\u2026.", ";"], [" \u2013,", " [@", "[\"@", "   \n\n", "\u2014.", " \u2014", "   \n", "  \n\n"], ["\u2013", ".", ",", ".\u2013", " \u2013,", " \u2013", "\u2014.", ";"], [" Ejem", " St\u00e9ph", " Blowjob", " Shemale", " Geile", "odle", " \u041a\u0440\u0430\u0441\u0438", " Pergun"], [" (@", " \t ", " \u201c.", "\u2014.", " \n\n\n\n\n", " &,", " ($.", "%!"], [" \t ", " \n\n\n\n\n", "\u2014.", " \u200b\u200b", " \u201c.", "%!", " )->", "\ud83d\ude09"], ["\u2014.", " \t ", "%!", " _)", "\u201d\u2014", "   \n", "      \n", " (_."], [" _)", " \t ", "yssey", "/*@", "   \n", " _.", " \t\n", " \")."], ["\u2014.", "yssey", "!\u201d.", "/*@", " _)", " [].", "avanaugh", " \")."], ["\u52e4\u52e4\u6073\u6073", "rompt", " Pergun", "\u2014and", "\u2014.", " \t ", "\u2014or", "\u2014but"], ["\u2014.", "\u2014and", " \u2014", "\u2014", "rompt", "\u2014but", " \t ", "\u2014\""], ["rompt", " Pergun", "\u52e4\u52e4\u6073\u6073", " \t ", " **\u2014", "\u2588\u2588\u2588\u2588", " Ouver", "turnstile"], ["rompt", " Pergun", "\u52e4\u52e4\u6073\u6073", " Palav", "\u4e0d\u51b3", " )->", "turnstile", "yssey"], [" intermitt", "rompt", " momentarily", " midway", " entirety", " Pergun", "\u52e4\u52e4\u6073\u6073", "\u2014and"], [" \u2014", " midway", " intermitt", " momentarily", "\u2014and", "\u2014", "\u2014\"", " occasionally"], [" \u2014", " midway", " entirety", " lingering", " momentarily", " moments", " intermitt", " swiftly"], [" moments", " midway", " lingering", " pause", " entirety", " momentarily", " intermitt", " pauses"], [" moments", " midway", " lingering", "rompt", " entirety", " pause", " pauses", " tweaks"], [" midway", "rompt", " moments", " lingering", " momentarily", " pauses", " pause", " tweaks"], [" \u2014", " midway", " lingering", " momentarily", " amid", "rompt", "\u2014and", " moments"], [" \u2014", " midway", " lingering", " amid", " momentarily", "\u2014and", ".pause", " swiftly"], ["ksam", " pauses", " pause", "rompt", " midway", "\u7247\u523b", "\u95f4\u6b47", ".pause"], [" midway", " pauses", " momentarily", " moments", " pause", ".pause", " lingering", " intermitt"], [" ,", " midway", " moments", " momentarily", " intermitt", " periods", " pauses", " \u2014"], [" \n\n", " \u2014", " midway", " pauses", "   \n\n", " --", ".pause", " moments"], [" pauses", " pause", "uptime", " moments", " \n\n", " timeouts", "Pause", "\u95f4\u6b47"], [" pauses", " moments", " pause", " timeouts", " periods", " interruptions", " microseconds", " slowdown"], [" ,", " moments", " periods", " time", " during", " hours", " pauses", " minutes"], [" moments", " pauses", " hours", " periods", " time", " minutes", " pause", " delays"], [" pauses", " moments", " hours", " periods", " time", " pause", " minutes", " during"], [" during", " moments", " time", " ,", " periods", " hours", " pauses", " minutes"], [" time", " moments", " during", " hours", " ,", " ...", " periods", " minutes"], [" moments", " time", " during", " pauses", " periods", " hours", " minutes", " even"], [" moments", " \u2014", " pauses", " delays", " spikes", " periods", "\u2014even", " lingering"], [" pauses", " moments", " delays", " pause", " spikes", " microseconds", " glitches", " milliseconds"], [" \u2014", " pauses", " milliseconds", " delays", " moments", "\u2014and", " microseconds", " pause"], [" milliseconds", " delays", " \u2014", " pauses", " unpredictable", " jitter", " microseconds", "\u2014even"], [" milliseconds", " delays", " pauses", " unpredictable", " interruptions", " jitter", " microseconds", " latency"], [" delays", " milliseconds", " pauses", " unpredictable", " interruptions", " jitter", " microseconds", " intermitt"], [" pauses", " milliseconds", " unpredictable", " delays", " interruptions", " jitter", " microseconds", " spikes"], [" pauses", " interruptions", " delays", " milliseconds", " unpredictable", " microseconds", " pause", " jitter"], [" interruptions", " pauses", " delays", " milliseconds", " glitches", " unpredictable", " jitter", " microseconds"], [" interruptions", " pauses", " unpredictable", " spikes", " glitches", " erratic", " milliseconds", " delays"], [" interruptions", " unpredictable", " spikes", " pauses", " glitches", " unpredict", " delays", " milliseconds"], [" interruptions", " unpredictable", " spikes", " glitches", " pauses", " unpredict", " erratic", " interrupts"], [" interruptions", " unpredictable", " spikes", " unpredict", " glitches", " erratic", " pauses", " bursts"], [" interruptions", " unpredictable", " spikes", " unpredict", " bursts", " erratic", " pauses", " glitches"], [" interruptions", " unpredictable", " spikes", " interrupts", " bursts", " erratic", " glitches", " unpredict"], [" interruptions", " unpredictable", " spikes", " interrupts", " erratic", " bursts", " unpredict", "\u2014even"], [" interruptions", " unpredictable", " interrupts", " spikes", " erratic", " bursts", " (~", "\u2014even"], [" interruptions", " unavoidable", " unpredictable", " interrupts", " inevitable", " disrupt", " spikes", " interrupt"], [",and", " inevitable", " (\"", " (>", "\u2014and", " inevitably", " unavoidable", " interrupts"], [",and", " interrupts", " (>", " disrupt", " interrupt", " spikes", " interruptions", " (\u201c"], [",and", " interrupts", " (>", "\u2014and", " spikes", " interrupt", "\u2014even", " (\""], [" alone", ",and", " will", "will", "alone", " WILL", " interrupts", "\u2014even"], [" will", " alone", ",and", "will", " WILL", " combined", " Combined", "combined"], [" alone", "alone", ",and", " will", " Alone", " combined", "will", "combined"], [" alone", ",and", "alone", " will", " Alone", " spikes", "will", " WILL"], [" alone", " will", "alone", ",and", " Alone", "will", " WILL", " guarantees"], [" alone", " will", "alone", " spikes", ",", " spike", ",and", " combined"], [" alone", ",", " will", " spikes", " (\"", " WILL", " during", ",and"], [",", " alone", " ,", " will", " during", " GC", " spikes", " WILL"], [",", " alone", " during", " (\"", " (\u201c", " (", " GC", " ,"]], "p": [[0.1839, 0.1432, 0.0925, 0.0597, 0.0437, 0.0437, 0.0265, 0.0234], [0.0853, 0.0753, 0.0586, 0.0551, 0.0518, 0.0457, 0.0295, 0.026], [0.3741, 0.0946, 0.0889, 0.037, 0.0348, 0.0348, 0.0255, 0.0186], [0.0157, 0.0123, 0.0108, 0.0079, 0.0079, 0.0058, 0.0058, 0.0054], [0.0385, 0.0282, 0.022, 0.0194, 0.0151, 0.0142, 0.0092, 0.0081], [0.0317, 0.0132, 0.0097, 0.0091, 0.0071, 0.0052, 0.0052, 0.0049], [0.0254, 0.0154, 0.0088, 0.0078, 0.0078, 0.0073, 0.0073, 0.0068], [0.0246, 0.0102, 0.0085, 0.0062, 0.0058, 0.0048, 0.0043, 0.0038], [0.0172, 0.0118, 0.0081, 0.0067, 0.0052, 0.0049, 0.0046, 0.0046], [0.0143, 0.0112, 0.0105, 0.0087, 0.0039, 0.0034, 0.003, 0.0025], [0.0587, 0.0486, 0.0277, 0.0216, 0.0148, 0.0131, 0.0116, 0.0085], [0.0143, 0.006, 0.0049, 0.0044, 0.0041, 0.003, 0.0028, 0.0026], [0.0101, 0.0051, 0.0048, 0.0031, 0.0024, 0.0023, 0.0023, 0.0023], [0.0063, 0.0049, 0.0034, 0.003, 0.0028, 0.0025, 0.0023, 0.0019], [0.1376, 0.0288, 0.0154, 0.0106, 0.006, 0.0037, 0.0034, 0.0034], [0.0529, 0.0321, 0.0086, 0.0081, 0.0081, 0.0076, 0.0056, 0.0049], [0.0276, 0.0276, 0.0115, 0.0079, 0.0079, 0.007, 0.0051, 0.0048], [0.0128, 0.0121, 0.0083, 0.0065, 0.0057, 0.0054, 0.005, 0.0047], [0.0102, 0.009, 0.0066, 0.0055, 0.004, 0.0038, 0.0035, 0.0028], [0.0419, 0.0211, 0.0088, 0.0083, 0.0073, 0.0057, 0.0053, 0.0053], [0.0654, 0.0226, 0.0121, 0.0078, 0.0069, 0.0057, 0.0047, 0.0042], [0.0079, 0.0037, 0.0035, 0.0031, 0.0029, 0.0029, 0.0023, 0.0023], [0.0126, 0.0111, 0.0104, 0.0098, 0.0092, 0.0081, 0.0049, 0.0049], [0.0173, 0.0162, 0.0162, 0.0112, 0.0082, 0.0082, 0.0077, 0.0068], [0.0356, 0.0079, 0.0079, 0.0062, 0.0058, 0.0055, 0.0055, 0.0051], [0.0129, 0.0065, 0.0061, 0.0054, 0.0045, 0.0042, 0.0042, 0.0039], [0.053, 0.0143, 0.0134, 0.0134, 0.0111, 0.0104, 0.0086, 0.0086], [0.1133, 0.0345, 0.0269, 0.0209, 0.0153, 0.0144, 0.0135, 0.0112], [0.049, 0.0406, 0.0381, 0.0279, 0.0279, 0.0204, 0.0149, 0.014], [0.0433, 0.0433, 0.028, 0.0263, 0.0263, 0.015, 0.015, 0.0117], [0.077, 0.0638, 0.0529, 0.0364, 0.0364, 0.0301, 0.025, 0.0207], [0.0551, 0.0486, 0.0429, 0.023, 0.023, 0.0216, 0.0216, 0.019], [0.0548, 0.0377, 0.0243, 0.0229, 0.0229, 0.0215, 0.0189, 0.0178], [0.0231, 0.0217, 0.0169, 0.0109, 0.0103, 0.0103, 0.0075, 0.007], [0.0268, 0.0153, 0.0135, 0.0119, 0.0119, 0.0105, 0.0072, 0.0068], [0.0672, 0.0218, 0.0181, 0.0141, 0.0141, 0.0117, 0.0097, 0.0091], [0.0378, 0.0313, 0.0244, 0.0178, 0.0148, 0.0131, 0.0131, 0.0123], [0.0545, 0.0331, 0.0274, 0.0201, 0.0177, 0.0156, 0.0129, 0.0114], [0.0615, 0.0577, 0.0479, 0.035, 0.0256, 0.02, 0.0165, 0.0137], [0.0896, 0.0697, 0.0479, 0.0479, 0.045, 0.0257, 0.0241, 0.0226], [0.0926, 0.087, 0.0767, 0.0465, 0.0411, 0.0341, 0.0265, 0.0194], [0.1608, 0.0975, 0.0591, 0.0556, 0.0461, 0.0461, 0.0382, 0.0359], [0.3038, 0.0986, 0.0678, 0.0528, 0.0438, 0.0265, 0.0265, 0.0265], [0.216, 0.131, 0.0746, 0.0546, 0.0375, 0.0292, 0.0275, 0.0258], [0.2662, 0.1615, 0.0673, 0.0492, 0.0492, 0.0299, 0.0205, 0.017], [0.2668, 0.2668, 0.0981, 0.0319, 0.0233, 0.0206, 0.0171, 0.0171], [0.3196, 0.2489, 0.0808, 0.0297, 0.0262, 0.0262, 0.0262, 0.0217], [0.3311, 0.2008, 0.0891, 0.0395, 0.0349, 0.0199, 0.0175, 0.0175], [0.2813, 0.1248, 0.0668, 0.052, 0.0459, 0.0279, 0.0191, 0.0169], [0.2944, 0.0843, 0.0545, 0.0512, 0.0451, 0.0274, 0.0242, 0.02], [0.177, 0.089, 0.0836, 0.0836, 0.0836, 0.0327, 0.0211, 0.0187], [0.2447, 0.0701, 0.0482, 0.0453, 0.0331, 0.0331, 0.0292, 0.0228], [0.1837, 0.0815, 0.0596, 0.056, 0.0362, 0.03, 0.03, 0.0206], [0.2966, 0.0401, 0.0401, 0.0259, 0.0243, 0.0178, 0.0148, 0.0139], [0.2437, 0.0698, 0.0698, 0.0351, 0.031, 0.0241, 0.0241, 0.0227], [0.1713, 0.1512, 0.0861, 0.0523, 0.0491, 0.0317, 0.0205, 0.0192], [0.7049, 0.0579, 0.0423, 0.02, 0.0137, 0.0121, 0.0094, 0.0065], [0.6654, 0.0747, 0.0513, 0.0292, 0.0122, 0.0114, 0.0101, 0.0065], [0.719, 0.0554, 0.0489, 0.0169, 0.0109, 0.0091, 0.008, 0.0075], [0.7842, 0.0685, 0.0112, 0.0112, 0.0077, 0.0056, 0.0056, 0.0044], [0.3327, 0.2759, 0.0616, 0.0329, 0.0166, 0.0137, 0.0129, 0.01], [0.9684, 0.0095, 0.0031, 0.0027, 0.0013, 0.001, 0.0008, 0.0006], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Python": [52216, 200764, 133494, 209069, 161225, 207988, 106675, 165572, 183246, 203653, 95735, 183137, 215692, 194906, 132381, 149912, 99428, 124243, 161319, 189745, 94679, 178753, 125652, 112935, 45545, 28599, 55990, 14734, 13171, 15599, 21500, 22620, 21576, 51474, 68426, 75595, 69375, 55549, 44594, 23265, 17117, 20566, 13931, 17218, 16295, 17698, 30079, 16685, 62026, 24679, 22984, 21679, 59498, 36070, 44210, 22282, 10302, 10606, 8114, 3579, 1372, 235, 356]}}, {"pos": 432, "top": [[",", ".", "\u2013", ";", " \u2013", "\u00a0", ",.", "\u00a0\u00a0"], [",", "\u2013", ".", ";", "\u2013and", " \u2013", ".\u2013", ",."], [",", ".", "\u2013", ";", "\u2026", " \u2013", "\u2013and", ".\u2013"], [" milfs", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Guta", "\u54e5\u534e", "\ufffd\ufffd", " Blowjob", " Strec", "\uff0d\uff0d"], [",", ".", ".\u201c", ".@", "\u00a0\u00a0", " \u201c", ":", "!\u201c"], [",", ".", "\u2026.", ";", "\u2026..", ":", ".\u201c", "\u2013and"], [".", ",", ".\u201d", "\u2026\u2026", "\u3002", ".\u2019", ".\u201c", "\uff0c"], [".", ",", "ingly", ";", "  \n", ".\u201c", "-and", "   \n"], [",", ".", "\u00a0", ";", ".\u201d", "\u2013and", ".\u201c", "!\u201d"], [",", "\u2013and", "\u00a0", " \u00ad", "\u2013", "\u00ad", ";", "\u00a0\u00a0"], [",", "\u00a0", ".", "\u2013", ";", "\u2013and", "\u2014and", " \u00ad"], [" uncomfort", " gritty", "ingly", " unpredict", "uari", "unky", " oddly", " unsettling"], [" uncomfort", "ingly", "\u5468\u906d", " unsettling", " mundane", "\ufffd\ufffd", "\uaecf", " unpredict"], [" myriad", " uncomfort", "\u5468\u906d", " albeit", "\u2013and", " effortlessly", " savvy", " sizable"], [" myriad", " genuinely", " albeit", " seemingly", " arguably", " effortlessly", " largely", " though"], [" myriad", " even", " effortlessly", " incredibly", "even", " hefty", " seemingly", "o"], [",", "o", "even", " even", " myriad", " incredibly", " effortlessly", " albeit"], [" myriad", " effortlessly", "even", " hefty", "o", " albeit", " tweaking", " sprawling"], [" myriad", " inevitably", " arguably", " albeit", " effortlessly", " even", " incredibly", " seemingly"], ["<|endoftext|>", " myriad", " swiftly", " seemingly", "even", " largely", " even", "\u5373\u4fbf"], ["<|endoftext|>", "\n\n", " myriad", " swiftly", " though", " continually", " seemingly", " vastly"], [" ``", " myriad", " swiftly", " uncomfort", "\u751a\u81f3\u4e8e", "\u751a\u81f3\u4f1a", " hugely", " albeit"], [" ``", " myriad", " swiftly", " seemingly", " ultimately", " arguably", " even", " continually"], [" ``", " myriad", " ultimately", " even", "<|endoftext|>", " largely", " seemingly", " --"], ["\n\n", "\r\n\r\n", " myriad", " \r\n\r\n", " \n\n", " --", " seemingly", " swiftly"], [" **", " ``", " myriad", " hugely", " heavily", " arguably", " tweaking", " wildly"], [" heavily", " technological", " hacking", " **", " myriad", " glitches", " ``", " sprawling"], [" heavily", " even", " ,", " rapidly", " ultimately", "\n\n", " --", " much"], [" heavily", " rapidly", " heavy", " complex", " ultimately", " myriad", " increasingly", " even"], [" heavily", " complex", " heavy", " rapidly", " even", " myriad", " increasingly", " speed"], [" even", " heavily", " complex", " and", " over", " heavy", " rapidly", " much"], [" even", " and", " over", " complex", " ,", " heavily", " rapidly", " much"], [" even", " and", " complex", " over", " heavily", " rapidly", " ,", " heavy"], [" complex", " technical", " technological", " hardware", " heavily", " rapidly", " rapid", " systems"], [" **", " complex", " **\u201c", " hardware", " technical", " automation", " technological", " algorithms"], [" \u2026", " \u201c", " complex", "\u2026*", "\u2026**", " hardware", " **\u201c", " **"], [" hardware", " complex", " speed", " slower", " performance", " **", " inefficient", " *"], [" complex", " hardware", " performance", " speed", " software", " \u201c", " technical", " handling"], [" hardware", " complex", " \u201c", " inefficient", " technical", " handling", " processing", " labor"], [" coordination", " complex", " translation", " delays", " structural", " labor", " synchronization", " hardware"], [" translation", " transfers", " Python", " coordination", " translations", " speed", " delays", " synchronization"], [" transfers", " interface", " interfaces", " transfer", " interactions", " communication", " interf", " translation"], [" transfers", " interfaces", " interface", " transfer", " transferring", " interf", " communication", " interactions"], [" transfers", " interfaces", " interface", " transfer", " transferring", " interf", " interactions", " translation"], [" transfers", " transfer", " interfaces", " transferring", " interface", " interf", " transmission", " interactions"], [" transfers", " transfer", " transferring", " interfaces", " interface", " interf", " interactions", " transport"], [" transfers", " transfer", " interfaces", " transferring", " interactions", " interface", " interoper", " interf"], [" transfers", " transfer", " interactions", " transferring", " interfaces", " interface", " transport", " interf"], [" transfers", " interactions", " transferring", " interfaces", " transfer", " interf", " transitions", " interface"], [" transfers", " transferring", " interf", " interfaces", " interoper", " interactions", " transfer", " bottleneck"], [" interoper", " interfaces", " overhead", "\u4ee5\u53ca\u4e0e", " interf", "\u2014even", " transferring", "\u5f80\u8fd4"], [" overhead", " synchronization", " syncing", " latency", " interoper", " interf", "\u4ee5\u53ca\u4e0e", " interfaces"], [" overhead", " bottleneck", " latency", " synchronization", " syncing", " buffering", " inefficient", " bott"], [" overhead", " bottleneck", " latency", "\u2014and", " buffering", " transferring", " synchronization", " syncing"], [" overhead", " JNI", " synchronization", " CPU", " latency", "\u6570\u636e\u4f20\u8f93", " syncing", " serialization"], [" JNI", " overhead", " serialization", " Python", "JNI", " synchronization", " CPU", " IPC"], [" Python", " JNI", "Python", " IPC", " PyObject", " python", "-python", "JNI"], [" JNI", " Python", "Python", "JNI", " IPC", " PyObject", " python", "-python"], [" JNI", " Python", " IPC", "Python", "Interop", "JNI", " PyObject", " python"], [" JNI", " IPC", " Python", " and", " marsh", "IPC", "Python", "JNI"], [" JNI", " cross", " IPC", " Python", " and", " crossing", "cross", " marsh"], [" and", " JNI", " cross", " IPC", " Python", " marsh", " crossing", " JIT"], [" and", " JNI", " cross", " Python", " IPC", " marsh", " AND", " context"]], "p": [[0.7626, 0.2185, 0.0158, 0.0017, 0.0007, 0.0003, 0.0001, 0.0001], [0.5894, 0.2457, 0.1315, 0.0122, 0.0048, 0.0048, 0.0007, 0.0005], [0.8112, 0.1098, 0.0755, 0.0014, 0.0009, 0.0004, 0.0002, 0.0001], [0.0036, 0.003, 0.0021, 0.0018, 0.0017, 0.0013, 0.0013, 0.0013], [0.522, 0.1695, 0.0096, 0.0027, 0.0015, 0.0014, 0.0011, 0.0008], [0.7757, 0.1435, 0.0022, 0.0016, 0.0015, 0.0012, 0.0011, 0.001], [0.677, 0.2198, 0.0192, 0.0109, 0.0075, 0.0055, 0.0055, 0.0024], [0.2822, 0.2651, 0.0071, 0.0043, 0.0031, 0.0029, 0.0029, 0.0029], [0.6861, 0.1847, 0.0098, 0.0056, 0.0052, 0.0038, 0.0034, 0.0032], [0.1404, 0.0066, 0.004, 0.0037, 0.0029, 0.0018, 0.0017, 0.0013], [0.7232, 0.0408, 0.0141, 0.0097, 0.0055, 0.0052, 0.0049, 0.0038], [0.0034, 0.0025, 0.0022, 0.0022, 0.0017, 0.0016, 0.0016, 0.0015], [0.0036, 0.003, 0.0017, 0.0016, 0.0015, 0.0014, 0.0014, 0.0014], [0.0032, 0.0022, 0.0021, 0.0021, 0.0019, 0.0016, 0.0016, 0.0016], [0.018, 0.0091, 0.008, 0.008, 0.0071, 0.0066, 0.0049, 0.0043], [0.0371, 0.0255, 0.0165, 0.0128, 0.0106, 0.0094, 0.0083, 0.0073], [0.0574, 0.0476, 0.0289, 0.0271, 0.0239, 0.0145, 0.012, 0.01], [0.0161, 0.0134, 0.0125, 0.0086, 0.0086, 0.0081, 0.0076, 0.0076], [0.0342, 0.0183, 0.0143, 0.0134, 0.0126, 0.0126, 0.0111, 0.0087], [0.2202, 0.0491, 0.0132, 0.008, 0.0059, 0.0055, 0.0055, 0.0049], [0.9813, 0.0011, 0.0004, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001], [0.0147, 0.0079, 0.0058, 0.0027, 0.0026, 0.002, 0.0019, 0.0019], [0.1155, 0.0214, 0.0114, 0.0074, 0.0069, 0.0054, 0.0048, 0.0048], [0.0198, 0.0165, 0.0145, 0.01, 0.0088, 0.0088, 0.0083, 0.0073], [0.0578, 0.031, 0.0188, 0.0176, 0.0129, 0.0121, 0.0094, 0.0083], [0.009, 0.0058, 0.0058, 0.0048, 0.0045, 0.004, 0.0033, 0.0033], [0.0064, 0.0061, 0.0061, 0.0061, 0.005, 0.0044, 0.0042, 0.0042], [0.0263, 0.0205, 0.0159, 0.015, 0.015, 0.0132, 0.0124, 0.0117], [0.0354, 0.0139, 0.0108, 0.0108, 0.0108, 0.0108, 0.0101, 0.009], [0.0401, 0.0215, 0.0178, 0.0167, 0.0115, 0.009, 0.009, 0.0074], [0.0404, 0.0357, 0.0245, 0.023, 0.0216, 0.0191, 0.0149, 0.0109], [0.0339, 0.0319, 0.0233, 0.0219, 0.0193, 0.0171, 0.0151, 0.0141], [0.0541, 0.0256, 0.0256, 0.024, 0.0165, 0.0165, 0.0137, 0.0121], [0.0929, 0.0321, 0.0235, 0.0221, 0.0172, 0.0126, 0.0118, 0.0111], [0.0743, 0.0616, 0.0241, 0.0213, 0.0146, 0.0121, 0.0107, 0.0089], [0.1311, 0.0513, 0.0482, 0.0453, 0.0453, 0.0292, 0.0228, 0.0214], [0.0948, 0.042, 0.0308, 0.024, 0.024, 0.0199, 0.0165, 0.0165], [0.0589, 0.0458, 0.0179, 0.0169, 0.014, 0.0131, 0.0131, 0.0109], [0.046, 0.0316, 0.0279, 0.0217, 0.018, 0.018, 0.014, 0.0132], [0.0253, 0.0224, 0.012, 0.012, 0.0112, 0.0093, 0.0088, 0.0088], [0.0514, 0.0293, 0.0228, 0.0201, 0.0189, 0.0157, 0.0157, 0.0138], [0.1564, 0.0837, 0.0541, 0.0541, 0.0372, 0.0372, 0.0328, 0.0255], [0.2599, 0.1083, 0.1083, 0.0745, 0.0452, 0.0352, 0.031, 0.0274], [0.3795, 0.1087, 0.1087, 0.1087, 0.0582, 0.0189, 0.0167, 0.0122], [0.4975, 0.1425, 0.0864, 0.0594, 0.0524, 0.0117, 0.0103, 0.0091], [0.5022, 0.127, 0.077, 0.0529, 0.0321, 0.0172, 0.0152, 0.0104], [0.4017, 0.1016, 0.0698, 0.0616, 0.0544, 0.033, 0.0166, 0.0146], [0.3237, 0.0927, 0.0927, 0.0722, 0.0563, 0.0321, 0.0207, 0.0172], [0.3584, 0.0751, 0.0585, 0.055, 0.0428, 0.0294, 0.0229, 0.0202], [0.1423, 0.0672, 0.0408, 0.0338, 0.0298, 0.0218, 0.015, 0.015], [0.0298, 0.0218, 0.0205, 0.0159, 0.0159, 0.015, 0.0124, 0.0124], [0.1647, 0.0345, 0.0223, 0.0209, 0.0209, 0.0174, 0.0174, 0.0174], [0.2323, 0.0587, 0.0379, 0.0295, 0.023, 0.0216, 0.0109, 0.0109], [0.2248, 0.0443, 0.0416, 0.0304, 0.0209, 0.0209, 0.0185, 0.0144], [0.1782, 0.048, 0.0373, 0.0241, 0.0241, 0.0227, 0.0227, 0.0176], [0.3365, 0.0663, 0.0485, 0.0215, 0.0215, 0.0157, 0.0157, 0.0139], [0.3573, 0.2455, 0.116, 0.0293, 0.0243, 0.0189, 0.0157, 0.0122], [0.522, 0.192, 0.0623, 0.026, 0.0179, 0.0179, 0.0115, 0.0079], [0.4096, 0.1935, 0.1507, 0.0489, 0.0169, 0.0149, 0.014, 0.0124], [0.2469, 0.1923, 0.1497, 0.0457, 0.0179, 0.0148, 0.0148, 0.0139], [0.3291, 0.1761, 0.1372, 0.0832, 0.0505, 0.0164, 0.0128, 0.012], [0.7157, 0.1098, 0.0356, 0.023, 0.0116, 0.0085, 0.0055, 0.0045], [0.9636, 0.0094, 0.0027, 0.0019, 0.0019, 0.0016, 0.0008, 0.0005]], "ranks": {"Python": [55659, 207131, 51309, 209732, 95034, 101411, 8577, 40560, 51300, 27703, 2211, 90185, 123383, 83854, 62699, 63934, 93853, 50598, 58227, 73556, 16200, 126717, 73715, 50672, 4384, 18574, 8429, 4674, 4181, 3735, 4963, 5758, 5416, 2599, 2932, 350, 52, 108, 100, 13, 3, 25, 71, 149, 209, 228, 237, 347, 593, 897, 321, 145, 45, 58, 53, 4, 1, 2, 2, 3, 4, 5, 4]}}, {"pos": 433, "top": [[".", "\u2013", " \u2013", ",", ";", "\u00a0\u00a0", "?", "\u00a0"], ["\u2013", "\u2013and", " \u2013", "\u2013\u2013", " \u2013**", ".", ".\u2013", "**\u2013"], ["\u2013", ",", ".", " \u2013", "\u2013and", ".\u2013", ";", "\u2026"], ["----------</", "-------------</", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " milfs", " ;;^", " Shemale", " Blowjob", "---</"], ["neighbor", "\u0103\u021b", "\u00a0\u00a0", " afterward", "\u65b0\u52a0\u5761", " **\"", "----------</", "abeled"], [" **\u2013", " **\"", "-**", " **\u201c", "\u00a0\u00a0", "(**", "\u2026**", "!**"], [" **\"", "\u3002**", "...**", " **\u201c", "  \r\n", ".**", " **\u2013", "**\u3002"], ["  \r\n", "...**", " **\"", "   \n", "   \r\n", " \r\n", "  \n\n", " **\u2013"], ["  \n\n", "   \n\n", "\u00a0", " \n\n", "  \n\n\n", " \r\n\r\n", "  \r\n\r\n", "  \r\n"], ["\u00a0", "\u2013", "\u2013and", "\u2014\"", ",", "\\-", ".${", "\\."], ["\u00a0", "\u2013", "\u2014\"", ".[", ",", "\u2014but", "\u2013and", "\u2014"], [" **", " **\u2013", " **#", " **\"", " **+", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " **\u20ac", " impactful"], [" **\u2013", " **", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " impactful", " flavorful", " newfound", " **\"", " behaviors"], [" impactful", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " newfound", " transformative", " **\u2013", "\u5750\u62e5", "\u708e\u708e\u590f\u65e5", " flavorful"], [" arguably", " myriad", " seemingly", " touted", "\u5468\u906d", " impactful", " potentially", " savvy"], [" myriad", " arguably", " impactful", " savvy", " touted", " transitioning", " sprawling", " newfound"], [" myriad", " arguably", " seemingly", " potentially", " ultimately", " swiftly", " effortlessly", " incredibly"], [" myriad", " seemingly", " arguably", " swiftly", " effortlessly", " incredibly", " ultimately", " hefty"], [" myriad", " seemingly", " arguably", " ultimately", " ostensibly", " swiftly", " increasingly", " largely"], [" myriad", " seemingly", " swiftly", " arguably", " ultimately", " burgeoning", " ostensibly", " largely"], ["<|endoftext|>", " myriad", " seemingly", " swiftly", " ultimately", " burgeoning", " arguably", " vastly"], [" myriad", " seemingly", " ultimately", " arguably", " burgeoning", "\u5145\u65a5\u7740", " skyrocket", " lingering"], [" myriad", " seemingly", " ultimately", " swiftly", " arguably", " burgeoning", "\u5145\u65a5\u7740", " {{--<"], [" myriad", " ultimately", " seemingly", " swiftly", " arguably", " notably", " burgeoning", " continually"], [" myriad", " seemingly", " \n\n", " \r\n\r\n", "\r\n\r\n", " requisite", "\n\n", " ultimately"], [" myriad", " **", " seemingly", " \r\n\r\n", " arguably", " complexities", " burgeoning", " ultimately"], [" myriad", "\r\n\r\n", " seemingly", " \r\n\r\n", " ultimately", " arguably", " **", " burgeoning"], [" myriad", " \n\n", "\n\n", " seemingly", " ultimately", " heavily", " arguably", " \r\n\r\n"], [" myriad", " ultimately", " heavily", " seemingly", " arguably", " \n\n", " increasingly", " vastly"], [" ultimately", " myriad", " heavily", " increasingly", " seemingly", " arguably", " eventually", " **"], [" ultimately", " heavily", " myriad", " even", " increasingly", " eventually", " seemingly", " much"], [" ultimately", " heavily", " even", " eventually", " much", " over", " myriad", " rapidly"], [" ultimately", " heavily", " even", " myriad", " rapidly", " increasingly", " massive", " arguably"], [" heavily", " myriad", " ultimately", " aggressively", " arguably", " massive", " increasingly", " inherently"], [" heavily", " **", " aggressively", " myriad", " inherently", " meticulously", " increasingly", " arguably"], [" inherently", " inevitably", " lack", " heavily", " myriad", " limitations", " notoriously", "\u2014even"], [" inefficient", " sluggish", " slower", " lack", " inherently", " inevitably", " bottleneck", " slow"], [" lack", " inefficient", " inherently", " bottleneck", " limitations", " slower", " constraints", " inability"], [" lack", " inefficient", " slower", " bottleneck", " delays", " limitations", " restrictions", " sluggish"], [" lack", " delays", " restrictions", " slower", " inability", " limitations", " constraints", " sluggish"], [" delays", " slower", " lack", " slow", " restrictions", " bottleneck", " delay", " constraints"], [" delays", " bottleneck", " synchronization", " limitations", " constraints", " restrictions", " lack", " inability"], [" delays", " bottleneck", " synchronization", " lack", " inefficient", " restrictions", " limitations", " constraints"], [" restrictions", " delays", " limitations", " bottleneck", " constraints", " restrictive", " restriction", " synchronization"], [" delays", " restrictions", " bottleneck", " limitations", " restrictive", " inability", " interference", " restriction"], [" restrictions", " delays", " limitations", " bottleneck", " inability", " restrictive", " restriction", " constraints"], [" restrictions", " delays", " bottleneck", " inability", " limitations", " interruptions", " constraints", " restrictive"], [" restrictions", " inability", " delays", " lack", " limitations", " bottleneck", " constraints", " restriction"], [" inability", " restrictions", " lack", " delays", " limitations", " barriers", " restricted", " sluggish"], [" inability", " delays", " lack", " restrictions", " bottleneck", " sluggish", " limitations", " barriers"], [" inability", " delays", " sluggish", " logistical", " bottleneck", " syncing", " limitations", "\u7f3a\u4e4f"], [" synchronization", " overhead", " latency", " inability", " bottleneck", " delays", " transferring", " syncing"], [" latency", " overhead", " bottleneck", " synchronization", " inability", " buffering", " syncing", " delays"], [" latency", " overhead", " transferring", " bottleneck", " inability", " synchronization", " transfers", " buffering"], [" overhead", " latency", " synchronization", " communication", " inability", " serialization", " bottleneck", " transferring"], [" JNI", " serialization", " synchronization", " latency", " overhead", " inability", " CPU", " IPC"], [" Python", " JNI", " IPC", " serialization", " PyObject", "Python", " latency", " overhead"], [" JNI", " Python", " IPC", " latency", " serialization", "JNI", "Python", " PyObject"], [" JNI", " IPC", " Python", "IPC", " PyObject", "Python", "Interop", "JNI"], [" IPC", " JNI", " Python", " latency", " syscall", " CPU", "IPC", " synchronization"], [" cross", " IPC", " JNI", " Python", " synchronization", "cross", "-cross", " Cross"], [" JNI", " cross", " IPC", " Python", " context", " synchronization", " marsh", " UI"], [" JNI", " cross", " IPC", " the", " Python", " context", " UI", " marsh"]], "p": [[0.5149, 0.2147, 0.1672, 0.079, 0.0057, 0.0029, 0.0024, 0.0015], [0.4289, 0.0745, 0.0658, 0.0042, 0.0029, 0.0024, 0.0023, 0.0018], [0.9066, 0.031, 0.0274, 0.0188, 0.0078, 0.0018, 0.0012, 0.001], [0.0223, 0.0209, 0.0144, 0.0112, 0.005, 0.0047, 0.0032, 0.0028], [0.0037, 0.0037, 0.0033, 0.0033, 0.0029, 0.0027, 0.0024, 0.0023], [0.1142, 0.0507, 0.0186, 0.0155, 0.0088, 0.0083, 0.0073, 0.0064], [0.1091, 0.0905, 0.0905, 0.0484, 0.0354, 0.0333, 0.0276, 0.0244], [0.2106, 0.047, 0.039, 0.0344, 0.0285, 0.0162, 0.0143, 0.0135], [0.3523, 0.0694, 0.0652, 0.0612, 0.0448, 0.0349, 0.0212, 0.0165], [0.0194, 0.0182, 0.0097, 0.0086, 0.0081, 0.0056, 0.0036, 0.0034], [0.6541, 0.1288, 0.0136, 0.0113, 0.0093, 0.0077, 0.0053, 0.0041], [0.0378, 0.0229, 0.0202, 0.0115, 0.0108, 0.0096, 0.0058, 0.0027], [0.0429, 0.0139, 0.0139, 0.0115, 0.0048, 0.0042, 0.0029, 0.0029], [0.0107, 0.0078, 0.0035, 0.0027, 0.0024, 0.0017, 0.0016, 0.0016], [0.0145, 0.012, 0.005, 0.0039, 0.0037, 0.0032, 0.0032, 0.003], [0.0449, 0.0146, 0.0146, 0.0137, 0.0129, 0.0083, 0.0073, 0.0069], [0.0513, 0.0311, 0.0242, 0.0122, 0.0101, 0.0089, 0.0084, 0.0079], [0.0305, 0.021, 0.0174, 0.012, 0.0088, 0.0088, 0.006, 0.006], [0.0501, 0.0415, 0.0366, 0.0162, 0.0135, 0.0099, 0.0082, 0.0077], [0.0568, 0.0286, 0.0222, 0.0153, 0.0144, 0.0127, 0.0077, 0.006], [0.1735, 0.0387, 0.0142, 0.0118, 0.0092, 0.0086, 0.0043, 0.0038], [0.0102, 0.0033, 0.0029, 0.0028, 0.0024, 0.0023, 0.0021, 0.0019], [0.0241, 0.0083, 0.0061, 0.0051, 0.0051, 0.0042, 0.0035, 0.0027], [0.0269, 0.0135, 0.0127, 0.0068, 0.006, 0.0041, 0.0036, 0.0036], [0.0381, 0.0169, 0.0116, 0.0109, 0.0085, 0.0085, 0.0071, 0.0071], [0.024, 0.0069, 0.0069, 0.0044, 0.0044, 0.0037, 0.0035, 0.003], [0.0426, 0.0115, 0.0095, 0.0089, 0.0065, 0.0061, 0.0061, 0.0048], [0.0398, 0.0351, 0.0274, 0.0227, 0.0188, 0.0129, 0.0121, 0.0101], [0.0622, 0.0276, 0.0202, 0.0178, 0.0148, 0.0108, 0.0079, 0.007], [0.0399, 0.0352, 0.0258, 0.0147, 0.0122, 0.0107, 0.0101, 0.0095], [0.0466, 0.0301, 0.0249, 0.0207, 0.0151, 0.0125, 0.0118, 0.0098], [0.0434, 0.0338, 0.0298, 0.0132, 0.0132, 0.0117, 0.011, 0.0103], [0.0384, 0.0318, 0.0219, 0.0117, 0.0117, 0.0097, 0.008, 0.0076], [0.0706, 0.0215, 0.0157, 0.0157, 0.0123, 0.0123, 0.0115, 0.0108], [0.0411, 0.022, 0.0194, 0.0161, 0.0133, 0.0133, 0.0133, 0.0125], [0.0308, 0.024, 0.0187, 0.0121, 0.0107, 0.0107, 0.01, 0.0094], [0.0494, 0.0362, 0.0319, 0.0233, 0.0219, 0.0206, 0.0194, 0.0171], [0.0432, 0.0336, 0.0297, 0.0262, 0.0217, 0.0169, 0.0159, 0.0149], [0.0851, 0.0402, 0.0333, 0.0333, 0.0313, 0.0313, 0.0294, 0.0259], [0.0748, 0.0703, 0.0332, 0.0332, 0.0332, 0.0293, 0.0259, 0.0214], [0.1899, 0.0511, 0.0511, 0.0398, 0.0374, 0.0351, 0.033, 0.0257], [0.1128, 0.0533, 0.039, 0.0323, 0.0323, 0.0285, 0.0285, 0.0184], [0.1197, 0.0823, 0.0343, 0.0303, 0.0251, 0.0251, 0.0236, 0.0222], [0.213, 0.0888, 0.0783, 0.0691, 0.0224, 0.0211, 0.0211, 0.0198], [0.1614, 0.1424, 0.0762, 0.036, 0.028, 0.0193, 0.0193, 0.0181], [0.1882, 0.1007, 0.0476, 0.0447, 0.0348, 0.0239, 0.0211, 0.0186], [0.1909, 0.0902, 0.0514, 0.04, 0.0376, 0.0312, 0.0275, 0.0214], [0.1708, 0.1174, 0.1036, 0.0914, 0.0336, 0.0231, 0.018, 0.0169], [0.2663, 0.1425, 0.092, 0.0717, 0.0205, 0.015, 0.015, 0.0133], [0.1352, 0.1193, 0.068, 0.068, 0.0342, 0.0283, 0.0195, 0.0162], [0.0665, 0.0587, 0.023, 0.0203, 0.0203, 0.0168, 0.0158, 0.0148], [0.1124, 0.1056, 0.0822, 0.0682, 0.0365, 0.0343, 0.0302, 0.0284], [0.16, 0.16, 0.097, 0.0667, 0.0458, 0.0431, 0.0216, 0.0191], [0.1885, 0.1885, 0.0693, 0.0612, 0.054, 0.054, 0.0395, 0.0255], [0.1644, 0.1644, 0.088, 0.0605, 0.0471, 0.0367, 0.0345, 0.0304], [0.2107, 0.186, 0.0533, 0.0533, 0.047, 0.0285, 0.0236, 0.0222], [0.3097, 0.2733, 0.0887, 0.0254, 0.0254, 0.0254, 0.0145, 0.0106], [0.5282, 0.1715, 0.0491, 0.0338, 0.015, 0.0141, 0.0132, 0.0124], [0.37, 0.3265, 0.1361, 0.0099, 0.0093, 0.0087, 0.0077, 0.0077], [0.4129, 0.195, 0.0718, 0.0384, 0.0181, 0.0133, 0.0125, 0.0125], [0.3688, 0.2535, 0.1974, 0.0343, 0.0143, 0.0126, 0.0098, 0.0087], [0.3885, 0.2356, 0.1429, 0.0248, 0.0151, 0.0142, 0.0097, 0.0091], [0.347, 0.2702, 0.0877, 0.047, 0.0366, 0.0344, 0.0208, 0.0143]], "ranks": {"Python": [132906, 236534, 121691, 187816, 36496, 45049, 6006, 18802, 11803, 10660, 2441, 104903, 139339, 166598, 132624, 129726, 122902, 122138, 162974, 190908, 114631, 222401, 212315, 197657, 126406, 172737, 141523, 96815, 94872, 63253, 56639, 41305, 46930, 34277, 33803, 17896, 11904, 9416, 8120, 2855, 2108, 3050, 3664, 4578, 5875, 6565, 8147, 8010, 5153, 3594, 4681, 667, 205, 138, 156, 15, 1, 2, 3, 3, 4, 4, 5]}}, {"pos": 434, "top": [[".", ",", "\u2013", ";", " \u2013", "\u00a0\u00a0", "\u00a0", ":"], [".", ",", "\u2013", " \u2013", ";", " ", ":", ".["], [".", ",", "\u2013", " \u2013", ";", "\u2026", "\u2026.", "\u2026.."], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " milfs", "\ufffd\ufffd", "-------------</", "----------</", "aruhi", " Shemale", "\ub370\ubbf8"], [".", ",", "\u00a0\u00a0", " ", " \u201c", " \u201c.", ".\u201d", ".\u201c"], [".", ",", "\u2026.", "\u00a0\u00a0", " \u200b\u200b", " \u201c.", "\u2026..", ":"], [".", ".\u201d", ".\u2019", "  \n", ".\"", "\u00a0\u00a0", ".\u201c", "\u3002"], [".", "   \n", ":.", " \u200b\u200b", ",", "!.", ".).", "  \n"], [".", ",", "\u00a0", ",.", "\u00a0\u00a0", ":", ":.", ".\u201d"], [",", "\u00a0", ".", "\u00a0\u00a0", "\u2013", "\u00ad", ";", "\u2026"], ["\u00a0", ".", ",", "...", "\u00a0\u00a0", " ", "\u2026", "\u00ad"], [" potentially", "-wide", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " struggle", "-esque", " stark", "\u5f3a\u9669", " showcase"], [" impactful", " potentially", "...", " showcase", " impact", " visceral", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " potential"], [" impact", " impactful", "-esque", " showcase", " potentially", " transformative", " performance", " massive"], [" impact", " \"", " massive", " potentially", " albeit", " ", " seemingly", " arguably"], [" incredibly", " massive", " showcasing", " impact", " potentially", " seemingly", " getting", " numerous"], [",", " \"", " seemingly", " potentially", "\u00a0", " ", " myriad", " incredibly"], [" seemingly", " potentially", "-esque", " myriad", " massive", " savvy", " heavily", " effortlessly"], [" seemingly", " ultimately", " myriad", " arguably", " largely", " potentially", " incredibly", " increasingly"], [" seemingly", " myriad", " ultimately", " largely", " burgeoning", " arguably", " vastly", " increasingly"], ["<|endoftext|>", "\n\n", " seemingly", " ultimately", " myriad", " \n\n", " numerous", " much"], [" ultimately", " ``", " seemingly", "\u5171\u540c\u6253\u9020", " ;;^", " myriad", " inevitably", "\u65e0\u65f6\u65e0\u523b"], [" ``", " ultimately", " seemingly", " myriad", " ''", " inevitably", " requisite", " arguably"], [" ultimately", " ``", " subsequently", " seemingly", " much", " largely", " myriad", " notably"], [" ultimately", " requisite", " seemingly", " myriad", " hugely", " arguably", " notably", " heavily"], [" ultimately", " ;;^", " seemingly", " impacting", " ``", " heavily", " complexities", " increasingly"], [" ultimately", " heavily", " seemingly", " impacting", " ``", " requisite", " arguably", " hugely"], [" ultimately", " heavily", " seemingly", " arguably", " much", " requisite", " vastly", " myriad"], [" ultimately", " heavily", " complex", " myriad", " increasingly", " requisite", " arguably", " seemingly"], [" complex", " ultimately", " heavily", " technology", " increasingly", " hardware", " **", " massive"], [" complex", " heavily", " ultimately", " technology", " massive", " increasingly", " power", " heavy"], [" heavily", " complex", " ultimately", " over", " much", " power", " massive", " long"], [" ultimately", " complex", " heavily", " massive", " over", " power", " critical", " largely"], [" complex", " heavily", " inherently", " technology", " hardware", " tech", " technological", " massive"], [" complex", " inherently", " heavily", " potentially", " reliance", " leveraging", " aggressively", " requiring"], [" complex", " inherently", " \u201c", " limitations", " traditional", " requiring", " reliance", " potentially"], [" slower", " inefficient", " sluggish", " inherently", " slow", " complex", " limitations", " inability"], [" \u201c", " inherently", " complex", " inefficient", " slower", " limitations", " traditional", " slow"], [" inefficient", " slower", " \u201c", " complex", " slow", " sluggish", " limitations", " lack"], [" limitations", " constraints", " inefficient", " slower", " lack", " inability", " sluggish", " complex"], [" slower", " slow", " latency", " bottleneck", " sluggish", " inefficient", " synchronization", " slowing"], [" interface", " brid", " synchronization", " integration", " syncing", " interoper", " bottleneck", " inefficient"], [" interface", " brid", " transfer", " synchronization", " transferring", " syncing", " interoper", " interfaces"], [" transfer", " transferring", " transfers", " interface", " brid", " transport", " Transfer", " interfaces"], [" transfer", " transferring", " transfers", " brid", " interface", " Transfer", " interfaces", " bridge"], [" transferring", " transfer", " transfers", " brid", " Transfer", " interface", " interfaces", " transport"], [" transferring", " transfer", " transfers", " brid", " interface", " cumbersome", " Transfer", " interfaces"], [" transferring", " transfer", " transfers", " brid", " Transfer", " interface", " transport", " interactions"], [" transferring", " transfer", " transfers", " brid", " Transfer", "-transfer", " transport", " interface"], [" bottleneck", " transferring", " inability", " sluggish", " delays", " transfers", " transfer", " inefficient"], [" inability", " bottleneck", " overhead", " latency", " sluggish", " logistical", " delays", " ineff"], [" bottleneck", " inability", " overhead", " latency", " synchronization", " ineff", "-interface", " sluggish"], [" overhead", " bottleneck", " latency", " inability", " inherent", " ineff", " inherently", " sluggish"], [" overhead", " bottleneck", " inability", " latency", " inherent", " synchronization", "\u5f00\u9500", " inherently"], [" overhead", " inability", " bottleneck", " latency", " cost", "\u6210\u672c", "\u5f00\u9500", " costs"], [" inability", " latency", " bottleneck", " cost", " overhead", "\u6210\u672c", " costs", " lack"], [" inability", " latency", " bottleneck", " overhead", " cost", " lack", " serialization", " JNI"], [" latency", " inability", " cost", " bottleneck", " JNI", " costs", " lack", "\u6210\u672c"], [" overhead", " cost", " latency", " costs", "\u6210\u672c", "cost", "\u5f00\u9500", "_cost"], [" cost", " latency", " costs", " overhead", "\u6210\u672c", " inability", "cost", " Cost"], [" latency", " cost", " overhead", " costs", " inability", " lack", " sheer", " bottleneck"], [" cost", " latency", " overhead", " inability", " lack", " JNI", " sheer", " bottleneck"], [" cost", " latency", " overhead", " lack", " inability", " JNI", " sheer", " bottleneck"]], "p": [[0.7941, 0.2008, 0.0014, 0.0012, 0.0012, 0.0003, 0.0003, 0.0001], [0.4656, 0.2824, 0.1177, 0.0671, 0.015, 0.0017, 0.0013, 0.0012], [0.629, 0.3367, 0.0276, 0.0033, 0.0016, 0.0004, 0.0003, 0.0001], [0.0059, 0.0046, 0.003, 0.0026, 0.0022, 0.0016, 0.0016, 0.0015], [0.7899, 0.0735, 0.0306, 0.0047, 0.0028, 0.0028, 0.002, 0.0014], [0.8304, 0.0499, 0.0195, 0.0134, 0.0118, 0.0046, 0.0026, 0.0025], [0.9738, 0.007, 0.0023, 0.0018, 0.0017, 0.0009, 0.0007, 0.0006], [0.4949, 0.0204, 0.0085, 0.0055, 0.004, 0.0028, 0.0024, 0.0023], [0.9176, 0.0587, 0.019, 0.0006, 0.0005, 0.0004, 0.0003, 0.0002], [0.9707, 0.0138, 0.0079, 0.0016, 0.0011, 0.0006, 0.0003, 0.0002], [0.4119, 0.2831, 0.2498, 0.0338, 0.0046, 0.0038, 0.0018, 0.0017], [0.0025, 0.0014, 0.0013, 0.0011, 0.0011, 0.0011, 0.0011, 0.0011], [0.0049, 0.0026, 0.0023, 0.0022, 0.002, 0.0016, 0.0015, 0.0014], [0.0033, 0.0033, 0.0023, 0.002, 0.0016, 0.0016, 0.0016, 0.0016], [0.0095, 0.0095, 0.0079, 0.0074, 0.0057, 0.0054, 0.0048, 0.0048], [0.0171, 0.0117, 0.0117, 0.0086, 0.0076, 0.0071, 0.0071, 0.0067], [0.0613, 0.0396, 0.0212, 0.0121, 0.0113, 0.01, 0.0083, 0.0083], [0.028, 0.0141, 0.0103, 0.0091, 0.0071, 0.0071, 0.0062, 0.0062], [0.1074, 0.0199, 0.0175, 0.0137, 0.0128, 0.01, 0.0069, 0.0069], [0.0841, 0.0291, 0.0291, 0.0137, 0.0129, 0.0107, 0.0089, 0.0061], [0.4821, 0.0199, 0.0155, 0.0146, 0.0088, 0.0061, 0.0061, 0.0044], [0.0053, 0.0046, 0.0032, 0.0021, 0.0019, 0.0017, 0.0017, 0.0016], [0.0772, 0.0195, 0.0143, 0.0111, 0.006, 0.0049, 0.0046, 0.0044], [0.0702, 0.0228, 0.0167, 0.0147, 0.0095, 0.0079, 0.0074, 0.0065], [0.0349, 0.0272, 0.0255, 0.0113, 0.0069, 0.0069, 0.0069, 0.0061], [0.0094, 0.0061, 0.0044, 0.0037, 0.0037, 0.0031, 0.0027, 0.0025], [0.0131, 0.0055, 0.0051, 0.0048, 0.0045, 0.0042, 0.0037, 0.0033], [0.0493, 0.0219, 0.0181, 0.0117, 0.0097, 0.0097, 0.0076, 0.0076], [0.0668, 0.0316, 0.0159, 0.0124, 0.0124, 0.0116, 0.0109, 0.0085], [0.0469, 0.0389, 0.0303, 0.0184, 0.0152, 0.0126, 0.0119, 0.0087], [0.0427, 0.0332, 0.0312, 0.0202, 0.0157, 0.0139, 0.0122, 0.0095], [0.0319, 0.0299, 0.0264, 0.015, 0.015, 0.0125, 0.0103, 0.0091], [0.025, 0.0235, 0.0195, 0.0111, 0.0104, 0.0104, 0.0072, 0.0067], [0.0622, 0.0333, 0.0215, 0.019, 0.013, 0.0122, 0.0108, 0.0108], [0.0558, 0.0462, 0.0247, 0.016, 0.016, 0.015, 0.0141, 0.011], [0.055, 0.055, 0.0294, 0.0202, 0.019, 0.0158, 0.0123, 0.0108], [0.0529, 0.0387, 0.0363, 0.0321, 0.0266, 0.025, 0.0235, 0.0172], [0.0361, 0.0318, 0.0299, 0.0299, 0.0264, 0.0219, 0.017, 0.015], [0.057, 0.0392, 0.0368, 0.0346, 0.0269, 0.0238, 0.021, 0.021], [0.0236, 0.0221, 0.0208, 0.0195, 0.0184, 0.0162, 0.0143, 0.0126], [0.0584, 0.0455, 0.0243, 0.0202, 0.0189, 0.0178, 0.0139, 0.0139], [0.0417, 0.0368, 0.0269, 0.0197, 0.0197, 0.0185, 0.0185, 0.0174], [0.0661, 0.0377, 0.0332, 0.0259, 0.0259, 0.0259, 0.0189, 0.0178], [0.1833, 0.1112, 0.0718, 0.0525, 0.0435, 0.0219, 0.0206, 0.0193], [0.2461, 0.1493, 0.1317, 0.0333, 0.0313, 0.0259, 0.0167, 0.0157], [0.2036, 0.1797, 0.116, 0.0401, 0.0202, 0.0189, 0.0167, 0.0122], [0.1678, 0.1678, 0.0745, 0.031, 0.0227, 0.0177, 0.0177, 0.0156], [0.2191, 0.1415, 0.0668, 0.0489, 0.0217, 0.018, 0.0169, 0.0169], [0.1754, 0.1366, 0.0535, 0.0444, 0.021, 0.0185, 0.0174, 0.0174], [0.0928, 0.0563, 0.0321, 0.0301, 0.0283, 0.0207, 0.0207, 0.0172], [0.0879, 0.0568, 0.0367, 0.0222, 0.0209, 0.0196, 0.0173, 0.0163], [0.1569, 0.1569, 0.1385, 0.0894, 0.0422, 0.035, 0.0121, 0.0114], [0.3726, 0.1995, 0.176, 0.0831, 0.0224, 0.0136, 0.0113, 0.0068], [0.451, 0.1659, 0.1659, 0.1292, 0.0094, 0.0078, 0.003, 0.0027], [0.3514, 0.2736, 0.1293, 0.1141, 0.0327, 0.012, 0.0106, 0.0064], [0.3755, 0.1565, 0.1076, 0.0949, 0.0576, 0.024, 0.0187, 0.0146], [0.2386, 0.2106, 0.0995, 0.0878, 0.0532, 0.0366, 0.0196, 0.0196], [0.9514, 0.012, 0.0073, 0.0044, 0.0021, 0.0021, 0.0021, 0.0016], [0.776, 0.1349, 0.0438, 0.0183, 0.0098, 0.0041, 0.0028, 0.0015], [0.4818, 0.4252, 0.0448, 0.0128, 0.0069, 0.0054, 0.0054, 0.0017], [0.5136, 0.4, 0.0199, 0.0137, 0.0094, 0.0065, 0.0031, 0.0027], [0.656, 0.2735, 0.0175, 0.012, 0.0073, 0.0034, 0.003, 0.0021], [0.6357, 0.1419, 0.086, 0.0218, 0.0169, 0.0124, 0.0109, 0.0062]], "ranks": {"Python": [55958, 179055, 128899, 170700, 11829, 46846, 6439, 64334, 22704, 31940, 7527, 98216, 88805, 100870, 57083, 57659, 65697, 41648, 87686, 148234, 53073, 163655, 145763, 127770, 122704, 126079, 91018, 21719, 13864, 10134, 9171, 13325, 10487, 3478, 3408, 1229, 610, 603, 692, 77, 44, 80, 130, 259, 316, 369, 314, 397, 301, 682, 1590, 773, 404, 287, 237, 75, 7, 11, 37, 50, 26, 33, 21]}}, {"pos": 435, "top": [[",", ".", "\u2013", ";", " \u2013", "-", "\u00a0", "?"], [",", "\u2013", "\u00ad", ";", ".", "  \n", "\u2013and", "\u2011"], [",", ".", "\u2013", ";", "\u2026", "?", " \u2013", ":"], [" St\u00e9ph", "spill", "\ufffd\ufffd", "echsl", " Strec", " Pubbl", " Shemale", "ebrit"], [",", ".", "est", "\u00ad", ":", "ively", "ually", "ech"], [",", ".", "ually", "-", "est", ":", "itudes", "ech"], ["\u20ac", "\u00a3", "ually", "\u00bb", " of", "  \n", " \u00a3", "\u00a2"], ["ually", "\u20ac", "iest", "ilege", ".\\\"", "lessly", "lessness", " incurred"], ["\u00a0", "\u20ac", "\ufffd", ",", "ually", "\u00a2", " \u20ac", " \u200b"], [",", "\u00a0", "\ufffd", "\u2013", "\u00ad", " \u00ad", "\u20ac", "\u2011"], ["\u00a0", "\ufffd", ",", "\u2013", "\u00ad", " \u200b", " of", " [\u2026]"], ["\u00a0", "\ufffd", " of", " incurred", "ually", " labour", " detriment", "-of"], [" of", "-of", "of", " incurred", " detriment", "fully", "ually", "iest"], [" of", "-of", "of", " incurred", " lavish", "\u00a0", "fully", " detriment"], [" of", "of", "-of", "\u00a0", " ", " \ufffd", " incurred", " \u00ad"], [" of", "of", " myriad", "\u00a0", "-of", " \u00ad", " \u00a3", " \ufffd"], [" of", "\u00a0", "of", "-of", " myriad", "y", "\ufffd", " "], [" of", "of", "\u00a0", "-of", " myriad", "\u0e02\u0e2d\u0e07\u0e01\u0e32\u0e23", "\ufffd", " c\u1ee7a"], [" of", "-of", "of", " myriad", "\u00a3o", "\u20ac", "\u0e02\u0e2d\u0e07\u0e01\u0e32\u0e23", "\u00a2"], [" of", "-of", "of", " myriad", "\u20ac", "\uffe5", "fully", "\u00a2"], ["<|endoftext|>", "\n\n", " of", " \n\n", " myriad", "  \n\n", "of", "\u00a0"], [" of", "-of", "(cost", " incurred", "\u4e0d\u83f2", " myriad", "ystone", " \\\"$"], [" of", "-of", " myriad", " incurred", "(cost", " \\\"$", "fully", "cost"], [" of", "-of", " myriad", "of", "fully", " incurred", "\u0e02\u0e2d\u0e07\u0e01\u0e32\u0e23", " cost"], [" of", "-of", " myriad", "(cost", " requisite", "\uffe5", "of", "cost"], [" of", "\u4e0d\u83f2", "(cost", " \\\"$", "-of", " **\u20ac", "ystone", "\u0e02\u0e2d\u0e07\u0e01\u0e32\u0e23"], [" of", "\u4e0d\u83f2", " costs", "(cost", "-of", " \\\"$", " cost", "-cost"], [" of", " myriad", " cost", "-of", " ``", " \\\"", " **", " costs"], [" of", " costs", " cost", " labor", "-of", " **", " **\u20ac", " costly"], [" **", " of", " **\u20ac", " costs", " labor", " **\u300c", " cost", " \\\""], [" of", " **", " labor", " costs", " cost", " \\\"", " myriad", " costly"], [" of", " **", " labor", " cost", " costs", " cheap", " \u201c", " \\\""], [" of", " labor", " cost", " \u201c", " myriad", " costs", "\u2011", " shifting"], [" of", "\u2011", " labor", " myriad", " \u201c", " **", " cost", " costs"], [" labor", " of", " **", " costly", " cost", " myriad", " expensive", " costs"], [" of", " \u201c", " labor", "\u2011", " computational", " myriad", "\u2026*", " costly"], [" labor", " of", " expensive", " costly", " cost", " overhead", " cheap", " slower"], [" labor", " of", " cost", " overhead", " costly", " expensive", " cheap", " costs"], [" cost", " labor", " costly", " \u201c", " expensive", " costs", " overhead", " of"], [" labor", " cost", " costly", " expensive", " overhead", " costs", " transferring", " translating"], [" transferring", " cost", " overhead", " translating", " transfers", " costs", " converting", " labor"], [" transferring", " transfers", " overhead", " transfer", " cost", " interactions", " costs", " converting"], [" transfers", " transferring", " transfer", " overhead", " interactions", " costs", " converting", " cost"], [" transfers", " transferring", " transfer", " interactions", " overhead", " conversions", " transactions", " converting"], [" transfers", " transferring", " transfer", " conversions", " interactions", " overhead", " converting", " transactions"], [" transfers", " transferring", " transfer", " conversions", " converting", " interactions", " brid", " overhead"], [" transferring", " transfers", " transfer", " converting", " conversions", " interactions", "-transfer", " overhead"], [" transferring", " transfers", " transfer", " converting", " interactions", "-transfer", " conversions", " transporting"], [" transferring", " transfers", " converting", " transfer", " transporting", "-transfer", " interactions", " interf"], [" transferring", " transfers", "-transfer", " converting", " transfer", " transporting", " interf", " translating"], [" transferring", " transfers", "-transfer", " converting", "\u5f80\u8fd4", " translating", " transporting", " transitioning"], [" transferring", " transfers", " translating", " accessing", "-transfer", " interf", " converting", "transfer"], [" transferring", " accessing", " converting", " translating", " brid", " transfers", "\u8fdb\u51fa", "\u5f80\u8fd4"], [" transferring", " accessing", " transfers", " brid", " converting", " translating", " transitioning", "\u8fdb\u51fa"], [" transferring", " translating", " converting", " transfers", " communicating", " accessing", " transporting", " transitioning"], [" transferring", " brid", "Python", " converting", " JNI", " callbacks", "-python", " Python"], ["Python", " Python", "-python", " transferring", " PyObject", " python", "python", "/python"], ["Python", " Python", " crossing", " transferring", "-python", "python", " python", "marsh"], [" crossing", "\u8de8", "\u8de8\u8d8a", " Python", "Python", " Crossing", "-python", "marsh"], [" crossing", " Crossing", "\u8de8", " Python", "\u8de8\u8d8a", "-cross", " cross", "cross"], [" crossing", " cross", " Python", "-cross", "Cross", " marsh", "cross", "Python"], [" of", " crossing", " marsh", " cross", " Python", "-cross", "Cross", "cross"], [" of", " crossing", " marsh", " Python", " cross", " binding", " brid", "Python"]], "p": [[0.6246, 0.3343, 0.0189, 0.0084, 0.0026, 0.0021, 0.0015, 0.001], [0.0512, 0.0425, 0.0122, 0.0069, 0.0051, 0.0045, 0.0035, 0.0031], [0.8536, 0.1019, 0.0258, 0.0089, 0.0018, 0.0011, 0.0006, 0.0006], [0.0025, 0.002, 0.0011, 0.0011, 0.0011, 0.0011, 0.0011, 0.0011], [0.4256, 0.0449, 0.0078, 0.0078, 0.0035, 0.0035, 0.0035, 0.0032], [0.1353, 0.0152, 0.0038, 0.0036, 0.0026, 0.0022, 0.0022, 0.0022], [0.033, 0.0291, 0.0257, 0.0257, 0.0241, 0.0227, 0.0188, 0.0177], [0.0537, 0.0393, 0.0164, 0.0093, 0.0093, 0.0088, 0.0077, 0.0073], [0.1968, 0.1053, 0.0439, 0.0283, 0.025, 0.0195, 0.0183, 0.0162], [0.3532, 0.2584, 0.0653, 0.0422, 0.024, 0.0069, 0.0042, 0.0029], [0.7582, 0.0622, 0.0585, 0.0139, 0.0095, 0.0042, 0.004, 0.0035], [0.0386, 0.0266, 0.0249, 0.0151, 0.0111, 0.0092, 0.0092, 0.0081], [0.5994, 0.0263, 0.0193, 0.0075, 0.0038, 0.0036, 0.0031, 0.003], [0.7231, 0.0205, 0.0193, 0.0067, 0.0026, 0.0019, 0.0019, 0.0019], [0.7762, 0.0207, 0.0086, 0.0056, 0.0049, 0.0036, 0.0025, 0.0022], [0.5364, 0.0389, 0.0162, 0.0152, 0.0143, 0.0068, 0.0046, 0.0038], [0.5779, 0.1373, 0.1138, 0.0077, 0.006, 0.0044, 0.0028, 0.0028], [0.4407, 0.0924, 0.0766, 0.0676, 0.0046, 0.0028, 0.0028, 0.0026], [0.3612, 0.0913, 0.0381, 0.018, 0.0045, 0.0038, 0.0038, 0.0033], [0.2459, 0.0484, 0.0455, 0.0377, 0.007, 0.0062, 0.0062, 0.0048], [0.8941, 0.0136, 0.0068, 0.0047, 0.0028, 0.0028, 0.0028, 0.0018], [0.1158, 0.0201, 0.0095, 0.0079, 0.0065, 0.0054, 0.0051, 0.0051], [0.0901, 0.0178, 0.0138, 0.0095, 0.0084, 0.0054, 0.0054, 0.0048], [0.337, 0.0313, 0.0158, 0.0158, 0.0062, 0.0051, 0.004, 0.0033], [0.0435, 0.0219, 0.0103, 0.0086, 0.0063, 0.0063, 0.0059, 0.0049], [0.0261, 0.014, 0.0116, 0.0075, 0.0075, 0.0058, 0.0051, 0.0045], [0.024, 0.0165, 0.0113, 0.01, 0.0088, 0.0088, 0.0069, 0.0065], [0.2644, 0.018, 0.018, 0.0124, 0.0109, 0.0109, 0.0096, 0.0075], [0.2719, 0.0185, 0.0144, 0.0105, 0.0105, 0.0087, 0.0072, 0.0072], [0.1989, 0.1549, 0.0392, 0.0127, 0.0105, 0.0087, 0.0082, 0.0082], [0.6219, 0.0166, 0.0146, 0.0121, 0.0121, 0.0089, 0.0039, 0.0035], [0.8349, 0.0223, 0.0105, 0.005, 0.0032, 0.0017, 0.0017, 0.0015], [0.6606, 0.0226, 0.01, 0.0089, 0.0061, 0.005, 0.0037, 0.0037], [0.2494, 0.0382, 0.0338, 0.028, 0.0159, 0.015, 0.0141, 0.008], [0.0633, 0.0318, 0.0318, 0.0299, 0.0264, 0.0219, 0.0193, 0.015], [0.0823, 0.0566, 0.0532, 0.0499, 0.0208, 0.0162, 0.0152, 0.0143], [0.0975, 0.063, 0.0433, 0.0382, 0.0279, 0.0262, 0.0169, 0.0132], [0.1076, 0.0653, 0.0541, 0.0508, 0.0478, 0.0372, 0.024, 0.0199], [0.0708, 0.0625, 0.0486, 0.0457, 0.0314, 0.0295, 0.0277, 0.0245], [0.0819, 0.0769, 0.0467, 0.0412, 0.0341, 0.0341, 0.0321, 0.022], [0.1014, 0.0952, 0.0615, 0.045, 0.045, 0.0397, 0.0273, 0.0273], [0.1999, 0.1291, 0.0573, 0.0475, 0.0446, 0.0307, 0.0288, 0.0239], [0.243, 0.243, 0.0577, 0.0478, 0.0329, 0.0187, 0.0187, 0.0165], [0.4168, 0.2528, 0.0724, 0.0284, 0.0172, 0.0152, 0.0143, 0.0098], [0.4953, 0.2651, 0.076, 0.015, 0.0103, 0.0097, 0.0075, 0.0071], [0.4123, 0.3639, 0.0716, 0.015, 0.0133, 0.008, 0.0076, 0.0052], [0.4136, 0.2843, 0.056, 0.0206, 0.0171, 0.0151, 0.0097, 0.0081], [0.5906, 0.1917, 0.0378, 0.0333, 0.0178, 0.0095, 0.0084, 0.0084], [0.596, 0.1507, 0.0262, 0.0192, 0.0169, 0.0132, 0.0103, 0.0085], [0.7564, 0.0797, 0.0202, 0.0178, 0.0101, 0.0061, 0.0051, 0.0045], [0.412, 0.0462, 0.028, 0.0247, 0.0232, 0.016, 0.011, 0.0097], [0.7905, 0.0307, 0.0186, 0.0136, 0.0077, 0.0077, 0.0077, 0.0053], [0.5896, 0.0484, 0.0333, 0.0259, 0.0202, 0.0157, 0.0108, 0.0101], [0.9078, 0.0129, 0.0089, 0.0065, 0.0051, 0.0048, 0.0035, 0.0033], [0.9368, 0.0092, 0.0072, 0.0056, 0.003, 0.002, 0.0017, 0.0016], [0.8103, 0.0109, 0.0102, 0.0096, 0.009, 0.0062, 0.0048, 0.0048], [0.3401, 0.2063, 0.086, 0.0759, 0.0406, 0.0358, 0.0358, 0.0169], [0.2436, 0.1674, 0.115, 0.0896, 0.0543, 0.0291, 0.0257, 0.0257], [0.4852, 0.139, 0.0843, 0.0511, 0.0451, 0.031, 0.0213, 0.0114], [0.8854, 0.0184, 0.0162, 0.0111, 0.0098, 0.0087, 0.0068, 0.0053], [0.691, 0.0825, 0.039, 0.0304, 0.0236, 0.0236, 0.0209, 0.0127], [0.6927, 0.1062, 0.0937, 0.0304, 0.0112, 0.0105, 0.0056, 0.0047], [0.8208, 0.0595, 0.0493, 0.0055, 0.0049, 0.004, 0.0028, 0.0019]], "ranks": {"Python": [67586, 211894, 152157, 215229, 81047, 166430, 65400, 134193, 145176, 132377, 92382, 197090, 209637, 190559, 181334, 198128, 157770, 124960, 151602, 178484, 75802, 209030, 149313, 157154, 128762, 179652, 156784, 112541, 123034, 95106, 83350, 46555, 52358, 42628, 35201, 4353, 2416, 3485, 2587, 482, 258, 301, 408, 596, 857, 640, 726, 788, 558, 921, 257, 68, 15, 39, 48, 3, 1, 1, 4, 4, 3, 5, 4]}}, {"pos": 436, "top": [[".", ",", " \u2013", "\u2013", ";", "\u00a0", "\u2026..", "\u2026."], [".", "\u2013", " \u2013", ",", "\u2013and", " \u200b\u200b", ":.", ".\u2013"], [".", ",", "\u2013", "\u2026", "\u2026..", "\u2026.", " \u2013", ".\u2013"], [" milfs", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Guta", " Shemale", " Strec", " ;;^", " Nues", " Blowjob"], [".", ",", " \u200b\u200b", ".-", "\u200b\u200b", ":", ".@", "\u2026"], [" \u200b\u200b", ",", ".", "\u2026.", "\u2026..", "\u2026", ".-", ":"], [".", ",", " \u200b\u200b", "\u2026", ".\u201d", "-", "\u2026.", ".-"], [".", ",", " \u200b\u200b", ".-", "\u2026.", ".,", ".\u2013", ".\u201d"], [".", ",", "\u00a0", " \u200b\u200b", ".\u201d", "\u2026", ".\u201c", "\u2013"], [",", ".", "\u00a0", "\u2013", "\u2026", "-", ";", ".\u2013"], [",", ".", "\u00a0", "\u2026", "\u2013", "-", " ", " \u2013"], [" selling", ",", " \u201c", " losing", "\u00a0", " earning", " paying", " getting"], [" getting", " doing", " losing", " selling", " spending", " \u201c", " paying", " earning"], [",", " \u201c", " ", " doing", " getting", " going", " paying", "\u2026"], [" \u201c", " ", " \u2018", "\u00a0", ",", " \"", "\u2013", " doing"], [" \u201c", " ", " \u2018", " going", " getting", " \u2013", "\u00a0", ","], [",", " \u201c", "\u00a0", " ", " \u2013", "\u2013", " \u2018", " getting"], [" \u201c", ",", "\u00a0", " getting", "\u2013", " spending", " \u2013", " going"], [" \u201c", " spending", " going", " getting", " myriad", " losing", " digging", " doing"], [" \u201c", " myriad", " \u2018", " going", " spending", " shifting", " \u2013", " making"], ["<|endoftext|>", " \n\n", " \u201c", " myriad", "\u00a0", " \"", " ", "\n\n"], [" ``", " ''", " spending", " \u201c", " shifting", " losing", " collapsing", " rushing"], [" ``", " ''", " shifting", " battling", " spending", " myriad", " ultimately", " losing"], [" ``", " ultimately", " \u2018", " ''", " over", " re", " making", " \u201c"], [" ``", " ''", " \n\n", " \u2015", " battling", " shifting", " myriad", " --"], [" ``", " **", " ''", " hacking", " shifting", " transitioning", " moving", " deploying"], [" ``", " ''", " deploying", " hacking", " labor", " moving", " engineering", " shifting"], [" ``", " ''", " ,", " --", " over", " inter", " moving", " trans"], [" ``", " labor", " **", " commercial", " complex", " hardware", " production", " technology"], [" **", " ``", " labor", " technology", " complex", " commercial", " \n", " __"], [" **", " labor", " technology", " complex", " commercial", " performance", " work", " production"], [" **", " complex", " commercial", " labor", " over", " technology", " work", " production"], [" over", " complex", " commercial", " labor", " modern", " high", " work", " technology"], [" complex", " technology", " technologies", " **", " labor", " infrastructure", " hardware", " technical"], [" **", " complex", " \u201c", " labor", " *", " **\u201c", " technology", " *\u201c"], ["\u2026*", " \u2026", " \u201c", " *", " *\u201c", " [\u2026]", "\u2026", "\u2026**"], [" Python", " *", " \u201c", " **", "Python", " *\u201c", "\u2026*", " **\u201c"], [" Python", " \u201c", " complex", " foreign", " processing", " interactions", " handling", " internal"], [" \u201c", " Python", " translating", " processing", " interface", " translation", " interactions", " foreign"], [" Python", " foreign", " translating", " translation", " translations", "Python", " interactions", " European"], [" Python", "Python", " translation", " translating", " translations", " python", " interface", " interactions"], [" Python", " interface", " interactions", " interaction", " interfaces", " transfers", " interf", "Python"], [" interface", " interactions", " interfaces", " transfers", " interaction", " Python", " brid", " interf"], [" interface", " transfers", " interfaces", " interactions", " transfer", " transferring", " brid", " interaction"], [" transfers", " transferring", " interface", " transfer", " interfaces", " interactions", " brid", " interaction"], [" transfers", " transferring", " transfer", " interactions", " interface", " interfaces", " brid", " interaction"], [" transfers", " transferring", " interactions", " interfaces", " transfer", " interface", " brid", " interaction"], [" transferring", " transfers", " interactions", " brid", " interfaces", " interface", " transfer", " interf"], [" transferring", " transfers", " interfaces", " brid", " interactions", " interf", " interface", " interoper"], [" transferring", " interfaces", " interf", " transfers", " interactions", " brid", " interoper", " interface"], [" transferring", " interfaces", " interf", " interoper", " translating", " brid", " converting", "-interface"], [" transferring", " interfaces", " interf", " interoper", " brid", " interface", " transfers", " translating"], [" transferring", " Python", " accessing", " brid", " interfaces", " interoper", " converting", " translating"], [" transferring", " brid", " translating", " Python", " interfaces", " converting", " accessing", " interoper"], [" transferring", " translating", " converting", " communicating", " Python", " JNI", " syncing", " iterating"], [" Python", " transferring", " JNI", "Python", " PyObject", " python", " callbacks", "-python"], [" Python", "Python", " PyObject", " python", "-python", " transferring", " calling", "python"], [" Python", " crossing", "Python", " PyObject", " transferring", " python", "-python", " calling"], [" crossing", " Python", "\u8de8", "\u8de8\u8d8a", " Crossing", "Python", " PyObject", "-python"], [" crossing", " Python", " Crossing", "\u8de8\u8d8a", "\u8de8", " crossings", " cross", "-cross"], [" crossing", " Python", " cross", " Crossing", " marsh", "-cross", " brid", " crossings"], [" crossing", " marsh", " Python", " cross", " brid", " Crossing", "-cross", " JNI"], [" crossing", " marsh", " binding", " Python", " brid", " cross", " passing", " transferring"]], "p": [[0.8978, 0.0737, 0.0164, 0.0069, 0.0013, 0.0006, 0.0005, 0.0005], [0.1428, 0.0464, 0.0436, 0.0171, 0.011, 0.0103, 0.0055, 0.0046], [0.476, 0.3707, 0.1062, 0.0127, 0.0087, 0.0056, 0.0041, 0.0025], [0.0086, 0.0067, 0.0049, 0.0043, 0.003, 0.0026, 0.0021, 0.0021], [0.459, 0.2457, 0.1235, 0.0045, 0.0033, 0.0019, 0.0019, 0.0017], [0.3712, 0.2397, 0.1754, 0.0153, 0.0119, 0.0044, 0.0023, 0.0016], [0.9016, 0.0576, 0.0129, 0.0035, 0.0033, 0.0021, 0.002, 0.0016], [0.7513, 0.19, 0.0424, 0.0022, 0.0004, 0.0004, 0.0003, 0.0003], [0.6721, 0.3175, 0.004, 0.0026, 0.0006, 0.0005, 0.0002, 0.0002], [0.9886, 0.0046, 0.0036, 0.0022, 0.0002, 0.0001, 0.0001, 0.0], [0.8514, 0.0699, 0.0617, 0.0065, 0.0051, 0.0012, 0.0011, 0.0003], [0.0264, 0.0264, 0.015, 0.0133, 0.011, 0.0103, 0.0103, 0.0103], [0.0243, 0.0178, 0.0157, 0.0148, 0.0139, 0.0122, 0.0108, 0.0101], [0.0655, 0.0655, 0.035, 0.0329, 0.0273, 0.0176, 0.0165, 0.0129], [0.2142, 0.1567, 0.029, 0.0212, 0.0137, 0.0114, 0.0114, 0.0114], [0.1747, 0.0643, 0.039, 0.0163, 0.0143, 0.0135, 0.0127, 0.0105], [0.3015, 0.266, 0.0673, 0.0524, 0.0193, 0.015, 0.015, 0.0075], [0.1556, 0.0326, 0.0175, 0.0164, 0.0164, 0.012, 0.0099, 0.0077], [0.4562, 0.0061, 0.0054, 0.0048, 0.0045, 0.0042, 0.0037, 0.0035], [0.1641, 0.0119, 0.0099, 0.0064, 0.006, 0.005, 0.0047, 0.0044], [0.6213, 0.0146, 0.0054, 0.0031, 0.0031, 0.0025, 0.0024, 0.0021], [0.0317, 0.0097, 0.008, 0.0071, 0.0071, 0.0049, 0.0049, 0.0046], [0.2387, 0.0344, 0.006, 0.0056, 0.0056, 0.0047, 0.0044, 0.0041], [0.0177, 0.0089, 0.0069, 0.0069, 0.0061, 0.0061, 0.0061, 0.0058], [0.0622, 0.013, 0.0102, 0.0084, 0.007, 0.0054, 0.0048, 0.0048], [0.2496, 0.0059, 0.004, 0.004, 0.0036, 0.0033, 0.0031, 0.0031], [0.3131, 0.0129, 0.0048, 0.0048, 0.0039, 0.0039, 0.0031, 0.0029], [0.0467, 0.0152, 0.0118, 0.0111, 0.0098, 0.0056, 0.0052, 0.0049], [0.0348, 0.0198, 0.01, 0.0094, 0.0083, 0.0068, 0.0064, 0.006], [0.4326, 0.0244, 0.0158, 0.0079, 0.0079, 0.007, 0.0058, 0.0051], [0.0541, 0.0328, 0.024, 0.0225, 0.0128, 0.0121, 0.0094, 0.0088], [0.1278, 0.0209, 0.0135, 0.0135, 0.0112, 0.0105, 0.0099, 0.0072], [0.0242, 0.013, 0.0079, 0.0079, 0.0074, 0.0074, 0.0069, 0.0065], [0.0499, 0.0469, 0.0284, 0.0162, 0.0152, 0.0152, 0.0152, 0.0134], [0.0684, 0.05, 0.0303, 0.0252, 0.0184, 0.0173, 0.0126, 0.0119], [0.3959, 0.165, 0.1065, 0.0238, 0.0153, 0.0144, 0.0144, 0.0127], [0.2167, 0.109, 0.0484, 0.0228, 0.0215, 0.013, 0.0115, 0.0108], [0.0982, 0.0494, 0.0206, 0.0171, 0.016, 0.0133, 0.0133, 0.0125], [0.0809, 0.0592, 0.0218, 0.0218, 0.0192, 0.0181, 0.0159, 0.0159], [0.3197, 0.0406, 0.0246, 0.0218, 0.0204, 0.0192, 0.018, 0.0159], [0.4257, 0.095, 0.0308, 0.029, 0.0212, 0.0199, 0.0187, 0.0155], [0.1952, 0.1723, 0.152, 0.0718, 0.0464, 0.0299, 0.0281, 0.0219], [0.2714, 0.1646, 0.1131, 0.0686, 0.0606, 0.0416, 0.0304, 0.0252], [0.245, 0.1908, 0.1157, 0.1021, 0.0619, 0.0619, 0.0243, 0.0243], [0.3628, 0.1178, 0.1178, 0.104, 0.0917, 0.0631, 0.0232, 0.0124], [0.3578, 0.1491, 0.0905, 0.0704, 0.0622, 0.0622, 0.0377, 0.0167], [0.2576, 0.1379, 0.1074, 0.0836, 0.0575, 0.0575, 0.0395, 0.024], [0.2184, 0.1927, 0.1032, 0.0803, 0.0552, 0.043, 0.043, 0.0261], [0.1803, 0.1404, 0.1239, 0.0623, 0.0623, 0.0623, 0.0585, 0.0334], [0.2347, 0.1109, 0.0762, 0.0673, 0.0594, 0.0558, 0.0524, 0.0408], [0.1745, 0.0994, 0.0566, 0.05, 0.0344, 0.0323, 0.0285, 0.0222], [0.3646, 0.1184, 0.0814, 0.0718, 0.0299, 0.0264, 0.0264, 0.0233], [0.3058, 0.0682, 0.0682, 0.0531, 0.0365, 0.0322, 0.0322, 0.0284], [0.6745, 0.0431, 0.0204, 0.0204, 0.0159, 0.0159, 0.0159, 0.014], [0.7619, 0.0379, 0.023, 0.0203, 0.0203, 0.0096, 0.0085, 0.0085], [0.4534, 0.1668, 0.0788, 0.0542, 0.0422, 0.0256, 0.0199, 0.0176], [0.7638, 0.0912, 0.0488, 0.0296, 0.018, 0.0075, 0.0066, 0.0066], [0.556, 0.1406, 0.0664, 0.0586, 0.0403, 0.0216, 0.0148, 0.0148], [0.6815, 0.1723, 0.0233, 0.0233, 0.0206, 0.0141, 0.0141, 0.0076], [0.9502, 0.0197, 0.012, 0.0039, 0.0039, 0.0016, 0.0014, 0.0009], [0.8798, 0.0722, 0.0161, 0.0067, 0.0046, 0.0032, 0.0022, 0.0015], [0.6317, 0.2324, 0.0404, 0.0356, 0.007, 0.0048, 0.0045, 0.0033], [0.7869, 0.1065, 0.021, 0.0163, 0.0127, 0.0093, 0.0077, 0.0047]], "ranks": {"Python": [65467, 206941, 187246, 205593, 44779, 134653, 39720, 97513, 86077, 124173, 65651, 150344, 107500, 64883, 59082, 57764, 54655, 66694, 52887, 82655, 41156, 56761, 36864, 34194, 35012, 29138, 10757, 5787, 4271, 3463, 3797, 4177, 4187, 995, 420, 48, 1, 1, 2, 1, 1, 1, 6, 11, 29, 31, 22, 37, 42, 61, 148, 37, 2, 3, 4, 1, 1, 1, 2, 2, 2, 3, 4]}}, {"pos": 437, "top": [[" \u2013", "i", " ", ".", "\u2013", "  \n", ",", "<|endoftext|>"], ["  \r\n", "  \n", "  \n  \n", "  \n\n", " \u2013**", "   \n", " \r\n \r\n", "    \n"], [" \u2013", "  \n", "\u2013", "**\u2013", "  \r\n", "\u2013\u2013", " \u2013,", " \u2013**"], ["iems", " \u041a\u0440\u0430\u0441\u0438", "ieli", "  \r\n", "i\u00e9s", " *__", " ---", " \r\n \r\n"], ["  \r\n", "  \n", "i", "\u2013\u2013", "\u064a", "  \n\n\n", "    \n", "  \n  \n"], ["  \n", "i", "\u2013\u2013", "   \n", "  \r\n", "\u064a", "    \n", " \n  \n"], ["  \n", "i", "  \r\n", "   \n", "    \n", "--", " \n", "\u2013\u2013"], ["  \n", "  \r\n", "   \n", "    \n", " \r\n \r\n", " \n", " \n  \n", "\u2013\u2013"], ["  \n", "    \n", "   \n", " \n", "  \r\n", " \r\n \r\n", " \n  \n", "\u2013\u2013"], ["  \n", "\u2013\u2013", "  \r\n", "   \n", "    \n", "--", " \r\n \r\n", "\\_"], ["  \n", "   \n", "  \r\n", "\u2013\u2013", " \n", " \u2013", "i", "    \n"], ["  \r\n", "  \n", "\u2013\u2013", "    \n", "   \n", " \r\n \r\n", "   \r\n", " \n  \n"], ["  \n", "  \r\n", "\u2013\u2013", "   \n", " \u2013", "i", "ing", "--"], ["  \r\n", "\u2013\u2013", "  \n", " \u2013", "i", " ", "--", "ing"], [" ", "  \n", " \u2013", "i", "--", "\u2013\u2013", "  \r\n", " --"], [" ", " \u2013", "i", "\u2013\u2013", "  \n", "--", "ing", " --"], ["i", " \u2013", " ", "\u2013\u2013", "\u2013", "--", "ing", "  \n"], ["\u2013\u2013", " \u2013", "i", "\u2013", "  \r\n", " ", "ing", " myriad"], ["\u2013\u2013", "i", " myriad", " --", "--", "i\u00e9s", " \u2013", "\u2014or"], ["\u2013\u2013", " myriad", " --", "--", " \u2013", "i", " crossing", " "], ["  \n\n", "<|endoftext|>", " \n\n", "--", "i", "  \n", " --", " "], [" crossing", "\u96be\u5173", " --", " crossings", "i\u00e9s", "\u2013\u2013", "\u6709\u592a\u591a", " myriad"], [" --", " crossing", " ``", " myriad", " ---", " crossings", "\u2013\u2013", "--"], [" --", " myriad", " crossing", "--", " over", " inter", " trans", " "], [" --", "--", "  \n\n", " \n\n", " myriad", " \r\n \r\n", "---", " ---"], [" --", " ---", " crossing", " ``", " ------", " crossings", "---", " \r\n \r\n"], [" --", " crossing", " ---", " ``", " crossings", " myriad", "-cross", "---"], [" --", "--", " \n\n", " ``", " ---", "  \n\n", " ", " _"], [" --", " crossing", " myriad", " ", " inter", " trans", " \r\n \r\n", " crossings"], [" --", " **", " \r\n \r\n", " \n  \n", " crossing", " ", " \n", "  \r\n"], [" **", " crossing", " ", " \n  \n", " myriad", " traffic", " --", " \n"], [" **", " ", " \n  \n", " *", " \n", " crossing", " --", "  "], [" inter", " crossing", " myriad", " *", " cross", " **", " trans", " --"], [" myriad", "  \r\n", " interface", "\u2014or", "\u2014even", " \u2014", " \r\n \r\n", " \n  \n"], [" **\u201c", " myriad", " **", " *\\", " interfaces", " interface", " *\u201c", " -*"], [" \u2014\u2014", " *\u2013", "-cross", " \u2014", "\u2014\u2014", "\u8de8\u8d8a", "\u8de8\u754c", " **\u201c"], ["\u8de8\u754c", " interface", " cross", "\u8de8\u8d8a", " interfaces", "-cross", " \u2014\u2014", " *"], [" interface", " bridge", " interfaces", "\u8de8\u8d8a", " brid", "\u8de8\u754c", " crossing", " cross"], ["\u8de8\u8d8a", " crossing", " interface", " interfaces", " crossings", "\u8de8\u754c", " cross", " bridge"], [" interfaces", " interface", "\u8de8\u8d8a", "\u8de8\u754c", " Interface", " brid", "\u8de8\u5883", " crossing"], [" interfaces", " interface", "\u8de8\u754c", "\u8de8\u8d8a", "\u8de8\u5883", " Interface", "\u63a5\u53e3", " crossing"], [" interface", " interfaces", " Interface", "\u63a5\u53e3", " interf", " bridge", "\u8de8\u754c", " brid"], [" interfaces", " interface", " Interface", " crossings", " bridge", "\u8de8\u754c", "\u63a5\u53e3", " interf"], [" interfaces", " interface", " Interface", " crossings", "\u8de8\u754c", "\u63a5\u53e3", "interface", " Interfaces"], [" interfaces", " interface", " crossings", " Interface", " crossing", "\u8de8\u754c", "\u8de8\u8d8a", " bridge"], [" interfaces", " interface", " crossings", " crossing", " Interface", " bridge", " bridges", " brid"], [" interfaces", " interface", " crossings", " crossing", " Interface", "\u8de8\u8d8a", " bridge", "interface"], [" interfaces", " interface", " crossings", " Interface", " crossing", "\u8de8\u8d8a", " bridge", "interface"], [" interfaces", " interface", " crossings", " Interface", "\u8de8\u754c", " Interfaces", "-interface", "interfaces"], [" interfaces", " Interface", " crossings", " interface", " Interfaces", "\u8de8\u754c", "interfaces", "-interface"], [" interfaces", "interfaces", " Interfaces", "/interfaces", "\u8de8\u754c", " Interface", "\u8de8\u5883", "-interface"], [" interfaces", " Interface", " Interfaces", "interfaces", " interface", "/interfaces", "-interface", "interface"], [" interfaces", " APIs", " Interfaces", "interfaces", " Interface", "/interfaces", " interoper", "/interface"], [" interfaces", " APIs", "/interfaces", " Interfaces", "interfaces", " Interface", " interface", "\u8fb9\u754c"], [" interfaces", " APIs", " JNI", " Python", "\u8fb9\u754c", " boundary", " boundaries", "interfaces"], [" Python", " JNI", " interfaces", "Python", " APIs", " python", "-python", "/python"], [" Python", "Python", " python", "\u8fb9\u754c", " boundaries", " boundary", "-python", "/python"], [" Python", "Python", "\u8fb9\u754c", " python", " boundaries", " boundary", " JNI", "/python"], [" Python", "Python", "\u8fb9\u754c", " boundaries", " python", " boundary", " JNI", "/python"], [" Python", " boundary", " boundaries", "\u8fb9\u754c", "Python", " Boundary", " python", "boundary"], [" Python", " boundaries", "Python", " python", " boundary", " bridges", " JNI", " PyObject"], [" Python", " boundaries", " bridges", " JNI", " boundary", " language", "Python", " python"], [" Python", " the", " language", " boundaries", " JNI", " boundary", " bridges", " ABI"]], "p": [[0.7121, 0.0622, 0.0516, 0.0516, 0.0355, 0.0215, 0.0066, 0.0031], [0.741, 0.1653, 0.0164, 0.0154, 0.0144, 0.0077, 0.0044, 0.0037], [0.3418, 0.1181, 0.1042, 0.0594, 0.0408, 0.0383, 0.0338, 0.0264], [0.058, 0.033, 0.0274, 0.0177, 0.0156, 0.0089, 0.0083, 0.0078], [0.2625, 0.1405, 0.1094, 0.0907, 0.026, 0.0215, 0.0202, 0.0179], [0.3546, 0.1898, 0.1151, 0.0511, 0.0511, 0.0273, 0.0257, 0.0114], [0.8543, 0.0425, 0.0214, 0.0147, 0.0089, 0.0084, 0.0048, 0.0045], [0.55, 0.1576, 0.0956, 0.0699, 0.0291, 0.0065, 0.0054, 0.0051], [0.5625, 0.1255, 0.0918, 0.0383, 0.0263, 0.017, 0.015, 0.0117], [0.4145, 0.2218, 0.1432, 0.0465, 0.0182, 0.0118, 0.0092, 0.0071], [0.8387, 0.0223, 0.021, 0.021, 0.0164, 0.012, 0.0106, 0.0088], [0.3241, 0.0988, 0.0497, 0.0321, 0.0207, 0.0152, 0.0041, 0.0041], [0.2862, 0.2372, 0.127, 0.0142, 0.0111, 0.0092, 0.0081, 0.0056], [0.1711, 0.1607, 0.0975, 0.086, 0.0316, 0.0246, 0.0116, 0.0059], [0.2533, 0.1443, 0.1443, 0.0565, 0.0388, 0.0303, 0.0162, 0.0111], [0.1428, 0.126, 0.0814, 0.0299, 0.0193, 0.0133, 0.011, 0.0091], [0.2512, 0.2512, 0.1726, 0.034, 0.0206, 0.0125, 0.0117, 0.0059], [0.3229, 0.1048, 0.0925, 0.0151, 0.0076, 0.0063, 0.0056, 0.0046], [0.0559, 0.0464, 0.0206, 0.0086, 0.0071, 0.0041, 0.0041, 0.0036], [0.1371, 0.021, 0.0186, 0.0164, 0.0154, 0.0136, 0.0077, 0.0044], [0.27, 0.2239, 0.0441, 0.0389, 0.0323, 0.0184, 0.0173, 0.0143], [0.0066, 0.0062, 0.0058, 0.0045, 0.0042, 0.0042, 0.0035, 0.0031], [0.0906, 0.0148, 0.0131, 0.0108, 0.009, 0.0066, 0.0048, 0.0031], [0.0629, 0.0116, 0.0103, 0.0085, 0.0052, 0.0049, 0.0043, 0.0043], [0.174, 0.0499, 0.0413, 0.0172, 0.0162, 0.0105, 0.0098, 0.0087], [0.1937, 0.0669, 0.0169, 0.0091, 0.0085, 0.0085, 0.008, 0.0075], [0.2095, 0.0284, 0.025, 0.0207, 0.0118, 0.0063, 0.0041, 0.0032], [0.4647, 0.018, 0.0159, 0.0159, 0.0159, 0.0109, 0.0096, 0.0091], [0.0858, 0.0358, 0.018, 0.0149, 0.0132, 0.0132, 0.0124, 0.0066], [0.0827, 0.0644, 0.0568, 0.0568, 0.0269, 0.0252, 0.0223, 0.0135], [0.0983, 0.0361, 0.0264, 0.0193, 0.0133, 0.0125, 0.0125, 0.0117], [0.1571, 0.0578, 0.0256, 0.0241, 0.0188, 0.0188, 0.0156, 0.0137], [0.0256, 0.0212, 0.0199, 0.0176, 0.0146, 0.0129, 0.0107, 0.0107], [0.0267, 0.0152, 0.0143, 0.0143, 0.0119, 0.0119, 0.0105, 0.0092], [0.0336, 0.0204, 0.018, 0.014, 0.0116, 0.0109, 0.0096, 0.009], [0.056, 0.0362, 0.03, 0.03, 0.0249, 0.0233, 0.0219, 0.0206], [0.0414, 0.0267, 0.0236, 0.0236, 0.0236, 0.0221, 0.0184, 0.0184], [0.0703, 0.066, 0.0547, 0.0514, 0.0426, 0.0401, 0.0401, 0.0376], [0.1749, 0.1202, 0.1061, 0.0776, 0.0442, 0.0442, 0.0324, 0.0268], [0.2117, 0.1868, 0.0606, 0.0368, 0.0346, 0.0269, 0.0253, 0.0223], [0.221, 0.195, 0.0717, 0.0674, 0.0559, 0.0409, 0.0384, 0.0233], [0.4948, 0.3401, 0.046, 0.0149, 0.0132, 0.008, 0.0071, 0.0055], [0.4399, 0.3882, 0.0409, 0.0117, 0.0117, 0.0103, 0.0091, 0.0091], [0.493, 0.299, 0.0667, 0.0217, 0.0149, 0.0131, 0.0102, 0.009], [0.5472, 0.2281, 0.0449, 0.0396, 0.024, 0.0146, 0.0088, 0.0088], [0.447, 0.1863, 0.088, 0.0777, 0.0286, 0.0223, 0.0173, 0.0153], [0.4863, 0.1789, 0.0658, 0.0513, 0.0352, 0.0214, 0.0147, 0.0095], [0.4603, 0.1494, 0.08, 0.0623, 0.0485, 0.0229, 0.0158, 0.0123], [0.4576, 0.0795, 0.0795, 0.0619, 0.0293, 0.0275, 0.0258, 0.0228], [0.3621, 0.0713, 0.0591, 0.046, 0.0433, 0.0433, 0.0359, 0.0297], [0.2852, 0.0677, 0.0598, 0.0465, 0.0465, 0.032, 0.0301, 0.0207], [0.3208, 0.0919, 0.0632, 0.0558, 0.0383, 0.0338, 0.0318, 0.028], [0.3589, 0.055, 0.0486, 0.0486, 0.0486, 0.0429, 0.0244, 0.019], [0.5757, 0.0417, 0.0417, 0.0368, 0.0368, 0.0368, 0.0223, 0.0153], [0.2898, 0.1369, 0.0941, 0.0504, 0.0392, 0.0305, 0.0305, 0.0238], [0.5845, 0.1478, 0.0698, 0.0423, 0.0291, 0.0156, 0.0121, 0.0083], [0.8496, 0.0697, 0.0176, 0.0137, 0.0094, 0.0074, 0.0057, 0.0057], [0.8444, 0.0612, 0.0255, 0.0136, 0.0106, 0.0106, 0.0064, 0.005], [0.8743, 0.0384, 0.0206, 0.0125, 0.0097, 0.0097, 0.0052, 0.0046], [0.6732, 0.117, 0.1032, 0.0553, 0.0123, 0.0096, 0.0058, 0.004], [0.9466, 0.0173, 0.0093, 0.0056, 0.005, 0.003, 0.0014, 0.0013], [0.8334, 0.0415, 0.0252, 0.0153, 0.0135, 0.0105, 0.0077, 0.0077], [0.4918, 0.1809, 0.0855, 0.0754, 0.0295, 0.0277, 0.023, 0.007]], "ranks": {"Python": [23122, 138161, 159323, 105493, 36954, 104652, 58790, 86818, 60923, 114236, 47615, 84195, 43285, 28364, 18908, 18688, 29948, 35811, 59167, 81293, 43207, 82085, 78779, 77823, 96219, 73398, 51990, 17306, 22206, 18094, 17624, 15503, 15657, 9181, 9405, 2408, 122, 299, 680, 151, 228, 336, 595, 1002, 1365, 1229, 774, 1113, 2942, 1981, 2732, 133, 10, 19, 4, 1, 1, 1, 1, 1, 1, 1, 1]}}, {"pos": 438, "top": [[".", ",", "\u2013", ";", " \u2013", "\u00a0\u00a0", "\u00a0", " "], ["\u2013", ",", " \u2013", ".", ";", "\u2013and", "  ", " "], [".", ",", "\u2013", " \u2013", "\u2026", "\u2026.", "\u2026..", ";"], [" milfs", "-------------</", " Blowjob", "----------</", " Shemale", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " ;;^", "TRGL"], [".@", "ed", ".", ":@", "(@", " (@", " CIF", ","], [",", "<|quad_end|>", "fst", ".", "\u52a0\u62ff\u5927\u7684", "\u5404\u79cd\u5404\u6837\u7684", "-CS", "-U"], ["  \n", " \u2018", " \u2019", ".\u2019", "   \n", "  \r\n", " \u201c", "  "], ["  \n", "   \n", "  \r\n", "\u4e8b\u534a\u529f\u500d", "\u4e94\u989c\u516d\u8272\u7684", "  ", "-than", "\u5404\u79cd\u5404\u6837"], [".", ",", "  \n", ".\u201d", ":", " \n", ",.", "   \n"], [",", "-down", ".", " \u00ad", "-Cds", "\u2013", "\u52c7\u5f80\u76f4\u524d", "-than"], [".", ",", " ", "-", "  \n", " @", " \u00ad", "-down"], [" stride", "-down", " \u041d\u0435\u0441\u043a\u043e", "\u5f3a\u9669", "\u907a\u7523", "\u4e94\u989c\u516d\u8272\u7684", "\u54e5\u534e", "-than"], [" stride", " vibe", " effortlessly", " wildly", "-ish", "-down", " vibes", " solid"], [" vibe", " ", "-down", "-ish", "-esque", "-to", " effortlessly", " back"], [" ", "--", " effortlessly", " truly", " \"", " back", " myriad", "-to"], [" myriad", " wildly", " effortlessly", " arguably", " potentially", " folks", " incredibly", "-esque"], [",", " ", "o", "e", "i", " \u2013", " myriad", " \""], [" myriad", "-esque", "o", " effortlessly", "i", " wildly", "\u2013", "-down"], [" myriad", "-esque", " effortlessly", " truly", " hugely", " arguably", "i", " wildly"], [" myriad", " hugely", " seemingly", " much", " far", " arguably", " wildly", "--"], ["<|endoftext|>", " myriad", "  \n\n", " \n\n", "--", " much", " hugely", " --"], ["\u5171\u540c\u6253\u9020", " ``", "\u8179\u5730", "\u4e4b\u9065", "\u66f4\u7f8e\u597d", "\u96be\u5173", "\u66f4\u8fdc", "\u54e5\u534e"], [" ``", " --", " ''", " myriad", "\u5171\u540c\u6253\u9020", " hugely", " beyond", " arguably"], [" ultimately", " much", " --", " ,", " far", " trans", " even", " beyond"], [" --", " ", " \n\n", " much", " hugely", " myriad", " ultimately", "  \n\n"], [" beyond", " ``", " --", " Africa", " African", " into", " Caribbean", " Android"], [" technology", " ``", " --", " Android", " interface", " tech", "\u5230\u5317\u4eac", " glass"], [" --", " ,", " ", " @", " \n\n", " '", " much", " trans"], [" \n\n", " @", " --", " ", "  \n\n", " trans", " ultimately", " via"], [" __", " \n", " ____", " technology", " **", " ___", " --", " ______"], [" technology", " __", " **", " tech", " ____", " ?", " ___", " \n\n"], [" ...", " technology", " **", " tech", " -", " __", " ", " \u2026"], [" technology", " via", " tech", " Black", " -", " hardware", " European", " interface"], [" technology", " tech", " interface", " Android", " hardware", " Chinese", " technologies", " European"], [" Android", " tech", " technology", " interface", " African", " Chinese", "Android", "\u2011"], [" \u2026", "\u2026\u2026", " Android", "\u2014\u2014", "\u2026*", "\u2011", " \u2014\u2014", "Android"], [" Android", "Android", " Java", " Chinese", " Python", " Interface", "Java", " interface"], [" Android", "Android", " Interface", " interface", " Java", " Python", " African", " android"], [" Android", "Android", " Java", " interface", " Interface", " android", " Linux", " Chinese"], [" Android", " Java", "Android", " Chinese", " Python", " JNI", "Java", " Indonesian"], [" Java", " Chinese", " Android", " JNI", " Japanese", " interface", " Interface", " Indonesian"], [" interface", " Java", " Interface", " JNI", " Android", " Chinese", " interfaces", "Java"], [" interface", " Interface", " Java", " interfaces", " Android", " JNI", "interface", "\u63a5\u53e3"], [" interface", " Interface", " interfaces", " Java", "interface", "\u63a5\u53e3", " JNI", " Android"], [" interface", " Interface", " interfaces", " JNI", " Java", "interface", " APIs", " Android"], [" interface", " Interface", " interfaces", " JNI", " via", " Java", "interface", " bridge"], [" interface", " Interface", " JNI", " Java", " interfaces", " via", " Via", "interface"], [" interface", " Interface", " via", " JNI", " interfaces", " Via", " Java", "interface"], [" Interface", " interface", " JNI", "-interface", "-API", "/API", " interfaces", " Java"], [" Interface", " interface", "-interface", "/interface", "/API", " JNI", "/interfaces", "-API"], [" Interface", "-interface", " interface", "/interface", "/API", "-API", "/interfaces", " interfaces"], [" Interface", " JNI", " interface", "-interface", " Python", "-API", " interfaces", "interface"], [" Python", "Python", " JNI", "/python", "-python", " Interface", "_python", " interface"], [" Python", " JNI", " interface", " Interface", " interfaces", "-API", "-interface", "Python"], [" Python", " JNI", "Python", " Java", "-python", "/python", " python", "-API"], [" Python", "Python", " python", " JNI", "-python", "/python", " Java", "python"], [" Python", "Python", " python", "/python", "-python", "python", " PyObject", "_python"], [" Python", "Python", " python", "/python", "python", "-python", " JNI", " PyObject"], [" Python", "Python", " python", "/python", "-python", "python", " PyObject", " JNI"], [" Python", "Python", " python", " boundary", "-python", "/python", " PyObject", "python"], [" Python", "Python", " python", "/python", " boundary", "-python", " JNI", " Java"], [" Python", " JNI", " boundary", "Python", " python", " Java", "-python", " PyObject"], [" Python", " JNI", " Java", " boundary", "Python", " ABI", " python", " C"]], "p": [[0.7029, 0.293, 0.0012, 0.0011, 0.0007, 0.0002, 0.0002, 0.0001], [0.1668, 0.0839, 0.074, 0.0653, 0.0073, 0.0069, 0.0033, 0.0029], [0.3279, 0.3279, 0.2894, 0.0305, 0.0087, 0.0047, 0.0036, 0.0017], [0.021, 0.0072, 0.0064, 0.0053, 0.0053, 0.0047, 0.0044, 0.0036], [0.0135, 0.0068, 0.0056, 0.0047, 0.0041, 0.003, 0.0027, 0.0025], [0.0044, 0.0041, 0.0018, 0.0018, 0.0012, 0.0011, 0.0011, 0.001], [0.2738, 0.0889, 0.0835, 0.0289, 0.0255, 0.0186, 0.0154, 0.0128], [0.026, 0.0245, 0.009, 0.0079, 0.0048, 0.0045, 0.0043, 0.0043], [0.8824, 0.1054, 0.0028, 0.0008, 0.0007, 0.0007, 0.0007, 0.0005], [0.1569, 0.0069, 0.0037, 0.0033, 0.0029, 0.0024, 0.0021, 0.0021], [0.1585, 0.1585, 0.0797, 0.0454, 0.0427, 0.0243, 0.0147, 0.0138], [0.0033, 0.0029, 0.0026, 0.0023, 0.0021, 0.0021, 0.0018, 0.0013], [0.0058, 0.0058, 0.0033, 0.0029, 0.0029, 0.0029, 0.0027, 0.0027], [0.0068, 0.005, 0.0047, 0.0044, 0.0039, 0.0037, 0.0037, 0.0037], [0.0617, 0.0166, 0.0101, 0.0074, 0.0069, 0.0065, 0.0061, 0.0057], [0.0142, 0.0097, 0.0063, 0.0055, 0.0049, 0.0043, 0.0041, 0.0038], [0.0442, 0.0345, 0.0324, 0.0286, 0.0252, 0.0184, 0.0153, 0.0119], [0.0107, 0.0073, 0.0069, 0.0057, 0.0044, 0.0042, 0.0035, 0.0035], [0.0183, 0.006, 0.0046, 0.0046, 0.0046, 0.0044, 0.0044, 0.0038], [0.0265, 0.0086, 0.0059, 0.0055, 0.0055, 0.0052, 0.0046, 0.0046], [0.9301, 0.0012, 0.001, 0.0005, 0.0005, 0.0004, 0.0004, 0.0004], [0.0042, 0.0029, 0.0015, 0.0014, 0.0014, 0.0014, 0.0012, 0.0011], [0.0888, 0.0083, 0.0042, 0.003, 0.002, 0.0017, 0.0016, 0.0015], [0.0151, 0.0133, 0.0097, 0.0081, 0.0071, 0.0055, 0.0055, 0.0052], [0.0353, 0.0189, 0.0147, 0.0138, 0.0084, 0.0079, 0.0079, 0.0069], [0.0065, 0.0061, 0.0061, 0.0054, 0.0048, 0.0048, 0.0045, 0.0045], [0.007, 0.0065, 0.0061, 0.0054, 0.0054, 0.0048, 0.0037, 0.0035], [0.0407, 0.0263, 0.0192, 0.0124, 0.0124, 0.0124, 0.0091, 0.008], [0.0337, 0.0316, 0.0149, 0.014, 0.0103, 0.0085, 0.008, 0.008], [0.0816, 0.0495, 0.0437, 0.0282, 0.0265, 0.0265, 0.0249, 0.0161], [0.0612, 0.054, 0.0395, 0.0328, 0.0272, 0.0199, 0.0165, 0.0165], [0.0958, 0.0482, 0.0201, 0.0177, 0.0138, 0.0122, 0.0122, 0.0101], [0.0453, 0.0242, 0.0156, 0.0079, 0.0079, 0.0069, 0.0069, 0.0069], [0.1302, 0.0789, 0.0397, 0.0329, 0.0309, 0.0309, 0.0146, 0.0107], [0.1753, 0.0535, 0.0324, 0.0223, 0.0209, 0.0185, 0.0174, 0.0119], [0.1668, 0.1383, 0.1383, 0.0449, 0.035, 0.0328, 0.0328, 0.0256], [0.6426, 0.087, 0.032, 0.0171, 0.0151, 0.0063, 0.0056, 0.0046], [0.7448, 0.0651, 0.0175, 0.0175, 0.012, 0.0057, 0.0044, 0.0044], [0.8256, 0.0411, 0.0301, 0.0207, 0.0118, 0.0056, 0.0025, 0.0022], [0.3972, 0.2126, 0.0538, 0.0538, 0.0239, 0.0239, 0.021, 0.0164], [0.2304, 0.2304, 0.0848, 0.066, 0.0547, 0.0483, 0.0332, 0.0243], [0.3427, 0.2669, 0.1113, 0.0596, 0.0526, 0.0248, 0.0193, 0.0151], [0.4929, 0.16, 0.097, 0.0519, 0.0405, 0.0278, 0.0169, 0.0149], [0.4559, 0.2765, 0.0617, 0.033, 0.0257, 0.0242, 0.0242, 0.0177], [0.5113, 0.2131, 0.0888, 0.042, 0.0255, 0.0198, 0.0073, 0.0069], [0.4913, 0.2048, 0.0753, 0.0518, 0.0216, 0.0139, 0.0131, 0.009], [0.3273, 0.1985, 0.1131, 0.0534, 0.0502, 0.0197, 0.0153, 0.0153], [0.3393, 0.2642, 0.0405, 0.0405, 0.0336, 0.0217, 0.0217, 0.0149], [0.2035, 0.1399, 0.1023, 0.0548, 0.0454, 0.0275, 0.0243, 0.0243], [0.2035, 0.1089, 0.1089, 0.0515, 0.0427, 0.0376, 0.0354, 0.0332], [0.1219, 0.1075, 0.0652, 0.0576, 0.0372, 0.0349, 0.0308, 0.0289], [0.2247, 0.1544, 0.1363, 0.0827, 0.0568, 0.0304, 0.0268, 0.0268], [0.8692, 0.0337, 0.0297, 0.0109, 0.0066, 0.0066, 0.0031, 0.0031], [0.6755, 0.0807, 0.0432, 0.0432, 0.0262, 0.0159, 0.0124, 0.0124], [0.9252, 0.0406, 0.0091, 0.0062, 0.0029, 0.0029, 0.0026, 0.002], [0.9732, 0.0139, 0.004, 0.0035, 0.0017, 0.0013, 0.0013, 0.0004], [0.9764, 0.0179, 0.004, 0.0006, 0.0005, 0.0004, 0.0001, 0.0001], [0.9829, 0.0124, 0.0031, 0.0008, 0.0002, 0.0002, 0.0001, 0.0001], [0.9863, 0.0097, 0.0022, 0.0009, 0.0003, 0.0002, 0.0001, 0.0001], [0.9943, 0.0036, 0.001, 0.0004, 0.0002, 0.0002, 0.0001, 0.0], [0.9978, 0.0013, 0.0004, 0.0001, 0.0001, 0.0001, 0.0001, 0.0], [0.9915, 0.0025, 0.0022, 0.0009, 0.0007, 0.0005, 0.0002, 0.0002], [0.9874, 0.0052, 0.0031, 0.0022, 0.0004, 0.0002, 0.0002, 0.0002]], "ranks": {"Python": [44667, 207788, 142328, 197352, 39297, 145118, 57179, 103713, 38004, 128777, 24962, 68442, 17810, 20160, 18013, 28283, 18230, 13255, 21813, 41620, 19811, 53624, 38872, 19615, 9390, 1566, 1713, 2474, 731, 456, 410, 803, 483, 54, 34, 28, 5, 6, 11, 5, 13, 21, 33, 37, 47, 51, 31, 38, 30, 44, 32, 5, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]}}, {"pos": 439, "top": [[",", " \u2013", ".", "\u2013", "<|endoftext|>", " ", "a", ";"], [",", "\u2013", ".", " \u2013", "\u2013and", " \u2013,", " \u200b", "\u200b"], ["\u2013", ",", " \u2013", ".", "\u2013and", " \u2013,", ".\u2013", ";"], ["-------------</", " ``", " \uffe5\uffe5", "\uff0d\uff0d", "erio", "----------</", "~\":\"", "ALCHEMY"], [" (@", ":@", " @", ",@", " \"@", "\uff20", "@g", " Python"], [",", " \").", " \u00a0", ":@", "ed", " Python", "-esque", ".cs"], [" \u00a0", " Python", ",", "ting", ".", " \"\"\"", ".py", "naire"], [",", " Python", ".py", "naire", "\ufffds", "ting", " Django", ".python"], [",", ".", " \u00a0", "ian", "......", " Python", "\ufffds", ".py"], [",", "-esque", ".", "ian", " Python", "-style", " \u00a0", "naire"], [",", "-esque", " Python", "ian", "\u00a0", " \u00a0", ".", "-style"], ["-esque", "ian", " Python", "/python", "naire", " PYTHON", "_python", "-style"], ["-esque", "ian", " Python", "naire", "-style", "/python", "arily", "ically"], ["-esque", "ian", "-style", " Python", "naire", "/python", "arily", " pyramid"], ["-esque", " \"", " \u00ad", "\u00ad", " ", "ian", "-style", " arguably"], ["-esque", " arguably", " \u00ad", " \"", " savvy", "ian", "ssystem", "\u60f3\u65b9\u8bbe\u6cd5"], ["-esque", "ian", "ized", " \"", "ssystem", " Python", " savvy", "-style"], ["-esque", " Python", "/python", "-python", "-style", " PYTHON", "py", "/py"], ["-esque", " Python", " PYTHON", "/python", " Django", "-python", "ized", "ian"], ["-esque", " PYTHON", " Python", "/python", "_python", "icity", "ically", "/py"], ["-esque", " Python", " \"", "<|endoftext|>", "_python", " --", " \n\n", "   \n\n"], [" ``", "-esque", " PYTHON", " Python", "/python", "_python", " \\\"", " ''"], [" ``", " Python", " ''", " PYTHON", "-esque", "_python", "/python", ".python"], [" ``", " Python", " ''", " British", " English", "-esque", " \"", " complex"], [" ``", " Python", " \n\n", "-esque", "_python", " ''", "/python", " \\\""], [" Python", "/python", " ``", "_python", " PYTHON", " python", "-python", ".python"], [" Python", " python", " ``", "/python", "-python", " PYTHON", ".python", "_python"], [" ``", " \\\"", " Python", " ''", " \n\n", " __", " --", " ,"], [" \\\"", " Python", " ``", " ...\\", " ''", " __", " \n\n", " python"], [" \\\"", " Python", " ``", " __", " ''", " python", " ...\\", " \n  \n"], [" Python", " \\\"", " ``", " python", " ''", " complex", " tools", " physics"], [" \\\"", " Python", " ...", " complex", " work", " British", " system", " ."], [" \\\"", " Python", " python", " py", " system", " complex", " British", " science"], ["/python", " Python", " python", "-python", "/py", "-esque", " bureaucracy", "_python"], ["/python", " Python", " python", "-python", "-language", "Python", "/py", " PYTHON"], ["/python", " Python", "-python", "Python", " python", "-language", "/py", " PYTHON"], [" Python", "/python", "Python", " python", "-python", "_python", ".python", " PYTHON"], [" Python", "/python", "Python", " python", "-python", "_python", "/py", " PYTHON"], [" Python", "Python", "/python", " python", "-python", "_python", " interface", "python"], [" Python", "Python", "/python", " python", "_python", "-python", "python", ".python"], [" Python", "Python", "/python", " python", "-python", "_python", ".python", "python"], [" Python", "Python", " python", "/python", " interface", "_python", "-python", " interfaces"], [" Python", "Python", " interface", " python", "/python", "-python", "_python", " interfaces"], [" Python", " interface", "Python", " interfaces", " Interface", "-python", "/python", " python"], [" Python", " interface", " interfaces", "Python", " Interface", " python", "/python", "-python"], [" Python", " interface", " interfaces", " Interface", "/python", " bridge", "-python", " python"], [" Python", " interface", "-to", " interfaces", "/python", " python", "/Linux", " <->"], ["-to", "/", " <->", "/P", "-/", "/B", " Python", "/V"], ["-to", "-vs", "/Linux", "\u2013", " <->", "/P", "-European", "\u2192"], ["-to", "-European", "/P", "-vs", "/Linux", " <->", "-API", "-/"], ["-to", "-vs", "-China", "-European", "-API", "-P", "/P", "-vers"], ["-to", " <->", "-API", "-vs", "-China", "/Linux", "-native", " \u2194"], [" <->", "-to", "/Linux", "/C", " \u2194", "-native", "/P", "-vs"], [" <->", "-to", " \u2194", "-native", "-API", "/Linux", "\u2013", "->"], [" Python", "Python", "/python", " <->", "-python", "-to", " \u2194", " Java"], ["-to", " Python", " <->", "Python", "-native", " Java", " JNI", "/python"], [" Python", "Python", "-to", " Java", " JNI", "/python", "JNI", "-python"], [" Python", " Java", "Python", "-to", " <->", " \u2194", "\u2192", " JNI"], ["-native", " \u2194", " <->", "/native", " native", "native", " Native", "Native"], [" \u2194", " <->", "-native", " \u2192", " native", "\u2192", " Native", " ->"], [" <->", "-to", "-native", " \u2194", " native", " Native", "/native", " \u2192"], ["-to", "-native", " \u2194", " <->", " native", " Native", "/native", "\ufffd"], ["-to", "-C", "/C", "-J", "-native", "-N", " <->", "-"]], "p": [[0.6048, 0.1964, 0.0928, 0.0722, 0.0076, 0.0043, 0.0041, 0.0019], [0.3456, 0.1534, 0.1271, 0.0874, 0.0388, 0.0208, 0.0092, 0.0092], [0.4701, 0.3231, 0.1189, 0.0561, 0.0098, 0.0086, 0.0059, 0.0005], [0.0039, 0.0034, 0.003, 0.0023, 0.0018, 0.0018, 0.0016, 0.0015], [0.0529, 0.0439, 0.0342, 0.0301, 0.0221, 0.0195, 0.0183, 0.0161], [0.0092, 0.0028, 0.0025, 0.0023, 0.0022, 0.0022, 0.0018, 0.0018], [0.0583, 0.0515, 0.0312, 0.0189, 0.0122, 0.0108, 0.0101, 0.0084], [0.027, 0.027, 0.0197, 0.0127, 0.0127, 0.0082, 0.0068, 0.006], [0.6489, 0.1278, 0.0077, 0.0068, 0.0053, 0.003, 0.003, 0.0028], [0.8319, 0.0036, 0.0011, 0.001, 0.001, 0.0009, 0.0008, 0.0008], [0.4849, 0.0451, 0.0291, 0.0166, 0.0121, 0.0114, 0.0114, 0.0107], [0.1018, 0.0188, 0.0188, 0.0138, 0.0114, 0.0074, 0.0065, 0.0057], [0.1239, 0.0229, 0.0115, 0.0108, 0.007, 0.0058, 0.0054, 0.0042], [0.1814, 0.0075, 0.0066, 0.0045, 0.0033, 0.0023, 0.002, 0.0018], [0.0469, 0.0222, 0.0162, 0.0072, 0.0072, 0.0053, 0.0041, 0.0036], [0.0632, 0.0017, 0.0013, 0.0013, 0.0012, 0.0012, 0.0011, 0.0011], [0.3729, 0.0032, 0.0024, 0.002, 0.002, 0.0017, 0.0016, 0.0016], [0.3046, 0.0032, 0.0026, 0.0015, 0.0013, 0.0013, 0.0012, 0.001], [0.3148, 0.0048, 0.0027, 0.0024, 0.0023, 0.0017, 0.0017, 0.0015], [0.0985, 0.0036, 0.0032, 0.003, 0.0023, 0.0014, 0.0014, 0.0013], [0.0177, 0.0045, 0.0042, 0.0027, 0.0026, 0.0024, 0.002, 0.0018], [0.0282, 0.0097, 0.0086, 0.0076, 0.0056, 0.0028, 0.0025, 0.0025], [0.1819, 0.0279, 0.0159, 0.0149, 0.0085, 0.0048, 0.0048, 0.004], [0.0517, 0.0148, 0.0123, 0.0048, 0.0042, 0.0029, 0.0029, 0.0024], [0.0824, 0.0566, 0.0303, 0.0208, 0.0196, 0.0184, 0.0143, 0.0119], [0.4408, 0.0924, 0.0527, 0.041, 0.0385, 0.0249, 0.0249, 0.0249], [0.6247, 0.0292, 0.0274, 0.0189, 0.0156, 0.013, 0.0101, 0.0095], [0.1621, 0.0815, 0.0815, 0.0676, 0.0436, 0.041, 0.0219, 0.0117], [0.2692, 0.197, 0.0725, 0.0267, 0.025, 0.0195, 0.0183, 0.0172], [0.4736, 0.1125, 0.0602, 0.0195, 0.0152, 0.0143, 0.0126, 0.0087], [0.2427, 0.2427, 0.0509, 0.0396, 0.0094, 0.0083, 0.0073, 0.0069], [0.1329, 0.0669, 0.0231, 0.0169, 0.0159, 0.0159, 0.014, 0.0132], [0.1474, 0.084, 0.0212, 0.0146, 0.0129, 0.01, 0.0083, 0.0065], [0.2276, 0.1218, 0.0477, 0.0272, 0.0137, 0.0078, 0.0069, 0.005], [0.3192, 0.1174, 0.059, 0.0406, 0.0132, 0.0132, 0.0124, 0.008], [0.348, 0.2111, 0.039, 0.0367, 0.0304, 0.0196, 0.0105, 0.0064], [0.5111, 0.2735, 0.1006, 0.037, 0.0254, 0.006, 0.0057, 0.0047], [0.7077, 0.123, 0.0658, 0.0375, 0.0122, 0.0045, 0.0042, 0.0042], [0.8016, 0.0512, 0.0512, 0.0452, 0.0074, 0.0051, 0.0037, 0.0029], [0.8106, 0.0854, 0.0457, 0.0245, 0.0102, 0.009, 0.0027, 0.0024], [0.8417, 0.0887, 0.0288, 0.0175, 0.0073, 0.0064, 0.0021, 0.0018], [0.8528, 0.07, 0.0177, 0.0156, 0.0122, 0.0095, 0.0084, 0.0027], [0.7888, 0.0942, 0.0306, 0.0186, 0.0144, 0.0113, 0.0113, 0.0099], [0.6388, 0.1425, 0.0594, 0.0463, 0.0248, 0.0133, 0.0117, 0.0103], [0.5135, 0.2426, 0.0892, 0.0226, 0.0199, 0.0137, 0.0107, 0.0065], [0.4617, 0.2181, 0.0708, 0.0191, 0.0168, 0.0116, 0.0109, 0.0102], [0.4683, 0.1184, 0.0559, 0.0409, 0.0206, 0.0133, 0.0125, 0.011], [0.5008, 0.0528, 0.0466, 0.0466, 0.032, 0.0182, 0.0182, 0.0171], [0.6767, 0.0556, 0.0262, 0.0232, 0.0159, 0.0124, 0.0109, 0.0085], [0.3682, 0.064, 0.064, 0.044, 0.0388, 0.0388, 0.0267, 0.0235], [0.5105, 0.1878, 0.037, 0.0326, 0.0288, 0.0198, 0.0175, 0.0154], [0.5174, 0.1308, 0.0794, 0.07, 0.0375, 0.0292, 0.0258, 0.0138], [0.4253, 0.1075, 0.0508, 0.0508, 0.0396, 0.0396, 0.0272, 0.0165], [0.7763, 0.0818, 0.0722, 0.0161, 0.0067, 0.0052, 0.0041, 0.0041], [0.6042, 0.1348, 0.105, 0.0562, 0.0341, 0.0125, 0.0086, 0.0076], [0.5718, 0.1446, 0.0994, 0.0285, 0.0251, 0.0251, 0.0134, 0.0134], [0.6618, 0.1015, 0.0616, 0.033, 0.0257, 0.0257, 0.0137, 0.0121], [0.3754, 0.0949, 0.0739, 0.0652, 0.0652, 0.0576, 0.0576, 0.0396], [0.3446, 0.2683, 0.1436, 0.0599, 0.0363, 0.0283, 0.0283, 0.022], [0.5641, 0.1616, 0.0763, 0.0525, 0.0281, 0.0193, 0.017, 0.015], [0.2153, 0.2153, 0.1677, 0.1677, 0.1017, 0.0424, 0.0291, 0.0107], [0.3862, 0.2655, 0.0977, 0.0862, 0.0523, 0.0359, 0.017, 0.0085], [0.6472, 0.1125, 0.0773, 0.0469, 0.0172, 0.0111, 0.0111, 0.0077]], "ranks": {"Python": [845, 1226, 1321, 91, 8, 5, 2, 1, 6, 4, 3, 2, 3, 4, 12, 10, 6, 2, 2, 3, 2, 4, 2, 2, 2, 1, 1, 2, 2, 2, 1, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 6, 28, 50, 65, 21, 18, 21, 1, 2, 1, 1, 9, 19, 26, 85, 179]}}, {"pos": 440, "top": [[" \u2013", "\u2013", "\u2013and", " \u2013,", " |\u2013", "<|endoftext|>", ".\u2013", " *\u2013"], [" \u2013", "\u2013and", "\u2013", " \u2013,", " *\u2013", " \u2013**", "\u6700\u65b0\u53d1\u5e03", "\u2013\u2013"], [" \u2013", "\u2013", "\u2013and", " \u2013,", " *\u2013", ".\u2013", "\u2013\u2013", " |\u2013"], ["\\\":\\\"", "\u6700\u65b0\u53d1\u5e03", "``", "}\\\"", ")\",\"", "':''", "*\u201c.", " *\u2013"], [":@", " |--", "}\\\"", " *\u2013", " --", "@\\", "\\\":\\\"", "@\""], [" *\u2013", "\u6700\u65b0\u53d1\u5e03", ":@", " |--", "}\\\"", "!--", " \"--", ")\",\""], ["\u6700\u65b0\u53d1\u5e03", " --", " |--", "\ufffd\ufffd", " *\u2013", "``", " \"--", "@\""], ["\u6700\u65b0\u53d1\u5e03", " *\u2013", " |--", "}\\\"", "@\"", "\\\\\"", "\\\\\\", "\ufffd\ufffd"], ["\u6700\u65b0\u53d1\u5e03", " *\u2013", " |--", "}\\\"", "@\"", "\\\\\"", " [--", "-&"], ["\u2013and", "--", " *\u2013", "\u6700\u65b0\u53d1\u5e03", ")--", "!--", "-&", "--)"], [" --", "--", "-&", "\u6700\u65b0\u53d1\u5e03", ")--", "\\\\\\", "\\\\\"", "@\\"], [" --", "\u6700\u65b0\u53d1\u5e03", ")--", "--)", " \"--", "//--", " |--", " -->"], [" --", "//--", "\u6700\u65b0\u53d1\u5e03", "--", "--)", " \u0640\u0640", ")--", " \"--"], [" --", "--", "-&", ")--", "\u2013and", "//--", "--)", " \"--"], [" --", "--", "-&", "\u2013and", ")--", "\"--", " \ufffd", " \u0640\u0640"], [" --", "--", "-&", "\u2013and", " \u0640\u0640", ")--", " \ufffd", ">--"], [" --", "--", "-&", "\u2013and", "\u2013", " \u2013", "e", " *\u2013"], [" --", "-&", "\u2013and", " *\u2013", " \u0640\u0640", "--", "--)", "\u6700\u65b0\u53d1\u5e03"], [" --", "-&", "--)", " *\u2013", "//--", " \u0640\u0640", "``", ">--"], [" --", "-&", "//--", "--", " *\u2013", "--)", " \u0640\u0640", "\u2013and"], [" --", "-&", "--", "--)", "\"&", ")--", "\ufffd\ufffd", " \ufffd"], [" ``", " --", "``", "//--", "--)", " //--", " *\u2013", "}\\\""], [" ``", " --", "``", "//--", "--)", " ``(", " //--", "-&"], [" --", " ``", "``", " `\\", "--", " \"--", "-&", " \ufffd"], [" --", " ``", "``", "--", "-&", " `\\", "--)", "`\\"], [" --", " ``", "``", "--)", " `\\", " *\\", " |--", " \"--"], [" --", " ``", "``", "--)", " `\\", " '--", "@\\", " \"--"], [" --", " ``", "--", " `\\", "\n\n", " @", " \n\n", " {{--<"], [" --", " ``", " *\\", " \\\"", "--)", " `\\", "``", "\\\"\\"], [" --", " ``", " \\\"", " *\\", " \u0640\u0640", " ____", " `\\", "``"], [" --", " ``", " \\\"", " *\\", " -->", " -*", " -**", " tech"], [" --", " \\\"", " tech", " technology", " ``", " labor", " @", " -"], [" --", " \\\"", " tech", " labor", " *\\", " technology", " *\u2013", " -*"], [" --", " tech", " *\u2013", " \u0640\u0640", " technology", " hardware", " interface", " infrastructure"], [" --", " tech", " *\u2013", " *\\", " \u0640\u0640", " -*", " -**", " labor"], [" *\u2013", " *\\", "\u2011", " -*", " tech", " hardware", " \u2013**", " -**"], [" Python", "Python", " *\\", " *\u2013", " tech", " hardware", "engine", " -*"], [" Python", " interface", "Python", " hardware", "\u2011", " tech", "ftware", " physics"], [" Python", " hardware", " interface", "\u2011", " tech", " physics", "Python", " software"], [" interface", " Python", " hardware", "\u2011", "Python", " GPU", " APIs", " physics"], [" interface", " Python", " hardware", " Interface", "-native", " tech", " APIs", " GPU"], [" interface", " hardware", " Interface", " interfaces", " APIs", " GPU", " software", "-native"], [" interface", " interfaces", " Interface", " hardware", " APIs", "-interface", "interface", " interf"], [" interface", " interfaces", " Interface", "interface", "\u63a5\u53e3", "-interface", " hardware", " APIs"], [" interface", " interfaces", " Interface", " APIs", "interface", "-interface", " hardware", " interf"], [" interface", " interfaces", " Interface", "-interface", " APIs", " hardware", "/interface", "interface"], [" interface", " interfaces", " Interface", "-interface", " hardware", " APIs", "-API", "-native"], [" interface", " Interface", " interfaces", "-API", "-interface", " hardware", " APIs", "-native"], ["-API", "-interface", " interface", "-backend", "-native", " interfaces", " Interface", " APIs"], ["-API", "-backend", "-native", "-interface", "-European", "-Russian", " interface", " Interface"], ["-API", "-backend", "-native", "-interface", "-Russian", "-European", "-China", "-to"], ["-API", "-native", "-backend", "-interface", " APIs", "-java", "hardware", " hardware"], ["-API", "-native", "-backend", " hardware", "hardware", " OpenGL", " Python", " GPU"], ["-native", "-API", "-backend", " hardware", "hardware", " OpenGL", "-python", " Hardware"], ["-API", " Python", " OpenGL", "-python", "-java", " Java", "-backend", "-native"], [" OpenGL", " GPU", " JNI", " Python", " Java", "-java", "-native", "-API"], [" OpenGL", " GPU", " JNI", " Python", " Java", "-native", " CUDA", "JNI"], [" GPU", " OpenGL", " JNI", " Python", " Java", " CUDA", " shader", "-native"], [" native", "-native", " Native", "native", "Native", "/native", "_native", " OpenGL"], [" native", "-native", " Native", "native", "Native", "/native", " OpenGL", "_native"], [" native", "-native", " Native", "native", "Native", "/native", " OpenGL", "_native"], ["-native", " native", " Native", "native", "/native", "Native", "-C", " OpenGL"], ["-C", "-N", " C", "-native", "-J", "-G", "-", " Native"]], "p": [[0.9726, 0.0259, 0.0009, 0.0001, 0.0001, 0.0001, 0.0, 0.0], [0.9488, 0.0153, 0.0119, 0.0064, 0.005, 0.0027, 0.0027, 0.0016], [0.6406, 0.208, 0.1261, 0.0081, 0.0063, 0.0023, 0.002, 0.002], [0.0681, 0.064, 0.0322, 0.0251, 0.0208, 0.0195, 0.0152, 0.0143], [0.083, 0.0733, 0.0571, 0.0504, 0.0504, 0.0444, 0.0417, 0.0325], [0.1646, 0.0828, 0.0391, 0.0269, 0.0209, 0.0197, 0.0163, 0.0153], [0.1029, 0.0802, 0.0802, 0.0665, 0.0518, 0.0356, 0.023, 0.0216], [0.1773, 0.0837, 0.0613, 0.0372, 0.0255, 0.0212, 0.0199, 0.0176], [0.1413, 0.0912, 0.0589, 0.0405, 0.038, 0.0315, 0.0191, 0.018], [0.1888, 0.1219, 0.0396, 0.0272, 0.0256, 0.024, 0.024, 0.024], [0.3739, 0.2912, 0.0307, 0.0254, 0.0175, 0.0164, 0.0145, 0.0136], [0.4091, 0.0405, 0.0246, 0.0217, 0.0204, 0.0169, 0.0159, 0.0159], [0.3448, 0.0387, 0.0387, 0.0266, 0.025, 0.0183, 0.0161, 0.0126], [0.4636, 0.1602, 0.0381, 0.0217, 0.0204, 0.0169, 0.0132, 0.0116], [0.815, 0.1174, 0.0116, 0.004, 0.0038, 0.0022, 0.0018, 0.0013], [0.8235, 0.0526, 0.0171, 0.0063, 0.0034, 0.0023, 0.0019, 0.0015], [0.5581, 0.1599, 0.0911, 0.0296, 0.0131, 0.0051, 0.0045, 0.0035], [0.1115, 0.072, 0.0362, 0.0319, 0.0219, 0.0206, 0.0151, 0.0125], [0.1774, 0.0892, 0.0176, 0.0165, 0.0165, 0.0137, 0.0094, 0.0088], [0.3885, 0.0923, 0.0125, 0.0125, 0.0104, 0.0091, 0.0076, 0.0063], [0.5365, 0.0389, 0.0343, 0.0077, 0.0072, 0.0053, 0.0044, 0.0041], [0.0698, 0.0479, 0.0351, 0.0137, 0.0101, 0.0057, 0.0054, 0.0047], [0.3323, 0.2284, 0.084, 0.0061, 0.005, 0.0033, 0.0029, 0.0029], [0.4968, 0.3415, 0.0263, 0.003, 0.0022, 0.002, 0.0018, 0.0018], [0.6668, 0.062, 0.0332, 0.013, 0.0079, 0.007, 0.0054, 0.0033], [0.1961, 0.0926, 0.0721, 0.0171, 0.0133, 0.0118, 0.0081, 0.0056], [0.4652, 0.0916, 0.0279, 0.0132, 0.0066, 0.004, 0.0036, 0.0033], [0.9281, 0.0298, 0.0049, 0.0019, 0.0019, 0.0008, 0.0007, 0.0006], [0.7832, 0.0285, 0.0068, 0.0047, 0.0044, 0.0039, 0.003, 0.0025], [0.8409, 0.0505, 0.006, 0.0034, 0.0022, 0.0018, 0.0017, 0.0017], [0.7347, 0.047, 0.0184, 0.0092, 0.0039, 0.0036, 0.0034, 0.003], [0.6256, 0.0547, 0.0061, 0.0058, 0.0054, 0.0051, 0.0048, 0.0037], [0.5637, 0.0248, 0.015, 0.0055, 0.0046, 0.0046, 0.0038, 0.0034], [0.0512, 0.0352, 0.0352, 0.0122, 0.0114, 0.0089, 0.0065, 0.0061], [0.0265, 0.0249, 0.0249, 0.0133, 0.0118, 0.0086, 0.0076, 0.0056], [0.1541, 0.0323, 0.0162, 0.0135, 0.0082, 0.0082, 0.0077, 0.0068], [0.0401, 0.0259, 0.0229, 0.0229, 0.0148, 0.0115, 0.0115, 0.0101], [0.0552, 0.023, 0.0216, 0.0203, 0.0203, 0.0191, 0.0102, 0.0102], [0.0532, 0.05, 0.0415, 0.0366, 0.0236, 0.0135, 0.0126, 0.0119], [0.0513, 0.0513, 0.0453, 0.0201, 0.0201, 0.0167, 0.0157, 0.0138], [0.1224, 0.051, 0.0397, 0.0309, 0.0291, 0.0226, 0.0226, 0.0176], [0.42, 0.073, 0.0534, 0.0471, 0.0209, 0.0119, 0.0119, 0.0119], [0.6525, 0.0883, 0.0444, 0.021, 0.0163, 0.0112, 0.0105, 0.0072], [0.6045, 0.119, 0.0637, 0.0207, 0.0125, 0.0118, 0.0104, 0.0104], [0.6827, 0.1186, 0.0385, 0.0125, 0.0125, 0.0104, 0.0081, 0.0041], [0.6857, 0.0723, 0.0438, 0.0172, 0.0126, 0.0092, 0.0067, 0.0063], [0.5455, 0.0612, 0.0507, 0.0212, 0.0175, 0.0155, 0.01, 0.0073], [0.3268, 0.0568, 0.0471, 0.0344, 0.0286, 0.0268, 0.0237, 0.0119], [0.2648, 0.1037, 0.0915, 0.0406, 0.0358, 0.0231, 0.0231, 0.0204], [0.5884, 0.0547, 0.0483, 0.0376, 0.0167, 0.0138, 0.0138, 0.0079], [0.7109, 0.0661, 0.0584, 0.0401, 0.0089, 0.0062, 0.0048, 0.0031], [0.7315, 0.068, 0.053, 0.0118, 0.0081, 0.0063, 0.0063, 0.0056], [0.3614, 0.1707, 0.1173, 0.0297, 0.0262, 0.0204, 0.0192, 0.014], [0.3078, 0.1648, 0.1454, 0.0368, 0.0237, 0.0135, 0.0135, 0.0112], [0.2586, 0.1569, 0.1078, 0.0577, 0.0449, 0.0449, 0.0397, 0.035], [0.1736, 0.1352, 0.1352, 0.1193, 0.1193, 0.0497, 0.0497, 0.0387], [0.3021, 0.1832, 0.1832, 0.1617, 0.0318, 0.0219, 0.015, 0.0133], [0.4403, 0.3886, 0.0526, 0.0248, 0.0133, 0.0117, 0.0104, 0.0091], [0.4639, 0.3613, 0.0628, 0.0628, 0.0297, 0.0085, 0.0058, 0.0021], [0.5142, 0.3534, 0.0614, 0.0329, 0.0176, 0.0073, 0.0057, 0.0027], [0.6602, 0.2429, 0.0696, 0.0094, 0.0044, 0.0035, 0.0027, 0.0016], [0.4641, 0.3615, 0.1173, 0.0124, 0.0085, 0.0075, 0.0075, 0.0052], [0.8054, 0.1586, 0.007, 0.0061, 0.0054, 0.0019, 0.0018, 0.0011]], "ranks": {"Python": [56614, 208838, 172980, 225784, 186497, 212319, 69122, 75476, 136396, 88132, 27978, 84492, 77135, 82757, 52214, 85009, 51521, 55344, 60775, 84714, 22033, 89682, 43956, 20859, 5891, 6803, 3611, 1097, 1048, 653, 452, 491, 534, 370, 322, 93, 1, 1, 1, 1, 2, 16, 18, 28, 36, 32, 40, 68, 278, 428, 770, 20, 7, 15, 2, 4, 4, 4, 21, 35, 54, 100, 176]}}, {"pos": 441, "top": [[" \u2013", "en", "u", ".", "i", "\u2013", "\u0647", " [\u2026]"], [" \u2013", " \u2013**", "\u0647", "en", "(\\\"", "\u2013\u2013", "  \n", "u"], [" \u2013", "\u2013", "en", " \u2013**", ".\u2013", "**\u2013", "\u2013and", "u"], ["\u0647", " Strec", "en", "\\\":\\\"", " \u2013**", " Geile", " milfs", " Shemale"], ["en", "\u0647", "\u30f3", "i", "u", " \u2013**", "es", " \u2013"], ["en", "\u0647", "i", "u", "\u30f3", " \u2013**", "(ci", "es"], ["en", "\u0647", "i", "u", "es", "er", "\u6709", "\u2018"], ["en", "\u0647", "i", "u", "es", "er", "\u2013\u2013", "\u00ad"], ["en", "u", "\u0647", "i", "es", "er", "y", "\u00ad"], ["en", "\u0647", "i", "u", "er", "es", "-C", "\u00ad"], ["en", "\u0647", "i", "u", "er", "es", "...\\", "-"], ["en", "\u0647", "i", "u", "er", "ic", "ive", "es"], ["en", "u", "i", "er", "\u0647", "es", "ive", "y"], ["en", "i", "u", "\u0647", "an", "es", "-C", "ic"], ["i", "en", "u", "-", "an", "o", "--", "y"], ["i", "en", "u", "es", "an", "-", "o", "\u0647"], ["i", "en", "u", "es", "o", "an", "-", "os"], ["en", "i", "u", "es", "\u0647", "-C", "os", "ic"], ["i", "en", "u", "\u0647", "es", "an", "o", "ic"], ["i", "en", "u", "\u0647", "es", "--", "an", " --"], ["i", "u", "en", "an", "--", "@", "at", "<|endoftext|>"], ["en", "\u0647", "raries", " \\\"", " ``", "es", "enstein", "(ci"], [" ``", "en", "\u0647", " ''", " \\\"", " --", "u", "es"], [" ``", " --", " ''", "en", " ,", " \\\"", "i", " {{--<"], [" --", " ``", "--", "\n\n", "en", "i", " ''", "u"], [" ``", " --", " Chinese", " Unix", "-language", " technology", " \\\"", "-engine"], [" ``", "-language", " Unix", " --", " technology", "-python", "-engine", "<unk"], [" --", " ``", "\n\n", " ''", " ,", "--", " _", " ..."], [" --", " technology", " ``", "-language", "-engine", " Chinese", "engine", " technologies"], [" technology", " ...", " technologies", "-engine", " Chinese", " machinery", " Unix", "engine"], [" technology", " .", " equipment", " technologies", " ...", " work", " systems", " factories"], [" ...", " .", " ,", " work", "...", " technology", " -", " and"], [" .", " technology", " \\\"", "/", " /", " ,", " equipment", " -"], [" technology", "/", " technologies", "-engine", "engine", "/engine", " machinery", " engineers"], ["/", "engine", "/engine", "\uff0f", "/C", "\u2011", "-engine", " technology"], [" [...]", "/", "2", "3", "\uff08", " [\u2026]", "[...]", "\u2026\u2026"], [" [...]", "/", "Python", "engine", "[...]", "/C", "/engine", "-python"], [" [...]", "/", "Python", "[...]", "engine", "/C", "@", " [..."], [" [...]", "/", "Python", "\u2011", "\uff0f", "engine", " [...", " [\u2026]"], ["Python", "\u4e2d\u56fd", "-python", "Chinese", " Python", "\uff0f", "engine", "/"], ["Python", "-python", " Python", "Chinese", "/", "\u4e2d\u56fd", " Chinese", "\uff0f"], [" interface", " interfaces", "Python", "\u63a5\u53e3", " Interface", "/engine", " hardware", " Python"], [" interfaces", " interface", "\u63a5\u53e3", "Python", "-interface", " Interface", "interface", " hardware"], [" interfaces", " interface", "\u63a5\u53e3", " Interface", "interface", "Python", "-interface", " Interfaces"], [" interfaces", " interface", " Interface", "\u63a5\u53e3", "interface", "-interface", " via", "Interface"], [" interface", " interfaces", " via", "/", " Interface", " bridge", "-interface", "/C"], [" interface", " interfaces", "/", "/C", "/Linux", " Interface", " via", "-interface"], ["/", " interface", " interfaces", "/C", "/Linux", "/A", " Interface", "/E"], [" interface", "/", "/C", " interfaces", "/Linux", "/A", "-interface", "/B"], [" interface", "/C", " interfaces", "-interface", "/", "/B", "/Linux", "/F"], [" interface", "-interface", "/C", " interfaces", "/Linux", "-transfer", "/K", " Interface"], [" interface", " interfaces", "-interface", "/C", " Interface", " bridge", "interface", "/Linux"], [" interface", "/C", " interfaces", "-interface", "/Linux", "/API", " bridge", "/python"], [" interface", " interfaces", "/C", "-interface", " boundary", " bridge", "interface", " Interface"], [" interface", " boundary", " interfaces", " boundaries", "-API", "/C", "-interface", "\u8fb9\u754c"], [" interface", " boundary", " interfaces", " bridge", " bindings", "-API", "/API", " JNI"], [" boundary", "\u8fb9\u754c", " boundaries", "boundary", "Boundary", " Boundary", "\u754c\u9650", "\u754c\u7ebf"], [" boundary", "\u8fb9\u754c", " boundaries", "boundary", " Boundary", "Boundary", "\u754c\u9650", "_boundary"], [" boundary", "\u8fb9\u754c", " boundaries", " Boundary", "boundary", "Boundary", "\u754c\u9650", "/C"], [" boundary", "\u8fb9\u754c", " boundaries", " Boundary", "boundary", "Boundary", "\u8fb9\u5883", " border"], [" boundary", " boundaries", " Boundary", "\u8fb9\u754c", "-API", "boundary", "/C", " API"], [" boundary", "-API", "/C", " Boundary", "\u8fb9\u754c", "++", " ABI", "boundary"], [" boundary", "-API", "/C", "-C", "/", " ABI", "-", "++"]], "p": [[0.9862, 0.0075, 0.0012, 0.001, 0.0008, 0.0005, 0.0005, 0.0002], [0.9245, 0.0297, 0.0132, 0.0103, 0.0017, 0.0016, 0.0014, 0.0012], [0.9854, 0.0036, 0.0031, 0.0022, 0.0022, 0.0009, 0.0008, 0.0003], [0.139, 0.0351, 0.0242, 0.02, 0.0156, 0.0138, 0.0121, 0.0078], [0.725, 0.2354, 0.0034, 0.0032, 0.0032, 0.0022, 0.0022, 0.0009], [0.691, 0.198, 0.0153, 0.0112, 0.0039, 0.0032, 0.0027, 0.0027], [0.8713, 0.0715, 0.0383, 0.011, 0.0033, 0.0005, 0.0002, 0.0002], [0.8416, 0.0691, 0.0419, 0.0326, 0.0015, 0.0006, 0.0005, 0.0005], [0.8357, 0.0686, 0.0416, 0.0252, 0.0017, 0.0014, 0.0008, 0.0007], [0.8781, 0.0386, 0.0194, 0.0125, 0.0046, 0.0032, 0.0011, 0.001], [0.7685, 0.081, 0.0557, 0.0263, 0.0097, 0.0071, 0.0038, 0.0022], [0.8241, 0.032, 0.0161, 0.0151, 0.0118, 0.0052, 0.0046, 0.003], [0.8494, 0.0226, 0.02, 0.0176, 0.0107, 0.0065, 0.0045, 0.0029], [0.7426, 0.0944, 0.0505, 0.0088, 0.0073, 0.0068, 0.0053, 0.0044], [0.5169, 0.1786, 0.0512, 0.0374, 0.0257, 0.0147, 0.0089, 0.0069], [0.3626, 0.2066, 0.076, 0.0298, 0.0232, 0.0192, 0.0124, 0.0103], [0.3853, 0.3, 0.0808, 0.0337, 0.0231, 0.0169, 0.0109, 0.0062], [0.2428, 0.1221, 0.1147, 0.0226, 0.0199, 0.0114, 0.0088, 0.0073], [0.2438, 0.229, 0.1389, 0.0579, 0.0241, 0.0083, 0.0057, 0.0037], [0.1939, 0.1607, 0.0975, 0.0232, 0.0109, 0.0097, 0.0097, 0.0091], [0.1865, 0.0881, 0.0881, 0.0269, 0.0197, 0.0163, 0.0105, 0.0087], [0.037, 0.0224, 0.0068, 0.005, 0.0044, 0.0039, 0.0037, 0.0032], [0.0704, 0.0427, 0.0294, 0.0243, 0.0215, 0.0178, 0.009, 0.0079], [0.1581, 0.0582, 0.0311, 0.0157, 0.0054, 0.0054, 0.0048, 0.0045], [0.1049, 0.0411, 0.0411, 0.0206, 0.0171, 0.0151, 0.0118, 0.0086], [0.1179, 0.0232, 0.015, 0.0132, 0.0103, 0.0097, 0.0085, 0.008], [0.0597, 0.032, 0.0206, 0.0125, 0.011, 0.0104, 0.0097, 0.0071], [0.394, 0.1129, 0.0285, 0.0237, 0.0163, 0.0127, 0.0119, 0.0112], [0.0299, 0.0219, 0.0181, 0.0125, 0.0117, 0.0117, 0.011, 0.0091], [0.0497, 0.025, 0.0207, 0.0086, 0.0086, 0.0081, 0.0076, 0.0072], [0.0581, 0.0353, 0.0156, 0.0147, 0.0138, 0.013, 0.0122, 0.0074], [0.1443, 0.1055, 0.0531, 0.0134, 0.0134, 0.0134, 0.0134, 0.0118], [0.0637, 0.0386, 0.0265, 0.0234, 0.022, 0.0161, 0.0111, 0.0104], [0.0565, 0.0499, 0.0388, 0.0365, 0.0302, 0.0236, 0.0183, 0.0134], [0.2147, 0.0543, 0.0329, 0.0213, 0.0188, 0.0156, 0.0156, 0.0114], [0.1677, 0.1153, 0.0617, 0.0374, 0.0291, 0.0274, 0.0257, 0.0213], [0.1847, 0.1531, 0.1053, 0.0302, 0.0283, 0.0207, 0.0195, 0.0195], [0.2779, 0.1088, 0.0748, 0.0228, 0.0201, 0.0157, 0.0147, 0.0122], [0.3441, 0.0636, 0.0562, 0.0466, 0.0182, 0.0171, 0.0118, 0.0104], [0.2275, 0.0349, 0.0328, 0.0255, 0.024, 0.0225, 0.0212, 0.0175], [0.2994, 0.0554, 0.0405, 0.0278, 0.0262, 0.0262, 0.0217, 0.0217], [0.1876, 0.1876, 0.0572, 0.0369, 0.0224, 0.021, 0.021, 0.0164], [0.3527, 0.2747, 0.0349, 0.0199, 0.0176, 0.0176, 0.0128, 0.0094], [0.3654, 0.2673, 0.0436, 0.0182, 0.0171, 0.0133, 0.0117, 0.0067], [0.4283, 0.378, 0.0101, 0.0084, 0.0078, 0.0065, 0.0057, 0.0039], [0.5721, 0.2385, 0.0112, 0.0105, 0.0072, 0.0056, 0.0056, 0.0049], [0.4897, 0.1802, 0.0799, 0.0157, 0.0157, 0.0079, 0.0074, 0.0062], [0.4511, 0.2415, 0.0692, 0.0506, 0.0069, 0.006, 0.0047, 0.0044], [0.3169, 0.1696, 0.1497, 0.1029, 0.019, 0.0139, 0.0115, 0.0108], [0.4705, 0.1731, 0.1348, 0.0386, 0.0151, 0.0111, 0.0098, 0.0098], [0.3087, 0.1872, 0.1872, 0.0608, 0.0127, 0.0077, 0.0073, 0.0073], [0.6244, 0.1085, 0.0658, 0.0399, 0.0147, 0.0101, 0.0095, 0.0089], [0.2599, 0.1391, 0.1083, 0.033, 0.033, 0.0156, 0.0147, 0.0138], [0.5308, 0.2507, 0.0264, 0.0233, 0.0141, 0.0141, 0.0086, 0.0076], [0.4074, 0.28, 0.1698, 0.0139, 0.0139, 0.0109, 0.0096, 0.0085], [0.3148, 0.2163, 0.1312, 0.0376, 0.0332, 0.0258, 0.0157, 0.0138], [0.9087, 0.0352, 0.0274, 0.0114, 0.0079, 0.0069, 0.0008, 0.0004], [0.9154, 0.0402, 0.019, 0.009, 0.009, 0.0054, 0.0006, 0.0002], [0.9366, 0.0283, 0.0194, 0.0072, 0.0043, 0.0026, 0.0003, 0.0002], [0.9732, 0.0095, 0.0084, 0.0058, 0.0017, 0.0009, 0.0001, 0.0001], [0.9816, 0.0052, 0.004, 0.004, 0.0007, 0.0005, 0.0004, 0.0004], [0.9441, 0.0173, 0.0093, 0.005, 0.0023, 0.0022, 0.0018, 0.0015], [0.499, 0.2357, 0.143, 0.0125, 0.0086, 0.0076, 0.0067, 0.0063]], "ranks": {"Python": [14823, 168376, 113456, 174323, 78151, 152147, 49123, 20512, 15782, 20045, 3741, 16769, 10083, 5881, 12947, 8576, 9971, 2969, 2540, 5092, 423, 800, 268, 189, 65, 13, 13, 31, 18, 30, 67, 411, 173, 80, 18, 23, 3, 3, 3, 1, 1, 3, 4, 6, 26, 34, 31, 85, 279, 936, 1164, 381, 100, 101, 76, 31, 26, 24, 49, 77, 54, 114, 81]}}, {"pos": 442, "top": [[",", ".", " \u2013", "<|endoftext|>", "\u2013", ";", "\u00a0", " "], ["  \r\n", "\u2013", " \u2013", "\u2013and", ",", "\u064b", "   \r\n", ";"], ["\u2013", ",", ".", "\u2013and", " \u2013", ".\u2013", ";", " \u2013,"], ["lander", "_ASC", "rowse", "unnan", "\uff0d\uff0d", "zlich", " cittadin", "\uff3f\uff3f"], [" \uff0c", " \u2018", "  ", " ", " ->", " transformative", " cluster", " \n\n\n\n"], [",", "  ", "\uff0c", " \uff0c", " \r\n", "\u00a0", "\uff1b", " \n"], ["<|endoftext|>", "  ", " \u2018", "^{", " requisite", " ", " _", " \r\n"], ["  \r\n", " \r\n", " requisite", " _", "   \r\n", "  ", "^{", " swiftly"], [" \r\n", " \n", "  ", "   \n", "\u064b", " \u2018", ",", "[@"], [" requisite", "\\-", " swiftly", "\u6545\u800c", ",", " \r\n", "  \r\n", " uniquely"], [",", " _", "\\-", " requisite", " ", " swiftly", "\\.", "\u2013"], [" _", " requisite", " transformative", " swiftly", " \r\n", " uniquely", " encompass", "  \r\n"], [" _", " requisite", " swiftly", " encompass", " beyond", " ultimately", " uniquely", " transformative"], [" requisite", " swiftly", " ", "<|endoftext|>", ",", " ostensibly", " \u2013", " beyond"], ["<|endoftext|>", " ", " \u2014", " requisite", "\u2014", " \u2013", " swiftly", " ostensibly"], [" requisite", " \u2014", " ostensibly", " swiftly", " --", "<|endoftext|>", " ultimately", " myriad"], ["<|endoftext|>", ",", " requisite", " swiftly", " ostensibly", " \u2013", " ", " ultimately"], [" swiftly", " ostensibly", " ultimately", " \u2014", " requisite", " beyond", "<|endoftext|>", " \u2013"], [" swiftly", " ultimately", " ostensibly", " arguably", " beyond", " \u2014", " requisite", " myriad"], [" swiftly", " \u2014", " ultimately", " ostensibly", " --", " myriad", " largely", " beyond"], ["<|endoftext|>", " swiftly", " \u2014", " ultimately", " ostensibly", " \n\n", " largely", " --"], [" ultimately", " beyond", " swiftly", " uniquely", " largely", " arguably", " increasingly", " within"], [" ultimately", " beyond", " swiftly", " --", " largely", " ostensibly", " much", " merely"], [" ultimately", " --", " much", " beyond", " swiftly", " largely", " ,", " merely"], [" --", " \n\n", " \u2014", " ultimately", " swiftly", " much", " ostensibly", " beyond"], [" --", " **", " _", " ultimately", " beyond", " ---", " __", " \u2014"], [" --", " _", " ultimately", " \u2014", " beyond", " swiftly", " ,", " merely"], [" \n\n", " --", " _", " ,", "<|endoftext|>", " ultimately", " \u2014", " much"], [" ,", " ultimately", " beyond", " --", " _", " \n\n", " much", " \u2014"], [" \u2014", " ,", " beyond", " for", " ultimately", " **", " --", " through"], [" .", " for", " beyond", " ,", " ultimately", " over", " at", " much"], [" .", " for", " ,", " at", " over", " in", " \u2014", " much"], [" even", " heavily", " much", " .", " for", " over", " ultimately", " beyond"], [" heavily", " \u2014", " essentially", " increasingly", " beyond", " effectively", " rapidly", " even"], [" heavily", " increasingly", " rapidly", " deeply", " beyond", " meticulously", " \u2014", " effectively"], [" \u2014", " heavily", " increasingly", " rapidly", " inevitably", " beyond", " deeply", " often"], [" rapidly", " heavily", " \u2014", " increasingly", " quickly", " effectively", " inevitably", " deeply"], [" rapidly", " increasingly", " heavily", " quickly", " repeatedly", " \u2014", " inevitably", " effectively"], [" rapidly", " increasingly", " quickly", " heavily", " repeatedly", " countless", " \u2014", " inevitably"], [" repeatedly", " rapidly", " increasingly", " countless", " every", " quickly", " heavily", " constantly"], [" repeatedly", " rapidly", " every", " for", " increasingly", " quickly", " countless", " during"], [" repeatedly", " every", " interface", " frequently", " rapidly", " each", " interfaces", " constantly"], [" interface", " repeatedly", " interfaces", " every", " each", " frequently", " routinely", " via"], [" repeatedly", " interfaces", " every", " interface", " each", "\u6bcf\u6b21", " countless", " frequently"], [" repeatedly", " each", " every", " interfaces", " interface", "\u6bcf\u6b21", "\u6bcf\u4e00\u6b21", " frequently"], [" every", " each", " repeatedly", " interfaces", " thousands", "\u6bcf\u4e00\u6b21", "\u6bcf\u6b21", " hundreds"], [" every", " each", " repeatedly", "\u6bcf\u4e00\u6b21", "\u6bcf\u6b21", " thousands", " constantly", " dozens"], [" every", " repeatedly", " each", "\u6bcf\u4e00\u6b21", "\u6bcf\u6b21", " thousands", " countless", " hundreds"], [" repeatedly", "\u6bcf\u4e00\u6b21", " every", " each", "\u6bcf\u6b21", " thousands", " dozens", "\u65e0\u6570\u6b21"], ["\u6bcf\u4e00\u6b21", " repeatedly", " every", "\u65e0\u6570\u6b21", "\u6bcf\u6b21", " countless", " thousands", " dozens"], ["\u6bcf\u4e00\u6b21", "\u65e0\u6570\u6b21", "\u6bcf\u6b21", " repeatedly", " every", " countless", "\u6bcf\u4e00\u6b65", "\u6bcf\u4e00\u5929"], ["\u6bcf\u4e00\u6b21", " every", "\u6bcf\u6b21", "\u6bcf\u79d2", " repeatedly", "\u6bcf", "\u65e0\u6570\u6b21", " enough"], ["\u6bcf\u4e00\u6b21", "\u6bcf\u79d2", " every", "\u6bcf\u6b21", "\u6bcf", "\u8db3\u4ee5", " enough", " for"], ["\u6bcf\u4e00\u6b21", " every", "\u6bcf", "\u6bcf\u4e00", "\u6bcf\u6b21", "\u6bcf\u4e00\u6b65", "\u6bcf\u6b21\u90fd", "\u6bcf\u79d2"], [" every", "\u6bcf\u4e00\u6b21", "\u6bcf", "\u6bcf\u4e00", "every", " ogni", "\u6bcf\u6b21", "\u6bcf\u4e00\u6b65"], [" every", "\u6bcf", " for", "\u6bcf\u4e00", "\u6bcf\u4e00\u6b21", "every", " ogni", "\u6bce"], [" every", " for", "\u6bcf", "\u6bcf\u4e00\u6b21", "\u6bcf\u4e00", "every", " render", " renderer"], [" every", " for", "\u6bcf\u4e00", "\u6bcf", "\u6bcf\u4e00\u6b21", "every", " thousands", " OpenGL"], [" for", " every", "\u6bcf\u4e00", " thousands", " OpenGL", "\u6bcf\u4e00\u6b21", " renderer", "every"], [" every", " for", " thousands", "every", " OpenGL", " render", " frame", " rendering"], [" for", " every", " thousands", " hundreds", "for", " OpenGL", " frame", "every"], [" for", " every", " (", " thousands", " hundreds", "for", " frame", " will"], [" for", " every", " (", "for", " thousands", " hundreds", " OpenGL", " per"]], "p": [[0.4877, 0.3352, 0.066, 0.0376, 0.0293, 0.0115, 0.0061, 0.0058], [0.0428, 0.0354, 0.0108, 0.0102, 0.0095, 0.0066, 0.0062, 0.0062], [0.5892, 0.2168, 0.0515, 0.0427, 0.0312, 0.0259, 0.0101, 0.0048], [0.0025, 0.0014, 0.001, 0.001, 0.001, 0.0009, 0.0007, 0.0007], [0.0075, 0.0071, 0.0062, 0.0046, 0.004, 0.0038, 0.0033, 0.0024], [0.0284, 0.0184, 0.0172, 0.0143, 0.0092, 0.006, 0.0056, 0.0053], [0.0788, 0.0372, 0.029, 0.029, 0.0226, 0.0199, 0.0187, 0.0187], [0.0574, 0.0327, 0.0225, 0.0198, 0.0198, 0.0186, 0.0094, 0.0078], [0.0253, 0.0224, 0.0185, 0.0174, 0.0144, 0.0144, 0.0136, 0.0136], [0.014, 0.0124, 0.0066, 0.0066, 0.0062, 0.0062, 0.0052, 0.004], [0.0329, 0.0309, 0.0226, 0.0213, 0.0129, 0.0107, 0.0089, 0.0089], [0.0278, 0.023, 0.014, 0.0096, 0.0096, 0.0075, 0.007, 0.0062], [0.0371, 0.0371, 0.0348, 0.0186, 0.0154, 0.0136, 0.0113, 0.01], [0.0471, 0.0366, 0.0344, 0.0344, 0.0184, 0.0127, 0.0127, 0.0105], [0.6557, 0.0394, 0.0224, 0.0136, 0.0113, 0.0083, 0.0078, 0.006], [0.0854, 0.0625, 0.0518, 0.0457, 0.0277, 0.0216, 0.0139, 0.0116], [0.1146, 0.0613, 0.0328, 0.0308, 0.029, 0.0226, 0.0212, 0.0187], [0.0437, 0.0282, 0.0282, 0.0206, 0.0182, 0.0171, 0.0151, 0.0125], [0.0763, 0.0524, 0.0408, 0.0248, 0.0233, 0.0219, 0.0181, 0.016], [0.075, 0.0584, 0.0484, 0.0276, 0.0215, 0.0202, 0.019, 0.0178], [0.8555, 0.0089, 0.0065, 0.0061, 0.0027, 0.0024, 0.0023, 0.0023], [0.0772, 0.0681, 0.0413, 0.0162, 0.0143, 0.0118, 0.0118, 0.0104], [0.0983, 0.056, 0.034, 0.03, 0.0161, 0.0151, 0.0142, 0.0142], [0.0786, 0.0328, 0.0308, 0.0289, 0.0187, 0.0175, 0.0155, 0.0121], [0.0777, 0.0605, 0.0569, 0.0502, 0.0252, 0.0209, 0.0185, 0.0185], [0.1236, 0.1024, 0.0584, 0.0548, 0.0484, 0.0229, 0.0167, 0.013], [0.0786, 0.0738, 0.0651, 0.0575, 0.0349, 0.0199, 0.0155, 0.0128], [0.1006, 0.0888, 0.061, 0.0475, 0.0327, 0.0239, 0.0211, 0.0164], [0.0653, 0.0478, 0.0349, 0.0328, 0.0256, 0.0226, 0.0226, 0.0187], [0.0785, 0.0611, 0.0395, 0.0307, 0.0307, 0.0271, 0.0255, 0.0225], [0.0666, 0.0457, 0.0404, 0.0379, 0.0314, 0.0261, 0.0261, 0.0261], [0.1677, 0.0544, 0.0398, 0.0274, 0.0227, 0.0227, 0.02, 0.02], [0.0476, 0.0327, 0.0327, 0.0307, 0.0271, 0.0255, 0.0239, 0.0239], [0.0761, 0.0523, 0.0298, 0.0263, 0.0247, 0.0218, 0.0205, 0.0205], [0.0873, 0.068, 0.0439, 0.025, 0.0235, 0.0221, 0.0207, 0.0207], [0.1804, 0.08, 0.0623, 0.0334, 0.0202, 0.0179, 0.0168, 0.0158], [0.1327, 0.0857, 0.0756, 0.071, 0.038, 0.018, 0.0169, 0.0158], [0.1479, 0.0616, 0.0544, 0.0511, 0.0241, 0.02, 0.0188, 0.0166], [0.1051, 0.0438, 0.0438, 0.0363, 0.0341, 0.0283, 0.025, 0.0207], [0.087, 0.0818, 0.0598, 0.0496, 0.0341, 0.032, 0.022, 0.022], [0.1077, 0.0839, 0.0653, 0.0576, 0.0396, 0.0372, 0.035, 0.024], [0.2355, 0.0596, 0.0494, 0.0409, 0.0409, 0.0264, 0.0264, 0.0233], [0.1146, 0.1077, 0.1012, 0.0576, 0.0396, 0.0256, 0.0176, 0.0155], [0.1441, 0.0821, 0.0725, 0.0681, 0.0601, 0.0388, 0.0221, 0.0162], [0.1361, 0.0935, 0.0879, 0.0684, 0.047, 0.047, 0.0222, 0.0184], [0.1652, 0.1287, 0.1136, 0.0325, 0.0306, 0.0306, 0.027, 0.0253], [0.2716, 0.1647, 0.1454, 0.1283, 0.0606, 0.0144, 0.0119, 0.0112], [0.2156, 0.1482, 0.1482, 0.1308, 0.1154, 0.0213, 0.0138, 0.0122], [0.3092, 0.1655, 0.1004, 0.0572, 0.0306, 0.0254, 0.0224, 0.0198], [0.417, 0.1354, 0.093, 0.044, 0.0342, 0.0195, 0.0183, 0.0172], [0.4527, 0.1887, 0.0421, 0.0396, 0.024, 0.0199, 0.0128, 0.0106], [0.4787, 0.0943, 0.0572, 0.0326, 0.021, 0.0186, 0.0186, 0.0128], [0.4791, 0.1211, 0.0735, 0.0735, 0.0306, 0.021, 0.0164, 0.0099], [0.6072, 0.1196, 0.1196, 0.064, 0.044, 0.0076, 0.0032, 0.0032], [0.5076, 0.2398, 0.1133, 0.0778, 0.0135, 0.0056, 0.005, 0.0044], [0.6065, 0.1054, 0.0724, 0.0564, 0.0302, 0.0152, 0.0081, 0.0072], [0.5063, 0.0777, 0.0605, 0.0471, 0.0471, 0.0209, 0.0163, 0.0144], [0.5276, 0.0809, 0.0491, 0.0298, 0.028, 0.0205, 0.017, 0.0159], [0.3899, 0.3441, 0.022, 0.022, 0.0171, 0.0111, 0.0104, 0.0104], [0.7428, 0.1878, 0.0073, 0.0057, 0.005, 0.0039, 0.0034, 0.0032], [0.845, 0.1296, 0.0035, 0.002, 0.002, 0.0013, 0.0011, 0.0011], [0.9751, 0.0123, 0.002, 0.0013, 0.0007, 0.0007, 0.0004, 0.0003], [0.9863, 0.0052, 0.0036, 0.0006, 0.0005, 0.0003, 0.0002, 0.0002]], "ranks": {"Python": [18529, 115629, 108993, 128182, 22480, 89029, 48595, 92629, 87230, 114293, 29672, 57777, 33577, 29381, 30382, 48769, 38511, 32145, 41836, 48859, 27989, 34151, 24780, 15331, 9771, 4009, 3042, 3665, 3234, 3554, 5818, 5812, 6571, 6399, 10162, 5007, 6563, 9346, 12333, 7444, 5081, 3439, 2918, 3605, 3826, 3395, 3353, 3259, 6924, 5166, 18356, 4314, 19231, 18827, 23673, 14158, 8333, 8007, 8912, 3652, 1851, 352, 334]}}, {"pos": 443, "top": [[".", ",", ";", "\u00a0", "\u00a0\u00a0", "\u2026.", "?", "\u2013"], ["\u2011", ".", "  \n\n", "  \n", "\u2013", "\u201d?", ",", "\uff0e"], [".", ",", "\u2026.", "\u2026", "\u2013", "\u2026..", "?", ";"], ["\uff3f\uff3f", "\uff0a\uff0a\uff0a\uff0a", "----</", "-------------</", "----------</", " milfs", "---</", "\uff0d\uff0d\uff0d\uff0d"], ["\uff20", "\u2011", " \u2019", "\\xc", " \uff3b", "\uff3b", "\uff3f", "\u00a0\u00a0\u00a0\u00a0"], ["\u2026.", "\u00a0\u00a0\u00a0\u00a0", "\u2019.", "\u2019:", "!\u2019", "fst", "\u2019an", "\ufffd\ufffd"], ["\u00ac", "\uff3b", " \u2019", " \uff3b", "\u201d\u2014", "\u2019", "  \n\n", "_____"], [" \uff3b", "\uff3b", " \u00ad", "\u00ac", " \u2019", "\u65f3", "  \n\n", "!\u2019"], [" \u00ad", "\uff3b", " \uff3b", "\u00ad", "\u2019", "\u2019.", ".\u201d", "!\u201d"], [" \u00ad", "\u00ading", "\u00ad", "\u00ads", " \u0442\u0440\u0451", "\u00adtion", "\\xc", "\u00ac"], [" \u00ad", "\u00ad", "\u00ac", "\u00a0", "\ufffd", "\u2026", "1", "\u2011"], [" \u00ad", "\u00ading", "\u65f3", "\u0163in", "\\xc", " \u0163", " \u0442\u0440\u0451", " requisite"], ["\u00ading", " \u00ad", "\\xc", " \u0442\u0440\u0451", " pricey", "\u65f3", "\u0163in", " sizable"], [" \u00ad", " requisite", " pricey", "\u00ading", " hefty", " \u0442\u0440\u0451", " utilisation", "\u5373\u4fbf"], [" \u00ad", " requisite", "\u00ac", " arguably", "\u5373\u4fbf", " hefty", "\u00ad", " pricey"], [" \u00ad", " requisite", " myriad", " folks", " arguably", " hefty", " pricey", " savvy"], [" \u00ad", " requisite", " myriad", " folks", " hefty", "\u00ad", "o", " savvy"], [" \u00ad", "\u00ad", " hefty", "\u00ads", " savvy", "\u00ading", " requisite", "\u2014even"], [" \u00ad", "\u2014even", " myriad", " hefty", "\u2014or", " savvy", " requisite", " arguably"], [" \u00ad", " myriad", " requisite", "\u2014even", "\u2014or", " ostensibly", "\u5373\u4fbf", " arguably"], ["<|endoftext|>", " \u00ad", " myriad", " requisite", "  \n\n", "\u5373\u4fbf", " ostensibly", " \ufffd"], [" myriad", "\u54ea\u6015\u662f", " ``", " arguably", "\u65f6\u9ae6", " inevitably", " ultimately", " requisite"], [" myriad", " ``", " even", " requisite", " ultimately", " \u00ad", " arguably", " ostensibly"], [" myriad", " \u00ad", " even", " much", " ultimately", " \ufffd", " ostensibly", " more"], [" myriad", " \u00ad", "  \n\n", " \r\n\r\n", " requisite", " \n\n", "\u2014even", "\r\n\r\n"], [" ``", " **", " myriad", "\u54ea\u6015\u662f", " **\u201c", " ?**", " ;;^", "\u65f6\u9ae6"], [" ``", " myriad", " **", " mundane", " hardware", " even", " trips", " arguably"], [" myriad", " \n\n", " ``", " even", "  \n\n", " much", " ,", " arguably"], [" hardware", " myriad", " work", " labor", " trips", " even", " ``", " technical"], [" **", " work", " hardware", " technical", " tasks", " labor", " operations", " tools"], [" work", " even", " technical", " operations", " trips", " hardware", " complex", " dozens"], [" **", " .", " work", " many", " even", " technical", " complex", " technology"], [" even", " dozens", " myriad", " .", " work", " complex", " many", " various"], [" hardware", " complex", " myriad", " technical", " technology", " technologies", " operations", " tech"], [" **", " **\u201c", " myriad", " complex", " hardware", "  \n\n", " dozens", " technical"], [" technical", " hardware", " **\u201c", "\u2011", " \u201c", "\u2026*", " \u2026", " **"], [" hardware", " technical", " **\u201c", " **", " myriad", " workflows", " countless", " dozens"], [" technical", " hardware", " workflows", " myriad", " countless", " dozens", " complex", " routines"], [" technical", " hardware", " every", " graphics", " countless", " dozens", " routines", " myriad"], [" hardware", " graphics", " OpenGL", " technical", " countless", " every", " myriad", " animations"], [" graphics", " hardware", " OpenGL", " technical", " animations", " every", " GPU", " routines"], [" graphics", " hardware", " OpenGL", " technical", " animations", " APIs", " routines", " interfaces"], [" graphics", " hardware", " routines", " APIs", " interfaces", " animations", " OpenGL", " interface"], [" hardware", " graphics", " routines", " APIs", " animations", " interfaces", " interface", " operations"], [" hardware", " routines", " graphics", " APIs", " interfaces", " animations", " workflows", " every"], [" hardware", " every", " graphics", " routines", " APIs", "\u6bcf\u4e00\u6b21", " interfaces", " animations"], ["\u6bcf\u4e00\u6b21", " every", "\u6bcf\u6b21", " hardware", "\u6bcf\u4e00", "every", " Every", " routines"], ["\u6bcf\u4e00\u6b21", " every", "\u6bcf\u6b21", "Every", " Every", "\u6bcf\u4e00", "every", " each"], ["\u6bcf\u4e00\u6b21", " every", "\u6bcf\u4e00", "\u6bcf\u6b21", "\u6bcf\u4e00\u4ef6", "\u6bcf\u4e00\u6b65", "every", "Every"], ["\u6bcf\u4e00\u6b21", "\u6bcf\u4e00\u4ef6", "\u6bcf\u4e00", "\u6bcf\u6b21", "\u6bcf\u4e00\u6b65", " every", "\u6bcf\u4e00\u9879", "\u6bcf\u4e00\u5929"], ["\u6bcf\u4e00\u6b21", "\u6bcf\u4e00", "\u6bcf\u4e00\u4ef6", "\u6bcf\u6b21", "\u6bcf\u4e00\u6b65", "\u6bcf", "\u6bcf\u4e00\u9879", "\u6bcf\u4e00\u5929"], ["\u6bcf\u4e00\u6b21", "\u6bcf\u4e00", "\u6bcf", "\u6bcf\u6b21", "\u6bcf\u4e00\u4e2a", "Every", "\u6bcf\u4e00\u4ef6", "\u6bcf\u4e00\u6b65"], ["\u6bcf\u4e00\u6b21", "\u6bcf\u4e00", "\u6bcf", "\u6bcf\u6b21", " OpenGL", "\u6bcf\u4e00\u4e2a", "\u6bcf\u4e00\u4ef6", "\u7684\u6bcf\u4e00"], ["\u6bcf\u4e00", "\u6bcf\u4e00\u6b21", "\u6bcf", "\u6bcf\u4e00\u4e2a", "\u7684\u6bcf\u4e00", " every", "\u6bcf\u4e00\u6b65", "\u6bcf\u6b21"], ["\u6bcf\u4e00", "\u6bcf\u4e00\u6b21", " every", "\u6bcf\u4e00\u4e2a", "\u6bcf", "every", "\u7684\u6bcf\u4e00", "Every"], ["\u6bcf\u4e00", " OpenGL", " every", "\u6bcf\u4e00\u6b21", "\u6bcf\u4e00\u4e2a", "every", "\u7684\u6bcf\u4e00", "\u6bcf"], [" OpenGL", "\u6bcf\u4e00", " graphics", " GPU", " every", "\u6bcf\u4e00\u6b21", "OpenGL", "\u6bcf\u4e00\u4e2a"], [" OpenGL", " GPU", " graphics", "\u6bcf\u4e00", " rendering", "/render", "OpenGL", " every"], [" OpenGL", " GPU", " graphics", "OpenGL", " rendering", "\u6bcf\u4e00", " shader", " renderer"], [" OpenGL", " GPU", " rendering", " every", " graphics", "OpenGL", " renderer", " shader"], [" OpenGL", " GPU", " every", " rendering", "OpenGL", " graphics", " shader", " WebGL"], [" OpenGL", " GPU", " rendering", "OpenGL", " every", " graphics", " GL", " shader"], [" OpenGL", " GPU", " rendering", " graphics", " every", " shader", " GL", " renderer"]], "p": [[0.6652, 0.3142, 0.0051, 0.0033, 0.0031, 0.0024, 0.0019, 0.0009], [0.0622, 0.0108, 0.009, 0.0062, 0.0054, 0.0054, 0.0051, 0.0042], [0.4476, 0.2396, 0.0881, 0.0881, 0.0367, 0.0174, 0.0087, 0.0072], [0.0089, 0.0069, 0.0069, 0.0061, 0.0061, 0.0035, 0.0029, 0.0025], [0.0111, 0.0081, 0.0081, 0.0071, 0.0063, 0.0046, 0.0046, 0.0041], [0.0073, 0.0064, 0.0041, 0.0039, 0.0034, 0.003, 0.0027, 0.0022], [0.1113, 0.0982, 0.0867, 0.0596, 0.0385, 0.0281, 0.0264, 0.0233], [0.0528, 0.0466, 0.032, 0.0301, 0.0194, 0.0161, 0.0133, 0.0118], [0.1465, 0.0889, 0.0447, 0.0394, 0.0394, 0.0394, 0.0327, 0.0327], [0.1943, 0.0383, 0.0141, 0.0124, 0.0059, 0.0059, 0.0055, 0.0046], [0.6991, 0.0476, 0.01, 0.0094, 0.006, 0.006, 0.0057, 0.0047], [0.2751, 0.01, 0.0057, 0.0057, 0.0057, 0.0042, 0.0037, 0.0029], [0.0139, 0.009, 0.007, 0.0058, 0.0048, 0.0026, 0.0023, 0.002], [0.0432, 0.0124, 0.0066, 0.0066, 0.0043, 0.0043, 0.0038, 0.0029], [0.0862, 0.0671, 0.0205, 0.008, 0.0071, 0.0059, 0.0059, 0.0055], [0.0961, 0.0454, 0.0089, 0.0079, 0.0065, 0.0061, 0.0058, 0.0045], [0.0483, 0.0201, 0.0178, 0.0108, 0.0108, 0.0089, 0.0084, 0.0065], [0.0677, 0.0059, 0.0056, 0.0056, 0.0032, 0.003, 0.0026, 0.0026], [0.0098, 0.0059, 0.0046, 0.0043, 0.0034, 0.0026, 0.0025, 0.0025], [0.0194, 0.0142, 0.0081, 0.0076, 0.0059, 0.0041, 0.0034, 0.0032], [0.1097, 0.0102, 0.0102, 0.0079, 0.0055, 0.0051, 0.0026, 0.0024], [0.0026, 0.0023, 0.0018, 0.0014, 0.0013, 0.0012, 0.0012, 0.0011], [0.0111, 0.0076, 0.0049, 0.0049, 0.0036, 0.0036, 0.0032, 0.0025], [0.0152, 0.0143, 0.0118, 0.0111, 0.0067, 0.0056, 0.0041, 0.0041], [0.0192, 0.018, 0.0169, 0.0132, 0.0124, 0.0058, 0.0052, 0.0052], [0.0357, 0.0231, 0.0033, 0.0031, 0.0019, 0.0016, 0.0015, 0.0015], [0.029, 0.0107, 0.0054, 0.0042, 0.0039, 0.0035, 0.0029, 0.0027], [0.0201, 0.0178, 0.0147, 0.013, 0.0122, 0.0122, 0.0089, 0.0074], [0.0142, 0.0126, 0.0118, 0.0098, 0.0092, 0.0086, 0.0086, 0.0076], [0.0735, 0.027, 0.0164, 0.0136, 0.0128, 0.012, 0.0106, 0.0106], [0.0308, 0.0199, 0.0175, 0.0137, 0.0128, 0.0113, 0.0113, 0.0113], [0.0458, 0.0405, 0.038, 0.0217, 0.018, 0.0131, 0.0123, 0.0123], [0.0248, 0.0219, 0.0206, 0.0182, 0.0151, 0.0142, 0.0142, 0.0125], [0.0451, 0.0352, 0.0352, 0.031, 0.0166, 0.0166, 0.0156, 0.0138], [0.0853, 0.0707, 0.0664, 0.0216, 0.0203, 0.0179, 0.0158, 0.0158], [0.0651, 0.0611, 0.0574, 0.0507, 0.0371, 0.0348, 0.0211, 0.0211], [0.1191, 0.0678, 0.0387, 0.0266, 0.0161, 0.0161, 0.0142, 0.0142], [0.1099, 0.097, 0.0315, 0.0191, 0.0158, 0.0131, 0.0131, 0.0123], [0.122, 0.1077, 0.035, 0.0309, 0.0272, 0.0226, 0.0212, 0.0199], [0.1603, 0.0913, 0.0316, 0.0316, 0.0297, 0.0246, 0.0191, 0.0149], [0.2299, 0.1682, 0.0453, 0.0353, 0.0275, 0.0114, 0.0101, 0.0101], [0.2359, 0.2082, 0.0385, 0.0265, 0.0234, 0.0206, 0.0182, 0.0125], [0.1788, 0.1788, 0.0481, 0.0399, 0.0331, 0.0311, 0.0242, 0.0188], [0.1508, 0.1508, 0.0555, 0.046, 0.0336, 0.0279, 0.018, 0.0149], [0.1348, 0.0818, 0.0598, 0.0598, 0.0301, 0.0283, 0.0249, 0.0234], [0.0819, 0.0723, 0.0563, 0.0563, 0.0497, 0.0497, 0.0283, 0.025], [0.3406, 0.2653, 0.0359, 0.0181, 0.017, 0.017, 0.0117, 0.0109], [0.3181, 0.2807, 0.043, 0.0261, 0.023, 0.0191, 0.0179, 0.0131], [0.6374, 0.0672, 0.028, 0.0247, 0.0218, 0.0117, 0.011, 0.0097], [0.6609, 0.0479, 0.0423, 0.0176, 0.0155, 0.0155, 0.0107, 0.01], [0.5537, 0.109, 0.0401, 0.0276, 0.0243, 0.0157, 0.013, 0.013], [0.4311, 0.1586, 0.0312, 0.0312, 0.0189, 0.0167, 0.0139, 0.0108], [0.4241, 0.2003, 0.0307, 0.0239, 0.0239, 0.0128, 0.0113, 0.0106], [0.5703, 0.3459, 0.0195, 0.0152, 0.0056, 0.0056, 0.0044, 0.0044], [0.6859, 0.1734, 0.0497, 0.0387, 0.0086, 0.0086, 0.0067, 0.0046], [0.5714, 0.1637, 0.0682, 0.0531, 0.0365, 0.0134, 0.0119, 0.0119], [0.4437, 0.2691, 0.0771, 0.0413, 0.0413, 0.0172, 0.0152, 0.0152], [0.5894, 0.1024, 0.0904, 0.0704, 0.0377, 0.0139, 0.0139, 0.0095], [0.8053, 0.109, 0.0215, 0.0167, 0.0115, 0.007, 0.0054, 0.0054], [0.706, 0.1083, 0.0843, 0.0398, 0.0114, 0.0114, 0.0054, 0.0048], [0.839, 0.078, 0.0536, 0.0064, 0.0064, 0.0044, 0.0034, 0.0013], [0.9634, 0.0137, 0.0065, 0.0051, 0.0021, 0.0019, 0.0016, 0.0013], [0.8373, 0.0687, 0.0472, 0.0153, 0.0072, 0.005, 0.0025, 0.0019]], "ranks": {"Python": [65775, 230109, 88472, 207347, 121423, 84040, 16961, 19178, 11834, 24331, 6285, 53246, 48024, 34579, 38411, 116478, 78152, 50488, 99799, 149126, 44707, 142562, 85650, 53874, 56134, 49831, 12036, 4890, 4222, 3846, 5456, 5219, 5980, 3040, 1962, 387, 41, 129, 545, 670, 337, 350, 309, 536, 656, 855, 1264, 1320, 3502, 7108, 10679, 6079, 12307, 19289, 11247, 3488, 1159, 1434, 1053, 812, 286, 239, 76]}}, {"pos": 444, "top": [["a", " \u2013", ",", "\u00a0", "\u2013", ".", "er", "**\u2013"], [" **\u2018", "**\u2013", "\uff0d", " **\u2013", "\u2019**", "**.", " \u2013**", "**!"], ["**\u2013", " **\u2018", " **\u2013", "\u2026**", "\uff0d", "\u2013", "**.", "**\u3002"], [" **\u2018", "\u2019**", "\uff3f\uff3f", " '**", "\uff0d\uff0d\uff0d\uff0d", " **:", "\uff1f**", "\uff0d"], ["a", " **\u2018", "\uff0d", "\u0627", "er", "ing", " **\u2013", "**."], [" **\u2018", "a", "\u0627", " **\u2013", "**!", " \n\n", "\u2019**", "\uff0d"], [" **\u2018", " \n\n", "a", "\u2019**", "**\u3002", "**!", " \n", "\uff0d"], [" **\u2018", " \n\n", "**!", "**\u3002", "**.", "\u2019**", "a", " \r\n\r\n"], [" \n\n", "**!", " **\u2018", "**.", "**\u3002", "a", " \r\n\r\n", " \n        \n"], ["a", "ing", "**!", "er", " **\u2018", "**\u2013", " **\u2013", "a\u015f"], ["a", "ing", "er", "\u0627", " **\u2018", "**!", " **\u2013", "**."], [" **\u2018", " **", "ing", " **'", " '**", " **+", "a", "er"], [" **\u2018", "ing", "a", "er", " '**", " **", " **'", " **\u2013"], ["a", "er", "ing", "a\u015f", " **\u2018", "\u52a0\u62ff\u5927", "auff", "aar"], ["a", "ing", "er", "o", "\u0627", "aft", "a\u015f", " \u2018"], ["a", "ing", "er", "o", "\u0627", "aft", " kids", "a\u015f"], ["a", "ing", "er", "o", "\u0627", "e", "aft", ","], ["a", "ing", "er", "o", "\u0627", "aft", " kids", " **\u2013"], ["a", "er", "ing", "\u0627", "o", " imaginable", " kids", "aft"], ["a", "er", "ing", "\u0627", " --", " imaginable", "every", "o"], [" \n\n", "a", "<|endoftext|>", "\n\n", " \r\n\r\n", "er", "\u0627", "ing"], ["\u65f6\u523b\u523b", " imaginable", "ing", "er", "auff", "evo", "aft", "\u52a0\u62ff\u5927"], ["a", "ing", "er", " ''", " imaginable", "every", "\u65f6\u523b\u523b", "\u0627"], ["a", "er", "ing", " \n\n", "\u0627", " --", "every", " ever"], [" \n\n", " \r\n\r\n", "\n\n", "   \n\n", "\r\n\r\n", "a", "  \n\n", "        \n\n"], [" \n\n", " \r\n\r\n", " **", " \n        \n", " **+", "ing", " **'", "\u65f6\u523b\u523b"], [" \n\n", "ing", " **", " \r\n\r\n", "er", " crunch", "a", " --"], [" \n\n", "\n\n", " \r\n\r\n", " --", "\r\n\r\n", "a", " every", " **"], [" \n\n", " **", "a", " \r\n\r\n", " every", "ing", "er", " \n        \n"], [" \n\n", " **", " \n", " \n        \n", " \n    \n", " every", " \n  \n", "a"], [" \n\n", " **", " \n", " every", " \n        \n", " **.", " \n    \n", "ing"], [" **", " \n\n", " every", " **.", "a", " countless", "ing", " ??"], [" every", " \n\n", " **", " countless", "a", "ing", " dozens", " Every"], [" \n\n", " every", " **", " countless", " dozens", "a", " Every", " \r\n\r\n"], [" \n\n", " **", " every", "Every", " \r\n\r\n", "a", " \n    \n", "every"], [" Every", "Every", " every", " \n\n", " \u2026", "every", " ...", " \n"], ["Every", " Every", " every", "every", "\u6bcf", " dozens", " **", " countless"], [" Every", "Every", " every", "every", "\u6bcf", "Each", " countless", " dozens"], [" every", " Every", "Every", "every", " each", "\u6bcf", "each", "Each"], [" every", " Every", "Every", "every", "each", "\u6bcf", "Each", "\u6bcf\u4e00"], [" Every", " every", "Every", "every", "each", "Each", "\u6bcf\u4e00", "\u6bcf"], [" every", " Every", "Every", "every", "\u6bcf\u4e00", "\u6bcf\u4e00\u6b21", "\u6bcf", "each"], [" every", " Every", "every", "Every", "\u6bcf\u79d2", " each", "\u6bcf\u4e00", "\u6bcf"], [" every", " Every", "every", "Every", "\u6bcf", "\u6bcf\u4e00", " each", "each"], [" every", " Every", "every", "Every", " each", "\u6bcf\u4e00", "each", "\u6bcf"], [" every", " Every", "every", "Every", " each", "\u6bcf\u4e00", " EVERY", "each"], [" every", "every", " Every", "Every", "\u6bcf\u4e00", "\u6bcf\u4e00\u6b21", " EVERY", "each"], [" every", "every", " Every", "Every", "\u6bcf\u4e00", " EVERY", "\u6bcf", "each"], ["every", " every", "Every", " Every", "\u6bcf\u4e00", "\u6bcf\u4e00\u4ef6", "\u6bcf\u4e00\u6b21", " dozens"], ["every", "Every", " Every", "\u6bcf\u4e00", "\u6bcf\u4e00\u4ef6", " every", "\u6bcf\u4e00\u6b21", "\u6bcf\u79d2"], ["\u6bcf\u4e00", "Every", "every", "\u6bcf\u4e00\u4ef6", "\u6bcf", "/**/*.", "\u6bcf\u4e00\u6b21", "\u6bcf\u5206\u949f"], [" pixel", " pixels", "Pixels", " keyst", " Pixels", "AnimationFrame", "Every", " tweak"], [" pixel", " OpenGL", " RENDER", " pixels", "/render", " keyst", "AnimationFrame", " shader"], [" pixel", " OpenGL", " shader", " pixels", " GPU", "\u6bcf\u4e00", "AnimationFrame", " framebuffer"], [" OpenGL", " pixel", " shader", " GPU", "OpenGL", " renderer", " framebuffer", " pixels"], [" OpenGL", " pixel", " shader", " GPU", "OpenGL", "/render", " renderer", " RENDER"], [" OpenGL", " graphics", " shader", " renderer", " render", " GPU", "/render", "OpenGL"], [" shader", " draw", " OpenGL", " vertex", " renderer", " GPU", " drawing", " render"], [" OpenGL", " shader", " draw", " vertex", " GPU", " drawing", " frame", " renderer"], [" draw", " OpenGL", " shader", " vertex", " drawing", " GPU", " rendering", " render"], [" OpenGL", " shader", " vertex", " GPU", " frame", "OpenGL", " rendering", " renderer"], [" vertex", " OpenGL", " shader", " Vertex", " GPU", " frame", " render", " draw"], [" vertex", " OpenGL", " shader", " render", " rendering", " GPU", " frame", " Vertex"]], "p": [[0.3476, 0.2707, 0.0879, 0.0729, 0.0604, 0.0533, 0.0323, 0.0099], [0.3204, 0.1943, 0.1943, 0.0359, 0.0317, 0.0103, 0.0091, 0.0085], [0.5146, 0.1013, 0.0894, 0.0741, 0.035, 0.02, 0.0176, 0.0107], [0.5515, 0.0292, 0.0189, 0.0167, 0.0138, 0.0138, 0.0122, 0.0122], [0.3242, 0.163, 0.082, 0.0638, 0.0364, 0.0183, 0.0161, 0.0161], [0.2994, 0.0913, 0.0489, 0.0459, 0.0381, 0.0358, 0.0296, 0.0296], [0.2377, 0.2098, 0.0991, 0.053, 0.0413, 0.0343, 0.0251, 0.0251], [0.2233, 0.1354, 0.0991, 0.0601, 0.0388, 0.0364, 0.0302, 0.0195], [0.407, 0.0967, 0.0624, 0.0486, 0.0429, 0.0334, 0.0244, 0.019], [0.1512, 0.0917, 0.0761, 0.0523, 0.0433, 0.0317, 0.0298, 0.015], [0.5945, 0.0912, 0.0805, 0.0217, 0.0191, 0.009, 0.0085, 0.0062], [0.2009, 0.1297, 0.0613, 0.0613, 0.0448, 0.0289, 0.0272, 0.024], [0.2002, 0.1376, 0.0834, 0.0692, 0.0475, 0.042, 0.0348, 0.0164], [0.2445, 0.1578, 0.1229, 0.0214, 0.0189, 0.0095, 0.0079, 0.0069], [0.781, 0.0499, 0.0343, 0.0111, 0.0077, 0.0049, 0.0017, 0.0012], [0.8138, 0.0858, 0.0336, 0.0116, 0.0055, 0.0023, 0.0008, 0.0007], [0.9256, 0.0317, 0.017, 0.0117, 0.0023, 0.0004, 0.0004, 0.0002], [0.7158, 0.0518, 0.0335, 0.0158, 0.007, 0.0027, 0.0019, 0.0015], [0.3245, 0.0771, 0.0284, 0.0086, 0.0072, 0.0059, 0.0049, 0.0046], [0.3121, 0.0654, 0.0256, 0.0129, 0.0073, 0.0061, 0.0057, 0.0047], [0.3517, 0.2133, 0.1661, 0.0889, 0.0136, 0.0057, 0.0053, 0.0047], [0.0169, 0.015, 0.015, 0.0066, 0.0059, 0.0055, 0.0046, 0.004], [0.0542, 0.0449, 0.0396, 0.0165, 0.0155, 0.0129, 0.0094, 0.0083], [0.3636, 0.0594, 0.0338, 0.0247, 0.0124, 0.0117, 0.011, 0.0071], [0.9305, 0.0281, 0.0248, 0.0028, 0.0026, 0.0023, 0.0007, 0.0006], [0.1714, 0.063, 0.0461, 0.0159, 0.0117, 0.0103, 0.0085, 0.0075], [0.0888, 0.0255, 0.0198, 0.0198, 0.0164, 0.0154, 0.0083, 0.0083], [0.837, 0.0779, 0.0153, 0.0056, 0.0032, 0.003, 0.0021, 0.0018], [0.5878, 0.0453, 0.0353, 0.0189, 0.0147, 0.013, 0.0095, 0.0061], [0.3851, 0.1819, 0.1174, 0.0381, 0.018, 0.0159, 0.014, 0.014], [0.3098, 0.1463, 0.0538, 0.0506, 0.0394, 0.0288, 0.0113, 0.0088], [0.2981, 0.1243, 0.0518, 0.0277, 0.0179, 0.0139, 0.009, 0.007], [0.1143, 0.1074, 0.0738, 0.0327, 0.0327, 0.0199, 0.0175, 0.0165], [0.5044, 0.0727, 0.0222, 0.0208, 0.0126, 0.0105, 0.0098, 0.0092], [0.3447, 0.0563, 0.022, 0.0194, 0.0183, 0.0161, 0.0151, 0.0134], [0.0599, 0.0599, 0.0528, 0.0466, 0.0438, 0.032, 0.0301, 0.0234], [0.1511, 0.1176, 0.067, 0.0556, 0.0232, 0.018, 0.0169, 0.0159], [0.278, 0.191, 0.191, 0.066, 0.0147, 0.0122, 0.0115, 0.0084], [0.5954, 0.1933, 0.0913, 0.0711, 0.0048, 0.0038, 0.0035, 0.0026], [0.3154, 0.2457, 0.149, 0.1315, 0.0108, 0.0101, 0.0084, 0.0065], [0.313, 0.313, 0.1305, 0.0897, 0.0121, 0.0114, 0.0095, 0.0083], [0.4126, 0.2503, 0.0921, 0.0813, 0.0117, 0.0103, 0.0097, 0.0076], [0.5567, 0.1807, 0.0587, 0.0518, 0.0116, 0.0109, 0.0102, 0.009], [0.4602, 0.2174, 0.08, 0.0623, 0.0229, 0.0202, 0.0139, 0.0102], [0.7068, 0.1228, 0.0745, 0.0274, 0.0089, 0.0061, 0.0042, 0.0037], [0.8386, 0.0688, 0.0536, 0.0082, 0.0039, 0.0021, 0.0013, 0.0013], [0.7861, 0.1064, 0.0645, 0.0112, 0.006, 0.0028, 0.0025, 0.0022], [0.5471, 0.1776, 0.1383, 0.0951, 0.0088, 0.0042, 0.0029, 0.0022], [0.2928, 0.1776, 0.095, 0.0839, 0.0509, 0.024, 0.0226, 0.0199], [0.1403, 0.1027, 0.0623, 0.055, 0.0428, 0.0229, 0.0168, 0.0131], [0.0615, 0.0543, 0.0329, 0.0291, 0.0166, 0.0156, 0.0121, 0.01], [0.07, 0.0258, 0.0138, 0.0107, 0.0089, 0.0079, 0.0074, 0.0061], [0.0947, 0.0225, 0.0199, 0.0187, 0.0165, 0.0113, 0.0113, 0.0106], [0.1375, 0.037, 0.0254, 0.0224, 0.0145, 0.0136, 0.0128, 0.01], [0.3033, 0.184, 0.0869, 0.0265, 0.0234, 0.0142, 0.0118, 0.0118], [0.5783, 0.0691, 0.0538, 0.0475, 0.0326, 0.0288, 0.0254, 0.012], [0.5318, 0.0635, 0.0561, 0.0561, 0.0561, 0.0561, 0.0265, 0.0234], [0.2357, 0.208, 0.1836, 0.0596, 0.0464, 0.041, 0.0282, 0.0282], [0.4189, 0.1746, 0.12, 0.0642, 0.05, 0.0268, 0.0184, 0.0143], [0.3928, 0.2699, 0.0773, 0.0532, 0.0469, 0.0251, 0.0222, 0.0196], [0.7395, 0.0883, 0.0688, 0.0473, 0.012, 0.0064, 0.0044, 0.0039], [0.5228, 0.4071, 0.0203, 0.0123, 0.0066, 0.0045, 0.0035, 0.0031], [0.4655, 0.3625, 0.0433, 0.0298, 0.0205, 0.0205, 0.0141, 0.0066]], "ranks": {"Python": [20502, 164263, 17905, 94006, 20312, 8234, 2382, 2619, 1809, 3090, 2021, 8896, 4577, 2451, 3237, 7571, 7352, 4858, 6341, 11842, 3134, 18151, 11415, 8362, 3421, 2647, 1846, 3324, 2144, 1794, 1446, 2049, 2325, 1459, 1001, 285, 52, 126, 371, 761, 576, 473, 557, 685, 804, 1060, 1120, 946, 904, 2247, 3125, 2601, 5081, 4793, 3735, 2385, 1919, 1817, 1231, 813, 377, 221, 124]}}, {"pos": 445, "top": [["s", " @", " \u00a9", " [@", "\u0627\u062a", " >>>", " \u2022", " ["], ["s", " \uff3b", "\u0627\u062a", "  \n\n", " [@", "\u044b", " \u00a9", " \u00ae"], ["s", " \u2026.", " \uff3b", "\u0627\u062a", "  \n\n", "\u2026.", "\u2026..", " [@"], ["s", "\u0627\u062a", " \uff3b", "sze", "s\u00f6k", "\u044b", "sene", "satz"], ["s", "\u0627\u062a", " \uff3b", " [@", " @_", " >>>", " \"@", "schild"], ["s", "\u0627\u062a", " \uff3b", "schild", " \u201d", "\u044b", "s\u00f6k", "sze"], ["s", "\u0627\u062a", " \u201d", " \uff3b", " >>>", " \u00bb.", "schild", " \u2019"], ["s", "\u0627\u062a", " \uff3b", " \u201d", "schild", " >>>", " \u00ae", " \u00bb."], ["s", "\u0627\u062a", "schild", " \uff3b", " [@", " \u201d", " \u00bb.", " \u00ae"], ["s", "schild", "\u0627\u062a", "s\u00f6k", " [@", "\u4e8b\u534a\u529f\u500d", "sene", " \uff3b"], ["s", "\u0627\u062a", " [@", " \uff3b", "schild", " @", " \u00bb.", " >>>"], ["s", "\u0627\u062a", "schild", "sene", "s\u00f6k", " \u00bb\u00bb", " OpenGL", "\u4e8b\u534a\u529f\u500d"], ["s", "\u0627\u062a", "schild", "\u4e8b\u534a\u529f\u500d", "schrift", " OpenGL", " \u00bb,", "s\u00f6k"], ["s", "\u0627\u062a", "\u4e8b\u534a\u529f\u500d", " OpenGL", "schild", "schrift", "s\u00f6k", "szer"], ["s", "\u0627\u062a", " OpenGL", "schild", "scha", "\u4e8b\u534a\u529f\u500d", "\u4e0d\u53ef\u601d\u8bae", "siz"], ["s", "\u0627\u062a", " OpenGL", "schild", "siz", "\u4e0d\u53ef\u601d\u8bae", "\u044b", "\u4e8b\u534a\u529f\u500d"], ["s", "\u0627\u062a", " OpenGL", "siz", "schild", "soc", "\u4e8b\u534a\u529f\u500d", "\u044b"], ["s", "\u0627\u062a", " OpenGL", "schrift", "\u4e8b\u534a\u529f\u500d", "schild", "scher", "soc"], ["s", "\u0627\u062a", " OpenGL", "schrift", "\u4e8b\u534a\u529f\u500d", "scher", "sene", "schn"], ["s", "\u0627\u062a", " OpenGL", "\u4e8b\u534a\u529f\u500d", "\u4e0d\u53ef\u601d\u8bae", "scher", "scha", "\u5404\u79cd\u5404\u6837\u7684"], ["s", "\u0627\u062a", "<|endoftext|>", " OpenGL", " \u00ae", "\u4e0d\u53ef\u601d\u8bae", "\u2014or", " [@"], [" OpenGL", "s", "\u4e8b\u534a\u529f\u500d", "TRGL", "schrift", "scher", "RGBO", "\u5404\u79cd\u5404\u6837\u7684"], [" OpenGL", "s", "\u0627\u062a", " ``", "\u4e8b\u534a\u529f\u500d", "OpenGL", " \u00bb\u00bb", "scher"], ["s", " OpenGL", "\u0627\u062a", "OpenGL", " ``", "\u4e8b\u534a\u529f\u500d", ".opengl", "\u4e0d\u53ef\u601d\u8bae"], [" OpenGL", "OpenGL", "s", ".opengl", "\u0627\u062a", "-------------</", "\u4e8b\u534a\u529f\u500d", " ===="], [" OpenGL", "OpenGL", " shaders", " graphics", " optics", ".opengl", "-------------</", " WebGL"], [" OpenGL", "OpenGL", " shaders", " graphics", " optics", " WebGL", " cinemat", " GeForce"], [" OpenGL", "OpenGL", " graphics", " optics", " shaders", "s", ".opengl", " ``"], [" OpenGL", "OpenGL", " shaders", " graphics", " optics", " WebGL", " shader", " DirectX"], [" OpenGL", "OpenGL", " shaders", " graphics", " optics", " architecture", " architectures", " shader"], [" OpenGL", "OpenGL", " graphics", " shaders", " optics", " hardware", " architecture", " theater"], [" OpenGL", " ...", "OpenGL", " graphics", "s", " hardware", " optics", " shaders"], [" OpenGL", "OpenGL", " graphics", "s", " hardware", " optics", " shaders", " technology"], [" OpenGL", "OpenGL", " shaders", " graphics", " hardware", "/GL", " optics", " shader"], [" OpenGL", "OpenGL", "/GL", "\u2014or", " shaders", " optics", "/Open", "/O"], ["\u2014or", " OpenGL", "OpenGL", " /", "\u6216\u5176\u4ed6", "/GL", " shaders", "\u6216"], [" OpenGL", "OpenGL", "\u2014or", " /", " shaders", "/GL", "/[", " WebGL"], [" OpenGL", "OpenGL", "/GL", " /", " shaders", "\u2014or", " WebGL", "\u6216"], [" OpenGL", "OpenGL", " /", "\u6216", " [...]", "\u2014or", " shaders", "/GL"], [" OpenGL", "OpenGL", " Vulkan", " WebGL", " shaders", "\u6216", " GPU", " shader"], [" OpenGL", "OpenGL", " WebGL", " Vulkan", " shaders", " GPU", " shader", " NVIDIA"], [" OpenGL", "OpenGL", " WebGL", " shaders", " GPU", " Vulkan", " shader", " DirectX"], [" OpenGL", "OpenGL", " shaders", " WebGL", " GPU", " Vulkan", " DirectX", " shader"], [" OpenGL", "OpenGL", " WebGL", " shaders", " Vulkan", " DirectX", " GPU", "/GL"], [" OpenGL", "OpenGL", " shaders", " WebGL", " GPU", "/GL", " Vulkan", " DirectX"], [" OpenGL", "/GL", "/O", "/", "/G", " /", "OpenGL", " WebGL"], ["\u6216", "/", " OpenGL", "/GL", "/O", " or", "/G", " /"], ["/", "/O", "/G", "\u6216", "/GL", "/D", "/M", "/P"], ["/", "/O", "/G", "/D", "/GL", "/C", "/V", "/P"], ["/", "/O", "/G", "/M", "/D", "/V", "/C", "/P"], ["/O", "/G", "/", "/GL", "/V", "/C", "/M", "/D"], ["/O", "/G", "/GL", "/", "/C", "/M", "/V", "/D"], ["/GL", "/", "/G", "/V", "/O", "/X", "/C", "/D"], ["/GL", " OpenGL", "/O", "/G", "/Open", "/", "/Web", "/V"], [" OpenGL", "/GL", "OpenGL", "/Open", "/gl", " WebGL", "/Web", " shader"], [" OpenGL", " Vulkan", "/GL", " GPU", " GLES", " WebGL", "OpenGL", " shader"], [" Vulkan", " OpenGL", " WebGL", "/GL", " GLES", " GPU", " shader", "OpenGL"], ["/GL", " Vulkan", " OpenGL", "/gl", " GLES", " WebGL", " GPU", "OpenGL"], [" Vulkan", "/GL", " OpenGL", "/gl", " GLES", " Metal", " WebGL", "OpenGL"], [" Vulkan", " Metal", "Metal", " vul", " OpenGL", " WebGL", "/GL", " GLES"], [" Vulkan", " Metal", "Metal", "/V", " metal", "/GL", " vul", "-metal"], ["/V", " Vulkan", "/v", "/GL", "/M", "/Web", "/D", " vul"], ["/V", "/M", "/E", "/Web", "/v", "/D", "/", " Vulkan"]], "p": [[0.9884, 0.0008, 0.0005, 0.0005, 0.0004, 0.0002, 0.0002, 0.0001], [0.9954, 0.0019, 0.0009, 0.0003, 0.0003, 0.0001, 0.0001, 0.0001], [0.9991, 0.0003, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.8858, 0.05, 0.0077, 0.0036, 0.0034, 0.0025, 0.0025, 0.0025], [0.9996, 0.0002, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9986, 0.0007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9995, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9994, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9986, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0], [0.9997, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9993, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9815, 0.0024, 0.0009, 0.0003, 0.0002, 0.0002, 0.0002, 0.0002], [0.9929, 0.0007, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.9692, 0.0013, 0.0003, 0.0003, 0.0002, 0.0001, 0.0001, 0.0001], [0.9878, 0.0008, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9873, 0.0008, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9948, 0.0005, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.8803, 0.0072, 0.0041, 0.0012, 0.0011, 0.0009, 0.0007, 0.0006], [0.7642, 0.0116, 0.007, 0.0028, 0.0026, 0.0021, 0.0012, 0.0011], [0.7949, 0.0088, 0.0031, 0.0015, 0.0015, 0.0009, 0.0008, 0.0007], [0.8759, 0.0032, 0.0009, 0.0007, 0.0004, 0.0003, 0.0003, 0.0002], [0.0658, 0.0201, 0.0114, 0.0084, 0.0079, 0.0061, 0.0061, 0.0058], [0.0985, 0.0985, 0.0104, 0.0056, 0.0043, 0.0036, 0.0034, 0.0032], [0.1152, 0.0374, 0.0048, 0.0037, 0.0031, 0.0016, 0.0015, 0.0014], [0.481, 0.0693, 0.0175, 0.0047, 0.0025, 0.0018, 0.0014, 0.0014], [0.8045, 0.0547, 0.0031, 0.0019, 0.0017, 0.001, 0.0009, 0.0007], [0.846, 0.0508, 0.0044, 0.0032, 0.0022, 0.0011, 0.0008, 0.0007], [0.5722, 0.0414, 0.0072, 0.0068, 0.003, 0.0021, 0.0018, 0.0013], [0.8272, 0.0563, 0.0067, 0.0049, 0.0046, 0.0011, 0.0008, 0.0008], [0.6948, 0.0503, 0.0163, 0.0093, 0.0093, 0.0025, 0.002, 0.002], [0.7332, 0.0343, 0.0184, 0.0152, 0.0098, 0.0034, 0.003, 0.0025], [0.3594, 0.0429, 0.0314, 0.026, 0.0148, 0.0096, 0.007, 0.0062], [0.3249, 0.0302, 0.0251, 0.0126, 0.0126, 0.0111, 0.0098, 0.0072], [0.4071, 0.0429, 0.0314, 0.0179, 0.009, 0.0058, 0.0051, 0.0048], [0.3065, 0.047, 0.0366, 0.0285, 0.0268, 0.0072, 0.0072, 0.0072], [0.2257, 0.212, 0.0368, 0.0346, 0.027, 0.0174, 0.0163, 0.0136], [0.5284, 0.104, 0.0298, 0.0247, 0.0247, 0.017, 0.0103, 0.008], [0.7351, 0.0878, 0.0162, 0.0143, 0.0112, 0.0082, 0.0082, 0.0056], [0.795, 0.0576, 0.0187, 0.0137, 0.0113, 0.0083, 0.0078, 0.0065], [0.8574, 0.0704, 0.007, 0.0065, 0.0065, 0.0051, 0.0042, 0.0031], [0.8996, 0.0738, 0.0069, 0.0039, 0.0039, 0.0029, 0.0018, 0.0007], [0.9338, 0.0465, 0.0049, 0.0034, 0.0023, 0.002, 0.0017, 0.001], [0.931, 0.0409, 0.0071, 0.0055, 0.0026, 0.0025, 0.0019, 0.0017], [0.9155, 0.0456, 0.0066, 0.0051, 0.004, 0.0037, 0.0029, 0.0016], [0.8728, 0.0632, 0.0103, 0.008, 0.0052, 0.0046, 0.0046, 0.004], [0.478, 0.1369, 0.0445, 0.0392, 0.0306, 0.0197, 0.0197, 0.0127], [0.1599, 0.1246, 0.097, 0.0856, 0.0519, 0.0519, 0.0404, 0.0278], [0.5249, 0.071, 0.0627, 0.0431, 0.0296, 0.0261, 0.018, 0.0159], [0.4694, 0.1047, 0.0924, 0.034, 0.0265, 0.0234, 0.0234, 0.0234], [0.2541, 0.1541, 0.12, 0.05, 0.0442, 0.039, 0.039, 0.0344], [0.2039, 0.1588, 0.1588, 0.0662, 0.0584, 0.0402, 0.0402, 0.0313], [0.161, 0.1421, 0.0977, 0.0977, 0.0592, 0.0592, 0.0592, 0.0461], [0.4176, 0.1056, 0.0565, 0.0565, 0.0565, 0.0343, 0.0302, 0.0267], [0.6907, 0.0642, 0.0303, 0.0268, 0.0236, 0.0162, 0.0127, 0.0127], [0.6047, 0.3237, 0.0341, 0.0076, 0.0059, 0.0052, 0.0036, 0.0028], [0.4079, 0.2474, 0.1501, 0.043, 0.0295, 0.0295, 0.0261, 0.0179], [0.5211, 0.1917, 0.0799, 0.0705, 0.0428, 0.0259, 0.0202, 0.0178], [0.5555, 0.2624, 0.0965, 0.0355, 0.019, 0.009, 0.0062, 0.0037], [0.7789, 0.1194, 0.0564, 0.0162, 0.0126, 0.0041, 0.0032, 0.0025], [0.9921, 0.0046, 0.0005, 0.0004, 0.0004, 0.0003, 0.0003, 0.0002], [0.7682, 0.1942, 0.0159, 0.0052, 0.004, 0.0028, 0.0024, 0.0017], [0.7732, 0.1522, 0.0142, 0.0125, 0.011, 0.0076, 0.0052, 0.0046], [0.9861, 0.0059, 0.0036, 0.0013, 0.0009, 0.0006, 0.0006, 0.0004]], "ranks": {"Python": [6444, 105264, 113309, 64132, 9647, 42698, 6427, 3687, 2891, 6060, 1430, 1836, 3510, 9841, 8827, 10153, 9056, 7535, 13281, 13470, 2140, 7768, 2431, 4811, 7029, 7078, 8975, 2191, 1164, 1136, 868, 1173, 1844, 2314, 2579, 1147, 333, 540, 1577, 1332, 818, 716, 695, 877, 658, 1571, 2335, 2114, 4760, 3224, 5235, 2885, 1885, 1885, 4258, 1835, 1170, 2809, 3371, 1588, 2097, 3715, 1822]}}, {"pos": 446, "top": [["\u0647", ".", "\uff0e", "u", "ly", "\uff08", "\u3002", "an"], [" \uff3b", "\u0647", " \uff1c", " \uff0f", "\uff0e", " \uff08", "ly", " \u3010"], ["\u0647", "\u5728", "\uff0e", " \uff3b", "u", "ly", "\uff08", " \uff08"], [" \uff1c", " \uff0f", "\u5728", "\u0647", "\u4e86", " \u301c", "raries", " **\u25a0"], ["\u0647", " \uff0f", " \u3010", " \uff3b", "\uff20", "\u5728", " \uff1c", "ly"], ["\u5728", "\u0647", " \uff0f", "\u4e86", "\u4e0a", "\u7684", "\u30f3", " \u301c"], ["\u5728", "\u7684", " \u3010", "\u4e86", "\u4e0a", "\u548c", " \uff3b", "\u0647"], ["\u5728", "\u4e86", "\u7684", " \u301c", " \u3010", "\u0647", "\u4e0a", " \uff0f"], ["\u5728", " \uff3b", " \u301c", "\u7684", "\u0647", " \u3010", " \uff0f", "\u4e86"], ["\u0647", "ly", "\\", "ian", "...\\", " \uff0f", "\u30f3", "u"], ["\u0647", "...\\", "ly", " \u3010", " \uff0f", "ian", "u", "\u5728"], ["ian", "\u0647", "ly", " \u301c", "raries", " \uff0f", " \uff1c", " **\u25a0"], ["\u0647", "ly", "raries", " \uff0f", "ian", " \u301c", "u", "ROID"], ["\u0647", "ly", "u", "ian", "raries", " \uff0f", "-&", "\u30f3"], ["\u0647", "u", "-&", "ly", "&amp", " \uff0f", "/&", "\u30f3"], ["u", "\u0647", "&amp", "ly", "-&", "an", "o", "ian"], ["u", "o", "ly", "\u0647", "an", "n", "v", "&amp"], ["\u0647", "u", "ly", "raries", "ic", "-&", "&amp", "ally"], ["\u0647", "raries", "u", "ly", " Nues", "\u30f3", "iev", " DVR"], ["\u0647", "u", "ly", "-&", "\u5927", "raries", " \\''", "\u30f3"], ["u", "\u0647", "\u5927", "\u5728", "v", "@", "TV", "an"], ["\u0647", "raries", ">')", " Nues", " **\u25a0", "\u52e4\u52e4\u6073\u6073", "TV", "DV"], ["\u0647", "ly", ">')", "TV", "raries", "u", " Nues", " DVR"], ["\u0647", "ly", "u", "TV", "ian", ">')", "VC", "\u30f3"], ["\u0647", "\u5927", " \u226e", "TV", " \uff0f", ">')", "VC", "u"], [" **\u25a0", " \u226e", "DTV", " Nues", "raries", " \uff0f", " YYS", "avi"], [" **\u25a0", "DTV", ">')", "avi", " \u226e", "tech", "\u0647", " ~>"], [" ...\\", "___", " \uff0f", " \\/", "\\/", "\uffe3", "tech", "ian"], [" \uff0f", "tech", "___", " ...\\", "u", "ian", " \\/", "@"], [" ...\\", " \uff0f", "___", "...\\", "ian", "u", "tech", " _____"], ["ian", " ...\\", " tech", "tech", " \uff0f", "-tech", "\uffe3", "u"], ["ian", " ...\\", " tech", "u", " \uff0f", "tech", "/", " technology"], ["/etc", " \uff0f", "tech", "/", "ian", "/V", " tech", "\uff0f"], ["tech", "/etc", " \uff0f", "-tech", "/V", " tech", "avi", "\u6216"], ["tech", "/V", "/etc", " \uff0f", "\uff0f", "\u6216", " />'", "-tech"], ["\u6216", "tech", "/V", " \uff0f", "\uff0f", " />'", "VR", "/vue"], ["tech", " Vulkan", "\u6216", "VR", "GPU", "/V", "Android", " \uff0f"], ["Android", " Vulkan", "tech", "\u6216", "GPU", " Android", " \uff0f", " GPU"], [" Vulkan", "GPU", " GPU", "Android", "\u6216", " NVIDIA", " \uff0f", "tech"], ["GPU", " Vulkan", " GPU", "Android", "\u6216", " Android", " NVIDIA", " \uff0f"], [" Vulkan", "GPU", " GPU", " OpenGL", "Android", " WebGL", "OpenGL", " shader"], [" Vulkan", "GPU", " GPU", " OpenGL", " WebGL", "Android", " Android", "OpenGL"], [" Vulkan", " GPU", " OpenGL", "GPU", " WebGL", "Android", " Android", " NVIDIA"], [" Vulkan", " GPU", "Android", " WebGL", " OpenGL", " Android", "GPU", " NVIDIA"], [" Vulkan", " WebGL", " GPU", " OpenGL", "GPU", "Android", " Android", " NVIDIA"], [" Vulkan", " WebGL", " GPU", " OpenGL", "/etc", " APIs", "/V", "GPU"], ["/etc", " Vulkan", "/V", " WebGL", " GPU", "/OR", "/API", "/u"], ["/etc", "/V", "/", " Vulkan", "\uff0f", "/u", "/Z", "/i"], ["/etc", "/V", " Vulkan", "/Z", " GPU", " WebGL", "/API", "/X"], ["/etc", "/V", " Vulkan", "/X", "/Z", "/Framework", "/API", "/Game"], ["/V", "/etc", "/X", "/Z", " Vulkan", "/G", "/M", "/v"], ["/V", "/etc", " Vulkan", "/X", "/Game", "/M", " WebGL", "OpenGL"], ["/V", " Vulkan", "/etc", " OpenGL", "OpenGL", "/X", " GPU", " WebGL"], ["/V", " Vulkan", "/etc", "OpenGL", "/android", " OpenGL", " shader", "/GL"], ["/V", " Vulkan", " OpenGL", "OpenGL", " shader", " WebGL", " GLES", " GPU"], [" Vulkan", " OpenGL", "OpenGL", " shader", " GPU", "GPU", " GLES", " WebGL"], [" Vulkan", " shader", " OpenGL", " GLES", " GPU", " WebGL", "OpenGL", "GPU"], [" Vulkan", " OpenGL", " shader", " GLES", " GPU", "ulkan", "OpenGL", "GPU"], [" Vulkan", "ulkan", " Metal", " OpenGL", " shader", " GLES", "OpenGL", "Metal"], [" Vulkan", "ulkan", " vul", " Vulcan", "VK", " Metal", "Vk", " OpenGL"], [" Vulkan", "ulkan", " vul", " Metal", " Vulcan", "Metal", "VK", "-metal"], ["ulkan", " Vulkan", " vul", "/V", "VK", " Vulcan", " VK", " Metal"], ["ulkan", " Vulkan", "ulk", " vul", "VK", "ULK", "Vk", " VK"]], "p": [[0.1148, 0.1014, 0.0952, 0.0697, 0.0615, 0.02, 0.0176, 0.0155], [0.3182, 0.2989, 0.0488, 0.0458, 0.0315, 0.0278, 0.0217, 0.0109], [0.1091, 0.0548, 0.0455, 0.0401, 0.0401, 0.0276, 0.0276, 0.0259], [0.1264, 0.0816, 0.0437, 0.041, 0.0385, 0.0362, 0.034, 0.0282], [0.1526, 0.1265, 0.0767, 0.0636, 0.0636, 0.0495, 0.0341, 0.032], [0.327, 0.0777, 0.0501, 0.0345, 0.0268, 0.0163, 0.0153, 0.0127], [0.3544, 0.0656, 0.0543, 0.0511, 0.048, 0.0351, 0.033, 0.031], [0.1797, 0.0749, 0.0749, 0.0454, 0.0401, 0.0401, 0.0354, 0.0332], [0.078, 0.0733, 0.0504, 0.0444, 0.0444, 0.0418, 0.0368, 0.0325], [0.1352, 0.082, 0.025, 0.0221, 0.0183, 0.0172, 0.0152, 0.0143], [0.1017, 0.0955, 0.0897, 0.0398, 0.0351, 0.031, 0.031, 0.0274], [0.043, 0.043, 0.0356, 0.0335, 0.0295, 0.0179, 0.0085, 0.0066], [0.0583, 0.0583, 0.0353, 0.0312, 0.0293, 0.0178, 0.0115, 0.0058], [0.1042, 0.0919, 0.0338, 0.0263, 0.0205, 0.0124, 0.0097, 0.008], [0.1435, 0.0637, 0.0438, 0.0386, 0.022, 0.0133, 0.0111, 0.0111], [0.1983, 0.0827, 0.0605, 0.0568, 0.0324, 0.0184, 0.0127, 0.0112], [0.4212, 0.057, 0.0503, 0.0473, 0.0368, 0.0238, 0.0197, 0.0153], [0.0729, 0.0643, 0.0127, 0.0127, 0.006, 0.0056, 0.005, 0.0044], [0.0961, 0.0189, 0.0178, 0.0061, 0.0048, 0.004, 0.0037, 0.0035], [0.0513, 0.0156, 0.0089, 0.0084, 0.0054, 0.0051, 0.0045, 0.004], [0.1854, 0.0365, 0.0322, 0.0195, 0.0195, 0.0172, 0.0111, 0.0098], [0.0168, 0.0079, 0.0058, 0.0051, 0.0035, 0.0035, 0.0031, 0.0029], [0.0328, 0.0069, 0.0061, 0.0054, 0.005, 0.0039, 0.0035, 0.0027], [0.0404, 0.0203, 0.0168, 0.0116, 0.0066, 0.0043, 0.004, 0.0033], [0.006, 0.0044, 0.0039, 0.0039, 0.0032, 0.0032, 0.0028, 0.0021], [0.0106, 0.0044, 0.0027, 0.0021, 0.0021, 0.0018, 0.0018, 0.0017], [0.0092, 0.0043, 0.0034, 0.0032, 0.003, 0.0026, 0.0025, 0.0023], [0.0269, 0.0252, 0.0112, 0.0099, 0.0087, 0.0072, 0.0068, 0.0068], [0.0474, 0.0211, 0.0198, 0.0145, 0.0145, 0.0106, 0.0077, 0.0064], [0.2035, 0.0312, 0.0275, 0.0275, 0.0259, 0.0243, 0.013, 0.0108], [0.0612, 0.0421, 0.0421, 0.0255, 0.024, 0.0113, 0.0106, 0.0088], [0.0572, 0.0446, 0.037, 0.0239, 0.0175, 0.0175, 0.0145, 0.0088], [0.0728, 0.047, 0.047, 0.0344, 0.0285, 0.0173, 0.0153, 0.0143], [0.0741, 0.0614, 0.0241, 0.0146, 0.0114, 0.0078, 0.0065, 0.0057], [0.0763, 0.0435, 0.0409, 0.0193, 0.0141, 0.0103, 0.0052, 0.0052], [0.0721, 0.0301, 0.0234, 0.0171, 0.0151, 0.0092, 0.0071, 0.0059], [0.0485, 0.0428, 0.0354, 0.0244, 0.0215, 0.0202, 0.019, 0.0157], [0.0957, 0.0658, 0.0311, 0.0292, 0.0242, 0.0227, 0.0166, 0.0156], [0.1525, 0.0816, 0.0527, 0.0495, 0.0465, 0.0182, 0.0161, 0.0161], [0.1835, 0.1619, 0.0675, 0.0596, 0.0436, 0.0117, 0.011, 0.0104], [0.2369, 0.1733, 0.1051, 0.0599, 0.0563, 0.0466, 0.025, 0.022], [0.227, 0.156, 0.1465, 0.0946, 0.0476, 0.0394, 0.0211, 0.0198], [0.189, 0.1472, 0.1077, 0.0838, 0.0613, 0.035, 0.0308, 0.0256], [0.1725, 0.0923, 0.0719, 0.0676, 0.0596, 0.0526, 0.0494, 0.0219], [0.1966, 0.0988, 0.0988, 0.0497, 0.0467, 0.0467, 0.0301, 0.0207], [0.2372, 0.1052, 0.0989, 0.0302, 0.0235, 0.0183, 0.0183, 0.0183], [0.5275, 0.0461, 0.0359, 0.0232, 0.018, 0.017, 0.0159, 0.0141], [0.4527, 0.0837, 0.0308, 0.024, 0.0187, 0.0137, 0.0121, 0.0113], [0.4576, 0.0702, 0.0547, 0.0167, 0.0138, 0.0108, 0.0084, 0.0079], [0.3237, 0.1268, 0.0562, 0.0183, 0.0161, 0.0142, 0.0111, 0.0092], [0.6346, 0.2335, 0.0132, 0.0075, 0.0062, 0.0055, 0.0052, 0.0043], [0.7526, 0.1154, 0.0311, 0.0039, 0.0037, 0.0033, 0.0025, 0.0024], [0.6061, 0.1737, 0.0439, 0.0172, 0.0118, 0.0111, 0.0063, 0.0059], [0.473, 0.2532, 0.0267, 0.0251, 0.0221, 0.0195, 0.0087, 0.0076], [0.5116, 0.3984, 0.0327, 0.0225, 0.0106, 0.003, 0.0027, 0.0018], [0.5926, 0.1167, 0.0708, 0.0551, 0.0334, 0.0334, 0.026, 0.0139], [0.7855, 0.0569, 0.0502, 0.0185, 0.0163, 0.0144, 0.0144, 0.0099], [0.9361, 0.0134, 0.0118, 0.0071, 0.0063, 0.0049, 0.0034, 0.0026], [0.9899, 0.0028, 0.0019, 0.0017, 0.0009, 0.0005, 0.0004, 0.0004], [0.986, 0.0097, 0.0031, 0.0003, 0.0002, 0.0002, 0.0002, 0.0], [0.6388, 0.3419, 0.008, 0.0071, 0.0011, 0.0007, 0.0003, 0.0003], [0.85, 0.1303, 0.0107, 0.0039, 0.0009, 0.0008, 0.0004, 0.0004], [0.9971, 0.0022, 0.0002, 0.0001, 0.0001, 0.0, 0.0, 0.0]], "ranks": {"Python": [52010, 188418, 214059, 178959, 127687, 186734, 117829, 159980, 140919, 117007, 49662, 107477, 110573, 158370, 159669, 134001, 131087, 94761, 114616, 153115, 19228, 116874, 110007, 110958, 46924, 58816, 38014, 24467, 4355, 7738, 8565, 7619, 3581, 4921, 2689, 674, 118, 235, 409, 348, 190, 330, 423, 411, 407, 1749, 2787, 1274, 1662, 1702, 954, 482, 282, 268, 718, 380, 647, 1176, 1133, 814, 667, 668, 358]}}, {"pos": 447, "top": [["@\"", " \u2013", ".", "@", " ", ":\"", "\"", " @"], ["@\"", " (@", "[\"@", ":\\\"", " (\u201e", " \u2013", " @", " \u00b7"], [" \u2013", "\u200b\u200b", " (\u201e", "@\"", ":\\\"", "\u201e", "[", "\u2013"], ["``", " *\u201e", " ``", ":\\\"", "*\u201c.", "\\\":\\\"", " \\\"\"", " **\u201e"], [" *\u201e", " (\u201e", ":\\\"", "``", "@\"", "{\\\"", "(\\\"", "\"@"], [" *\u201e", " (\u201e", " Vulkan", ":\\\"", " Vk", "?\u201c", " **\u201e", "!\u201c"], ["\u200b\u200b", "raries", "\u201e", " (\u201e", " *\u201e", ".\\\"", ":\\\"", " UAV"], [":\\\"", " *\u201e", " (\u201e", "raries", ".\\\"", "``", " **\u201e", "{\\\""], [".\\\"", ":\\\"", "\u200b\u200b", " *\u201e", " (\u201e", " \u200b\u200b", ".\u00ab", ".\u00bb"], [".\\\"", ",\\\"", "ized", " Vulkan", "-era", "-themed", "-inspired", ".\""], [".\\\"", "\\u", "\u200b\u200b", ",\\\"", "-era", ":\\\"", ".\"", " \u200b\u200b"], ["{\\\"", " Vulkan", " LGBTQ", ".\\\"", " TikTok", ":\\\"", "-themed", "-era"], [" Vulkan", "-era", " LGBTQ", ".\\\"", "-themed", "-inspired", "\u200b\u200b", " \u200b\u200b"], ["-era", " LGBTQ", " Vulkan", "-inspired", "-esque", "-themed", " TikTok", ".\\\""], ["-era", "-inspired", " LGBTQ", ".\\\"", "-esque", " Vulkan", " showcase", " theater"], [" LGBTQ", "-era", " showcase", "-esque", " \u200b\u200b", " Vulkan", "-inspired", " TikTok"], [" \u200b\u200b", "-esque", "\u200b\u200b", "-era", " LGBTQ", " showcase", " Vulkan", " TikTok"], [" Vulkan", " LGBTQ", "-esque", "-era", " TikTok", "\u200b\u200b", " \u200b\u200b", " esports"], [" Vulkan", " LGBTQ", "-esque", "-era", " TikTok", "-inspired", " Ukraine", " esports"], ["-esque", " Vulkan", "-era", " LGBTQ", "\\u", " TikTok", " esports", "-inspired"], [" Vulkan", "\\u", "-esque", "-era", " Ukrainian", " Ukraine", "-inspired", " TikTok"], [" Vulkan", " LGBTQ", " Ukraine", " esports", " TikTok", " Ukrainian", " geopolitical", "-esque"], [" Vulkan", " Ukraine", " esports", "-esque", " Ukrainian", " TikTok", " aerospace", " LGBTQ"], [" Vulkan", " Russian", "-esque", " Ukraine", " Russia", " Ukrainian", " V", " VK"], [" Vulkan", "\\u", "-esque", " Ukraine", " Ukrainian", "-era", " aerospace", " Russian"], [" Vulkan", " Ukraine", " aerospace", " Ukrainian", " Putin", " esports", " Russian", " GPU"], [" Vulkan", " aerospace", " Ukraine", " esports", " SpaceX", " Ukrainian", " Putin", " GPU"], [" Vulkan", " Ukraine", " aerospace", " Ukrainian", " SpaceX", " esports", " Putin", " NATO"], [" Vulkan", " Ukraine", " Putin", " Ukrainian", " SpaceX", " aerospace", " esports", " GPU"], [" Vulkan", " Ukraine", " Putin", " esports", " technology", " SpaceX", " Ukrainian", " technologies"], [" Vulkan", " Ukraine", " technology", " SpaceX", " Putin", " technologies", " esports", " aerospace"], [" Vulkan", " \u200b\u200b", " technology", " technologies", " Putin", " Ukraine", " Russian", " esports"], [" Vulkan", " technology", " technologies", " esports", " GPU", " Putin", " \u200b\u200b", " infrastructure"], [" Vulkan", " technology", " technologies", " tech", " esports", " GPU", " infrastructure", " blockchain"], [" Vulkan", " technology", " technologies", " infrastructure", " tech", " esports", " GPU", " blockchain"], [" Vulkan", " \u200b\u200b", " technology", " GPU", " esports", " tech", " infrastructure", " technologies"], [" Vulkan", " \u200b\u200b", " GPU", " technology", " esports", " infrastructure", " interoper", " technologies"], [" Vulkan", " \u200b\u200b", " GPU", " technology", " infrastructure", " protocols", " interoper", " esports"], [" Vulkan", " \u200b\u200b", " GPU", " technology", " infrastructure", " protocols", " workflows", " hardware"], [" Vulkan", " \u200b\u200b", " GPU", " protocols", " technology", "\u200b\u200b", " workflows", " shaders"], [" Vulkan", " GPU", " \u200b\u200b", " protocols", " shaders", " technology", " shader", " workflows"], [" Vulkan", " GPU", " hardware", " APIs", " shaders", " OpenGL", " shader", " GPUs"], [" Vulkan", " GPU", " protocols", " APIs", " interfaces", " shaders", " hardware", " interface"], [" Vulkan", " GPU", " protocols", " APIs", " interfaces", " workflows", " hardware", " shaders"], [" Vulkan", " protocols", " GPU", " interfaces", " APIs", " interface", " hardware", " workflows"], [" Vulkan", " protocols", " APIs", " GPU", " hardware", " interactions", " interfaces", " interface"], [" Vulkan", " protocols", " APIs", " interfaces", " shaders", " interactions", " workflows", " hardware"], [" protocols", " Vulkan", " APIs", " interactions", " interfaces", " hardware", " shaders", " deployments"], [" Vulkan", " protocols", " APIs", " shaders", " interfaces", " GPU", " interactions", "/etc"], [" interfaces", " interactions", " protocols", " Vulkan", " APIs", "/etc", " workflows", " inputs"], ["/etc", "/V", " interactions", "/v", " inputs", " Vulkan", "/X", "/API"], ["/etc", "/V", "/API", " shader", "/X", " GPU", " calls", "/K"], [" shader", " GPU", " renders", " updates", " framebuffer", " OpenGL", "/etc", " Vulkan"], [" shader", " GPU", " framebuffer", " renders", " shaders", " calls", " OpenGL", "API"], [" calls", " shader", "calls", " Calls", " call", "\u8c03\u7528", "Calls", " API"], [" calls", " shader", " call", " OpenGL", "calls", "\u8c03\u7528", " API", " GPU"], [" calls", " commands", " shader", " call", "\u8c03\u7528", " OpenGL", "calls", " render"], [" calls", " shader", " call", " commands", "calls", "\u8c03\u7528", " draw", " vertex"], [" calls", " call", " shader", " API", " commands", "\u8c03\u7528", " command", "calls"], [" draw", " calls", " call", " API", " shader", " command", " commands", " vertex"], [" call", " calls", " draw", " API", " shader", " command", " vertex", " frame"], [" call", " draw", " API", " command", " calls", " vertex", " shader", " primitive"], [" call", " command", " draw", " API", "/V", " vertex", " shader", "/D"]], "p": [[0.3678, 0.0821, 0.053, 0.053, 0.0364, 0.0195, 0.0183, 0.0126], [0.2472, 0.1243, 0.091, 0.0487, 0.0356, 0.0335, 0.0245, 0.0203], [0.2325, 0.1245, 0.1098, 0.0855, 0.043, 0.0357, 0.0278, 0.0261], [0.5133, 0.0449, 0.0272, 0.0256, 0.0137, 0.0121, 0.0083, 0.0083], [0.1245, 0.0855, 0.0855, 0.0755, 0.0335, 0.0179, 0.0131, 0.0116], [0.0349, 0.0328, 0.0308, 0.0176, 0.0137, 0.0121, 0.0107, 0.0094], [0.0518, 0.0379, 0.0277, 0.0179, 0.0168, 0.0158, 0.0131, 0.0109], [0.0606, 0.0569, 0.0305, 0.0253, 0.0237, 0.0237, 0.0209, 0.0119], [0.0587, 0.0356, 0.0356, 0.0277, 0.023, 0.0191, 0.0139, 0.0123], [0.0366, 0.0135, 0.0105, 0.0105, 0.0092, 0.0087, 0.0087, 0.0082], [0.2854, 0.087, 0.0598, 0.0234, 0.0194, 0.0171, 0.0161, 0.0142], [0.0182, 0.0171, 0.0171, 0.0142, 0.0117, 0.0104, 0.0091, 0.0076], [0.0328, 0.0308, 0.029, 0.0226, 0.0176, 0.0176, 0.0155, 0.0113], [0.0501, 0.039, 0.0285, 0.0196, 0.0143, 0.0135, 0.0105, 0.0082], [0.0447, 0.0175, 0.0175, 0.0154, 0.012, 0.012, 0.0083, 0.0073], [0.0237, 0.0196, 0.0173, 0.0153, 0.0119, 0.0119, 0.0099, 0.0072], [0.0852, 0.0378, 0.0244, 0.0215, 0.0202, 0.0168, 0.0123, 0.0102], [0.0527, 0.0386, 0.0282, 0.0265, 0.0182, 0.0142, 0.0118, 0.0104], [0.0611, 0.0507, 0.0394, 0.0164, 0.0136, 0.0113, 0.0106, 0.0083], [0.0653, 0.0541, 0.0256, 0.0212, 0.0212, 0.0129, 0.0121, 0.0107], [0.0324, 0.0305, 0.0286, 0.0163, 0.0093, 0.0087, 0.0077, 0.0064], [0.1919, 0.019, 0.0158, 0.0158, 0.0123, 0.0102, 0.0084, 0.0074], [0.2978, 0.0158, 0.0115, 0.0115, 0.0102, 0.0075, 0.0075, 0.0066], [0.1411, 0.0085, 0.008, 0.008, 0.0062, 0.0051, 0.0048, 0.0045], [0.3987, 0.0307, 0.0271, 0.0165, 0.0145, 0.0128, 0.012, 0.0094], [0.744, 0.0255, 0.0154, 0.0145, 0.0113, 0.0078, 0.0044, 0.0042], [0.8172, 0.0232, 0.0091, 0.0085, 0.0071, 0.0066, 0.0043, 0.004], [0.5964, 0.0262, 0.0217, 0.0204, 0.0109, 0.0096, 0.0096, 0.0091], [0.6188, 0.0328, 0.0187, 0.0146, 0.0128, 0.0121, 0.0088, 0.0088], [0.3663, 0.032, 0.0249, 0.0182, 0.0171, 0.0171, 0.0111, 0.0111], [0.4055, 0.0229, 0.0215, 0.0178, 0.0167, 0.0167, 0.0139, 0.0139], [0.166, 0.0476, 0.0447, 0.0225, 0.0225, 0.0225, 0.0145, 0.0136], [0.2688, 0.0387, 0.0283, 0.0183, 0.0142, 0.0142, 0.0126, 0.0111], [0.1602, 0.0711, 0.052, 0.0231, 0.0191, 0.0191, 0.0191, 0.0169], [0.1919, 0.0623, 0.0333, 0.0294, 0.026, 0.0229, 0.0215, 0.0178], [0.2566, 0.0783, 0.0326, 0.0224, 0.0145, 0.012, 0.0106, 0.0093], [0.4315, 0.085, 0.0229, 0.0167, 0.0101, 0.0084, 0.0066, 0.0066], [0.5024, 0.068, 0.0207, 0.0134, 0.0111, 0.0067, 0.0067, 0.0067], [0.4775, 0.155, 0.0223, 0.0093, 0.0093, 0.0082, 0.0056, 0.0056], [0.7457, 0.0694, 0.0175, 0.0042, 0.0039, 0.0039, 0.0032, 0.003], [0.871, 0.0181, 0.0097, 0.0033, 0.0031, 0.003, 0.0026, 0.002], [0.7892, 0.0609, 0.0064, 0.006, 0.0057, 0.0047, 0.0047, 0.0044], [0.69, 0.047, 0.0135, 0.0135, 0.0087, 0.0082, 0.0077, 0.0068], [0.5169, 0.0374, 0.031, 0.02, 0.0122, 0.0095, 0.0095, 0.0089], [0.2932, 0.0741, 0.035, 0.0256, 0.0241, 0.02, 0.0176, 0.0155], [0.2056, 0.0488, 0.0336, 0.0278, 0.0261, 0.0261, 0.0217, 0.0204], [0.1388, 0.1016, 0.0544, 0.0423, 0.031, 0.0257, 0.0241, 0.0213], [0.1249, 0.0669, 0.0628, 0.0406, 0.0406, 0.0217, 0.0217, 0.0169], [0.1074, 0.0738, 0.0575, 0.0421, 0.0395, 0.0289, 0.024, 0.0212], [0.0586, 0.0486, 0.0334, 0.0277, 0.0277, 0.026, 0.0244, 0.0244], [0.2477, 0.1411, 0.0116, 0.0102, 0.0102, 0.0096, 0.009, 0.009], [0.2014, 0.1384, 0.0577, 0.029, 0.0146, 0.0129, 0.0121, 0.0094], [0.2806, 0.071, 0.0335, 0.0278, 0.0245, 0.0216, 0.0191, 0.0179], [0.3213, 0.0763, 0.0384, 0.0318, 0.017, 0.015, 0.0141, 0.0141], [0.9299, 0.0193, 0.017, 0.0063, 0.0055, 0.0038, 0.0034, 0.0016], [0.7417, 0.0886, 0.0254, 0.0224, 0.0136, 0.012, 0.012, 0.0064], [0.7574, 0.0905, 0.0377, 0.0229, 0.0108, 0.0095, 0.0084, 0.0051], [0.6151, 0.1997, 0.0648, 0.0186, 0.0145, 0.0113, 0.0088, 0.0068], [0.6017, 0.2214, 0.0264, 0.0233, 0.0182, 0.016, 0.0125, 0.0097], [0.4434, 0.1849, 0.1121, 0.1121, 0.0321, 0.0195, 0.0134, 0.0092], [0.6368, 0.0977, 0.0977, 0.0862, 0.0192, 0.0132, 0.0038, 0.0033], [0.8047, 0.0749, 0.0312, 0.0167, 0.0147, 0.0095, 0.0084, 0.0037], [0.821, 0.0463, 0.0318, 0.0181, 0.016, 0.0125, 0.0063, 0.0034]], "ranks": {"Python": [9326, 57807, 86225, 84893, 12725, 33321, 7568, 29877, 16026, 30770, 2400, 9356, 4884, 9251, 8822, 9516, 12398, 13533, 24917, 34443, 10200, 25966, 7620, 8259, 4328, 6043, 6117, 2593, 1786, 2031, 2232, 3156, 4672, 4461, 5159, 2638, 1817, 2131, 2145, 3175, 1302, 1855, 1204, 1447, 2157, 3373, 4961, 7276, 10140, 11969, 10988, 5073, 7711, 9020, 14120, 7450, 5488, 8719, 5987, 1833, 1162, 551, 675]}}, {"pos": 448, "top": [[".", ",", " ", ";", "!", "?", "-", "\u00a0\u00a0"], ["  \n", "  ", " Downing", "   \n", "ment", "sville", " Call", " \u00a0"], [",", ".", "\u2013", "!", "[", "?", ";", " \u2013"], ["sworth", " ``", "\ufffd\ufffd", "CallCheck", " \u041f\u043e\u043f\u0440\u043e", "\u636e\u4ecb\u7ecd", " \u0421\u043e\u043e\u0431", ",''"], ["sworth", "ss", "ingly", "!", "ship", "itude", "@", "spot"], ["ss", "spot", "sworth", "!", "server", "sg", "call", "ingly"], ["to", "!", "ss", "  \n", "--", "---", "@", "sworth"], ["sworth", "!", "to", "ss", "-call", "itude", "ings", "spot"], ["!", "  \n\n\n", "  \n\n", "...", ".", ",", "  \n", "to"], [",", "!", "to", ";", "\u00ading", "sworth", ".Call", "..."], ["...", ",", "<|endoftext|>", "to", "!", ".", ";", " [...]"], ["to", " ''", "sworth", " `", " '''", "...", ".Call", "''"], [" ''", "sworth", "to", " `", " invoc", "ingly", "''", "-esque"], ["to", ",", "--", " '", " arguably", " swiftly", "-esque", " seemingly"], ["<|endoftext|>", "--", "to", " '", " ", " yet", " `", " --"], [" arguably", " swiftly", " --", "--", " effortlessly", " seemingly", " ever", " yet"], [",", " arguably", "to", "e", " seemingly", " swiftly", "--", "<|endoftext|>"], ["-esque", " arguably", " tweaked", " tweaking", " effortlessly", " seemingly", " swiftly", " potentially"], [" --", " arguably", "-esque", " seemingly", " tweaked", "--", " effortlessly", " ostensibly"], [" --", "--", " seemingly", " arguably", " swiftly", " ostensibly", " merely", " myriad"], ["<|endoftext|>", " --", "--", "[[", " though", " seemingly", " swiftly", "@"], [" ``", " ''", " --", " '''", "''", " arguably", " seemingly", " ``("], [" ``", " ''", " --", " '''", "``", "''", " ``(", " `"], [" ``", " ''", " --", " `", " that", "''", " '", " ultimately"], [" --", " ''", " ``", "--", "[[", " [[", "''", " seemingly"], [" ``", " --", " ''", " __", " ---", ".__", " _", " **"], [" ``", " --", " ''", " _", " __", " ---", " ___", " `"], [" --", " _", " ``", " ''", " `", " __", " ,", " ---"], [" --", " _", " ``", " __", " ''", " ---", " ,", " ___"], [" --", " ``", " _", " __", " ''", " .", " ,", " that"], [" .", " --", " ``", " even", " that", " via", " ,", " to"], [" .", " ,", " that", " to", " --", " over", " even", " much"], [" even", " .", " heavily", " much", " often", " over", " quickly", " via"], [" heavily", " even", " \u2014", " vastly", " notoriously", " wildly", " often", "\u2014or"], [" vastly", " notoriously", " inevitably", " heavily", " wildly", " effectively", " dramatically", " massively"], [" \u2014", " notoriously", " inevitably", " vastly", "\u2014or", " heavily", "\u2014even", " wildly"], [" inevitably", " inefficient", " notoriously", " vastly", " ineff", " inevitable", " \u2014", " dramatically"], [" inevitably", " vastly", " inefficient", " notoriously", " impossible", " ineff", " inevitable", " dramatically"], [" inevitably", " notoriously", " inefficient", " vastly", " dramatically", " inevitable", " impossible", " ineff"], [" inevitable", " inefficient", " inevitably", " notoriously", " ineff", " impossible", " dramatically", " vastly"], [" inefficient", " ineff", " inevitable", " slow", " inevitably", " dramatically", " speed", " rapidly"], [" inefficient", " ineff", " inevitable", " inevitably", " bottleneck", " vastly", " dramatically", " slow"], [" inefficient", " ineff", " bottleneck", " inevitable", " inevitably", " dramatically", " massively", " vastly"], [" inefficient", " inevitably", " inevitable", " ineff", " bottleneck", " vastly", " dramatically", " massively"], [" inefficient", " inevitable", " inevitably", " ineff", " impossible", " bottleneck", " massively", " overhead"], [" inevitably", " inevitable", " impossible", " massively", " inefficient", " ineff", " bottleneck", " vastly"], [" inevitable", " inevitably", " impossible", " unavoidable", " bottleneck", " ineff", " massively", " vastly"], [" inevitably", " inevitable", " bottleneck", " impossible", " unavoidable", " overwhel", " ineff", " exceeds"], [" would", " inevitably", " will", " inevitable", " exceeds", "\u4f1a\u5bfc\u81f4", " overwhel", " impossible"], [" would", " will", " overwhel", "\u4f1a\u5bfc\u81f4", " inevitable", " inevitably", " exceeds", "would"], ["\u4f1a\u5bfc\u81f4", " overwhel", " will", " exceeds", " violates", " would", " inevitable", " inevitably"], [" will", "\u4f1a\u5bfc\u81f4", " would", " overwhel", " exceeds", " inevitably", "will", " inevitable"], [" overwhel", " will", " exceeds", "\u4f1a\u5bfc\u81f4", "will", " violates", " overwhelm", " destroys"], [" will", "will", " exceeds", " overwhel", "\u4f1a\u5bfc\u81f4", " violates", " destroys", " WILL"], [" will", "will", " exceeds", " WILL", " akan", " s\u1ebd", " guarantees", "\u5c06\u4f7f"], [" will", "will", " exceeds", " WILL", " akan", " guarantees", " s\u1ebd", "\u5c06\u4f7f"], [" will", "will", " guarantees", " WILL", " akan", " s\u1ebd", "\u5c06\u4f7f", " guarantee"], [" will", "will", " guarantees", " WILL", " guarantee", "\u5c06\u6210\u4e3a", "\u5c06\u4f7f", " akan"], [" will", " guarantees", "will", " guarantee", " guaranteed", " exceeds", " \u0433\u0430\u0440\u0430\u043d\u0442\u0438", " destroys"], [" will", "will", " guarantees", " guarantee", " WILL", " exceeds", " guaranteed", " destroys"], [" will", "will", " guarantees", " WILL", " guarantee", " Will", "Will", " guaranteed"], [" will", "will", " WILL", " guarantees", " guarantee", " creates", " exceeds", " Will"], [" will", "will", " creates", " WILL", " guarantees", " guarantee", " Will", " create"]], "p": [[0.7308, 0.2094, 0.0207, 0.0067, 0.0059, 0.0028, 0.0028, 0.0012], [0.0322, 0.0208, 0.0044, 0.0041, 0.0038, 0.0025, 0.0023, 0.0021], [0.3797, 0.2957, 0.0847, 0.0483, 0.0293, 0.0258, 0.0178, 0.0054], [0.0629, 0.0262, 0.0062, 0.0035, 0.0035, 0.0024, 0.0019, 0.0019], [0.0201, 0.0167, 0.0157, 0.0101, 0.0089, 0.0058, 0.0048, 0.0045], [0.0086, 0.0081, 0.0076, 0.0067, 0.0059, 0.0038, 0.0038, 0.0038], [0.0805, 0.0667, 0.0488, 0.0191, 0.0131, 0.0096, 0.0096, 0.0075], [0.1321, 0.0334, 0.0277, 0.0139, 0.0131, 0.0066, 0.0058, 0.0051], [0.1753, 0.0938, 0.0416, 0.0345, 0.0253, 0.0163, 0.0153, 0.0119], [0.0955, 0.0227, 0.02, 0.0114, 0.0051, 0.0033, 0.0031, 0.0027], [0.327, 0.0685, 0.0568, 0.0501, 0.0345, 0.0324, 0.0196, 0.0119], [0.0088, 0.0077, 0.0064, 0.0044, 0.0041, 0.0041, 0.0037, 0.0032], [0.0114, 0.0101, 0.0058, 0.0045, 0.004, 0.0026, 0.0026, 0.0023], [0.026, 0.0108, 0.007, 0.0048, 0.004, 0.0033, 0.0029, 0.0026], [0.0704, 0.0427, 0.0115, 0.0101, 0.0089, 0.0084, 0.0074, 0.007], [0.0151, 0.0098, 0.0092, 0.0067, 0.0063, 0.0059, 0.0046, 0.0046], [0.0477, 0.0146, 0.0128, 0.0107, 0.0094, 0.0083, 0.0083, 0.0065], [0.0096, 0.009, 0.0051, 0.0045, 0.0033, 0.0033, 0.0029, 0.0026], [0.0385, 0.0362, 0.0234, 0.0142, 0.0081, 0.0071, 0.0067, 0.0059], [0.256, 0.0347, 0.0164, 0.0154, 0.0154, 0.0088, 0.0053, 0.0053], [0.9014, 0.0073, 0.0047, 0.0017, 0.0014, 0.0012, 0.0011, 0.0007], [0.5399, 0.3275, 0.0153, 0.0039, 0.0018, 0.0011, 0.0011, 0.0009], [0.7499, 0.2149, 0.0156, 0.0011, 0.0008, 0.0008, 0.0005, 0.0004], [0.4259, 0.2583, 0.095, 0.0054, 0.0035, 0.0033, 0.0031, 0.0027], [0.3331, 0.0791, 0.0579, 0.0423, 0.0241, 0.0177, 0.0094, 0.0078], [0.416, 0.2227, 0.0638, 0.0321, 0.0283, 0.0086, 0.0081, 0.0067], [0.6057, 0.1531, 0.0529, 0.0302, 0.0235, 0.0126, 0.0043, 0.0034], [0.3685, 0.1056, 0.0772, 0.0365, 0.0183, 0.0162, 0.0126, 0.0118], [0.1932, 0.1932, 0.0971, 0.0912, 0.0336, 0.0149, 0.0131, 0.0123], [0.1688, 0.109, 0.0904, 0.0515, 0.0484, 0.0189, 0.0178, 0.0157], [0.1227, 0.031, 0.0242, 0.0242, 0.0188, 0.0156, 0.0147, 0.0129], [0.164, 0.0323, 0.0208, 0.0184, 0.0162, 0.0143, 0.0143, 0.0112], [0.0626, 0.043, 0.0203, 0.0191, 0.0158, 0.0149, 0.0149, 0.0149], [0.0368, 0.0253, 0.021, 0.0197, 0.0185, 0.0174, 0.0144, 0.0135], [0.0544, 0.0424, 0.0374, 0.033, 0.02, 0.0166, 0.0166, 0.0156], [0.1023, 0.0583, 0.0583, 0.0454, 0.0275, 0.0214, 0.0201, 0.0147], [0.0781, 0.0781, 0.0689, 0.0647, 0.0418, 0.0287, 0.021, 0.0197], [0.0734, 0.0648, 0.0572, 0.0537, 0.0393, 0.0369, 0.0347, 0.0347], [0.0711, 0.0668, 0.0521, 0.0489, 0.0432, 0.0432, 0.0381, 0.0358], [0.0691, 0.0649, 0.0649, 0.0446, 0.0419, 0.0306, 0.0224, 0.0211], [0.11, 0.0627, 0.0627, 0.0405, 0.038, 0.0217, 0.0204, 0.0191], [0.1275, 0.0773, 0.0499, 0.0414, 0.0285, 0.0236, 0.0208, 0.0184], [0.0971, 0.0589, 0.0459, 0.0315, 0.0246, 0.0246, 0.0217, 0.0204], [0.0661, 0.0621, 0.0621, 0.0454, 0.0401, 0.0293, 0.0259, 0.0243], [0.0747, 0.0702, 0.0582, 0.0513, 0.04, 0.04, 0.0201, 0.0177], [0.1027, 0.0907, 0.0456, 0.0313, 0.0294, 0.026, 0.0229, 0.0229], [0.2347, 0.1828, 0.0593, 0.0232, 0.0218, 0.0181, 0.015, 0.0124], [0.2682, 0.2367, 0.0207, 0.0171, 0.0151, 0.0134, 0.0125, 0.0125], [0.1762, 0.1211, 0.0833, 0.0782, 0.0419, 0.0393, 0.0393, 0.0175], [0.1735, 0.1735, 0.0928, 0.0819, 0.0599, 0.0599, 0.0364, 0.0172], [0.1874, 0.146, 0.1003, 0.0885, 0.0474, 0.0445, 0.0369, 0.0238], [0.3442, 0.1118, 0.0986, 0.0768, 0.0678, 0.0411, 0.0411, 0.022], [0.3007, 0.2654, 0.1824, 0.0407, 0.0192, 0.0159, 0.0159, 0.0141], [0.6891, 0.1198, 0.0566, 0.0441, 0.0143, 0.0077, 0.0077, 0.0056], [0.922, 0.0668, 0.0033, 0.0014, 0.001, 0.0007, 0.0007, 0.0006], [0.9649, 0.0291, 0.0015, 0.001, 0.0006, 0.0005, 0.0004, 0.0003], [0.9302, 0.0463, 0.0117, 0.0018, 0.0012, 0.0011, 0.001, 0.001], [0.9066, 0.0657, 0.0129, 0.0018, 0.0015, 0.001, 0.0008, 0.0007], [0.8168, 0.0861, 0.0522, 0.017, 0.0055, 0.0023, 0.0018, 0.0018], [0.9733, 0.0157, 0.004, 0.0009, 0.0006, 0.0006, 0.0004, 0.0003], [0.9861, 0.0097, 0.0012, 0.0007, 0.0004, 0.0002, 0.0002, 0.0001], [0.9932, 0.0041, 0.0006, 0.0005, 0.0002, 0.0002, 0.0001, 0.0001], [0.9928, 0.0022, 0.0014, 0.0005, 0.0005, 0.0003, 0.0002, 0.0001]], "ranks": {"Python": [15525, 161109, 89781, 94237, 19278, 94084, 12776, 16574, 14935, 16865, 8003, 9914, 24972, 10669, 19333, 16405, 17203, 8039, 3996, 11475, 5268, 2202, 1796, 2871, 3706, 808, 606, 1324, 572, 663, 948, 1993, 1943, 1383, 1694, 1629, 4630, 4257, 6710, 9395, 7228, 6358, 3589, 4828, 5626, 6239, 11219, 17468, 59040, 78231, 74518, 19722, 21242, 18168, 15778, 28538, 9360, 8080, 9334, 3326, 4340, 1019, 781]}}, {"pos": 449, "top": [["s", " \u2013", "\u2013", ",", ".", "t", "y", "\u2013and"], ["s", " \u2013", "\u2013", "\u2013and", "sWith", "\u0627\u062a", "t", " \u2013,"], ["s", "\u2013", " \u2013", "\u2013and", ",", ".\u2013", ".", " \u2013,"], ["s", "sWith", "sprozess", "sula", "\u0627\u062a", "schrift", "sii", "sik"], ["s", "sWith", "\u0627\u062a", "sche", "sense", "sik", "sider", "sii"], ["s", "sWith", "\u0627\u062a", "sver", "\u2013and", "sider", "svar", "sii"], ["s", "\u0627\u062a", "sWith", "sor", "sii", "sand", "\u044b", "saf"], ["s", "\u0627\u062a", "sWith", "sburg", "saf", "svar", "sche", "scha"], ["s", "sWith", "\u0627\u062a", "   \n\n", "   \n", "saf", "sche", "sburg"], ["s", "sWith", "\u2013and", "\u0627\u062a", "\u2013", "sburg", "saf", "svar"], ["s", "\u2013and", "\u2013", "\u0627\u062a", " \u2013", "sWith", " [...]", " [\u2026]"], ["s", "sWith", "\u0627\u062a", "sburg", "svar", "sste", "\u2013and", " **"], ["s", "sWith", "\u2013and", "\u0627\u062a", "svar", "sburg", "sste", " **\u2013"], ["s", "sWith", "\u2013and", "\u0627\u062a", "svar", "sste", "saf", "sburg"], ["s", "\u2013and", "sWith", " \u2013", " amongst", " arguably", "\u2013", " rightfully"], ["s", "\u2013and", " arguably", "sWith", " ultimately", " rightfully", " utterly", " swiftly"], ["s", "\u2013and", "\u2013", "<|endoftext|>", " \u2013", " [\u2026]", "t", "l"], ["s", "\u2013and", " [\u2026]", "\u2013", " utterly", " incredibly", "sWith", " \u2013"], ["s", " inevitably", " utterly", "\u2013and", " incredibly", " ultimately", " truly", " arguably"], ["s", "<|endoftext|>", " utterly", " inevitably", "\u2013and", " truly", " incredibly", " ultimately"], ["<|endoftext|>", "s", "\n\n", " utterly", " [\u2026]", " \n\n", " ultimately", " swiftly"], ["s", " utterly", " incredibly", " inevitably", " immensely", " hugely", " ultimately", " truly"], ["s", " utterly", " ultimately", " incredibly", " immensely", " truly", " inevitably", " hugely"], ["s", " ultimately", " utterly", "<|endoftext|>", " truly", " hugely", " much", " incredibly"], ["\n\n", "s", " utterly", " \n\n", " \r\n\r\n", "\r\n\r\n", "   \n\n", " hugely"], [" utterly", " incredibly", "s", " hugely", " immensely", " vastly", " **", " wildly"], [" utterly", " incredibly", "s", " vastly", " immensely", " hugely", " wildly", " drastically"], ["\n\n", " utterly", " incredibly", " vastly", " truly", " hugely", " ultimately", " wildly"], [" incredibly", " utterly", " vastly", " truly", " wildly", " drastically", " ultimately", " hugely"], [" incredibly", " utterly", " vastly", " **", " truly", " wildly", " drastically", "s"], [" \n\n", "<|endoftext|>", " incredibly", " even", " [...]", " inevitably", " ultimately", " truly"], [" **", " even", " incredibly", " inevitably", " [...]", " ultimately", " heavily", " truly"], [" inevitably", " even", " incredibly", " relentlessly", " ultimately", " massively", " drastically", " heavily"], [" inevitably", " incredibly", " drastically", " utterly", " massively", " vastly", " relentlessly", " dramatically"], [" inevitably", " relentlessly", " utterly", " drastically", " massively", " incredibly", " vastly", " inevitable"], [" inevitably", " relentlessly", " utterly", " massively", " drastically", " incredibly", "\u6839\u672c\u65e0\u6cd5", " inevitable"], [" inevitably", " inevitable", "\u6839\u672c\u65e0\u6cd5", " relentlessly", " utterly", " sluggish", " drastically", " massively"], [" inevitably", " inevitable", " utterly", " relentlessly", " massively", " impossible", "\u6839\u672c\u65e0\u6cd5", " incredibly"], [" inevitably", " inevitable", " relentlessly", " utterly", "\u6839\u672c\u65e0\u6cd5", " impossible", " sluggish", " massively"], [" sluggish", " inevitable", " inevitably", " slower", " slow", " relentlessly", " speed", " utterly"], [" sluggish", " slow", " slower", " slowdown", " speed", " framerate", " speeds", " bottleneck"], [" framerate", " stutter", " sluggish", " bottleneck", " slowdown", " inevitable", " jitter", " glitches"], [" framerate", " sluggish", " stutter", " bottleneck", " inevitable", " erratic", " slower", " jitter"], [" bottleneck", " inevitable", " framerate", " sluggish", " inevitably", " slower", " erratic", " crashes"], [" inevitable", " bottleneck", " inevitably", " framerate", " erratic", " average", " slower", " unpredictable"], [" inevitably", " inevitable", " erratic", " unpredictable", " bottleneck", " framerate", " averages", " jitter"], [" inevitable", " inevitably", " inevit", " erratic", " bottleneck", " averages", " unavoidable", " framerate"], [" inevitably", " inevitable", " bottleneck", " erratic", " inevit", " averages", " reliably", " consistently"], [" inevitably", " inevitable", " erratic", " inevit", " bottleneck", "\u6839\u672c\u65e0\u6cd5", " sluggish", " unavoidable"], [" inevitably", " inevitable", " bottleneck", " erratic", "\u65e0\u6cd5\u6ee1\u8db3", " inevit", "\u6839\u672c\u65e0\u6cd5", " sluggish"], [" inevitably", " bottleneck", " inevitable", " erratic", "\u6839\u672c\u65e0\u6cd5", " inevit", "\u65e0\u6cd5\u6ee1\u8db3", "\u5927\u6982\u7387"], [" inevitably", " bottleneck", " inevit", " inevitable", "\u5fc5\u7136", " sluggish", " framerate", "\u5927\u6982\u7387"], [" bottleneck", " inevitably", " inevit", " crippling", " cripp", "\u62d6\u7d2f", " jitter", " inevitable"], [" bottleneck", " inevitably", " inevit", " crippling", " framerate", " jitter", " cripp", " inevitable"], [" inevitably", " bottleneck", " inevit", " inevitable", " jitter", " guarantees", " guarantee", "\u5fc5\u7136"], [" inevitably", " bottleneck", " inevit", " framerate", " jitter", " inevitable", " stutter", " cripp"], [" bottleneck", " inevitably", " guarantee", " inevit", " guarantees", " inevitable", " jitter", " cripp"], [" bottleneck", " jitter", " inevitably", " guarantee", " cripp", " caps", " stutter", " guarantees"], [" bottleneck", " caps", " bott", " thrott", " capped", " guarantee", " throttle", " jitter"], [" bottleneck", " thrott", " throttle", " crush", " kill", " bott", " choke", " caps"], [" bottleneck", " throttle", " thrott", " crush", " kill", " destroy", " guarantee", " choke"], [" bottleneck", " throttle", " destroy", " guarantee", " kill", " choke", " crush", " cause"], [" throttle", " cause", " bottleneck", " cap", " destroy", " guarantee", " crush", " kill"]], "p": [[0.996, 0.0025, 0.001, 0.0003, 0.0, 0.0, 0.0, 0.0], [0.996, 0.0025, 0.0009, 0.0002, 0.0, 0.0, 0.0, 0.0], [0.8, 0.1575, 0.0351, 0.0042, 0.0025, 0.0002, 0.0001, 0.0001], [0.0972, 0.0358, 0.0191, 0.0124, 0.0109, 0.0109, 0.009, 0.0075], [0.9999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9989, 0.0006, 0.0002, 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.0, 0.0, 0.0, 0.0, 0.0], [0.9901, 0.0008, 0.0005, 0.0003, 0.0001, 0.0001, 0.0001, 0.0001], [0.9998, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9883, 0.0018, 0.0007, 0.0004, 0.0002, 0.0002, 0.0001, 0.0001], [0.9891, 0.0026, 0.0005, 0.0005, 0.0003, 0.0002, 0.0002, 0.0002], [0.9271, 0.011, 0.0052, 0.001, 0.0009, 0.0008, 0.0005, 0.0005], [0.765, 0.0217, 0.0035, 0.0035, 0.0023, 0.0018, 0.0017, 0.0015], [0.8164, 0.0091, 0.0026, 0.0026, 0.002, 0.0017, 0.0014, 0.0012], [0.954, 0.0047, 0.0039, 0.0032, 0.0021, 0.0015, 0.0013, 0.0006], [0.9218, 0.0204, 0.0023, 0.0021, 0.002, 0.0015, 0.0012, 0.0012], [0.954, 0.003, 0.003, 0.0021, 0.0018, 0.0009, 0.0007, 0.0006], [0.756, 0.0427, 0.0157, 0.0051, 0.0048, 0.004, 0.004, 0.0033], [0.9803, 0.008, 0.0007, 0.0004, 0.0002, 0.0002, 0.0002, 0.0001], [0.0679, 0.0679, 0.0341, 0.022, 0.0207, 0.0172, 0.0098, 0.0092], [0.0854, 0.0708, 0.0379, 0.0379, 0.0245, 0.0216, 0.0216, 0.0191], [0.1009, 0.0507, 0.0371, 0.0199, 0.0199, 0.0187, 0.0165, 0.0165], [0.0692, 0.061, 0.0506, 0.0419, 0.0394, 0.0307, 0.0254, 0.0211], [0.0833, 0.0394, 0.0254, 0.0254, 0.0239, 0.0198, 0.0154, 0.0136], [0.1103, 0.0406, 0.0406, 0.0316, 0.0297, 0.0217, 0.018, 0.0149], [0.0817, 0.0721, 0.0495, 0.0362, 0.0282, 0.0265, 0.0234, 0.022], [0.1007, 0.0784, 0.0476, 0.037, 0.0307, 0.0271, 0.0271, 0.0225], [0.1284, 0.0687, 0.0444, 0.0368, 0.0346, 0.0325, 0.0287, 0.0269], [0.0725, 0.0564, 0.0564, 0.0439, 0.0439, 0.0364, 0.0267, 0.025], [0.1358, 0.0603, 0.0603, 0.0389, 0.0323, 0.0285, 0.0251, 0.0196], [0.0617, 0.0511, 0.0398, 0.033, 0.031, 0.031, 0.031, 0.0227], [0.054, 0.0476, 0.0476, 0.0447, 0.0371, 0.0327, 0.0327, 0.0225], [0.0502, 0.0443, 0.0391, 0.0305, 0.0253, 0.0253, 0.0237, 0.0144], [0.0695, 0.0449, 0.0308, 0.029, 0.0272, 0.0226, 0.0199, 0.0199], [0.126, 0.0435, 0.0435, 0.0435, 0.0384, 0.0233, 0.0233, 0.0219], [0.1163, 0.0549, 0.0402, 0.0355, 0.0276, 0.0259, 0.0244, 0.0244], [0.0883, 0.0646, 0.0392, 0.0392, 0.0287, 0.0253, 0.0238, 0.0238], [0.0771, 0.0771, 0.064, 0.0413, 0.0267, 0.0172, 0.0172, 0.0134], [0.1265, 0.0985, 0.0817, 0.0527, 0.0495, 0.0341, 0.0249, 0.0249], [0.0661, 0.0377, 0.0354, 0.0312, 0.0312, 0.0276, 0.0243, 0.0215], [0.0509, 0.0479, 0.0329, 0.0309, 0.029, 0.029, 0.0273, 0.0256], [0.0551, 0.0429, 0.0378, 0.0334, 0.026, 0.019, 0.019, 0.0179], [0.0578, 0.051, 0.045, 0.0329, 0.0257, 0.0241, 0.0226, 0.0226], [0.163, 0.1269, 0.025, 0.0207, 0.0161, 0.0152, 0.0142, 0.0142], [0.2855, 0.2519, 0.022, 0.0194, 0.0194, 0.0142, 0.0142, 0.0118], [0.3786, 0.2296, 0.0214, 0.0201, 0.0188, 0.0177, 0.0138, 0.013], [0.3413, 0.1827, 0.0434, 0.0218, 0.0218, 0.0181, 0.0181, 0.015], [0.1984, 0.1363, 0.0937, 0.0777, 0.0268, 0.0252, 0.0237, 0.0196], [0.0894, 0.0654, 0.0542, 0.0397, 0.0309, 0.0241, 0.02, 0.0187], [0.2584, 0.074, 0.0577, 0.0396, 0.0329, 0.0199, 0.0187, 0.0187], [0.5233, 0.0909, 0.0203, 0.0158, 0.0123, 0.0116, 0.0102, 0.0102], [0.3794, 0.0847, 0.0311, 0.0228, 0.0189, 0.0177, 0.0177, 0.0108], [0.3281, 0.1368, 0.094, 0.0392, 0.0135, 0.0135, 0.0127, 0.0105], [0.1831, 0.1616, 0.0463, 0.0233, 0.0205, 0.0133, 0.0117, 0.0117], [0.2399, 0.1133, 0.0646, 0.0535, 0.0417, 0.0223, 0.0174, 0.0144], [0.1693, 0.08, 0.055, 0.055, 0.0378, 0.0378, 0.0355, 0.0215], [0.8758, 0.03, 0.016, 0.0125, 0.0076, 0.0076, 0.0043, 0.0028], [0.7802, 0.0303, 0.0303, 0.0236, 0.0126, 0.0126, 0.0105, 0.0098], [0.5616, 0.0976, 0.0382, 0.0317, 0.0317, 0.0247, 0.0205, 0.0205], [0.3936, 0.2107, 0.047, 0.0415, 0.039, 0.0323, 0.0323, 0.0184], [0.1981, 0.1362, 0.1202, 0.1202, 0.0879, 0.0685, 0.0323, 0.0268]], "ranks": {"Python": [87619, 190387, 160615, 202004, 99898, 148370, 65722, 109583, 59278, 50341, 23739, 142660, 174462, 182843, 160108, 164672, 115484, 92093, 90553, 100411, 40197, 169506, 158950, 120309, 34410, 81014, 49879, 52267, 45560, 28672, 23073, 25983, 51971, 71541, 96232, 113096, 120816, 107612, 102662, 108624, 73642, 76069, 41396, 55491, 36510, 33590, 33385, 42234, 97503, 144736, 86178, 41018, 75342, 70984, 59840, 86573, 30720, 28512, 33687, 17394, 12669, 4908, 3250]}}, {"pos": 450, "top": [[" \u2013", "i", "en", "y", "u", "o", "\u2013and", "t"], [" \u2013", "\u2013and", "i", " *\u2013", "en", "\u2013\u2013", "ed", "ers"], [" \u2013", "\u2013and", "\u2013", "i", "\u2013\u2013", " *\u2013", " \u2013,", "**\u2013"], ["aroo", "ers", "en", "erweise", "&eacute", "zinho", "buster", "\u17cb"], ["i", "en", "ed", "ers", "ing", "es", "\u2013\u2013", "t"], ["ed", "en", "ing", "i", "ers", "es", "t", "a"], ["ed", "ers", "\u0629", "ing", "en", "i", "es", "a"], ["ers", "ed", "ing", "\u0629", "ingly", " --", "es", " \uff1c"], ["\u0629", "ing", "ers", "\ufe0f", "\uff06", "ed", " \uff1c", "ingly"], ["\u0629", "ing", "ed", "ers", "ingly", " busted", " veggies", " whopping"], ["\u0629", "\ufe0f", "ing", "ers", "ed", " busted", " --", " freaking"], [" freaking", " veggies", " busted", " --", " whopping", " skinny", " booze", "\u0629"], [" freaking", " veggies", " busted", " whopping", "\u0629", " pricey", " --", " skinny"], [" busted", " freaking", " veggies", " pricey", " whopping", " --", " booze", " skinny"], [" busted", " freaking", " --", " veggies", " pricey", " whopping", " wildly", " skinny"], [" busted", " --", " freaking", " whopping", " pricey", " veggies", " folks", " wildly"], [" busted", " --", " freaking", " wildly", "ing", " whopping", "ed", " veggies"], [" freaking", " busted", " whopping", " --", " veggies", " booze", " wildly", "ing"], [" freaking", " busted", " booze", " whopping", " wildly", " --", " veggies", " pricey"], [" freaking", " --", " busted", " wildly", " whopping", " booze", "ingly", " pricey"], [" freaking", " --", " busted", " wildly", " whopping", " booze", " pricey", "ingly"], [" freaking", " busted", " booze", " wildly", " skyrocket", "ingly", " pricey", " whopping"], [" freaking", " busted", " skyrocket", " wildly", " booze", " --", " pricey", "ingly"], [" --", " wildly", " skyrocket", " hugely", " freaking", "ingly", " horribly", " hefty"], [" wildly", " --", " freaking", " skyrocket", " pricey", " hugely", " hefty", " booze"], [" freaking", " skyrocket", " booze", " wildly", " pricey", " whopping", " busted", " hefty"], [" skyrocket", " freaking", " booze", " pricey", " wildly", " whopping", "ingly", " busted"], [" wildly", " skyrocket", " horribly", " hugely", " freaking", " --", " pricey", " busted"], [" wildly", " skyrocket", " booze", " pricey", " freaking", " horribly", " hugely", " busted"], [" skyrocket", " booze", " freaking", " pricey", " wildly", " busted", " whopping", " skinny"], [" skyrocket", " wildly", " booze", " freaking", " hefty", " whopping", " pricey", " hugely"], [" skyrocket", " wildly", " booze", " freaking", "\ufe0f", " hefty", " whopping", " incredibly"], [" skyrocket", " wildly", " booze", "\ufe0f", " massively", " pricey", " hefty", " skinny"], [" skyrocket", " wildly", " massively", " hugely", " booze", " horribly", " plummet", " hefty"], [" skyrocket", " plummet", " wildly", " booze", " massively", " pricey", " horribly", " hugely"], [" skyrocket", "\ufe0f", " wildly", " booze", " plummet", " massively", " horribly", " pricey"], [" skyrocket", " overclock", " wildly", " booze", " framerate", " plummet", " massively", " tech"], [" overclock", " skyrocket", " framerate", " speed", " wildly", " massively", " booze", " plummet"], [" framerate", " performance", " speed", " overclock", " skyrocket", " speeds", " plummet", " wildly"], [" speed", " framerate", " speeds", " performance", " overclock", " skyrocket", " throughput", " fps"], [" speed", " framerate", " speeds", " performance", " throughput", " fps", " overclock", "\u7684\u901f\u5ea6"], [" framerate", " speeds", " speed", " performance", " throughput", " fps", "\u6bcf\u79d2", " overclock"], [" framerate", " speeds", " performance", " speed", " throughput", " fps", "\u6bcf\u79d2", " rates"], [" framerate", " speeds", " performance", " throughput", " speed", " fps", " metrics", " rates"], [" framerate", " speeds", " throughput", " performance", " speed", " average", " fps", " rates"], [" framerate", " speeds", " speed", " performance", " throughput", " average", " fps", " rates"], [" framerate", " speeds", " throughput", " fps", " performance", " speed", " averages", " metrics"], [" framerate", " speeds", " performance", " throughput", " speed", " metrics", " fps", " averages"], [" framerate", " speeds", " throughput", " fps", " performance", " speed", " metrics", "_fps"], [" framerate", " throughput", " speeds", " fps", " productivity", " metrics", " performance", "_fps"], [" framerate", " throughput", "\u7684\u901f\u5ea6", "_fps", " speeds", " latency", " productivity", " overclock"], [" framerate", " throughput", " performance", "_fps", "Performance", "performance", " latency", " \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0435\u043b\u044c"], [" framerate", " performance", "_fps", " throughput", " latency", "Performance", "performance", " FPS"], [" framerate", " throughput", " performance", " latency", "_fps", "performance", "Performance", " FPS"], [" framerate", " performance", " throughput", "performance", " your", "Performance", " latency", "\u4f60\u7684"], [" framerate", " FPS", " fps", "fps", "_fps", " performance", "\u5e27", " throughput"], [" framerate", " FPS", "fps", "_fps", " your", " fps", " performance", "\u5e27"], [" framerate", " your", " FPS", "_fps", "fps", " fps", "\u5e27", "\u4f60\u7684"], [" framerate", "\u5e27", " FPS", " performance", " frame", "fps", " fps", " your"], [" framerate", " your", "\u5e27", " performance", " frame", " FPS", "fps", " frames"], [" your", " framerate", " performance", " FPS", "\u5e27", " frame", " fps", "fps"], [" frame", " framerate", " your", "\u5e27", " performance", "-frame", "frame", " Frame"], [" your", " frame", " framerate", " performance", "\u5e27", " FPS", " frames", "frame"]], "p": [[0.5614, 0.2491, 0.0461, 0.0218, 0.0097, 0.0085, 0.0049, 0.0046], [0.4744, 0.12, 0.1059, 0.0642, 0.047, 0.0268, 0.0119, 0.0105], [0.4762, 0.3273, 0.073, 0.0304, 0.0112, 0.0105, 0.0093, 0.0053], [0.0315, 0.0149, 0.0109, 0.009, 0.008, 0.0058, 0.0055, 0.0048], [0.414, 0.3653, 0.0719, 0.056, 0.0104, 0.0097, 0.0071, 0.0067], [0.7131, 0.055, 0.0517, 0.0402, 0.0378, 0.0131, 0.0079, 0.0074], [0.3959, 0.1207, 0.1065, 0.1001, 0.057, 0.0503, 0.0346, 0.0144], [0.2554, 0.1549, 0.1133, 0.0687, 0.057, 0.0287, 0.0185, 0.0163], [0.2097, 0.1122, 0.0601, 0.0601, 0.0439, 0.0439, 0.0322, 0.0221], [0.1137, 0.1137, 0.0648, 0.0474, 0.0445, 0.0369, 0.0306, 0.0254], [0.0881, 0.0686, 0.0644, 0.0605, 0.0569, 0.0502, 0.0367, 0.0269], [0.1394, 0.102, 0.0701, 0.0546, 0.0275, 0.0228, 0.0201, 0.0201], [0.1346, 0.0869, 0.0767, 0.0282, 0.0265, 0.022, 0.022, 0.0206], [0.1686, 0.1584, 0.062, 0.0275, 0.0275, 0.0259, 0.0228, 0.0189], [0.2598, 0.1786, 0.1083, 0.0257, 0.02, 0.0177, 0.0147, 0.0129], [0.1977, 0.1857, 0.1359, 0.0366, 0.0344, 0.0323, 0.0285, 0.0222], [0.1072, 0.1072, 0.0889, 0.0476, 0.0447, 0.042, 0.0225, 0.0211], [0.1553, 0.1288, 0.0608, 0.0418, 0.0369, 0.0369, 0.0326, 0.0238], [0.2981, 0.1243, 0.0429, 0.0379, 0.0314, 0.0295, 0.023, 0.0203], [0.1738, 0.1533, 0.099, 0.06, 0.0284, 0.0284, 0.0208, 0.0208], [0.1549, 0.094, 0.094, 0.057, 0.0269, 0.0253, 0.0223, 0.0185], [0.2561, 0.0571, 0.0474, 0.0326, 0.0306, 0.0254, 0.0224, 0.0186], [0.1741, 0.0468, 0.0468, 0.044, 0.0413, 0.0388, 0.0302, 0.0284], [0.1322, 0.103, 0.0486, 0.0314, 0.0277, 0.0277, 0.0277, 0.026], [0.0859, 0.059, 0.0521, 0.0521, 0.0432, 0.0432, 0.0406, 0.0336], [0.1209, 0.0941, 0.0689, 0.0504, 0.0418, 0.0418, 0.0224, 0.021], [0.0985, 0.0817, 0.0636, 0.0561, 0.0386, 0.0282, 0.0206, 0.0206], [0.1286, 0.0733, 0.0571, 0.0445, 0.0392, 0.0392, 0.0287, 0.027], [0.0907, 0.0852, 0.055, 0.0429, 0.0403, 0.0378, 0.0295, 0.0277], [0.105, 0.0678, 0.0528, 0.0386, 0.0363, 0.0207, 0.0207, 0.0194], [0.1265, 0.0985, 0.0437, 0.032, 0.0249, 0.0249, 0.0249, 0.0249], [0.1042, 0.0492, 0.0408, 0.0338, 0.028, 0.0232, 0.0218, 0.0205], [0.1354, 0.044, 0.0364, 0.0221, 0.0172, 0.0162, 0.0162, 0.0162], [0.1116, 0.0598, 0.0362, 0.0282, 0.0282, 0.0182, 0.0182, 0.0182], [0.0718, 0.0464, 0.0339, 0.0299, 0.0219, 0.0193, 0.0182, 0.016], [0.0371, 0.0271, 0.0239, 0.0211, 0.0186, 0.0175, 0.01, 0.0094], [0.0403, 0.026, 0.019, 0.0179, 0.0179, 0.0168, 0.0139, 0.0085], [0.0296, 0.0278, 0.0278, 0.0179, 0.0123, 0.0123, 0.0096, 0.009], [0.0705, 0.0663, 0.0485, 0.0378, 0.0333, 0.0202, 0.0102, 0.0079], [0.2232, 0.2232, 0.1122, 0.0821, 0.0172, 0.0111, 0.0081, 0.0081], [0.3035, 0.3035, 0.1265, 0.0767, 0.0161, 0.0104, 0.0081, 0.0063], [0.4624, 0.1501, 0.1325, 0.0804, 0.038, 0.014, 0.0066, 0.0058], [0.5141, 0.13, 0.0696, 0.0696, 0.0478, 0.0155, 0.0069, 0.0069], [0.565, 0.0982, 0.0675, 0.0385, 0.0361, 0.0141, 0.0117, 0.0117], [0.5719, 0.1126, 0.0414, 0.0343, 0.0303, 0.0184, 0.0162, 0.0152], [0.5047, 0.0994, 0.0414, 0.0323, 0.0303, 0.0208, 0.0173, 0.0143], [0.5181, 0.102, 0.0331, 0.0242, 0.0242, 0.0177, 0.0138, 0.0114], [0.5278, 0.1178, 0.028, 0.0263, 0.0205, 0.015, 0.0132, 0.011], [0.698, 0.061, 0.0154, 0.0106, 0.01, 0.0073, 0.006, 0.005], [0.7487, 0.0373, 0.0187, 0.0061, 0.0054, 0.005, 0.0047, 0.0039], [0.6842, 0.0265, 0.0067, 0.0063, 0.0056, 0.0052, 0.0052, 0.0046], [0.6647, 0.0452, 0.0375, 0.0201, 0.0189, 0.0177, 0.0114, 0.0095], [0.621, 0.1079, 0.045, 0.035, 0.035, 0.0309, 0.0273, 0.0061], [0.8812, 0.0266, 0.0235, 0.0111, 0.0098, 0.0072, 0.0041, 0.0034], [0.7792, 0.1055, 0.0208, 0.0162, 0.0126, 0.0087, 0.0076, 0.0067], [0.7224, 0.1255, 0.0462, 0.036, 0.036, 0.0132, 0.0049, 0.0043], [0.5871, 0.1682, 0.0546, 0.0482, 0.0425, 0.0425, 0.0122, 0.0095], [0.7028, 0.1384, 0.0449, 0.0212, 0.0187, 0.0165, 0.0146, 0.0129], [0.44, 0.3883, 0.0526, 0.0281, 0.0219, 0.0133, 0.0117, 0.0071], [0.3798, 0.2958, 0.1233, 0.1088, 0.04, 0.0115, 0.0042, 0.0042], [0.4504, 0.3975, 0.0887, 0.0224, 0.0136, 0.0082, 0.003, 0.0027], [0.3963, 0.2404, 0.1652, 0.1287, 0.0154, 0.0093, 0.0082, 0.0073], [0.5659, 0.3432, 0.041, 0.0171, 0.0151, 0.0034, 0.0019, 0.0018]], "ranks": {"Python": [18121, 102769, 86203, 43112, 13485, 72162, 12940, 29591, 26125, 56710, 40721, 53000, 72405, 60411, 40770, 69354, 63304, 54769, 66063, 90369, 77066, 92526, 62488, 49596, 58885, 37674, 32719, 20030, 22632, 33391, 22808, 24658, 30111, 36891, 56914, 48995, 35112, 22237, 28348, 29909, 24546, 29652, 28820, 43460, 62301, 52936, 48211, 60174, 95571, 128249, 84566, 60948, 107999, 84503, 49280, 53352, 47209, 26657, 15849, 8823, 4100, 1180, 749]}}, {"pos": 451, "top": [["\u2013", " \u2013", ",", ".", "\u2013and", ".\u2013", ";", "a"], ["\u2013and", "\u2013", " \u2013", "\u2013\u2013", ".\u2013", " \u2013,", "\u6700\u65b0\u53d1\u5e03", "**\u2013"], ["\u2013", " \u2013", "\u2013and", ",", ".\u2013", ".", " \u2013,", "\u2013\u2013"], ["\u6700\u65b0\u53d1\u5e03", " *\u2013", "\u2013and", "('--", "zinho", " -->", "\u52a0\u62ff\u5927", "Advisor"], ["\u2013and", "\u2013", "\u2013\u2013", ".@", ".\u2013", "-->", " *\u2013", " -->"], ["\u2013and", "\u2013", "\u2013\u2013", ".\u2013", " *\u2013", "\u2018s", "\u6700\u65b0\u53d1\u5e03", "\u2018"], ["\u2013and", "\u2013", "\u2018", "s", "\u2013\u2013", " \u2013", " \u2018", " -->"], ["\u2013and", " -->", " @", "   \r\n", "\u6700\u65b0\u53d1\u5e03", "   \n", "s", "\u2013"], ["\u2013and", "\u2013", "   \n", "   \n\n", "s", "____", "  ", " kids"], ["\u2013and", "\u2013", "\u2013\u2013", " kids", " folks", " veggies", "--", "   \r\n"], ["\u2013and", "\u2013", "\u2013\u2013", "--", " \u2013", "...", " kids", "s"], ["\u2013and", " veggies", " kids", " -->", " folks", " funky", " --", " ____"], ["\u2013and", " kids", " veggies", " folks", " funky", " -->", " meds", " munch"], ["\u2013and", " folks", " kids", "--", " funky", " --", " savvy", " veggies"], [" --", " folks", "--", " kids", "\u2013and", " \u2018", "<|endoftext|>", " pretty"], [" folks", " --", "--", " kids", "\u2013and", " incredibly", " pretty", " \u2018"], ["<|endoftext|>", " folks", "\u2013", "\u2013and", " kids", "s", "--", " incredibly"], ["<|endoftext|>", " kids", " folks", "\u2013and", " --", " incredibly", "--", "\u2013"], [" folks", " kids", " incredibly", " --", " savvy", "s", "--", " pretty"], ["<|endoftext|>", " --", " folks", " incredibly", " kids", "\u2013and", "--", " savvy"], ["<|endoftext|>", " folks", "\u2013and", " --", " incredibly", " kids", " @", " #"], [" kids", " incredibly", " folks", " savvy", " funky", " booze", " tech", " busted"], [" incredibly", " kids", " folks", " --", " savvy", " tech", " big", " wildly"], ["<|endoftext|>", " --", " incredibly", "s", " kids", " folks", " just", " #"], ["   \n\n", " \r\n\r\n", " \n\n", " --", " folks", " incredibly", "\r\n\r\n", " tech"], [" tech", " folks", " kids", " incredibly", " --", " booze", " savvy", " hugely"], [" tech", " folks", " kids", " --", " incredibly", " pricey", " hugely", " skyrocket"], [" tech", " --", " incredibly", " @", " hugely", " folks", " \n\n", " kids"], [" tech", " incredibly", " @", " --", " hugely", " kids", " wildly", " massive"], [" tech", " incredibly", "   \n\n", " kids", " ____", " hugely", " massive", " wildly"], [" tech", " incredibly", " --", " massive", " big", " @", " ", " huge"], [" incredibly", " tech", " @", " ", " big", " massive", " huge", " just"], [" tech", " incredibly", " \u2013", " massive", " @", " even", " big", " high"], [" tech", " incredibly", " massively", " \u2013", " flagship", " massive", " tweaks", " mega"], [" tech", " hardware", " flagship", " budgets", " massively", " tweaks", " infrastructure", " incredibly"], [" tech", " hardware", " performance", " framerate", " metrics", " fastest", " startup", " fast"], [" tech", " performance", " hardware", " framerate", " speed", " gaming", " metrics", " fastest"], [" tech", " hardware", " framerate", " performance", " speed", " gaming", " metrics", " gameplay"], [" performance", " framerate", " tech", " hardware", " speed", " gaming", " metrics", " gameplay"], [" framerate", " performance", " speed", " hardware", " speeds", " gaming", " gameplay", " tech"], [" framerate", " speed", " performance", " speeds", " throughput", " Speed", " fastest", " fps"], [" framerate", " performance", " speed", " throughput", " speeds", " fps", " metrics", "\u6bcf\u79d2"], [" framerate", " performance", " speed", " throughput", " metrics", " speeds", " fps", " rate"], [" framerate", " performance", " speed", " throughput", " speeds", " rate", " metrics", " fps"], [" framerate", " throughput", " speed", " performance", " speeds", " average", " rate", " metrics"], [" framerate", " throughput", " speed", " performance", " rate", " metrics", " fps", " speeds"], [" framerate", " throughput", " metrics", " fps", " FPS", " performance", " latency", " speeds"], [" framerate", " throughput", " deadlines", " FPS", " metrics", " fps", " pace", " performance"], [" framerate", " throughput", " deadlines", " FPS", " fps", " latency", " metrics", " pace"], [" framerate", " throughput", " latency", " FPS", " deadlines", " fps", " metrics", " pace"], [" framerate", " throughput", " latency", " FPS", " bitrate", "_fps", " uptime", " fps"], [" framerate", " throughput", " latency", " performance", " CPU", " FPS", " fps", "performance"], [" framerate", " throughput", " latency", " performance", " FPS", "performance", "Performance", " Performance"], [" framerate", " throughput", " FPS", " latency", " fps", "\u5e27", " performance", "fps"], [" framerate", " throughput", " latency", " FPS", "\u5e27", " fps", " performance", " GPU"], [" framerate", " FPS", " fps", "fps", "\u5e27", "_fps", "FPS", " frame"], [" framerate", " FPS", " fps", "fps", "\u5e27", "FPS", "_fps", " frame"], [" framerate", " FPS", "\u5e27", " fps", "fps", " frame", "FPS", "_fps"], [" frame", "\u5e27", " framerate", " FPS", " Frame", "frame", " frames", "Frame"], [" frame", " framerate", "\u5e27", " Frame", "frame", " frames", "-frame", "Frame"], [" framerate", " frame", " FPS", "\u5e27", " fram", " Frame", " fps", " frames"], [" frame", " framerate", "\u5e27", " Frame", " fram", "-frame", " frames", "frame"], [" frame", " framerate", "\u5e27", " Frame", " FPS", " frames", " fram", "frame"]], "p": [[0.6075, 0.2235, 0.1355, 0.0183, 0.0126, 0.0009, 0.0003, 0.0001], [0.6528, 0.3084, 0.0287, 0.0041, 0.0018, 0.0016, 0.0004, 0.0003], [0.885, 0.0566, 0.0499, 0.006, 0.0017, 0.0004, 0.0002, 0.0001], [0.044, 0.0183, 0.0087, 0.0081, 0.0053, 0.0049, 0.0046, 0.0034], [0.6026, 0.0597, 0.0319, 0.0194, 0.0182, 0.0171, 0.0151, 0.0117], [0.7714, 0.0633, 0.0055, 0.0046, 0.0036, 0.0022, 0.0016, 0.0014], [0.6909, 0.1128, 0.0173, 0.0173, 0.0143, 0.0143, 0.0135, 0.0127], [0.6489, 0.0344, 0.0209, 0.0173, 0.0135, 0.0127, 0.0119, 0.0105], [0.8501, 0.0351, 0.0146, 0.0101, 0.0039, 0.0027, 0.0024, 0.0021], [0.7551, 0.066, 0.0084, 0.0074, 0.0048, 0.0045, 0.0037, 0.0029], [0.7472, 0.1667, 0.0083, 0.0057, 0.0047, 0.0037, 0.0035, 0.0025], [0.213, 0.0783, 0.0736, 0.0691, 0.0307, 0.0288, 0.0211, 0.0154], [0.159, 0.1163, 0.0964, 0.0428, 0.0402, 0.0333, 0.0229, 0.0168], [0.1842, 0.1348, 0.1117, 0.0341, 0.032, 0.0194, 0.0161, 0.0151], [0.2456, 0.1399, 0.1399, 0.0484, 0.0427, 0.0243, 0.0228, 0.0115], [0.2422, 0.1772, 0.0739, 0.0652, 0.0187, 0.0121, 0.0113, 0.01], [0.1705, 0.1328, 0.0756, 0.0711, 0.0431, 0.0405, 0.0405, 0.0149], [0.156, 0.1072, 0.0784, 0.0784, 0.0289, 0.0271, 0.0239, 0.0164], [0.0839, 0.0839, 0.0696, 0.0577, 0.0272, 0.0212, 0.0187, 0.0165], [0.1907, 0.1157, 0.0702, 0.04, 0.0311, 0.0275, 0.0147, 0.013], [0.9756, 0.0009, 0.0007, 0.0007, 0.0004, 0.0003, 0.0003, 0.0003], [0.0826, 0.0533, 0.039, 0.0323, 0.0135, 0.0127, 0.0112, 0.0087], [0.0627, 0.0553, 0.0458, 0.0191, 0.0158, 0.0116, 0.008, 0.0075], [0.0642, 0.0441, 0.0236, 0.0119, 0.0112, 0.0098, 0.0082, 0.0082], [0.1201, 0.0776, 0.047, 0.039, 0.0285, 0.0222, 0.0209, 0.0173], [0.1232, 0.0747, 0.0546, 0.0353, 0.0293, 0.0189, 0.0115, 0.0095], [0.1324, 0.0314, 0.0295, 0.023, 0.0168, 0.0075, 0.007, 0.0066], [0.0667, 0.0627, 0.0217, 0.0204, 0.0116, 0.0116, 0.0109, 0.0096], [0.1012, 0.0328, 0.0187, 0.0176, 0.0129, 0.0114, 0.0107, 0.0094], [0.1196, 0.0388, 0.0134, 0.0126, 0.0126, 0.0118, 0.0092, 0.0087], [0.0599, 0.0283, 0.0207, 0.0152, 0.0126, 0.0126, 0.0111, 0.0104], [0.0232, 0.0205, 0.0192, 0.017, 0.0141, 0.0141, 0.0117, 0.011], [0.0397, 0.0176, 0.0146, 0.0137, 0.0114, 0.0089, 0.0083, 0.0078], [0.236, 0.0249, 0.0182, 0.0118, 0.0104, 0.0097, 0.0081, 0.0071], [0.3022, 0.016, 0.0103, 0.0097, 0.0081, 0.0076, 0.0071, 0.0063], [0.254, 0.0603, 0.039, 0.0236, 0.0209, 0.0087, 0.0087, 0.0072], [0.2579, 0.101, 0.0949, 0.0612, 0.0212, 0.0128, 0.0128, 0.0078], [0.1634, 0.0875, 0.0822, 0.0601, 0.0172, 0.0143, 0.0126, 0.0104], [0.2061, 0.1508, 0.0629, 0.0406, 0.0297, 0.0192, 0.0149, 0.0116], [0.5169, 0.1481, 0.0844, 0.0147, 0.0122, 0.0101, 0.0095, 0.0084], [0.7311, 0.144, 0.0412, 0.0221, 0.0072, 0.0041, 0.0038, 0.0034], [0.8681, 0.0381, 0.0204, 0.0109, 0.0085, 0.0052, 0.0048, 0.0046], [0.8591, 0.0202, 0.0157, 0.0139, 0.0074, 0.0074, 0.0058, 0.0054], [0.8318, 0.0196, 0.0152, 0.0152, 0.0098, 0.0092, 0.0087, 0.0049], [0.8476, 0.0155, 0.0114, 0.0094, 0.0073, 0.0061, 0.0061, 0.0054], [0.8112, 0.0149, 0.0109, 0.0096, 0.007, 0.0058, 0.0051, 0.0051], [0.8478, 0.0137, 0.0078, 0.0065, 0.0054, 0.005, 0.0042, 0.0042], [0.9196, 0.007, 0.0048, 0.0035, 0.0029, 0.0026, 0.0021, 0.0021], [0.9533, 0.005, 0.0027, 0.0021, 0.0018, 0.0016, 0.0016, 0.0011], [0.9578, 0.0094, 0.0017, 0.0014, 0.0014, 0.0009, 0.0006, 0.0006], [0.9626, 0.0057, 0.0015, 0.0009, 0.0008, 0.0007, 0.0006, 0.0005], [0.9662, 0.0156, 0.0024, 0.0016, 0.0011, 0.0009, 0.0009, 0.0008], [0.9754, 0.0074, 0.0051, 0.0031, 0.0019, 0.0011, 0.0009, 0.0007], [0.9921, 0.0036, 0.0012, 0.0008, 0.0003, 0.0003, 0.0003, 0.0001], [0.9959, 0.0015, 0.0006, 0.0005, 0.0003, 0.0002, 0.0001, 0.0001], [0.9152, 0.0663, 0.0115, 0.0026, 0.0023, 0.0011, 0.0007, 0.0001], [0.7918, 0.1767, 0.0164, 0.0053, 0.0032, 0.0029, 0.0029, 0.0002], [0.9525, 0.0288, 0.0082, 0.0044, 0.0021, 0.0016, 0.0007, 0.0006], [0.3766, 0.2933, 0.2589, 0.0146, 0.0146, 0.0129, 0.0089, 0.0078], [0.48, 0.4236, 0.0573, 0.0113, 0.0078, 0.0078, 0.0029, 0.0025], [0.9375, 0.0412, 0.0118, 0.0038, 0.0012, 0.0011, 0.001, 0.0007], [0.7542, 0.2161, 0.0122, 0.0058, 0.0051, 0.0021, 0.0013, 0.0011], [0.9092, 0.0846, 0.002, 0.0014, 0.0008, 0.0005, 0.0004, 0.0002]], "ranks": {"Python": [10008, 71285, 24043, 48816, 2108, 18109, 2873, 3954, 3702, 5217, 2380, 3483, 2888, 3685, 5121, 11953, 7605, 2726, 3959, 8228, 5285, 4657, 5009, 7828, 5961, 4166, 3774, 3892, 3864, 4407, 5541, 6549, 5311, 5556, 8726, 7378, 8749, 8758, 14766, 13911, 14029, 13981, 14812, 20462, 28616, 24380, 19963, 19722, 27310, 49330, 36393, 17537, 27228, 19644, 6386, 15810, 15751, 8241, 3743, 3159, 2075, 1926, 1660]}}, {"pos": 452, "top": [[" \u2013", ".", "\u2013", ",", " ", "\u2026..", "-", " [\u2026]"], [" \u2013", "\u2013", "\u2013and", "\u2013\u2013", "\u00ad", "  ", ".\u2013", "  \n"], [" \u2013", "\u2013", "\u2013and", "\u2026..", "\u2026", ".\u2013", "\u2026.", "\u2013\u2013"], ["odle", "buster", " ``", "flate", "psilon", "caster", "&eacute", " pupper"], [" \u2013", "\u2013\u2013", "i", " \u2018", " @", "@", "ingly", "&"], ["\u2013", "\u2026..", "board", " \u2013", " \u2018", "\u2013\u2013", "ingly", "\u2013and"], [" \u2018", "i", "\u2018", " \u2019", "ster", " \u2013", "&", "less"], [" \u2018", " \u2013", "i", "less", "ster", " @", " &", "ingly"], ["<|endoftext|>", " \u2013", " \u2018", "&", " \u00ad", "\u2013", "i", " &"], ["\u2013", " \u00ad", "\u00ad", "\u2013and", "less", "i", "ingly", " \u0163"], ["\u2013", "i", " \u00ad", " \u2013", "less", "&", "\u00ad", "-"], ["less", "ingly", "stride", "ster", "lessness", "bite", "buster", "gable"], ["less", "ingly", "ster", "buster", "lessness", "stride", "bite", "gable"], ["less", "ingly", "stride", "-esque", "ster", "bite", "\u2013", "buster"], ["\u2013", "less", "i", "ingly", "st", "d", "back", "e"], ["-esque", "less", "ingly", "kids", "i", "ar", "e", " incredibly"], ["i", "e", "less", "\u2013", "-esque", "ar", "o", "ingly"], ["-esque", "less", "kids", "ingly", "i", "beat", "kick", "cap"], ["ingly", "-esque", "kids", "less", "kick", "bite", "beat", "i"], ["\u2013", "ingly", " \u2013", "i", "-&", "e", "\u2013and", "less"], ["<|endoftext|>", "i", "\u2013", "e", "d", "\u2013and", "ingly", "-&"], ["ingly", "bite", "buster", "oire", "(Frame", "kick", "beat", "pace"], ["ingly", "less", "bite", "beat", " looming", "pace", "tte", " \u2019"], ["less", "ingly", "beat", "bite", " \u2013", " looming", "pace", "ball"], [" \r\n\r\n", "beat", " \r\n", "stride", "\u2013and", "bite", "battle", "pace"], [" framerate", "beat", "pace", "stride", "uptime", "kick", "Stride", "ptime"], [" framerate", "pace", "beat", "uptime", "Pixel", "stride", "Stride", " pixel"], [" framerate", "beat", " speeds", " speed", " pace", " shutter", " flick", "stride"], [" framerate", "beat", " speeds", " pace", " speed", "pace", "uptime", "stride"], [" framerate", "pace", " pace", " speed", " speeds", "beat", " pixel", " kicks"], [" speed", " pace", " speeds", " performance", " kicks", " time", " faster", "pace"], [" speed", " pace", " time", " performance", " speeds", " fight", " faster", " clock"], [" speed", " time", " even", " pace", " fighting", " live", " fast", " \u2013"], [" framerate", " pace", " pixel", " speed", " flick", " speeds", "pace", " spikes"], [" framerate", " pixel", " pace", " flick", "uptime", " overclock", "ptime", " speed"], [" framerate", "\u2011", " speed", " pace", " speeds", " flick", " overclock", " pixel"], [" framerate", " speed", " pixel", " latency", " speeds", " overclock", " jitter", " pace"], [" framerate", " pixel", " speed", " fps", " flick", " latency", " jitter", " pace"], [" framerate", " speed", " pixel", " fps", " speeds", " jitter", " flick", " latency"], [" framerate", " speed", " speeds", " fps", " latency", " jitter", " pace", " FPS"], [" framerate", " speed", " speeds", " fps", " latency", " pace", "\u901f\u7387", "\u6bcf\u79d2"], [" framerate", " fps", " speeds", " speed", " rate", "\u5cf0\u503c", "\u6bcf\u79d2", " jitter"], [" framerate", " fps", "\u5cf0\u503c", " jitter", " rate", " speed", " FPS", " speeds"], [" framerate", " rate", " fps", " speeds", "\u5cf0\u503c", " speed", " pace", " spikes"], [" framerate", " rate", " fps", " speeds", " speed", " average", " pace", "-rate"], [" framerate", " rate", " speed", " fps", " speeds", " spikes", " jitter", " latency"], [" framerate", " fps", " speeds", " rate", " latency", " jitter", " FPS", " pace"], [" framerate", " fps", " latency", "\u5cf0\u503c", " FPS", " jitter", " pace", " rate"], [" framerate", " fps", "\u5cf0\u503c", "_fps", " jitter", " FPS", " latency", "-rate"], [" framerate", " fps", "_fps", "\u5cf0\u503c", " FPS", "-rate", " jitter", " throughput"], [" framerate", "_fps", " fps", "\u5e27", "\u6bcf\u79d2", "(Frame", " FPS", " latency"], [" framerate", " latency", " throughput", "uptime", "-sync", " timings", " fps", "ptime"], [" framerate", " latency", "(Frame", " throughput", "\u5e27", "uptime", "_fps", " fps"], [" framerate", "(Frame", "-rate", " latency", "\u5e27", " rate", "Rate", "rate"], [" framerate", "(Frame", " latency", "\u5e27", "-rate", " rate", ".Frame", " shader"], [" framerate", "-rate", " rate", " latency", "rate", "\u7387", "(Frame", "Rate"], [" rate", "-rate", " latency", " framerate", "buffer", "rate", "Rate", " rates"], ["buffer", " rate", " framerate", " buffer", "-rate", " pacing", " latency", " buffers"], [" rate", "buffer", " pacing", "-rate", " buffer", " time", "\u65f6\u95f4", " timings"], [" rate", "-rate", " rates", "rate", " Rate", "Rate", "\u7387", "_rate"], [" budget", " rate", "budget", "\u9884\u7b97", "-rate", " Budget", "Budget", " budgets"], [" rate", " budget", " time", "-rate", "rate", " buffer", "budget", " rates"], [" rate", " time", " budget", " rates", "-rate", " buffer", " pacing", "Rate"]], "p": [[0.9288, 0.036, 0.0218, 0.0049, 0.003, 0.0007, 0.0006, 0.0005], [0.8316, 0.0774, 0.0267, 0.0072, 0.0056, 0.0009, 0.0006, 0.0006], [0.6077, 0.3686, 0.0098, 0.0053, 0.0036, 0.0012, 0.001, 0.0008], [0.0029, 0.0029, 0.0026, 0.0021, 0.002, 0.0018, 0.0018, 0.0014], [0.0327, 0.0289, 0.0239, 0.0239, 0.0239, 0.0175, 0.0136, 0.0128], [0.0132, 0.011, 0.0103, 0.0097, 0.0085, 0.0066, 0.0062, 0.0059], [0.097, 0.0315, 0.0296, 0.0296, 0.0278, 0.014, 0.009, 0.007], [0.0227, 0.0213, 0.0166, 0.0166, 0.0146, 0.0129, 0.0101, 0.0083], [0.0854, 0.0551, 0.0457, 0.0457, 0.0334, 0.0314, 0.0295, 0.019], [0.029, 0.029, 0.0094, 0.0073, 0.0042, 0.0037, 0.0037, 0.0033], [0.1459, 0.0326, 0.0254, 0.0238, 0.021, 0.021, 0.0197, 0.0099], [0.045, 0.0146, 0.0089, 0.0054, 0.0047, 0.0045, 0.0042, 0.0037], [0.1203, 0.0502, 0.0127, 0.0105, 0.0099, 0.0093, 0.0056, 0.0047], [0.0531, 0.0303, 0.0152, 0.0105, 0.0063, 0.0056, 0.0056, 0.0046], [0.0328, 0.0199, 0.0199, 0.0137, 0.01, 0.0083, 0.0078, 0.0073], [0.0172, 0.0092, 0.0087, 0.0056, 0.0053, 0.0049, 0.0044, 0.0036], [0.0456, 0.0355, 0.0276, 0.026, 0.0215, 0.0131, 0.0123, 0.0123], [0.0215, 0.0178, 0.0157, 0.0148, 0.0123, 0.0108, 0.0102, 0.007], [0.0206, 0.0171, 0.0125, 0.0117, 0.0104, 0.0097, 0.0091, 0.0081], [0.0223, 0.0144, 0.0144, 0.0127, 0.0105, 0.0099, 0.0099, 0.0093], [0.4578, 0.0122, 0.0084, 0.007, 0.0042, 0.0035, 0.0026, 0.0023], [0.0134, 0.0098, 0.0064, 0.0056, 0.0044, 0.0041, 0.003, 0.003], [0.0196, 0.0105, 0.0053, 0.0039, 0.0036, 0.0036, 0.0034, 0.0034], [0.0077, 0.005, 0.0041, 0.0027, 0.0024, 0.0024, 0.0022, 0.0021], [0.0337, 0.0103, 0.008, 0.0031, 0.0031, 0.0028, 0.0024, 0.0024], [0.0311, 0.013, 0.0069, 0.0058, 0.0051, 0.0051, 0.0035, 0.0029], [0.0329, 0.0057, 0.005, 0.0045, 0.0039, 0.0037, 0.0035, 0.0033], [0.0279, 0.0075, 0.0062, 0.0062, 0.0058, 0.0038, 0.0038, 0.0035], [0.0317, 0.0109, 0.008, 0.008, 0.0075, 0.0071, 0.0055, 0.0052], [0.0422, 0.0187, 0.0155, 0.0114, 0.0114, 0.0094, 0.0078, 0.0065], [0.0629, 0.0337, 0.0262, 0.0159, 0.0096, 0.0091, 0.0085, 0.008], [0.0557, 0.0218, 0.0181, 0.015, 0.011, 0.0103, 0.008, 0.0071], [0.0392, 0.0185, 0.0136, 0.0127, 0.0112, 0.0088, 0.0088, 0.0088], [0.0283, 0.0195, 0.0183, 0.0126, 0.0098, 0.0092, 0.0063, 0.0063], [0.0513, 0.0122, 0.0089, 0.0065, 0.0058, 0.0051, 0.0051, 0.0051], [0.0713, 0.0217, 0.018, 0.0132, 0.0091, 0.008, 0.0071, 0.0071], [0.2505, 0.0299, 0.015, 0.015, 0.0125, 0.0117, 0.0117, 0.0117], [0.3866, 0.0247, 0.015, 0.015, 0.0141, 0.0097, 0.0097, 0.0052], [0.6012, 0.0182, 0.0125, 0.0103, 0.0086, 0.0086, 0.0076, 0.0071], [0.7674, 0.0359, 0.0192, 0.018, 0.0097, 0.0059, 0.0059, 0.0038], [0.7887, 0.0734, 0.0445, 0.0164, 0.0044, 0.0041, 0.0034, 0.0032], [0.8883, 0.0173, 0.0077, 0.0068, 0.0039, 0.003, 0.003, 0.003], [0.7997, 0.0166, 0.0101, 0.0089, 0.0069, 0.0051, 0.0051, 0.0051], [0.7048, 0.0166, 0.0166, 0.0137, 0.0121, 0.0107, 0.0083, 0.0078], [0.6524, 0.0223, 0.021, 0.0174, 0.0153, 0.0093, 0.0087, 0.0082], [0.5622, 0.0247, 0.0192, 0.017, 0.0159, 0.0117, 0.011, 0.011], [0.6062, 0.0284, 0.0152, 0.0152, 0.0134, 0.0118, 0.0111, 0.0111], [0.6948, 0.0238, 0.0093, 0.0093, 0.0093, 0.0087, 0.0068, 0.0068], [0.7179, 0.018, 0.0109, 0.0085, 0.008, 0.0062, 0.0062, 0.0051], [0.8025, 0.0147, 0.0084, 0.0048, 0.0042, 0.0031, 0.0031, 0.0031], [0.7354, 0.0072, 0.0047, 0.0032, 0.003, 0.0028, 0.0028, 0.0028], [0.4403, 0.0206, 0.0142, 0.011, 0.0104, 0.0091, 0.0076, 0.0063], [0.732, 0.0681, 0.0143, 0.0081, 0.0067, 0.0067, 0.0067, 0.0053], [0.8389, 0.0287, 0.0253, 0.0154, 0.0082, 0.0068, 0.0027, 0.0025], [0.8642, 0.0552, 0.0096, 0.007, 0.0048, 0.0033, 0.0018, 0.0017], [0.321, 0.1947, 0.1718, 0.0338, 0.0205, 0.0193, 0.017, 0.017], [0.2792, 0.1919, 0.0585, 0.0517, 0.0428, 0.0355, 0.0276, 0.026], [0.306, 0.1856, 0.0603, 0.0603, 0.0469, 0.0343, 0.0285, 0.0267], [0.2142, 0.2142, 0.0788, 0.0614, 0.0329, 0.029, 0.024, 0.0146], [0.9297, 0.0281, 0.017, 0.0133, 0.0049, 0.0043, 0.0012, 0.0007], [0.6531, 0.3085, 0.0106, 0.0064, 0.0044, 0.0039, 0.0024, 0.0021], [0.8621, 0.1167, 0.0085, 0.0027, 0.0019, 0.0011, 0.0008, 0.0007], [0.98, 0.0085, 0.0075, 0.0007, 0.0006, 0.0004, 0.0003, 0.0002]], "ranks": {"Python": [25438, 128147, 153821, 159628, 27405, 132540, 62471, 135211, 90195, 117495, 55795, 119728, 99420, 68873, 61744, 125363, 80209, 68403, 117991, 143206, 59650, 154146, 145886, 186611, 72193, 139413, 148856, 108884, 128430, 92659, 52719, 45631, 57747, 93031, 159897, 148469, 160686, 144680, 165149, 165302, 143411, 129556, 104833, 101123, 102047, 82496, 85144, 91461, 128480, 160465, 96121, 40056, 14599, 14428, 13554, 55653, 44966, 45958, 27253, 15462, 7439, 6296, 6779]}}, {"pos": 453, "top": [[".", ",", ";", ":", "?", "\u2013", "\u2026.", "-"], ["\u2013", " Harbor", " Fraser", " Stre", " Pro", " \u2013", " \u200b\u200b", " HV"], ["\u2013", ".", ",", "\u2026.", " \u2013", ";", "\u2026..", "\u2026"], ["aleigh", "psilon", " ``", "carat", "ansom", " Strec", "stime", "bucks"], [" \u2019", " ", ".", " \u201c", " $$$", " CAD", ".\ufffd", " FR"], [".", "\u2026.", ",", " \u2019", "\u2026..", "\u2019s", " CAD", ":"], [" \u2019", ".", ".\u2019", ".\ufffd", ".\u201d", "\u2019s", "\u2026.", "\u3000"], ["\ufffds", ",", ".\ufffd", " \ufffd", ".", " \u2019", ";", " "], [".", ",", ";", ".\u201d", ".\ufffd", "\ufffds", ":", "\u2026."], [",", ";", ".", " \u00ad", "\ufffds", ".\ufffd", "\u2013", "\\'"], [".", ",", ";", ".\ufffd", " ", " \u00ad", ".\"", "\\'"], ["\ufffds", "gage", ".\ufffd", "\ufffdt", ".rpm", "ansom", "\u5931\u5e38", " \ufffd"], ["\ufffds", " faster", " even", " speed", " quickly", " .", ".\ufffd", " incredibly"], [" even", " incredibly", ",", " quickly", ".", " speed", " .", " fairly"], [" even", " .", " just", " dramatically", " ,", "--", " ", ","], [" --", "--", " even", " dramatically", "\u2014and", " just", "\u2014even", " incredibly"], [" even", " just", " incredibly", ",", " dramatically", "--", " seemingly", " quickly"], [" even", "\u2014even", " incredibly", " quickly", " dramatically", " just", "\u2014and", " wildly"], [" even", "\u2014even", " --", " incredibly", " dramatically", " quickly", " .", " just"], [" even", " --", "\u2014even", " just", "\u2014and", " dramatically", " seemingly", " ,"], ["<|endoftext|>", " even", " --", " ,", " just", "\u2014and", "\u2014even", " nearly"], [" even", " incredibly", " quickly", " dramatically", " --", " just", " wildly", "\u2014even"], [" even", " --", " dramatically", " ,", " incredibly", " just", " quickly", " much"], [" even", " --", " ,", " just", " much", " .", " dramatically", " quickly"], [" --", " even", " dramatically", "\u2014even", " ,", " incredibly", " wildly", " seemingly"], [" --", " even", " incredibly", " dramatically", " wildly", " ____", "\u2014even", " ___"], [" even", " --", " incredibly", " wildly", " dramatically", " ___", "\u2014even", " hugely"], [" even", " --", " incredibly", " ,", " dramatically", " heavily", " wildly", " ."], [" even", " incredibly", " --", " dramatically", " heavily", " .", " wildly", " ,"], [" even", " --", " .", " dramatically", " incredibly", " heavily", " .**", " wildly"], [" .", " even", " ,", " heavily", " quickly", " --", " over", " incredibly"], [" .", " even", " ,", " quickly", " heavily", " over", " faster", " speed"], [" even", " .", " heavily", " quickly", " incredibly", " faster", " despite", " ,"], [" even", " heavily", " dramatically", " quickly", " incredibly", " rapidly", " .", "\u2014even"], [" even", " heavily", "\u2014even", " dramatically", " rapidly", " quickly", " incredibly", " aggressively"], [" even", "\u2014even", " heavily", " dramatically", " .", " rapidly", " quickly", " incredibly"], [" even", "\u2014even", " heavily", " dramatically", "\u6839\u672c\u65e0\u6cd5", " notoriously", " barely", " impossible"], [" even", "\u2014even", " dramatically", " heavily", " impossible", " notoriously", " incredibly", "\u6839\u672c\u65e0\u6cd5"], [" even", "\u2014even", " dramatically", " heavily", " barely", " incredibly", " impossible", " wildly"], [" even", "\u2014even", " wildly", " dramatically", " heavily", "even", " impossible", " incredibly"], [" even", "\u2014even", " dramatically", " heavily", " wildly", " drastically", " speed", " impossible"], [" even", "\u2014even", " unpredictable", " wildly", " dramatically", " jitter", " heavily", " drastically"], [" even", " unpredictable", "\u2014even", " erratic", " dramatically", " wildly", " worse", " severely"], [" even", " unpredictable", " worse", " severely", " wildly", " dramatically", "\u2014even", " drastically"], [" even", " unpredictable", " dramatically", " average", " worse", " severely", " drastically", " erratic"], [" even", " unpredictable", " worse", " dozens", " erratic", " drastically", " dramatically", " fluct"], [" even", "\u2014even", " unpredictable", " erratic", " drastically", " inevitable", " inevitably", "even"], [" even", " drastically", " severely", " unpredictable", " erratic", " anywhere", " averages", "even"], [" even", "\u2014even", " erratic", "\u5373\u4fbf", " inevitably", " dozens", "\u54ea\u6015", "even"], [" even", "\u5373\u4fbf", "\u2014even", " anywhere", "\u54ea\u6015", "even", " Worse", " instantly"], ["\u5373\u4fbf", " instantly", "\u2014even", "\u54ea\u6015", " regardless", " inevitably", " immediately", " even"], ["\u2014even", " instantly", " regardless", "\u5373\u4fbf", " Worse", " immediately", " inevitably", " unless"], [" instantly", " immediately", " regardless", " sooner", " Worse", " d\u00e8s", " sp\u00e4testens", " worse"], [" instantly", " immediately", " sooner", " regardless", " Worse", " Immediately", "\u7acb\u523b", " sp\u00e4testens"], [" instantly", " immediately", "\u77ac\u95f4", "\u7acb\u523b", " Immediately", " quickly", "\u0e17\u0e31\u0e19\u0e17\u0e35", " sooner"], [" instantly", " immediately", "\u77ac\u95f4", " before", "\u7acb\u523b", " Immediately", " BEFORE", " below"], [" instantly", "\u77ac\u95f4", " immediately", " before", " below", "\u7acb\u523b", "\u77ac\u9593", " Immediately"], [" instantly", "\u77ac\u95f4", " immediately", " before", " below", " unpredict", "\u77ac\u9593", "\u7acb\u523b"], [" instantly", " immediately", "\u77ac\u95f4", " below", " before", " unpredict", "\u77ac\u9593", " hard"], [" immediately", " instantly", " before", " below", " hard", " unpredict", " well", " into"], [" instantly", " immediately", " below", " before", " hard", " well", " unpredict", " into"], [" instantly", " immediately", ".", " before", " below", " well", " to", " into"], [".", " immediately", " instantly", " to", " before", " below", " into", " hard"]], "p": [[0.9558, 0.0289, 0.0044, 0.0015, 0.0014, 0.0013, 0.0011, 0.001], [0.0145, 0.0053, 0.0047, 0.0029, 0.0029, 0.0027, 0.0021, 0.0021], [0.4428, 0.3043, 0.0988, 0.0283, 0.0235, 0.0195, 0.0172, 0.0161], [0.0021, 0.002, 0.0018, 0.0014, 0.0013, 0.0013, 0.0012, 0.0012], [0.016, 0.0151, 0.0086, 0.0059, 0.0038, 0.0038, 0.0034, 0.0028], [0.0103, 0.0091, 0.0091, 0.0059, 0.0049, 0.0046, 0.0028, 0.0026], [0.0983, 0.0719, 0.041, 0.0264, 0.0182, 0.0142, 0.0142, 0.0133], [0.042, 0.0289, 0.0239, 0.0198, 0.0175, 0.0136, 0.0083, 0.0078], [0.4477, 0.2715, 0.0324, 0.0099, 0.0093, 0.0082, 0.0077, 0.0064], [0.4299, 0.0228, 0.0228, 0.0084, 0.0058, 0.0051, 0.0035, 0.0033], [0.607, 0.1535, 0.0195, 0.0134, 0.0081, 0.0038, 0.0034, 0.0026], [0.0168, 0.0058, 0.0048, 0.0037, 0.0035, 0.0035, 0.0021, 0.0018], [0.0068, 0.003, 0.0021, 0.0021, 0.0021, 0.0019, 0.0018, 0.0017], [0.012, 0.0106, 0.0087, 0.0068, 0.0064, 0.005, 0.0047, 0.0034], [0.0449, 0.0256, 0.0212, 0.0146, 0.0137, 0.0137, 0.01, 0.01], [0.1402, 0.0333, 0.0259, 0.0202, 0.019, 0.0148, 0.0139, 0.0122], [0.0682, 0.044, 0.0267, 0.0184, 0.0184, 0.0184, 0.0152, 0.0152], [0.0869, 0.034, 0.03, 0.0282, 0.0182, 0.0161, 0.0125, 0.011], [0.1561, 0.0395, 0.0371, 0.0327, 0.0271, 0.0271, 0.0198, 0.0198], [0.1581, 0.1086, 0.0482, 0.0292, 0.0258, 0.0242, 0.0177, 0.0157], [0.9059, 0.0057, 0.0039, 0.0029, 0.0027, 0.0016, 0.0015, 0.0015], [0.2375, 0.0413, 0.0267, 0.0208, 0.0183, 0.0162, 0.0118, 0.0111], [0.2023, 0.1153, 0.0352, 0.0257, 0.0257, 0.0257, 0.0213, 0.0177], [0.1699, 0.091, 0.0855, 0.0295, 0.0277, 0.0277, 0.0261, 0.0158], [0.285, 0.0767, 0.0249, 0.0249, 0.0194, 0.0118, 0.0104, 0.0104], [0.2996, 0.1249, 0.0489, 0.0336, 0.0246, 0.0132, 0.0103, 0.0103], [0.1705, 0.1601, 0.0296, 0.0261, 0.0261, 0.0149, 0.014, 0.0109], [0.2688, 0.1631, 0.0235, 0.0235, 0.0235, 0.0221, 0.0161, 0.0092], [0.2888, 0.0416, 0.0391, 0.0345, 0.0324, 0.0252, 0.0197, 0.0153], [0.304, 0.0987, 0.0599, 0.0283, 0.0234, 0.0207, 0.0161, 0.0134], [0.5655, 0.208, 0.0248, 0.011, 0.0104, 0.0071, 0.0055, 0.0052], [0.6843, 0.1527, 0.0161, 0.0067, 0.0063, 0.0043, 0.0034, 0.0034], [0.6144, 0.0781, 0.0197, 0.0174, 0.0113, 0.0068, 0.0064, 0.006], [0.5388, 0.0501, 0.0196, 0.0184, 0.0163, 0.0119, 0.0093, 0.0082], [0.3186, 0.052, 0.0459, 0.0262, 0.0204, 0.014, 0.0132, 0.0109], [0.3594, 0.0665, 0.0486, 0.0203, 0.0168, 0.0158, 0.0131, 0.0116], [0.6904, 0.0684, 0.0098, 0.0072, 0.0068, 0.0068, 0.006, 0.0056], [0.6969, 0.069, 0.0099, 0.0093, 0.0077, 0.0073, 0.0073, 0.0057], [0.828, 0.0387, 0.0076, 0.0046, 0.0041, 0.0041, 0.0038, 0.0036], [0.8453, 0.0289, 0.005, 0.0047, 0.0037, 0.0037, 0.0035, 0.0032], [0.8059, 0.009, 0.0079, 0.0058, 0.0051, 0.004, 0.004, 0.0037], [0.7433, 0.0475, 0.0106, 0.0094, 0.0073, 0.0053, 0.0053, 0.0044], [0.7031, 0.0329, 0.0146, 0.0107, 0.01, 0.0094, 0.0089, 0.0065], [0.7285, 0.0194, 0.0161, 0.0118, 0.0111, 0.0111, 0.0098, 0.0086], [0.65, 0.0344, 0.0112, 0.0105, 0.0105, 0.0093, 0.0087, 0.0082], [0.7633, 0.0158, 0.008, 0.007, 0.0066, 0.0062, 0.0051, 0.0051], [0.8382, 0.0135, 0.0099, 0.0093, 0.0053, 0.0053, 0.0047, 0.0044], [0.7629, 0.014, 0.0131, 0.0131, 0.0116, 0.009, 0.0085, 0.0066], [0.7683, 0.0317, 0.0124, 0.0117, 0.008, 0.0075, 0.0066, 0.0066], [0.2555, 0.1368, 0.094, 0.0346, 0.0287, 0.021, 0.0197, 0.0185], [0.1441, 0.1122, 0.0874, 0.053, 0.0468, 0.0284, 0.0235, 0.0235], [0.0964, 0.0906, 0.0799, 0.0623, 0.0402, 0.026, 0.019, 0.0178], [0.1881, 0.1881, 0.065, 0.0506, 0.0447, 0.0186, 0.0175, 0.0145], [0.2296, 0.2296, 0.1393, 0.0227, 0.0214, 0.0201, 0.0156, 0.0138], [0.669, 0.2172, 0.0333, 0.0259, 0.0074, 0.0074, 0.0035, 0.0033], [0.6187, 0.2009, 0.0448, 0.0396, 0.0083, 0.0078, 0.0078, 0.0039], [0.7189, 0.0973, 0.0973, 0.0149, 0.0058, 0.0055, 0.0043, 0.0035], [0.7799, 0.0822, 0.0565, 0.0126, 0.0056, 0.0041, 0.0034, 0.003], [0.7525, 0.1018, 0.0481, 0.0227, 0.0122, 0.0057, 0.0033, 0.0029], [0.3796, 0.335, 0.0582, 0.0582, 0.0332, 0.0147, 0.0147, 0.0138], [0.4984, 0.3426, 0.0319, 0.0233, 0.0182, 0.0076, 0.0071, 0.0063], [0.392, 0.3459, 0.0772, 0.0342, 0.0284, 0.0208, 0.0111, 0.0087], [0.8332, 0.0604, 0.047, 0.0112, 0.0112, 0.0087, 0.0034, 0.003]], "ranks": {"Python": [31406, 224653, 152551, 139472, 14271, 78534, 12157, 34245, 27986, 50023, 13123, 35552, 32963, 23272, 14745, 45579, 30339, 25174, 32847, 54231, 39546, 77234, 51858, 58635, 90376, 77626, 82969, 56566, 56379, 30804, 15663, 17258, 24901, 48801, 108566, 75516, 121905, 101226, 101887, 90656, 63946, 88789, 71964, 71074, 47090, 42520, 63146, 79787, 106238, 186999, 190245, 127192, 186235, 143864, 172704, 147021, 98505, 113668, 111344, 46271, 28023, 14290, 6371]}}, {"pos": 454, "top": [[" \u2013", ".", ",", "\u2013", ";", "\u00a0\u00a0", "\u2026.", "\u00a0"], [" \u2013", "\u2013", "\u2013and", " \u2013,", " \u200b\u200b", ",", ".", "\u2013\u2013"], ["\u2013", ",", " \u2013", ".", "\u2013and", "\u2026", "\u2026..", ";"], [" milfs", "-------------</", " Shemale", "----------</", " ;;^", " Blowjob", "\uc3df", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9"], ["\u65b0\u52a0\u5761", "\u2193\u2193", " cittadin", " Millennials", ":@", "_intf", "\uff20", "\u52a0\u62ff\u5927"], ["<|quad_end|>", "\u65b0\u52a0\u5761", "arren", "fst", "\u6cd5\u62c9", "!:", " \u0628\u0648\u062a\u064a\u0646", " Celebrity"], ["  \n\n", " \n\n", "   \n\n", "\n\n", "<|endoftext|>", " \r\n\r\n", "      \n\n", "    \n\n"], ["   \n\n", "  \n\n", " \n\n", "    \n\n", "<|quad_end|>", "     \n\n", " \r\n\r\n", " *@"], [" \n\n", "   \n\n", "  \n\n", "    \n\n", " \r\n\r\n", "     \n\n", "\t\n\n", "      \n\n"], ["<|object_ref_start|>", "\u5468\u906d", "<|quad_end|>", "\u5750\u62e5", "\u5373\u4fbf\u662f", "\u52a8\u8f84", "\u8ba4\u8ba4\u771f", " \r\n\r\n"], [" arguably", " hefty", " sprawling", "\u5373\u4fbf\u662f", " gritty", " swiftly", " albeit", "<|object_ref_start|>"], [" arguably", " incredibly", " nonetheless", "\u706b\u901f", " albeit", " uncomfort", " **", "\u751a\u81f3\u4f1a"], [" incredibly", " arguably", " nonetheless", " anyways", " effortlessly", " albeit", " notoriously", " sprawling"], [" incredibly", " arguably", " effortlessly", " albeit", " even", " sprawling", " hugely", " hefty"], [" arguably", " swiftly", " incredibly", " though", " even", " truly", " effortlessly", " hefty"], [" arguably", " incredibly", " sprawling", " swiftly", " myriad", " folks", " savvy", "\u5373\u4fbf\u662f"], [" incredibly", " arguably", " savvy", " folks", " myriad", " sprawling", " hefty", " wildly"], [" incredibly", " arguably", " savvy", " sprawling", " folks", "\u5373\u4fbf", " hefty", " famously"], [" arguably", " incredibly", " famously", " myriad", " swiftly", " even", "\u5373\u4fbf\u662f", " savvy"], [" arguably", "<|endoftext|>", "\u5373\u4fbf", " incredibly", " swiftly", "\u2014even", " myriad", " famously"], ["<|endoftext|>", "\n\n", " \n\n", "  \n\n", " swiftly", "\u5373\u4fbf", " arguably", " myriad"], [" arguably", " incredibly", " even", "\u5373\u4fbf", " swiftly", " famously", "\u5373\u4fbf\u662f", " myriad"], [" arguably", " swiftly", " even", "\u5373\u4fbf", " incredibly", " myriad", "<|endoftext|>", " ultimately"], ["<|endoftext|>", "\n\n", " even", " arguably", " swiftly", " ultimately", " myriad", "\u5373\u4fbf"], ["\n\n", " \n\n", "\r\n\r\n", "  \n\n", "<|endoftext|>", " \r\n\r\n", "   \n\n", "\u5373\u4fbf"], [" **", "\r\n\r\n", "\n\n", " \r\n\r\n", " \n\n", "\u5373\u4fbf", "  \n\n", " **#"], ["\n\n", "\r\n\r\n", " **", " \n\n", " arguably", "\u5373\u4fbf", " even", " \r\n\r\n"], ["\n\n", " \n\n", "\r\n\r\n", "<|endoftext|>", " **", "  \n\n", " arguably", " even"], ["\n\n", "\r\n\r\n", " arguably", " \n\n", " **", " even", "<|endoftext|>", "  \n\n"], ["\n\n", " **", " even", " \n\n", " arguably", "  \n\n", " ultimately", "\r\n\r\n"], ["<|endoftext|>", " even", " \n\n", " ultimately", " arguably", " ...", "\n\n", " truly"], [" even", "<|endoftext|>", " ultimately", " **", " heavily", " only", " arguably", " eventually"], [" even", " ultimately", " arguably", " truly", " only", " heavily", " incredibly", " essentially"], [" even", " ultimately", " truly", " arguably", " essentially", "\u2014even", " heavily", " uniquely"], ["\u2014even", " even", " truly", " essentially", " relentlessly", " relentless", " arguably", " ONLY"], ["<|endoftext|>", "\u2014even", " even", " relentlessly", " relentless", " ONLY", " essentially", " truly"], ["\u2014even", "\u6839\u672c\u65e0\u6cd5", " even", " ONLY", " relentlessly", " relentless", " desperately", " brutally"], ["\u2014even", "\u6839\u672c\u65e0\u6cd5", " even", " impossible", " ONLY", " desperately", " relentlessly", " relentless"], ["\u2014even", " even", "\u6839\u672c\u65e0\u6cd5", " impossible", " ONLY", " desperately", " relentless", " relentlessly"], ["\u2014even", " even", "\u6839\u672c\u65e0\u6cd5", " impossible", "\u2011", " literally", " desperately", " relentless"], [" even", "\u2014even", " impossible", "\u6839\u672c\u65e0\u6cd5", " literally", " desperately", " relentless", " outright"], ["\u2014even", " even", "\u6839\u672c\u65e0\u6cd5", " desperately", " impossible", " crippling", " essentially", " outright"], [" even", "\u2014even", "\u6839\u672c\u65e0\u6cd5", " desperately", " impossible", " outright", " crippling", " essentially"], [" even", "\u2014even", " impossible", " desperately", "\u6839\u672c\u65e0\u6cd5", " outright", " failures", " failure"], [" even", " impossible", " failure", "\u6839\u672c\u65e0\u6cd5", " desperately", " outright", " failures", " dangerously"], [" even", " impossible", " purely", " outright", "\u6839\u672c\u65e0\u6cd5", " inevitably", " worse", " dangerously"], [" even", "\u6839\u672c\u65e0\u6cd5", "\u2014even", " inevitable", " inevitably", " impossible", " literally", " desperately"], [" even", "\u2014even", " inevitable", "\u6839\u672c\u65e0\u6cd5", " inevitably", " impossible", " failure", " Worse"], [" even", "\u2014even", "\u6839\u672c\u65e0\u6cd5", " Worse", "even", "\u751a\u81f3\u4f1a", "\u5373\u4fbf", "\u4e5f\u65e0\u6cd5"], [" additionally", " ALSO", " Additionally", "Additionally", " furthermore", " even", "\u540c\u65f6\u8fd8\u8981", "\u4e5f\u65e0\u6cd5"], ["\u540c\u65f6\u8fd8\u8981", "Additionally", " additionally", "\u5373\u4fbf", " Additionally", "\u4e0d\u4ec5\u5982\u6b64", " inoltre", " \ub610\ud55c"], ["\u540c\u65f6\u8fd8\u8981", " Additionally", "Additionally", "\u518d\u52a0\u4e0a", " Worse", " additionally", " ALSO", " furthermore"], [" Additionally", " additionally", "\u540c\u65f6\u8fd8\u8981", "Additionally", " Worse", "\u52a0\u4e4b", "\u6b64\u5916", " furthermore"], [" Additionally", " Even", " Worse", "\u540c\u65f6\u8fd8\u8981", "\u5373\u4fbf", " additionally", " furthermore", "\u2014even"], [" additionally", " attempting", " furthermore", " Additionally", " Worse", "\u540c\u65f6\u8fd8\u8981", " inoltre", " Furthermore"], [" Worse", " additionally", " furthermore", " attempting", " Additionally", " syncing", "\u540c\u65f6\u8fd8\u8981", " inoltre"], [" Worse", " Additionally", " attempting", " Even", " Trying", " syncing", " additionally", " Android"], [" Android", " Worse", " Even", " Additionally", " attempting", " iOS", " syncing", " Trying"], [" Even", " Additionally", " Worse", " Trying", " attempting", " Android", " additionally", " Attempt"], [" Mobile", " Async", " Even", " attempting", " mobile", " Attempt", " Additionally", " async"], [" Mobile", " mobile", " Async", " Even", " Additionally", " Mid", " Trying", " Attempt"], [" Mobile", " Additionally", " Even", " mobile", " Async", " Mid", " Middleware", " Android"], [" Mobile", " Even", " You", " Additionally", " Mid", " The", " Async", " On"]], "p": [[0.5513, 0.2951, 0.0845, 0.0513, 0.0045, 0.0014, 0.0013, 0.0013], [0.2312, 0.0377, 0.0079, 0.0027, 0.0021, 0.0019, 0.0014, 0.0013], [0.7442, 0.1141, 0.0692, 0.0255, 0.0186, 0.0057, 0.005, 0.0037], [0.0087, 0.006, 0.0046, 0.0041, 0.0038, 0.0038, 0.003, 0.0026], [0.0034, 0.0026, 0.0022, 0.002, 0.0016, 0.0015, 0.0015, 0.0012], [0.0035, 0.0024, 0.0015, 0.0014, 0.0012, 0.0012, 0.001, 0.001], [0.2655, 0.1254, 0.0407, 0.0205, 0.0132, 0.0117, 0.008, 0.008], [0.1744, 0.0414, 0.0323, 0.0162, 0.0126, 0.0098, 0.0092, 0.0082], [0.431, 0.2614, 0.1399, 0.0293, 0.0115, 0.0108, 0.0101, 0.0079], [0.0015, 0.0014, 0.0012, 0.0011, 0.001, 0.0009, 0.0009, 0.0009], [0.0097, 0.0049, 0.0049, 0.0041, 0.0041, 0.0038, 0.0036, 0.0034], [0.0057, 0.0037, 0.0025, 0.0024, 0.0022, 0.0021, 0.0018, 0.0017], [0.0168, 0.0115, 0.009, 0.0074, 0.004, 0.0037, 0.0035, 0.0027], [0.0556, 0.028, 0.0141, 0.0117, 0.0085, 0.0071, 0.0066, 0.0062], [0.0434, 0.0318, 0.0232, 0.0218, 0.017, 0.0117, 0.0117, 0.0097], [0.0334, 0.0158, 0.0148, 0.0115, 0.0108, 0.0108, 0.0096, 0.009], [0.0827, 0.0605, 0.0391, 0.0345, 0.0304, 0.0209, 0.0112, 0.0099], [0.0818, 0.0528, 0.0341, 0.0171, 0.0171, 0.0104, 0.0098, 0.0092], [0.134, 0.1044, 0.0233, 0.016, 0.016, 0.015, 0.0133, 0.0125], [0.0736, 0.0475, 0.0419, 0.0271, 0.0254, 0.0186, 0.0186, 0.0175], [0.9936, 0.0005, 0.0004, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001], [0.0603, 0.0236, 0.0208, 0.0208, 0.0196, 0.0173, 0.0111, 0.0092], [0.0547, 0.0312, 0.0312, 0.0275, 0.0228, 0.0157, 0.0157, 0.0157], [0.6146, 0.0287, 0.0164, 0.0128, 0.0093, 0.0082, 0.0064, 0.0057], [0.7438, 0.0888, 0.0574, 0.0348, 0.0154, 0.0145, 0.0047, 0.0029], [0.1765, 0.1463, 0.1374, 0.037, 0.037, 0.037, 0.0175, 0.0128], [0.7365, 0.0534, 0.0196, 0.0135, 0.0105, 0.0099, 0.0068, 0.0047], [0.9491, 0.0093, 0.0093, 0.0032, 0.0032, 0.0028, 0.0022, 0.002], [0.7175, 0.0336, 0.0231, 0.0231, 0.0204, 0.0131, 0.0131, 0.0096], [0.1964, 0.1734, 0.1119, 0.1051, 0.0412, 0.0283, 0.025, 0.0235], [0.3171, 0.218, 0.0356, 0.0356, 0.0168, 0.0148, 0.0131, 0.0123], [0.2989, 0.1503, 0.071, 0.0217, 0.0179, 0.0169, 0.0169, 0.0158], [0.3277, 0.0606, 0.0345, 0.0286, 0.0223, 0.0153, 0.0153, 0.0093], [0.0491, 0.0462, 0.0434, 0.0218, 0.0218, 0.0218, 0.015, 0.0132], [0.1182, 0.0361, 0.0299, 0.0205, 0.0181, 0.0125, 0.0117, 0.0103], [0.1764, 0.1463, 0.0288, 0.0164, 0.0154, 0.0154, 0.0145, 0.0136], [0.2166, 0.1234, 0.0354, 0.0259, 0.0157, 0.0147, 0.013, 0.0122], [0.3075, 0.0881, 0.0777, 0.0185, 0.0173, 0.0153, 0.0144, 0.0144], [0.2804, 0.141, 0.0855, 0.0335, 0.0216, 0.0123, 0.009, 0.009], [0.2559, 0.1209, 0.0831, 0.0393, 0.0197, 0.0112, 0.0099, 0.0088], [0.2839, 0.0764, 0.0361, 0.0339, 0.0193, 0.017, 0.011, 0.0097], [0.166, 0.1141, 0.0327, 0.0307, 0.0164, 0.0128, 0.0113, 0.01], [0.1113, 0.0719, 0.034, 0.0282, 0.0182, 0.0182, 0.0151, 0.0104], [0.1438, 0.0497, 0.0341, 0.0301, 0.0301, 0.0183, 0.0172, 0.0172], [0.1103, 0.0432, 0.0169, 0.0169, 0.0169, 0.0132, 0.0124, 0.0116], [0.2226, 0.0266, 0.0235, 0.022, 0.0151, 0.0142, 0.0142, 0.0111], [0.1353, 0.0498, 0.0439, 0.0388, 0.0342, 0.0321, 0.0172, 0.0162], [0.1896, 0.0373, 0.0291, 0.0257, 0.0241, 0.0213, 0.0188, 0.0146], [0.4474, 0.073, 0.0472, 0.0209, 0.0185, 0.0173, 0.0144, 0.0093], [0.2061, 0.0807, 0.0669, 0.059, 0.0432, 0.0336, 0.0279, 0.0246], [0.0754, 0.0709, 0.0666, 0.0625, 0.043, 0.0379, 0.0356, 0.0314], [0.1137, 0.1137, 0.0942, 0.0504, 0.0504, 0.0504, 0.0347, 0.027], [0.1161, 0.0963, 0.0904, 0.0549, 0.0455, 0.0377, 0.0313, 0.0313], [0.0692, 0.065, 0.0476, 0.0394, 0.0327, 0.0239, 0.0198, 0.0186], [0.1738, 0.1534, 0.1354, 0.0601, 0.053, 0.0195, 0.0162, 0.0152], [0.1407, 0.0909, 0.0753, 0.0429, 0.0379, 0.0277, 0.0245, 0.0168], [0.0971, 0.0756, 0.0667, 0.0589, 0.0296, 0.0246, 0.0231, 0.0217], [0.1215, 0.0611, 0.0574, 0.0539, 0.042, 0.0271, 0.0175, 0.0175], [0.1319, 0.0965, 0.08, 0.0378, 0.0313, 0.0313, 0.0202, 0.0179], [0.118, 0.1109, 0.0593, 0.0557, 0.0434, 0.0408, 0.0298, 0.0263], [0.3859, 0.1039, 0.0671, 0.0433, 0.0317, 0.0218, 0.0218, 0.0218], [0.3618, 0.0915, 0.0629, 0.0432, 0.0381, 0.0279, 0.0246, 0.0246], [0.2724, 0.2404, 0.1002, 0.0689, 0.0608, 0.0306, 0.0287, 0.0224]], "ranks": {"Python": [85012, 194341, 100524, 132966, 26752, 101888, 12248, 68857, 64215, 94379, 32167, 56990, 57246, 32352, 26440, 34606, 20063, 11235, 31767, 70409, 24143, 86121, 58989, 26374, 5750, 13203, 9774, 6451, 7619, 3666, 3461, 2573, 5353, 12795, 26046, 21038, 25879, 20874, 14591, 17248, 14549, 14067, 15789, 20089, 13691, 10265, 14837, 13742, 11470, 13511, 17698, 889, 48726, 12462, 8373, 723, 39, 39, 43, 174, 147, 62, 68]}}, {"pos": 455, "top": [[".", " \u2013", ",", "\u2013", "\u00a0", ";", "<|endoftext|>", "\u00a0\u00a0"], [" \u2013", "\u2013", ",", ".", "\u2013and", ";", " \u2013,", ".["], [",", "\u2013", ".", " \u2013", ";", "\u2013and", ".\u2013", ".["], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\ufffd\ufffd", "----------</", "\uad49\uc7a5", "TRGL", " milfs", "-------------</", " ;;^"], ["\u00a0\u00a0", ".", ",", " \u201c.", "\uff1a\u201c", "\u2018s", "\u2018", ",@"], ["\u00a0\u00a0", ".", "   \n", ",", " \u200b\u200b", "\u00a0", "<|quad_end|>", "<|quad_start|>"], ["  \n\n", "   \n", " \n\n", "  \n", "  \n  \n", "   \n\n", " **\u2018", "       \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", ",", "\u2013", "<|object_ref_start|>", "\u00a0\u00a0\u00a0"], ["\u00a0", " \n\n", ",", "\u2013", "...", "\u00a0\u00a0", "<|endoftext|>", "  \n  \n"], ["\u5468\u906d", "-esque", "\u4ea6\u6216\u662f", "DMETHOD", "\u4ec5\u5269", " arguably", " \uad49\uc7a5\ud788", "\u82e5\u975e"], ["-esque", " impactful", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\u4ea6\u6216\u662f", " overarching", "\u5468\u906d", " showcased", " molteplici"], ["-esque", "\u5468\u906d", "\u708e\u708e\u590f\u65e5", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " impactful", " overarching", " showcased", " entirety"], ["\u5468\u906d", " entirety", "-esque", " arguably", " savvy", " albeit", " showcased", "\u6b64\u756a"], [" entirety", "\u62e5\u6709\u7740", "\u5468\u906d", " sprawling", " arguably", " overarching", " savvy", "\u6b64\u756a"], [" overarching", " entirety", " arguably", "-esque", " myriad", "\u5468\u906d", " sprawling", " incredibly"], ["  \n\n", "   \n\n", " \n\n", " sprawling", " folks", " myriad", " savvy", " arguably"], [" myriad", "-esque", " arguably", " incredibly", " savvy", " seemingly", "\u5373\u4fbf\u662f", "\u5373\u4fbf"], ["<|endoftext|>", " myriad", "\u5373\u4fbf", " arguably", " seemingly", " burgeoning", "\u5373\u4fbf\u662f", " hugely"], ["<|endoftext|>", " \n\n", "  \n\n", "   \n\n", "\u5373\u4fbf", "\n\n", " myriad", " burgeoning"], ["\u5373\u4fbf", " hugely", "\u4e0d\u5149", " sprawling", "\u4ec5\u5269", "\u751a\u81f3\u4f1a", "\u5373\u4fbf\u662f", " myriad"], ["\u5373\u4fbf", " myriad", " hugely", "\u4e0d\u5149", " entirety", " sprawling", "\u62e5\u6709\u7740", " utterly"], [" ultimately", " myriad", "\u5373\u4fbf", " hugely", " swiftly", " arguably", " sprawling", " burgeoning"], [" \n\n", "  \n\n", "   \n\n", "\n\n", " \r\n\r\n", "\u5373\u4fbf", "\r\n\r\n", "\t\n\n"], [" \n\n", "   \n\n", "  \n\n", "\u5373\u4fbf", " \r\n\r\n", "\u5468\u906d", " hugely", "\t\n\n"], [" \n\n", "\n\n", "\u5373\u4fbf", " ultimately", "  \n\n", " myriad", "   \n\n", " hugely"], [" \n\n", "\n\n", " ultimately", "  \n\n", " arguably", " even", " myriad", " hugely"], [" \n\n", "\n\n", "  \n\n", " ultimately", " myriad", "   \n\n", " arguably", " sprawling"], [" \n\n", " ultimately", "  \n\n", " arguably", " even", " myriad", " eventually", " incredibly"], [" ultimately", " even", " \n\n", " eventually", " much", " arguably", " massive", " heavily"], [" ultimately", " even", " much", " eventually", " just", " incredibly", " heavily", " arguably"], [" ultimately", " even", " eventually", " arguably", " just", " massive", " relentlessly", " truly"], [" ultimately", " relentlessly", " relentless", " aggressively", " arguably", " massive", " even", " incredibly"], [" arguably", " relentlessly", " relentless", " aggressively", " ultimately", " looming", " sprawling", " massive"], [" relentless", " relentlessly", " aggressively", " arguably", " ultimately", " inevitably", " inability", " inevitable"], [" relentless", " inability", " aggressively", " relentlessly", " inevitably", " inevitable", " desperation", " ultimately"], [" inability", " relentless", " frantic", " inevitable", " relentlessly", " desperation", " aggressively", " inefficient"], [" inability", " relentless", " frantic", " desperation", " inevitable", " failures", " inefficient", " sluggish"], [" relentless", " inability", " frantic", " sluggish", " impossible", " inevitable", " hardware", " failures"], [" hardware", " frantic", " relentless", " sluggish", " inability", " tech", " desperation", " bottleneck"], [" frantic", " hardware", " sluggish", " relentless", " pressure", " bottleneck", " desperation", " tech"], [" sluggish", " frantic", " hardware", " desperation", " inability", " relentless", " pressure", " bottleneck"], [" sluggish", " frantic", " relentless", " bottleneck", " delays", " slower", " pressure", " fatigue"], [" frantic", " sluggish", " massive", " slower", " overcrow", " slow", " delays", " bottleneck"], [" frantic", " sluggish", " overcrow", " overloaded", " collapsing", " chaos", " demands", " massive"], [" frantic", " sluggish", " bottleneck", " fatigue", " chaos", " inevitably", " inevitable", " latency"], [" sluggish", " frantic", " bottleneck", " inability", " demands", " chaos", " inevitably", " overcrow"], [" sluggish", " bottleneck", " frantic", " inability", " overcrow", " syncing", " fatigue", " erratic"], [" bottleneck", " sluggish", " syncing", " chaos", " overcrow", " sheer", " frantic", " latency"], [" bottleneck", " latency", " sluggish", " syncing", "_latency", " synchronization", " delays", " frantic"], [" CPU", " latency", " bottleneck", " JIT", " jitter", " sluggish", " syncing", " buffering"], [" latency", " bottleneck", " CPU", " buffering", " sluggish", " JIT", "_latency", " jitter"], [" CPU", " bottleneck", " latency", " buffering", " framerate", " jitter", " JIT", " GPU"], [" CPU", " latency", " bottleneck", " GPU", " jitter", " framerate", " JIT", " JVM"], [" CPU", " UI", " GPU", " GUI", " garbage", " JIT", " JVM", " GC"], [" UI", " GC", " garbage", " GPU", " CPU", " GUI", " JIT", " renderer"], [" UI", " GPU", " GC", " CPU", " GUI", " garbage", " JIT", " JVM"], [" GC", " GPU", " UI", " CPU", " GUI", " JIT", "GC", " garbage"], [" UI", " GC", "UI", " GUI", " async", " GPU", " Async", " CPU"], [" UI", " GC", " GUI", " GPU", " CPU", " async", "UI", " Async"], [" UI", " GC", " GPU", " GUI", " CPU", " async", "UI", " moment"], [" UI", " GC", " GUI", " G", " GPU", " CI", "UI", " CPU"]], "p": [[0.525, 0.2189, 0.2189, 0.018, 0.0109, 0.0031, 0.002, 0.0006], [0.6761, 0.1606, 0.046, 0.0204, 0.0159, 0.0052, 0.0031, 0.0023], [0.414, 0.2846, 0.2216, 0.0719, 0.0028, 0.0015, 0.0009, 0.0004], [0.0054, 0.0016, 0.0016, 0.0015, 0.0015, 0.0014, 0.0012, 0.0011], [0.036, 0.0218, 0.011, 0.0059, 0.0049, 0.0049, 0.0046, 0.0046], [0.0554, 0.0149, 0.014, 0.0109, 0.009, 0.008, 0.0051, 0.0048], [0.1734, 0.1268, 0.0819, 0.025, 0.0235, 0.022, 0.0151, 0.0118], [0.1851, 0.1534, 0.0322, 0.0208, 0.0152, 0.0118, 0.0118, 0.0098], [0.4406, 0.2358, 0.2081, 0.0282, 0.0104, 0.0097, 0.0091, 0.0076], [0.1859, 0.0222, 0.0173, 0.0162, 0.0153, 0.0105, 0.0047, 0.0036], [0.9388, 0.0081, 0.0063, 0.0059, 0.0059, 0.0046, 0.003, 0.0021], [0.0044, 0.0039, 0.0027, 0.0021, 0.0017, 0.0017, 0.0016, 0.0015], [0.0076, 0.0056, 0.0046, 0.0038, 0.0034, 0.0032, 0.003, 0.0023], [0.0076, 0.0038, 0.0028, 0.0028, 0.0023, 0.0022, 0.0019, 0.0019], [0.0124, 0.0085, 0.0066, 0.0066, 0.0045, 0.0045, 0.0043, 0.0033], [0.0045, 0.004, 0.0038, 0.0027, 0.0026, 0.0024, 0.0023, 0.0018], [0.0148, 0.0131, 0.0123, 0.0115, 0.0079, 0.0079, 0.0074, 0.007], [0.0186, 0.0174, 0.0106, 0.0088, 0.0082, 0.0077, 0.0064, 0.0064], [0.0182, 0.0133, 0.0133, 0.0086, 0.0081, 0.0067, 0.0063, 0.0059], [0.0217, 0.0149, 0.0132, 0.0096, 0.0066, 0.0066, 0.0055, 0.0055], [0.7642, 0.0296, 0.014, 0.0038, 0.0029, 0.0028, 0.002, 0.0009], [0.0031, 0.0021, 0.0018, 0.0018, 0.0018, 0.0017, 0.0015, 0.0015], [0.0054, 0.004, 0.0031, 0.0026, 0.002, 0.002, 0.0019, 0.0019], [0.0061, 0.0051, 0.0042, 0.0033, 0.0027, 0.002, 0.0019, 0.0019], [0.151, 0.086, 0.046, 0.0279, 0.0246, 0.0132, 0.0085, 0.0075], [0.0288, 0.0113, 0.0106, 0.01, 0.0073, 0.0034, 0.0032, 0.003], [0.0313, 0.0294, 0.0066, 0.0045, 0.0042, 0.004, 0.004, 0.0037], [0.1043, 0.092, 0.0219, 0.0097, 0.0076, 0.0071, 0.0067, 0.0052], [0.177, 0.1378, 0.0271, 0.0225, 0.01, 0.0083, 0.0078, 0.005], [0.0809, 0.0461, 0.0232, 0.015, 0.0141, 0.0124, 0.0085, 0.008], [0.0588, 0.043, 0.0168, 0.0131, 0.0131, 0.0109, 0.0085, 0.008], [0.0625, 0.0379, 0.0123, 0.0123, 0.0109, 0.0102, 0.0096, 0.009], [0.0672, 0.0317, 0.016, 0.008, 0.0075, 0.0075, 0.0063, 0.0063], [0.0234, 0.0161, 0.0161, 0.0104, 0.0092, 0.0092, 0.0086, 0.0086], [0.017, 0.0133, 0.0133, 0.0097, 0.0097, 0.0067, 0.0059, 0.0046], [0.0244, 0.0157, 0.0108, 0.0102, 0.0102, 0.0084, 0.0062, 0.0062], [0.0136, 0.012, 0.0099, 0.0093, 0.0082, 0.0077, 0.006, 0.0057], [0.0171, 0.0151, 0.0086, 0.0081, 0.0076, 0.0071, 0.0067, 0.0067], [0.0223, 0.0144, 0.0112, 0.0093, 0.0093, 0.0087, 0.0087, 0.0082], [0.0281, 0.0205, 0.016, 0.0141, 0.0133, 0.0133, 0.011, 0.0086], [0.034, 0.03, 0.0234, 0.0206, 0.0133, 0.011, 0.0086, 0.0081], [0.0326, 0.0307, 0.0224, 0.012, 0.0113, 0.0113, 0.0106, 0.0073], [0.0378, 0.019, 0.0158, 0.0115, 0.0108, 0.0108, 0.0108, 0.0102], [0.0449, 0.029, 0.0129, 0.0129, 0.0129, 0.0121, 0.0121, 0.0107], [0.0208, 0.0143, 0.0126, 0.0119, 0.0119, 0.0092, 0.0087, 0.0087], [0.0221, 0.0162, 0.0143, 0.0098, 0.0092, 0.0087, 0.0087, 0.0081], [0.0362, 0.0282, 0.0249, 0.0104, 0.0104, 0.0104, 0.0097, 0.0092], [0.0297, 0.0246, 0.0169, 0.0109, 0.0109, 0.0102, 0.0096, 0.009], [0.0514, 0.0228, 0.0214, 0.0138, 0.0122, 0.0095, 0.0074, 0.007], [0.0638, 0.0283, 0.0161, 0.0142, 0.0142, 0.0118, 0.0111, 0.0104], [0.0193, 0.0125, 0.0086, 0.0059, 0.0046, 0.0041, 0.0036, 0.0036], [0.0791, 0.0743, 0.048, 0.0156, 0.0156, 0.0114, 0.0107, 0.0101], [0.2047, 0.1806, 0.1242, 0.0334, 0.0148, 0.0115, 0.0102, 0.009], [0.198, 0.1747, 0.1747, 0.0236, 0.0127, 0.0119, 0.0077, 0.0072], [0.4349, 0.0756, 0.0553, 0.0431, 0.0203, 0.0191, 0.0179, 0.0123], [0.492, 0.2634, 0.0755, 0.0216, 0.014, 0.009, 0.009, 0.0055], [0.3219, 0.2212, 0.1184, 0.1184, 0.0718, 0.0339, 0.016, 0.0097], [0.6074, 0.174, 0.1055, 0.0302, 0.0236, 0.0162, 0.0067, 0.0028], [0.3658, 0.3228, 0.2514, 0.0182, 0.0161, 0.0046, 0.0036, 0.0028], [0.9882, 0.0046, 0.0022, 0.0012, 0.0009, 0.0008, 0.0004, 0.0004], [0.9811, 0.0096, 0.0031, 0.0021, 0.001, 0.0007, 0.0006, 0.0004], [0.9744, 0.0139, 0.0027, 0.0024, 0.0011, 0.0007, 0.0006, 0.0005], [0.9939, 0.0019, 0.0007, 0.0005, 0.0004, 0.0004, 0.0003, 0.0002]], "ranks": {"Python": [32308, 161955, 116016, 171287, 32631, 64599, 28733, 142712, 49153, 46225, 9061, 179595, 168301, 218526, 202695, 196214, 182881, 147003, 195928, 219585, 145825, 226037, 224849, 206013, 173495, 210366, 197111, 130834, 115664, 101362, 49976, 53043, 67818, 93879, 109873, 44163, 41734, 37418, 21750, 17155, 11015, 13541, 13965, 9671, 11702, 10672, 8231, 4140, 2672, 2171, 2053, 266, 12829, 4177, 3845, 562, 57, 90, 85, 215, 152, 175, 123]}}, {"pos": 456, "top": [["s", "i", " \u2013", "\u2026.", "a", "en", " |\u2013", "\u2026.."], ["s", " \u2013**", "ihi", "sburg", "sula", "**\u2013", "i", "schn"], ["**\u2013", "s", " \u2013**", " \u2013", " **\u2013", "\u2013", "\u2026..", "i"], ["sula", "satz", "ieli", " milfs", "enzi", "iha", "ihi", "eniu"], ["s", "i", "ihi", "\u064a", "iho", "iha", "i\u00e9s", "\u0627\u062a"], ["s", "ihi", "i", "iha", "sula", "\u064a", "sii", "\u0670"], ["s", "i", "..", "ihi", "sii", "\u0670", "\u0627\u062a", "s\u00e4"], ["s", "i", "..", "ihi", "sburg", ",.", ":.", "!."], ["s", "i", "..", "!.", "ihi", ":.", ",.", "[.."], ["s", "i", "iha", "sii", "ihi", "ska", "\u0670", "sburg"], ["s", "i", "ihi", "ska", "\u0670", " [@", " electronics", " [_"], ["satz", "sii", "sula", "ihi", "iha", " matchups", " **\u25a0", " electronics"], ["s", "sii", "sula", "satz", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "szeit", " electronics", "s\u00e4"], [" electronics", "s", "iha", "ihi", "sii", "ska", "\u5927\u5496", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9"], ["s", " electronics", " matchups", "ska", "\u5e4c", "i", "iha", "ieme"], ["s", " matchups", "sii", " electronics", "ska", "\u548c\u4fe1\u606f\u5316", "iha", "ihi"], ["s", "sii", "ska", " matchups", " tech", " electronics", "i", " tweaks"], ["s", "sii", " matchups", " electronics", "ska", "(UI", "iha", " tweaks"], ["s", "sii", "(UI", "ihi", " matchups", "/UI", "ugi", "ska"], ["s", "(UI", "sii", "ugi", "/UI", "ihi", "i", " folks"], ["i", "s", "\u305d\u3046\u3057\u305f", " folks", "|i", "ihi", "ugi", "/UI"], ["sii", "ihi", "(UI", "iha", " Geile", "/UI", "\u548c\u4fe1\u606f\u5316", " **\u25a0"], ["(UI", "sii", "/UI", "ihi", "iha", "\u548c\u4fe1\u606f\u5316", "ugi", "\u53cd\u5012\u662f"], ["\u53cd\u5012\u662f", "\u548c\u4fe1\u606f\u5316", "sii", "hti", "(UI", " electronics", "/UI", " nonetheless"], ["(UI", "/UI", "sii", " matchups", " UIScreen", "ihi", "ugi", "\u548c\u4fe1\u606f\u5316"], ["/UI", " electronics", ":UI", "(UI", " widgets", "sii", " UIScreen", "\u548c\u4fe1\u606f\u5316"], ["\u548c\u4fe1\u606f\u5316", " electronics", " widgets", "/UI", " UIScreen", " widget", " sitcom", ":UI"], [" electronics", "\u548c\u4fe1\u606f\u5316", "/UI", " screens", " furniture", " hardware", " widgets", " apps"], [" electronics", " widgets", " screens", "\u548c\u4fe1\u606f\u5316", "/UI", " furniture", " graphics", " hardware"], [" electronics", " widgets", " screens", " storefront", " sitcom", "/UI", " graphics", " furniture"], [" electronics", " screens", " widgets", " graphics", " furniture", " theater", " complex", " phones"], [" complex", " also", " still", " screens", " games", " even", " itself", " and"], [" also", " itself", " still", " too", " complex", " screens", " even", " anyway"], [" electronics", " tech", " screens", " tweaks", " seamlessly", " subsystem", " widgets", " theater"], ["/UI", " tech", " seamlessly", "-centric", " glitches", " tweaks", " electronics", " UX"], ["/UI", " responsiveness", " glitches", " complex", " tech", " UX", " complexity", " glitch"], [" glitches", " responsiveness", "/UI", " glitch", " sluggish", " synced", " complexity", " slower"], [" UI", " responsiveness", "/UI", " glitches", " glitch", " sluggish", " complexity", " synced"], [" UI", "/UI", " responsiveness", " UX", " glitches", " complex", " complexity", " sluggish"], [" UI", "/UI", " responsiveness", " UX", " glitches", " sluggish", " widgets", " complexity"], [" UI", "/UI", " responsiveness", " sluggish", " graphics", " widgets", " glitch", " glitches"], [" UI", "/UI", " responsiveness", " glitches", " widgets", " sluggish", " interface", " GUI"], [" UI", " responsiveness", "/UI", " sluggish", " glitches", " interface", " sync", " glitch"], [" UI", " responsiveness", " sluggish", "/UI", " interface", " glitches", " sync", " synchronization"], [" UI", " glitches", " synchronization", " responsiveness", " sync", " synchronized", " synced", " concurrently"], [" synchronization", " glitches", " responsiveness", " UI", " sync", " synced", " concurrently", " synchronized"], [" synchronization", " sync", " synchronized", " concurrently", " synced", " synchron", " glitches", " syncing"], [" synchronization", " concurrently", " synced", " glitches", " syncing", " sync", " responsiveness", " synchronized"], [" glitches", " synced", " synchronization", " sluggish", " syncing", "/UI", " responsiveness", " concurrently"], ["\u4e5f\u56e0", "\u4e5f\u4f1a", "/UI", " glitches", "\u4e5f\u4f1a\u88ab", " syncing", " synced", "\u4e5f\u6703"], ["\u4e5f\u4f1a", "/UI", "\u4e5f\u4f1a\u88ab", "\u4e5f\u5c06", "\u4e5f\u56e0", "\u4e5f\u6703", "\u4e5f\u4f1a\u5728", "\u540c\u6b65"], ["\u4e5f\u4f1a", "/UI", "\u4e5f\u5c06", " ALSO", " synchronization", "\u4e5f\u6703", " responsiveness", "\u540c\u6b65"], [" responsiveness", "/UI", " sluggish", "\u5361\u987f", "\u4e5f\u4f1a", "\u540c\u6b65", " synchronization", " freezes"], ["/UI", " UI", " freezes", " responsiveness", " froze", "\u5361\u987f", " synchronization", "(UI"], ["/UI", " UI", " will", " thread", "(UI", "\u7ebf\u7a0b", "\u4e5f\u4f1a", "UI"], ["/UI", " thread", " will", "-thread", "\u7ebf\u7a0b", " UI", " freezes", " threads"], [" responsiveness", "/UI", " thread", "-thread", " UI", " responsive", "\u7ebf\u7a0b", " will"], [" responsiveness", "/UI", " thread", " will", "-thread", "\u7ebf\u7a0b", " UI", " threading"], [" thread", "-thread", "\u7ebf\u7a0b", " responsiveness", " threads", " Thread", "thread", " threading"], [" thread", "-thread", " threads", "\u7ebf\u7a0b", " Thread", " threading", "thread", " responsiveness"], [" thread", " will", "-thread", " responsiveness", "\u7ebf\u7a0b", " threads", " threading", " Thread"], [" thread", " will", " responsiveness", "-thread", " threading", " Thread", "\u7ebf\u7a0b", " threads"], [" thread", " will", " threading", " layer", " Thread", " responsiveness", "-thread", " event"]], "p": [[0.9065, 0.0744, 0.0101, 0.0005, 0.0004, 0.0004, 0.0003, 0.0003], [0.449, 0.0536, 0.027, 0.0185, 0.0127, 0.0112, 0.0099, 0.0093], [0.2195, 0.1606, 0.0915, 0.0521, 0.0406, 0.0262, 0.0192, 0.018], [0.0192, 0.017, 0.0159, 0.015, 0.0124, 0.0103, 0.0075, 0.0052], [0.8438, 0.0693, 0.0155, 0.0025, 0.0022, 0.0017, 0.0014, 0.0014], [0.4283, 0.0657, 0.033, 0.0101, 0.0084, 0.0084, 0.0061, 0.0051], [0.9782, 0.009, 0.0015, 0.0006, 0.0004, 0.0004, 0.0004, 0.0002], [0.6738, 0.0315, 0.0102, 0.0085, 0.0055, 0.0048, 0.0038, 0.0038], [0.3111, 0.0165, 0.0128, 0.0113, 0.0106, 0.0106, 0.01, 0.0094], [0.2019, 0.0114, 0.0061, 0.0057, 0.0057, 0.0054, 0.0042, 0.0037], [0.2567, 0.061, 0.0078, 0.0064, 0.005, 0.0044, 0.0039, 0.0037], [0.0069, 0.0057, 0.0047, 0.0047, 0.0042, 0.0039, 0.0037, 0.0037], [0.0048, 0.0043, 0.0043, 0.004, 0.004, 0.0038, 0.0038, 0.0033], [0.0054, 0.0035, 0.0033, 0.0031, 0.0029, 0.0026, 0.0026, 0.0024], [0.0463, 0.011, 0.0059, 0.0049, 0.003, 0.0025, 0.0025, 0.0023], [0.0239, 0.0057, 0.0047, 0.0034, 0.0025, 0.0025, 0.0024, 0.0022], [0.1951, 0.004, 0.0036, 0.0036, 0.0032, 0.003, 0.0026, 0.0025], [0.0178, 0.0051, 0.0051, 0.0045, 0.0042, 0.0035, 0.0033, 0.0033], [0.0112, 0.0073, 0.0056, 0.0053, 0.005, 0.0044, 0.0044, 0.0044], [0.0142, 0.0043, 0.0043, 0.0043, 0.0041, 0.0036, 0.0034, 0.003], [0.0078, 0.0053, 0.002, 0.0018, 0.0017, 0.0016, 0.0016, 0.0015], [0.0043, 0.0038, 0.0036, 0.0036, 0.003, 0.0025, 0.0025, 0.0023], [0.0038, 0.0036, 0.0032, 0.003, 0.0025, 0.002, 0.0019, 0.0017], [0.0034, 0.0013, 0.0012, 0.0012, 0.001, 0.001, 0.0009, 0.0009], [0.0048, 0.0042, 0.002, 0.0017, 0.0016, 0.0015, 0.0015, 0.0014], [0.0056, 0.005, 0.0047, 0.0044, 0.0036, 0.0036, 0.0036, 0.0032], [0.0078, 0.0078, 0.0061, 0.0057, 0.0035, 0.0033, 0.0029, 0.0027], [0.009, 0.007, 0.0023, 0.0023, 0.002, 0.0018, 0.0018, 0.0016], [0.0222, 0.0064, 0.006, 0.0053, 0.0041, 0.0039, 0.0034, 0.0028], [0.0209, 0.0105, 0.0077, 0.0053, 0.0044, 0.0036, 0.0036, 0.0036], [0.0297, 0.018, 0.0132, 0.008, 0.0075, 0.0058, 0.0048, 0.0048], [0.0169, 0.0149, 0.0096, 0.0085, 0.0062, 0.0062, 0.0058, 0.0055], [0.0207, 0.0086, 0.0072, 0.0063, 0.0059, 0.0056, 0.0049, 0.0043], [0.0072, 0.0056, 0.0047, 0.0044, 0.0041, 0.0036, 0.0036, 0.0032], [0.0118, 0.0087, 0.0087, 0.0052, 0.0046, 0.0044, 0.0038, 0.0038], [0.0117, 0.011, 0.0097, 0.0091, 0.0091, 0.0075, 0.0071, 0.0071], [0.0221, 0.0221, 0.0118, 0.0111, 0.0111, 0.0081, 0.0076, 0.0076], [0.0222, 0.0196, 0.0184, 0.0173, 0.0119, 0.0087, 0.0087, 0.0082], [0.1013, 0.051, 0.0241, 0.0241, 0.0146, 0.0107, 0.0107, 0.0094], [0.1135, 0.0608, 0.0392, 0.0164, 0.0144, 0.0144, 0.0112, 0.0106], [0.1761, 0.0648, 0.0505, 0.0347, 0.012, 0.0099, 0.0093, 0.0088], [0.1997, 0.0735, 0.0572, 0.027, 0.0224, 0.021, 0.0174, 0.0154], [0.1174, 0.0914, 0.059, 0.0406, 0.0262, 0.0231, 0.0169, 0.0159], [0.1155, 0.0425, 0.0352, 0.0331, 0.0228, 0.0228, 0.0228, 0.0177], [0.0436, 0.0385, 0.0339, 0.03, 0.0264, 0.0206, 0.0182, 0.0171], [0.0302, 0.0266, 0.025, 0.0235, 0.0221, 0.0221, 0.0183, 0.0183], [0.0883, 0.0368, 0.0305, 0.0287, 0.0269, 0.0238, 0.0238, 0.0197], [0.0494, 0.0436, 0.0362, 0.034, 0.03, 0.03, 0.0233, 0.0233], [0.043, 0.0295, 0.0277, 0.0261, 0.0245, 0.0216, 0.0191, 0.0148], [0.0449, 0.0372, 0.0349, 0.0272, 0.0272, 0.0272, 0.0256, 0.0187], [0.1055, 0.0601, 0.0565, 0.0413, 0.0343, 0.0267, 0.0235, 0.0183], [0.2255, 0.0732, 0.0346, 0.0325, 0.0287, 0.0269, 0.0269, 0.0253], [0.1379, 0.1379, 0.0948, 0.0575, 0.0371, 0.0349, 0.0308, 0.024], [0.5028, 0.0771, 0.0468, 0.0468, 0.0195, 0.0183, 0.0162, 0.0143], [0.6148, 0.1211, 0.0943, 0.0306, 0.0238, 0.0099, 0.0077, 0.0053], [0.2558, 0.2558, 0.083, 0.0571, 0.0571, 0.027, 0.0238, 0.021], [0.9572, 0.0137, 0.0094, 0.0021, 0.0018, 0.0014, 0.0014, 0.0011], [0.8677, 0.0336, 0.0297, 0.0109, 0.0085, 0.0046, 0.0035, 0.0028], [0.798, 0.0742, 0.0351, 0.0213, 0.0166, 0.0146, 0.0129, 0.0114], [0.8893, 0.0345, 0.0163, 0.0163, 0.0127, 0.0087, 0.006, 0.006], [0.8902, 0.0269, 0.0163, 0.0127, 0.0099, 0.0099, 0.0077, 0.006], [0.7637, 0.1931, 0.0085, 0.0085, 0.004, 0.0028, 0.0026, 0.0019], [0.9692, 0.0138, 0.0035, 0.0024, 0.0012, 0.0011, 0.0009, 0.0008]], "ranks": {"Python": [16586, 79841, 104632, 78314, 11056, 61035, 14293, 49766, 49923, 84115, 17983, 61529, 68388, 98029, 67249, 122942, 135397, 110686, 131067, 184682, 134058, 165577, 159483, 161947, 133407, 112880, 78168, 51823, 46897, 40544, 33810, 29866, 43647, 37116, 47275, 24646, 15586, 16222, 13955, 17949, 20476, 28626, 18853, 22890, 17848, 26106, 23800, 31430, 71767, 102232, 114373, 30833, 35610, 26472, 15804, 19212, 6316, 6507, 8057, 4462, 2970, 1681, 1430]}}, {"pos": 457, "top": [[" \u2013", ".", ",", "\u2013", ";", "\u2013and", " ", "\""], [" \u2013", "\u2013", "\u2013and", "\u2013\u2013", " \u2018", "\u00ad", " \u2013,", ".\u2013"], ["\u2013", " \u2013", ",", "\u2013and", "\u2026..", ".", ";", ".\u2013"], ["':''", " Strec", " cittadin", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "liner", "HeaderCode", "TROD", "deck"], ["er", " -->", "-->", "wise", " ----", "less", " '@", " FIG"], ["nost", "er", "wise", "wine", "waves", "bed", "tod", "caller"], ["--", "er", "\u2014\u2014", "----", "---", "~", "\u2018", "~~~~"], ["--", "er", "iness", "----", " -->", "~", " ----", "\ufffds"], [" -->", " [#", "&T", "er", "-->", "&nbsp", "~", ",#"], ["--", ",", "edly", "~", ")--", "er", "iness", "\u2013\u2013"], [",", "er", ".", "--", ";", " ", "#", "&"], [" --", "er", " -->", "edly", " atop", ")--", "--", " '--"], ["er", "edly", " --", " aggressively", " -->", " pervasive", "(Thread", " atop"], ["er", "edly", " aggressively", " pervasive", " cadre", " atop", " arguably", " orchestr"], [" --", " aggressively", " arguably", "--", "er", " ostensibly", " via", " yet"], [" arguably", " aggressively", " --", " ostensibly", "er", " atop", " myriad", " via"], ["er", " arguably", " myriad", " aggressively", " --", " ostensibly", " atop", " potentially"], ["er", " arguably", " aggressively", " myriad", "-esque", " ostensibly", " comfortably", " potentially"], [" arguably", " --", " ostensibly", " aggressively", " myriad", " atop", " seemingly", " moot"], [" --", " ostensibly", " myriad", " arguably", "--", " aggressively", " \u2014", " ultimately"], ["<|endoftext|>", " --", "--", " myriad", " ostensibly", " \u2014", " swiftly", " arguably"], [" --", " atop", " aggressively", "edly", " arguably", " preempt", " ''", " amid"], [" --", " aggressively", " ''", " atop", " arguably", "edly", " heavily", " ostensibly"], [" --", " arguably", " heavily", " aggressively", " ultimately", " ostensibly", " ''", " continually"], [" --", " arguably", " atop", "edly", " ostensibly", " aggressively", " heavily", " ---"], [" --", "edly", "\u52a0\u73ed\u52a0\u70b9", " atop", " ---", " arguably", " aggressively", " pacing"], [" --", " pacing", "\u52a0\u73ed\u52a0\u70b9", " atop", " servicing", "edly", " threading", " multit"], [" --", " ___", " ---", " arguably", " heavily", " ,", " atop", " ultimately"], [" --", " atop", " heavily", " thread", " pacing", " arguably", " stalled", " ___"], [" ___", " pacing", " thread", " overtime", " clock", " uptime", " downtown", " stalled"], [" heavily", " clock", " overtime", " hours", " busy", " thread", " --", " traffic"], [" heavily", " --", " even", " quickly", " hours", " only", " busy", " would"], [" heavily", " even", " rapidly", " only", " would", " quickly", " hours", " must"], [" heavily", " rapidly", " must", " clock", " quickly", " tech", " faster", " hours"], [" heavily", " rapidly", " panicked", " busy", " distracted", " quickly", " aggressively", " stalled"], [" rapidly", " faster", " quickly", " busy", " heavily", " bottleneck", " must", " thread"], [" bottleneck", " busy", " rapidly", " sluggish", " delays", " concurrently", " faster", " heavily"], [" rapidly", " busy", " thread", " must", " bottleneck", " quickly", " sluggish", " concurrently"], [" busy", " thread", " bottleneck", " delays", " sluggish", " synchronous", " delay", " slow"], [" thread", " busy", " Thread", " bottleneck", " delays", " constantly", " synchronous", " synchronized"], [" thread", " busy", " bottleneck", " Thread", " slow", " sluggish", " delays", " slower"], [" thread", " busy", " Thread", " bottleneck", " synchronous", " threads", " delays", " synchronization"], [" bottleneck", " thread", " busy", " Thread", " delays", " synchronous", " blocking", " synchronization"], [" bottleneck", " busy", " blocking", " thread", " delays", "-blocking", " Thread", "\u963b\u585e"], [" bottleneck", " blocking", " busy", " delays", "-blocking", " thread", " concurrently", " interfering"], [" blocking", " simultaneously", " bottleneck", " concurrently", "-blocking", " interfering", " busy", " thread"], [" bottleneck", " simultaneously", " inevitably", " concurrently", " blocking", "-blocking", " concurrent", " thread"], [" inevitably", " bottleneck", " concurrently", " simultaneously", " would", " cannot", " concurrent", " inevitable"], [" inevitably", " would", " bottleneck", " cannot", " concurrently", " inevitable", " synced", " will"], [" would", " inevitably", " bottleneck", " cannot", " wouldn", "\u4e5f\u4f1a\u88ab", " will", " inevitable"], ["\u4e5f\u4f1a\u88ab", " inevitably", "\u4e5f\u4f1a", " will", " would", " bottleneck", "\u4e5f\u6703", " cannot"], ["\u4e5f\u4f1a", "\u4e5f\u4f1a\u88ab", " would", " will", " inevitably", "\u4e5f\u6703", " bottleneck", "\u4e5f\u4f1a\u5728"], [" will", " becomes", " bottleneck", "\u4e5f\u4f1a\u88ab", "\u4e5f\u4f1a", " inevitably", " would", " waits"], [" will", " becomes", " bottleneck", " cannot", "\u4e5f\u4f1a", "\u4e5f\u4f1a\u88ab", " waits", " would"], [" will", " becomes", "will", "\u4e5f\u4f1a", "\u5c06\u6210\u4e3a", "\u4e5f\u4f1a\u88ab", "\u4e5f\u5c06", " bottleneck"], [" will", "will", " becomes", " waits", "\u5c06\u6210\u4e3a", "\u4e5f\u5c06", " WILL", " bottleneck"], [" will", "will", "\u4e5f\u5c06", "\u5c06\u6210\u4e3a", " WILL", " waiting", "\u4e5f\u4f1a", " bottleneck"], [" will", "will", "\u4e5f\u5c06", " WILL", "\u5c06\u6210\u4e3a", " bottleneck", " choking", " syncing"], [" will", " blocking", "-blocking", "\u963b\u585e", " blocked", "blocking", " Blocking", "Blocking"], [" will", " blocking", "will", " choking", " freezes", " freezing", " bottleneck", "-blocking"], [" will", " blocking", "will", " choking", " freezing", " WILL", " freezes", " would"], [" will", "will", " WILL", " blocking", " *", " choking", " freezes", " bottleneck"], [" will", " *", " blocking", " choking", " handling", " freezes", " WILL", " freezing"]], "p": [[0.5152, 0.3125, 0.115, 0.0423, 0.0035, 0.0014, 0.0014, 0.0009], [0.3207, 0.1337, 0.0762, 0.0193, 0.0055, 0.0036, 0.0033, 0.0023], [0.5403, 0.1754, 0.0778, 0.0731, 0.0237, 0.0153, 0.0072, 0.006], [0.0039, 0.003, 0.0029, 0.0029, 0.0027, 0.002, 0.002, 0.0018], [0.036, 0.0103, 0.008, 0.0055, 0.0049, 0.0046, 0.0043, 0.004], [0.0048, 0.0038, 0.0027, 0.0023, 0.0023, 0.0021, 0.002, 0.002], [0.1078, 0.0614, 0.0577, 0.035, 0.035, 0.0226, 0.0199, 0.0155], [0.0511, 0.0451, 0.02, 0.0188, 0.0177, 0.0166, 0.0166, 0.0146], [0.0287, 0.0269, 0.0269, 0.0223, 0.0163, 0.0135, 0.0112, 0.0105], [0.0655, 0.051, 0.0121, 0.0073, 0.0065, 0.0061, 0.0037, 0.0031], [0.6307, 0.0551, 0.0457, 0.0277, 0.026, 0.0116, 0.0102, 0.0051], [0.0312, 0.0243, 0.0167, 0.0058, 0.0051, 0.0048, 0.0048, 0.004], [0.048, 0.0094, 0.0045, 0.0037, 0.0037, 0.0033, 0.0033, 0.0027], [0.0235, 0.0086, 0.0059, 0.0043, 0.0034, 0.003, 0.0028, 0.002], [0.0378, 0.0277, 0.0215, 0.0179, 0.0148, 0.0108, 0.007, 0.0062], [0.0256, 0.0241, 0.0212, 0.0089, 0.0078, 0.0057, 0.0042, 0.0031], [0.04, 0.0376, 0.0201, 0.0201, 0.0122, 0.0101, 0.0079, 0.0061], [0.0247, 0.0205, 0.017, 0.0091, 0.0066, 0.0062, 0.0043, 0.0031], [0.0426, 0.0258, 0.0228, 0.0214, 0.0167, 0.0079, 0.0061, 0.0054], [0.1122, 0.0322, 0.025, 0.0235, 0.0208, 0.0162, 0.0111, 0.0063], [0.1849, 0.0771, 0.0235, 0.0152, 0.0111, 0.0104, 0.0081, 0.0067], [0.0326, 0.0093, 0.0077, 0.0034, 0.0032, 0.0028, 0.0025, 0.0025], [0.2586, 0.0088, 0.0083, 0.0069, 0.0069, 0.005, 0.0039, 0.0031], [0.2966, 0.0108, 0.0101, 0.0095, 0.0095, 0.0062, 0.004, 0.004], [0.2758, 0.0074, 0.0047, 0.0042, 0.0039, 0.0039, 0.0039, 0.0031], [0.041, 0.0043, 0.0043, 0.0038, 0.003, 0.0028, 0.0025, 0.0018], [0.0191, 0.0043, 0.0035, 0.0031, 0.002, 0.0019, 0.0018, 0.0017], [0.3939, 0.0093, 0.0077, 0.0068, 0.0056, 0.0041, 0.0041, 0.0041], [0.0589, 0.0058, 0.0058, 0.0048, 0.0043, 0.0038, 0.0035, 0.0035], [0.0138, 0.0069, 0.0051, 0.0042, 0.004, 0.004, 0.0035, 0.0035], [0.0135, 0.0077, 0.0077, 0.0068, 0.0068, 0.006, 0.0056, 0.005], [0.0324, 0.0099, 0.0082, 0.0082, 0.0072, 0.0068, 0.0056, 0.005], [0.0301, 0.0104, 0.0098, 0.0098, 0.0086, 0.0081, 0.0072, 0.0067], [0.0239, 0.006, 0.0057, 0.0053, 0.0047, 0.0047, 0.0042, 0.0042], [0.015, 0.0091, 0.0066, 0.0066, 0.0066, 0.0059, 0.0055, 0.0052], [0.0274, 0.0227, 0.0156, 0.013, 0.0095, 0.0069, 0.0057, 0.0054], [0.0211, 0.0165, 0.0165, 0.0145, 0.012, 0.01, 0.01, 0.0094], [0.0155, 0.0155, 0.0145, 0.0128, 0.0128, 0.0121, 0.0121, 0.0106], [0.0247, 0.0232, 0.0218, 0.0218, 0.016, 0.0132, 0.0124, 0.0117], [0.054, 0.0327, 0.0327, 0.0211, 0.0211, 0.0145, 0.0145, 0.0128], [0.1057, 0.0774, 0.0566, 0.0469, 0.0343, 0.0251, 0.0173, 0.0134], [0.137, 0.1287, 0.0346, 0.0325, 0.0197, 0.0197, 0.0185, 0.0154], [0.0889, 0.0692, 0.0574, 0.0239, 0.0225, 0.0211, 0.0198, 0.0186], [0.0642, 0.0567, 0.0414, 0.0344, 0.0251, 0.0236, 0.0184, 0.0143], [0.0704, 0.0584, 0.0333, 0.0243, 0.0243, 0.0229, 0.019, 0.0139], [0.0517, 0.0429, 0.0429, 0.0378, 0.0203, 0.0179, 0.0179, 0.0158], [0.0672, 0.0462, 0.036, 0.036, 0.036, 0.0181, 0.017, 0.017], [0.1094, 0.0623, 0.0334, 0.0334, 0.0277, 0.019, 0.0179, 0.0179], [0.1439, 0.0529, 0.0497, 0.0321, 0.0142, 0.0142, 0.0118, 0.0111], [0.2052, 0.1245, 0.0804, 0.038, 0.0278, 0.0278, 0.0216, 0.014], [0.1678, 0.1018, 0.0898, 0.0399, 0.0399, 0.0352, 0.033, 0.033], [0.2745, 0.2137, 0.0891, 0.0786, 0.0477, 0.0371, 0.0328, 0.0128], [0.1843, 0.1626, 0.1435, 0.1266, 0.0598, 0.0265, 0.0194, 0.0151], [0.4442, 0.1273, 0.0991, 0.0365, 0.0322, 0.0251, 0.0251, 0.0134], [0.9677, 0.0074, 0.0051, 0.0024, 0.0021, 0.0016, 0.0011, 0.0009], [0.9757, 0.0035, 0.0035, 0.0017, 0.0015, 0.0011, 0.0007, 0.0007], [0.9633, 0.0094, 0.0031, 0.0014, 0.0014, 0.001, 0.0009, 0.0009], [0.9695, 0.0074, 0.0031, 0.0021, 0.0021, 0.0008, 0.0007, 0.0006], [0.6182, 0.2007, 0.0507, 0.0308, 0.0308, 0.0113, 0.0088, 0.0069], [0.975, 0.0074, 0.0019, 0.0017, 0.0011, 0.0009, 0.0008, 0.0008], [0.9916, 0.001, 0.001, 0.0008, 0.0007, 0.0005, 0.0005, 0.0002], [0.9957, 0.0006, 0.0004, 0.0003, 0.0003, 0.0003, 0.0002, 0.0002], [0.9866, 0.0033, 0.0008, 0.0008, 0.0008, 0.0007, 0.0005, 0.0005]], "ranks": {"Python": [22757, 197705, 160864, 135807, 15631, 105170, 13386, 33259, 25143, 53906, 9664, 23072, 28402, 46341, 23206, 63372, 59575, 65598, 87847, 123398, 63703, 123769, 110636, 100974, 133732, 130905, 104097, 58730, 26234, 24457, 23261, 20808, 25968, 18144, 29954, 17059, 7535, 5954, 4169, 2231, 2715, 3480, 2480, 3115, 3541, 3569, 4628, 5089, 23292, 29129, 36099, 6715, 13129, 12617, 9415, 7967, 1839, 2202, 2471, 2028, 1596, 675, 576]}}, {"pos": 458, "top": [["s", " \u2013", "\u2013", ",", ".", "\u2013and", "t", "y"], ["s", " \u2013", "\u2013", "\u2013and", "sWith", "\u0627\u062a", ",", "es"], ["s", "\u2013", " \u2013", ",", "\u2013and", ".", ".\u2013", " \u2013,"], ["s", "sWith", "sprozess", "\u0627\u062a", "scha", "sula", "schrift", "erias"], ["s", "sWith", "\u0627\u062a", "er", "en", "t", "sche", "sense"], ["s", "sWith", "\u0627\u062a", "\u2013and", "t", "er", "\u2013", ","], ["s", "\u0627\u062a", "t", "er", "sWith", "sand", "saf", "l"], ["s", "sWith", "er", "\u0627\u062a", "t", "ingly", "ity", "sand"], ["s", "sWith", "......", "er", "   \n\n", "\u0627\u062a", "\u2013and", "t"], ["s", ",", "\u2013and", "\u2013", "sWith", "t", "er", "\u0627\u062a"], ["s", ",", "t", "\u2013", "er", "l", "...", "n"], ["s", "sWith", "\u0627\u062a", "er", "ive", "ingly", "t", " **"], ["s", "sWith", "er", "ingly", "ive", "\u0627\u062a", "al", "t"], ["s", "sWith", "er", "t", "ingly", "\u0627\u062a", " hopefully", "al"], ["s", " just", " `", "t", " hopefully", "l", "n", " even"], ["s", " just", "t", "n", " incredibly", " hopefully", " even", "y"], ["s", " just", "t", "n", " incredibly", ",", " seemingly", "l"], ["s", " just", " incredibly", " utterly", " seemingly", " barely", " pretty", "t"], ["s", " incredibly", " barely", " utterly", " seemingly", " inevitably", " just", " wildly"], ["s", " barely", " just", " utterly", " seemingly", "<|endoftext|>", " wildly", " incredibly"], ["<|endoftext|>", "\n\n", " \n\n", "s", "  \n\n", "   \n\n", " just", " barely"], ["s", " utterly", " barely", " incredibly", " uncomfort", " wildly", " disastr", " inevitably"], ["s", " barely", " eventually", " even", " utterly", " ultimately", "\n\n", " just"], ["s", "\n\n", " just", " even", "<|endoftext|>", " ultimately", " eventually", " barely"], [" \n\n", "\n\n", "  \n\n", "   \n\n", "\r\n\r\n", " \r\n\r\n", "    \n\n", "      \n\n"], [" \n\n", " \r\n\r\n", "   \n\n", "\n\n", "\r\n\r\n", "  \n\n", " utterly", " uncomfort"], [" \n\n", "\n\n", "\r\n\r\n", " \r\n\r\n", "   \n\n", " uncomfort", "  \n\n", " barely"], ["\n\n", " \n\n", " even", " eventually", " barely", " ultimately", " just", " seemingly"], [" \n\n", "\n\n", " even", " barely", " wildly", " eventually", " uncomfort", " ultimately"], [" \n\n", " even", " barely", " eventually", "   \n\n", " wildly", " incredibly", " uncomfort"], [" even", " \n\n", " barely", " eventually", " just", " too", " inevitably", " quickly"], [" even", " too", " barely", " eventually", " just", " quickly", " inevitably", " incredibly"], [" even", " too", " relentlessly", " barely", " inevitably", " eventually", " incredibly", " wildly"], [" even", " relentlessly", " inevitably", " frantic", " incredibly", " barely", " desperately", " eventually"], [" even", " inevitably", " relentlessly", " frantic", " panicked", " barely", " desperately", " too"], [" inevitably", " even", " sluggish", " frantic", " relentlessly", " too", " quickly", " rapidly"], [" sluggish", " inevitably", " frantic", " relentlessly", " desperately", " slower", " even", " notoriously"], [" sluggish", " inevitably", " even", " frantic", " slower", " slow", " rapidly", " desperately"], [" sluggish", " frantic", " inevitably", " relentlessly", " panicked", " jitter", " slow", " even"], [" sluggish", " frantic", " inevitably", " jitter", " stutter", " panicked", " unpredictable", " slow"], [" sluggish", " frantic", " slow", " bottleneck", " stutter", " jitter", " slower", " panicked"], [" sluggish", " jitter", " stutter", " frantic", " bottleneck", " crashes", " panicked", " stalled"], [" sluggish", " stutter", " jitter", " erratic", " crashes", " stalled", " bottleneck", " crashing"], [" sluggish", " stutter", " jitter", " crashes", " stalled", " erratic", " bottleneck", " panicked"], [" jitter", " sluggish", " erratic", " stutter", " crashes", " unpredictable", " stalled", " interruptions"], [" jitter", " erratic", " unpredictable", " sluggish", " crashes", " stutter", " constantly", " inevitably"], [" inevitably", " jitter", " crashes", " erratic", " interruptions", " inevitable", " constantly", " bottleneck"], [" inevitably", " crashes", " erratic", " interruptions", " bursts", " constantly", " sluggish", " inevitable"], [" inevitably", " erratic", " sluggish", " crashes", " interruptions", " jitter", " bursts", " inevitable"], [" bottleneck", " sluggish", " inevitably", " crashes", " erratic", " interruptions", " synced", " choking"], [" bottleneck", "\u4e5f\u4f1a\u88ab", " inevitably", " sluggish", " interruptions", " deadlock", " erratic", " synced"], [" bottleneck", " sluggish", " deadlock", " stutter", "\u4e5f\u4f1a\u88ab", "\u963b\u585e", " inevitably", " interruptions"], [" bottleneck", "\u5361\u987f", " stutter", " sluggish", " lag", " choking", " choked", " freezes"], [" bottleneck", " stutter", " freezes", "\u5361\u987f", "\u963b\u585e", " lag", " deadlock", " freeze"], [" stutter", " freezes", " bottleneck", "\u5361\u987f", " deadlock", " freeze", " lag", " choking"], [" stutter", " deadlock", " freezes", " freeze", " starving", " bottleneck", "\u5361\u987f", " mutex"], [" freezes", " freeze", " stutter", " deadlock", "\u5361\u987f", " freezing", " froze", " stalls"], [" stutter", " jitter", " freeze", " stalls", " stall", " freezes", "\u5361\u987f", " deadlock"], [" stutter", " blocking", " freeze", "\u963b\u585e", " jitter", "-blocking", " freezes", " deadlock"], [" stutter", " freeze", " stall", " jitter", " freezes", " stalls", " choke", " deadlock"], [" stutter", " freeze", " stall", " jitter", " freezes", " deadlock", " choke", " stalls"], [" stutter", " freeze", " stall", " jitter", " choke", " deadlock", " seize", " lock"], [" stutter", " freeze", " stall", " block", " lock", " choke", " jitter", " star"]], "p": [[0.9874, 0.0085, 0.0028, 0.001, 0.0002, 0.0, 0.0, 0.0], [0.9965, 0.0016, 0.0005, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.7538, 0.1682, 0.0482, 0.0228, 0.004, 0.0021, 0.0003, 0.0001], [0.3619, 0.0406, 0.0132, 0.0085, 0.0058, 0.0055, 0.0046, 0.0043], [1.0, 0.0, 0.0, 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], [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.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], [0.9996, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9997, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9993, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9941, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.9887, 0.0007, 0.0004, 0.0003, 0.0002, 0.0002, 0.0001, 0.0001], [0.9763, 0.002, 0.0016, 0.0011, 0.0006, 0.0005, 0.0005, 0.0005], [0.8887, 0.006, 0.0053, 0.0028, 0.0025, 0.0013, 0.0011, 0.001], [0.9097, 0.0051, 0.0026, 0.0026, 0.0026, 0.0021, 0.0018, 0.0013], [0.5358, 0.0172, 0.0134, 0.0134, 0.0111, 0.0104, 0.0076, 0.0076], [0.7456, 0.1296, 0.0289, 0.0225, 0.0083, 0.0027, 0.0014, 0.0011], [0.0559, 0.0248, 0.0205, 0.0205, 0.016, 0.0141, 0.0125, 0.0103], [0.0247, 0.0218, 0.0192, 0.0181, 0.017, 0.017, 0.017, 0.0159], [0.0299, 0.0264, 0.0233, 0.0219, 0.0205, 0.0205, 0.0193, 0.017], [0.4239, 0.4239, 0.0288, 0.0271, 0.0239, 0.0239, 0.0025, 0.0013], [0.423, 0.0649, 0.0538, 0.0505, 0.0419, 0.0224, 0.006, 0.006], [0.3233, 0.3037, 0.0301, 0.0194, 0.0171, 0.0086, 0.0067, 0.0067], [0.2604, 0.1394, 0.0258, 0.0177, 0.0138, 0.0114, 0.0095, 0.0084], [0.1898, 0.1675, 0.0273, 0.0188, 0.0101, 0.0089, 0.0083, 0.0078], [0.1956, 0.0766, 0.0265, 0.0133, 0.0133, 0.0117, 0.0117, 0.011], [0.1678, 0.0331, 0.031, 0.02, 0.0122, 0.0114, 0.0107, 0.0107], [0.2706, 0.0236, 0.0196, 0.0196, 0.0119, 0.0105, 0.0099, 0.0087], [0.1886, 0.024, 0.0175, 0.0155, 0.0145, 0.0145, 0.0128, 0.0088], [0.0629, 0.0262, 0.0232, 0.0192, 0.014, 0.0132, 0.0124, 0.0124], [0.0555, 0.0279, 0.0231, 0.018, 0.0132, 0.0132, 0.0124, 0.0124], [0.0383, 0.036, 0.028, 0.0263, 0.0263, 0.015, 0.0141, 0.0141], [0.0997, 0.0644, 0.0237, 0.0184, 0.0144, 0.0135, 0.0135, 0.0127], [0.0989, 0.0387, 0.0301, 0.0266, 0.0235, 0.0152, 0.0142, 0.0142], [0.1249, 0.0381, 0.0297, 0.0217, 0.0169, 0.0149, 0.0149, 0.0149], [0.1558, 0.0475, 0.0327, 0.0254, 0.0254, 0.0186, 0.0164, 0.0154], [0.3648, 0.0596, 0.0464, 0.0319, 0.0233, 0.0206, 0.0182, 0.016], [0.1453, 0.0881, 0.0686, 0.0569, 0.0223, 0.0223, 0.0197, 0.0185], [0.1439, 0.127, 0.0989, 0.0387, 0.0283, 0.0207, 0.0207, 0.0161], [0.1091, 0.0849, 0.0584, 0.0377, 0.0313, 0.0276, 0.0202, 0.0167], [0.0659, 0.0426, 0.04, 0.0376, 0.0353, 0.0332, 0.0258, 0.0243], [0.0478, 0.0421, 0.0396, 0.0308, 0.029, 0.0256, 0.0256, 0.024], [0.0725, 0.044, 0.044, 0.0413, 0.0302, 0.0284, 0.0267, 0.025], [0.1038, 0.063, 0.0406, 0.0359, 0.0337, 0.0297, 0.0279, 0.0279], [0.1048, 0.0816, 0.0597, 0.0495, 0.034, 0.0265, 0.0234, 0.022], [0.0829, 0.057, 0.0503, 0.0473, 0.0473, 0.0346, 0.0174, 0.0174], [0.0524, 0.0462, 0.036, 0.0299, 0.028, 0.0248, 0.0218, 0.0205], [0.1238, 0.0663, 0.0516, 0.0355, 0.0294, 0.0244, 0.0244, 0.019], [0.2093, 0.0873, 0.0873, 0.077, 0.0364, 0.0321, 0.0321, 0.0321], [0.1917, 0.1318, 0.1026, 0.0705, 0.0485, 0.0485, 0.0428, 0.0377], [0.2092, 0.112, 0.0988, 0.0769, 0.0529, 0.0412, 0.0412, 0.022], [0.1915, 0.1915, 0.169, 0.0798, 0.0259, 0.0229, 0.0202, 0.0202], [0.3071, 0.211, 0.145, 0.0776, 0.0324, 0.0324, 0.0222, 0.0222], [0.8419, 0.0254, 0.0198, 0.0198, 0.0154, 0.0154, 0.0106, 0.0094], [0.5967, 0.0808, 0.0432, 0.0381, 0.0297, 0.0262, 0.0231, 0.0231], [0.722, 0.1255, 0.0462, 0.017, 0.015, 0.0071, 0.0062, 0.0052], [0.5941, 0.2807, 0.043, 0.0096, 0.009, 0.0062, 0.0055, 0.0055], [0.5093, 0.2406, 0.1288, 0.027, 0.0127, 0.0077, 0.0068, 0.006], [0.3316, 0.2926, 0.2011, 0.074, 0.0146, 0.0129, 0.0129, 0.01]], "ranks": {"Python": [89414, 184882, 155268, 168235, 45889, 99639, 16394, 62641, 37391, 61547, 16301, 28617, 39720, 39927, 21264, 28300, 38061, 32131, 61335, 98262, 49216, 119430, 82868, 73830, 84635, 126799, 93179, 82455, 68718, 56106, 45198, 36587, 54598, 50936, 89646, 115207, 122659, 113080, 83230, 73654, 44214, 50631, 34931, 38685, 24050, 22694, 21378, 21634, 40123, 64948, 75592, 29317, 68101, 42991, 32874, 37123, 13340, 22738, 26860, 18752, 9254, 6300, 4592]}}, {"pos": 459, "top": [[".", ",", " \u200b\u200b", " [\u2026]", "\u200b", " \u00a0", " \u2013", "\u00a0"], [" \u200b\u200b", "\u200b", ".", "\u200b\u200b", ",", "\u200c", " \u200b", " \u00a0"], [".", ",", " \u200b\u200b", "\u2026..", ";", "\u2013", " [\u2026]", "\u2026."], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\u00bb.**", "\ufffd\ufffd", "\u683c\u91cc\u62c9", "echsl", " Geile", " Shemale", "utnik"], [" \u200b\u200b", ".", ".\u201d", "\u200b", " \u00a0", "\u201d", ".@", " [\u2026]"], [" \u200b\u200b", ".", " \u00a0", " [\u2026]", "!\u201d.", "\u00a0", " \u200b", "\u200b"], [" [\u2026]", " \u00a0", ".\u201d", "\ufe0f", "\u201d", " \u200b\u200b", " \u200b", "!\u201d"], ["\ufe0f", " \u200b\u200b", "\u56fe\u6e90", "\u2605\u2605\u2605\u2605", " [\u2026]", " \u00a0", " \u200b", "\u2b50"], [" [\u2026]", "\u00a0", "\ufe0f", "[\u2026]", "  \n\n", " \u200b", "\u200c", " \u00a0"], ["\u00a0", " [\u2026]", "[\u2026]", " \u00a0", "\u200b", " \u200b", ",", "\ufe0f"], ["\u00a0", " [\u2026]", "\u200b", " \u200b", " \u00a0", "[\u2026]", "&nbsp", "\ufe0f"], ["\ufe0f", "&nbsp", "\u56fe\u6e90", " \u200b", "\u00a7\u00c3", "\u2b50", " \ubd88\uad6c\ud558\uace0", " \u00a0"], ["\ufe0f", " **", "\u56fe\u6e90", " **+", " **\u3010", " **#", "\u00bb**", " vibes"], ["\ufe0f", " vibes", " vibe", " **+", " **\u3010", " badass", " impactful", " **"], [" vibes", " showcasing", "\ufe0f", " vibe", " showcased", " transitioning", " tackling", "hetto"], [" showcasing", " impactful", " transitioning", "\ufe0f", " incentiv", " showcased", " vibes", "\u62e5\u6709\u7740"], [" showcasing", " transitioning", " incredibly", " impactful", " showcased", " tweaking", " trending", "\ufe0f"], [" transitioning", " showcasing", " tweaking", " impactful", " vibe", " incredibly", " hefty", "-esque"], ["\u3011**", " impactful", " glitch", " \ubd88\uad6c\ud558\uace0", "\u2b50", " transitioning", " backstory", " vibe"], ["\u3011**", " notably", " trending", " \ubd88\uad6c\ud558\uace0", "\u062a\u0644", " transitioning", "hetto", "Whilst"], ["\n\n", " \n\n", "\t\n\n", "  \n\n", "      \n\n", "     \n\n", "   \n\n", "    \n\n"], [" **\u3010", "\u3011**", " **#", "schirm", " /**<", "\u062a\u0644", "sce", "ereco"], [" **\u3010", "\u3011**", "\n\n", " **#", "\u062a\u0644", " notably", " heavily", "\n\n    \n"], ["\n\n", " notably", " heavily", " drastically", " incredibly", " hugely", " dramatically", " \n\n"], ["\n\n", " \n\n", "  \n\n", " \r\n\r\n", "\r\n\r\n", "   \n\n", "\t\n\n", "     \n\n"], [" **\u3010", " \r\n\r\n", " \n\n", "\u3011**", "     \n\n", "\t\n\n", "\n\n", " **#"], ["\n\n", " \n\n", "\r\n\r\n", "     \n\n", " **\u3010", "      \n\n", "\t\n\n", "    \n\n"], ["\n\n", " \n\n", "\r\n\r\n", " heavily", "  \n\n", "     \n\n", " \r\n\r\n", "      \n\n"], ["\n\n", " \n\n", " heavily", "  \n\n", "\r\n\r\n", "     \n\n", "      \n\n", "   \n\n"], [" heavily", " \n\n", "\n\n", "  \n\n", " drastically", " notably", " incredibly", " unpredict"], ["\n\n", " heavily", " \n\n", " massively", " dramatically", " heavy", " notably", " drastically"], [" heavily", " \n\n", "\n\n", " due", " heavy", " dramatically", " rapidly", "  \n\n"], [" heavily", " due", " aggressively", " massively", " rapidly", " heavy", " notoriously", " dramatically"], [" heavily", " aggressively", " notoriously", " massively", " dangerously", " drastically", " rapidly", " \n\n"], [" heavily", " notoriously", " dangerously", " aggressively", " massively", " relentlessly", " inevitably", " rapidly"], [" heavily", " notoriously", " dangerously", " sluggish", " rapidly", " inevitably", " aggressively", " massively"], [" notoriously", " sluggish", " heavily", " bottleneck", " dangerously", " inevitably", " aggressively", " unpredictable"], [" sluggish", " notoriously", " dangerously", " bottleneck", " heavily", " aggressively", " inevitably", " unpredictable"], [" sluggish", " bottleneck", " dangerously", " notoriously", " unpredictable", " inevitably", " crippling", " stalled"], [" sluggish", " bottleneck", " dangerously", " unpredictable", " notoriously", " jitter", " crippling", " inevitably"], [" bottleneck", " sluggish", " dangerously", " crippling", " jitter", " unpredictable", " frantic", " stalled"], [" bottleneck", " sluggish", " jitter", " crippling", " congest", " unpredictable", " dangerously", " stalled"], [" sluggish", " bottleneck", " congest", " jitter", " overcrow", " crippling", " unpredictable", " stutter"], [" sluggish", " bottleneck", " jitter", " congest", " overcrow", " deadlock", " dangerously", " blocking"], [" bottleneck", " overcrow", " crashes", " unpredictable", " jitter", " congest", " blocking", " dangerously"], [" blocking", " unpredictable", " concurrent", " bottleneck", " overcrow", " concurrently", " crashes", " due"], [" concurrently", " concurrent", " bottleneck", " blocking", " inevitably", " crashes", " simultaneous", " deadlock"], [" due", " concurrent", " concurrently", " blocking", " bottleneck", " crashes", " inevitably", " deadlock"], [" deadlock", " sluggish", " crashes", " concurrently", " crippling", " erratic", " bottleneck", " inevitably"], [" deadlock", " bottleneck", " sluggish", " crippling", " crashes", " erratic", " synced", " inevitably"], [" deadlock", " bottleneck", " inevitably", " crippling", "\u5931\u63a7", " syncing", " crashes", "\u540c\u6b65"], [" deadlock", " sluggish", " bottleneck", "\u963b\u585e", " crashes", " stagn", "\u540c\u6b65", " paralyzed"], [" sluggish", "\u5361\u987f", " deadlock", " freezes", " bottleneck", " stutter", " crashes", " stalled"], [" freezes", " deadlock", " stutter", " bottleneck", "\u5361\u987f", "\u963b\u585e", " freeze", " froze"], [" freezes", " stutter", " deadlock", " freeze", "\u5361\u987f", " bottleneck", " froze", " freezing"], [" freezes", " deadlock", " freeze", " stutter", " freezing", " froze", " starving", " starvation"], [" freezes", " freeze", " deadlock", " freezing", " stutter", " froze", "\u51bb\u7ed3", "\u5361\u987f"], [" stutter", " freeze", " freezes", " deadlock", " jitter", " freezing", "\u5361\u987f", " stalls"], [" stutter", " freeze", " freezes", " deadlock", " freezing", " blocking", "\u963b\u585e", " jitter"], [" freeze", " stutter", " freezes", " freezing", " deadlock", " stall", " froze", "\u51bb\u7ed3"], [" freeze", " stutter", " freezes", " freezing", " deadlock", " seize", " Freeze", " stall"], [" freeze", " stutter", " stall", " deadlock", " choke", " jitter", " seize", " lock"], [" freeze", " stutter", " stall", " block", " lock", " choke", " seize", " jitter"]], "p": [[0.9104, 0.04, 0.0214, 0.004, 0.0037, 0.0031, 0.0024, 0.0019], [0.5491, 0.0791, 0.0398, 0.0273, 0.0129, 0.0114, 0.0089, 0.0065], [0.5045, 0.3929, 0.0222, 0.0173, 0.0087, 0.0082, 0.0077, 0.0072], [0.0099, 0.0064, 0.0018, 0.0017, 0.0017, 0.0016, 0.0014, 0.0013], [0.3801, 0.0703, 0.066, 0.0275, 0.0275, 0.0259, 0.0178, 0.0115], [0.8188, 0.0132, 0.0103, 0.0075, 0.0063, 0.0063, 0.0055, 0.0049], [0.1292, 0.1006, 0.1006, 0.065, 0.0573, 0.0446, 0.0394, 0.0307], [0.2074, 0.0299, 0.0264, 0.0219, 0.0181, 0.017, 0.0141, 0.0125], [0.6714, 0.103, 0.0356, 0.019, 0.0168, 0.0139, 0.0123, 0.0116], [0.4138, 0.251, 0.03, 0.0233, 0.0182, 0.0133, 0.0091, 0.0091], [0.7016, 0.2278, 0.0128, 0.0107, 0.0094, 0.0061, 0.0044, 0.0042], [0.2203, 0.0205, 0.0085, 0.0071, 0.0055, 0.0052, 0.0049, 0.0046], [0.1764, 0.01, 0.0078, 0.0073, 0.0041, 0.0041, 0.0039, 0.0039], [0.0162, 0.0105, 0.0064, 0.0039, 0.0032, 0.0032, 0.003, 0.0028], [0.0142, 0.0133, 0.0086, 0.0081, 0.0052, 0.0043, 0.0038, 0.0032], [0.0243, 0.013, 0.0108, 0.0101, 0.0074, 0.0065, 0.0058, 0.0054], [0.0246, 0.0192, 0.008, 0.0075, 0.0059, 0.0059, 0.0059, 0.0059], [0.0117, 0.0097, 0.0081, 0.0063, 0.0059, 0.0052, 0.0043, 0.0041], [0.0112, 0.0027, 0.0025, 0.0023, 0.0019, 0.0019, 0.0019, 0.0019], [0.0033, 0.0024, 0.0021, 0.0021, 0.0021, 0.002, 0.0018, 0.0017], [0.0814, 0.0206, 0.0193, 0.0171, 0.0071, 0.0059, 0.0049, 0.0041], [0.0127, 0.0077, 0.0032, 0.0017, 0.0016, 0.0016, 0.0014, 0.0014], [0.0144, 0.0099, 0.0039, 0.0036, 0.0036, 0.0027, 0.0015, 0.0014], [0.0341, 0.0182, 0.0125, 0.0043, 0.0043, 0.0038, 0.0026, 0.0026], [0.6107, 0.1363, 0.0286, 0.0196, 0.0196, 0.0173, 0.0173, 0.0119], [0.0324, 0.0072, 0.0072, 0.0072, 0.0064, 0.0053, 0.0047, 0.0044], [0.4421, 0.032, 0.0081, 0.0081, 0.0071, 0.0046, 0.0046, 0.0043], [0.9364, 0.0234, 0.0015, 0.0014, 0.001, 0.0006, 0.0005, 0.0005], [0.8984, 0.0395, 0.003, 0.0022, 0.0011, 0.0008, 0.0007, 0.0006], [0.0674, 0.0595, 0.0076, 0.0071, 0.0067, 0.0049, 0.0046, 0.0046], [0.1958, 0.1116, 0.0816, 0.0086, 0.0081, 0.0076, 0.0063, 0.0063], [0.1788, 0.0399, 0.0311, 0.013, 0.0107, 0.0089, 0.0089, 0.0061], [0.1736, 0.0143, 0.0118, 0.0104, 0.0092, 0.0086, 0.0081, 0.0076], [0.1662, 0.0255, 0.0136, 0.01, 0.0088, 0.0078, 0.0078, 0.0069], [0.085, 0.0313, 0.0229, 0.0215, 0.0148, 0.0101, 0.0095, 0.009], [0.0686, 0.0534, 0.0304, 0.0173, 0.0127, 0.0127, 0.0119, 0.0105], [0.0453, 0.0375, 0.0242, 0.0214, 0.0201, 0.0189, 0.0156, 0.0138], [0.0409, 0.0319, 0.0248, 0.0219, 0.016, 0.0151, 0.0141, 0.0133], [0.0499, 0.0414, 0.0251, 0.0222, 0.0143, 0.0134, 0.0126, 0.0126], [0.0544, 0.0451, 0.0451, 0.0257, 0.0177, 0.0166, 0.0156, 0.0138], [0.1138, 0.1004, 0.0306, 0.0198, 0.0164, 0.0154, 0.0136, 0.0128], [0.083, 0.0536, 0.0346, 0.021, 0.0163, 0.0153, 0.0144, 0.0144], [0.081, 0.081, 0.0338, 0.0317, 0.0181, 0.017, 0.017, 0.016], [0.0623, 0.055, 0.0294, 0.026, 0.0215, 0.0202, 0.019, 0.0178], [0.0432, 0.0358, 0.0246, 0.0231, 0.0231, 0.0217, 0.0169, 0.0149], [0.0306, 0.0287, 0.021, 0.021, 0.021, 0.0198, 0.0174, 0.0164], [0.0343, 0.0322, 0.0303, 0.0284, 0.0251, 0.0183, 0.0172, 0.0152], [0.0405, 0.0381, 0.0381, 0.0336, 0.0231, 0.0217, 0.018, 0.014], [0.0298, 0.028, 0.0263, 0.0263, 0.0218, 0.0218, 0.0205, 0.0192], [0.0614, 0.0577, 0.035, 0.0226, 0.0212, 0.0212, 0.0199, 0.0187], [0.099, 0.0342, 0.0221, 0.0221, 0.0221, 0.0195, 0.0195, 0.0183], [0.1592, 0.0852, 0.0752, 0.0403, 0.026, 0.0244, 0.0202, 0.0202], [0.1475, 0.0895, 0.0697, 0.0543, 0.0543, 0.0543, 0.0423, 0.0373], [0.2202, 0.081, 0.0715, 0.0631, 0.0557, 0.0557, 0.0557, 0.0383], [0.2815, 0.1036, 0.0914, 0.0712, 0.0554, 0.0381, 0.0297, 0.0204], [0.32, 0.2492, 0.1039, 0.0556, 0.0298, 0.0232, 0.0205, 0.0159], [0.4387, 0.2661, 0.0762, 0.0524, 0.0462, 0.028, 0.0117, 0.0103], [0.6806, 0.0813, 0.0813, 0.0384, 0.0181, 0.0141, 0.011, 0.0097], [0.3809, 0.1588, 0.1401, 0.0963, 0.0401, 0.0276, 0.019, 0.019], [0.598, 0.1941, 0.1039, 0.0263, 0.0124, 0.0097, 0.0066, 0.0059], [0.7431, 0.1463, 0.0419, 0.0154, 0.0083, 0.0064, 0.0057, 0.0057], [0.5538, 0.2616, 0.0455, 0.019, 0.0178, 0.0178, 0.0167, 0.0095], [0.6348, 0.1605, 0.0859, 0.0358, 0.0192, 0.0124, 0.0085, 0.0071]], "ranks": {"Python": [54122, 206376, 193401, 203981, 73788, 110182, 45962, 137319, 88229, 89721, 60713, 181665, 196460, 180397, 110660, 152722, 173284, 159334, 185248, 210182, 115120, 206650, 172645, 164314, 101724, 163548, 159326, 119939, 133437, 91208, 68468, 65059, 88388, 63807, 96704, 102138, 111664, 116620, 82067, 82851, 53488, 57534, 55558, 56065, 41222, 43783, 41407, 41186, 61292, 86277, 113984, 29921, 76143, 44082, 29117, 28468, 8556, 19091, 19251, 14943, 7651, 5927, 5036]}}, {"pos": 460, "top": [[".", "-", ",", " ", "\u2026.", "\u2013", "<|endoftext|>", "["], ["  \n\n", "  \n  \n", "   \n\n", "   \n", "  \n", " \n  \n", "  ", " \n\n"], ["\u2013", "\u2026", "\u2026.", "\u2026..", ".", ",", "[", ";"], ["bucks", " cittadin", " Teixe", " Ejem", "\u30bc\u30eb", " \u041a\u0440\u0430\u0441\u0438", " Pubbl", " Geile"], [" ", "@$", " \n\n", "&", "  ", "\u2014", " \n\n\n", "zer"], [" ", " \n", "  ", " \n\n\n", " \n  \n", " \n\n\n\n", "   \n", "zer"], [" \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", "\u2014", "  \n  \n"], [" \n\n", "  \n\n", " \n\n\n", " \n", "<|endoftext|>", " \n  \n", "   \n\n", "\u2014"], [" \n\n", " \n\n\n", " \n        \n", "   \n\n", " \n            \n", " lockdown", " \n  \n", " _$"], [" lockdown", " freezing", " frozen", " freeze", " paralyzed", " \n            \n", " \n\n", " trap"], [" lockdown", " freezing", " paralyzed", " frozen", " Teixe", " reboot", " freeze", " insanely"], [" halfway", " wildly", " fake", " flop", " paralyzed", " effortlessly", " instantly", " lockdown"], [" wildly", " fake", " crackdown", " lockdown", " halfway", " incredibly", " insanely", " freezing"], [" wildly", " halfway", " looming", " instantly", " trap", " fake", " incredibly", " violently"], [" paralyzed", " wildly", " violently", " freezing", " looming", " buzzing", " fake", " crackdown"], [" paralyzed", " violently", " crackdown", " buzzing", " Teixe", "Fuck", " freezing", " insanely"], [" wildly", " violently", " looming", " thaw", " atop", " momentarily", " halfway", "ingly"], [" \n\n", "\n\n", " wildly", " --", " atop", "  \n\n", " halfway", " uncomfort"], [" paralyzed", " violently", " freezing", "\u51bb\u7ed3", " frozen", "acier", "\u66b4\u8dcc", " freeze"], [" paralyzed", " violently", " --", " freezing", " momentarily", " uncomfort", "ingly", "\u51bb\u7ed3"], [" --", " violently", " momentarily", " uncomfort", " paralyzed", "ingly", " halfway", " freezing"], [" \n\n", "\n\n", " \r\n\r\n", "   \n\n", " --", "  \n\n", "\r\n\r\n", "        \n\n"], [" \n\n", " \r\n\r\n", "   \n\n", "ingly", "  \n\n", "        \n\n", " freezing", " uncomfort"], [" \n\n", " shutdown", " freezing", " paralyzed", " violently", " panic", " momentarily", " uncomfort"], [" ,", " \n\n", " --", " even", " during", " momentarily", " temporarily", " uncomfort"], [" shutdown", " freezing", " paralyzed", " momentarily", " panic", " crashes", " zombie", " \n\n"], [" paralyzed", " shutdown", " crashes", " freezing", " glitch", " panic", " glitches", " zombie"], [" \n\n", " during", " panic", " paralyzed", " freezing", " shutdown", " crashes", " temporarily"], [" paralyzed", " panic", " during", " crashes", " freezing", " nightmares", " even", " due"], [" even", " during", " panic", " due", " paralyzed", " because", " freezing", " crashes"], [" \n\n", " panic", " due", "  \n\n", " even", " because", " paralyzed", " crashes"], [" panic", " due", " because", " freezing", " frantic", " \n\n", " panicked", " even"], [" due", " because", " paralyzed", " during", "\u2014even", " freezing", " jitter", " whenever"], [" due", " because", " whenever", " unless", " jitter", " during", "\u2014even", "due"], [" due", " because", " during", " whenever", " jitter", " unless", " paralyzed", " even"], [" due", " during", " because", " whenever", " jitter", " paralyzed", " when", " delays"], [" due", " during", " because", " jitter", "due", " unpredictable", " stutter", " whenever"], [" due", " during", " because", " delays", " interruptions", " jitter", "due", " freezing"], [" during", " due", " interruptions", " delays", " jitter", " stutter", " pauses", " glitches"], [" due", " interruptions", " during", " pauses", " stutter", " delays", " blocking", " temporarily"], [" during", " due", " interruptions", " pauses", " delays", " blocking", " temporarily", " whenever"], [" during", " due", " interruptions", " temporarily", " pauses", " intermitt", " whenever", " interrupt"], [" due", " interruptions", " during", " intermitt", " whenever", " pauses", " temporarily", " bursts"], [" due", " during", " interruptions", " whenever", " because", " pauses", " intermitt", " bursts"], [" due", " during", " whenever", " because", " interruptions", " intermitt", " when", "due"], [" whenever", " due", " because", " intermitt", " during", "due", "\u6bcf\u4e00\u6b21", " interruptions"], [" whenever", " due", " because", " when", " intermitt", "due", " during", " anytime"], [" whenever", "\u6bcf\u4e00\u6b21", " intermitt", " due", " because", " anytime", "due", "Whenever"], [" whenever", " due", " when", "\u6bcf\u4e00\u6b21", " during", "\u6bcf\u5f53", "due", " anytime"], [" whenever", " when", " intermitt", " anytime", " during", "when", "\u6bcf\u5f53", "Whenever"], [" whenever", " anytime", " during", " when", " intermitt", " every", "\u6bcf\u4e00\u6b21", "during"], [" whenever", " anytime", " every", "\u6bcf\u4e00\u6b21", "Whenever", "\u7684\u4efb\u4f55", "\u6bcf\u5f53", " Whenever"], [" whenever", " anytime", " every", " during", " momentarily", "\u7684\u4efb\u4f55", "_ANY", " unpredict"], [" whenever", " anytime", " during", "\u7684\u4efb\u4f55", " unpredict", "_ANY", " every", " intermitt"], [" whenever", " anytime", " during", " unpredict", " intermitt", " every", "\u7684\u4efb\u4f55", " periodically"], [" whenever", " anytime", " during", " unpredict", " intermitt", "_ANY", "\u7684\u4efb\u4f55", " if"], [" whenever", " during", " anytime", " unpredict", " if", " because", " intermitt", " any"], [" whenever", " during", " unpredict", " anytime", " if", " because", " momentarily", " intermitt"], [" during", " whenever", " if", " because", " unpredict", " intermitt", " due", " anytime"], [" during", " whenever", " if", " unpredict", " because", " intermitt", " due", ","]], "p": [[0.493, 0.1033, 0.0756, 0.0553, 0.0553, 0.0431, 0.0203, 0.0149], [0.331, 0.2137, 0.0652, 0.054, 0.0289, 0.0165, 0.0165, 0.0113], [0.6025, 0.1186, 0.0815, 0.0597, 0.03, 0.0282, 0.0059, 0.0046], [0.0086, 0.0046, 0.0032, 0.0025, 0.0022, 0.0022, 0.0019, 0.0018], [0.0434, 0.016, 0.0132, 0.0097, 0.0091, 0.0085, 0.008, 0.0075], [0.0107, 0.0089, 0.0078, 0.0061, 0.0061, 0.005, 0.005, 0.0047], [0.6345, 0.1818, 0.046, 0.0358, 0.0132, 0.0116, 0.0066, 0.0052], [0.5172, 0.1084, 0.07, 0.0242, 0.0107, 0.0065, 0.0061, 0.0051], [0.9232, 0.0521, 0.007, 0.0055, 0.0048, 0.0007, 0.0007, 0.0006], [0.2113, 0.0345, 0.0173, 0.0153, 0.0112, 0.0105, 0.0099, 0.0082], [0.8323, 0.0389, 0.0323, 0.0126, 0.0098, 0.0082, 0.0053, 0.0034], [0.2352, 0.0264, 0.0125, 0.0117, 0.0091, 0.0086, 0.0059, 0.0059], [0.0079, 0.0065, 0.0048, 0.0042, 0.004, 0.0035, 0.0029, 0.0029], [0.0047, 0.0039, 0.0037, 0.0035, 0.0033, 0.0031, 0.0024, 0.0022], [0.0061, 0.0037, 0.0037, 0.0034, 0.003, 0.003, 0.003, 0.0029], [0.0076, 0.0059, 0.0056, 0.0056, 0.0038, 0.0036, 0.0036, 0.0036], [0.0097, 0.0067, 0.0049, 0.0046, 0.0038, 0.0038, 0.0034, 0.0034], [0.007, 0.0048, 0.0045, 0.0042, 0.0031, 0.0031, 0.0029, 0.0029], [0.0069, 0.0042, 0.0042, 0.0027, 0.0025, 0.0025, 0.0025, 0.0022], [0.0092, 0.0063, 0.0056, 0.0056, 0.0053, 0.0046, 0.0046, 0.0044], [0.2094, 0.0118, 0.0052, 0.0052, 0.0043, 0.0036, 0.0032, 0.003], [0.0065, 0.0035, 0.0033, 0.0029, 0.0025, 0.0025, 0.0025, 0.0025], [0.0106, 0.0099, 0.0093, 0.0057, 0.0057, 0.0047, 0.0037, 0.0034], [0.0189, 0.0138, 0.0101, 0.007, 0.0058, 0.0045, 0.004, 0.0037], [0.6846, 0.105, 0.0081, 0.0063, 0.0056, 0.0052, 0.0043, 0.0023], [0.4135, 0.0141, 0.0125, 0.0076, 0.0076, 0.0038, 0.0034, 0.0034], [0.0162, 0.0143, 0.0119, 0.0098, 0.0087, 0.0082, 0.0077, 0.0077], [0.0607, 0.0571, 0.0418, 0.0136, 0.0136, 0.012, 0.0082, 0.0082], [0.0169, 0.0116, 0.0103, 0.0085, 0.008, 0.0075, 0.0066, 0.0066], [0.0234, 0.0171, 0.0118, 0.011, 0.011, 0.0104, 0.0092, 0.0076], [0.0327, 0.0289, 0.0211, 0.0198, 0.0145, 0.012, 0.0113, 0.0106], [0.0417, 0.0197, 0.0185, 0.0127, 0.0106, 0.0099, 0.0093, 0.0077], [0.0427, 0.0275, 0.0259, 0.0243, 0.0189, 0.0167, 0.0147, 0.0101], [0.1976, 0.0208, 0.0196, 0.0184, 0.0184, 0.0162, 0.0143, 0.0126], [0.0251, 0.0236, 0.0162, 0.0162, 0.0152, 0.0152, 0.0143, 0.0119], [0.0889, 0.0476, 0.0175, 0.0155, 0.0128, 0.0113, 0.0106, 0.01], [0.1282, 0.0367, 0.0286, 0.0163, 0.0163, 0.0127, 0.0127, 0.0105], [0.1682, 0.04, 0.0331, 0.0275, 0.0156, 0.013, 0.0114, 0.0108], [0.239, 0.1129, 0.0344, 0.0268, 0.0184, 0.0099, 0.0093, 0.0093], [0.239, 0.0729, 0.0344, 0.0268, 0.0196, 0.0184, 0.0144, 0.0144], [0.2481, 0.0913, 0.052, 0.0231, 0.0204, 0.0169, 0.0169, 0.0149], [0.1276, 0.1126, 0.047, 0.0366, 0.0323, 0.0303, 0.0285, 0.0222], [0.1048, 0.0925, 0.072, 0.0561, 0.0437, 0.0385, 0.0282, 0.0234], [0.1803, 0.1803, 0.0751, 0.0355, 0.0294, 0.0276, 0.0202, 0.0158], [0.1692, 0.1493, 0.1318, 0.0402, 0.0378, 0.0276, 0.0202, 0.0168], [0.2598, 0.1083, 0.0956, 0.033, 0.0291, 0.0274, 0.0213, 0.0177], [0.3945, 0.113, 0.088, 0.0605, 0.0367, 0.0286, 0.0209, 0.0135], [0.4926, 0.1099, 0.1099, 0.0667, 0.023, 0.0203, 0.0169, 0.0158], [0.5248, 0.1931, 0.0627, 0.0431, 0.0431, 0.014, 0.0096, 0.008], [0.878, 0.034, 0.0265, 0.0098, 0.0067, 0.0059, 0.0052, 0.0036], [0.8197, 0.028, 0.017, 0.0117, 0.0103, 0.0103, 0.0091, 0.0071], [0.9151, 0.0115, 0.0062, 0.0062, 0.0062, 0.0054, 0.0054, 0.0048], [0.9459, 0.0153, 0.0056, 0.005, 0.0044, 0.003, 0.0023, 0.0018], [0.9219, 0.0246, 0.0191, 0.0055, 0.0038, 0.0023, 0.0023, 0.0018], [0.9747, 0.0202, 0.0008, 0.0008, 0.0005, 0.0003, 0.0003, 0.0003], [0.9389, 0.0467, 0.0026, 0.0018, 0.001, 0.0007, 0.0006, 0.0006], [0.8453, 0.1144, 0.0044, 0.003, 0.0027, 0.0027, 0.0024, 0.002], [0.8336, 0.0996, 0.0252, 0.0056, 0.0034, 0.0021, 0.0017, 0.0016], [0.7571, 0.1316, 0.0377, 0.0108, 0.0051, 0.0045, 0.004, 0.004], [0.4478, 0.3487, 0.0687, 0.0368, 0.0135, 0.0093, 0.0082, 0.006], [0.451, 0.2736, 0.061, 0.037, 0.037, 0.0186, 0.0136, 0.0136], [0.4019, 0.2762, 0.0579, 0.0511, 0.048, 0.0291, 0.0213, 0.0121], [0.6393, 0.098, 0.0865, 0.0409, 0.0361, 0.0141, 0.0125, 0.0125]], "ranks": {"Python": [31883, 160197, 172369, 123697, 46315, 99173, 27601, 33737, 25659, 49750, 11879, 19411, 24116, 23970, 11425, 20419, 17989, 17177, 28294, 48816, 29721, 56769, 22862, 12984, 22419, 14051, 4825, 4136, 3032, 6573, 5977, 4166, 7001, 6601, 14039, 11194, 17166, 15992, 12619, 10458, 8449, 11831, 10949, 14511, 9700, 10138, 10472, 15411, 44210, 77948, 42119, 20904, 98580, 46071, 68009, 31765, 8823, 10242, 12903, 10072, 7357, 891, 646]}}, {"pos": 461, "top": [[".", ",", "\u2013", " \u2013", ";", "\u00a0", ".\u2013", "\u2026.."], ["\u2013", " \u2013", ".", ".\u2013", ",", "\u2013and", "\u2011", ";"], ["\u2013", ".", ",", ".\u2013", " \u2013", "\u2026..", "\u2013and", "\u2026"], [".\u2013", ".\",\"", "\u2018s", "*\u201c.", "HCI", " aarhus", "espace", "ussen"], [".", ",", ".\u2013", "\u2013", " [\u2026]", "\u2026..", "@", "ed"], [".\u2013", "\u2013", ".", "\u2026..", " [\u2026]", "\u2013and", ",", " \u200b\u200b"], [" [\u2026]", ".", ".\u2013", "\u2013", "\u2026\u2026", "\u2026..", "\u00b7", "......"], [" [\u2026]", ".\u2013", ".", "\u2013and", "\u2013", "\u2026..", "......", "[\u2026]"], [" [\u2026]", ".", ".\u2013", "\u2013", "\u00a0", ",", "\u2013and", "[\u2026]"], [" [\u2026]", "\u2013", ",", "\u00a0", ".\u2013", "\u2013and", ".", "[\u2026]"], [" [\u2026]", "\u2013", ",", ".", "\u00a0", " \u2013", ".\u2013", "\u2013and"], [" [\u2026]", "\u2013", "\u2013and", " \u2013", ".\u2013", "\u00a0", ",", "[\u2026]"], [" [\u2026]", "\u2013and", "\u2013", " \u2013", ".\u2013", "[\u2026]", "\u2013\u2013", "ing"], ["\u2013", "\u2013and", " \u2013", ".\u2013", " [\u2026]", "\u2013\u2013", "[\u2026]", "ing"], ["\u2013", " \u2013", "\u2013and", " [\u2026]", ".\u2013", "en", "\u00a0", "ing"], ["\u2013", " \u2013", "\u2013and", "\u00a0", " [\u2026]", "ing", "en", "y"], ["\u2013", " \u2013", "\u2013and", " [\u2026]", "\u00a0", ",", ".\u2013", "<|endoftext|>"], ["\u2013", "\u2013and", " \u2013", " [\u2026]", ".\u2013", "\u00a0", "\u2013\u2013", "[\u2026]"], ["\u2013and", "\u2013", ".\u2013", "\u2013\u2013", "dessen", "-esque", " antics", " \u2013"], ["\u2013and", "\u2013", "\u2013\u2013", ".\u2013", "dessen", " *\u2013", " antics", "\u2014even"], ["<|endoftext|>", "\u2013and", "\u2013", " [\u2026]", " \n\n", " \n\t\n", "attempt", "\u00a0"], ["\u5c14\u514b", "\u671f\u95f4\u7684", "dessen", "\u2013and", "oire", "haupt", "osz", "\u671f\u4e2d"], ["\u671f\u95f4\u7684", "\u5c14\u514b", "dessen", ".EventType", "\u6d3b\u52a8\u671f\u95f4", "\u671f\u4e2d", "\u5404\u9879\u6d3b\u52a8", "asional"], [" events", " \r\n", "\u671f\u95f4\u7684", "\u2013and", " periods", " disastr", " bouts", "\u6f2a"], [" \n\n", " \r\n", " \r\n\r\n", "\u2013and", "\u2013", " \n    \n", "\u2013\u2013", " \n\t\n"], [" \r\n", " \n    \n", "\u671f\u95f4\u7684", " \n\t\n", "asional", " \r\n\r\n", "tijk", " ::::::::"], [" events", "\u671f\u95f4\u7684", " periods", " disruptions", " episodes", " bouts", " interruptions", " \n    \n"], [" \n\n", " events", " --", " periods", " bouts", " episodes", " \n    \n", " trips"], [" events", " periods", " massive", " episodes", " trips", " bouts", " sessions", " \n"], [" \n", " events", " \n    \n", " periods", " \r\n", " trips", " episodes", " massive"], [" events", " \n", " massive", " ...", " periods", " \n\n", " \n    \n", " trips"], [" events", " massive", " ...", " heavy", " trips", " intense", " periods", " episodes"], [" events", " massive", " heavy", " periods", " episodes", " spikes", " intense", " trips"], [" events", " spikes", " massive", " interruptions", " periods", " explosions", " emergencies", " intense"], [" \n    \n", "\u2011", " events", " spikes", " periods", "\u2026*", " \r\n", " episodes"], ["\u2026*", "\u2011", "\u2013", " *\u2013", " [\u2026]", " events", " [...]", " \u2013"], ["\u2011", " events", " spikes", "\u2026*", " *\u2013", " simultaneous", " interruptions", " delays"], ["\u2011", " events", " simultaneous", " processing", " interruptions", " concurrent", " workflows", " spikes"], [" processing", "\u2011", " workflows", " interruptions", " delays", " events", " multit", " spikes"], [" processing", " events", " interruptions", "\u2011", " delays", " periods", " intense", " tasks"], [" processing", " interruptions", " periods", " workflows", " delays", " events", " tasks", " CPU"], [" processing", " tasks", " processes", " periods", " workflows", " Processing", " interruptions", "Processing"], [" processing", " tasks", " processes", " interruptions", " periods", " Processing", " workflows", " asynchronous"], [" processing", " tasks", " processes", " periods", " interruptions", " events", " Processing", " workflows"], [" processing", " interruptions", " periods", " tasks", " processes", " workflows", " bursts", " events"], [" processing", " interruptions", " periods", " tasks", " workflows", " bursts", " loading", " processes"], [" processing", " interruptions", " periods", " tasks", " workflows", " bursts", " processes", " interactions"], [" processing", " periods", " interruptions", " tasks", " bursts", " interactions", " workflows", " processes"], [" interruptions", " processing", " bursts", " periods", " tasks", "\u7684\u4efb\u4f55", " spikes", "-heavy"], [" interruptions", "\u7684\u4efb\u4f55", " bursts", "\u4efb\u4f55\u5f62\u5f0f\u7684", "-heavy", " processing", " periods", "\u63d0\u4f9b\u4efb\u4f55"], ["\u7684\u4efb\u4f55", "\u4efb\u4f55", "\u4efb\u4f55\u5f62\u5f0f\u7684", "\u4efb\u4f55\u4e00\u4e2a", "\u6709\u4efb\u4f55", "\u63d0\u4f9b\u4efb\u4f55", " qualsiasi", " ANY"], ["\u7684\u4efb\u4f55", "\u4efb\u4f55", "\u4efb\u4f55\u5f62\u5f0f\u7684", " ANY", "\u4efb\u4f55\u4e00\u4e2a", "\u6709\u4efb\u4f55", "-heavy", "-any"], ["\u4efb\u4f55", "\u7684\u4efb\u4f55", " ANY", "\u4efb\u4f55\u5f62\u5f0f\u7684", "\u4efb\u4f55\u4e00\u4e2a", "\u6709\u4efb\u4f55", " any", "_ANY"], ["\u4efb\u4f55", "\u7684\u4efb\u4f55", " ANY", "\u4efb\u4f55\u4e00\u4e2a", " any", "\u4efb\u4f55\u5f62\u5f0f\u7684", "\u6709\u4efb\u4f55", " CPU"], ["\u4efb\u4f55", "\u7684\u4efb\u4f55", " ANY", " any", "\u4efb\u4f55\u4e00\u4e2a", "\u4efb\u4f55\u5f62\u5f0f\u7684", "\u6709\u4efb\u4f55", "-any"], [" GC", " garbage", "GC", "_GC", "\u4efb\u4f55", " ANY", "\u7684\u4efb\u4f55", " GPU"], [" GC", "GC", " garbage", "_GC", "_gc", "gc", " gc", ".gc"], [" GC", "GC", " garbage", "_GC", "_gc", "gc", " gc", "(gc"], [" GC", "GC", "_GC", " garbage", "_gc", " gc", "gc", "(gc"], [" GC", " async", "GC", " garbage", "async", " Async", "_GC", "_async"], [" GC", " async", "GC", " garbage", " plugin", " gc", "_GC", " Async"], [" GC", " async", "GC", " garbage", " plugin", " gc", "_GC", " any"], [" GC", " async", " garbage", "GC", " plugin", " heavy", " any", " gc"]], "p": [[0.5202, 0.4052, 0.0548, 0.0157, 0.0015, 0.0004, 0.0003, 0.0003], [0.8301, 0.0531, 0.0322, 0.0322, 0.0251, 0.0195, 0.0011, 0.0008], [0.588, 0.2163, 0.1487, 0.0258, 0.0095, 0.0031, 0.0027, 0.0021], [0.0082, 0.0064, 0.0049, 0.0046, 0.0036, 0.0034, 0.003, 0.0025], [0.4114, 0.1422, 0.1107, 0.0918, 0.0263, 0.0124, 0.0091, 0.0085], [0.3135, 0.2024, 0.1786, 0.0452, 0.0452, 0.0424, 0.031, 0.0078], [0.5208, 0.1237, 0.0622, 0.0484, 0.0333, 0.0167, 0.0139, 0.0122], [0.2502, 0.235, 0.0763, 0.0673, 0.0493, 0.017, 0.0117, 0.0117], [0.7339, 0.1275, 0.0322, 0.0196, 0.0162, 0.0162, 0.0087, 0.0082], [0.3369, 0.2624, 0.2315, 0.0402, 0.0334, 0.026, 0.0179, 0.0079], [0.7496, 0.115, 0.0423, 0.0257, 0.0226, 0.0156, 0.0069, 0.0039], [0.4725, 0.0991, 0.093, 0.064, 0.0413, 0.0172, 0.0076, 0.0072], [0.2615, 0.2457, 0.1913, 0.0798, 0.0661, 0.0108, 0.0048, 0.0026], [0.3252, 0.3252, 0.0932, 0.0469, 0.0469, 0.0038, 0.0036, 0.0026], [0.4723, 0.2864, 0.1122, 0.0076, 0.0067, 0.0043, 0.0025, 0.0022], [0.4059, 0.297, 0.0964, 0.0123, 0.0108, 0.0051, 0.0048, 0.0031], [0.5996, 0.1424, 0.0558, 0.0492, 0.0492, 0.011, 0.0025, 0.002], [0.2714, 0.1646, 0.0443, 0.0173, 0.0163, 0.0044, 0.0039, 0.0023], [0.0336, 0.0116, 0.0055, 0.0038, 0.0038, 0.0035, 0.0035, 0.0029], [0.0559, 0.0117, 0.0034, 0.0034, 0.003, 0.002, 0.0018, 0.0018], [0.4785, 0.0164, 0.0099, 0.0034, 0.0016, 0.0011, 0.0011, 0.001], [0.0037, 0.0024, 0.0018, 0.0018, 0.0018, 0.0016, 0.0015, 0.0014], [0.005, 0.0022, 0.0019, 0.0017, 0.0016, 0.0016, 0.0016, 0.0015], [0.0034, 0.003, 0.0024, 0.0021, 0.0021, 0.0018, 0.0016, 0.0015], [0.0218, 0.0132, 0.011, 0.0075, 0.0049, 0.0049, 0.004, 0.0033], [0.009, 0.0079, 0.0029, 0.0021, 0.0021, 0.0021, 0.0019, 0.0019], [0.0157, 0.0066, 0.0051, 0.0048, 0.0048, 0.0045, 0.0029, 0.0026], [0.0177, 0.0138, 0.0089, 0.0069, 0.0045, 0.0039, 0.0039, 0.0035], [0.0434, 0.0141, 0.0103, 0.0097, 0.0091, 0.0075, 0.0059, 0.0055], [0.065, 0.0574, 0.042, 0.0154, 0.0136, 0.0106, 0.01, 0.01], [0.0672, 0.0672, 0.0232, 0.0193, 0.015, 0.0141, 0.0124, 0.0117], [0.0868, 0.034, 0.0282, 0.0194, 0.0117, 0.0117, 0.0117, 0.011], [0.0527, 0.03, 0.0125, 0.0097, 0.0081, 0.0067, 0.0063, 0.0059], [0.0658, 0.0177, 0.0177, 0.0114, 0.0114, 0.0095, 0.0095, 0.0089], [0.0375, 0.0214, 0.0177, 0.0167, 0.0138, 0.013, 0.0122, 0.0084], [0.1081, 0.0511, 0.0351, 0.031, 0.0241, 0.0188, 0.0176, 0.0156], [0.0238, 0.021, 0.0164, 0.0154, 0.0154, 0.0136, 0.0106, 0.0099], [0.0663, 0.0378, 0.0178, 0.0168, 0.0158, 0.0148, 0.0108, 0.0108], [0.0566, 0.0343, 0.0303, 0.0251, 0.0221, 0.0195, 0.0162, 0.0134], [0.0815, 0.034, 0.03, 0.0282, 0.0282, 0.0234, 0.0206, 0.0161], [0.2227, 0.0321, 0.0321, 0.0266, 0.025, 0.0195, 0.0195, 0.0152], [0.5, 0.0495, 0.032, 0.0206, 0.0182, 0.0182, 0.0142, 0.0133], [0.5577, 0.038, 0.0216, 0.0216, 0.0203, 0.0168, 0.0123, 0.0116], [0.3944, 0.0568, 0.0443, 0.0391, 0.0252, 0.0184, 0.0173, 0.0163], [0.3056, 0.0876, 0.0726, 0.0469, 0.0236, 0.0208, 0.0162, 0.0152], [0.2415, 0.0834, 0.0736, 0.0611, 0.0154, 0.0154, 0.0145, 0.0145], [0.1697, 0.1498, 0.0753, 0.0586, 0.0429, 0.023, 0.0179, 0.0139], [0.1474, 0.1078, 0.084, 0.0741, 0.0329, 0.0187, 0.0165, 0.0137], [0.1357, 0.0641, 0.0566, 0.0499, 0.0236, 0.0152, 0.0134, 0.0126], [0.0782, 0.0735, 0.0691, 0.0288, 0.0239, 0.0154, 0.0154, 0.0145], [0.229, 0.229, 0.1082, 0.0544, 0.0188, 0.0177, 0.0138, 0.0107], [0.2354, 0.1833, 0.0718, 0.0299, 0.0281, 0.0097, 0.0097, 0.0097], [0.2902, 0.2561, 0.0734, 0.0734, 0.0287, 0.0238, 0.0238, 0.0154], [0.242, 0.242, 0.0612, 0.0395, 0.0371, 0.0308, 0.0272, 0.0199], [0.4218, 0.1758, 0.1208, 0.0733, 0.0392, 0.0185, 0.0185, 0.0164], [0.836, 0.1131, 0.0197, 0.005, 0.0039, 0.003, 0.0021, 0.0016], [0.9755, 0.0158, 0.0058, 0.0011, 0.0005, 0.0004, 0.0003, 0.0002], [0.9673, 0.0258, 0.004, 0.0011, 0.0005, 0.0005, 0.0004, 0.0002], [0.9781, 0.0203, 0.0006, 0.0005, 0.0002, 0.0002, 0.0001, 0.0], [0.9219, 0.0589, 0.0149, 0.002, 0.0004, 0.0004, 0.0004, 0.0002], [0.9826, 0.0085, 0.0066, 0.0012, 0.0003, 0.0002, 0.0002, 0.0001], [0.9886, 0.0046, 0.0046, 0.0013, 0.0002, 0.0002, 0.0001, 0.0], [0.9809, 0.0085, 0.0035, 0.0024, 0.0014, 0.0005, 0.0005, 0.0002]], "ranks": {"Python": [19515, 189950, 23969, 188170, 123653, 98990, 31188, 75352, 32307, 33558, 21107, 85878, 113714, 98844, 75370, 98432, 83530, 83777, 98165, 136618, 48464, 177795, 180142, 145089, 87364, 138879, 107021, 76145, 56870, 40538, 42339, 29002, 55023, 34464, 47104, 25015, 11667, 14452, 11641, 3933, 2327, 2747, 1955, 2146, 2016, 1708, 1969, 1379, 1512, 4500, 9299, 731, 1181, 594, 498, 110, 91, 94, 101, 117, 96, 78, 44]}}, {"pos": 462, "top": [["  \n", " (\u201e", "\ufffd", "s", ".", "\u00ac", " AVC", " McCoy"], ["  \n\n", "  \n", " \\\"", " GC", " \u00ac", "schild", " (\u201e", "   \n"], [" GC", " (\u201e", ":\\\"", "\u201a", " gc", "GC", ",\\\"", "(gc"], [" Shemale", " \\\"{", " ``(", " \\\"%", " GC", " ``", " Ejem", " YYS"], [" GC", " gc", " @_", " (@", " [@", " CRC", "GC", " @("], [" GC", " gc", ".gc", "GC", "(gc", "avanaugh", " @_", " Guta"], [" GC", " gc", " _____", "  \n\n", "GC", "  \n", ".gc", "s"], [" GC", " gc", "  \n\n", ".gc", " _____", "(gc", "  \n", "GC"], ["  \n\n", " GC", " [@", ".gc", " gc", " [`", "  \n", " {."], [" GC", ".gc", "(gc", " gc", "\u00c3", "\\n", "\\xc", "\\."], ["\\n", " GC", " [@", "\\.", "\\xc", ".gc", "\u00c3", " gc"], [" GC", ".gc", " ____", " _____", "(gc", " gc", "GC", " ***"], [" GC", ".gc", "s", "(gc", "GC", " gc", " VC", "\u00c3"], [" GC", "s", ".gc", "(gc", " gc", "GC", "\u00c3", " VC"], ["s", " GC", " \ufffd", "\u00c3", "&", " ", "-", " &"], ["s", " GC", "\u00c3", "&", " OC", " &", ".gc", " QC"], ["s", " GC", "\u00c3", ".gc", " OC", "GC", "(gc", "&"], [" GC", "s", ".gc", "(gc", "GC", "\u00c3", " gc", "Sci"], [" GC", ".gc", "(gc", "GC", "Sci", " AVC", " gc", "s"], [" GC", ".gc", "(gc", "GC", " gc", "\u00c3", " AVC", "s"], ["<|endoftext|>", "  \n\n", " GC", "@", "s", "&", "GC", ".gc"], [".gc", " GC", "(gc", " %+", "Tumblr", " AVC", "trash", "Haunted"], [" GC", ".gc", " ``", "(gc", " %+", " ._", "Tumblr", "Haunted"], [" ,", " ``", " GC", " --", " &", " ;", " .", ".gc"], [" ,", " &", " GC", " --", " ;", " ._", ".gc", " ."], [" ._", " .**", " GC", "_.", " _.", " ____", ".gc", " ___"], [" ._", " .**", "_.", " _.", " ``", " _", " .", " ;"], [" ,", " _", " .", " ;", " `", " `_", " ``", " --"], [" .", " ._", "_.", " .**", " _", " _.", " ,", " ;"], [" ...", " .", " ._", " .**", "_.", " ____", " ___", " _."], [" .", " ...", " .**", " ._", "_.", " ,", " ;", " _."], [" .", " ,", " .**", " ;", " and", " &", " @", " .*"], [" .", " ,", " ;", " and", " while", " even", " or", " over"], [" .", "-heavy", " meltdown", " heavily", " massively", "/", " .**", " spikes"], [" .**", " meltdown", "/", ".**", "-heavy", " glitches", " spikes", "/memory"], [" .**", ".**", " .", " .*", ".*", " meltdown", "/memory", "/"], [" .**", ".**", " .", " glitches", " spikes", "-heavy", "s", " delays"], [" .**", " shutdown", " spikes", " downtime", " glitches", " slowdown", " reboot", " delays"], [" garbage", " spikes", " shutdown", " glitches", " slowdown", " downtime", " delays", " cleanup"], [" garbage", " cleanup", " scav", " shutdown", " spikes", " cycles", " pauses", " dumps"], [" garbage", " cleanup", " scav", " cycles", " shutdown", " downtime", " spikes", "/memory"], [" cleanup", " garbage", " scav", " cycles", " shutdown", " glitches", "/memory", "Cleanup"], [" cleanup", " garbage", " scav", " cycles", " shutdown", " spikes", " pauses", " glitches"], [" cleanup", " garbage", " shutdown", " cycles", " scav", " spikes", " bursts", " periodically"], [" cleanup", " cycles", " garbage", " shutdown", " spikes", " bursts", " pauses", " crashes"], [" cleanup", " cycles", " spikes", " periods", " bursts", " shutdown", " garbage", " crashes"], [" cycles", " cleanup", " spikes", " periods", " bursts", " glitches", " dumps", " interruptions"], [" spikes", " cycles", " cleanup", " bursts", " glitches", " periods", " dumps", " interruptions"], [" spikes", " glitches", " bursts", " cleanup", " cycles", "-trigger", " dumps", " interruptions"], [" bursts", " spikes", " cleanup", " glitches", " interruptions", "+.", "-trigger", "."], [" cleanup", " bursts", " glitches", " spikes", " interruptions", "+.", " periods", " sweeps"], [" spikes", " cleanup", " bursts", " interruptions", "\u6216\u4e0e", ".**", " sweeps", " cycles"], [" spikes", " cleanup", " bursts", " cycles", " interruptions", " sweeps", " dumps", " pauses"], [" spikes", " cleanup", " bursts", " cycles", " pauses", " interruptions", " sweeps", " peaks"], [" GC", "GC", " gc", "gc", " garbage", " spikes", "(gc", ".gc"], [" garbage", " GC", "\u5783\u573e", "GC", " gc", "gc", "(gc", " dumps"], [" GC", "GC", " garbage", "gc", " gc", "(gc", "\u5783\u573e", ".gc"], [" GC", "GC", " gc", "gc", "(gc", " garbage", ".gc", " spikes"], [" GC", "GC", " gc", "(gc", "gc", " garbage", " spikes", ".gc"], [" spikes", " GC", "GC", " gc", " pauses", " spike", "gc", " garbage"], [" spikes", " pauses", " cycles", " sweeps", " GC", " spike", " pause", " bursts"], [" spikes", " pauses", " cycles", " sweeps", " GC", " pause", " stops", " spike"], [" spikes", " pauses", " cycles", ",", " sweeps", " GC", " stops", " bursts"]], "p": [[0.0429, 0.0277, 0.0158, 0.0131, 0.0115, 0.0096, 0.0075, 0.0066], [0.1255, 0.104, 0.0523, 0.0359, 0.0338, 0.0263, 0.0232, 0.0205], [0.1079, 0.0423, 0.029, 0.0241, 0.02, 0.0166, 0.0155, 0.0129], [0.0343, 0.0162, 0.0162, 0.0152, 0.0077, 0.0077, 0.0072, 0.0072], [0.4972, 0.0299, 0.0299, 0.0181, 0.0132, 0.0071, 0.0043, 0.0043], [0.3345, 0.0201, 0.0147, 0.0101, 0.0065, 0.0061, 0.0051, 0.004], [0.5335, 0.0528, 0.0301, 0.025, 0.0207, 0.0207, 0.0194, 0.0151], [0.4534, 0.0893, 0.0695, 0.035, 0.0328, 0.0146, 0.0137, 0.0129], [0.4193, 0.0936, 0.0285, 0.0252, 0.0196, 0.0173, 0.0153, 0.0143], [0.0989, 0.077, 0.0467, 0.0235, 0.0152, 0.0152, 0.0126, 0.0092], [0.1532, 0.0929, 0.082, 0.0387, 0.0364, 0.0207, 0.0162, 0.0143], [0.0991, 0.064, 0.0172, 0.0172, 0.0162, 0.0076, 0.0072, 0.0063], [0.1689, 0.0401, 0.019, 0.0157, 0.009, 0.0065, 0.0062, 0.0051], [0.1925, 0.0665, 0.0429, 0.026, 0.0116, 0.0102, 0.009, 0.0066], [0.1246, 0.0488, 0.0296, 0.0191, 0.0191, 0.0109, 0.0102, 0.0075], [0.1221, 0.0951, 0.0256, 0.0121, 0.0083, 0.0073, 0.0065, 0.0057], [0.4493, 0.1067, 0.027, 0.006, 0.0057, 0.0057, 0.0047, 0.0047], [0.2089, 0.0637, 0.0363, 0.0283, 0.0234, 0.0183, 0.0086, 0.0081], [0.2306, 0.0661, 0.0332, 0.0201, 0.0108, 0.0095, 0.0089, 0.0074], [0.2235, 0.0499, 0.0322, 0.0152, 0.0105, 0.0098, 0.0081, 0.0072], [0.0758, 0.0432, 0.0381, 0.0217, 0.0192, 0.0149, 0.0096, 0.0066], [0.0445, 0.0346, 0.0112, 0.0036, 0.0036, 0.0032, 0.0027, 0.0025], [0.0384, 0.0233, 0.0125, 0.0059, 0.0059, 0.0036, 0.0034, 0.0032], [0.0386, 0.0265, 0.0207, 0.0161, 0.0161, 0.0151, 0.0142, 0.0056], [0.0197, 0.0174, 0.0144, 0.0136, 0.0106, 0.0088, 0.0077, 0.0077], [0.0304, 0.0196, 0.0163, 0.0105, 0.0087, 0.0087, 0.0082, 0.0068], [0.0849, 0.0377, 0.0333, 0.0202, 0.0167, 0.0122, 0.0122, 0.0115], [0.1879, 0.1213, 0.0475, 0.0394, 0.0271, 0.0239, 0.0239, 0.0198], [0.1502, 0.1326, 0.0804, 0.0755, 0.043, 0.0278, 0.0278, 0.0149], [0.3061, 0.1638, 0.1199, 0.0642, 0.0642, 0.05, 0.0285, 0.0208], [0.6757, 0.0521, 0.0521, 0.0336, 0.0316, 0.014, 0.0075, 0.0043], [0.6727, 0.0487, 0.0203, 0.0179, 0.0055, 0.0051, 0.0045, 0.0038], [0.7109, 0.0454, 0.0122, 0.0084, 0.004, 0.0031, 0.0031, 0.0021], [0.0116, 0.009, 0.007, 0.0058, 0.0048, 0.0045, 0.0038, 0.0033], [0.0181, 0.008, 0.0055, 0.0046, 0.0046, 0.0028, 0.0028, 0.0026], [0.0368, 0.0119, 0.0064, 0.006, 0.005, 0.0047, 0.0047, 0.0044], [0.0318, 0.0097, 0.0067, 0.0055, 0.0052, 0.0046, 0.0043, 0.0043], [0.0103, 0.0097, 0.0091, 0.0086, 0.0071, 0.0063, 0.0063, 0.0049], [0.0155, 0.0146, 0.0137, 0.0121, 0.01, 0.0089, 0.0078, 0.0078], [0.1281, 0.0644, 0.0471, 0.0105, 0.0093, 0.0068, 0.006, 0.0056], [0.1019, 0.0794, 0.0452, 0.0188, 0.013, 0.0095, 0.0084, 0.0079], [0.2726, 0.0885, 0.0393, 0.0224, 0.0186, 0.0113, 0.0099, 0.0093], [0.2156, 0.0899, 0.0311, 0.0292, 0.0258, 0.0177, 0.0166, 0.0138], [0.2199, 0.0491, 0.0337, 0.0263, 0.0205, 0.017, 0.015, 0.0141], [0.2063, 0.0522, 0.0432, 0.0358, 0.0337, 0.0231, 0.0217, 0.0217], [0.1399, 0.116, 0.0848, 0.0354, 0.0293, 0.0275, 0.0243, 0.0228], [0.1057, 0.0993, 0.0993, 0.0499, 0.0441, 0.0303, 0.0184, 0.0173], [0.125, 0.0915, 0.0758, 0.0669, 0.0521, 0.049, 0.0246, 0.0169], [0.1041, 0.0716, 0.0672, 0.0492, 0.028, 0.0232, 0.0205, 0.0193], [0.1312, 0.1022, 0.0702, 0.062, 0.0293, 0.0258, 0.0201, 0.0178], [0.0928, 0.0679, 0.0563, 0.0496, 0.0341, 0.0207, 0.0183, 0.0172], [0.1024, 0.1024, 0.0704, 0.0548, 0.0377, 0.0178, 0.0167, 0.0167], [0.3446, 0.0563, 0.0528, 0.0341, 0.0266, 0.0172, 0.0161, 0.0151], [0.6005, 0.0493, 0.0493, 0.0264, 0.0219, 0.016, 0.0133, 0.0117], [0.5391, 0.2886, 0.0644, 0.0391, 0.0304, 0.0087, 0.0068, 0.0047], [0.7008, 0.138, 0.0739, 0.0575, 0.01, 0.0069, 0.0029, 0.0022], [0.6917, 0.2246, 0.0442, 0.0144, 0.0144, 0.0053, 0.0025, 0.0013], [0.7053, 0.229, 0.031, 0.0146, 0.0101, 0.0054, 0.0015, 0.0009], [0.7591, 0.1919, 0.0229, 0.0108, 0.0108, 0.0013, 0.0011, 0.0006], [0.7626, 0.1325, 0.043, 0.0158, 0.0123, 0.0123, 0.0066, 0.0035], [0.6729, 0.1928, 0.1169, 0.0051, 0.0028, 0.0024, 0.0011, 0.0008], [0.538, 0.3698, 0.0567, 0.0127, 0.0047, 0.003, 0.0021, 0.0019], [0.6989, 0.2269, 0.0447, 0.0145, 0.0053, 0.0015, 0.0013, 0.0006]], "ranks": {"Python": [15177, 68940, 47978, 53501, 8723, 34102, 11094, 7918, 5805, 20230, 5637, 8580, 8406, 14643, 15267, 29595, 25718, 14965, 21711, 30471, 3149, 25028, 10798, 8273, 5608, 2137, 910, 729, 553, 1010, 1804, 5370, 5347, 4654, 7981, 11623, 5845, 4128, 2835, 2934, 1541, 1909, 2121, 5415, 3217, 3736, 4332, 4651, 18600, 39403, 50083, 13366, 3449, 2425, 2085, 1596, 942, 792, 939, 862, 825, 1039, 1237]}}, {"pos": 463, "top": [[" \u2013", " *\u2013", "\u2013and", "\u2013", " |\u2013", ".\u2013", "\u2013\u2013", " \u2013,"], [" *\u2013", " \u2013**", " \u2013", "\u2013\u2013", "\u2013and", "\u6700\u65b0\u53d1\u5e03", " \u2013,", " *\u201c"], [" \u2013", " *\u2013", "\u2013", "\u2013and", " \u2013,", "\u2013\u2013", ".\u2013", " |\u2013"], [" *\u201c", " *\u2013", "*\u201c.", " *\u201e", "\u6700\u65b0\u53d1\u5e03", ")\",\"", "\u2013\u2013", " |--"], [" *\u2013", " *\u201c", "\u2013\u2013", " \u2018", "\u2018", " \u2013", "\u2018s", "\u2013and"], [" *\u2013", "\u2013\u2013", " *\u201c", " \u2018", "\u2018", "\u2013and", "\u2018s", " |\u2013"], [" *\u201c", "\u2018", " \u2018", " *\u2013", "\u2013\u2013", "\ufffd\ufffd", " --", "\u2018s"], [" *\u201c", " *\u2013", "\u2018", " ____", " \u2018", "\u2018s", "\ufffd\ufffd", " --"], [" *\u201c", " *\u2013", " ____", "\u2018", " \u2018", "\ufffd\ufffd", " *@", "\u2013\u2013"], ["\u2013\u2013", " *\u2013", "\u2013and", " *\u201c", " |\u2013", " \u2018", "\u2018", " |--"], [" \u2018", "\u2013\u2013", "\u2018", " --", "--", " \u2013", " *\u2013", " *\u201c"], [" *\u201c", " --", " *\u2013", " ____", "\u2013\u2013", " |--", " *\\", ")--"], [" *\u2013", "\u2013\u2013", " *\u201c", " --", " |--", " ____", " glaring", " \u2018"], [" --", "\u2013\u2013", " *\u2013", " glaring", "\u2013and", " *\u201c", " spike", " myriad"], [" --", " myriad", "--", " looming", " glaring", " \u2018", "\u2013\u2013", " garner"], [" --", " myriad", " looming", " bolster", " hefty", " glaring", " atop", " wildly"], [" --", " looming", " myriad", " hefty", " \u2013", " bolster", " *\u2013", " glaring"], [" *\u2013", " looming", " spike", " glaring", " hefty", " spikes", " --", "\u98d9\u5347"], [" looming", " glaring", " fueled", " --", " hefty", " *\u2013", "\u98d9\u5347", " skyrocket"], [" --", " myriad", " looming", " *\u2013", " amid", " glaring", " skyrocket", "\u98d9\u5347"], [" --", " myriad", " amid", " looming", " bolster", " wildly", " glaring", " atop"], [" --", " amid", "\u98d9\u5347", "Sharper", " skyrocket", " looming", " spike", " fueled"], [" --", " looming", " amid", " skyrocket", " spike", " myriad", " glaring", " spikes"], [" --", " looming", " myriad", " amid", " heavily", " ,", " notably", " wildly"], [" --", " looming", " myriad", " amid", " heavily", " amidst", " hugely", " hefty"], [" --", " spikes", " spike", " *\u201c", " jitter", " amid", " looming", " overclock"], [" --", " spikes", " spike", " jitter", " overclock", " looming", " skyrocket", " surge"], [" --", " spikes", " heavily", " ,", " spike", " looming", " ____", " \u2018"], [" spikes", " spike", " --", " jitter", " heavily", " overclock", " looming", " skyrocket"], [" spikes", " --", " spike", " ____", " \n  \n", " jitter", " ,", " heavily"], [" --", " spikes", " spike", " .", " ,", " heavily", " heavy", " over"], [" .", " --", " ,", " spikes", " spike", " heavily", " heavy", " over"], [" .", " spikes", " spike", " even", " heavily", " heavy", " jitter", " --"], [" spikes", " spike", " heavily", " unpredictable", " jitter", " even", " looming", " ."], [" spikes", " .**", " spike", " jitter", " unpredictable", " looming", " .", " heavily"], [" .**", " spikes", " jitter", " .", " spike", " unpredictable", " .*", " relentless"], [" .**", " jitter", " spikes", " unpredictable", " spike", " glitches", " relentless", " ."], [" jitter", " spikes", " unpredictable", " .**", " spike", " glitches", " crashes", " even"], [" jitter", " spikes", " unpredictable", " .**", " spike", " glitches", " crashes", " glitch"], [" jitter", " spikes", " unpredictable", " .**", " glitches", " spike", " crashes", " glitch"], [" jitter", " spikes", " unpredictable", " glitches", " spike", " glitch", " crashes", " .**"], [" jitter", " spikes", " unpredictable", " glitches", " erratic", " crashes", " spike", " unpredict"], [" jitter", " spikes", " erratic", " unpredictable", " glitches", " spike", " crashes", " glitch"], [" spikes", " jitter", " unpredictable", " erratic", " crashes", " glitches", " spike", " unpredict"], [" unpredictable", " spikes", " jitter", " crashes", " erratic", " unpredict", " glitches", " spike"], [" unpredictable", " spikes", " jitter", " erratic", " crashes", " unpredict", " glitches", " bursts"], [" spikes", " unpredictable", " jitter", " erratic", " crashes", " glitches", " bursts", " causing"], [" unpredictable", " spikes", " erratic", " exacerbated", " causing", " jitter", " glitches", " crashes"], [" causing", " unpredictable", " exacerbated", " spikes", " triggering", " exacerb", " erratic", " triggered"], [" causing", " ruining", " disrupting", " exacerbated", ".", " exacerb", " violating", " erratic"], [" ruining", ".**", ".", " causing", " disrupting", " destabil", " crashing", "++."], [".**", " ruining", ".", " crashing", " causing", " disrupting", " violating", "**."], [" ruining", ".**", " disrupting", " causing", " crashing", ".", " disrupt", " violating"], [" ruining", " causing", " crashing", " violating", " disrupting", ".**", " destroying", " rendering"], [" causing", " ruining", " rendering", " crashing", " violating", " triggering", " disrupting", "\u5bfc\u81f4"], [" causing", " rendering", " ruining", " crashing", " violating", " destroying", " unacceptable", " triggering"], [" rendering", " violating", " causing", " ruining", " crashing", " destroying", " syncing", " disrupting"], [" ruining", " violating", " destroying", "\u7834\u574f", " ruin", "\u6bc1", " causing", " syncing"], [" crashing", " ruining", " destroying", "\u7834\u574f", " violating", " crashes", " causing", " breaking"], [" crashing", " ruining", " killing", "kill", " kills", " kill", " destroying", " causing"], [",", " caused", " causing", " ruining", " killing", " crashing", ".", "kill"], [",", ".", " or", " caused", " killing", " causing", " crashing", " making"], [",", ".", " or", " caused", " triggered", ".,", " unless", " when"]], "p": [[0.9415, 0.0152, 0.0111, 0.0098, 0.0072, 0.0032, 0.0017, 0.0012], [0.9521, 0.0136, 0.0073, 0.0057, 0.0028, 0.0027, 0.0021, 0.0021], [0.8931, 0.0445, 0.0346, 0.0164, 0.0041, 0.0028, 0.0022, 0.0013], [0.5081, 0.2719, 0.0607, 0.0135, 0.0044, 0.0036, 0.0036, 0.0022], [0.3705, 0.2392, 0.1451, 0.0605, 0.0534, 0.0184, 0.0099, 0.0053], [0.2552, 0.1754, 0.1064, 0.0443, 0.0443, 0.0345, 0.0223, 0.0135], [0.4505, 0.1878, 0.1878, 0.061, 0.0154, 0.01, 0.0093, 0.0088], [0.4777, 0.1208, 0.0536, 0.0346, 0.0346, 0.0154, 0.0154, 0.0136], [0.6096, 0.12, 0.0643, 0.0304, 0.0222, 0.0135, 0.0099, 0.0072], [0.3072, 0.1281, 0.0605, 0.0416, 0.0345, 0.0304, 0.0163, 0.0112], [0.1389, 0.1082, 0.1016, 0.0544, 0.048, 0.0351, 0.031, 0.031], [0.1796, 0.0703, 0.0621, 0.0621, 0.0243, 0.0138, 0.0065, 0.0061], [0.081, 0.0523, 0.0491, 0.0232, 0.008, 0.0075, 0.0075, 0.0059], [0.0336, 0.0279, 0.0149, 0.0109, 0.0096, 0.0085, 0.0075, 0.007], [0.5496, 0.0188, 0.0156, 0.0069, 0.0065, 0.0065, 0.0061, 0.0045], [0.1791, 0.0275, 0.0177, 0.0156, 0.0122, 0.0108, 0.0089, 0.0079], [0.0603, 0.0323, 0.0236, 0.0162, 0.0143, 0.0135, 0.0105, 0.0105], [0.0517, 0.019, 0.0102, 0.0096, 0.0096, 0.0096, 0.0079, 0.007], [0.0188, 0.0138, 0.0138, 0.0129, 0.0121, 0.0114, 0.0101, 0.0095], [0.0972, 0.0204, 0.0191, 0.0159, 0.0132, 0.0096, 0.0075, 0.0075], [0.1398, 0.0293, 0.0167, 0.0115, 0.0084, 0.0079, 0.007, 0.007], [0.017, 0.0124, 0.0091, 0.0086, 0.008, 0.008, 0.0076, 0.0063], [0.2975, 0.0139, 0.0131, 0.0066, 0.0062, 0.0058, 0.0051, 0.0048], [0.4096, 0.0169, 0.0116, 0.0109, 0.0096, 0.008, 0.008, 0.0055], [0.4453, 0.0152, 0.0119, 0.0092, 0.006, 0.0053, 0.0049, 0.0044], [0.1074, 0.0187, 0.0155, 0.0145, 0.012, 0.0094, 0.0083, 0.0078], [0.077, 0.0564, 0.0439, 0.0195, 0.0104, 0.0092, 0.0081, 0.0076], [0.3368, 0.0202, 0.0179, 0.0158, 0.0148, 0.0079, 0.0062, 0.0062], [0.0961, 0.066, 0.0312, 0.0189, 0.0108, 0.0095, 0.0074, 0.0058], [0.0851, 0.0549, 0.0516, 0.0313, 0.0168, 0.0123, 0.0108, 0.0095], [0.0783, 0.0691, 0.0394, 0.0394, 0.0348, 0.0211, 0.0113, 0.0106], [0.1205, 0.0535, 0.0345, 0.0324, 0.0197, 0.0174, 0.0135, 0.0105], [0.1268, 0.0599, 0.0301, 0.0283, 0.0142, 0.0126, 0.0111, 0.0098], [0.0874, 0.0342, 0.0235, 0.0207, 0.0172, 0.0143, 0.0118, 0.0118], [0.0926, 0.0411, 0.0363, 0.0341, 0.0207, 0.0182, 0.0076, 0.0071], [0.0765, 0.056, 0.0464, 0.0282, 0.0282, 0.0206, 0.0151, 0.0104], [0.0859, 0.0712, 0.0712, 0.046, 0.0231, 0.0109, 0.0091, 0.0091], [0.0898, 0.07, 0.0399, 0.0292, 0.0257, 0.0129, 0.0107, 0.0084], [0.1182, 0.0865, 0.0525, 0.0233, 0.0205, 0.0205, 0.0133, 0.008], [0.1523, 0.1523, 0.0815, 0.03, 0.03, 0.0265, 0.0117, 0.0104], [0.2266, 0.1374, 0.0887, 0.0271, 0.0224, 0.0154, 0.0154, 0.0145], [0.3098, 0.1463, 0.0887, 0.0475, 0.037, 0.0254, 0.0211, 0.0154], [0.2414, 0.188, 0.0888, 0.0888, 0.0506, 0.0225, 0.0198, 0.0136], [0.1781, 0.1572, 0.115, 0.0479, 0.0309, 0.0291, 0.0213, 0.0188], [0.177, 0.1378, 0.0947, 0.0371, 0.0371, 0.0289, 0.0225, 0.0155], [0.2516, 0.1347, 0.0677, 0.0465, 0.0341, 0.0282, 0.0171, 0.0133], [0.1575, 0.139, 0.0656, 0.0579, 0.0398, 0.033, 0.0227, 0.02], [0.1529, 0.1119, 0.0387, 0.0363, 0.032, 0.0301, 0.025, 0.025], [0.2733, 0.0735, 0.0538, 0.0394, 0.0271, 0.0254, 0.0224, 0.0198], [0.2503, 0.0813, 0.0674, 0.0361, 0.0248, 0.0181, 0.017, 0.016], [0.1504, 0.0912, 0.0857, 0.0589, 0.052, 0.0217, 0.0204, 0.018], [0.1889, 0.1298, 0.074, 0.0421, 0.0256, 0.0256, 0.0212, 0.0176], [0.2324, 0.1098, 0.0969, 0.0969, 0.0855, 0.0278, 0.0168, 0.014], [0.3018, 0.1831, 0.0673, 0.0384, 0.036, 0.0233, 0.0181, 0.016], [0.2972, 0.1591, 0.0965, 0.0516, 0.0516, 0.0202, 0.0157, 0.0131], [0.2244, 0.198, 0.1542, 0.0442, 0.039, 0.0209, 0.0119, 0.0112], [0.1668, 0.1668, 0.1668, 0.1299, 0.029, 0.0146, 0.0129, 0.0114], [0.3459, 0.0565, 0.0498, 0.044, 0.0302, 0.0267, 0.0208, 0.0195], [0.2642, 0.2331, 0.0757, 0.0459, 0.0336, 0.0296, 0.0246, 0.0191], [0.1447, 0.1447, 0.1127, 0.0727, 0.0441, 0.0415, 0.0389, 0.0251], [0.0997, 0.0997, 0.0827, 0.0827, 0.0777, 0.0644, 0.0534, 0.0324], [0.7568, 0.149, 0.0157, 0.0122, 0.0029, 0.0029, 0.0027, 0.0024], [0.9946, 0.0052, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Python": [11664, 100746, 21575, 98521, 73560, 117863, 23526, 53963, 46735, 45017, 14839, 55002, 94987, 44321, 56861, 80056, 57315, 60802, 67461, 96241, 25746, 101406, 83380, 66695, 29565, 23470, 35392, 22563, 21228, 18993, 24385, 25067, 19443, 29196, 48752, 60549, 91918, 76441, 87335, 87481, 78151, 104549, 76835, 68051, 38065, 44752, 62283, 74636, 160210, 143908, 83018, 35501, 56282, 28446, 66614, 66495, 34545, 40879, 42148, 30975, 17081, 516, 480]}}, {"pos": 464, "top": [[",", ".", "\u2013", ";", " \u2013", "\u00a0", ",.", "\u00a0\u00a0"], [",", "\u2013", ".", " \u2013", ";", "\u2013and", ".\u2013", ",."], [",", ".", "\u2013", ";", "\u2026", "\u2013and", " \u2013", ".\u2013"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " milfs", "\ufffd\ufffd", "\uad49\uc7a5", "-------------</", "\ub370\ubbf8", "\uff0a\uff0a\uff0a\uff0a", " ;;^"], [",", ".", ".@", ".\u201c", ",@", "@", "ed", "\uff20"], [",", ".", "\u2026..", "\u00a0\u00a0", "\u2026.", ";", "\u00a0", ":"], [",", ".", "\u2026\u2026", "\u00a0", ".\u201d", ".\u2019", "\uff0e", "\u00a0\u00a0"], [",", ".", "ly", "   \n", "\u2026..", "  \n", ";", "ingly"], [",", ".", "\u00a0", "  \n\n", " [\u2026]", ".\u201d", "   \n\n", "!\u201d"], [",", "though", " \u00ad", "\u00a0", "Though", "Whilst", "\u2026but", " though"], [",", ".", "\u00a0", "...", " [\u2026]", "\u2026", " though", " albeit"], [" uncomfort", " oddly", " albeit", " incredibly", " pricey", " wildly", "ily", " unpredict"], [" albeit", " uncomfort", " incredibly", " oddly", " pricey", "ingly", " arguably", " overly"], [" incredibly", " albeit", " pricey", " uncomfort", " impactful", " oddly", "-esque", " looming"], [" albeit", " arguably", " though", " seemingly", " effortlessly", " looming", " akin", " incredibly"], [" incredibly", " oddly", " hefty", " pricey", " sprawling", " albeit", " arguably", " effortlessly"], [" incredibly", " albeit", " arguably", " seemingly", " sprawling", " though", " looming", " hefty"], [" sprawling", " incredibly", " tweaking", " oddly", " albeit", " effortlessly", "\u751a\u81f3\u4f1a", " looming"], ["\u751a\u81f3\u4f1a", "\u5373\u4fbf\u5982\u6b64", " albeit", "\u5373\u4fbf\u662f", " effortlessly", " looming", " incredibly", " oddly"], ["\u5373\u4fbf", "\u751a\u81f3\u4f1a", "\u5373\u4fbf\u662f", " swiftly", "\u4e5f\u4f7f\u5f97", " sprawling", " effortlessly", " albeit"], ["<|endoftext|>", "\u5373\u4fbf", "though", " swiftly", "Though", " though", " hugely", " seemingly"], ["\u751a\u81f3\u4f1a", " effortlessly", "\u4e5f\u4f7f\u5f97", " uncomfort", " disastr", " looming", " persino", "\u5373\u4fbf\u5982\u6b64"], ["\u751a\u81f3\u4f1a", " uncomfort", " seemingly", " effortlessly", " looming", " swiftly", "\u4e5f\u4f7f\u5f97", " dramatically"], [" seemingly", "\u751a\u81f3\u4f1a", " uncomfort", " even", " ultimately", " disastr", " dramatically", " looming"], ["\u5373\u4fbf", " seemingly", "Though", " uncomfort", "though", " \r\n\r\n", " \n\n", " hugely"], ["\u751a\u81f3\u4f1a", " uncomfort", "\u5373\u4fbf", " unsettling", "\u4e25\u91cd\u5f71\u54cd", " unpredict", "\u4e5f\u4f7f\u5f97", " impacting"], [" uncomfort", "\u751a\u81f3\u4f1a", " unpredict", " even", " unsettling", " impacting", " unpredictable", " disrupting"], [" even", " uncomfort", " seemingly", " arguably", " dramatically", " heavily", " ultimately", " notably"], [" even", " uncomfort", " despite", " unpredictable", " unpredict", " dramatically", " famously", " incredibly"], [" even", " unpredictable", " uncomfort", " unpredict", " inevitably", " dramatically", " despite", " unexpectedly"], [" even", " much", " despite", " eventually", " ultimately", " dramatically", " inevitably", " quickly"], [" even", " much", " dramatically", " despite", " inevitably", " eventually", " dangerously", " quickly"], [" even", " inevitably", " despite", " eventually", " unpredictable", " ultimately", " dangerously", " too"], [" even", " unpredictable", " inevitably", " dangerously", " despite", " forcing", "<|endoftext|>", " disastrous"], [" even", " unpredictable", " dangerously", " inevitably", " notoriously", " unpredict", " uncomfort", " forcing"], [" dangerously", " even", " unpredictable", " inevitably", " notoriously", " impossible", " forcing", " critical"], [" unpredictable", " impossible", " glitches", " inevitably", " dangerously", " forcing", " jitter", " glitch"], [" even", " impossible", " unpredictable", " glitches", " forcing", " awkward", " inevitably", " glitch"], [" unpredictable", " disrupting", " glitches", " impossible", " ruining", " even", " glitch", " forcing"], [" unpredictable", " disrupting", " glitches", " ruining", " even", " impossible", " glitch", " dangerously"], [" disrupting", " jitter", " glitches", " glitch", " unpredictable", " ruining", " disrupt", " violating"], [" jitter", " glitches", " disrupting", " crashing", " erratic", " glitch", " unpredictable", " sluggish"], [" jitter", " glitches", " erratic", " disrupting", " glitch", " unpredictable", " sluggish", " unreliable"], [" glitches", " jitter", " unacceptable", " erratic", " violating", " disrupting", " unreliable", " syncing"], [" jitter", " unacceptable", " erratic", " unpredictable", " glitches", " violating", " disrupting", " syncing"], [" erratic", " unacceptable", " jitter", " unpredictable", " violating", " glitches", " ruining", " disrupting"], [" violating", " erratic", " jitter", " glitches", " syncing", " ruining", " unacceptable", " unpredictable"], [" violating", " syncing", " erratic", " ruining", " glitches", " disrupting", " triggering", " unacceptable"], [" violating", " ruining", " syncing", " disrupting", " glitches", " triggering", " erratic", " causing"], [" violating", " ruining", " syncing", " disrupting", " erratic", " glitches", " triggering", " synced"], [" ruining", " syncing", " violating", " disrupting", " glitches", "\u8fdd\u80cc", " disrupt", " triggering"], [" violating", " ruining", " syncing", "\u8fdd\u80cc", " disrupting", "\u65e0\u6cd5\u6ee1\u8db3", " glitches", " violates"], [" ruining", " violating", " disrupting", " syncing", " causing", " triggering", " crashing", " destroying"], [" violating", " ruining", "\u8fdd\u80cc", " destroying", " causing", " violates", "\u8fdd\u53cd", " disrupting"], [" violating", " ruining", " contradict", "\u8fdd\u80cc", "\u8fdd\u53cd", " causing", " violates", " rendering"], [" violating", " ruining", " causing", " rendering", "\u8fdd\u80cc", " contradict", " destroying", "\u8fdd\u53cd"], [" violating", "\u8fdd\u53cd", "\u8fdd\u80cc", " ruining", " violates", " violate", "\u8fdd\u53cd\u4e86", " causing"], [" violating", " ruining", " breaking", " destroying", "\u8fdd\u53cd", " violates", "\u8fdd\u80cc", " violate"], [" violating", " breaking", " ruining", " destroying", "\u7834\u574f", "\u8fdd\u53cd", " violates", " violate"], [" violating", " ruining", " destroying", " violate", " violates", " causing", " killing", " breaking"], [" violating", " causing", " ruining", " making", " destroying", " killing", " breaking", " violate"], [" violating", " making", " causing", " ruining", " destroying", " killing", " breaking", " creating"], [" violating", " causing", " making", " ruining", " killing", " breaking", " destroying", " creating"]], "p": [[0.7467, 0.2424, 0.0083, 0.0013, 0.0007, 0.0003, 0.0001, 0.0], [0.6655, 0.2161, 0.0901, 0.0084, 0.0079, 0.0058, 0.0005, 0.0003], [0.8771, 0.0816, 0.0385, 0.001, 0.0006, 0.0003, 0.0002, 0.0001], [0.0063, 0.0036, 0.0017, 0.0016, 0.0015, 0.0013, 0.0012, 0.0011], [0.6158, 0.1291, 0.0106, 0.0044, 0.0034, 0.0032, 0.0029, 0.0021], [0.7745, 0.0561, 0.003, 0.003, 0.0028, 0.0026, 0.0015, 0.0008], [0.399, 0.3521, 0.024, 0.0225, 0.0211, 0.0187, 0.01, 0.0088], [0.2691, 0.0724, 0.0126, 0.0076, 0.0056, 0.0049, 0.0049, 0.0038], [0.4154, 0.1528, 0.0386, 0.0207, 0.0183, 0.0118, 0.0104, 0.0104], [0.1094, 0.0031, 0.0027, 0.0026, 0.0026, 0.0024, 0.0024, 0.0024], [0.5669, 0.0527, 0.034, 0.03, 0.0206, 0.0133, 0.0118, 0.0092], [0.02, 0.0176, 0.0156, 0.0137, 0.01, 0.0047, 0.0045, 0.0042], [0.0199, 0.0165, 0.0107, 0.0065, 0.0047, 0.0044, 0.0042, 0.0035], [0.0125, 0.0091, 0.0086, 0.0059, 0.0043, 0.0041, 0.0038, 0.0038], [0.0335, 0.014, 0.0109, 0.0102, 0.0085, 0.0066, 0.0058, 0.0058], [0.0085, 0.008, 0.0075, 0.0075, 0.0075, 0.0075, 0.007, 0.0062], [0.0238, 0.0174, 0.0163, 0.0144, 0.0135, 0.0127, 0.0112, 0.0099], [0.0049, 0.0038, 0.0038, 0.0038, 0.0036, 0.0034, 0.0028, 0.0028], [0.0175, 0.006, 0.0042, 0.0037, 0.0034, 0.0032, 0.0029, 0.0027], [0.0093, 0.006, 0.005, 0.0044, 0.0041, 0.0037, 0.0037, 0.0037], [0.1663, 0.0094, 0.0083, 0.0069, 0.0047, 0.0044, 0.003, 0.003], [0.0165, 0.0024, 0.0022, 0.0021, 0.0017, 0.0016, 0.0014, 0.0014], [0.0102, 0.0062, 0.0042, 0.004, 0.0037, 0.0037, 0.0035, 0.0033], [0.0072, 0.0059, 0.0059, 0.0052, 0.0052, 0.0049, 0.0049, 0.0041], [0.0101, 0.0051, 0.0048, 0.0037, 0.0031, 0.0031, 0.0031, 0.0029], [0.0102, 0.0043, 0.0033, 0.002, 0.0018, 0.0018, 0.0015, 0.0013], [0.0248, 0.0124, 0.0103, 0.0067, 0.0059, 0.0049, 0.0046, 0.0043], [0.0445, 0.0144, 0.012, 0.0082, 0.0073, 0.0073, 0.0073, 0.006], [0.0904, 0.0189, 0.0108, 0.0108, 0.0101, 0.0095, 0.0089, 0.0079], [0.2393, 0.0237, 0.0185, 0.0163, 0.0144, 0.0127, 0.0127, 0.0093], [0.4291, 0.0147, 0.0147, 0.013, 0.0107, 0.0101, 0.0101, 0.0079], [0.3814, 0.0123, 0.0115, 0.0108, 0.0108, 0.0102, 0.0079, 0.0079], [0.3445, 0.0194, 0.0125, 0.0125, 0.0111, 0.0104, 0.0081, 0.0072], [0.152, 0.0206, 0.015, 0.0125, 0.0097, 0.0086, 0.0081, 0.0076], [0.0282, 0.022, 0.0206, 0.0171, 0.0151, 0.0125, 0.0125, 0.0098], [0.0301, 0.0235, 0.0161, 0.0152, 0.0126, 0.0118, 0.0111, 0.0098], [0.0258, 0.0258, 0.0242, 0.0166, 0.0156, 0.0138, 0.0114, 0.0114], [0.0359, 0.0247, 0.0218, 0.0205, 0.017, 0.0159, 0.0117, 0.0103], [0.0319, 0.03, 0.0282, 0.0182, 0.0142, 0.0142, 0.0142, 0.0142], [0.0485, 0.0428, 0.0244, 0.0202, 0.0202, 0.0168, 0.0148, 0.0139], [0.0563, 0.0563, 0.0439, 0.0412, 0.0342, 0.0221, 0.0172, 0.0152], [0.0903, 0.0903, 0.0454, 0.0353, 0.0353, 0.0293, 0.0259, 0.0138], [0.1321, 0.1029, 0.0753, 0.0314, 0.0314, 0.0295, 0.026, 0.0168], [0.058, 0.0545, 0.0512, 0.0374, 0.0291, 0.0274, 0.0242, 0.0188], [0.0545, 0.0545, 0.0512, 0.0331, 0.0311, 0.0311, 0.0201, 0.0166], [0.0562, 0.0528, 0.0437, 0.0341, 0.032, 0.0265, 0.0234, 0.0182], [0.0705, 0.0516, 0.0377, 0.0377, 0.0354, 0.0294, 0.0294, 0.0202], [0.0928, 0.0679, 0.0363, 0.0363, 0.0301, 0.025, 0.0235, 0.022], [0.1441, 0.1122, 0.0771, 0.0388, 0.0342, 0.0322, 0.0322, 0.0208], [0.1853, 0.1636, 0.1274, 0.0875, 0.0172, 0.0143, 0.0143, 0.0134], [0.2553, 0.1366, 0.0939, 0.0829, 0.0197, 0.0174, 0.0099, 0.0082], [0.2664, 0.2075, 0.1258, 0.0463, 0.0409, 0.0318, 0.0133, 0.0117], [0.4011, 0.2433, 0.1014, 0.0373, 0.0256, 0.0226, 0.0156, 0.0121], [0.6099, 0.2542, 0.0163, 0.0143, 0.0143, 0.0127, 0.0099, 0.0099], [0.8732, 0.0435, 0.016, 0.0125, 0.0097, 0.0097, 0.0052, 0.0046], [0.7955, 0.0838, 0.0308, 0.024, 0.01, 0.0088, 0.0078, 0.0061], [0.9891, 0.0036, 0.0017, 0.0012, 0.0012, 0.0008, 0.0004, 0.0003], [0.9749, 0.0123, 0.0051, 0.0024, 0.0017, 0.0006, 0.0005, 0.0005], [0.9135, 0.0455, 0.0215, 0.0115, 0.0012, 0.0012, 0.0009, 0.0008], [0.9624, 0.02, 0.0073, 0.0016, 0.001, 0.001, 0.001, 0.0009], [0.919, 0.0278, 0.0278, 0.0116, 0.007, 0.0026, 0.0014, 0.0004], [0.6757, 0.1508, 0.0712, 0.0432, 0.0204, 0.0159, 0.0085, 0.0029], [0.6808, 0.0921, 0.0813, 0.0384, 0.0339, 0.0299, 0.0181, 0.011]], "ranks": {"Python": [48867, 190765, 45113, 198665, 89136, 163436, 13102, 58294, 31573, 71585, 14828, 136743, 111838, 90598, 74429, 140772, 88190, 70841, 107877, 166818, 111056, 195677, 179740, 147569, 82030, 140645, 134220, 147852, 118773, 88856, 63371, 48382, 59508, 110515, 166235, 146341, 171394, 171820, 155832, 172334, 129112, 138980, 136322, 152379, 144402, 141549, 160090, 181801, 220738, 221683, 140734, 79120, 124657, 77773, 87937, 96415, 79496, 92533, 102876, 95716, 88205, 21340, 14237]}}, {"pos": 465, "top": [[".", ",", "\u2013", " \u2013", "\u00a0", "\u00a0\u00a0", "\u2026.", ";"], [" \u2013", "\u2013", "\u2013and", " \u2013**", "**\u2013", " \u2013,", "\uff0e", "   \n"], ["\u2013", ".", ".\u2013", "\u2026\"", "\u2026", "\u2013and", "\u2018", "**\u2013"], ["aruhi", " Shemale", "\ub370\ubbf8", "\uad49\uc7a5", " **\u2018", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\uc3df", "\u0e21\u0e19\u0e38\u0e29"], ["...(", "\u2018", " **\u2018", "...'", ":...", ".", "\u00a0\u00a0", "...\""], [" **\u2018", "\u00a0\u00a0", ".", "\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0", "...(", "\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0", "   \n", "\u2026\""], ["...\"", " **\u2018", "...'", "...(", "...", "...**", "  \n", "\u2018"], [" **\u2018", "...**", "...'", "...(", "...\"", "   \n", "...\\", "  \r\n"], ["...\"", "...", "...**", "...'", "...(", "  \n\n\n", "...\\", "[...]"], ["...\\", "  \n  \n", "...", "...'", "...\"", "...(", ":...", "[...]"], ["...", "...\"", "...\\", "[...]", "...'", ":...", "\u00a0", "...("], [" **\u2018", " **'", "...**", " **\"", "...\\", " **\u2013", " **\u201c", " havoc"], [" **\u2018", "...**", " **'", " **\u201e", "\u2026**", " **\"", "...\\", "...'"], [" **\u2018", " **'", " havoc", " izman", "...**", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "enuous", " iepaz\u012b\u0161an\u0101s"], [" havoc", " izman", "enuous", "Trou", "\u706b\u901f", "\u63d0\u4f9b\u66f4\u52a0", "\u903c\u8feb", " **\u2018"], [" havoc", " entirety", " skyrocket", " sprawling", " newfound", " hefty", " wreak", "enuous"], [" myriad", "\u2013and", " sprawling", " havoc", " hefty", "\u2013\u2013", "-esque", " entirety"], ["\u2013and", "...\\", "...**", " hefty", "\u2013\u2013", " havoc", " sprawling", " myriad"], ["...\\", "\u2013\u2013", "...", "...**", "...'", ":...", " havoc", " myriad"], [" myriad", " havoc", "\u2013\u2013", "\u2013and", " hefty", "...\\", " wildly", "\u2014even"], ["<|endoftext|>", "  \n\n", " myriad", "...", " \n\n", "...\\", " \r\n\r\n", "[...]"], [" havoc", " myriad", " crippling", " **\u2018", " wildly", "Trou", " skyrocket", " hefty"], [" havoc", " myriad", " wildly", " crippling", " drastically", " seemingly", " hefty", " sprawling"], [" myriad", " havoc", " wildly", " seemingly", " drastically", " heavily", " dramatically", " hugely"], ["  \n\n", " \n\n", " \r\n\r\n", "   \n\n", "  \n  \n", "\r\n\r\n", "  \r\n\r\n", " \r\r\n"], [" havoc", " **\u2018", " \r\r\n", " glitches", " \r\n\r\n", " **'", " debilitating", " wildly"], [" havoc", " glitches", " frantic", " unpredictable", " wildly", " unexpectedly", " erratic", " spikes"], [" wildly", " unexpectedly", " seemingly", " havoc", " heavily", " dramatically", " myriad", " much"], [" glitches", " havoc", " unexpectedly", " unpredictable", " frantic", " erratic", " spikes", " wildly"], [" glitches", " havoc", " unpredictable", " spikes", " unexpectedly", " panic", " erratic", " frantic"], [" unexpectedly", " unpredictable", " wildly", " dramatically", " glitches", " havoc", " damage", " panic"], [" unexpectedly", " unpredictable", " dramatically", " damage", " dramatic", " wildly", " panic", " massive"], [" unexpectedly", " unpredictable", " panic", " havoc", " glitches", " horrific", " damage", " catastrophic"], [" glitches", " panic", " havoc", " glitch", " unpredictable", " backlash", " frantic", " catastrophic"], [" glitches", " havoc", " glitch", " panic", " **\u201c", " unpredictable", " awkward", " frantic"], [" glitches", " glitch", " delays", " crashes", " panic", " jitter", " havoc", " unpredictable"], [" glitches", " glitch", " delays", " stutter", " jitter", " sluggish", " failures", " awkward"], [" glitches", " delays", " glitch", " stutter", " sluggish", " awkward", " failures", " jitter"], [" glitches", " delays", " glitch", " stutter", " jitter", " failures", " unpredictable", " interruptions"], [" glitches", " glitch", " delays", " stutter", " jitter", " interruptions", " failures", " unpredictable"], [" glitches", " glitch", " delays", " jitter", " stutter", " interruptions", " delay", " sluggish"], [" glitches", " jitter", " glitch", " stutter", " delays", " interruptions", " crashes", " flick"], [" glitches", " jitter", " stutter", " glitch", " delays", " interruptions", " erratic", " sluggish"], [" glitches", " glitch", " delays", " stutter", " jitter", " crashes", " interruptions", " timeouts"], [" glitches", " delays", " glitch", " jitter", " interruptions", " crashes", " erratic", " stutter"], [" glitches", " delays", " jitter", " erratic", " interruptions", " glitch", " crashes", " stutter"], [" glitches", " delays", " interruptions", " jitter", " erratic", " crashes", " glitch", " spikes"], [" glitches", " delays", " interruptions", " erratic", " jitter", " glitch", " crashes", " syncing"], [" glitches", " delays", " erratic", " interruptions", " crashes", " jitter", " glitch", " bursts"], [" glitches", " erratic", " delays", " syncing", " interruptions", " jitter", " crashes", " glitch"], [" glitches", " erratic", " syncing", " glitch", " interruptions", " timeouts", " jitter", " synchronization"], [" glitches", " erratic", " timeouts", " jitter", " interruptions", " synchronization", " glitch", " syncing"], [" glitches", "\u5361\u987f", " stutter", " crashes", " erratic", " jitter", " instability", " glitch"], [" glitches", "\u5361\u987f", " stutter", " jitter", " crashes", " glitch", " erratic", " instability"], [" glitches", " stutter", "\u5361\u987f", " jitter", " timeouts", " crashes", " UI", " synchronization"], [" glitches", " stutter", "\u5361\u987f", " UI", " callbacks", " synchronization", " timeouts", " erratic"], [" stutter", " glitches", " UI", "\u5361\u987f", " dropped", " synchronization", " Android", " callbacks"], [" stutter", " jitter", " UI", " dropped", " glitches", "\u5361\u987f", " lag", " jer"], [" stutter", " dropped", " jitter", " UI", " drop", "-drop", " glitches", " crashes"], [" stutter", " dropped", " input", " jitter", " inputs", " Input", " lag", " drop"], [" dropped", " stutter", " drops", " jitter", " drop", " lag", " input", "-drop"], [" dropped", " stutter", " jitter", " input", " drop", " drops", " dropout", " glitches"], [" dropped", " stutter", " input", " jitter", " drop", " drops", " chop", " frame"]], "p": [[0.713, 0.1093, 0.0965, 0.0516, 0.007, 0.0042, 0.0027, 0.0024], [0.1472, 0.1299, 0.074, 0.0614, 0.0541, 0.0422, 0.035, 0.029], [0.4579, 0.1487, 0.1022, 0.0702, 0.0376, 0.0214, 0.0201, 0.0167], [0.0087, 0.0082, 0.0077, 0.0064, 0.0064, 0.006, 0.0044, 0.0039], [0.0902, 0.0453, 0.0376, 0.0332, 0.0243, 0.0228, 0.0214, 0.0214], [0.0774, 0.0774, 0.0285, 0.0268, 0.0222, 0.0162, 0.0135, 0.0126], [0.1728, 0.1187, 0.0984, 0.0869, 0.0816, 0.0527, 0.0495, 0.0282], [0.1957, 0.1431, 0.0635, 0.0527, 0.0527, 0.03, 0.0234, 0.022], [0.1582, 0.1087, 0.0847, 0.0747, 0.0619, 0.0514, 0.0453, 0.0426], [0.1236, 0.0704, 0.0427, 0.0401, 0.0401, 0.0276, 0.0243, 0.0229], [0.3076, 0.1205, 0.0881, 0.0778, 0.0443, 0.0324, 0.0324, 0.0305], [0.3993, 0.0837, 0.0786, 0.0255, 0.0083, 0.0042, 0.0042, 0.0035], [0.1968, 0.093, 0.068, 0.0092, 0.0067, 0.0067, 0.0059, 0.0041], [0.0199, 0.0078, 0.0061, 0.0057, 0.0054, 0.0022, 0.0017, 0.0016], [0.0182, 0.0028, 0.0023, 0.0022, 0.002, 0.0016, 0.0016, 0.0016], [0.0058, 0.0029, 0.0021, 0.0021, 0.002, 0.002, 0.0018, 0.0018], [0.0048, 0.0045, 0.0031, 0.0029, 0.0028, 0.0023, 0.002, 0.0019], [0.0119, 0.0082, 0.006, 0.0056, 0.0044, 0.0041, 0.0039, 0.0039], [0.0137, 0.0107, 0.0078, 0.0078, 0.0073, 0.0069, 0.0069, 0.0065], [0.013, 0.0108, 0.0084, 0.0054, 0.0048, 0.0045, 0.0045, 0.004], [0.352, 0.0348, 0.0078, 0.0078, 0.0069, 0.0053, 0.005, 0.0039], [0.0302, 0.0034, 0.0034, 0.003, 0.0026, 0.0026, 0.0022, 0.0021], [0.0328, 0.0137, 0.0065, 0.0054, 0.005, 0.0037, 0.0035, 0.0035], [0.0134, 0.0111, 0.0067, 0.0059, 0.0044, 0.0041, 0.0034, 0.0034], [0.1366, 0.0882, 0.0569, 0.0253, 0.0185, 0.0119, 0.0099, 0.0082], [0.0433, 0.0217, 0.0149, 0.0116, 0.008, 0.008, 0.0052, 0.0049], [0.065, 0.0145, 0.0094, 0.0094, 0.0083, 0.0068, 0.0068, 0.0068], [0.0098, 0.0098, 0.0087, 0.0082, 0.0072, 0.0068, 0.0064, 0.0064], [0.0149, 0.014, 0.0103, 0.0096, 0.0096, 0.007, 0.007, 0.007], [0.033, 0.02, 0.0188, 0.0129, 0.0129, 0.0114, 0.0107, 0.0107], [0.0204, 0.0192, 0.014, 0.0109, 0.0103, 0.0103, 0.0103, 0.0085], [0.02, 0.0176, 0.0137, 0.0114, 0.0114, 0.01, 0.0094, 0.0089], [0.0135, 0.0135, 0.0119, 0.0119, 0.0105, 0.0093, 0.0093, 0.0077], [0.1142, 0.0271, 0.0211, 0.0199, 0.0199, 0.0145, 0.0128, 0.0113], [0.124, 0.026, 0.026, 0.0179, 0.0148, 0.0139, 0.0115, 0.0108], [0.2974, 0.0485, 0.0485, 0.0158, 0.0158, 0.0123, 0.0115, 0.0096], [0.4565, 0.0658, 0.0545, 0.0214, 0.0138, 0.0114, 0.0101, 0.0089], [0.3426, 0.0764, 0.0595, 0.0219, 0.0151, 0.0151, 0.0151, 0.0133], [0.4944, 0.0629, 0.0555, 0.0246, 0.0217, 0.0169, 0.0159, 0.014], [0.4543, 0.0742, 0.0578, 0.035, 0.029, 0.0188, 0.0137, 0.0137], [0.3875, 0.1258, 0.098, 0.0865, 0.0673, 0.0219, 0.017, 0.015], [0.4576, 0.1021, 0.0901, 0.0702, 0.0546, 0.0275, 0.0243, 0.0101], [0.4388, 0.111, 0.0979, 0.0763, 0.0594, 0.0281, 0.0233, 0.017], [0.5045, 0.0774, 0.0683, 0.0469, 0.0441, 0.0251, 0.0173, 0.0126], [0.4768, 0.1064, 0.0503, 0.0503, 0.0324, 0.0286, 0.0237, 0.0153], [0.3918, 0.0991, 0.0601, 0.0468, 0.0413, 0.0342, 0.0284, 0.0162], [0.4652, 0.0808, 0.0556, 0.0382, 0.0359, 0.0262, 0.0232, 0.014], [0.5624, 0.0672, 0.0434, 0.0317, 0.0232, 0.0232, 0.017, 0.011], [0.531, 0.056, 0.056, 0.0361, 0.0264, 0.0233, 0.0182, 0.0125], [0.5049, 0.0877, 0.0303, 0.0285, 0.0268, 0.0251, 0.0208, 0.0162], [0.4834, 0.0741, 0.045, 0.0165, 0.0155, 0.0146, 0.0146, 0.0137], [0.5862, 0.0425, 0.0375, 0.0258, 0.0258, 0.0242, 0.0214, 0.0177], [0.5934, 0.1324, 0.091, 0.0261, 0.0158, 0.0158, 0.014, 0.0123], [0.459, 0.1913, 0.1688, 0.0293, 0.0229, 0.0108, 0.0095, 0.0095], [0.5269, 0.1176, 0.1037, 0.0231, 0.0204, 0.018, 0.0159, 0.0159], [0.2654, 0.1824, 0.076, 0.0592, 0.0359, 0.0359, 0.0337, 0.0263], [0.3385, 0.1599, 0.1245, 0.0588, 0.0278, 0.0169, 0.0131, 0.0131], [0.7933, 0.0507, 0.0308, 0.0211, 0.0187, 0.0128, 0.0053, 0.0035], [0.2984, 0.2633, 0.141, 0.0356, 0.0216, 0.0191, 0.0191, 0.0191], [0.3074, 0.2113, 0.0881, 0.0686, 0.0534, 0.0534, 0.0252, 0.0173], [0.7875, 0.0733, 0.021, 0.0185, 0.0154, 0.0082, 0.0082, 0.0064], [0.5771, 0.2406, 0.0537, 0.021, 0.0136, 0.0136, 0.0073, 0.0041], [0.5459, 0.2922, 0.0508, 0.0395, 0.0121, 0.0057, 0.0037, 0.0032]], "ranks": {"Python": [46711, 233575, 48515, 160782, 52368, 58643, 7202, 24516, 7078, 12209, 6860, 77345, 127050, 136720, 122964, 162634, 128262, 96252, 87406, 124501, 46317, 145796, 110378, 115616, 63693, 131821, 100962, 79478, 109746, 75772, 53147, 53262, 52886, 61287, 109794, 58745, 64907, 42944, 41075, 53970, 27871, 28630, 35678, 40758, 47736, 53245, 73128, 73521, 130259, 194796, 188960, 176413, 216508, 180280, 148568, 165868, 185135, 192228, 164341, 121776, 113153, 43372, 21500]}}, {"pos": 466, "top": [[".", ",", "  \n", " ", "u", "o", "\u2026\u2026", " \u2013"], ["  \n  \n", "  \r\n", "  \n", "  \n    \n", "\uff20", "\u2011", " \uff5e", "  \n\n"], ["\u2019**", "**\u2013", " \uff08", " \uff09", " \uff0f", " \uff5e", "\uff0e", "\u2011"], ["\uff0a\uff0a\uff0a\uff0a", "\uc3df", "\uff3f\uff3f", "----------</", "TROD", "TRGL", " \uffe5\uffe5", "\uff0d\uff0d"], ["\uff20", " \uff08", " \uff0f", "  \n  \n", " \uff09", "\u2019**", " \n  \n", " \u2019"], [" \uff08", " \uff09", "\u5728", "\u2019**", "\uff08", "\u7684", "\uff0c", "\uff20"], ["\u2019**", " \uff08", "\u5728", "\uff09**", "\u7684", "\u5927", "\uff08", "\u3000"], ["\u2019**", " )**", "\uc3df", "\uff09**", "')</", "\uff0a\uff0a\uff0a\uff0a", "\u300d**", " **\u2014"], ["\u2019**", "\uff09**", " \uff0a", "\uc3df", "')</", " \uff09", "\uff0a\uff0a\uff0a\uff0a", "\uff06"], ["\u2019**", "\uc3df", "TROD", "')</", " )**", "ewn\u0105", "-Cds", " \uffe5\uffe5"], ["\u2019**", " \uff09", "')</", "  \n  \n", " )**", " \uff08", " \ufffd", " \n  \n"], [" )**", "\uc3df", "\u2019**", "TROD", " **\u2014", "\uff0a\uff0a\uff0a\uff0a", "\u300d**", "ewire"], ["\u2019**", "\uc3df", " )**", "TROD", " \u300d", "ewire", "\u4e94\u989c\u516d\u8272\u7684", "DMIN"], ["\uc3df", "\u2019**", "TROD", "')</", "\u8eab\u4e34\u5176\u5883", "\u6613\u8d2d", " \u2019", "DMIN"], [" busted", " \u2019", "\u8eab\u4e34\u5176\u5883", " snag", "')</", "\u9e26", "ropped", "\uc3df"], [" busted", " snag", "locales", " \u2019", " tossed", "t\u00e9ri", "TROD", " atop"], [" \u2019", " snag", " \u00ad", "')</", " busted", " \ufffd", "s", " tossed"], ["')</", " \u2019", " \u00ad", " snag", "\u2019**", "\u2014you", "\u201d\u2014", "\u2019T"], ["')</", "\u2019**", " **\u2014", "\u201d\u2014", " \u2019", "\u5927", "\u2019T", "\u2014you"], [" \u2019", "')</", " \ufffd", "\u2014or", "\u2014even", "\u201d\u2014", "\u2014and", "\u2011"], ["')</", " \ufffd", " \u2019", "\uff0d", "\u4e00", "\u5927", "\u8ddf", "  \n  \n"], [" \u2019", "')</", " \u2018\u2019", "\uc3df", "\u2019**", "\ufffd", " )**", "\u2019T"], [" \u2019", " \u2018\u2019", "')</", " \r\n \r\n", " \r\n", " \n  \n", "\ufffd", "\u2019**"], [" \u2019", " \n  \n", " \u00ad", " \ufffd", " \r\n", " \u2018\u2019", " \r\n \r\n", "')</"], ["  \n  \n", " \n  \n", "  \n\n", " \r\n \r\n", " \r\n\r\n", " \r\n", " \n\n", " \u00ad"], [" \n  \n", " \r\n", " \r\n\r\n", "\u2019**", " \r\n \r\n", "  \n  \n", "  \n\n", "')</"], ["\u2019**", " )**", " **\u2014", " \r\n", " \n  \n", "')</", " \uff0a", " \u2019"], [" \u2019", "\u2011", " \n  \n", " \r\n", " \r\n\r\n", " \r\n \r\n", " )**", " \ufffd"], [" )**", "\u2011", " \n  \n", " \u2019", "\u2019**", " **\u2014", " spikes", " deliveries"], [" \n  \n", "\u2011", " )**", "\u2019**", " **\u2014", " \r\n", " \r\n \r\n", " \u2019"], [" \n  \n", "\u2011", " )**", " \u2019", " failures", " spikes", " .**", " shots"], ["\u2011", " \n  \n", " )**", " .**", " \u2019", "\u2019**", " failures", " ?**"], ["\u2011", " )**", " \n  \n", " .**", " \u2019", " deadlines", " crashes", " failures"], ["\u2011", " )**", "\u2019**", " **\u2014", " crashes", " spikes", " glitches", " deadlines"], ["\u2019**", " )**", "\u2011", "\uff1f**", " **\u2014", " deadlines", " glitches", " spikes"], ["\u2011", " )**", " **\u2014", "\u2019**", " deadlines", "**\u2013", " framerate", "**\u2014"], [" framerate", " )**", "\u2011", " animations", " deadlines", " timeouts", " **\u2014", " glitches"], ["\u2011", " framerate", " animations", " spikes", " deadlines", " glitches", " Drop", " timeouts"], ["\u2011", " framerate", " animations", " deadlines", " spikes", " glitches", " timeouts", " drops"], [" framerate", " animations", "\u2011", " visuals", " spikes", "\u5e27", " frames", " deadlines"], [" framerate", " animations", "\u6bcf\u79d2", "\u5e27", " visuals", " jitter", " pixels", " frames"], [" framerate", "\u5e27", " animations", " frames", " pixels", "\u6bcf\u79d2", " jitter", " visuals"], [" framerate", " animations", " frames", " jitter", " pixels", "\u6bcf\u79d2", "\u5e27", " spikes"], [" framerate", " pixels", " frames", " animations", " spikes", "\u6bcf\u79d2", "\u5e27", " timeouts"], [" framerate", " frames", " pixels", " spikes", " deadlines", " animations", " timeouts", " speeds"], [" framerate", " frames", " spikes", " animations", " deliveries", " pixels", " drops", " episodes"], [" framerate", " deadlines", " animations", " frames", " spikes", " interruptions", " deliveries", " intervals"], [" framerate", " animations", " frames", " deadlines", " spikes", " interruptions", " thresholds", " glitches"], [" framerate", " animations", " frames", " glitches", " spikes", " timeouts", " interruptions", " deadlines"], [" framerate", " animations", " glitches", " spikes", " timeouts", " frames", " deadlines", " interruptions"], [" framerate", " animations", " deadlines", " glitches", "\u5e27", " timeouts", " pixels", " frames"], [" animations", "-sync", " visuals", "\u5e27", " callbacks", " frames", " spikes", " pixels"], [" frames", " animations", " callbacks", "\u5e27", "-sync", " visuals", "Frames", " spikes"], [" animations", " frames", "\u5e27", " callbacks", " spikes", "Frames", " notifications", " deadlines"], [" frames", " animations", " callbacks", "\u5e27", " notifications", "Frames", " packets", " spikes"], [" frames", "\u5e27", "Frames", " animations", " callbacks", " Frames", "frames", " packets"], [" frames", " animations", "\u5e27", "Frames", " callbacks", "frames", " Frames", "-sync"], [" animations", " frames", "\u5e27", " animation", " taps", "Frames", "frames", " callbacks"], [" frames", "\u5e27", " frame", "frames", " Frames", " Frame", "Frames", "Frame"], [" frames", " frame", "\u5e27", "frames", " Frames", "Frames", "-frame", " Frame"], [" frames", "frames", " Frames", "\u5e27", " frame", "Frames", "-frame", " Frame"], [" frames", "frames", " Frames", " frame", "\u5e27", "Frames", "-frame", " animations"], [" frames", "frames", " Frames", " frame", " animations", "Frames", " callbacks", "\u5e27"]], "p": [[0.4726, 0.2097, 0.0931, 0.0342, 0.0195, 0.0134, 0.0126, 0.0092], [0.1654, 0.0734, 0.069, 0.0648, 0.0474, 0.0418, 0.0393, 0.0238], [0.0832, 0.0609, 0.0474, 0.0369, 0.0306, 0.0306, 0.027, 0.0254], [0.068, 0.0439, 0.0207, 0.0161, 0.0143, 0.0118, 0.0111, 0.0098], [0.1816, 0.0806, 0.0336, 0.0336, 0.0191, 0.018, 0.0116, 0.0109], [0.2182, 0.043, 0.0216, 0.0203, 0.0168, 0.0158, 0.0139, 0.0131], [0.2995, 0.0628, 0.0405, 0.0336, 0.0246, 0.0217, 0.0217, 0.0116], [0.1896, 0.0329, 0.0291, 0.0156, 0.0137, 0.0083, 0.0065, 0.0061], [0.1122, 0.0152, 0.0134, 0.0134, 0.0111, 0.0104, 0.0104, 0.0092], [0.0074, 0.0051, 0.0045, 0.0037, 0.0031, 0.0029, 0.0027, 0.0026], [0.0191, 0.0116, 0.0109, 0.0109, 0.0096, 0.0085, 0.007, 0.0058], [0.037, 0.0255, 0.0211, 0.0106, 0.0064, 0.0064, 0.0053, 0.0042], [0.0242, 0.0242, 0.02, 0.0074, 0.0057, 0.0037, 0.0033, 0.0031], [0.0063, 0.0044, 0.0034, 0.0034, 0.0025, 0.0025, 0.0023, 0.0018], [0.0042, 0.0029, 0.0027, 0.0024, 0.0024, 0.002, 0.0019, 0.0018], [0.0041, 0.0034, 0.0022, 0.002, 0.002, 0.0019, 0.0017, 0.0017], [0.0218, 0.008, 0.0075, 0.0071, 0.0028, 0.0026, 0.0024, 0.0023], [0.014, 0.0075, 0.0071, 0.0046, 0.0043, 0.0033, 0.0033, 0.0026], [0.0251, 0.0126, 0.0112, 0.0053, 0.0047, 0.0041, 0.0039, 0.0036], [0.0658, 0.0214, 0.0177, 0.0166, 0.0114, 0.0107, 0.0095, 0.0095], [0.0235, 0.0087, 0.0081, 0.0076, 0.0072, 0.0063, 0.0056, 0.0053], [0.0454, 0.0312, 0.0101, 0.007, 0.0061, 0.0042, 0.0031, 0.0031], [0.1968, 0.025, 0.0195, 0.0072, 0.0067, 0.0063, 0.0052, 0.0052], [0.1286, 0.0238, 0.0144, 0.0136, 0.0136, 0.012, 0.012, 0.006], [0.0949, 0.0891, 0.0837, 0.0372, 0.0372, 0.0349, 0.0212, 0.0176], [0.0515, 0.0401, 0.0259, 0.0228, 0.0178, 0.0178, 0.0108, 0.0095], [0.024, 0.0187, 0.0146, 0.0061, 0.0054, 0.005, 0.0044, 0.0037], [0.0662, 0.0229, 0.019, 0.0074, 0.0066, 0.0066, 0.0062, 0.0037], [0.0291, 0.0273, 0.0146, 0.0121, 0.0083, 0.0065, 0.0065, 0.0061], [0.0962, 0.0548, 0.0427, 0.0293, 0.0293, 0.0189, 0.0157, 0.0115], [0.079, 0.0397, 0.0373, 0.0329, 0.0166, 0.0137, 0.0121, 0.0114], [0.0764, 0.0674, 0.0409, 0.0264, 0.0193, 0.0133, 0.011, 0.0091], [0.1128, 0.0344, 0.0184, 0.0153, 0.0119, 0.0105, 0.0099, 0.0099], [0.0796, 0.0332, 0.0167, 0.0138, 0.0079, 0.0079, 0.007, 0.0065], [0.0333, 0.0333, 0.0229, 0.019, 0.0148, 0.0131, 0.009, 0.009], [0.1883, 0.0186, 0.0128, 0.0113, 0.0094, 0.0088, 0.0083, 0.0061], [0.034, 0.0265, 0.0182, 0.0161, 0.0161, 0.0151, 0.0125, 0.0104], [0.0806, 0.059, 0.0381, 0.0109, 0.0096, 0.0066, 0.0066, 0.0055], [0.1063, 0.0999, 0.0443, 0.0144, 0.0144, 0.0127, 0.0119, 0.0099], [0.1871, 0.0608, 0.0369, 0.0253, 0.0224, 0.012, 0.012, 0.0112], [0.5572, 0.0295, 0.0148, 0.0123, 0.0123, 0.0116, 0.0102, 0.0079], [0.663, 0.031, 0.0257, 0.0242, 0.0188, 0.0177, 0.0114, 0.0078], [0.6374, 0.0218, 0.0192, 0.0141, 0.0141, 0.0132, 0.0132, 0.0075], [0.4751, 0.0237, 0.0196, 0.0196, 0.0135, 0.0127, 0.0112, 0.0105], [0.506, 0.0237, 0.0196, 0.0144, 0.0127, 0.0127, 0.0099, 0.0093], [0.3567, 0.0312, 0.0293, 0.0189, 0.0189, 0.0178, 0.0157, 0.0157], [0.2912, 0.0307, 0.0271, 0.0271, 0.0239, 0.0225, 0.0186, 0.0145], [0.2185, 0.0357, 0.0315, 0.0278, 0.0261, 0.0216, 0.0216, 0.0169], [0.2736, 0.0394, 0.037, 0.0254, 0.0211, 0.0186, 0.0175, 0.0164], [0.1208, 0.0503, 0.027, 0.027, 0.0197, 0.0185, 0.0163, 0.012], [0.0491, 0.0317, 0.0298, 0.0218, 0.017, 0.0124, 0.0097, 0.0097], [0.1019, 0.0242, 0.0214, 0.0214, 0.0188, 0.0188, 0.0114, 0.0114], [0.1287, 0.0941, 0.0733, 0.0689, 0.0418, 0.0306, 0.0238, 0.0174], [0.2497, 0.2203, 0.0523, 0.0462, 0.0298, 0.015, 0.015, 0.0141], [0.2619, 0.18, 0.1402, 0.0622, 0.0202, 0.0167, 0.0167, 0.0157], [0.7186, 0.1249, 0.0316, 0.0192, 0.0169, 0.0149, 0.008, 0.004], [0.7246, 0.0674, 0.0674, 0.0193, 0.017, 0.0097, 0.0097, 0.0049], [0.4982, 0.388, 0.0409, 0.0133, 0.0091, 0.0049, 0.0043, 0.004], [0.9791, 0.0109, 0.0051, 0.0019, 0.0011, 0.0005, 0.0003, 0.0003], [0.9927, 0.0028, 0.0019, 0.0015, 0.0006, 0.0002, 0.0001, 0.0001], [0.9979, 0.0007, 0.0005, 0.0004, 0.0003, 0.0001, 0.0001, 0.0], [0.9986, 0.0006, 0.0004, 0.0002, 0.0001, 0.0001, 0.0, 0.0], [0.9994, 0.0002, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Python": [20857, 175478, 92818, 197593, 133549, 93142, 33872, 57642, 29599, 48947, 18889, 88480, 102725, 94160, 84782, 118532, 60914, 46564, 49414, 41528, 12671, 42797, 13651, 17024, 8179, 14394, 49284, 109197, 90185, 72418, 94329, 83088, 96044, 86769, 72426, 78892, 67697, 57848, 91435, 120095, 82611, 54798, 64817, 90609, 87244, 68903, 83636, 98517, 114446, 152699, 89287, 69116, 105580, 52173, 77023, 73538, 81675, 103060, 74931, 36081, 18549, 3568, 2419]}}, {"pos": 467, "top": [[" \u2013", ".", "\u2013", " ", ",", "\u2026..", "i", "\u2026."], [" \u2013", "\u2013\u2013", "\u2013", "\u2013and", " \u2013,", "  \n\n", "  ", ".\u2013"], [" \u2013", "\u2013", "\u2026..", "\u2026", "\u2013and", "\u2026.", "\u2013\u2013", ".\u2013"], [" ``", " ``(", " YYS", " pupper", " \u2018\u2019", "chinen", "eless", " \u041a\u0440\u0430\u0441\u0438"], [" (@", " @", " \u2019", " @(", "@", "  ", " @$", "\uff20"], ["\u2026..", " \u2019", "\u2026.", "  ", " \u2018", " \u201c.", "\u2019", " \u2026."], [" \u2019", " \u2018", "\u2019", "\u2013\u2013", "\u2026..", ".\u2019", "\u2019:", ")\u2019"], ["\u2026..", "\u2013\u2013", " \u2013", " \u2018", "\u2013", "\u2013and", " \r\n \r\n", " \u2019"], [" \u2013", ",", "\u2026..", " [\u2026]", "\u2013", " \n  \n", " \u2018", "\u2013\u2013"], [",", "\u2013", "\u2013\u2013", "\u2013and", "\\_", "\u2014but", ";", " \u2013"], [",", " \u2013", "\u2013", " ", "\u2013\u2013", ";", "\u2026", "."], ["oire", "\u2013\u2013", "bite", "alama", " \u2013", "olet", "/fr", "\u17cb"], ["oire", "\u2013\u2013", "\u7ad9\u5730\u94c1\u7ad9", " \u2013", "(Frame", "olet", "hift", "bite"], ["oire", "\u2013", " \u2013", "\u2013\u2013", "-esque", "/fr", "(Frame", ","], [" \u2013", "\u2013", " yet", "\u2013\u2013", "\u2014", " seemingly", "\u2013and", " arguably"], [" arguably", " atop", "-esque", " wildly", " seemingly", " incredibly", " kicking", " outright"], [" \u2013", ",", "\u2013", "e", " arguably", "-esque", " seemingly", "\u2013\u2013"], [" \u2013", ",", "\u2013", "\u2013\u2013", "\u2013and", "oire", "\u2014even", " arguably"], ["\u2014even", " arguably", "\u2014and", "oire", " fueled", " atop", " seemingly", "\u2014or"], [" \u2013", "\u2014even", "\u2014and", " \u2014", "\u2014or", "\u2013\u2013", "\u2014", " arguably"], ["<|endoftext|>", "\u2014and", "\u2014even", " though", "\u2014", " seemingly", " \u2014", "\u2013and"], [" even", " arguably", " ultimately", " atop", " seemingly", " amid", " fueled", " wildly"], [" ,", " \u2019", " seemingly", " even", " ultimately", " arguably", " across", " yet"], [" ,", " even", " ultimately", " and", " .", " \u2013", " in", " over"], [" \n  \n", " \u2013", " ,", "\u2014and", "\u2013\u2013", "\u2013", "\u2013and", " seemingly"], [" \n  \n", " .**", " atop", " amidst", " \r\n", " wildly", " famously", " \u2019"], [" during", " even", " atop", " jitter", " ,", " onstage", " .**", " moments"], [" ,", " even", " during", " \u2019", " and", " over", " --", " arguably"], [" ,", " during", " even", " due", " \u2013", " over", " and", " ."], [" during", " ,", " even", " \u2013", " due", " \n  \n", " \u2014", " and"], [" during", " ,", " .", " even", " and", " due", " over", " at"], [" .", " during", " ,", " even", " and", " due", " at", " over"], [" .", " even", " during", " ,", " and", " over", " due", " \u2013"], [" even", " .", " despite", " during", " heavily", " \u2013", "\u2014even", " .**"], [" even", " .**", " .", " .\"", "\u2014even", " disproportionately", " jitter", " despite"], [" even", " .**", " .", " .\"", "\u2014even", " .*", " despite", " \u2014"], [" even", " .**", " .", " .\"", " despite", "\u2014even", ".**", " jitter"], [" even", " .", " .**", " despite", "\u2014even", " jitter", " .\"", " notoriously"], [" even", " despite", " .**", "\u2014even", " .", " jitter", "\u5373\u4fbf", "even"], [" even", " .**", " despite", " jitter", "\u2014even", " .", "even", "\u5373\u4fbf"], [" even", " jitter", " .", " despite", " .**", " during", " due", " delays"], [" even", " jitter", " during", " .", " glitches", " delays", " stutter", " .**"], [" even", " jitter", " .**", " spikes", " glitches", " stutter", " due", " bursts"], [" even", " due", " jitter", " spikes", " crashes", " delays", " bursts", " during"], [" even", " due", " jitter", " spikes", " .", " .**", " crashes", " during"], [" even", " spikes", " due", " jitter", " bursts", " crashes", " worse", " critical"], [" even", "even", " spikes", "\u5373\u4f7f", " Even", " worse", " crashes", " jitter"], [" even", "even", "\u5373\u4f7f", "\u5373\u4fbf", " Even", "\u5373\u4f7f\u5728", " regardless", "\u54ea\u6015"], [" even", "\u5373\u4fbf", "even", ".", " regardless", "\u2014even", " despite", "\u5373\u4f7f"], [" even", "\u5373\u4fbf", "even", " regardless", " Even", ".", "\u5373\u4f7f", "\u2014even"], [" even", "\u5373\u4fbf", " regardless", "\u5373\u4f7f", "even", " Even", "\u5373\u4f7f\u5728", "Even"], [" regardless", "\u5373\u4fbf", " even", "\u5373\u4f7f", "even", ".**", "\u5373\u4f7f\u5728", "Even"], [" regardless", "\u5373\u4fbf", " even", ".**", "\u5373\u4f7f", " anyway", " despite", " violates"], [" regardless", "\u5373\u4fbf", " even", "\u5373\u4f7f", " violates", "\u5373\u4f7f\u5728", " violations", "even"], [" regardless", "\u5373\u4fbf", " Regardless", " violates", "\u5373\u4f7f", " even", "\u8fdd\u53cd", "Regardless"], [" regardless", " violates", "\u5373\u4fbf", "\u8fdd\u53cd", " even", " Regardless", " violating", " violate"], [" regardless", " even", "\u5373\u4fbf", "even", " violates", " Regardless", " Even", "\u8fdd\u53cd"], [" regardless", " even", "\u5373\u4fbf", "even", " violates", "\u5373\u4f7f", " Regardless", " Even"], [" regardless", " even", " violates", " crashes", "even", "\u5373\u4fbf", " jitter", " glitches"], [" even", " regardless", "even", " violates", " unrelated", " jitter", " and", " Even"], [" regardless", " even", " and", ".", " immediately", " jitter", " instantly", " UI"], [".", " even", " regardless", " and", " that", " immediately", " jitter", " instantly"], [".", " and", " even", " regardless", " that", " immediately", " perceived", " UI"]], "p": [[0.9585, 0.0146, 0.0088, 0.005, 0.0021, 0.0019, 0.0016, 0.0012], [0.629, 0.1403, 0.0585, 0.0294, 0.0178, 0.0031, 0.0029, 0.0023], [0.5994, 0.3208, 0.0263, 0.011, 0.0075, 0.0067, 0.0055, 0.0052], [0.0366, 0.0196, 0.0098, 0.0082, 0.0047, 0.0041, 0.0041, 0.0039], [0.1254, 0.1178, 0.0715, 0.0298, 0.0247, 0.0218, 0.0181, 0.017], [0.0766, 0.0436, 0.016, 0.0151, 0.011, 0.0097, 0.0071, 0.0063], [0.3082, 0.0646, 0.0392, 0.0287, 0.0269, 0.0238, 0.0197, 0.0163], [0.0534, 0.0471, 0.0237, 0.0144, 0.0127, 0.0112, 0.0105, 0.0093], [0.1084, 0.1084, 0.0658, 0.0545, 0.0375, 0.0352, 0.0292, 0.0227], [0.0695, 0.0653, 0.0508, 0.0372, 0.0129, 0.0061, 0.0057, 0.005], [0.2705, 0.136, 0.1278, 0.0415, 0.0268, 0.0196, 0.0184, 0.0173], [0.0102, 0.0066, 0.004, 0.0038, 0.0038, 0.0031, 0.0031, 0.0023], [0.0068, 0.0056, 0.0046, 0.0046, 0.0032, 0.0025, 0.0023, 0.0023], [0.0078, 0.0073, 0.0061, 0.0061, 0.0044, 0.0039, 0.0027, 0.0027], [0.0399, 0.0292, 0.0101, 0.0079, 0.0069, 0.0065, 0.0061, 0.0057], [0.0117, 0.0103, 0.0052, 0.0052, 0.0052, 0.0043, 0.0034, 0.003], [0.0575, 0.0371, 0.0255, 0.0165, 0.0106, 0.0078, 0.0073, 0.0065], [0.0656, 0.0188, 0.0146, 0.0107, 0.0074, 0.0069, 0.0061, 0.0051], [0.019, 0.0123, 0.0084, 0.0079, 0.0066, 0.0066, 0.0062, 0.0054], [0.0631, 0.0462, 0.0434, 0.0193, 0.0181, 0.0141, 0.0132, 0.0117], [0.133, 0.0169, 0.009, 0.0085, 0.0075, 0.007, 0.007, 0.0055], [0.0102, 0.0096, 0.0084, 0.0058, 0.0051, 0.0045, 0.0042, 0.004], [0.0267, 0.0172, 0.0172, 0.0162, 0.0143, 0.0111, 0.0092, 0.0081], [0.107, 0.0211, 0.0154, 0.0154, 0.0136, 0.0128, 0.0128, 0.012], [0.1139, 0.0347, 0.0175, 0.0164, 0.0154, 0.0128, 0.0128, 0.0088], [0.085, 0.0148, 0.0139, 0.0101, 0.009, 0.0074, 0.0066, 0.0062], [0.0222, 0.0144, 0.0119, 0.0112, 0.0099, 0.0093, 0.0087, 0.0087], [0.1254, 0.0338, 0.028, 0.0159, 0.0141, 0.0124, 0.0103, 0.008], [0.0905, 0.075, 0.0354, 0.0178, 0.0139, 0.0122, 0.0115, 0.0102], [0.1411, 0.0911, 0.071, 0.0315, 0.0216, 0.0191, 0.0179, 0.0169], [0.1685, 0.1685, 0.1397, 0.0847, 0.0275, 0.0258, 0.0243, 0.0243], [0.5831, 0.0894, 0.0696, 0.0373, 0.0256, 0.0114, 0.0094, 0.0089], [0.4312, 0.2616, 0.0515, 0.0401, 0.013, 0.0101, 0.0089, 0.0084], [0.5594, 0.0757, 0.0149, 0.0124, 0.0109, 0.0085, 0.008, 0.0058], [0.262, 0.18, 0.0516, 0.0148, 0.0148, 0.0108, 0.0102, 0.0102], [0.323, 0.1346, 0.1265, 0.03, 0.0234, 0.0104, 0.0098, 0.0076], [0.3745, 0.1561, 0.0737, 0.0271, 0.0211, 0.0211, 0.0145, 0.0088], [0.7103, 0.0243, 0.0201, 0.0122, 0.0108, 0.0084, 0.0074, 0.0035], [0.8012, 0.0166, 0.0166, 0.0101, 0.0084, 0.0074, 0.0033, 0.0029], [0.7846, 0.0209, 0.0099, 0.0087, 0.0082, 0.0077, 0.006, 0.0034], [0.7368, 0.0153, 0.0105, 0.0105, 0.0093, 0.0093, 0.0053, 0.0053], [0.5019, 0.0679, 0.0235, 0.0152, 0.0142, 0.0142, 0.0142, 0.0134], [0.3143, 0.0959, 0.0375, 0.0292, 0.0275, 0.0258, 0.0201, 0.0189], [0.4803, 0.0447, 0.0271, 0.0211, 0.0145, 0.0145, 0.0128, 0.0106], [0.3684, 0.0932, 0.0322, 0.0284, 0.0143, 0.0134, 0.0134, 0.0126], [0.9205, 0.007, 0.0035, 0.0029, 0.0018, 0.0018, 0.0015, 0.0012], [0.9692, 0.004, 0.002, 0.001, 0.001, 0.0007, 0.0006, 0.0006], [0.9839, 0.0031, 0.0031, 0.0024, 0.001, 0.0008, 0.0006, 0.0005], [0.9791, 0.004, 0.0035, 0.0019, 0.0019, 0.0013, 0.0011, 0.0008], [0.9403, 0.0172, 0.0118, 0.0104, 0.003, 0.0018, 0.0016, 0.0014], [0.4987, 0.2669, 0.0765, 0.0526, 0.0319, 0.0091, 0.0081, 0.0071], [0.3047, 0.2373, 0.1631, 0.0412, 0.0321, 0.0266, 0.0118, 0.0118], [0.4687, 0.1343, 0.041, 0.0385, 0.0219, 0.0133, 0.0091, 0.0086], [0.494, 0.1604, 0.0521, 0.0406, 0.0279, 0.0103, 0.0103, 0.0103], [0.7961, 0.0577, 0.0114, 0.0094, 0.0094, 0.0088, 0.0042, 0.0035], [0.6381, 0.028, 0.0205, 0.0141, 0.0097, 0.0097, 0.008, 0.008], [0.55, 0.2598, 0.0451, 0.031, 0.0084, 0.0074, 0.0048, 0.0042], [0.4818, 0.2922, 0.0508, 0.0308, 0.0073, 0.0054, 0.005, 0.0047], [0.537, 0.1976, 0.0208, 0.0196, 0.0173, 0.0126, 0.0119, 0.0087], [0.5132, 0.3527, 0.0083, 0.0078, 0.005, 0.005, 0.005, 0.0035], [0.4205, 0.3711, 0.0324, 0.0099, 0.0093, 0.0087, 0.0087, 0.0053], [0.4031, 0.2445, 0.1309, 0.0899, 0.0375, 0.0079, 0.0057, 0.0042], [0.8686, 0.0555, 0.0337, 0.0204, 0.0116, 0.0011, 0.0007, 0.0005]], "ranks": {"Python": [31939, 212201, 202458, 176475, 39459, 67447, 47499, 88025, 43854, 89860, 21913, 36369, 51196, 49323, 23090, 55659, 43043, 39926, 74395, 94206, 45020, 83987, 32641, 44821, 40418, 102644, 113097, 69320, 84305, 86896, 58476, 50627, 41336, 94060, 139353, 121217, 129065, 121140, 122227, 109953, 99580, 93009, 95931, 99865, 93044, 74670, 100150, 123560, 176661, 199725, 162114, 92292, 127111, 89264, 105087, 106413, 103683, 118054, 115225, 96271, 75222, 5649, 7281]}}, {"pos": 468, "top": [[".", ",", " \u2013", "\u2013", ";", "\u00a0\u00a0", "\u00a0", ":"], [" \u2013", "\u2013", ".", "\u2013and", " \u200b\u200b", ",", " \u2013**", ".\u2013"], [".", ",", "\u2013", ".\u2013", "\u2013and", " \u2013", "\u2026..", "\u2026."], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " milfs", "-------------</", "----------</", " Shemale", " ;;^", " Blowjob", "\u0e21\u0e19\u0e38\u0e29"], ["\u52a0\u62ff\u5927\u7684", "\u65b0\u52a0\u5761", " \u041a\u0440\u0430\u0441\u0438", "\ub370\ubbf8", ".@", "reh", "\u52a0\u62ff\u5927", " tysi\u0119"], ["\u00a0\u00a0", "\u00a0", ":href", ",", "<|quad_end|>", "\u82b7", "\u2026.", " **\u2013"], [" **\u2018", "\u2019**", "\u4e2d", "\u7684", "**!", "**\u3002", " **\u300c", "\u5728"], [" **\u2018", "ocache", " **\u300c", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " **+", " **'", "**!", " **#"], ["\u00a0", " \n\n", "!.", "!\u201d.", "\u2019.", " \r\n\r\n", "!\".", "<|object_ref_start|>"], ["\u00a0", "\u2013and", "\u00a0\u00a0", ",", "\u00a0\u00a0\u00a0", "\u2013", "\u2026but", " uncomfort"], ["\u00a0", ",", "\u00a0\u00a0", "\u2013", "\u2013and", "\u00a0\u00a0\u00a0", "-but", "."], [" uncomfort", " oddly", " awkward", " gritty", " unsettling", " pricey", " scrambling", " wildly"], [" uncomfort", " awkward", " unsettling", " lingering", " wildly", " scrambling", " oddly", " tweaking"], [" tweaking", " scrambling", " awkward", " uncomfort", " gritty", " wildly", " tackling", " pricey"], [" tweaking", " tackling", " hugely", " effortlessly", " hefty", " frustrations", " frustrating", " wildly"], [" hefty", " wildly", " sprawling", " tweaking", " gritty", " bolster", " swiftly", " lingering"], ["\u00a0", " hefty", " myriad", " sprawling", " bolster", " wildly", " hugely", " swiftly"], ["\u00a0", " hefty", " sprawling", " hugely", " myriad", "<|endoftext|>", " wildly", " tweaking"], [" hugely", " hefty", " myriad", " seemingly", " burgeoning", " wildly", " uncomfort", " sprawling"], ["<|endoftext|>", " myriad", " hugely", " burgeoning", " seemingly", " wildly", " hefty", " uncomfort"], ["<|endoftext|>", " myriad", " burgeoning", " hugely", " seemingly", " swiftly", "\u00a0", " wildly"], [" crippling", " hugely", " uncomfort", " disastr", " wildly", " unsettling", " frustrating", " glaring"], [" hugely", " seemingly", " myriad", " wildly", " uncomfort", " disastr", " crippling", " burgeoning"], [" hugely", " seemingly", " myriad", "<|endoftext|>", " wildly", " disastr", " uncomfort", " ultimately"], [" \n\n", " \r\n\r\n", "\n\n", "  \n\n", "<|endoftext|>", "   \n\n", " hugely", " seemingly"], [" hugely", " frustrations", " uncomfort", " wildly", " seemingly", " crippling", " unsettling", " frustrating"], [" hugely", " uncomfort", " \n\n", " frustrations", " wildly", " lingering", " seemingly", " awkward"], [" \n\n", " seemingly", "\n\n", " hugely", " wildly", " much", " ultimately", " dramatically"], [" \n\n", " uncomfort", " hugely", " seemingly", " awkward", " wildly", " lingering", " unpredictable"], [" \n\n", " unpredictable", " dramatically", " wildly", " awkward", " uncomfort", " unexpectedly", " even"], [" even", " \n\n", " .", " dramatically", " ultimately", " much", " unpredictable", " wildly"], [" .", " even", " critical", " ultimately", " dramatically", " heavily", " unpredictable", " incredibly"], [" ultimately", " critical", " even", " unpredictable", " dramatically", " heavily", " awkward", " eventually"], [" awkward", " disastrous", " catastrophic", " critical", " unpredictable", " relentless", " glitches", " frantic"], [" awkward", " glitches", " failures", " critical", " catastrophic", " disastrous", " relentless", " crippling"], [" glitches", " awkward", " failures", " critical", " failure", " sluggish", " frustration", " poorly"], [" glitches", " awkward", " sluggish", " failures", " glitch", " poorly", " unreliable", " failure"], [" glitches", " awkward", " sluggish", " failures", " glitch", " failure", " stutter", " sloppy"], [" glitches", " awkward", " sluggish", " glitch", " failures", " complaints", " erratic", " unpredictable"], [" glitches", " sluggish", " glitch", " awkward", " failures", " unpredictable", " complaints", " erratic"], [" glitches", " sluggish", " glitch", " stutter", " jitter", " erratic", " complaints", " failures"], [" glitches", " sluggish", " erratic", " glitch", " complaints", " jitter", " responsiveness", " crashes"], [" sluggish", " glitches", " erratic", " jitter", " responsiveness", " glitch", " delays", " complaints"], [" sluggish", " glitches", " erratic", " delays", " glitch", " complaints", " responsiveness", " jitter"], [" sluggish", " glitches", " erratic", " delays", " complaints", " crashes", " instability", " glitch"], [" sluggish", " erratic", " glitches", " delays", " complaints", " instability", " responsiveness", " glitch"], [" sluggish", " glitches", " erratic", " delays", " instability", " responsiveness", " complaints", " crashes"], [" sluggish", " glitches", " erratic", " delays", " complaints", " responsiveness", " instability", " interruptions"], [" sluggish", " glitches", " erratic", " delays", " complaints", " instability", " crashes", " glitch"], [" sluggish", " erratic", " glitches", " instability", " delays", " interruptions", " backlash", " glitch"], [" sluggish", " glitches", " erratic", " delays", " instability", " syncing", "\u5361\u987f", " glitch"], [" sluggish", " glitches", " erratic", " responsiveness", " instability", " jitter", " timeouts", "\u5361\u987f"], [" sluggish", " glitches", "\u5361\u987f", " erratic", " stutter", " instability", " jitter", " responsiveness"], [" sluggish", "\u5361\u987f", " glitches", " stutter", " erratic", " jitter", " instability", " lag"], [" sluggish", " stutter", " glitches", "\u5361\u987f", " erratic", " instability", " jitter", " UI"], [" sluggish", " stutter", " erratic", "\u5361\u987f", " glitches", " jitter", " UI", " timeouts"], [" sluggish", " responsiveness", " stutter", "\u5361\u987f", " lag", " responsive", " erratic", " glitches"], [" stutter", " lag", " jitter", " sluggish", "\u5361\u987f", "lag", " responsiveness", " UI"], [" stutter", " lag", " jitter", " sluggish", "lag", " input", "\u5361\u987f", " inputs"], [" stutter", " lag", " input", " jitter", " inputs", " Input", "lag", " sluggish"], [" lag", " stutter", " jitter", " input", " latency", "lag", " perceived", " sluggish"], [" stutter", " jitter", " input", " perceived", " lag", " Input", " latency", " sluggish"], [" stutter", " input", " jitter", " perceived", " chop", " UI", " dropped", " Input"]], "p": [[0.8235, 0.1622, 0.0055, 0.0049, 0.0016, 0.0005, 0.0005, 0.0002], [0.0194, 0.0171, 0.0142, 0.0091, 0.0059, 0.0046, 0.002, 0.0017], [0.3925, 0.3463, 0.1854, 0.0143, 0.0119, 0.0068, 0.0049, 0.0034], [0.0172, 0.0119, 0.0105, 0.0077, 0.0077, 0.0041, 0.0028, 0.0022], [0.0051, 0.004, 0.0035, 0.0033, 0.0021, 0.0014, 0.0013, 0.0012], [0.0094, 0.0033, 0.0017, 0.0017, 0.0016, 0.0016, 0.0015, 0.0012], [0.0612, 0.0212, 0.0212, 0.0121, 0.0121, 0.0106, 0.0073, 0.0069], [0.0086, 0.0052, 0.0049, 0.0043, 0.0034, 0.0025, 0.0023, 0.0022], [0.2927, 0.0165, 0.0121, 0.0113, 0.0107, 0.0047, 0.0047, 0.0044], [0.1531, 0.0081, 0.0072, 0.0063, 0.0059, 0.0026, 0.0023, 0.0015], [0.8675, 0.0071, 0.0048, 0.0028, 0.0024, 0.0024, 0.0013, 0.0012], [0.0245, 0.009, 0.0066, 0.0055, 0.0051, 0.0051, 0.0051, 0.0045], [0.0183, 0.0076, 0.0059, 0.0049, 0.0049, 0.0046, 0.0046, 0.0036], [0.0067, 0.0059, 0.0052, 0.0049, 0.0043, 0.0041, 0.0032, 0.0032], [0.0046, 0.0043, 0.0041, 0.0038, 0.0038, 0.0038, 0.0034, 0.0034], [0.0108, 0.0108, 0.0101, 0.0065, 0.0065, 0.0058, 0.0054, 0.0051], [0.0899, 0.0101, 0.0095, 0.0095, 0.0095, 0.0084, 0.0079, 0.0074], [0.0201, 0.0189, 0.0101, 0.0084, 0.0079, 0.0074, 0.0061, 0.0058], [0.016, 0.015, 0.0141, 0.011, 0.0097, 0.0091, 0.0075, 0.0075], [0.0666, 0.0158, 0.0149, 0.0131, 0.0109, 0.0096, 0.0085, 0.0066], [0.9445, 0.0008, 0.0006, 0.0006, 0.0005, 0.0004, 0.0003, 0.0003], [0.0108, 0.0079, 0.0079, 0.0079, 0.0074, 0.0051, 0.0051, 0.0048], [0.0148, 0.0131, 0.0115, 0.0102, 0.0096, 0.0084, 0.0079, 0.0066], [0.0124, 0.0116, 0.0109, 0.0097, 0.0075, 0.0071, 0.0066, 0.0059], [0.2184, 0.038, 0.0191, 0.014, 0.0102, 0.0102, 0.0096, 0.008], [0.0313, 0.013, 0.0102, 0.0084, 0.0079, 0.0074, 0.007, 0.0066], [0.0147, 0.0114, 0.0101, 0.0078, 0.0078, 0.0074, 0.0074, 0.0065], [0.0358, 0.0132, 0.0116, 0.0091, 0.0062, 0.0059, 0.0055, 0.0046], [0.0144, 0.0077, 0.0077, 0.0068, 0.0068, 0.006, 0.006, 0.0056], [0.0173, 0.0093, 0.0087, 0.0082, 0.0064, 0.0064, 0.0064, 0.0064], [0.0143, 0.0126, 0.0092, 0.0087, 0.0081, 0.0072, 0.0067, 0.0067], [0.0162, 0.0153, 0.0143, 0.0119, 0.0105, 0.0082, 0.0072, 0.0072], [0.0162, 0.0134, 0.0098, 0.0076, 0.0067, 0.0063, 0.0059, 0.0056], [0.0168, 0.0148, 0.0148, 0.0131, 0.0131, 0.0123, 0.0108, 0.0095], [0.0325, 0.0174, 0.0163, 0.0144, 0.0112, 0.0105, 0.0099, 0.0082], [0.0439, 0.0387, 0.0342, 0.025, 0.0161, 0.0152, 0.0118, 0.0111], [0.0961, 0.0548, 0.0483, 0.0275, 0.0215, 0.0157, 0.013, 0.0115], [0.081, 0.0715, 0.0434, 0.028, 0.0247, 0.017, 0.0124, 0.0117], [0.1864, 0.0644, 0.0502, 0.0416, 0.0304, 0.0185, 0.0185, 0.0153], [0.1747, 0.0775, 0.039, 0.0236, 0.0209, 0.0196, 0.0196, 0.0173], [0.2441, 0.1083, 0.0792, 0.0274, 0.0227, 0.0213, 0.02, 0.0177], [0.2871, 0.0932, 0.0499, 0.0469, 0.0389, 0.0267, 0.0221, 0.0195], [0.2951, 0.179, 0.1086, 0.0311, 0.0275, 0.0275, 0.0242, 0.0201], [0.3292, 0.1762, 0.0572, 0.027, 0.0254, 0.0224, 0.0198, 0.0154], [0.2162, 0.1486, 0.1021, 0.0482, 0.0332, 0.0177, 0.0177, 0.0167], [0.2927, 0.1382, 0.122, 0.035, 0.0187, 0.0187, 0.0129, 0.0129], [0.3473, 0.2106, 0.1278, 0.0323, 0.0126, 0.0119, 0.0112, 0.0105], [0.3418, 0.2349, 0.0864, 0.0408, 0.0233, 0.0181, 0.0133, 0.0125], [0.5201, 0.1315, 0.1024, 0.0276, 0.0157, 0.0101, 0.0084, 0.0074], [0.5578, 0.1245, 0.0969, 0.0149, 0.0131, 0.0058, 0.0055, 0.0048], [0.345, 0.1846, 0.1269, 0.0161, 0.0134, 0.0081, 0.0076, 0.0076], [0.5628, 0.1827, 0.0523, 0.016, 0.016, 0.0132, 0.0117, 0.0103], [0.6961, 0.121, 0.0647, 0.0306, 0.0306, 0.0077, 0.0053, 0.0053], [0.7199, 0.0759, 0.0591, 0.0591, 0.0217, 0.0103, 0.0091, 0.0055], [0.6088, 0.0934, 0.0824, 0.0566, 0.0343, 0.0143, 0.0143, 0.0077], [0.7504, 0.0698, 0.0616, 0.0257, 0.02, 0.0083, 0.0047, 0.0039], [0.4429, 0.3909, 0.0872, 0.0152, 0.0118, 0.0081, 0.0081, 0.0072], [0.8028, 0.0747, 0.04, 0.04, 0.0089, 0.0089, 0.0048, 0.0033], [0.5019, 0.2092, 0.1629, 0.0283, 0.0195, 0.0104, 0.0072, 0.0056], [0.45, 0.2409, 0.1004, 0.0782, 0.0198, 0.0174, 0.0136, 0.0106], [0.384, 0.384, 0.0857, 0.0405, 0.0116, 0.0116, 0.0109, 0.0075], [0.6404, 0.1835, 0.0765, 0.0182, 0.0104, 0.0043, 0.0041, 0.0041], [0.665, 0.1905, 0.0794, 0.0156, 0.0035, 0.0029, 0.0024, 0.0024]], "ranks": {"Python": [128353, 232764, 196496, 217795, 109680, 174399, 39029, 121718, 72910, 78179, 22688, 129279, 130351, 133220, 128593, 167263, 159386, 132858, 179766, 198827, 115961, 201444, 170910, 182145, 126429, 160800, 137536, 122010, 152900, 119298, 98335, 99771, 114238, 121356, 143434, 112870, 135609, 91967, 86536, 109652, 73682, 88496, 99240, 112802, 81535, 94859, 109170, 122635, 145596, 206854, 162443, 162697, 208854, 168012, 136457, 127375, 124152, 153190, 125117, 113372, 124160, 99506, 62902]}}, {"pos": 469, "top": [[".", ",", "\u2013", " \u2013", ";", "\u00a0", "?", " [\u2026]"], ["\u2013", " \u2013", ",", ".", "\u2013and", "ting", ".\u2013", "tu"], ["\u2013", ",", ".", ".\u2013", "ting", "\u2013and", " \u2013", "\u2026.."], [" Blowjob", " milfs", " Shemale", " cumshot", "luca", "/Input", "inyin", "\ufffd\ufffd"], ["ting", "/Input", "ed", "server", "ted", "(Input", "st", "log"], ["server", "(Input", "/Input", "log", "\u932f", "\u6cd7", "-debug", ".Input"], ["ting", "ted", "ku", "a", "ed", "ss", "tu", "st"], ["ting", "ted", "ten", "/Input", "tp", "ss", "sel", "server"], ["ting", ",", ".", "ten", "ted", "d", "\u00a0", "ary"], [",", "ting", "\u2013", "ted", "d", "-", "ten", "-d"], ["ting", "ted", "a", "d", "lo", "less", "ing", ","], ["ting", "nal", "/output", "lessly", "ively", "\u062f\u064a\u0629", "nel", " **"], ["ting", "nal", " defense", "/Input", " inputs", "less", " control", "ary"], ["ting", " defense", " control", "nal", "less", "-control", "-heavy", "side"], ["ting", "d", " control", "via", " assistance", "side", " defense", "-heavy"], ["ting", "-heavy", "-esque", "via", " input", " messaging", " impact", " via"], ["ting", "e", "via", "d", "-heavy", "a", "cap", "o"], ["ting", "-heavy", "-access", "-target", "-response", "side", "lessly", "pair"], ["ting", "lessly", "-feedback", "-response", "-heavy", "/Input", "ted", "/output"], ["ting", "lessly", "d", "-heavy", "ted", "cap", "-feedback", "switch"], ["<|endoftext|>", "d", "ting", "e", "n", "w", "a", "m"], ["ting", "lessly", "-feedback", "/Input", "-response", "sWith", "/output", "stream"], ["lessly", "ting", "-feedback", "-response", " gesture", "ted", "fully", "stream"], ["ting", "lessly", "-feedback", " gesture", "fully", " joystick", " {{--<", "ahead"], [" joystick", "-feedback", "lessly", "ting", " {{--<", " \r\n\r\n", " T\u00e9cn", "/Input"], [" joystick", "-feedback", " touchscreen", " maneu", " cues", "lessly", " gesture", " throttle"], [" joystick", "-feedback", " cues", " gesture", " throttle", " touchscreen", " keypad", " feedback"], [" joystick", " motion", " feedback", " responses", " {{--<", " gesture", "-feedback", " motions"], [" joystick", " cues", " feedback", " maneuvers", " gesture", "-feedback", " melee", " throttle"], [" joystick", " cues", " feedback", " maneuvers", " gesture", " games", " motion", " responses"], [" feedback", " joystick", " games", " cues", " maneuvers", " gesture", " responses", " game"], [" games", " feedback", " game", " maneuvers", " joystick", " gesture", " responses", " response"], [" feedback", " joystick", " games", " responses", " game", " maneuvers", " response", " cues"], [" joystick", "-feedback", " glitches", " feedback", " glitch", " cues", " distractions", " activations"], [" joystick", " glitches", "-feedback", " glitch", " feedback", " cues", " distractions", " responsiveness"], [" joystick", " responsiveness", " glitches", " glitch", " delay", " delays", " feedback", "-feedback"], [" joystick", " delay", " delays", " glitches", " responsiveness", " glitch", " latency", "delay"], [" delay", " delays", " joystick", " glitches", " glitch", " responsiveness", " sluggish", " latency"], [" delays", " delay", " responsiveness", " glitches", " joystick", " sluggish", "\u5ef6\u8fdf", " latency"], [" responsiveness", " delays", " delay", " joystick", "\u5ef6\u8fdf", " sluggish", "delay", "\u54cd\u5e94"], [" delay", " responsiveness", " delays", "\u5ef6\u8fdf", "\u54cd\u5e94", " sluggish", "delay", " joystick"], [" responsiveness", " delays", " delay", "\u54cd\u5e94", " joystick", " responses", "-response", " latency"], [" responsiveness", " delays", " delay", "\u5ef6\u8fdf", " joystick", " latency", " responses", "-delay"], [" responsiveness", " delays", " delay", " latency", "\u5ef6\u8fdf", " delayed", " sluggish", " joystick"], [" delays", " delay", " responsiveness", "\u5ef6\u8fdf", " latency", " delayed", "delay", "Delay"], [" delays", " delay", " responsiveness", " delayed", "\u5ef6\u8fdf", " latency", "delay", "-delay"], [" delays", " delay", " responsiveness", "\u5ef6\u8fdf", " latency", " delayed", "delay", "-delay"], [" delays", " delay", " responsiveness", "\u5ef6\u8fdf", " latency", " delayed", "delay", "Delay"], [" delays", " delay", " responsiveness", "\u5ef6\u8fdf", " latency", "-delay", " delayed", " timeouts"], [" delays", " responsiveness", " delay", "\u5ef6\u8fdf", " timeouts", "-delay", " sluggish", " latency"], [" delays", "\u5ef6\u8fdf", " delay", " timeouts", " responsiveness", " glitches", "Delayed", "delay"], [" delays", " responsiveness", "\u5ef6\u8fdf", "\u6ede\u540e", " sluggish", " delay", " glitches", " timeouts"], [" delays", "\u5ef6\u8fdf", "\u6ede\u540e", " sluggish", " delay", " lag", " responsiveness", " latency"], [" delays", "\u5ef6\u8fdf", "\u6ede\u540e", " delay", " lag", " latency", "delay", "Delay"], [" delays", " lag", " latency", "\u6ede\u540e", "\u5ef6\u8fdf", " delay", " sluggish", " glitches"], [" lag", " delays", "\u6ede\u540e", " latency", "\u5ef6\u8fdf", " sluggish", " delay", "lag"], [" lag", " responsiveness", "\u6ede\u540e", " latency", "lag", " delays", " sluggish", "\u5ef6\u8fdf"], [" lag", " latency", "lag", "\u6ede\u540e", "\u5ef6\u8fdf", " Lag", " delays", " delay"], [" lag", "lag", " latency", "\u6ede\u540e", " Lag", "\u5ef6\u8fdf", " delays", " delay"], [" lag", " latency", "lag", " Lag", "\u6ede\u540e", "LAG", "_latency", " stutter"], [" lag", " latency", "lag", " Lag", "\u6ede\u540e", " stutter", "_latency", "LAG"], [" lag", " latency", " Lag", "lag", "\u6ede\u540e", " stutter", " lat", "-lat"], [" latency", " lag", " stutter", " jitter", " lat", "lag", " Lag", "\u6ede\u540e"]], "p": [[0.5768, 0.2724, 0.0884, 0.0473, 0.0027, 0.001, 0.0009, 0.0008], [0.6257, 0.0353, 0.0214, 0.0177, 0.0157, 0.0108, 0.0061, 0.0019], [0.5874, 0.1485, 0.1485, 0.0242, 0.0074, 0.0065, 0.0042, 0.0031], [0.0062, 0.0026, 0.0024, 0.0021, 0.0015, 0.0014, 0.0012, 0.0011], [0.0988, 0.0134, 0.0067, 0.0067, 0.0063, 0.0049, 0.0041, 0.0041], [0.0056, 0.0047, 0.0025, 0.0023, 0.0023, 0.0021, 0.0017, 0.0016], [0.2446, 0.0425, 0.0122, 0.0122, 0.0101, 0.0095, 0.0079, 0.0069], [0.4858, 0.0227, 0.0107, 0.0065, 0.0035, 0.0031, 0.0029, 0.0021], [0.2298, 0.0658, 0.0425, 0.0166, 0.0114, 0.0069, 0.0054, 0.004], [0.1155, 0.0452, 0.0375, 0.0069, 0.0054, 0.0035, 0.0033, 0.0029], [0.1572, 0.0213, 0.0166, 0.0137, 0.0057, 0.0042, 0.0042, 0.0042], [0.0447, 0.0106, 0.0088, 0.0061, 0.0037, 0.0037, 0.0032, 0.003], [0.025, 0.0067, 0.003, 0.0026, 0.0025, 0.0025, 0.0025, 0.0023], [0.0407, 0.0075, 0.0046, 0.0038, 0.0036, 0.0033, 0.0028, 0.0024], [0.0163, 0.0099, 0.005, 0.0041, 0.0039, 0.0039, 0.0036, 0.003], [0.0061, 0.0022, 0.0022, 0.002, 0.002, 0.002, 0.0019, 0.0019], [0.018, 0.0062, 0.0052, 0.0046, 0.0043, 0.0036, 0.0031, 0.0031], [0.0235, 0.0067, 0.0043, 0.0036, 0.0034, 0.0032, 0.0026, 0.0023], [0.0218, 0.0063, 0.0043, 0.0043, 0.0043, 0.0033, 0.0026, 0.0024], [0.0239, 0.0044, 0.0037, 0.0037, 0.0032, 0.0024, 0.0024, 0.0021], [0.1792, 0.0157, 0.0045, 0.0035, 0.0033, 0.0029, 0.0029, 0.0027], [0.0092, 0.0059, 0.0049, 0.0032, 0.0019, 0.0015, 0.0013, 0.0013], [0.0087, 0.0087, 0.0036, 0.0013, 0.0013, 0.0012, 0.0012, 0.0011], [0.0027, 0.002, 0.0019, 0.001, 0.0009, 0.0008, 0.0008, 0.0007], [0.0061, 0.0044, 0.0022, 0.0013, 0.0011, 0.0011, 0.0011, 0.0011], [0.051, 0.0061, 0.0025, 0.0024, 0.0022, 0.0022, 0.0022, 0.0021], [0.0639, 0.0059, 0.0049, 0.0041, 0.0038, 0.0034, 0.003, 0.0028], [0.0126, 0.0034, 0.0026, 0.0025, 0.0023, 0.0022, 0.0021, 0.0021], [0.0928, 0.0086, 0.0081, 0.0063, 0.0056, 0.0052, 0.0043, 0.0043], [0.0546, 0.0147, 0.013, 0.013, 0.0107, 0.0074, 0.0058, 0.0058], [0.0243, 0.0201, 0.013, 0.013, 0.0108, 0.0101, 0.0095, 0.0084], [0.0199, 0.0155, 0.0129, 0.01, 0.01, 0.0078, 0.0078, 0.0078], [0.0132, 0.0124, 0.0117, 0.0071, 0.0071, 0.0066, 0.0049, 0.0043], [0.0435, 0.0181, 0.017, 0.0125, 0.0081, 0.0059, 0.0046, 0.0043], [0.0394, 0.0164, 0.0136, 0.0128, 0.0113, 0.006, 0.0053, 0.0044], [0.0319, 0.0219, 0.0219, 0.016, 0.0151, 0.0117, 0.0091, 0.0081], [0.0675, 0.0634, 0.0494, 0.0494, 0.0339, 0.0281, 0.0219, 0.0151], [0.1046, 0.0814, 0.0634, 0.0634, 0.03, 0.0264, 0.0233, 0.0219], [0.2324, 0.2051, 0.091, 0.0404, 0.0295, 0.0245, 0.0216, 0.0179], [0.2111, 0.1644, 0.1451, 0.0777, 0.0534, 0.0502, 0.0252, 0.0237], [0.2585, 0.2281, 0.2013, 0.0449, 0.024, 0.024, 0.024, 0.0176], [0.7165, 0.0519, 0.0357, 0.0315, 0.0278, 0.0216, 0.008, 0.0075], [0.6111, 0.1203, 0.0937, 0.0185, 0.0163, 0.0144, 0.0112, 0.0087], [0.4839, 0.178, 0.1571, 0.0273, 0.0241, 0.0114, 0.0089, 0.0089], [0.3933, 0.3063, 0.1447, 0.0323, 0.0323, 0.0173, 0.0092, 0.0082], [0.5282, 0.2495, 0.1178, 0.0205, 0.0159, 0.0141, 0.0059, 0.0046], [0.6006, 0.1721, 0.134, 0.0181, 0.0141, 0.011, 0.0059, 0.0052], [0.7241, 0.1258, 0.0674, 0.0248, 0.0103, 0.0091, 0.0063, 0.0063], [0.6988, 0.1214, 0.0835, 0.0239, 0.0145, 0.0078, 0.006, 0.006], [0.645, 0.0873, 0.0873, 0.0364, 0.0195, 0.0152, 0.0152, 0.0134], [0.5542, 0.075, 0.0584, 0.0401, 0.0401, 0.0354, 0.019, 0.019], [0.4173, 0.1355, 0.1055, 0.064, 0.0498, 0.0388, 0.0302, 0.0267], [0.536, 0.1536, 0.1055, 0.0343, 0.0302, 0.0267, 0.0236, 0.0208], [0.6877, 0.1195, 0.0725, 0.0388, 0.0388, 0.0162, 0.0053, 0.0036], [0.3599, 0.1926, 0.15, 0.1324, 0.0709, 0.043, 0.0085, 0.0085], [0.4611, 0.1922, 0.1321, 0.1029, 0.0295, 0.023, 0.0139, 0.0096], [0.7427, 0.1463, 0.037, 0.037, 0.0136, 0.0083, 0.0057, 0.0018], [0.9776, 0.0139, 0.0051, 0.0031, 0.0001, 0.0001, 0.0, 0.0], [0.9922, 0.0041, 0.0025, 0.0012, 0.0001, 0.0, 0.0, 0.0], [0.9885, 0.0086, 0.0025, 0.0003, 0.0002, 0.0, 0.0, 0.0], [0.9691, 0.0293, 0.0011, 0.0004, 0.0001, 0.0, 0.0, 0.0], [0.9037, 0.0952, 0.0005, 0.0004, 0.0001, 0.0, 0.0, 0.0], [0.666, 0.3146, 0.0157, 0.0011, 0.0003, 0.0002, 0.0002, 0.0001]], "ranks": {"Python": [3233, 73860, 3957, 90869, 5219, 81226, 2355, 3256, 2052, 3013, 1912, 4585, 5925, 6601, 7216, 24543, 19207, 9748, 9459, 40176, 3968, 39016, 18307, 35935, 15345, 45099, 28788, 12602, 10359, 6935, 6616, 10429, 20288, 29974, 35374, 31370, 21264, 36573, 43981, 22882, 13493, 25985, 45946, 37466, 32766, 47514, 52504, 18143, 46344, 60499, 32697, 25596, 34703, 19590, 45994, 72282, 56586, 64431, 94967, 104498, 127314, 85697, 72540]}}, {"pos": 470, "top": [[".", "\"", ",", "-", "ation", " \u200b\u200b", "\u2026..", "ness"], [" St\u00e9ph", " Hidal", "gregate", " kecel", " helsing", " \u041a\u0440\u0430\u0441\u0438", " \u0412\u0435\u0434\u0443", "ness"], [" \u200b\u200b", "ness", "ging", "\u200b\u200b", "ged", "\u2026\u2026\u3002", "\u00adi", "sson"], [" **\u300c", " **\u25a0", " pornstar", " St\u00e9ph", " milfs", " **>>", " cumshot", " Blowjob"], ["ation", "ness", "ged", "ging", "\uff20", " [@", " @", "ed"], ["ation", "ged", "ging", " \u200b\u200b", "ed", "ness", " **\u201c", "rag"], ["ation", "ged", "ging", " **\u201c", "ness", " **\"", " ________", " **\u300c"], ["ation", "ging", "ness", "ged", "uate", "ting", "ulation", "ung"], ["ation", " [...]", " \u200b\u200b", "ness", "ging", "ged", ".", "ting"], ["ation", "ness", "ged", "ging", "ting", "ed", ",", "\u00ading"], ["ation", "ness", "ged", " [...]", "ging", "&nbsp", " \u200b\u200b", "ting"], ["ation", "ness", "ging", "uate", "ged", "ulation", " **\u300c", " **\""], ["ation", "ness", "ging", " \u200b\u200b", "uate", "ged", " **\u300c", "ulation"], ["ation", "ness", "ging", "ged", "uate", "ting", " \u200b\u200b", "ron"], ["ation", "ness", "ging", "ged", "ting", "ron", "-esque", "uate"], ["ation", "-esque", "ness", "ging", "ged", " incentiv", " akin", " impactful"], ["ation", "ging", " \u200b\u200b", "-esque", "ness", "ged", " akin", "\u663e\u7740"], [" \u200b\u200b", "ging", "ation", "-esque", "ness", "ged", "\u663e\u7740", "ting"], ["-esque", "ging", " \u200b\u200b", "ged", " arguably", " unintended", " akin", " exacerbated"], [" arguably", " seemingly", "ging", " akin", "ged", " despite", " albeit", " even"], ["<|endoftext|>", " though", " swiftly", " seemingly", " despite", " arguably", " even", " heavily"], [" unintended", "ging", "ged", " arguably", " even", " despite", "ation", "ting"], [" even", " arguably", " .**", " seemingly", " despite", " unintended", "ation", " heavily"], [" even", " seemingly", " despite", " arguably", " ,", " over", " heavily", " though"], [" \n\n", " though", " seemingly", " arguably", " despite", " amidst", " .**", " even"], [" .**", " **", " **.", " !**", " **.**", " **\u2014", " unintended", " **["], [" .**", " **", " !**", " **.", " unintended", " despite", " glitch", " jitter"], [" ,", " despite", " due", " .**", " **", " even", " heavily", " over"], [" .**", " **", " **.", " despite", " .", " due", " !**", " even"], [" .**", " **", " **.", " .", " ________", ".**", " !**", " despite"], [" .", " .**", " even", " despite", " ,", " **", " due", " during"], [" .", " .**", " even", " ,", " during", " despite", " **", " due"], [" .", " even", " heavily", " despite", " .**", " due", " over", " during"], [" .", " .**", ".**", " heavily", "\u2011", " even", " \n\n", " despite"], [" .**", " .", ".**", " .\"", ".</", "**.", " heavily", ".\u201d"], [" .", " .**", ".**", " .\"", " .*", " heavily", " despite", "**."], [".**", " .**", " .", " .\"", ".\"", " despite", "**.", ".</"], [".**", " .", " .**", " .\"", " even", " despite", " critical", " notoriously"], [" .**", ".**", " .", " despite", " even", " .\"", " critical", " notoriously"], [".**", " .**", " .", " .\"", " even", " despite", " notoriously", " critical"], [".**", " .", " .**", " .\"", ".\"", ".\u201d", " even", "."], [" .", ".**", " .**", " .\"", " critical", " even", " jitter", ".\u201d"], [" .", ".**", " .**", " critical", " even", " jitter", " crucial", " .\""], [" .", " even", " critical", " despite", " .**", " heavily", " crucial", ".**"], [" .", " .**", " critical", " even", " despite", ".**", " .\"", " impossible"], [" .", " even", " critical", " .**", " despite", " impossible", " worse", " unpredictable"], [".**", " even", ".", " .", " \n\n", ".\\", "  \n\n", ".\""], [".", ".**", ".\\", ".\"", ".</", " .", " even", ".\u201c"], [".", ".**", " \n\n", " .", " even", ".\\", "**.", " despite"], [".", ".**", ".\"", " \n\n", ".\\", ".</", "**.", "\n\n"], [".", ".**", "**.", ".</", "().", ".\u201c", ".\"", ".)."], [".**", ".", "**.", ".\\", ".\"", ".</", ".\u201c", "++."], [".**", ".", "**.", ".\u201c", ".\"", ".\\", " **.", ".</"], [".**", ".", "**.", ".\\", ".</", ".\u201c", " **.", "++."], [".**", ".", "**.", "++.", ".\\", ".</", " regardless", " **."], [".**", ".", "**.", "++.", ".\\", ".</", " **.", " regardless"], [".", ".**", " regardless", "\n\n", "**.", "++.", " simultaneously", " Regardless"], [".", "\n\n", ".**", " regardless", "**.", "++.", " violating", " Regardless"], [".", "\n\n", " regardless", ".**", "**.", " simultaneously", " violating", "++."], [".", "\n\n", " regardless", ".**", " simultaneously", " violating", "**.", " Async"], [".", "\n\n", " regardless", " simultaneously", ".**", ".\"", " .", " even"], [".", "\n\n", " regardless", ",", " simultaneously", ".**", " .", ".\""], [".", ",", " regardless", ".\"", ".**", " simultaneously", " that", "\n\n"]], "p": [[0.4256, 0.2278, 0.0787, 0.0146, 0.0121, 0.0088, 0.0061, 0.0057], [0.0328, 0.0187, 0.0137, 0.0113, 0.0094, 0.0073, 0.0064, 0.0061], [0.2295, 0.0452, 0.0375, 0.0156, 0.0122, 0.0114, 0.0089, 0.0079], [0.027, 0.021, 0.0185, 0.0174, 0.0164, 0.0154, 0.0136, 0.0127], [0.1095, 0.0853, 0.0664, 0.0517, 0.0486, 0.019, 0.0179, 0.0168], [0.1118, 0.0927, 0.0769, 0.0678, 0.0363, 0.0363, 0.0266, 0.0098], [0.2066, 0.1039, 0.076, 0.0714, 0.0522, 0.0382, 0.0359, 0.0192], [0.3764, 0.1569, 0.1385, 0.0741, 0.0256, 0.0129, 0.0078, 0.0073], [0.2513, 0.1839, 0.1264, 0.0766, 0.0676, 0.03, 0.0206, 0.0118], [0.4518, 0.1662, 0.054, 0.0395, 0.012, 0.0083, 0.0069, 0.0053], [0.5881, 0.0702, 0.0353, 0.0258, 0.0243, 0.0079, 0.007, 0.0058], [0.6386, 0.0632, 0.0219, 0.0205, 0.0133, 0.0059, 0.0059, 0.0038], [0.3236, 0.1528, 0.0496, 0.025, 0.0183, 0.0171, 0.0059, 0.0049], [0.2191, 0.0913, 0.0554, 0.0296, 0.0132, 0.0102, 0.0085, 0.0045], [0.2299, 0.0425, 0.0425, 0.0292, 0.0069, 0.0065, 0.0048, 0.0037], [0.0497, 0.0283, 0.0207, 0.0183, 0.0126, 0.0081, 0.0067, 0.0049], [0.0479, 0.0422, 0.0309, 0.0241, 0.0212, 0.0129, 0.0083, 0.0054], [0.1167, 0.0356, 0.0191, 0.0116, 0.0102, 0.0096, 0.0058, 0.0035], [0.014, 0.0116, 0.0116, 0.0058, 0.0048, 0.0046, 0.0043, 0.0038], [0.014, 0.0116, 0.0103, 0.008, 0.0075, 0.0075, 0.0071, 0.0071], [0.2071, 0.0141, 0.0103, 0.0085, 0.008, 0.0063, 0.0055, 0.0043], [0.0076, 0.0076, 0.0059, 0.0055, 0.0052, 0.004, 0.0034, 0.003], [0.0112, 0.0112, 0.0112, 0.0099, 0.0087, 0.0072, 0.006, 0.0056], [0.0144, 0.0105, 0.0105, 0.0093, 0.0087, 0.0072, 0.0068, 0.0068], [0.0204, 0.0159, 0.014, 0.0124, 0.0124, 0.009, 0.0075, 0.007], [0.2207, 0.0632, 0.0338, 0.016, 0.0097, 0.0055, 0.0055, 0.0052], [0.115, 0.0309, 0.0146, 0.0137, 0.0078, 0.0069, 0.0061, 0.0051], [0.0294, 0.0229, 0.0229, 0.0215, 0.019, 0.019, 0.0178, 0.0108], [0.271, 0.0729, 0.0345, 0.0135, 0.0105, 0.0099, 0.0072, 0.0072], [0.5069, 0.1646, 0.0502, 0.0163, 0.0093, 0.0077, 0.0068, 0.005], [0.4527, 0.0891, 0.0308, 0.0225, 0.0199, 0.0176, 0.0176, 0.0176], [0.4917, 0.0587, 0.0179, 0.0158, 0.0148, 0.0139, 0.0123, 0.0116], [0.2397, 0.0502, 0.0237, 0.0223, 0.0197, 0.0174, 0.0127, 0.0119], [0.051, 0.0423, 0.0329, 0.0309, 0.02, 0.02, 0.0129, 0.0114], [0.3343, 0.1681, 0.1579, 0.0331, 0.0084, 0.0058, 0.0054, 0.0045], [0.2765, 0.2292, 0.1153, 0.0699, 0.0069, 0.0069, 0.0065, 0.0057], [0.3243, 0.1967, 0.1736, 0.068, 0.0111, 0.0081, 0.0072, 0.0067], [0.1575, 0.139, 0.1226, 0.048, 0.0227, 0.0177, 0.0129, 0.0114], [0.1415, 0.1173, 0.0858, 0.0521, 0.0459, 0.0358, 0.0159, 0.0149], [0.1738, 0.1534, 0.0681, 0.0364, 0.0364, 0.0208, 0.0152, 0.0126], [0.2668, 0.0814, 0.0814, 0.0384, 0.0219, 0.0193, 0.0193, 0.0151], [0.0982, 0.0866, 0.0675, 0.0384, 0.0233, 0.0193, 0.0151, 0.0151], [0.0915, 0.086, 0.0808, 0.067, 0.0217, 0.0124, 0.0124, 0.0124], [0.111, 0.0632, 0.0594, 0.0248, 0.0193, 0.0124, 0.0117, 0.0097], [0.2644, 0.0521, 0.0432, 0.0405, 0.0217, 0.0109, 0.0075, 0.0075], [0.1793, 0.1583, 0.0483, 0.0201, 0.0122, 0.0108, 0.0095, 0.0084], [0.249, 0.1333, 0.0522, 0.0382, 0.0337, 0.0317, 0.0232, 0.0159], [0.5554, 0.1803, 0.0517, 0.0355, 0.0215, 0.0158, 0.0148, 0.0115], [0.9562, 0.0198, 0.003, 0.003, 0.0021, 0.002, 0.0017, 0.0013], [0.9566, 0.0225, 0.003, 0.0027, 0.0021, 0.0014, 0.0014, 0.0009], [0.7423, 0.1877, 0.0326, 0.005, 0.0027, 0.0025, 0.0025, 0.0024], [0.6146, 0.2903, 0.0504, 0.0068, 0.0047, 0.0041, 0.0041, 0.0025], [0.5975, 0.3198, 0.049, 0.0046, 0.0028, 0.0028, 0.0026, 0.0026], [0.7476, 0.1668, 0.0328, 0.0069, 0.0035, 0.0035, 0.0031, 0.0025], [0.6899, 0.1359, 0.0566, 0.0092, 0.0087, 0.0082, 0.0056, 0.0049], [0.7611, 0.0802, 0.0487, 0.0123, 0.0109, 0.0055, 0.0043, 0.004], [0.2999, 0.2061, 0.1417, 0.1103, 0.0432, 0.018, 0.0091, 0.008], [0.6239, 0.0844, 0.0745, 0.0745, 0.0227, 0.0107, 0.0045, 0.0037], [0.741, 0.1288, 0.0369, 0.0174, 0.0064, 0.0057, 0.0034, 0.0032], [0.7908, 0.0944, 0.0419, 0.0064, 0.0027, 0.0018, 0.0016, 0.0016], [0.8977, 0.065, 0.0128, 0.0013, 0.0013, 0.001, 0.0008, 0.0007], [0.9873, 0.0075, 0.0007, 0.0005, 0.0003, 0.0002, 0.0001, 0.0001], [0.9999, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Python": [7880, 231772, 65610, 103469, 18854, 12770, 895, 2127, 1590, 2346, 2753, 7847, 11252, 5191, 4027, 16452, 12658, 9842, 17949, 40827, 28692, 45378, 26093, 28912, 13530, 15124, 15806, 10497, 13118, 10768, 10716, 12660, 12599, 12804, 24656, 30344, 42306, 38984, 41364, 40624, 26054, 39073, 37149, 23106, 14582, 17438, 46959, 88680, 131150, 144901, 118828, 50830, 168977, 152637, 128243, 79473, 41134, 30499, 21791, 28230, 21642, 3281, 3789]}}, {"pos": 471, "top": [[" \u2013", ".", ",", "\u2013", ";", "\u00a0\u00a0", "<|endoftext|>", "\u00a0"], [" \u2013", "\u2013", "\u2013and", ",", " \u200b\u200b", " \u2013,", ".", ";"], ["\u2013", ",", ".", " \u2013", "\u2026", "\u2013and", "\u2026..", "\u2026."], [" milfs", " Shemale", "-------------</", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "----------</", " Blowjob", " pornstar", " ;;^"], ["\u65b0\u52a0\u5761", "\uff20", "_intf", " Millennials", "\u2193\u2193", ":@", " cittadin", "\u52a0\u62ff\u5927\u7684"], [" \u200b\u200b", "<|quad_end|>", "!\u201d.", "fst", "!:", "\u6cd5\u62c9", ".", "arren"], ["  \n\n", "<|endoftext|>", " \n\n", "\n\n", "   \n\n", "  \n", "    \n\n", " \n"], [" \n\n", "   \n\n", "  \n\n", "    \n\n", "<|endoftext|>", "     \n\n", "    \n", " \r\n\r\n"], [" \n\n", "  \n\n", "   \n\n", "<|endoftext|>", "    \n\n", "\t\n\n", "     \n\n", " \r\n\r\n"], ["<|quad_end|>", "<|object_ref_start|>", "  \n  \n", "   \n\n", " \r\n\r\n", "  \n\n", "\u51ed\u501f\u7740", "\tHX"], ["<|endoftext|>", "\u00a0", " \n\n", "...", "  \n\n", " [\u2026]", " though", ".@"], [" **", " arguably", " uncomfort", " incredibly", " **#", "\u706b\u901f", "\u751a\u81f3\u4f1a", " **+"], [" arguably", " incredibly", " swiftly", " anyways", " uncomfort", " notoriously", " nonetheless", " famously"], [" swiftly", " arguably", " incredibly", "\u51ed\u501f\u7740", " effortlessly", " hefty", " famously", " anyways"], ["<|endoftext|>", " swiftly", "  \n\n", " arguably", " \n\n", " though", "\u5373\u4fbf", " incredibly"], [" arguably", " swiftly", "\u5373\u4fbf\u662f", "\u5373\u4fbf", " sprawling", "\u51ed\u501f\u7740", " hefty", " incredibly"], ["<|endoftext|>", " arguably", "\u00a0", " [\u2026]", " swiftly", " incredibly", " myriad", "Though"], ["<|endoftext|>", "  \n\n", "   \n\n", " arguably", "...**", " incredibly", " \n\n", "-esque"], [" arguably", " incredibly", " famously", " swiftly", "\u5373\u4fbf", "\u5373\u4fbf\u662f", " hugely", " sprawling"], ["<|endoftext|>", " arguably", "\u5373\u4fbf", " swiftly", " hugely", " incredibly", " famously", "\u5373\u4fbf\u662f"], ["<|endoftext|>", "\n\n", " \n\n", "  \n\n", "<|file_sep|>", "   \n\n", "\r\n\r\n", " swiftly"], [" arguably", " incredibly", " famously", " hugely", "\u5373\u4fbf", " notoriously", " swiftly", " sprawling"], ["<|endoftext|>", "\n\n", " arguably", "\r\n\r\n", "\u5373\u4fbf", " swiftly", " incredibly", " hugely"], ["<|endoftext|>", "\n\n", "\r\n\r\n", " arguably", " \n\n", " swiftly", " hugely", " ultimately"], ["\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", "\r\n\r\n", "...**", " \r\n\r\n", "   \n\n", "\u2026**"], ["\n\n", " \n\n", "\r\n\r\n", "  \n\n", "<|endoftext|>", " \r\n\r\n", "...**", "   \n\n"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", "<|endoftext|>", " \r\n\r\n", "   \n\n", " [...]"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", "<|endoftext|>", " \r\n\r\n", " [...]", "...**"], ["\n\n", "<|endoftext|>", " \n\n", "  \n\n", " [...]", "\r\n\r\n", "...", " ..."], ["<|endoftext|>", "\n\n", " \n\n", "  \n\n", "...", " [...]", " ...", " [\u2026]"], ["<|endoftext|>", "\n\n", " \n\n", "...", "  \n\n", " ...", " [...]", "\u2026"], ["<|endoftext|>", "\n\n", "  \n\n", " \n\n", "\u2026", " \u2026", " [\u2026]", "..."], ["<|endoftext|>", "  \n\n", " \n\n", "\u2026**", " \u2026", " [\u2026]", "\u2026", "...**"], ["<|endoftext|>", "  \n\n", " \n\n", "\u2026**", " \u2026", " [\u2026]", "\n\n", "   \n\n"], ["<|endoftext|>", "  \n\n", "\n\n", " \n\n", " [\u2026]", " \u2026", "\u2026\u2026", "\u2026**"], ["  \n\n", "<|endoftext|>", "\n\n", " \n\n", "\u2026**", " [\u2026]", "\u2026\u2026", " \u2026"], ["  \n\n", "<|endoftext|>", "\n\n", "\u2026**", " \n\n", "\u2026\u2026", " MUST", " **\u201c"], ["<|endoftext|>", "  \n\n", "\u2026**", "\n\n", " **\u201c", " \u2026", " MUST", " [\u2026]"], ["<|endoftext|>", " [\u2026]", "\u2026**", "  \n\n", "\u2026\u2026", " [...]", "!**", " **\u201c"], ["<|endoftext|>", "\u2026\u2026", "  \n\n", " [\u2026]", "\n\n", " [...]", "[\u2026]", "\u200b"], ["\n\n", "  \n\n", "<|endoftext|>", " \n\n", " [\u2026]", " leveraging", "\u2014even", "   \n\n"], ["\n\n", "  \n\n", "<|endoftext|>", " \n\n", " leveraging", "\u2014even", " redesign", " tech"], ["\n\n", "  \n\n", "<|endoftext|>", " \n\n", " leveraging", "<|im_end|>", "\u2014even", "   \n\n"], ["\n\n", "  \n\n", "<|endoftext|>", " MUST", " requires", " fundamentally", " leveraging", " **"], ["\n\n", "  \n\n", " \n\n", "<|endoftext|>", " MUST", " fundamentally", " **", " essentially"], ["\n\n", "  \n\n", " \n\n", "\r\n\r\n", "   \n\n", "    \n\n", "\t\n\n", " **"], ["\n\n", "  \n\n", " \n\n", "\r\n\r\n", "   \n\n", "    \n\n", "\t\n\n", " **"], ["  \n\n", "\n\n", " \n\n", " **", " **\"", "   \n\n", " **\u201c", "    \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", " **\u201c"], ["\n\n", "  \n\n", " \n\n", " **\"", " **", "   \n\n", "    \n\n", " **\u201c"], ["\n\n", " **\"", " **", "  \n\n", " **\u201c", " \n\n", " **+", " **#"], ["\n\n", " **", " **\"", " **\u201c", "  \n\n", " \n\n", " **+", "**"], ["\n\n", " **", " **\"", " attempting", " **\u201c", " trying", " *\u201c", "  \n\n"], [" **", " **\"", "\n\n", " **\u201c", " **#", " **+", " attempting", "**"], ["\n\n", " **", " **\"", " attempting", " **\u201c", " Trying", " \n\n", " trying"], ["\n\n", " **", " **\"", " attempting", " \n\n", " Trying", "  \n\n", " **\u201c"], ["\n\n", " **", " **\"", " Trying", " \n\n", " attempting", " **\u201c", "  \n\n"], ["\n\n", " **", " **\"", " attempting", " Trying", " Async", " Attempt", " trying"], ["\n\n", " **", " Async", " **\"", " Trying", " Attempt", " Plugins", " \n\n"], ["\n\n", " **", " **\"", " Pure", " Trying", " \n\n", " Mobile", " Async"], ["\n\n", " Async", " Pure", " Mobile", " The", " Trying", " This", " Attempt"]], "p": [[0.5058, 0.2707, 0.1129, 0.0879, 0.0056, 0.0021, 0.0016, 0.0016], [0.2226, 0.0467, 0.0072, 0.0034, 0.0028, 0.0025, 0.0025, 0.0012], [0.618, 0.1379, 0.1217, 0.0738, 0.0088, 0.0069, 0.0064, 0.005], [0.0088, 0.0047, 0.0044, 0.0037, 0.0032, 0.003, 0.0024, 0.0022], [0.002, 0.002, 0.0016, 0.0014, 0.0013, 0.0012, 0.0012, 0.001], [0.002, 0.0016, 0.0015, 0.0011, 0.0011, 0.0009, 0.0008, 0.0007], [0.4009, 0.2755, 0.2146, 0.0256, 0.0129, 0.0107, 0.0039, 0.0022], [0.2412, 0.2266, 0.1879, 0.0254, 0.0186, 0.0136, 0.0113, 0.0106], [0.7518, 0.1017, 0.0699, 0.02, 0.0147, 0.0065, 0.0045, 0.0029], [0.0017, 0.0016, 0.0013, 0.0011, 0.001, 0.001, 0.0009, 0.0007], [0.883, 0.0111, 0.0015, 0.0012, 0.001, 0.0009, 0.0007, 0.0006], [0.0149, 0.0031, 0.0028, 0.0023, 0.0021, 0.002, 0.002, 0.0017], [0.0055, 0.0031, 0.0031, 0.0026, 0.0022, 0.002, 0.002, 0.0014], [0.0049, 0.0041, 0.0038, 0.0019, 0.0016, 0.0016, 0.0013, 0.0012], [0.1444, 0.0267, 0.0208, 0.0143, 0.0098, 0.0068, 0.0049, 0.0034], [0.0118, 0.0098, 0.0063, 0.006, 0.0044, 0.0044, 0.0034, 0.0028], [0.2083, 0.0282, 0.0133, 0.0133, 0.0086, 0.0081, 0.0067, 0.0059], [0.0527, 0.034, 0.0151, 0.0133, 0.0097, 0.0092, 0.0063, 0.0052], [0.0674, 0.0361, 0.0141, 0.0103, 0.0097, 0.0091, 0.0091, 0.0071], [0.4544, 0.0226, 0.0155, 0.0078, 0.0073, 0.0061, 0.0057, 0.0054], [0.9994, 0.0002, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.0259, 0.0147, 0.0139, 0.0115, 0.0079, 0.0061, 0.0054, 0.0045], [0.232, 0.1096, 0.0203, 0.0168, 0.0096, 0.009, 0.0085, 0.0079], [0.8692, 0.063, 0.0022, 0.0015, 0.001, 0.001, 0.0008, 0.0008], [0.9075, 0.0352, 0.0242, 0.0188, 0.0048, 0.0031, 0.0015, 0.0006], [0.5472, 0.1221, 0.1078, 0.1078, 0.0449, 0.0256, 0.0065, 0.0061], [0.9737, 0.0108, 0.0074, 0.0058, 0.0007, 0.0005, 0.0003, 0.0001], [0.9884, 0.0059, 0.0028, 0.0015, 0.0012, 0.0001, 0.0, 0.0], [0.9478, 0.0223, 0.0153, 0.0072, 0.0044, 0.0007, 0.0003, 0.0003], [0.3712, 0.2252, 0.2252, 0.1064, 0.0144, 0.0112, 0.0099, 0.006], [0.8622, 0.0625, 0.0551, 0.0123, 0.0024, 0.0017, 0.0015, 0.0005], [0.9722, 0.0157, 0.0058, 0.0015, 0.0013, 0.001, 0.0007, 0.0005], [0.9234, 0.0521, 0.0091, 0.0071, 0.0026, 0.0023, 0.0014, 0.0003], [0.8094, 0.1241, 0.0277, 0.0168, 0.0055, 0.0042, 0.0019, 0.0013], [0.8891, 0.073, 0.0153, 0.0041, 0.0013, 0.0011, 0.001, 0.0009], [0.9134, 0.0455, 0.0101, 0.007, 0.0054, 0.0054, 0.0026, 0.0021], [0.4534, 0.1567, 0.1567, 0.0155, 0.0146, 0.0121, 0.0088, 0.0054], [0.2988, 0.2988, 0.071, 0.0278, 0.0158, 0.0123, 0.0109, 0.0096], [0.4228, 0.0886, 0.0347, 0.0288, 0.0224, 0.0164, 0.0164, 0.0128], [0.2854, 0.0768, 0.0562, 0.0562, 0.032, 0.032, 0.0249, 0.0249], [0.3949, 0.0881, 0.0778, 0.0778, 0.0569, 0.0269, 0.0185, 0.0163], [0.8155, 0.1104, 0.0279, 0.018, 0.0014, 0.0007, 0.0006, 0.0005], [0.7267, 0.1431, 0.0282, 0.0081, 0.0036, 0.0016, 0.0009, 0.0008], [0.9185, 0.0665, 0.0024, 0.0015, 0.0003, 0.0002, 0.0002, 0.0002], [0.7057, 0.0897, 0.0188, 0.0048, 0.0031, 0.0031, 0.0031, 0.0022], [0.7791, 0.197, 0.0012, 0.001, 0.0008, 0.0006, 0.0006, 0.0004], [0.9453, 0.0533, 0.0013, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9605, 0.0372, 0.0021, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.5627, 0.3867, 0.0317, 0.017, 0.0006, 0.0005, 0.0002, 0.0001], [0.8895, 0.0827, 0.0269, 0.0003, 0.0002, 0.0001, 0.0001, 0.0001], [0.9124, 0.0661, 0.0167, 0.0018, 0.0012, 0.0005, 0.0003, 0.0003], [0.9599, 0.0226, 0.0137, 0.0024, 0.0006, 0.0002, 0.0002, 0.0001], [0.4082, 0.2805, 0.2185, 0.038, 0.0261, 0.0075, 0.0058, 0.0015], [0.4591, 0.2784, 0.2169, 0.0202, 0.0095, 0.0024, 0.0021, 0.0021], [0.3515, 0.3102, 0.1881, 0.037, 0.0327, 0.0073, 0.0064, 0.0053], [0.5087, 0.2403, 0.1002, 0.0473, 0.0136, 0.012, 0.0106, 0.0053], [0.9763, 0.0084, 0.0066, 0.0016, 0.0011, 0.0007, 0.0005, 0.0004], [0.9894, 0.0036, 0.0022, 0.001, 0.0005, 0.0004, 0.0004, 0.0003], [0.9873, 0.0046, 0.004, 0.0007, 0.0006, 0.0005, 0.0004, 0.0002], [0.9614, 0.0137, 0.0073, 0.0027, 0.0022, 0.0015, 0.0013, 0.0013], [0.9804, 0.0051, 0.0024, 0.0023, 0.0018, 0.0007, 0.0006, 0.0006], [0.9784, 0.0123, 0.0021, 0.0008, 0.0007, 0.0006, 0.0005, 0.0005], [0.226, 0.1553, 0.1067, 0.0942, 0.0537, 0.0418, 0.0306, 0.0254]], "ranks": {"Python": [90452, 192907, 130385, 156672, 32627, 91783, 10558, 69679, 39144, 69672, 19417, 60522, 72398, 81080, 75620, 106208, 10564, 3429, 20977, 40551, 11497, 82248, 29541, 15384, 3187, 2368, 2978, 6854, 3355, 3859, 10879, 11756, 5489, 5335, 3253, 1896, 1971, 2544, 4778, 5098, 7675, 15580, 26516, 33328, 23731, 21293, 20065, 49509, 63112, 77141, 82111, 8071, 92264, 41368, 21597, 2314, 193, 154, 156, 570, 472, 110, 62]}}, {"pos": 472, "top": [[".", "\u00a0\u00a0", " \u200b\u200b", "  \n\n", "  ", "  \n", "?", "   \n"], ["  \n\n", " **:", " **'", "\uff1a**", " (**", "\uff1f**", " **:**", " \u062f\u0645\u0634"], ["\u3002", "\u2026**", "\u2026..", "\u2026\"", "**\u3002", "**?", "\uff1f", "**!"], ["\uff1f**", " **\u25cb", " Blowjob", " **\u25a0", "\uff1a**", " **\u3010", " **\u201c", " cumshot"], [" **\u201c", "  \n\n", "\uff1a**", "\uff1f**", "**\u3002", "<|im_end|>", " \n\n\n\n", " *</"], [" **\u201c", "\uff1f**", "\uff1a**", "\u3002", "**\u3002", " **\u3010", "\u662f", " **:"], ["  \n\n", " **\u3010", " **\u201c", "\uff1f**", " \n\n", "<|im_end|>", "**\u3002", "\uff1a**"], ["  \n\n", "   \n\n", " \n\n", " **\u3010", "     \n\n", " **\u201c", "\uff1f**", "       \n\n"], ["  \n\n", " \n\n", "   \n\n", "    \n\n", "     \n\n", "\n\n", "      \n\n", "       \n\n"], [" **#", "  \n\n", "   \n\n", " **\u3010", " **\u201c", "  \r\n\r\n", " **+", " \r\n\r\n"], ["  \n\n", " \n\n", "<|im_end|>", "   \n\n", "\r\n\r\n", "\n\n", "\n\n\n\n", "  \r\n\r\n"], [" **#", " **\u3010", " **", " **\u201c", " **+", " **'", " **:", " *__"], [" **#", " **\u3010", " **", " **+", " **\u201c", " **'", " **:", "...**"], [" **#", " **+", " **'", " **\u3010", " **\u201c", " **", "\uff1f**", "...**"], ["\r\n\r\n", "  \n\n", " \n\n", "\n\n", " \r\n\r\n", "  \r\n\r\n", "\t\n\n", "   \n\n"], [" foundational", " mithilfe", "\u62e5\u6709\u7740", " leveraging", " impactful", " incentiv", " transitioning", " LGBTQ"], ["  \n\n", " \n\n", "   \n\n", "\r\n\r\n", "<|endoftext|>", "  \r\n\r\n", " \r\n\r\n", "\n\n"], ["  \n\n", " \n\n", "   \n\n", "\r\n\r\n", "  \r\n\r\n", "<|endoftext|>", " \r\n\r\n", "\t\n\n"], [" **", " **#", " **'", "\r\n\r\n", "  \n\n", " **\u201c", " **\u3010", "...**"], ["<|endoftext|>", "  \n\n", " \n\n", "\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", "<|im_end|>"], [" **", " **#", "\r\n\r\n", " **\u201c", " **'", "  \n\n", " **+", " \n\n"], ["<|endoftext|>", "\n\n", "  \n\n", "\r\n\r\n", " \n\n", " \r\n\r\n", "<|im_end|>", " **"], ["<|endoftext|>", "\n\n", "  \n\n", " \n\n", "\r\n\r\n", "<|im_end|>", " \r\n\r\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"], ["<|endoftext|>", "\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", " \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"], ["<|endoftext|>", "  \n\n", " \n\n", "\n\n", "\r\n\r\n", " \r\n\r\n", "   \n\n", "  \r\n\r\n"], ["<|endoftext|>", "  \n\n", " \n\n", "\n\n", " @", "   \n\n", "\r\n\r\n", "  \r\n\r\n"], ["<|endoftext|>", "  \n\n", " \n\n", "\n\n", " @", " \u2018", " [", "\r\n\r\n"], ["<|endoftext|>", "  \n\n", " \n\n", " @", " **", " \u2014", "  \r\n\r\n", "\n\n"], ["<|endoftext|>", "  \n\n", " \n\n", "  \r\n\r\n", " \r\n\r\n", "   \n\n", "\r\n\r\n", "\u2026**"], ["  \n\n", "<|endoftext|>", "  \r\n\r\n", " \n\n", " **\u201c", " \r\n\r\n", "   \n\n", "\u2026**"], ["  \n\n", "<|endoftext|>", "  \r\n\r\n", " \n\n", " **\u201c", "   \n\n", "\u2026**", "**\u2014"], ["  \n\n", "<|endoftext|>", "  \r\n\r\n", " **\u201c", "   \n\n", " \n\n", "**\u2014", "<|im_end|>"], ["  \n\n", " **\u201c", "<|endoftext|>", " **", "**\u2014", "\u2026**", "  \r\n\r\n", "<|im_end|>"], ["<|endoftext|>", "  \n\n", " **\u201c", "**\u2014", "\u2026**", "?**", "!**", " **"], ["<|endoftext|>", "  \n\n", " **\u201c", "**\u2014", "\u2026**", "!**", "?**", " **"], ["<|endoftext|>", "  \n\n", "**\u2014", "\u2026**", " **\u201c", "?**", "!**", " **\u2014"], ["<|endoftext|>", "**\u2014", "  \n\n", " **\u201c", " **\u2014", "\u2014but", "\u2026**", " \u2014"], ["**\u2014", " **\u2014", " **\u201c", "  \n\n", "\u2026**", "!**", "?**", "\u2019**"], [" **\u2014", "**\u2014", "  \n\n", " **\u201c", "\uff1a**", " **", "\u2026**", "\u2019**"], ["\u2026**", "  \n\n", "**\u2014", " **\u201c", " **\u2014", " **", "<|endoftext|>", "\u2019**"], ["  \n\n", " **\u201c", " **", "\u2026**", "**\u2014", " **\u2014", "\u2019**", " **\u2018"], ["  \n\n", " **\u201c", "**", "**\u2014", ":**", "\u2026**", "\uff1a**", " **"], [" **\u201c", "**\u2014", "  \n\n", ":**", "**", " **\u2014", "\uff1a**", "\u2019**"], [" **\u201c", " **", "!**", " **\u2014", "\u2019**", "**", " **\"", "**\u2014"], [" **\u201c", "  \n\n", " **\"", " **\u2014", " **", " **+", " **\u2013", "!**"], ["  \n\n", " **\u201c", " **\"", "\u2019**", " **", "**", ";**", "!**"], [" **", "**", " **\u201c", " **\"", ";**", "\u2019**", "-**", "  \n\n"], [" **", "**", " **\"", " **\u201c", "-**", ";**", "\u2019**", ">**"], [" **", "**", " **\"", " **\u201c", "\u2019**", "-**", ";**", "?**"], [" **", "**", "\u2019**", "-**", " **\"", " **\u201c", ";**", ">**"], ["**", " **", "-**", "\u2019**", " **\"", " **\u201c", ";**", ">**"], ["**", " **", "\u2019**", " **\"", " **\u201c", "-**", ";**", "**\u201d"], ["**", " **", "\u2019**", " **\"", " **\u201c", "-**", ";**", "**\u201d"], ["**", " **", " **\"", "\u2019**", " **\u201c", "-**", ";**", "**\u201d"], ["**", " **", " **\"", "\u2019**", " **\u201c", "-**", ";**", "\"**"], ["**", " **", " **\"", " **\u201c", "-**", "\u2019**", "**\u201d", "\"**"], ["**", " **", " **\"", "***", "-**", "**,", " **\u201c", "\"**"], ["**", " **", "***", "\"**", "*", "**(", "**,", "\""]], "p": [[0.4151, 0.1626, 0.0768, 0.0598, 0.0411, 0.0161, 0.0125, 0.0111], [0.0252, 0.0173, 0.0163, 0.0105, 0.0077, 0.0072, 0.0072, 0.0053], [0.3087, 0.2404, 0.027, 0.0253, 0.0238, 0.0164, 0.0154, 0.012], [0.0377, 0.0294, 0.0259, 0.0202, 0.0178, 0.0167, 0.0157, 0.013], [0.4158, 0.0928, 0.0723, 0.0466, 0.0235, 0.022, 0.0183, 0.0161], [0.6528, 0.0607, 0.0325, 0.0253, 0.0174, 0.0154, 0.0112, 0.0112], [0.2377, 0.1272, 0.1195, 0.064, 0.0565, 0.0498, 0.0302, 0.0284], [0.379, 0.1394, 0.1231, 0.0958, 0.0275, 0.0214, 0.0201, 0.0189], [0.5092, 0.3966, 0.0608, 0.0064, 0.0057, 0.0039, 0.003, 0.0027], [0.2087, 0.0768, 0.0466, 0.0466, 0.0363, 0.0363, 0.0249, 0.0142], [0.4675, 0.2836, 0.1043, 0.0248, 0.015, 0.0133, 0.0091, 0.0086], [0.2349, 0.1615, 0.1181, 0.1043, 0.092, 0.0717, 0.0181, 0.0091], [0.2261, 0.1996, 0.0886, 0.0734, 0.0474, 0.0474, 0.0254, 0.0224], [0.0541, 0.0508, 0.0372, 0.029, 0.024, 0.0212, 0.0107, 0.01], [0.1545, 0.113, 0.0367, 0.0173, 0.0163, 0.0153, 0.0105, 0.0082], [0.015, 0.011, 0.0103, 0.0091, 0.0086, 0.0086, 0.0055, 0.0052], [0.5288, 0.1108, 0.0492, 0.0263, 0.0181, 0.011, 0.0091, 0.0071], [0.7823, 0.047, 0.0441, 0.0184, 0.0098, 0.0087, 0.0072, 0.0068], [0.1544, 0.0997, 0.0997, 0.0827, 0.0605, 0.0367, 0.0237, 0.0222], [0.2835, 0.2663, 0.0594, 0.0524, 0.0339, 0.0205, 0.017, 0.0125], [0.8496, 0.0895, 0.0291, 0.0226, 0.0021, 0.0014, 0.0008, 0.0005], [0.1965, 0.0872, 0.0599, 0.0412, 0.0387, 0.0266, 0.022, 0.0172], [0.7176, 0.0711, 0.0627, 0.0405, 0.0357, 0.0058, 0.0058, 0.0035], [0.9465, 0.0252, 0.0105, 0.0093, 0.003, 0.0007, 0.0007, 0.0003], [0.5094, 0.1874, 0.1874, 0.0608, 0.0254, 0.0082, 0.0082, 0.0044], [0.5531, 0.1585, 0.0848, 0.0749, 0.0483, 0.0228, 0.0108, 0.0074], [0.3082, 0.272, 0.2118, 0.1285, 0.0417, 0.0099, 0.0032, 0.003], [0.3548, 0.2438, 0.2152, 0.1676, 0.0107, 0.0027, 0.0013, 0.0007], [0.7097, 0.1584, 0.0583, 0.0454, 0.013, 0.0048, 0.0026, 0.002], [0.6916, 0.2245, 0.0643, 0.0127, 0.0018, 0.0011, 0.0008, 0.0007], [0.9402, 0.0322, 0.0221, 0.0015, 0.0003, 0.0003, 0.0002, 0.0002], [0.9513, 0.0254, 0.0154, 0.0009, 0.0005, 0.0003, 0.0002, 0.0002], [0.8814, 0.0929, 0.0142, 0.0008, 0.0007, 0.0007, 0.0005, 0.0005], [0.7751, 0.196, 0.0207, 0.0019, 0.0017, 0.0009, 0.0007, 0.0005], [0.849, 0.0543, 0.0241, 0.0146, 0.0121, 0.0089, 0.0073, 0.0031], [0.6132, 0.3282, 0.0112, 0.0082, 0.0064, 0.0053, 0.0036, 0.0028], [0.8633, 0.0709, 0.0116, 0.0102, 0.0075, 0.0075, 0.0035, 0.0031], [0.5994, 0.118, 0.118, 0.0263, 0.0263, 0.016, 0.0097, 0.0091], [0.4791, 0.2263, 0.0943, 0.0347, 0.0254, 0.0145, 0.0145, 0.0128], [0.4886, 0.2308, 0.0849, 0.0333, 0.0293, 0.0139, 0.013, 0.0084], [0.6167, 0.2002, 0.0348, 0.0307, 0.0186, 0.012, 0.0106, 0.0044], [0.4244, 0.1467, 0.1142, 0.0611, 0.0476, 0.0136, 0.012, 0.01], [0.3411, 0.1611, 0.1108, 0.0918, 0.0383, 0.0247, 0.0117, 0.0103], [0.2105, 0.2105, 0.1447, 0.1277, 0.0366, 0.0251, 0.0196, 0.0173], [0.2471, 0.2181, 0.1167, 0.0802, 0.0708, 0.0314, 0.0216, 0.0191], [0.2053, 0.1812, 0.1599, 0.1099, 0.0667, 0.0458, 0.0404, 0.0315], [0.6766, 0.0808, 0.049, 0.0433, 0.0204, 0.018, 0.018, 0.018], [0.2912, 0.2268, 0.1766, 0.0506, 0.0394, 0.0307, 0.0271, 0.0239], [0.4353, 0.1413, 0.0971, 0.0589, 0.052, 0.0459, 0.0315, 0.0278], [0.291, 0.1765, 0.107, 0.0945, 0.0736, 0.0307, 0.0307, 0.0271], [0.4992, 0.3431, 0.0362, 0.0249, 0.0249, 0.0104, 0.0091, 0.0055], [0.4327, 0.1405, 0.124, 0.0852, 0.0752, 0.0313, 0.0244, 0.0115], [0.485, 0.2291, 0.0843, 0.0579, 0.0398, 0.031, 0.0213, 0.0101], [0.484, 0.2936, 0.0578, 0.045, 0.0397, 0.0351, 0.0166, 0.0033], [0.4462, 0.3475, 0.047, 0.0366, 0.0323, 0.0323, 0.0252, 0.0072], [0.4489, 0.4489, 0.0253, 0.0224, 0.0197, 0.0136, 0.0057, 0.005], [0.6211, 0.2589, 0.0397, 0.0241, 0.0188, 0.0129, 0.0069, 0.0022], [0.5818, 0.3114, 0.0372, 0.0256, 0.0199, 0.0065, 0.0031, 0.0024], [0.5376, 0.3695, 0.0268, 0.0268, 0.0208, 0.0053, 0.0025, 0.0017], [0.742, 0.2409, 0.0057, 0.0027, 0.0027, 0.0024, 0.0008, 0.0004], [0.6173, 0.3744, 0.0053, 0.002, 0.0002, 0.0001, 0.0001, 0.0001], [0.8508, 0.1478, 0.0009, 0.0001, 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": {"Python": [28351, 191751, 124375, 158299, 56988, 52472, 12038, 46353, 26139, 37188, 7264, 88450, 65569, 101754, 62349, 83648, 18919, 18126, 108254, 121230, 53336, 137048, 106448, 73698, 27065, 74573, 91321, 34309, 18759, 15305, 12094, 13413, 13029, 27727, 27326, 19259, 4354, 4690, 8852, 6813, 6765, 25261, 28888, 28796, 22694, 23807, 30051, 27240, 28932, 58222, 88088, 84268, 163336, 163683, 142486, 145865, 107958, 77222, 80865, 28868, 19550, 1846, 620]}}, {"pos": 473, "top": [["**", "**.", ".", "**\u2013", "-**", "\u2026**", "**?", "?**"], ["'**", " **", "-**", "\uff1f**", "(**", "\u2019**", "**", "\u2026**"], ["\u2026**", "**", "\uff1f**", "'**", "\u2019**", "-**", "(**", "**\u2013"], ["\uff1f**", "\u300d**", "'**", "\u2019**", " **\u300c", " **", "\uff1a**", " **\u00ab"], ["**", "...**", " **", "-**", "\uff1f**", "'**", ">**", "\u2019**"], ["-**", " **", "\uff1f**", "**", "(**", "\u2019**", ">**", "\uff01**"], ["**", " **", "\uff1f**", "...**", "-**", "\u2019**", "'**", "\uff09**"], ["**", "-**", "...**", "\uff1f**", " **", "'**", "(**", "\u2019**"], ["**", "...**", "\uff1f**", " **", "(**", "'**", "\u2019**", "-**"], ["...**", "**", "-**", "'**", " **", "\u2026**", "\u2019**", "\uff1f**"], ["**", "...**", " **", "-**", "'**", "!**", "\u2026**", "(**"], [" **", "...**", "**", "'**", "-**", " **#", "\uff1f**", " **'"], ["...**", " **", "**", "'**", "-**", "\u2026**", " **\u00ab", " **'"], ["...**", "**", " **", "-**", "'**", "\u2026**", " **\u00ab", "(**"], ["...**", "**", " **", "\u2026**", "'**", "-**", "!**", "(**"], ["...**", "**", "'**", "-**", "\uff1f**", ">**", " **", "?**"], ["...**", "**", "\u2026**", " **", "?**", ">**", "'**", "!**"], ["...**", "**", "\u2026**", "'**", "-**", ">**", " **", "!**"], ["...**", "**", "'**", "\u2026**", " **", ">**", "-**", "\u2019**"], ["...**", "**", "\u2026**", "**:", "  \n\n", "\u2019**", "**,", " **"], ["...**", "<|endoftext|>", "**", "  \n\n", " \n\n", "\n\n", "\u2026**", "**:"], ["...**", "**", " **", "\u2026**", "'**", "\u2019**", " **#", ">**"], ["...**", "**", " **", "\u2026**", "\u2019**", "'**", " **'", "  \n\n"], ["\n\n", "  \n\n", " \n\n", "...**", "<|endoftext|>", "**", " **", "\u2026**"], ["  \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", "\u2026**", "**", " **", "\r\n\r\n"], ["\n\n", " \n\n", "  \n\n", "...**", "\u2026**", "\r\n\r\n", "\t\n\n", "**"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", "...**", " \r\n\r\n", "\t\n\n", "\u2026**"], ["\n\n", "  \n\n", " \n\n", "...**", "\r\n\r\n", "\u2026**", "\t\n\n", " \r\n\r\n"], ["  \n\n", "\n\n", " \n\n", "...**", "<|endoftext|>", "\u2026**", "\r\n\r\n", "   \n\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|>", "\r\n\r\n", "...", "...**", "   \n\n"], ["\n\n", "  \n\n", " \n\n", "<|endoftext|>", "\r\n\r\n", "   \n\n", "...**", "\t\n\n"], ["  \n\n", "\n\n", " \n\n", "<|endoftext|>", "\r\n\r\n", "   \n\n", "\t\n\n", "...**"], ["  \n\n", " \n\n", "\n\n", "<|endoftext|>", "\u2026**", "...**", "\r\n\r\n", "   \n\n"], ["  \n\n", "\n\n", " \n\n", "<|endoftext|>", "   \n\n", "\t\n\n", "    \n\n", "\r\n\r\n"], ["  \n\n", "\n\n", " \n\n", "<|endoftext|>", "   \n\n", "\t\n\n", "\r\n\r\n", "    \n\n"], ["  \n\n", " \n\n", "\n\n", "<|endoftext|>", "   \n\n", "    \n\n", "\r\n\r\n", "**:"], ["  \n\n", "\n\n", " \n\n", "<|endoftext|>", "\u2026**", "**:", "...**", "   \n\n"], ["  \n\n", " \n\n", "\n\n", "<|endoftext|>", "\u2026**", " Strategy", " strategy", "\u89e3\u51b3\u65b9\u6848"], ["  \n\n", " \n\n", "\n\n", "<|endoftext|>", " Strategy", " strategy", " strategies", "\u89e3\u51b3\u65b9\u6848"], ["  \n\n", "\n\n", " \n\n", " strategy", " strategies", " Strategy", "<|endoftext|>", " remed"], [" strategy", " strategies", "  \n\n", " Strategy", " solutions", " remed", "\n\n", " \n\n"], ["  \n\n", "\n\n", " \n\n", " strategy", " strategies", " Strategy", "\u89e3\u51b3\u65b9\u6848", " solutions"], ["  \n\n", "\n\n", " strategy", " strategies", " Strategy", "...**", " \n\n", " solutions"], ["  \n\n", " strategy", " Strategy", "\n\n", " strategies", " \n\n", " Solution", " solutions"], ["  \n\n", " \n\n", "\n\n", " Strategy", ":**", "**:", ":\\", " strategies"], ["  \n\n", " Strategy", " \n\n", ":\\", " Solution", ":**", " Solutions", " Specific"], [" Strategy", " Solution", " Solutions", " Specific", " Strategies", " Immediate", ":**", " specifics"], [" Strategy", " Solution", " Immediate", " Solutions", "\u89e3\u51b3\u65b9\u6848", " Strategies", "\u5982\u4f55\u5e94\u5bf9", " specifics"], [" Strategy", "?**", " Immediate", " Solution", ":**", "\u2026**", "\u5982\u4f55\u5e94\u5bf9", "\uff1f**"], [":**", "\u5e94\u5bf9\u63aa\u65bd", " Immediate", " Strategy", "\u89e3\u51b3\u65b9\u6848", "\u5177\u4f53\u63aa\u65bd", "\u5982\u4f55\u5e94\u5bf9", "\uff1a**"], ["\u89e3\u51b3\u65b9\u6848", " Strategy", "\u5e94\u5bf9\u63aa\u65bd", "\u5982\u4f55\u5e94\u5bf9", "\u5177\u4f53\u63aa\u65bd", "\u8865\u6551", "\u600e\u4e48\u529e", "\u5982\u4f55\u89e3\u51b3"], ["\u89e3\u51b3\u65b9\u6848", " Immediate", "\u8865\u6551", " Strategy", " Solution", "\u5982\u4f55\u89e3\u51b3", "\u5e94\u5bf9\u63aa\u65bd", " why"], ["\u89e3\u51b3\u65b9\u6848", " Solution", "\u8865\u6551", "\u5982\u4f55\u89e3\u51b3", " how", "how", " Solutions", " why"], [" Exactly", " exactly", " Exact", " what", "what", "Exactly", " Immediate", "\u8865\u6551"], [" Exactly", " what", " Exact", "what", " What", " Immediate", " exactly", "Exactly"], [" Exactly", " exactly", " Exact", "Exactly", " what", "what", "Exact", " What"], [" Exactly", " exactly", " Exact", "Exactly", " what", " What", "Exact", "what"], [" Exactly", " exactly", " Exact", " exact", "Exactly", "Exact", " what", "exact"], [" Exactly", " What", " Exact", " what", " exactly", " exact", "What", "Exactly"], [" Exactly", " What", " what", " Exact", " exactly", "What", "Exactly", " How"], ["What", " What", "The", " Exactly", "Exactly", "How", "Why", "Top"]], "p": [[0.4215, 0.2256, 0.0646, 0.0368, 0.0305, 0.0223, 0.0223, 0.0144], [0.1761, 0.1554, 0.1554, 0.1211, 0.0943, 0.0648, 0.0505, 0.0238], [0.4016, 0.215, 0.1477, 0.048, 0.0257, 0.0227, 0.0227, 0.0156], [0.5414, 0.0571, 0.0571, 0.0444, 0.0392, 0.0305, 0.027, 0.0197], [0.3427, 0.1428, 0.1428, 0.0982, 0.0866, 0.0595, 0.0319, 0.0248], [0.3342, 0.2603, 0.1579, 0.0845, 0.0452, 0.0189, 0.0147, 0.0089], [0.6732, 0.1032, 0.071, 0.0261, 0.023, 0.0203, 0.0179, 0.014], [0.5969, 0.1037, 0.0713, 0.0629, 0.0555, 0.0262, 0.0159, 0.0109], [0.6365, 0.2342, 0.0218, 0.0132, 0.0132, 0.0117, 0.0103, 0.0091], [0.4141, 0.3654, 0.0635, 0.034, 0.03, 0.0161, 0.0125, 0.0097], [0.5965, 0.3618, 0.0204, 0.0035, 0.0024, 0.0022, 0.0022, 0.0017], [0.4937, 0.3393, 0.0668, 0.0279, 0.0217, 0.0102, 0.009, 0.009], [0.6929, 0.1752, 0.0938, 0.0087, 0.0087, 0.0041, 0.0032, 0.0025], [0.7786, 0.0639, 0.0498, 0.0266, 0.0235, 0.0183, 0.0067, 0.0046], [0.7001, 0.1379, 0.0738, 0.0271, 0.0211, 0.0078, 0.0061, 0.0053], [0.5295, 0.1517, 0.0812, 0.0558, 0.0264, 0.0264, 0.0233, 0.0181], [0.8754, 0.0923, 0.011, 0.0036, 0.0028, 0.0025, 0.0022, 0.0018], [0.6761, 0.2195, 0.0159, 0.014, 0.014, 0.0124, 0.008, 0.0052], [0.787, 0.1368, 0.0127, 0.0127, 0.0099, 0.006, 0.006, 0.0053], [0.5218, 0.3587, 0.0378, 0.0079, 0.0079, 0.0062, 0.0054, 0.0051], [0.3916, 0.185, 0.1271, 0.1122, 0.0874, 0.0267, 0.0235, 0.0046], [0.7454, 0.0693, 0.0612, 0.0289, 0.0155, 0.012, 0.0106, 0.0083], [0.4721, 0.1737, 0.0724, 0.0412, 0.0221, 0.0195, 0.0126, 0.0118], [0.2313, 0.1802, 0.1318, 0.1093, 0.0485, 0.0294, 0.0123, 0.0123], [0.5188, 0.2451, 0.2163, 0.0058, 0.0023, 0.0019, 0.0018, 0.0014], [0.4653, 0.1712, 0.1712, 0.0916, 0.0279, 0.0103, 0.0097, 0.0055], [0.5887, 0.1488, 0.1488, 0.0703, 0.013, 0.0074, 0.0026, 0.0024], [0.8296, 0.0991, 0.0681, 0.001, 0.0006, 0.0003, 0.0003, 0.0001], [0.7467, 0.147, 0.1011, 0.0024, 0.0009, 0.0007, 0.0003, 0.0002], [0.4948, 0.2648, 0.2337, 0.002, 0.0011, 0.0011, 0.0005, 0.0004], [0.3863, 0.3008, 0.3008, 0.0038, 0.0015, 0.0013, 0.0007, 0.0006], [0.7299, 0.1437, 0.1119, 0.0134, 0.0004, 0.0001, 0.0001, 0.0001], [0.8625, 0.0909, 0.0379, 0.0085, 0.0001, 0.0, 0.0, 0.0], [0.4679, 0.2838, 0.221, 0.0264, 0.0002, 0.0002, 0.0001, 0.0001], [0.7548, 0.1312, 0.0547, 0.0547, 0.0008, 0.0006, 0.0005, 0.0004], [0.479, 0.2564, 0.2564, 0.0077, 0.0001, 0.0001, 0.0, 0.0], [0.6276, 0.2309, 0.14, 0.0006, 0.0003, 0.0002, 0.0001, 0.0001], [0.7084, 0.1791, 0.1086, 0.0012, 0.0005, 0.0002, 0.0002, 0.0002], [0.6372, 0.2069, 0.1255, 0.0192, 0.0028, 0.0009, 0.0008, 0.0005], [0.787, 0.0732, 0.0346, 0.0185, 0.0087, 0.0072, 0.0072, 0.0044], [0.7527, 0.07, 0.0425, 0.0375, 0.0114, 0.0095, 0.0061, 0.0057], [0.4027, 0.2768, 0.1679, 0.0292, 0.0227, 0.0156, 0.0129, 0.0065], [0.1566, 0.1382, 0.122, 0.0541, 0.0478, 0.0328, 0.0308, 0.024], [0.4651, 0.1939, 0.0555, 0.0337, 0.0337, 0.0262, 0.0159, 0.015], [0.3077, 0.1132, 0.0999, 0.0535, 0.0416, 0.0269, 0.0269, 0.0253], [0.3195, 0.1037, 0.1037, 0.0808, 0.0713, 0.049, 0.0262, 0.0192], [0.7124, 0.0751, 0.0455, 0.0276, 0.019, 0.0168, 0.0139, 0.0102], [0.3652, 0.1343, 0.0923, 0.0596, 0.041, 0.0282, 0.0249, 0.016], [0.1906, 0.123, 0.0794, 0.0399, 0.0292, 0.0275, 0.0258, 0.0189], [0.1825, 0.104, 0.081, 0.0557, 0.0218, 0.0181, 0.0181, 0.017], [0.1282, 0.0827, 0.0391, 0.0345, 0.0324, 0.0304, 0.0269, 0.0197], [0.1952, 0.0493, 0.0384, 0.0384, 0.0361, 0.0299, 0.0299, 0.0264], [0.0968, 0.0855, 0.0855, 0.0487, 0.0487, 0.043, 0.0404, 0.0404], [0.1276, 0.0727, 0.0469, 0.0414, 0.0389, 0.0323, 0.0323, 0.0323], [0.3747, 0.0947, 0.0507, 0.0395, 0.0349, 0.0225, 0.0225, 0.0211], [0.6729, 0.1169, 0.0487, 0.038, 0.023, 0.0203, 0.0109, 0.0075], [0.6425, 0.0767, 0.0527, 0.0527, 0.032, 0.0249, 0.0249, 0.0151], [0.7647, 0.1035, 0.0628, 0.0262, 0.014, 0.0058, 0.004, 0.0035], [0.7932, 0.0651, 0.0575, 0.0308, 0.0211, 0.0165, 0.0042, 0.0042], [0.5688, 0.2687, 0.112, 0.0283, 0.0118, 0.0049, 0.0014, 0.0011], [0.5509, 0.2602, 0.0658, 0.0452, 0.0311, 0.0074, 0.0065, 0.0061], [0.4393, 0.3877, 0.0318, 0.0248, 0.0219, 0.0205, 0.0117, 0.0071], [0.6383, 0.1257, 0.0632, 0.0434, 0.028, 0.028, 0.0181, 0.0075]], "ranks": {"Python": [6266, 159424, 30257, 71770, 17623, 25942, 4111, 19692, 11199, 4843, 2847, 10142, 5540, 8128, 13933, 42374, 26857, 21313, 72434, 71777, 17435, 100152, 70583, 56477, 16771, 56719, 49349, 48545, 11624, 12280, 28573, 17366, 17587, 16493, 19433, 3790, 4533, 8800, 8520, 6547, 5491, 16289, 13912, 13509, 14144, 8956, 13174, 9956, 26776, 43481, 86847, 50909, 87976, 63038, 56136, 22811, 16217, 17268, 16437, 2455, 2708, 189, 45]}}, {"pos": 474, "top": [["\u00a0", ".", ",", "?", "\u00a0\u00a0", " \u2013", "<|endoftext|>", "\u2013"], [",", "?", "?,", "??", "\u00a0", ".", "?.", "\ufffd"], [",", ".", "?", "\u2026", "\u2026.", "\u2013", "?,", "\uff1f"], ["\uff3f\uff3f", " \u300e", " Shemale", "\uc3df", "\uff0a\uff0a\uff0a\uff0a", "\uad49\uc7a5", "uggy", "\ufffd\ufffd"], [" \"@", "\ufffd\ufffd", "\uff1f", "\uff20", "InView", "@@@@", "?!", "=@"], ["\uff1f", " \u300d", "\uff01", " **\u300c", "\ufffd\ufffd", " **\u201e", " **:", " \uff1a"], ["\uff1f", " \u300d", " **\u300c", "\uff01", " \u300e", "\u300e", "\u3000\u3000", " \u300c"], [" **\u300c", " **\u201e", "\uff1f", " **\u3010", " \u300e", "\uff1f\u300d", "\uff01\uff1f", "\u300e"], [" **\u300c", "\uff1f", "!?", "\uff01\uff1f", " **\u201e", "?!", "\uff1f\u300d", "?\u201d."], ["?!", "!?", "soever", "\u00a0", "?\\", "?=", " \u00a0 \u00a0 \u00a0 \u00a0", "UGHT"], ["?!", "?...", "?", "\u00a0", "...", "???", "!?", "\uff1f"], [" **\u300c", " ''", "soever", "UGHT", "\uad49\uc7a5", "?!", "\uff3f\uff3f", "\uff1f\u300d"], ["?!", " **\u300c", " ''", "soever", "\uff1f\u300d", "!?", "\uff01\uff1f", "ness"], ["?!", "\uff1f\u300d", "!?", "\uff01\uff1f", " ''", "stuff", "soever", "???"], ["?!", " ''", "!?", "stuff", " goodies", "soever", "really", "\u300e"], ["?!", " goodies", " really", " guys", "!?", "stuff", " Really", "???"], ["?!", "...", "?...", "???", "?", "??", "!?", "?="], ["?!", "...", "?...", "?", "??", "???", "\uff1f", "!?"], ["?!", "?...", "...", "...</", "\n\n", "??", "???", "...("], ["\n\n", "...", "<|endoftext|>", "?...", " \n\n", "...(", "...\\", " ..."], ["\n\n", "<|endoftext|>", " \n\n", "...", "?...", "...\\", "\n\n\n", " ..."], ["\u4ec0\u4e48", "\n\n", " g\u00ec", "\u662f\u4ec0\u4e48", "\u505a\u4ec0\u4e48", "?=", "?...", " ???"], ["\n\n", "\u4ec0\u4e48", " \n\n", "\u662f\u4ec0\u4e48", " g\u00ec", "?=", "\u505a\u4ec0\u4e48", "?..."], ["\n\n", " \n\n", " ...", "\u4ec0\u4e48", " \n\n\n", "\n\n\n", "<|endoftext|>", "?..."], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", " \n\n\n", " \r\n\r\n", "?...", "\n\n\n"], ["\n\n", " \n\n", "\r\n\r\n", "\u4ec0\u4e48", "  \n\n", " \n\n\n", " \r\n\r\n", "?..."], ["\n\n", " \n\n", "\r\n\r\n", "\n\n\n", "\u4ec0\u4e48", " ___", "___", "?..."], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", "\n\n\n", " \r\n\r\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", "\r\n\r\n", "\n\n\n", "<|im_end|>", " \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\n", "  \n\n", " \n\n\n", "\r\n\r\n", " ...", "<|endoftext|>", "..."], ["\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", "<|endoftext|>", "\r\n\r\n", " \r\n\r\n", "<|im_end|>", "   \n\n"], [" \n\n", "<|endoftext|>", "  \n\n", "\n\n", "?:", "\uff1f", "?):", " \r\n\r\n"], [" \n\n", "\n\n", "  \n\n", "<|endoftext|>", "\uff1f", "?:", "*:", "   \n\n"], [" \n\n", "  \n\n", "\n\n", "?):", "\u505a\u4ec0\u4e48", "?:", " WHY", "\u600e\u4e48\u505a"], ["\u505a\u4ec0\u4e48", "?):", "?:", "\u600e\u4e48\u505a", " WHAT", "\u5e72\u4ec0\u4e48", " WHY", "?\u201d"], ["\u505a\u4ec0\u4e48", "\u600e\u4e48\u505a", "?:", "\u5e72\u4ec0\u4e48", "?):", " YOU", "\u505a\u4e86\u4ec0\u4e48", " WHAT"], ["\u600e\u4e48\u505a", "\u505a\u4ec0\u4e48", "\u505a\u4e86\u4ec0\u4e48", " YOU", "\u600e\u4e48\u5904\u7406", "\u600e\u4e48\u529e", "?\u201d", "\u5e72\u4ec0\u4e48"], ["\u600e\u4e48\u505a", "\u505a\u4ec0\u4e48", "?:", "\u505a\u4e86\u4ec0\u4e48", "?):", " YOU", " remed", " WHAT"], ["\u600e\u4e48\u505a", "\u505a\u4ec0\u4e48", " remed", "\n\n", "?):", "?:", " Solutions", "\u505a\u4e86\u4ec0\u4e48"], ["\u600e\u4e48\u505a", "\u505a\u4ec0\u4e48", " remed", " actionable", "\u505a\u4e86\u4ec0\u4e48", " solutions", " Solutions", "?):"], ["\u505a\u4ec0\u4e48", " remed", "\u600e\u4e48\u505a", " Solutions", " solutions", " actionable", " Solution", "\u89e3\u51b3\u65b9\u6848"], ["\u505a\u4ec0\u4e48", "<|im_end|>", " remed", " actionable", "\u600e\u4e48\u505a", "\n\n", " solutions", " YOU"], [" remed", " actionable", " solutions", " Immediate", " Solutions", " YOU", " Solution", " strategy"], [" Immediate", " YOU", " actionable", " immediate", " remed", " Strategy", " you", " Solutions"], [" Immediate", " Specific", ":\\", " Exactly", " YOU", " specifically", " Strategy", " you"], [" Immediate", "\u5177\u4f53\u63aa\u65bd", " Specific", " YOU", " specifics", "/how", ":\\", "\u600e\u4e48\u505a"], [" Immediate", " Exactly", "\u600e\u4e48\u505a", " YOU", "\u5177\u4f53\u63aa\u65bd", " Specific", "/how", ":\\"], ["?):", "?**", "\u5177\u4f53\u63aa\u65bd", " Exactly", "\u600e\u4e48\u505a", " Immediate", "?*", "?!"], [" Exactly", "\u5177\u4f53\u63aa\u65bd", " Happ", " happens", "?:", "*:", " Immediate", " Specific"], [" Exactly", " happens", " Happ", "\u5177\u4f53\u63aa\u65bd", " YOU", " you", " Exact", "\u4f60\u5fc5\u987b"], [" happens", " Exactly", " Happ", " you", " YOU", "\u4f60\u5fc5\u987b", " Exists", "\u4f60\u9700\u8981"], [" Exactly", " happens", " you", " Happ", "\u4f60\u5fc5\u987b", " YOU", "\u4f60\u8981", " exactly"], [" Exactly", " exactly", "Exactly", " Exact", " exactamente", " exatamente", " exactement", " precisely"], [" Exactly", " exactly", " Exact", "Exactly", " exatamente", " exactamente", " exactement", " you"], [" Exactly", " exactly", " Exact", "Exactly", " Break", " exactamente", " breaks", " Breaking"], [" Exactly", " Exact", " exactly", " Break", " you", "Exactly", " You", " Breaking"], [" Exactly", " Break", " exactly", " Exact", " breaks", "Exactly", " Breaking", " Broken"], [" Exactly", " exactly", " Break", " breaks", " Exact", " You", " you", "Exactly"], [" Exactly", " You", " exactly", " Break", " breaks", " Do", " Exact", " To"], [" Exactly", " You", " To", " Break", " Do", " exactly", " We", " Ex"]], "p": [[0.4498, 0.2408, 0.1655, 0.0537, 0.0347, 0.0224, 0.0044, 0.0039], [0.0278, 0.0278, 0.0203, 0.0168, 0.0096, 0.0085, 0.008, 0.0066], [0.3398, 0.2061, 0.1819, 0.0521, 0.0217, 0.0169, 0.014, 0.0116], [0.011, 0.0097, 0.0086, 0.0081, 0.0071, 0.0059, 0.0046, 0.0046], [0.0258, 0.013, 0.0079, 0.0048, 0.0026, 0.0024, 0.0024, 0.0024], [0.0642, 0.0126, 0.0087, 0.0064, 0.006, 0.0047, 0.0044, 0.0034], [0.4496, 0.0347, 0.0306, 0.0306, 0.0287, 0.0174, 0.0128, 0.0113], [0.0959, 0.0258, 0.0138, 0.0084, 0.0065, 0.0061, 0.0054, 0.0048], [0.0666, 0.0245, 0.0203, 0.0203, 0.0191, 0.0168, 0.0131, 0.0096], [0.0137, 0.0078, 0.0069, 0.0033, 0.0027, 0.0025, 0.0025, 0.0024], [0.1043, 0.0594, 0.0558, 0.0435, 0.0408, 0.0281, 0.0219, 0.0219], [0.0217, 0.0051, 0.0045, 0.0035, 0.0035, 0.0029, 0.0026, 0.0026], [0.0157, 0.0139, 0.0122, 0.0095, 0.0089, 0.0051, 0.0051, 0.0051], [0.0368, 0.0077, 0.0077, 0.0073, 0.0053, 0.0036, 0.0034, 0.003], [0.0284, 0.0266, 0.0072, 0.0067, 0.0046, 0.0038, 0.0036, 0.0036], [0.057, 0.0093, 0.0068, 0.0064, 0.005, 0.0032, 0.003, 0.0028], [0.3642, 0.0717, 0.0409, 0.0233, 0.0205, 0.0193, 0.008, 0.0043], [0.2781, 0.1234, 0.1023, 0.0583, 0.0189, 0.0115, 0.0089, 0.0084], [0.2729, 0.1762, 0.1372, 0.0369, 0.0238, 0.0164, 0.0136, 0.0093], [0.763, 0.1502, 0.0261, 0.0109, 0.0066, 0.0033, 0.0033, 0.0026], [0.8963, 0.0446, 0.0348, 0.0145, 0.0013, 0.0009, 0.0004, 0.0004], [0.1817, 0.1415, 0.0489, 0.0358, 0.0279, 0.0169, 0.0159, 0.0124], [0.8908, 0.0223, 0.0174, 0.0025, 0.0019, 0.0019, 0.0015, 0.0013], [0.9105, 0.0293, 0.0048, 0.0031, 0.0018, 0.0018, 0.0016, 0.0014], [0.945, 0.0533, 0.0005, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001], [0.9545, 0.0419, 0.0005, 0.0004, 0.0003, 0.0002, 0.0002, 0.0001], [0.9965, 0.0032, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9978, 0.0022, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9977, 0.0022, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.8111, 0.181, 0.0062, 0.0006, 0.0002, 0.0001, 0.0001, 0.0001], [0.8651, 0.1327, 0.0019, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.8495, 0.1476, 0.0027, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9189, 0.0754, 0.0055, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.5078, 0.4481, 0.0325, 0.0105, 0.0001, 0.0001, 0.0001, 0.0], [0.4519, 0.2134, 0.1467, 0.1295, 0.0064, 0.0047, 0.0037, 0.0022], [0.5911, 0.1919, 0.1494, 0.0623, 0.0003, 0.0003, 0.0003, 0.0003], [0.4277, 0.3331, 0.1225, 0.0054, 0.0051, 0.0037, 0.0037, 0.0027], [0.0636, 0.0466, 0.0437, 0.0282, 0.0234, 0.0194, 0.0194, 0.0161], [0.1075, 0.0421, 0.0272, 0.0255, 0.0225, 0.0187, 0.0175, 0.0175], [0.1154, 0.1018, 0.0274, 0.0227, 0.0201, 0.0188, 0.0188, 0.0188], [0.1122, 0.1122, 0.0302, 0.0284, 0.0208, 0.0195, 0.0195, 0.0183], [0.0777, 0.0605, 0.0568, 0.0534, 0.0345, 0.0286, 0.0185, 0.0173], [0.0854, 0.0803, 0.0803, 0.0314, 0.0277, 0.0191, 0.0179, 0.0158], [0.0785, 0.0574, 0.0476, 0.0327, 0.0289, 0.0271, 0.0186, 0.0145], [0.051, 0.0423, 0.0423, 0.0397, 0.0397, 0.035, 0.0273, 0.0155], [0.0502, 0.0367, 0.0304, 0.0252, 0.0209, 0.0197, 0.0173, 0.0163], [0.1088, 0.0353, 0.0293, 0.0258, 0.0201, 0.0138, 0.0138, 0.0138], [0.1402, 0.0485, 0.0259, 0.0178, 0.0157, 0.0148, 0.0139, 0.013], [0.0811, 0.0408, 0.0408, 0.036, 0.016, 0.016, 0.016, 0.0132], [0.0821, 0.0321, 0.0321, 0.0284, 0.025, 0.0235, 0.0221, 0.0143], [0.0559, 0.0559, 0.0409, 0.0281, 0.0248, 0.0193, 0.015, 0.0117], [0.4148, 0.03, 0.0265, 0.0171, 0.0151, 0.0142, 0.0118, 0.0092], [0.299, 0.1704, 0.0756, 0.0278, 0.018, 0.009, 0.0085, 0.007], [0.2951, 0.2298, 0.1156, 0.0453, 0.0352, 0.0101, 0.0089, 0.0065], [0.3878, 0.1617, 0.1617, 0.0318, 0.0281, 0.0248, 0.011, 0.0103], [0.8165, 0.1608, 0.008, 0.0071, 0.0026, 0.0016, 0.0014, 0.0004], [0.9195, 0.0588, 0.0116, 0.0038, 0.0012, 0.0011, 0.0007, 0.0004], [0.9341, 0.0465, 0.0104, 0.003, 0.0018, 0.0006, 0.0005, 0.0005], [0.9728, 0.0178, 0.004, 0.0017, 0.0009, 0.0007, 0.0006, 0.0004], [0.9378, 0.0221, 0.0221, 0.0118, 0.0026, 0.0008, 0.0008, 0.0008], [0.9355, 0.0528, 0.0034, 0.003, 0.0012, 0.0011, 0.001, 0.0006], [0.9657, 0.0227, 0.0065, 0.0015, 0.0009, 0.0006, 0.0003, 0.0003], [0.5529, 0.4306, 0.0079, 0.0024, 0.001, 0.0007, 0.0005, 0.0004]], "ranks": {"Python": [27539, 153397, 51921, 122172, 34842, 88133, 17218, 74766, 52977, 24538, 5611, 97007, 51377, 50626, 22229, 40583, 46057, 37706, 73046, 61250, 12645, 81486, 65355, 88722, 21005, 48282, 60971, 41259, 10184, 10561, 46326, 29573, 26126, 26692, 33718, 37356, 65332, 54000, 53237, 59397, 41829, 54323, 52362, 53573, 22557, 11446, 15892, 14089, 69312, 75495, 133309, 128396, 106422, 89353, 72009, 55023, 47314, 33471, 22319, 8637, 4971, 1186, 536]}}, {"pos": 475, "top": [["er", ".", "o", ",", "?", "a", "e", " \u2013"], ["er", "\uff20", " Very", "sWith", " VERY", "\uff0e", " We", " You"], [",", ".", "er", "?", "!", "\u3002", "\u2026", "a"], ["erias", "\uff0a\uff0a\uff0a\uff0a", "enner", "\uff0d\uff0d\uff0d\uff0d", "\uff20", "\u2605\u2606", " \uffe5\uffe5", "aruhi"], ["er", "\uff20", " \u201c", "ed", "auf", " (@", "a", " @"], ["er", " \u201c", " \u201d", " \u201c.", "\uff20", "\uff01", "auf", "sWith"], ["er", "\uff20", " \u2019", " \u201d", "\u2019re", " \ufffd", "s", "\uff01"], ["er", "\uff20", " @", "ey", " #@", "\u0092", "sung", "AVED"], ["er", "!\u201d.", "\uff20", "\u0092", "\u3000", "\uff3b", "!\u201d", "\u201d?"], [" \u00ad", "\u00ading", "er", "\u00adtion", "\u00ad", "\u00ads", "\u0092", "\u2011"], ["er", "\\n", "\u0092", " \u00ad", "\u2019re", "\u2019ll", " \ufffd", "\\xc"], ["er", "erias", "erstand", "asley", "tiful", "eurs", " _____", "\uff0a\uff0a\uff0a\uff0a"], ["er", " ...\\", " ...", "...\\", "erias", "...", " _____", " Philly"], ["er", " Philly", "...", " savvy", "\u0092", " guys", "?...", " yummy"], ["er", " Philly", "...", " folks", " nicely", " savvy", " hopefully", " pretty"], ["er", " savvy", " nicely", " folks", " pretty", " \u00ad", " hopefully", " guys"], ["er", "...", " savvy", "s", " folks", " nicely", "o", " Philly"], ["...", "...\\", "er", "?...", "\\n", "o", " savvy", "\u2019ll"], ["...", "...\\", " ...\\", " ...", "?...", "...\u201d", " _____", "\u2014you"], ["...\\", "...", " \u2014", " ...\\", " \u3010", "\u2014you", " ---", " @"], ["  \n\n", "\n\n", "<|endoftext|>", " \u2014", " \n\n", " @", "...\\", "\r\n\r\n"], [" _____", " smarter", " \u2019", "\u2014you", " ---", " savvy", " ...\\", " \u2014"], ["\n\n", " \u2019", " --", " \u2014", "  \n\n", "\r\n\r\n", " ---", "\u2014you"], ["\n\n", "<|endoftext|>", " \u2019", " \u2014", " --", " ...", "  \n\n", " just"], ["\n\n", "  \n\n", " \n\n", "\r\n\r\n", " \r\n\r\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", " \r\n\r\n", " ___", " ...\\", "...\\"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", " \r\n\r\n", " ___", " @", " ____"], ["\n\n", "  \n\n", " \n\n", " ___", " @", " ____", " _____", "\r\n\r\n"], ["  \n\n", " ____", " _____", " ___", " ______", " \n\n", "____", "\n\n"], [" @", "  \n\n", " \u2014", " _____", " ____", " tech", " ___", " \n\n"], [" @", " \u2014", " \u2019", " [", " #", " --", " aggressively", " strategically"], [" @", " [", " #", " :", " \u2014", " \u2019", " --", " **"], [" **", " @", " leveraging", "  \n\n", " \u2014", " **:", " tech", " \ufffd"], [" @", " \u2014", "  \n\n", " **", " leveraging", " --", " aggressively", " tech"], [" \u2014", " @", "  \n\n", " \u2014\u2014", " leveraging", " \u2019", " [", " MUST"], [" @", " leveraging", " \u2014", " MUST", " tech", " aggressively", " workaround", " \u2014\u2014"], [" @", " leveraging", " MUST", " tech", " workaround", " \u2014", " redesign", "\u2014you"], [" @", " leveraging", " tech", " MUST", " workaround", " \u2014", " redesign", "\u2014you"], [" tech", " leveraging", " @", " MUST", " engineering", " workaround", " deploy", " insanely"], [" tech", " leveraging", " engineering", " workaround", " software", " technically", " strategy", " redesign"], [" tech", " leveraging", " engineering", " strategy", " workaround", " engineered", " software", " redesign"], [" leveraging", " tech", " engineering", " workaround", " strategy", " creatively", " engineered", " technically"], [" leveraging", " tech", " workaround", " strategy", " engineering", " mandated", " creatively", " technically"], [" leveraging", " workaround", " tech", " strategy", " engineering", " technically", " design", " modular"], [" leveraging", " technically", " workaround", " tech", " strategy", " MUST", " engineering", " creatively"], [" MUST", " workaround", " leveraging", " technically", " must", " strategy", " mandated", " Must"], [" MUST", " leveraging", " workaround", " must", " ONLY", " Must", " Strategy", "\u4f60\u5fc5\u987b"], [" MUST", " workaround", " leveraging", " Strategy", "\u4f60\u5fc5\u987b", " ONLY", "\u5fc5\u987b\u575a\u6301", " Must"], [" MUST", " Required", "\u4f60\u5fc5\u987b", " workaround", " Strategy", " Must", ":\\\"", ":\\"], [" MUST", " Exactly", " Needed", " Yourself", " Absolutely", "\u4f60\u5fc5\u987b", " Needs", "\u4f60\u9700\u8981"], [" Exactly", " Doing", " MUST", ":**", "+:", "*:", " Must", ":*"], [" MUST", ":**", " Doing", "\u2019ll", " Exactly", ":*", " Must", " gotta"], [" MUST", " Doing", "\u2019ll", "\u2019d", ":**", " Must", " Exactly", "\u2019re"], [" MUST", " Doing", " Must", "\u2019ll", " must", " Actually", "\u5fc5\u987b", "Doing"], [" Doing", " Exactly", " MUST", " doing", "Doing", " exactly", " Must", " Exact"], [" Doing", " doing", "Doing", " Exactly", " MUST", "doing", "\u2019ll", " Must"], [" Doing", " Exactly", " MUST", " doing", " Exact", "Doing", "\u2019ll", " Must"], [" Doing", " Exactly", " doing", "Doing", " Exact", " Must", " Done", " MUST"], [" Exactly", " Exact", " Doing", " About", " exactly", " Must", " Do", " exact"], [" Exactly", " Doing", " Must", " Do", " do", " doing", " Exact", " exactly"], [" Do", " do", " Exactly", " Must", " Actually", "_do", ".do", "-do"], [" Do", " Must", " Exactly", " Actually", " Have", " do", " Need", " About"]], "p": [[0.4459, 0.1746, 0.1541, 0.0825, 0.0285, 0.0209, 0.0119, 0.0077], [0.0762, 0.0218, 0.008, 0.0052, 0.0036, 0.0031, 0.0031, 0.003], [0.2525, 0.1532, 0.0283, 0.0266, 0.0172, 0.0172, 0.0161, 0.0111], [0.0057, 0.0057, 0.0053, 0.0053, 0.0039, 0.0024, 0.0022, 0.0021], [0.2495, 0.0491, 0.0132, 0.0085, 0.0071, 0.0059, 0.0049, 0.0046], [0.0629, 0.0192, 0.0116, 0.0109, 0.0103, 0.0103, 0.0075, 0.0062], [0.4855, 0.0177, 0.0129, 0.0095, 0.0074, 0.0065, 0.0054, 0.0042], [0.3856, 0.0317, 0.0059, 0.0033, 0.0028, 0.0026, 0.0024, 0.0024], [0.0488, 0.038, 0.0336, 0.0261, 0.0231, 0.0169, 0.0159, 0.0131], [0.0958, 0.04, 0.0353, 0.0275, 0.0242, 0.0201, 0.0108, 0.0065], [0.3805, 0.0202, 0.0167, 0.0167, 0.0115, 0.0089, 0.0084, 0.0084], [0.0265, 0.0118, 0.0049, 0.0041, 0.0038, 0.0036, 0.0036, 0.003], [0.123, 0.0138, 0.0107, 0.0069, 0.0069, 0.0058, 0.0058, 0.0054], [0.2227, 0.0183, 0.0111, 0.0092, 0.0067, 0.0067, 0.0056, 0.0052], [0.1704, 0.0261, 0.0231, 0.0217, 0.0217, 0.0191, 0.0169, 0.0131], [0.0761, 0.0317, 0.0263, 0.0205, 0.0141, 0.0124, 0.0117, 0.0085], [0.1901, 0.0744, 0.031, 0.0242, 0.0122, 0.0114, 0.0114, 0.0107], [0.4752, 0.0996, 0.0323, 0.0163, 0.0119, 0.0105, 0.0093, 0.0082], [0.4282, 0.2153, 0.0792, 0.0374, 0.0101, 0.0078, 0.0078, 0.0069], [0.1626, 0.1118, 0.0678, 0.0562, 0.0386, 0.022, 0.0207, 0.0194], [0.2743, 0.2577, 0.0891, 0.0349, 0.0175, 0.0165, 0.0094, 0.0088], [0.0336, 0.0297, 0.0262, 0.0217, 0.014, 0.0109, 0.007, 0.0058], [0.0969, 0.0969, 0.0278, 0.023, 0.0168, 0.0158, 0.0123, 0.0116], [0.3031, 0.0766, 0.0495, 0.034, 0.0151, 0.0151, 0.0118, 0.0104], [0.7708, 0.1339, 0.0717, 0.0141, 0.0036, 0.0015, 0.001, 0.001], [0.497, 0.2348, 0.0864, 0.0408, 0.0263, 0.0205, 0.0193, 0.0103], [0.9816, 0.0075, 0.0052, 0.004, 0.0003, 0.0002, 0.0002, 0.0002], [0.9041, 0.051, 0.0351, 0.0042, 0.0008, 0.0007, 0.0006, 0.0004], [0.4658, 0.1512, 0.076, 0.0407, 0.0407, 0.0359, 0.0337, 0.0337], [0.3231, 0.1347, 0.0985, 0.0926, 0.0817, 0.0677, 0.0234, 0.0161], [0.1894, 0.0578, 0.045, 0.0329, 0.0226, 0.0226, 0.0188, 0.0166], [0.3884, 0.0436, 0.0299, 0.0171, 0.0117, 0.0097, 0.0091, 0.0067], [0.7418, 0.0099, 0.0082, 0.0077, 0.0068, 0.0057, 0.005, 0.0034], [0.142, 0.0917, 0.0522, 0.0407, 0.0298, 0.015, 0.015, 0.0117], [0.083, 0.0779, 0.0732, 0.0473, 0.0473, 0.0144, 0.0099, 0.0099], [0.2866, 0.2693, 0.0388, 0.0322, 0.0118, 0.0092, 0.0063, 0.0063], [0.1261, 0.0765, 0.0765, 0.0171, 0.0171, 0.0117, 0.0097, 0.0091], [0.0612, 0.0612, 0.0271, 0.0255, 0.0225, 0.0165, 0.012, 0.0083], [0.0686, 0.0502, 0.0345, 0.0209, 0.0197, 0.0153, 0.0153, 0.0112], [0.0787, 0.0508, 0.0308, 0.0155, 0.0137, 0.0137, 0.0113, 0.0083], [0.1513, 0.0761, 0.0359, 0.0192, 0.0159, 0.0141, 0.0132, 0.0124], [0.0994, 0.0824, 0.0824, 0.0251, 0.0222, 0.0196, 0.0162, 0.0143], [0.0928, 0.0872, 0.0723, 0.0301, 0.025, 0.0207, 0.0183, 0.0172], [0.1777, 0.0577, 0.0542, 0.0329, 0.0309, 0.0155, 0.0137, 0.0129], [0.1119, 0.0638, 0.0599, 0.0387, 0.0321, 0.0235, 0.0151, 0.0142], [0.097, 0.0588, 0.0488, 0.0296, 0.0245, 0.0245, 0.0168, 0.0158], [0.1868, 0.1, 0.0417, 0.0286, 0.0253, 0.0135, 0.0127, 0.0127], [0.3031, 0.1048, 0.0676, 0.0249, 0.0234, 0.0194, 0.0133, 0.0125], [0.3224, 0.2082, 0.0362, 0.0234, 0.0182, 0.0182, 0.011, 0.0097], [0.2496, 0.0338, 0.0317, 0.0317, 0.0298, 0.0247, 0.0218, 0.0141], [0.0669, 0.059, 0.0381, 0.0381, 0.0262, 0.0262, 0.0217, 0.014], [0.1478, 0.1081, 0.0954, 0.0451, 0.031, 0.0257, 0.0241, 0.0227], [0.2409, 0.0886, 0.0505, 0.0505, 0.0505, 0.0326, 0.0175, 0.0175], [0.2658, 0.1423, 0.1256, 0.0492, 0.0232, 0.0181, 0.015, 0.0117], [0.5905, 0.1917, 0.0622, 0.0428, 0.0148, 0.009, 0.0079, 0.007], [0.678, 0.1513, 0.0631, 0.0383, 0.0181, 0.0124, 0.0046, 0.004], [0.8974, 0.0348, 0.0211, 0.0164, 0.0128, 0.0029, 0.0022, 0.002], [0.6805, 0.2209, 0.0233, 0.0181, 0.0141, 0.0125, 0.004, 0.0036], [0.9497, 0.0287, 0.0064, 0.0056, 0.0034, 0.0018, 0.0011, 0.001], [0.7817, 0.0934, 0.0824, 0.0112, 0.0087, 0.0068, 0.0032, 0.0028], [0.5604, 0.1819, 0.0974, 0.046, 0.0217, 0.0169, 0.0149, 0.0116], [0.8842, 0.0932, 0.0126, 0.0068, 0.0004, 0.0004, 0.0003, 0.0003], [0.9894, 0.0076, 0.0019, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001]], "ranks": {"Python": [11317, 108042, 86701, 85655, 37916, 70838, 18953, 25860, 33840, 59244, 11228, 40633, 14083, 14612, 11290, 25338, 15190, 7715, 12072, 22256, 13517, 11688, 7394, 4155, 1393, 1725, 1692, 1609, 1475, 1777, 1598, 3175, 2575, 1423, 1951, 470, 281, 282, 226, 15, 22, 38, 94, 192, 163, 207, 410, 470, 2182, 3098, 16923, 9226, 12000, 17682, 20949, 21437, 18362, 16172, 9929, 3906, 5297, 4146, 2832]}}, {"pos": 476, "top": [["?", ".", "\u00a0\u00a0", " \u00a0", ",", " \u2013", "\u2022", "!"], [" @", " @(", "@", " Went", "?\u201d", "very", "\uc368", " Harbor"], [".", "?", ",", "\u2026", "\u2026.", "?\u201d", "\u2026..", "!"], [" \u041f\u043e\u043f\u0440\u043e", " Guta", "\uc368", " Shemale", "chini", " \uc544\ub2c8\uc624", " milfs", " \u0412\u0441\u0442\u0440\u0435"], [" \u201c", ",\u201d", " @", " Do", "\uc368", "?", "!", " Des"], ["?\u201d", "?", ",\u201d", " \u201c", " Do", "!\u201d", " \u201c.", "!"], ["?", "?\u201d", "!", "!\u201d", ",\u201d", "things", "?!", ".\u201d"], ["!", "?", "things", " @", " Done", "-done", "\uc368", "!\u201d"], ["?", ".", "!", "!\u201d", "?\u201d", ".\u201d", ",\u201d", ":"], [",", "?", ":", "-done", "!", "things", " things", "."], ["?", ".", "!", ",", ":", "...", " things", "things"], [" Done", " stuff", "-done", "things", " things", " thing", " Doyle", " happen"], [" stuff", " Done", " thing", " things", "things", " pretty", "-done", " really"], [" stuff", " pretty", " really", " things", " Done", " thing", "things", " doing"], [" stuff", " pretty", " doing", " things", "--", " really", " going", " --"], [" --", "--", " stuff", " doing", " really", " Doing", " Done", " pretty"], ["...", "--", " stuff", "?", "\n\n", " doing", " --", " pretty"], ["\n\n", " --", "--", "...", " stuff", " pretty", " Done", " Doing"], ["\n\n", " --", "...", "--", " stuff", " ...", "-done", " pretty"], ["\n\n", " --", "--", "\u2014\u2014", "?", " ?", "...", "?\\"], ["\n\n", "  \n\n", " \n\n", "<|endoftext|>", " --", "\n\n\n", "--", "..."], ["\n\n", " --", " ____", " ?", " :", " ___", " :\\", " ?**"], ["\n\n", " --", " ?", "--", " :", " ____", " :\\", "\n\n\n"], ["\n\n", " --", " ?", "--", " :", " ...", " \u2014", " :\\"], ["\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", " --", " :", "\r\n\r\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\n", " \n\n", " ___", " ______", " _____", "____"], ["\n\n", " \n\n", " :", " ____", "  \n\n", " ?", " ___", " \u2014"], ["\n\n", " \n\n", "  \n\n", " :", " ____", " \u2014", " ?", " ..."], [" :", "\n\n", " ?", "  \n\n", " ____", " \u2014", ":", " \n\n"], [" :", "  \n\n", "\n\n", " \n\n", " \u2014", " ?", ":", " \uff1a"], [" :", "  \n\n", " \u2014", " \n\n", "\n\n", " :\\", ":", " \uff1a"], ["  \n\n", " \n\n", " :", " \u2014", "\n\n", " \uff1a", "\uff1a", ":"], [" :", " \u2014", "  \n\n", " \n\n", "\n\n", " \uff1a", " @", " strategy"], [" :", " \u2014", ":", " \uff1a", "  \n\n", " ?:", "\uff1a", " strategy"], [" :", " \uff1a", ":", "\uff1a", " \u2014", " ?:", " :\\", " strategy"], [" :", "\uff1a", " \uff1a", ":", " \u2014", " strategy", "\u2014\u2014", " ?:"], [" :", "\uff1a", ":", " strategy", " \uff1a", " workaround", " redesign", "\u7b56\u7565"], [" :", " strategy", ":", " redesign", " workaround", " \u2014", " Strategy", " remed"], [" :", " strategy", " redesign", ":", " :\\", " Strategy", " strategies", " strategically"], [" :", " strategy", ":", " redesign", " :\\", "\uff1a", " Strategy", " workaround"], [" :", " strategy", " :\\", " redesign", ":", " Strategy", " :**", " solution"], [" :", " strategy", " Strategy", " :\\", " redesign", ":", ":\\", " leveraging"], [":", " :", ":\\", " :\\", " strategy", " Strategy", " :**", ":**"], [":", ":\\", " :", " :\\", ":*", ":**", " :**", ":</"], [":", ":\\", " :", " :**", ":**", " :\\", " :</", ":*"], [":\\", ":", ":**", ":\\\\", ":*", ":</", ":<", ":\\\""], [":", ":**", " **:", "*:", " **:**", ":*", " **(", ":\\"], [":**", ":*", ":", "*:", " :**", "**:", ":</", "+:"], [":**", ":*", " :**", ":</", "*:", ":", "**:", "\uff1a**"], [":**", ":</", " :**", ":", ":*", ":\\", " **(", " **:**"], [":</", ":", ":**", ":*", ":\\", " (", "/do", "(do"], [" about", " About", "\u5173\u4e8e", " ABOUT", "-about", "About", "_about", "about"], [" About", " about", " ABOUT", "About", "about", "-about", "_about", "\u5173\u4e8e"], [" About", " about", "About", " ABOUT", "about", "_about", "-about", "\u5173\u4e8e"], [" About", " about", "About", "about", "_about", " ABOUT", "-about", "\u5173\u4e8e"], [" About", " about", "About", "about", "_about", " ABOUT", "-about", "\u5173\u4e8e"], [" About", " about", "About", "about", "_about", "-about", " ABOUT", ">About"], [" About", " about", "About", "_about", ">About", " Exactly", "-about", " ABOUT"], [" About", " Exactly", " Instead", "About", " about", "_about", " With", " To"]], "p": [[0.2155, 0.1679, 0.0898, 0.07, 0.031, 0.0242, 0.0213, 0.0177], [0.0058, 0.0051, 0.0038, 0.0035, 0.0029, 0.0026, 0.002, 0.0019], [0.2343, 0.2068, 0.0523, 0.0461, 0.0263, 0.0218, 0.017, 0.015], [0.0076, 0.0059, 0.0043, 0.0023, 0.0019, 0.0015, 0.0014, 0.0013], [0.0088, 0.0077, 0.0053, 0.005, 0.0047, 0.0044, 0.0044, 0.0034], [0.0124, 0.008, 0.007, 0.007, 0.0062, 0.0058, 0.0045, 0.004], [0.0839, 0.0372, 0.0272, 0.0226, 0.0176, 0.0114, 0.01, 0.01], [0.0298, 0.0263, 0.0124, 0.0085, 0.008, 0.0071, 0.0067, 0.0063], [0.1382, 0.0892, 0.0787, 0.074, 0.0613, 0.0199, 0.0165, 0.0146], [0.0436, 0.0248, 0.0171, 0.016, 0.016, 0.0133, 0.0067, 0.0043], [0.3027, 0.1522, 0.0815, 0.0319, 0.0233, 0.0063, 0.0063, 0.0055], [0.0235, 0.0208, 0.0208, 0.0152, 0.0104, 0.0067, 0.0056, 0.0056], [0.0596, 0.0436, 0.0193, 0.0141, 0.0141, 0.0141, 0.0125, 0.0117], [0.1057, 0.0877, 0.0683, 0.0469, 0.0322, 0.0285, 0.0184, 0.0162], [0.0655, 0.0423, 0.0423, 0.0291, 0.0291, 0.0273, 0.0226, 0.0156], [0.0446, 0.0288, 0.0164, 0.0136, 0.0088, 0.0082, 0.0082, 0.0077], [0.0656, 0.0617, 0.033, 0.031, 0.0257, 0.0257, 0.0241, 0.0213], [0.1515, 0.0593, 0.0593, 0.0524, 0.0247, 0.0205, 0.0193, 0.016], [0.3763, 0.084, 0.0741, 0.0373, 0.0226, 0.0165, 0.0137, 0.0114], [0.801, 0.0375, 0.0188, 0.0061, 0.0045, 0.0045, 0.0039, 0.0031], [0.9933, 0.0017, 0.0011, 0.0009, 0.0005, 0.0004, 0.0003, 0.0002], [0.2441, 0.1786, 0.0956, 0.0481, 0.0166, 0.0101, 0.0078, 0.0074], [0.8026, 0.1086, 0.0138, 0.0074, 0.0065, 0.0058, 0.0018, 0.0016], [0.6014, 0.2507, 0.0193, 0.0141, 0.0133, 0.0036, 0.0026, 0.0023], [0.9725, 0.0122, 0.0122, 0.0008, 0.0002, 0.0002, 0.0002, 0.0002], [0.8893, 0.0269, 0.0223, 0.0144, 0.0135, 0.0072, 0.0015, 0.0015], [0.9924, 0.0022, 0.0019, 0.0007, 0.0007, 0.0005, 0.0002, 0.0001], [0.9986, 0.0009, 0.0003, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9979, 0.001, 0.0006, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.8089, 0.0853, 0.0355, 0.0216, 0.0168, 0.007, 0.0062, 0.0055], [0.881, 0.0266, 0.0235, 0.0207, 0.0183, 0.0056, 0.0049, 0.0023], [0.9228, 0.0169, 0.0116, 0.0085, 0.0066, 0.0048, 0.0048, 0.0038], [0.4465, 0.2708, 0.0936, 0.0196, 0.0196, 0.0184, 0.0163, 0.0087], [0.2293, 0.2023, 0.1391, 0.0956, 0.0617, 0.0213, 0.0147, 0.0114], [0.2586, 0.2282, 0.13, 0.084, 0.0187, 0.0155, 0.0146, 0.0107], [0.2953, 0.2606, 0.1791, 0.0795, 0.0795, 0.0189, 0.0065, 0.0061], [0.2935, 0.1895, 0.1571, 0.0423, 0.0273, 0.0137, 0.01, 0.01], [0.6372, 0.0491, 0.0383, 0.0218, 0.0192, 0.016, 0.0117, 0.0091], [0.6538, 0.0418, 0.0393, 0.0325, 0.0287, 0.0136, 0.0082, 0.006], [0.2008, 0.1665, 0.0575, 0.0541, 0.0308, 0.0289, 0.0137, 0.0128], [0.1447, 0.136, 0.0728, 0.0603, 0.0415, 0.0236, 0.0162, 0.0143], [0.2499, 0.1613, 0.0434, 0.0298, 0.0193, 0.0193, 0.0181, 0.017], [0.2821, 0.1821, 0.0406, 0.0246, 0.0169, 0.0159, 0.014, 0.014], [0.4396, 0.0674, 0.0435, 0.0193, 0.0181, 0.0181, 0.0133, 0.0117], [0.6768, 0.049, 0.0169, 0.014, 0.0109, 0.0085, 0.0052, 0.0052], [0.5274, 0.0522, 0.0247, 0.0218, 0.0205, 0.0205, 0.015, 0.0097], [0.6325, 0.1812, 0.0519, 0.008, 0.007, 0.0066, 0.0062, 0.0055], [0.6908, 0.12, 0.0935, 0.0087, 0.0082, 0.0077, 0.005, 0.003], [0.3511, 0.3098, 0.1006, 0.0271, 0.0224, 0.0154, 0.012, 0.0113], [0.4144, 0.1264, 0.0676, 0.0265, 0.0249, 0.0206, 0.0171, 0.0161], [0.1271, 0.0821, 0.0724, 0.0439, 0.0439, 0.0413, 0.0364, 0.0342], [0.2889, 0.1205, 0.1205, 0.1063, 0.0606, 0.0472, 0.0286, 0.0269], [0.6384, 0.0979, 0.0594, 0.0318, 0.0248, 0.0248, 0.0205, 0.0141], [0.5563, 0.0801, 0.0707, 0.0486, 0.0429, 0.023, 0.0123, 0.0108], [0.1784, 0.1226, 0.1017, 0.0792, 0.0398, 0.0398, 0.033, 0.0291], [0.4497, 0.2407, 0.1137, 0.0474, 0.0254, 0.0186, 0.0154, 0.0128], [0.4611, 0.4611, 0.023, 0.0203, 0.0123, 0.0066, 0.0051, 0.0035], [0.4837, 0.4837, 0.0114, 0.0078, 0.0069, 0.0022, 0.0017, 0.0015], [0.906, 0.0843, 0.0054, 0.0014, 0.0014, 0.0011, 0.0002, 0.0001], [0.6754, 0.319, 0.0031, 0.0013, 0.0005, 0.0003, 0.0002, 0.0], [0.5587, 0.4351, 0.0033, 0.0012, 0.0006, 0.0005, 0.0004, 0.0001], [0.997, 0.0022, 0.0006, 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]], "ranks": {"Python": [64221, 226783, 163645, 174786, 81345, 87519, 12726, 18132, 27336, 74742, 14991, 37770, 22344, 30244, 23907, 154938, 90104, 61592, 91703, 93847, 32937, 126172, 108019, 116147, 62035, 75322, 55255, 35751, 49422, 29527, 16551, 14771, 13530, 18293, 22928, 10125, 12640, 17199, 20365, 11896, 13553, 13928, 19749, 25060, 14001, 11098, 16842, 16010, 43969, 45676, 79748, 51528, 50259, 56150, 66785, 21334, 15855, 10417, 9636, 3070, 2855, 654, 607]}}, {"pos": 477, "top": [[".", "s", ",", ",.", "!", "?", ";", ":"], ["s", "sville", " @@", " @(", " @", " (@", "@@", "@a"], ["\u2026", ".", ",", "\u2026.", "..", "s", "\u2026..", "?"], [" ``", "\ufeff#", "---</", " ``(", "schrift", " \ufeff", " \u30fb", "\u25b7"], ["s", "\ufeff", "ed", " \u00a0 \u00a0", " \u00c2", " \ufeff", " @@", " everybody"], [" \u00c2", "\u8358", " \u00a0 \u00a0", "\u00c2", "-your", " Rangers", "@a", "says"], [" ``", " \u00c2", " \ufeff", "s", " \u30fb", " \"\"", "\u00c2", " ,,"], [" \u00c2", " ``", "-&", " ,,", " \ufeff", " \u00ae", "s", "\u00c2"], [" \u00c2", "!\u201d", "-&", " \u00ae", " ..", " \ufeff", " \u00a0 \u00a0", " stuff"], [" \u00c2", "going", " \u00a0 \u00a0", "_stuff", " stuff", "\u00c2", "-&", " everybody"], [" \u00c2", "-&", "\u00c2", " \u00a0 \u00a0", " stuff", "going", " \\$", " \ufeff"], [" ``", "_stuff", " stuff", " ___", " ``(", " ''", " ---", " '''"], [" ``", " stuff", "_stuff", " ``(", " ___", " ''", "\u0441\u044f", " ---"], [" ``", " stuff", "_stuff", " everybody", " anybody", " somebody", " ``(", " nasty"], [" stuff", " everybody", " anybody", " ``", "_stuff", " somebody", " smack", "going"], [" stuff", " anybody", " everybody", " --", " somebody", " smack", " nasty", "_stuff"], [" stuff", " everybody", " anybody", " somebody", "going", "_stuff", " smack", " things"], [" stuff", " everybody", "_stuff", " nasty", " anybody", " somebody", " things", "going"], [" stuff", "_stuff", " everybody", " somebody", " anybody", " things", "-&", " ---"], [" stuff", "_stuff", "\u2014\"", " everybody", "-&", " somebody", " anybody", "\u2014and"], ["\u2014\"", "\n\n", " stuff", " ---", " \u2014", "\u2014and", " Somebody", "_stuff"], [" stuff", "_stuff", " ---", " everybody", " somebody", " things", "\u4ec0\u4e48\u5462", " anybody"], [" stuff", " \u2014", " things", " everybody", " ---", " --", " \u2015", "\u2014and"], [" \u2014", " \u2015", " stuff", " things", " --", " everybody", "\u2014and", " ''"], [" ___", " \n\n", "\n\n", " ---", " \u2014", " --", " \u2015", "___"], [" ___", " __", " ---", "___", " stuff", " ____", " things", " _____"], [" ___", " stuff", " \u2014", " __", " things", " \u2015", "\n\n", " ---"], ["\n\n", " ___", " \n\n", " __", " \u2014", " ---", " --", "___"], ["\n\n", " \u2014", " \n\n", " ___", " \u2015", " ---", " __", "\u2014or"], [" ___", "\n\n", " __", " \u2014", " ____", "___", " _____", " \n\n"], [" \u2014", " ___", "\n\n", " ?", " \u2026", " __", " \u2014\u2014", " \n\n"], [" \u2014", " \u2026", " \u201c", " ...", "\n\n", " \u2019", "\u2014and", " --"], [" \u2014", " \u2026", " \u201c", " :", " ?", "\u2014and", " \u2019", "\u2014"], [" \u2014", " \u2026", " \u2014\u2014", " :", " \u201c", "\u2014and", " \u201d", " ?"], [" \u2014", " **\u201c", " \u2026", "\u201d:", " :", "\u2014but", " ___", " :**"], [" \u2026", " \u2014", " \u2014\u2014", "\u2014\u2014", "\u2014and", " \uff1a", " \u201c", " \n\n"], [" \u2014", "\u2014and", " \u2014\u2014", "\u2014\u2014", "\u2014but", " \u2026", "\u2014even", "\u201d:"], [" \u2014", " \u2026", "\u2014and", "\u201d:", " \u2014\u2014", "\u2014but", "\u2014even", " \u201c"], [" \u2014", " \u2026", "\u2014and", " \u2014\u2014", "\u2014even", "\u2014but", "\u201d:", " \uff1a"], [" \u2026", " \u2014", "\u2026\u201d", " \u201c", "\u201d:", "\u2026*", " \u201d", "\u2014and"], [" \u2026", " \u2014", "\u201d:", " tech", " \u201c", "\u2014\u2014", "\u2014even", "\u2014and"], [" tech", "\n\n", " \u2014", " leveraging", " \u2026", "\u2014even", " technology", " modular"], [" leveraging", " \u2014", " modular", " \u2026", " tech", "\u2014even", " outsourcing", " technology"], [" leveraging", " \u2026", " \u2014", " modular", " tech", " decentral", " technology", " leverage"], [" leveraging", " modular", " tech", " technology", " leverage", " strategy", " \u2014", " decentral"], [" leveraging", " modular", " redesign", " leverage", " technology", " tech", " strategy", " decentral"], [" leveraging", " **", " :\\", " :", " :**", " modular", " leverage", "  \n\n"], [":\\", " **", " :\\", " leveraging", " :**", ":", ":**", " :"], [":\\", ":", ":**", " leveraging", " :**", " **(", " **\"", " :\\"], [":**", ":\\", ":", ":\\\"", ":*", " :**", ":</", "\uff1a**"], [":**", " **(", "\uff1a**", " **:**", " **:", " :**", "**:", " **\u201c"], [":**", "\uff1a**", " :**", ":*", " :</", "\uff1a</", ":\\\"", ".:**"], [":**", ":*", "\uff1a**", " :**", ":\"", ".:**", ":</", " **("], [":**", " :**", ":*", ":\"", "\uff1a**", ":</", ":", ":\\"], [" it", "\u5b83", ":**", " (", ":*", " (\u201e", " ():", " :**"], [" it", "\u5b83", "\u5b83\u662f", "_it", " \u043e\u043d\u043e", "-it", "\u5b83\u5728", " It"], [" it", "\u5b83", ":**", " It", "\u5b83\u662f", "_it", " n\u00f3", "\u5b83\u5728"], [" it", "\u5b83", " It", "_it", " \u043e\u043d\u043e", " n\u00f3", "-it", "\u5b83\u5728"], [" it", "\u5b83", " It", "_it", "-it", " n\u00f3", " \u043e\u043d\u043e", "\u5b83\u662f"], [" it", " It", "\u5b83", "_it", "-it", "It", "it", " n\u00f3"], [" it", " It", "_it", "-it", "\u5b83", "It", "it", "(it"], [" It", " it", "_it", "It", "-it", "\u5b83", " (", " Each"], [" It", "It", "_it", " it", " Each", " That", " This", " Its"]], "p": [[0.3893, 0.3227, 0.1345, 0.011, 0.0104, 0.0097, 0.0097, 0.0092], [0.0948, 0.0272, 0.0225, 0.0155, 0.0145, 0.01, 0.01, 0.0073], [0.1697, 0.1322, 0.1322, 0.0624, 0.0624, 0.0551, 0.023, 0.019], [0.0183, 0.0059, 0.0056, 0.0036, 0.0036, 0.0034, 0.0028, 0.0028], [0.0802, 0.0158, 0.0148, 0.0131, 0.0116, 0.0109, 0.0085, 0.0079], [0.005, 0.0044, 0.0039, 0.003, 0.003, 0.0027, 0.0025, 0.0025], [0.089, 0.0651, 0.0507, 0.0448, 0.0255, 0.0199, 0.0145, 0.0137], [0.0953, 0.0373, 0.0329, 0.0176, 0.0156, 0.0137, 0.0137, 0.0121], [0.0695, 0.0542, 0.0509, 0.0212, 0.0187, 0.0176, 0.0165, 0.0146], [0.0376, 0.0312, 0.0214, 0.0189, 0.0147, 0.013, 0.0122, 0.0115], [0.0707, 0.0429, 0.0403, 0.0403, 0.0314, 0.0295, 0.0215, 0.0148], [0.2291, 0.0351, 0.031, 0.0166, 0.0156, 0.0095, 0.0054, 0.0054], [0.3187, 0.0316, 0.0278, 0.018, 0.014, 0.009, 0.008, 0.0048], [0.1479, 0.1305, 0.0451, 0.0177, 0.0146, 0.0146, 0.0078, 0.0069], [0.2194, 0.0432, 0.0336, 0.0336, 0.0336, 0.0231, 0.0109, 0.0103], [0.0465, 0.0386, 0.03, 0.0194, 0.0142, 0.0142, 0.0118, 0.011], [0.2681, 0.0927, 0.0341, 0.022, 0.0207, 0.0142, 0.0142, 0.0142], [0.2776, 0.04, 0.0293, 0.0189, 0.0189, 0.0177, 0.013, 0.0101], [0.2423, 0.0477, 0.0289, 0.0176, 0.0165, 0.0137, 0.0128, 0.0121], [0.1347, 0.034, 0.032, 0.0282, 0.0265, 0.0265, 0.0194, 0.0182], [0.0726, 0.0682, 0.044, 0.0389, 0.0303, 0.0251, 0.0172, 0.0162], [0.1346, 0.0597, 0.0437, 0.0265, 0.0206, 0.0206, 0.0194, 0.0182], [0.1191, 0.0496, 0.0412, 0.0387, 0.0363, 0.0266, 0.0266, 0.0266], [0.0968, 0.0802, 0.0708, 0.0487, 0.0379, 0.0314, 0.0245, 0.023], [0.1003, 0.1003, 0.0781, 0.0504, 0.0393, 0.0347, 0.0306, 0.0287], [0.6031, 0.0386, 0.0386, 0.0362, 0.034, 0.0125, 0.0125, 0.0086], [0.4632, 0.0553, 0.038, 0.0336, 0.0245, 0.0231, 0.0217, 0.0169], [0.7392, 0.1285, 0.0535, 0.0163, 0.0093, 0.0087, 0.0072, 0.0036], [0.7667, 0.0629, 0.049, 0.0406, 0.0052, 0.0046, 0.0046, 0.0036], [0.7057, 0.0744, 0.0451, 0.031, 0.0227, 0.02, 0.0166, 0.0138], [0.6236, 0.0844, 0.07, 0.0352, 0.0257, 0.0138, 0.0084, 0.0084], [0.8514, 0.0257, 0.0146, 0.0114, 0.0083, 0.0074, 0.0069, 0.0054], [0.8681, 0.014, 0.0116, 0.0109, 0.0096, 0.0071, 0.0058, 0.0046], [0.772, 0.0264, 0.0133, 0.0125, 0.0097, 0.0097, 0.0076, 0.0067], [0.2788, 0.0549, 0.0516, 0.0428, 0.0402, 0.0354, 0.0313, 0.0259], [0.3459, 0.3249, 0.0468, 0.0208, 0.0195, 0.0134, 0.0111, 0.0104], [0.4968, 0.0408, 0.0408, 0.0298, 0.0247, 0.0193, 0.015, 0.011], [0.2887, 0.0391, 0.0304, 0.0286, 0.0223, 0.0185, 0.0173, 0.0173], [0.2778, 0.0902, 0.0312, 0.0243, 0.0167, 0.0167, 0.0167, 0.0147], [0.4078, 0.0404, 0.0261, 0.0191, 0.0168, 0.0123, 0.0096, 0.0096], [0.1296, 0.0421, 0.0289, 0.0225, 0.0212, 0.0199, 0.0155, 0.0155], [0.0398, 0.0351, 0.033, 0.0257, 0.0241, 0.0213, 0.0188, 0.0156], [0.0457, 0.026, 0.026, 0.0216, 0.0203, 0.0191, 0.0158, 0.0131], [0.0725, 0.0251, 0.0251, 0.0162, 0.0152, 0.0111, 0.0104, 0.0104], [0.0634, 0.0319, 0.0248, 0.0182, 0.016, 0.0104, 0.0097, 0.0091], [0.1242, 0.0587, 0.0203, 0.0179, 0.0158, 0.0131, 0.0109, 0.0085], [0.0505, 0.037, 0.0224, 0.0224, 0.0224, 0.0186, 0.012, 0.0099], [0.0699, 0.0481, 0.0374, 0.0352, 0.0291, 0.02, 0.0188, 0.0177], [0.0867, 0.0718, 0.0464, 0.0436, 0.0248, 0.0193, 0.0151, 0.0141], [0.1934, 0.1415, 0.0521, 0.0358, 0.0316, 0.0297, 0.0217, 0.0192], [0.0559, 0.0525, 0.0525, 0.0248, 0.0193, 0.0181, 0.016, 0.0133], [0.2235, 0.2099, 0.0822, 0.0601, 0.0251, 0.0236, 0.0208, 0.0152], [0.6222, 0.0842, 0.0511, 0.0511, 0.0273, 0.0146, 0.0146, 0.0114], [0.5558, 0.0664, 0.0624, 0.0486, 0.0355, 0.026, 0.0168, 0.0115], [0.4896, 0.1238, 0.0851, 0.0276, 0.019, 0.0178, 0.0178, 0.0139], [0.7127, 0.2622, 0.0037, 0.0029, 0.0023, 0.0023, 0.0023, 0.002], [0.7789, 0.1969, 0.0041, 0.0019, 0.0019, 0.0019, 0.0019, 0.0017], [0.8833, 0.1055, 0.0025, 0.0013, 0.0012, 0.0012, 0.001, 0.0006], [0.8129, 0.11, 0.0589, 0.0062, 0.002, 0.0014, 0.0012, 0.0008], [0.8926, 0.0941, 0.0088, 0.0022, 0.0006, 0.0003, 0.0002, 0.0001], [0.6663, 0.3147, 0.0122, 0.0019, 0.0017, 0.0015, 0.0005, 0.0002], [0.9527, 0.0419, 0.0022, 0.0013, 0.0007, 0.0002, 0.0001, 0.0001], [0.9997, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Python": [47760, 228621, 176118, 198264, 133991, 219112, 149022, 201305, 187940, 208063, 187340, 228300, 228240, 233401, 210317, 231647, 221034, 221744, 223838, 230463, 201193, 225591, 217575, 208538, 203883, 169462, 151174, 99312, 95075, 50312, 36393, 25408, 24486, 10961, 15617, 6379, 7465, 10201, 5665, 1770, 859, 1762, 3188, 3405, 3221, 2324, 3317, 2456, 6360, 12414, 10793, 3081, 9369, 9873, 9625, 852, 539, 484, 447, 87, 91, 40, 44]}}, {"pos": 478, "top": [[" \u2013", ".", ",", "\u2013", "y", "\u2026..", "i", ";"], [" \u2013", "\u2013", ".", "\u2013and", ",", " very", " Very", ".\u2013"], [" \u2013", "\u2013", ".", "\u2026", "\u2026..", ",", "\u2026.", "\u2013and"], [" Shemale", " Guta", " Geile", " milfs", " Blowjob", " Pubbl", "ICAST", "':''"], [" Guta", "(IT", " HIT", "ICAST", " crazy", "rost", " \u201c.", "\u094d\u0938"], ["(IT", " \u201d", "!", ".", " \u201c.", "\uff01", "!.", ".rt"], [" \u201d", "!", " !", ".", "\uff01", "(IT", " !!", " \u201e"], ["!", ".", " \u201e", " !", " !!", "(IT", "!.", "!!"], [".", "!", "!.", "!\u201d", ".\u201d", ",", ",.", "\uff01"], [",", "!", ".", "!.", "!\\", "(IT", "ting", "!!"], [".", "!", ",", " .", ",.", "?", " \u2013", ":"], [" ****", " !", "ting", "(IT", " \\\"", " pretty", ".\\\"", "!--"], [" !", " \\\"", " pretty", " :", " .", " ''", "ting", " ****"], [" pretty", " !", " --", " anyway", " stuff", " :", " ''", " really"], [" --", "--", " ,", " !", " \u2013", " pretty", ",", " :"], [" --", " \u2013", " ,", " pretty", "--", " even", " \u2014", ","], [",", " \u2013", "--", " --", " ,", ":", "\u2013", "!"], [",", ".", " --", " \u2013", "--", " ,", ":", " rather"], [" --", " ,", " :", " !", " rather", " .", " ;", " \"--"], [" --", " \u2014", " ,", " \u2013", "--", " :", " \uff1a", " !"], ["<|endoftext|>", " --", "\n\n", " ,", " @", " \uff1a", " \n\n", " \u2014"], [" --", " :", " ,", " ?", " !", " \uff1a", " **:", " \u061f"], [" --", " ,", " :", " ;", " ?", " .", " ''", " !"], [" ,", " --", " :", " .", " ;", " ?", "<|endoftext|>", " rather"], ["\n\n", " --", " \n\n", " ,", " __", " :", " ___", " \uff1a"], [" ___", " __", " **:", " **", " :", " ?**", " --", " :**"], [" ___", " __", " :", " --", " **:", " **", " ,", " :**"], ["\n\n", " ,", " --", " :", " __", " ___", " _", " ;"], [" :", " --", " ,", "\n\n", " ___", " __", " ?", " \uff1a"], [" ...", " ___", " __", " ____", " ______", " ...\\", " \uff1a", "___"], [" ...", " :", " .", " ?", " ___", " ,", " \u2026", " \uff1a"], [" ...", " ,", " .", " :", " \u2026", " @", " --", " ?"], [" :", " ,", " .", " ...", " ?", " via", " @", " using"], [" seamlessly", " workflows", " \u2026", " leveraging", " directly", " :", " **", " specialized"], [" seamlessly", " leveraging", " \u2014", " workflows", " via", " :", " :**", " collaborative"], [" \u2026", " \u2014", " \uff1a", " \u2013", " :*", " :", " \u2014\u2014", " ..."], [" \u2014", " :*", " :", " leveraging", " \u2026", " \uff1a", " **:", " :**"], [" :", " :*", " \uff1a", " leveraging", " \u2026", " engineering", " @", " \u201c"], [" :", " independently", " independent", " via", " \uff1a", " :*", " directly", " leveraging"], [" independently", " independent", " \uff1a", " leveraging", " via", " :*", " engineering", " :"], [" independent", " independently", "\u72ec\u7acb", " engineering", " engine", " workflows", "\uff1a", " \uff1a"], [" engine", " engineering", " Engine", " workflows", " modular", " leveraging", " independently", " software"], [" engine", " engineering", " workflows", " modular", " Engine", " subsystem", "/engine", " interoper"], [" workflows", " engine", " engineering", " workflow", " Engine", " leveraging", " modular", " backend"], [" workflows", " engineering", " modular", " engine", " workflow", " separate", " leveraging", " Engine"], [" modular", " separate", " leveraging", " separation", " seamlessly", " workflows", " independent", " engine"], [" modular", " Separ", " leveraging", " Separate", " separation", " seamlessly", " separate", " Engine"], [" Separ", ":", " separation", " **", " Separate", "\u5206\u79bb", " :", " modular"], [" **", " **\"", " **\u201c", " **:", "\uff1a**", " **(", ":**", ":"], [":**", " **:", ":", "\uff1a**", " Separ", " :**", " **\"", " **("], ["\n\n", ":", " **:", " Separ", "  \n\n", ":**", "\u5206\u79bb", "\uff1a**"], [":", ":**", "\n\n", ":*", "\uff1a**", " :**", ":\"", " **:"], [":**", " :**", ":", ":*", "\uff1a**", ":\"", "**:", ":\")"], [":**", ":", ":*", " :**", ":\"", "\uff1a**", ":\\", "**:"], [":**", ":", ":*", " :**", ":\"", "\uff1a**", " (", ":</"], [":**", ":", ":*", " :**", ":\"", "\uff1a**", ":\")", ":</"], [":**", " :**", "\uff1a**", ":*", ":", ":\"", "**:", ".:**"], [":**", " :**", "\uff1a**", ":", ":*", " (", ":\"", "**:"], [":**", " :**", " (", ":", "\uff1a**", "**:", ":*", " ():"], [":**", " (", " :**", ":", ":*", "**:", " Architecture", "\uff1a**"], [":**", " (", ":", " :**", ":*", ":\"", " ():", " (\""], [" (", ":**", ":", " :**", ":The", ":*", " :", "\n\n"], [":**", " (", ":", " :**", " **(", "**:", "\uff1a**", ":("]], "p": [[0.6731, 0.1928, 0.0626, 0.0488, 0.002, 0.0019, 0.0017, 0.0011], [0.2681, 0.1117, 0.0818, 0.0301, 0.022, 0.0142, 0.0098, 0.0067], [0.5618, 0.1824, 0.1106, 0.0407, 0.028, 0.0263, 0.0132, 0.008], [0.0304, 0.0135, 0.0105, 0.0082, 0.0064, 0.0034, 0.0034, 0.003], [0.0132, 0.008, 0.0055, 0.0043, 0.0035, 0.0029, 0.0028, 0.0026], [0.0383, 0.016, 0.0141, 0.0132, 0.0117, 0.0067, 0.0059, 0.0049], [0.1533, 0.0564, 0.0467, 0.0342, 0.0302, 0.0266, 0.0207, 0.0183], [0.1107, 0.081, 0.0592, 0.0461, 0.0298, 0.0232, 0.0218, 0.017], [0.7195, 0.0629, 0.0406, 0.0159, 0.008, 0.0075, 0.0071, 0.0046], [0.1829, 0.092, 0.0594, 0.0524, 0.0434, 0.0263, 0.0132, 0.0132], [0.9019, 0.0396, 0.029, 0.0024, 0.0021, 0.002, 0.0017, 0.0017], [0.0273, 0.02, 0.0165, 0.0114, 0.0114, 0.0107, 0.01, 0.0094], [0.0506, 0.0239, 0.0164, 0.0154, 0.0145, 0.0136, 0.012, 0.0113], [0.0747, 0.0332, 0.0275, 0.0189, 0.0177, 0.0167, 0.0122, 0.0089], [0.3483, 0.1364, 0.0777, 0.0304, 0.0286, 0.0223, 0.0223, 0.0209], [0.274, 0.1073, 0.0651, 0.0476, 0.0307, 0.0255, 0.0239, 0.0211], [0.8458, 0.0576, 0.0165, 0.0069, 0.0044, 0.0039, 0.0035, 0.0029], [0.5739, 0.0568, 0.0471, 0.0471, 0.0268, 0.0237, 0.0184, 0.0077], [0.5114, 0.0539, 0.0506, 0.0198, 0.0136, 0.0128, 0.01, 0.0083], [0.9105, 0.0189, 0.0189, 0.0122, 0.004, 0.0016, 0.0016, 0.0012], [0.5821, 0.275, 0.029, 0.029, 0.0155, 0.0069, 0.0065, 0.0065], [0.4114, 0.2828, 0.0383, 0.0359, 0.0247, 0.0181, 0.0117, 0.0103], [0.4989, 0.3026, 0.1261, 0.0151, 0.0133, 0.0117, 0.0063, 0.0052], [0.7889, 0.0734, 0.0306, 0.0238, 0.0224, 0.0047, 0.0037, 0.0037], [0.7109, 0.0962, 0.0515, 0.0312, 0.0215, 0.0215, 0.0089, 0.0062], [0.2396, 0.1647, 0.1283, 0.0731, 0.0645, 0.0502, 0.0416, 0.0286], [0.3328, 0.2018, 0.1572, 0.045, 0.0397, 0.0226, 0.0166, 0.0156], [0.3408, 0.3008, 0.1106, 0.0862, 0.0461, 0.0218, 0.015, 0.0132], [0.2332, 0.1248, 0.1101, 0.0554, 0.0489, 0.0431, 0.0296, 0.0191], [0.5353, 0.2528, 0.0564, 0.0388, 0.0266, 0.0235, 0.0041, 0.0038], [0.9031, 0.035, 0.0146, 0.0061, 0.0054, 0.0047, 0.0037, 0.0027], [0.4234, 0.3297, 0.0945, 0.0649, 0.0053, 0.0044, 0.0042, 0.0037], [0.4187, 0.3261, 0.0532, 0.0303, 0.0105, 0.0092, 0.0082, 0.0077], [0.0742, 0.0543, 0.035, 0.0309, 0.0291, 0.0291, 0.0241, 0.0241], [0.0974, 0.0915, 0.0262, 0.0231, 0.0217, 0.0217, 0.0159, 0.0159], [0.4693, 0.0465, 0.041, 0.0265, 0.0182, 0.0161, 0.0151, 0.0104], [0.063, 0.0556, 0.0433, 0.0359, 0.0337, 0.0317, 0.015, 0.015], [0.1091, 0.0622, 0.0455, 0.0294, 0.0157, 0.013, 0.0122, 0.0122], [0.0745, 0.0375, 0.0352, 0.0311, 0.0274, 0.0242, 0.0213, 0.0213], [0.0431, 0.0405, 0.0296, 0.0261, 0.0246, 0.0204, 0.0169, 0.0169], [0.066, 0.062, 0.0453, 0.0353, 0.0353, 0.0275, 0.0214, 0.0178], [0.1139, 0.1005, 0.0347, 0.0288, 0.0198, 0.0154, 0.0145, 0.0145], [0.1097, 0.0803, 0.0404, 0.0245, 0.023, 0.0203, 0.0191, 0.0179], [0.0819, 0.0529, 0.0467, 0.0207, 0.0207, 0.0195, 0.0152, 0.0126], [0.0952, 0.0509, 0.0422, 0.0422, 0.0373, 0.0309, 0.0212, 0.0146], [0.1535, 0.0725, 0.0388, 0.0267, 0.0251, 0.0195, 0.0183, 0.0172], [0.064, 0.0365, 0.0284, 0.0267, 0.0267, 0.0208, 0.0172, 0.0172], [0.0964, 0.0799, 0.0585, 0.0378, 0.0333, 0.0168, 0.0168, 0.0148], [0.1748, 0.1129, 0.0996, 0.0533, 0.047, 0.039, 0.0252, 0.0252], [0.1495, 0.0906, 0.0663, 0.0623, 0.055, 0.0333, 0.0333, 0.026], [0.2277, 0.1381, 0.101, 0.0477, 0.0396, 0.0308, 0.0289, 0.0255], [0.4558, 0.2153, 0.0898, 0.0617, 0.0374, 0.033, 0.02, 0.0095], [0.8064, 0.0516, 0.0516, 0.0313, 0.0215, 0.0148, 0.007, 0.0016], [0.7311, 0.1121, 0.0467, 0.0467, 0.0195, 0.0172, 0.003, 0.0021], [0.5561, 0.2046, 0.0664, 0.0457, 0.0277, 0.019, 0.0131, 0.0079], [0.7048, 0.0954, 0.0656, 0.0398, 0.0213, 0.0166, 0.0069, 0.0061], [0.9361, 0.0363, 0.0171, 0.003, 0.0018, 0.0014, 0.0012, 0.0006], [0.9195, 0.0458, 0.0168, 0.0055, 0.0043, 0.002, 0.0016, 0.0011], [0.8065, 0.085, 0.0354, 0.0244, 0.0148, 0.0079, 0.0062, 0.0026], [0.6942, 0.1549, 0.0939, 0.0144, 0.0053, 0.0041, 0.0041, 0.0032], [0.4523, 0.3992, 0.1144, 0.0065, 0.0065, 0.003, 0.0018, 0.0013], [0.422, 0.3287, 0.1994, 0.0099, 0.0073, 0.0057, 0.0022, 0.002], [0.9431, 0.047, 0.0064, 0.0009, 0.0009, 0.0005, 0.0005, 0.0001]], "ranks": {"Python": [36937, 144663, 114115, 164338, 55097, 70303, 31019, 57591, 48314, 114688, 16797, 52270, 26553, 37311, 22487, 23755, 28765, 12829, 13561, 8322, 838, 691, 800, 1650, 536, 198, 156, 225, 105, 252, 292, 1178, 1751, 461, 625, 223, 30, 49, 56, 38, 33, 74, 98, 133, 240, 240, 296, 344, 1181, 1877, 1835, 957, 2647, 2088, 1614, 527, 475, 468, 416, 138, 175, 56, 120]}}, {"pos": 479, "top": [[" \u2013", "\u2013", ".", ",", "s", "o", "y", ";"], [" \u2013", "\u2013", "s", "\u2013and", "\u2013\u2013", ",", ".\u2013", "sWith"], ["\u2013", " \u2013", ",", "\u2026", ".", ".\u2013", "\u2013and", "\u2026.."], ["auff", "\uff0a\uff0a\uff0a\uff0a", "erias", " milfs", "eits", "erdale", "ielen", "eless"], ["auf", "a", "auss", "ing", "auff", "\u064a\u062f\u064a", "aient", "i\u010d"], ["auf", "aik", "aip", "aat", "kits", "aient", "auff", "\u0438\u0431"], ["a", "\u2026\u2026", "s", "o", "aat", "e", "aft", "\u5728"], ["i\u010d", "aat", "auf", "\u064a\u064b\u0627", "o", "a", "**\u2013", " \r\n"], ["i\u010d", "\u2026\u2026", "\u2026\u201d", "\u2013and", "\u201d:", " [\u2026]", "...\u201d", "sdale"], ["\u2013and", "\u2013\u2013", "\u2013", "i\u010d", "oine", "aft", "eper", "o"], ["o", "a", "l", "y", "e", "s", " \u2013", "i"], [" thru", " anyways", "stuff", " kinda", " goodies", "erator", "i\u010d", "punk"], [" kinda", " anyways", " freaking", " veggies", "o", " REALLY", "erator", "stuff"], [" kinda", " goodies", " REALLY", " folks", " thru", " freaking", " veggies", " anyways"], ["o", " thru", " kinda", " goodies", " folks", " stuff", "l", " pretty"], ["o", " thru", " kinda", "n", " folks", " goodies", "e", "a"], ["a", "o", "n", "e", " folks", "l", "s", "r"], ["o", "a", "n", " tweaking", " folks", " thankfully", " goodies", "e"], ["o", " thankfully", " --", " tweaking", " arguably", "a", " savvy", " kinda"], [" --", "--", "o", " arguably", "a", " thankfully", "e", " tweaking"], ["\n\n", " --", " :", "<|endoftext|>", "a", " arguably", " :\\", " \n\n"], [" :**", " ;;^", " ?**", " :", " tweaking", " :\\", " !**", " :</"], [" --", " :**", " :", " arguably", " tweaking", " :\\", "fully", " ?**"], [" --", " :", " arguably", " :**", " ultimately", "fully", " tweaking", " notably"], ["\n\n", " \n\n", "\r\n\r\n", "  \n\n", " \r\n\r\n", " --", "   \n\n", "\t\n\n"], [" --", " :**", " arguably", " tweaking", " leveraging", " :\\", " :", " overarching"], ["\n\n", " --", " arguably", " :", " leveraging", " tweaking", " :**", " ultimately"], ["\n\n", " \n\n", " arguably", " --", "\r\n\r\n", " ultimately", "  \n\n", " notably"], ["\n\n", " \n\n", " leveraging", " arguably", "\r\n\r\n", "  \n\n", " foundational", " tweaking"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", " leveraging", "   \n\n", " \r\n\r\n", " \n  \n"], ["\n\n", " \n\n", "  \n\n", " :", " ultimately", " --", "\r\n\r\n", " :\\"], ["\n\n", " \n\n", "  \n\n", "<|endoftext|>", " :", "\r\n\r\n", " --", " \u2018"], [" :", "\n\n", " :\\", " :**", ":\\", "  \n\n", " leveraging", " priorit"], ["  \n\n", " \n\n", "<|endoftext|>", "\n\n", " leveraging", " :**", "\r\n\r\n", " strategy"], [" :**", " :", "  \n\n", " leveraging", ":**", "__:", ":\\", " :\\"], ["\n\n", " \n\n", "  \n\n", " :", "<|endoftext|>", " :**", " leveraging", "\u201d:"], [" leveraging", " strategy", " Strategy", " strategically", "  \n\n", "\n\n", " leverage", " :"], [" strategy", " leveraging", " Strategy", " strategically", " strategic", " strategies", " leverage", " :"], [" strategy", " Strategy", " leveraging", " strategically", " strategic", " strategies", " redesign", " pragmatic"], [" strategy", " Strategy", " leveraging", " strategies", " strategic", " strategically", " redesign", "\u7b56\u7565"], [" strategy", " Strategy", " leveraging", " strategies", " redesign", " strategic", "\u7b56\u7565", " strategically"], [" strategy", " Strategy", " strategies", " leveraging", " redesign", " strategic", " restructuring", " strategically"], [" strategy", " Strategy", " leveraging", " redesign", " strategies", " restructuring", " strategic", " strategically"], [" strategy", " Strategy", " leveraging", " strategies", " redesign", " restructuring", " strategic", " implementation"], [" strategy", " Strategy", " leveraging", " redesign", " strategies", " restructuring", " strategic", " implementation"], [" strategy", " Strategy", " leveraging", " strategies", " redesign", " strategic", " restructuring", " pragmatic"], [" Strategy", " strategy", " leveraging", " strategies", ":\\", " Strategic", " restructuring", " strategic"], [" Strategy", " leveraging", " strategy", " Survival", " Strategic", " Hybrid", " Solutions", ":\\"], [" Strategy", " leveraging", " strategy", " Survival", " Strategic", " Solutions", " workaround", "\u7b56\u7565"], [" Strategy", " leveraging", " Survival", " strategy", " workaround", " Solutions", " Strategic", " Strategies"], [" Strategy", "\u5177\u4f53\u63aa\u65bd", " Survival", "\u7b56\u7565", "\u7684\u7b56\u7565", " Strategies", " Tactical", " Strategic"], [" Strategy", "\u5177\u4f53\u63aa\u65bd", " Implementation", " specifics", "\u6280\u672f\u65b9\u6848", " Solutions", " Tactics", "\u89e3\u51b3\u65b9\u6848"], [" Strategy", "\u5177\u4f53\u63aa\u65bd", " Implementation", "\u6280\u672f\u65b9\u6848", " Reality", " pragmatic", "\u7b56\u7565", "\u52a1\u5b9e"], [" Strategy", " Implementation", " Reality", "\u6280\u672f\u65b9\u6848", "\u89e3\u51b3\u65b9\u6848", " pragmatic", "\u52a1\u5b9e", " Solutions"], [" Implementation", "\u52a1\u5b9e", " Reality", " pragmatic", " Solutions", " Fixes", " Survival", "\u89e3\u51b3\u65b9\u6848"], ["\u91cd\u6784", " Implementation", " Retrofit", "\u52a1\u5b9e", " Revised", " Architecture", " Reality", " pragmatic"], ["\u91cd\u6784", " Implementation", " Architecture", " Retrofit", "\u52a1\u5b9e", " Reality", " Tactical", " pragmatic"], [" Architecture", "\u91cd\u6784", " Fixes", " Reality", " Implementation", "\u52a1\u5b9e", " Tactical", " Retrofit"], [" Architecture", " Architect", "Architecture", "\u91cd\u6784", " architectural", " architecture", "architecture", " Tactical"], [" Architecture", " Python", " Architect", " architectural", " strict", " architecture", " ruthless", " Strict"], [" Architecture", " Python", " Architect", " Survival", " architectural", " ruth", " ruthless", " strict"], [" The", " Python", "The", " Architecture", "Python", " Architect", " Survival", "Architecture"], ["The", " The", "Python", "Re", "Strict", "the", "Hard", " Python"]], "p": [[0.9538, 0.0326, 0.0064, 0.0039, 0.0013, 0.0004, 0.0004, 0.0003], [0.8559, 0.1158, 0.0033, 0.0033, 0.001, 0.0005, 0.0004, 0.0004], [0.8776, 0.0386, 0.03, 0.0161, 0.0076, 0.0067, 0.0067, 0.0059], [0.0069, 0.0061, 0.0057, 0.0051, 0.0048, 0.0042, 0.0039, 0.0037], [0.0623, 0.0623, 0.0294, 0.0202, 0.0157, 0.0157, 0.0157, 0.0157], [0.0175, 0.0164, 0.0145, 0.0136, 0.0136, 0.0083, 0.0083, 0.0078], [0.1602, 0.0589, 0.0459, 0.0315, 0.0278, 0.0262, 0.0191, 0.0191], [0.1101, 0.0204, 0.0169, 0.0116, 0.0116, 0.0102, 0.0102, 0.0102], [0.0802, 0.0244, 0.0148, 0.0148, 0.0131, 0.0131, 0.0102, 0.0102], [0.0221, 0.0208, 0.0172, 0.0046, 0.0036, 0.0028, 0.0026, 0.0026], [0.5893, 0.109, 0.0401, 0.0276, 0.0189, 0.0157, 0.013, 0.013], [0.0095, 0.0079, 0.0079, 0.0069, 0.0069, 0.0065, 0.0045, 0.0042], [0.0774, 0.0415, 0.0184, 0.0173, 0.0173, 0.0152, 0.0105, 0.0098], [0.1312, 0.0453, 0.0426, 0.0243, 0.0189, 0.0178, 0.0157, 0.0138], [0.0714, 0.0491, 0.0433, 0.0337, 0.0204, 0.0192, 0.018, 0.0141], [0.0732, 0.0368, 0.0223, 0.021, 0.0197, 0.0174, 0.0153, 0.0144], [0.1166, 0.1096, 0.0753, 0.0429, 0.0295, 0.0203, 0.0148, 0.0148], [0.0717, 0.0463, 0.036, 0.015, 0.011, 0.0103, 0.0103, 0.0097], [0.0229, 0.0178, 0.0168, 0.0168, 0.0158, 0.0139, 0.0131, 0.0102], [0.1259, 0.0219, 0.0181, 0.017, 0.0141, 0.0117, 0.0097, 0.0091], [0.2165, 0.0426, 0.0189, 0.0138, 0.0138, 0.0122, 0.0101, 0.0089], [0.0952, 0.0146, 0.0121, 0.01, 0.0057, 0.0057, 0.0054, 0.0054], [0.0624, 0.0551, 0.0277, 0.0131, 0.007, 0.0066, 0.004, 0.0035], [0.0844, 0.0242, 0.0129, 0.0074, 0.0061, 0.0048, 0.0042, 0.0042], [0.2358, 0.1262, 0.0494, 0.0436, 0.041, 0.0219, 0.011, 0.0076], [0.0208, 0.0196, 0.0119, 0.0092, 0.0087, 0.0064, 0.006, 0.0041], [0.0157, 0.013, 0.0122, 0.0108, 0.0095, 0.0084, 0.0074, 0.0051], [0.5343, 0.0283, 0.0161, 0.0134, 0.0098, 0.0056, 0.0046, 0.0036], [0.3599, 0.0404, 0.0295, 0.0216, 0.0168, 0.0123, 0.0075, 0.0062], [0.4336, 0.218, 0.1595, 0.0131, 0.009, 0.0066, 0.0058, 0.0055], [0.7361, 0.0776, 0.0252, 0.0196, 0.0044, 0.0036, 0.0036, 0.0032], [0.648, 0.0774, 0.0469, 0.0152, 0.0098, 0.0082, 0.0068, 0.0046], [0.222, 0.1433, 0.0411, 0.0249, 0.0234, 0.0161, 0.0142, 0.0104], [0.213, 0.1558, 0.1006, 0.0888, 0.0573, 0.0136, 0.0128, 0.012], [0.1691, 0.1026, 0.0402, 0.0402, 0.0377, 0.0354, 0.0276, 0.0276], [0.2719, 0.2399, 0.1455, 0.0535, 0.0325, 0.0269, 0.0238, 0.0153], [0.287, 0.0992, 0.0322, 0.0303, 0.0284, 0.0208, 0.0195, 0.0162], [0.2387, 0.1641, 0.0935, 0.0285, 0.0222, 0.0222, 0.0143, 0.0135], [0.3633, 0.1423, 0.0811, 0.0263, 0.0247, 0.0247, 0.0117, 0.0103], [0.5012, 0.1844, 0.0466, 0.0234, 0.0183, 0.0161, 0.0142, 0.0125], [0.5341, 0.1965, 0.0467, 0.0266, 0.0172, 0.0118, 0.0111, 0.0076], [0.6423, 0.1265, 0.0362, 0.032, 0.0234, 0.0125, 0.0092, 0.0063], [0.5789, 0.0888, 0.0475, 0.0419, 0.037, 0.0254, 0.0164, 0.0083], [0.5295, 0.1719, 0.0632, 0.0384, 0.0264, 0.0103, 0.0086, 0.008], [0.5469, 0.1383, 0.0509, 0.0309, 0.029, 0.0137, 0.0107, 0.0069], [0.4081, 0.1701, 0.0855, 0.0245, 0.0216, 0.0168, 0.014, 0.0109], [0.369, 0.1975, 0.0727, 0.0208, 0.0152, 0.0126, 0.0105, 0.0105], [0.454, 0.1078, 0.0894, 0.0146, 0.0137, 0.0114, 0.01, 0.01], [0.4219, 0.0941, 0.0941, 0.0154, 0.0144, 0.012, 0.012, 0.0082], [0.4259, 0.0509, 0.0449, 0.0226, 0.0212, 0.0176, 0.0146, 0.0137], [0.4502, 0.0347, 0.0326, 0.0211, 0.0136, 0.0099, 0.0082, 0.0077], [0.2097, 0.1272, 0.0342, 0.0284, 0.0267, 0.0208, 0.0183, 0.0152], [0.3074, 0.0534, 0.0502, 0.0471, 0.0416, 0.0237, 0.0237, 0.0237], [0.1253, 0.0809, 0.0714, 0.063, 0.0359, 0.0298, 0.0298, 0.0263], [0.1015, 0.0743, 0.0543, 0.0374, 0.0374, 0.0374, 0.033, 0.031], [0.1002, 0.0733, 0.0608, 0.0608, 0.0392, 0.0392, 0.0325, 0.0287], [0.0925, 0.0816, 0.072, 0.0527, 0.0465, 0.0362, 0.034, 0.022], [0.0952, 0.0742, 0.051, 0.0479, 0.045, 0.0423, 0.0397, 0.029], [0.7492, 0.029, 0.02, 0.0137, 0.01, 0.01, 0.0094, 0.0083], [0.3777, 0.1389, 0.0511, 0.0398, 0.033, 0.0177, 0.0177, 0.0177], [0.3235, 0.0927, 0.0637, 0.0466, 0.0283, 0.0249, 0.022, 0.0207], [0.4588, 0.1688, 0.0797, 0.0797, 0.0332, 0.013, 0.0095, 0.0089], [0.9159, 0.0586, 0.0074, 0.0062, 0.0027, 0.0016, 0.0007, 0.0005]], "ranks": {"Python": [15320, 101244, 22115, 167561, 46302, 46695, 5737, 31009, 20530, 17941, 3133, 20167, 11419, 18006, 8603, 45565, 54804, 57884, 56673, 67488, 42640, 109351, 107937, 102902, 51888, 101628, 82727, 46686, 45067, 19970, 19350, 13306, 13166, 11066, 14699, 4436, 3817, 5140, 3773, 1725, 2053, 2924, 3506, 7185, 5417, 5186, 10725, 5379, 13136, 23613, 35245, 6239, 9177, 6273, 5734, 19, 10, 12, 30, 2, 2, 2, 3]}}, {"pos": 480, "top": [[".", " \u2013", ",", "\u2013", "<|endoftext|>", "\u00a0", ";", " "], [" \u2013", "\u2013", "\u2013and", " Very", "  \n", " \u2013,", ".", " very"], [" \u2013", "\u2013", ".", ",", "[", "\u2018", "\u2026", "\u2013and"], [" milfs", " Shemale", "aruhi", "-------------</", " Guta", "TRGL", "----------</", " Strec"], ["@$", ":@", " (@", " @", "(@", " @$", "\uff20", "=@"], ["\uff01", "emble", "\uff1f", " \uff0c", "\uff1a", " \uff1a", "\u96f6", "wine"], ["\uff06", "\uff01", "\u2018", "\uff1f", "\uff08", "\u4e2d", "   \n", "\u7684"], ["   \n", "       \n", " \n \n", " \n    \n", "     \n", " \n", "\uff06", "   \n\n"], ["   \n\n", " \n\n", " \n    \n", " \n\n\n", "   \n", "    \n\n", "\uff06", "  \n\n"], ["  \n  \n", "\u00a0", "\\-", " \\@", "   \n", "\\\\\"", " busted", " yummy"], ["\u00a0", " \n", " @", "...", " \\\"", "...\\", " \\@", "   \n"], [" \\\"", " busted", " Philly", " veggies", " goodies", " comfy", " \\\"$", " freaking"], [" vibe", " freaking", " veggies", " Philly", " vibes", " comfy", " busted", "idere"], [" vibe", " freaking", " busted", " Philly", " goodies", " veggies", " vibes", "-esque"], [" Philly", " busted", " vibe", " savvy", " \\\"", " goodies", " vibes", " combo"], [" busted", " savvy", " goodies", " folks", " Aussie", " incredibly", " amazing", " vibe"], [" savvy", " busted", "-esque", " folks", " vibe", " goodies", " crunch", " showcase"], [" savvy", " busted", " crunch", "-esque", " Philly", " vibe", " goodies", " Aussie"], [" savvy", " busted", " crunch", "-esque", " tweaks", " Philly", " Aussie", " goodies"], [" savvy", "...", " crunch", " busted", "-esque", " incredibly", " truly", " folks"], [" savvy", " busted", "<|endoftext|>", " crunch", " myriad", " truly", " tweaking", "-esque"], [" savvy", " crunch", " busted", " tweaks", " backstory", " tweaking", " freaking", " goodies"], [" savvy", " crunch", " busted", " tweaks", " \\\"", " tweaking", " backstory", " smarter"], [" --", " savvy", " busted", " crunch", " \\\"", " tweaking", " tweaks", " &#"], [" busted", "\n\n", " savvy", " \n\n", " &#", " crunch", " --", "   \n\n"], [" busted", " crunch", " savvy", " tweaks", " tweaking", " backstory", " tweak", " gritty"], [" busted", " crunch", " savvy", " tweaks", " tweaking", " strategy", " gritty", " backstory"], ["\n\n", " strategy", " savvy", " --", " busted", " crunch", " tweaking", " \n\n"], [" strategy", " savvy", " tweaks", " crunch", " busted", " tweaking", " leveraging", " tech"], ["  \n\n", " strategy", " \n\n", "\n\n", " tweaks", "   \n\n", " savvy", " leveraging"], ["\n\n", " \n\n", " strategy", " @", "  \n\n", " \\\"", " #", " --"], [" strategy", " \u2018", " truly", " key", " \\\"", " @", " incredibly", " '"], [" strategy", " \\\"", " key", " strategic", " core", " truly", " ultimately", " Strategy"], [" strategy", " tech", " leveraging", " Strategy", " tweaks", " leverage", " strategic", "  \n\n"], [" strategy", " Strategy", " tech", " tweaks", " leveraging", " leverage", " roadmap", " strategic"], [" strategy", " Strategy", " tech", " leveraging", " roadmap", "  \n\n", " tweaks", " workaround"], [" strategy", " Strategy", " tech", " leveraging", " leverage", " workaround", " tweaks", "\u7b56\u7565"], [" strategy", " Strategy", " workaround", " tech", "\u7b56\u7565", " Solution", " tweaks", " leverage"], [" strategy", " Strategy", " Solution", " workaround", " solution", "\u7b56\u7565", "\u89e3\u51b3\u65b9\u6848", " Solutions"], [" strategy", " Strategy", "\u7b56\u7565", " workaround", " Solution", " tech", " strategies", " redesign"], [" strategy", " Strategy", " Solution", " tech", "\u7b56\u7565", " workaround", " Tech", " redesign"], [" strategy", " Strategy", " redesign", " strategies", " workaround", "\u7b56\u7565", " Solution", " solution"], [" strategy", " Strategy", " redesign", " solution", " workaround", " strategies", " blueprint", " Solution"], [" strategy", " Strategy", " workaround", " redesign", " Solution", " solution", " Hybrid", " blueprint"], [" strategy", " Strategy", " solution", " workaround", " redesign", " Hybrid", " Solution", " blueprint"], [" strategy", " Strategy", " Hybrid", " redesign", " Solution", " workaround", " solution", " Blueprint"], [" Strategy", " strategy", " Hybrid", " workaround", " Solution", " Blueprint", " solution", " Strategic"], [" Strategy", " strategy", " Hybrid", " Solution", " workaround", " Blueprint", " Solutions", " Strategic"], [" Strategy", " Hybrid", " workaround", " strategy", " Solution", " Blueprint", " Reality", " Pivot"], [" Strategy", " workaround", " Hybrid", " strategy", " Survival", " Solution", " Blueprint", " Reality"], [" Strategy", " Hybrid", " workaround", "\u7b56\u7565", " Blueprint", " Solution", "\u89e3\u51b3\u65b9\u6848", " Retrofit"], [" workaround", " Strategy", " Hybrid", "\u89e3\u51b3\u65b9\u6848", "\u7b56\u7565", " Blueprint", " Solution", " Implementation"], [" Strategy", " workaround", "\u7b56\u7565", " Reality", "\u52a1\u5b9e", " pragmatic", " Hybrid", " Prag"], [" workaround", " Strategy", "\u52a1\u5b9e", " Reality", " pragmatic", "\u89e3\u51b3\u65b9\u6848", " Hybrid", " Prag"], [" workaround", "\u89e3\u51b3\u65b9\u6848", " Reality", " Hybrid", "\u52a1\u5b9e", " Survival", " Solution", " Fixes"], [" workaround", " Hybrid", "\u91cd\u6784", " Reality", "\u52a1\u5b9e", " Survival", " Retrofit", " refactor"], [" workaround", " Reality", " Hybrid", "\u52a1\u5b9e", " Retrofit", "\u91cd\u6784", " Survival", " Architecture"], [" Fixes", " Reality", " Architecture", " Plan", " workaround", " Fix", "\u52a1\u5b9e", " Survival"], [" Architecture", " Architect", " Fixes", " Reality", " Survival", "\u67b6\u6784", " Hybrid", " Fix"], [" Architecture", " Plan", " Architect", " Survival", " Reality", " Python", " Fixes", " architecture"], [" Architecture", " Survival", " Architect", " Reality", " Plan", " Python", " architecture", " architectural"], [" Architecture", " Python", " Survival", " Plan", " Architect", " Reality", " \"", " Fix"], [" Architecture", " Plan", " Python", " Architect", " Re", " Hybrid", " Hard", " \""]], "p": [[0.4698, 0.3659, 0.1048, 0.0182, 0.0142, 0.0125, 0.0049, 0.003], [0.9188, 0.0158, 0.0031, 0.0011, 0.0008, 0.0007, 0.0005, 0.0005], [0.6352, 0.2648, 0.046, 0.0116, 0.0062, 0.0062, 0.004, 0.0038], [0.0035, 0.0029, 0.002, 0.0019, 0.0019, 0.0019, 0.0018, 0.0017], [0.0353, 0.0214, 0.0189, 0.0138, 0.0138, 0.0138, 0.0122, 0.0122], [0.0154, 0.0068, 0.0041, 0.003, 0.0029, 0.0025, 0.0024, 0.002], [0.0615, 0.0423, 0.0423, 0.0329, 0.0329, 0.0309, 0.0291, 0.0273], [0.1546, 0.0304, 0.0286, 0.0237, 0.0153, 0.0119, 0.0119, 0.0105], [0.2431, 0.1779, 0.084, 0.0789, 0.0654, 0.0542, 0.0479, 0.0273], [0.0171, 0.0161, 0.0142, 0.011, 0.0076, 0.0063, 0.0059, 0.0059], [0.0723, 0.0467, 0.0321, 0.0301, 0.0283, 0.0207, 0.0195, 0.0195], [0.0089, 0.0079, 0.007, 0.0065, 0.0058, 0.0058, 0.0058, 0.0042], [0.0106, 0.0099, 0.0093, 0.0093, 0.006, 0.0047, 0.0039, 0.0037], [0.0402, 0.0333, 0.0259, 0.0244, 0.0178, 0.0139, 0.013, 0.0108], [0.0691, 0.0419, 0.0394, 0.0254, 0.0198, 0.0198, 0.0113, 0.0083], [0.0459, 0.0296, 0.0204, 0.018, 0.0131, 0.0116, 0.0096, 0.009], [0.0642, 0.0344, 0.0196, 0.0196, 0.0162, 0.0135, 0.0119, 0.0105], [0.0741, 0.0256, 0.0212, 0.0165, 0.0155, 0.0146, 0.0137, 0.0114], [0.0769, 0.0387, 0.0341, 0.0283, 0.0081, 0.0072, 0.0072, 0.0067], [0.0476, 0.0255, 0.0255, 0.0225, 0.0164, 0.0154, 0.0154, 0.0113], [0.0137, 0.0121, 0.01, 0.0069, 0.0065, 0.0061, 0.0054, 0.005], [0.0211, 0.0198, 0.0164, 0.0106, 0.0053, 0.0047, 0.0044, 0.0037], [0.0286, 0.0252, 0.0252, 0.0119, 0.006, 0.006, 0.0047, 0.0044], [0.0209, 0.0153, 0.0153, 0.0119, 0.0077, 0.006, 0.006, 0.005], [0.0358, 0.0296, 0.0296, 0.0217, 0.0204, 0.0169, 0.0159, 0.0159], [0.0518, 0.0404, 0.0379, 0.023, 0.0179, 0.0148, 0.0096, 0.0079], [0.0357, 0.0296, 0.0245, 0.0123, 0.0116, 0.0096, 0.008, 0.0066], [0.0652, 0.0187, 0.0155, 0.0155, 0.0145, 0.0121, 0.0094, 0.0088], [0.0458, 0.0261, 0.0179, 0.0179, 0.014, 0.0123, 0.0096, 0.0096], [0.0684, 0.0603, 0.047, 0.0303, 0.0173, 0.0135, 0.0135, 0.0126], [0.1538, 0.0389, 0.0303, 0.0303, 0.0173, 0.0152, 0.0098, 0.0077], [0.028, 0.0205, 0.0181, 0.017, 0.0124, 0.0124, 0.0085, 0.0085], [0.0413, 0.0322, 0.0134, 0.0092, 0.0076, 0.0072, 0.0067, 0.0056], [0.1254, 0.0359, 0.0247, 0.0232, 0.0192, 0.0181, 0.0159, 0.015], [0.184, 0.0465, 0.0386, 0.0206, 0.0194, 0.0194, 0.0161, 0.0118], [0.2651, 0.151, 0.0337, 0.0132, 0.0124, 0.0124, 0.0124, 0.0116], [0.3782, 0.1576, 0.031, 0.0257, 0.02, 0.0177, 0.0138, 0.0107], [0.3619, 0.2487, 0.0217, 0.014, 0.0109, 0.0096, 0.0085, 0.0085], [0.4397, 0.3022, 0.0181, 0.0133, 0.011, 0.0086, 0.0076, 0.0063], [0.5133, 0.3114, 0.0121, 0.0078, 0.0078, 0.0061, 0.0057, 0.0054], [0.5203, 0.3156, 0.0108, 0.0084, 0.0079, 0.0079, 0.0065, 0.0065], [0.6681, 0.2169, 0.009, 0.007, 0.0045, 0.0042, 0.004, 0.004], [0.6549, 0.1461, 0.0186, 0.0082, 0.0082, 0.0082, 0.0064, 0.0064], [0.5502, 0.2294, 0.0177, 0.0138, 0.0101, 0.0078, 0.0074, 0.0069], [0.5813, 0.1665, 0.0137, 0.0128, 0.0121, 0.0121, 0.0083, 0.0073], [0.3586, 0.2465, 0.0378, 0.0123, 0.0108, 0.0108, 0.009, 0.009], [0.3574, 0.2456, 0.0484, 0.0312, 0.0148, 0.0095, 0.0058, 0.0054], [0.3174, 0.1031, 0.0968, 0.0314, 0.023, 0.0109, 0.0109, 0.007], [0.3322, 0.1013, 0.0789, 0.0614, 0.0226, 0.0129, 0.0094, 0.0069], [0.2777, 0.1158, 0.0796, 0.0228, 0.0201, 0.0147, 0.013, 0.013], [0.4046, 0.0703, 0.0483, 0.0312, 0.0201, 0.0138, 0.0095, 0.0095], [0.2891, 0.1754, 0.0535, 0.0324, 0.0269, 0.0237, 0.0144, 0.0119], [0.2895, 0.1368, 0.0688, 0.0503, 0.0346, 0.0223, 0.0174, 0.0163], [0.2198, 0.0861, 0.0714, 0.0556, 0.0337, 0.0263, 0.0247, 0.0232], [0.2308, 0.1024, 0.0904, 0.0661, 0.0515, 0.0484, 0.0354, 0.0333], [0.1009, 0.0837, 0.0786, 0.0694, 0.0694, 0.0477, 0.0448, 0.0371], [0.1737, 0.0929, 0.0771, 0.0639, 0.0498, 0.0467, 0.0387, 0.0364], [0.2879, 0.0935, 0.0728, 0.0533, 0.0415, 0.0366, 0.0303, 0.0303], [0.8898, 0.0185, 0.0144, 0.0144, 0.0068, 0.006, 0.0041, 0.0034], [0.7131, 0.0752, 0.0456, 0.0456, 0.0148, 0.0108, 0.007, 0.0062], [0.6916, 0.0936, 0.0442, 0.0222, 0.0222, 0.0184, 0.0056, 0.0047], [0.5515, 0.2952, 0.0353, 0.0189, 0.0167, 0.0074, 0.0037, 0.0035], [0.5429, 0.1069, 0.1069, 0.0347, 0.027, 0.0186, 0.0164, 0.0164]], "ranks": {"Python": [26182, 134914, 140221, 200182, 54027, 57255, 15457, 88078, 50540, 40048, 8037, 16925, 9217, 7168, 3302, 15683, 28977, 12259, 33680, 43352, 23644, 43793, 35806, 35520, 38755, 26613, 26277, 15396, 17070, 10584, 11318, 11895, 12605, 8444, 11795, 4168, 2758, 3482, 2352, 1222, 1227, 1876, 1930, 2867, 2289, 2235, 3427, 1664, 3362, 6208, 8757, 2369, 3809, 3747, 2606, 28, 20, 37, 62, 6, 6, 2, 2]}}, {"pos": 481, "top": [["\u2013", ",", ".", " \u2013", " \u200b\u200b", "s", " ", ";"], [" \u200b\u200b", " (\"", "ness", " \u0218", " Savior", "tures", " \u2013", "alyzer"], ["\u2013", " \u200b\u200b", "\u2013and", ",", " \u2013", "\u2014\"", " (\"", "\u2026.."], [" Blowjob", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " \u041a\u0440\u0430\u0441\u0438", " Shemale", "anceled", "Canceled", " Guta", " Pubbl"], [" \u200b\u200b", " Vapor", "neighbor", "anceled", "Canceled", " offense", "avior", " vapor"], [" \u200b\u200b", "avior", "favorite", "neighbor", " Vapor", "anceled", "\u7fe1", "gray"], [" \u200b\u200b", "Canceled", "anceled", "-\"", "favorite", " canceled", "ynec", "avior"], [" \u200b\u200b", "Canceled", "anceled", "ighbors", "avior", " canceled", "crap", "-color"], [" \u200b\u200b", "Canceled", "#\"", "anceled", "avior", "ighbors", " #\"", "neighbor"], ["Canceled", "avior", "-tech", "-\"", "anceled", "#\"", "-color", "+\""], ["-tech", " \u200b\u200b", "Canceled", "avior", " flavor", "-color", " #\"", " flavors"], ["avior", " flavors", " Blowjob", "anceled", " flavor", "Canceled", "crap", "ographics"], ["avior", " flavors", "Canceled", " flavor", "anceled", " Flavor", " Savior", "ighborhood"], ["Canceled", "-tech", " Savior", " flavor", " flavors", " Flavor", "avior", " vibe"], [" flavor", " trivia", " theater", " favorite", " vibe", "Canceled", " Savior", "-tech"], ["-esque", "-tech", " flavor", " Flavor", " trivia", " Savior", " flavors", " buzz"], ["-esque", " savvy", " vibe", "-tech", " buzz", " \"", " tech", " Magic"], ["-tech", " Magic", "-esque", " savvy", " vibe", " buzz", " tech", " tweaks"], [" Magic", "-tech", "-esque", " buzz", " savvy", " flashy", " freaking", " magic"], [" buzz", " savvy", "-esque", " Magic", " flashy", " Big", "-tech", " trivia"], [" Magic", " Big", "-esque", " buzz", " \"", " savvy", " flashy", " Dream"], [" Magic", " buzz", " flashy", " savvy", " scary", " freaking", " Big", " \\\""], [" Magic", " Big", " buzz", " big", " flashy", " savvy", " \\\"", " smarter"], [" Big", " \"", " big", " \\\"", " Magic", " Black", " buzz", " savvy"], [" savvy", " \\\"", " tech", "-tech", " flashy", "-esque", " buzz", " folks"], [" savvy", " tech", " smarter", " buzz", " flashy", "-tech", " freaking", " vibe"], [" tech", " savvy", " buzz", " flashy", "-tech", " big", " smarter", " trivia"], [" tech", " big", " savvy", " Big", " buzz", " Magic", " Black", " flashy"], [" tech", " savvy", " Big", " Magic", " flashy", " Tech", " Black", " buzz"], [" \\\"", " tech", " Big", " Black", " Magic", " Tech", " big", " strategy"], [" \\\"", " Big", " Black", " big", " \"", " tech", " strategy", " @"], [" \\\"", " Big", " Black", " big", " \"", " hard", " \u201c", " Red"], [" \\\"", " Black", " Big", " fake", " tech", " \"", " big", " hard"], [" tech", " fake", " Tech", " hardcore", " weird", " tweaks", " crazy", " tweak"], [" tech", " Tech", " fake", " weird", " Strategy", " tweak", " smarter", " hardcore"], [" tech", " Tech", " Strategy", "  \n\n", " Hybrid", "-tech", " WTF", " weird"], [" tech", " Tech", " Strategy", " weird", " Hybrid", " pragmatic", " fake", " smarter"], [" Strategy", " Tech", " tech", " Hybrid", " fake", " weird", " Trick", " Magic"], [" Strategy", " Tech", " tech", " Hybrid", " weird", " fake", " hybrid", " Magic"], [" Tech", " Strategy", " Hybrid", " tech", " fake", " weird", " hybrid", " Magic"], [" Tech", " tech", " Strategy", " Hybrid", " fake", " hybrid", " weird", " Trick"], [" Strategy", " tech", " Tech", " Hybrid", " strategy", " fake", " hybrid", " Trick"], [" Hybrid", " Strategy", " hybrid", " tech", " fake", " Tech", " Trick", " strategy"], [" Hybrid", " Strategy", " hybrid", " workaround", " hacks", " Tech", " fake", " Magic"], [" Hybrid", " hybrid", " workaround", " hacks", " Strategy", " fake", " loophole", " strategy"], [" \\\"", " Hybrid", " hybrid", " fake", " Strategy", " workaround", " Fake", " weird"], [" Hybrid", " Strategy", " workaround", " fake", " hybrid", " Fake", " loophole", " Trick"], [" Hybrid", " \\\"", " Strategy", " Fake", " workaround", " Trick", " fake", " Hidden"], [" Hybrid", " Fake", " workaround", " loophole", " Strategy", " Reality", " fake", " Trick"], [" Hybrid", " workaround", " Fake", " Trick", " loophole", " Survival", " Reality", " Strategy"], [" Hybrid", " loophole", " workaround", "+\"", " Fake", " Trick", " Dual", " Survival"], [" Hybrid", " workaround", " Trick", " Fake", " loophole", " Pure", "-safe", " Reality"], [" Hybrid", " Trick", " Fake", " workaround", " Reality", " pragmatic", "\u52a1\u5b9e", " Dual"], [" Fake", " Hybrid", " Trick", " Reality", " Cheat", " cheat", "fake", "Fake"], [" Hybrid", " Fake", " Trick", "\u52a1\u5b9e", " Cheat", " Reality", " cheat", " hybrid"], [" Hybrid", " Python", " Hardcore", "\u52a1\u5b9e", " Pure", " Cheat", " Sanity", " sane"], [" Python", " Hybrid", " Hardcore", " Pure", " Cheat", " Prag", "Python", " Sanity"], [" Cheat", " Python", " Hybrid", " cheat", " Trick", " Prag", "\u4f5c\u5f0a", " Reality"], [" Cheat", " Hybrid", " cheat", " Python", " Trick", " Kernel", " Prag", " Nuclear"], [" Python", " Cheat", " Tight", " cheat", "Python", " python", " Hardcore", " Hybrid"], [" Python", " Pure", " Cheat", " Tight", " cheat", " Hardcore", " Thin", "Python"], [" Python", "Python", " Cheat", " python", "python", " Pure", "-python", " Thin"], ["Python", "Pure", "Hard", " Python", "Thin", "C", " Pure", "Py"]], "p": [[0.3846, 0.1707, 0.0858, 0.0757, 0.0554, 0.0336, 0.0132, 0.0124], [0.0329, 0.0057, 0.005, 0.0039, 0.0031, 0.0031, 0.0027, 0.0027], [0.7626, 0.1032, 0.043, 0.0066, 0.0055, 0.0026, 0.0026, 0.0021], [0.0052, 0.0038, 0.0038, 0.0028, 0.0028, 0.0022, 0.0019, 0.0018], [0.019, 0.0131, 0.0108, 0.0074, 0.0062, 0.0058, 0.0055, 0.004], [0.1099, 0.0048, 0.0038, 0.0035, 0.0029, 0.0021, 0.0019, 0.0018], [0.0491, 0.028, 0.0192, 0.0124, 0.0091, 0.0075, 0.0059, 0.0059], [0.0785, 0.0225, 0.0175, 0.0155, 0.0155, 0.0083, 0.0078, 0.0069], [0.1294, 0.0145, 0.012, 0.0106, 0.0094, 0.0047, 0.0042, 0.0039], [0.0096, 0.0084, 0.007, 0.0062, 0.0054, 0.0048, 0.0037, 0.0035], [0.0294, 0.0202, 0.0108, 0.009, 0.0074, 0.007, 0.0066, 0.0058], [0.0067, 0.0055, 0.0046, 0.004, 0.0031, 0.0031, 0.0025, 0.0023], [0.0095, 0.0057, 0.0048, 0.0035, 0.0033, 0.0033, 0.0031, 0.0027], [0.0047, 0.0037, 0.0034, 0.0032, 0.003, 0.0027, 0.0022, 0.0021], [0.0063, 0.0055, 0.0049, 0.0046, 0.0043, 0.004, 0.0038, 0.0036], [0.0043, 0.0038, 0.0036, 0.0033, 0.0033, 0.0033, 0.0033, 0.0033], [0.0162, 0.0152, 0.0126, 0.0126, 0.0098, 0.0072, 0.0056, 0.0056], [0.023, 0.0139, 0.0139, 0.0123, 0.0123, 0.0108, 0.007, 0.007], [0.019, 0.0179, 0.0148, 0.0131, 0.0123, 0.0079, 0.0055, 0.0042], [0.0149, 0.0116, 0.0109, 0.0109, 0.0075, 0.0058, 0.0058, 0.004], [0.0132, 0.0091, 0.0059, 0.0059, 0.0055, 0.0049, 0.0043, 0.0029], [0.0072, 0.0067, 0.0056, 0.0049, 0.0044, 0.0032, 0.003, 0.0028], [0.0131, 0.0102, 0.008, 0.0066, 0.0066, 0.0066, 0.0062, 0.0033], [0.0139, 0.0139, 0.0079, 0.0079, 0.0075, 0.007, 0.0055, 0.0051], [0.0324, 0.0184, 0.0119, 0.0105, 0.0099, 0.0093, 0.0072, 0.0064], [0.0201, 0.0178, 0.0115, 0.0108, 0.0108, 0.0108, 0.0079, 0.007], [0.0164, 0.0136, 0.0093, 0.0077, 0.0064, 0.0057, 0.0057, 0.0047], [0.0218, 0.0132, 0.0117, 0.011, 0.0091, 0.008, 0.0075, 0.0062], [0.0247, 0.011, 0.0097, 0.0085, 0.0071, 0.0062, 0.0062, 0.0059], [0.023, 0.0203, 0.0148, 0.0116, 0.0096, 0.007, 0.007, 0.0062], [0.0286, 0.0223, 0.0144, 0.0144, 0.0077, 0.0068, 0.005, 0.005], [0.0207, 0.0195, 0.0161, 0.0111, 0.0104, 0.0063, 0.0046, 0.0046], [0.0278, 0.014, 0.0131, 0.009, 0.0055, 0.0051, 0.0048, 0.0045], [0.0408, 0.0219, 0.016, 0.0097, 0.0086, 0.0071, 0.0067, 0.0067], [0.045, 0.0213, 0.0213, 0.0121, 0.0114, 0.0094, 0.0078, 0.0078], [0.0506, 0.0447, 0.0289, 0.0164, 0.0145, 0.0106, 0.0094, 0.0083], [0.0528, 0.0363, 0.0341, 0.0161, 0.0151, 0.0118, 0.0118, 0.0111], [0.0423, 0.0398, 0.0351, 0.02, 0.0176, 0.0176, 0.0137, 0.0114], [0.0507, 0.0448, 0.0327, 0.0327, 0.0187, 0.0155, 0.0137, 0.0137], [0.0642, 0.0532, 0.0414, 0.0389, 0.0196, 0.0184, 0.0173, 0.0152], [0.0994, 0.0727, 0.0469, 0.0469, 0.0184, 0.0173, 0.0143, 0.0126], [0.0641, 0.0566, 0.0499, 0.0414, 0.0236, 0.0222, 0.0208, 0.0143], [0.0819, 0.0387, 0.0363, 0.025, 0.025, 0.022, 0.0195, 0.0183], [0.0974, 0.046, 0.0279, 0.0231, 0.0169, 0.0159, 0.0132, 0.0116], [0.1036, 0.0521, 0.0316, 0.0316, 0.0246, 0.0246, 0.0169, 0.0159], [0.1074, 0.1074, 0.0349, 0.0199, 0.0199, 0.0145, 0.0094, 0.0094], [0.1486, 0.0426, 0.04, 0.0275, 0.0189, 0.0177, 0.0122, 0.0108], [0.1539, 0.0389, 0.0343, 0.0236, 0.0143, 0.0134, 0.0134, 0.0134], [0.1278, 0.0303, 0.0252, 0.0236, 0.0209, 0.0173, 0.0173, 0.0162], [0.0999, 0.0569, 0.0345, 0.0305, 0.0269, 0.0253, 0.0174, 0.0127], [0.1033, 0.0357, 0.0335, 0.0217, 0.0217, 0.0203, 0.0131, 0.0131], [0.1748, 0.106, 0.0304, 0.0184, 0.0144, 0.0112, 0.0105, 0.0082], [0.1006, 0.0506, 0.0506, 0.0475, 0.0475, 0.0271, 0.0198, 0.0164], [0.1563, 0.1217, 0.0693, 0.0371, 0.024, 0.0165, 0.0145, 0.0128], [0.6282, 0.0377, 0.0178, 0.0102, 0.0095, 0.009, 0.0079, 0.0074], [0.4956, 0.1039, 0.017, 0.0159, 0.0132, 0.0124, 0.0117, 0.0117], [0.3947, 0.3074, 0.0144, 0.0127, 0.0119, 0.0093, 0.0072, 0.0064], [0.2516, 0.196, 0.1189, 0.0817, 0.0265, 0.0161, 0.0151, 0.0118], [0.4079, 0.091, 0.0626, 0.0552, 0.0335, 0.0278, 0.0216, 0.0216], [0.6808, 0.1044, 0.0339, 0.0248, 0.0125, 0.0117, 0.011, 0.0081], [0.6041, 0.0678, 0.0678, 0.0301, 0.0171, 0.0133, 0.0111, 0.0111], [0.7856, 0.0535, 0.0324, 0.0135, 0.0127, 0.0127, 0.0077, 0.0056], [0.819, 0.0632, 0.0338, 0.0193, 0.0055, 0.0046, 0.0043, 0.0031]], "ranks": {"Python": [16099, 73805, 100468, 166218, 69156, 91767, 11200, 30253, 34271, 31846, 6613, 23029, 18362, 17160, 6279, 7198, 8473, 4746, 8133, 13739, 6397, 7450, 5796, 7053, 5417, 4382, 4379, 3532, 4277, 3216, 4763, 6261, 5852, 3127, 2913, 563, 189, 211, 171, 62, 57, 88, 112, 204, 308, 552, 826, 400, 892, 2034, 3560, 234, 451, 306, 138, 2, 1, 2, 4, 1, 1, 1, 1]}}, {"pos": 482, "top": [[" \u2013", "\u2013", ",", ".", "a", "<|endoftext|>", " ", "\u00a0"], [" \u2013", "\u2013", " \u2013,", "\u2013and", ".", "[@", ",", ".\u2013"], [" \u2013", "\u2013", " \u2013,", "\u2013and", ".", ".\u2013", ",", "\u3002"], ["\uff0d\uff0d", "-------------</", "erio", "\uff1a<", "aikan", "\uff0a\uff0a\uff0a\uff0a", " **\u3010", "\uff01\","], [" Python", " *@", " (@", " @", "\uff20", " @}", " \"@", "@g"], [" \").", " Python", "-grey", "insip", "ing", "\u5f20\u5bb6\u754c", " Debian", "\uff01\","], [" Python", "ting", ".py", " Django", " ......", " \"\"\"", "\uff01", "-python"], [".py", " Python", "\uff01\",", "/python", ".python", "ting", "naire", " Django"], [".py", " Python", "/python", "naire", "\uff01\",", " Django", " ......", "\u00b4s"], [",", "-esque", "-style", " Python", ".py", "/py", "naire", "/python"], ["-esque", " Python", "-style", ".py", " \\\"", "Python", "...\"", "......"], ["-esque", " Python", "/python", ".py", "naire", " \\\"", "-style", " PYTHON"], ["-esque", " Python", "naire", "-style", " \\\"", "/python", "ian", "izer"], ["-esque", "-style", " Python", "naire", "-ish", "ian", "-American", " \\\""], ["-esque", " \"", "-style", " \\\"", " Python", " '", " just", " classic"], ["-esque", " \"", " just", " back", "-style", " classic", " ", " \u00ad"], ["-esque", "-style", " Python", "ian", "-ish", "naire", "ically", " savvy"], ["-esque", "-style", " Python", "naire", "-ish", "-python", " savvy", "ically"], ["-esque", " Python", "-style", "...\"", "...\",", "-python", "-ish", "ically"], ["-esque", "ically", "-style", " Python", "naire", "ian", "icity", " &#"], ["-esque", " \n\n", "   \n\n", " \r\n\r\n", "  \n\n", " \n  \n", "  \n  \n", " \n\n\n"], ["-esque", " PYTHON", "/python", " ``", " Python", " \u03cc\u03bb\u03b5", "-python", " '''"], [" ``", "-esque", " Python", " ''", " PYTHON", "``", " \\\"", " '''"], [" ``", " ''", " Python", "-esque", " \\\"", " PYTHON", " --", "ically"], ["-esque", " \n\n", " Python", " \r\n\r\n", " ...\\", "Python", "/python", " PYTHON"], [" Python", "/python", " PYTHON", " python", "Python", "-python", "-esque", ".py"], [" Python", " PYTHON", " python", "/python", "-python", "Python", "-esque", ".py"], [" \n\n", "\n\n", " ...\\", " ...", " __", " Python", " --", " \r\n\r\n"], [" Python", " \n\n", "-esque", " python", " PYTHON", "/python", "Python", "-python"], [" ____", " __", " ______", " Python", " ...\\", " \n  \n", "____", " python"], [" __", " Python", " \\\"", " ____", " python", " ______", " \n  \n", " @"], [" @", " '", " \\\"", " ", " Python", " -", " ...", " only"], [" \\\"", " @", " '", " ...", " hybrid", " Python", " ?", " ...\""], ["-centric", "-esque", "/python", " tech", " Python", " python", " ecosystem", " \r\n\r\n"], ["-centric", "-esque", "/python", " \r\n\r\n", "<|object_ref_end|>", " \n    \n", " Python", " python"], ["-centric", " ...\"", " \u2026", " Python", "\u2014but", "-esque", " \ud83d\ude09", "\u2026\""], ["-centric", "-esque", " Python", "/python", "-compatible", "\u2014but", " leveraging", "-ish"], ["-centric", " Python", "-esque", " workflows", "-compatible", "/python", " \ud83d\ude09", "-ish"], [" Python", "-centric", " workflows", "-compatible", " leveraging", " python", "-esque", "/python"], [" Python", "Python", "/python", " python", "-centric", "-python", " PYTHON", "\u2011"], [" Python", "Python", " python", "/python", " tech", "-python", "-centric", " software"], [" Python", " software", "-centric", " tech", " programming", " scripting", "Python", " philosophy"], [" Python", " programming", "-centric", " software", " interoper", " scripting", "-compatible", " philosophy"], ["-centric", "-only", "-compatible", " Python", " interoper", " ecosystem", " frameworks", " programming"], ["-centric", "-only", " ecosystem", " frameworks", " framework", "-compatible", " Python", " workflows"], [" \\\"", "-only", "-centric", " \"", " ecosystem", "\"", "\\\"", " framework"], ["-only", " \\\"", "-centric", " \"", " ecosystem", "-ish", " \u201d", " framework"], ["-only", "-centric", "-ish", "\"", " ONLY", " \\\"", " ecosystem", " \""], ["-only", "-centric", "-ish", "\"", " ecosystem", "-but", "-compatible", " ONLY"], ["-only", "-ish", "-centric", "-but", "-compatible", "+\"", " ecosystem", "-friendly"], ["-only", "-ish", "-centric", "-compatible", "+\"", "-Compatible", "-friendly", "-esque"], ["-only", "-compatible", "-centric", "-ish", "-Compatible", "-exclusive", "-friendly", "+\""], ["-only", "-compatible", "-centric", "-ish", "-Compatible", "-exclusive", "-friendly", " Only"], ["-only", "-compatible", "-ish", "-centric", "-Compatible", "-friendly", "-safe", "-native"], ["-only", "-compatible", "-ish", "-centric", "-Compatible", " Backend", "-native", "-safe"], ["-only", "-first", "-centric", "-ish", "-compatible", " wrapper", " Wrapper", " Backend"], ["-only", "-first", "-centric", " wrapper", " Wrapper", "-compatible", "-native", "-ish"], ["-only", "-first", "-centric", "-native", "-compatible", "-ish", " wrapper", " Only"], ["-only", " Only", "-native", "-first", " Wrapper", "-centric", " wrapper", "-ish"], ["-only", " Only", " Wrapper", " wrapper", "-first", "-native", "-centric", " wrappers"], ["-only", "-first", " Only", " Wrapper", " wrapper", "-native", "-ish", "-centric"], ["-only", "-first", "-native", " Only", " Wrapper", "\"", "-ish", " First"], ["-", "\"", "-only", "-C", "-\"", "\"-", "-first", "-W"]], "p": [[0.7733, 0.1344, 0.056, 0.0234, 0.0046, 0.002, 0.0009, 0.0009], [0.8033, 0.1087, 0.0353, 0.0157, 0.0033, 0.0027, 0.0023, 0.0017], [0.7037, 0.2589, 0.0165, 0.0047, 0.0042, 0.0037, 0.0037, 0.0004], [0.0066, 0.0048, 0.0038, 0.0038, 0.0035, 0.0033, 0.0031, 0.0031], [0.0384, 0.0339, 0.0339, 0.0299, 0.0206, 0.0117, 0.0103, 0.0086], [0.0047, 0.0029, 0.0029, 0.0021, 0.0019, 0.0018, 0.0018, 0.0018], [0.1079, 0.0329, 0.0273, 0.0121, 0.0114, 0.0114, 0.0094, 0.0083], [0.0514, 0.0483, 0.0115, 0.0101, 0.0101, 0.0101, 0.0079, 0.0074], [0.0409, 0.0233, 0.0141, 0.0133, 0.011, 0.0103, 0.0091, 0.0081], [0.1217, 0.0349, 0.0113, 0.0106, 0.0094, 0.0057, 0.0047, 0.0047], [0.2358, 0.1523, 0.0526, 0.0362, 0.0171, 0.011, 0.0091, 0.0086], [0.1613, 0.0263, 0.0132, 0.011, 0.0067, 0.0059, 0.0059, 0.0059], [0.2192, 0.0204, 0.0124, 0.0124, 0.008, 0.007, 0.0043, 0.004], [0.6209, 0.0187, 0.005, 0.0031, 0.0019, 0.0017, 0.0016, 0.0015], [0.3267, 0.0568, 0.0209, 0.0087, 0.0064, 0.006, 0.0053, 0.0053], [0.2867, 0.0322, 0.0063, 0.0056, 0.0049, 0.0049, 0.0046, 0.0044], [0.8354, 0.0056, 0.0023, 0.0022, 0.0018, 0.0017, 0.0017, 0.0017], [0.8176, 0.0103, 0.0055, 0.0024, 0.0022, 0.0012, 0.0011, 0.0011], [0.9251, 0.0023, 0.002, 0.0016, 0.0013, 0.0013, 0.0011, 0.001], [0.7095, 0.0054, 0.0042, 0.004, 0.0035, 0.0031, 0.0029, 0.0029], [0.1544, 0.088, 0.0367, 0.0367, 0.0268, 0.0196, 0.0184, 0.0173], [0.031, 0.0166, 0.0101, 0.0095, 0.0069, 0.0051, 0.0048, 0.0031], [0.1765, 0.061, 0.0475, 0.0475, 0.0394, 0.0224, 0.0128, 0.0128], [0.2049, 0.1167, 0.0802, 0.0429, 0.0216, 0.0102, 0.0075, 0.007], [0.1226, 0.0955, 0.0897, 0.0616, 0.0544, 0.0511, 0.0291, 0.0274], [0.4037, 0.1485, 0.0959, 0.0582, 0.0546, 0.0426, 0.0228, 0.0138], [0.4211, 0.0883, 0.0779, 0.0646, 0.0392, 0.0269, 0.0253, 0.021], [0.3424, 0.1832, 0.0674, 0.0559, 0.0493, 0.0361, 0.0219, 0.0193], [0.163, 0.1439, 0.0412, 0.0412, 0.0412, 0.0321, 0.0283, 0.0266], [0.1233, 0.1158, 0.096, 0.0796, 0.0483, 0.0454, 0.0332, 0.0243], [0.1389, 0.1151, 0.0698, 0.0656, 0.0374, 0.031, 0.0213, 0.0146], [0.0567, 0.0441, 0.0389, 0.0303, 0.0173, 0.0173, 0.0135, 0.0112], [0.1354, 0.0195, 0.0195, 0.0195, 0.0152, 0.0152, 0.0118, 0.0104], [0.0508, 0.0478, 0.0396, 0.0308, 0.0165, 0.0155, 0.0113, 0.0113], [0.0477, 0.0448, 0.0308, 0.0289, 0.0225, 0.0155, 0.0137, 0.0128], [0.0565, 0.0531, 0.0388, 0.0183, 0.0162, 0.0152, 0.0134, 0.0118], [0.1121, 0.0302, 0.0266, 0.025, 0.0152, 0.0134, 0.0098, 0.0086], [0.0532, 0.0389, 0.0196, 0.0162, 0.0143, 0.0126, 0.0111, 0.0105], [0.0824, 0.0267, 0.0173, 0.0162, 0.0119, 0.0112, 0.0105, 0.0098], [0.2959, 0.0514, 0.0275, 0.0259, 0.0201, 0.0101, 0.0095, 0.0089], [0.5507, 0.0793, 0.0201, 0.0147, 0.0147, 0.0114, 0.0101, 0.0079], [0.3345, 0.0275, 0.0275, 0.0242, 0.0242, 0.0214, 0.0189, 0.0156], [0.1272, 0.0468, 0.044, 0.0364, 0.0322, 0.025, 0.0235, 0.0183], [0.0931, 0.0565, 0.0302, 0.0284, 0.0208, 0.0195, 0.0195, 0.0183], [0.1069, 0.069, 0.0393, 0.0369, 0.0254, 0.0198, 0.0175, 0.0154], [0.1839, 0.1346, 0.0597, 0.0495, 0.0249, 0.0182, 0.0142, 0.0104], [0.1736, 0.1439, 0.0638, 0.0364, 0.025, 0.0207, 0.0152, 0.0142], [0.586, 0.0545, 0.0188, 0.0147, 0.0147, 0.0147, 0.0107, 0.0089], [0.7865, 0.0444, 0.0392, 0.0093, 0.0053, 0.005, 0.0034, 0.0027], [0.7956, 0.0449, 0.0308, 0.0308, 0.0113, 0.0033, 0.002, 0.002], [0.9772, 0.0096, 0.0045, 0.0031, 0.0005, 0.0005, 0.0003, 0.0003], [0.9465, 0.0173, 0.0153, 0.0093, 0.0015, 0.0009, 0.0006, 0.0006], [0.9615, 0.0137, 0.0121, 0.0073, 0.0011, 0.0003, 0.0003, 0.0003], [0.8019, 0.1085, 0.0452, 0.0242, 0.0045, 0.0009, 0.0008, 0.0007], [0.876, 0.0436, 0.034, 0.0142, 0.0046, 0.0014, 0.0012, 0.0012], [0.8347, 0.113, 0.0135, 0.0119, 0.0093, 0.003, 0.0023, 0.001], [0.9184, 0.0356, 0.0216, 0.0043, 0.0035, 0.0024, 0.0023, 0.0021], [0.9432, 0.0323, 0.0092, 0.0022, 0.0017, 0.0015, 0.0015, 0.0012], [0.9381, 0.0195, 0.0118, 0.0104, 0.0026, 0.0026, 0.0023, 0.0012], [0.7834, 0.0568, 0.0366, 0.0366, 0.0153, 0.0119, 0.0072, 0.006], [0.7952, 0.0478, 0.0308, 0.024, 0.024, 0.0121, 0.0057, 0.0054], [0.7509, 0.0843, 0.0351, 0.0241, 0.0114, 0.0074, 0.0061, 0.0045], [0.9672, 0.0107, 0.0058, 0.0023, 0.002, 0.0015, 0.0009, 0.0007]], "ranks": {"Python": [963, 1129, 930, 45, 1, 2, 1, 2, 2, 4, 2, 2, 2, 3, 5, 9, 3, 3, 2, 4, 9, 5, 3, 3, 3, 1, 1, 6, 1, 4, 2, 5, 5, 5, 7, 4, 3, 2, 1, 1, 1, 1, 1, 4, 7, 13, 30, 41, 80, 280, 306, 920, 1210, 1179, 110, 219, 49, 59, 120, 113, 251, 1342, 1225]}}, {"pos": 483, "top": [[" \u2013", "\u2013", ".", ",", "\u00a0\u00a0", "\u00a0", "-", " "], [" \u2013", "\u2013", "\u2013and", " \u2013,", " old", " Hyper", "  \n\n", " Pro"], [" \u2013", "\u2013", "\u2013and", " \u2013,", " \u200b\u200b", "\u2026..", "\u2026.", "\u200b\u200b"], [" Hidal", " milfs", " Blowjob", " Shemale", "----------</", "-------------</", " Fortal", "odle"], [" Hidal", "odal", "gris", " Depor", "boarding", "insip", " Zer", "ities"], ["boarding", "iously", " Hidal", "ities", "odal", "gris", "boards", "board"], ["ities", "\u00a0", "\u0928\u094d\u0926\u094d\u0930", "\u00b4t", "istic", "\u00ad", "ors", "\u00a0\u00a0"], ["ities", "hood", "\u6027\u7684", "enticate", "iser", "boarding", "ners", "ighbour"], ["ities", "enticate", "athon", "\u00adi", "hood", "iser", " \u00ad", "ners"], [" \u00ad", "ities", " Hidal", "enticate", "\u00ad", "ised", "hood", "\u00adi"], ["er", "ities", " \u00ad", "able", "ful", "hood", "enticate", "less"], ["ities", "enticate", "er", "athon", "stuff", "lessly", "ive", "ible"], ["enticate", "ities", "lessly", "hood", "stuff", "oids", "er", "less"], ["stuff", "enticate", "hood", "lessly", "ities", "ality", "less", "er"], [" \u00ad", "\u00ad", "er", "ably", " \ufffd", "ful", "fully", "istic"], [" \u00ad", "er", "\u00ad", "ful", " -", "ities", "istic", "ably"], ["er", "less", "ality", "ful", "ities", "istic", "able", "way"], ["er", "ball", "less", "hood", "istic", "way", "ality", "ful"], ["hood", "lessly", "ality", "ities", "istic", "oid", "enticate", "way"], ["hood", "lessly", "oid", "ality", "istic", "ful", "enticate", "oids"], ["hood", "lessly", "ful", "fully", "ably", "oid", "istic", "ous"], [" \u03cc\u03bb\u03b5", "lessly", "hood", "enticate", "grily", " autobio", " Hidal", "astically"], ["lessly", "enticate", "hood", "ality", " \u03cc\u03bb\u03b5", "izable", "istic", "ically"], ["ably", "fully", "lessly", "able", "ful", "ality", "ning", "ically"], ["ably", "ality", "lessly", "hood", "ically", " &#", "fully", "able"], ["lessly", "hood", "izable", "ality", "enticate", "grily", "ably", "istically"], ["hood", "ality", "ably", "lessly", "izable", "ically", "able", " hacker"], ["ably", " \n\n", " _", " -", "fully", " --", "able", "ically"], ["ably", "able", " tech", "ically", "hood", " hacker", " -", "fully"], ["able", " -", "ably", " tech", "ically", " _", " ________", "ality"], [" -", "able", "ably", " complex", " '", " tech", " _", " core"], [" -", " complex", " '", " even", "able", " long", " hybrid", " core"], [" -", " \"", " complex", " hybrid", "able", " even", " core", "ably"], ["\u2011", "-centric", " tech", "able", " hybrid", "\\-", "-core", "ably"], ["\u2011", " \r\n\r\n", "able", "-centric", "  \n\n", " \n\n\n\n", "ably", "-but"], ["\u2011", "  \n\n", " \n\n", " \n\n\n\n", "-centric", "ably", "able", "<|object_ref_end|>"], ["\u2011", "-centric", "ably", " \n\n\n\n", "-core", "izable", "-but", "able"], ["\u2011", "-centric", " tech", "-but", " -", "-tech", " ONLY", "-compatible"], ["\u2011", "-centric", "-compatible", "-safe", " compliant", " ONLY", "izable", "-but"], ["\u2011", " compliant", "-centric", "-compatible", " ONLY", "\u5408\u89c4", "-safe", "\u5408\u6cd5"], [" compliant", "\u2011", "-only", " ONLY", "-safe", " tech", "-centric", "-tech"], [" compliant", "-only", "-safe", " strict", "-compatible", "-approved", " tech", "\u2011"], [" compliant", "-approved", "-only", "-compatible", "-safe", "\u5408\u89c4", " strict", "-centric"], [" compliant", "-only", " strict", "-approved", " mandated", " Allowed", "\u5408\u89c4", " strictly"], [" compliant", "-only", " strict", "-approved", " mandated", " strictly", " Allowed", " compliance"], ["-only", " compliant", "-approved", " strict", " strictly", " mandated", "-compatible", " compliance"], [" compliant", "-only", "-approved", " strict", " compliance", "\u5408\u89c4", " strictly", "-compatible"], ["-only", " compliant", "-approved", " strict", " strictly", " ONLY", " compliance", " Compliance"], ["-only", "-approved", " compliant", " strict", " mandated", "\u5408\u89c4", "-compatible", "\u4e25\u683c\u9075\u5b88"], ["-only", "-approved", "-but", "-compatible", "-centric", " compliant", "-friendly", "-Compatible"], ["-only", "-compatible", "-centric", "-but", "-Compatible", "-ish", "-approved", "-safe"], ["-only", "-centric", "-compatible", " compliant", "-but", "-ish", "-Compatible", " Only"], ["-only", "-centric", "-compatible", "-ish", " compliant", "-Compatible", "pliant", " Only"], ["-only", "-compatible", "-ish", "-centric", " compliant", "pliant", "-Compatible", "-safe"], ["-only", "-centric", "-compatible", " compliant", "-ish", "pliant", "\u5408\u89c4", "-Compatible"], ["-only", "-first", " Only", "-centric", "only", "ONLY", "Only", "-compatible"], ["-only", "-first", " Only", " compliant", "-centric", "only", "\u5408\u89c4", "Only"], ["-only", " Only", " compliant", "-first", "\u5408\u89c4", "Only", "only", "-centric"], [" Only", "-only", "Only", " compliant", "-first", "\u5408\u89c4", " Compliance", "only"], [" Only", " compliant", "-only", "Only", "only", "-first", "\u5408\u89c4", "pliant"], [" compliant", " Only", "Only", "-only", "only", " only", " First", "-first"], [" Only", " compliant", "Only", "com", "only", " First", " Com", " only"], ["Only", "First", "Com", " Only", " First", "Shell", "ONLY", "only"]], "p": [[0.9552, 0.0186, 0.0113, 0.0011, 0.0009, 0.0009, 0.0008, 0.0006], [0.8039, 0.0376, 0.0018, 0.0015, 0.0009, 0.0007, 0.0006, 0.0005], [0.7633, 0.193, 0.0029, 0.0021, 0.002, 0.0019, 0.0009, 0.0008], [0.0147, 0.0129, 0.0114, 0.0054, 0.0045, 0.0042, 0.0042, 0.0037], [0.0149, 0.0091, 0.0085, 0.0052, 0.0046, 0.0043, 0.0035, 0.0024], [0.0126, 0.0056, 0.0056, 0.0049, 0.0046, 0.003, 0.003, 0.003], [0.1587, 0.0229, 0.0115, 0.0108, 0.0084, 0.0084, 0.0066, 0.0066], [0.1355, 0.0162, 0.0111, 0.0111, 0.0111, 0.0076, 0.0076, 0.0067], [0.097, 0.0335, 0.0216, 0.0179, 0.0149, 0.014, 0.0075, 0.0066], [0.0264, 0.0248, 0.0171, 0.0104, 0.0097, 0.0071, 0.0067, 0.0067], [0.2311, 0.0516, 0.0516, 0.0377, 0.0202, 0.019, 0.0167, 0.0157], [0.0318, 0.0318, 0.0193, 0.0103, 0.0097, 0.0091, 0.0086, 0.008], [0.0236, 0.0068, 0.0063, 0.0056, 0.0056, 0.0049, 0.0046, 0.0046], [0.0067, 0.0062, 0.0062, 0.0059, 0.0055, 0.0052, 0.0052, 0.0046], [0.2035, 0.0312, 0.0228, 0.0101, 0.0089, 0.0074, 0.0065, 0.0058], [0.0762, 0.0318, 0.0218, 0.0181, 0.017, 0.0117, 0.011, 0.0091], [0.0472, 0.0238, 0.0153, 0.0153, 0.0144, 0.0119, 0.0112, 0.0112], [0.0186, 0.0128, 0.0113, 0.01, 0.0083, 0.0083, 0.0073, 0.0068], [0.0222, 0.0098, 0.006, 0.005, 0.005, 0.0044, 0.0041, 0.0039], [0.0214, 0.0177, 0.0114, 0.0107, 0.0065, 0.0054, 0.0048, 0.0048], [0.0426, 0.0312, 0.0243, 0.0201, 0.0147, 0.0138, 0.0101, 0.0095], [0.0057, 0.0057, 0.0054, 0.0054, 0.0042, 0.0037, 0.0027, 0.0024], [0.0149, 0.0085, 0.0085, 0.0075, 0.0051, 0.0051, 0.0045, 0.004], [0.0463, 0.0409, 0.0181, 0.0141, 0.011, 0.011, 0.011, 0.0103], [0.0377, 0.0202, 0.0167, 0.0157, 0.0139, 0.0108, 0.0108, 0.0095], [0.0122, 0.0101, 0.0079, 0.0079, 0.0048, 0.004, 0.004, 0.0037], [0.0156, 0.0138, 0.0095, 0.0089, 0.0089, 0.0065, 0.0061, 0.0054], [0.029, 0.029, 0.0272, 0.0199, 0.0146, 0.0113, 0.01, 0.0094], [0.0193, 0.0124, 0.0103, 0.0097, 0.008, 0.0075, 0.0071, 0.0071], [0.0219, 0.0206, 0.0104, 0.0091, 0.0091, 0.0071, 0.0067, 0.0063], [0.1673, 0.0166, 0.0065, 0.0065, 0.0061, 0.0057, 0.0051, 0.0042], [0.1867, 0.0135, 0.0105, 0.0099, 0.0093, 0.0082, 0.0082, 0.0077], [0.2963, 0.0189, 0.0189, 0.0167, 0.0108, 0.0101, 0.0089, 0.0074], [0.0314, 0.0229, 0.0148, 0.0108, 0.0108, 0.0102, 0.0084, 0.0084], [0.0241, 0.0166, 0.0137, 0.0129, 0.0121, 0.0107, 0.0107, 0.0101], [0.33, 0.0271, 0.0254, 0.0113, 0.0088, 0.0088, 0.0073, 0.0068], [0.1382, 0.0212, 0.0094, 0.0083, 0.0069, 0.0065, 0.0057, 0.0054], [0.1633, 0.0152, 0.0092, 0.0087, 0.0081, 0.0081, 0.0076, 0.0072], [0.0819, 0.0183, 0.0134, 0.0126, 0.0118, 0.0118, 0.0098, 0.0076], [0.1303, 0.0742, 0.0188, 0.0166, 0.0156, 0.0146, 0.0146, 0.0114], [0.0936, 0.0685, 0.0304, 0.0252, 0.0196, 0.0196, 0.0173, 0.0173], [0.2546, 0.0416, 0.0268, 0.0237, 0.0222, 0.0196, 0.0173, 0.0153], [0.3129, 0.0451, 0.0424, 0.0398, 0.031, 0.0213, 0.0188, 0.0121], [0.3573, 0.0661, 0.0583, 0.0427, 0.0293, 0.0228, 0.0189, 0.0157], [0.2813, 0.1706, 0.0972, 0.0381, 0.0336, 0.0262, 0.0231, 0.0204], [0.2964, 0.2309, 0.0661, 0.0661, 0.0243, 0.0178, 0.0148, 0.0148], [0.2535, 0.1538, 0.1125, 0.0566, 0.0267, 0.0251, 0.0195, 0.0173], [0.3066, 0.2107, 0.106, 0.0304, 0.0196, 0.0173, 0.0173, 0.0143], [0.4026, 0.1153, 0.1153, 0.0242, 0.0242, 0.0227, 0.0188, 0.0156], [0.3989, 0.089, 0.0738, 0.0693, 0.0349, 0.0271, 0.0155, 0.0155], [0.9632, 0.0083, 0.0051, 0.0045, 0.0029, 0.0016, 0.0015, 0.0009], [0.9292, 0.0141, 0.0133, 0.0036, 0.003, 0.0025, 0.0025, 0.002], [0.8979, 0.0348, 0.0186, 0.0088, 0.0069, 0.005, 0.0017, 0.0014], [0.6954, 0.1066, 0.0504, 0.0445, 0.0224, 0.0127, 0.0093, 0.0032], [0.8837, 0.0208, 0.0162, 0.0111, 0.0098, 0.0067, 0.0041, 0.0041], [0.8927, 0.0733, 0.006, 0.006, 0.0041, 0.0032, 0.0018, 0.0013], [0.752, 0.0793, 0.0545, 0.0374, 0.0227, 0.0107, 0.0095, 0.0095], [0.7247, 0.0674, 0.0674, 0.0595, 0.0219, 0.015, 0.0117, 0.0071], [0.4373, 0.3406, 0.076, 0.0592, 0.0218, 0.017, 0.008, 0.008], [0.5655, 0.1836, 0.0983, 0.041, 0.016, 0.0142, 0.0076, 0.0076], [0.4715, 0.3241, 0.0321, 0.0221, 0.0221, 0.0161, 0.0161, 0.0111], [0.5449, 0.1216, 0.0693, 0.0476, 0.0371, 0.0255, 0.0175, 0.012], [0.7726, 0.1954, 0.0125, 0.011, 0.002, 0.0005, 0.0003, 0.0003]], "ranks": {"Python": [45795, 219947, 192299, 193212, 87895, 193049, 25710, 76609, 89493, 73810, 19786, 41713, 37501, 41567, 14920, 10197, 11890, 10714, 22997, 28641, 12100, 20888, 4818, 1506, 2280, 2239, 981, 376, 478, 472, 620, 1755, 1787, 3620, 5206, 1398, 1104, 412, 644, 249, 151, 301, 297, 787, 1000, 1017, 1545, 1666, 2334, 3569, 4293, 2990, 3358, 2624, 1202, 1994, 305, 234, 360, 250, 304, 649, 715]}}, {"pos": 484, "top": [[".", "  \n", ",", "?", "o", " ", " \u2013", "!"], ["  \n", " \u2013", " (\u201c", "\u2011", " \u200b", "\uff20", "  \n\n", "\u200b"], ["\u2013", "\u200b", "\u2026", ".", " \u2013", "\u3002", ",", "\u2026\u2026"], [" Blowjob", " milfs", " cumshot", "schrift", "---</", "\uff0a\uff0a\uff0a\uff0a", "eyed", " Busty"], ["\uff20", " @_", "sir", " $#", " (@", " canceled", " @", " CIF"], [" \u200b\u200b", " canceled", "\u0670", ".neighbors", "\u7687\u51a0", " Oops", " Harbor", " stash"], [" \uff08", " @", "\uff01", " OK", "  \n", " $$$", " canceled", "\u0670"], [" @", " @_", " #@", "-ish", "s", "  \n", "   \r\n", "   \n"], ["\uff06", " #@", " @", " <?=", " @_", " \n    \n", " \u2705", " \u200b\u200b"], ["\u0670", "-ish", " stash", " $$$", "@\\", "  \r\n", "   \r\n", " @_"], [" @", " %+", " @_", " ...\\", " stash", " @[", " #@", " \u200b"], [" stash", " %+", "-ish", " upfront", " -->", " reboot", " ____", "yip"], [" stash", " upfront", "-ish", " reboot", " Blowjob", "yip", " safezone", " showcase"], [" stash", "-ish", " reboot", " perks", " booze", " pricey", " tweaks", " upfront"], [" stash", " showcase", " perks", " upfront", " approach", " standalone", "-ish", " reboot"], [" stash", " reboot", " standalone", " upfront", " showcase", " standout", " DIY", " tweaks"], [" stash", " reboot", " DIY", " showcase", " upfront", " perks", " standalone", " tweaks"], [" stash", " approach", " tweaks", " DIY", " upfront", " perks", " showcase", " reboot"], [" stash", " tweaks", " perks", " %+", "-ish", " DIY", " upfront", " ..."], [" %+", " ...", " ...\\", " stash", " tweaks", " --", " perks", " showcase"], [" ...\\", " %+", " ...", " upfront", " --", " #", " perks", " tweaks"], [" Blowjob", " pornstar", " ;;^", " %+", " milfs", " Shemale", " perks", " stash"], [" %+", " ____", " ...\\", " upfront", " ?**", " Blowjob", " ___", " ;;^"], [" ...", " %+", " --", " ...\\", " ,", " options", " ?", " ''"], [" ____", " ...\\", " ___", " ...", " _____", " ______", " _", " <"], [" ____", " ___", " ...\\", " ...", " _____", " _:", " ______", " <!--"], [" ...", " ___", " ____", " ...\\", " _:", " _____", " _", " workspace"], [" ...", " ___", " ____", " ...\\", " _", " _____", " ?", " ______"], [" ____", " ?", " ???", " ___", " tech", " tools", " ...", " hardware"], [" ____", " ?", " ___", " _____", " ???", " ______", " tools", " tech"], [" ?", " ???", " tools", " tech", " strategy", " technology", " hardware", " software"], [" only", " ONLY", " -", " tech", " ?", " hardware", " strategy", " ..."], [" ?", " only", " ONLY", " but", " -", " despite", " ???", " non"], [" ONLY", " BUT", " tech", " frameworks", "\u2014but", " strategy", " technically", " hardware"], [" ONLY", " BUT", "\u2014but", " ???", " technically", " tech", " strategy", " but"], [" ONLY", " BUT", "\u2014but", " ...", " ???", " -", " ?", " technically"], [" ONLY", "\u2014but", " technically", " BUT", " hardware", " tech", " frameworks", " strategy"], [" ONLY", " BUT", " tech", "\u2014but", " technically", " hardware", " loophole", " restrictions"], [" ONLY", "\u2014but", " BUT", " technically", " tech", " hardware", " workaround", " restrictions"], ["\u2011", " ONLY", " tech", " technically", " BUT", "\u2014but", " software", " hardware"], [" ONLY", " technically", " tech", " software", " BUT", " hardware", " programming", " technology"], [" software", " technically", "\u2014but", " tech", " ONLY", " programming", " hardware", " strict"], [" technically", " software", " strict", " strictly", " ONLY", " hardware", " restrictions", " programming"], [" strict", " restrictions", " ONLY", " technically", " strictly", " exclusively", " software", " restriction"], [" strict", " ONLY", " strictly", " restrictions", " restriction", " technically", " policy", " exclusively"], [" strict", " technically", " ONLY", " strictly", " restriction", " restrictions", " policy", " mandated"], [" strict", " technically", " ONLY", " restriction", " strictly", " restrictions", " loophole", " policy"], [" strict", " technically", " ONLY", " strictly", " restriction", " mandate", " policy", " restrictions"], [" strict", " restriction", " loophole", " constraint", " mandated", " mandate", " restrictions", " constraints"], ["-but", " loophole", "-ish", " workaround", " constraint", " strict", " mandated", " constraints"], [" loophole", " workaround", "-ish", " constraint", "-but", " strategy", " Constraint", " compliance"], [" workaround", " loophole", " compliant", "-ish", " strategy", " Compliance", " compliance", " Strategy"], [" loophole", " workaround", "-ish", " Strategy", " Compliance", " compliant", " Constraint", " strategy"], [" loophole", " workaround", "-ish", " compliant", " constraint", " Strategy", " Constraint", " Compliance"], [" loophole", " workaround", " Solution", " constraint", " Constraint", " solution", " Compliance", "\u89e3\u51b3\u65b9\u6848"], [" loophole", " workaround", " Constraint", " constraint", " Compliance", " Solution", " Constraints", " solution"], [" workaround", " loophole", " Compliance", " compliant", " compliance", " Constraint", "\u5408\u89c4", " Solution"], [" workaround", " loophole", " Compliance", " compromise", "\u59a5\u534f", " compliant", " compliance", "\u5408\u89c4"], [" Constraint", " Compliance", " workaround", " loophole", " constraint", " Constraints", " Architecture", " compromise"], [" Ship", " Constraint", " Compliance", " Shipping", " Architecture", " ship", " loophole", " Ships"], [" Ship", " Architecture", " Constraint", " ship", " Compliance", "\"", " Shipping", " loophole"], ["\"", " Architecture", " Compliance", " Ship", " Constraint", " Comp", " Policy", " Strategy"], ["\"", " Architecture", " Ship", " Compliance", "\u201d", " Policy", " Constraint", "\"*"]], "p": [[0.4279, 0.1479, 0.1389, 0.0351, 0.0274, 0.0257, 0.02, 0.0138], [0.1307, 0.0292, 0.0227, 0.0177, 0.0114, 0.0095, 0.0069, 0.0069], [0.2089, 0.1051, 0.0562, 0.0466, 0.0466, 0.0387, 0.0387, 0.0341], [0.0131, 0.0055, 0.0051, 0.0029, 0.0024, 0.0023, 0.0023, 0.0018], [0.0379, 0.0295, 0.0131, 0.0102, 0.0075, 0.007, 0.0062, 0.0058], [0.0098, 0.0049, 0.0046, 0.0039, 0.003, 0.0026, 0.0022, 0.0021], [0.0099, 0.0087, 0.0064, 0.0064, 0.006, 0.0056, 0.0053, 0.0045], [0.0396, 0.0083, 0.0083, 0.0069, 0.0069, 0.0065, 0.0047, 0.0044], [0.0101, 0.0079, 0.0045, 0.0042, 0.0042, 0.0042, 0.0033, 0.0033], [0.0105, 0.0064, 0.0053, 0.0041, 0.0032, 0.003, 0.0028, 0.0028], [0.0208, 0.0196, 0.0153, 0.0153, 0.0135, 0.0119, 0.0119, 0.0105], [0.0089, 0.0069, 0.0065, 0.0037, 0.0035, 0.0033, 0.0031, 0.0029], [0.0092, 0.0046, 0.0044, 0.0025, 0.0024, 0.002, 0.0016, 0.0014], [0.0348, 0.0175, 0.0061, 0.0053, 0.0037, 0.0034, 0.003, 0.003], [0.0083, 0.0068, 0.006, 0.0057, 0.0057, 0.0047, 0.0047, 0.0037], [0.0163, 0.0144, 0.0093, 0.0087, 0.0077, 0.0068, 0.0064, 0.0064], [0.0243, 0.0101, 0.0101, 0.0065, 0.0065, 0.0061, 0.0058, 0.0051], [0.0122, 0.0065, 0.0065, 0.0061, 0.0054, 0.0051, 0.0048, 0.0042], [0.0124, 0.0097, 0.0071, 0.0066, 0.0059, 0.0049, 0.0043, 0.004], [0.0233, 0.015, 0.0133, 0.011, 0.0086, 0.0076, 0.0067, 0.0055], [0.1071, 0.0307, 0.0239, 0.0068, 0.0068, 0.0064, 0.0064, 0.0053], [0.0064, 0.003, 0.003, 0.0027, 0.0025, 0.002, 0.002, 0.0018], [0.0122, 0.0058, 0.0037, 0.0033, 0.0033, 0.0033, 0.0031, 0.0027], [0.108, 0.01, 0.01, 0.0089, 0.0051, 0.0039, 0.0039, 0.0035], [0.3382, 0.1927, 0.1244, 0.0709, 0.023, 0.014, 0.0131, 0.009], [0.1698, 0.1096, 0.0457, 0.0158, 0.0158, 0.0109, 0.0102, 0.0051], [0.0772, 0.0682, 0.0602, 0.0302, 0.0092, 0.0072, 0.0063, 0.006], [0.376, 0.1383, 0.1221, 0.029, 0.0226, 0.0212, 0.0187, 0.0129], [0.0356, 0.0278, 0.0191, 0.014, 0.0123, 0.0116, 0.0102, 0.009], [0.0827, 0.0269, 0.0209, 0.0173, 0.0153, 0.0112, 0.0105, 0.0072], [0.024, 0.0137, 0.0121, 0.01, 0.0094, 0.0088, 0.0078, 0.0069], [0.0197, 0.0163, 0.0153, 0.0153, 0.0135, 0.0093, 0.0087, 0.0087], [0.0897, 0.0843, 0.0451, 0.0351, 0.0291, 0.02, 0.0146, 0.0138], [0.0315, 0.0179, 0.0179, 0.0123, 0.0116, 0.009, 0.009, 0.0085], [0.108, 0.0479, 0.0291, 0.0213, 0.0146, 0.0121, 0.0094, 0.0078], [0.0722, 0.0598, 0.0386, 0.0341, 0.032, 0.0125, 0.0125, 0.0104], [0.0826, 0.0442, 0.0252, 0.0209, 0.0099, 0.0099, 0.0087, 0.0087], [0.0778, 0.0305, 0.0127, 0.0112, 0.0112, 0.0105, 0.0105, 0.0099], [0.0684, 0.0323, 0.0268, 0.0196, 0.0143, 0.0135, 0.0112, 0.0093], [0.0366, 0.0344, 0.0268, 0.0222, 0.0196, 0.0162, 0.0143, 0.0112], [0.0956, 0.0512, 0.0452, 0.0352, 0.0156, 0.0147, 0.0107, 0.0101], [0.0638, 0.0497, 0.0342, 0.025, 0.0221, 0.0161, 0.0152, 0.0134], [0.0734, 0.0608, 0.0224, 0.0198, 0.0186, 0.0164, 0.0154, 0.0136], [0.0578, 0.0451, 0.0451, 0.0351, 0.0273, 0.0241, 0.02, 0.0188], [0.105, 0.0768, 0.0438, 0.0438, 0.0363, 0.032, 0.0182, 0.0151], [0.0857, 0.0627, 0.0554, 0.0357, 0.0336, 0.0246, 0.0191, 0.0149], [0.0709, 0.0626, 0.0335, 0.0335, 0.0335, 0.0245, 0.014, 0.014], [0.0798, 0.0312, 0.0312, 0.0276, 0.0228, 0.0215, 0.0157, 0.0157], [0.0669, 0.0432, 0.0381, 0.0358, 0.0316, 0.0316, 0.0316, 0.0246], [0.1201, 0.0775, 0.0567, 0.0415, 0.0344, 0.0323, 0.0252, 0.0209], [0.3627, 0.1941, 0.0861, 0.0218, 0.0205, 0.0141, 0.011, 0.011], [0.3882, 0.2354, 0.0339, 0.0281, 0.0141, 0.0133, 0.0125, 0.0125], [0.3011, 0.3011, 0.0407, 0.036, 0.0338, 0.0317, 0.0247, 0.0141], [0.5978, 0.2199, 0.0141, 0.0117, 0.0109, 0.0109, 0.0097, 0.008], [0.4953, 0.2651, 0.0232, 0.0218, 0.0204, 0.0204, 0.0116, 0.0109], [0.5694, 0.2374, 0.0302, 0.0207, 0.0104, 0.0098, 0.0076, 0.0072], [0.6425, 0.1841, 0.087, 0.0142, 0.0092, 0.0076, 0.0052, 0.0038], [0.4226, 0.1996, 0.1762, 0.0393, 0.0306, 0.021, 0.021, 0.0154], [0.4033, 0.2159, 0.1155, 0.0701, 0.0331, 0.0258, 0.013, 0.013], [0.3965, 0.1136, 0.1003, 0.0474, 0.0369, 0.0306, 0.0287, 0.0238], [0.4949, 0.0629, 0.0555, 0.0555, 0.0522, 0.0279, 0.0231, 0.0204], [0.4093, 0.1329, 0.1102, 0.0757, 0.0431, 0.0296, 0.0246, 0.009], [0.999, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001, 0.0, 0.0]], "ranks": {"Python": [13527, 86693, 65581, 75924, 10475, 14992, 463, 666, 5238, 41892, 1488, 2483, 5150, 7974, 3004, 5839, 6446, 4580, 6567, 6733, 4522, 12389, 5491, 1292, 1222, 1230, 1204, 717, 696, 1257, 1581, 3920, 7735, 7122, 9043, 1512, 1180, 1188, 969, 89, 66, 107, 182, 488, 631, 660, 931, 1441, 2705, 8659, 17852, 17616, 31644, 28215, 21616, 19604, 11277, 11466, 10403, 10117, 9407, 2786, 1723]}}, {"pos": 485, "top": [[" \u2013", ".", "\u2013", "<|endoftext|>", ",", " ", "\u00a0", "\u00a0\u00a0"], [" \u2013", " \u200b\u200b", "\u2013", "  \n\n", " ", " (\"", "\u2014\"", "\u2014"], ["\u2013", " \u2013", " \u200b\u200b", "\u2026..", "\u2026.", ",", "\u2013and", "."], [" \u041a\u0440\u0430\u0441\u0438", " Blowjob", " Shemale", " Renzi", "\ufffd\ufffd", " Prostitu", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "ellas"], [" \u200b\u200b", " offense", " \"", "\u5730\u4e9a", " \u041a\u0440\u0430\u0441\u0438", "\u2014\"", " Renzi", " \"#"], [" \u200b\u200b", "\u5730\u4e9a", "usting", "ankan", "\u062a\u0631\u0646\u062a", " **\"", "serialization", "endi"], ["  \n\n", " **\"", " \"", " \u200b\u200b", "        \n        \n", "\u2014\"", "\u00e4tz", "   \n"], [" \u200b\u200b", " **\"", "        \n        \n", "ewater", " slogan", "   \n", "\u062a\u0631\u0646\u062a", "\u6d69\u7279"], [" \u200b\u200b", "        \n        \n", " **\"", " lineup", " **\u20ac", " gadgets", "    \n    \n    \n", "\u8303\u513f"], [" pricey", "\u8303\u513f", "\u5473\u513f", "\ufffd\ufffd", " fanc", " lineup", "\u6d3b\u513f", "\u52b2\u513f"], [" \"", " pricey", "\u8303\u513f", " vibe", " lineup", " fancy", " choices", " savvy"], [" pricey", " lineup", " booze", " setups", " savvy", " vibe", "\u8303\u513f", " tweaks"], [" pricey", " savvy", " lineup", " setups", " booze", " tweaks", " choices", " vibe"], [" \"", " savvy", " pricey", " strategy", " tweaks", " style", " choices", " even"], [" \"", " even", " savvy", " approach", " strategy", " choice", " '", " classic"], [" savvy", " \"", " entirety", " arguably", " efforts", " pricey", " approach", " strategy"], [" savvy", " tweaks", " pricey", " strategy", " \"", " tech", " approach", " showcase"], [" tweaks", " savvy", " pricey", " strategy", " approach", " quirky", " tricky", " tech"], [" tweaks", " savvy", " pricey", " quirky", " tricky", " choices", " tweaking", " tweak"], [" pricey", " tweaks", " savvy", " tricky", " myriad", " choices", " tweaking", " hefty"], [" \n\n", "  \n\n", " myriad", " pricey", " truly", " outright", " tweaks", " choices"], [" tweaks", " pricey", " savvy", " choices", " quirky", " outright", " entirety", " strategy"], [" choices", " tweaks", " efforts", " pricey", " savvy", " choice", " truly", " strategy"], [" even", " efforts", " choice", " still", " truly", " just", " choices", " approach"], [" \n\n", "  \n\n", " ___", "   \n\n", " _", " ____", " \n\n\n", "\n\n"], [" ___", " tweaks", " ____", " strategy", " \n\n", " pricey", " choices", " setups"], [" ___", " \n\n", " strategy", " efforts", " tweaks", " choices", " effort", " ..."], [" \n\n", " ...", " ___", " efforts", " arguably", " effort", " strategy", " _"], [" \n\n", " efforts", " strategy", " effort", " arguably", " even", " tweaks", " eventual"], [" \n\n", " efforts", " ...", " strategy", " effort", " even", " approach", " ___"], [" even", " ,", " .", " -", " efforts", " '", " \n\n", " strategy"], [" even", " -", " just", " '", " truly", " \"", " only", " "], [" even", " \"", " only", " truly", " '", " forced", " -", " just"], [" strategy", " truly", " attempts", " efforts", " arguably", " forced", " \u2014", " hybrid"], [" strategy", " hybrid", " truly", " logic", " \"", " forced", " tweaks", " paradox"], [" strategy", " \u2014", " \"", "\u2014but", " workaround", "<|endoftext|>", " tweaks", "  \n\n"], [" strategy", " workaround", " \u2014", " strategies", " loophole", " tweaks", " constraints", " pragmatic"], [" strategy", " workaround", " loophole", " Strategy", " paradox", " solution", " strategies", " tweaks"], [" strategy", " workaround", " solution", " loophole", " Strategy", " paradox", " solutions", " constraints"], [" strategy", " workaround", " Strategy", " loophole", " solution", " strategies", " paradox", " constraints"], [" strategy", " workaround", " Strategy", " solution", " loophole", " strategies", " solutions", " constraints"], [" strategy", " workaround", " solution", " Strategy", " loophole", " strategies", " solutions", " constraints"], [" strategy", " workaround", " solution", " loophole", " strategies", " solutions", " Strategy", " constraints"], [" strategy", " workaround", " loophole", " solution", " solutions", " strategies", " Strategy", " constraints"], [" workaround", " strategy", " loophole", " solution", " solutions", " constraints", " compromise", " paradox"], [" strategy", " workaround", " solution", " loophole", " paradox", " compromise", " solutions", " constraints"], [" workaround", " strategy", " loophole", " paradox", " solution", " compromise", " Strategy", " constraints"], [" workaround", " strategy", " loophole", " Strategy", " solution", " compromise", " paradox", " constraints"], [" workaround", " loophole", " strategy", " Strategy", " constraints", " compromise", " paradox", " solution"], [" workaround", " loophole", " strategy", " Strategy", " paradox", " constraints", " Constraints", " looph"], [" workaround", " loophole", " Strategy", " strategy", "\u89e3\u51b3\u65b9\u6848", " looph", " Constraints", " paradox"], [" workaround", " loophole", " Strategy", " strategy", "\u89e3\u51b3\u65b9\u6848", "\u7b56\u7565", "\u59a5\u534f", " tricks"], [" workaround", " Strategy", " strategy", " loophole", "\u7b56\u7565", "\u89e3\u51b3\u65b9\u6848", "\u59a5\u534f", " Reality"], [" workaround", " loophole", " Strategy", " strategy", "\u89e3\u51b3\u65b9\u6848", " Solution", " compromise", " solution"], [" workaround", "\u89e3\u51b3\u65b9\u6848", " loophole", " Solution", " solution", " Survival", " Strategy", " compromise"], [" workaround", " loophole", " Solution", " Survival", "\u89e3\u51b3\u65b9\u6848", " solution", " compromise", " Reality"], [" workaround", " loophole", " hack", " hacks", " Hack", " Solution", " Survival", " Reality"], [" workaround", " compromise", " hack", " compromises", " loophole", " hacks", "\u59a5\u534f", " Hack"], [" workaround", " compromise", " hack", " loophole", " compromises", "\u59a5\u534f", " hacks", " Solution"], [" workaround", " compromise", " hack", " Survival", " compromises", " Hack", "\u59a5\u534f", " loophole"], [" compromise", " workaround", " Comp", " Survival", " compromises", " Architecture", " Reality", "\u59a5\u534f"], [" Comp", " compromise", " Architecture", " Survival", " workaround", " Compliance", " Reality", " Strategy"], [" Comp", " Architecture", " Work", " Compliance", " Survival", " Reality", " Strategy", " Hack"]], "p": [[0.3295, 0.1877, 0.1657, 0.0735, 0.0446, 0.0394, 0.027, 0.0211], [0.0669, 0.059, 0.0279, 0.0159, 0.0109, 0.0071, 0.0055, 0.0055], [0.6302, 0.1805, 0.0378, 0.0378, 0.0168, 0.0139, 0.009, 0.0075], [0.005, 0.0029, 0.0024, 0.0015, 0.0012, 0.0011, 0.001, 0.001], [0.0029, 0.002, 0.0015, 0.0015, 0.0015, 0.0015, 0.0013, 0.0013], [0.029, 0.0027, 0.0021, 0.0017, 0.0014, 0.0014, 0.0012, 0.0012], [0.0075, 0.0071, 0.0058, 0.0058, 0.0034, 0.0031, 0.0031, 0.0028], [0.0063, 0.0056, 0.0041, 0.003, 0.003, 0.0026, 0.0023, 0.0021], [0.0252, 0.0056, 0.005, 0.0036, 0.0028, 0.0028, 0.0027, 0.0027], [0.0046, 0.004, 0.0036, 0.0023, 0.0022, 0.002, 0.0017, 0.0017], [0.0241, 0.0069, 0.0054, 0.0048, 0.0039, 0.0039, 0.0037, 0.0035], [0.0073, 0.0047, 0.0025, 0.0025, 0.0025, 0.0018, 0.0017, 0.0016], [0.0056, 0.0034, 0.0032, 0.0026, 0.0022, 0.0022, 0.0019, 0.0019], [0.008, 0.0049, 0.0046, 0.0031, 0.0031, 0.003, 0.0023, 0.0022], [0.0785, 0.0094, 0.0088, 0.0057, 0.0057, 0.0047, 0.0044, 0.0042], [0.0159, 0.0132, 0.0091, 0.0066, 0.0062, 0.0052, 0.0046, 0.0046], [0.0204, 0.0132, 0.0096, 0.0055, 0.0055, 0.0052, 0.0046, 0.0035], [0.0277, 0.0216, 0.0096, 0.007, 0.0045, 0.0042, 0.004, 0.004], [0.0562, 0.0301, 0.0182, 0.0104, 0.0081, 0.0071, 0.0067, 0.0063], [0.0375, 0.0353, 0.0214, 0.0089, 0.0089, 0.0084, 0.0084, 0.0084], [0.2812, 0.0554, 0.0131, 0.0124, 0.0075, 0.0058, 0.0055, 0.0055], [0.0175, 0.0128, 0.0083, 0.0073, 0.0039, 0.0037, 0.0034, 0.0034], [0.0147, 0.013, 0.0108, 0.0101, 0.0089, 0.0084, 0.0069, 0.0065], [0.0192, 0.0159, 0.0116, 0.0091, 0.0085, 0.0085, 0.0085, 0.008], [0.7429, 0.0573, 0.0128, 0.0106, 0.0073, 0.0064, 0.0039, 0.0037], [0.0548, 0.0202, 0.0139, 0.0122, 0.0101, 0.0074, 0.0074, 0.007], [0.0162, 0.0152, 0.0126, 0.0111, 0.0105, 0.0087, 0.0087, 0.0076], [0.1348, 0.0341, 0.032, 0.0207, 0.0171, 0.0161, 0.0111, 0.0098], [0.0462, 0.0338, 0.0318, 0.0205, 0.0132, 0.0071, 0.0067, 0.0067], [0.0578, 0.0291, 0.0273, 0.0241, 0.0176, 0.0156, 0.0137, 0.0094], [0.0316, 0.0217, 0.0204, 0.0169, 0.0159, 0.0159, 0.0159, 0.014], [0.0491, 0.0218, 0.0205, 0.0181, 0.0159, 0.0141, 0.0132, 0.0132], [0.0469, 0.0303, 0.0208, 0.0152, 0.0134, 0.0134, 0.0126, 0.0126], [0.0278, 0.0245, 0.0203, 0.0203, 0.0149, 0.014, 0.0109, 0.0102], [0.0605, 0.0153, 0.0135, 0.0105, 0.0099, 0.0093, 0.0093, 0.0087], [0.1382, 0.0449, 0.024, 0.0176, 0.0129, 0.0121, 0.0113, 0.0107], [0.2133, 0.0447, 0.0145, 0.0136, 0.0136, 0.0136, 0.0128, 0.0113], [0.2846, 0.0526, 0.0234, 0.0194, 0.0171, 0.0142, 0.0125, 0.011], [0.2893, 0.1133, 0.0417, 0.0253, 0.0223, 0.0185, 0.0185, 0.0174], [0.3705, 0.1203, 0.0443, 0.0268, 0.0223, 0.0173, 0.0144, 0.0135], [0.3607, 0.1601, 0.0488, 0.038, 0.0191, 0.0191, 0.0169, 0.0149], [0.4528, 0.147, 0.0372, 0.0289, 0.0272, 0.0272, 0.0199, 0.0106], [0.3748, 0.1562, 0.054, 0.0507, 0.0289, 0.0272, 0.0225, 0.012], [0.2604, 0.2298, 0.0746, 0.0425, 0.0228, 0.0201, 0.0189, 0.0177], [0.2176, 0.2176, 0.1028, 0.0664, 0.026, 0.0202, 0.0179, 0.0168], [0.1947, 0.1338, 0.0716, 0.0524, 0.0408, 0.028, 0.0233, 0.0132], [0.2973, 0.1239, 0.08, 0.0313, 0.0276, 0.0215, 0.019, 0.0148], [0.2415, 0.1293, 0.065, 0.0506, 0.0271, 0.0211, 0.0175, 0.0154], [0.3084, 0.2119, 0.1285, 0.0287, 0.0238, 0.0197, 0.0144, 0.0135], [0.511, 0.2414, 0.0539, 0.037, 0.0327, 0.0083, 0.0073, 0.006], [0.7001, 0.2273, 0.0187, 0.0128, 0.0024, 0.0024, 0.0022, 0.002], [0.9491, 0.0153, 0.0119, 0.0082, 0.0039, 0.0009, 0.0006, 0.0005], [0.8857, 0.0566, 0.0236, 0.0126, 0.0041, 0.0028, 0.0012, 0.001], [0.928, 0.028, 0.015, 0.0049, 0.0049, 0.0023, 0.002, 0.0018], [0.9231, 0.0192, 0.0169, 0.009, 0.008, 0.0055, 0.0026, 0.002], [0.9392, 0.0284, 0.0056, 0.0049, 0.0043, 0.0038, 0.003, 0.0016], [0.999, 0.0004, 0.0002, 0.0002, 0.0, 0.0, 0.0, 0.0], [0.9811, 0.0096, 0.0024, 0.0017, 0.0015, 0.0011, 0.0011, 0.0003], [0.9705, 0.0095, 0.0027, 0.0021, 0.0021, 0.0019, 0.0019, 0.0015], [0.6822, 0.1343, 0.0494, 0.0233, 0.0206, 0.0182, 0.0125, 0.011], [0.4526, 0.1887, 0.1469, 0.0694, 0.0289, 0.0225, 0.0176, 0.0155], [0.4706, 0.2223, 0.119, 0.0496, 0.0386, 0.0207, 0.0161, 0.0081], [0.4299, 0.1792, 0.1087, 0.0747, 0.0353, 0.0311, 0.0189, 0.0167]], "ranks": {"Python": [33460, 95834, 114494, 155513, 26394, 36228, 1091, 3974, 6231, 13755, 2544, 4333, 3555, 5221, 5397, 7397, 6487, 6328, 8001, 12341, 10612, 10842, 6213, 7612, 5167, 5899, 4402, 4263, 4251, 4336, 4325, 6547, 9648, 8995, 11054, 6542, 6893, 6348, 6004, 6325, 4908, 6353, 5889, 7786, 7680, 5658, 7908, 8000, 14105, 34713, 85241, 44874, 51898, 49090, 33147, 19073, 16448, 15096, 12259, 8629, 10255, 3590, 2576]}}, {"pos": 486, "top": [[".", " \u00a0", ",", "  \n", "\u00a0\u00a0", " \u2022", "[", "\u00a0"], ["  \n", " \u00a0", "  \n  \n", " \u2022", "   \n", "  \n\n", " \uff08", "ions"], [" \u00a0", "\u2022", " \u2022", "  \n  \n", " \uff08", "\u2026and", "\u201e", "ioni"], [" \u300e", "\uc368", "ions", "IONS", "ierce", "unky", "uliar", "ioni"], [" \u00a0", "ions", " \u2022", " \u25c6", "\uc368", " \u00a0 \u00a0", " \uff08", "ioni"], [" \u00a0", " \u00a0 \u00a0", "  \n", "   \n", "ions", "\u00a0\u00a0", "\u7684", " \uff08"], ["\u7684", " \u00a0", "ioni", "\u5728", " \u00a0 \u00a0", " \u2022", " \u25c6", "   \n"], ["ioni", " \u00a0", " \u25c6", "\u7684", " \u2022", "   \n", "ions", " \u00a0 \u00a0"], ["  \n\n", "   \n\n", "    \n\n", " \u25c6", "   \n", "\u7684", " \u00a0", "ioni"], ["ioni", " \u00a0", "unky", " \u25c6", "  \n  \n", "ions", " **\u2022", " \u00a0 \u00a0"], [" \u00a0", "ioni", " \u25c6", "&nbsp", " \u00a0 \u00a0", "   \n", "  \n  \n", " \u2022"], ["ioni", " **\u2022", "unky", "ions", "uliar", "iances", "ivic", "ilation"], ["ioni", "iances", "unky", "uliar", " **\u2022", "ilation", "ions", "igungs"], ["ioni", "unky", "iances", "uliar", "ions", "ollo", "erson", "ilation"], ["ioni", "akin", "ollo", "ions", "unky", " combo", "erson", "iances"], ["ioni", " pricey", "akin", "\u5468\u906d", "ions", "unky", " akin", " tweaked"], ["ioni", "ions", "akin", " pricey", " akin", "iffe", "\u5468\u906d", "Though"], ["ioni", "ions", "erson", "agn", " pricey", "iffe", "akin", "iances"], ["ioni", "ions", "agn", "erson", "iances", "lop", "romise", "iste"], ["ioni", "riad", "\u2501", "ions", "romise", "ollo", "erson", "unky"], ["  \n\n", "   \n\n", "  \n  \n", "ioni", "Though", "ions", " utterly", "  \n"], [" **\u2022", " **\u25a0", "ioni", "uliar", "ollo", "unky", "iances", "\u2501"], ["ioni", " ``", "ollo", " **\u2022", " **\u25a0", " ---", " \uff1c", "ions"], [" ``", " --", " ''", "ions", "ioni", " arguably", "ifying", "ively"], ["  \n\n", "   \n\n", " --", " ``", " ---", "ioni", " \uff1c", "ions"], [" ___", " **\u25a0", " ---", " -**", " *__", " _____", " **\u2022", " ____"], [" ___", " ``", " ---", " --", " _____", " __", " ____", " **\u25a0"], ["  \n\n", " --", " \n\n", " ___", " ---", "\n\n", " ``", "   \n\n"], ["  \n\n", " --", " \n\n", " ___", " _____", " ---", "   \n\n", " ____"], ["  \n\n", " ___", " _____", " \n\n", " ____", "   \n\n", " __", " \u2026"], ["  \n\n", " \u2026", " ...", " \n\n", " ___", " _____", " \u2014", " ____"], [" \u2014", " ,", " --", " -", " over", " ultimately", " .", " re"], [" ,", " -", " \u2014", " .", " over", " ultimately", " rather", " --"], ["  \n\n", " \n\n", " \u2026", "<|endoftext|>", "   \n\n", " \u2014", "  \n  \n", "    \n\n"], ["  \n\n", "<|endoftext|>", " \u2026", " \n\n", "   \n\n", " leveraging", "    \n\n", " ..."], [" \u2026", "  \n\n", "<|endoftext|>", " \n\n", " [\u2026]", "   \n\n", " \u2026.", "[\u2026]"], ["  \n\n", " \u2026", " leveraging", "   \n\n", " \n\n", " tech", " interoper", " leverage"], [" \u2026", " leveraging", " interoper", "  \n\n", " tech", " leverage", " modular", " flexibility"], [" \u2026", " leveraging", " interoper", " modular", "  \n\n", " leverage", " tech", " flexibility"], [" \u2026", "  \n\n", " [\u2026]", " modular", "\u2026*", " tech", " ...", " leveraging"], [" tech", " \u2026", " modular", " leveraging", " interoper", "  \n\n", " software", " hacker"], [" modular", " tech", " interoper", " leveraging", "  \n\n", " flexibility", " outsourcing", " workflow"], [" modular", " interoper", " tech", " leveraging", " flexibility", " outsourcing", " infrastructure", " scalability"], [" modular", " tech", " interoper", " infrastructure", " scalability", " leveraging", " flexibility", " workflow"], [" modular", " tech", " flexibility", " labs", " scalability", " Modular", " workflow", " infrastructure"], [" modular", " tech", " Modular", " integration", " flexibility", " strategy", " labs", " leveraging"], [" modular", " tech", " integration", " Modular", " flexibility", " strategy", " leveraging", " leverage"], [" leveraging", " strategy", " leverage", " tech", " modular", " Strategy", " integration", " setup"], [" leveraging", " leverage", " Strategy", "-proof", "  \n\n", "-framework", " strategy", "\u7b56\u7565"], [" Strategy", " workaround", "\u7b56\u7565", " Constraints", ":*", "romise", " loophole", " strategy"], [" workaround", "\u59a5\u534f", ".*)", "\u7b56\u7565", " Strategy", " loophole", "*</", "romise"], [" workaround", "\u59a5\u534f", "\u2026*", "romise", ":*", ".*)", "*</", "\u7b56\u7565"], ["\u59a5\u534f", " workaround", "\u7b56\u7565", " Strategy", " compromises", " strategy", "Strategy", "strategy"], [" compromises", "\u59a5\u534f", "romise", "):**", ":**", " workaround", " compromise", " comprom"], ["romise", "\u59a5\u534f", "(comp", " compromises", " compromise", "-comp", " Komp", " workaround"], ["romise", "artment", " workaround", ".:**", "):**", ":**", ":</", "\u59a5\u534f"], ["romise", "artment", " workaround", "\u59a5\u534f", ".:**", "pliance", "pliant", " Compliance"], [" compromise", " compromises", "romise", "\u59a5\u534f", " comprom", " Comp", " Komp", " compromised"], [" compromise", "romise", " compromises", "\u59a5\u534f", " Comp", " comprom", " Komp", " Compliance"], ["romise", " compromise", " compromises", "\u59a5\u534f", " comprom", " compromised", "artment", " compromis"], [" Comp", "Comp", "comp", " Komp", "-comp", " compromise", "romise", "(comp"], [" Comp", "romise", "Comp", " Komp", "comp", " compromise", "-comp", "komp"], ["romise", " Comp", "rom", " Komp", "Comp", "comp", " compromise", "komp"]], "p": [[0.5104, 0.1657, 0.0887, 0.0538, 0.0239, 0.0088, 0.0073, 0.0057], [0.3411, 0.1514, 0.0715, 0.036, 0.0298, 0.0205, 0.0205, 0.0117], [0.2717, 0.0503, 0.0391, 0.0305, 0.0286, 0.0223, 0.021, 0.021], [0.0153, 0.0144, 0.0127, 0.0064, 0.0053, 0.0053, 0.0047, 0.0041], [0.1178, 0.0461, 0.0317, 0.0247, 0.0192, 0.0141, 0.0097, 0.008], [0.6839, 0.0182, 0.0151, 0.0142, 0.0133, 0.0092, 0.0081, 0.0059], [0.0977, 0.081, 0.0382, 0.028, 0.0181, 0.017, 0.0159, 0.0159], [0.0527, 0.032, 0.03, 0.0171, 0.0161, 0.0151, 0.0104, 0.0071], [0.0697, 0.0578, 0.0423, 0.031, 0.0241, 0.02, 0.0166, 0.0107], [0.0187, 0.0107, 0.0078, 0.0061, 0.0057, 0.0047, 0.0045, 0.0045], [0.0449, 0.0422, 0.0256, 0.0114, 0.0088, 0.0088, 0.0088, 0.0083], [0.0357, 0.0096, 0.009, 0.008, 0.007, 0.0055, 0.004, 0.0038], [0.0135, 0.0072, 0.0068, 0.0068, 0.005, 0.005, 0.0047, 0.0034], [0.0207, 0.0151, 0.0059, 0.0056, 0.0041, 0.0034, 0.0034, 0.0026], [0.032, 0.0046, 0.0046, 0.0046, 0.0041, 0.0038, 0.0036, 0.003], [0.0128, 0.0077, 0.006, 0.0053, 0.0053, 0.005, 0.0032, 0.003], [0.0512, 0.0122, 0.0074, 0.0061, 0.0051, 0.0051, 0.0051, 0.0051], [0.0911, 0.008, 0.0055, 0.0038, 0.0035, 0.0029, 0.0028, 0.0028], [0.0801, 0.0115, 0.0045, 0.0045, 0.004, 0.0035, 0.0035, 0.0033], [0.0269, 0.0056, 0.005, 0.0047, 0.0036, 0.0034, 0.0034, 0.003], [0.0534, 0.0209, 0.0196, 0.0163, 0.0127, 0.005, 0.0044, 0.0041], [0.0129, 0.0089, 0.0065, 0.0054, 0.0045, 0.0039, 0.0035, 0.0035], [0.0102, 0.008, 0.007, 0.007, 0.007, 0.0062, 0.0058, 0.0058], [0.0435, 0.0264, 0.011, 0.0091, 0.0091, 0.0063, 0.0055, 0.0052], [0.016, 0.0117, 0.011, 0.0104, 0.0097, 0.0063, 0.0055, 0.0052], [0.0322, 0.0208, 0.0195, 0.0104, 0.0098, 0.0087, 0.0081, 0.0072], [0.0451, 0.0352, 0.0227, 0.0177, 0.0101, 0.0095, 0.0084, 0.0078], [0.1435, 0.1266, 0.1117, 0.0341, 0.0341, 0.0301, 0.0161, 0.0133], [0.1414, 0.059, 0.0431, 0.0358, 0.0262, 0.0246, 0.018, 0.0132], [0.3169, 0.1166, 0.1029, 0.0801, 0.0753, 0.0277, 0.0203, 0.019], [0.1436, 0.0722, 0.0678, 0.0496, 0.0363, 0.0341, 0.025, 0.0161], [0.0879, 0.0501, 0.0268, 0.0222, 0.0173, 0.0135, 0.0127, 0.0093], [0.0818, 0.0466, 0.0466, 0.0363, 0.022, 0.0194, 0.0172, 0.0161], [0.7945, 0.0349, 0.0289, 0.0225, 0.0165, 0.0083, 0.0029, 0.0027], [0.3323, 0.084, 0.045, 0.0309, 0.0212, 0.0094, 0.0061, 0.0042], [0.3462, 0.21, 0.0531, 0.0284, 0.0126, 0.0118, 0.0092, 0.0072], [0.1145, 0.0121, 0.0121, 0.01, 0.0094, 0.0042, 0.0037, 0.0037], [0.0148, 0.0102, 0.0051, 0.0051, 0.0045, 0.0045, 0.0042, 0.004], [0.0625, 0.0123, 0.0062, 0.0051, 0.0048, 0.0043, 0.0043, 0.0035], [0.2255, 0.0305, 0.0163, 0.0153, 0.0112, 0.0112, 0.0082, 0.0077], [0.0597, 0.0362, 0.034, 0.0142, 0.0142, 0.011, 0.0086, 0.0086], [0.1813, 0.038, 0.023, 0.0191, 0.0169, 0.0131, 0.0085, 0.0085], [0.2043, 0.0313, 0.0276, 0.0215, 0.0168, 0.0131, 0.0115, 0.0084], [0.082, 0.0221, 0.0152, 0.0134, 0.0126, 0.0126, 0.0098, 0.0081], [0.1658, 0.0224, 0.012, 0.0094, 0.0088, 0.0088, 0.0078, 0.0078], [0.1614, 0.0181, 0.017, 0.0133, 0.0124, 0.0117, 0.011, 0.0091], [0.0509, 0.0309, 0.0155, 0.0146, 0.0107, 0.0107, 0.0094, 0.0094], [0.0366, 0.0184, 0.0173, 0.0152, 0.0126, 0.0111, 0.0098, 0.0087], [0.0116, 0.0096, 0.008, 0.0062, 0.0058, 0.0055, 0.0055, 0.0051], [0.0515, 0.0376, 0.0376, 0.0228, 0.0167, 0.0139, 0.0139, 0.0122], [0.1293, 0.0506, 0.0289, 0.0289, 0.0289, 0.0225, 0.0211, 0.0198], [0.1481, 0.0424, 0.031, 0.031, 0.0188, 0.0177, 0.0156, 0.0147], [0.21, 0.1056, 0.0726, 0.0499, 0.0302, 0.0267, 0.0251, 0.0251], [0.2196, 0.1938, 0.0629, 0.049, 0.0279, 0.0279, 0.0246, 0.0204], [0.8122, 0.0357, 0.0296, 0.0216, 0.0096, 0.008, 0.007, 0.0058], [0.938, 0.0098, 0.0034, 0.0032, 0.0026, 0.0019, 0.0015, 0.0012], [0.9372, 0.0207, 0.0052, 0.0021, 0.0016, 0.0016, 0.0015, 0.0015], [0.5778, 0.1876, 0.1138, 0.069, 0.0369, 0.0064, 0.0024, 0.0024], [0.3665, 0.3235, 0.1528, 0.119, 0.0161, 0.0125, 0.0022, 0.0022], [0.9101, 0.0659, 0.0115, 0.0079, 0.0016, 0.0009, 0.0006, 0.0003], [0.9316, 0.0464, 0.0103, 0.0063, 0.0023, 0.0012, 0.001, 0.0003], [0.7579, 0.1916, 0.0202, 0.0122, 0.0066, 0.0066, 0.0024, 0.0004], [0.9291, 0.0524, 0.0103, 0.002, 0.0016, 0.0016, 0.0012, 0.0004]], "ranks": {"Python": [27665, 172454, 200004, 208029, 176986, 208436, 176589, 220420, 228295, 221618, 208350, 225184, 225981, 197450, 180944, 196310, 217080, 189148, 205219, 215822, 182968, 219135, 210837, 163616, 171124, 134545, 129715, 50978, 48517, 30764, 20406, 19289, 28683, 28024, 45428, 28554, 33536, 35320, 24409, 13047, 4524, 12649, 19669, 16588, 25067, 23916, 19358, 19434, 42081, 136413, 108851, 55081, 65001, 59883, 97403, 66111, 64321, 50264, 33186, 57620, 62734, 65547, 34243]}}, {"pos": 487, "top": [[".", ",", "\u2013", " \u2013", "<|endoftext|>", ";", " ", "["], [" \u2013", "  \n\n", "  \n  \n", "\u2013", "   \n", "  \n", " \n  \n", "[@"], ["\u2013", " \u2013", "[", "  \n  \n", "\u2013and", ",", "\u2026", "?"], [" ___", " ---", "(___", "\n \n", "\uc3df", "\u0e23\u0e31\u0e21\u0e22\u0e4c", " \"---", " Shemale"], [" ---", " ___", " \n\n\n\n", "  \n  \n", "  \n\n", " \u2019", " \n\n\n\n\n", " #$"], [" ___", " \n\n\n\n", " \n  \n", "  \n  \n", " \uff08", " \u2019", "  \n\n", " \uff0c"], [" ___", "  \n  \n", " ---", "  \n\n", " \n  \n", " \n\n\n\n", "  \n", "\n \n"], [" ___", "  \n  \n", "  \n\n", "  \n", " \n  \n", "\u201a", " \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", " compromise"], [" compromise", " ___", " ---", "\u59a5\u534f", "\n \n", " compromises", " \n  \n", "$__"], [" compromise", " compromises", " consensus", " compromising", " pragmatic", " compromised", "\u59a5\u534f", " arguably"], [" compromise", " arguably", " consensus", " compromises", " strategy", " modest", " pragmatic", " compromised"], [" compromise", " \u2014", " arguably", " modest", " yet", " --", " -", " strategy"], [" \u2014", " compromise", " arguably", " swiftly", " bolster", " ostensibly", " \u2015", " modest"], [" arguably", " \u2014", " compromise", " ultimately", " albeit", " akin", " yet", " bolster"], [" compromise", " \u2014", " arguably", " ultimately", " \u2013", " strategy", " albeit", " hybrid"], [" \u2014", " compromise", " .", " arguably", " -", " --", " ultimately", " ,"], [" \u2014", " --", " arguably", " \n  \n", " compromise", " ultimately", " ,", " -"], [" \n\n", "<|endoftext|>", " \n  \n", "  \n\n", " \u2014", " --", " ,", " \n"], [" compromise", " --", " ---", " ?", " .", " :", " \n  \n", " arguably"], [" --", " ---", " compromise", " \n  \n", " :", " ,", " ?", " ''"], [" --", " ,", " .", " :", " -", " ;", " ?", " compromise"], [" \n\n", " --", "  \n\n", " \n  \n", " ---", " ___", " ?", " ,"], [" ___", " ---", " --", " __", " \n\n", " \n  \n", " compromise", " ?**"], [" ___", " --", " __", " compromise", " ---", " \n\n", " :", " ?"], [" ___", " \n\n", " --", " __", " ---", " ?", "\n\n", "  \n\n"], [" ___", " \n\n", " compromise", " ?", " __", " \n  \n", " --", " ---"], [" ___", " \n\n", " \n  \n", " __", " ?", "  \n\n", " --", " compromise"], [" .", " ,", " ?", " :", " -", " \n\n", " \n  \n", " --"], [" .", " ,", " -", " compromise", " :", " ?", " \u2014", " --"], [" .", " ,", " compromise", " :", " ?", " -", " \u2014", " \n  \n"], [" \n\n", " compromise", "  \n\n", " \u2014", " \n  \n", " pragmatic", " compromises", "\u2014but"], [" compromise", " \n\n", " pragmatic", "  \n\n", " \n  \n", " :", " \u2014", " compromises"], [" \n\n", " \u2014", " :", " compromise", " -", "  \n\n", " ?", " \n  \n"], [" :", " \n\n", " compromise", " \u2014", "  \n\n", " pragmatic", " strategy", " compromises"], [" :", " compromise", " \n\n", " compromises", " pragmatic", "  \n\n", " strategy", " ?"], [" compromise", " :", " compromises", " pragmatic", "  \n\n", " \uff1a", " \n\n", "\u59a5\u534f"], [" compromise", " compromises", " pragmatic", " :", "  \n\n", "\u59a5\u534f", " strategy", "\u2014but"], [" compromise", " compromises", " pragmatic", "\u59a5\u534f", " strategy", " :", ":", " workaround"], [" compromise", " compromises", " pragmatic", "\u59a5\u534f", " :", " strategy", " workaround", " compromised"], [" compromise", " :", " compromises", " pragmatic", " strategy", "\u59a5\u534f", " compromised", " workaround"], [" compromise", " compromises", " :", " workaround", " pragmatic", " strategy", " loophole", "\u59a5\u534f"], [" compromise", " :", " compromises", " workaround", " loophole", " strategy", " pragmatic", " acceptable"], [" :", " compromise", " compromises", " acceptable", " :\\", " strategy", "\u59a5\u534f", " reality"], [":", " :", " compromise", " compromises", " workaround", "\u59a5\u534f", "  \n\n", "):"], [":", " :", " compromise", ":\\", ":**", " :**", " :\\", " Reality"], [":", " :", " compromise", ":**", ":\\", "\u59a5\u534f", " **:", " compromises"], [":", ":\\", ":*", ":**", "):", "*:", " **:", " Reality"], ["  \n\n", " \n\n", "\n\n", "\n   \n", "\n \n", ":", "):", "  \n"], [":*", ":", "  \n\n", ":**", "*:", "):", ":\\", " \n\n"], [":**", ":*", "):", ":\")", "):**", ":\"", ":')", ":</"], [":**", "):", ":\")", "):**", ":*", ":')", ":\"", ":]"], ["):", ":**", ":*", ":\")", "):**", ":\"", ":')", ":</"], ["):", ":**", ":*", ":\")", "):**", ":</", ":\"", ":')"], [":**", "):**", "):", " :**", "**:", ":*", ":\")", ":</"], [":**", "):**", "):", " :**", "**:", ":\")", ":*", ":</"], [":**", "):**", "):", " :**", ":\")", "**:", ":')", ":*"], [":**", "):**", "):", " :**", ":*", ":\")", "**:", ")**"], ["):**", "):", ":**", " ):", ":*", "**:", " :**", ":"], ["):**", "):", " ):", ":**", " Strategy", "\n\n", ":", ":)"], ["):**", "):", ")**", ":**", " Strategy", " Plan", ").**", "):\\"]], "p": [[0.5445, 0.2915, 0.0737, 0.0394, 0.0145, 0.0113, 0.0057, 0.0057], [0.3012, 0.1827, 0.1108, 0.0408, 0.036, 0.0338, 0.0247, 0.0205], [0.513, 0.3526, 0.0372, 0.024, 0.0094, 0.0088, 0.0078, 0.0042], [0.0757, 0.0381, 0.0109, 0.0102, 0.0102, 0.007, 0.0055, 0.0052], [0.2532, 0.1635, 0.1056, 0.0822, 0.0208, 0.0134, 0.0126, 0.0111], [0.1269, 0.1192, 0.1052, 0.0723, 0.0321, 0.0266, 0.0183, 0.0142], [0.4654, 0.0916, 0.076, 0.063, 0.0337, 0.0263, 0.0204, 0.0109], [0.1685, 0.1583, 0.096, 0.0702, 0.066, 0.0426, 0.0228, 0.0189], [0.4165, 0.1053, 0.1053, 0.0724, 0.0564, 0.0467, 0.0342, 0.0302], [0.371, 0.289, 0.0828, 0.0269, 0.0269, 0.0087, 0.0082, 0.0072], [0.2092, 0.1735, 0.0988, 0.0301, 0.025, 0.0195, 0.0118, 0.0111], [0.1721, 0.0233, 0.017, 0.015, 0.0133, 0.0117, 0.0103, 0.0081], [0.1415, 0.0124, 0.0102, 0.0062, 0.0058, 0.0052, 0.0048, 0.004], [0.1419, 0.0141, 0.0109, 0.0091, 0.0075, 0.0066, 0.0059, 0.0055], [0.0547, 0.0178, 0.0178, 0.0089, 0.0084, 0.0079, 0.0079, 0.0065], [0.0318, 0.0218, 0.0193, 0.0063, 0.0059, 0.0052, 0.0049, 0.0049], [0.0324, 0.0119, 0.0099, 0.0099, 0.0093, 0.0072, 0.0072, 0.0064], [0.0241, 0.0165, 0.0121, 0.0094, 0.0073, 0.0069, 0.0057, 0.0045], [0.0556, 0.0317, 0.0317, 0.0262, 0.0169, 0.015, 0.0116, 0.008], [0.101, 0.0448, 0.0308, 0.0272, 0.0199, 0.0187, 0.0137, 0.0128], [0.2176, 0.1405, 0.1028, 0.0965, 0.0428, 0.0313, 0.0294, 0.0244], [0.056, 0.0464, 0.0264, 0.011, 0.0086, 0.0081, 0.0076, 0.0067], [0.2938, 0.0579, 0.031, 0.031, 0.0241, 0.0213, 0.0213, 0.0166], [0.2799, 0.1498, 0.0518, 0.0429, 0.0334, 0.0203, 0.0179, 0.0131], [0.5213, 0.1163, 0.0851, 0.0751, 0.026, 0.0148, 0.0108, 0.0074], [0.3812, 0.1092, 0.0964, 0.0585, 0.0428, 0.0402, 0.0167, 0.0148], [0.3049, 0.0874, 0.0724, 0.0564, 0.0468, 0.0439, 0.0284, 0.025], [0.2785, 0.2457, 0.1315, 0.0704, 0.0401, 0.0354, 0.0312, 0.0178], [0.2683, 0.1436, 0.0528, 0.0528, 0.0496, 0.0466, 0.0438, 0.0283], [0.3838, 0.1171, 0.1033, 0.0756, 0.0488, 0.0261, 0.0261, 0.0217], [0.1752, 0.1282, 0.0938, 0.0644, 0.0391, 0.0345, 0.0286, 0.0269], [0.1231, 0.0959, 0.0901, 0.0275, 0.0201, 0.0177, 0.0122, 0.0122], [0.1057, 0.0683, 0.0641, 0.0566, 0.0499, 0.0441, 0.0251, 0.0208], [0.2045, 0.1496, 0.1028, 0.055, 0.055, 0.0277, 0.019, 0.0158], [0.2172, 0.1318, 0.0428, 0.0402, 0.0333, 0.0313, 0.0276, 0.0244], [0.1662, 0.1008, 0.1008, 0.0693, 0.0447, 0.0371, 0.0211, 0.0199], [0.3178, 0.0969, 0.0803, 0.0404, 0.038, 0.023, 0.0168, 0.0109], [0.2766, 0.1576, 0.0242, 0.0242, 0.0227, 0.0188, 0.0188, 0.0177], [0.2086, 0.1625, 0.0411, 0.0411, 0.0282, 0.0234, 0.0207, 0.0194], [0.2554, 0.0687, 0.057, 0.0392, 0.0346, 0.0269, 0.0223, 0.0174], [0.3711, 0.0828, 0.0345, 0.0345, 0.0324, 0.0253, 0.0197, 0.0163], [0.4238, 0.1141, 0.042, 0.0394, 0.0394, 0.0348, 0.0225, 0.0175], [0.3741, 0.1072, 0.1007, 0.0327, 0.0307, 0.0288, 0.0154, 0.0145], [0.3843, 0.0913, 0.0711, 0.0262, 0.0246, 0.0246, 0.0217, 0.0204], [0.3027, 0.251, 0.0494, 0.03, 0.0206, 0.0206, 0.016, 0.0142], [0.4969, 0.2072, 0.036, 0.0117, 0.0097, 0.0086, 0.0086, 0.0086], [0.4429, 0.2371, 0.0638, 0.0172, 0.0152, 0.0126, 0.0118, 0.0098], [0.4336, 0.2321, 0.0356, 0.0295, 0.0191, 0.0158, 0.0148, 0.0116], [0.3173, 0.0665, 0.0403, 0.0295, 0.0277, 0.0245, 0.023, 0.0216], [0.3803, 0.1314, 0.0621, 0.0454, 0.0354, 0.0228, 0.0215, 0.0178], [0.6679, 0.1161, 0.0427, 0.0229, 0.0202, 0.0167, 0.0148, 0.0139], [0.2239, 0.1199, 0.1058, 0.0934, 0.0441, 0.0389, 0.0389, 0.0303], [0.4119, 0.1717, 0.1337, 0.0919, 0.0557, 0.0181, 0.016, 0.0141], [0.3062, 0.1857, 0.1639, 0.0994, 0.0994, 0.0285, 0.0285, 0.0222], [0.3178, 0.1928, 0.1325, 0.1325, 0.0626, 0.0335, 0.0335, 0.0335], [0.601, 0.152, 0.0559, 0.0493, 0.0384, 0.0264, 0.0181, 0.011], [0.877, 0.1047, 0.0076, 0.0052, 0.0017, 0.0008, 0.0007, 0.0005], [0.9073, 0.0657, 0.0147, 0.0061, 0.0014, 0.0011, 0.0009, 0.0006], [0.5651, 0.3025, 0.1113, 0.0081, 0.0055, 0.0023, 0.0016, 0.001], [0.655, 0.3094, 0.0224, 0.0082, 0.0014, 0.0009, 0.0007, 0.0003], [0.6087, 0.2537, 0.1199, 0.0126, 0.0009, 0.0006, 0.0004, 0.0003], [0.5394, 0.3707, 0.0569, 0.0127, 0.0053, 0.0036, 0.0019, 0.0019], [0.9876, 0.011, 0.0013, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Python": [13281, 51585, 96370, 131697, 43938, 72432, 30562, 58612, 96797, 161035, 67142, 81904, 62999, 46796, 36619, 75720, 43982, 24542, 29473, 40463, 24827, 44464, 35592, 38718, 57957, 44892, 41088, 28683, 22426, 20163, 17099, 14182, 13706, 9215, 21388, 10146, 12154, 12016, 12219, 11901, 11141, 13284, 11631, 11132, 12640, 11728, 21772, 21295, 43062, 55579, 83442, 96688, 105025, 63528, 74264, 74563, 54696, 48741, 34433, 18761, 16188, 5290, 4718]}}, {"pos": 488, "top": [[" (\u201e", " \u200b\u200b", "   \n", " \u2014\u2014", " ......", "\u2026\u2026", "  \n", "\u200b\u200b"], ["\uff1a**", " \"**", "\uff1f**", " **\u3010", " .**", "\uff01**", " **:**", " \u2014\u2014"], ["\uff1f**", "\uff1a**", " \u2014\u2014", ".:**", ",__", "\u3002**", "\uff01**", ";**"], [" **\u3010", " **\u25cb", " **\u300c", " **>>", " **:**", "\uff1a**", " **\u201e", " ``("], [" **\u3010", " *\u201c", "\uff1a**", " \u2014\u2014", " **)", " *@", " \"--", " //@"], [" **\u3010", " **)", "\uff1a**", " \u2014\u2014", " **\u25cb", " *\u201c", ".:**", " **\u201e"], [" **\u3010", " \u2014\u2014", "\uff1a**", " *\u201c", " **)", ":__", " **\u300c", " \u25ce"], [" **\u3010", ":__", " *\u201c", " **\u201e", " **\u300c", " **)", "\uff1a**", " ~~"], [" **\u3010", " *\u201c", ":__", " **\u300c", " **\u201e", " *@", " ......", ",__"], [" **\u3010", " \"--", ":__", " **>>", " **\"", " |--", " @$_", " **\u300c"], [" \"--", " **\u3010", " //@", " *\u201c", " --", ":__", " |--", " ~~"], [" **\u3010", " ~~", " **\u300c", " --", " \"--", " __", " *\u201c", ":__"], [" **\u300c", " ~~", " --", " **\u3010", " \"--", " __", ":__", " |--"], [" \"--", " --", " **\u300c", " '--", " //--", "\u52c7\u5f80\u76f4\u524d", "('--", " **>>"], [" --", " \"--", " ``", " '--", " ``(", "\"--", ")--", " sprawling"], [" --", " \"--", " sprawling", " ``", " revamped", " \u2014\u2014", " Gabrie", " '--"], [" --", " sprawling", " \"--", " revamped", " arguably", " tweaked", " tweaking", " savvy"], [" --", " \"--", "\u4e0d\u53ef\u601d\u8bae", "\u52c7\u5f80\u76f4\u524d", "\ufffd\ufffd", " //--", "\ufffd", " sprawling"], [" --", " \"--", " //--", "\u4e0d\u53ef\u601d\u8bae", "\ufffd\ufffd", " ;;^", "\u52c7\u5f80\u76f4\u524d", "\ufffd"], [" --", " //--", "//--", " \"--", "\u4e0d\u53ef\u601d\u8bae", "\ufffd\ufffd", " \u2015", " |--"], [" --", " \n\n", "\n\n", "<|endoftext|>", " \n\n\n", " swiftly", " {{--<", "<|file_sep|>"], [" ``", " **>>", " **\u3010", " ;;^", " ``(", " **", " **'", " **+"], [" ``", " --", " ``(", " __", " {{--<", " **", " ''", " ~~"], [" ``", " --", "\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"], [" **", " __", " **\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", " ,", " .", " ____"], [" ,", " .", " --", " __", " **", " -", " ...", " a"], [" ,", " **", " --", " using", " heavily", " primarily", " rather", " only"], [" **", " __", " specialized", " \n\n", " hybrid", " **[", " **\"", " **("], [" **", " hybrid", " specialized", " leveraging", " modular", " **\"", " unconventional", " strategy"], [" ...", " \u2026", "<|endoftext|>", " **", "<|im_end|>", " \n\n", "\n\n", " specialized"], ["\n\n", " **", " \n\n", "<|im_end|>", " leveraging", "<|endoftext|>", " ...", " specialized"], ["\n\n", " \n\n", "<|im_end|>", "<|endoftext|>", " **", " specialized", " :", " hybrid"], ["\n\n", "<|endoftext|>", " \n\n", " ...", " :", " **", " specialized", " using"], ["\n\n", "<|endoftext|>", " ...", " [...]", " \n\n", " **", " \u2026", " specialized"], ["\n\n", "<|endoftext|>", " specialized", " using", " leveraging", " hybrid", "<|im_end|>", " technical"], ["\n\n", " using", " leveraging", " specialized", "<|endoftext|>", " hybrid", " modular", " technology"], [" leveraging", " using", " specialized", " modular", " hybrid", " utilizing", " technology", " technologies"], [" leveraging", " using", " specialized", " utilizing", " technologies", " modular", " hybrid", " frameworks"], [" leveraging", " using", " modular", " hybrid", " strategy", " utilizing", " essentially", " frameworks"], [" leveraging", "\n\n", " using", " utilizing", " essentially", " **", " hybrid", " modular"], ["\n\n", " **", " leveraging", "  \n\n", " \n\n", " **\"", ":\\", ":"], [" **", " leveraging", " **\"", "\n\n", " essentially", " **\u201c", ":", "  \n\n"], [" **", " **\"", " **\u201c", " **'", "  \n\n", " **\u00ab", "\uff1a**", " **("], [" **", "  \n\n", " **\"", " \n\n", "\n\n", " **\u201c", ":**", "  \n  \n"], ["\n\n", "  \n\n", " \n\n", "   \n\n", " **\"", " **", "  \n", " **\u201c"], ["\n\n", " \n\n", "  \n\n", "   \n\n", " **\"", "    \n\n", " **\u201c", " **"], ["\n\n", " **\"", "  \n\n", " **", " \n\n", " *\"", " **\u201c", " *\u201c"], ["\n\n", " **\"", " **", " *\"", "  \n\n", " **\u201c", " *\u201c", " \n\n"], ["\n\n", " *\"", " **\"", " *\u201c", " **\u201c", " *\\", " **", " \n\n"], ["\n\n", " *\"", " **\"", " *\u201c", " *\\", " **\u201c", " you", "*\\"], ["\n\n", " \n\n", "  \n\n", " *\"", " You", " **\"", " you", " *\u201c"], ["\n\n", " You", " you", "  \n\n", "You", " \n\n", " *\"", " **\""], ["\n\n", " You", " you", "You", " Since", "  \n\n", "Since", " \n\n"], ["\n\n", " You", " you", " Since", "You", "Since", " since", " strict"], ["\n\n", " \n\n", " You", " *\"", "  \n\n", " Since", " you", "\n"], ["\n\n", " \n\n", "  \n\n", "\n", " You", " Since", " *\"", " you"], ["\n\n", "\n", " You", " Since", " you", "\n\n\n", "You", "  \n\n"]], "p": [[0.078, 0.0504, 0.0369, 0.021, 0.0174, 0.0174, 0.0136, 0.0088], [0.1651, 0.0733, 0.0688, 0.0536, 0.0418, 0.0368, 0.0325, 0.0305], [0.1058, 0.0877, 0.0603, 0.0389, 0.0285, 0.0268, 0.0268, 0.0236], [0.2705, 0.0878, 0.0567, 0.0415, 0.0303, 0.0285, 0.0268, 0.0236], [0.2582, 0.0478, 0.0422, 0.0372, 0.0349, 0.0328, 0.0308, 0.0308], [0.6287, 0.0378, 0.0333, 0.0178, 0.0168, 0.013, 0.0123, 0.0115], [0.6382, 0.118, 0.0263, 0.0205, 0.0124, 0.0103, 0.0097, 0.0075], [0.5351, 0.0724, 0.0413, 0.0342, 0.025, 0.0172, 0.0143, 0.0134], [0.4073, 0.1698, 0.0486, 0.0356, 0.0334, 0.0148, 0.0131, 0.0131], [0.1039, 0.0714, 0.063, 0.0522, 0.0263, 0.0263, 0.0247, 0.0232], [0.0777, 0.0644, 0.0502, 0.0471, 0.0443, 0.0443, 0.0416, 0.0416], [0.2429, 0.0893, 0.0839, 0.0577, 0.0542, 0.0372, 0.0309, 0.029], [0.1182, 0.111, 0.0673, 0.0594, 0.0594, 0.0299, 0.0248, 0.016], [0.1229, 0.0794, 0.0274, 0.0177, 0.013, 0.0107, 0.0107, 0.0095], [0.9266, 0.0192, 0.0038, 0.0015, 0.0014, 0.0012, 0.0011, 0.001], [0.9533, 0.0029, 0.0016, 0.0006, 0.0005, 0.0004, 0.0004, 0.0004], [0.3539, 0.0213, 0.0146, 0.0129, 0.0073, 0.0069, 0.0054, 0.0042], [0.1756, 0.0223, 0.0153, 0.0099, 0.0082, 0.0077, 0.0077, 0.0072], [0.1112, 0.0436, 0.0299, 0.0219, 0.0182, 0.0133, 0.0133, 0.0125], [0.3832, 0.0404, 0.0158, 0.0102, 0.0096, 0.0096, 0.0096, 0.009], [0.2169, 0.1587, 0.1491, 0.075, 0.0229, 0.0095, 0.0084, 0.0048], [0.1125, 0.0876, 0.0499, 0.0343, 0.0221, 0.0208, 0.0184, 0.0162], [0.6569, 0.1661, 0.012, 0.01, 0.0078, 0.0069, 0.006, 0.0044], [0.2997, 0.2997, 0.1604, 0.0204, 0.0103, 0.0096, 0.008, 0.0062], [0.7674, 0.2199, 0.004, 0.001, 0.0009, 0.0009, 0.0007, 0.0006], [0.5559, 0.1593, 0.0966, 0.0355, 0.0314, 0.0131, 0.0115, 0.0066], [0.585, 0.1899, 0.1305, 0.0114, 0.0089, 0.0069, 0.0061, 0.0054], [0.9622, 0.0256, 0.0083, 0.0014, 0.0009, 0.0002, 0.0001, 0.0001], [0.9386, 0.0321, 0.0172, 0.0049, 0.0026, 0.0003, 0.0002, 0.0002], [0.7975, 0.045, 0.045, 0.0241, 0.0188, 0.0188, 0.0146, 0.0114], [0.5575, 0.141, 0.0295, 0.0261, 0.0216, 0.0203, 0.0203, 0.0131], [0.1877, 0.0446, 0.0419, 0.0224, 0.0198, 0.0154, 0.0145, 0.0088], [0.1027, 0.0517, 0.0294, 0.0158, 0.0148, 0.0148, 0.0139, 0.0131], [0.7399, 0.0185, 0.0106, 0.0087, 0.0073, 0.0068, 0.0068, 0.0068], [0.4912, 0.0356, 0.0139, 0.0123, 0.0102, 0.0102, 0.0102, 0.0102], [0.1886, 0.1771, 0.1469, 0.0612, 0.0477, 0.0289, 0.0255, 0.0225], [0.6854, 0.0563, 0.0412, 0.0266, 0.0111, 0.0111, 0.0092, 0.0072], [0.9042, 0.0241, 0.0089, 0.0045, 0.0042, 0.0027, 0.0025, 0.0017], [0.8722, 0.011, 0.0103, 0.008, 0.0071, 0.0052, 0.0049, 0.0043], [0.7066, 0.0617, 0.0274, 0.0166, 0.0147, 0.0114, 0.0114, 0.0095], [0.4036, 0.0747, 0.0331, 0.0292, 0.0242, 0.0242, 0.0122, 0.0108], [0.7793, 0.0342, 0.0143, 0.0126, 0.0104, 0.0056, 0.0049, 0.0046], [0.1233, 0.1022, 0.0582, 0.0547, 0.0332, 0.0228, 0.0201, 0.0178], [0.3095, 0.0783, 0.0347, 0.0306, 0.0224, 0.0211, 0.0175, 0.0175], [0.3234, 0.0637, 0.0466, 0.0386, 0.022, 0.0207, 0.0161, 0.0142], [0.3594, 0.0967, 0.0708, 0.0403, 0.0403, 0.0314, 0.0245, 0.0148], [0.4765, 0.1753, 0.0938, 0.0535, 0.0269, 0.0099, 0.0099, 0.0099], [0.5178, 0.0845, 0.0581, 0.0425, 0.0214, 0.0156, 0.013, 0.0122], [0.9394, 0.0413, 0.0072, 0.0023, 0.0011, 0.001, 0.0009, 0.0009], [0.3494, 0.2401, 0.2119, 0.0368, 0.0325, 0.0154, 0.0087, 0.0087], [0.5208, 0.246, 0.2171, 0.0035, 0.0027, 0.0021, 0.0015, 0.0013], [0.9798, 0.014, 0.0058, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.6361, 0.1252, 0.076, 0.0407, 0.0359, 0.0279, 0.017, 0.015], [0.9475, 0.0252, 0.0093, 0.0056, 0.0023, 0.0018, 0.0016, 0.0014], [0.7868, 0.1065, 0.0444, 0.0392, 0.0068, 0.0036, 0.0012, 0.0012], [0.6855, 0.1529, 0.0563, 0.0563, 0.0142, 0.0067, 0.0032, 0.0025], [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.9995, 0.0003, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9988, 0.0006, 0.0003, 0.0001, 0.0001, 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.9997, 0.0002, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Python": [7667, 116838, 32402, 117945, 28017, 37990, 22582, 39556, 27500, 34476, 10065, 16790, 11503, 15227, 8570, 9445, 9558, 5354, 28024, 56920, 4233, 16442, 4961, 2016, 551, 786, 662, 789, 540, 622, 1357, 3968, 5318, 2215, 2016, 295, 31, 56, 25, 23, 13, 17, 24, 59, 105, 201, 412, 473, 1140, 2551, 8560, 12241, 74583, 34844, 18048, 2912, 1796, 1644, 1409, 363, 441, 64, 32]}}, {"pos": 489, "top": [[".", " \u2013", " \u200b\u200b", "\u00a0\u00a0", "  \n\n", "\u00a0", ",", "?"], ["\uff1a**", "\uff1f**", " **'", " **:**", " **:", "**\u3002", " .**", "\uff01**"], ["\u2026**", "\u3002", "\u2026\"", "\u2026\u2026", "\u2026..", "\u2026\u2026\u2026\u2026", "\uff0c", "**\u3002"], ["\uff1f**", "\uff1a**", " **\u201e", " **\u3010", " **\u201c", " **\u25cb", " **\u25a0", " **:**"], [" **\u201c", "  \n\n", "\n\n\n\n", " **\"", "\uff1a**", " \n\n\n\n", " -**", " **\u201e"], [" **\u201c", " **\"", " **\u3010", "\uff1a**", "\uff1f**", " **\u201e", "**!", " **."], [" **\u201c", " **\u3010", " **\"", "\n\n", "\n\n\n\n", " \n\n", "  \n\n", "\uff1a**"], [" \n\n", "  \n\n", " **\u3010", " **\u201c", " **\"", "   \n\n", " **'", "       \n\n"], [" \n\n", "  \n\n", "   \n\n", "\n\n", "\n\n\n\n", "       \n\n", "     \n\n", "      \n\n"], [" **\"", " **'", " **\u3010", " **\u201c", " **#", " **\u201e", " $__", " **^"], [" **\"", " **\u3010", " **'", " \n\n", "\n\n", " **\u201c", "\n\n\n\n", " **#"], [" **\u3010", " **'", " **\"", " **\u201e", " **#", " **\u201c", " **+", " **\u25a0"], [" **\u3010", " **'", " **\"", " **\u201e", " **\u201c", " **#", " **\u00ab", " **"], [" **\"", " **'", " **\u3010", " **\u201c", " **\u201e", " **", " **#", "\u2026**"], ["\n\n", " \n\n", " **\"", " savvy", " folks", "  \n\n", " **'", "\n\n\n\n"], [" folks", "\n\n", " savvy", "-esque", " matchups", " arguably", " sprawling", " nuanced"], [" \n\n", "  \n\n", "<|endoftext|>", "\n\n", "   \n\n", "\n\n\n\n", " **\"", "\u2026**"], ["  \n\n", "<|endoftext|>", " \n\n", "   \n\n", "\n\n", " **\"", "\u2026**", "  \r\n\r\n"], [" **\"", " **'", " **\u201c", "  \n\n", " **", "\n\n", " **#", " \n\n"], ["  \n\n", "\n\n", " \n\n", "<|endoftext|>", " **\"", " **'", "\r\n\r\n", " **\u201c"], ["<|endoftext|>", "\n\n", " \n\n", "  \n\n", "   \n\n", "\r\n\r\n", "\n\n\n\n", "  \r\n\r\n"], [" **'", " **", "\n\n", " **#", " **\"", " \n\n", " **\u201c", "\r\n\r\n"], ["\n\n", " \n\n", "<|endoftext|>", "\r\n\r\n", "  \n\n", " **", " **'", "\r\n\r\n\r\n"], ["\n\n", "<|endoftext|>", " \n\n", "  \n\n", "\r\n\r\n", "   \n\n", " \r\n\r\n", "\r\n\r\n\r\n"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", "   \n\n", " \r\n\r\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", "  \n\n", "\r\n\r\n", " \r\n\r\n", "   \n\n", "<|endoftext|>", "\t\n\n"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", " \r\n\r\n", "<|endoftext|>", "   \n\n", "  \r\n\r\n"], ["\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", "\r\n\r\n", "   \n\n", " \r\n\r\n", "<|endoftext|>", "  \r\n\r\n"], [" \n\n", "  \n\n", "\n\n", "<|endoftext|>", "   \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", "<|endoftext|>", "\n\n", " **", "   \n\n", "\r\n\r\n", " \u2014"], ["<|endoftext|>", "  \n\n", " \n\n", "\n\n", "   \n\n", "  \r\n\r\n", "\r\n\r\n", " \r\n\r\n"], ["  \n\n", "<|endoftext|>", " \n\n", "\n\n", "   \n\n", " **", "  \r\n\r\n", " **\u201c"], ["  \n\n", "<|endoftext|>", " \n\n", "\n\n", "   \n\n", " **\u201c", " **", "  \r\n\r\n"], ["  \n\n", " \n\n", "<|endoftext|>", "   \n\n", "\n\n", " **", " **\u201c", "  \r\n\r\n"], ["  \n\n", " \n\n", "<|endoftext|>", " **", "\n\n", "   \n\n", " **\u201c", "  \r\n\r\n"], ["  \n\n", "<|endoftext|>", " \n\n", " **", "\n\n", " **\u201c", "   \n\n", " **\""], ["  \n\n", "<|endoftext|>", " \n\n", " **", " **\u201c", "\n\n", "   \n\n", "  \r\n\r\n"], ["  \n\n", "<|endoftext|>", " \n\n", "\n\n", "   \n\n", " **\u201c", " **", "\r\n\r\n"], ["  \n\n", "<|endoftext|>", " \n\n", "\n\n", " **", " **\u201c", "\r\n\r\n", "   \n\n"], ["  \n\n", " **", " **\u201c", "<|endoftext|>", " \n\n", "\n\n", " leveraging", "\r\n\r\n"], ["  \n\n", " **", " **\u201c", " \n\n", "<|endoftext|>", " **\"", " **#", "\uff1a**"], ["  \n\n", " **", " **\u201c", " **\"", "<|endoftext|>", " \n\n", " **#", " leveraging"], [" **", "  \n\n", " **\u201c", " **\"", " **#", "\uff1a**", " \n\n", "\r\n\r\n"], ["  \n\n", " **", " **\u201c", "\uff1a**", " **\"", ":**", " \n\n", ":\\"], [" **", " **\u201c", " **\"", "\uff1a**", ":**", "**", "  \n\n", " **#"], [" **", " **\u201c", " **\"", "**", " **'", " **#", "\uff1a**", "-**"], [" **", " **\"", " **\u201c", " **#", "-**", "**", "\uff1a**", " **+"], [" **", "  \n\n", " **\u201c", " **\"", "-**", " **#", ";**", "\uff1a**"], [" **\"", " **", " **\u201c", ";**", "-**", " **#", "  \n\n", " **("], [" **", " **\"", " **\u201c", ";**", "-**", "**", ">**", " **#"], [" **", " **\"", " **\u201c", "**", ";**", "-**", " **#", " **("], [" **", " **\"", " **\u201c", " *\u201c", " *\"", ";**", "**", "-**"], [" **", " **\"", " **\u201c", " *\u201c", " *\"", "**", "-**", ";**"], [" **\u201c", " **\"", " **", " Since", "Since", " *\u201c", ";**", "**"], [" **\u201c", " **\"", " Since", "Since", " **", " since", " You", " you"], [" Since", "Since", " **\"", " since", " **\u201c", " You", " you", " **"], [" Since", " since", "Since", " You", " you", " **\"", "since", " **\u201c"], [" Since", " You", " you", " since", " **\"", "Since", " **\u201c", " **"], [" You", " Since", "###", "Since", "You", " you", " **\"", " ###"], ["1", "You", "Since", " You", " Since", "###", "2", "**"]], "p": [[0.7994, 0.0544, 0.0257, 0.0241, 0.0156, 0.0101, 0.0101, 0.0061], [0.1099, 0.0911, 0.0458, 0.0296, 0.0216, 0.0131, 0.0116, 0.0116], [0.3281, 0.2255, 0.155, 0.0346, 0.0269, 0.0153, 0.0135, 0.012], [0.085, 0.0549, 0.0484, 0.0455, 0.0294, 0.0294, 0.019, 0.0148], [0.3659, 0.1525, 0.072, 0.0495, 0.034, 0.0206, 0.0194, 0.011], [0.636, 0.1608, 0.0317, 0.0204, 0.0169, 0.0159, 0.0109, 0.0059], [0.2234, 0.1634, 0.1055, 0.0931, 0.0772, 0.064, 0.0565, 0.0221], [0.4034, 0.1484, 0.131, 0.0701, 0.0701, 0.0311, 0.0242, 0.0138], [0.8249, 0.1265, 0.022, 0.0063, 0.0034, 0.003, 0.002, 0.0017], [0.4187, 0.1127, 0.0603, 0.0236, 0.0162, 0.0082, 0.006, 0.0056], [0.3121, 0.1385, 0.0952, 0.0397, 0.0241, 0.0212, 0.0199, 0.0114], [0.2655, 0.2343, 0.0671, 0.0205, 0.017, 0.015, 0.0097, 0.0097], [0.2858, 0.1964, 0.0928, 0.022, 0.0207, 0.0161, 0.0118, 0.0118], [0.3187, 0.2332, 0.0102, 0.0066, 0.0058, 0.0048, 0.0043, 0.0038], [0.1539, 0.0303, 0.0285, 0.0184, 0.0162, 0.0162, 0.0077, 0.0072], [0.0297, 0.0279, 0.0149, 0.0052, 0.0049, 0.0046, 0.004, 0.0038], [0.308, 0.2398, 0.1367, 0.1284, 0.0253, 0.0163, 0.005, 0.0036], [0.3866, 0.3866, 0.1612, 0.0181, 0.017, 0.0046, 0.0026, 0.002], [0.341, 0.1611, 0.0918, 0.0631, 0.0557, 0.0383, 0.0359, 0.0317], [0.2291, 0.2291, 0.1575, 0.1082, 0.0424, 0.0398, 0.0351, 0.0188], [0.5966, 0.2487, 0.0807, 0.0713, 0.001, 0.0006, 0.0001, 0.0001], [0.3471, 0.2105, 0.1199, 0.0642, 0.0268, 0.0236, 0.0236, 0.0208], [0.7481, 0.1147, 0.0422, 0.0272, 0.024, 0.0078, 0.0061, 0.0024], [0.4753, 0.4195, 0.0729, 0.0163, 0.0077, 0.0008, 0.0008, 0.0005], [0.5317, 0.2512, 0.1956, 0.0125, 0.0032, 0.0019, 0.0017, 0.0006], [0.3467, 0.3059, 0.2383, 0.0602, 0.0105, 0.0087, 0.0039, 0.0034], [0.7857, 0.1365, 0.0443, 0.0237, 0.0022, 0.0013, 0.0006, 0.0005], [0.8676, 0.0914, 0.0336, 0.0052, 0.0005, 0.0004, 0.0004, 0.0001], [0.7529, 0.1308, 0.1019, 0.0107, 0.0011, 0.001, 0.0003, 0.0002], [0.4329, 0.2975, 0.2626, 0.0042, 0.0011, 0.0005, 0.0004, 0.0002], [0.4756, 0.2885, 0.2246, 0.0036, 0.0025, 0.0022, 0.0007, 0.0005], [0.3678, 0.3246, 0.2865, 0.0143, 0.0025, 0.0011, 0.0004, 0.0003], [0.4957, 0.2654, 0.1106, 0.0976, 0.004, 0.0028, 0.0019, 0.0012], [0.4399, 0.3882, 0.1618, 0.0055, 0.0018, 0.0007, 0.0005, 0.0005], [0.5819, 0.3115, 0.0892, 0.0044, 0.0031, 0.0021, 0.0019, 0.0016], [0.6768, 0.2197, 0.0916, 0.0046, 0.0022, 0.0015, 0.001, 0.0008], [0.9145, 0.0516, 0.0244, 0.0023, 0.002, 0.002, 0.0009, 0.0007], [0.9106, 0.0453, 0.0275, 0.0061, 0.0048, 0.002, 0.0018, 0.0004], [0.8251, 0.1117, 0.0282, 0.0151, 0.0071, 0.0063, 0.002, 0.001], [0.9028, 0.0577, 0.0241, 0.0042, 0.0037, 0.0022, 0.002, 0.0008], [0.8583, 0.0905, 0.0377, 0.0051, 0.0021, 0.0015, 0.0013, 0.0006], [0.5914, 0.2466, 0.08, 0.055, 0.0062, 0.0048, 0.0031, 0.0024], [0.6348, 0.1103, 0.0521, 0.0521, 0.0336, 0.0103, 0.0085, 0.0075], [0.5998, 0.2207, 0.0558, 0.0181, 0.0141, 0.0103, 0.0086, 0.0067], [0.5109, 0.3099, 0.0327, 0.0254, 0.0211, 0.0113, 0.0083, 0.006], [0.6313, 0.2322, 0.0754, 0.0191, 0.0079, 0.0038, 0.0031, 0.0026], [0.5906, 0.3161, 0.0294, 0.0178, 0.0139, 0.0108, 0.004, 0.0027], [0.9314, 0.0281, 0.0117, 0.0063, 0.0063, 0.0034, 0.003, 0.002], [0.99, 0.0046, 0.0036, 0.0007, 0.0002, 0.0002, 0.0001, 0.0001], [0.9586, 0.0199, 0.0073, 0.0035, 0.0021, 0.0014, 0.0013, 0.0013], [0.5043, 0.1637, 0.1275, 0.1275, 0.0152, 0.0134, 0.0082, 0.0049], [0.4396, 0.3424, 0.126, 0.0281, 0.0117, 0.0091, 0.0071, 0.0049], [0.5272, 0.249, 0.151, 0.0204, 0.0124, 0.0109, 0.0046, 0.004], [0.7293, 0.1627, 0.0466, 0.0134, 0.0104, 0.0092, 0.0056, 0.003], [0.4107, 0.3198, 0.1511, 0.0263, 0.0141, 0.0124, 0.0109, 0.0085], [0.4759, 0.2886, 0.1203, 0.0237, 0.0112, 0.0112, 0.0099, 0.0099], [0.2977, 0.2977, 0.1593, 0.0586, 0.0277, 0.0216, 0.0168, 0.0168], [0.2206, 0.2206, 0.1718, 0.1181, 0.1042, 0.0233, 0.0141, 0.0141], [0.456, 0.2154, 0.0699, 0.0617, 0.0481, 0.0481, 0.0291, 0.0291], [0.6074, 0.1972, 0.1355, 0.0143, 0.0126, 0.0076, 0.006, 0.006], [0.5359, 0.1971, 0.064, 0.0498, 0.044, 0.044, 0.0208, 0.0162], [0.3125, 0.2433, 0.1014, 0.0895, 0.0615, 0.0397, 0.0351, 0.0241], [0.7502, 0.1897, 0.0423, 0.0107, 0.0031, 0.0019, 0.0002, 0.0002]], "ranks": {"Python": [28363, 237652, 122838, 177067, 49154, 91796, 24793, 107692, 78433, 127586, 32942, 98829, 77062, 38407, 14804, 63800, 29743, 17835, 73950, 113540, 76167, 127926, 103506, 90881, 69477, 122172, 109308, 64278, 63227, 21997, 14791, 15198, 16895, 36585, 50126, 37822, 22195, 18400, 17319, 12609, 14389, 18529, 28223, 51350, 43882, 35633, 68009, 85207, 46469, 50385, 65113, 52511, 93356, 56048, 29197, 2461, 1293, 1151, 1194, 231, 211, 19, 14]}}, {"pos": 490, "top": [[".", ",", "?", ";", "\u00a0", " \u2013", "!", "er"], [",", ".", ";", "?", "er", "!", " Very", "very"], [",", ".", "?", ";", "!", "\u2013", ":", "\u2026"], ["erias", "\uff0a\uff0a\uff0a\uff0a", "enner", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "uggy", "erus", " Shemale", " Blowjob"], ["er", ",", ".", "(@", "!", " \u201c", " (@", "\u043d\u0438\u0432\u0435\u0440"], [",", ".", "!", "!\u201d.", " Apalagi", ":", "?", "er"], ["!", "?", ",", ".", "\u201d?", "!\u201d", "\u2019re", "!!!"], ["ey", "\u00e9co", "(@", "erias", "!!.", "!", "schaft", " Apalagi"], ["!\u201d.", "?\u201d.", "schul", "!\u00bb.", "\u00dfen", "!.", "!\u201d", "!!."], [",", "\u30c3\u30b3", "ennie", "ignano", "\u064a\u0636", "repid", "NCY", "ernt"], [",", "er", ".", "?", "!", "yyyy", "(@", "!!!"], ["erias", "erdale", "rtle", " **", "ernt", "ennie", "ykk", "repid"], ["erias", "erdale", " Philly", "ennie", "rtle", "erus", "ykk", " **\u300c"], ["eben", " Philly", " guys", "erdale", " Apalagi", "repid", "erias", "incy"], [" guys", " Philly", " savvy", " seamlessly", " strategically", " nicely", " comfortably", " folks"], [" guys", " savvy", " seamlessly", " incredibly", " basically", " strategically", " folks", " simply"], [" savvy", " seamlessly", " strategically", " effortlessly", " simply", " nicely", " incredibly", " guys"], [" savvy", "\u2014you", " seamlessly", " strategically", " simply", "...", ",", " incredibly"], ["\u2014you", " \u2014", "\u2014even", "\u2014", "...", "\u2014and", " strategically", "\u2014not"], [" \u2014", "\u2014", "<|endoftext|>", "\u2014you", "\u2014even", "\u2014and", "\n\n", "\u2014at"], ["<|endoftext|>", " \n\n", "\n\n", " \u2014", "  \n\n", "\u2014", "\u2014you", "\u2014even"], [" strategically", " seamlessly", " incredibly", " aggressively", "\u2014you", " effortlessly", " savvy", " sprawling"], ["\n\n", " incredibly", " --", " simply", " aggressively", " uniquely", " \u2014", " just"], ["\n\n", "<|endoftext|>", " just", " \n\n", " ultimately", " --", " \u2014", " uniquely"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\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", " **", "   \n\n", " --"], ["\n\n", " \n\n", "\r\n\r\n", "  \n\n", " \r\n\r\n", " aggressively", " strategically", " arguably"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", " \r\n\r\n", " --", " arguably", "   \n\n"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", " \r\n\r\n", "   \n\n", " strategically", " aggressively"], [" \n\n", "  \n\n", "\n\n", "   \n\n", " \u2014", " \r\n\r\n", " **", "\r\n\r\n"], [" \n\n", "\n\n", "  \n\n", " aggressively", " strategically", " ultimately", " ...", " just"], [" \n\n", " just", " strategically", " aggressively", " essentially", " incredibly", " only", " ultimately"], [" strategically", " only", " ultimately", " truly", " aggressively", " essentially", " just", " fully"], [" fundamentally", " strategically", " aggressively", " meticulously", " essentially", " incredibly", " truly", " priorit"], [" strategically", " aggressively", " fundamentally", " meticulously", " relentlessly", " uniquely", " seamlessly", " desperately"], [" strategically", " fundamentally", " aggressively", " technically", " truly", " essentially", " \u2014", " meticulously"], [" aggressively", " fundamentally", " strategically", " technically", " genuinely", " leveraging", " truly", " desperately"], [" fundamentally", " technically", " strategically", " aggressively", " MUST", " genuinely", " desperately", " leveraging"], [" technically", " fundamentally", " MUST", " genuinely", " impossible", " strategically", " desperately", "\u4f60\u9700\u8981"], [" technically", " MUST", " fundamentally", " impossible", " strategically", " leveraging", "\u5fc5\u987b", " genuinely"], [" technically", " fundamentally", " MUST", " leveraging", " impossible", " strategically", " genuinely", " strategy"], [" technically", " fundamentally", " leveraging", " strategy", " strategically", " genuinely", " aggressively", " radically"], [" technically", " fundamentally", " leveraging", " strategy", " genuinely", " strategically", " essentially", " legitimately"], [" technically", " leveraging", " fundamentally", " strategy", " essentially", " genuinely", " legitimately", " MUST"], [" technically", " fundamentally", " leveraging", " essentially", " strategy", " strictly", " genuinely", " MUST"], [" technically", " essentially", " fundamentally", " strictly", " leveraging", " must", " actually", " MUST"], [" technically", " MUST", " strictly", " must", " **", " fundamentally", " essentially", " actually"], [" MUST", " must", " technically", "\u4f60\u5fc5\u987b", " leveraging", " essentially", " fundamentally", " strictly"], [" **", " MUST", "\u5fc5\u987b\u575a\u6301", " cannot", " **\"", " must", " **'", "\u4f60\u5fc5\u987b"], [" cannot", " MUST", "\u5fc5\u987b\u575a\u6301", "cannot", " Cannot", " **", "\u4f60\u5fc5\u987b", " isn"], [" cannot", "cannot", "\u4f60\u5fc5\u987b", "\u5fc5\u987b\u575a\u6301", "\u4f60\u4e0d\u80fd", " MUST", " Cannot", "\u4e0d\u80fd\u4f7f\u7528"], [" cannot", "\u5fc5\u987b\u575a\u6301", "cannot", " MUST", "\u4e0d\u53ef\u80fd", "\u4ecd\u9700", "\u4f60\u5fc5\u987b", " must"], [" cannot", "cannot", "\u5fc5\u987b\u575a\u6301", " MUST", " Cannot", " must", " **\u201c", "\u4ecd\u9700"], [" cannot", "cannot", " Cannot", "\u4f60\u4e0d\u80fd", "Cannot", "\u5fc5\u987b\u575a\u6301", "\u4e0d\u80fd\u4f7f\u7528", "\u4e0d\u80fd\u7528"], [" cannot", "cannot", " Cannot", " MUST", "\u5fc5\u987b\u575a\u6301", " must", "Cannot", "\u4e0d\u80fd"], [" cannot", "cannot", " MUST", " Cannot", " must", "\u5fc5\u987b\u575a\u6301", "\u4e0d\u80fd", "Cannot"], [" cannot", "cannot", " Cannot", " MUST", "Cannot", "\u5fc5\u987b\u575a\u6301", " must", "\u4e0d\u80fd"], [" cannot", "cannot", " Cannot", " MUST", " must", "Cannot", "\u5fc5\u987b\u575a\u6301", "\u4e0d\u80fd"], [" cannot", "cannot", " Cannot", " **", " must", " MUST", "Cannot", "\u5fc5\u987b\u575a\u6301"], [" cannot", " don", " must", " **", " MUST", "cannot", "\u5fc5\u987b\u575a\u6301", " didn"], [" cannot", " must", " don", " **", " MUST", "cannot", " didn", "\u2019re"], [" cannot", " don", " **", " must", " MUST", "\u2019re", " survive", " cheat"], [" cannot", " must", " don", " **", "\u2019re", " survive", " keep", " *"]], "p": [[0.7659, 0.2194, 0.0062, 0.002, 0.0013, 0.001, 0.0006, 0.0003], [0.4334, 0.4334, 0.009, 0.0079, 0.0051, 0.0018, 0.0017, 0.0011], [0.6473, 0.3465, 0.0025, 0.0014, 0.0004, 0.0002, 0.0002, 0.0001], [0.0108, 0.0051, 0.0027, 0.0016, 0.0014, 0.0012, 0.0011, 0.0011], [0.0786, 0.0421, 0.0212, 0.0053, 0.0047, 0.0032, 0.003, 0.0029], [0.1469, 0.0212, 0.0054, 0.0039, 0.0039, 0.0029, 0.0025, 0.0021], [0.0115, 0.0084, 0.007, 0.0062, 0.0051, 0.0042, 0.0042, 0.0037], [0.0053, 0.0032, 0.0032, 0.003, 0.0019, 0.0019, 0.0019, 0.0017], [0.0273, 0.0042, 0.0039, 0.0037, 0.0031, 0.0027, 0.0025, 0.0025], [0.0507, 0.0018, 0.0017, 0.0015, 0.0011, 0.0011, 0.0011, 0.001], [0.0476, 0.0128, 0.0047, 0.0039, 0.0037, 0.0035, 0.003, 0.0029], [0.0049, 0.0039, 0.0021, 0.0021, 0.0019, 0.0018, 0.0017, 0.0017], [0.0086, 0.0055, 0.0023, 0.002, 0.0018, 0.0018, 0.0017, 0.0017], [0.0026, 0.0023, 0.0018, 0.0018, 0.0017, 0.0015, 0.0015, 0.0013], [0.0239, 0.0175, 0.0106, 0.006, 0.0039, 0.0039, 0.0037, 0.0034], [0.0397, 0.0146, 0.0073, 0.0069, 0.0051, 0.0045, 0.0045, 0.0035], [0.0448, 0.0225, 0.0199, 0.0083, 0.0083, 0.0073, 0.0069, 0.0064], [0.0383, 0.036, 0.0205, 0.0193, 0.0103, 0.0103, 0.0097, 0.0091], [0.2029, 0.131, 0.0399, 0.0292, 0.0201, 0.0156, 0.0114, 0.0108], [0.2889, 0.0938, 0.0645, 0.0443, 0.0286, 0.0153, 0.0099, 0.0082], [0.4921, 0.0666, 0.0588, 0.0404, 0.0278, 0.008, 0.0055, 0.0043], [0.0073, 0.0073, 0.0069, 0.0053, 0.005, 0.005, 0.0044, 0.0042], [0.0159, 0.0109, 0.0109, 0.0097, 0.008, 0.0075, 0.0075, 0.0071], [0.0677, 0.0182, 0.0171, 0.0125, 0.011, 0.0104, 0.0076, 0.0071], [0.6632, 0.244, 0.0617, 0.0074, 0.0061, 0.0054, 0.0011, 0.0005], [0.2009, 0.1565, 0.0448, 0.0225, 0.0212, 0.0113, 0.0094, 0.0078], [0.8345, 0.0568, 0.0127, 0.005, 0.0034, 0.0011, 0.0011, 0.001], [0.8692, 0.0809, 0.0116, 0.0033, 0.0013, 0.0007, 0.0007, 0.0006], [0.7898, 0.1211, 0.0326, 0.006, 0.0028, 0.002, 0.0014, 0.0011], [0.562, 0.2067, 0.161, 0.0075, 0.004, 0.0038, 0.0038, 0.0026], [0.1435, 0.1435, 0.0266, 0.0194, 0.0171, 0.0161, 0.0134, 0.0134], [0.0275, 0.0243, 0.0228, 0.0201, 0.0201, 0.0189, 0.0178, 0.0167], [0.0307, 0.0239, 0.0225, 0.0186, 0.0175, 0.0164, 0.0154, 0.0136], [0.0888, 0.0692, 0.0539, 0.0254, 0.0225, 0.0154, 0.0145, 0.0145], [0.0589, 0.0589, 0.0431, 0.0278, 0.0169, 0.0149, 0.0131, 0.0123], [0.0609, 0.0609, 0.0538, 0.0474, 0.0239, 0.0211, 0.0211, 0.0198], [0.092, 0.0812, 0.0632, 0.0558, 0.0299, 0.0233, 0.0233, 0.017], [0.0778, 0.0569, 0.0416, 0.0324, 0.0269, 0.0269, 0.0223, 0.0209], [0.0438, 0.0411, 0.0386, 0.0341, 0.0282, 0.022, 0.0194, 0.0171], [0.0639, 0.0439, 0.0388, 0.0284, 0.0266, 0.0221, 0.0195, 0.0183], [0.1032, 0.0458, 0.0315, 0.0296, 0.0261, 0.0191, 0.0179, 0.0179], [0.097, 0.0553, 0.043, 0.038, 0.0315, 0.0261, 0.0203, 0.0169], [0.0997, 0.0936, 0.0643, 0.0415, 0.0344, 0.0304, 0.0184, 0.0153], [0.1432, 0.1264, 0.0924, 0.0282, 0.022, 0.0182, 0.0182, 0.0151], [0.2002, 0.0889, 0.0539, 0.0447, 0.0271, 0.0239, 0.0186, 0.0164], [0.2299, 0.0619, 0.0513, 0.0482, 0.0331, 0.0292, 0.0242, 0.0228], [0.1141, 0.1007, 0.0506, 0.0506, 0.0476, 0.0394, 0.0394, 0.0271], [0.1591, 0.0516, 0.0485, 0.0428, 0.0428, 0.0402, 0.0378, 0.0313], [0.5069, 0.0998, 0.0416, 0.0367, 0.0252, 0.0223, 0.0197, 0.0099], [0.426, 0.1077, 0.074, 0.0509, 0.0272, 0.0272, 0.0187, 0.0121], [0.3841, 0.1247, 0.0971, 0.0857, 0.0315, 0.0278, 0.0217, 0.0191], [0.3869, 0.1828, 0.0762, 0.0408, 0.0247, 0.0218, 0.0218, 0.0193], [0.61, 0.1201, 0.0729, 0.0268, 0.0163, 0.0127, 0.0112, 0.0112], [0.8913, 0.0829, 0.0068, 0.0022, 0.0022, 0.0013, 0.0013, 0.001], [0.9101, 0.0659, 0.0061, 0.0048, 0.0042, 0.0023, 0.0014, 0.0007], [0.931, 0.0409, 0.0091, 0.0049, 0.0043, 0.003, 0.0008, 0.0008], [0.9037, 0.0841, 0.0047, 0.0015, 0.0014, 0.0008, 0.0007, 0.0004], [0.9362, 0.0528, 0.0034, 0.002, 0.0011, 0.001, 0.0007, 0.0004], [0.9695, 0.0228, 0.0019, 0.0013, 0.001, 0.0008, 0.0005, 0.0003], [0.8522, 0.0617, 0.0481, 0.0122, 0.0074, 0.0051, 0.0021, 0.0019], [0.8354, 0.0777, 0.0416, 0.0286, 0.0056, 0.0016, 0.001, 0.001], [0.4991, 0.2671, 0.1262, 0.0867, 0.003, 0.0026, 0.0018, 0.0013], [0.4905, 0.2045, 0.1804, 0.0517, 0.0244, 0.0062, 0.0042, 0.0037]], "ranks": {"Python": [11273, 38179, 33275, 106455, 23895, 99821, 31537, 112529, 64442, 87127, 53396, 78279, 74297, 73466, 25162, 34394, 50662, 44747, 59419, 111310, 82587, 142076, 116966, 63971, 60196, 79570, 71193, 38390, 29768, 16223, 14279, 10985, 13572, 13579, 24684, 6297, 10124, 11727, 16146, 12280, 8399, 8529, 9715, 16008, 14108, 8305, 14977, 8733, 17737, 23656, 62424, 33534, 48341, 31920, 20951, 11470, 2973, 2296, 2738, 1679, 1758, 668, 625]}}, {"pos": 491, "top": [[",", " \u2013", "\u2013", ".", "y", "i", "t", "er"], ["kids", "er", "y", "\u2013and", ",", "t", "es", "--"], [",", ".", "\u2026", "\u2013", "\u2013and", "?", ";", " \u2013"], ["\uff0d\uff0d", " \u041f\u043e\u043f\u0440\u043e", "kids", "sWith", " \uffe5\uffe5", "\u062a\u064a\u0646", "\uae50", "zinho"], ["--", "@", "i", ".@", "t", "y", "&", "!--"], ["kids", ",", " pretty", " crazy", "!!", "t", ".@", "!--"], ["--", "!!", " guys", "t", "'t", " pretty", "\u2019t", " crazy"], [" pretty", " guys", "!!", "!--", " crazy", " veggies", "-ish", " scary"], [" guys", " pretty", "!!", " Philly", "  \n    \n", " veggies", "!\u201d", " kids"], [" guys", " veggies", " pretty", " kids", "!--", "\uae50", "-ish", "kids"], [" guys", " pretty", " kids", " Philly", "-ish", " stuff", " veggies", "kids"], [" guys", " veggies", " Philly", " kids", " freaking", " pretty", " stuff", " scary"], [" guys", " veggies", " Philly", " kids", " freaking", " pretty", " vibes", " stuff"], [" guys", " Philly", " kids", " pretty", " veggies", " freaking", " stuff", " vibes"], [" guys", " kids", " Philly", " pretty", " stuff", " folks", " freaking", " scary"], [" guys", " kids", " pretty", " folks", " stuff", " freaking", " scary", " big"], [" guys", " kids", " pretty", " veggies", " folks", " big", " freaking", " stuff"], [" kids", " guys", " pretty", " veggies", "kids", " folks", " freaking", " Philly"], [" freaking", " pretty", " kids", " folks", " veggies", " guys", "\u2014you", "kids"], [" folks", "\u2014you", " freaking", "\u2014even", " pretty", " kids", " everybody", "everything"], ["\u2014you", "\u2014even", "\n\n", "<|endoftext|>", " just", " folks", "everything", "--"], [" freaking", " kids", " folks", " scary", " Philly", " everybody", " guys", " smack"], [" freaking", " folks", " --", " everybody", " kids", "\u2014even", " smack", "\u2014you"], ["\n\n", " --", " just", " everybody", " truly", "--", " even", " folks"], ["\n\n", "  \n\n", " \n\n", "   \n\n", "\r\n\r\n", "    \n\n", " \r\n\r\n", " folks"], ["\n\n", " freaking", " folks", "  \n\n", " ____", "\r\n\r\n", "   \n\n", " --"], ["\n\n", " freaking", "\r\n\r\n", "  \n\n", " ____", " folks", " --", "   \n\n"], ["\n\n", "  \n\n", " \n\n", "\r\n\r\n", " --", "   \n\n", " ____", " __"], ["\n\n", "  \n\n", " \n\n", "   \n\n", "\r\n\r\n", " freaking", " truly", " --"], ["  \n\n", "\n\n", " \n\n", "   \n\n", " ____", " \n  \n", "    \n\n", " freaking"], ["\n\n", "  \n\n", " ...", " \n\n", " ____", " everything", " ...\\", "   \n\n"], ["\n\n", " everything", " ...", " truly", " just", " incredibly", " really", " freaking"], [" truly", " everything", " incredibly", " just", " really", " freaking", " literally", " forever"], [" truly", "\u2014but", " freaking", "\u2014even", "\u2014not", "\u2014you", " incredibly", " crazy"], [" truly", "\u2014but", " freaking", "\u2014not", "\u2014you", " EVERY", " NEVER", " genuinely"], ["\u2014but", "\u2014not", " truly", " freaking", " EVERY", " NEVER", " ONLY", "\u2014you"], ["\u2014but", "\u2014not", " truly", " freaking", " genuinely", "\u2014you", " EVERY", " literally"], ["\u2014but", " freaking", "\u2014not", "\u2014you", " genuinely", " truly", " EVERY", " crappy"], [" genuinely", "\u2014but", "\u2014not", " truly", "\u2014you", " freaking", " crappy", " bullshit"], ["\u2014but", " genuinely", " freaking", "\u2014not", " bullshit", " crappy", "\u2014you", " truly"], [" crappy", " freaking", " genuinely", "\u2014but", " tweaking", " bullshit", " tweak", " literally"], [" tweaking", " genuinely", "\u2014you", "\u2014not", "\u2014but", " freaking", " crappy", " tweak"], [" tweaking", " genuinely", " truly", " tweak", " purely", " impossible", " bullshit", " freaking"], [" tweaking", " purely", " tweak", "\u76f4\u63a5\u4f7f\u7528", "\u76f4\u63a5\u7528", " tweaks", " workaround", " truly"], [" purely", "\u76f4\u63a5\u7528", " genuinely", "\u76f4\u63a5\u4f7f\u7528", " tweaking", " truly", " workaround", " actually"], [" genuinely", " actually", " purely", "\u76f4\u63a5\u4f7f\u7528", "\u76f4\u63a5\u7528", " truly", " entirely", " literally"], [" actually", " truly", " genuinely", "actually", "\u76f4\u63a5\u4f7f\u7528", " purely", " actual", "\u771f\u6b63\u610f\u4e49\u4e0a\u7684"], [" actually", "\u76f4\u63a5\u4f7f\u7528", " genuinely", " truly", " purely", "\u76f4\u63a5\u7528", " entirely", "actually"], ["\u76f4\u63a5\u4f7f\u7528", "\u505a\u4e0d\u5230", " actually", " impossible", "\u2014you", " necessarily", "\u2014not", " purely"], ["\u76f4\u63a5\u4f7f\u7528", " actually", " truly", "\u505a\u4e0d\u5230", "\u771f\u6b63\u5b9e\u73b0", "\u5c31\u771f\u7684", "actually", "\u76f4\u63a5\u7528"], ["\u76f4\u63a5\u4f7f\u7528", "\u505a\u4e0d\u5230", "\u76f4\u63a5\u7528", ";**", "\u2014you", "*;", " actually", " impossible"], [";**", "\u505a\u4e0d\u5230", "\u76f4\u63a5\u4f7f\u7528", " actually", "\u771f\u7684", "actually", "\u76f4\u63a5\u7528", "Actually"], ["\u76f4\u63a5\u4f7f\u7528", "\u505a\u4e0d\u5230", "\u2014you", "\u771f\u7684", "\u2019t", " actually", "\u76f4\u63a5\u7528", "\u4e0d\u80fd\u4f7f\u7528"], ["\u2014you", "\u2019t", "\u505a\u4e0d\u5230", "\u4e0d\u80fd\u7528", "\u4e0d\u80fd\u4f7f\u7528", " actually", "\u76f4\u63a5\u4f7f\u7528", "\u771f\u7684"], [" magically", " actually", "\u2019t", " magic", "\u2014you", "Actually", " abandon", "actually"], [" abandon", " rewrite", " magically", " actually", "\u2019t", " rewriting", "\u5f03", " magic"], ["\u2019t", " *\u201c", " rewrite", " abandon", "\u2019ll", " \u201c", " refactor", " rewriting"], ["\u2019t", " rewrite", " *\u201c", " abandon", "\u5f03", "\u2019ll", " \u201c", " refactor"], ["\u2019t", "'t", " write", " rewrite", "\u2019T", "-write", "\u7f16\u5199", "\u2019ll"], ["\u2019t", "'t", " write", " rewrite", "-write", " abandon", "\u2019T", " \u201c"], ["\u2019t", "'t", " write", " rewrite", "\u2019T", " \u201c", " \u2019", " abandon"], ["\u2019t", "'t", " write", " rewrite", "\u2019T", "\u2019y", " abandon", " fight"], ["\u2019t", "'t", "\u2019T", "\u2019y", "\u2019s", "\u2019", "\u2019d", "\u2019ll"]], "p": [[0.2681, 0.2088, 0.1842, 0.1626, 0.0438, 0.0171, 0.0133, 0.0086], [0.0489, 0.0231, 0.0231, 0.0149, 0.0149, 0.014, 0.0116, 0.0102], [0.734, 0.1638, 0.0303, 0.0184, 0.0046, 0.0046, 0.0039, 0.0019], [0.012, 0.0106, 0.01, 0.0073, 0.0053, 0.0037, 0.0034, 0.0032], [0.2749, 0.1077, 0.095, 0.0788, 0.074, 0.0396, 0.0256, 0.0187], [0.0398, 0.0374, 0.0291, 0.0257, 0.0188, 0.0188, 0.0188, 0.0188], [0.0658, 0.0352, 0.0257, 0.0213, 0.0177, 0.0177, 0.0177, 0.0156], [0.032, 0.0266, 0.0266, 0.0207, 0.0171, 0.0161, 0.0151, 0.0134], [0.0563, 0.0412, 0.0301, 0.0194, 0.0161, 0.0134, 0.0126, 0.0126], [0.0654, 0.0397, 0.0373, 0.0273, 0.0273, 0.0176, 0.0176, 0.0146], [0.0952, 0.0373, 0.035, 0.02, 0.0137, 0.0129, 0.0114, 0.0107], [0.0962, 0.0548, 0.0259, 0.0243, 0.0215, 0.0215, 0.0178, 0.0115], [0.1768, 0.0889, 0.0395, 0.0395, 0.0348, 0.0289, 0.0186, 0.0186], [0.3178, 0.0404, 0.0404, 0.0357, 0.0335, 0.0245, 0.0245, 0.023], [0.3162, 0.0964, 0.0906, 0.0663, 0.0428, 0.026, 0.0168, 0.0131], [0.368, 0.1738, 0.0821, 0.0302, 0.0302, 0.0162, 0.0162, 0.0152], [0.184, 0.0985, 0.0677, 0.034, 0.03, 0.0265, 0.0234, 0.022], [0.1243, 0.1097, 0.0665, 0.0487, 0.0379, 0.0379, 0.0356, 0.0191], [0.0995, 0.0684, 0.0533, 0.0533, 0.039, 0.039, 0.0344, 0.0209], [0.0699, 0.0656, 0.0544, 0.0544, 0.048, 0.0351, 0.02, 0.0156], [0.0403, 0.0378, 0.0334, 0.0295, 0.0295, 0.0168, 0.0168, 0.0115], [0.119, 0.022, 0.0194, 0.0133, 0.0118, 0.0104, 0.0098, 0.0086], [0.124, 0.0314, 0.0229, 0.0203, 0.0158, 0.0148, 0.0131, 0.0115], [0.1165, 0.0664, 0.0456, 0.0179, 0.0139, 0.0131, 0.0115, 0.0108], [0.9592, 0.0256, 0.0031, 0.0029, 0.0016, 0.0006, 0.0003, 0.0002], [0.5029, 0.093, 0.0284, 0.0267, 0.0143, 0.0098, 0.0081, 0.0072], [0.9275, 0.0067, 0.0049, 0.0036, 0.0022, 0.0017, 0.0015, 0.0009], [0.9861, 0.0066, 0.002, 0.0011, 0.0004, 0.0003, 0.0002, 0.0001], [0.8923, 0.0392, 0.0044, 0.0034, 0.003, 0.0015, 0.0009, 0.0008], [0.6334, 0.1413, 0.0296, 0.0296, 0.0204, 0.0102, 0.0045, 0.0043], [0.6937, 0.0731, 0.0253, 0.0163, 0.0153, 0.0082, 0.0064, 0.0064], [0.1104, 0.0555, 0.046, 0.0432, 0.0382, 0.0316, 0.0246, 0.0149], [0.0625, 0.0295, 0.0203, 0.0179, 0.014, 0.0123, 0.0109, 0.0109], [0.0831, 0.0571, 0.0473, 0.0253, 0.0238, 0.0197, 0.0185, 0.0136], [0.0834, 0.0736, 0.0447, 0.0211, 0.0198, 0.0175, 0.0164, 0.0164], [0.1887, 0.0508, 0.0477, 0.0289, 0.024, 0.0225, 0.0225, 0.0187], [0.0774, 0.05, 0.0469, 0.0323, 0.0236, 0.0208, 0.0162, 0.0152], [0.0414, 0.0343, 0.0323, 0.0303, 0.0236, 0.0208, 0.0196, 0.0184], [0.0484, 0.0401, 0.0333, 0.0259, 0.0215, 0.0215, 0.0157, 0.0148], [0.0364, 0.0207, 0.0162, 0.0152, 0.0152, 0.0152, 0.0143, 0.0134], [0.0212, 0.0176, 0.0155, 0.0146, 0.0146, 0.0129, 0.0113, 0.0107], [0.0304, 0.0209, 0.0197, 0.0197, 0.0173, 0.0153, 0.0135, 0.0127], [0.0317, 0.028, 0.017, 0.015, 0.0141, 0.0117, 0.0109, 0.0109], [0.0426, 0.0189, 0.0189, 0.0157, 0.0147, 0.013, 0.013, 0.0122], [0.044, 0.0267, 0.0251, 0.0236, 0.0221, 0.0183, 0.0172, 0.0162], [0.0498, 0.0439, 0.0413, 0.0413, 0.0284, 0.0266, 0.0207, 0.0134], [0.1928, 0.0911, 0.0804, 0.0519, 0.0261, 0.023, 0.0191, 0.0168], [0.1266, 0.0986, 0.0721, 0.0637, 0.0466, 0.0341, 0.0234, 0.022], [0.0846, 0.0482, 0.0453, 0.0292, 0.0201, 0.0201, 0.0189, 0.0167], [0.2168, 0.0515, 0.0401, 0.0332, 0.0293, 0.0259, 0.0243, 0.0228], [0.3254, 0.0823, 0.0602, 0.0414, 0.0152, 0.0111, 0.0105, 0.0087], [0.0909, 0.0854, 0.0708, 0.0665, 0.0295, 0.0295, 0.0245, 0.023], [0.0596, 0.0464, 0.041, 0.0385, 0.0319, 0.03, 0.03, 0.0219], [0.0824, 0.0566, 0.0344, 0.0236, 0.0184, 0.0173, 0.0152, 0.0126], [0.0878, 0.0775, 0.0567, 0.0236, 0.0196, 0.0143, 0.0126, 0.0112], [0.1145, 0.0613, 0.0541, 0.0349, 0.0225, 0.0176, 0.0155, 0.0146], [0.1493, 0.0964, 0.0705, 0.0333, 0.0229, 0.019, 0.0157, 0.0123], [0.2868, 0.0681, 0.0601, 0.0468, 0.0251, 0.0235, 0.0183, 0.0143], [0.9902, 0.0059, 0.0012, 0.0004, 0.0003, 0.0003, 0.0001, 0.0001], [0.9663, 0.0156, 0.0122, 0.0011, 0.0004, 0.0004, 0.0003, 0.0003], [0.9663, 0.0331, 0.0002, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.8516, 0.148, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9578, 0.0421, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Python": [23015, 164147, 41590, 114365, 25228, 56125, 20946, 55071, 62469, 93837, 55751, 94401, 102726, 86480, 39520, 85886, 146014, 135152, 174680, 186839, 142792, 196759, 189985, 166097, 122879, 143796, 126346, 89904, 98589, 67447, 39101, 29991, 42614, 54943, 78279, 19439, 10848, 16513, 23610, 4691, 3214, 4313, 4871, 10303, 6715, 4577, 6913, 3974, 4608, 7526, 11837, 3038, 2811, 1964, 1002, 276, 20, 47, 127, 102, 94, 57, 82]}}, {"pos": 492, "top": [[" \u2013", "i", ".", "\u2026.", "\u2013", "\u3002", "\u2026", "\uff01"], ["\uff0e", " \u2013", "\u2026\u201d", "\uff0d", " \u2019", "  \r\n", "\uff08", " \u2018"], [" \u2013", "\u2026\u201d", "\uff0e", "\u2026", "\u2013", "\u2026.", "\u2019", "\uff0c"], [" \u2019", "\u30f3", "\uff0e", " **\u2018", "\uff3f", "\uff0d\uff0d\uff0d\uff0d", "\uff0d", "\uff3f\uff3f"], ["\uff0e", " \u2019", "\u2026\u201d", "i", " \uff08", "\u2019", "\uff0d", "\u30f3"], ["\uff0e", " \u2019", "\u2026\u201d", " \uff08", "\uff0c", "i", "\u2019", " \u201d"], ["\uff0e", " \u2019", "\u2026\u201d", "i", "\u2019", "\uff0c", "  \n\n", "  \n"], ["\uff0e", " \u2019", "\u2026\u201d", "i", "  \n\n", "\u2019", "  \n", "\uff0c"], [" \u2019", "\u2026\u201d", "\uff0e", "\u2019", "  \n\n", " \u2018", " \u201c", " \u201d"], [" \u2019", "\u2026\u201d", "\uff0e", " \u00ad", "\u2019", "i", " \u201c", " \u2018"], [" \u2019", "\uff0e", "\u2026\u201d", "\u2019", "i", " \u201d", " \u00ad", " \u201c"], [" \u2019", "\uff0e", "\u2026\u201d", "i", " \u00ad", " \u201d", "\u2019**", "\u30f3"], [" \u2019", "\uff0e", "\u2026\u201d", "i", "\u2019**", "\u30f3", "\u2019", " \u00ad"], [" \u2019", "\uff0e", "\u30f3", "i", "\u2026\u201d", "\u2019**", " \u00ad", "\uff0d"], [" \u2019", "\uff0e", "i", " \u00ad", " \u201c", "\u00ac", "\u2019", "\u2026\u201d"], [" \u2019", "i", " \u00ad", " \u201c", "\u2019", " \u2018", "\u00ac", " \u201d"], [" \u2019", "i", " \u00ad", "\u2019", " \u201c", "\u2019s", " \u2018", "\u2019d"], [" \u2019", "i", " \u00ad", "\uff0e", "\u30f3", "\uff0d", "\u0647", "\u2026\u201d"], [" \u2019", "i", "\u0647", "\u30f3", " \u00ad", "\uff0e", "\uff0d", "\u2019"], [" \u2019", "i", " \u00ad", "\uff0d", " \u2018", "\u0647", " \ufffd", "\u30f3"], ["  \n\n", " \u2019", "i", "\uff0d", " \r\n\r\n", " \ufffd", " \u00ad", "\r\n\r\n"], [" \u2019", "\u2019**", " **\u2018", "\u30f3", "i", " \u2018\u2019", "\u2011", " \ufffd"], [" \u2019", "i", " \ufffd", " \u2018\u2019", " \u2018", "\uff0d", " ___", "\u2019\u2019"], [" \u2019", "i", " \u2018", " \u00ad", " \u201c", " \ufffd", " \u2018\u2019", "\uff0d"], ["  \n\n", " \u2019", " \n\n", "\r\n\r\n", " \r\n\r\n", " ___", " \n  \n", "i"], [" \u2019", " ___", " **\u2018", " **\u201c", "\u2019**", "\u2011", "  \n\n", " **"], [" \u2019", " ___", " **\u2018", "\r\n\r\n", "\u2019**", " **\u201c", "\uff3f", " **"], [" \u2019", " \n\n", "\n\n", "  \n\n", " ___", " \u2018", "\r\n\r\n", "\u2011"], [" \u2019", "  \n\n", " \n\n", "\u2011", " ___", " \u2018", " \n  \n", " \ufffd"], [" \u2019", " ___", " \u2026", " \n  \n", " ...", "\u2011", " \u201c", "  \n\n"], [" \u2026", " \u2019", " ...", "...", " \n", "\u2026", " \n  \n", " \u201c"], [" \u2019", " ...", " \u2026", "...", " \u201c", " ,", "\u2026", "\u2011"], [" \u2019", " \u2026", " \u2013", " \u201c", " ...", "\u2011", "\u2026", " \u201d"], [" \u2026", "\u2014but", " \u2019", "\u2011", "\u2026\u201d", "\u2026", " technologies", " \u201c"], ["\u2011", "\u2014but", " \u201c", "\u2026\u201d", " \u201d", " \u2019", " \u2026", " \u2013"], [" \u2026", "\u2011", "\u2026\u201d", " \u201c", "\u2026", " \u201d", " \u2013", "\u2014but"], [" \u201c", "\u2014but", "\u2011", "\u2026\u201d", " \u201d", " \u2013", " \u2014", " \u2026"], [" \u201c", "\u2011", "\u2026\u201d", " \u201d", "\u2014but", " \u2026", "\u2026", "!\u201d"], ["\u2011", " \u201c", "\u2026\u201d", " \u201d", " \u2026", "\u2014but", "\u2026", " \u2019"], ["\u2011", " \u201c", " \u2026", " \u201d", "\u2026\u201d", " \u2013", "\u2014but", "\u2026"], ["\u2011", " \u201c", " hardware", " engineering", " software", " technology", " \u201d", " engineers"], [" engineering", " hardware", " engineers", " software", " \u201c", " \u201d", " technology", "\u2011"], [" engineering", " engineers", " hardware", " software", " programmers", " crafting", " \u201c", " developers"], [" engineering", " crafting", " engineers", " hardware", " software", " technology", " \u201c", " technologies"], [" engineering", " crafting", " hardware", " engineers", " directly", " code", " entirely", " construction"], [" directly", " crafting", " engineering", " engineers", " entirely", " hardware", " explicitly", " DIY"], [" directly", " explicitly", " technically", " direct", " crafting", " anything", " engineering", " hardware"], [" directly", " explicitly", " entirely", " direct", " crafting", " purely", " independently", " standalone"], [" directly", " writing", " crafting", " entirely", " purely", " explicitly", " **", " invent"], ["\u76f4\u63a5\u4f7f\u7528", " directly", " entirely", ";**", "\u76f4\u63a5\u7528", " outright", "\u76f4\u63a5\u5728", " direct"], [" \u201c", " **\u201c", " (\u201c", " *\u201c", "\u76f4\u63a5\u4f7f\u7528", "=\u201d", " \u201c[", " \u201c."], [" \u201c", " **\u201c", " *\u201c", " \u201c.", " (\u201c", "!\u201c", " \u201c[", ";**"], [" **\u201c", " rewriting", " \u201c", " *\u201c", " rewrite", ";**", "\u7f16\u5199", " \u201c."], [" rewriting", " rewrite", "\u7f16\u5199", " *\u201c", " **\u201c", " \u201c", " writing", "-write"], [" rewriting", " rewrite", " pure", "\u7f16\u5199", "-write", " \u201c", " rewritten", " writing"], [" rewrite", " rewriting", " \u201c", " Rewrite", "rewrite", " abandon", "\u91cd\u5199", " pure"], [" rewrite", " rewriting", " write", " writing", "-write", "\u5199", "\u7f16\u5199", "\u5199\u6210"], [" write", " rewrite", "\u5199", "-write", " writing", " rewriting", " *\u201c", " writes"], [" write", " writing", "\u5199", "-write", " writes", " Write", " rewrite", "\u5199\u7684"], [" write", " writing", " Write", " writes", "-write", "\u5199", "write", " rewrite"], [" write", " rewrite", " writing", " Write", "-write", " writes", " \u201c", " *"], [" write", " rewrite", " *", " ship", " abandon", "-write", " Write", " \u201c"], [" write", " rewrite", " use", " ship", " fight", " run", " abandon", " *"]], "p": [[0.9353, 0.0151, 0.0133, 0.0118, 0.0056, 0.002, 0.0017, 0.0015], [0.7628, 0.0911, 0.038, 0.014, 0.0123, 0.0096, 0.0085, 0.0058], [0.2919, 0.2576, 0.2273, 0.0948, 0.0349, 0.0165, 0.0145, 0.0069], [0.2259, 0.1459, 0.1067, 0.0537, 0.0537, 0.0445, 0.0393, 0.0238], [0.6195, 0.2926, 0.024, 0.0187, 0.0069, 0.0047, 0.0033, 0.0025], [0.5296, 0.1948, 0.1182, 0.0233, 0.0233, 0.011, 0.011, 0.0086], [0.7747, 0.1188, 0.034, 0.0265, 0.0111, 0.0036, 0.0032, 0.0028], [0.5599, 0.206, 0.0859, 0.0358, 0.0192, 0.0192, 0.0103, 0.0062], [0.4218, 0.2899, 0.1209, 0.0504, 0.0445, 0.0112, 0.006, 0.0053], [0.6796, 0.1947, 0.0558, 0.0141, 0.0086, 0.0052, 0.0036, 0.0036], [0.5994, 0.1946, 0.118, 0.016, 0.0141, 0.0052, 0.0046, 0.0036], [0.9526, 0.012, 0.0073, 0.003, 0.0024, 0.0024, 0.0015, 0.0015], [0.9338, 0.022, 0.0081, 0.0056, 0.0026, 0.0023, 0.0016, 0.0014], [0.9284, 0.0218, 0.0067, 0.0067, 0.0055, 0.0023, 0.002, 0.0016], [0.9654, 0.0122, 0.0074, 0.0021, 0.0014, 0.0014, 0.0011, 0.0011], [0.9849, 0.0046, 0.0036, 0.0015, 0.0007, 0.0005, 0.0005, 0.0004], [0.8422, 0.114, 0.0083, 0.0064, 0.0042, 0.0032, 0.0017, 0.0014], [0.6103, 0.2245, 0.0304, 0.0153, 0.0127, 0.0082, 0.0082, 0.005], [0.59, 0.3158, 0.0178, 0.0115, 0.0102, 0.0035, 0.0029, 0.0024], [0.7843, 0.0937, 0.0119, 0.0099, 0.0099, 0.006, 0.0056, 0.0056], [0.3269, 0.211, 0.1363, 0.0568, 0.0252, 0.0237, 0.0222, 0.0135], [0.9624, 0.0073, 0.0037, 0.0016, 0.0014, 0.0013, 0.0011, 0.0011], [0.9825, 0.004, 0.0015, 0.0014, 0.0012, 0.0008, 0.0005, 0.0005], [0.9506, 0.0144, 0.0088, 0.003, 0.0028, 0.0018, 0.0014, 0.0014], [0.4521, 0.3521, 0.0476, 0.0371, 0.0371, 0.0094, 0.0057, 0.0037], [0.7911, 0.1071, 0.0224, 0.01, 0.0094, 0.0073, 0.005, 0.0034], [0.7698, 0.1718, 0.0059, 0.0046, 0.0036, 0.0023, 0.002, 0.0019], [0.8057, 0.0584, 0.0259, 0.0229, 0.0215, 0.0157, 0.0084, 0.0031], [0.9271, 0.0097, 0.0066, 0.0062, 0.0052, 0.0031, 0.0026, 0.0024], [0.7501, 0.0291, 0.0257, 0.0213, 0.0121, 0.0089, 0.0083, 0.0078], [0.2314, 0.2042, 0.1802, 0.0378, 0.0355, 0.0313, 0.0244, 0.0244], [0.1619, 0.1428, 0.0765, 0.0464, 0.0339, 0.0171, 0.0125, 0.011], [0.0658, 0.0581, 0.0352, 0.0292, 0.0227, 0.0166, 0.0122, 0.0122], [0.1968, 0.093, 0.0724, 0.0498, 0.0388, 0.0364, 0.0221, 0.0221], [0.1429, 0.1261, 0.1184, 0.1184, 0.1045, 0.0718, 0.0281, 0.016], [0.2374, 0.2095, 0.1631, 0.099, 0.0498, 0.0467, 0.0364, 0.0235], [0.2231, 0.1533, 0.1353, 0.0601, 0.0601, 0.053, 0.0388, 0.0321], [0.2086, 0.2086, 0.1347, 0.1049, 0.0465, 0.0282, 0.0265, 0.0234], [0.3432, 0.1837, 0.1047, 0.0815, 0.0385, 0.0362, 0.0282, 0.0133], [0.5906, 0.0964, 0.0294, 0.0276, 0.0244, 0.0123, 0.0102, 0.0102], [0.2454, 0.0483, 0.0401, 0.0354, 0.0259, 0.0243, 0.0228, 0.0201], [0.2092, 0.1438, 0.0679, 0.0438, 0.0321, 0.0283, 0.0195, 0.0152], [0.1948, 0.111, 0.0979, 0.0281, 0.0219, 0.0205, 0.0181, 0.016], [0.1356, 0.0641, 0.0641, 0.0602, 0.0267, 0.0195, 0.0172, 0.0162], [0.0793, 0.0545, 0.0424, 0.0375, 0.0242, 0.0213, 0.02, 0.0188], [0.0658, 0.0618, 0.0581, 0.0292, 0.0292, 0.0227, 0.0201, 0.0189], [0.1036, 0.0489, 0.0279, 0.018, 0.018, 0.018, 0.0159, 0.0159], [0.1779, 0.0615, 0.0397, 0.035, 0.0273, 0.0241, 0.0212, 0.0165], [0.0876, 0.0682, 0.0389, 0.0303, 0.0284, 0.0284, 0.0284, 0.0236], [0.215, 0.1674, 0.1388, 0.0896, 0.0511, 0.0374, 0.0273, 0.0241], [0.6232, 0.1391, 0.0398, 0.031, 0.02, 0.0177, 0.0138, 0.0114], [0.4414, 0.1265, 0.0561, 0.0527, 0.0465, 0.0206, 0.0171, 0.0151], [0.1757, 0.1368, 0.0883, 0.078, 0.0503, 0.0473, 0.0417, 0.021], [0.2996, 0.2059, 0.0554, 0.0381, 0.0358, 0.0217, 0.0169, 0.0132], [0.3897, 0.2678, 0.0527, 0.0207, 0.0171, 0.0125, 0.0098, 0.0098], [0.5463, 0.3313, 0.0349, 0.0113, 0.0088, 0.0069, 0.0069, 0.0069], [0.5154, 0.1673, 0.1303, 0.0291, 0.0257, 0.0176, 0.0156, 0.0121], [0.5054, 0.2705, 0.0415, 0.0366, 0.0323, 0.0252, 0.0093, 0.0072], [0.7562, 0.1687, 0.0293, 0.0095, 0.0084, 0.0058, 0.0051, 0.0021], [0.9806, 0.0066, 0.004, 0.0021, 0.0021, 0.0011, 0.0011, 0.0004], [0.9753, 0.0058, 0.0027, 0.0027, 0.0024, 0.0024, 0.0021, 0.0015], [0.9701, 0.0138, 0.0051, 0.0011, 0.001, 0.0009, 0.0009, 0.0005], [0.954, 0.0254, 0.0057, 0.0039, 0.0016, 0.0013, 0.0013, 0.001]], "ranks": {"Python": [12527, 95355, 38476, 57961, 17826, 33558, 8508, 14693, 15262, 15024, 7982, 9825, 9012, 11335, 10343, 21818, 18762, 18672, 27847, 31478, 7116, 7840, 5848, 6586, 2933, 2690, 1404, 1518, 953, 805, 1357, 2743, 3411, 1238, 1580, 373, 93, 88, 89, 39, 23, 59, 78, 102, 118, 139, 76, 77, 100, 540, 1072, 36, 64, 73, 89, 50, 40, 52, 156, 90, 68, 32, 99]}}, {"pos": 493, "top": [[".", ",", "\u2013", " \u2013", ";", "\u00a0", "?", " "], [" \u2013", "\u2013", ",", ".", ";", " ", "  \n", ":"], [",", ".", "\u2013", ";", " \u2013", "[", "?", "\u2026"], [" ``", " ``(", "``", "\u3015", " ''", "\u3001\u300e", " \u2018\u2019", "\uff0a\uff0a\uff0a\uff0a"], [".", "e", "able", " \n \n", ",", " \u2018", " ", " \u201c"], [" \n \n", ",", "called", "paper", " \n", " \n  \n", "leaf", "call"], [" \n \n", "\n \n", " __", " \n", ".__", "__", ":__", "edly"], [" __", " \n \n", ":__", " \r\n \r\n", "\n \n", "__*/", "__.", ".__"], [" \n \n", " \n", "\n \n", " \n  \n", " \r\n \r\n", " \n\n\n", "__.", ":__"], [" \n \n", " ''", " \r\n \r\n", " \n  \n", ".''", ":__", "\u2010", "\u3001\u300e"], [" ''", " \n \n", " __", " \n  \n", " \n", "\n \n", "''", "\u2010"], [" ''", " ``", " *__", " __", " '__", " **>>", " **", " $__"], [" ''", " ``", " **", " **>>", " __", " '__", " **\u300c", " **\u00ab"], [" ''", " ``", " stuff", " guys", " big", " books", " really", " cops"], [" stuff", " ''", " big", " guys", " really", " --", " cops", " ``"], [" big", " stuff", " guys", " kids", " really", " --", " folks", " cops"], [" big", " kids", " stuff", " guys", " really", " folks", " everything", " bigger"], [" big", " kids", " stuff", " guys", " silly", " booze", " smarter", "books"], [" stuff", "books", " silly", "-writing", " smarter", " booze", " big", "\u2014you"], [" big", " stuff", "\u2014or", "\u2014you", "books", " smarter", " dozens", "everything"], ["<|endoftext|>", " \n\n", " --", " \u2014", " \n  \n", " dozens", "everything", " w"], [" ''", " ``", " silly", "books", " smarter", " stuff", " \\\"", " books"], [" ``", " ''", " ___", " *__", " __", ":__", " '__", "___"], [" ``", " ''", " __", " --", "``", " \\\"", " ___", "''"], [" \n\n", " __", " ___", "___", " ''", " ``", "\r\n\r\n", " \r\n \r\n"], [" ___", " __", " *__", "___", " ____", ":__", " ``", "__:"], [" ___", " __", " *__", "___", " ``", " ____", " ''", ":__"], ["\n\n", " __", " ___", " \n\n", " ____", "___", "\r\n\r\n", " ''"], [" __", " ___", " \n\n", "\n\n", " ____", " ''", "___", " _____"], [" __", " ___", " ____", "___", " _____", " ______", " \n  \n", " ________"], [" ___", " __", " ____", " _____", "___", " ______", "__:", " ________"], [" __", " ___", " everything", " ____", " \\\"", " _____", " work", " something"], [" \\\"", " everything", " ___", " __", " tech", " entirely", " literally", " anything"], ["\u2014but", " tech", " ___", " **", " entirely", " literally", " everything", " crazy"], ["\u2014but", " ____", " tech", " **\u201c", " literally", " bullshit", " ___", " **"], ["\u2014but", " EVERY", " NOTHING", " yourself", " bullshit", " damn", " ____", " purely"], ["\u2014but", " software", " entirely", " *", " *[", " purely", " bullshit", " code"], [" writing", " software", " yourself", " code", " EVERY", "\u2014but", " everything", " bullshit"], [" code", " software", " writing", " yourself", " EVERY", " bullshit", "\u2014but", " everything"], [" code", " software", " Python", " yourself", " algorithms", " pure", " physics", " tech"], [" code", " software", " algorithms", " Python", " physics", " tech", "code", "\u4ee3\u7801"], [" code", " software", " engineering", " physics", " algorithms", " Python", " writing", " directly"], [" code", " directly", " software", " direct", " engineering", " algorithms", " physics", " writing"], [" code", " directly", " direct", " writing", "\u76f4\u63a5", " engineering", " pure", " software"], [" directly", " direct", " code", " entirely", " writing", " pure", "\u76f4\u63a5\u7528", " everything"], [" directly", " direct", " entirely", "\u76f4\u63a5\u7528", "\u76f4\u63a5\u4f7f\u7528", " everything", " pure", " code"], [" directly", " entirely", " direct", "\u76f4\u63a5\u4f7f\u7528", "\u76f4\u63a5\u7528", " pure", " code", " everything"], [" directly", " direct", " entirely", " pure", "\u76f4\u63a5\u4f7f\u7528", " everything", "\u76f4\u63a5\u7528", " Direct"], ["\u76f4\u63a5\u4f7f\u7528", "\u76f4\u63a5\u7528", ";**", "/write", " directly", " \u043d\u0430\u043f\u0440\u044f\u043c\u0443\u044e", "\u76f4\u63a5\u5728", " \uc9c1\uc811"], ["\u76f4\u63a5\u4f7f\u7528", ";**", "\u76f4\u63a5\u7528", " directly", " \u043d\u0430\u043f\u0440\u044f\u043c\u0443\u044e", "/write", "anything", "\u76f4\u63a5\u5728"], ["\u76f4\u63a5\u4f7f\u7528", ";**", "/write", ";*", "(\"\");", "\u76f4\u63a5\u7528", " \u043d\u0430\u043f\u0440\u044f\u043c\u0443\u044e", "\u6838\u5fc3\u6280\u672f"], ["/write", " code", " Python", "\u6838\u5fc3\u6280\u672f", ";**", "\u7684\u4e3b\u529b", " backend", " algorithms"], [" code", " hardware", " shaders", "/write", "-core", " *\u201c", " core", ";**"], [" shaders", " algorithms", " hardware", " backend", " physics", "-core", "-native", " code"], [" shaders", " Python", " GPU", " pure", " CUDA", " shader", " backend", " renderer"], [" Python", " renderer", " GPU", " shaders", " Renderer", " CUDA", " shader", " pure"], [" renderer", " GPU", " Renderer", " Python", "Renderer", "-render", " OpenGL", "renderer"], [" renderer", " Renderer", " GPU", "-render", "\u6e32\u67d3", "/render", "Renderer", " rendering"], [" renderer", " Renderer", " GPU", "Renderer", " shaders", " shader", "renderer", " OpenGL"], [" renderer", " rendering", " Renderer", "-render", "\u6e32\u67d3", " render", "Renderer", "/render"], [" renderer", " shaders", " Python", " rendering", " GPU", " OpenGL", " shader", " Renderer"], [" renderer", " Python", " shaders", " rendering", " render", " *", " pure", " OpenGL"], [" rendering", " Python", " renderer", " the", " shaders", " render", " *", " raw"]], "p": [[0.7335, 0.2381, 0.0105, 0.0072, 0.0044, 0.003, 0.0011, 0.0005], [0.3503, 0.1996, 0.1372, 0.1068, 0.0288, 0.0093, 0.0044, 0.0041], [0.4941, 0.436, 0.0406, 0.0116, 0.009, 0.0021, 0.0016, 0.0014], [0.2209, 0.0125, 0.011, 0.0071, 0.0046, 0.0036, 0.0025, 0.0022], [0.0282, 0.0207, 0.0182, 0.0171, 0.0171, 0.0133, 0.0111, 0.0111], [0.0139, 0.0062, 0.0048, 0.0038, 0.0035, 0.0033, 0.0033, 0.0027], [0.0931, 0.0681, 0.0565, 0.0498, 0.0284, 0.0208, 0.0195, 0.0134], [0.0649, 0.0288, 0.0254, 0.0211, 0.0198, 0.0164, 0.0164, 0.0145], [0.3716, 0.1, 0.0607, 0.0535, 0.0535, 0.0535, 0.0127, 0.0105], [0.0339, 0.017, 0.016, 0.0097, 0.008, 0.0063, 0.0059, 0.0055], [0.157, 0.0741, 0.0697, 0.0654, 0.0422, 0.0373, 0.02, 0.0155], [0.117, 0.1099, 0.0315, 0.0278, 0.0191, 0.0123, 0.0109, 0.0066], [0.0853, 0.0665, 0.0216, 0.0179, 0.0148, 0.0123, 0.0115, 0.0109], [0.0514, 0.0214, 0.0122, 0.0101, 0.0048, 0.0042, 0.0037, 0.0035], [0.042, 0.042, 0.0164, 0.0164, 0.0154, 0.0145, 0.0078, 0.0069], [0.044, 0.0414, 0.0365, 0.0267, 0.0251, 0.0143, 0.0098, 0.0087], [0.0787, 0.0421, 0.0349, 0.0328, 0.0308, 0.0113, 0.0094, 0.0083], [0.029, 0.0241, 0.0199, 0.0129, 0.0073, 0.0073, 0.0073, 0.0069], [0.0228, 0.0215, 0.013, 0.0115, 0.0101, 0.0084, 0.0079, 0.0079], [0.0156, 0.0138, 0.0121, 0.0121, 0.0078, 0.0074, 0.0074, 0.0069], [0.0646, 0.0325, 0.0127, 0.0127, 0.0112, 0.0087, 0.0077, 0.0072], [0.1048, 0.0766, 0.0086, 0.0081, 0.0067, 0.0063, 0.0052, 0.0043], [0.3627, 0.2342, 0.0714, 0.0461, 0.0407, 0.0103, 0.0091, 0.0091], [0.575, 0.3487, 0.0082, 0.006, 0.0053, 0.0039, 0.0036, 0.0016], [0.1533, 0.144, 0.1194, 0.068, 0.06, 0.0468, 0.0413, 0.0388], [0.437, 0.2064, 0.0861, 0.067, 0.0247, 0.0159, 0.0132, 0.0085], [0.4626, 0.2476, 0.0804, 0.0588, 0.0216, 0.0168, 0.0116, 0.0109], [0.3438, 0.2678, 0.2363, 0.0767, 0.0151, 0.0133, 0.0076, 0.0046], [0.3675, 0.2094, 0.0387, 0.0364, 0.025, 0.0161, 0.0152, 0.0076], [0.4324, 0.3816, 0.0851, 0.0168, 0.0157, 0.0123, 0.0051, 0.0037], [0.4363, 0.3398, 0.0859, 0.018, 0.0124, 0.0103, 0.0052, 0.0043], [0.1195, 0.0874, 0.0413, 0.0267, 0.0208, 0.0118, 0.0118, 0.0092], [0.0395, 0.0289, 0.0289, 0.0175, 0.0106, 0.01, 0.0088, 0.0078], [0.0375, 0.0201, 0.0166, 0.0166, 0.0129, 0.0122, 0.0122, 0.0107], [0.0761, 0.0181, 0.017, 0.017, 0.0159, 0.0159, 0.0132, 0.0132], [0.0673, 0.016, 0.0141, 0.0125, 0.0125, 0.0125, 0.011, 0.011], [0.0792, 0.0188, 0.0166, 0.0156, 0.0138, 0.0138, 0.0129, 0.0121], [0.0264, 0.0233, 0.0233, 0.0219, 0.0181, 0.017, 0.016, 0.0117], [0.0301, 0.0283, 0.025, 0.022, 0.0194, 0.0161, 0.0161, 0.0151], [0.0486, 0.0216, 0.019, 0.0168, 0.0139, 0.0131, 0.0123, 0.0108], [0.1513, 0.0557, 0.0383, 0.0359, 0.0205, 0.0192, 0.0181, 0.017], [0.1582, 0.0582, 0.04, 0.0376, 0.0275, 0.0228, 0.0201, 0.0138], [0.1057, 0.0773, 0.0441, 0.0343, 0.0285, 0.0236, 0.0236, 0.0208], [0.131, 0.1086, 0.0425, 0.0399, 0.0258, 0.0258, 0.0177, 0.0177], [0.2193, 0.0628, 0.0628, 0.0521, 0.0231, 0.0231, 0.0192, 0.0192], [0.3041, 0.0871, 0.0871, 0.0301, 0.0283, 0.025, 0.0234, 0.0234], [0.2923, 0.0652, 0.0613, 0.0508, 0.0396, 0.0289, 0.024, 0.0146], [0.2601, 0.0844, 0.0481, 0.0352, 0.0352, 0.0242, 0.0227, 0.0177], [0.0719, 0.0282, 0.0233, 0.016, 0.016, 0.0125, 0.0125, 0.011], [0.0684, 0.0251, 0.0196, 0.0173, 0.0162, 0.0126, 0.0112, 0.0112], [0.0355, 0.0294, 0.0244, 0.0215, 0.0148, 0.0148, 0.0139, 0.0139], [0.0434, 0.036, 0.0193, 0.017, 0.017, 0.015, 0.0132, 0.0124], [0.0359, 0.0337, 0.0317, 0.0279, 0.018, 0.018, 0.018, 0.0159], [0.0774, 0.05, 0.0268, 0.0173, 0.0173, 0.0162, 0.0152, 0.0143], [0.1427, 0.0559, 0.0409, 0.0361, 0.0361, 0.0339, 0.0299, 0.0233], [0.3237, 0.2225, 0.1191, 0.0341, 0.0301, 0.0266, 0.0194, 0.0183], [0.6297, 0.0664, 0.0586, 0.0403, 0.0314, 0.0277, 0.0244, 0.0168], [0.735, 0.047, 0.0285, 0.0285, 0.0252, 0.0222, 0.0222, 0.0153], [0.8623, 0.023, 0.023, 0.0139, 0.0139, 0.0096, 0.0096, 0.0058], [0.9194, 0.0216, 0.0102, 0.009, 0.009, 0.007, 0.0048, 0.0048], [0.8074, 0.0313, 0.0215, 0.019, 0.0148, 0.0115, 0.009, 0.0079], [0.3014, 0.2347, 0.1109, 0.0863, 0.0408, 0.036, 0.0193, 0.0181], [0.1858, 0.1858, 0.1277, 0.1277, 0.0603, 0.0603, 0.0532, 0.0268]], "ranks": {"Python": [18106, 48415, 50633, 59611, 11144, 80155, 5155, 16500, 9968, 25462, 9566, 20593, 17713, 15252, 15734, 23816, 20341, 13123, 28180, 31787, 11952, 18166, 9888, 6335, 6794, 3888, 2584, 1495, 1067, 1285, 1383, 2375, 3795, 2913, 2335, 368, 31, 26, 37, 3, 4, 6, 14, 56, 51, 58, 54, 51, 82, 162, 156, 3, 12, 29, 2, 1, 4, 18, 26, 24, 3, 2, 1]}}, {"pos": 494, "top": [[".", ",", "\u2013", " \u2013", ";", "\u00a0", " ", "\u00a0\u00a0"], [".", ",", " \u2013", "\u2013", ";", " ", "  ", "  \n"], [".", ",", "\u2013", " \u2013", "\u2026", ";", "\u2026.", "\u2026.."], [" milfs", "-------------</", "----------</", "\uff0a\uff0a\uff0a\uff0a", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "TRGL", "\uff3f\uff3f", " ;;^"], [".", ",", " ", ".@", " \u201c", "\u00a0\u00a0", "  ", " \u2019"], [".", ",", "\u2026.", "\u00a0\u00a0", " \u200b\u200b", "\u2026..", " \u201d", "  "], [".", " \u201d", "  \n", ".\u2019", ".\u201d", " ", " \u2019", "  "], [" **\u201e", " *@", "-ish", ".", " \u201e", ",", "\u5927\u91d1", "-W"], [",", ".", "\u00a0", ":", ";", ",.", "   \n", "\u00a0\u00a0"], [",", " \u00ad", "\u00ad", "\u516c\u53f7", "-Cds", "\u00adtion", "-ish", "\u4fe9\u4eba"], [" \u00ad", ",", " ", "er", " $", "\u00ad", "a", "-"], [" stuff", " guys", " goodies", " guts", " ***", " veggies", " **", "er"], [" guys", " veggies", " stuff", " goodies", "er", " meds", " guts", " guy"], [" guys", " stuff", " kids", " veggies", " guts", " guy", " goodies", " bigger"], [" stuff", " guys", " kids", " folks", " bigger", " goodies", " mostly", " going"], [" kids", " folks", " stuff", " guys", " guts", " goodies", " --", "kids"], [" folks", " kids", " guts", " stuff", " guys", " \u00ad", " savvy", " tech"], [" \u00ad", " kids", " stuff", " guys", " folks", " guts", " big", " goodies"], [" stuff", " folks", " kids", " \u00ad", " guys", " guts", " big", " things"], [" folks", " \u00ad", " --", " stuff", " pricey", " guts", " wildly", " \ufffd"], [" \u00ad", " folks", "  \n\n", " \n\n", " --", " wildly", " \ufffd", " stuff"], [" stuff", " pricey", " booze", " ;;^", " \\\"", " smarter", " veggies", " kids"], [" ``", " ''", " \\\"", " stuff", " ___", " \\'", " someday", " smarter"], [" ``", " ''", " \\\"", " --", " \\'", " stuff", " wildly", " someday"], [" ''", " \\\"", " \n\n", " ``", " \r\n\r\n", " ___", "\r\n\n", " \n  \n"], [" *__", " ___", " ;;^", "\u5176\u5b83\u5a92\u4f53", " stuff", " ``", " tech", " \\\""], [" ``", " ''", " tech", " ___", " ;;^", " stuff", "\u5176\u5b83\u5a92\u4f53", " software"], [" ''", " work", " ___", " tech", " --", " technology", " software", " ``"], [" tech", " ''", " technology", " software", " tools", " hardware", " work", " \\\""], [" ___", " tech", " technology", " **", " tools", " software", " work", " film"], [" ...", " ___", " work", " technology", " tech", " \\\"", " tools", " **"], [" work", " \\\"", " technology", " parts", " complex", " technical", " for", " ,"], [" tech", " \\\"", " *", " work", " core", " technical", " complex", " technology"], [" tech", " hardware", " technical", " software", " technology", " complex", " engine", " core"], [" tech", " hardware", " technical", " complex", " core", " *", " **", " ???"], [" \u2026", " technical", " hardware", "\u2026*", " tech", " *", "\u2026**", " [\u2026]"], [" hardware", " technical", " tech", " engine", " *", " engineering", " physics", " software"], [" technical", " hardware", " engine", " tech", " physics", " engineering", " mechanics", " software"], [" technical", " hardware", " engine", " core", " engineering", " physics", " mechanics", " tech"], [" hardware", " technical", " engine", " physics", " core", " mechanics", " engineering", " tech"], [" hardware", " technical", " engine", " physics", " software", " core", " mechanics", " tech"], [" hardware", " engine", " technical", " software", " physics", " engines", " mechanics", " engineering"], [" hardware", " engine", " core", " technical", " software", " engines", " mechanics", " physics"], [" hardware", " engine", " core", " technical", " mechanics", " engines", " software", " physics"], [" hardware", " core", " engine", " mechanics", " technical", " engines", " internals", " physics"], [" hardware", " core", " mechanics", " engine", " technical", " internals", " directly", " physics"], [" hardware", " core", " directly", " engine", " internals", " mechanics", " backend", " direct"], [" core", " hardware", " directly", " internals", " direct", " mechanics", " engine", " physics"], [" core", " hardware", " internals", "\u6838\u5fc3\u6280\u672f", "-core", "\u6838\u5fc3\u7684", " directly", " backend"], ["\u6838\u5fc3\u6280\u672f", " hardware", " internals", " core", "\u6838\u5fc3\u7684", "-core", ";**", "\u5173\u952e\u73af\u8282"], ["\u6838\u5fc3\u6280\u672f", "\u6838\u5fc3\u7684", " core", " internals", "-core", " backend", ";**", " hardware"], [" core", " internals", "\u6838\u5fc3\u6280\u672f", " backend", " hardware", "\u6838\u5fc3\u7684", "-core", "\u6838\u5fc3"], [" core", " internals", " runtime", " renderer", "\u6838\u5fc3\u6280\u672f", " engine", "-core", " hardware"], [" engine", " renderer", " runtime", " internals", " bottleneck", " backend", " core", " shader"], [" renderer", " loop", " core", " engine", "-loop", " runtime", " loops", "-core"], [" renderer", " Renderer", "renderer", " loop", "Renderer", " core", " engine", " shader"], [" renderer", " Renderer", "renderer", "Renderer", " rendering", " render", "\u6e32\u67d3", "/renderer"], [" renderer", " rendering", " Renderer", " render", "\u6e32\u67d3", "Renderer", "renderer", " graphics"], [" renderer", " engine", " rendering", "Renderer", " Renderer", "renderer", "\u5f15\u64ce", " render"], [" renderer", " rendering", " engine", " render", " Renderer", "\u6e32\u67d3", "Renderer", "renderer"], [" renderer", " engine", " rendering", "renderer", " Renderer", " render", "Renderer", " viewport"], [" renderer", " engine", " rendering", " render", " viewport", " Renderer", "renderer", " GPU"], [" renderer", " rendering", " render", " engine", " viewport", " graphics", " GPU", " raster"]], "p": [[0.728, 0.2678, 0.0011, 0.0011, 0.001, 0.0002, 0.0002, 0.0001], [0.2813, 0.2643, 0.1934, 0.1102, 0.0169, 0.009, 0.004, 0.0024], [0.4673, 0.4124, 0.092, 0.0181, 0.0025, 0.0025, 0.0022, 0.0009], [0.0087, 0.0068, 0.0049, 0.0038, 0.0032, 0.0028, 0.0026, 0.0025], [0.1878, 0.0887, 0.061, 0.0154, 0.0145, 0.012, 0.0082, 0.0053], [0.1186, 0.0766, 0.0142, 0.0117, 0.0091, 0.0049, 0.0038, 0.0038], [0.0571, 0.0306, 0.0254, 0.0238, 0.021, 0.0174, 0.0093, 0.0088], [0.018, 0.0159, 0.0075, 0.0048, 0.0045, 0.0035, 0.0033, 0.0033], [0.6199, 0.1472, 0.0893, 0.0073, 0.0044, 0.0042, 0.0027, 0.0027], [0.0696, 0.029, 0.0047, 0.0029, 0.0027, 0.0025, 0.0024, 0.0021], [0.1626, 0.1348, 0.1189, 0.0265, 0.022, 0.0194, 0.0182, 0.0171], [0.0293, 0.0157, 0.013, 0.0115, 0.0101, 0.0095, 0.0079, 0.0061], [0.041, 0.03, 0.0281, 0.011, 0.011, 0.0081, 0.0081, 0.0067], [0.1099, 0.043, 0.0179, 0.0131, 0.0131, 0.0123, 0.0123, 0.007], [0.1178, 0.0862, 0.0218, 0.0103, 0.0091, 0.008, 0.0071, 0.0066], [0.0449, 0.0422, 0.0329, 0.0272, 0.0226, 0.0114, 0.0088, 0.0078], [0.0849, 0.0401, 0.0215, 0.0189, 0.0139, 0.0122, 0.009, 0.0084], [0.0747, 0.0332, 0.0177, 0.0138, 0.013, 0.0122, 0.0108, 0.0079], [0.0701, 0.0228, 0.0201, 0.0177, 0.0177, 0.0156, 0.0122, 0.0114], [0.0291, 0.0291, 0.02, 0.0188, 0.0147, 0.0138, 0.0121, 0.0101], [0.0181, 0.0132, 0.0117, 0.0097, 0.0097, 0.0091, 0.0091, 0.0067], [0.0084, 0.004, 0.0033, 0.0033, 0.0033, 0.0031, 0.0029, 0.0024], [0.052, 0.0489, 0.0169, 0.0149, 0.0048, 0.004, 0.0035, 0.0033], [0.1813, 0.16, 0.0335, 0.0217, 0.0085, 0.0048, 0.002, 0.0017], [0.0249, 0.0249, 0.0161, 0.0151, 0.0142, 0.0125, 0.0104, 0.0081], [0.0146, 0.0121, 0.01, 0.0073, 0.0073, 0.0065, 0.005, 0.0037], [0.0132, 0.0117, 0.0117, 0.011, 0.008, 0.0063, 0.0055, 0.0055], [0.0463, 0.0233, 0.0206, 0.0206, 0.017, 0.0133, 0.0117, 0.0103], [0.0378, 0.019, 0.0168, 0.0139, 0.0131, 0.0108, 0.0102, 0.009], [0.0717, 0.0594, 0.0409, 0.0318, 0.0233, 0.0233, 0.0219, 0.0193], [0.0619, 0.04, 0.0353, 0.0353, 0.0332, 0.0293, 0.0228, 0.0201], [0.0556, 0.0205, 0.017, 0.0141, 0.0132, 0.0117, 0.0117, 0.0103], [0.0242, 0.0177, 0.0166, 0.0138, 0.0114, 0.0101, 0.0101, 0.0095], [0.1042, 0.0594, 0.036, 0.0263, 0.016, 0.016, 0.0141, 0.0132], [0.1309, 0.0331, 0.0311, 0.0138, 0.013, 0.013, 0.0114, 0.0107], [0.2752, 0.0893, 0.0789, 0.0478, 0.0396, 0.0199, 0.0165, 0.0129], [0.242, 0.2273, 0.0612, 0.0371, 0.0225, 0.0187, 0.0175, 0.012], [0.3049, 0.1737, 0.0468, 0.0364, 0.0235, 0.0221, 0.0162, 0.0134], [0.3228, 0.1048, 0.0561, 0.032, 0.0265, 0.0234, 0.022, 0.022], [0.1711, 0.1607, 0.086, 0.0555, 0.0522, 0.0217, 0.018, 0.018], [0.2881, 0.1361, 0.0879, 0.039, 0.0304, 0.0268, 0.0252, 0.0209], [0.3052, 0.2097, 0.0772, 0.0413, 0.0342, 0.0284, 0.0267, 0.0221], [0.2584, 0.1776, 0.0542, 0.0542, 0.0329, 0.0309, 0.029, 0.0272], [0.2358, 0.162, 0.0867, 0.0436, 0.0362, 0.0319, 0.0206, 0.0151], [0.258, 0.1565, 0.0739, 0.0541, 0.0308, 0.0176, 0.0165, 0.0137], [0.2199, 0.1713, 0.0382, 0.0317, 0.0298, 0.0218, 0.0181, 0.015], [0.212, 0.1651, 0.0444, 0.0287, 0.0253, 0.0238, 0.0223, 0.0185], [0.2372, 0.112, 0.0929, 0.0497, 0.0266, 0.0183, 0.0161, 0.0152], [0.1273, 0.1123, 0.0931, 0.0221, 0.0183, 0.0162, 0.0162, 0.0152], [0.0947, 0.0693, 0.0612, 0.054, 0.0447, 0.0327, 0.0255, 0.0155], [0.2041, 0.0964, 0.0355, 0.0333, 0.0259, 0.0178, 0.0178, 0.0178], [0.2156, 0.1154, 0.1019, 0.0545, 0.0545, 0.0425, 0.0375, 0.0311], [0.1296, 0.1144, 0.0786, 0.0612, 0.0477, 0.0421, 0.0371, 0.0371], [0.245, 0.245, 0.0619, 0.0547, 0.0426, 0.0201, 0.0201, 0.0177], [0.3154, 0.2168, 0.1024, 0.0797, 0.0377, 0.0377, 0.0332, 0.0202], [0.9668, 0.0095, 0.0051, 0.0024, 0.0016, 0.0016, 0.0016, 0.0015], [0.9736, 0.0084, 0.0051, 0.0045, 0.0021, 0.001, 0.0008, 0.0007], [0.9468, 0.0197, 0.0064, 0.0064, 0.005, 0.0034, 0.0034, 0.0018], [0.9041, 0.0841, 0.0029, 0.002, 0.0017, 0.0017, 0.0007, 0.0007], [0.9821, 0.0075, 0.0031, 0.0031, 0.0011, 0.0008, 0.0007, 0.0006], [0.9713, 0.0259, 0.0006, 0.0004, 0.0004, 0.0002, 0.0002, 0.0001], [0.9812, 0.0085, 0.004, 0.0021, 0.0008, 0.0005, 0.0004, 0.0003], [0.9673, 0.0122, 0.0095, 0.0058, 0.0008, 0.0006, 0.0005, 0.0003]], "ranks": {"Python": [34619, 145762, 104269, 172277, 13982, 79079, 5952, 35733, 22799, 47314, 7377, 8563, 5415, 11652, 11858, 40701, 37081, 20281, 21079, 42144, 15836, 51630, 32254, 33069, 35666, 25888, 7579, 2063, 2029, 1901, 2072, 4281, 5770, 2659, 3266, 837, 468, 330, 260, 175, 177, 248, 238, 429, 539, 727, 602, 557, 927, 5411, 7717, 1612, 1950, 4195, 2606, 1640, 1095, 1376, 1149, 899, 343, 112, 85]}}, {"pos": 495, "top": [[" \u2013", "s", " ", " -.", "\\.", " {.", " [@", "."], [" [@", " '@", " ;;", " >/", " ^.", "@@@@", "theless", " @{"], ["**\u2013", " \u2013", " ;;", "@@@@", " \u2013**", " '@", " ()=>", " \u2013,"], [" ``(", " ``", " /**<", " '\\''", " pupper", " ;;^", " YYS", " '</"], [" ;;", " '@", " [@", " (;", "^^^^", " #{@", " @(", " \\/"], [" ;;", "/renderer", " Renderer", " )\"", "(renderer", " #{@", "ZEN", " (;"], [" ;;", "^^^^", " )\"", " '`", " >/", " {.", " '..", " [`"], [" ;;", " [`", " >/", " \\/", " {.", " \uff62", " '`", " @{"], [" [`", " {.", " [@", " \n\n", " ;;", " \\/", "^^^^", " \r\n\r\n"], ["\\-", " \\/", "/renderer", "(renderer", " [@", " \\`", " ;;", "\",@\""], [" [@", " \\/", " [`", " ;;", "\\-", "/renderer", " #{@", " @{"], [" ``(", " [`", " '`", "/renderer", " \\/", " ;;", " $__", " ~>"], ["/renderer", " '`", " ``(", "(renderer", " Renderer", " ;;", " renderer", "\u5162\u5162\u4e1a\u4e1a"], ["/renderer", "(renderer", "\u5162\u5162\u4e1a\u4e1a", " renderer", " Renderer", " '`", "\u4e8b\u534a\u529f\u500d", "\u65b0\u52a0\u5761"], [" \ufffd", " arguably", " ostensibly", " '`", "\\-", "/renderer", " ``", " util"], [" arguably", "/renderer", " ostensibly", "(renderer", " \ufffd", " renderer", " atop", " Renderer"], [" arguably", "/renderer", " ostensibly", " ;;", " atop", "(renderer", "\u5162\u5162\u4e1a\u4e1a", " Renderer"], [" ;;", "(renderer", "/renderer", "\u5162\u5162\u4e1a\u4e1a", " arguably", " MEDIATEK", "_RENDERER", " Renderer"], [" ;;", " arguably", " ostensibly", "^)", " MEDIATEK", "/renderer", "\u5162\u5162\u4e1a\u4e1a", "(renderer"], [" ostensibly", "^[", " arguably", "/renderer", "(renderer", "_RENDERER", "^)", " \u2014"], ["^[", " ostensibly", " \u2014", "^)", " arguably", " \r\n\r\n", " ;;", " --"], [" ``", " ``(", " ;;^", " MEDIATEK", " ''", " '`", "``", "/renderer"], [" ``", " ``(", " ''", " ;;^", "``", " MEDIATEK", " '`", " ;;"], [" ``", " ``(", " ''", " ;;^", " ,,", " MEDIATEK", " '`", " --"], [" ``", " ''", " ``(", " ;;^", " MEDIATEK", " ;;", " '`", " ;;="], [" ;;^", " ``", " ``(", " MEDIATEK", " renderer", " Renderer", " ;;", " ;;="], [" ``", " ``(", " ;;^", " renderer", " MEDIATEK", " architectures", " Renderer", "_Renderer"], [" ``", " ''", " '`", " ;;^", " ``(", " --", " ,,", " renderer"], [" ``", " ;;^", " ``(", " renderer", " ''", " architectures", " MEDIATEK", " architecture"], [" ``", " architectures", " architecture", " ``(", " renderer", " ;;^", " .**", " ''"], [" ``", " architecture", " )**", " **:", " architectures", " .**", " pixel", " ;;"], [" ``", " ,", " rebuilt", " complex", " modern", " engine", " architecture", " ''"], [" ``", " ,", " --", " and", " directly", " complex", " arguably", " engine"], [" ``", " architecture", " hardware", " directly", " complex", " pixel", " technology", " engine"], [" tech", " )**", " pixel", " hardware", " .**", " architectures", " directly", " architecture"], [" \u2014", " .**", " )**", "\u2014but", " :\",", " -**", " technically", " hardware"], [" \u2014", "\u2014but", " .**", " directly", " technically", " engine", " )**", " hardware"], [" .**", " itself", " engine", " directly", " )**", " hardware", "/engine", "\u2014but"], [" itself", " directly", " .**", " \u2014", " independently", " engine", "\u2014but", " technically"], [" directly", " itself", " .**", " engine", " hardware", " himself", " software", " internally"], [" itself", " software", " engine", " directly", " .**", " hardware", " Engine", " tech"], [" software", " engine", "/engine", " hardware", " itself", " Engine", " directly", " engineering"], [" software", " engine", " directly", " itself", "/engine", " hardware", " Engine", " engines"], [" directly", " itself", " engine", " software", " internally", "/engine", " architecture", " backend"], [" itself", " directly", " internally", " himself", " entirely", " hardware", " backend", " architecture"], [" itself", " directly", " entirely", " internally", " himself", "\u76f4\u63a5\u7528", " themselves", " yourself"], [" itself", " directly", " entirely", "\u76f4\u63a5\u7528", " yourself", "\u76f4\u63a5\u4f7f\u7528", " himself", " internally"], [" itself", " entirely", " directly", "\u76f4\u63a5\u7528", "\u76f4\u63a5\u4f7f\u7528", " himself", " yourself", " ourselves"], [";**", " itself", " entirely", "__;", "\u2014but", " yourself", "**;", " himself"], [" itself", " yourself", ";**", " entirely", " himself", " ourselves", " Himself", "__;"], [";**", " yourself", "__;", "*;", "/**/*.", " **.**", "/software", "_;"], [" Python", ";**", " JavaScript", "Python", "-python", " PHP", "/python", "/write"], [" Python", ";**", "/python", "Python", "-python", " JavaScript", " python", " **."], [" Python", "Python", "-python", "/python", ";**", " python", " JavaScript", "++."], [" Python", "/python", "Python", "-python", " JavaScript", "\u6216\u5728", " python", "\u6216\u5c0f"], [" Python", "Python", "/python", "-python", " python", " in", "python", "\u6216\u5728"], [" Python", "Python", "/python", "-python", " python", "python", ".python", "ython"], [" Python", "Python", "-python", " python", "/python", "python", "ython", ".python"], [" Python", "Python", " python", "-python", "/python", " in", "python", " *"], [" Python", "Python", " in", " python", "-python", "/python", "python", "PYTHON"], [" Python", " in", "Python", " *", " python", "-python", "/python", ".python"], [" Python", " in", " *", "Python", "-python", " python", " or", "/python"], [" in", " *", " Python", " or", "\u2019s", " engine", ".", "*"]], "p": [[0.0434, 0.015, 0.0141, 0.0117, 0.0085, 0.0071, 0.0071, 0.0053], [0.0466, 0.0466, 0.022, 0.0207, 0.0171, 0.0125, 0.0111, 0.0104], [0.0701, 0.0375, 0.0353, 0.0275, 0.0214, 0.0214, 0.0214, 0.0189], [0.0608, 0.0112, 0.0106, 0.0093, 0.0082, 0.0064, 0.0057, 0.0057], [0.0505, 0.0369, 0.0198, 0.0164, 0.0154, 0.0128, 0.0106, 0.0106], [0.0401, 0.0115, 0.0115, 0.0115, 0.0095, 0.0084, 0.0079, 0.007], [0.1303, 0.0273, 0.0176, 0.0176, 0.0146, 0.0137, 0.0129, 0.0107], [0.0549, 0.0215, 0.019, 0.0178, 0.0168, 0.0157, 0.0139, 0.0139], [0.093, 0.0468, 0.0302, 0.025, 0.0208, 0.0183, 0.0126, 0.0111], [0.0245, 0.0216, 0.0169, 0.0096, 0.008, 0.007, 0.0062, 0.0062], [0.07, 0.0452, 0.0331, 0.0177, 0.0166, 0.0138, 0.0138, 0.0129], [0.021, 0.0164, 0.0136, 0.0099, 0.0093, 0.0057, 0.0053, 0.0047], [0.0118, 0.0104, 0.0098, 0.0092, 0.0081, 0.0067, 0.0063, 0.0059], [0.0099, 0.0093, 0.0077, 0.006, 0.0057, 0.005, 0.0044, 0.0044], [0.0363, 0.0171, 0.0118, 0.0111, 0.0071, 0.0052, 0.0049, 0.0043], [0.0141, 0.0103, 0.0081, 0.0055, 0.0052, 0.0046, 0.0043, 0.0043], [0.0148, 0.0084, 0.007, 0.007, 0.0042, 0.0042, 0.0035, 0.0035], [0.0103, 0.0063, 0.0063, 0.0055, 0.0046, 0.0036, 0.0034, 0.0034], [0.0108, 0.0096, 0.009, 0.0055, 0.0051, 0.0048, 0.0048, 0.0035], [0.0157, 0.0115, 0.0115, 0.0101, 0.0074, 0.0065, 0.0065, 0.0051], [0.0317, 0.0117, 0.0117, 0.0103, 0.008, 0.008, 0.0062, 0.0052], [0.1438, 0.0928, 0.0266, 0.0134, 0.0063, 0.0046, 0.0036, 0.003], [0.4271, 0.1303, 0.0146, 0.0129, 0.0107, 0.0069, 0.0065, 0.0025], [0.3822, 0.0378, 0.0216, 0.0079, 0.0051, 0.0035, 0.0033, 0.0031], [0.0941, 0.0174, 0.0174, 0.0093, 0.0073, 0.0064, 0.0041, 0.0039], [0.0427, 0.0401, 0.0333, 0.0122, 0.0058, 0.0054, 0.0042, 0.004], [0.0604, 0.0415, 0.0366, 0.0068, 0.0064, 0.0053, 0.0041, 0.0036], [0.1257, 0.0218, 0.011, 0.0091, 0.0086, 0.0059, 0.0055, 0.0046], [0.0859, 0.0316, 0.0116, 0.0085, 0.0085, 0.0075, 0.007, 0.0062], [0.0755, 0.0149, 0.014, 0.0131, 0.0102, 0.0085, 0.008, 0.0075], [0.1071, 0.0164, 0.0136, 0.0136, 0.0113, 0.01, 0.0088, 0.0078], [0.0805, 0.014, 0.0102, 0.008, 0.008, 0.0066, 0.0062, 0.0055], [0.0476, 0.0289, 0.0113, 0.0094, 0.0088, 0.0083, 0.0061, 0.0061], [0.0115, 0.0084, 0.0084, 0.0079, 0.0079, 0.007, 0.0066, 0.0066], [0.0126, 0.0105, 0.0098, 0.0082, 0.0077, 0.0072, 0.0064, 0.006], [0.0399, 0.0292, 0.0177, 0.0138, 0.0095, 0.0095, 0.0079, 0.0074], [0.0331, 0.0242, 0.0214, 0.0177, 0.0084, 0.0074, 0.0074, 0.0069], [0.0161, 0.0151, 0.0111, 0.0098, 0.0092, 0.0081, 0.0081, 0.0076], [0.0423, 0.0397, 0.0156, 0.0137, 0.01, 0.0094, 0.0094, 0.0094], [0.0393, 0.0347, 0.0288, 0.0136, 0.0113, 0.0093, 0.0093, 0.0088], [0.055, 0.0355, 0.0313, 0.0229, 0.0229, 0.0179, 0.0158, 0.0148], [0.0957, 0.0581, 0.0375, 0.0274, 0.0258, 0.0189, 0.0177, 0.0166], [0.0577, 0.045, 0.0397, 0.035, 0.029, 0.02, 0.0176, 0.0176], [0.0968, 0.0487, 0.0261, 0.023, 0.0203, 0.014, 0.014, 0.0116], [0.299, 0.1246, 0.0459, 0.0203, 0.0203, 0.0123, 0.0116, 0.0096], [0.3326, 0.178, 0.0578, 0.0273, 0.0213, 0.0129, 0.0114, 0.0107], [0.2143, 0.1669, 0.13, 0.0199, 0.0137, 0.0129, 0.0129, 0.0129], [0.3781, 0.2293, 0.0844, 0.0292, 0.0227, 0.0156, 0.0147, 0.0129], [0.3028, 0.2672, 0.0362, 0.0282, 0.0249, 0.0249, 0.016, 0.0125], [0.1869, 0.1207, 0.0779, 0.0687, 0.0253, 0.0223, 0.0185, 0.0153], [0.1257, 0.0299, 0.0218, 0.0124, 0.011, 0.0103, 0.008, 0.008], [0.5901, 0.0294, 0.0259, 0.0148, 0.0139, 0.0108, 0.0102, 0.007], [0.6246, 0.0658, 0.0189, 0.0166, 0.0156, 0.0114, 0.0079, 0.0051], [0.476, 0.0286, 0.0252, 0.0237, 0.0185, 0.0119, 0.0105, 0.0099], [0.5868, 0.0482, 0.0425, 0.0399, 0.0274, 0.0156, 0.0138, 0.0122], [0.8079, 0.0402, 0.0402, 0.0355, 0.0276, 0.0102, 0.0045, 0.0042], [0.8457, 0.0541, 0.0328, 0.0328, 0.0199, 0.0044, 0.0018, 0.0018], [0.8874, 0.0501, 0.0184, 0.0163, 0.0143, 0.0036, 0.0017, 0.0009], [0.9136, 0.0243, 0.0167, 0.0167, 0.0115, 0.0037, 0.0026, 0.0023], [0.9607, 0.0176, 0.0155, 0.0027, 0.0013, 0.0009, 0.0003, 0.0002], [0.9509, 0.0253, 0.0136, 0.0039, 0.0018, 0.0013, 0.0006, 0.0002], [0.564, 0.3019, 0.098, 0.0117, 0.003, 0.0028, 0.0022, 0.0014], [0.9258, 0.0592, 0.0066, 0.0015, 0.0007, 0.0006, 0.0004, 0.0003]], "ranks": {"Python": [11058, 146611, 94555, 95485, 43753, 172837, 77172, 120751, 79524, 155065, 130027, 133056, 163230, 175025, 137416, 177146, 172507, 156779, 151306, 177858, 110329, 160891, 131300, 143081, 128750, 129850, 105962, 42898, 40101, 20776, 12438, 13920, 15120, 13367, 15904, 2148, 1344, 1061, 468, 158, 136, 172, 214, 356, 396, 432, 245, 204, 159, 96, 126, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3]}}, {"pos": 496, "top": [[",", ".", "\u2013", " \u2013", ";", "\u00a0", "\u2026.", "\u00a0\u00a0"], ["\u2013", " \u2013", ",", ".", "\u2013and", ";", " \u200b\u200b", ".["], [",", ".", "\u2013", " \u2013", ";", "\u2026.", "\u2026..", ".\u2013"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "-------------</", " milfs", " Blowjob", "----------</", "aruhi", " ;;^", " dituj"], [",", "zer", ".", " Zer", "set", " CIF", "(IS", "ser"], [",", ".", "odd", "iously", "set", "-a", "pro", " \u200b\u200b"], ["set", ",", "so", "rather", "start", "ning", "sofar", "\u2019t"], [",", "ning", "sofar", "rather", "ness", "adays", "sson", "mostly"], [",", "\u00a0", ".", ",.", "rather", "wards", ";", "mostly"], [",", "\u2013", "\u2013and", "mostly", "ning", "\u00e2", "sofar", "-but"], [",", " mostly", "mostly", "\u2013", "ning", "-but", "-out", " guts"], [" guts", "ning", " mostly", "-ish", "ian", " \u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435", "\u50a2\u4f19", "\u611f\u5341\u8db3"], [" guts", "-ish", "stuff", " stuff", " booze", " goodies", " veggies", " mostly"], [" guts", " stuff", "-ish", "stuff", " goodies", " booze", " mostly", " guys"], [" stuff", " guts", " basically", " smack", " mostly", "-but", " just", " --"], [" guts", " stuff", " basically", " goodies", " tough", " big", " classic", " mostly"], [" guts", " stuff", " basically", " smack", " big", " tough", " pretty", " goodies"], [" guts", " booze", " tweaked", " tweaking", "-esque", " stuff", " goodies", "-ish"], [" guts", " smack", " booze", "-esque", " stuff", " tweaked", " goofy", " tweaking"], [" guts", " smack", " wildly", " booze", " stuff", " tweaking", "\u6d3b\u513f", " ridiculously"], [" guts", " wildly", "<|endoftext|>", " smack", " genuinely", " outright", " --", " just"], [" ``", " guts", " **>>", " ''", " autobio", " stuff", "\u6316\u6398\u516c\u53f8", "ichick"], [" ``", " ''", " *__", " ?**", " --", " -**", "``", " ``("], [" ``", " ''", " --", "``", " {{--<", " \\'", " wildly", " ,"], [" \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", " __", " ___", " ____", " **", " _", "\r\n\r\n", " \r\n\r\n"], [" __", " ___", " ____", " **", " \n\n", " _____", " ?**", " ______"], [" ____", " __", " ___", " \n\n", " **", " ...", " _____", " ______"], [" **", " \n\n", " ...", " __", " .", " anyway", " ___", " ____"], [" **", " *", " anyway", " **,", " **.", " .**", " ****", " ."], [" **", "\u2014but", " anyway", " technically", " literally", " tech", " purely", " *"], ["\u2014but", " .**", " **", "\u2014or", " literally", " tech", " **\u201c", " anyway"], ["\u2014but", " \u2013", " \u2014", "\u2014\u2014", "\u2014or", " \ud83d\ude09", " \u2014\u2014", " *"], ["\u2014but", " Python", "\u2014\u2014", " \u2014", "\u2014or", " \u2013", " \u2014\u2014", " \ud83d\ude09"], ["\u2014but", " Python", " \u2013", "\u2014\u2014", "\u2014or", " \u2014", " \ud83d\ude09", " \u201c"], [" Python", "\u2014but", "Python", " python", "\u2014or", "-python", " \ud83d\ude09", "python"], [" Python", "Python", " python", "-python", "python", "_python", "\u2014but", "\u2011"], [" Python", "Python", " python", "-python", "python", "_python", " Java", ".python"], [" Python", "Python", " python", "-python", "_python", "python", "\u8bed\u8a00", " English"], [" Python", "Python", " python", "-python", "_python", "python", " English", "-language"], [" Python", "Python", "-python", " python", "_python", "-language", " pure", " purely"], [" Python", " python", " entirely", " pure", "-python", "Python", " purely", "_python"], [" Python", " entirely", " pure", " purely", " python", " directly", " literally", "-python"], [" Python", " pure", " entirely", " literally", " purely", " anything", " python", " directly"], [" Python", " pure", "\u7eaf\u7cb9\u7684", " purely", "\u7eaf\u7cb9", "\u2014but", " entirely", " Pure"], [" Python", "\u2014but", "\u7eaf\u7cb9\u7684", " pure", ";**", "\u7eaf\u7cb9", "-python", "\u2014it"], ["\u7eaf\u7cb9\u7684", " Python", "\u76f4\u63a5\u4f7f\u7528", "\u7eaf\u7cb9", " pure", ";**", "\u76f4\u63a5\u7528", " purely"], [" Python", ";**", "\u7eaf\u7cb9\u7684", "\u7eaf\u7cb9", ";*", ";.", "\u76f4\u63a5\u4f7f\u7528", "\u2014but"], [" Python", "Python", "-python", " python", "/python", ".python", " pure", ";**"], [" Python", "-python", "Python", " python", "/python", " pure", ".python", ";**"], [" Python", "Python", " python", "-python", "/python", " pure", ".python", "-native"], [" Python", "Python", " python", "-python", " Java", "/python", ".python", "python"], [" Python", " python", "Python", "-python", "/python", "python", ".python", "_python"], [" Python", "Python", " python", "-python", "/python", "python", ".python", "_python"], [" Python", " python", "Python", "-python", "python", "/python", ".python", "_python"], [" Python", "Python", " python", "-python", "python", "/python", "_python", ".python"], [" Python", "Python", " python", "-python", "python", "_python", ".python", "/python"], [" Python", "Python", " python", " pure", "-python", " Pure", " Py", ".python"], [" Python", "Python", " pure", " python", "-python", " Py", " Pure", ".python"], [" Python", " pure", " Pure", " Java", " C", "Python", " Py", " python"]], "p": [[0.6069, 0.3681, 0.0126, 0.0053, 0.0028, 0.0019, 0.0005, 0.0005], [0.2305, 0.2166, 0.1314, 0.0903, 0.0079, 0.0079, 0.004, 0.0019], [0.6282, 0.2619, 0.0963, 0.007, 0.002, 0.0009, 0.0007, 0.0005], [0.0102, 0.009, 0.0062, 0.0045, 0.0038, 0.0024, 0.0021, 0.0017], [0.0101, 0.0037, 0.0024, 0.002, 0.0015, 0.0015, 0.0015, 0.0014], [0.0472, 0.0056, 0.0028, 0.0027, 0.0022, 0.0021, 0.0021, 0.0018], [0.0746, 0.0453, 0.0375, 0.0147, 0.0138, 0.0138, 0.013, 0.0065], [0.0339, 0.0193, 0.016, 0.0103, 0.0086, 0.0081, 0.0067, 0.0055], [0.4257, 0.0083, 0.0065, 0.0057, 0.0054, 0.005, 0.0042, 0.0039], [0.093, 0.0104, 0.0038, 0.0022, 0.0022, 0.0016, 0.0014, 0.0014], [0.079, 0.0176, 0.0156, 0.0137, 0.0114, 0.0107, 0.0089, 0.0083], [0.0186, 0.0061, 0.0042, 0.0025, 0.0024, 0.0022, 0.002, 0.002], [0.0147, 0.0058, 0.0042, 0.0027, 0.002, 0.0018, 0.0018, 0.0016], [0.028, 0.0091, 0.0055, 0.0046, 0.0043, 0.003, 0.0028, 0.0022], [0.0369, 0.0306, 0.021, 0.0198, 0.0164, 0.0093, 0.0088, 0.0082], [0.0345, 0.0223, 0.0135, 0.0077, 0.0064, 0.005, 0.0044, 0.0044], [0.1541, 0.0222, 0.0184, 0.0119, 0.0105, 0.0099, 0.0099, 0.0087], [0.0716, 0.0124, 0.011, 0.0103, 0.0091, 0.0071, 0.0067, 0.0063], [0.0566, 0.0143, 0.0143, 0.0092, 0.0087, 0.0077, 0.0072, 0.0072], [0.0446, 0.0136, 0.0073, 0.006, 0.006, 0.0053, 0.005, 0.0047], [0.0089, 0.0061, 0.0057, 0.0045, 0.0045, 0.0042, 0.0033, 0.0033], [0.0142, 0.0041, 0.0023, 0.0022, 0.0019, 0.0019, 0.0019, 0.0018], [0.3446, 0.0363, 0.0183, 0.0126, 0.0081, 0.0036, 0.0036, 0.0025], [0.6062, 0.0873, 0.0388, 0.0022, 0.0018, 0.0018, 0.0009, 0.0008], [0.177, 0.1295, 0.1073, 0.089, 0.0255, 0.0211, 0.0106, 0.0057], [0.2137, 0.1144, 0.0328, 0.0225, 0.0225, 0.0094, 0.0069, 0.0069], [0.1262, 0.1046, 0.0675, 0.0464, 0.016, 0.0097, 0.0091, 0.0049], [0.3939, 0.2707, 0.0684, 0.0604, 0.0604, 0.0533, 0.0093, 0.0087], [0.337, 0.192, 0.0852, 0.0486, 0.0334, 0.026, 0.0148, 0.0148], [0.2533, 0.2533, 0.1973, 0.1056, 0.0565, 0.0221, 0.0105, 0.0098], [0.2005, 0.1562, 0.1562, 0.1378, 0.0947, 0.0612, 0.0289, 0.0136], [0.2334, 0.0489, 0.0316, 0.0316, 0.0297, 0.0217, 0.0204, 0.0192], [0.2969, 0.0485, 0.0355, 0.0276, 0.0259, 0.0215, 0.0123, 0.0123], [0.0958, 0.0845, 0.0452, 0.0292, 0.0242, 0.0214, 0.0189, 0.0189], [0.4764, 0.0209, 0.0185, 0.0185, 0.0163, 0.0119, 0.0112, 0.0112], [0.5336, 0.0562, 0.0438, 0.025, 0.0161, 0.0151, 0.0142, 0.0098], [0.3949, 0.0778, 0.0472, 0.0443, 0.0197, 0.0197, 0.0153, 0.0082], [0.2657, 0.2069, 0.0205, 0.0205, 0.0192, 0.0124, 0.011, 0.0097], [0.6663, 0.066, 0.0201, 0.0138, 0.0089, 0.0089, 0.0061, 0.0061], [0.8558, 0.0796, 0.0138, 0.0084, 0.0084, 0.0042, 0.0026, 0.0011], [0.8931, 0.0733, 0.0099, 0.0053, 0.0053, 0.0025, 0.0008, 0.0007], [0.9307, 0.0361, 0.0103, 0.0043, 0.0028, 0.0023, 0.001, 0.001], [0.9106, 0.0243, 0.0167, 0.0108, 0.0061, 0.0029, 0.0023, 0.0018], [0.7879, 0.0224, 0.021, 0.0144, 0.0082, 0.0068, 0.0068, 0.005], [0.7592, 0.0229, 0.0229, 0.019, 0.0148, 0.0131, 0.0115, 0.0074], [0.4996, 0.0766, 0.056, 0.0319, 0.0182, 0.0171, 0.0171, 0.011], [0.4604, 0.0663, 0.0294, 0.026, 0.0202, 0.0202, 0.0158, 0.0108], [0.2554, 0.1989, 0.057, 0.0503, 0.0472, 0.0305, 0.0174, 0.0174], [0.2836, 0.1111, 0.0717, 0.0361, 0.0361, 0.0339, 0.0219, 0.0181], [0.1787, 0.1018, 0.0618, 0.0512, 0.0481, 0.0292, 0.0177, 0.0156], [0.2038, 0.0904, 0.0798, 0.0294, 0.019, 0.019, 0.0167, 0.013], [0.9658, 0.0048, 0.0031, 0.0025, 0.0019, 0.0016, 0.0015, 0.0013], [0.9823, 0.0031, 0.0028, 0.0028, 0.0014, 0.0009, 0.0007, 0.0005], [0.9875, 0.0028, 0.0024, 0.0022, 0.0005, 0.0004, 0.0004, 0.0003], [0.997, 0.0013, 0.0008, 0.0003, 0.0001, 0.0001, 0.0001, 0.0001], [0.9981, 0.0009, 0.0007, 0.0002, 0.0, 0.0, 0.0, 0.0], [0.9986, 0.0008, 0.0005, 0.0, 0.0, 0.0, 0.0, 0.0], [0.999, 0.0005, 0.0004, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9991, 0.0005, 0.0003, 0.0001, 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.9998, 0.0002, 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.9996, 0.0001, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0]], "ranks": {"Python": [88876, 228612, 145350, 232165, 199016, 197339, 57378, 78461, 74823, 86401, 18688, 40253, 22800, 15977, 16705, 28015, 27932, 12431, 34926, 29343, 9686, 19157, 9551, 5953, 7830, 4663, 1945, 435, 329, 322, 365, 562, 663, 494, 401, 59, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]}}, {"pos": 497, "top": [[",", ".", " \u2013", "\u2013", "a", " ", ";", " [\u2026]"], ["\u2013", ",", " \u2013", ".", " \u200b\u200b", "\u2013and", " \u2013,", "\u200b"], [",", "\u2013", ".", " \u2013", ".\u2013", "\u2013and", " \u2013,", " \u200b\u200b"], ["-------------</", " ``", " \uffe5\uffe5", "----------</", "erio", "\uff0d\uff0d", " ``(", "enner"], [" \u200b\u200b", ",", " (@", "ed", ":@", ".", ".@", " Python"], [",", " \u200b\u200b", ".", ":", "!).", "ed", " Justin", ".cs"], [".", ",", " \u200b\u200b", " \u00a0", "\u200b\u200b", " Python", ":", ".\u201c"], [",", ".", " \u200b\u200b", ".py", "\ufffds", " Python", ":", "\u200b\u200b"], [",", ".", " \u200b\u200b", ":", ";", "\u200b\u200b", ".\u201c", "!."], [",", ".", ";", ":", "-esque", ".\\", "\ufffds", "'s"], [",", ".", ";", "...", ".[", "'s", ":", ".\\"], [",", "-esque", ".py", " Python", "-style", "/python", "\ufffds", ".python"], [",", "-esque", "-style", ".", " Python", "arily", " \\\"", "-speaking"], [",", ".", "-esque", "-style", " largely", " mostly", "'s", ";"], [",", " ,", ".", " \"", ";", " and", " largely", " just"], [",", "-esque", " largely", " ,", " just", " often", " only", " \""], [",", "-esque", " largely", " just", " \"", " ,", " only", " essentially"], [",", "-esque", " largely", " only", " just", " mostly", " often", " essentially"], [",", "-esque", " largely", " ,", " just", " arguably", " essentially", " mostly"], [",", " ,", " largely", " --", " just", "-esque", " even", " mostly"], [" ,", "<|endoftext|>", " just", " --", " largely", " though", ",", " much"], [" ``", " ;;^", ".py", " ''", " PYTHON", " NUITKA", " Python", "AdapterManager"], [" ``", " ''", ".py", ".__", " PYTHON", " Python", " '''", " ``("], [" ,", " ``", " ''", " --", " .", " ;", " only", " just"], [" ,", " --", " ``", ".__", " __", " ''", ".py", " \n\n"], [" Python", " ``", " __", ".__", ".py", " PYTHON", "/python", "_python"], [" __", " Python", ".__", " ``", ".py", " ,", " PYTHON", " --"], [" __", " ,", " --", "\n\n", ".__", " ____", " ___", " _"], [" __", " ,", " --", " Python", ".__", ".py", "__,", " ``"], [" __", " ____", ".__", " ,", " ___", " ______", " --", "__,"], [" __", " ,", " .", ".__", "__.", " ____", " --", " ___"], [" ,", " only", " .", " itself", " rather", " anyway", " but", " --"], [" only", " ,", " but", " anyway", " .", " even", " itself", " actually"], [" anyway", " but", " only", " entirely", " itself", "\u2014but", " actually", " technically"], ["\u2014but", " anyway", " but", " entirely", " only", " technically", " itself", " directly"], ["\u2014but", " only", " but", " anyway", " entirely", " ONLY", " itself", " technically"], ["\u2014but", " but", " only", " anyway", " BUT", " ONLY", " entirely", " \u2014"], ["\u2014but", " but", " anyway", " BUT", " literally", " itself", " only", " actually"], ["\u2014but", " but", " anyway", " only", " BUT", " itself", "-but", " literally"], ["\u2014but", " but", " anyway", " BUT", " only", " literally", "-but", " itself"], ["\u2014but", " but", " anyway", " only", " Python", " BUT", " literally", " itself"], ["\u2014but", " but", " anyway", "\u2014not", " actually", " entirely", " literally", " Python"], ["\u2014but", " but", " entirely", " anyway", " actually", " directly", " literally", " purely"], [" but", " entirely", " directly", "\u2014but", " actually", " literally", " itself", " anyway"], [" but", " entirely", " itself", " directly", " actually", " anyway", " literally", "\u2014but"], [" but", " instead", " entirely", " actually", " directly", "\u2014but", " itself", " anyway"], [" actually", "\u2014but", " but", " instead", " anyway", " anymore", " merely", " nor"], [" but", "\u2014but", " actually", "\u800c\u662f", " melainkan", " merely", " itself", " instead"], ["\u2014but", ";", " instead", " but", "\u800c\u662f", "\u2014it", ";**", " Instead"], [";", ";**", "**;", ".**", " **", ".", ".;", "\u2014it"], [";", ";**", "**;", "*;", ".;", "\u2014they", ".**", "\u2014it"], [";", ";**", ".**", "**;", " **", "\u2014they", "*;", "\u2014it"], [";", ";**", ".**", " **", " **.", "**;", " **.**", "."], [".**", ";", ";**", ".", " **.**", " **.", " **", "**;"], [";", ";**", ".**", ".", "\u2014you", " **.**", " **.", ";."], ["\u2014you", ";", ".**", ".", ";**", ";.", " **.**", "{}."], [";", ".", ".**", ";**", " **.**", "\u2014you", " **.", " Python"], ["\u2014you", ";", ".", ".You", " You", ";**", ".**", ";."], ["\u2014you", " You", ";", " you", ".You", ".", "You", "-you"], ["\u2014you", " You", " you", ".You", ".", ";", "-you", "You"], [".", ";", "\u2014you", ".You", " Python", " bytecode", ".**", " You"], [".", ";", "\u2014you", ".**", " bytecode", ".You", " You", ".y"], [".", ";", "\u2014you", ".**", ".y", ",", ".You", ".Y"]], "p": [[0.52, 0.1913, 0.1913, 0.0704, 0.0027, 0.0023, 0.0023, 0.0021], [0.2691, 0.1849, 0.1632, 0.1353, 0.0413, 0.0195, 0.0143, 0.0143], [0.4437, 0.3456, 0.1122, 0.0771, 0.0056, 0.0034, 0.003, 0.0011], [0.0049, 0.0039, 0.0025, 0.0023, 0.0018, 0.0017, 0.0015, 0.0015], [0.0938, 0.0368, 0.0305, 0.0269, 0.0153, 0.0077, 0.0064, 0.0064], [0.3767, 0.0697, 0.0543, 0.0029, 0.0024, 0.0022, 0.0011, 0.0011], [0.4284, 0.3134, 0.0398, 0.0057, 0.0051, 0.0051, 0.0042, 0.0039], [0.3873, 0.2662, 0.0812, 0.0067, 0.0055, 0.0038, 0.0022, 0.002], [0.5864, 0.403, 0.0035, 0.001, 0.0003, 0.0003, 0.0003, 0.0001], [0.9722, 0.0074, 0.0004, 0.0003, 0.0001, 0.0001, 0.0001, 0.0001], [0.8879, 0.106, 0.0009, 0.0003, 0.0003, 0.0001, 0.0001, 0.0001], [0.0276, 0.0243, 0.0074, 0.007, 0.0048, 0.0042, 0.0027, 0.0027], [0.2062, 0.0109, 0.0052, 0.0046, 0.0031, 0.0029, 0.0023, 0.0019], [0.8573, 0.0042, 0.004, 0.0009, 0.0005, 0.0005, 0.0004, 0.0003], [0.9056, 0.0027, 0.0022, 0.0021, 0.0015, 0.0014, 0.0013, 0.0013], [0.1453, 0.0135, 0.0127, 0.0119, 0.0082, 0.0072, 0.0068, 0.0064], [0.6532, 0.0099, 0.0068, 0.0053, 0.005, 0.0047, 0.003, 0.0028], [0.2249, 0.0153, 0.0047, 0.0023, 0.0021, 0.0019, 0.0019, 0.0015], [0.0491, 0.0433, 0.0205, 0.0085, 0.0066, 0.0052, 0.0052, 0.0043], [0.071, 0.0553, 0.0315, 0.0245, 0.0131, 0.0116, 0.009, 0.0058], [0.1528, 0.0194, 0.0161, 0.0133, 0.0125, 0.0111, 0.0104, 0.0063], [0.0868, 0.0104, 0.0052, 0.0046, 0.0038, 0.0036, 0.0028, 0.0023], [0.7864, 0.0237, 0.006, 0.0056, 0.0028, 0.0025, 0.0025, 0.0022], [0.3832, 0.2634, 0.0315, 0.0158, 0.0123, 0.0062, 0.004, 0.0031], [0.1393, 0.1229, 0.0899, 0.0845, 0.0845, 0.0138, 0.0122, 0.0107], [0.1861, 0.1861, 0.0879, 0.0776, 0.0776, 0.0415, 0.0285, 0.0209], [0.2801, 0.1323, 0.0854, 0.0708, 0.0665, 0.0665, 0.0216, 0.0191], [0.657, 0.1142, 0.042, 0.0307, 0.0198, 0.0186, 0.0186, 0.0145], [0.2485, 0.1708, 0.0807, 0.046, 0.0406, 0.0336, 0.0124, 0.0124], [0.6428, 0.0721, 0.0437, 0.032, 0.0234, 0.0194, 0.0161, 0.0125], [0.5244, 0.0911, 0.0626, 0.0488, 0.038, 0.0278, 0.014, 0.0116], [0.409, 0.0913, 0.0627, 0.0296, 0.0246, 0.0246, 0.0217, 0.0191], [0.2428, 0.1473, 0.1147, 0.0614, 0.0372, 0.0372, 0.0272, 0.024], [0.1574, 0.1151, 0.0954, 0.0398, 0.0398, 0.0374, 0.0291, 0.0188], [0.2182, 0.0854, 0.0625, 0.0587, 0.0587, 0.0261, 0.0261, 0.0245], [0.4294, 0.131, 0.0794, 0.0399, 0.0274, 0.0122, 0.0114, 0.0107], [0.87, 0.0491, 0.0181, 0.0075, 0.0049, 0.0028, 0.0024, 0.0019], [0.8745, 0.0299, 0.017, 0.0055, 0.0034, 0.0026, 0.0026, 0.0023], [0.8166, 0.067, 0.0204, 0.008, 0.004, 0.0036, 0.0036, 0.0036], [0.8043, 0.0547, 0.0214, 0.0058, 0.0042, 0.0042, 0.0031, 0.0029], [0.5965, 0.1037, 0.0358, 0.0103, 0.0096, 0.0091, 0.0085, 0.008], [0.73, 0.0301, 0.0183, 0.0104, 0.0098, 0.0098, 0.0076, 0.0067], [0.2349, 0.0717, 0.0463, 0.0435, 0.0408, 0.0299, 0.0264, 0.0219], [0.1257, 0.0811, 0.0811, 0.0673, 0.0558, 0.0383, 0.0299, 0.028], [0.2229, 0.1532, 0.0724, 0.068, 0.0529, 0.0283, 0.0183, 0.0172], [0.3214, 0.0813, 0.0813, 0.0717, 0.0493, 0.0435, 0.0384, 0.0339], [0.2538, 0.1358, 0.0774, 0.0603, 0.0469, 0.0469, 0.0285, 0.0285], [0.3128, 0.2436, 0.1304, 0.048, 0.0257, 0.0166, 0.0166, 0.0146], [0.2776, 0.1908, 0.0702, 0.0619, 0.0619, 0.0426, 0.0376, 0.0376], [0.5572, 0.205, 0.0518, 0.0404, 0.0356, 0.0096, 0.0085, 0.0066], [0.4014, 0.3543, 0.1477, 0.0156, 0.0107, 0.0094, 0.0094, 0.0083], [0.4423, 0.2683, 0.0769, 0.0678, 0.025, 0.0171, 0.0118, 0.0104], [0.2416, 0.2132, 0.1293, 0.1141, 0.0784, 0.0539, 0.037, 0.0175], [0.2563, 0.2262, 0.1372, 0.1069, 0.0572, 0.0445, 0.0393, 0.0128], [0.462, 0.1168, 0.0803, 0.0625, 0.0552, 0.0261, 0.0216, 0.0216], [0.3357, 0.2036, 0.0962, 0.0962, 0.0454, 0.0276, 0.0243, 0.0202], [0.2909, 0.1764, 0.1374, 0.0735, 0.0573, 0.0505, 0.0394, 0.0307], [0.6798, 0.1948, 0.0338, 0.016, 0.0125, 0.0097, 0.0067, 0.0067], [0.7217, 0.0977, 0.0523, 0.0317, 0.0247, 0.0218, 0.0117, 0.0071], [0.6436, 0.1627, 0.0678, 0.0283, 0.0283, 0.025, 0.0172, 0.0104], [0.7863, 0.1366, 0.0503, 0.0039, 0.0028, 0.0022, 0.0022, 0.0018], [0.9887, 0.0059, 0.0025, 0.0004, 0.0003, 0.0002, 0.0001, 0.0001], [0.9998, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Python": [710, 4338, 1727, 53, 7, 42, 5, 6, 41, 12, 11, 4, 5, 11, 103, 87, 87, 9, 13, 38, 52, 7, 6, 8, 10, 1, 2, 14, 4, 9, 13, 45, 115, 29, 33, 69, 62, 30, 30, 15, 5, 8, 12, 52, 87, 115, 144, 226, 286, 293, 309, 534, 362, 268, 21, 17, 8, 14, 11, 12, 5, 17, 18]}}, {"pos": 498, "top": [[" \u2013", ".", ",", "\u2013", ";", "\u00a0", "\u00a0\u00a0", "\u2026."], [" \u2013", "\u2013", "\u2013and", ",", ".", " \u2013,", "\u2013\u2013", " \u200b\u200b"], [",", "\u2013", " \u2013", ".", ";", "\u2013and", "\u2026..", "\u2026."], [" milfs", "-------------</", "----------</", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Shemale", " Blowjob", "\uff0a\uff0a\uff0a\uff0a", "TRGL"], [" \u200b\u200b", " \u201c", " \u201c.", ":@", ",", " people", "\uff20", "ieber"], [",", " \u200b\u200b", ".", "!).", ":", "!:", "!", "\u2026.."], [" \u201d", " \u201e", " \u2014\u2014", " \u2019", " \u201a", " \u201c", ":", "\u2014\u2014"], [" \u201e", " \u201a", " pretty", " **\u201e", " (\u201e", " stuff", " really", " bigger"], [",", " \u201e", " (\u201e", "   \n\n", "!.", " \n\n", "!\u201d", "\u2013and"], [",", " mostly", " pretty", " everybody", " folks", " bigger", " really", " though"], [" \u2013", " \u00ad", " mostly", " just", " \u2018", " though", " \u2014", " \u2019"], [" folks", " mostly", " pretty", " stuff", " really", " guys", " just", " bigger"], [" mostly", " really", " basically", " just", " guys", " pretty", " everything", " even"], [" even", " just", " mostly", " really", " basically", " everything", " anyway", " guys"], [" even", " just", " basically", " mostly", " everything", " really", " only", " all"], [" even", " just", " everything", " mostly", " basically", " all", " more", " ,"], [" just", ",", " even", " everything", " \u2013", " mostly", " \"", " all"], [" just", " everything", " even", " \u2014", " simply", " mostly", " incredibly", " basically"], [" everything", " even", " just", " simply", " anyway", " \u2014", " incredibly", " everyone"], [" \u2014", " even", "\u2014even", " --", "\u2014or", " just", " everything", " simply"], ["<|endoftext|>", " \u2014", " \n\n", "  \n\n", " just", " even", " --", "\u2014even"], [" --", " even", " everything", " \u2014", "\u2014even", " anyway", " simply", " everywhere"], [" --", " \u2014", " ---", " even", " just", " everything", " merely", " entirely"], [" --", "\n\n", " \n\n", "<|endoftext|>", " ,", " \u2014", " even", " just"], [" \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", " **", " ___", " --", "\r\n\r\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", " \u2014"], [" \n\n", "\n\n", "  \n\n", " --", " \u2014", " ,", "\r\n\r\n", " **"], [" \n\n", " ...", " \u2014", "  \n\n", " --", "\n\n", " **", " ___"], [" ...", " \n\n", " \u2014", "  \n\n", " \u2026", " ,", " **", "\n\n"], [" ...", " \u2026", "...", " \n\n", " \u2014", " [...]", "  \n\n", " ...\""], [" ...", " \u2014", " \u2026", "\u2014but", " \n\n", "  \n\n", " just", " ,"], [" \u2014", "\u2014but", " just", " \n\n", " truly", "  \n\n", " \u2013", " literally"], ["\u2014but", " \u2014", " truly", " entirely", " literally", " technically", " just", " essentially"], ["\u2014but", " \u2014", " \u2013", "<|endoftext|>", " technically", "\u2014\u2014", " \u2014\u2014", " BUT"], ["\u2014but", " \u2014", "\u2014\u2014", " technically", " BUT", " literally", " \u2013", "\u2014even"], ["\u2014but", " \u2014", " BUT", "\u2014\u2014", " \u2013", " technically", " literally", " **"], ["\u2014but", " \u2014", "\u2014\u2014", " \u2013", " \u2014\u2014", "\u2014even", " technically", " BUT"], ["\u2014but", " \u2014", "\u2011", "\u2014\u2014", " \u2013", " technically", " \u2014\u2014", " BUT"], ["\u2014but", " technically", "\u2014\u2014", "\u2011", " \u2014", " BUT", " instead", "(!"], ["\u2014but", " \u2014", " technically", " legitimately", "\u2014not", " essentially", "\u2014even", "\u2014or"], ["\u2014but", " \u2014", " technically", " legitimately", " instead", "\u2014not", " essentially", " leveraging"], ["\u2014but", " technically", " legitimately", " \u2014", " leveraging", " explicitly", " instead", " seamlessly"], [" technically", "\u2014but", " legitimately", " leveraging", " strictly", " explicitly", " allowed", " \u2014"], [" technically", " legitimately", " strictly", "\u2014but", " explicitly", " instead", " leveraging", " using"], ["\u2014but", " legitimately", " technically", " strictly", " instead", " **", " leveraging", " Instead"], ["\u2014but", "-but", " legitimately", " BUT", " but", " strictly", " leveraging", " technically"], ["\u2014but", " **", " **\"", "-but", " BUT", " **\u201c", " **'", " Instead"], [" **", " **\"", "\u2014but", "-**", " **'", "-but", " BUT", " leveraging"], [" **", " **\"", "-**", " **\u201c", "\u2014but", " **.", " **'", " **#"], [" **", " **\"", " **\u201c", " **'", " **[", "-**", " **\u00ab", " **#"], [" **", " **\"", " **\u201c", "-**", " *\u201c", " **'", " **[", " **#"], [" **", " **\"", " **\u201c", "-**", " *\u201c", "**", " **#", " **\u00ab"], [" **", " **\"", " **\u201c", "\u4f60\u7528", "-**", " *\u201c", " **\u00ab", " you"], [" **", " **\"", " you", "\u4f60\u7528", " **\u201c", "-**", " You", " **\u00ab"], [" **", " **\"", " **\u201c", "-**", ";**", "\u4f60\u7528", " you", " You"], [" you", " You", " **", "\u4f60\u7528", " **\"", "you", ">You", "You"], [" You", " you", " **", "\u4f60\u7528", "You", " **\"", ">You", "you"], [" You", " you", " **", "you", "You", ">You", " **\"", " YOU"], [" You", " you", " **", "You", " Write", ">You", " Your", "you"], [" You", " **", " you", " **\"", " **\u201c", "You", ">You", " Your"], [" You", " you", " Your", "You", " Write", " **", " Use", " YOU"]], "p": [[0.5335, 0.2855, 0.0927, 0.0722, 0.0043, 0.0017, 0.0012, 0.0012], [0.6717, 0.1499, 0.0148, 0.0085, 0.0029, 0.0029, 0.0013, 0.0012], [0.3832, 0.2634, 0.181, 0.1597, 0.0024, 0.0021, 0.0015, 0.0013], [0.0106, 0.0106, 0.0078, 0.0061, 0.005, 0.0044, 0.0032, 0.0032], [0.0118, 0.0111, 0.0092, 0.0018, 0.0012, 0.0012, 0.0011, 0.0011], [0.0202, 0.0148, 0.0037, 0.0031, 0.0026, 0.0024, 0.0018, 0.0017], [0.0489, 0.0381, 0.0231, 0.0217, 0.0204, 0.0109, 0.0085, 0.0075], [0.0226, 0.0061, 0.0061, 0.0057, 0.0057, 0.0042, 0.0037, 0.0033], [0.027, 0.0254, 0.0254, 0.0239, 0.0224, 0.0186, 0.0154, 0.0145], [0.0133, 0.011, 0.0097, 0.0081, 0.0067, 0.0049, 0.0046, 0.0046], [0.1742, 0.0641, 0.0499, 0.0499, 0.0322, 0.0236, 0.0208, 0.0208], [0.0423, 0.0373, 0.0329, 0.0291, 0.0256, 0.0226, 0.0156, 0.0137], [0.1106, 0.0461, 0.0433, 0.0263, 0.0263, 0.0247, 0.0247, 0.0218], [0.0678, 0.0528, 0.0528, 0.0528, 0.0496, 0.0438, 0.025, 0.0234], [0.1072, 0.0946, 0.0611, 0.0476, 0.0476, 0.0307, 0.0288, 0.0225], [0.0986, 0.0562, 0.0562, 0.0283, 0.0266, 0.0234, 0.0182, 0.0171], [0.1424, 0.0811, 0.0673, 0.0524, 0.0434, 0.0232, 0.0193, 0.0181], [0.1451, 0.088, 0.0391, 0.0367, 0.0209, 0.0173, 0.0127, 0.0127], [0.1518, 0.0921, 0.0435, 0.0248, 0.0248, 0.0219, 0.0205, 0.015], [0.5298, 0.0763, 0.0463, 0.036, 0.0181, 0.017, 0.016, 0.0097], [0.8519, 0.0545, 0.0166, 0.0054, 0.0029, 0.0024, 0.0024, 0.0022], [0.1383, 0.0199, 0.0187, 0.0129, 0.0114, 0.0107, 0.0107, 0.0088], [0.699, 0.0289, 0.0128, 0.012, 0.01, 0.0094, 0.0078, 0.006], [0.5168, 0.1228, 0.0844, 0.0399, 0.0156, 0.0147, 0.0129, 0.0122], [0.6753, 0.2484, 0.0712, 0.0019, 0.0009, 0.0008, 0.0004, 0.0002], [0.8313, 0.0414, 0.0414, 0.0322, 0.0251, 0.0034, 0.0034, 0.003], [0.6903, 0.1978, 0.0236, 0.0184, 0.0184, 0.0143, 0.0098, 0.0044], [0.5036, 0.4444, 0.0365, 0.0056, 0.0013, 0.0012, 0.0011, 0.0009], [0.5945, 0.2187, 0.0805, 0.038, 0.0261, 0.0035, 0.0024, 0.002], [0.4736, 0.1742, 0.0933, 0.0726, 0.0343, 0.0267, 0.0208, 0.0184], [0.6074, 0.2235, 0.0388, 0.0302, 0.0267, 0.0143, 0.0126, 0.006], [0.894, 0.0306, 0.027, 0.0186, 0.0099, 0.0032, 0.0022, 0.002], [0.239, 0.239, 0.0685, 0.0643, 0.039, 0.0222, 0.0153, 0.0153], [0.2626, 0.0707, 0.0403, 0.0403, 0.026, 0.0216, 0.0202, 0.019], [0.1298, 0.095, 0.0613, 0.0308, 0.0308, 0.024, 0.0199, 0.0155], [0.3097, 0.2129, 0.0446, 0.0419, 0.0288, 0.0164, 0.0154, 0.0154], [0.482, 0.1666, 0.0225, 0.0187, 0.0165, 0.0128, 0.0113, 0.0094], [0.6055, 0.082, 0.0235, 0.0161, 0.0134, 0.0118, 0.0104, 0.0072], [0.5778, 0.1372, 0.0347, 0.0145, 0.0113, 0.0088, 0.0088, 0.0088], [0.4898, 0.0585, 0.0485, 0.0456, 0.0229, 0.0157, 0.0108, 0.0108], [0.3242, 0.0364, 0.0302, 0.0266, 0.025, 0.0207, 0.0134, 0.0126], [0.1971, 0.0991, 0.053, 0.0195, 0.0162, 0.0152, 0.0104, 0.0098], [0.1546, 0.0472, 0.0443, 0.0367, 0.0252, 0.0153, 0.0127, 0.0105], [0.1329, 0.0914, 0.0757, 0.0432, 0.0279, 0.0192, 0.0149, 0.0132], [0.1861, 0.0996, 0.0879, 0.0304, 0.0237, 0.0184, 0.0184, 0.0143], [0.1453, 0.0645, 0.0472, 0.0345, 0.0237, 0.0237, 0.0223, 0.0163], [0.1431, 0.1431, 0.0635, 0.0465, 0.0437, 0.03, 0.03, 0.022], [0.6291, 0.0851, 0.0244, 0.0244, 0.0178, 0.0178, 0.0158, 0.0123], [0.6882, 0.1972, 0.044, 0.0208, 0.0056, 0.0038, 0.0026, 0.0026], [0.7232, 0.1614, 0.0408, 0.011, 0.0067, 0.0052, 0.0036, 0.0031], [0.8053, 0.1235, 0.0101, 0.007, 0.0054, 0.0042, 0.0035, 0.0031], [0.7484, 0.2144, 0.0094, 0.0039, 0.0035, 0.0035, 0.0019, 0.0014], [0.7557, 0.1911, 0.0293, 0.004, 0.0027, 0.0024, 0.0015, 0.0013], [0.817, 0.1253, 0.0192, 0.0091, 0.0028, 0.0026, 0.0022, 0.0018], [0.5261, 0.2485, 0.0555, 0.0192, 0.018, 0.0169, 0.0091, 0.0085], [0.3566, 0.2777, 0.0796, 0.062, 0.0547, 0.0293, 0.0108, 0.0089], [0.7429, 0.1291, 0.0326, 0.012, 0.0094, 0.0094, 0.0073, 0.0064], [0.4152, 0.3665, 0.105, 0.0301, 0.0207, 0.0111, 0.0076, 0.0059], [0.6421, 0.2677, 0.0465, 0.0118, 0.0043, 0.0043, 0.0043, 0.0038], [0.5496, 0.428, 0.0129, 0.0014, 0.0014, 0.0008, 0.0005, 0.0005], [0.8955, 0.0944, 0.0053, 0.0006, 0.0005, 0.0003, 0.0003, 0.0002], [0.937, 0.0283, 0.025, 0.0015, 0.0009, 0.0007, 0.0006, 0.0005], [0.9995, 0.0002, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Python": [63353, 187502, 125941, 177934, 56338, 145793, 48311, 92625, 74849, 124943, 14321, 22878, 25615, 25769, 22105, 29080, 26912, 22188, 59509, 67797, 42615, 107232, 41657, 28188, 25275, 33353, 14623, 7922, 7261, 3530, 4116, 5608, 7101, 8676, 18344, 8617, 10184, 8194, 7746, 3496, 3312, 2862, 4508, 8016, 8167, 4382, 6053, 2729, 6021, 3378, 4889, 822, 1867, 625, 297, 89, 57, 82, 104, 38, 31, 17, 23]}}, {"pos": 499, "top": [[".", ",", "er", "?", "o", ";", " \u2013", "a"], [",", ".", "er", ";", "?", " Very", "\u2011", "\uff0e"], [",", ".", ";", "?", "er", "!", "\u2013", ":"], ["erias", "\uff0a\uff0a\uff0a\uff0a", "\uff0d\uff0d\uff0d\uff0d", "enner", "er", "\uff0d\uff0d", "\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a", "erende"], ["er", ",", ".", "!", "\uff20", "(@", ".@", "?"], [",", ".", "er", "!", "?", ":", ";", "\uff01"], [",", ".", "er", "!", "?", "!!!", "s", ":"], [",", ".", "er", "!", "?", "!!!", "!.", "ey"], [",", ".", "!", "?", ";", "!.", ":", "er"], [",", ".", ";", "!", ":", "\u00a0", "?", "er"], [",", ".", ";", "\u00a0", "!", "er", " ", "..."], [",", "er", " just", " seamlessly", " quickly", " savvy", " strategically", " comfortably"], ["er", ",", " mostly", " seamlessly", " just", " also", " back", " savvy"], [",", "er", " just", " mostly", " also", " savvy", " strategically", " aggressively"], [",", " just", " all", " mostly", " going", " still", " basically", " even"], [" just", ",", " going", " basically", " back", " all", " big", " really"], [",", " just", " going", " back", " mostly", " basically", " big", " getting"], [",", " just", "...", " going", " savvy", " aggressively", " back", " quickly"], [",", "...", " just", "\u2014and", " \u2014", " aggressively", " going", " simply"], [" \u2014", " --", ",", "\u2014and", "\u2014", " just", "\u2014even", " aggressively"], [" \n\n", "<|endoftext|>", "\n\n", "  \n\n", " \r\n\r\n", " \u2014", "\r\n\r\n", " --"], [" ''", " **", " ``", " ---", " --", " seamlessly", " '''", " ___"], [" ``", " ''", " --", " ---", " '''", " \n\n", "\r\n\r\n", "\n\n"], ["\n\n", " ''", " ``", " --", " \n\n", " ,", "\r\n\r\n", " [["], ["\n\n", " \n\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", " --", " ''", " __"], ["\n\n", " \n\n", " --", " ,", " [[", " ...", "\r\n\r\n", " ''"], [" ,", " [[", " --", "\n\n", " \n\n", " ''", " using", " technology"], [" ...", " \n\n", "...", " ,", " [...]", " __", "\n\n", " ___"], [" ...", " .", "...", " ,", " \n\n", " [...]", " **", " __"], [" ...", " ,", " .", "...", " ", " [...]", " and", " using"], [" ,", " .", " ...", " using", " complex", " @", " --", " work"], [" complex", " seamlessly", " **", " technology", " using", " built", " directly", " \u2014"], [" seamlessly", " \u2014", " complex", " directly", " meticulously", " using", " fully", " integrated"], [" \u2014", " ...", " \u2026", " [...]", " \u201c", " seamlessly", " complex", " ["], [" \u2014", " seamlessly", " complex", " [", " strategically", " specialized", " built", " embedded"], [" seamlessly", " \u201c", " \u2014", " built", " leveraging", " complex", "\u2011", " specialized"], [" \u2014", " \u201c", " seamlessly", " built", " using", "\u2011", " embedded", " complex"], ["\u2011", " built", " \u201c", " seamlessly", " using", " embedded", " integrated", " complex"], [" using", " built", " software", " leveraging", " engineering", " integrated", " modular", " seamlessly"], [" using", " built", " modular", " software", " engineering", " integrated", " leveraging", " seamlessly"], [" modular", " built", " using", " software", " seamlessly", " integrated", " engineering", " leveraging"], [" built", " using", " leveraging", " seamlessly", " integrated", " modular", " embedded", " engineered"], [" built", " using", " leveraging", " modular", " engineered", " embedded", " integrated", " seamlessly"], [" using", " built", " leveraging", " integrated", " modular", " imported", " seamlessly", " embedded"], [" leveraging", " using", " imported", " use", " seamlessly", " strategically", " built", " embedded"], [" using", " leveraging", " use", " utilizing", " imported", " uses", " built", " strategically"], [" **", " leveraging", " **\"", " using", " **\u201c", " **'", " **\u300c", " **\u00ab"], [" **", " leveraging", " **\"", " **'", " **\u300c", " **\u00ab", " **+", " **\u201c"], [" **", " **\"", " leveraging", " **\u00ab", " **\u3010", " **\u300c", " **\u201c", " **+"], [" **", " **\"", " **'", " **\u201c", " leveraging", " **+", ";**", " **\u3010"], [" **", " **\"", " **\u201c", " leveraging", " **'", " **+", " **\u3010", ";**"], [" **", " leveraging", " **\"", " **\u201c", " leverage", " **'", ";**", " lever"], [" **", " leveraging", " **\"", " leverage", " **\u201c", " **+", " **\u300c", " **\u00ab"], [" **", " wrappers", " wrapper", " **\"", " wrapping", " leveraging", " **\u201c", " **+"], [" **", " **\u201c", " wrappers", " **\"", " **+", " **\u300c", " **#", " wrapper"], [" **", " wrappers", " **+", " **\"", " **\u201c", " write", " wrapper", ";**"], [" **", " write", " wrappers", " architecture", "\u67b6\u6784", " architect", " archit", " writing"], [" write", " wrap", " **", " wrapper", " writing", " Write", " wrappers", "write"], [" write", " **", " wrap", " wrapper", " wrappers", " writing", " writes", " Write"], [" **", " write", " wrap", " architect", " *", " wrapper", " Write", " treat"], [" write", " wrap", " **", " architect", " treat", " use", " bind", " leverage"]], "p": [[0.5699, 0.3917, 0.025, 0.0036, 0.0028, 0.0015, 0.001, 0.0005], [0.4556, 0.3548, 0.0897, 0.0095, 0.0024, 0.0017, 0.0014, 0.0011], [0.8328, 0.164, 0.0012, 0.0007, 0.0005, 0.0002, 0.0001, 0.0001], [0.0293, 0.013, 0.0051, 0.0051, 0.0045, 0.0027, 0.0027, 0.0024], [0.7339, 0.1538, 0.0414, 0.0015, 0.0013, 0.0012, 0.0006, 0.0006], [0.8375, 0.0883, 0.0127, 0.0025, 0.001, 0.0008, 0.0007, 0.0005], [0.5432, 0.129, 0.0944, 0.0254, 0.0093, 0.0047, 0.0022, 0.0017], [0.5036, 0.1536, 0.1443, 0.0162, 0.0041, 0.0026, 0.0019, 0.0009], [0.7481, 0.2429, 0.0042, 0.0009, 0.0004, 0.0003, 0.0002, 0.0002], [0.9987, 0.0008, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9872, 0.0085, 0.0006, 0.0006, 0.0005, 0.0005, 0.0001, 0.0001], [0.1198, 0.1057, 0.0025, 0.0025, 0.0021, 0.0021, 0.0019, 0.0019], [0.2414, 0.1214, 0.005, 0.0037, 0.0034, 0.0032, 0.003, 0.0027], [0.4655, 0.028, 0.0059, 0.0038, 0.0024, 0.0024, 0.0023, 0.0022], [0.1154, 0.0657, 0.0129, 0.0129, 0.0107, 0.0101, 0.0089, 0.0089], [0.0871, 0.0207, 0.0161, 0.0142, 0.0111, 0.0111, 0.0104, 0.0098], [0.8943, 0.0099, 0.0017, 0.0012, 0.0011, 0.0011, 0.001, 0.0008], [0.6328, 0.0102, 0.0075, 0.0033, 0.0029, 0.0023, 0.0019, 0.0018], [0.1521, 0.0634, 0.0281, 0.0063, 0.0052, 0.0049, 0.0049, 0.0046], [0.0549, 0.0313, 0.019, 0.0178, 0.0139, 0.013, 0.009, 0.0079], [0.5492, 0.1478, 0.0842, 0.0273, 0.0177, 0.0137, 0.0089, 0.0051], [0.0485, 0.0244, 0.0178, 0.0178, 0.0148, 0.0148, 0.0139, 0.0115], [0.3583, 0.2462, 0.0799, 0.0215, 0.0168, 0.0157, 0.0148, 0.013], [0.2416, 0.0692, 0.0692, 0.065, 0.0476, 0.0289, 0.0198, 0.0094], [0.6231, 0.3335, 0.0166, 0.0114, 0.0065, 0.0009, 0.0006, 0.0004], [0.1075, 0.0837, 0.0613, 0.0613, 0.0575, 0.0575, 0.0508, 0.0477], [0.6591, 0.0449, 0.0421, 0.0226, 0.0199, 0.0176, 0.0176, 0.0165], [0.7076, 0.1579, 0.0177, 0.013, 0.0051, 0.0045, 0.004, 0.0033], [0.0679, 0.0321, 0.0283, 0.0266, 0.022, 0.0207, 0.0152, 0.0111], [0.8125, 0.0357, 0.0278, 0.0123, 0.0066, 0.0058, 0.004, 0.0033], [0.9226, 0.0149, 0.0102, 0.0058, 0.004, 0.0023, 0.0018, 0.0017], [0.6693, 0.0485, 0.0313, 0.0139, 0.0074, 0.0054, 0.0037, 0.0037], [0.121, 0.0608, 0.0393, 0.0224, 0.012, 0.0099, 0.0077, 0.0077], [0.0548, 0.0548, 0.0293, 0.0259, 0.0229, 0.0167, 0.0157, 0.0148], [0.0723, 0.0301, 0.0266, 0.025, 0.0161, 0.0152, 0.0118, 0.0111], [0.0904, 0.0849, 0.0515, 0.0377, 0.0294, 0.0202, 0.0178, 0.0167], [0.076, 0.0522, 0.018, 0.0169, 0.015, 0.015, 0.015, 0.0141], [0.0385, 0.0385, 0.0219, 0.0171, 0.0171, 0.0171, 0.0151, 0.0151], [0.0499, 0.0389, 0.0236, 0.0221, 0.0184, 0.0172, 0.0162, 0.0152], [0.0354, 0.0313, 0.0276, 0.0259, 0.0259, 0.0215, 0.019, 0.0157], [0.0591, 0.0461, 0.0359, 0.0247, 0.0232, 0.0204, 0.018, 0.018], [0.0861, 0.0382, 0.0359, 0.0337, 0.0297, 0.0297, 0.0262, 0.0247], [0.0627, 0.0589, 0.0488, 0.0405, 0.0357, 0.0296, 0.0261, 0.0231], [0.0878, 0.0684, 0.047, 0.0415, 0.0323, 0.0304, 0.0268, 0.0184], [0.127, 0.082, 0.0387, 0.0387, 0.025, 0.0235, 0.0235, 0.0207], [0.1676, 0.1016, 0.048, 0.033, 0.031, 0.0241, 0.0241, 0.0227], [0.1227, 0.1017, 0.0398, 0.0351, 0.0274, 0.0274, 0.0257, 0.0213], [0.343, 0.162, 0.0436, 0.0319, 0.0219, 0.0206, 0.0133, 0.0125], [0.9185, 0.0245, 0.0096, 0.0043, 0.0027, 0.0024, 0.002, 0.0019], [0.8575, 0.0548, 0.0139, 0.0051, 0.0042, 0.0037, 0.0026, 0.0021], [0.9107, 0.0189, 0.0101, 0.0089, 0.0079, 0.007, 0.0061, 0.0054], [0.8784, 0.0496, 0.0125, 0.0086, 0.0076, 0.0052, 0.0046, 0.0041], [0.9127, 0.0401, 0.0148, 0.0054, 0.0048, 0.0026, 0.0016, 0.0014], [0.7957, 0.074, 0.0272, 0.0129, 0.0094, 0.0054, 0.0042, 0.0039], [0.7406, 0.0689, 0.0185, 0.0154, 0.0112, 0.0068, 0.0053, 0.0047], [0.6328, 0.16, 0.0357, 0.0191, 0.0116, 0.0085, 0.008, 0.007], [0.9791, 0.0035, 0.0028, 0.0028, 0.0024, 0.0006, 0.0005, 0.0005], [0.9779, 0.0031, 0.0027, 0.0021, 0.0021, 0.0009, 0.0007, 0.0006], [0.9259, 0.0247, 0.0055, 0.0049, 0.0049, 0.0033, 0.0029, 0.0029], [0.8908, 0.0269, 0.0163, 0.0112, 0.0099, 0.0077, 0.0077, 0.0077], [0.7774, 0.0819, 0.0723, 0.0126, 0.0086, 0.0086, 0.0067, 0.0052], [0.5902, 0.3159, 0.0705, 0.0045, 0.002, 0.0012, 0.0009, 0.0009], [0.7218, 0.161, 0.0761, 0.0091, 0.0062, 0.0043, 0.0024, 0.002]], "ranks": {"Python": [16286, 75453, 55180, 93499, 18211, 48838, 32185, 44087, 23153, 45247, 12996, 11852, 10521, 12751, 12518, 12516, 20350, 8789, 9605, 6320, 1591, 271, 263, 975, 667, 119, 103, 388, 148, 239, 315, 1233, 1601, 511, 750, 193, 93, 82, 74, 33, 24, 36, 77, 173, 205, 164, 185, 119, 248, 399, 586, 109, 139, 105, 57, 30, 38, 36, 77, 68, 73, 62, 86]}}, {"pos": 500, "top": [[".", ",", "\u2013", " \u2013", ";", "\u00a0", "<|endoftext|>", "?"], [".", ",", ";", "\u2013", " \u2013", ".[", ":", "?"], [".", ",", "\u2013", ";", " \u2013", "?", ":", "["], [" ``", ".''", " \u2018\u2019", " ''", "\u3001\u300e", " ``(", "``", "\u3015"], [".", ",", ":", "e", "\u2018", " ", " \u2018", "\u00a0"], [".", ",", ":", ";", " \u200b\u200b", "called", "\u00a0", "call"], [".", ",", ":", "?", ";", "\u2018", "able", " \n"], [".", ",", "able", ".''", ":", " \n \n", "__.", "\n \n"], [".", " \n \n", ",", " \n", "\n \n", " \n  \n", " \u200b\u200b", ":"], [",", ".''", " \n \n", ".", "''", "\u00a0", ",''", "\u2010"], [".", ",", " \n \n", "\u00a0", " \n", " \n  \n", ".''", "''"], [" ''", ".''", " \u2018\u2019", "\u3001\u300e", " \n \n", "''", " __", " \n  \n"], [" ''", " __", " '__", " **", "__.", ".''", " \u2018\u2019", " yourself"], [" ''", "''", " stuff", " guys", " things", ".''", " yourself", "\u2010"], [" ''", " --", " stuff", "--", " really", " things", " just", " everything"], [" stuff", " kids", " things", " guys", " really", " --", " incredibly", " folks"], [" everything", " really", " things", " just", ",", " stuff", " pretty", " kids"], [" everything", " things", " stuff", " kids", " pretty", " --", "...", " really"], ["...", " everything", " things", " stuff", " --", " ...", " \u2014", " just"], [" \n\n", " \n  \n", " --", " \u2014", " everything", "...", "\u2014", "--"], [" \n\n", " \n  \n", "\n\n", "<|endoftext|>", "  \n\n", " \n\n\n", " --", " \u2014"], [" ''", " ___", " ``", " __", " **'", " *__", ":''", " \\\""], [" ''", " ``", " ___", " __", " --", " \n  \n", " '''", " ____"], [" ''", " ``", " --", " __", " ___", " \n\n", " \n  \n", "''"], [" \n\n", "\n\n", "\r\n\r\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", "\r\n\r\n"], [" \n\n", "\n\n", " __", " ___", " ''", " \n  \n", " **", " ..."], [" \n\n", " __", " \n  \n", " ___", " ...", " **", " ____", " ''"], [" \n\n", " ___", " ...", " __", " **", " \n  \n", " ____", " ______"], [" ...", " \n\n", " everything", " \u2026", " ...\"", " **", "...", " __"], [" everything", " **", " ___", " \\\"", " \u2026", " \u2014", " __", " ______"], ["\u2014but", " \u2014", " everything", "\u2014or", "\u2014and", " **", "\u2011", " \n\n"], [" **", " everything", "\u2014but", " \u2014", " EVERY", " ______", " --", " **\u201c"], [" \u2026", " \u2014", " **", "\u2014but", " \ud83d\ude09", " everything", " *", "\u2011"], [" \u2014", "\u2014but", " *", " **", " everything", "\u2014and", " EVERY", "\u2014or"], [" **", " *", "\u2011", " everything", " EVERY", " \u2014", " __", "\u2014but"], [" **", " *", "\u2011", " everything", " \u201c", " \ud83d\ude09", "\u2014but", " EVERY"], [" **", "\u2011", " code", " everything", " software", " \u201c", " \ud83d\ude09", " EVERY"], [" code", " software", " algorithms", " everything", " engineering", " modular", " technical", " programming"], [" software", " code", " modular", " engineering", " algorithms", " programming", " conceptual", " everything"], [" software", " code", " **", " modular", " engineering", " algorithms", " conceptual", " programming"], [" software", " code", " modular", " conceptual", " engineering", " everything", " architecture", " algorithms"], [" software", " code", " modular", " everything", " **", " engineering", " conceptual", " \\\""], [" modular", " software", " code", " everything", " conceptual", " engineering", " \\\"", " wrappers"], [" **", " **\"", " ONLY", " code", " modular", " *", " software", " everything"], [" **", " ONLY", " *", " **\"", " <", " everything", " only", " \\\""], [" **", " **\"", " *", " **'", " **\u201c", " **[", " **\u00ab", " \"**"], [" **", " **\"", " *", " **'", " **[", " **\u201c", " **\u00ab", " **+"], [" **", " **\"", " *", " **\u201c", " **+", " **\u00ab", " **#", " **["], [" **", " **\"", " *", " **+", " **#", " **\u201c", " **'", " **\u00ab"], [" **", " **\"", " *", " **\u201c", " **#", " **+", "**", " **."], [" **", " *", " **\"", " interfaces", " **+", " wrappers", "**", " **\u201c"], [" **", " wrappers", " *", " interfaces", " wrapper", " **+", " **\"", " interface"], [" wrappers", " **", " wrapper", " Wrapper", "wrapper", " interfaces", " *", "_wrapper"], [" **", " wrappers", " *", " wrapper", " **+", " Wrapper", "wrapper", " interfaces"], [" **", " *", " wrappers", " wrapper", " Wrapper", " **+", " Python", "wrapper"], [" **", " *", " wrappers", " glue", " wrapper", " bindings", " Wrapper", "\u80f6\u6c34"], [" **", " wrappers", " *", " wrapper", " glue", " Wrapper", " Python", " bindings"], [" *", " **", " wrappers", " wrapper", " Python", " glue", " bindings", " Wrapper"], [" *", " **", " Python", " it", " wrappers", " glue", " ***", " **."], [" *", " **", " a", " it", " the", " Python", " wrappers", " glue"]], "p": [[0.6597, 0.3116, 0.0094, 0.0083, 0.005, 0.0021, 0.0011, 0.0008], [0.5621, 0.2655, 0.0383, 0.0317, 0.028, 0.0052, 0.0046, 0.0024], [0.5534, 0.431, 0.007, 0.0054, 0.0007, 0.0005, 0.0004, 0.0004], [0.0858, 0.0102, 0.0096, 0.008, 0.008, 0.0045, 0.0045, 0.0035], [0.657, 0.2417, 0.0047, 0.0037, 0.0034, 0.003, 0.003, 0.0021], [0.4299, 0.3564, 0.0115, 0.0035, 0.0013, 0.0009, 0.0009, 0.0008], [0.8774, 0.0636, 0.0206, 0.0028, 0.0013, 0.0013, 0.001, 0.0008], [0.699, 0.0574, 0.012, 0.0113, 0.01, 0.006, 0.005, 0.0039], [0.7485, 0.0509, 0.0479, 0.045, 0.0273, 0.0073, 0.0054, 0.0054], [0.4972, 0.0492, 0.036, 0.0318, 0.0141, 0.011, 0.0091, 0.0086], [0.3758, 0.2927, 0.0614, 0.0449, 0.0328, 0.0309, 0.0137, 0.0107], [0.0597, 0.0133, 0.011, 0.0076, 0.0046, 0.0043, 0.0041, 0.0041], [0.1491, 0.0178, 0.0139, 0.013, 0.0115, 0.0108, 0.009, 0.0079], [0.0939, 0.0127, 0.0127, 0.0105, 0.0099, 0.0087, 0.0087, 0.0068], [0.149, 0.0749, 0.0377, 0.0293, 0.0276, 0.0189, 0.0139, 0.013], [0.0719, 0.0634, 0.0596, 0.0464, 0.0409, 0.0409, 0.0319, 0.0248], [0.0579, 0.0451, 0.0451, 0.0451, 0.0398, 0.0351, 0.0291, 0.0257], [0.0707, 0.0429, 0.0403, 0.0356, 0.0277, 0.0277, 0.0277, 0.026], [0.1554, 0.0609, 0.0418, 0.0347, 0.021, 0.0174, 0.0174, 0.0154], [0.1807, 0.0708, 0.0429, 0.0356, 0.0334, 0.026, 0.023, 0.0203], [0.8572, 0.0332, 0.0157, 0.0115, 0.0108, 0.0061, 0.0033, 0.0031], [0.4813, 0.1074, 0.0836, 0.0308, 0.0137, 0.0128, 0.01, 0.0083], [0.6769, 0.1038, 0.0916, 0.0433, 0.015, 0.0059, 0.0059, 0.0052], [0.7697, 0.1338, 0.0298, 0.016, 0.0091, 0.004, 0.003, 0.0028], [0.866, 0.0913, 0.0096, 0.0096, 0.004, 0.004, 0.0031, 0.0028], [0.3509, 0.3509, 0.1463, 0.0175, 0.0154, 0.0136, 0.0113, 0.0113], [0.2642, 0.2642, 0.1816, 0.1248, 0.052, 0.0132, 0.0096, 0.0085], [0.7214, 0.2342, 0.017, 0.0091, 0.0043, 0.0015, 0.0013, 0.0013], [0.7774, 0.1192, 0.0342, 0.0183, 0.0098, 0.0076, 0.0041, 0.0026], [0.5096, 0.1289, 0.0782, 0.069, 0.069, 0.0369, 0.0145, 0.0093], [0.3528, 0.1298, 0.1298, 0.1298, 0.0892, 0.0328, 0.029, 0.0113], [0.4567, 0.1155, 0.0581, 0.0581, 0.0227, 0.0227, 0.0201, 0.0177], [0.143, 0.143, 0.0596, 0.0526, 0.0526, 0.0265, 0.0219, 0.0206], [0.1146, 0.1146, 0.0576, 0.0509, 0.0396, 0.0396, 0.0396, 0.029], [0.13, 0.0542, 0.035, 0.0309, 0.0272, 0.0212, 0.0187, 0.0176], [0.2001, 0.0419, 0.0348, 0.0271, 0.0239, 0.0224, 0.0224, 0.0198], [0.085, 0.0549, 0.0402, 0.0354, 0.0259, 0.0202, 0.0157, 0.0139], [0.1066, 0.0503, 0.0325, 0.0325, 0.0238, 0.0238, 0.0238, 0.0223], [0.0679, 0.0439, 0.0342, 0.025, 0.0221, 0.0221, 0.0207, 0.0207], [0.0653, 0.0508, 0.0328, 0.029, 0.029, 0.0226, 0.0212, 0.0165], [0.1465, 0.1215, 0.0447, 0.0225, 0.0198, 0.0154, 0.0145, 0.0136], [0.1781, 0.115, 0.0373, 0.0309, 0.0309, 0.0166, 0.0121, 0.0121], [0.1683, 0.0619, 0.04, 0.04, 0.0311, 0.0189, 0.0177, 0.0147], [0.1251, 0.1037, 0.0358, 0.0279, 0.018, 0.0169, 0.014, 0.014], [0.0702, 0.0619, 0.0353, 0.0311, 0.0275, 0.0243, 0.0189, 0.0177], [0.0488, 0.0488, 0.0357, 0.0296, 0.0203, 0.0169, 0.014, 0.0123], [0.311, 0.0395, 0.0225, 0.0187, 0.0165, 0.0165, 0.0145, 0.0137], [0.2683, 0.0871, 0.0496, 0.0341, 0.0142, 0.0118, 0.0104, 0.0092], [0.9838, 0.0075, 0.0035, 0.0022, 0.0005, 0.0004, 0.0002, 0.0001], [0.9912, 0.0052, 0.0019, 0.0004, 0.0003, 0.0001, 0.0001, 0.0001], [0.9976, 0.0012, 0.0006, 0.0001, 0.0001, 0.0001, 0.0, 0.0], [0.9963, 0.0017, 0.0015, 0.0001, 0.0001, 0.0001, 0.0001, 0.0], [0.9956, 0.0019, 0.0015, 0.0003, 0.0001, 0.0001, 0.0001, 0.0001], [0.9784, 0.014, 0.0017, 0.0015, 0.0006, 0.0005, 0.0003, 0.0003], [0.9243, 0.0246, 0.0217, 0.0091, 0.0038, 0.0029, 0.001, 0.0007], [0.6086, 0.1976, 0.1539, 0.0184, 0.0053, 0.0025, 0.0017, 0.0015], [0.9645, 0.0177, 0.0107, 0.0045, 0.0005, 0.0005, 0.0002, 0.0002], [0.9327, 0.0526, 0.0104, 0.0026, 0.0003, 0.0003, 0.0001, 0.0001], [0.9083, 0.0658, 0.0147, 0.0054, 0.0037, 0.0004, 0.0004, 0.0002], [0.565, 0.2079, 0.1113, 0.0866, 0.0117, 0.0038, 0.003, 0.0023], [0.9055, 0.0842, 0.0078, 0.0009, 0.0004, 0.0002, 0.0002, 0.0001], [0.8367, 0.1454, 0.0082, 0.0024, 0.0021, 0.0014, 0.0004, 0.0003], [0.7034, 0.1778, 0.051, 0.0309, 0.0212, 0.0061, 0.0042, 0.0008]], "ranks": {"Python": [18238, 46862, 51842, 48817, 13734, 68562, 7811, 12500, 8257, 15892, 7149, 22902, 38658, 24440, 11447, 11386, 13115, 5600, 6320, 8654, 4363, 7559, 2776, 2153, 2685, 1736, 863, 816, 373, 532, 619, 1234, 1254, 1207, 732, 147, 70, 72, 77, 20, 9, 15, 19, 57, 57, 36, 45, 30, 118, 320, 312, 112, 104, 68, 46, 10, 11, 7, 16, 7, 5, 3, 6]}}, {"pos": 501, "top": [[".", ",", "\u2013", ";", " \u2013", "\u2026.", ",.", "\u00a0\u00a0"], ["\u2013", " \u2013", ".", ",", " \u200b\u200b", "\u2013and", ";", ",."], [".", ",", "\u2013", " \u2013", "\u2026.", "\u2026", "\u2026..", ";"], [" milfs", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Guta", " Blowjob", "odle", "\u54e5\u534e", " Shemale", " pornstar"], [".@", " @", " (@", " \u200b\u200b", " \"@", "(@", "@d", "@c"], [" \u200b\u200b", ".cast", "\u7fe1", "ayar", "\u5982\u6b4c", "\u62a5\u544a\u5385", ".ac", "@a"], [" \u200b\u200b", " **\"", " *", "s", " *@", "!\"", "@a", " @"], [" *@", " \u200b\u200b", " @", "@a", "(@", ".@", " \"@", "\u56e0\u60a8\u7684"], [" \u200b\u200b", ".", "!.", ":.", " *@", ",", "!", ",."], [",", " \"", ".", " ", ";", "-\"", "\u00a0", ":"], [",", " @", " ", "...", "@", ".", "\u00a0", " \""], [" @", " pretty", " folks", " _", " \"", " *", " just", " big"], [" _", " big", " pretty", " savvy", "-ish", " bigger", " **", " tough"], [" savvy", "-ish", " big", " bigger", " tricks", " wig", " tech", "-style"], [" \"", " big", " savvy", " folks", " bigger", " just", " back", " wo"], [" big", " new", " \"", " one", " classic", " back", " bigger", " more"], [" \"", " big", " savvy", ",", " tech", " folks", " new", " bigger"], [" savvy", " big", " tech", " bigger", "-esque", " tweaked", " revamped", " wig"], ["...", "&#", " \"", " &#", " ...", " savvy", " \"...", "\n\n"], [" &#", "&#", " --", " \"", " \n\n", " genuinely", " wildly", " `"], ["<|endoftext|>", " \n\n", "\n\n", "  \n\n", "   \n\n", " \n\n\n", " \r\n\r\n", "\r\n\r\n"], [" ``", " ''", " hacker", " **", " ;;^", "\u5168\u5c4f\u67e5\u770b", "GuidId", " modular"], [" ``", " ''", " '''", " **", " modular", " ``(", " ```", " modern"], [" ``", " ''", " --", " `", " {{--<", " &#", " ,", " modern"], [" \n\n", " ``", "\n\n", "\r\n\r\n", "  \n\n", " \r\n\r\n", " ''", " --"], [" ``", " software", " **", " tech", " modular", " {{--<", " ''", " engineering"], [" software", " ``", " modular", " tech", " technology", " film", " **", " engineering"], ["\n\n", " \n\n", " @", " --", " **", " complex", " ,", " software"], [" software", " modular", " technology", " complex", " tech", " **", " engineering", " film"], [" **", " ...", " ____", " ___", " software", " technology", " __", " complex"], [" ...", " **", " ____", " ___", " ...\"", " technology", " _____", " [...]"], [" ...", " **", " complex", " technology", " ", " technical", " @", " work"], [" complex", " ,", " independent", " new", " a", " technology", " \"", " modern"], [" modular", " **", " complex", " software", " tech", " technical", " technology", " hybrid"], [" **", " modular", " complex", " hybrid", " tech", " software", " seamlessly", " technical"], [" **", " *", " complex", " technical", " modular", " software", " **\u201c", " engineering"], [" **", " *", " complex", " modular", " technical", " engineering", " specialized", " hybrid"], [" technical", " complex", " modular", " engineering", " **", " software", " specialized", " *"], [" complex", " modular", " **", " technical", " software", " specialized", " engineering", " *"], [" **", " modular", " complex", " specialized", " technical", " Python", " engineering", " software"], [" software", " modular", " native", " technical", " engineering", " Python", " complex", " specialized"], [" software", " modular", " interface", " engineering", " hardware", " technical", " specialized", " native"], [" modular", " software", " interface", " specialized", " hardware", " proprietary", " technical", " engineering"], [" software", " interface", " modular", " proprietary", " hardware", " specialized", " interfaces", " firmware"], [" modular", " proprietary", " interface", " specialized", " seamless", " software", " hybrid", " embedded"], [" modular", " proprietary", " hybrid", " seamless", " specialized", " custom", " seamlessly", " integrated"], [" modular", " proprietary", " seamless", " hybrid", " internally", " specialized", " seamlessly", " bespoke"], [" **", " proprietary", " modular", " bespoke", " seamless", " internally", " specialized", " **\""], [" **", " **\"", " **\u00ab", " **\u201c", " **'", " **\u300c", " **\u20ac", " bespoke"], [" **", " **\"", " **\u00ab", " **\u201c", " **'", " **\u300c", " **+", " **\u20ac"], [" **", " **\"", " **\u201c", " **\u00ab", " **'", " **+", " **\u3010", " **\u300c"], [" **", " **\"", " **'", " **\u201c", " **+", " **#", " **\u00ab", "**"], [" **", " **\"", " **\u201c", " **'", " **+", "**", " **\u00ab", " **#"], [" **", " **\"", "**", " **\u201c", " **\u20ac", " **'", " **+", " **\u00ab"], [" **", " **\"", "**", " **+", " **\u201c", " **\u20ac", " **\u00ab", " **'"], [" **", " **\"", " Python", "**", " **\u201c", " wrapper", " **'", " **+"], [" **", " **\"", "**", " **+", " **\u201c", " Python", " **'", " **."], [" **", " **\"", "**", " thin", " **+", " **\u201c", " Python", " **["], [" **", " thin", "**", " **\"", " **+", " **\u201c", " Thin", " **."], [" **", " thin", " Python", " Thin", "thin", " **\"", " **.", " **\u201c"], [" **", " thin", " Python", " **\"", " Thin", "thin", "**", " **."], [" **", " **\"", " **.", "**", " **'", " **\u201c", " **-", " thin"], [" **", " *", " thin", " C", " **\"", " **.", "*C", " Python"]], "p": [[0.8428, 0.1464, 0.005, 0.0018, 0.001, 0.0007, 0.0005, 0.0003], [0.2822, 0.1608, 0.1176, 0.0382, 0.0247, 0.014, 0.0116, 0.008], [0.4969, 0.2347, 0.2072, 0.0193, 0.017, 0.0071, 0.0071, 0.003], [0.0045, 0.0027, 0.0023, 0.0021, 0.0016, 0.0014, 0.0014, 0.0014], [0.0351, 0.031, 0.0241, 0.02, 0.0188, 0.0156, 0.0114, 0.0095], [0.0754, 0.002, 0.002, 0.0018, 0.0014, 0.0014, 0.0013, 0.0012], [0.05, 0.0196, 0.0135, 0.0112, 0.0093, 0.0093, 0.0087, 0.0082], [0.0676, 0.0465, 0.0362, 0.0171, 0.0104, 0.0067, 0.0049, 0.0046], [0.2313, 0.0455, 0.0259, 0.0157, 0.0123, 0.0102, 0.009, 0.0074], [0.6882, 0.0053, 0.0034, 0.0032, 0.0022, 0.0022, 0.0021, 0.0014], [0.2306, 0.1399, 0.1089, 0.0661, 0.0427, 0.0243, 0.0214, 0.0201], [0.0777, 0.0127, 0.0082, 0.0082, 0.0077, 0.0077, 0.006, 0.0056], [0.0188, 0.0156, 0.0114, 0.0107, 0.0101, 0.0094, 0.0094, 0.0074], [0.0103, 0.0096, 0.0075, 0.0071, 0.0043, 0.0035, 0.0035, 0.0029], [0.015, 0.0085, 0.0085, 0.008, 0.0071, 0.0055, 0.0049, 0.0046], [0.0148, 0.0075, 0.0062, 0.0051, 0.0051, 0.0051, 0.0043, 0.004], [0.0538, 0.0198, 0.0164, 0.0099, 0.0082, 0.0073, 0.0064, 0.006], [0.0164, 0.0088, 0.0078, 0.0064, 0.0053, 0.0044, 0.0042, 0.0039], [0.0991, 0.0152, 0.0092, 0.0076, 0.0076, 0.006, 0.0056, 0.0053], [0.0271, 0.0239, 0.0113, 0.0064, 0.0044, 0.0044, 0.0042, 0.0042], [0.6754, 0.2193, 0.0521, 0.0262, 0.0035, 0.002, 0.001, 0.001], [0.2444, 0.0107, 0.0033, 0.0031, 0.0031, 0.0027, 0.0026, 0.0023], [0.8656, 0.0231, 0.0012, 0.0011, 0.0008, 0.0008, 0.0007, 0.0007], [0.2556, 0.0444, 0.0287, 0.0163, 0.005, 0.0047, 0.0039, 0.0034], [0.2976, 0.0586, 0.0314, 0.0216, 0.0168, 0.0158, 0.0148, 0.0115], [0.1765, 0.0211, 0.0128, 0.012, 0.01, 0.01, 0.006, 0.0044], [0.052, 0.0488, 0.0231, 0.0231, 0.0149, 0.0116, 0.0116, 0.008], [0.1695, 0.0907, 0.0229, 0.0229, 0.0202, 0.0179, 0.0148, 0.0148], [0.0617, 0.0579, 0.0579, 0.0398, 0.0227, 0.0188, 0.0138, 0.0121], [0.5039, 0.1056, 0.0236, 0.0195, 0.0184, 0.0172, 0.0143, 0.0111], [0.652, 0.2117, 0.0087, 0.0077, 0.0044, 0.0044, 0.0044, 0.0041], [0.1775, 0.095, 0.029, 0.0155, 0.01, 0.0088, 0.0083, 0.0078], [0.0316, 0.0204, 0.0096, 0.0096, 0.0085, 0.0085, 0.008, 0.0066], [0.101, 0.0652, 0.0613, 0.0541, 0.0308, 0.0289, 0.0212, 0.0187], [0.1018, 0.0617, 0.0512, 0.0274, 0.0213, 0.02, 0.0166, 0.0166], [0.1889, 0.0541, 0.0508, 0.0421, 0.0272, 0.0165, 0.0146, 0.0146], [0.1228, 0.058, 0.058, 0.0545, 0.0399, 0.0257, 0.0213, 0.0177], [0.0626, 0.0488, 0.0357, 0.0315, 0.0261, 0.0245, 0.0203, 0.0191], [0.0592, 0.0556, 0.0491, 0.0382, 0.0359, 0.028, 0.028, 0.0205], [0.1699, 0.0457, 0.0457, 0.0245, 0.023, 0.0216, 0.0168, 0.0116], [0.0595, 0.0525, 0.0384, 0.0361, 0.0318, 0.0299, 0.0281, 0.0264], [0.1097, 0.091, 0.0587, 0.0487, 0.043, 0.0245, 0.023, 0.0216], [0.0912, 0.0857, 0.0756, 0.0488, 0.0431, 0.0217, 0.0191, 0.0191], [0.082, 0.077, 0.0638, 0.06, 0.0387, 0.0342, 0.0207, 0.0195], [0.1179, 0.0631, 0.0434, 0.0408, 0.0247, 0.0205, 0.0205, 0.0193], [0.1726, 0.072, 0.0385, 0.034, 0.0249, 0.0234, 0.0182, 0.0161], [0.1414, 0.0858, 0.0459, 0.0262, 0.0262, 0.0246, 0.0217, 0.0204], [0.0764, 0.0718, 0.0464, 0.0409, 0.0339, 0.0299, 0.0233, 0.0206], [0.9322, 0.0281, 0.0067, 0.0059, 0.0055, 0.0043, 0.0018, 0.0012], [0.8848, 0.0823, 0.0087, 0.0068, 0.0053, 0.0041, 0.0017, 0.001], [0.9925, 0.0052, 0.0007, 0.0004, 0.0003, 0.0003, 0.0001, 0.0001], [0.9922, 0.0067, 0.0003, 0.0002, 0.0002, 0.0001, 0.0001, 0.0], [0.9946, 0.0041, 0.0006, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001], [0.9966, 0.0017, 0.0004, 0.0002, 0.0002, 0.0002, 0.0002, 0.0001], [0.9962, 0.0013, 0.0003, 0.0003, 0.0003, 0.0002, 0.0002, 0.0001], [0.9957, 0.0015, 0.0007, 0.0005, 0.0003, 0.0002, 0.0002, 0.0001], [0.9994, 0.0002, 0.0002, 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.9996, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9958, 0.0032, 0.0003, 0.0002, 0.0001, 0.0001, 0.0, 0.0], [0.9989, 0.0008, 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.9929, 0.0022, 0.0019, 0.0017, 0.0004, 0.0002, 0.0002, 0.0001]], "ranks": {"Python": [41041, 125575, 61169, 110260, 3391, 34635, 2875, 12104, 12121, 21857, 3577, 1860, 1350, 1429, 1971, 2636, 3405, 537, 776, 1411, 389, 30, 18, 195, 125, 33, 38, 69, 31, 44, 86, 316, 849, 162, 395, 93, 16, 14, 13, 6, 6, 18, 14, 21, 36, 36, 54, 32, 64, 96, 130, 61, 40, 37, 12, 3, 6, 7, 11, 3, 3, 19, 8]}}, {"pos": 502, "top": [["s", "**.", " **", "**\u2013", "**,", "**", "-**", "**:"], [" **", "s", "-**", "**,", " **\u2013", "**.", "**\u2013", " (**"], ["s", " **", "\u2026**", "**.", "**\u2013", " **\u2013", "**", "**\u3002"], [" **", "\u300d**", " **\u00ab", " **:", " **\u300c", ">**", " **.", "\uff1f**"], [" **", "s", " **#", "-**", ">**", " **.", "**", " **:"], [" **", "-**", " **#", " **.", " **\u00ab", ">**", " **:", " **-"], [" **", "s", "**", "-**", " **\u00ab", "\u300d**", ">**", " **#"], [" **", "**", " **\u00ab", " **#", "-**", "s", ">**", "\u300d**"], [" **", "**", " **\u00ab", " **#", "\u300d**", ">**", "-**", "s"], [" **", " **\u00ab", " **#", "-**", ">**", "s", "\u300d**", "**"], [" **", "**", " **#", " **\u00ab", "s", "-**", ">**", "\u300d**"], [" **", " **\u00ab", " **#", "-**", " **+", "\u300d**", " **\u300c", ">**"], [" **", " **\u00ab", " **#", "-**", "\u300d**", " **\u300c", " **+", "**"], [" **", " **\u00ab", "-**", " **#", "\u300d**", " **\u300c", " **+", " \u00bb**"], [" **", "s", " **\u00ab", "\u300d**", "-**", " **#", "**", " \"**"], [" **", "s", " **\u00ab", "**", "-**", " **#", "\u300d**", ">**"], [" **", "s", "**", " **\u00ab", " **#", "-**", ">**", " **+"], [" **", "**", " **\u00ab", "-**", " **#", ">**", "\u2019**", " **+"], [" **", "**", "-**", " **\u00ab", " **#", "\u2019**", ">**", "**-"], [" **", "**", "s", "\u2019**", "**,", "-**", ">**", " **#"], [" **", "**", "s", "**,", " **#", ">**", "-**", "\u2019**"], [" **", "**", " **\u00ab", " **#", "-**", "\u300d**", ">**", "\u2019**"], [" **", "**", "s", " **#", ">**", "\u300d**", " **'", "-**"], [" **", "s", "**", ">**", " **#", " **'", "\u300d**", "**,"], [" **", "**", ">**", " **#", "-**", "\u2019**", "**,", " **'"], [" **", "**", " **#", ">**", " **'", "-**", "\u2019**", " **\u201c"], [" **", "**", ">**", " **#", " **'", "-**", "\u2019**", "...**"], [" **", "**", " **'", " **#", " \n\n", " **[", "-**", " **\u201c"], [" **", "**", " **'", " **#", " **\u201c", "-**", " **[", "\u2019**"], [" **", "**", " **\u201c", "...**", " **[", " **'", "\u2026**", " \n\n"], [" **", "**", " **'", " **\u201c", " **[", " **\"", " \n\n", " **#"], [" **", "**", " **'", " **[", " **\u201c", "s", " **\"", " **."], [" **", "**", " **'", " **\"", " **\u201c", "s", " **[", " **."], [" **", "**", " **\u201c", " **'", " **\"", ">**", "!**", " **["], [" **", "**", " **\u201c", " **'", "!**", ">**", " **\"", " **["], [" **", "**", " **\u201c", "\u2026**", "\u2011", "!**", "\u201d**", " **\""], [" **", "**", " **\u201c", "\u2011", " **\"", " \"**", " **'", "\u201d**"], [" **", "**", "\u2011", " **\u201c", " modular", " **\"", "\u2026**", " \"**"], [" **", " modular", "\u2011", "**", " dual", " hybrid", " **\u201c", " Modular"], [" **", "\u2011", " modular", "**", " hybrid", " **\u201c", " dual", " Modular"], [" **", " modular", "\u2011", " hybrid", "**", " dual", " Modular", " technical"], [" modular", " interface", " software", " Modular", " **", " hardware", " hybrid", " technical"], [" modular", " **", " interface", " Modular", " software", " seamless", " interf", " hybrid"], [" modular", " interface", " **", " seamless", " automated", " software", " interfaces", " hybrid"], [" modular", " **", " interface", " Modular", " seamless", " hybrid", " interfaces", " dual"], [" modular", " **", " Modular", " hybrid", " interface", " seamless", " dual", " automated"], [" modular", " **", " seamless", " Modular", " hybrid", " interface", " Hybrid", " seamlessly"], [" **", "**", " **'", " **\"", " **\u201c", " modular", " **+", "**,"], [" **", " modular", " seamless", " hybrid", "**,", " Modular", " dual", " Hybrid"], [" modular", " seamless", " Seamless", " hybrid", " Modular", " Interface", " Dual", " proprietary"], ["!**", ";**", "**,", "**!", " **:", "\uff01**", ">**", "\u300d**"], [" Python", " modular", "!**", " Interface", ";**", "**!", "**,", " interoper"], [" Python", " modular", " tightly", ";**", " Interface", " reusable", " Modular", " Minimal"], [" Python", " Interface", " modular", " interfaces", " Interfaces", " tightly", " interface", "/interfaces"], [" Python", " Minimal", " minimal", " hybrid", " modular", "minimal", "Python", " Hybrid"], [" Python", "Python", "-python", " python", " wrapper", " hybrid", " minimal", " Wrapper"], [" Python", "Python", "-python", " python", " wrapper", " Wrapper", " Minimal", "python"], [" Python", " thin", " Thin", "thin", "Python", " python", " wrapper", "-python"], [" Python", " thin", " Thin", " Rust", "thin", " tight", " tightly", " native"], [" Python", " thin", " Thin", " tight", "thin", " tightly", " Rust", " native"], [" thin", " Python", " Thin", "thin", " Rust", " tight", " tightly", " native"], [" thin", "thin", " Python", " Thin", " Rust", " native", " tight", " ultra"], ["C", "thin", "Python", " thin", " C", "native", "Thin", "tight"]], "p": [[0.9986, 0.0008, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.6371, 0.2656, 0.0117, 0.0103, 0.0091, 0.0071, 0.0055, 0.0055], [0.8311, 0.0531, 0.0414, 0.0195, 0.0134, 0.0119, 0.0072, 0.0063], [0.4517, 0.1294, 0.1008, 0.0371, 0.0289, 0.0255, 0.0198, 0.0198], [0.8268, 0.0987, 0.0194, 0.0118, 0.0092, 0.0081, 0.0063, 0.0026], [0.9594, 0.0155, 0.005, 0.0031, 0.0031, 0.0019, 0.0019, 0.0013], [0.9543, 0.0175, 0.0136, 0.003, 0.0024, 0.0018, 0.0013, 0.0011], [0.962, 0.0094, 0.0065, 0.0057, 0.0045, 0.0024, 0.0019, 0.0019], [0.9344, 0.0171, 0.0133, 0.0118, 0.0049, 0.003, 0.0026, 0.0016], [0.9511, 0.0174, 0.0093, 0.0057, 0.0034, 0.0034, 0.0024, 0.0021], [0.9906, 0.0028, 0.0022, 0.0015, 0.0013, 0.0005, 0.0003, 0.0002], [0.9904, 0.0059, 0.0017, 0.0004, 0.0003, 0.0003, 0.0002, 0.0002], [0.9817, 0.014, 0.0009, 0.0008, 0.0004, 0.0004, 0.0003, 0.0002], [0.936, 0.0528, 0.0023, 0.0014, 0.0011, 0.0011, 0.001, 0.0006], [0.9928, 0.0041, 0.0019, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001], [0.9968, 0.0019, 0.0007, 0.0002, 0.0001, 0.0001, 0.0001, 0.0], [0.9985, 0.0006, 0.0004, 0.0002, 0.0001, 0.0, 0.0, 0.0], [0.9975, 0.0013, 0.0004, 0.0003, 0.0001, 0.0001, 0.0, 0.0], [0.9952, 0.0036, 0.0003, 0.0002, 0.0001, 0.0001, 0.0001, 0.0], [0.9716, 0.0229, 0.0024, 0.0008, 0.0004, 0.0004, 0.0003, 0.0002], [0.9355, 0.0411, 0.0194, 0.0014, 0.0005, 0.0004, 0.0003, 0.0002], [0.9974, 0.0007, 0.0004, 0.0003, 0.0002, 0.0002, 0.0002, 0.0001], [0.9947, 0.0036, 0.0003, 0.0003, 0.0002, 0.0002, 0.0001, 0.0001], [0.9935, 0.0032, 0.0025, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.9671, 0.0292, 0.0006, 0.0005, 0.0004, 0.0003, 0.0003, 0.0002], [0.9965, 0.0025, 0.0002, 0.0002, 0.0002, 0.0002, 0.0001, 0.0], [0.9949, 0.0041, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001, 0.0], [0.9983, 0.0013, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9953, 0.0041, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.9969, 0.0028, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9973, 0.0025, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9986, 0.0009, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9979, 0.0007, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.9859, 0.004, 0.0028, 0.0008, 0.0006, 0.0005, 0.0004, 0.0004], [0.9837, 0.0085, 0.0012, 0.0008, 0.0005, 0.0004, 0.0004, 0.0004], [0.8886, 0.0827, 0.0047, 0.0032, 0.0032, 0.0019, 0.0013, 0.0013], [0.9466, 0.0252, 0.0053, 0.0022, 0.0018, 0.0015, 0.001, 0.0009], [0.899, 0.0308, 0.0155, 0.0064, 0.0044, 0.0024, 0.002, 0.0018], [0.7451, 0.0476, 0.0308, 0.0064, 0.0053, 0.005, 0.0047, 0.0032], [0.754, 0.0482, 0.0453, 0.0122, 0.0054, 0.0048, 0.0045, 0.0031], [0.3071, 0.1863, 0.0304, 0.0222, 0.0209, 0.0135, 0.0135, 0.0135], [0.404, 0.0582, 0.0275, 0.0243, 0.0243, 0.0138, 0.013, 0.0101], [0.2904, 0.1004, 0.0734, 0.0224, 0.0224, 0.0164, 0.0154, 0.0145], [0.235, 0.0979, 0.0384, 0.0318, 0.0219, 0.0219, 0.0193, 0.015], [0.2511, 0.1955, 0.0635, 0.0234, 0.0219, 0.0142, 0.0104, 0.0097], [0.4295, 0.0513, 0.0399, 0.0258, 0.0242, 0.0214, 0.0089, 0.0069], [0.2135, 0.1884, 0.0395, 0.0395, 0.0165, 0.0128, 0.01, 0.01], [0.93, 0.0097, 0.0086, 0.0063, 0.0028, 0.0028, 0.0023, 0.002], [0.1235, 0.0797, 0.0427, 0.0293, 0.0202, 0.0167, 0.0157, 0.0147], [0.0566, 0.0469, 0.0236, 0.0152, 0.0143, 0.0143, 0.0134, 0.0126], [0.0859, 0.0807, 0.0432, 0.0406, 0.0358, 0.0297, 0.0279, 0.0246], [0.1425, 0.0632, 0.0524, 0.0408, 0.0408, 0.0193, 0.017, 0.0141], [0.3782, 0.07, 0.0177, 0.0147, 0.0122, 0.0122, 0.0101, 0.0101], [0.1157, 0.0547, 0.0426, 0.04, 0.0376, 0.0243, 0.0228, 0.0201], [0.5161, 0.0451, 0.0451, 0.0257, 0.0177, 0.0114, 0.0114, 0.0101], [0.9355, 0.0194, 0.0063, 0.0049, 0.0043, 0.0017, 0.0016, 0.0013], [0.9664, 0.0122, 0.0035, 0.0035, 0.0016, 0.001, 0.0006, 0.0006], [0.8584, 0.0549, 0.0259, 0.0157, 0.0108, 0.0027, 0.0026, 0.0021], [0.4742, 0.1977, 0.1058, 0.0727, 0.0389, 0.0184, 0.0098, 0.0087], [0.5498, 0.2943, 0.0451, 0.0274, 0.0213, 0.0114, 0.0101, 0.0054], [0.4589, 0.405, 0.0332, 0.0332, 0.0293, 0.0084, 0.0048, 0.0037], [0.6518, 0.1867, 0.0535, 0.0324, 0.0197, 0.0068, 0.0036, 0.0034], [0.9502, 0.0418, 0.0021, 0.0021, 0.0016, 0.0006, 0.0003, 0.0002]], "ranks": {"Python": [26675, 182665, 74185, 116800, 74884, 125666, 47836, 53673, 52426, 76872, 18962, 43031, 45805, 56518, 12813, 12948, 12198, 10982, 9550, 12919, 5151, 6294, 5215, 4569, 3520, 3993, 2787, 1426, 1623, 1701, 2053, 3595, 4284, 3172, 4293, 1130, 369, 348, 455, 211, 77, 109, 98, 110, 182, 221, 373, 268, 185, 79, 97, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, 3]}}, {"pos": 503, "top": [[".", "\u00a0\u00a0", ",", "  \n", " \u2013", "\u2026.", " \u00a0", ";"], ["  \n", "  \n\n", "  \n  \n", "   \n", "\u00ad", " \u2013", "  \n    \n", " \u00a0"], ["\u2026..", "\u2013", "\u2026.", " \u2013", "\u2026\u2026", ".", "\u2013and", " [\u2026]"], ["\ufffd\ufffd", " Strec", " Shemale", "CCCCCC", " milfs", " Blowjob", " councill", "&eacute"], ["\ufffd\ufffd", "&C", "CCCCCC", "&A", "&a", "&nbsp", " CSC", "(ci"], ["(ci", "-CS", "\ufffd\ufffd", "CCCCCC", "CCCC", "&C", "ubic", "lients"], ["  \n", "&C", "......", " ......", "  \n\n", "\u65f3", ".....", " ....."], ["  \n", "&C", "  \n\n", "-Saharan", "-C", "\u65f3", "-CS", "istry"], ["&C", "istry", "-C", "iewicz", "-Saharan", "......", "&nbsp", "ilinear"], ["-C", "\u00ad", "-d", "istry", "-cent", "-J", " \u00ad", "-L"], ["...", "-C", ",...", "...\"", "...'", "-", ":...", ")..."], ["istry", "-C", "...**", "-tech", "...", "-metal", "-American", "-era"], ["-C", "istry", "-tech", "-era", "...", "-f", "-style", "-d"], ["-C", "-f", "...", "-tech", "-c", "-d", "-era", "-l"], ["...", "-", "-C", "-d", "-f", "-p", "-or", "-h"], ["-tech", "-C", "-", "...", "-or", "-f", "-lo", "-d"], ["...", "-", "\u00a0", "-C", "\u00ad", "-tech", "-or", "-f"], ["-tech", "-C", "...", "-", "-or", "-engine", "-o", "-k"], ["...", "-C", "-tech", "-or", "&#", "-o", "-", "-engine"], ["\\-", "&#", " \n\n", "-&", "...", "  \n\n", "-C", "\n\n"], ["<|endoftext|>", "\n\n", " \n\n", "2", "  \n\n", "4", "3", "6"], [" ``", "-tech", "-language", "-engine", "wares", "-American", "-python", " {{--<"], [" ``", "``", " ''", "&quot", " {{--<", "-engine", " ``(", "-language"], [" ``", "\n\n", " {{--<", " ''", "``", " --", "<|endoftext|>", "&quot"], ["\n\n", " \n\n", " ``", " {{--<", "  \n\n", "\r\n\r\n", "\\-", "Python"], [" ``", " {{--<", "-language", "-engine", " ``(", "``", "/Linux", "Python"], [" ``", "-language", "-engine", " {{--<", "``", "Unix", "/software", "-python"], ["\n\n", " ``", " \n\n", " --", " ...", " {{--<", " ''", "-engine"], ["\n\n", "-language", " ...", "-engine", "Python", "-python", "/Linux", "-metal"], [" ...", "...", " [...]", " (...)", " ...\\", "\n\n", " ...\"", "(...)"], [" ...", "...", " [...]", " (...)", " ...\"", "...**", "(...)", " ...\\"], [" ...", "...", " [...]", " (...)", " ...\"", "(...)", " [...", "[...]"], [" ...", "...", " [...]", "/", "-", " ...\"", " /", " (...)"], ["/", "-engine", "-tech", "/software", "/C", "/engine", " [...]", "..."], ["/", " [...]", "[...]", "...</", "-engine", "...", "/C", "(...)"], [" [...]", "[...]", "/", "2", "3", "4", " [\u2026]", "8"], [" [...]", "/", "Python", "[...]", " [...", " (...)", "-engine", "(...)"], [" [...]", "[...]", "Python", "/", " [...", "2", " (...)", "3"], ["Python", " [...]", "[...]", " [...", " Python", "/", " [\u2026]", " (...)"], ["Python", " Python", "Chinese", "-python", " Chinese", "python", "China", " [...]"], ["Python", " Python", " Chinese", "Chinese", "-language", "-engine", "-python", " engineering"], ["-engine", "-metal", " engineering", "Python", " hardware", "/engine", " metal", " Metal"], ["-engine", "-metal", " hardware", "/Linux", "/engine", " engineering", "-language", "/software"], ["-engine", "/Linux", "-metal", "/software", " hardware", "-language", " firmware", "/engine"], ["-engine", "-metal", "/Linux", "-language", " firmware", " hardware", "/software", "-code"], ["-engine", "/Linux", "-metal", " firmware", "/software", "-compatible", "-language", "-native"], ["/Linux", "-engine", " Embedded", "-native", "/software", "/C", " firmware", "-compatible"], ["/", "/C", "/Linux", "/A", "/G", "/F", "-engine", "/E"], ["/", "/C", "/Linux", "/G", "/A", "/F", "/V", "/E"], ["/C", "/", "/Linux", "/G", "/A", "/M", "/F", "/V"], ["/C", "/Linux", "/V", "/A", "/P", "/M", "/G", "/F"], ["/C", "/Linux", "/V", "/D", "/G", "/M", "/P", "/A"], ["/C", "/python", "/Linux", "/V", "Python", "/G", "/P", "/"], ["/C", "/Linux", "/python", "/V", "/F", "/", "/P", "-native"], ["/C", "/python", "Python", "-python", "/Linux", "/cpp", " Python", "/V"], ["Python", "-python", "/python", " Python", "/C", "python", "/cpp", "/py"], ["Python", " Python", "-python", "/python", "python", "/py", "/C", " python"], ["Python", " Python", "-python", "/C", "/python", "/py", "python", "ython"], ["/C", " Extension", "-extension", "Python", " extension", " Python", "+C", " Extensions"], [" Extension", " extension", "-extension", " extensions", " Extensions", "Extension", "extension", "_extension"], [" extension", " Extension", "-extension", "/C", " extensions", " Extensions", "Extension", "extension"], ["/C", "-extension", " extension", " Extension", "/F", "/", "++", "extension"], ["/C", "-extension", " Extension", "/", "/F", " extension", "/R", "/N"]], "p": [[0.8803, 0.0194, 0.0126, 0.0104, 0.0092, 0.0081, 0.0059, 0.0036], [0.7873, 0.0688, 0.0346, 0.0144, 0.0099, 0.0068, 0.0047, 0.0028], [0.3464, 0.1854, 0.1854, 0.0566, 0.0414, 0.0303, 0.0208, 0.0184], [0.0135, 0.0093, 0.0068, 0.006, 0.0053, 0.0036, 0.0027, 0.0025], [0.0302, 0.0172, 0.0162, 0.0118, 0.0105, 0.0053, 0.0046, 0.0046], [0.0108, 0.0084, 0.0079, 0.0033, 0.0033, 0.0031, 0.0029, 0.0024], [0.2824, 0.0359, 0.0337, 0.028, 0.0205, 0.0181, 0.0141, 0.0117], [0.1671, 0.0479, 0.0273, 0.0187, 0.0187, 0.0146, 0.0069, 0.0069], [0.1252, 0.018, 0.0103, 0.0091, 0.0091, 0.008, 0.0075, 0.0049], [0.0256, 0.0073, 0.0054, 0.005, 0.0039, 0.0039, 0.0035, 0.0029], [0.7721, 0.0264, 0.0141, 0.0141, 0.0125, 0.0091, 0.0059, 0.0046], [0.0181, 0.0097, 0.0086, 0.0076, 0.0052, 0.0046, 0.0043, 0.0043], [0.0329, 0.0187, 0.0121, 0.0078, 0.0078, 0.0065, 0.005, 0.005], [0.0552, 0.0158, 0.0131, 0.0102, 0.0085, 0.007, 0.007, 0.007], [0.0943, 0.0734, 0.0326, 0.0174, 0.0154, 0.0099, 0.0093, 0.0093], [0.0277, 0.0244, 0.0216, 0.0131, 0.0123, 0.007, 0.0055, 0.0045], [0.166, 0.1465, 0.0394, 0.037, 0.0164, 0.0136, 0.0069, 0.0069], [0.0477, 0.0477, 0.0448, 0.0113, 0.0094, 0.0065, 0.0054, 0.0054], [0.0987, 0.0194, 0.0098, 0.0092, 0.0076, 0.0056, 0.0056, 0.0049], [0.0573, 0.0175, 0.0154, 0.0136, 0.01, 0.0083, 0.0083, 0.006], [0.7946, 0.0739, 0.0289, 0.0094, 0.0083, 0.0054, 0.0054, 0.0042], [0.0111, 0.0077, 0.006, 0.0056, 0.0053, 0.0036, 0.0036, 0.0034], [0.2609, 0.0547, 0.0095, 0.0089, 0.0061, 0.0061, 0.0058, 0.0051], [0.1367, 0.0269, 0.0238, 0.0127, 0.0087, 0.0041, 0.003, 0.0024], [0.7069, 0.1018, 0.0074, 0.0069, 0.0027, 0.0024, 0.0022, 0.0019], [0.2983, 0.023, 0.0158, 0.0158, 0.0149, 0.014, 0.0131, 0.0131], [0.162, 0.0361, 0.0182, 0.0151, 0.0142, 0.0125, 0.0125, 0.0117], [0.893, 0.0325, 0.0099, 0.0073, 0.0034, 0.0021, 0.002, 0.0013], [0.335, 0.0293, 0.0293, 0.0243, 0.0201, 0.0138, 0.0108, 0.0095], [0.7313, 0.1054, 0.025, 0.0162, 0.0086, 0.0067, 0.0052, 0.0034], [0.7111, 0.109, 0.0293, 0.0202, 0.0148, 0.0115, 0.0062, 0.0058], [0.6765, 0.1938, 0.0555, 0.0159, 0.0075, 0.0043, 0.004, 0.0038], [0.4728, 0.1272, 0.0601, 0.0601, 0.0284, 0.0152, 0.0143, 0.0092], [0.1446, 0.0877, 0.0683, 0.0469, 0.0236, 0.0196, 0.0184, 0.0119], [0.2343, 0.1254, 0.0557, 0.028, 0.0232, 0.0232, 0.0218, 0.017], [0.3162, 0.0906, 0.0663, 0.0549, 0.0485, 0.0402, 0.0355, 0.0276], [0.3045, 0.0989, 0.0929, 0.082, 0.025, 0.0183, 0.0161, 0.0134], [0.3585, 0.1093, 0.0751, 0.0585, 0.0276, 0.0229, 0.0215, 0.0178], [0.3082, 0.272, 0.0305, 0.0287, 0.021, 0.0197, 0.0174, 0.0119], [0.6379, 0.0632, 0.0263, 0.0205, 0.0181, 0.0124, 0.0091, 0.0091], [0.4224, 0.0832, 0.0445, 0.0369, 0.0287, 0.0254, 0.0186, 0.0136], [0.0963, 0.0704, 0.0584, 0.0584, 0.0427, 0.0313, 0.0313, 0.0276], [0.1355, 0.0875, 0.044, 0.0365, 0.0343, 0.0251, 0.0221, 0.0221], [0.0701, 0.0659, 0.0546, 0.0453, 0.0425, 0.0375, 0.0228, 0.0201], [0.1032, 0.0667, 0.0588, 0.0458, 0.0278, 0.0261, 0.023, 0.0216], [0.1079, 0.0697, 0.051, 0.0226, 0.0226, 0.0226, 0.0226, 0.0176], [0.0848, 0.0749, 0.0376, 0.0312, 0.0243, 0.0243, 0.0228, 0.0214], [0.2972, 0.1093, 0.0751, 0.0276, 0.0229, 0.0202, 0.0148, 0.0131], [0.2452, 0.1685, 0.1022, 0.04, 0.0376, 0.0312, 0.0243, 0.0201], [0.4305, 0.066, 0.0514, 0.04, 0.0353, 0.0353, 0.0312, 0.0275], [0.674, 0.0805, 0.0231, 0.014, 0.014, 0.0123, 0.0123, 0.0116], [0.7991, 0.0398, 0.0188, 0.0114, 0.0101, 0.0101, 0.0078, 0.0078], [0.4697, 0.0925, 0.0816, 0.0386, 0.0206, 0.0182, 0.0161, 0.0161], [0.5264, 0.0712, 0.0381, 0.0231, 0.0159, 0.0159, 0.0159, 0.014], [0.6008, 0.1044, 0.0718, 0.0633, 0.0339, 0.016, 0.0141, 0.0097], [0.6026, 0.1345, 0.1345, 0.072, 0.0206, 0.0097, 0.0041, 0.0022], [0.4805, 0.227, 0.156, 0.0946, 0.0186, 0.0078, 0.0042, 0.0037], [0.4919, 0.1809, 0.1097, 0.0754, 0.0666, 0.0245, 0.0191, 0.0043], [0.9655, 0.0095, 0.0084, 0.0039, 0.0021, 0.0016, 0.0015, 0.0013], [0.3326, 0.259, 0.2286, 0.0655, 0.0578, 0.0213, 0.0166, 0.0037], [0.4364, 0.2336, 0.2336, 0.0358, 0.0246, 0.0116, 0.0103, 0.0103], [0.7996, 0.0955, 0.0398, 0.0241, 0.0089, 0.0057, 0.0024, 0.0019], [0.942, 0.0222, 0.0092, 0.0081, 0.0044, 0.0038, 0.0013, 0.001]], "ranks": {"Python": [13821, 109716, 81508, 143622, 33260, 86968, 7813, 7057, 6639, 3083, 402, 1512, 1462, 603, 946, 636, 476, 152, 158, 423, 55, 18, 9, 15, 8, 7, 11, 25, 5, 19, 33, 97, 164, 43, 41, 34, 3, 3, 1, 1, 1, 3, 9, 9, 14, 15, 19, 99, 171, 248, 145, 38, 5, 8, 3, 1, 1, 1, 4, 13, 15, 20, 36]}}, {"pos": 504, "top": [["<|endoftext|>", ".", "a", ",", " ", "er", " \u2013", "o"], ["  \n\n", "er", " \n\n", "a", " \u2013", "\u00ac", "i", "  \n  \n"], [",", "\u2013", ".", " \u2013", "[", "er", "a", ";"], ["\u52a0\u62ff\u5927", "er", "---</", "alisation", " specialised", "\u65b0\u52a0\u5761", "er\u00eda", " \n\n\n\n"], ["er", " \n\n\n\n", "a", " arte", "\u00ac", " (\u00a3", " \n\n", "  \n\n"], [" \n\n\n\n", "er", "a", "\u0627", "i", "  \n\n", "\\(", " _("], ["<|endoftext|>", "  \n\n", " \n\n", "\u00ac", "er", "a", " \n\n\n\n", "i"], ["  \n\n", "er", " \n\n", "<|endoftext|>", "\u00ac", ",", "ary", "."], [" \n\n", "  \n\n", ",", "<|endoftext|>", ".", ";", "er", "   \n\n"], [",", "\u00ac", "\\_", "\\-", "\\(", ";", "er", "\\."], [",", "\u00ac", "<|endoftext|>", ";", "...", " \n\n", "\\_", "."], ["er", ",", "\u00ac", "ary", "a", "...", ";", "naire"], ["er", "\u00ac", ",", " _", "ary", "\\_", " **", "..."], [",", "\u00ac", "er", "a", "<|endoftext|>", "i", ";", " util"], ["\u00ac", "<|endoftext|>", ",", "i", " ", "a", "er", "\\-"], [" arguably", "er", "\u00ac", ",", " util", " largely", "a", "i"], [",", "a", "<|endoftext|>", "er", "o", "i", "e", " arguably"], ["er", ",", "a", "o", "\u00ac", "\\-", "<|endoftext|>", " largely"], ["<|endoftext|>", "er", "a", " largely", "i", "o", " arguably", "e"], ["<|endoftext|>", " \n\n", ",", "\\-", " largely", "a", "er", "e"], ["<|endoftext|>", " \n\n", "\n\n", "  \n\n", "a", "\\-", ",", " \r\n\r\n"], [" ``", "\u52a0\u62ff\u5927", "->___", " \u043a\u043e\u0440\u0435", " **'", "alise", " ---", "_^("], [" ``", " ---", " French", " --", "alise", " ;", " largely", " __"], [" ``", " ,", " --", " ;", " `", " largely", " along", " ''"], [" ``", " ,", "<|endoftext|>", " --", " \n\n", " _", "\n\n", " ;"], [" ``", " _", " __", " --", " ---", " ___", " <", " `_"], [" ``", " _", " __", " `_", " <", " `<", " ___", " ---"], [" ``", " _", "\n\n", " --", " ,", " `", " \n\n", " __"], [" ,", " _", " ;", " French", " ...", "\n\n", " .", " software"], [" ...", " __", " _", " ___", " \n", "_.", " **", " \n\n"], [" ...", " __", " _", " **", " ___", " .", " \n\n", " \n"], [" ...", " ,", " .", " _", " technology", " [", " complex", " __"], [" ,", " .", " using", " technology", " complex", " for", " [", " to"], [" software", " technology", " engineering", " technologies", " tech", " complex", " hardware", " firmware"], [" software", " technology", " engineering", " tech", " hardware", " technologies", " firmware", " via"], [" [", " /", " **[", "[", " **", " *", "[^", " ("], [" [", " Python", " software", " /", " engineering", " *", " **[", " firmware"], [" Python", " software", " firmware", " /", " [", " engineering", "[", " hardware"], [" software", " firmware", " Python", " specialized", " hardware", " [", " engineering", " /"], [" Python", " module", " software", " native", " embedded", " firmware", " specialized", " hardware"], [" Python", " module", " native", " software", " foreign", " engineering", " embedding", " embedded"], [" module", " software", " hardware", " modules", " engineering", " embedded", " native", " interface"], [" module", " software", " modules", " hardware", " interface", " plugin", " firmware", " specialized"], [" module", " software", " interface", " modules", " hardware", " interfaces", " embedded", " plugin"], [" module", " interface", " embedded", " embedding", " software", " modules", " plugin", " interfaces"], [" module", " embedded", " using", " embedding", " interface", " modules", " specialized", " software"], [" embedded", " module", " using", " embedding", " designed", " seamlessly", " via", " internally"], [" embedded", " internally", " module", " designed", " using", " seamlessly", " via", " embedding"], [" embedded", " (", " designed", " seamlessly", "\u2014but", " internally", " via", " crafted"], [" embedded", " or", "-based", " via", " designed", " internally", "-only", "\u2014but"], [" embedded", "-native", "-based", "-only", "/internal", "-heavy", " embedding", " firmware"], [" embedded", " module", "-only", " wrapper", "-native", "-based", "-powered", " plugin"], [" wrapper", " embedded", " module", "-native", " bundled", " toolkit", "-powered", "-only"], [" wrapper", " plugin", " module", " toolkit", " interface", " middleware", "-native", " library"], [" plugin", " module", " wrapper", " framework", " middleware", "plugin", " interface", " library"], [" wrapper", " plugin", " module", " Wrapper", " wrappers", "wrapper", " library", " backend"], [" wrapper", " module", " plugin", " Wrapper", " wrappers", " Python", " backend", "wrapper"], [" wrapper", " module", " Wrapper", " plugin", " library", " Python", " backend", " wrappers"], [" wrapper", " module", " Wrapper", " plugin", " bridge", " backend", " library", " Python"], [" wrapper", " renderer", " module", " backend", " Wrapper", " plugin", " Renderer", " bridge"], [" wrapper", " renderer", " module", " backend", " bridge", " gateway", " engine", " plugin"], [" renderer", " wrapper", " module", " bridge", " plugin", " backend", " gateway", " engine"], ["**", " wrapper", " renderer", " backend", " bridge", " module", " plugin", " engine"]], "p": [[0.4012, 0.259, 0.0697, 0.0543, 0.045, 0.0226, 0.0107, 0.0094], [0.3956, 0.2719, 0.057, 0.0287, 0.0197, 0.0185, 0.0119, 0.0105], [0.3662, 0.1527, 0.1189, 0.1189, 0.1189, 0.0341, 0.0341, 0.0071], [0.0554, 0.0405, 0.0204, 0.018, 0.018, 0.0131, 0.0116, 0.0102], [0.4014, 0.2759, 0.0241, 0.0146, 0.0137, 0.0121, 0.01, 0.01], [0.1323, 0.0854, 0.0665, 0.026, 0.0245, 0.0123, 0.0096, 0.0085], [0.6027, 0.1432, 0.1047, 0.0194, 0.0182, 0.011, 0.0081, 0.0046], [0.3515, 0.1293, 0.1007, 0.0692, 0.0348, 0.0348, 0.0154, 0.0106], [0.3514, 0.1881, 0.166, 0.0946, 0.0784, 0.0154, 0.0088, 0.0039], [0.5139, 0.1299, 0.0839, 0.0542, 0.0199, 0.0176, 0.0146, 0.0073], [0.4291, 0.1085, 0.0845, 0.0481, 0.0292, 0.0292, 0.0274, 0.0274], [0.2227, 0.1966, 0.0439, 0.0152, 0.0081, 0.0076, 0.0076, 0.0063], [0.1478, 0.0743, 0.033, 0.0107, 0.0083, 0.0078, 0.0069, 0.0069], [0.4276, 0.0842, 0.031, 0.0089, 0.0078, 0.0069, 0.0069, 0.0057], [0.1219, 0.095, 0.0576, 0.0212, 0.0187, 0.0155, 0.0146, 0.01], [0.0277, 0.0244, 0.0203, 0.0179, 0.0179, 0.0168, 0.0131, 0.0131], [0.1711, 0.0591, 0.049, 0.0317, 0.0204, 0.018, 0.0169, 0.0103], [0.0593, 0.0205, 0.017, 0.0141, 0.011, 0.0103, 0.0097, 0.0097], [0.0787, 0.0328, 0.0165, 0.0137, 0.0113, 0.01, 0.0094, 0.0083], [0.7628, 0.0169, 0.0048, 0.004, 0.0035, 0.0026, 0.0023, 0.002], [0.9963, 0.0019, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.0226, 0.0107, 0.0083, 0.0073, 0.0054, 0.0054, 0.0047, 0.0045], [0.1378, 0.01, 0.0073, 0.0044, 0.0044, 0.0037, 0.0034, 0.0032], [0.1888, 0.0477, 0.0199, 0.0129, 0.0073, 0.0061, 0.0047, 0.0047], [0.0804, 0.0588, 0.0519, 0.0335, 0.0335, 0.0261, 0.0191, 0.0191], [0.4202, 0.0998, 0.0569, 0.0391, 0.0304, 0.0153, 0.0153, 0.0135], [0.5131, 0.1076, 0.0508, 0.0349, 0.0225, 0.0199, 0.0155, 0.0113], [0.2028, 0.158, 0.1156, 0.1156, 0.0425, 0.0375, 0.0214, 0.0147], [0.0711, 0.0628, 0.0336, 0.0316, 0.0278, 0.0262, 0.0246, 0.0204], [0.4862, 0.1229, 0.0957, 0.0258, 0.0201, 0.0084, 0.0084, 0.0074], [0.4171, 0.1739, 0.0931, 0.0601, 0.0468, 0.0183, 0.0134, 0.0118], [0.1287, 0.0831, 0.0571, 0.0174, 0.0164, 0.0154, 0.0127, 0.0099], [0.1084, 0.0452, 0.0242, 0.0166, 0.0156, 0.0147, 0.0147, 0.0138], [0.0578, 0.0578, 0.0226, 0.0226, 0.0188, 0.0155, 0.0137, 0.0121], [0.0422, 0.0397, 0.0329, 0.0273, 0.0155, 0.0121, 0.0121, 0.01], [0.117, 0.0404, 0.0357, 0.0335, 0.0315, 0.0261, 0.0203, 0.0179], [0.0494, 0.0362, 0.0248, 0.0194, 0.0182, 0.0171, 0.0171, 0.0151], [0.0426, 0.04, 0.0243, 0.0201, 0.0189, 0.0167, 0.0147, 0.0122], [0.0668, 0.0405, 0.038, 0.0191, 0.018, 0.018, 0.0169, 0.0169], [0.0832, 0.0347, 0.0287, 0.0287, 0.0254, 0.0238, 0.0238, 0.0224], [0.0688, 0.0536, 0.0536, 0.0392, 0.027, 0.0253, 0.0238, 0.0223], [0.1456, 0.0732, 0.0607, 0.0473, 0.0368, 0.0346, 0.0287, 0.0287], [0.141, 0.0709, 0.0626, 0.0552, 0.0404, 0.0335, 0.0315, 0.0278], [0.0885, 0.0505, 0.0418, 0.0393, 0.0347, 0.0326, 0.0306, 0.0287], [0.0874, 0.0564, 0.044, 0.0413, 0.0388, 0.0342, 0.0322, 0.0302], [0.096, 0.0748, 0.0426, 0.0353, 0.0258, 0.0258, 0.0228, 0.0214], [0.1434, 0.0636, 0.0465, 0.0341, 0.0341, 0.0249, 0.0234, 0.0207], [0.0817, 0.0495, 0.0411, 0.0386, 0.0362, 0.034, 0.0265, 0.022], [0.0805, 0.0431, 0.038, 0.0335, 0.0315, 0.0278, 0.0278, 0.0231], [0.0703, 0.0547, 0.0353, 0.0332, 0.0258, 0.0214, 0.0201, 0.0178], [0.1066, 0.0536, 0.0368, 0.0368, 0.021, 0.0197, 0.0185, 0.0163], [0.1009, 0.0694, 0.0448, 0.0421, 0.0395, 0.0308, 0.0272, 0.024], [0.1009, 0.0948, 0.0575, 0.0477, 0.0308, 0.0272, 0.0212, 0.0212], [0.1465, 0.0737, 0.0611, 0.042, 0.037, 0.0348, 0.0288, 0.0225], [0.5158, 0.1304, 0.1151, 0.0176, 0.0166, 0.0121, 0.0107, 0.0107], [0.8386, 0.0688, 0.0287, 0.0197, 0.0082, 0.0039, 0.0024, 0.0024], [0.8184, 0.0672, 0.028, 0.028, 0.0103, 0.008, 0.0055, 0.0033], [0.8228, 0.0526, 0.0319, 0.0248, 0.0081, 0.0071, 0.0063, 0.0049], [0.7506, 0.1151, 0.0227, 0.0156, 0.0121, 0.0107, 0.0065, 0.0051], [0.6554, 0.1657, 0.0475, 0.012, 0.012, 0.012, 0.0106, 0.0106], [0.4391, 0.342, 0.0463, 0.0281, 0.0219, 0.011, 0.0091, 0.008], [0.3445, 0.3445, 0.0528, 0.0411, 0.0283, 0.0266, 0.0183, 0.0125], [0.5127, 0.1886, 0.1144, 0.0255, 0.0255, 0.0255, 0.0145, 0.0083]], "ranks": {"Python": [44590, 181848, 170711, 187526, 116862, 205618, 108988, 74813, 78712, 127380, 49747, 37502, 22579, 26013, 19726, 19674, 15273, 7622, 11072, 19242, 4344, 3809, 1091, 1464, 358, 46, 63, 60, 15, 30, 59, 78, 156, 17, 37, 34, 2, 1, 3, 1, 1, 9, 13, 14, 13, 26, 39, 41, 74, 140, 172, 31, 13, 22, 33, 17, 6, 6, 8, 13, 13, 32, 74]}}, {"pos": 505, "top": [[".", ",", " \u2013", "<|endoftext|>", "\u2013", " ", "-", "\u00a0"], [" \u2013", "  \n\n", "  \n  \n", "  \n", "\u2013", "\u2013and", "   \n\n", "   \n"], ["\u2013", " \u2013", "<|endoftext|>", "\u2026", ".", "\u2026..", "  \n\n", "["], [" \u300e", " \u2014\u2014", " \n \n", " --", " ----", "\uff5e\uff5e", " \u2019", " ---"], ["@", "  \n\n", " @", "  ", "<|endoftext|>", " \u2019", "  \n  \n", " \u2014\u2014"], [" \u2014\u2014", "  ", "  \n\n", "\u2014\u2014", " \n\n\n", "<|endoftext|>", "   \n", " \u2018"], [" \u2014\u2014", "\u2014\u2014", "  \n\n", "  \n", " \u2019", "<|endoftext|>", "  \n  \n", "  "], ["  \n\n", " \u2014\u2014", "  \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", "  ", "   \n", " \u00a0", "  \n\n\n"], ["  \n", "\u00a0", "  \n  \n", "  \n\n", "  ", " \u2014\u2014", " ", " \n\n"], [" ~", "  ", "  \n  \n", "  \n\n\n", "  \n\n", "   \n\n", " \n\n\n", " transformative"], [" ~", " transformative", " hybrid", " --", " \u2019", " foundational", "  ", " '~"], [" transformative", " arguably", " hybrid", " foundational", " --", " \u2019", " alongside", " conduit"], [" --", " \u2014", " \n\n", "--", "  \n\n", " ", "\u2014", "\u2014and"], [" \u2014", " --", " bolster", " \n\n", " \u2019", " arguably", "  \n\n", "\u2014"], ["\u00a0", " ", " \u2014", " \u2019", " --", "  ", " via", " bolster"], [" \u2014", " ", "  ", "  \n\n", " \u2019", " --", " \n\n", "<|endoftext|>"], [" \u2014", " --", " \u2019", " \u2014\u2014", "\u2014\u2014", "  \n\n", "\u2014and", " via"], [" \u2014", " --", " \u2014\u2014", "<|endoftext|>", "\u2014", "\u2014\u2014", " \u2019", " \n\n"], ["<|endoftext|>", " \n\n", " \u2014", "  \n\n", " --", "   \n\n", " ", " \n\n\n"], [" --", " bridge", " \u2019", " \u2014", " into", " channel", " Bridge", "\u30f3\u30b0"], [" --", " \u2019", " ``", " bridge", " \u2014", " ~", " into", " ''"], [" --", " ``", " \u2019", " into", " bridge", " ''", " through", " to"], [" --", " \n\n", " \u2014", " ``", " ---", " \u2019", " ''", " into"], [" --", " ---", " bridge", " ``", " \n\n", " \u2014", " ~", " via"], [" --", " bridge", " \n\n", " ---", " brid", " ``", " ~", " \u2014"], [" \n\n", " --", "\n\n", "  \n\n", " ---", " ~", " \u2014", " \r\n\r\n"], [" bridge", " \n\n", " --", " brid", " via", " bridges", " \u2014", " ---"], [" bridge", " \n\n", " --", " brid", " ---", " ___", " __", " \u2014"], [" ___", " __", " \n\n", " bridge", " ---", " bridges", " brid", " **"], [" bridge", " technology", " via", " brid", " bridges", " \u2014", " \n\n", " to"], [" bridge", " via", " brid", " technology", " bridges", " \u2014", " Bridge", " to"], [" bridge", " brid", " \u2014", " tech", " via", " technology", " bridges", " seamlessly"], [" bridge", " brid", " tech", " \u2014", " via", " seamlessly", " bridges", " leveraging"], [" bridge", " \u2014", " brid", " \u2014\u2014", " Bridge", " bridges", " \u2019", " seamlessly"], [" bridge", " brid", " \u2014", " bridges", " seamlessly", " Bridge", " leveraging", " interface"], [" bridge", " brid", " bridges", " Bridge", " interface", " seamlessly", " via", " leveraging"], [" bridge", " brid", " bridges", " Bridge", " interface", " connecting", " via", " seamlessly"], [" bridge", " brid", " bridges", " interface", " Bridge", " connecting", " connection", " connect"], [" bridge", " brid", " interface", " bridges", " Bridge", " connecting", " interfaces", " interf"], [" bridge", " brid", " interface", " bridges", " interfaces", " connecting", " interf", " Bridge"], [" bridge", " brid", " interface", " bridges", " interfaces", " connecting", " interf", " Bridge"], [" bridge", " brid", " interface", " bridges", " interfaces", " connecting", " Bridge", " interf"], [" bridge", " brid", " bridges", " interface", " interfaces", " connecting", " Bridge", " interf"], [" bridge", " brid", " bridges", " interface", " connecting", " Bridge", " interfaces", " interf"], [" bridge", " brid", " bridges", " interface", " seamlessly", " interfaces", " connecting", " Bridge"], [" bridge", " brid", " bridges", " interface", " seamlessly", " connecting", " Bridge", " interfaces"], [" brid", " bridge", " bridges", " seamlessly", " interface", " connecting", " interfaces", " Bridge"], [" bridge", " brid", " seamlessly", " bridges", " via", " interface", " leveraging", " connecting"], [" brid", " bridge", " via", " seamlessly", " leveraging", " bridges", " using", "\u2014but"], [" using", " seamlessly", "\u2014but", " embedded", " optimized", " coded", " designed", " leveraging"], [" optimized", " that", "\u2014but", " embedded", " seamlessly", " coded", "**", " powered"], ["**", " that", " optimized", "\u2014but", " engineered", "**\u2014", " **\u2014", " disguised"], [" optimized", " that", "-native", " managed", " disguised", "**", " coded", " encaps"], [" wrapper", " that", "**", " optimized", " wrapped", " managed", " encaps", "wrapper"], ["**", " wrapper", "**\u2014", "**.", " **\u2014", " managed", "**,", " optimized"], ["**", " that", " managed", " **\u2014", " wrapper", " optimized", "**\u2014", " exposed"], ["**", " that", " managed", " wrapper", " **\u2014", " optimized", "**\u2014", " architecture"], ["**", " that", " managed", " exposed", " Python", " layer", " wrapper", " optimized"], ["**", " that", " exposed", " module", " managed", " wrapper", " layer", " Python"], ["**", " that", "**,", "**.", " exposed", " module", " managed", "\""], ["**", "**.", "**,", "**?", "**:", "**\u2014", "**;", "**\u3002"]], "p": [[0.5968, 0.182, 0.067, 0.0555, 0.014, 0.0132, 0.0085, 0.0071], [0.3552, 0.2944, 0.1083, 0.0545, 0.0452, 0.0156, 0.0129, 0.0095], [0.4071, 0.3593, 0.0486, 0.023, 0.023, 0.019, 0.019, 0.019], [0.0394, 0.0288, 0.0224, 0.0136, 0.0057, 0.005, 0.005, 0.0047], [0.1846, 0.1629, 0.0928, 0.0563, 0.0467, 0.0235, 0.022, 0.0195], [0.1024, 0.0484, 0.0332, 0.0312, 0.0293, 0.0228, 0.0228, 0.0202], [0.5139, 0.0951, 0.0951, 0.0329, 0.0272, 0.0256, 0.0256, 0.0226], [0.1205, 0.1205, 0.0939, 0.0828, 0.0606, 0.0606, 0.0606, 0.0286], [0.2872, 0.1537, 0.0932, 0.0876, 0.0726, 0.0499, 0.0414, 0.0389], [0.3175, 0.1324, 0.0666, 0.0552, 0.0518, 0.0277, 0.0245, 0.023], [0.1351, 0.1192, 0.1052, 0.0872, 0.0497, 0.0364, 0.0321, 0.0266], [0.039, 0.0173, 0.0173, 0.0119, 0.0119, 0.0105, 0.0082, 0.0077], [0.0135, 0.0105, 0.0082, 0.0064, 0.0056, 0.0053, 0.0047, 0.0041], [0.0088, 0.006, 0.0047, 0.0047, 0.0039, 0.0037, 0.0037, 0.003], [0.1754, 0.0829, 0.0368, 0.0269, 0.0174, 0.0144, 0.0119, 0.0077], [0.1411, 0.071, 0.0123, 0.0109, 0.0102, 0.0096, 0.0058, 0.0051], [0.0366, 0.0344, 0.0303, 0.0196, 0.0173, 0.0112, 0.0087, 0.0082], [0.0757, 0.0217, 0.0191, 0.0169, 0.0169, 0.0159, 0.0131, 0.007], [0.1385, 0.035, 0.0256, 0.0165, 0.0107, 0.0057, 0.0057, 0.0054], [0.4677, 0.0361, 0.0248, 0.0233, 0.015, 0.015, 0.0125, 0.0097], [0.8498, 0.0616, 0.0241, 0.0226, 0.0027, 0.0016, 0.0015, 0.0014], [0.0245, 0.023, 0.0203, 0.0168, 0.0096, 0.0075, 0.007, 0.0051], [0.1091, 0.0455, 0.0229, 0.019, 0.0178, 0.0148, 0.0122, 0.0115], [0.107, 0.0446, 0.0271, 0.0239, 0.0186, 0.0175, 0.0154, 0.0145], [0.2162, 0.1582, 0.0582, 0.0243, 0.0122, 0.0115, 0.0115, 0.0095], [0.247, 0.0854, 0.026, 0.023, 0.019, 0.0139, 0.0123, 0.0085], [0.1038, 0.049, 0.018, 0.018, 0.0159, 0.014, 0.0132, 0.0124], [0.5652, 0.1835, 0.0281, 0.0248, 0.0193, 0.0133, 0.011, 0.0097], [0.0824, 0.0642, 0.047, 0.0441, 0.0251, 0.0126, 0.0119, 0.0105], [0.0962, 0.0427, 0.0354, 0.0276, 0.0202, 0.0189, 0.0178, 0.0178], [0.1053, 0.0771, 0.06, 0.06, 0.0172, 0.0162, 0.0152, 0.0143], [0.0968, 0.0277, 0.0261, 0.0216, 0.0203, 0.0191, 0.0149, 0.0149], [0.1218, 0.0349, 0.0328, 0.0308, 0.024, 0.0137, 0.0121, 0.0106], [0.115, 0.0479, 0.0351, 0.0273, 0.0273, 0.0213, 0.0166, 0.0156], [0.152, 0.0634, 0.0281, 0.0264, 0.0264, 0.0182, 0.0171, 0.016], [0.1376, 0.0946, 0.0692, 0.0539, 0.0225, 0.0186, 0.0186, 0.012], [0.2295, 0.1392, 0.0424, 0.0274, 0.0213, 0.0177, 0.0166, 0.0166], [0.4229, 0.2126, 0.0446, 0.0288, 0.0175, 0.0082, 0.0068, 0.0064], [0.4753, 0.2883, 0.0501, 0.0163, 0.0144, 0.0127, 0.0064, 0.0047], [0.5013, 0.3041, 0.0528, 0.0234, 0.0161, 0.0125, 0.0032, 0.003], [0.5593, 0.2332, 0.052, 0.052, 0.0169, 0.0085, 0.0058, 0.004], [0.4675, 0.1949, 0.172, 0.0558, 0.0233, 0.0125, 0.011, 0.0076], [0.5025, 0.2095, 0.1121, 0.0873, 0.025, 0.0092, 0.0092, 0.0076], [0.4891, 0.231, 0.0963, 0.085, 0.0276, 0.0095, 0.009, 0.0051], [0.4996, 0.2674, 0.0868, 0.0676, 0.0194, 0.0104, 0.0059, 0.0049], [0.5516, 0.2953, 0.0581, 0.0275, 0.0101, 0.0065, 0.0061, 0.0037], [0.452, 0.352, 0.0476, 0.0327, 0.01, 0.01, 0.0073, 0.0061], [0.396, 0.396, 0.0536, 0.0223, 0.0163, 0.0127, 0.0087, 0.0073], [0.4266, 0.2932, 0.0696, 0.0256, 0.0226, 0.0187, 0.0114, 0.01], [0.2429, 0.2144, 0.0542, 0.0542, 0.035, 0.0273, 0.0176, 0.0165], [0.1139, 0.0887, 0.0505, 0.0475, 0.037, 0.0307, 0.0254, 0.0239], [0.0657, 0.0481, 0.0374, 0.031, 0.0242, 0.0213, 0.0213, 0.0166], [0.0423, 0.0291, 0.0241, 0.0241, 0.0241, 0.0241, 0.0213, 0.0156], [0.0851, 0.0751, 0.0485, 0.019, 0.0148, 0.0139, 0.0139, 0.0123], [0.0589, 0.0489, 0.0149, 0.0116, 0.0116, 0.0116, 0.0102, 0.0096], [0.085, 0.0798, 0.0704, 0.0455, 0.0377, 0.019, 0.019, 0.0178], [0.6572, 0.0225, 0.0198, 0.0155, 0.0145, 0.0113, 0.0106, 0.0078], [0.4471, 0.0304, 0.0252, 0.0237, 0.0223, 0.0209, 0.0185, 0.0119], [0.2942, 0.1676, 0.0511, 0.02, 0.0188, 0.0166, 0.0156, 0.0107], [0.6574, 0.1216, 0.0239, 0.0155, 0.0113, 0.0078, 0.0069, 0.0061], [0.6935, 0.0645, 0.0237, 0.0163, 0.0144, 0.0093, 0.0087, 0.006], [0.9852, 0.004, 0.0031, 0.0022, 0.0004, 0.0004, 0.0003, 0.0002], [0.9998, 0.0002, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Python": [16371, 62020, 82024, 128125, 57966, 137862, 57747, 81550, 132271, 156625, 68111, 74041, 87968, 86942, 57898, 77300, 48922, 24951, 28339, 44198, 16641, 19417, 11324, 11054, 8610, 4142, 5360, 3385, 2612, 2091, 1949, 2675, 3284, 2067, 3393, 1447, 1724, 1796, 1917, 1503, 1236, 882, 834, 898, 1010, 844, 849, 975, 915, 901, 434, 15, 39, 39, 23, 19, 9, 10, 10, 5, 8, 9, 61]}}, {"pos": 506, "top": [[".", " \u2013", ",", "\u00a0", "\u2013", "  \n\n", "  \n", "\u2026."], [" **", "  \n\n", "(**", "\u2026**", "-**", " **\u2013", "**,", " (**"], ["\u2026**", " **", "  \n\n", "(**", " **\u2013", "**", "**\u2013", " \u2013"], [" **", " **\u300c", "\uff1f**", " **#", "\u300d**", " **\u3010", " **+", "\uff1a**"], [" **", " **#", "(**", "-**", " (**", "**", " **(", ">**"], [" **", "-**", "(**", " **#", " (**", " **(", "**", " **+"], [" **", "**", "\uff09**", " **[", " **#", "\u2019**", "(**", "-**"], [" **", " **#", "(**", "-**", " **[", " **'", " (**", "**"], [" **", " **#", "(**", " **[", " (**", "**", " **\u300c", " \n\n"], [" **", " **#", " **[", "(**", "-**", " **'", ">**", " (**"], [" **", " **#", " **[", "(**", " **\u300c", "-**", " **(", "**"], [" **", " **#", " **\u300c", " **'", " **+", " **[", " **\u00ab", " '**"], [" **", " **\u300c", " **#", " **'", " (**", " **\u00ab", " **(", " **-"], [" **", " **#", " **\u300c", " (**", " **+", "-**", " **'", "(**"], [" **", "ing", " \n\n", "(**", " (**", " \"**", " **#", " **("], [" **", "ing", " \n\n", "(**", " arguably", " (**", "  \n\n", "i"], [" **", "ing", "a", " \n\n", "i", " arguably", "(**", " (**"], [" **", "(**", " \n\n", " (**", "ing", "  \n\n", " **\u2013", " **["], [" **", "ing", " \n\n", "i", "(**", " (**", "a", " **["], [" **", " \n\n", "  \n\n", "ing", "<|endoftext|>", "a", "i", " arguably"], [" \n\n", "<|endoftext|>", "  \n\n", " \r\n\r\n", "\n\n", " **", "a", " \n\n\n"], [" **", " **'", " **#", " \"**", " **+", " )**", " '**", " **-"], [" **", "ing", " \n\n", " **'", " )**", " **#", " \"**", " **["], [" **", "ing", " \n\n", " ``", " --", " \r\n\r\n", "a", " )**"], [" \n\n", " **", "  \n\n", " \r\n\r\n", "\n\n", "\r\n\r\n", " \n\n\n", "ing"], [" **", " \n\n", " **'", " \r\n\r\n", " **+", " **(", " ``", " **#"], [" **", " \n\n", " \r\n\r\n", " **'", "\n\n", " **[", "\r\n\r\n", "  \n\n"], [" \n\n", " **", "\n\n", "  \n\n", " \r\n\r\n", "\r\n\r\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\n", "  \n\n", " \n", " ...", " **.", " **[", " **'"], [" **", " \n\n", " ...", "  \n\n", " to", " ,", " \n", " "], [" **", " \n\n", " ,", " to", " for", " *", " ", " under"], [" **", " \n\n", " \u2013", " \u2014", "  \n\n", " *", "<|endoftext|>", " alongside"], [" **", "<|endoftext|>", " \n\n", " \u2013", " *", " \u2014", " (**", " **["], [" **", " \u2013", "<|endoftext|>", " \u2014", " *", " **[", " **\"", " **\u201c"], [" **", " \u2014", " *", " **\"", " **[", " \u2013", "\u2014but", " **\u201c"], [" **", " \u2013", "\u2014but", " \u2014", " *", "\u2011", "<|endoftext|>", " **\u201c"], [" **", "\u2014but", " \u2013", " \u2014", "\u2011", " **[", " *", " **\u201c"], [" **", "\u2011", " **[", " \u2013", "\u2014but", "**", " **\u201c", " **("], [" **", "\u2011", " **[", " *", "\u2014but", " \u2013", " technically", "**"], [" **", " engineering", " technically", " \u2014", " embedded", "\u2014but", "<|endoftext|>", " hardware"], [" **", " technically", " engineering", " embedded", " *", " hardware", " using", " technical"], [" **", " technically", " allowed", " embedded", " legally", " strictly", " using", " permitted"], [" **", " allowed", " permitted", " technically", " legally", " compliant", " embedded", " authorized"], [" **", " allowed", " permitted", " technically", " legally", " strictly", " authorized", " embedded"], [" **", " allowed", " permitted", " legally", " technically", " (**", " strictly", " authorized"], [" **", " allowed", " permitted", " (**", " (", " technically", " legally", " **("], [" **", " (**", " allowed", " permitted", " **(", "\u2014but", " (", " legally"], [" allowed", " (", " permitted", " (**", "\u2014but", " using", " authorized", " allowing"], [" (**", "\u2014but", " (", " **(", " embedded", " (*", " *(", " allowed"], [" (**", " (", " (*", "\u2014but", " *(", " embedded", " **(", " using"], [" (**", " (", " (*", " **(", " *(", "\u2014but", " embedded", " bundled"], [" (**", " that", " (*", "\u2014but", " **(", " (", " (*.", " Python"], [" (**", " **(", " Python", "(**", " packaged", " that", " coded", " (*"], [" (**", " Python", " wrapped", " wrapper", " wrappers", " wrapping", " that", " packaged"], [" Python", "Python", " wrapper", " (**", " python", " wrappers", " wrapped", "ython"], [" Python", " that", " compiled", "Python", " exposed", " wrapper", " wrapped", " encaps"], [" Python", " that", " compiled", " packaged", " wrapped", "Python", " exposed", " encaps"], [" that", " Python", " exposed", " packaged", " wrapped", " compiled", " exposes", " exposing"], [" that", " compiled", " exposed", " Python", " wrapped", " packaged", " bundled", " exposing"], [" that", " compiled", " exposed", " wrapped", "that", " (", " packaged", " Python"], [" that", " exposed", " compiled", " wrapped", " and", " packaged", " managed", " ("]], "p": [[0.434, 0.383, 0.0404, 0.0404, 0.0356, 0.0216, 0.0131, 0.0075], [0.4591, 0.1689, 0.0704, 0.0312, 0.0276, 0.0243, 0.0243, 0.0215], [0.5544, 0.1092, 0.0662, 0.0455, 0.0455, 0.0455, 0.0313, 0.0276], [0.7296, 0.0321, 0.0266, 0.0183, 0.0172, 0.0161, 0.0126, 0.0111], [0.9928, 0.0032, 0.0012, 0.0008, 0.0004, 0.0003, 0.0003, 0.0002], [0.992, 0.0032, 0.0017, 0.0013, 0.0003, 0.0002, 0.0002, 0.0001], [0.9964, 0.0006, 0.0004, 0.0004, 0.0003, 0.0003, 0.0003, 0.0002], [0.9979, 0.0006, 0.0003, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001], [0.9951, 0.0012, 0.001, 0.0008, 0.0003, 0.0002, 0.0001, 0.0001], [0.9963, 0.0013, 0.0006, 0.0003, 0.0002, 0.0001, 0.0001, 0.0001], [0.9994, 0.0003, 0.0001, 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.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.9995, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9984, 0.0005, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9935, 0.0022, 0.0005, 0.0004, 0.0003, 0.0002, 0.0002, 0.0001], [0.9976, 0.0004, 0.0003, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001], [0.9944, 0.0015, 0.0005, 0.0003, 0.0002, 0.0002, 0.0002, 0.0002], [0.5087, 0.2403, 0.0368, 0.0185, 0.0112, 0.0112, 0.0112, 0.0082], [0.5738, 0.348, 0.0685, 0.0016, 0.0012, 0.0009, 0.0007, 0.0005], [0.9983, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.9969, 0.0005, 0.0004, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001], [0.964, 0.0057, 0.0051, 0.0035, 0.0025, 0.0004, 0.0004, 0.0004], [0.8566, 0.1159, 0.0138, 0.0074, 0.0016, 0.0011, 0.0004, 0.0003], [0.9975, 0.0013, 0.0003, 0.0001, 0.0001, 0.0001, 0.0, 0.0], [0.9738, 0.0229, 0.0003, 0.0003, 0.0003, 0.0001, 0.0001, 0.0001], [0.8269, 0.1268, 0.0363, 0.0063, 0.0012, 0.0006, 0.0003, 0.0002], [0.8895, 0.1062, 0.0008, 0.0008, 0.0005, 0.0002, 0.0002, 0.0001], [0.8898, 0.1063, 0.001, 0.0009, 0.0003, 0.0001, 0.0001, 0.0001], [0.9657, 0.033, 0.0004, 0.0003, 0.0001, 0.0001, 0.0, 0.0], [0.906, 0.0744, 0.0054, 0.0019, 0.0011, 0.001, 0.0007, 0.0006], [0.7232, 0.0299, 0.0247, 0.016, 0.0124, 0.0075, 0.0059, 0.0055], [0.8346, 0.0324, 0.0068, 0.006, 0.0053, 0.0053, 0.0053, 0.0023], [0.914, 0.0115, 0.004, 0.0033, 0.0033, 0.002, 0.0016, 0.0015], [0.9218, 0.0217, 0.0096, 0.008, 0.0038, 0.0026, 0.0018, 0.0017], [0.9581, 0.0065, 0.0047, 0.0032, 0.0027, 0.0027, 0.0022, 0.0017], [0.8657, 0.018, 0.0096, 0.0075, 0.0062, 0.0051, 0.0048, 0.0045], [0.8953, 0.0113, 0.0093, 0.0064, 0.006, 0.0057, 0.0041, 0.0037], [0.8915, 0.0135, 0.0093, 0.0077, 0.006, 0.0047, 0.0034, 0.003], [0.7953, 0.0146, 0.0129, 0.01, 0.0069, 0.0065, 0.0061, 0.0044], [0.7048, 0.0227, 0.0176, 0.0146, 0.0121, 0.0078, 0.0074, 0.0074], [0.8608, 0.0158, 0.0066, 0.0058, 0.0054, 0.0033, 0.0029, 0.0029], [0.2554, 0.1284, 0.0325, 0.0269, 0.0269, 0.021, 0.0197, 0.0185], [0.2115, 0.1866, 0.1283, 0.0881, 0.0367, 0.0174, 0.0144, 0.0135], [0.2087, 0.1625, 0.1434, 0.0986, 0.0386, 0.0182, 0.0151, 0.0151], [0.8456, 0.0421, 0.0328, 0.0094, 0.0065, 0.005, 0.0032, 0.003], [0.8369, 0.0417, 0.0286, 0.0153, 0.0072, 0.0068, 0.006, 0.0039], [0.8951, 0.0306, 0.0145, 0.0099, 0.0099, 0.0077, 0.0077, 0.0037], [0.184, 0.1265, 0.0985, 0.0677, 0.0561, 0.034, 0.03, 0.0282], [0.2743, 0.1468, 0.0575, 0.0507, 0.0395, 0.0328, 0.0289, 0.024], [0.2718, 0.1455, 0.1284, 0.0472, 0.0472, 0.0417, 0.0368, 0.0099], [0.3328, 0.1572, 0.0841, 0.0578, 0.0397, 0.02, 0.0176, 0.0166], [0.232, 0.0624, 0.0551, 0.0356, 0.0245, 0.0245, 0.019, 0.0148], [0.4208, 0.0472, 0.0391, 0.0325, 0.0325, 0.0286, 0.0269, 0.0223], [0.2271, 0.1561, 0.1073, 0.0651, 0.0395, 0.0395, 0.0307, 0.0225], [0.724, 0.0463, 0.0205, 0.016, 0.015, 0.0141, 0.0117, 0.0091], [0.555, 0.0456, 0.0402, 0.0313, 0.0244, 0.0157, 0.0157, 0.0148], [0.2716, 0.2115, 0.0882, 0.0606, 0.0417, 0.0223, 0.0209, 0.0174], [0.2782, 0.2167, 0.1688, 0.0797, 0.0548, 0.0228, 0.0189, 0.0178], [0.779, 0.093, 0.0498, 0.0267, 0.0098, 0.0067, 0.0019, 0.0018], [0.9854, 0.0052, 0.0036, 0.0008, 0.0006, 0.0005, 0.0004, 0.0003], [0.9791, 0.0075, 0.0045, 0.0028, 0.001, 0.0007, 0.0006, 0.0005]], "ranks": {"Python": [34533, 206085, 142154, 152572, 30926, 96431, 26670, 52036, 47926, 66555, 11690, 10550, 17030, 13681, 7868, 8880, 9066, 5445, 7558, 20508, 13103, 15827, 9958, 8027, 6955, 5761, 4411, 2219, 1070, 1166, 1582, 2694, 4513, 3241, 4443, 2582, 1794, 1197, 1344, 808, 588, 857, 979, 1479, 1513, 1135, 1542, 892, 836, 564, 279, 9, 14, 8, 3, 2, 1, 1, 1, 2, 4, 8, 32]}}, {"pos": 507, "top": [[",", ".", "\u00a0\u00a0", "\u2026.", ";", ":", "?", "\u2026.."], [".", ",", "\u00a0\u00a0", "\u2026.", "  ", "\ufffd", " \u200b\u200b", ",\u201d"], [",", "\u2026.", ".", "\u2026", "\u2026..", "\u2026\"", "\u2026\u201d", ",\u2026"], ["---</", "\uff0a\uff0a\uff0a\uff0a", "\ufffd\ufffd", " _____", "-------------</", "----------</", "ECTR", "UILT"], [" \u2019", "_____", " \u201c", "\u3000", " $$$", " ===", "\u00a0\u00a0", ",\u201d"], [" \u2019", " \u201c", "\u00a0\u00a0", " \u201d", "_____", " **\u201c", "\u2019s", "\u3000"], ["\u3000", "_____", " \u2019", " _____", " \u201c", " \u201d", " $$$", ",\u201d"], [" _____", "_____", "\u3000", " \u2019", " $$$", "ively", " canceled", " farther"], ["\u3000", " _____", " \u2019", "_____", ",\u201d", "\u00a0\u00a0", " \uff3b", " \u201c"], [",", "\u00a0\u00a0", "\ufffd", "\u3000", " \u2019", " $\\", "\u2019s", "\u2014at"], ["\u00a0\u00a0", "\u3000", " \u2019", " ", ",", " \u201c", "\u2019s", "\ufffd"], [" \u2019", " _____", " $\\", " ---", "\u3000", " \u201c", " farther", " $$$"], [" \u2019", " \u201c", " _____", "\u2019s", " molded", " farther", " ---", " fueled"], [" \u2019", " \u201c", " \"", " aggressively", " mostly", "\u2019s", " farther", " molded"], [" \u2019", " \u201c", " ", " \"", " \u2014", " aggressively", " farther", " mostly"], [" \u2019", " \u201c", " \u2014", " farther", " aggressively", " nearly", " \"", " ---"], [" \u201c", " \u2019", "\ufffd", " ", "\u00a0\u00a0", " \u2014", " \"", "\u2019s"], ["<|endoftext|>", " \u201c", " \u2019", " \u2014", "  \n\n", "\ufffd", "  ", " "], [" \u2014", " \u2019", "\u2014", "<|endoftext|>", " \u201c", "\u2014and", "  \n\n", "\u2014or"], ["<|endoftext|>", " \u2014", "  \n\n", "\u2014", " \u2019", " ", "\ufffd", " \u201c"], ["<|endoftext|>", "  \n\n", "\n\n", " \n\n", " \u2014", " ", "\u2014", "  \r\n\r\n"], [" ``", " \u2019", " ---", " seamlessly", " aggressively", " effortlessly", " farther", " swiftly"], [" ``", " \u2019", " ---", " ``(", " aggressively", " seamlessly", " --", "\r\n\r\n"], [" ``", " \u2019", " ---", "\n\n", " --", " aggressively", " nearly", " ,"], ["  \n\n", "\n\n", " \n\n", "\r\n\r\n", " ``", "  \r\n\r\n", " \r\n\r\n", "   \n\n"], [" ``", " ---", " \u2019", "\r\n\r\n", "  \n\n", " ___", " \n\n", " **\u201c"], [" ``", " \u2019", "\n\n", " ---", "\r\n\r\n", " seamlessly", " aggressively", " \n\n"], ["\n\n", " \n\n", "  \n\n", " ``", " \u2019", "\r\n\r\n", " --", " ,"], [" \u2019", "\n\n", " ``", " \n\n", " aggressively", "  \n\n", " \u201c", " ,"], [" \n\n", "  \n\n", " \u2019", " **", "  ", " _____", " ___", " \u201c"], [" ...", " **", " _____", " ___", " \n\n", "  \n\n", "  ", " \u2026"], [" ...", " ", " ,", " .", " \u201c", "  ", " \u2019", " **"], [" ,", " \u201c", " ", " over", " \"", " fully", " using", " directly"], [" seamlessly", " \u201c", " aggressively", " meticulously", " \u2014", " \u2019", " directly", " fully"], [" \u201c", " seamlessly", " **\u201c", " meticulously", " aggressively", " directly", " \u2014", " optimized"], [" \u201c", " **\u201c", " \u2026", " \u2014", " seamlessly", " **", " \u201d", " *"], [" \u201c", " seamlessly", " optimized", " bypass", " directly", " specialized", " **\u201c", " independent"], [" \u201c", " optimized", " seamlessly", " directly", " bypass", " independent", " \u201d", " direct"], [" \u201c", " directly", " seamlessly", " bypass", " direct", " optimized", " independent", " fully"], [" \u201c", " directly", " independent", " bypass", " direct", " independently", " seamlessly", " optimized"], [" directly", " direct", " bypass", " independent", " seamlessly", " optimized", " integrated", " automated"], [" directly", " seamlessly", " interface", " direct", " automated", " interf", " internally", " bypass"], [" interface", " directly", " direct", " seamlessly", " interf", " automated", " interfaces", " optimized"], [" directly", " direct", " interface", " seamlessly", " interf", " automated", " internally", " bypass"], [" directly", " internally", " seamlessly", " direct", " bypass", " control", " interface", " automated"], [" seamlessly", " directly", " internally", " direct", " controlled", " bypass", " interf", " automated"], [" seamlessly", " directly", " entirely", " internally", " direct", " strictly", " bypass", " exclusively"], [" seamlessly", " directly", " entirely", " internally", " strictly", " direct", " bypass", " exclusively"], [" entirely", " seamlessly", " strictly", " exclusively", " **", " purely", " internally", " controlled"], [" **", " strictly", " **\"", " exclusively", " entirely", " seamlessly", " internally", " ONLY"], ["\u5141\u8bb8", " strictly", " seamlessly", " allowed", "\u4e25\u683c\u6267\u884c", " allows", " STRICT", " exclusively"], [" **\"", " strictly", "\u5141\u8bb8", " seamlessly", "\u4e25\u683c\u9075\u5b88", "\u4e25\u683c\u6267\u884c", " allowed", " allows"], [" bypass", " strictly", " **\"", " entirely", "\u4e25\u683c\u9075\u5b88", " allowed", " seamlessly", " allows"], [" allows", " bypass", " exposes", "\u5141\u8bb8", " allowed", " behaves", " keeps", " operates"], [" allows", "\u4e25\u683c\u9075\u5b88", " behaves", " keeps", " exposes", " bypass", " Python", " stays"], [" Python", " behaves", " exposes", " allows", " bypass", " keeps", " operates", " encaps"], [" Python", " exposes", " handles", "Python", " python", " behaves", " owns", " *"], [" exposes", " Python", "\u66b4\u9732", " *", " expose", " exposing", "Python", " exposed"], [" exposes", " Python", " *", "\u66b4\u9732", " hides", " exposing", " owns", " expose"], [" Python", " exposes", " *", " expose", " exposing", "\u66b4\u9732", " exposed", "Python"], [" exposes", " Python", " *", " expose", " exposed", " exposing", "Python", "\u66b4\u9732"], [" exposes", " Python", " *", " runs", "Python", " expose", " stays", " exposed"], [" exposes", " Python", " *", " runs", " wraps", " acts", " owns", " handles"]], "p": [[0.4365, 0.3852, 0.125, 0.0316, 0.0035, 0.0016, 0.0014, 0.0012], [0.0953, 0.0373, 0.0273, 0.0273, 0.0114, 0.0107, 0.0065, 0.0057], [0.3126, 0.2434, 0.2434, 0.1303, 0.0129, 0.0065, 0.0047, 0.0039], [0.0084, 0.0084, 0.0048, 0.004, 0.0037, 0.0033, 0.0029, 0.0026], [0.1617, 0.0981, 0.0633, 0.0384, 0.0281, 0.0181, 0.017, 0.015], [0.0907, 0.0706, 0.0378, 0.0334, 0.0294, 0.0277, 0.0139, 0.0131], [0.1921, 0.1496, 0.1405, 0.0664, 0.0295, 0.0215, 0.0202, 0.0179], [0.0888, 0.0611, 0.0539, 0.0348, 0.0198, 0.0164, 0.0136, 0.01], [0.3423, 0.0633, 0.0339, 0.0248, 0.0193, 0.0193, 0.011, 0.0103], [0.1741, 0.0602, 0.0531, 0.0152, 0.0152, 0.0143, 0.0134, 0.0105], [0.0921, 0.0921, 0.0813, 0.0674, 0.0493, 0.0435, 0.0435, 0.0339], [0.1508, 0.1104, 0.0297, 0.0246, 0.0217, 0.0192, 0.0192, 0.018], [0.2562, 0.027, 0.0254, 0.012, 0.012, 0.0106, 0.0077, 0.0077], [0.1343, 0.0219, 0.0133, 0.011, 0.0097, 0.0097, 0.0081, 0.0067], [0.1863, 0.0605, 0.0501, 0.0345, 0.0119, 0.0112, 0.0105, 0.0099], [0.0818, 0.0438, 0.0265, 0.0207, 0.0171, 0.0151, 0.0133, 0.0104], [0.1406, 0.1321, 0.0429, 0.0295, 0.0244, 0.0216, 0.0139, 0.0131], [0.1527, 0.0817, 0.0768, 0.0677, 0.0496, 0.0496, 0.0411, 0.0363], [0.1154, 0.0957, 0.0899, 0.0845, 0.0545, 0.0274, 0.0258, 0.0214], [0.6017, 0.0596, 0.0436, 0.0385, 0.0233, 0.0133, 0.0104, 0.0097], [0.975, 0.0139, 0.0058, 0.0024, 0.0002, 0.0002, 0.0001, 0.0001], [0.3918, 0.1851, 0.0302, 0.0143, 0.0104, 0.0044, 0.0032, 0.0026], [0.8794, 0.0341, 0.022, 0.0016, 0.0015, 0.0015, 0.0009, 0.0007], [0.8121, 0.0357, 0.0075, 0.0062, 0.0055, 0.0021, 0.0019, 0.0019], [0.3915, 0.3455, 0.1632, 0.0364, 0.0143, 0.0098, 0.0072, 0.003], [0.8176, 0.0407, 0.017, 0.008, 0.0071, 0.0055, 0.0046, 0.004], [0.7737, 0.0385, 0.0249, 0.0067, 0.0059, 0.0041, 0.0038, 0.0032], [0.834, 0.0685, 0.0184, 0.0119, 0.0099, 0.0064, 0.0022, 0.0022], [0.1148, 0.0273, 0.0256, 0.0241, 0.0226, 0.0226, 0.0137, 0.0121], [0.0918, 0.0862, 0.081, 0.0631, 0.0491, 0.0383, 0.0317, 0.0317], [0.425, 0.0891, 0.0575, 0.0508, 0.0477, 0.0371, 0.0255, 0.0199], [0.1245, 0.1032, 0.0458, 0.0278, 0.0278, 0.0168, 0.0131, 0.0116], [0.0476, 0.0289, 0.0198, 0.0175, 0.0145, 0.0145, 0.012, 0.0083], [0.1018, 0.07, 0.02, 0.0188, 0.0177, 0.0147, 0.0122, 0.0101], [0.2265, 0.1557, 0.0475, 0.0239, 0.0186, 0.0093, 0.0083, 0.0083], [0.6726, 0.0666, 0.043, 0.0149, 0.0149, 0.008, 0.0066, 0.0062], [0.1213, 0.0945, 0.0475, 0.0394, 0.0326, 0.0326, 0.0239, 0.0198], [0.3394, 0.0489, 0.0459, 0.0431, 0.0297, 0.0149, 0.0132, 0.0109], [0.2337, 0.1175, 0.0337, 0.0316, 0.0279, 0.0246, 0.0217, 0.018], [0.0986, 0.0926, 0.0637, 0.0466, 0.0363, 0.032, 0.0283, 0.0234], [0.0971, 0.0667, 0.0627, 0.0296, 0.0278, 0.0278, 0.0204, 0.0191], [0.0593, 0.0557, 0.0523, 0.0434, 0.0359, 0.0338, 0.0247, 0.0192], [0.0694, 0.0652, 0.054, 0.0395, 0.0349, 0.0272, 0.0255, 0.024], [0.1141, 0.0692, 0.0447, 0.042, 0.0288, 0.0271, 0.0239, 0.0239], [0.1006, 0.0539, 0.0475, 0.0475, 0.0239, 0.0239, 0.0225, 0.0211], [0.1444, 0.0531, 0.0469, 0.0284, 0.0221, 0.0221, 0.0184, 0.0152], [0.2189, 0.0627, 0.038, 0.0296, 0.0278, 0.0261, 0.0204, 0.0124], [0.1106, 0.0917, 0.0809, 0.0433, 0.0433, 0.0298, 0.028, 0.0232], [0.1746, 0.0878, 0.05, 0.0442, 0.0303, 0.0285, 0.0209, 0.0209], [0.1266, 0.0986, 0.0768, 0.0678, 0.0496, 0.0496, 0.0194, 0.0194], [0.0631, 0.0592, 0.0523, 0.0298, 0.0263, 0.0247, 0.0192, 0.0181], [0.0713, 0.046, 0.0432, 0.0382, 0.0297, 0.0246, 0.0231, 0.018], [0.2548, 0.0367, 0.0209, 0.0196, 0.0185, 0.0173, 0.0163, 0.0153], [0.128, 0.113, 0.0345, 0.0286, 0.0222, 0.0209, 0.0184, 0.0153], [0.1154, 0.058, 0.0512, 0.0375, 0.0311, 0.0257, 0.0257, 0.0227], [0.6436, 0.0283, 0.0266, 0.022, 0.0161, 0.0111, 0.0081, 0.0076], [0.9096, 0.0214, 0.0115, 0.0089, 0.0048, 0.002, 0.0015, 0.0014], [0.8111, 0.141, 0.0116, 0.009, 0.0026, 0.0026, 0.0015, 0.0013], [0.7511, 0.1016, 0.1016, 0.0065, 0.0039, 0.0033, 0.0025, 0.0015], [0.4896, 0.4896, 0.0054, 0.0033, 0.0026, 0.002, 0.002, 0.0018], [0.5292, 0.4121, 0.0434, 0.0036, 0.0028, 0.0019, 0.0013, 0.001], [0.5905, 0.3581, 0.0294, 0.0017, 0.0016, 0.0015, 0.0013, 0.0013], [0.6781, 0.2495, 0.0141, 0.011, 0.0052, 0.0043, 0.0033, 0.0028]], "ranks": {"Python": [114141, 185371, 72285, 107906, 24613, 42075, 16116, 31063, 36670, 41972, 11422, 8536, 11142, 13673, 11548, 11054, 21427, 17864, 23145, 47407, 24851, 38469, 29856, 19088, 19087, 13116, 7787, 5176, 3840, 3430, 3100, 4771, 9427, 4718, 4854, 1294, 1326, 1263, 1711, 720, 272, 282, 245, 489, 516, 454, 584, 387, 345, 394, 364, 13, 13, 25, 6, 1, 1, 2, 2, 1, 2, 2, 2]}}, {"pos": 508, "top": [[",", " \u2013", ".", "\u2013", "<|endoftext|>", "\u00a0", " ", "a"], [",", "\u2013", ".", " \u2013", "\u2013and", ";", " \u2013,", ".["], [",", "\u2013", ".", " \u2013", "\u2013and", ".\u2013", " \u2013,", ";"], ["\uff0d\uff0d", "erio", " PYTHON", " ``", "izer", " \uffe5\uffe5", "-------------</", "enner"], [",", "ed", " (@", ",@", "ly", "naire", ".", ":@"], [",", "ed", ".", "-esque", "server", "n\u00e9", "ssystem", "!)."], [",", ".", " \u00a0", "so", "ting", "ed", "naire", "ly"], [",", "\ufffds", "naire", "sson", "ly", "-esque", "ian", "ary"], [",", "ian", "\ufffds", "naire", ".", "ary", "'s", "sson"], [",", "-esque", "\ufffds", " \u00ad", "naire", "sson", "\u00ad", "ian"], [",", "-esque", "'s", " \u00ad", "...", "ian", ".", "\u00a0"], ["-esque", "naire", "/python", "ian", "\ufffds", "_python", "issime", "\u6027\u5730"], ["-esque", "naire", "issime", "\u6027\u5730", "\u3075\u3046\u306b", "ian", "arily", "/python"], ["-esque", "naire", "-style", "\u3075\u3046\u306b", "arily", "issime", "ian", ".python"], ["-esque", " \u00ad", ",", "-style", "'s", "ian", "\u00ad", "naire"], ["-esque", " \u00ad", " just", "'s", ",", " mostly", " savvy", " often"], [",", "-esque", "\u00a0", " \u00ad", "'s", "\u00ad", " savvy", " mostly"], ["-esque", ",", " \u00ad", "'s", "\u00a0", " savvy", "\u00ads", "-heavy"], ["-esque", " \u00ad", "'s", ",", "-heavy", "-only", "naire", " wouldn"], ["-esque", " \u00ad", "naire", " wouldn", ",", "'s", "much", " mostly"], [" \u00ad", " \n\n", "  \n\n", "-esque", " ", "<|endoftext|>", "  \n  \n", " \""], [" ``", " ''", "-esque", " ;;^", "\u5404\u79cd\u5404\u6837", "\u4e5f\u662f\u4e2d\u56fd", "\u5168\u8def\u6bb5", "\u4e94\u989c\u516d\u8272\u7684"], [" ``", " ''", " \\\"", " '''", "-esque", "\u5168\u8def\u6bb5", " ``(", " ;;^"], [" ``", " ''", " \\\"", " still", " --", " ultimately", " eventually", " mostly"], [" ``", " ''", " \\\"", " --", " \r\n \r\n", "-esque", " Python", " '''"], [" Python", " ``", "/python", " ''", ".python", "_python", " PYTHON", " \\\""], [" ``", " Python", " ''", "/python", " PYTHON", "-esque", "_python", ".python"], [" \n\n", "\n\n", " ''", " ...", " --", " ``", "  \n\n", " ...\\"], [" ...\\", " Python", " ''", " \n\n", " ...", " \\\"", " ``", " \n  \n"], [" ...\\", " \n  \n", " Python", " \\\"", " ...", " __", "Python", " ''"], [" ...\\", " ...", " Python", " \\\"", " **.", " __", " ...\"", "Python"], [" ...", " \\\"", " ...\\", " .", "...", " itself", " ", " Python"], [" ...", " \\\"", " .", " ...\\", " itself", "'s", "...", " ...."], ["/python", " \r\n \r\n", " \n  \n", " Python", " workflows", "\u2011", " seamlessly", " \r\n\r\n"], [" \r\n \r\n", "/python", " seamlessly", "\u2014but", " }</", "[^", " Python", "\u2011"], ["\u2011", "[^", "\u2013", " \u2026", "\u2014but", " seamlessly", " }</", "\u2019s"], [" Python", "/python", " seamlessly", "\u2011", "\u2014but", "/engine", " workflows", " python"], [" Python", "\u2011", " seamlessly", "/python", " interface", " interfaces", " python", "Python"], ["\u2011", " Python", " interface", " interfaces", " seamlessly", " scripting", " scripts", " interact"], ["\u2011", " Python", " interface", "Python", "/python", " interfaces", " seamlessly", " python"], [" Python", "Python", "\u2011", " python", " interface", "/python", " interfaces", " scripting"], [" Python", " scripting", " interface", " interfaces", " scripts", " interact", " programming", " python"], [" Python", " interface", " scripting", " interfaces", " scripts", " interact", " programming", " commands"], [" Python", " scripts", " interface", " interact", " interfaces", " controlling", " commands", " scripting"], [" scripts", " Python", " control", " controlling", " interface", " interact", " controls", " interfaces"], [" control", " Python", " scripts", " controlling", " commands", " interact", " controls", " orchestr"], [" scripts", " interact", " interacts", " Python", " control", " seamlessly", " controlling", " orchestr"], [" scripts", " commands", " control", " Python", " merely", " controlling", " seamlessly", " orchestr"], [" merely", " commands", "\u64cd\u63a7", " control", " scripts", " interacts", " controls", " controlling"], ["-only", " interacts", " merely", "\u64cd\u63a7", " commands", " ONLY", "-controlled", "\u4ec5\u63d0\u4f9b"], ["\u64cd\u63a7", " interacts", "-controlled", "\u4e25\u683c\u63a7\u5236", " seamlessly", "\u2014but", "\u9065\u63a7", "-initialized"], [" interacts", "\u53ea\u80fd\u901a\u8fc7", " calls", " interfaces", "\u64cd\u63a7", " merely", " APIs", "\u8c03\u7528"], [" interacts", " calls", " merely", " interfaces", "\u64cd\u63a7", "\u8c03\u7528", " APIs", " wrappers"], [" interacts", " controls", "\u64cd\u63a7", "\u63a7\u5236", " owns", " calls", " control", " interfaces"], [" calls", "\u64cd\u63a7", "\u8c03\u7528", " controls", "\u63a7\u5236", " control", "-call", " invokes"], [" calls", " invokes", "\u8c03\u7528", " orchestr", " initializes", "\u64cd\u63a7", "-call", " interacts"], [" calls", " orchestr", "\u8c03\u7528", " invokes", " controls", " commands", "-call", " initializes"], [" calls", " controls", " orchestr", "\u63a7\u5236", " *", " control", " owns", " invokes"], [" calls", " *", " controls", " owns", " control", " invokes", " initializes", "\u63a7\u5236"], [" *", " calls", " controls", " owns", " invokes", " initializes", " imports", " orchestr"], [" *", " calls", " controls", " initializes", " imports", " owns", " *\"", " orchestr"], [" *", " controls", " calls", " imports", " initializes", " owns", " invokes", " exposes"], [" *", " controls", " imports", " calls", " config", " treats", " owns", " orchestr"]], "p": [[0.6444, 0.1269, 0.1269, 0.077, 0.0046, 0.0023, 0.0022, 0.0021], [0.6212, 0.1672, 0.1079, 0.0226, 0.0176, 0.005, 0.0045, 0.0033], [0.6446, 0.2371, 0.0872, 0.0221, 0.0023, 0.0019, 0.0011, 0.0007], [0.0026, 0.0019, 0.0017, 0.0017, 0.0015, 0.0014, 0.0014, 0.0014], [0.4271, 0.0841, 0.0137, 0.0121, 0.0114, 0.0114, 0.0083, 0.0083], [0.2602, 0.0069, 0.004, 0.0029, 0.0029, 0.0023, 0.0019, 0.0018], [0.803, 0.0546, 0.0079, 0.0065, 0.0054, 0.0048, 0.0045, 0.0042], [0.1562, 0.0507, 0.0348, 0.0239, 0.0199, 0.0187, 0.0165, 0.0113], [0.3426, 0.0339, 0.0299, 0.0281, 0.0248, 0.0103, 0.0097, 0.0091], [0.4724, 0.0052, 0.0032, 0.0028, 0.0023, 0.0023, 0.0018, 0.0016], [0.653, 0.0253, 0.0154, 0.0127, 0.0112, 0.0112, 0.0093, 0.0093], [0.0334, 0.0102, 0.0066, 0.0045, 0.004, 0.0033, 0.0031, 0.0026], [0.0173, 0.005, 0.0032, 0.0028, 0.0027, 0.0027, 0.0025, 0.0021], [0.0313, 0.0031, 0.0024, 0.0023, 0.0015, 0.0014, 0.0014, 0.0012], [0.0219, 0.0193, 0.0141, 0.004, 0.0036, 0.0036, 0.0032, 0.0026], [0.0425, 0.0095, 0.0057, 0.0045, 0.0039, 0.0037, 0.0033, 0.0031], [0.1179, 0.0918, 0.0298, 0.0218, 0.0062, 0.0033, 0.003, 0.0023], [0.1115, 0.0676, 0.0104, 0.0052, 0.0028, 0.0023, 0.0019, 0.0016], [0.1799, 0.0079, 0.007, 0.0054, 0.002, 0.0019, 0.0019, 0.0017], [0.0484, 0.0095, 0.0019, 0.0019, 0.0017, 0.0017, 0.0017, 0.0016], [0.0101, 0.0094, 0.0069, 0.0061, 0.0039, 0.0037, 0.0037, 0.0037], [0.0445, 0.0224, 0.0041, 0.003, 0.0028, 0.0027, 0.0027, 0.0022], [0.549, 0.1478, 0.0029, 0.0017, 0.0014, 0.0013, 0.0007, 0.0007], [0.2436, 0.1782, 0.0037, 0.0027, 0.0024, 0.0022, 0.002, 0.0019], [0.2533, 0.1636, 0.0092, 0.0063, 0.006, 0.0046, 0.0041, 0.0038], [0.1103, 0.0669, 0.0297, 0.0297, 0.0192, 0.0159, 0.0109, 0.0091], [0.1273, 0.0931, 0.0875, 0.0111, 0.0081, 0.0076, 0.0076, 0.0072], [0.2551, 0.1647, 0.0778, 0.0391, 0.0368, 0.0223, 0.0153, 0.0119], [0.1281, 0.088, 0.0827, 0.0568, 0.0345, 0.0324, 0.0268, 0.0223], [0.4066, 0.1094, 0.0707, 0.0486, 0.0429, 0.0158, 0.0139, 0.0079], [0.4051, 0.4051, 0.0243, 0.0178, 0.0095, 0.0065, 0.0045, 0.004], [0.8363, 0.0391, 0.0305, 0.0119, 0.0068, 0.0036, 0.0034, 0.0032], [0.4275, 0.1304, 0.0616, 0.0544, 0.02, 0.0101, 0.0094, 0.0083], [0.0272, 0.024, 0.0155, 0.0121, 0.0114, 0.0094, 0.0088, 0.0083], [0.0316, 0.0297, 0.0159, 0.0124, 0.0109, 0.0085, 0.0071, 0.0066], [0.1136, 0.0418, 0.0346, 0.0287, 0.0238, 0.0093, 0.0088, 0.0088], [0.0479, 0.045, 0.045, 0.02, 0.0129, 0.0089, 0.0083, 0.0078], [0.0744, 0.0699, 0.0374, 0.0274, 0.0227, 0.0138, 0.0129, 0.0114], [0.1231, 0.0795, 0.0376, 0.0201, 0.0177, 0.0167, 0.0108, 0.0108], [0.2467, 0.1095, 0.0202, 0.0179, 0.0168, 0.0148, 0.0108, 0.0102], [0.4444, 0.044, 0.0284, 0.0267, 0.0236, 0.0208, 0.0195, 0.0162], [0.3091, 0.0609, 0.0505, 0.0347, 0.0288, 0.0224, 0.0224, 0.0198], [0.2746, 0.0652, 0.0576, 0.0477, 0.0421, 0.0396, 0.0212, 0.0187], [0.079, 0.0543, 0.051, 0.051, 0.0423, 0.0423, 0.0351, 0.0329], [0.0659, 0.0659, 0.0619, 0.0619, 0.0426, 0.0426, 0.0353, 0.0331], [0.0781, 0.0781, 0.0608, 0.0504, 0.0369, 0.0325, 0.0306, 0.021], [0.0744, 0.0374, 0.0352, 0.0352, 0.033, 0.0242, 0.0213, 0.02], [0.0515, 0.0427, 0.0332, 0.0243, 0.0243, 0.0243, 0.0189, 0.0178], [0.0433, 0.0297, 0.0232, 0.018, 0.018, 0.015, 0.0132, 0.0116], [0.0334, 0.026, 0.0244, 0.0203, 0.019, 0.0168, 0.0123, 0.0115], [0.023, 0.0216, 0.014, 0.0123, 0.008, 0.0075, 0.0062, 0.0062], [0.0285, 0.0222, 0.0184, 0.0173, 0.0153, 0.0135, 0.0135, 0.0105], [0.0763, 0.0435, 0.0264, 0.0233, 0.0193, 0.0181, 0.016, 0.015], [0.1171, 0.0856, 0.0589, 0.0335, 0.0296, 0.0296, 0.0261, 0.0231], [0.3199, 0.0917, 0.0556, 0.0433, 0.0433, 0.0298, 0.0263, 0.0263], [0.4186, 0.0642, 0.0642, 0.0567, 0.0441, 0.0303, 0.0251, 0.0236], [0.7059, 0.0657, 0.0398, 0.0274, 0.0147, 0.0147, 0.0114, 0.0114], [0.459, 0.1315, 0.0377, 0.0377, 0.0377, 0.0377, 0.0333, 0.0293], [0.3605, 0.3182, 0.0912, 0.038, 0.0261, 0.023, 0.0203, 0.014], [0.4709, 0.2521, 0.1191, 0.0266, 0.0207, 0.0207, 0.0161, 0.0098], [0.9959, 0.0019, 0.0006, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001], [0.9543, 0.0198, 0.0154, 0.0021, 0.0016, 0.0009, 0.0005, 0.0004], [0.7056, 0.1574, 0.0579, 0.0213, 0.0146, 0.0054, 0.0054, 0.0045]], "ranks": {"Python": [877, 1254, 1019, 62, 15, 189, 16, 26, 42, 150, 32, 31, 62, 135, 76, 120, 143, 22, 24, 84, 45, 22, 9, 15, 7, 1, 2, 9, 2, 3, 3, 8, 15, 4, 7, 9, 1, 1, 2, 2, 1, 1, 1, 1, 1, 1, 3, 4, 9, 55, 35, 159, 105, 171, 135, 143, 36, 69, 83, 45, 47, 203, 425]}}, {"pos": 509, "top": [[" *", "-*", " *\u2013", "e", "\u20ac\u201c", ";*", "*", "i"], [" *\u2013", " *", ";*", "\u0169", "-*", " *}", " *\\", " *.*"], [" *\u2013", ";*", "-*", " *", " *}", "\u2026*", "calar", " *.*"], [" *__", " *}", " *_", " *&", " Guta", " *", " *\u201e", "``"], [" *", " *}", " *&", " *_", " *__", "-*", " *\u201e", " *\\"], [" *}", " *", " *_", " *&", " *__", "-*", " *\u2013", " *@"], [" *", " *&", " *}", " *_", " *\u201e", "-*", " *__", " *@"], [" *_", " *}", " *", " *&", " *__", " *\u201e", " *@", " *\\"], [" *}", " *_", " *\u201e", " *&", " *__", " *", " *@", " *\\"], [" *_", " *&", " *}", " *__", " *\\", " *\u2013", "-*", " *\u201e"], [" *&", " *", " *_", " *}", " *@", "-*", " *\u201e", " *\\"], [" *", " *&", " *_", " *}", " *__", " *\u201e", "-*", " *\\"], [" *", " *}", " *_", " *&", " *\u201e", "-*", " *__", " *\\"], [" *&", " *", " *}", " *\u201e", "-*", " *_", " *\u2013", " *\u00ab"], [" *", " *&", "-*", " *}", " *_", " *\u2013", "//*", "*&"], [" *", " *&", "-*", " *_", " *}", "*&", "//*", "-&"], [" *", "-*", " *&", " *\u2013", "*&", " *_", "e", "-&"], [" *", "-*", " *&", " *\u2013", "*&", " *}", " *_", "//*"], [" *&", "-*", " *", "*&", " *}", "-&", "//*", " *\u2013"], [" *&", "-*", "*&", "-&", " *\u2013", " *", " *}", "//*"], [" *&", "-*", " *", "-&", "e", " *@", "*&", " *\u2013"], [" *&", " *", "-*", "*&", " *}", " *\u2013", " *@", " *\\"], [" *&", " *", " ``", "-*", "fully", "``", " *}", "-&"], [" *", " *&", " ``", "fully", "-&", "-*", " `", "e"], [" *&", " *", " *\\", "-*", "-&", "*&", " *__", " ``"], [" *&", " *", " *__", " *\\", "-*", " *}", "*&", " *_"], [" *", " *&", "-*", " *__", " *@", " *\\", " ``", " *_"], [" *", " *&", "\n\n", " _", " ``", "-*", " --", "fully"], [" *", " *&", "-*", " *\\", "fully", " *@", " _", " genuinely"], [" *", " ____", " _", " __", " *&", " *\\", " **", "-*"], [" *", " ____", " __", " _", " *&", " **", " *\\", "-*"], [" *", " incredibly", " truly", " fully", " .", " &", " genuinely", " even"], [" *", " genuinely", " incredibly", "!*", "-*", " &", " truly", " ."], [" *", "!*", " *&", "-*", " *\u2013", " *\\", " genuinely", " *}"], [" *", "!*", " *\\", "-*", "}*", "?*", " *\u201c", " *}"], ["!*", " *", "\u2026*", " *\u2013", "-*", " *}", "*", "}*"], [" *", "!*", "-*", " *\u2013", "\u2014but", " *\u201c", " *[", " *\""], [" *", "!*", "-*", " *\u2013", "\u2014but", " *@", " *\u201c", "*"], [" *", "!*", "-*", "\u2014but", "\u2011", " *@", " *\u201c", " *\u2013"], [" *", "!*", "\u2011", " *@", " *\\", "\u2026*", " *\u201c", "-*"], ["!*", " *", " *@", "-*", "\u2011", " technically", ".*", "*"], [" *", "!*", " programming", " seamlessly", " technically", " control", " scripting", "-*"], [" *", "!*", " technically", " control", " *@", " programming", " seamlessly", " scripting"], [" *", " technically", " control", " seamlessly", " controlling", " *@", " interface", " programming"], [" *", " technically", " control", " seamlessly", " controlling", " interface", " *@", "\u2014but"], [" *", " technically", " control", "!*", " controlling", " seamlessly", " *\"", " *\u201c"], [" *", " technically", "!*", " control", " *\"", " seamlessly", " *\u201c", " ONLY"], [" *", " *\\", " technically", " seamlessly", " control", "\u2014but", " *\"", " *@"], [" technically", " control", " seamlessly", "\u2014but", " controls", " controlling", " legally", " controlled"], [" *}", " control", "-access", " *", "}*", ".*", " seamlessly", "!*"], [" *}", "-access", " interacts", "!*", " seamlessly", ".*", "\u64cd\u63a7", "}*"], [" programm", " interacts", "!*", ".*", " interfaces", " scripting", " programming", " *}"], [" interacts", " interfaces", " callable", " orchestr", "\u8c03\u7528", " invokes", "\u9a6d", " interact"], [" interacts", " orchestr", " owns", " interfaces", " controls", " invokes", "\u64cd\u63a7", " manages"], [" invokes", " orchestr", " calls", " interacts", "\u8c03\u7528", "\u6307\u6325", "\u64cd\u63a7", "calls"], [" orchestr", " invokes", " calls", "\u8c03\u7528", " interacts", "calls", " invoc", " orchest"], [" orchestr", " calls", "\u8c03\u7528", " invokes", " orchest", "calls", "-call", " orchestrated"], [" invokes", " calls", " orchestr", "calls", "\u8c03\u7528", " owns", " controls", " invoc"], [" invokes", " calls", " owns", "calls", " orchestr", " controls", "\u8c03\u7528", " Calls"], [" invokes", " imports", " calls", " owns", " controls", " exposes", " orchestr", "imports"], [" imports", " calls", "imports", " invokes", " controls", " owns", " exposes", "calls"], [" imports", "imports", " controls", " calls", "controls", "calls", " invokes", " exposes"], ["imports", "controls", " imports", "config", "calls", "owns", "import", " controls"]], "p": [[0.2228, 0.163, 0.1269, 0.0638, 0.0183, 0.0134, 0.0092, 0.0076], [0.2538, 0.05, 0.0366, 0.0152, 0.0143, 0.0082, 0.0077, 0.0046], [0.2874, 0.0414, 0.0343, 0.0105, 0.0098, 0.0082, 0.0063, 0.0053], [0.1707, 0.0521, 0.0358, 0.0204, 0.0192, 0.0169, 0.0159, 0.0116], [0.6556, 0.1005, 0.0394, 0.0394, 0.0254, 0.0154, 0.0145, 0.0136], [0.2381, 0.1854, 0.1854, 0.0531, 0.0469, 0.0389, 0.0322, 0.0162], [0.5153, 0.1673, 0.1303, 0.0697, 0.0226, 0.02, 0.0176, 0.0137], [0.2541, 0.1541, 0.1541, 0.12, 0.0935, 0.0825, 0.0442, 0.0196], [0.213, 0.1658, 0.1292, 0.1292, 0.1006, 0.0888, 0.0475, 0.037], [0.143, 0.1343, 0.1343, 0.1185, 0.0765, 0.0675, 0.0596, 0.0385], [0.2182, 0.1926, 0.15, 0.1168, 0.0803, 0.0625, 0.0379, 0.0335], [0.2424, 0.1666, 0.147, 0.1145, 0.0695, 0.0613, 0.0372, 0.0199], [0.1516, 0.1424, 0.1109, 0.0919, 0.0762, 0.0593, 0.0298, 0.0218], [0.1182, 0.0812, 0.0717, 0.0493, 0.0463, 0.0281, 0.0193, 0.008], [0.2326, 0.1599, 0.097, 0.0245, 0.023, 0.0102, 0.009, 0.008], [0.5536, 0.116, 0.0904, 0.0148, 0.0148, 0.0089, 0.0058, 0.0051], [0.6682, 0.075, 0.0584, 0.0084, 0.0074, 0.0066, 0.0051, 0.0045], [0.4235, 0.213, 0.0888, 0.0224, 0.0186, 0.0113, 0.0083, 0.0068], [0.2274, 0.2274, 0.1663, 0.0395, 0.0225, 0.0199, 0.0137, 0.0106], [0.2451, 0.1158, 0.066, 0.0582, 0.0353, 0.0275, 0.0201, 0.0079], [0.1904, 0.168, 0.1483, 0.0794, 0.0352, 0.0166, 0.0156, 0.0122], [0.4062, 0.1494, 0.0456, 0.0148, 0.0131, 0.0096, 0.0054, 0.0048], [0.3246, 0.2528, 0.0771, 0.0126, 0.0098, 0.0056, 0.0052, 0.0052], [0.2922, 0.1772, 0.138, 0.0349, 0.01, 0.0094, 0.0069, 0.005], [0.3493, 0.187, 0.0325, 0.0269, 0.0197, 0.0163, 0.012, 0.0112], [0.2773, 0.216, 0.0581, 0.0425, 0.0275, 0.0167, 0.0147, 0.0108], [0.3661, 0.2851, 0.0282, 0.0142, 0.0133, 0.0092, 0.0086, 0.0067], [0.5287, 0.0715, 0.0434, 0.028, 0.017, 0.0103, 0.0097, 0.0071], [0.7218, 0.0557, 0.0124, 0.0066, 0.0052, 0.0046, 0.0031, 0.0022], [0.8547, 0.0242, 0.0177, 0.0167, 0.0069, 0.0051, 0.0045, 0.0035], [0.9226, 0.0066, 0.0058, 0.0045, 0.0028, 0.0026, 0.0023, 0.002], [0.6637, 0.0213, 0.0095, 0.0084, 0.0078, 0.0078, 0.0069, 0.0057], [0.8859, 0.006, 0.0032, 0.003, 0.0028, 0.0025, 0.0023, 0.0019], [0.2925, 0.1774, 0.0272, 0.0256, 0.024, 0.0187, 0.0137, 0.0129], [0.4518, 0.274, 0.0186, 0.0186, 0.0145, 0.0136, 0.0136, 0.012], [0.5139, 0.2751, 0.029, 0.0212, 0.0146, 0.0129, 0.01, 0.0083], [0.7309, 0.1121, 0.0235, 0.0195, 0.0134, 0.0076, 0.0063, 0.0056], [0.7183, 0.1414, 0.0231, 0.0124, 0.0085, 0.008, 0.007, 0.0055], [0.6718, 0.103, 0.0168, 0.0139, 0.0116, 0.0109, 0.0096, 0.0079], [0.3794, 0.2031, 0.0513, 0.0258, 0.0228, 0.0177, 0.0167, 0.0138], [0.403, 0.2444, 0.0274, 0.0188, 0.0156, 0.0095, 0.0089, 0.0069], [0.1409, 0.0335, 0.0261, 0.0203, 0.0203, 0.0179, 0.0168, 0.0116], [0.2013, 0.029, 0.0272, 0.0176, 0.0176, 0.0165, 0.0155, 0.0114], [0.0882, 0.0443, 0.0417, 0.0368, 0.0223, 0.0163, 0.0144, 0.0119], [0.1506, 0.0711, 0.0489, 0.0262, 0.014, 0.0109, 0.0096, 0.0096], [0.2282, 0.0741, 0.0542, 0.0187, 0.0146, 0.0146, 0.0137, 0.0114], [0.5264, 0.0381, 0.0279, 0.0159, 0.0149, 0.0132, 0.0085, 0.0085], [0.4256, 0.0508, 0.0372, 0.0372, 0.0226, 0.0121, 0.0107, 0.0088], [0.0584, 0.0484, 0.0377, 0.0122, 0.0108, 0.0101, 0.0084, 0.0079], [0.035, 0.0256, 0.0241, 0.02, 0.0187, 0.0187, 0.0165, 0.0121], [0.0288, 0.0113, 0.0106, 0.0099, 0.0088, 0.0077, 0.0073, 0.0073], [0.0171, 0.0142, 0.0118, 0.0111, 0.0111, 0.0111, 0.0111, 0.0081], [0.0276, 0.0178, 0.0168, 0.0168, 0.0157, 0.0139, 0.0096, 0.0084], [0.0897, 0.0424, 0.0351, 0.0291, 0.0213, 0.0177, 0.0129, 0.0129], [0.1094, 0.0966, 0.0852, 0.0586, 0.0586, 0.0486, 0.0229, 0.0215], [0.2724, 0.1287, 0.1136, 0.0536, 0.0418, 0.027, 0.0174, 0.0154], [0.3787, 0.295, 0.0658, 0.0581, 0.0311, 0.0311, 0.0089, 0.0054], [0.4114, 0.2495, 0.104, 0.0434, 0.0298, 0.0298, 0.0181, 0.011], [0.4109, 0.32, 0.0917, 0.0491, 0.0232, 0.0205, 0.0085, 0.0066], [0.3055, 0.21, 0.1274, 0.0772, 0.0772, 0.0365, 0.0322, 0.0195], [0.2812, 0.1505, 0.0913, 0.0806, 0.0711, 0.0381, 0.0315, 0.0262], [0.1783, 0.1783, 0.1574, 0.1226, 0.0954, 0.0743, 0.0351, 0.0156], [0.5597, 0.1249, 0.0973, 0.059, 0.059, 0.0246, 0.0109, 0.0096]], "ranks": {"Python": [11941, 131559, 118687, 158489, 88837, 170516, 90269, 115693, 134591, 105493, 34459, 101501, 80555, 123888, 93975, 110919, 42877, 14884, 23337, 36332, 13574, 80508, 69341, 35080, 18135, 27165, 49724, 16914, 15864, 7777, 7488, 11386, 22176, 47001, 27382, 5543, 815, 758, 800, 313, 63, 140, 131, 353, 532, 433, 786, 904, 1284, 2703, 2425, 250, 201, 467, 588, 213, 44, 70, 92, 81, 105, 491, 711]}}, {"pos": 510, "top": [["<|endoftext|>", " ", "\u00a0", ".", "\u00a0\u00a0", "[", "\u2022", "  "], ["  \n\n", "   \n", "   \n\n", "  \n\n\n", " \n\n\n", " \n\n", "  \n  \n", "  "], ["\u2013", "\u2013and", " \u2026.", ".\u2013", ".", "\u00a0", "\u2026.", "\u2026.."], [" **\u300c", "enticate", " **\u2022", " /*!", " **\u3010", " **:", "entication", " \u00bb**"], [" \n\n\n", " \n\n\n\n", " \n\n\n\n\n", "  \n\n\n", " \t ", "\t\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\n", " \n\n\n\n\n", " \u00bb.", "   \n", " */,", " \t "], [" \n\n\n", "  \n\n\n", "enticate", " \u00bb.", " */,", " **\u20ac", "   \n", " _."], [" \u00bb.", " \n\n\n", " */,", " \n    \n", "  \n\n\n", " \n\n\n\n\n", " _.", "enticate"], [" \t ", "\u00a0", " */,", " \t\n", " \u00bb.", "_.", " \n\n\n", "enticate"], ["\u00a0", " \n\n\n", " \n", ".", "_.", "&nbsp", "  \n\n\n", " _."], [" \u00bb.", " _.", " \u00bb,", " **\u300c", " **", " \n\n\n", "_.", " ***"], [" \u00bb.", " \u00bb,", " \u00bb", " _.", " \u300d", " ).", " \u00bb**", " **\u300c"], [" \u00bb.", " \u00bb,", " ).", " \u300d", " \u00bb**", " `,", "enticate", " `_"], [" into", " ", " `,", " \n\n\n", " `_", " aggressively", "\u2014and", " `"], [" &#", " _", " `,", " aggressively", "&_", " `_", " \n\n\n", " casually"], ["\u00a0", " into", " _", " \n\n\n", " heavily", " ", " back", " from"], [" into", " \n\n\n", " \u00bb.", " `,", "\u00a0", "&nbsp", "into", " )."], [" \n\n\n", " \u00bb.", " into", " &#", "\u2014and", " _.", "&nbsp", " )."], [" \n\n\n", " &#", " into", " \u2014", "\u2014and", "\u2014but", " &", " \ufffd"], ["<|endoftext|>", " \n\n", " \n\n\n", "  \n\n", "  \n\n\n", " ", " \n  \n", " \u2014"], [" into", "_into", " ___", " _.", " `,", " '`", " ____", " \u00bb."], [" ``", " into", " `,", " `", " '`", " ,", " `_", " ;"], [" ,", " ``", " into", " from", " `", " ;", " .", " --"], [" ``", " _", " --", " `_", " `", " `,", " ___", " &#"], [" ___", " ____", " __", " _.", " _", " `_", " *__", " _____"], [" _", " ___", " ``", " __", " `_", " _.", " ____", " ,"], [" _", " ___", " __", " ,", " ____", " ``", " `_", " --"], [" ___", " __", " ____", " _", " _____", " _.", " ______", " _,"], [" ___", " ____", " __", " _____", " ______", " _", " _.", "____"], [" ___", " ____", " __", " _", " _____", " ______", " _.", " **"], [" ____", " ...", " ___", " .", " _", " __", " _____", " ______"], [" .", " **", " ____", " ___", " _____", " *", " _", " \\\""], [" _____", " ____", " **", " ___", " ______", " _", " \n  \n", " __"], [" ____", " **", " _____", " ___", " ______", " *[", " .*", " **["], [" **", " *", " *[", " .*", " **[", " ____", " .**", "\u2014but"], [" *[", " **", " *", " Python", " .*", "\u2014but", " \u2014", " **["], ["\u2011", " Python", "\u2014but", " seamlessly", " *[", " .*", " **", " *"], ["\u2011", " Python", " seamlessly", " import", " **", "\u2014but", " python", " *["], ["\u2011", " Python", " import", " **", " seamlessly", "Python", " imports", "/import"], [" Python", "Python", " import", " imports", "\u2011", " seamlessly", "import", "/import"], [" Python", " import", " imports", " imported", " importing", " seamlessly", "/import", " modules"], [" import", " imports", " imported", " importing", " Python", " seamlessly", "/import", " modules"], [" seamlessly", " import", " imports", " imported", " Python", " importing", " modules", "/import"], [" seamlessly", " import", " Python", " imports", " imported", " modules", " module", "/import"], [" seamlessly", " imported", " import", " imports", " Python", " via", " modules", "/import"], [" seamlessly", " via", " **", "/import", " import", " imported", " imports", "\u548c\u4f7f\u7528"], [" seamlessly", " via", " **", " *", " and", "\u548c\u4f7f\u7528", "\u2014but", "/import"], ["\u2014but", " but", " seamlessly", " via", "-but", "*.", " and", ".*"], [" but", "\u2014but", "-but", " seamlessly", " via", "but", " and", "*."], [" but", "\u2014but", "-but", "but", " nh\u01b0ng", " \u043d\u043e", "\u4f46", " seamlessly"], [" but", "\u2014but", "but", "-but", "*.", " nh\u01b0ng", " \u043d\u043e", " seamlessly"], [" but", "\u2014but", "but", "-but", "*.", " But", " \u043d\u043e", " nh\u01b0ng"], [" but", "\u2014but", "*.", "but", "-but", "`.", " But", "\u4f46\u4e0d\u80fd"], [" but", "*.", "`.", "\u2014but", "but", "**.", "-but", " \u043d\u043e"], [" but", "*.", "`.", "**.", "\u2014but", "but", "-but", " \u043d\u043e"], ["*.", "*,", ".*", " but", "`.", "**.", ".*,", "*"], ["*.", "*,", " but", ".*", "`.", ".*,", "**.", "*"], ["*.", "*,", " but", "`.", "**.", ".*", ".*,", "*"], ["*.", "*,", " but", "`.", "**.", "*", ".*", "**,"], ["*,", "*.", "*", ".*", ".*,", " *,", ",*", " *"], ["*.", "*,", "*", ".*", ".*,", " *,", "`.", "*:"], ["*.", "*,", "*", "**.", "*:", "*).", "*;", "**,"]], "p": [[0.7198, 0.0521, 0.0521, 0.018, 0.014, 0.008, 0.0075, 0.0071], [0.2218, 0.1623, 0.1623, 0.1187, 0.0925, 0.072, 0.0362, 0.022], [0.3664, 0.087, 0.0637, 0.0411, 0.0411, 0.032, 0.0301, 0.0182], [0.0441, 0.0267, 0.0112, 0.0082, 0.0077, 0.0077, 0.0064, 0.0053], [0.27, 0.2103, 0.1538, 0.0532, 0.0499, 0.0173, 0.0053, 0.0046], [0.1755, 0.0779, 0.0779, 0.0174, 0.0135, 0.0099, 0.0093, 0.0056], [0.3594, 0.0587, 0.0277, 0.026, 0.023, 0.0216, 0.0158, 0.0139], [0.1105, 0.0461, 0.0297, 0.0279, 0.0232, 0.0159, 0.0159, 0.0132], [0.1782, 0.1572, 0.0273, 0.02, 0.0188, 0.0107, 0.0107, 0.0094], [0.0111, 0.0092, 0.0081, 0.0067, 0.0059, 0.0043, 0.0036, 0.003], [0.2953, 0.158, 0.0482, 0.0242, 0.0214, 0.0201, 0.0177, 0.0167], [0.1751, 0.0345, 0.0268, 0.0223, 0.0163, 0.0153, 0.0135, 0.0112], [0.3289, 0.027, 0.0128, 0.0113, 0.0113, 0.0099, 0.0088, 0.0077], [0.0465, 0.0092, 0.0043, 0.0034, 0.0032, 0.0032, 0.0025, 0.0022], [0.0142, 0.0111, 0.0104, 0.0081, 0.0067, 0.0067, 0.0067, 0.0059], [0.0081, 0.0076, 0.0067, 0.0059, 0.0056, 0.0043, 0.0041, 0.0036], [0.0286, 0.0135, 0.0082, 0.0077, 0.0072, 0.0072, 0.006, 0.006], [0.0308, 0.0226, 0.0199, 0.0155, 0.0129, 0.01, 0.0094, 0.0078], [0.0312, 0.0259, 0.0243, 0.0215, 0.0202, 0.0202, 0.0139, 0.0122], [0.0672, 0.0407, 0.0407, 0.036, 0.036, 0.0141, 0.0117, 0.011], [0.7618, 0.1168, 0.0587, 0.0179, 0.0035, 0.0017, 0.0015, 0.0011], [0.0237, 0.0099, 0.0099, 0.0082, 0.0082, 0.0064, 0.005, 0.0047], [0.0529, 0.0529, 0.025, 0.0151, 0.0134, 0.0126, 0.0098, 0.0098], [0.1394, 0.09, 0.0581, 0.0453, 0.0353, 0.0275, 0.0228, 0.0189], [0.1749, 0.128, 0.0776, 0.0501, 0.0367, 0.0304, 0.0304, 0.0237], [0.4211, 0.094, 0.0829, 0.0646, 0.0535, 0.0305, 0.0305, 0.0287], [0.3823, 0.1407, 0.1095, 0.0664, 0.0586, 0.0314, 0.0158, 0.0096], [0.5647, 0.1112, 0.0866, 0.0281, 0.0193, 0.016, 0.015, 0.0125], [0.2634, 0.1811, 0.141, 0.1098, 0.0552, 0.0296, 0.023, 0.0109], [0.333, 0.2939, 0.202, 0.0743, 0.0451, 0.0213, 0.0069, 0.0042], [0.2755, 0.2755, 0.1894, 0.0697, 0.0615, 0.0329, 0.029, 0.0137], [0.1601, 0.1601, 0.1413, 0.0912, 0.0912, 0.0857, 0.0667, 0.0405], [0.1793, 0.0847, 0.0702, 0.066, 0.0582, 0.0514, 0.0353, 0.0332], [0.0831, 0.0781, 0.0504, 0.0346, 0.0325, 0.0197, 0.0154, 0.0154], [0.0898, 0.058, 0.0452, 0.0292, 0.0274, 0.0274, 0.0274, 0.0242], [0.1075, 0.0694, 0.0612, 0.0477, 0.0371, 0.0328, 0.0187, 0.0155], [0.0671, 0.0523, 0.0461, 0.0383, 0.0298, 0.028, 0.0205, 0.0192], [0.0629, 0.046, 0.0316, 0.0246, 0.0169, 0.0159, 0.014, 0.014], [0.0935, 0.0878, 0.039, 0.0209, 0.0196, 0.0162, 0.0143, 0.0127], [0.0673, 0.0594, 0.0384, 0.0339, 0.0299, 0.0248, 0.0205, 0.0133], [0.0892, 0.0478, 0.0478, 0.0396, 0.029, 0.024, 0.0226, 0.0212], [0.1308, 0.1229, 0.1019, 0.0512, 0.0481, 0.0425, 0.0311, 0.0311], [0.1658, 0.1463, 0.1139, 0.0736, 0.061, 0.0573, 0.0446, 0.0347], [0.1618, 0.1112, 0.0922, 0.0866, 0.0384, 0.0384, 0.0319, 0.0299], [0.3107, 0.0612, 0.0476, 0.0476, 0.0395, 0.0371, 0.0199, 0.0175], [0.4279, 0.048, 0.048, 0.031, 0.0274, 0.0274, 0.0257, 0.0177], [0.4697, 0.0465, 0.0249, 0.0234, 0.0194, 0.0161, 0.0133, 0.0125], [0.4079, 0.0487, 0.0487, 0.0149, 0.014, 0.0131, 0.0123, 0.0116], [0.3861, 0.1713, 0.1039, 0.0263, 0.0192, 0.0085, 0.0085, 0.0085], [0.7864, 0.0503, 0.0392, 0.0253, 0.0099, 0.0041, 0.0041, 0.0039], [0.9215, 0.0315, 0.0149, 0.008, 0.0021, 0.0021, 0.001, 0.001], [0.8817, 0.0497, 0.0161, 0.0086, 0.0046, 0.0021, 0.0018, 0.0018], [0.9292, 0.0281, 0.0117, 0.0063, 0.003, 0.003, 0.0017, 0.0012], [0.9149, 0.019, 0.0115, 0.0102, 0.0062, 0.0037, 0.0035, 0.0027], [0.8291, 0.0284, 0.0183, 0.0143, 0.0118, 0.0111, 0.0063, 0.0044], [0.6744, 0.0913, 0.0627, 0.038, 0.014, 0.009, 0.0066, 0.0043], [0.8334, 0.0684, 0.0323, 0.0323, 0.0093, 0.0064, 0.0044, 0.0016], [0.836, 0.0778, 0.0286, 0.0223, 0.0135, 0.0056, 0.0039, 0.0018], [0.8637, 0.0709, 0.0179, 0.0179, 0.0109, 0.0085, 0.0021, 0.0011], [0.6939, 0.1064, 0.1064, 0.0305, 0.0163, 0.0163, 0.0064, 0.0022], [0.4898, 0.4898, 0.0148, 0.0029, 0.0006, 0.0006, 0.0003, 0.0002], [0.6725, 0.3177, 0.0058, 0.0013, 0.0005, 0.0005, 0.0003, 0.0002], [0.6943, 0.1989, 0.1065, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Python": [28498, 139692, 22913, 126043, 23703, 133169, 37896, 40806, 75229, 135695, 13891, 4712, 4453, 3666, 3358, 8239, 5449, 939, 896, 2975, 1275, 529, 175, 284, 200, 24, 30, 56, 22, 86, 62, 44, 31, 28, 71, 47, 4, 2, 2, 2, 1, 1, 5, 5, 3, 5, 10, 13, 12, 47, 121, 47, 62, 72, 46, 30, 16, 16, 20, 26, 113, 149, 197]}}, {"pos": 511, "top": [["s", " \u2013", " \n\n", "*.", "\u2013", " *.", "!.", "\u0627\u062a"], ["s", " \n\n", "  \n\n", " \u2013,", " \u2013", "\u0627\u062a", " **\u2013", "   \n\n"], ["s", " \n\n", " \u2013", "\u2013", " \u2013,", " **\u2013", "!.", " \ud83d\ude42"], [" **:", "satz", "s", "\u52a0\u62ff\u5927", "schrift", "sik", "sula", "\u0627\u062a"], ["s", "\u0627\u062a", " \n\n\n\n", " \n\n", "sik", "\u65b0\u52a0\u5761", "\u52a0\u62ff\u5927", "sii"], ["s", "\u0627\u062a", " \n\n\n\n", "\u65b0\u52a0\u5761", "sik", " **:", " \n\n", "\u52a0\u62ff\u5927"], ["s", "\u0627\u062a", " \n\n", " \n\n\n\n", "\u65b0\u52a0\u5761", "s\u00f6k", "sik", "sii"], ["s", "\u0627\u062a", "sburg", "\u65b0\u52a0\u5761", "sik", " \n\n", "\u52a0\u62ff\u5927", "s\u00f6k"], ["s", " \n\n", " \n\n\n\n", "\u0627\u062a", "sik", "sburg", "sene", "schild"], ["s", "\u65b0\u52a0\u5761", "\u52a0\u62ff\u5927", "\u76f8\u8f85\u76f8\u6210", "s\u00f6k", "sik", "\u0627\u062a", "sburg"], ["s", " \n\n", "\u0627\u062a", " \n\n\n\n", "\u65b0\u52a0\u5761", "\u52a0\u62ff\u5927", " \n\n\n\n\n", " \r\n\r\n"], ["s", "\u0627\u062a", "\u52a0\u62ff\u5927", " **", "s\u00f6k", "satz", "\u65b0\u52a0\u5761", " **#"], ["s", "\u0627\u062a", "\u52a0\u62ff\u5927", "\u65b0\u52a0\u5761", "\u76f8\u8f85\u76f8\u6210", " **", "s\u00f6k", " '*"], ["s", "\u65b0\u52a0\u5761", "\u0627\u062a", "\u52a0\u62ff\u5927", "\u76f8\u8f85\u76f8\u6210", "sik", "sii", "s\u00f6k"], ["s", "\u0627\u062a", " --", " `", " \u2014", " just", "\u65b0\u52a0\u5761", " \"`"], ["s", "\u0627\u062a", " --", " \u2014", "\u65b0\u52a0\u5761", " arguably", " swiftly", "\u52a0\u62ff\u5927"], ["s", "\u0627\u062a", " arguably", " just", "a", "\u65b0\u52a0\u5761", " \u2014", " swiftly"], ["s", "\u0627\u062a", "\u65b0\u52a0\u5761", " \u2014", "sik", "\u52a0\u62ff\u5927", "\u76f8\u8f85\u76f8\u6210", " arguably"], ["s", "\u0627\u062a", "sik", " arguably", "\u4e0d\u53ef\u601d\u8bae", "\u65b0\u52a0\u5761", " swiftly", "sii"], ["s", "\u0627\u062a", " \u2014", " swiftly", " --", " arguably", "sik", " though"], ["s", "<|endoftext|>", " \n\n", " swiftly", " \u2014", " though", "\n\n", "\u0627\u062a"], ["s", "\u0627\u062a", "sik", " swiftly", "satz", " ``", "schn", "sii"], ["s", " ``", " --", "\u0627\u062a", " swiftly", " ---", " `", " `_"], ["s", " ``", " --", " `", " ''", " `_", " swiftly", " much"], ["s", " \n\n", "\n\n", " --", "\r\n\r\n", " ``", " \r\n\r\n", " ---"], ["s", " ``", " --", " ---", " **", " `_", " \n\n", " _"], ["s", " \n\n", " _", "\n\n", " ``", " `_", " ___", " --"], [" \n\n", "\n\n", " _", "s", " --", "\r\n\r\n", " \r\n\r\n", "  \n\n"], ["s", " \n\n", "\n\n", " --", " _", "\r\n\r\n", " **", " \u2014"], ["s", " \n\n", " _", " ___", " --", " ...", " **", " __"], [" ...", " \n\n", "s", "\n\n", " _", " **", " ___", "..."], [" ...", " \n\n", "\n\n", " \u2014", "...", "s", " _", " \u2026"], [" \u2014", " \n\n", " ,", "\n\n", "s", " --", " ...", " just"], [" \n\n", " \u2014", " \u2013", "  \n\n", "<|endoftext|>", " rather", " essentially", " technically"], [" \u2014", "\u2014but", " \u2013", " technically", "s", " essentially", " \n\n", " literally"], [" \u2014", "\u2014but", " \u2013", " technically", "<|endoftext|>", " \n\n", " **", "  \n\n"], ["\u2014but", " \u2014", " technically", " \"", " \u2013", " essentially", " **\"", "\u2014\""], ["\u2014but", " \u2014", " technically", " \u2013", "\u2014\"", "\u2014not", " **\"", " essentially"], ["\u2014but", " \u2014", " technically", " \u2013", "\u2014not", "\u2014\"", "\u2014even", " essentially"], ["\u2014but", " technically", " \u2014", " \u2013", "\u2011", "\u2014even", "\u2013", "\u2014not"], ["\u2014but", " technically", " \u2014", " \u2013", " essentially", "\u2011", " BUT", " (\""], ["\u2014but", " technically", " \u2014", " essentially", "\u2014even", "\u2014not", " \n\n", " \u2013"], [" technically", "\u2014but", " \u2014", " essentially", " legally", " allowed", " legitimately", " strictly"], [" technically", " legally", "\u2014but", " allowed", " strictly", " legitimately", " permitted", " \u2014"], [" technically", " legally", " allowed", " permitted", " strictly", "\u2014but", " legitimately", " essentially"], [" technically", " legally", " strictly", " allowed", " permitted", " legitimately", " legality", " essentially"], [" technically", " legally", " allowed", " strictly", " permitted", "  \n\n", " legitimately", " legality"], [" technically", " legally", " strictly", " allowed", " legitimately", " permitted", " legality", " officially"], [" technically", " legally", " allowed", " strictly", " **\"", " legality", " permitted", " legitimately"], [" legally", " technically", " allowed", " legality", " strictly", " permitted", "allowed", " permissible"], [" legally", " technically", "\u8fd9\u4e0d\u662f", " legality", " allowed", "allowed", " isn", "\u5141\u8bb8"], [" legally", " technically", " legality", " violates", " compliant", " strict", "\u5408\u89c4", " Allowed"], [" legally", " technically", " legality", " *\u201c", "\u5408\u89c4", " *\"", " violates", " compliant"], [" legally", " legality", " technically", " violates", " This", "\u5408\u89c4", "\u8fd9\u4e0d\u662f", " Allowed"], [" legally", " legality", "\u8fd9\u4e0d\u662f", " This", " *\"", " *\u201c", "\u8fd9\u4e0d", ">This"], [" technically", " legally", " legality", " *\"", " This", " *\u201c", " Techn", " strict"], [" This", " technically", " Corporate", ">This", " legally", " Since", " Companies", " company"], [" This", " Corporate", " technically", " legally", " Since", ">This", " this", " corporate"], [" This", " this", " Corporate", " Since", " company", ">This", " Companies", " Company"], [" This", " company", " Company", " Since", " policy", " Policy", " this", " Corporate"], [" This", " Since", " Company", " company", " Policy", " policy", " this", " legally"], [" This", " Company", " Since", " company", " this", " Policy", " Techn", " policy"], [" This", " Since", " Company", " Policy", " Techn", " The", " Here", " That"]], "p": [[0.9995, 0.0002, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9956, 0.0032, 0.0002, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001], [0.9985, 0.0007, 0.0003, 0.0002, 0.0001, 0.0001, 0.0, 0.0], [0.1508, 0.1036, 0.059, 0.059, 0.046, 0.0432, 0.0316, 0.0279], [0.9996, 0.0002, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9994, 0.0002, 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.9998, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9947, 0.0036, 0.0003, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001], [0.9965, 0.001, 0.0007, 0.0003, 0.0002, 0.0001, 0.0001, 0.0001], [0.9999, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9971, 0.0004, 0.0003, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001], [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.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9983, 0.0002, 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.0, 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], [0.9975, 0.0003, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.7834, 0.1748, 0.0163, 0.0015, 0.0014, 0.0006, 0.0005, 0.0004], [0.9263, 0.0049, 0.0015, 0.0012, 0.0011, 0.001, 0.0008, 0.0008], [0.8767, 0.0385, 0.0076, 0.003, 0.0022, 0.0013, 0.0012, 0.0012], [0.7639, 0.1327, 0.0204, 0.007, 0.0031, 0.0023, 0.0019, 0.0015], [0.6626, 0.1898, 0.0351, 0.0177, 0.0089, 0.0074, 0.0065, 0.0045], [0.7724, 0.0299, 0.0219, 0.0171, 0.0151, 0.0103, 0.0041, 0.0038], [0.35, 0.1874, 0.0942, 0.0781, 0.0326, 0.0287, 0.027, 0.0254], [0.48, 0.48, 0.01, 0.0088, 0.005, 0.0044, 0.0014, 0.001], [0.5615, 0.2652, 0.0556, 0.0192, 0.008, 0.004, 0.0033, 0.0029], [0.4068, 0.2177, 0.1321, 0.0486, 0.0378, 0.0295, 0.0229, 0.0123], [0.4016, 0.4016, 0.0374, 0.033, 0.0257, 0.0227, 0.0137, 0.0107], [0.5203, 0.1161, 0.1025, 0.0484, 0.0377, 0.0354, 0.0101, 0.0095], [0.3617, 0.0758, 0.0489, 0.0406, 0.0297, 0.0246, 0.0159, 0.0132], [0.3031, 0.2675, 0.0265, 0.0249, 0.0206, 0.0194, 0.0194, 0.0171], [0.2837, 0.1044, 0.0559, 0.0409, 0.0206, 0.0206, 0.0193, 0.0181], [0.3833, 0.2325, 0.0969, 0.0458, 0.0261, 0.0179, 0.0168, 0.0096], [0.4395, 0.2076, 0.1111, 0.0181, 0.017, 0.0117, 0.0103, 0.0103], [0.6382, 0.0864, 0.0762, 0.0263, 0.011, 0.008, 0.0055, 0.0055], [0.6402, 0.1261, 0.0675, 0.0281, 0.0076, 0.0071, 0.0063, 0.0049], [0.7094, 0.0847, 0.0353, 0.0275, 0.0167, 0.0074, 0.0058, 0.0045], [0.4955, 0.2065, 0.018, 0.0159, 0.0124, 0.0124, 0.008, 0.008], [0.3731, 0.2564, 0.1372, 0.0224, 0.0136, 0.0128, 0.0088, 0.0077], [0.5332, 0.1348, 0.0637, 0.0301, 0.0161, 0.0098, 0.0098, 0.0081], [0.734, 0.0603, 0.0414, 0.0196, 0.0162, 0.0152, 0.0126, 0.0105], [0.7838, 0.0568, 0.039, 0.0237, 0.0119, 0.0112, 0.0068, 0.0039], [0.8126, 0.0857, 0.0191, 0.0169, 0.0116, 0.0048, 0.0031, 0.0024], [0.6456, 0.2096, 0.0195, 0.0172, 0.0126, 0.0118, 0.0111, 0.0072], [0.5314, 0.3223, 0.03, 0.0233, 0.0206, 0.011, 0.0059, 0.0059], [0.5724, 0.3064, 0.0173, 0.0153, 0.0068, 0.0053, 0.0053, 0.0047], [0.3579, 0.3579, 0.0799, 0.0259, 0.0229, 0.0202, 0.0084, 0.007], [0.3437, 0.2085, 0.1116, 0.0985, 0.0249, 0.0151, 0.0133, 0.0118], [0.1872, 0.1652, 0.0608, 0.0445, 0.0346, 0.0346, 0.0306, 0.0306], [0.3035, 0.1433, 0.0869, 0.0437, 0.034, 0.0207, 0.0194, 0.0171], [0.3648, 0.2507, 0.0319, 0.0219, 0.0193, 0.0193, 0.011, 0.0097], [0.2176, 0.132, 0.0624, 0.0624, 0.055, 0.055, 0.0202, 0.0168], [0.6508, 0.0881, 0.0252, 0.0185, 0.0185, 0.0185, 0.0105, 0.0099], [0.5719, 0.0774, 0.0469, 0.0366, 0.0251, 0.0184, 0.0143, 0.0134], [0.6883, 0.0302, 0.0267, 0.0267, 0.0267, 0.0236, 0.0162, 0.0105], [0.8339, 0.0252, 0.0153, 0.0119, 0.0119, 0.0093, 0.0082, 0.0082], [0.4004, 0.2143, 0.13, 0.0372, 0.0329, 0.0329, 0.0256, 0.0199], [0.8529, 0.0618, 0.0201, 0.0177, 0.0122, 0.0074, 0.0048, 0.0024], [0.8696, 0.0433, 0.0298, 0.0124, 0.0062, 0.0059, 0.0038, 0.0028], [0.9702, 0.0228, 0.0027, 0.0013, 0.0006, 0.0003, 0.0003, 0.0001]], "ranks": {"Python": [19024, 183216, 127212, 121696, 81881, 129651, 51203, 66955, 54232, 98235, 38470, 33969, 33121, 54064, 30084, 49971, 32248, 21583, 25475, 39211, 13525, 13403, 7171, 5163, 4036, 926, 598, 618, 312, 383, 585, 1226, 2931, 2188, 3506, 2576, 5615, 5184, 6247, 6000, 4609, 3403, 3328, 6097, 4913, 3145, 5584, 3782, 3470, 3586, 8090, 1756, 13347, 5725, 4161, 639, 162, 123, 182, 185, 102, 18, 28]}}, {"pos": 512, "top": [[",", ".", " \u2013", ";", "\u00a0", "\u2013", "\u00a0\u00a0", "?"], [",", " \u2013", "\u00ad", "  \n", ".", "\u2013", "  \n\n", " Very"], [",", ".", "\u2013", " \u2013", ";", "\u2013and", "[", ".\u2013"], [" **\u300c", "----------</", "erias", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Shemale", "\uff0a\uff0a\uff0a\uff0a", "-------------</", " ;;^"], ["(**", " **#", " (**", "**!", " **+", "**.", " (@", "***"], ["(**", " **", " **#", "**!", " (**", " **+", "  \n", ","], ["  \n", "  \n\n", " **", "**!", "(**", " **\u300c", " **#", " **-"], [" **#", " **", " **\u300c", "(**", " **+", "**!", "  \n", " **-"], ["  \n\n", " **#", "(**", "**!", " **\u300c", " **", "  \n", " **+"], [",", "\u00adtion", "\u00ading", " \u00ad", "\u00ads", "\u00ad", "\u00adi", "\u00adt"], [" \u00ad", " **", ",", "\u00ad", " **#", "\u00adtion", "\u00ading", "\u00ads"], [" **", " **\u300c", " **+", " **#", " **\u00ab", " \u00bb**", " **-", " **>>"], [" **", " **\u300c", " **\u00ab", " **+", " **#", " \u00bb**", " **-", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9"], [" **", " **\u300c", " **\u00ab", " **+", " \u00bb**", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " **#", " arguably"], [" arguably", " albeit", " **", " notably", " largely", " though", "\u5927\u90e8\u4efd", " savvy"], [" arguably", " incredibly", " albeit", " savvy", " showcasing", " largely", " ultimately", " potentially"], [" arguably", " albeit", " incredibly", " savvy", " ultimately", " overarching", " largely", " potentially"], [" arguably", " incredibly", " revamped", " savvy", " \u00ad", " though", " **", " sprawling"], [" arguably", " revamped", " incredibly", " ultimately", " \u00ad", " largely", " uniquely", " albeit"], [" arguably", " though", " ultimately", " largely", " \u2014", " swiftly", " myriad", " \u00ad"], ["<|endoftext|>", "  \n\n", " arguably", " ultimately", " though", " swiftly", " \n\n", " myriad"], [" arguably", " seamlessly", " **", " incredibly", " ultimately", " effortlessly", " savvy", " hugely"], [" arguably", " ultimately", " incredibly", " **", " uniquely", " seamlessly", " hugely", " effortlessly"], [" arguably", " ultimately", " uniquely", " incredibly", " hugely", " largely", " heavily", " dramatically"], ["  \n\n", " \n\n", " arguably", " hugely", "   \n\n", "\n\n", " vastly", " though"], [" **", " arguably", " hugely", " incredibly", " **#", " seamlessly", " vastly", " ultimately"], [" arguably", " **", "  \n\n", " \n\n", " ultimately", "\n\n", " hugely", " incredibly"], ["\n\n", "  \n\n", " \n\n", " arguably", " **", " ultimately", "   \n\n", " heavily"], ["  \n\n", " \n\n", " arguably", "\n\n", " ultimately", " heavily", " incredibly", " uniquely"], ["  \n\n", " \n\n", " arguably", " ultimately", " **", " heavily", " essentially", " incredibly"], [" \n\n", "  \n\n", " ultimately", " ,", " heavily", " essentially", " **", " arguably"], ["  \n\n", " \n\n", " ultimately", "<|endoftext|>", " heavily", " essentially", " incredibly", " fully"], [" ultimately", " essentially", " fully", " truly", " heavily", " massive", " incredibly", " ,"], ["  \n\n", " seamlessly", " essentially", "<|endoftext|>", " truly", " ultimately", " meticulously", " \n\n"], [" seamlessly", "  \n\n", " meticulously", " technically", " truly", " essentially", " leveraging", " tech"], [" technically", " \u2014", " truly", " seamlessly", " **", " meticulously", " essentially", " tech"], [" technically", " seamlessly", " truly", " strictly", " essentially", " meticulously", " ONLY", " \u2014"], [" technically", " truly", " seamlessly", " strictly", " essentially", " meticulously", " legitimately", " ONLY"], [" technically", " truly", " strictly", " seamlessly", " allowed", " allows", " legitimately", " essentially"], [" technically", " strictly", " truly", " allowed", " legitimately", " tech", " seamlessly", " essentially"], [" technically", " allowed", " strictly", " tech", " isn", " truly", " allows", " Techn"], [" technically", " strictly", " allowed", " tech", " legally", " essentially", " truly", " Techn"], [" technically", " allowed", " strictly", " legally", " legitimately", " essentially", " compliant", " tech"], [" technically", " allowed", " legally", " strictly", " permitted", " compliant", " allowable", " loophole"], [" technically", " allowed", " legally", " permitted", " strictly", " allowable", " Allowed", " compliant"], [" technically", " allowed", " legally", " strictly", " permitted", " legality", " Allowed", " compliant"], [" technically", " legally", " allowed", " strictly", " compliant", " permitted", " legitimately", " Allowed"], [" technically", " legally", " allowed", " strictly", " compliant", " permitted", " Allowed", " allows"], [" technically", " legally", " allowed", " allows", " legality", " compliant", " permitted", " permissible"], [" technically", " allowed", " legally", " allows", " Allowed", "allowed", "\u5141\u8bb8", " permissible"], [" technically", "allowed", " allowed", "\u5141\u8bb8", "\u5408\u89c4", " allows", " Allowed", "\u5408\u6cd5"], [" compliant", "\u7b26\u5408", "\u5408\u89c4", " violates", " satisfies", " comply", "\u4e25\u683c\u9075\u5b88", "\u9075\u5b88"], [" violates", " compliant", "\u5408\u89c4", " satisfies", "\u7b26\u5408", "\u4e25\u683c\u9075\u5b88", " comply", "\u9075\u5b88"], [" violates", " compliant", "\u4f9d\u7136\u662f", " satisfies", "\u4ecd\u662f", "\u5408\u89c4", "\u7b26\u5408", " still"], [" violates", " compliant", "\u7b26\u5408", " satisfies", "\u9075\u5b88", "\u5408\u89c4", " comply", " maintains"], [" technically", " violates", "\u7b26\u5408", " satisfies", " compliant", "\u5408\u89c4", "\u9075\u5b88", " maintains"], [" violates", " technically", " compliant", "\u9075\u5b88", " satisfies", "\u5408\u89c4", " comply", "\u7b26\u5408"], [" violates", "\u9075\u5b88", " satisfies", " compliant", " technically", "\u5408\u89c4", " comply", "\u4e25\u683c\u9075\u5b88"], [" violates", " keeps", " satisfies", "\u9075\u5b88", " technically", " stays", " compliant", "\u4e25\u683c\u9075\u5b88"], [" violates", " keeps", " technically", " satisfies", " stays", " is", " compliant", " respects"], [" keeps", " violates", " satisfies", " is", " technically", " respects", " stays", " compliant"], [" keeps", " is", " violates", " satisfies", " stays", " technically", " respects", " compl"], [" keeps", " is", " satisfies", " violates", " respects", " stays", " technically", " compl"]], "p": [[0.4459, 0.4459, 0.0878, 0.0039, 0.0034, 0.0034, 0.001, 0.0008], [0.1198, 0.1057, 0.0933, 0.0774, 0.0603, 0.0236, 0.0126, 0.0098], [0.7254, 0.2355, 0.0248, 0.0103, 0.0018, 0.0003, 0.0003, 0.0002], [0.0337, 0.0149, 0.0132, 0.0116, 0.0096, 0.008, 0.0058, 0.0052], [0.0263, 0.0181, 0.0085, 0.0071, 0.0071, 0.0059, 0.0049, 0.0046], [0.0983, 0.0362, 0.0249, 0.0233, 0.0194, 0.016, 0.011, 0.0104], [0.314, 0.314, 0.0658, 0.0481, 0.0425, 0.0292, 0.0156, 0.0114], [0.161, 0.1254, 0.1107, 0.0917, 0.0631, 0.0523, 0.0382, 0.0359], [0.5228, 0.0707, 0.0587, 0.0429, 0.0277, 0.026, 0.026, 0.0168], [0.093, 0.0388, 0.0302, 0.025, 0.0195, 0.0118, 0.0104, 0.0098], [0.2822, 0.1939, 0.067, 0.0461, 0.0359, 0.0116, 0.0097, 0.008], [0.6399, 0.1618, 0.0464, 0.0339, 0.0319, 0.0038, 0.0038, 0.0032], [0.6344, 0.1604, 0.0669, 0.0336, 0.014, 0.0066, 0.0055, 0.0026], [0.0992, 0.0773, 0.0602, 0.0184, 0.0184, 0.0162, 0.0056, 0.0053], [0.0653, 0.0176, 0.0129, 0.0073, 0.0073, 0.0069, 0.005, 0.005], [0.0693, 0.042, 0.0165, 0.0113, 0.0094, 0.0088, 0.0088, 0.0069], [0.1007, 0.0164, 0.0154, 0.0113, 0.0094, 0.0094, 0.0094, 0.0094], [0.0551, 0.0148, 0.0096, 0.009, 0.0079, 0.0079, 0.0079, 0.0075], [0.085, 0.009, 0.009, 0.0084, 0.007, 0.0066, 0.0066, 0.0062], [0.045, 0.0137, 0.0121, 0.0107, 0.0094, 0.0083, 0.0073, 0.0073], [0.1441, 0.0468, 0.0235, 0.0134, 0.0111, 0.0098, 0.0092, 0.0072], [0.0343, 0.0098, 0.0092, 0.0081, 0.006, 0.0056, 0.0056, 0.0046], [0.0535, 0.0144, 0.0135, 0.0119, 0.0093, 0.0093, 0.0082, 0.0072], [0.0459, 0.0246, 0.0109, 0.0103, 0.0096, 0.009, 0.007, 0.0062], [0.1897, 0.0698, 0.0291, 0.0114, 0.0114, 0.0114, 0.0065, 0.0065], [0.1158, 0.0547, 0.0147, 0.0138, 0.0108, 0.0089, 0.0084, 0.007], [0.0585, 0.0276, 0.0244, 0.0215, 0.0148, 0.013, 0.0108, 0.0079], [0.3113, 0.1888, 0.1774, 0.0212, 0.01, 0.0065, 0.0042, 0.0037], [0.1503, 0.0756, 0.0589, 0.0488, 0.0217, 0.0116, 0.009, 0.0085], [0.0888, 0.0538, 0.0419, 0.0419, 0.0198, 0.0154, 0.0145, 0.0113], [0.0897, 0.0656, 0.0351, 0.0273, 0.0177, 0.0177, 0.0146, 0.0129], [0.0523, 0.0461, 0.0359, 0.0247, 0.0232, 0.0205, 0.0132, 0.0132], [0.0373, 0.0309, 0.0212, 0.02, 0.0137, 0.0107, 0.01, 0.0089], [0.0772, 0.0388, 0.0343, 0.0322, 0.0251, 0.0251, 0.0208, 0.0183], [0.0479, 0.0397, 0.0309, 0.029, 0.0226, 0.0212, 0.0155, 0.0146], [0.3226, 0.034, 0.0319, 0.0319, 0.0151, 0.0142, 0.0133, 0.0133], [0.4847, 0.0351, 0.0257, 0.0213, 0.0129, 0.0089, 0.0089, 0.0083], [0.5233, 0.0261, 0.0203, 0.0179, 0.0116, 0.0096, 0.0085, 0.0079], [0.4786, 0.0306, 0.0238, 0.0154, 0.0154, 0.012, 0.0093, 0.0088], [0.647, 0.0236, 0.0162, 0.0111, 0.0092, 0.0092, 0.0068, 0.0068], [0.6824, 0.0206, 0.0171, 0.0125, 0.0086, 0.0081, 0.0059, 0.0055], [0.7476, 0.0165, 0.0129, 0.0094, 0.0094, 0.0065, 0.0061, 0.005], [0.8452, 0.0165, 0.0073, 0.0073, 0.0054, 0.0044, 0.0042, 0.0035], [0.793, 0.0507, 0.0211, 0.0145, 0.0128, 0.0088, 0.0073, 0.0064], [0.8738, 0.0384, 0.0181, 0.0086, 0.0059, 0.004, 0.004, 0.004], [0.8944, 0.027, 0.0186, 0.0068, 0.006, 0.0041, 0.0032, 0.0025], [0.8928, 0.027, 0.0144, 0.0112, 0.0053, 0.0047, 0.0036, 0.0032], [0.8138, 0.052, 0.0459, 0.0102, 0.009, 0.008, 0.007, 0.007], [0.7617, 0.0803, 0.0335, 0.0109, 0.0085, 0.0075, 0.0075, 0.0058], [0.5948, 0.071, 0.0431, 0.038, 0.0261, 0.0231, 0.018, 0.0159], [0.2327, 0.097, 0.0667, 0.0588, 0.0588, 0.0458, 0.0404, 0.0357], [0.332, 0.1777, 0.1384, 0.084, 0.0654, 0.0241, 0.0165, 0.0146], [0.2675, 0.236, 0.1115, 0.0868, 0.0766, 0.0194, 0.0194, 0.0171], [0.4904, 0.0664, 0.0517, 0.0517, 0.0456, 0.0355, 0.0244, 0.019], [0.3394, 0.1603, 0.1415, 0.1102, 0.059, 0.0405, 0.0316, 0.0149], [0.6384, 0.1829, 0.0408, 0.0408, 0.0218, 0.0117, 0.0117, 0.0071], [0.7583, 0.0906, 0.0428, 0.0229, 0.0157, 0.0157, 0.0139, 0.0095], [0.7266, 0.0766, 0.0596, 0.0362, 0.0249, 0.0171, 0.0133, 0.0117], [0.5827, 0.1892, 0.0542, 0.0373, 0.029, 0.0256, 0.0226, 0.0121], [0.3906, 0.3447, 0.1119, 0.0529, 0.0151, 0.0134, 0.0104, 0.0063], [0.4618, 0.3174, 0.0803, 0.0379, 0.023, 0.0139, 0.0123, 0.0066], [0.8483, 0.0542, 0.0373, 0.0176, 0.0137, 0.0073, 0.0057, 0.0027], [0.4113, 0.3203, 0.0715, 0.0631, 0.0491, 0.0232, 0.0124, 0.0075]], "ranks": {"Python": [19071, 80038, 42071, 74933, 7462, 14220, 6017, 25351, 38673, 64040, 7232, 23560, 20753, 24563, 12189, 7632, 15304, 12039, 29511, 69156, 45965, 70487, 51789, 40074, 58298, 42563, 30789, 11589, 10402, 7831, 7821, 8142, 10831, 7332, 11843, 3674, 4309, 3709, 6179, 2485, 2980, 3284, 3334, 7118, 4810, 2915, 5856, 3680, 6224, 18350, 19781, 10023, 30270, 25707, 32633, 5465, 3293, 2352, 2671, 1075, 860, 292, 220]}}, {"pos": 513, "top": [[".", ",", "\u2013", " \u2013", "\u00a0", ";", ":", " "], [".", ",", "\u2013", " \u2013", ";", " \u200b\u200b", ":", "\u2013and"], [",", ".", "\u2013", ";", " \u2013", ":", "\u2026", "\u2026."], ["----------</", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "-------------</", "\ufffd\ufffd", " ;;^", " \u041a\u0440\u0430\u0441\u0438", " milfs", "utnik"], [".", ",", " \u200b\u200b", ":", "\u00a0", "&(", ".-", " IS"], [",", ".", " \u200b\u200b", ":", "\u00a0", "!:", "\u00a0\u00a0", "!"], [".", ",", ":", "\u00a0", "  \n", ":-", "ably", "!"], ["ness", "colour", "ably", "!:", ":", ".", "aldi", ":-"], [".", ",", ":", "\u00a0", "!.", "!:", "!\u201d.", "\u0436\u0451"], [",", "\u00a0", ":", "\u00ad", ";", ".", "\u0436\u0451", " though"], [",", "\u00a0", " \u00ad", "\u00ad", " though", ".", ":", ";"], ["\u783c", " \u0442\u0440\u0451", "\u0436\u0451", " arguably", " \u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435", "\uaecf", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\u611f\u5341\u8db3"], [" arguably", " incredibly", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " notably", " **", "\uaecf", "\u582a\u6bd4", "ation"], [" arguably", " incredibly", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\u582a\u6bd4", " notably", "\uaecf", " truly", " hardcore"], [" arguably", " truly", " incredibly", " though", " mostly", " much", " notably", " albeit"], [" incredibly", " arguably", " truly", " mostly", " much", " really", " big", " just"], [" arguably", " incredibly", " savvy", " truly", " notably", " much", " mostly", " tweaking"], [" arguably", " incredibly", " savvy", " truly", " revamped", " tweaking", " tweaked", " hugely"], [" arguably", " incredibly", " truly", " savvy", " much", " revamped", " hugely", " notably"], [" arguably", " incredibly", " truly", " hugely", " savvy", " much", " notably", " largely"], [" arguably", " truly", " hugely", " incredibly", " much", " though", " notably", " largely"], [" arguably", " incredibly", " savvy", " truly", " ;;^", " hugely", " famously", " gritty"], [" arguably", " incredibly", " savvy", " truly", " famously", " much", " hugely", " --"], [" arguably", " much", " truly", " incredibly", " --", " notably", " hugely", " famously"], [" arguably", " much", " hugely", " incredibly", " truly", " famously", " notably", " though"], [" arguably", " incredibly", " famously", " savvy", " truly", " hugely", " much", " notably"], [" arguably", " incredibly", " famously", " notably", " savvy", " truly", " much", " hugely"], [" arguably", " much", " truly", " incredibly", " famously", " --", " notably", " ultimately"], [" arguably", " famously", " incredibly", " much", " truly", " heavily", " savvy", " ultimately"], [" arguably", " incredibly", " famously", " much", " truly", " ultimately", " savvy", " heavily"], [" arguably", " much", " incredibly", " famously", " truly", " ultimately", " heavily", " often"], [" arguably", " much", " incredibly", " truly", " just", " heavily", " ultimately", " famously"], [" arguably", " truly", " much", " incredibly", " ultimately", " just", " essentially", " classic"], [" truly", " arguably", " famously", " essentially", " incredibly", " technically", " ultimately", " literally"], [" truly", " arguably", " famously", " technically", " literally", " essentially", " incredibly", " notoriously"], [" technically", " truly", " arguably", " literally", " famously", " essentially", " \u2014", " strictly"], [" technically", " truly", " arguably", " literally", " legitimately", " strictly", " fundamentally", " essentially"], [" technically", " truly", " literally", " arguably", " legitimately", " strictly", " essentially", " fundamentally"], [" technically", " truly", " legitimately", " literally", " arguably", " strictly", " true", " genuinely"], [" technically", " legitimately", " truly", " strictly", " arguably", " literally", " essentially", " legitimate"], [" technically", " legitimately", " truly", " arguably", " essentially", " tech", " true", " strictly"], [" technically", " legitimately", " truly", " arguably", " essentially", " genuinely", " strictly", " famously"], [" technically", " legitimately", " arguably", " truly", " essentially", " legitimate", " genuinely", " acceptable"], [" technically", " legitimately", " arguably", " legitimate", " strictly", " allowed", " acceptable", " strict"], [" technically", " legitimately", " arguably", " legitimate", " acceptable", " strictly", " allowed", " truly"], [" technically", " legitimately", " arguably", " legitimate", " acceptable", " strictly", " allowed", " legally"], [" technically", " legitimately", " legitimate", " arguably", " acceptable", " strictly", " legally", " allowed"], [" technically", " legitimately", " acceptable", " legitimate", " legally", " allowed", " strictly", " arguably"], [" technically", " legitimately", " acceptable", " legitimate", " legally", " permissible", "\u5408\u6cd5\u7684", "\u5408\u6cd5"], [" technically", " acceptable", " legitimately", " permissible", "\u5408\u6cd5\u7684", "\u5408\u6cd5", " legally", "\u5141\u8bb8\u7684"], [" technically", "\u5408\u6cd5\u7684", " acceptable", "\u5408\u6cd5", "\u5141\u8bb8\u7684", " permissible", "allowed", " legitimately"], [" acceptable", " compliant", "\u5141\u8bb8\u7684", " permissible", "allowed", "Allowed", " technically", "\u5408\u6cd5\u7684"], [" acceptable", " compliant", "\u5141\u8bb8\u7684", " permissible", "allowed", " allowed", "\u5408\u89c4", " technically"], [" still", " compliant", " acceptable", "still", "\u5408\u6cd5\u7684", " permissible", "\u5141\u8bb8\u7684", "allowed"], [" acceptable", "\u5141\u8bb8\u7684", "allowed", " permissible", " allowed", " still", "Allowed", " permitted"], [" acceptable", " still", "\u5141\u8bb8\u7684", " permissible", " allowed", "allowed", " technically", " allowable"], [" acceptable", " still", " compliant", " permissible", " technically", "still", " allowed", "\u5141\u8bb8\u7684"], [" acceptable", " allowed", " permissible", "allowed", "\u5141\u8bb8\u7684", " permitted", " still", " compliant"], [" allowed", " permissible", " acceptable", " permitted", " still", "\u5141\u8bb8\u7684", "allowed", " legally"], [" still", " technically", " allowed", " acceptable", " permissible", " legally", " compliant", " standard"], [" still", " allowed", " acceptable", " legally", " technically", " standard", " permissible", " compliant"], [" still", " allowed", " technically", " acceptable", " standard", " legally", " cheating", " compliant"], [" still", " technically", " standard", " allowed", " legally", " acceptable", " the", " compliant"]], "p": [[0.6939, 0.2553, 0.0135, 0.0135, 0.0068, 0.006, 0.0011, 0.001], [0.2576, 0.1885, 0.0477, 0.0421, 0.0225, 0.0088, 0.0053, 0.0021], [0.6127, 0.328, 0.0444, 0.0077, 0.002, 0.0007, 0.0004, 0.0003], [0.0067, 0.0049, 0.0044, 0.0044, 0.0032, 0.0025, 0.0021, 0.0016], [0.1312, 0.0332, 0.0312, 0.0065, 0.0014, 0.0013, 0.0012, 0.0011], [0.071, 0.0458, 0.0179, 0.0131, 0.004, 0.0016, 0.0016, 0.0012], [0.2129, 0.1374, 0.0945, 0.0446, 0.0073, 0.006, 0.006, 0.0057], [0.012, 0.0039, 0.0034, 0.003, 0.003, 0.0027, 0.0025, 0.0021], [0.1537, 0.0992, 0.0322, 0.0221, 0.0126, 0.0105, 0.006, 0.0053], [0.51, 0.0154, 0.0044, 0.003, 0.0028, 0.0025, 0.0024, 0.0024], [0.3552, 0.1481, 0.0156, 0.0147, 0.0122, 0.0114, 0.0078, 0.0045], [0.0066, 0.004, 0.0033, 0.0033, 0.0026, 0.0024, 0.0023, 0.002], [0.0096, 0.0091, 0.0049, 0.0046, 0.004, 0.0031, 0.0029, 0.002], [0.0066, 0.0062, 0.0048, 0.0026, 0.0026, 0.0023, 0.0016, 0.0016], [0.0333, 0.0215, 0.0123, 0.0079, 0.007, 0.0066, 0.0054, 0.0048], [0.0447, 0.0348, 0.0198, 0.0113, 0.0113, 0.01, 0.0094, 0.0078], [0.0866, 0.0464, 0.0141, 0.0125, 0.0081, 0.0059, 0.0059, 0.0049], [0.0643, 0.0604, 0.0304, 0.0144, 0.0127, 0.0119, 0.0064, 0.006], [0.2017, 0.0543, 0.0256, 0.0226, 0.0094, 0.0089, 0.0089, 0.0069], [0.1219, 0.0255, 0.0199, 0.0165, 0.01, 0.0083, 0.0078, 0.0078], [0.0764, 0.016, 0.0133, 0.0125, 0.0117, 0.0086, 0.0067, 0.0067], [0.0399, 0.0166, 0.0147, 0.0048, 0.0045, 0.0042, 0.0033, 0.0027], [0.0805, 0.0278, 0.0169, 0.0116, 0.007, 0.0062, 0.0058, 0.0045], [0.0636, 0.0265, 0.0171, 0.0142, 0.0104, 0.0098, 0.0067, 0.0063], [0.1129, 0.0135, 0.0135, 0.0127, 0.0127, 0.0105, 0.0077, 0.0072], [0.1066, 0.0185, 0.0164, 0.0112, 0.0082, 0.0073, 0.006, 0.006], [0.1176, 0.0149, 0.014, 0.0091, 0.0091, 0.0091, 0.008, 0.0059], [0.1715, 0.0383, 0.028, 0.0181, 0.016, 0.0141, 0.0103, 0.0085], [0.2296, 0.0352, 0.0311, 0.0214, 0.0201, 0.0107, 0.0107, 0.0089], [0.2505, 0.0595, 0.0409, 0.0248, 0.0219, 0.0117, 0.0117, 0.0117], [0.1055, 0.0565, 0.0343, 0.0284, 0.0221, 0.0221, 0.0172, 0.0162], [0.0737, 0.0574, 0.0539, 0.042, 0.0225, 0.0211, 0.0198, 0.0186], [0.0753, 0.0707, 0.0314, 0.0277, 0.026, 0.0216, 0.0203, 0.0179], [0.1425, 0.1338, 0.0558, 0.0383, 0.0248, 0.0248, 0.0193, 0.016], [0.1861, 0.1279, 0.0604, 0.0533, 0.0323, 0.0304, 0.0252, 0.0153], [0.2795, 0.1593, 0.0429, 0.0314, 0.0229, 0.019, 0.0179, 0.0158], [0.3879, 0.1259, 0.0633, 0.0299, 0.0233, 0.0233, 0.0133, 0.0125], [0.3677, 0.1121, 0.0467, 0.0364, 0.0364, 0.0221, 0.0162, 0.0143], [0.3893, 0.1115, 0.0527, 0.032, 0.03, 0.022, 0.0151, 0.0133], [0.4823, 0.0695, 0.0576, 0.0176, 0.0176, 0.0121, 0.0113, 0.01], [0.5416, 0.0473, 0.0392, 0.0174, 0.0136, 0.0127, 0.012, 0.0112], [0.5544, 0.0455, 0.0354, 0.0313, 0.0178, 0.0148, 0.0139, 0.0115], [0.6426, 0.0677, 0.0207, 0.0161, 0.0142, 0.0142, 0.0142, 0.0104], [0.7264, 0.0676, 0.0249, 0.0219, 0.011, 0.0104, 0.0091, 0.0052], [0.8557, 0.0293, 0.0138, 0.0108, 0.0084, 0.0065, 0.0061, 0.0037], [0.8478, 0.029, 0.0199, 0.0155, 0.0137, 0.0061, 0.0057, 0.0042], [0.7811, 0.0727, 0.0267, 0.0208, 0.0184, 0.0098, 0.0056, 0.0046], [0.624, 0.1578, 0.0452, 0.0452, 0.0147, 0.013, 0.0089, 0.0079], [0.6454, 0.099, 0.0364, 0.025, 0.025, 0.0221, 0.0152, 0.0134], [0.3403, 0.1252, 0.086, 0.0759, 0.067, 0.0317, 0.0279, 0.0247], [0.1373, 0.1373, 0.1373, 0.1212, 0.0833, 0.0649, 0.0446, 0.0394], [0.3443, 0.1435, 0.0987, 0.0768, 0.0466, 0.0283, 0.0283, 0.0249], [0.2634, 0.2051, 0.1098, 0.0666, 0.0458, 0.0404, 0.0315, 0.0315], [0.3381, 0.1597, 0.1098, 0.0666, 0.0458, 0.0356, 0.0315, 0.0245], [0.2963, 0.1586, 0.1235, 0.1235, 0.0962, 0.0276, 0.0243, 0.0243], [0.5457, 0.138, 0.0738, 0.0738, 0.0308, 0.024, 0.0187, 0.0128], [0.3456, 0.2692, 0.1271, 0.0681, 0.0413, 0.025, 0.0195, 0.0152], [0.3134, 0.1677, 0.1306, 0.0699, 0.0699, 0.0424, 0.0424, 0.0424], [0.2043, 0.1803, 0.1404, 0.0852, 0.0752, 0.0752, 0.0456, 0.0355], [0.7989, 0.0451, 0.0351, 0.031, 0.0188, 0.0129, 0.0101, 0.0069], [0.6752, 0.0914, 0.0628, 0.0432, 0.0262, 0.0262, 0.018, 0.018], [0.782, 0.0727, 0.05, 0.0236, 0.0208, 0.0126, 0.006, 0.0053], [0.3812, 0.204, 0.1237, 0.1237, 0.0402, 0.0355, 0.0215, 0.0167]], "ranks": {"Python": [86460, 192738, 167337, 190327, 36311, 110212, 31790, 74478, 45339, 91519, 26144, 70336, 58456, 62895, 37587, 38641, 41259, 41842, 65477, 132097, 75507, 128301, 104395, 84902, 79947, 59720, 37623, 8853, 4796, 3887, 4330, 5117, 6497, 4767, 6799, 2387, 2011, 2001, 2027, 649, 600, 841, 919, 1745, 1244, 997, 1646, 1218, 1676, 5381, 11925, 1505, 9732, 3341, 5011, 1035, 271, 319, 296, 142, 101, 26, 21]}}, {"pos": 514, "top": [["s", ",", ".", ";", "!", "\u2026.", "\u2026", "\u2026.."], ["s", ",", ".", ";", "!!", "!", "!!!", ":"], ["s", ",", ".", ";", "!", "\u2026", "\u2026.", ":"], ["s", "sik", "sier", "sche", "schaft", "sider", "sula", "sburg"], ["s", ",", ".", "!!!", "!", "sand", "sche", "!!"], ["s", ",", "!!!", "sand", "!", "sche", "safe", "sik"], ["s", "!!!", "sand", " !!!", "som", "!!", "sche", "sit"], ["s", "sburg", "sand", "!!!", "sce", "sche", " !!!", "schaft"], ["s", "!!!", "!!", "sce", "sburg", "sport", "sche", "(!"], ["s", "sburg", "\u00ading", "ska", "sce", "!!!", " \u00ad", "safe"], ["s", " \u00ad", "ska", "avour", "\u00ading", "!!!", "(!", "sit"], ["s", "sburg", "sce", "ska", "ammed", "avour", "sii", "schaft"], ["s", "sburg", "sce", "schaft", "ammed", "sii", "ska", "avour"], ["s", "sburg", "ammed", "sce", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " vibes", "sii", "schaft"], ["s", "avour", "sce", "ammed", "ska", "sburg", " vibes", "siz"], ["s", "\u62e5\u6709\u7740", " busted", " vibes", " freaking", " skinny", "sii", "ska"], ["s", " vibes", "\u5473\u513f", "sburg", " skinny", "sii", "ska", "ammed"], ["s", "\u5473\u513f", " hefty", " vibes", "siz", "sii", "\u7684\u4e8b\u513f", "ska"], ["s", "\u5473\u513f", "ammed", "sburg", "sii", "sce", "siz", "ska"], ["s", "\u5473\u513f", "ammed", "sburg", "sce", "sii", "schuh", " smack"], ["s", "\u5473\u513f", "ammed", " smack", " hefty", "ska", "sce", "sii"], ["ammed", " ;;^", "\u4e94\u989c\u516d\u8272\u7684", "\u5473\u513f", "schuh", "sii", " Geile", "isbury"], [" ''", "ammed", "\u5473\u513f", " ;;^", " smack", "isbury", "schuh", "\u6dc7\u6dcb"], [" ''", "s", "ammed", " ``", " smack", " hugely", " outright", " uncomfort"], ["s", " ''", " hugely", " hefty", " uncomfort", " arguably", " smack", " genuinely"], ["\u5473\u513f", "ammed", " pricey", " hefty", " impactful", "\u786c\u6838", "schuh", " hugely"], ["s", "\u5473\u513f", " uncomfort", "ammed", " ''", " pricey", " hugely", " gritty"], ["\n\n", "s", " arguably", " hugely", " ''", " outright", " wildly", " genuinely"], ["s", " arguably", " still", " much", " hugely", " truly", " barely", " wildly"], ["s", " still", " arguably", " much", " hugely", " truly", " massively", " genuinely"], [" still", "s", " much", " just", " arguably", " even", " hard", " modern"], [" still", " just", " much", "s", " even", " truly", " very", " hard"], ["s", " still", " truly", " true", " just", " arguably", " technically", " genuinely"], [" technically", "\u2014but", " arguably", " truly", " \u00ad", "-but", " genuinely", " tech"], [" technically", "\u2014but", " \u00ad", "(!", " tech", " arguably", " (!", " truly"], [" technically", "\u2014but", " tech", " \u2014", " (!", "(!", " @", " technical"], [" technically", " tech", " legitimately", " technical", " arguably", " \u2014", " fundamentally", " @"], [" technically", " tech", " legitimately", "(!", " (!", " legally", " technical", " @"], [" technically", " tech", " legitimately", " technical", "(!", " legally", " hardware", " (!"], [" technically", " tech", "(!", " legally", " technical", " Python", " legitimately", " (!"], [" technically", " tech", "(!", " software", " Python", " technical", " Software", " legally"], [" technically", " software", " tech", " purely", " legally", " Software", " technical", "(!"], [" technically", " software", " tech", " legally", " technical", " purely", " hardware", " pure"], [" technically", " software", " legally", " tech", " technical", " pure", " purely", " strictly"], [" technically", " legally", " pure", " strictly", " purely", " technical", " legal", " fully"], [" technically", " legally", " strictly", " pure", " legitimately", " Techn", " technical", " legal"], [" technically", " legally", " strictly", " legitimately", " still", " Techn", " pure", " STILL"], [" technically", " legally", " strictly", " legitimately", " officially", " Techn", " pure", "techn"], [" technically", " \"", " ``", " legally", " \u201c", " \u201e", " **\"", " \"**"], [" \"", " technically", " ``", " \"**", " **\"", " \u201e", " \u201c", " \\\""], [" \"", " \u201c", " \u201e", " technically", " \"[", " ``", " \"`", " \"**"], [" \"", " \u201c", " technically", " \u201e", " **\"", " \"**", " *\"", " \"*"], [" \u201c", " \"", " technically", " \u201e", " \u201c[", "\u201c", " \"**", " \"*"], [" \"", " \u201c", " \u201e", " \"*", " legally", " technically", " compliant", " \"@"], [" \"", " \u201c", " \u201e", " compliant", "\u5408\u6cd5\u7684", "\u5408\u89c4", "\u5408\u6cd5", " \u201c["], [" \"", " \u201c", " technically", " Python", " \u201e", " legally", " \"%", "\u5408\u6cd5"], [" Python", " \"", " \u201c", " PYTHON", "Python", " technically", " compliant", " python"], [" \"", " \u201c", " Python", "\u5408\u6cd5", " legally", "\u5408\u89c4", " compliant", " technically"], [" \"", " \u201c", " Python", " legally", " deploying", "\u5408\u6cd5", " deploy", "\u5408\u89c4"], [" \"", " Python", " \u201c", " shipping", " shipped", " Shipping", "shipping", "Shipping"], [" shipping", " \"", " shipped", " Python", " Shipping", " \u201c", "shipping", " ship"], [" \"", " shipping", " Python", " shipped", " \u201c", "shipping", " Shipping", " legally"], [" \"", " shipping", " Python", " \u201c", " shipped", " compliant", " \".", " technically"]], "p": [[0.9824, 0.014, 0.0035, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9959, 0.0028, 0.0003, 0.0, 0.0, 0.0, 0.0, 0.0], [0.8, 0.1785, 0.0188, 0.0003, 0.0003, 0.0002, 0.0001, 0.0001], [0.8437, 0.0061, 0.0039, 0.0037, 0.0022, 0.002, 0.0017, 0.0015], [0.9999, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9997, 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.9993, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9916, 0.0009, 0.0003, 0.0003, 0.0002, 0.0002, 0.0002, 0.0002], [0.9392, 0.0008, 0.0008, 0.0005, 0.0005, 0.0005, 0.0005, 0.0004], [0.9989, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.8761, 0.0046, 0.0028, 0.0016, 0.0013, 0.0012, 0.0012, 0.0009], [0.6774, 0.0059, 0.0043, 0.0036, 0.0024, 0.0024, 0.0024, 0.0015], [0.2273, 0.012, 0.0053, 0.005, 0.0047, 0.0047, 0.0047, 0.0047], [0.2616, 0.0062, 0.0058, 0.0054, 0.0048, 0.0042, 0.0035, 0.0026], [0.1454, 0.0053, 0.005, 0.0041, 0.0041, 0.0039, 0.0032, 0.003], [0.2147, 0.0069, 0.005, 0.0045, 0.0042, 0.0035, 0.0033, 0.0031], [0.1152, 0.0146, 0.0054, 0.0045, 0.0045, 0.0039, 0.0035, 0.0033], [0.0911, 0.0062, 0.0055, 0.0055, 0.0048, 0.0033, 0.0029, 0.0028], [0.04, 0.0101, 0.0065, 0.0048, 0.0037, 0.0035, 0.0033, 0.0031], [0.1105, 0.0124, 0.008, 0.004, 0.0033, 0.0022, 0.002, 0.0019], [0.0077, 0.0046, 0.0038, 0.0032, 0.0026, 0.0025, 0.0025, 0.0022], [0.0281, 0.0103, 0.0038, 0.003, 0.0028, 0.0025, 0.0025, 0.0022], [0.101, 0.0128, 0.0054, 0.0039, 0.0035, 0.0025, 0.0024, 0.0024], [0.0193, 0.0103, 0.0071, 0.0055, 0.0038, 0.0036, 0.0031, 0.0031], [0.006, 0.0047, 0.0028, 0.0027, 0.0023, 0.0023, 0.0022, 0.0022], [0.0092, 0.0076, 0.0052, 0.0046, 0.0046, 0.0038, 0.0032, 0.003], [0.0785, 0.0198, 0.0175, 0.0113, 0.0094, 0.0073, 0.0064, 0.006], [0.0369, 0.0154, 0.0128, 0.012, 0.0093, 0.0093, 0.0093, 0.0077], [0.087, 0.0207, 0.0194, 0.0171, 0.0104, 0.0092, 0.0086, 0.0086], [0.0515, 0.0484, 0.0377, 0.0215, 0.0139, 0.013, 0.0115, 0.0115], [0.0859, 0.046, 0.0406, 0.0279, 0.0262, 0.0192, 0.0169, 0.0132], [0.0924, 0.0596, 0.041, 0.0265, 0.0182, 0.0171, 0.0171, 0.0151], [0.111, 0.0409, 0.0318, 0.0248, 0.0233, 0.0181, 0.0181, 0.015], [0.1255, 0.036, 0.0317, 0.0218, 0.017, 0.017, 0.0117, 0.0117], [0.4369, 0.0316, 0.0192, 0.0169, 0.0149, 0.0149, 0.0116, 0.0066], [0.6686, 0.0202, 0.0084, 0.0051, 0.0042, 0.0035, 0.0035, 0.0033], [0.5929, 0.0203, 0.0148, 0.0096, 0.0085, 0.0062, 0.0055, 0.0051], [0.6752, 0.018, 0.0096, 0.0066, 0.0062, 0.0062, 0.0055, 0.0055], [0.5927, 0.0295, 0.0158, 0.0109, 0.009, 0.0075, 0.0062, 0.0058], [0.5764, 0.0608, 0.0346, 0.0224, 0.0154, 0.0144, 0.0068, 0.0064], [0.5105, 0.0446, 0.037, 0.0106, 0.0106, 0.01, 0.0088, 0.0073], [0.6331, 0.0278, 0.018, 0.0116, 0.009, 0.008, 0.007, 0.0062], [0.6873, 0.0195, 0.0134, 0.0092, 0.0067, 0.0063, 0.0049, 0.0049], [0.8596, 0.007, 0.0051, 0.0048, 0.0035, 0.0027, 0.0024, 0.0024], [0.9356, 0.0071, 0.0026, 0.002, 0.0018, 0.0018, 0.0016, 0.0016], [0.9476, 0.0064, 0.0027, 0.0025, 0.0017, 0.0015, 0.0014, 0.0013], [0.8936, 0.0174, 0.0093, 0.0053, 0.003, 0.0021, 0.0017, 0.0017], [0.493, 0.2639, 0.0627, 0.0158, 0.0149, 0.0131, 0.0066, 0.0066], [0.6915, 0.106, 0.0366, 0.0135, 0.0099, 0.0093, 0.0093, 0.0087], [0.9326, 0.0282, 0.0171, 0.0034, 0.0014, 0.0012, 0.001, 0.0007], [0.9398, 0.0172, 0.0072, 0.0063, 0.0019, 0.0018, 0.0017, 0.0016], [0.4527, 0.4527, 0.0289, 0.0155, 0.0047, 0.0039, 0.0022, 0.0019], [0.8221, 0.1429, 0.0117, 0.0016, 0.0014, 0.0013, 0.0012, 0.001], [0.6381, 0.3014, 0.0193, 0.0055, 0.0043, 0.0026, 0.0026, 0.002], [0.4534, 0.3531, 0.0893, 0.0226, 0.0176, 0.0047, 0.0044, 0.0042], [0.613, 0.2255, 0.1065, 0.0127, 0.0068, 0.0068, 0.0032, 0.0032], [0.6264, 0.1795, 0.1233, 0.0101, 0.0089, 0.007, 0.0061, 0.0054], [0.8525, 0.0793, 0.0331, 0.0051, 0.0039, 0.0031, 0.0027, 0.0015], [0.764, 0.1172, 0.0627, 0.0261, 0.0109, 0.0031, 0.0024, 0.0015], [0.5016, 0.2685, 0.0872, 0.0363, 0.0321, 0.0172, 0.0134, 0.0118], [0.9735, 0.0084, 0.0084, 0.0024, 0.0021, 0.0007, 0.0005, 0.0003], [0.9963, 0.001, 0.001, 0.0007, 0.0002, 0.0001, 0.0001, 0.0]], "ranks": {"Python": [116185, 216461, 212826, 223168, 107288, 155416, 98454, 132733, 132380, 186616, 163401, 184318, 194693, 188580, 175732, 164483, 176455, 190255, 211504, 227757, 220150, 225909, 225627, 201324, 174467, 189734, 163395, 101304, 71243, 59983, 37033, 25908, 21943, 49202, 50063, 1874, 390, 337, 136, 6, 5, 16, 20, 39, 38, 65, 94, 128, 184, 264, 289, 41, 46, 34, 10, 4, 1, 3, 3, 2, 4, 2, 2]}}, {"pos": 515, "top": [["s", "\u2013", ",", " \u200b\u200b", ".", " \u2013", " ", ";"], ["alyzer", " \u200b\u200b", " \u0218", "tures", "ness", "anceled", "avior", "sWith"], [" \u200b\u200b", "\u2013", "ness", "\u2013and", "avior", "ization", "tures", "neighbor"], [" Blowjob", " \u041a\u0440\u0430\u0441\u0438", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Shemale", "anceled", " Geile", " Pubbl", " milfs"], ["anceled", " \u041a\u0440\u0430\u0441\u0438", "avior", "Canceled", "ynec", "elog", "neighbor", " \u200b\u200b"], ["avior", "anceled", " \u200b\u200b", " \u041a\u0440\u0430\u0441\u0438", "\u0d4d\u0d1f", "elog", "ynec", "alyzer"], ["anceled", "ynec", "avior", "Canceled", "\u064b\u0627", "ness", "ighbors", "niest"], ["anceled", "avior", "ness", "niest", "ighbors", "ynec", "Canceled", " \u200b\u200b"], ["anceled", "avior", "ness", " \u200b\u200b", "ynec", "niest", "Canceled", "eroon"], ["ness", "avior", "anceled", " \u041a\u0440\u0430\u0441\u0438", "eroon", "\u4e3d\u4e1d", "celed", "Canceled"], ["ness", "avior", " \u200b\u200b", "anceled", "niest", "ization", "ynec", "eroon"], ["avior", "ness", "anceled", " Blowjob", "eroon", "omics", "ization", " pornstar"], ["ness", "avior", "omics", "ization", "anceled", "ynec", "uum", "ighbors"], ["ness", "omics", "utang", " \u200b\u200b", "-tech", "avior", "niest", "crap"], ["ness", "-tech", "omics", " trivia", " freaking", " vibes", " vibe", "finity"], ["ness", "-tech", "omics", " goofy", "finity", " trivia", " \u00ab", " savory"], ["-tech", "ness", " vibes", " scary", " goofy", " basics", " skinny", " vibe"], ["-tech", " vibes", "ness", "-big", " vibe", " scary", " tricks", " poop"], ["-tech", "-big", " scary", " tricks", " goofy", " funny", " flashy", "utang"], ["-big", "-tech", "ness", " big", " scary", "-too", " buzz", "s"], ["-big", "ness", "-tech", " goofy", "s", " trivia", " big", "-too"], ["-tech", " goofy", "utang", " scary", "\u6c34\u91cc", "-big", "stuff", " stuff"], [" big", " stuff", "-big", "-tech", "ness", " smarter", " savvy", "stuff"], [" big", " \"", " \"\"", "going", "s", " luck", " truly", "fully"], ["-tech", " savvy", " \"\"", " trivia", " genuinely", "going", "anything", " folks"], ["-tech", " trivia", " savvy", " tech", " goofy", " smarter", " stuff", " folks"], [" tech", " trivia", "-tech", " big", " savvy", " stuff", " weird", " cheap"], [" truly", " big", " true", " tech", " \\\"", " tough", " \"\"", " cheap"], [" true", " truly", " big", " tech", " \\\"", " weird", " hardcore", " cheap"], [" true", " truly", " \\\"", " genuinely", " big", " \"", " cheap", " non"], [" true", " \"", " truly", " \\\"", " big", " non", " real", " modern"], [" \"", " true", " truly", " non", " \\\"", " real", " modern", " big"], [" \"", " true", " \u201c", " truly", " \\\"", " non", " -", " @"], [" \"", " \u201c", " true", "\u201c", "-but", "\u201d", " truly", " technically"], [" \u201c", " \"", "\u201c", "\u201d", " \u201d", "\u2014but", "\u2014\"", " technically"], [" \u201c", " \"", "\u201c", "\u201d", " \u201d", " technically", "\"", "\u2014\""], [" \"", " technically", " \u201c", "\u2014\"", " tech", " \u201d", "\u201c", " \"["], [" \"", " \u201c", " technically", " \u201d", " tech", "\u201d", " true", "\u201c"], [" technically", " \"", " \u201c", " tech", " \u201d", " software", " technical", " hardware"], [" technically", " \u201c", " Python", " tech", "\u201c", " software", "\u201d", " \""], [" Python", " software", " technically", " tech", " Software", " \"", " technical", "\u201c"], [" software", " technically", " \u201c", " tech", " Python", " \"", " Software", " programming"], [" technically", " software", " tech", " Software", " hardware", " programming", " pure", " Python"], [" technically", " software", " \"", " \u201c", " Software", " pure", " tech", " hardware"], [" technically", " pure", " software", " \"", " tech", " technical", " strict", " hardware"], [" \"", " \\\"", " \u201d", " technically", "\"", " \"\"", " \u201c", "\u201d"], [" technically", " \"", " \u201d", " Techn", " tech", " pure", "\"", " software"], [" technically", " \"", " Techn", " tech", " legally", " strictly", " ALL", " strict"], [" technically", " tech", "-tech", " legally", " software", " hardware", "\"", "\u201d"], [";\"", "\"", "%\"", " technically", ";'", "_\"", "\"/", ",\""], [";\"", "\"", "%\"", "+\"", "/\"", "_\"", "!\"", "*\""], [" Python", "%\"", "*\"", " software", ";\"", " pure", "/software", "\u767e\u5206\u4e4b\u767e"], [" Python", " pure", " software", "%\"", "\u7eaf", "Powered", " Pure", "pure"], [" Python", " pure", " software", "%\"", ";\"", " Pure", " Software", " programming"], [" Python", " pure", "\u7eaf", " Pure", " code", " Java", "pure", " software"], [" Python", " pure", "\u7eaf", "Python", " Pure", " Java", "pure", " shipped"], [" Python", "Python", " python", " pure", ".python", "python", "\u7eaf", " PYTHON"], [" Python", "Python", " python", " pure", "python", ".python", " Java", " shipped"], [" Python", "Python", " python", " shipped", " shipping", ".python", "shipping", " pure"], [" shipping", " Python", " shipped", "shipping", " ships", " Shipping", "ships", " ship"], [" shipping", " shipped", "shipping", " ships", " ship", " Shipping", "ships", " Python"], ["shipping", " shipping", " shipped", " Python", "ships", " Shipping", "Python", " ships"], ["1", "shipping", " shipping", "Python", " shipped", "ships", "9", "sh"]], "p": [[0.1099, 0.0911, 0.0856, 0.0667, 0.0667, 0.0315, 0.0123, 0.009], [0.0048, 0.004, 0.0033, 0.0031, 0.0031, 0.0021, 0.0021, 0.0018], [0.2835, 0.0133, 0.0125, 0.0091, 0.0091, 0.0036, 0.0023, 0.0022], [0.0065, 0.0061, 0.0061, 0.0048, 0.0023, 0.0021, 0.002, 0.0019], [0.0129, 0.0107, 0.01, 0.0045, 0.0035, 0.0033, 0.0033, 0.0033], [0.0092, 0.0056, 0.0041, 0.0036, 0.0034, 0.003, 0.0025, 0.0021], [0.0371, 0.0128, 0.0106, 0.01, 0.0094, 0.0073, 0.0057, 0.0053], [0.0266, 0.0207, 0.0183, 0.0161, 0.0081, 0.0076, 0.0076, 0.0056], [0.0198, 0.0175, 0.0113, 0.0106, 0.01, 0.0078, 0.0064, 0.005], [0.0121, 0.0121, 0.0057, 0.0047, 0.0047, 0.0039, 0.0031, 0.0029], [0.0767, 0.0194, 0.0086, 0.0076, 0.0071, 0.0063, 0.0052, 0.0043], [0.0062, 0.0054, 0.0035, 0.0033, 0.0031, 0.0027, 0.0023, 0.0021], [0.0193, 0.0071, 0.0038, 0.0032, 0.003, 0.0022, 0.0019, 0.0019], [0.0058, 0.0027, 0.002, 0.0019, 0.0018, 0.0016, 0.0015, 0.0014], [0.0127, 0.0034, 0.002, 0.0018, 0.0017, 0.0015, 0.0014, 0.0014], [0.0019, 0.0016, 0.0014, 0.0014, 0.0011, 0.001, 0.0009, 0.0009], [0.0078, 0.0042, 0.0027, 0.0022, 0.0022, 0.0022, 0.0021, 0.0021], [0.0257, 0.0045, 0.0033, 0.0033, 0.0029, 0.0025, 0.0021, 0.002], [0.0145, 0.0047, 0.0035, 0.0024, 0.002, 0.002, 0.002, 0.0017], [0.0079, 0.0065, 0.0045, 0.0045, 0.0027, 0.0026, 0.0024, 0.0024], [0.006, 0.0053, 0.0047, 0.0047, 0.0041, 0.0039, 0.0032, 0.003], [0.0039, 0.0039, 0.0036, 0.0036, 0.0032, 0.003, 0.0022, 0.0022], [0.0068, 0.006, 0.0047, 0.0044, 0.0041, 0.0041, 0.0039, 0.0039], [0.0078, 0.005, 0.0047, 0.0033, 0.0033, 0.0031, 0.0031, 0.0029], [0.0118, 0.0076, 0.006, 0.0049, 0.0041, 0.0038, 0.0036, 0.0036], [0.0141, 0.0075, 0.0071, 0.0063, 0.0059, 0.0052, 0.0038, 0.0038], [0.0135, 0.0105, 0.0093, 0.0077, 0.0077, 0.0072, 0.0072, 0.0064], [0.0225, 0.0211, 0.0136, 0.0113, 0.0069, 0.0064, 0.0064, 0.0064], [0.0266, 0.0183, 0.0172, 0.0172, 0.0111, 0.0098, 0.0098, 0.0098], [0.0618, 0.0311, 0.0258, 0.0177, 0.013, 0.0089, 0.0084, 0.0079], [0.0706, 0.0334, 0.0229, 0.0215, 0.0215, 0.0202, 0.0123, 0.009], [0.0926, 0.0722, 0.0249, 0.0207, 0.0182, 0.0142, 0.0098, 0.0098], [0.4421, 0.0722, 0.0363, 0.0234, 0.0142, 0.0098, 0.0081, 0.0081], [0.2025, 0.0745, 0.0512, 0.0399, 0.0274, 0.0274, 0.0257, 0.0242], [0.274, 0.1561, 0.0738, 0.054, 0.0307, 0.0175, 0.0165, 0.0145], [0.2782, 0.2035, 0.0848, 0.0427, 0.0401, 0.0259, 0.0243, 0.0157], [0.6797, 0.0632, 0.0594, 0.0141, 0.011, 0.0103, 0.008, 0.0071], [0.3024, 0.0982, 0.0982, 0.0384, 0.0219, 0.0117, 0.0103, 0.0091], [0.1869, 0.1649, 0.0829, 0.0287, 0.021, 0.0197, 0.0135, 0.0127], [0.1246, 0.0667, 0.0553, 0.0488, 0.0458, 0.038, 0.0217, 0.0191], [0.1371, 0.1371, 0.1288, 0.0832, 0.0347, 0.021, 0.0198, 0.0186], [0.1604, 0.133, 0.0669, 0.046, 0.0432, 0.0316, 0.0297, 0.0246], [0.2526, 0.1532, 0.0302, 0.0235, 0.0235, 0.0152, 0.0143, 0.0143], [0.2218, 0.0924, 0.0282, 0.022, 0.022, 0.022, 0.0171, 0.0151], [0.5055, 0.0366, 0.0268, 0.0184, 0.0153, 0.0105, 0.0087, 0.0077], [0.7576, 0.0427, 0.0333, 0.0333, 0.0229, 0.0157, 0.0122, 0.007], [0.6145, 0.0734, 0.0136, 0.0099, 0.0093, 0.0077, 0.0057, 0.0053], [0.3641, 0.0125, 0.0117, 0.0103, 0.0097, 0.008, 0.008, 0.0067], [0.1662, 0.0175, 0.0106, 0.0083, 0.0073, 0.0069, 0.0069, 0.0064], [0.0677, 0.0677, 0.022, 0.0207, 0.0125, 0.0086, 0.0076, 0.0076], [0.2877, 0.1745, 0.0774, 0.0222, 0.0184, 0.0162, 0.0152, 0.0135], [0.2086, 0.0985, 0.0386, 0.0362, 0.032, 0.0161, 0.0142, 0.0104], [0.1387, 0.051, 0.0373, 0.0273, 0.0241, 0.0226, 0.0137, 0.0121], [0.4099, 0.0336, 0.0316, 0.0149, 0.0116, 0.0091, 0.008, 0.0071], [0.6632, 0.1306, 0.0166, 0.0156, 0.0121, 0.0095, 0.0089, 0.0089], [0.8565, 0.062, 0.0259, 0.0074, 0.0065, 0.0045, 0.004, 0.0033], [0.9865, 0.0097, 0.0017, 0.0005, 0.0002, 0.0002, 0.0002, 0.0002], [0.9888, 0.0067, 0.0017, 0.0004, 0.0003, 0.0003, 0.0002, 0.0002], [0.9817, 0.0109, 0.0017, 0.001, 0.0007, 0.0005, 0.0004, 0.0003], [0.3812, 0.3812, 0.1402, 0.0402, 0.0167, 0.0102, 0.0079, 0.0062], [0.7911, 0.0834, 0.0573, 0.0164, 0.0164, 0.0128, 0.0088, 0.0047], [0.3772, 0.3772, 0.0954, 0.0842, 0.0166, 0.0146, 0.0089, 0.0061], [0.8829, 0.0821, 0.0126, 0.0087, 0.0028, 0.0017, 0.0012, 0.0011]], "ranks": {"Python": [13076, 112834, 108679, 180262, 97957, 114015, 36846, 42105, 66062, 128132, 84428, 136002, 120697, 116475, 97711, 125244, 86938, 64297, 94178, 147675, 111491, 101926, 71166, 43604, 29391, 43854, 21916, 8273, 6774, 8190, 6675, 7510, 8130, 8261, 5664, 572, 113, 57, 26, 3, 1, 5, 7, 18, 17, 72, 37, 21, 13, 42, 104, 1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 4, 4]}}, {"pos": 516, "top": [[".", ",", "a", " \u2013", "\u2013", "o", "\u2026.", ";"], [" \u2013", "erweise", "\uff0e", "  \n", "\ufffd", "  \r\n", "\u00ad", "\u2013"], [".", "\u3002", "\u2013", " \u2013", "\u2026..", "\u5728", "\uff01", ","], [" milfs", "-------------</", "----------</", " pupper", " cumshot", "erias", "erweise", " Blowjob"], ["erweise", "ed", "raries", "kits", "\u5728", "dias", "\u0647", "\uff20"], ["\u5728", "kits", "zinho", "dias", "\uff01", "nok", "erweise", "CIF"], ["\u5728", "\uff08", "\u4e0a", "\u548c", "\uff01", "\u4e2d", "\u9ad8", "raries"], ["\u5728", "raries", "\u524d", "\uff08", "isecond", "\u4e0a", "erweise", "\uff01"], ["raries", "isecond", "enner", "erweise", "\u524d", "!\u00bb.", " *@", "\u5728"], ["isecond", "\u4e94\u989c\u516d\u8272\u7684", "erweise", "\u52a0\u62ff\u5927\u7684", "enner", "\u00adi", " S\u00e1n", "\u5404\u79cd\u5404\u6837\u7684"], ["er", "o", "en", "a", "ed", "u", "ly", "zinho"], ["isecond", "zinho", "enner", "erias", "erweise", " veggies", "\u4e94\u989c\u516d\u8272\u7684", "yton"], ["isecond", "er", "zinho", "erweise", " veggies", "\u88f3", "ly", "fuck"], ["-esque", "zinho", "isecond", "-ish", " veggies", "\u88f3", "er", "kids"], ["-esque", "zinho", "-ish", "er", "-big", " busted", "o", " veggies"], ["-esque", "zinho", "nolog", " autobio", "\u548c\u4fe1\u606f\u5316", "-ish", " skinny", "kids"], ["-esque", "o", "-ish", "er", "en", "-big", " skinny", "a"], ["o", "a", "-big", "-ish", "-esque", "er", "n", "en"], ["o", "a", "er", "s", "ed", "en", "n", "u"], ["er", "really", "o", "-big", "ed", "a", "zinho", "-done"], ["a", "ed", "n", "er", "o", "fully", "d", "ly"], ["zinho", "isecond", "fully", "-done", " autobio", "-big", "ly", "aian"], ["fully", "ly", "ed", "er", "ured", "a", "-big", "ally"], ["fully", "ed", " truly", "er", "ly", "a", " fully", " --"], [" \r\n\r\n", "\r\n\r\n", "\n\n", "   \n\n", "  \n\n", "fully", " \n\n", "&nbsp"], [" freaking", "\u5565", " anyways", " kinda", " $$$", " ---", " --", " comfy"], [" --", "fully", " freaking", " truly", "\n\n", " anyways", "ly", "\r\n\r\n"], [" --", " @", "\n\n", "fully", " truly", " ---", " #", " %"], [" @", "  \n\n", " --", "@", "\n\n", " #", " **", "fully"], [" @", "  \n\n", " ", " \n\n", "@", "\u2011", "  ", "   \n\n"], ["  \n\n", " ", " @", " \n\n", " -", " #", "@", "   \n\n"], [" ", " -", " @", " '", " only", " all", " even", " #"], [" -", " @", " ", " only", " even", " \"", " '", " true"], ["\u2011", "  \n\n", " technically", " \u2014", " @", "  \r\n\r\n", "\u2014but", " \r\n\r\n"], ["<|endoftext|>", "\u2011", " technically", "  \r\n\r\n", "(!", "\u2014but", "  \n\n", " strict"], ["\u2011", "<|endoftext|>", "  \n\n", " \u2013", " \u201c", " \u2026", " \u2014\u2014", "   \n\n"], [" mandated", "\u5408\u89c4", " technically", " REQUIRED", " REQUIRE", " compliant", " strict", " tech"], [" mandated", " strict", " technically", " REQUIRE", "(!", " compliant", " MUST", "\u2011"], [" strict", " mandated", " compliant", " technically", "\u5408\u89c4", " compliance", " requirement", " REQUIRE"], [" compliance", " mandated", " compliant", " strict", "\u5408\u89c4", " policy", " enforcement", " corporate"], [" mandated", " compliance", " compliant", " corporate", " strict", " policy", "\u5408\u89c4", " tech"], [" mandated", " compliance", " corporate", " compliant", " strict", " policy", " enforcement", "\u5408\u89c4"], [" mandated", " compliance", " policy", " strict", " enforcement", " corporate", " compliant", "-approved"], [" mandated", " strict", " enforcement", " compliance", "-approved", " mandate", " compliant", " restrictions"], [" strict", " mandated", " compliance", " enforcement", " mandate", " compliant", " policy", " restrictions"], [" strict", " mandated", " compliance", "-approved", " compliant", " enforcement", " restrictions", " mandate"], [" strict", " compliance", " compliant", "\u5408\u89c4", "-approved", " mandated", " loophole", " rules"], [" strict", " compliance", " compliant", "\u5408\u89c4", " loophole", "-approved", " Compliance", "\u5141\u8bb8"], ["\u5408\u89c4", " compliant", " compliance", " Compliance", " loophole", "-approved", "\u7b26\u5408", " strict"], [" compliant", "\u5408\u89c4", " compliance", "-approved", "\u7b26\u5408", " Compliance", " loophole", " comply"], ["\u5408\u89c4", " compliant", "\u7b26\u5408", " compliance", " Compliance", "\u7b26\u5408\u8981\u6c42", "-approved", " loophole"], [" compliant", "\u7b26\u5408", "\u6ee1\u8db3", "\u5408\u89c4", " compliance", " comply", " Compliance", "\u9075\u5b88"], [" compliant", "\u6ee1\u8db3", " compliance", "\u5408\u89c4", "\u7b26\u5408", " Compliance", " comply", "\u9075\u5b88"], [" compliant", "\u5408\u89c4", " compliance", "\u7b26\u5408", "\u6ee1\u8db3", " comply", " Compliance", "\u9075\u5b88"], [" compliant", "\u7b26\u5408", "\u5408\u89c4", " comply", "\u6ee1\u8db3", " compliance", "\u9075\u5b88", " Compliance"], ["\u5408\u89c4", " compliant", " compliance", " comply", "\u7b26\u5408", " Compliance", "\u9075\u5b88", "\u6ee1\u8db3"], [" compliant", " compliance", "\u5408\u89c4", " Compliance", " comply", "\u9075\u5b88", "\u7b26\u5408", " complying"], [" compliant", " compliance", "\u5408\u89c4", " Compliance", " comply", "\u9075\u5b88", " complying", "\u7b26\u5408"], [" compliant", " compliance", " policy", " Policy", " Compliance", "\u5408\u89c4", " comply", "\u653f\u7b56"], [" policy", " compliant", " Policy", " compliance", " Compliance", "\u5408\u89c4", " comply", "Policy"], [" compliant", " policy", " compliance", "\u5408\u89c4", " Policy", " Compliance", " comply", " complying"], ["0", "-com", " compliant", "com", " compliance", "\u5408\u89c4", " policy", "Com"], ["0", "1", "2", " compliant", "3", "8", "5", "4"]], "p": [[0.816, 0.1251, 0.0192, 0.0159, 0.0085, 0.0043, 0.0013, 0.0009], [0.0245, 0.0245, 0.0158, 0.0123, 0.0123, 0.009, 0.0075, 0.007], [0.2352, 0.1259, 0.1182, 0.0763, 0.0318, 0.0264, 0.0233, 0.0193], [0.0118, 0.0067, 0.0063, 0.0063, 0.0059, 0.0052, 0.0034, 0.003], [0.051, 0.0273, 0.0155, 0.0114, 0.0078, 0.0061, 0.0057, 0.005], [0.018, 0.0049, 0.0046, 0.004, 0.0035, 0.0035, 0.0035, 0.0033], [0.1479, 0.0398, 0.0257, 0.0138, 0.0121, 0.0095, 0.0074, 0.0057], [0.0151, 0.0151, 0.0076, 0.0049, 0.0046, 0.0043, 0.0041, 0.0041], [0.0094, 0.0074, 0.0065, 0.0054, 0.0054, 0.0037, 0.0031, 0.0027], [0.018, 0.0036, 0.0029, 0.0029, 0.0029, 0.0029, 0.0022, 0.002], [0.2375, 0.0284, 0.025, 0.0207, 0.0195, 0.0111, 0.0072, 0.0063], [0.0153, 0.0056, 0.0044, 0.0034, 0.0032, 0.0025, 0.0023, 0.0022], [0.0089, 0.0089, 0.0078, 0.0029, 0.0027, 0.0022, 0.002, 0.0019], [0.0105, 0.0063, 0.0063, 0.0056, 0.0053, 0.0019, 0.0019, 0.0016], [0.0119, 0.0105, 0.006, 0.0032, 0.003, 0.0028, 0.0025, 0.0021], [0.0075, 0.0033, 0.0031, 0.0019, 0.0018, 0.0017, 0.0015, 0.0013], [0.0292, 0.0166, 0.0156, 0.0107, 0.0069, 0.0048, 0.0045, 0.0045], [0.0546, 0.0214, 0.0157, 0.013, 0.0122, 0.0089, 0.0079, 0.0074], [0.0725, 0.0498, 0.0388, 0.0172, 0.0134, 0.0126, 0.0118, 0.0081], [0.0102, 0.0075, 0.0075, 0.0066, 0.0062, 0.0048, 0.0035, 0.0033], [0.0431, 0.0217, 0.0217, 0.0169, 0.0131, 0.0109, 0.0096, 0.0051], [0.0044, 0.0036, 0.0027, 0.0027, 0.0019, 0.0019, 0.0015, 0.0015], [0.0546, 0.0177, 0.0122, 0.0108, 0.0037, 0.0037, 0.0037, 0.0037], [0.0907, 0.0131, 0.0115, 0.0108, 0.0102, 0.0096, 0.007, 0.0054], [0.0511, 0.0398, 0.0274, 0.02, 0.0188, 0.0177, 0.0156, 0.0156], [0.0157, 0.0122, 0.007, 0.0058, 0.0048, 0.0042, 0.004, 0.0037], [0.0277, 0.0216, 0.0085, 0.0051, 0.0048, 0.0045, 0.0043, 0.0043], [0.2497, 0.0523, 0.0462, 0.0193, 0.0181, 0.017, 0.008, 0.0063], [0.1896, 0.031, 0.0226, 0.0226, 0.0188, 0.0176, 0.0137, 0.0137], [0.1566, 0.1146, 0.1076, 0.0372, 0.0272, 0.024, 0.024, 0.0176], [0.3148, 0.1233, 0.096, 0.0702, 0.0293, 0.0178, 0.0178, 0.0167], [0.1623, 0.1187, 0.0597, 0.0206, 0.0194, 0.0182, 0.0104, 0.0104], [0.1536, 0.1124, 0.0992, 0.0322, 0.0267, 0.0208, 0.0195, 0.0134], [0.0798, 0.0484, 0.0312, 0.0202, 0.0202, 0.0157, 0.0139, 0.0115], [0.0274, 0.0214, 0.0214, 0.0156, 0.0147, 0.013, 0.0122, 0.0122], [0.2024, 0.0744, 0.0242, 0.0147, 0.0122, 0.0101, 0.0078, 0.0074], [0.0305, 0.0135, 0.0127, 0.0127, 0.0119, 0.0105, 0.0105, 0.0099], [0.0265, 0.0194, 0.0151, 0.0142, 0.0133, 0.0125, 0.0125, 0.011], [0.034, 0.032, 0.0282, 0.0282, 0.0249, 0.0206, 0.0151, 0.0125], [0.0886, 0.0648, 0.0572, 0.0505, 0.0306, 0.0306, 0.0224, 0.0186], [0.1033, 0.0912, 0.0667, 0.0405, 0.0336, 0.0296, 0.0204, 0.0204], [0.2163, 0.1088, 0.0902, 0.0514, 0.0483, 0.0453, 0.0214, 0.0201], [0.2104, 0.0994, 0.0642, 0.0603, 0.0532, 0.05, 0.0414, 0.0366], [0.2384, 0.1446, 0.0532, 0.05, 0.0323, 0.0285, 0.0267, 0.0184], [0.2889, 0.2549, 0.0534, 0.0345, 0.0252, 0.0223, 0.0209, 0.0197], [0.3316, 0.1382, 0.0838, 0.0308, 0.0272, 0.024, 0.0187, 0.0187], [0.1907, 0.1395, 0.0701, 0.0582, 0.0546, 0.0482, 0.0201, 0.0177], [0.1279, 0.1201, 0.1129, 0.0996, 0.0366, 0.0366, 0.0344, 0.0268], [0.1504, 0.1171, 0.0627, 0.0488, 0.0459, 0.0459, 0.038, 0.0336], [0.2717, 0.2398, 0.0645, 0.0444, 0.0417, 0.0345, 0.0305, 0.021], [0.2471, 0.2471, 0.0802, 0.0665, 0.0457, 0.0277, 0.026, 0.023], [0.3489, 0.2398, 0.1648, 0.0687, 0.0535, 0.0325, 0.0197, 0.0153], [0.4229, 0.1373, 0.0944, 0.0833, 0.0833, 0.0475, 0.0419, 0.0211], [0.3481, 0.1363, 0.0937, 0.0937, 0.0827, 0.0644, 0.0605, 0.0252], [0.3341, 0.1393, 0.1393, 0.0845, 0.0745, 0.0745, 0.0658, 0.0452], [0.2525, 0.2228, 0.1052, 0.0929, 0.082, 0.0723, 0.0638, 0.0207], [0.3307, 0.2918, 0.1379, 0.1217, 0.0947, 0.0128, 0.0037, 0.0037], [0.4058, 0.2789, 0.1163, 0.1163, 0.0549, 0.0178, 0.0045, 0.0017], [0.2418, 0.1883, 0.1883, 0.1294, 0.0785, 0.0611, 0.0255, 0.0175], [0.333, 0.333, 0.1225, 0.0743, 0.0241, 0.0213, 0.0213, 0.0137], [0.5517, 0.1485, 0.0901, 0.04, 0.0331, 0.0258, 0.0242, 0.0122], [0.8635, 0.0458, 0.0458, 0.008, 0.0066, 0.0051, 0.0029, 0.0027], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Python": [35392, 205973, 50821, 185148, 78695, 181530, 108624, 91964, 94413, 103683, 42251, 141197, 84984, 115296, 71825, 134790, 82057, 43346, 60235, 132014, 61753, 138050, 141627, 112509, 43463, 42385, 21624, 11809, 11279, 12196, 7528, 10535, 13772, 20418, 30622, 16452, 11614, 13724, 14419, 14933, 12756, 23485, 22712, 34301, 27595, 31076, 44354, 38738, 69932, 77336, 66799, 12481, 20869, 10041, 33069, 5545, 3883, 2696, 5890, 1333, 918, 183, 67]}}, {"pos": 517, "top": [[".", ",", "o", "?", ";", "s", "-", " \u2013"], ["\u2011", "\uff20", "es", "kids", "ie", "@@@@", " Strec", "@g"], [".", ",", "\u2026..", "\u2013", " \u2013", "\u2026.", "?", "\u2026"], [" milfs", " Geile", " Strec", "\uff0a\uff0a\uff0a\uff0a", "\uff1d\uff1d\uff1d\uff1d", " Blowjob", "\uff0d\uff0d\uff0d\uff0d", " pupper"], ["\uff20", "\uff0d\uff0d\uff0d\uff0d", "ed", "\uff1d\uff1d\uff1d\uff1d", "erweise", "@g", "ierte", "\u52a0\u62ff\u5927\u7684"], [" veggies", "lett", " crazy", " Geile", "!\u201d.", "kids", "carat", "cents"], ["kids", "\uff20", "ed", "cents", "lett", " @", "sters", " ____"], ["ie", "ager", "sdale", "kids", "athon", "sters", " @", " veggies"], ["athon", " *@", "kids", "\uff20", "ie", " @", " veggies", "sdale"], ["kids", " veggies", "illion", "\u52a0\u62ff\u5927\u7684", "less", "-dollar", "lessly", "ager"], ["er", " \\\"", "kids", "ish", "lette", "lessly", "illion", "lettes"], [" veggies", "lettes", "illion", " **>>", "igans", "lessly", "hle", "\u4e94\u989c\u516d\u8272\u7684"], [" veggies", "lettes", "kids", "illion", "lessly", "ularity", "hle", " **>>"], [" veggies", "kids", "lettes", " skinny", " booze", "hle", " guys", "illion"], [" veggies", "kids", " kids", " guys", "illion", " skinny", " goodies", " booze"], ["kids", " skinny", " veggies", " booze", " kids", " Fortal", "illion", " pricey"], ["kids", " skinny", " veggies", "-ish", " kids", " booze", "-esque", "ish"], ["kids", "-ish", "-tech", "-big", " kids", " skinny", " veggies", "lessly"], ["kids", "-ish", " veggies", " booze", "lessly", "Sharper", "-tech", " pricey"], ["kids", " pricey", "ahead", "Sharper", "lessly", "zinho", " booze", "lette"], ["@", " --", "o", "\\-", " @", "--", "ahead", "i"], [" ''", " ``", "Sharper", " '''", " pricey", "zinho", "kids", " goodies"], [" ``", " ''", " '''", "``", " --", "lessly", " bigger", " \\'"], [" ``", " ''", " --", " \\'", "fully", " `", " '''", " hugely"], [" ``", " ''", " --", " \\'", " '''", " {{--<", " hugely", "\u0163"], [" ``", " ''", " '''", " --", " tech", " **", " ;;^", "Sharper"], [" ``", " ''", " __", " ___", " '''", " *__", " ____", " tech"], [" ``", " ''", " --", " @", " ,", " '", " tech", " '''"], [" ''", " ``", " tech", " technology", " hardware", " technologies", " tools", " software"], [" ...\\", " ____", " __", " ___", " tech", " **", " technology", " \\\""], [" ...", " ...\\", " technology", " \\\"", " __", " tech", " ____", " work"], [" ...", " ,", " work", " @", " \\\"", " -", " '", " complex"], [" ,", " '", " -", " /", " technology", " @", " \\\"", " work"], [" workflows", " hardware", " tech", " technologies", " software", " technology", " infrastructure", "\u2011"], ["\u2011", " tech", " hardware", " workflows", " \u2026", " infrastructure", " leveraging", " seamlessly"], [" \u2026", "\u2026*", "\u2011", "\u2026\u201d", " [\u2026]", "\u2026**", " [...]", "\u2026\u2026"], ["\u2011", " hardware", " \u2026", "\u2026*", " [...]", " workflows", " tech", "\u2026**"], ["\u2011", " \u2026", " [...]", " hardware", " workflows", " technical", " [\u2026]", " engineering"], ["\u2011", " \u2026", " [...]", " hardware", " technical", " engineering", " workflows", " [\u2026]"], ["\u2011", " [...]", " hardware", " \u2026", " [\u2026]", " technical", " engineering", " physics"], [" hardware", " technical", " engineering", "\u2011", " engine", " software", " tech", " GPU"], [" hardware", " engineering", " engine", " physics", " software", " GPU", " technical", " graphics"], [" hardware", " interface", " engine", " physics", " software", " internals", " engineering", " backend"], [" hardware", " interface", " backend", " workflows", " engine", " physics", " internals", " graphics"], [" hardware", " backend", " engine", " internals", " interface", " engineering", " workflows", " physics"], [" hardware", " interface", " backend", " internals", " engine", " physics", " specialized", " workflows"], [" hardware", " backend", " seamlessly", " seamless", " interface", " specialized", " physics", " internals"], [" hardware", " internals", " physics", " interface", " backend", " seamlessly", " Hardware", " seamless"], [" hardware", " backend", " internals", " interface", " seamlessly", "\u4e13\u804c", " framerate", "-backend"], ["**\u201d", " internals", " hardware", "\u4e13\u804c", " Hardware", "-core", "lemetry", "hardware"], [" hardware", " Hardware", " backend", " internals", "\u786c\u4ef6", "lemetry", "*\"", " optics"], ["%\"", " hardware", "*\"", " backend", "**\u201d", "\u2026\"", " entirely", " Hardware"], ["%\"", " hardware", "**\u201d", "%", "%**", "*\"", "\u2026\"", " %\""], ["%\"", "%", "%**", " runtime", " hardware", " %\"", "%'", " Runtime"], ["%\"", "%**", "%", " runtime", "-core", " hardware", "\u6838\u5fc3", " Runtime"], [" Python", "%\"", "%", "%**", "-core", "\u6838\u5fc3", "\u7eaf", " viewport"], [" Python", " Rendering", " renderer", "\u6e32\u67d3", "%", "-render", "%\"", " Renderer"], [" Rendering", "\u6e32\u67d3", " render", " rendering", "%", " renderer", " Render", "-render"], [" Rendering", "%", "\u6e32\u67d3", "0", " rendering", " %", " render", " renderer"], ["0", " Rendering", " rendering", "\u6e32\u67d3", "%", " renderer", " render", " %"], [" %", "%", "0", " `%", " rendering", " render", " Rendering", " renderer"], ["0", "%", " %", "1", " `%", " render", " %,", "%,"], ["0", "1", "2", "3", "4", "5", "6", "8"]], "p": [[0.8424, 0.1464, 0.0018, 0.0014, 0.0014, 0.0012, 0.0008, 0.0008], [0.012, 0.0064, 0.0047, 0.0044, 0.0024, 0.0022, 0.0022, 0.0022], [0.668, 0.0621, 0.0401, 0.0229, 0.0167, 0.0095, 0.007, 0.0051], [0.023, 0.0096, 0.0075, 0.007, 0.0051, 0.0051, 0.0048, 0.004], [0.1777, 0.0094, 0.0065, 0.0057, 0.005, 0.0044, 0.0042, 0.0042], [0.0043, 0.0043, 0.0038, 0.0038, 0.0038, 0.0033, 0.0026, 0.002], [0.0174, 0.0135, 0.0135, 0.0099, 0.0087, 0.0073, 0.006, 0.0053], [0.0154, 0.0136, 0.0094, 0.0078, 0.0078, 0.0068, 0.006, 0.006], [0.0199, 0.0121, 0.0083, 0.0078, 0.0073, 0.0073, 0.0061, 0.005], [0.0149, 0.0132, 0.0116, 0.0059, 0.0043, 0.0043, 0.0043, 0.004], [0.0328, 0.0121, 0.0083, 0.0078, 0.0073, 0.0065, 0.0057, 0.0054], [0.0053, 0.0041, 0.0041, 0.0036, 0.0026, 0.0023, 0.0022, 0.0022], [0.0105, 0.0047, 0.0034, 0.0034, 0.0024, 0.0021, 0.0021, 0.002], [0.0157, 0.0061, 0.0027, 0.0026, 0.0023, 0.0021, 0.0021, 0.002], [0.0161, 0.0125, 0.0104, 0.0076, 0.0067, 0.0056, 0.0043, 0.0041], [0.0121, 0.0078, 0.0057, 0.0035, 0.0033, 0.0022, 0.002, 0.0019], [0.0578, 0.0291, 0.0226, 0.0213, 0.0166, 0.0094, 0.0094, 0.0078], [0.0355, 0.0216, 0.0131, 0.0108, 0.009, 0.0066, 0.0062, 0.0051], [0.0142, 0.0086, 0.0071, 0.0071, 0.0059, 0.0052, 0.0052, 0.0049], [0.0089, 0.0065, 0.0065, 0.0037, 0.0031, 0.0029, 0.0027, 0.0024], [0.0116, 0.0109, 0.0109, 0.0102, 0.0085, 0.0066, 0.0052, 0.0048], [0.0171, 0.0161, 0.0046, 0.0043, 0.0034, 0.0032, 0.0028, 0.0023], [0.4591, 0.2457, 0.0079, 0.0033, 0.0015, 0.0014, 0.0014, 0.001], [0.455, 0.1897, 0.0291, 0.0039, 0.0037, 0.0016, 0.0014, 0.0013], [0.3261, 0.1359, 0.0642, 0.0087, 0.0056, 0.0047, 0.0032, 0.0028], [0.61, 0.0415, 0.0047, 0.0041, 0.0018, 0.0014, 0.0014, 0.0013], [0.4375, 0.076, 0.011, 0.0103, 0.008, 0.0066, 0.0066, 0.0052], [0.2108, 0.1748, 0.0643, 0.0143, 0.0093, 0.0082, 0.0077, 0.006], [0.1055, 0.0772, 0.0468, 0.0365, 0.0267, 0.0235, 0.0208, 0.0195], [0.171, 0.1509, 0.1331, 0.0759, 0.0358, 0.0279, 0.0231, 0.0217], [0.5505, 0.1392, 0.0352, 0.0188, 0.0166, 0.0122, 0.0114, 0.0107], [0.1087, 0.0959, 0.0547, 0.0376, 0.0353, 0.0331, 0.0331, 0.0275], [0.1722, 0.1519, 0.0463, 0.0248, 0.0233, 0.0233, 0.0219, 0.0219], [0.094, 0.0732, 0.0688, 0.0223, 0.021, 0.0174, 0.012, 0.0099], [0.0798, 0.0549, 0.0401, 0.0354, 0.0148, 0.0122, 0.009, 0.0084], [0.5554, 0.0852, 0.0752, 0.0456, 0.0313, 0.026, 0.026, 0.0229], [0.1235, 0.0704, 0.0704, 0.0354, 0.0215, 0.0139, 0.0122, 0.0115], [0.1891, 0.0839, 0.0422, 0.035, 0.0187, 0.0187, 0.0129, 0.0121], [0.1563, 0.0612, 0.0507, 0.0395, 0.0349, 0.0199, 0.0175, 0.0137], [0.2287, 0.0543, 0.0397, 0.0213, 0.02, 0.0107, 0.01, 0.0074], [0.1997, 0.0306, 0.0288, 0.0186, 0.0186, 0.0164, 0.0164, 0.0154], [0.2127, 0.0446, 0.0393, 0.0347, 0.0254, 0.0198, 0.0175, 0.0175], [0.1456, 0.0473, 0.0392, 0.0253, 0.0197, 0.0197, 0.0163, 0.0153], [0.0857, 0.0169, 0.0169, 0.0169, 0.0131, 0.0123, 0.0116, 0.0109], [0.1376, 0.0307, 0.0254, 0.0225, 0.0211, 0.0136, 0.0136, 0.0113], [0.1045, 0.0233, 0.0233, 0.0206, 0.0171, 0.0151, 0.0117, 0.0103], [0.1162, 0.019, 0.0178, 0.0167, 0.0167, 0.013, 0.0115, 0.0108], [0.062, 0.0138, 0.0138, 0.0101, 0.0095, 0.0089, 0.0089, 0.0084], [0.0104, 0.0087, 0.0076, 0.0059, 0.0052, 0.0052, 0.0041, 0.0038], [0.0074, 0.0057, 0.0054, 0.0045, 0.0039, 0.0039, 0.0039, 0.0035], [0.0222, 0.0119, 0.0072, 0.0068, 0.0053, 0.0049, 0.0038, 0.0038], [0.0366, 0.0222, 0.0162, 0.0135, 0.0093, 0.0087, 0.0087, 0.0082], [0.1209, 0.021, 0.0185, 0.0185, 0.0164, 0.012, 0.0082, 0.0082], [0.1419, 0.0809, 0.0461, 0.0141, 0.0124, 0.0071, 0.0062, 0.0055], [0.056, 0.034, 0.03, 0.0234, 0.0182, 0.0133, 0.0125, 0.0086], [0.084, 0.0741, 0.0309, 0.0256, 0.0226, 0.0226, 0.0212, 0.0212], [0.1367, 0.0646, 0.0607, 0.0473, 0.0368, 0.0305, 0.0269, 0.0238], [0.2511, 0.1621, 0.0983, 0.0719, 0.0436, 0.041, 0.0362, 0.0219], [0.3394, 0.1249, 0.0858, 0.0858, 0.0668, 0.0554, 0.0459, 0.0358], [0.5752, 0.0569, 0.0569, 0.0535, 0.0391, 0.0368, 0.0368, 0.0324], [0.4111, 0.2494, 0.2494, 0.0218, 0.0043, 0.0026, 0.0024, 0.0024], [0.9244, 0.0591, 0.0116, 0.0008, 0.0006, 0.0001, 0.0001, 0.0001], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Python": [53198, 221518, 167884, 190638, 38338, 71288, 58987, 99250, 92836, 164758, 54670, 80306, 74786, 84916, 53820, 65392, 46073, 27168, 57998, 89301, 3079, 11781, 5065, 2338, 1083, 195, 117, 124, 52, 61, 150, 702, 1211, 197, 601, 327, 93, 107, 123, 92, 130, 256, 247, 579, 597, 708, 798, 1039, 2676, 1303, 1271, 337, 73, 186, 17, 1, 1, 9, 20, 23, 11, 22, 18]}}, {"pos": 518, "top": [[".", ",", "s", "?", ";", "o", "!", "-"], ["s", ".", "sville", "kids", "!!", " Guinness", " \u200b\u200b", " Car"], [".", ",", "s", "?", " \u200b\u200b", "!", "\u2013", "\u2026.."], [" milfs", " Geile", " fkk", "cuci", " **>>", " pupper", " Blowjob", " ;;^"], ["s", " @", " Aussie", " kids", ".@", " @_", "\uff20", "ed"], [" \u200b\u200b", "\uff01", " Aussie", " crazy", "s", " veggies", " guys", " kids"], ["s", " !!!", " !!!!", " \u200b\u200b", " crazy", " guys", "!", " !!"], ["s", ".", "!", "ness", " @", "sville", " guys", " !!!"], [" @", "s", ".", " \u200b\u200b", "ness", "!", "ly", " !!!"], ["ness", "s", " veggies", "ing", "-ish", " @", "!", "-dollar"], [" @", "s", " #", "ing", "ness", " guys", " ____", "!"], [" **", " guys", " ____", " veggies", "ness", " kids", " Aussie", "ing"], [" veggies", " guys", "ness", " kids", " Aussie", " XXL", " Vegas", " guy"], [" guys", " kids", " Aussie", " veggies", " vibes", " guy", "-ish", " vibe"], [" guys", " kids", " Aussie", " ''", "s", " vibes", " Philly", " guy"], [" kids", " guys", " MVP", " ''", " Aussie", " incredibly", " savvy", " veggies"], [" guys", " kids", "-ish", "-tech", " Aussie", "s", " veggies", " skinny"], ["-tech", "-ish", " kids", " guys", " Aussie", " veggies", " vibes", " vibe"], ["-ish", "-tech", " veggies", "-dollar", "-done", " Aussie", "-percent", " kids"], ["-dollar", " $$$", "-percent", "-ish", " kidding", "-hearted", "-done", "ness"], [" $$$", "-dollar", " %", "-hearted", "-plus", " %+", "-percent", "ly"], [" \\\"", "\u52b2\u513f", " \\\"%", "\\\"\\", "-dollar", " freaking", "-percent", "retty"], [" \\\"", " ''", " %", " $$$", " ____", " '''", "\\\"\\", " %+"], [" ''", " \\\"", " %", "fully", " --", " ``", "ly", " #"], ["\n\n", " --", " #", " %", " \\\"", " ''", " \n\n", "fully"], [" ____", " ___", " $$$", " %", " ______", " \\\"", " __", " _____"], [" %", " --", " ____", " ''", " \\\"", " ___", " __", " #"], [" ____", " %", " --", " ___", " __", " ______", " ''", " _____"], [" %", " ____", " ______", " \\\"", " __", " ___", " --", " _____"], [" ____", " ______", " \\\"", " __", " _____", " ___", " %", " ________"], [" \\\"", " %", " ____", " everything", "\\\"", " __", " ???", " ______"], [" \\\"", " everything", " !", " @", " #", " all", " -", " %"], [" -", " \\\"", " ?", " !", " everything", " @", " \"", " all"], [" everything", " !!!", " ???", " ALL", " (!", " ONLY", " \u201d", "?!"], [" (!", " ALL", "?!", " EVERY", " \u201c", "\u2014but", "!\u201d", "(!"], [" \u201c", " (!", "\u2011", " \u201d", "!\u201d", "\u2014but", "\u201d", "(!"], [" \u201c", " \u201d", " \"", " (!", " ALL", " EVERY", " technically", " !\""], [" \u201d", " \u201c", " (!", " ALL", " EVERY", " \"", " @", " %"], [" \u201d", " \u201c", " ALL", " %", " (!", " technically", " EVERY", " \""], [" \u201c", " \u201d", " ALL", "%\"", "!\u201d", "\u201d", "\u2011", "\u7eaf"], [" ALL", " technically", " pure", " \u201c", " purely", " exclusively", " Pure", " ONLY"], [" ALL", " pure", " purely", " exclusively", " technically", " Pure", " \u201d", " \u201c"], [" exclusively", " pure", " purely", " ALL", " Pure", " entirely", " technically", " %"], [" ALL", " exclusively", " pure", " entirely", " EVERY", " purely", " %", " Pure"], [" ALL", " exclusively", " pure", " ONLY", " purely", " entirely", " Pure", " EVERY"], [" \\\"", " \"", " \u201d", " ALL", "\u201d", " exclusively", "\\\"", "\""], [" technically", "\u201d", " ALL", " \u201d", " pure", " exclusively", " \"", "\""], ["\u201d", " technically", " ALL", " %", "\"", " exclusively", " ONLY", " pure"], ["\u201d", "\"", " %\"", " technically", "%\"", "\\\"", " hardware", " reliance"], ["%\"", " %\"", " Hardware", " Powered", " Toolkit", " Percent", "-percent", " hardware"], ["%\"", " %\"", "-percent", " Percent", "%\",", "\">%", "Percent", " percent"], ["%\"", " %\"", " Percent", "-percent", " Python", "%\",", "Percent", " percent"], ["%\"", "%", "-percent", " %\"", " Python", " Percent", "%\",", "\">%"], ["%\"", "%", " %\"", " +%", " Python", " Percent", " %", "\">%"], [" Python", "%", "%\"", "%-", " %\"", " +%", " %", "\">%"], [" Python", "%", "%\"", " PHP", " Percent", " Java", "-python", " JavaScript"], [" Python", "Python", "%", " python", "-python", " PHP", "%\"", "ython"], [" Python", "%", "Python", " python", "-python", " PHP", " %", "ython"], ["%", " %", " Python", "%\"", " %\"", " %-", " Percent", "%-"], [" Python", "%", " %", "Python", "%\"", " python", "-python", " %\""], [" Python", "%", " %", "Python", "%\"", " %\"", "%s", "%,"], ["%", " %", " Python", "%\"", "Python", " %\"", "%,", "%-"], ["%", " Python", "%\"", "Python", "%-", " %", "0", "%,"]], "p": [[0.9345, 0.0597, 0.0019, 0.001, 0.0007, 0.0003, 0.0003, 0.0002], [0.0115, 0.0054, 0.0045, 0.0035, 0.0019, 0.0015, 0.0015, 0.0014], [0.4555, 0.0616, 0.0213, 0.0083, 0.0078, 0.0054, 0.0042, 0.0031], [0.0298, 0.0043, 0.0031, 0.0029, 0.0029, 0.0028, 0.0028, 0.0026], [0.2204, 0.0247, 0.015, 0.0141, 0.0103, 0.008, 0.008, 0.008], [0.0426, 0.0122, 0.0115, 0.0089, 0.0074, 0.007, 0.0061, 0.0054], [0.2853, 0.0301, 0.0207, 0.0161, 0.0133, 0.0125, 0.0104, 0.0104], [0.4075, 0.0518, 0.0334, 0.0314, 0.0277, 0.0079, 0.0075, 0.0051], [0.1628, 0.0769, 0.0723, 0.0529, 0.0529, 0.0363, 0.0161, 0.0118], [0.0937, 0.0345, 0.0163, 0.0127, 0.0112, 0.0105, 0.0099, 0.0087], [0.2648, 0.1509, 0.1037, 0.018, 0.0159, 0.0149, 0.014, 0.0124], [0.0418, 0.0287, 0.0254, 0.0238, 0.0238, 0.0186, 0.0082, 0.0073], [0.0338, 0.0338, 0.0218, 0.0181, 0.0103, 0.0086, 0.0075, 0.0075], [0.0712, 0.0406, 0.0336, 0.0262, 0.018, 0.0124, 0.0103, 0.0058], [0.0608, 0.0445, 0.0287, 0.0154, 0.0127, 0.0077, 0.0064, 0.0057], [0.019, 0.0131, 0.0074, 0.0062, 0.0062, 0.0045, 0.0042, 0.0033], [0.0305, 0.0286, 0.0174, 0.0127, 0.0099, 0.0099, 0.0077, 0.0064], [0.027, 0.0254, 0.0239, 0.0164, 0.0128, 0.006, 0.0053, 0.0053], [0.0137, 0.0129, 0.0114, 0.0114, 0.0083, 0.0083, 0.0073, 0.0073], [0.0212, 0.0165, 0.0155, 0.0155, 0.01, 0.0083, 0.0078, 0.0069], [0.0554, 0.0149, 0.0149, 0.014, 0.0124, 0.0109, 0.009, 0.0085], [0.0133, 0.0063, 0.0063, 0.0059, 0.0052, 0.0049, 0.0046, 0.0043], [0.0693, 0.0612, 0.0308, 0.0199, 0.0199, 0.012, 0.0113, 0.01], [0.1809, 0.1243, 0.0295, 0.0277, 0.0277, 0.0096, 0.009, 0.0079], [0.1076, 0.095, 0.0478, 0.0449, 0.0449, 0.0372, 0.0272, 0.0256], [0.2099, 0.0822, 0.0499, 0.044, 0.0322, 0.0251, 0.0236, 0.0183], [0.1724, 0.0464, 0.0409, 0.0385, 0.0233, 0.0219, 0.0193, 0.0104], [0.1902, 0.1392, 0.1307, 0.1228, 0.1084, 0.0452, 0.0352, 0.0213], [0.1435, 0.119, 0.0438, 0.0438, 0.0341, 0.0249, 0.0234, 0.0182], [0.4162, 0.1351, 0.1269, 0.077, 0.0563, 0.0529, 0.0172, 0.0152], [0.4182, 0.0469, 0.0389, 0.0267, 0.0222, 0.0119, 0.0119, 0.0105], [0.1451, 0.073, 0.0471, 0.0443, 0.0416, 0.0345, 0.0304, 0.0252], [0.0885, 0.0608, 0.0572, 0.0572, 0.0474, 0.0445, 0.0445, 0.0393], [0.0308, 0.0271, 0.0255, 0.0211, 0.0211, 0.0187, 0.0187, 0.0165], [0.0544, 0.0398, 0.033, 0.031, 0.0291, 0.0273, 0.02, 0.0166], [0.0843, 0.058, 0.0545, 0.031, 0.0291, 0.0274, 0.02, 0.0166], [0.1152, 0.0579, 0.0544, 0.0374, 0.0291, 0.0156, 0.0156, 0.0121], [0.1064, 0.0687, 0.0472, 0.0391, 0.0237, 0.0197, 0.0174, 0.0144], [0.0855, 0.0855, 0.0261, 0.0245, 0.0216, 0.0168, 0.0158, 0.0109], [0.0927, 0.0637, 0.0301, 0.0182, 0.0171, 0.0161, 0.0151, 0.0142], [0.0613, 0.0372, 0.0349, 0.0256, 0.0256, 0.0226, 0.0155, 0.0155], [0.0702, 0.0483, 0.0453, 0.0426, 0.0332, 0.0258, 0.0228, 0.0214], [0.0913, 0.0858, 0.0668, 0.0459, 0.0358, 0.0336, 0.0316, 0.0316], [0.2024, 0.1228, 0.0481, 0.033, 0.0257, 0.0242, 0.02, 0.02], [0.206, 0.206, 0.0914, 0.0489, 0.0432, 0.0262, 0.0231, 0.0192], [0.1924, 0.1698, 0.1242, 0.0754, 0.0403, 0.0356, 0.023, 0.0216], [0.1079, 0.0952, 0.0741, 0.0654, 0.0654, 0.0309, 0.0212, 0.02], [0.073, 0.0391, 0.0391, 0.0304, 0.0196, 0.0184, 0.0184, 0.0163], [0.0502, 0.0237, 0.0185, 0.0153, 0.0127, 0.0099, 0.0064, 0.0053], [0.0515, 0.0377, 0.0074, 0.0066, 0.0062, 0.0051, 0.004, 0.0037], [0.2271, 0.0835, 0.0175, 0.0128, 0.0113, 0.0094, 0.0047, 0.0037], [0.2525, 0.068, 0.0497, 0.0412, 0.0266, 0.0195, 0.0134, 0.0118], [0.2081, 0.0635, 0.0436, 0.041, 0.0385, 0.0282, 0.0249, 0.0117], [0.3095, 0.2732, 0.0326, 0.0306, 0.0211, 0.0164, 0.0164, 0.0154], [0.3331, 0.1783, 0.0698, 0.0213, 0.0188, 0.0156, 0.0146, 0.0146], [0.9284, 0.0218, 0.0049, 0.0031, 0.0022, 0.0018, 0.0015, 0.0014], [0.9845, 0.004, 0.004, 0.0011, 0.0006, 0.0005, 0.0005, 0.0005], [0.9706, 0.0157, 0.0035, 0.0019, 0.0008, 0.0008, 0.0006, 0.0006], [0.82, 0.111, 0.0524, 0.0043, 0.0014, 0.0011, 0.0008, 0.0008], [0.9045, 0.0841, 0.0054, 0.0042, 0.0006, 0.0003, 0.0002, 0.0001], [0.568, 0.3904, 0.032, 0.0034, 0.003, 0.0005, 0.0001, 0.0001], [0.9779, 0.0158, 0.0051, 0.0005, 0.0001, 0.0001, 0.0001, 0.0], [0.9957, 0.0019, 0.0017, 0.0001, 0.0001, 0.0001, 0.0, 0.0]], "ranks": {"Python": [22777, 189997, 128576, 108859, 5263, 7866, 7591, 3375, 3593, 11732, 2354, 1484, 1513, 2421, 3114, 3077, 3764, 2935, 12438, 36358, 24444, 46717, 16860, 10853, 11521, 12091, 6927, 4123, 6416, 6881, 8089, 8390, 10502, 16535, 29154, 6595, 5751, 3903, 2524, 425, 227, 431, 809, 1528, 1233, 1258, 1252, 459, 247, 232, 373, 5, 5, 5, 1, 1, 1, 1, 3, 1, 1, 3, 2]}}, {"pos": 519, "top": [["\u2013", " \u2013", ".", ",", "\u2013and", " [\u2026]", " ", "-"], ["\u2013", " \u2013", "\u2013and", "   \n", "  \n", " \u200b\u200b", "\u2013\u2013", ".\u2013"], ["\u2013", " \u2013", " \u200b\u200b", "\u2013and", ".", ",", "\u2026..", ".\u2013"], [" Shemale", " pornstar", " Milf", " Blowjob", "_%", "\u6700\u65b0\u53d1\u5e03", " -->", " milfs"], [" \u200b\u200b", ".", "!", "%", " ", ":", "&", ","], [" \u200b\u200b", ".", "!", " USD", ":", " Harbor", "%", "   \n"], [" \u200b\u200b", " -->", " %", " ____", " ......", " ______", " \ufffd", "!"], [" \u200b\u200b", " \\\"", ".", " -->", " ____", " @", " %", "!"], [" \u200b\u200b", " \\\"", " ____", " #%", " -->", " ......", " @", " %."], [" \\%", " \\$", " \\\"", " #%", " %", " \\\"$", "!\\", " -->"], [" \\\"", " #", " %", " @", " ____", " \\$", " -->", "\\n"], [" %", " -->", " \\\"", " ____", " #", " \\%", " ***", " ______"], [" %", " \\\"", " -->", " #", " ____", " full", " \\%", " healthy"], [" full", " \\\"", " %", " #", " hardcore", " fully", " live", " incredibly"], [" \\\"", " #", " full", " fully", " %", " &", " \"", " '"], [" \\\"", " #", " full", " %", " --", " &", " fully", " \""], [" full", " #", " \\\"", " %", " fully", " \"", " free", " of"], [" \\\"", " full", " %", " quality", " true", " fully", " real", " functionality"], [" \\\"", " %", " full", " #", " fully", " incredibly", " #%", " truly"], [" \\\"", " %", " \\'", " full", " fully", " --", " #", " \\%"], [" %", " \\\"", " #", " fully", " --", " @", " full", " \ufffd"], [" \\\"", " \\\"%", " %", " \\\"$", " \\%", " #%", " %+", " full"], [" \\\"", " %", " \\\"%", " ____", " full", " \\\"$", " ______", " fully"], [" \\\"", " full", " fully", " %", " --", " ,", " #", " entirely"], [" \\\"", " ____", " %", " ______", " --", " #", " ...", " full"], [" \\\"", " ____", " ______", " %", " ___", " _____", " ...\\", " --"], [" \\\"", " %", " ____", " --", " ______", " ___", " full", " ..."], [" ____", " ______", " \\\"", " --", " ___", " ...", " __", " %"], [" \\\"", " full", " ,", " fully", " %", " --", " @", " non"], [" \\\"", " ____", " ______", " full", " ...", " _____", " ", " %"], [" \\\"", " full", " ", " non", " work", " fully", " .", " physical"], [" \\\"", " .", " ...", " ", " full", " in", " ,", " work"], [" .", " ,", " ", " \\\"", " in", " ?", " \"", " full"], [" \u2013", " ...", " technology", " technically", " --", " professional", " non", " hardware"], [" ...", " (", " \u2013", " [...]", " \\\"", " technically", " hardware", " ["], [" \u2026", " ...", " [...]", " [\u2026]", " \u2013", "\u2026\u2026", " ???", " ......"], [" [", " \"", " (", " \u2014", " \u2013", " technically", " software", " ______"], [" software", " [", " \u2013", " \"", " hardware", " (", " ______", " legal"], [" software", " hardware", " [...]", " [", " \u2026", " technical", " technically", " legal"], [" Python", " software", " [...]", " [\u2026]", " \u2026", " programming", " code", " ["], [" Python", " software", " programming", " code", " language", " technical", " python", " technology"], [" Python", " programming", " software", " code", " scripting", " written", " language", " scripts"], [" programming", " software", " Python", " code", " written", " scripting", " language", " scripts"], [" code", " programming", " software", " Python", " written", " scripting", " Code", " scripts"], [" code", " programming", " software", " Python", " written", " scripting", " scripts", " ..."], [" programming", " code", " software", " Python", " scripting", " written", " scripts", " primary"], [" code", " programming", " Python", " written", " software", " scripting", " primary", " technically"], [" primary", " code", " programming", " Python", " software", " written", " scripting", " officially"], [" scripting", " programming", " code", " primary", " Python", " workflow", " software", " scripts"], [" scripting", " programming", " workflow", " scripted", " Python", " software", " code", " scripts"], [" scripting", " Python", " scripted", " software", " programming", " toolkit", " workflow", " runtime"], [" Python", " software", " programming", " Software", " scripting", " python", " code", " runtime"], [" Python", " software", " python", "*\"", " frontend", " programming", "-python", " code"], [" Python", " runtime", "%\"", " programming", " software", " python", " frontend", " SDK"], [" Python", " JavaScript", " code", " python", " runtime", "-python", " Java", "Python"], [" Python", " python", "Python", "-python", ".python", "python", "PYTHON", " Java"], [" Python", " python", "Python", ".python", "-python", "python", "PYTHON", " PYTHON"], [" Python", " python", "Python", ".python", "-python", "python", " PYTHON", "ython"], [" Python", " python", "Python", ".python", "-python", "python", "PYTHON", "_python"], [" Python", "Python", " python", ".python", "-python", "python", "_python", "PYTHON"], [" Python", "Python", " ship", " shipping", " shipped", " python", " Ship", " ships"], [" Python", "Python", " python", " shipping", " shipped", ".python", "-python", " ship"], [" Python", " shipping", "Python", " shipped", " Shipping", " Ship", " python", " ships"]], "p": [[0.5163, 0.2764, 0.1676, 0.0065, 0.0048, 0.0031, 0.0022, 0.0021], [0.6785, 0.1179, 0.0492, 0.028, 0.0062, 0.0062, 0.0031, 0.0024], [0.819, 0.0762, 0.0218, 0.0193, 0.0124, 0.0055, 0.004, 0.0028], [0.009, 0.0045, 0.004, 0.0029, 0.0027, 0.0019, 0.0019, 0.0018], [0.228, 0.0422, 0.024, 0.0121, 0.0121, 0.0094, 0.0047, 0.0044], [0.8094, 0.0037, 0.0031, 0.0011, 0.0011, 0.0009, 0.0008, 0.0008], [0.2071, 0.0462, 0.0383, 0.028, 0.0232, 0.016, 0.0132, 0.0091], [0.111, 0.0673, 0.0435, 0.0299, 0.0281, 0.0281, 0.0264, 0.0193], [0.2085, 0.0767, 0.0386, 0.03, 0.0282, 0.0234, 0.022, 0.0206], [0.0295, 0.0295, 0.0216, 0.0168, 0.0123, 0.0108, 0.007, 0.0062], [0.1832, 0.1183, 0.0525, 0.0264, 0.017, 0.016, 0.015, 0.015], [0.0859, 0.0712, 0.0521, 0.0358, 0.0316, 0.0169, 0.0096, 0.008], [0.0544, 0.0544, 0.0213, 0.0188, 0.0166, 0.0078, 0.0061, 0.0048], [0.0218, 0.0192, 0.0117, 0.0066, 0.0062, 0.0059, 0.0052, 0.0043], [0.0695, 0.0308, 0.0272, 0.0187, 0.0165, 0.0113, 0.0107, 0.0083], [0.0916, 0.0337, 0.0204, 0.018, 0.015, 0.0097, 0.0091, 0.0075], [0.0279, 0.0246, 0.018, 0.0124, 0.008, 0.0075, 0.0062, 0.0058], [0.1126, 0.0152, 0.0105, 0.0049, 0.0046, 0.0044, 0.0041, 0.0039], [0.0777, 0.073, 0.0223, 0.0209, 0.0153, 0.0077, 0.0056, 0.005], [0.2584, 0.0839, 0.0226, 0.0226, 0.0187, 0.0137, 0.0107, 0.0065], [0.0771, 0.053, 0.053, 0.0342, 0.0342, 0.0342, 0.0321, 0.0111], [0.4353, 0.0336, 0.0159, 0.009, 0.0033, 0.0031, 0.0028, 0.0026], [0.6806, 0.0361, 0.0141, 0.0097, 0.0067, 0.0059, 0.0049, 0.004], [0.4529, 0.029, 0.0225, 0.0199, 0.0146, 0.0107, 0.0078, 0.0069], [0.3183, 0.0488, 0.0431, 0.0405, 0.0357, 0.0335, 0.0203, 0.0203], [0.4804, 0.1141, 0.042, 0.0394, 0.0164, 0.01, 0.0069, 0.0064], [0.1764, 0.0735, 0.0505, 0.0254, 0.0198, 0.0154, 0.0106, 0.0106], [0.2023, 0.1153, 0.0843, 0.058, 0.0512, 0.0451, 0.031, 0.0291], [0.1431, 0.022, 0.0194, 0.0182, 0.0182, 0.0151, 0.0117, 0.0092], [0.3486, 0.0778, 0.0686, 0.0127, 0.0119, 0.0099, 0.0072, 0.0068], [0.2903, 0.0198, 0.0174, 0.0136, 0.012, 0.0099, 0.0093, 0.0088], [0.0414, 0.0414, 0.0322, 0.0221, 0.0221, 0.0184, 0.0172, 0.0152], [0.0717, 0.0525, 0.0361, 0.0264, 0.0264, 0.0233, 0.0181, 0.0181], [0.0666, 0.0404, 0.0203, 0.0168, 0.014, 0.014, 0.0131, 0.0131], [0.0658, 0.0375, 0.0352, 0.0311, 0.0258, 0.0258, 0.0189, 0.0189], [0.2678, 0.1347, 0.1116, 0.0925, 0.0598, 0.0249, 0.0182, 0.0171], [0.0735, 0.0538, 0.0419, 0.0393, 0.0393, 0.0347, 0.0288, 0.0224], [0.055, 0.0428, 0.0294, 0.0294, 0.0244, 0.0229, 0.019, 0.0168], [0.1575, 0.0511, 0.0352, 0.0291, 0.0257, 0.0242, 0.0213, 0.0213], [0.1547, 0.0938, 0.0502, 0.0472, 0.0391, 0.0237, 0.0223, 0.0209], [0.4515, 0.1293, 0.1072, 0.0737, 0.0078, 0.0073, 0.0069, 0.0064], [0.2237, 0.2237, 0.1742, 0.1197, 0.0236, 0.0143, 0.0092, 0.0072], [0.2336, 0.1417, 0.1417, 0.1104, 0.0217, 0.0204, 0.0204, 0.0103], [0.148, 0.1391, 0.1306, 0.0617, 0.0292, 0.0166, 0.0129, 0.0114], [0.1886, 0.1144, 0.0948, 0.0575, 0.0212, 0.0165, 0.0128, 0.0128], [0.1443, 0.1355, 0.0875, 0.0682, 0.0322, 0.0183, 0.0162, 0.0126], [0.1237, 0.0584, 0.0549, 0.0484, 0.0354, 0.0294, 0.0215, 0.019], [0.0763, 0.0674, 0.0493, 0.0463, 0.0248, 0.0233, 0.0219, 0.015], [0.0959, 0.0959, 0.0619, 0.0513, 0.0353, 0.0331, 0.0292, 0.0275], [0.1796, 0.0661, 0.0275, 0.0275, 0.0275, 0.0243, 0.0214, 0.0214], [0.1877, 0.069, 0.0505, 0.0474, 0.0446, 0.027, 0.0254, 0.0186], [0.7154, 0.0665, 0.0277, 0.0096, 0.0048, 0.0045, 0.0043, 0.004], [0.8812, 0.0059, 0.0046, 0.0041, 0.0036, 0.0032, 0.003, 0.0022], [0.8086, 0.0096, 0.0074, 0.0054, 0.0051, 0.0048, 0.0045, 0.0045], [0.9716, 0.0033, 0.0029, 0.0021, 0.0017, 0.0015, 0.0012, 0.0011], [0.9956, 0.0022, 0.0009, 0.0004, 0.0002, 0.0001, 0.0001, 0.0001], [0.9971, 0.0017, 0.0008, 0.0001, 0.0001, 0.0001, 0.0, 0.0], [0.9965, 0.0022, 0.0006, 0.0002, 0.0001, 0.0001, 0.0, 0.0], [0.9971, 0.0017, 0.0007, 0.0002, 0.0001, 0.0001, 0.0, 0.0], [0.9987, 0.0007, 0.0005, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9987, 0.0004, 0.0003, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001], [0.9988, 0.0006, 0.0002, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9966, 0.0005, 0.0004, 0.0003, 0.0003, 0.0001, 0.0001, 0.0001]], "ranks": {"Python": [11639, 112128, 64293, 24311, 4823, 5170, 1537, 886, 1322, 2990, 1854, 955, 1227, 1720, 2057, 2041, 2222, 778, 975, 1598, 643, 348, 294, 618, 444, 161, 280, 597, 697, 848, 1247, 2256, 2945, 1082, 912, 134, 22, 11, 12, 1, 1, 1, 2, 4, 4, 4, 3, 4, 5, 3, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]}}, {"pos": 520, "top": [[" \u2013", ",", "\u2013", ".", "<|endoftext|>", " ", "a", "\u00a0"], ["\u2013", " \u2013", ",", "\u2013and", ".", " \u2013,", " \u200b", "\u200b"], ["\u2013", ",", " \u2013", ".", "\u2013and", ".\u2013", " \u2013,", "\u2026\u2026"], [" ``", " ``(", " \uffe5\uffe5", "-------------</", " PYTHON", "\uff0d\uff0d", "urtles", "enner"], [":@", "ed", " @", " (@", "\uff20", ",@", "@g", ".@"], ["server", "ed", ":@", "-esque", "-log", ".rt", "\u6f47\u6e58", " Justin"], [" ......", "ting", " Python", "-esque", "\ufffds", " \"\"\"", " \u00a0", "naire"], [".py", "\ufffds", "naire", "aries", " Python", "-esque", "arily", "ting"], [".", "\ufffds", " \u200b\u200b", "naire", ",", "-esque", "aries", ".py"], [",", "-esque", ".", "\ufffds", "naire", "-style", "arily", "ian"], [",", ".", "-esque", "-style", "ian", "naire", " Python", "ning"], ["-esque", "aire", "naire", "arily", "issime", "ian", "aires", "ically"], ["-esque", "arily", " \\\"", "ically", "ized", "-style", "naire", "eer"], ["-esque", ",", "-style", "aire", "ically", "ever", "ian", "arily"], [",", " just", " \"", "-esque", " \u00ad", " --", " ,", " truly"], [" just", " \"", " \u00ad", "-esque", " though", " ,", ",", " back"], [",", "-esque", " \"", " just", " ,", "ized", " only", "e"], [",", "-esque", " just", "ically", "ized", ".", " \"", "-style"], ["-esque", " just", " though", " ,", ",", " \"", "fully", " even"], [" ,", " --", " though", " just", " even", "-esque", "fully", ","], [" ,", " though", " just", " --", " \n\n", "<|endoftext|>", "  \n\n", " \""], [" ``", " \\\"", " ''", " ;;^", "-esque", " Python", " NUITKA", " '''"], [" ``", " ''", " \\\"", " ,", " --", " '''", " Python", "``"], [" ``", " ,", " ''", " --", " \\\"", " just", " .", "fully"], [" ``", " --", " ,", " ''", " \\\"", " __", " though", " \n\n"], [" ``", " __", " ''", " Python", " --", ".__", " \\\"", " ,"], [" __", " ,", " ``", " --", " ''", " Python", ".__", " ____"], [" __", " ,", " --", " ____", " ''", " ___", " ______", " ``"], [" ,", " __", " --", " \\\"", " ____", " ''", " ______", " ."], [" __", " ____", " ______", " _____", " ,", " \\\"", " ___", " ________"], [" .", " ,", " __", " \\\"", " ____", " ______", " ?", " itself"], [" .", " ,", " ...", " only", " itself", " -", " and", " ?"], [" .", " ,", " ?", " but", " however", " only", " -", " itself"], ["\u2014but", " but", " itself", " however", " \u2013", " \u2014", " anyway", " though"], ["\u2014but", " \u2014", " but", " itself", " \u2013", " technically", " anyway", " ("], ["\u2014but", " \u2013", " \u2014", " \u2026", " \u2014\u2014", " -", " (", " but"], ["\u2014but", " \u2014", " \u2013", " technically", " itself", " \"", " but", "\u2014not"], ["\u2014but", " \u2013", " itself", " technically", " \u2014", " \"", " but", "\u2013"], ["\u2014but", " \u2013", " technically", " software", " \u2014", " \u201c", " hardware", " programming"], ["\u2014but", " \u2013", "\u2011", " Python", " software", " technically", " programming", " \ud83d\ude09"], [" programming", " software", " Python", " code", "\u2014but", " scripting", " \u2013", " programmers"], [" programming", " software", " scripting", " code", " Python", " scripts", "\u2014but", " \u2013"], [" programming", " software", " scripting", " scripts", " code", " Python", " programmers", " technically"], [" programming", " software", " code", " scripts", " scripting", " technically", " Python", " script"], [" programming", " software", " code", " scripts", " scripting", " technically", " script", " framework"], [" programming", " software", " code", " technically", " scripts", " scripting", " \"", " script"], [" technically", " programming", " code", " software", " scripting", " scripts", " officially", " script"], [" technically", " because", " programming", " officially", " code", " scripts", " software", " runtime"], [" because", " scripts", " programming", " users", " runtime", " code", "\u2014but", "-based"], [" because", "-based", "-centric", " scripting", " programming", " runtime", " *", " scripts"], [" because", " programming", " scripting", " runtime", "-centric", " workflow", " software", "-based"], [" because", " software", " programming", " workflow", " ecosystem", " scripting", " runtime", " workflows"], [" software", "-centric", " workflow", "-coded", " ecosystem", "-authored", " workflows", " runtime"], [" runtime", " SDK", " workflow", " programming", "-authored", " software", "-coded", " workflows"], [" code", " workflow", " runtime", " workflows", " SDK", " software", "-coded", "-code"], [" code", " software", " workflow", " runtime", " SDK", "\"", " workflows", " project"], [" software", " code", " workflow", " SDK", " runtime", " workflows", " project", " application"], [" code", " software", " workflow", " project", " workflows", " SDK", " ecosystem", " runtime"], [" code", " software", " deployment", " project", " SDK", " ecosystem", " workflow", " developer"], ["\"", " code", " application", " apps", " project", " deployment", " app", " shipping"], ["\"", " code", " shipping", " application", " apps", " app", " deployment", " ecosystem"], ["\"", " app", " code", " project", " shipping", " application", "*\"", ",\""], ["\"", "\u201d", ",\"", "\"-", "*\"", "**", " shipping", " app"]], "p": [[0.4854, 0.3336, 0.1083, 0.031, 0.0156, 0.0042, 0.0039, 0.0021], [0.4178, 0.1854, 0.1742, 0.0602, 0.0172, 0.0143, 0.0087, 0.0081], [0.5845, 0.2761, 0.0896, 0.0177, 0.0156, 0.0045, 0.0037, 0.0006], [0.0233, 0.0038, 0.0034, 0.0025, 0.0022, 0.002, 0.0019, 0.0015], [0.0348, 0.0288, 0.0288, 0.0239, 0.0164, 0.0113, 0.0113, 0.0078], [0.0028, 0.0025, 0.0022, 0.0022, 0.0022, 0.0019, 0.0018, 0.0018], [0.0168, 0.0168, 0.0148, 0.0102, 0.0096, 0.009, 0.0084, 0.0066], [0.0253, 0.021, 0.0154, 0.0144, 0.0136, 0.0112, 0.0106, 0.0087], [0.0345, 0.0304, 0.0209, 0.0185, 0.0153, 0.0153, 0.0119, 0.0112], [0.7992, 0.0069, 0.0048, 0.002, 0.0011, 0.0009, 0.0008, 0.0008], [0.5431, 0.1138, 0.069, 0.0113, 0.0073, 0.0041, 0.0041, 0.0032], [0.0763, 0.0103, 0.0086, 0.0071, 0.0046, 0.0043, 0.004, 0.004], [0.1036, 0.014, 0.0096, 0.008, 0.0075, 0.007, 0.007, 0.0066], [0.2716, 0.0305, 0.0068, 0.0064, 0.0053, 0.0034, 0.0034, 0.003], [0.0434, 0.0434, 0.0383, 0.0317, 0.0205, 0.0103, 0.0103, 0.0103], [0.0366, 0.0209, 0.0196, 0.0184, 0.0173, 0.0163, 0.0127, 0.0072], [0.354, 0.0578, 0.0397, 0.0166, 0.0094, 0.0065, 0.0057, 0.0047], [0.3159, 0.0963, 0.0115, 0.007, 0.0058, 0.0051, 0.0048, 0.0042], [0.0933, 0.0303, 0.0236, 0.0184, 0.0173, 0.0105, 0.0105, 0.0098], [0.0835, 0.0692, 0.0611, 0.0506, 0.0175, 0.0136, 0.0136, 0.0128], [0.1008, 0.0785, 0.0289, 0.0239, 0.0186, 0.0165, 0.0088, 0.0088], [0.1648, 0.0391, 0.0269, 0.0153, 0.0032, 0.0019, 0.0019, 0.0019], [0.6957, 0.0941, 0.0536, 0.006, 0.005, 0.0021, 0.002, 0.0015], [0.3927, 0.1637, 0.0993, 0.0236, 0.0222, 0.0046, 0.0044, 0.0038], [0.177, 0.1467, 0.1143, 0.0836, 0.0371, 0.0308, 0.0155, 0.0145], [0.2664, 0.1339, 0.0558, 0.0524, 0.0463, 0.0281, 0.0219, 0.0193], [0.2102, 0.1637, 0.1637, 0.0876, 0.0566, 0.0222, 0.0196, 0.0162], [0.3964, 0.2404, 0.1002, 0.0325, 0.027, 0.021, 0.0174, 0.0136], [0.2927, 0.1775, 0.0893, 0.0449, 0.0372, 0.0372, 0.0226, 0.0212], [0.3293, 0.2263, 0.1556, 0.0648, 0.0393, 0.0306, 0.0288, 0.0154], [0.4568, 0.2158, 0.0618, 0.0546, 0.0242, 0.0156, 0.013, 0.0089], [0.6056, 0.1966, 0.0183, 0.0098, 0.0086, 0.0081, 0.0072, 0.0059], [0.569, 0.1847, 0.0412, 0.0321, 0.0152, 0.0152, 0.0126, 0.0046], [0.6485, 0.0603, 0.0303, 0.0268, 0.0196, 0.0173, 0.0143, 0.0112], [0.6827, 0.0385, 0.03, 0.0151, 0.0133, 0.0091, 0.0081, 0.0063], [0.417, 0.197, 0.1354, 0.0564, 0.0152, 0.0118, 0.0104, 0.0059], [0.8029, 0.0513, 0.0242, 0.0084, 0.0074, 0.0045, 0.004, 0.0033], [0.4191, 0.1128, 0.0304, 0.0236, 0.0153, 0.0105, 0.0087, 0.0082], [0.2939, 0.0698, 0.0544, 0.033, 0.0166, 0.0146, 0.0114, 0.0114], [0.1858, 0.0824, 0.05, 0.047, 0.0415, 0.0236, 0.0236, 0.0143], [0.197, 0.1534, 0.1534, 0.064, 0.0284, 0.0235, 0.0195, 0.0126], [0.303, 0.1622, 0.0597, 0.056, 0.0526, 0.03, 0.0234, 0.0117], [0.3602, 0.1501, 0.0458, 0.038, 0.038, 0.0179, 0.0131, 0.0102], [0.2142, 0.1077, 0.0542, 0.0328, 0.0199, 0.0114, 0.0094, 0.0094], [0.1874, 0.0885, 0.0832, 0.0347, 0.0198, 0.0154, 0.012, 0.0088], [0.1557, 0.0573, 0.0475, 0.0419, 0.0288, 0.0288, 0.0154, 0.0113], [0.0865, 0.0525, 0.0409, 0.0299, 0.0233, 0.0219, 0.0141, 0.011], [0.0298, 0.0263, 0.0247, 0.0204, 0.0204, 0.017, 0.0159, 0.015], [0.0525, 0.0409, 0.0264, 0.0206, 0.0181, 0.0181, 0.0181, 0.0181], [0.1944, 0.0407, 0.0383, 0.0205, 0.0192, 0.016, 0.016, 0.015], [0.1519, 0.0633, 0.0525, 0.0525, 0.0409, 0.0339, 0.0299, 0.0248], [0.2021, 0.1305, 0.0744, 0.033, 0.031, 0.0291, 0.0291, 0.02], [0.0901, 0.0513, 0.0453, 0.0426, 0.0426, 0.0376, 0.0353, 0.0353], [0.0806, 0.0554, 0.0431, 0.0431, 0.0405, 0.0357, 0.0336, 0.0278], [0.191, 0.1158, 0.1022, 0.062, 0.04, 0.04, 0.04, 0.0189], [0.1309, 0.1309, 0.0794, 0.0618, 0.0375, 0.0375, 0.0375, 0.0274], [0.1555, 0.1555, 0.0572, 0.0474, 0.0393, 0.0393, 0.0393, 0.0326], [0.357, 0.1023, 0.0426, 0.0426, 0.0312, 0.0312, 0.0293, 0.0275], [0.221, 0.1183, 0.0921, 0.0435, 0.0384, 0.0339, 0.0299, 0.0299], [0.2274, 0.2007, 0.0738, 0.0612, 0.054, 0.0371, 0.0308, 0.0289], [0.4143, 0.1047, 0.0816, 0.0561, 0.0385, 0.0249, 0.0234, 0.0161], [0.9716, 0.0035, 0.0029, 0.0026, 0.0018, 0.0015, 0.0011, 0.0011], [0.9999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Python": [638, 1941, 1221, 65, 10, 100, 3, 5, 20, 34, 6, 16, 18, 23, 171, 711, 155, 44, 62, 154, 123, 6, 7, 11, 14, 4, 6, 30, 16, 21, 26, 108, 298, 74, 126, 91, 36, 15, 11, 4, 2, 5, 6, 7, 17, 22, 40, 68, 128, 229, 98, 360, 292, 244, 35, 100, 23, 51, 46, 106, 153, 463, 333]}}, {"pos": 521, "top": [[".", " \u2013", "<|endoftext|>", "\u2013", ",", "\u00a0", "\u00a0\u00a0", " "], [" \u200b\u200b", "  \n\n", " \u2013", " (\"", "\u2013", " ", " Musk", "  \n"], [" \u200b\u200b", "\u2013", ",", ".", " \u2013", "\u2026..", "\u2026.", ";"], [" \u041a\u0440\u0430\u0441\u0438", " Shemale", " Blowjob", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Pubbl", "\ufffd\ufffd", "\ufffd\ufffd", " Strec"], [" \"", " \u041a\u0440\u0430\u0441\u0438", "\u5730\u4e9a", "\u7c9b", "elog", " \"#", " **#", "zer"], [" **\"", " **#", "\u5730\u4e9a", "usting", " \u041a\u0440\u0430\u0441\u0438", " \"", " \u200b\u200b", "elog"], [" \u00bb", " \"", " \u201d", " \"\"\"", " **\"", " */", " everything", " of"], [" \"", " \u00bb", " everybody", " anyway", " **\"", " pretty", " \"\"\"", " \u201d"], [" \u00bb", " \u200b\u200b", " \u201d", " \"", " pretty", " \"\"\"", "\u2014\"", " everybody"], ["\u2014\"", " \"", " fanc", "\u5473\u513f", "\u8303\u513f", " everybody", " \u041a\u0440\u0430\u0441\u0438", " booze"], [" \"", " even", " as", " for", " just", " alongside", " like", " thanks"], [" even", " \u00bb", " \"", " pretty", " anyway", " everybody", " thanks", " **"], [" \u00bb", " even", " \u00ab", " \"", " enough", " **", " just", " for"], [" \"", " even", " \u00ab", " \u00bb", " just", " for", " as", " mostly"], [" \"", " even", " just", " still", " truly", " as", " for", " yet"], [" \"", " even", " arguably", " \u00ab", " notably", " entirety", " just", " largely"], [" \"", " even", " just", " mostly", " for", " as", " thanks", " still"], [" even", " anyway", " entirely", " just", " for", " \"", " mostly", " thanks"], [" even", " anyway", " just", " entirely", " truly", " still", " pretty", " yet"], [" even", " anyway", " just", " entirely", " truly", " still", " yet", " though"], [" even", " though", " just", " ,", " as", " still", " largely", " much"], [" even", " anyway", " entirely", " still", " just", " truly", " largely", " beyond"], [" even", " ,", " anyway", " entirely", " just", " still", " only", " as"], [" ,", " even", " just", " as", " still", " only", " much", " in"], [" \n\n", " though", " ,", " even", " just", " as", " entirely", " truly"], [" **", " anyway", " even", " entirely", " though", " truly", " merely", " just"], [" even", " ,", " **", " though", " just", " anyway", " entirely", " as"], [" ,", " even", " just", " though", " as", " truly", " **", " still"], [" ,", " even", " as", " just", " truly", " only", " for", " still"], [" ,", " even", " as", " \u2014", " for", " just", " only", " because"], [" ,", " as", " even", " only", " because", " for", " in", " just"], [" ,", " as", " even", " only", " for", " in", " .", " just"], [" ,", " as", " only", " in", " even", " because", " .", " \""], [" \u2014", " as", " because", " only", " but", " by", " essentially", " just"], [" because", " \u2014", "\u2014but", " via", " (", " but", " technically", " literally"], [" \u2014", "\u2014but", " (", " but", " because", " technically", " \u2013", " \""], [" technically", " \u2014", " because", "\u2014but", " arguably", " (", " literally", " \""], [" because", " technically", "\u2014but", " \u2014", " (", " literally", " but", " arguably"], [" technically", " because", "\u2014but", " (", " literally", " but", " legitimately", " via"], [" technically", " because", " legally", "\u2014but", " legitimately", " via", " (", " internally"], [" technically", " because", " legally", " via", " (", " legitimately", " but", " literally"], [" technically", " because", " legally", " officially", " via", " legal", " legitimately", " \u2014"], [" technically", " legally", " because", " officially", " legal", " legitimately", " via", " arguably"], [" technically", " legally", " because", " legal", " via", " officially", " legitimately", " arguably"], [" technically", " legally", " because", " legal", " officially", " via", " strictly", " arguably"], [" technically", " legally", " because", " legal", " strictly", " arguably", " officially", " technical"], [" technically", " legally", " because", " officially", " strictly", " arguably", " via", " legitimately"], [" technically", " because", " legally", " legal", " officially", " strictly", " arguably", " via"], [" technically", " because", " legally", "\u2014but", " legal", " officially", " legality", " via"], [" legally", " technically", " because", " officially", " legal", " legality", " via", " strictly"], [" because", " legally", " technically", "\u56e0\u4e3a\u4f60", " legality", " juridi", "because", " legale"], [" because", " technically", " legally", "\u56e0\u4e3a\u4f60", " software", "because", " legale", " externally"], [" because", " software", " technically", "\u56e0\u4e3a\u4f60", " legally", " code", " externally", " workflows"], [" because", " according", " legally", "\u56e0\u4e3a\u4f60", " software", " runtime", " code", " technically"], [" from", "-from", "from", "\u5f9e", " code", " FROM", " desde", "\tfrom"], [" from", " code", "from", "-from", "\u5f9e", " software", " FROM", "\u5730\u4ece"], [" from", " code", " because", " software", " compliant", " compliance", " workflows", " API"], [" from", " code", " because", " deployment", " software", " compliant", " runtime", " API"], [" from", " code", " because", " deployment", " software", " compliant", " deploy", " API"], [" from", " because", " code", " deployment", " shipping", " source", " compliant", " developer"], [" from", " code", " shipping", " because", " application", " deployment", " compliant", " shipped"], [" from", " because", " code", " shipping", " at", " for", " in", " application"], [" from", " because", " in", " at", " for", " shipping", " code", " by"]], "p": [[0.3395, 0.1035, 0.1035, 0.0914, 0.0914, 0.0489, 0.0459, 0.0405], [0.0467, 0.0049, 0.0021, 0.0018, 0.0018, 0.0015, 0.0014, 0.0012], [0.188, 0.1558, 0.0945, 0.0784, 0.0506, 0.0327, 0.0254, 0.0145], [0.0076, 0.0067, 0.0038, 0.0032, 0.0019, 0.0013, 0.0012, 0.0011], [0.0031, 0.0031, 0.0023, 0.002, 0.002, 0.0019, 0.0016, 0.0015], [0.0089, 0.0054, 0.0048, 0.0037, 0.0037, 0.0033, 0.0033, 0.0031], [0.0866, 0.0718, 0.0634, 0.0117, 0.0043, 0.0036, 0.0036, 0.003], [0.0446, 0.0198, 0.0082, 0.0068, 0.0068, 0.0057, 0.0053, 0.005], [0.02, 0.0114, 0.0078, 0.0078, 0.0061, 0.0045, 0.0039, 0.0037], [0.0101, 0.0069, 0.0035, 0.0027, 0.0024, 0.0024, 0.0024, 0.0021], [0.1241, 0.0277, 0.0139, 0.0139, 0.0102, 0.0084, 0.0079, 0.0075], [0.008, 0.0075, 0.007, 0.0051, 0.0048, 0.0048, 0.0043, 0.0043], [0.0393, 0.0238, 0.0185, 0.0127, 0.0057, 0.0053, 0.0053, 0.005], [0.0706, 0.0333, 0.0294, 0.0157, 0.0139, 0.0096, 0.0084, 0.0066], [0.1786, 0.058, 0.031, 0.02, 0.0156, 0.0138, 0.0122, 0.0107], [0.0356, 0.0216, 0.0131, 0.009, 0.0075, 0.007, 0.007, 0.0062], [0.0986, 0.0386, 0.0234, 0.0194, 0.0125, 0.0125, 0.0104, 0.0098], [0.0552, 0.0404, 0.0261, 0.0245, 0.0149, 0.014, 0.0123, 0.0116], [0.1414, 0.0589, 0.0296, 0.0231, 0.0204, 0.018, 0.0149, 0.0132], [0.2301, 0.04, 0.0292, 0.0275, 0.0242, 0.0214, 0.0177, 0.0157], [0.0849, 0.0583, 0.0401, 0.0332, 0.0293, 0.0243, 0.0228, 0.0215], [0.0677, 0.0636, 0.0265, 0.0151, 0.0104, 0.0097, 0.0092, 0.0081], [0.1248, 0.0489, 0.0431, 0.0431, 0.0381, 0.0316, 0.0217, 0.0191], [0.1456, 0.0883, 0.0417, 0.0368, 0.0368, 0.0253, 0.0253, 0.0185], [0.1918, 0.1027, 0.0706, 0.0623, 0.0294, 0.019, 0.019, 0.019], [0.1728, 0.1264, 0.0636, 0.03, 0.0265, 0.0265, 0.0161, 0.0161], [0.1235, 0.0904, 0.0515, 0.0333, 0.0333, 0.0333, 0.0259, 0.0215], [0.2708, 0.0643, 0.039, 0.039, 0.0304, 0.0173, 0.0163, 0.0163], [0.2054, 0.1812, 0.043, 0.0357, 0.023, 0.0216, 0.0203, 0.0169], [0.222, 0.1049, 0.0817, 0.0437, 0.03, 0.0282, 0.0265, 0.0249], [0.2095, 0.099, 0.0873, 0.0412, 0.0321, 0.0321, 0.0283, 0.0283], [0.1484, 0.0795, 0.0795, 0.0619, 0.0425, 0.0375, 0.0331, 0.0331], [0.1808, 0.0968, 0.0356, 0.0356, 0.0356, 0.0314, 0.0295, 0.0295], [0.077, 0.0723, 0.068, 0.0412, 0.0412, 0.0302, 0.0266, 0.025], [0.1151, 0.1016, 0.0698, 0.048, 0.0374, 0.0291, 0.0241, 0.0241], [0.3579, 0.2787, 0.0402, 0.0354, 0.0333, 0.0229, 0.0215, 0.0108], [0.1912, 0.1489, 0.1489, 0.116, 0.0401, 0.0332, 0.0243, 0.0178], [0.2308, 0.1798, 0.0798, 0.0401, 0.0377, 0.0293, 0.0259, 0.0243], [0.3567, 0.1312, 0.062, 0.0454, 0.0243, 0.0228, 0.0214, 0.0178], [0.4008, 0.1301, 0.0577, 0.0479, 0.0256, 0.02, 0.0137, 0.0129], [0.409, 0.1932, 0.0357, 0.0217, 0.0169, 0.014, 0.0131, 0.0116], [0.3286, 0.137, 0.0647, 0.0253, 0.0238, 0.0197, 0.0197, 0.0164], [0.3518, 0.1294, 0.1008, 0.0371, 0.0348, 0.0271, 0.0175, 0.0145], [0.3373, 0.1241, 0.0966, 0.0429, 0.0403, 0.0179, 0.0139, 0.0139], [0.6938, 0.0829, 0.0269, 0.0209, 0.0119, 0.0105, 0.0099, 0.0082], [0.7139, 0.0752, 0.0334, 0.0179, 0.009, 0.0084, 0.0084, 0.007], [0.7729, 0.0719, 0.0264, 0.0117, 0.0081, 0.0071, 0.0067, 0.0063], [0.4826, 0.2012, 0.1775, 0.0146, 0.0121, 0.0069, 0.0065, 0.0054], [0.3442, 0.2681, 0.2366, 0.0133, 0.0118, 0.0071, 0.0046, 0.0043], [0.2868, 0.2531, 0.1535, 0.0172, 0.0134, 0.0111, 0.0063, 0.0046], [0.299, 0.0912, 0.071, 0.0405, 0.014, 0.0075, 0.0058, 0.0048], [0.5169, 0.0512, 0.0424, 0.0424, 0.031, 0.0129, 0.0051, 0.0048], [0.298, 0.0753, 0.0587, 0.0356, 0.0356, 0.0102, 0.0102, 0.0096], [0.2201, 0.0556, 0.0523, 0.0382, 0.0359, 0.0192, 0.017, 0.017], [0.9524, 0.0064, 0.0064, 0.0039, 0.0034, 0.003, 0.0018, 0.0018], [0.9209, 0.0062, 0.0048, 0.0045, 0.004, 0.0028, 0.0024, 0.0023], [0.7115, 0.0313, 0.0243, 0.0243, 0.0157, 0.0095, 0.0079, 0.0074], [0.5088, 0.2723, 0.0253, 0.0082, 0.0082, 0.0077, 0.0068, 0.0064], [0.5865, 0.1483, 0.0481, 0.0425, 0.0107, 0.0095, 0.0074, 0.0069], [0.8857, 0.0303, 0.0303, 0.0053, 0.0041, 0.0036, 0.0032, 0.0026], [0.6544, 0.1137, 0.0537, 0.0369, 0.0198, 0.0113, 0.0068, 0.0053], [0.8077, 0.0751, 0.0215, 0.0102, 0.0102, 0.0074, 0.0062, 0.0051], [0.8969, 0.0447, 0.0128, 0.01, 0.0088, 0.0042, 0.0022, 0.0018]], "ranks": {"Python": [28803, 152421, 130120, 170512, 42406, 87465, 19891, 17330, 38423, 93441, 15815, 13337, 15190, 22529, 26307, 46999, 24468, 21980, 40905, 74325, 47530, 83116, 50271, 29774, 33042, 53987, 26317, 15268, 12246, 15287, 13929, 14530, 18568, 23961, 44531, 17330, 27287, 16989, 18429, 16213, 9730, 12515, 12117, 12470, 8887, 8158, 9509, 5999, 8672, 8083, 22482, 1777, 1336, 1162, 410, 376, 56, 148, 158, 465, 452, 149, 171]}}, {"pos": 522, "top": [[",", ".", "\u2013", "\u00a0", " \u2013", ";", "s", "\u2026."], [",", "\u2013", "\u2011", ".", "\u200c", "s", ";", "\u2026.."], [",", ".", "\u2013", "\u2026", "\u2026.", ";", "\u2026..", " [\u2026]"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " St\u00e9ph", "\uc3df", " \u041a\u0440\u0430\u0441\u0438", " addir", "\ufffd\ufffd", "indest", "TRGL"], ["s", ",", "\u2011", "ed", "\uff20", "@", "\u2026", ".@"], ["s", "\u2026..", "sWith", "sink", "s\u00f3", "say", "ed", "song"], ["s", "\u2026\u2026", " \u2026", "\u2026", "\u2014\u2014", "som", " [\u2026]", "\u2026.."], ["s", "sce", " @", "som", " hugely", "s\u00f3", "says", "said"], ["s", "\u2026\u2026", "sce", "\u2026..", "schuss", "sheet", " [\u2026]", " \u2026."], ["s", "sce", "\u516c\u53f7", "-Cds", ",", "som", "r\u00e9di", "-but"], ["s", " \u00ad", "-but", "\u2014", " [\u2026]", "looking", ",", "-out"], [" **\u300c", "schuss", " **>>", "sce", " '''", "eming", "agerie", "\u5927\u4f19"], ["schuss", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " **>>", " **\u300c", "\u6e90\u5934\u4e0a", "sce", "\u5927\u4f19", " veggies"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "schuss", "\u5927\u4f19", "\u6e90\u5934\u4e0a", " veggies", " iepaz\u012b\u0161an\u0101s", "\u8fd9\u4e8b\u513f", "\u81ea\u4e2a"], ["\u5927\u4f19", " goodies", " folks", "schuss", "\u5404\u79cd\u4e0d\u540c\u7684", "\u6e90\u5934\u4e0a", "\u67e5\u67e5", "orgeous"], [" folks", "\u62e5\u6709\u7740", "\u5927\u4f19", "\u6e90\u5934\u4e0a", "\u538b\u6839", "\u81ea\u4e2a", " veggies", "\u7684\u4e8b\u513f"], ["s", "\u6e90\u5934\u4e0a", " folks", "\u538b\u6839", " veggies", "\u7684\u4e8b\u513f", " goodies", "\u5927\u4f19"], ["\u6e90\u5934\u4e0a", "\u538b\u6839", "\u7684\u4e8b\u513f", "\u81ea\u8d38", "\u5473\u513f", "\u8fd9\u4e8b\u513f", " hugely", " folks"], [" \u2014", "\u2014even", "\u6e90\u5934\u4e0a", " hugely", "\u81ea\u8d38", " arguably", " \u2015", "\u7684\u4e8b\u513f"], [" \u2014", " \u2015", " hugely", " whence", "s", "\u2014even", " arguably", "\u67d0\u79cd\u610f\u4e49\u4e0a"], [" \u2014", "<|endoftext|>", "s", "\u2014", " \n\n", " hugely", "though", "\u2014and"], ["\u59cb\u81f3\u7ec8", "\u6e90\u5934\u4e0a", "\u4e00\u5927\u5806", " **>>", "eming", "\u81ea\u8d38", "\u67d0\u79cd\u610f\u4e49\u4e0a", "\u7f57\u90a3"], ["\u59cb\u81f3\u7ec8", "\u67d0\u79cd\u610f\u4e49\u4e0a", " ''", "\u6e90\u5934\u4e0a", " ``", "\u65b9\u65b9\u9762\u9762", "\u4e00\u5927\u5806", "\u81ea\u8d38"], [" hugely", "\u67d0\u79cd\u610f\u4e49\u4e0a", " ''", " arguably", " \u2015", " whence", " ``", "s"], ["\u67d0\u79cd\u610f\u4e49\u4e0a", " \n\n", "\u900f\u7740", " hugely", " \r\n\r\n", " whence", " arguably", " \uadf8\uc800"], ["\u67d0\u79cd\u610f\u4e49\u4e0a", "\u59cb\u81f3\u7ec8", "\u900f\u7740", "\u4e00\u5927\u5806", " folks", "\u9aa8\u5b50\u91cc", "\u65b9\u65b9\u9762\u9762", "\u5473\u513f"], ["\u67d0\u79cd\u610f\u4e49\u4e0a", " arguably", "\u59cb\u81f3\u7ec8", " \u2015", "\u900f\u7740", " hugely", "\u76f8\u5173\u884c\u4e1a", "\u4e00\u5927\u5806"], [" --", " arguably", " \n\n", " ''", " \u2015", " hugely", " folks", " myriad"], [" arguably", " hugely", " \n\n", " myriad", "\u67d0\u79cd\u610f\u4e49\u4e0a", " ostensibly", " folks", " truly"], [" \n\n", " \u2014", " arguably", "  \n\n", "   \n\n", " ____", " \n  \n", " ________"], [" \n\n", " arguably", " \u2014", " whatever", " **", " genuinely", " truly", " what"], [" truly", " \n\n", " everything", " arguably", " whatever", " \u2014", " actually", " essentially"], [" \u2014", " truly", " ,", " arguably", " ultimately", " essentially", " actually", " everything"], [" \u2014", "\u2014but", " technically", " arguably", " truly", " conceptual", " tech", " ostensibly"], ["\u2014but", " \u2014", " arguably", " technically", " tech", "\u2014and", "\u2014even", "\u2014or"], [" \u2014", " \u2014\u2014", "\u2014but", "\u2014\u2014", " tech", " \ud83d\ude09", " technically", "\u2014and"], [" tech", " technically", " \u2014", " \u2014\u2014", "\u2014but", " hardware", " **\u2014", " conceptual"], [" tech", " technically", " conceptual", " technical", " hardware", " software", " engineering", " perspective"], [" perspective", " conceptual", " technically", " technical", " tech", " software", " internal", " hardware"], [" perspective", " software", " tech", " technical", "erspective", " technically", " conceptual", " developer"], [" perspective", " software", " programmers", " programmer", " tech", " technical", " developer", " hardware"], [" perspective", " software", " programmer", " programmers", " developer", " developers", " conceptual", " perspectives"], [" perspective", " software", " programmers", " programmer", " conceptual", " externally", "erspective", " developers"], [" software", " perspective", " programmer", " programmers", " developer", " developers", " conceptual", " technical"], [" perspective", " software", " programmer", " programmers", " users", " user", " standpoint", " conceptual"], [" perspective", " technically", " software", " standpoint", " programmer", " legal", " programmers", " conceptual"], [" perspective", " standpoint", " software", " technically", " users", " user", " conceptual", " viewpoint"], [" perspective", " standpoint", " software", " users", " user", "erspective", " stakeholders", " Perspective"], [";**", "erspective", " standpoint", " perspective", " software", "/legal", " toolkit", " programmer"], [";**", "/legal", " standpoint", "erspective", "\u6316\u6398\u516c\u53f8", "-syntax", " perspective", " toolkit"], [" standpoint", "/legal", "erspective", " perspective", ";**", "\u89c6\u89d2", "\u8996\u70b9", "\u6316\u6398\u516c\u53f8"], ["\u7a0b\u5e8f\u5458", " programmer", " programmers", ";**", "-syntax", "/software", " software", "\u6316\u6398\u516c\u53f8"], [" programmer", "\u7a0b\u5e8f\u5458", " SDK", " standpoint", "\u6316\u6398\u516c\u53f8", "erspective", " scripting", "-syntax"], [" programmer", "\u7a0b\u5e8f\u5458", " SDK", "-syntax", " developer", " CLI", " CRUD", " programmers"], [" perspective", " standpoint", "\u89c6\u89d2", " Perspective", " viewpoint", " programmer", "erspective", " perspectives"], [" standpoint", " perspective", " programmer", " SDK", "\u89c6\u89d2", " developer", "\u7a0b\u5e8f\u5458", " POV"], [" developer", " programmer", " SDK", " standpoint", " API", "\u7a0b\u5e8f\u5458", " developers", " Developer"], [" developer", " API", " SDK", " developers", "developer", " Developer", " devs", " CLI"], [" API", " developer", " SDK", " CLI", " APIs", "/API", "API", " programmer"], [" developer", " API", " SDK", " developers", " Developer", " CLI", "developer", " APIs"], [" API", " developer", " SDK", " CLI", " packaging", " APIs", " developers", " Developer"], [" API", " developer", " SDK", " CLI", " app", " CI", " packaging", " project"], [" the", " developer", " API", " a", " an", " SDK", " packaging", " project"]], "p": [[0.8387, 0.1286, 0.0154, 0.0044, 0.0034, 0.003, 0.0014, 0.0011], [0.4959, 0.1106, 0.0671, 0.0461, 0.0117, 0.0103, 0.0091, 0.008], [0.8882, 0.0501, 0.039, 0.0112, 0.0028, 0.0023, 0.0022, 0.0005], [0.0038, 0.0016, 0.0016, 0.0014, 0.0013, 0.0012, 0.0011, 0.0011], [0.0707, 0.0168, 0.009, 0.0058, 0.0042, 0.004, 0.0027, 0.0026], [0.0537, 0.006, 0.0044, 0.0039, 0.0037, 0.0037, 0.0032, 0.0022], [0.4382, 0.0978, 0.0408, 0.0181, 0.016, 0.0097, 0.0075, 0.0038], [0.0714, 0.0085, 0.0046, 0.0046, 0.004, 0.0031, 0.0028, 0.0026], [0.0144, 0.0087, 0.0087, 0.0053, 0.005, 0.0034, 0.003, 0.0027], [0.0018, 0.0015, 0.0013, 0.0013, 0.0012, 0.0012, 0.0012, 0.0012], [0.094, 0.0144, 0.0077, 0.0072, 0.005, 0.0044, 0.0041, 0.0036], [0.0113, 0.0073, 0.0073, 0.0037, 0.0032, 0.0022, 0.0018, 0.0018], [0.0147, 0.0122, 0.0095, 0.0089, 0.0027, 0.0023, 0.0019, 0.0018], [0.0089, 0.0079, 0.0037, 0.0027, 0.0021, 0.0016, 0.0015, 0.0015], [0.0057, 0.0054, 0.0051, 0.0051, 0.0021, 0.0021, 0.0021, 0.0019], [0.0058, 0.004, 0.0031, 0.0023, 0.0023, 0.002, 0.0018, 0.0016], [0.0201, 0.0095, 0.0074, 0.0031, 0.0029, 0.0027, 0.0027, 0.0026], [0.004, 0.0033, 0.0031, 0.0026, 0.0026, 0.0026, 0.0023, 0.0021], [0.0063, 0.0049, 0.0043, 0.0041, 0.0034, 0.0032, 0.003, 0.003], [0.0243, 0.0108, 0.007, 0.0062, 0.0062, 0.0048, 0.0045, 0.0031], [0.0277, 0.026, 0.0116, 0.0096, 0.0048, 0.0043, 0.004, 0.0038], [0.0093, 0.0036, 0.003, 0.0021, 0.0019, 0.0016, 0.0015, 0.0014], [0.0086, 0.0059, 0.0055, 0.0046, 0.0025, 0.0023, 0.002, 0.0018], [0.0037, 0.0035, 0.0032, 0.0031, 0.0029, 0.0025, 0.0024, 0.0024], [0.0046, 0.0038, 0.0028, 0.0026, 0.0025, 0.0023, 0.0021, 0.0018], [0.0055, 0.0031, 0.0031, 0.0024, 0.002, 0.0019, 0.0019, 0.0016], [0.0045, 0.0043, 0.0043, 0.002, 0.0019, 0.0018, 0.0016, 0.0015], [0.0344, 0.0209, 0.0105, 0.0082, 0.0072, 0.0068, 0.0064, 0.006], [0.0253, 0.006, 0.005, 0.0041, 0.0041, 0.0041, 0.0039, 0.0039], [0.2304, 0.0514, 0.0214, 0.0157, 0.0095, 0.0065, 0.0061, 0.0054], [0.0925, 0.0234, 0.0182, 0.0133, 0.0092, 0.0071, 0.0071, 0.0063], [0.0348, 0.0307, 0.0271, 0.0254, 0.0198, 0.0186, 0.0175, 0.0145], [0.0331, 0.0274, 0.0274, 0.0257, 0.0242, 0.0166, 0.0122, 0.0122], [0.0625, 0.0379, 0.0245, 0.0245, 0.0148, 0.0102, 0.009, 0.0062], [0.0519, 0.0296, 0.023, 0.0149, 0.0131, 0.009, 0.009, 0.0075], [0.2141, 0.1077, 0.0788, 0.0449, 0.0272, 0.0187, 0.0121, 0.0113], [0.046, 0.046, 0.0381, 0.0246, 0.0124, 0.0124, 0.0116, 0.0116], [0.0608, 0.0473, 0.0418, 0.0253, 0.0238, 0.0144, 0.0112, 0.0077], [0.169, 0.0515, 0.0401, 0.0401, 0.0333, 0.0276, 0.0229, 0.0202], [0.1712, 0.0382, 0.0279, 0.0263, 0.0247, 0.0218, 0.0204, 0.0159], [0.1382, 0.122, 0.0838, 0.074, 0.0576, 0.0396, 0.0226, 0.0212], [0.2329, 0.1246, 0.0756, 0.0667, 0.0217, 0.018, 0.0158, 0.0149], [0.1979, 0.0775, 0.0643, 0.0567, 0.0222, 0.0173, 0.0135, 0.0135], [0.1107, 0.0977, 0.0461, 0.0407, 0.0159, 0.015, 0.015, 0.0141], [0.1442, 0.0468, 0.0468, 0.0388, 0.0172, 0.0152, 0.0143, 0.0118], [0.1263, 0.03, 0.0265, 0.0182, 0.0171, 0.0161, 0.0151, 0.0142], [0.17, 0.0216, 0.0191, 0.0191, 0.0168, 0.0149, 0.0131, 0.0123], [0.1428, 0.0339, 0.0193, 0.0141, 0.0141, 0.0133, 0.0125, 0.011], [0.0662, 0.0178, 0.0157, 0.0157, 0.0122, 0.0122, 0.009, 0.0084], [0.1071, 0.0186, 0.0106, 0.0094, 0.0094, 0.0068, 0.006, 0.0057], [0.0563, 0.0283, 0.0207, 0.0183, 0.0126, 0.0118, 0.0111, 0.0076], [0.0668, 0.0668, 0.0262, 0.0217, 0.0217, 0.0169, 0.0159, 0.0109], [0.0566, 0.0414, 0.0208, 0.0143, 0.0135, 0.0126, 0.0119, 0.0119], [0.1162, 0.0705, 0.0354, 0.0244, 0.0202, 0.0148, 0.0148, 0.013], [0.4689, 0.2844, 0.1046, 0.03, 0.0182, 0.016, 0.011, 0.0097], [0.2213, 0.1521, 0.1342, 0.0436, 0.03, 0.03, 0.0219, 0.0206], [0.2413, 0.2129, 0.114, 0.037, 0.037, 0.0288, 0.0224, 0.0224], [0.4573, 0.0901, 0.0795, 0.0546, 0.0425, 0.0292, 0.0228, 0.0228], [0.3841, 0.2056, 0.1814, 0.0405, 0.0217, 0.0191, 0.0169, 0.0131], [0.5749, 0.1454, 0.1132, 0.0223, 0.0197, 0.0119, 0.0093, 0.0072], [0.2814, 0.2483, 0.1506, 0.0297, 0.0204, 0.0132, 0.0124, 0.0116], [0.2727, 0.1875, 0.1068, 0.0347, 0.0186, 0.0174, 0.0154, 0.0128], [0.7886, 0.0346, 0.0197, 0.0197, 0.0174, 0.0099, 0.0073, 0.005]], "ranks": {"Python": [130720, 224301, 110882, 225398, 161722, 173498, 94311, 125920, 127292, 143715, 89471, 160194, 173477, 155761, 171914, 193615, 176409, 131461, 165887, 190280, 78897, 182973, 163240, 130186, 72238, 139454, 107461, 45530, 55309, 67627, 41180, 21835, 27001, 40459, 54693, 4463, 2955, 1138, 1509, 914, 140, 411, 653, 1558, 1796, 2386, 2495, 1893, 3564, 8486, 14827, 2331, 959, 362, 216, 178, 21, 25, 20, 102, 53, 83, 46]}}, {"pos": 523, "top": [[".", ",", " \u2013", ";", "\u2013", "\u00a0", " ", "\u00a0\u00a0"], [".", ",", " \u2013", "\u2013", ";", " ", "\u2013and", " \u200b\u200b"], [".", ",", "\u2013", " \u2013", "\u2026", ";", "\u2026.", "\u2026.."], [" milfs", "-------------</", "----------</", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Shemale", "TRGL", " ;;^", " Blowjob"], [".", ",", ".@", " ", " \u201c.", " \"@", "\u00a0\u00a0", " \u201c"], [".", ",", " \u200b\u200b", "\u00a0\u00a0", " \u201c.", ":", "\u2026.", " "], [".", " ", ",", ".\u201d", "  \n", ".\u2019", "\u00a0", " \u201d"], [".", ",", ":", " ", " \u200b\u200b", ";", "!", "  \n"], [".", ",", "\u00a0", ";", ",.", ":", ".\u201d", "!"], [",", ".", ";", "\u00a0", " \u00ad", "\u00ad", "\u00a0\u00a0", "\u2013"], [",", ".", "\u00a0", " \u00ad", "-", ";", " ", "..."], [" \u00ad", " folks", " hard", " guts", "\u5927\u90e8\u4efd", "-esque", " arguably", " solid"], [" hard", " folks", " savvy", " solid", "-esque", " hardcore", " showcase", " guts"], ["-esque", " savvy", " folks", " showcase", " vibe", " vibes", " albeit", " hardcore"], [" folks", " truly", " savvy", " approach", " arguably", " choice", " \"", " Philly"], [" folks", " savvy", " arguably", " approach", "-esque", " plenty", " truly", " tough"], [",", "-esque", " folks", "o", " savvy", " arguably", " approach", " myriad"], [",", " \u00ad", "-esque", "o", " savvy", "\u00a0", "\u2013", " approach"], [",", "-esque", " \u00ad", " arguably", " savvy", " myriad", " truly", " seemingly"], [" \u00ad", " \u2014", " myriad", " arguably", " ultimately", " much", " though", " seemingly"], ["<|endoftext|>", " \u00ad", " though", " \n\n", " \u2014", " ", " f", " ultimately"], [" ultimately", " arguably", " hard", " much", " hugely", " savvy", " down", " front"], [" ''", " ultimately", " much", " ``", " arguably", " down", " front", " back"], [" ultimately", " ,", " much", " ''", " largely", " more", " eventually", " back"], [" ultimately", " ''", " \n\n", " arguably", " much", " ,", " seemingly", " ``"], [" ``", " politics", " ultimately", " arguably", " ''", " technology", " power", " tech"], [" ultimately", " arguably", " power", " ''", " ``", " tools", " scripting", " heavily"], [" \n\n", "\n\n", " ,", " '", " ultimately", " much", " --", "  \n\n"], [" \n\n", "\n\n", "  \n\n", " complex", " ultimately", " tools", " power", " ,"], [" \n\n", " \n  \n", " \n", " ...", "  \n\n", "\u2011", " complex", " technology"], [" \n\n", " ...", " ", " \n", " .", " \u2026", " \n  \n", " technology"], [" ", " ,", " .", " ...", " work", " complex", " power", " to"], [" ,", " .", " ", " '", " \"", " to", " over", " -"], [" workflows", " tech", " functionality", "\u2011", " workflow", " software", " \u2026", " technical"], [" workflows", " tech", " technical", " functionality", " workflow", " infrastructure", " software", " hardware"], [" \u2026", "\u2011", " \u201c", " [\u2026]", " tech", " [...]", " workflows", " technical"], ["\u2011", " workflows", " tech", " software", " technical", " hardware", " frameworks", " workflow"], ["\u2011", " workflows", " technical", " designers", " frameworks", " architecture", " scripting", " software"], [" designers", " workflows", " design", " designer", " scripting", " programming", " frameworks", " technical"], [" designers", " customization", " scripting", " frameworks", " developers", " programming", " workflows", " customizable"], [" scripting", " programming", " programmers", " scripts", " programmer", " software", " developers", " designers"], [" scripting", " programming", " scripts", " programmer", " programmers", " script", " software", " designers"], [" scripting", " programming", " scripts", " programmers", " programmer", " script", " designers", " developers"], [" scripting", " programming", " developers", " scripts", " designers", " programmers", " developer", " programmer"], [" scripting", " programming", " developers", " programmers", " designers", " scripts", " programmer", " users"], [" scripting", " designers", " programming", " programmers", " developers", " scripts", " users", " programmer"], [" scripting", " users", " developers", " programming", " designers", " programmers", " scripts", " user"], [" users", " user", " programming", " developers", " programmers", " scripting", " designers", " programmer"], [" users", " programmers", " programmer", " designers", " developers", " scripting", " programming", " user"], [";**", " users", " **", " programmers", " programmer", " scripting", " workflow", " toolkit"], [" programmers", " programmer", " users", ";**", " workflow", " toolkit", " scripting", " developers"], [" programmer", " programmers", "\u7a0b\u5e8f\u5458", " developers", " developer", " software", " programming", " workflow"], [" programmer", " developer", " programmers", " workflow", "\u7a0b\u5e8f\u5458", " developers", "-code", " code"], [" programmer", " developer", " developers", " workflow", " programmers", "\u7a0b\u5e8f\u5458", " SDK", " devs"], [" programmer", " developer", "\u7a0b\u5e8f\u5458", " programmers", " developers", " coder", "\u5f00\u53d1\u8005", " Developer"], [" programmer", " developer", " developers", "\u7a0b\u5e8f\u5458", " programmers", " coder", " user", " SDK"], [" developer", " programmer", " developers", "\u5f00\u53d1\u8005", " Developer", "\u7a0b\u5e8f\u5458", " programmers", "developer"], [" developer", " developers", " perspective", " programmer", "developer", " Developer", "\u5f00\u53d1\u8005", " devs"], [" developer", " programmer", " developers", "developer", " Developer", "\u5f00\u53d1\u8005", " perspective", " devs"], [" developer", " developers", " Developer", "developer", "\u5f00\u53d1\u8005", " programmer", " application", " devs"], [" developer", " developers", " application", " Developer", " perspective", " programmer", "developer", " SDK"], [" developer", " app", " perspective", " application", " project", " SDK", " user", " API"], [" developer", " project", " app", " perspective", " application", " API", " user", " company"]], "p": [[0.8313, 0.1637, 0.0014, 0.0011, 0.0011, 0.0002, 0.0002, 0.0002], [0.3807, 0.2965, 0.1161, 0.0904, 0.0122, 0.0062, 0.0019, 0.0015], [0.6684, 0.2786, 0.0377, 0.0108, 0.0011, 0.0011, 0.0009, 0.0003], [0.0098, 0.0086, 0.0067, 0.0063, 0.0034, 0.003, 0.0028, 0.0026], [0.1129, 0.0533, 0.0153, 0.0112, 0.0093, 0.005, 0.0047, 0.0041], [0.3164, 0.1694, 0.0244, 0.0123, 0.0062, 0.0058, 0.0045, 0.0024], [0.8138, 0.0381, 0.0316, 0.0191, 0.0096, 0.009, 0.009, 0.0066], [0.7029, 0.1892, 0.0083, 0.0047, 0.0035, 0.0027, 0.0021, 0.0017], [0.7265, 0.2673, 0.002, 0.0013, 0.0005, 0.0005, 0.0002, 0.0001], [0.9627, 0.0137, 0.0025, 0.002, 0.0017, 0.0008, 0.0005, 0.0004], [0.7948, 0.1773, 0.0113, 0.0031, 0.0025, 0.0024, 0.0014, 0.001], [0.0208, 0.0026, 0.0025, 0.0023, 0.0022, 0.0022, 0.0021, 0.0017], [0.005, 0.0028, 0.0028, 0.0027, 0.0025, 0.0025, 0.002, 0.0018], [0.0134, 0.0072, 0.0067, 0.0049, 0.0043, 0.0041, 0.003, 0.0025], [0.0215, 0.013, 0.0089, 0.0084, 0.0058, 0.0048, 0.0048, 0.0035], [0.0153, 0.0064, 0.0056, 0.005, 0.0041, 0.003, 0.0028, 0.0027], [0.0832, 0.0154, 0.0128, 0.0082, 0.0064, 0.0041, 0.0037, 0.0034], [0.3653, 0.0171, 0.0086, 0.0059, 0.0049, 0.0043, 0.0034, 0.003], [0.0181, 0.015, 0.0141, 0.0097, 0.0071, 0.0062, 0.004, 0.004], [0.0281, 0.0125, 0.0103, 0.0091, 0.0091, 0.0067, 0.0063, 0.0059], [0.358, 0.0108, 0.0054, 0.0048, 0.0037, 0.0037, 0.0035, 0.0033], [0.0028, 0.0025, 0.0016, 0.0016, 0.0016, 0.0014, 0.0013, 0.0013], [0.0088, 0.0069, 0.0035, 0.0027, 0.0025, 0.002, 0.0017, 0.0017], [0.0115, 0.0108, 0.0101, 0.0048, 0.0035, 0.0035, 0.0033, 0.0031], [0.0162, 0.0152, 0.0143, 0.0143, 0.0118, 0.0072, 0.0067, 0.006], [0.0274, 0.0101, 0.0095, 0.0095, 0.0084, 0.0069, 0.0057, 0.0057], [0.01, 0.0089, 0.0078, 0.0069, 0.0069, 0.0061, 0.0057, 0.0054], [0.1509, 0.086, 0.0337, 0.0103, 0.0096, 0.0096, 0.0091, 0.0085], [0.4473, 0.0827, 0.0345, 0.0064, 0.006, 0.0053, 0.0044, 0.0044], [0.2368, 0.0637, 0.0301, 0.0194, 0.0183, 0.0142, 0.0126, 0.0104], [0.2231, 0.099, 0.0724, 0.0342, 0.0207, 0.0195, 0.0143, 0.0111], [0.0659, 0.0546, 0.0292, 0.0214, 0.0214, 0.0201, 0.013, 0.0108], [0.1233, 0.0848, 0.0547, 0.04, 0.0353, 0.0147, 0.0122, 0.0115], [0.0993, 0.0414, 0.0285, 0.0251, 0.0236, 0.0222, 0.0222, 0.0208], [0.0427, 0.0401, 0.0228, 0.0178, 0.0167, 0.0147, 0.0147, 0.0138], [0.4614, 0.1407, 0.0277, 0.019, 0.0139, 0.0139, 0.0096, 0.0096], [0.1453, 0.0569, 0.0237, 0.0163, 0.0153, 0.0135, 0.0135, 0.0127], [0.0893, 0.0478, 0.0422, 0.0272, 0.0199, 0.0165, 0.0165, 0.0146], [0.1047, 0.0437, 0.0362, 0.0362, 0.034, 0.03, 0.0282, 0.0282], [0.0833, 0.0393, 0.037, 0.0347, 0.0347, 0.0347, 0.0306, 0.0288], [0.2592, 0.2019, 0.0743, 0.0578, 0.051, 0.0373, 0.031, 0.0241], [0.6183, 0.138, 0.0837, 0.0349, 0.0308, 0.0165, 0.0088, 0.0061], [0.5099, 0.2126, 0.0782, 0.0419, 0.0254, 0.0154, 0.0106, 0.0106], [0.2654, 0.1254, 0.0862, 0.0592, 0.0461, 0.0433, 0.0337, 0.028], [0.1641, 0.1641, 0.0775, 0.0684, 0.0604, 0.047, 0.0323, 0.0323], [0.1431, 0.1115, 0.1115, 0.0766, 0.0766, 0.0495, 0.0465, 0.0362], [0.0967, 0.0967, 0.0908, 0.0707, 0.0586, 0.0551, 0.0486, 0.0403], [0.1881, 0.065, 0.0611, 0.0539, 0.0476, 0.0447, 0.0394, 0.0327], [0.1094, 0.0707, 0.0624, 0.055, 0.0456, 0.0378, 0.0378, 0.0355], [0.1079, 0.0789, 0.045, 0.0373, 0.0309, 0.0226, 0.0187, 0.0165], [0.0911, 0.0755, 0.0588, 0.038, 0.0335, 0.0245, 0.0216, 0.0203], [0.292, 0.1563, 0.0575, 0.0448, 0.0421, 0.0289, 0.0272, 0.024], [0.2728, 0.0886, 0.0609, 0.0474, 0.0393, 0.0369, 0.0238, 0.021], [0.2959, 0.2304, 0.0748, 0.0583, 0.0454, 0.0201, 0.0189, 0.0115], [0.6589, 0.2424, 0.0289, 0.0121, 0.0106, 0.0073, 0.0039, 0.0039], [0.612, 0.2891, 0.0163, 0.0087, 0.0087, 0.0068, 0.0068, 0.0047], [0.7022, 0.228, 0.0396, 0.0054, 0.0054, 0.0037, 0.0029, 0.0029], [0.9093, 0.04, 0.0242, 0.0054, 0.0054, 0.0048, 0.0042, 0.0018], [0.9762, 0.0066, 0.0066, 0.0045, 0.0021, 0.0021, 0.0003, 0.0003], [0.9885, 0.0067, 0.0017, 0.0015, 0.0006, 0.0003, 0.0002, 0.0001], [0.9818, 0.004, 0.0035, 0.0015, 0.0013, 0.0009, 0.0008, 0.0006], [0.9545, 0.0073, 0.005, 0.0034, 0.003, 0.0021, 0.0017, 0.0017], [0.9611, 0.0073, 0.0045, 0.0039, 0.0035, 0.0019, 0.0016, 0.0013]], "ranks": {"Python": [43061, 151535, 112837, 182367, 37200, 64402, 8675, 40398, 46184, 53370, 25785, 46451, 38494, 53879, 24679, 58550, 70856, 39937, 39677, 45474, 10179, 4581, 2836, 3273, 717, 27, 196, 1008, 365, 413, 601, 1832, 2894, 710, 1000, 401, 93, 65, 86, 60, 14, 27, 37, 66, 65, 100, 101, 75, 110, 422, 481, 127, 53, 60, 107, 96, 17, 38, 32, 137, 67, 95, 110]}}, {"pos": 524, "top": [[".", "\u00a0\u00a0", " \u2013", ",", "  ", " ", " \u00a0", " \u2022"], [" \u2013", " \u200b\u200b", "\u2013", "  ", "\u200b\u200b", " \u2013,", "\u2013and", "\u00a0\u00a0"], [" \u2013", "\u2013", ",", ".", "\u2013and", " \u2013,", "[", "\u2026.."], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\ufffd\ufffd", " Highlander", "hyl", " rosk", " milfs", "\u30f3", "izer"], ["\u00a0\u00a0", " (@", "ized", "  ", ":@", "[\"@", " \u25a0", " \u200b\u200b"], ["\u00a0\u00a0", " \u200b\u200b", "  ", " \u00a0", "ized", " \u25a0", ":\"", " Harbor"], ["\u00a0\u00a0", " \u00a0", " \u2022", " \u25a0", ":\"", "\u2022", "\u200b", "  "], ["\u00a0\u00a0", " \u00a0", " \u200b\u200b", " \u25a0", ":\"", "\u200b\u200b", "  ", "ized"], ["\u00a0\u00a0", ",", " \u00a0", ".", " \u200b\u200b", "\u200b\u200b", " \u2013", "\u00ad"], ["\u00a0\u00a0", ",", " \u00a0", "\u00ad", " \u00ad", "\u2013", "\u00a0\u00a0\u00a0", "\u200b"], ["\u00a0\u00a0", " \u00a0", " \u00ad", "\u00ad", "\u00a0", "\u200b", " \u2013", "\u00a0\u00a0\u00a0"], ["\u00a0\u00a0", " \u00ad", " \u00a0", "\u00ad", " showcased", "\u00ads", " showcase", " \u25a0"], ["\u00a0\u00a0", " \u00a0", " \u00ad", "\u00ad", " showcase", "\u2019s", " showcased", " \u2013"], ["\u00a0\u00a0", " showcased", " showcase", " \u00ad", " showcasing", "\u00ad", " \u201a", " \u00a0"], ["\u00a0\u00a0", " \u00ad", " showcase", "\u00ad", " showcased", " showcasing", " \u00a0", " \u2013"], [" showcased", " showcase", " showcasing", "\u00a0\u00a0", " utilizing", "-esque", " mindset", " advancements"], ["\u00a0\u00a0", " \u00a0", " showcase", " showcased", " showcasing", "\u00a0", "-esque", " mindset"], ["\u00a0\u00a0", " showcase", " \u00a0", " showcased", " Showcase", " savvy", "-esque", " Developer"], [" showcase", " Developer", " showcased", "\u00a0\u00a0", " savvy", " \u00ad", " Showcase", "-esque"], [" \u00ad", " showcase", "\u00a0\u00a0", " showcased", " savvy", " Developer", " \u00a0", "-esque"], [" \u00ad", "\u00a0\u00a0", " \u00a0", "\u00ad", "\u00a0", "  \n\n", "\u00ads", " \u2013"], [" showcase", " mindset", " LGBTQ", "stv", " Developer", " Showcase", " showcased", " freelancer"], [" mindset", " showcase", " Developer", " developer", " savvy", " showcased", " workforce", " LGBTQ"], [" developer", " \u00ad", " Developer", " showcase", " mindset", " savvy", "developer", " ultimately"], ["   \n\n", " mindset", " \u00ad", "  \n\n", " Developer", "&nbsp", " developer", "  \n  \n"], [" developer", " Developer", " mindset", " workforce", " toolkit", " showcase", " tech", " developers"], [" developer", " workforce", " Developer", " mindset", " toolkit", " tech", " engineer", " showcase"], [" developer", " engineer", " tech", " workforce", " Developer", " developers", " team", " industry"], [" developer", " workforce", " Developer", " tech", " engineer", " developers", " mindset", " toolkit"], [" developer", " workforce", " tech", " mindset", " Developer", " engineer", " showcase", " toolkit"], [" developer", " tech", " technology", " team", " engineer", " developers", " industry", " workforce"], [" developer", " tech", " technology", " team", " industry", " engineer", " work", " tools"], [" \u2013", " tech", " developer", " technology", " team", " industry", " work", " tools"], [" tech", " developer", " technology", " engineers", " developers", " \u2013", " tools", " engineer"], [" tech", " developer", " engineers", " developers", " workforce", " technology", " engineer", " Developer"], [" tech", " developer", " \u2013", " Developer", " developers", " \u2014", " software", " programmer"], [" tech", " developer", " Developer", " developers", " toolkit", " programmer", " workflows", " workforce"], [" developer", " tech", " Developer", " developers", " programmer", " workflow", " workflows", " toolkit"], [" developer", " Developer", " developers", " tech", " programmer", " designers", " workflow", " workflows"], [" developer", " developers", " Developer", " tech", " programmer", " workflow", " workflows", " workforce"], [" developer", " developers", " tech", " programmer", " Developer", " programmers", " software", " engineers"], [" developer", " developers", " programmer", " programmers", " tech", " software", " engineers", " Developer"], [" developers", " developer", " programmer", " programmers", " workflow", " Developer", " workflows", " software"], [" developer", " developers", " workflow", " programmer", " programmers", " Developer", " workflows", " workforce"], [" developers", " developer", " workflow", " programmer", " programmers", " workforce", " workflows", " toolkit"], [" developer", " developers", " workflow", " workforce", " programmer", " programmers", " users", " staff"], [" workflow", " workforce", " developer", " developers", " workflows", " toolkit", " users", " programmer"], [" workflow", " workforce", " toolkit", " workflows", " developer", " users", " workspace", " software"], [" workflow", " toolkit", " workforce", " workflows", " workspace", " programmer", "/users", " developer"], [" workflow", " toolkit", " workforce", "-facing", " workflows", "/users", "/work", " workspace"], [" toolkit", " workflow", "/users", " workforce", "/UI", "/user", "/D", " ecosystem"], [" toolkit", " workflow", "/user", " ecosystem", " lifecycle", "/UI", " programmer", "-user"], [" toolkit", "/user", "\u2019s", " workflow", " ecosystem", "-facing", "-user", " programmer"], [" workflow", " toolkit", "-facing", "/user", "\u2019s", " programmer", "/UI", "/API"], [" workflow", " toolkit", " programmer", " workflows", " perspective", "workflow", " lifecycle", " SDK"], [" workflow", " toolkit", "/API", " workflows", " ecosystem", " lifecycle", "/user", " perspective"], [" workflow", " lifecycle", "/user", " workflows", "/API", " SDK", "workflow", "\u2019s"], [" perspective", " workflow", " experience", " standpoint", "/user", "-user", "\u89c6\u89d2", "-facing"], [" perspective", " experience", " workflow", "\u2019s", " standpoint", "experience", "_experience", "/API"], [" perspective", " experience", " workflow", " plugin", "\u2019s", " API", " UX", " standpoint"], [" experience", "\u2019s", " perspective", "'s", " workflow", " UX", " plugin", " SDK"], ["\u2019s", " experience", "'s", " UX", " perspective", " plugin", " workflow", "/user"], ["\u2019s", "/", "'s", " perspective", "/API", " experience", "/user", "/UI"]], "p": [[0.324, 0.1629, 0.0638, 0.0638, 0.0321, 0.0207, 0.0161, 0.0081], [0.8608, 0.0139, 0.0131, 0.0108, 0.0054, 0.0045, 0.0031, 0.0031], [0.7758, 0.1528, 0.0301, 0.0142, 0.0056, 0.0038, 0.002, 0.0018], [0.0069, 0.0031, 0.0025, 0.002, 0.0016, 0.0015, 0.0014, 0.0014], [0.3485, 0.0443, 0.0345, 0.0286, 0.0185, 0.0135, 0.0135, 0.0082], [0.2845, 0.03, 0.0133, 0.0117, 0.0091, 0.0049, 0.0026, 0.0025], [0.6126, 0.1989, 0.0238, 0.0127, 0.0087, 0.0087, 0.0072, 0.0072], [0.5674, 0.0986, 0.022, 0.0161, 0.0151, 0.0125, 0.0111, 0.0111], [0.6476, 0.1125, 0.0876, 0.0267, 0.0173, 0.0126, 0.0098, 0.0082], [0.7355, 0.106, 0.0304, 0.0184, 0.0162, 0.0087, 0.0036, 0.0027], [0.847, 0.0788, 0.0176, 0.0137, 0.005, 0.0039, 0.0031, 0.0027], [0.3139, 0.1229, 0.0452, 0.013, 0.0095, 0.0084, 0.0079, 0.0057], [0.4157, 0.0387, 0.0321, 0.0183, 0.0126, 0.0118, 0.0111, 0.0081], [0.1635, 0.0388, 0.0343, 0.0195, 0.0105, 0.0087, 0.0067, 0.0067], [0.1463, 0.0347, 0.0307, 0.0254, 0.0239, 0.0145, 0.0106, 0.0078], [0.0688, 0.0688, 0.0647, 0.0392, 0.0197, 0.0127, 0.0106, 0.0082], [0.3138, 0.0452, 0.0331, 0.0188, 0.0138, 0.013, 0.0114, 0.0074], [0.1301, 0.0542, 0.0373, 0.0187, 0.0155, 0.0137, 0.0121, 0.0114], [0.0412, 0.0266, 0.0172, 0.0152, 0.0142, 0.0134, 0.0111, 0.0111], [0.0308, 0.0271, 0.0255, 0.0145, 0.0113, 0.0083, 0.0083, 0.0078], [0.1354, 0.0874, 0.0267, 0.0183, 0.0143, 0.0092, 0.0056, 0.0049], [0.0094, 0.0054, 0.0047, 0.0037, 0.0037, 0.0035, 0.0029, 0.0025], [0.0161, 0.0152, 0.0118, 0.0076, 0.0072, 0.0056, 0.0043, 0.0041], [0.0238, 0.0174, 0.0163, 0.0135, 0.0068, 0.0056, 0.005, 0.005], [0.0346, 0.0305, 0.0269, 0.0238, 0.0185, 0.0153, 0.0127, 0.0119], [0.0913, 0.059, 0.0358, 0.0246, 0.0231, 0.0217, 0.0124, 0.0116], [0.111, 0.036, 0.036, 0.0299, 0.0264, 0.0181, 0.0141, 0.0133], [0.1065, 0.0287, 0.0269, 0.0253, 0.0223, 0.0174, 0.0144, 0.0127], [0.1067, 0.0537, 0.0445, 0.0393, 0.021, 0.0197, 0.0164, 0.0154], [0.0846, 0.0659, 0.0453, 0.0214, 0.0201, 0.0189, 0.0189, 0.0177], [0.0812, 0.0318, 0.0299, 0.0281, 0.0264, 0.0264, 0.0264, 0.0248], [0.0385, 0.0362, 0.0265, 0.0265, 0.0234, 0.0206, 0.0182, 0.0171], [0.0552, 0.043, 0.023, 0.0203, 0.0179, 0.0158, 0.0158, 0.0131], [0.2593, 0.048, 0.0213, 0.0213, 0.0213, 0.0156, 0.0137, 0.0129], [0.3183, 0.0589, 0.0261, 0.0217, 0.0169, 0.0158, 0.014, 0.014], [0.1644, 0.0937, 0.0568, 0.0471, 0.0268, 0.0196, 0.0135, 0.0119], [0.199, 0.1207, 0.0473, 0.0392, 0.0174, 0.0174, 0.0163, 0.0153], [0.1804, 0.1165, 0.1094, 0.0517, 0.0215, 0.019, 0.0168, 0.0148], [0.2549, 0.1063, 0.0828, 0.0777, 0.0345, 0.0269, 0.0223, 0.0197], [0.2318, 0.0966, 0.0966, 0.0908, 0.0334, 0.0244, 0.0203, 0.0139], [0.2575, 0.1216, 0.1073, 0.0947, 0.0575, 0.0476, 0.0349, 0.0199], [0.274, 0.1883, 0.1294, 0.0785, 0.0327, 0.0289, 0.0289, 0.0289], [0.1724, 0.1724, 0.1185, 0.1045, 0.0494, 0.0339, 0.0281, 0.0264], [0.1663, 0.1467, 0.0836, 0.0785, 0.0612, 0.0371, 0.0327, 0.0271], [0.1214, 0.1214, 0.0834, 0.065, 0.0506, 0.0447, 0.0254, 0.0225], [0.132, 0.1028, 0.0852, 0.0586, 0.0429, 0.0355, 0.0229, 0.0229], [0.2085, 0.0677, 0.0597, 0.0411, 0.0386, 0.034, 0.034, 0.0265], [0.2274, 0.0786, 0.0448, 0.0308, 0.0255, 0.024, 0.0212, 0.0187], [0.241, 0.129, 0.0782, 0.0326, 0.0254, 0.0136, 0.0128, 0.0113], [0.1598, 0.141, 0.0588, 0.0245, 0.023, 0.0203, 0.0191, 0.0179], [0.2162, 0.1157, 0.0582, 0.0311, 0.0293, 0.0243, 0.0214, 0.0214], [0.127, 0.127, 0.0724, 0.0563, 0.0412, 0.0387, 0.0266, 0.0221], [0.1061, 0.0936, 0.0729, 0.0644, 0.0416, 0.039, 0.0324, 0.0286], [0.1155, 0.09, 0.0794, 0.0618, 0.0618, 0.0513, 0.0352, 0.0227], [0.7421, 0.0474, 0.0254, 0.0175, 0.0154, 0.0106, 0.0088, 0.0082], [0.7566, 0.0259, 0.0157, 0.0139, 0.0139, 0.0122, 0.0122, 0.0095], [0.7659, 0.0204, 0.0204, 0.0204, 0.014, 0.0124, 0.0103, 0.0096], [0.5892, 0.1688, 0.0377, 0.0377, 0.0202, 0.0157, 0.0139, 0.0122], [0.4629, 0.2187, 0.1703, 0.023, 0.0179, 0.014, 0.0075, 0.0075], [0.3482, 0.1864, 0.1864, 0.0605, 0.0286, 0.0153, 0.0153, 0.0153], [0.4541, 0.1301, 0.1013, 0.0615, 0.0479, 0.0422, 0.0256, 0.0176], [0.7736, 0.056, 0.0436, 0.0265, 0.0151, 0.011, 0.0097, 0.0076], [0.9061, 0.0177, 0.0101, 0.0078, 0.0074, 0.0074, 0.0045, 0.0035]], "ranks": {"Python": [17682, 122906, 144836, 170377, 52530, 135050, 41969, 80826, 63274, 165726, 59190, 106153, 85043, 84248, 52666, 122679, 125868, 130321, 132642, 166736, 93875, 173237, 124744, 56692, 49740, 20471, 14053, 5025, 5052, 6205, 5898, 7198, 8253, 6783, 4990, 1404, 615, 697, 811, 499, 193, 393, 475, 672, 685, 684, 708, 1052, 1985, 5660, 8994, 3405, 4344, 3677, 4526, 5133, 1677, 2823, 2372, 2546, 2682, 2052, 1677]}}, {"pos": 525, "top": [[" \u2013", "\u2013", "i", ".", "\u2026", "\u2026.", ",", "<|endoftext|>"], [" \u2013", "\uff0e", "  \r\n", "  \n\n", "\uff0d", "  \n", "i", "\uff08"], [" \u2013", "\u2013", "\uff0e", "\u2026\u201d", "\u2026", "i", "\uff0c", "\u2019"], ["\uff0d", "  \r\n", " **\u2018", "\uff3f", "\u2019**", "\u5728", "\uff0e", "\uff0d\uff0d\uff0d\uff0d"], ["i", "\uff0e", "  \r\n", "\uff0d", "  \n\n", "  \n", "\uff0c", " \u2019"], ["i", "\uff0e", "\uff0c", "  \r\n", "\uff0d", "\u2026\u201d", "  \n", "\u2019"], ["\uff0e", "i", "\u2019", "  \n", "\uff0c", "  \n\n", "\uff0d", "  \r\n"], ["\uff0e", "  \r\n", "i", "  \n", "\u2019", "\uff0c", "  \n\n", "\uff0d"], ["\uff0e", "\u2019", "  \n\n", "\u2026\u201d", " \u2018", "  \n", "  \r\n", "\u2018"], ["  \r\n", "\uff0e", "  \n", " \u00ad", " \r\n", " \u2019", "\uff0d", "  \n\n"], ["\uff0e", "  \n", " \u2019", "  \r\n", "  \n\n", " \u00ad", "\uff0d", " \u2018"], [" \u2019", " **\u2018", "  \r\n", " \u00ad", "\uff0e", " \u2018", "\u2019**", " **\u201c"], [" **\u2018", " \u2019", " \u00ad", "\uff0e", "\u2019**", "  \r\n", " \u2018", " **\u201c"], [" \u2019", "\uff0e", " \u00ad", "i", " **\u2018", " \u2018", "  \r\n", "\u2019**"], [" \u2019", " \u00ad", "\uff0e", "i", " \u2018", " \u201c", " \ufffd", "  \n\n"], [" \u00ad", " \u2019", "i", " \u2018", " \u2013", " \ufffd", "\u00ad", " \u201c"], ["i", " \u00ad", " \u2019", " \u2013", " \u2018", " \u201c", "\u00ad", "er"], [" \u00ad", "i", " \u2013", "  \n\n", " \u2019", "  \r\n", " \u2018", "  \n"], ["i", " \u00ad", " \u2019", " \u2013", " \u2018", "er", "\uff0e", "  \n\n"], [" \u00ad", " \u2019", "i", " \u2013", " \ufffd", " \u2018", "  \r\n", "  \n\n"], ["  \n\n", " \u00ad", "i", " \ufffd", " \u2019", "  \n", "  \r\n", " \u2013"], [" \u2019", " \u00ad", " \ufffd", "er", "  \r\n", "\u0647", "i", " \r\n"], [" \u2019", " \u00ad", " \ufffd", " --", "i", " \r\n", "er", " ___"], [" \u2019", " --", " \u00ad", " \ufffd", " \u2018", " ,", "er", "i"], ["  \n\n", " \u2019", " \n\n", " \ufffd", " \n  \n", " \r\n\r\n", " \u00ad", " \r\n"], [" \u2019", " ___", " **", " \ufffd", " \n  \n", "  \n\n", " ______", "  \r\n"], [" ___", " \u2019", " **", " __", " ______", " _____", " ____", " _"], [" ___", " \u2019", " __", "  \n\n", " ______", " \n\n", " **", " _____"], [" \u2019", " ___", "  \n\n", " ______", " \n  \n", " \n\n", " __", " _____"], [" ___", " ______", " __", " **", " \u2019", " ____", " _____", " \n  \n"], [" ___", " ...", " \u2019", "  \n\n", " **", " \n  \n", " ______", " \n\n"], [" \u2019", " ,", " \u2013", " **", " \u201c", " \u2014", " \u2018", " ..."], [" ,", " \u2019", " .", " -", " \u2013", " **", " --", " over"], ["\u2011", " **", " **\u201c", " \u2019", " \u2013", "  \n\n", " \u2026", "\u2014but"], ["\u2011", " \u2019", " **\u201c", "\u2014but", " **", " \u2013", "  \n\n", " \u2014"], ["\u2011", " \u2013", " \u2019", " \u2014", " \u2026", " **\u201c", " \u201c", "\u2014but"], [" \u2019", "\u2011", " \u201c", "\u2014but", " **\u201c", " \u2014", " \u2013", " hardware"], ["\u2011", " \u2019", " \u201c", " \u2013", " hardware", " tech", "\u2014but", " cheap"], ["\u2011", " \u2019", " hardware", " \u201c", " \u2013", " Android", "\u2014but", " tech"], ["\u2011", " \u2013", " \u201c", " Linux", " hardware", " \u2019", " **\u201c", " tech"], [" Linux", "\u2011", " hardware", " software", " tech", " engineering", " technology", " \u2013"], [" Linux", " hardware", " software", " engineering", " manufacturing", " engine", "\u2011", " factory"], [" Linux", " hardware", " software", " tech", " engineering", " manufacturing", " optimized", " engine"], [" Linux", " hardware", " software", " tech", " manufacturing", " production", " technology", " optimized"], [" hardware", " Linux", " production", " tech", " software", " manufacturing", " technology", " engineering"], [" hardware", " Linux", " tech", " production", " software", " technology", " manufacturing", " engineering"], [" hardware", " tech", " Linux", " software", " production", " engine", " manufacturing", " engineering"], [" tech", " hardware", " production", " Linux", " software", " technology", " manufacturing", " export"], [" hardware", " tech", " production", " **", "\ufffd", " tools", " software", " manufacturing"], [";**", " perspective", " tech", " mindset", " toolkit", " standpoint", " lifecycle", " workflow"], [" perspective", " toolkit", ";**", " standpoint", " lifecycle", " workflow", "/legal", " mindset"], [" toolkit", " workflow", " lifecycle", " *\u201c", ";**", " (\u201c", " coding", " perspective"], [" workflow", " toolkit", " perspective", " standpoint", " lifecycle", ";**", " mindset", " runtime"], [" perspective", " workflow", " toolkit", " standpoint", " lifecycle", " workflows", "\u89c6\u89d2", " runtime"], [" perspective", "\u89c6\u89d2", " viewpoint", " standpoint", " Perspective", " perspectives", " workflow", "erspective"], [" perspective", "\u89c6\u89d2", " standpoint", " viewpoint", " Perspective", " perspectives", " workflow", "erspective"], [" perspective", "\u89c6\u89d2", " viewpoint", " standpoint", " Perspective", " workflow", "erspective", " POV"], [" perspective", "\u89c6\u89d2", " Perspective", " standpoint", " viewpoint", " perspectives", "erspective", " POV"], [" perspective", "\u89c6\u89d2", " Perspective", " standpoint", "pers", " viewpoint", " perspectives", "erspective"], [" perspective", " Perspective", "\u89c6\u89d2", "pers", " standpoint", " perspectives", " POV", " perspect"], [" perspective", " Perspective", " standpoint", "\u89c6\u89d2", "pers", " POV", " perspectives", " perspect"], [" perspective", " Perspective", " standpoint", " POV", " API", " workflow", " CI", " CLI"], [" perspective", " API", " workflow", " POV", " Perspective", " standpoint", " CI", " CLI"]], "p": [[0.9419, 0.0469, 0.0081, 0.0007, 0.0006, 0.0003, 0.0002, 0.0001], [0.4302, 0.2609, 0.0847, 0.0312, 0.0243, 0.0214, 0.0214, 0.0214], [0.6487, 0.2386, 0.0285, 0.0222, 0.0153, 0.0093, 0.0082, 0.0044], [0.3466, 0.1445, 0.1125, 0.0641, 0.0499, 0.0322, 0.0267, 0.0184], [0.3384, 0.2987, 0.1099, 0.0856, 0.0357, 0.0168, 0.0149, 0.0131], [0.2913, 0.1767, 0.1376, 0.065, 0.0394, 0.0348, 0.0348, 0.0348], [0.702, 0.122, 0.0272, 0.0272, 0.024, 0.0187, 0.0146, 0.0088], [0.6727, 0.0709, 0.0709, 0.038, 0.023, 0.0179, 0.0179, 0.0158], [0.5847, 0.0897, 0.0544, 0.048, 0.033, 0.0291, 0.0227, 0.0227], [0.3858, 0.3405, 0.0461, 0.0407, 0.0279, 0.0279, 0.0218, 0.0218], [0.7592, 0.0485, 0.0294, 0.0294, 0.0229, 0.0179, 0.0123, 0.0096], [0.3217, 0.2211, 0.1044, 0.0813, 0.0633, 0.0435, 0.0384, 0.0233], [0.2422, 0.2422, 0.0891, 0.0891, 0.054, 0.054, 0.0421, 0.0272], [0.3845, 0.1415, 0.1415, 0.0858, 0.059, 0.0459, 0.0246, 0.0169], [0.3753, 0.2009, 0.1565, 0.0949, 0.0949, 0.0113, 0.01, 0.01], [0.5233, 0.3597, 0.0552, 0.023, 0.0066, 0.0058, 0.0055, 0.0038], [0.4048, 0.2455, 0.1314, 0.116, 0.0332, 0.0115, 0.0089, 0.0065], [0.3764, 0.1569, 0.1385, 0.084, 0.0741, 0.0329, 0.0212, 0.0199], [0.3555, 0.1903, 0.1482, 0.1019, 0.0258, 0.0166, 0.0156, 0.0156], [0.3065, 0.1859, 0.0935, 0.0878, 0.0684, 0.0604, 0.0196, 0.0153], [0.3645, 0.2211, 0.0718, 0.0595, 0.0318, 0.0248, 0.0206, 0.0181], [0.4332, 0.1029, 0.0403, 0.0216, 0.0158, 0.0123, 0.0102, 0.0096], [0.563, 0.0462, 0.0462, 0.0298, 0.0141, 0.0132, 0.0124, 0.011], [0.4646, 0.0807, 0.0807, 0.0358, 0.0231, 0.0169, 0.0132, 0.0132], [0.4739, 0.1358, 0.0933, 0.0441, 0.0389, 0.0365, 0.0267, 0.0111], [0.3495, 0.1457, 0.1001, 0.0253, 0.0223, 0.012, 0.0106, 0.0087], [0.7028, 0.0696, 0.0509, 0.0372, 0.0187, 0.01, 0.0088, 0.0083], [0.5838, 0.115, 0.0543, 0.0373, 0.0373, 0.0226, 0.0188, 0.0176], [0.2686, 0.2686, 0.1846, 0.0467, 0.0341, 0.0283, 0.0207, 0.0195], [0.5668, 0.0985, 0.0411, 0.0386, 0.0362, 0.032, 0.032, 0.032], [0.202, 0.1573, 0.0954, 0.0743, 0.0656, 0.0544, 0.048, 0.0374], [0.4744, 0.0532, 0.0366, 0.0285, 0.0268, 0.0196, 0.0196, 0.0173], [0.2308, 0.0548, 0.0515, 0.0354, 0.0332, 0.0157, 0.0122, 0.0079], [0.255, 0.1131, 0.0828, 0.0828, 0.0443, 0.0305, 0.0286, 0.0209], [0.4357, 0.0757, 0.0757, 0.0489, 0.0489, 0.0262, 0.018, 0.018], [0.569, 0.127, 0.0497, 0.0364, 0.0342, 0.0302, 0.0266, 0.0134], [0.1988, 0.1867, 0.1, 0.0606, 0.0417, 0.0368, 0.0237, 0.0135], [0.326, 0.1199, 0.0532, 0.0268, 0.0196, 0.0162, 0.0112, 0.0087], [0.364, 0.0763, 0.0493, 0.0339, 0.0193, 0.016, 0.015, 0.0141], [0.6452, 0.025, 0.0207, 0.0162, 0.0143, 0.0098, 0.0092, 0.0072], [0.1426, 0.1258, 0.0763, 0.0219, 0.0219, 0.0141, 0.0125, 0.0103], [0.2235, 0.1536, 0.0343, 0.0322, 0.0267, 0.0267, 0.0251, 0.0236], [0.2904, 0.0734, 0.0326, 0.0306, 0.0186, 0.0174, 0.0164, 0.0164], [0.1358, 0.1276, 0.0532, 0.0343, 0.0303, 0.0303, 0.0285, 0.0184], [0.1453, 0.0535, 0.0472, 0.0416, 0.0324, 0.0324, 0.0269, 0.0185], [0.1309, 0.0399, 0.0375, 0.0331, 0.0292, 0.0201, 0.0189, 0.0166], [0.0976, 0.0592, 0.0461, 0.0263, 0.0204, 0.0159, 0.0141, 0.0141], [0.0536, 0.0536, 0.0287, 0.0238, 0.0185, 0.0164, 0.0154, 0.0154], [0.0337, 0.0317, 0.0279, 0.0263, 0.0232, 0.0218, 0.0159, 0.015], [0.0925, 0.0265, 0.0265, 0.0249, 0.0206, 0.0182, 0.0182, 0.0171], [0.0914, 0.0712, 0.0669, 0.0555, 0.0358, 0.0297, 0.0246, 0.0217], [0.1065, 0.0732, 0.0392, 0.0346, 0.0346, 0.0238, 0.0223, 0.0185], [0.1671, 0.0742, 0.0697, 0.0578, 0.0309, 0.0226, 0.0137, 0.0137], [0.3218, 0.2506, 0.0718, 0.0299, 0.0193, 0.0141, 0.0133, 0.0091], [0.9546, 0.037, 0.0034, 0.0024, 0.0016, 0.0007, 0.0001, 0.0001], [0.9597, 0.029, 0.0039, 0.0035, 0.0021, 0.0006, 0.0005, 0.0003], [0.9218, 0.0589, 0.0055, 0.0048, 0.0043, 0.0023, 0.0008, 0.0004], [0.9918, 0.0052, 0.0017, 0.0008, 0.0003, 0.0001, 0.0, 0.0], [0.9947, 0.0032, 0.0017, 0.0001, 0.0001, 0.0001, 0.0001, 0.0], [0.9955, 0.0028, 0.0007, 0.0004, 0.0002, 0.0002, 0.0001, 0.0], [0.9945, 0.0032, 0.0006, 0.0004, 0.0004, 0.0003, 0.0001, 0.0001], [0.9934, 0.0015, 0.0012, 0.0012, 0.0005, 0.0005, 0.0003, 0.0002], [0.9913, 0.0025, 0.0012, 0.001, 0.0007, 0.0007, 0.0007, 0.0003]], "ranks": {"Python": [27018, 132230, 37934, 133504, 37109, 18388, 6096, 7009, 6303, 8132, 6173, 7004, 5691, 3551, 5458, 11727, 9911, 5315, 7495, 10758, 6628, 3274, 2356, 2644, 1510, 566, 929, 785, 606, 1062, 1548, 3374, 3850, 1011, 1200, 257, 54, 49, 41, 62, 46, 44, 84, 131, 287, 371, 277, 395, 459, 1999, 1429, 102, 65, 104, 125, 151, 53, 133, 129, 118, 97, 112, 103]}}, {"pos": 526, "top": [[" \u2013", ".", " \u200b\u200b", "\u2013", "\u2026..", "\u200b\u200b", "\u2026.", ","], [" \u2013", "\u2013", " \u200b\u200b", "  \n\n", "\u200b", "\u2026..", " \u2013**", "\u2013\u2013"], [" \u2013", "\u2013", ",", "\u2026..", ".", "\u2026.", "\u2026", " \u200b\u200b"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " ;;^", "\u52a0\u62ff\u5927", " **\u201e", "\u0646\u0647\u0627\u064a\u062a", "----------</", " milfs", "-------------</"], [" \u200b\u200b", "\u200b\u200b", ".", ",", "\u200b", " endeavors", "\u2013\u2013", "\u2026.."], [" \u200b\u200b", ".", "\u2026..", ",", "\u2026.", " \ud83d\ude42", ".\u2013", "\u200b\u200b"], [".", " \u200b\u200b", ",", "\u200b\u200b", "\u2026\u2026", " \u2013", ".-", "\u201e"], [".", " \u200b\u200b", ",", ".\\\"", ".-", " \u201e", ".\u00bb", ":"], [".", " \u200b\u200b", ",", ".\\\"", "\u200b\u200b", ":", " \u201e", ".\u00bb"], [",", ".", ".\\", ";", ":", ".\\\"", ".[", "\\u"], [".", ",", " \u2013", ";", " \u200b\u200b", ".\\", ":", " ."], [" \u200b\u200b", " \u2013", ".", ",", " ,", " .", " ultimately", " largely"], [" \u200b\u200b", ".", " \u2013", ",", ".\u00ab", " \u201e", " .", " ,"], [" \u200b\u200b", " \u2013", ".", ",", " ultimately", " arguably", " largely", " ,"], [" \u2013", ",", " ,", ".", " .", " as", " truly", " ultimately"], [" arguably", " ,", " \u2013", " ultimately", " largely", " incredibly", " alongside", " albeit"], [" \u2013", ",", " ,", " ultimately", ".", " .", " as", " largely"], [" \u2013", ",", " ,", " ultimately", " arguably", ".", " largely", " truly"], [" \u2013", " ,", " \u2014", " ultimately", " arguably", " truly", " largely", " ."], [" ,", " \u2013", " \u2014", " ultimately", " largely", ",", " truly", " arguably"], [" ,", " \u2013", " \u2014", " ultimately", " largely", " truly", " yet", " arguably"], [" ,", " ultimately", " arguably", " largely", " truly", " \u2014", " \u2015", " yet"], [" ,", " ultimately", " arguably", " largely", " \u2014", " merely", " truly", " yet"], [" ,", " ultimately", " .", " just", " largely", " yet", " ;", " as"], [" ,", " \n\n", "\n\n", " \u2014", "  \n\n", " ultimately", " \u2013", " arguably"], [" ,", " ultimately", " truly", " arguably", " **", " just", " simply", " \u2014"], [" ,", " ultimately", " \u2014", " truly", " just", " arguably", " largely", " ."], [" ,", " .", " ultimately", " just", " truly", " \u2014", " --", " '"], [" ,", " .", " \u2014", " ultimately", " truly", " **", " just", " that"], [" ,", " \u2014", " .", " \u2013", " \n\n", " ultimately", " **", " __"], [" ,", " .", " \u2014", " \u2013", " ultimately", " as", " that", " just"], [" ,", " .", " as", " \u2013", " just", " \u2014", " ultimately", " and"], [" ,", " .", " \u2013", " as", " and", " \u2014", " just", " ultimately"], [" \u2013", " \u2014", " ,", "\u2014but", " .", " ultimately", "\u2014and", " but"], [" ,", " \u2013", " \u2014", "\u2014but", " but", " .", " (", " truly"], [" \u2013", " \u2014", "\u2014but", " ,", " .", " but", " (", "\u2014and"], ["\u2014but", " \u2014", " \u2013", " ,", " but", "\u2014and", " \"", " ("], ["\u2014but", " \u2013", " \u2014", " but", " ,", " (", "\u2014and", " \ud83d\ude09"], [" \u2013", " \u2014", "\u2014but", " (", " but", " ,", " -", " \ud83d\ude09"], [" \u2013", "\u2014but", " \u2014", " (", " but", " \ud83d\ude09", "\u2014and", " ,"], [" \u2013", "\u2014but", " (", " \u2014", " but", " ,", " \ud83d\ude09", " technically"], [" \u2014", "\u2014but", " \u2013", " ,", " but", "\u2014and", " software", " ("], [" \u2014", "\u2014but", " seamlessly", " software", " programming", " ,", " but", " \u2013"], [" \u2014", "\u2014but", " \u2013", " seamlessly", " software", " but", " via", " using"], [" \u2014", " seamlessly", "\u2014but", " via", " --", " technically", " ,", " software"], [" \u2014", " but", " --", "\u2014but", " technically", " seamlessly", " \u2013", " using"], [" but", "\u2014but", " (", " \u2014", " \u2013", " seamlessly", " technically", " BUT"], [" but", " because", "\u2014but", " using", " (", "\u2014they", " seamlessly", " since"], [" but", "\u2014but", "\u2014they", "\u2014you", ".", " \u2014", " because", " BUT"], [" but", ".", "\u2014but", "\u2014they", ".**", ";", ".\\", ".)"], [" but", "\u2014but", "\u2014they", "\u2014you", "\u2014it", ".", "but", ".**"], ["\u2014but", "\u2014they", " but", "\u2014you", "\u2014it", " (\"", " (\u201c", " ("], [" (`", "\u2014they", " (\u201c", " (", " (**", " (\"", "\u2014but", " but"], [" (`", "\u2014they", " (\u201c", " (", "\u2014you", "\u2014it", " (**", " (\""], [" (`", "\u2014they", " (", " (\u201c", " (**", " (__", " (*", "\u2014you"], [" (`", "\u2014they", "\u2014it", "\u2014you", " (", " (**", " Python", " (\u201c"], [" (`", " Python", "\u2014they", " PYTHON", "\u2014you", "Python", " python", "\u2014it"], [" (`", "\u2014they", " Python", "\u2014you", "\u2014it", " (", " PYTHON", " API"], [" (`", "\u2014they", " Python", "\u2014you", " (", " API", "\u2014it", " `("], [" (`", "\u2014they", " (", " Python", "\u2014you", " `", " `(", " API"], [" (`", "\u2014they", " (", "\u2014you", " Python", " `", "\u2014it", "\u2014the"], [" (`", " (", "\u2014they", "\u2014you", " `", "\u2014the", ",", "\u2014it"], [" (`", ",", " (", "\u2014they", "\u2014", "\u2014you", "\u2014the", "\u2014it"]], "p": [[0.4536, 0.2281, 0.0951, 0.0396, 0.0372, 0.0309, 0.0226, 0.0121], [0.3007, 0.0714, 0.0359, 0.0298, 0.0247, 0.0192, 0.0141, 0.0091], [0.4482, 0.3491, 0.0472, 0.0417, 0.0287, 0.0127, 0.0099, 0.0087], [0.0137, 0.0129, 0.0121, 0.01, 0.0065, 0.0061, 0.0047, 0.0042], [0.3314, 0.0121, 0.0094, 0.0078, 0.0078, 0.0057, 0.0054, 0.005], [0.7696, 0.017, 0.0117, 0.0117, 0.0038, 0.0028, 0.0023, 0.0023], [0.2463, 0.2463, 0.0516, 0.0157, 0.0148, 0.0123, 0.0108, 0.0096], [0.465, 0.2196, 0.0713, 0.0279, 0.0132, 0.0116, 0.0109, 0.008], [0.5993, 0.3208, 0.0232, 0.0071, 0.0038, 0.003, 0.0028, 0.0023], [0.5739, 0.2393, 0.0144, 0.0127, 0.0068, 0.006, 0.0044, 0.0034], [0.7348, 0.2105, 0.0105, 0.006, 0.0047, 0.0019, 0.0019, 0.0018], [0.0911, 0.0553, 0.0488, 0.038, 0.0191, 0.014, 0.0109, 0.009], [0.2306, 0.0661, 0.0548, 0.0332, 0.0122, 0.0115, 0.0095, 0.0089], [0.0587, 0.0379, 0.0203, 0.0168, 0.0148, 0.0115, 0.009, 0.009], [0.2066, 0.1253, 0.076, 0.0592, 0.0433, 0.015, 0.0117, 0.0103], [0.06, 0.0529, 0.0529, 0.0321, 0.0195, 0.0195, 0.0111, 0.0104], [0.3327, 0.2434, 0.0423, 0.0114, 0.0107, 0.0094, 0.0078, 0.0074], [0.424, 0.065, 0.0175, 0.0145, 0.0113, 0.0083, 0.0078, 0.0069], [0.216, 0.1682, 0.0375, 0.0292, 0.0214, 0.0189, 0.0147, 0.013], [0.2629, 0.232, 0.0665, 0.0295, 0.0168, 0.0158, 0.0148, 0.0123], [0.6237, 0.0292, 0.0257, 0.0188, 0.0101, 0.0069, 0.0065, 0.0057], [0.4072, 0.0216, 0.0109, 0.0085, 0.007, 0.0058, 0.0055, 0.0051], [0.8265, 0.0111, 0.0046, 0.0046, 0.0043, 0.0038, 0.0038, 0.0036], [0.9205, 0.0051, 0.0031, 0.0026, 0.0024, 0.0018, 0.0017, 0.0017], [0.7067, 0.0956, 0.031, 0.02, 0.0079, 0.0061, 0.0051, 0.0039], [0.7875, 0.0163, 0.0112, 0.0082, 0.0082, 0.0056, 0.0047, 0.0044], [0.8923, 0.0112, 0.006, 0.0032, 0.003, 0.0027, 0.002, 0.0017], [0.913, 0.0079, 0.0045, 0.0031, 0.0027, 0.0027, 0.0023, 0.002], [0.913, 0.0108, 0.0084, 0.0062, 0.0033, 0.0024, 0.0024, 0.0023], [0.8708, 0.0434, 0.0263, 0.008, 0.004, 0.0028, 0.002, 0.0017], [0.8169, 0.1106, 0.0071, 0.0049, 0.004, 0.0038, 0.0024, 0.002], [0.8139, 0.0858, 0.007, 0.004, 0.004, 0.004, 0.0035, 0.0031], [0.7624, 0.0709, 0.0261, 0.0085, 0.007, 0.0066, 0.0055, 0.0045], [0.6422, 0.1265, 0.0985, 0.022, 0.0092, 0.0056, 0.0043, 0.0043], [0.3112, 0.147, 0.1145, 0.0477, 0.0225, 0.0225, 0.0176, 0.0113], [0.4773, 0.199, 0.1065, 0.1065, 0.0269, 0.0119, 0.0087, 0.0056], [0.3675, 0.2862, 0.1193, 0.0439, 0.0387, 0.0126, 0.0126, 0.0111], [0.3379, 0.2982, 0.1409, 0.0277, 0.0277, 0.0148, 0.0109, 0.009], [0.2258, 0.1993, 0.1759, 0.137, 0.027, 0.0253, 0.0077, 0.0073], [0.3361, 0.231, 0.1237, 0.075, 0.0178, 0.0157, 0.0084, 0.0074], [0.1966, 0.1269, 0.1192, 0.06, 0.0497, 0.0183, 0.0104, 0.0098], [0.218, 0.1498, 0.0708, 0.0295, 0.026, 0.0158, 0.0158, 0.0139], [0.0765, 0.0718, 0.0409, 0.0219, 0.0219, 0.0206, 0.0193, 0.016], [0.1486, 0.096, 0.0547, 0.0312, 0.0178, 0.0178, 0.0167, 0.0138], [0.0638, 0.0497, 0.0321, 0.0302, 0.0283, 0.0235, 0.0221, 0.0207], [0.1002, 0.0689, 0.0504, 0.0418, 0.0369, 0.0306, 0.0287, 0.0287], [0.1827, 0.0978, 0.0462, 0.0383, 0.0338, 0.0263, 0.0263, 0.0232], [0.4343, 0.2051, 0.0335, 0.0168, 0.014, 0.0131, 0.0109, 0.0102], [0.4693, 0.3655, 0.0815, 0.0133, 0.0076, 0.0059, 0.0055, 0.0052], [0.2676, 0.2084, 0.1264, 0.1264, 0.0561, 0.0194, 0.0194, 0.0151], [0.3849, 0.3849, 0.1416, 0.0169, 0.008, 0.0048, 0.0033, 0.0026], [0.3391, 0.2993, 0.0972, 0.0405, 0.0315, 0.0315, 0.0149, 0.014], [0.3829, 0.205, 0.0968, 0.0665, 0.0404, 0.0245, 0.0216, 0.0179], [0.4158, 0.3669, 0.0341, 0.022, 0.0183, 0.0142, 0.0134, 0.0092], [0.7497, 0.0615, 0.0615, 0.0156, 0.0121, 0.0121, 0.0094, 0.0083], [0.4682, 0.3646, 0.0384, 0.0384, 0.016, 0.0097, 0.0076, 0.0063], [0.8053, 0.0962, 0.0401, 0.0089, 0.0061, 0.0054, 0.0054, 0.0042], [0.8344, 0.1129, 0.0196, 0.0105, 0.003, 0.0027, 0.0016, 0.0014], [0.8354, 0.1131, 0.0173, 0.0153, 0.003, 0.003, 0.0016, 0.0016], [0.9332, 0.0282, 0.0081, 0.0081, 0.0063, 0.0023, 0.0016, 0.0013], [0.9576, 0.0155, 0.0137, 0.003, 0.0016, 0.0013, 0.0009, 0.0009], [0.9634, 0.0156, 0.0065, 0.0024, 0.0016, 0.0014, 0.0011, 0.001], [0.4699, 0.285, 0.1729, 0.0265, 0.0142, 0.0086, 0.0052, 0.0034]], "ranks": {"Python": [62061, 229585, 192752, 201259, 105947, 141590, 53274, 63383, 44789, 71629, 14922, 20836, 24344, 20311, 14906, 26476, 37659, 49127, 59372, 81507, 70398, 101585, 80333, 41896, 39167, 34778, 26418, 16404, 14002, 14204, 13440, 14369, 16723, 13771, 16132, 5580, 7044, 4121, 3507, 2521, 1262, 1739, 1495, 1962, 1064, 1436, 1692, 1847, 3070, 1961, 1634, 142, 55, 30, 13, 7, 2, 3, 3, 3, 5, 17, 39]}}, {"pos": 527, "top": [[" \u2013", ".", "\u2013", ",", "s", ";", "o", "y"], [" \u2013", "\u2013", "s", "\u2013and", "\u2013\u2013", "sWith", "\u2011", " \u2013,"], ["\u2013", " \u2013", ",", ".\u2013", ".", "\u2013and", "\u2026", "s"], [" milfs", "auff", "\uff0a\uff0a\uff0a\uff0a", "eless", "eits", "sWith", "ielle", "erias"], ["s", "e", "auf", "a", "es", "ed", "y", "t"], ["sWith", "auf", "\u064a\u062f\u064a", " \u200b\u200b", "\u0438\u0431", "aus", "s", "sver"], ["s", "\uff1a", "\u3002", "\u2026\u2026", "a", "\uff08", ".\u201d", "e"], ["s", " **\u201e", "i\u010d", "sWith", "schaft", "\u094d\u0938", "crap", "sburg"], ["s", ".", ".\u201d", " \u200b\u200b", "i\u010d", ".\u201c", " **\u201e", "sWith"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "s", "-Cds", "\u5404\u79cd\u5404\u6837\u7684", "tijk", "\u8033\u719f\u80fd\u8be6", "esua", "sache"], ["s", "o", "y", "a", "e", "t", "d", "es"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " veggies", "schuss", " **", " **\u201e", "\u00bb.**", "ographics", " milfs"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " veggies", " **\u201e", "s", " anyways", "-ish", " milfs", "schuss"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " veggies", " anyways", "-ish", " milfs", " arguably", " \u00ab", " pornstar"], [" arguably", " albeit", " mostly", " though", " amongst", " stuff", " going", " goodies"], [" mostly", " arguably", " anyways", " albeit", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " ;;^", " notably", "nheim"], [" arguably", " mostly", " albeit", " though", " getting", " just", " incredibly", " plenty"], [" albeit", " arguably", " goodies", " mostly", " thankfully", " oddly", " savvy", " plenty"], [" albeit", " arguably", " mostly", " though", " notably", " thankfully", " oddly", " largely"], [" arguably", " albeit", " notably", " mostly", " even", " though", " largely", "\u4e5f\u4f7f\u5f97"], [" though", " arguably", " mostly", " notably", " albeit", "though", " largely", " even"], [" ;;^", " arguably", " mostly", " albeit", " notably", " even", " Fortal", "\u53ef\u60f3"], [" ``", " arguably", " notably", " mostly", " even", " albeit", " ;;^", " just"], [" ``", " even", " notably", " mostly", " just", " much", " ultimately", " arguably"], [" though", " notably", " arguably", " even", " mostly", " much", " \n\n", " largely"], [" arguably", " notably", " ultimately", " even", " mostly", " famously", " largely", " though"], [" notably", " arguably", " ultimately", " even", " mostly", " though", " largely", " ,"], [" ,", " though", " much", " even", " just", " ultimately", " arguably", " often"], [" ,", " even", " ultimately", " though", " arguably", " much", " often", " just"], [" ,", " though", " even", " ultimately", " just", " much", " often", " \n\n"], [" ,", " even", " though", " just", " only", " all", " ultimately", " much"], [" ,", " even", " just", " only", " all", " much", " still", " ultimately"], [" ,", " even", " ultimately", " only", " just", " though", " all", " still"], [" ultimately", " technically", " even", " seamlessly", " though", " only", " famously", " but"], [" \u201c", " technically", "\u2014but", " everything", " seamlessly", "\u2011", " literally", " even"], [" \u201c", " \u2013", "\u2011", "\u2014but", " everything", "\u2013", " technically", " literally"], [" scripting", " \u201c", " everything", " \"", " technically", " seamlessly", "\u2014but", " easily"], [" \u201c", " scripting", " easy", " writing", " software", " everything", " seamlessly", " tools"], [" scripting", " software", " \u201c", " writing", " Python", " seamlessly", " scripts", " programming"], [" Python", "\u2011", " scripting", " scripts", " \u201c", " seamlessly", " programming", " everything"], [" Python", " scripting", " scripts", " programming", " code", " programmers", " writing", " software"], [" scripting", " Python", " scripts", " programming", " software", " writing", " programmers", " code"], [" scripting", " scripts", " Python", " programming", " writing", " software", " programmers", " seamlessly"], [" scripts", " scripting", " programming", " Python", " code", " seamlessly", " software", " writing"], [" scripts", " scripting", " programming", " Python", " code", " software", " workflows", " seamlessly"], [" scripts", " scripting", " Python", " programming", " seamlessly", " scripted", " writing", " code"], [" scripts", " scripting", " Python", " scripted", " writing", " workflows", " everything", " seamlessly"], [" scripts", " scripting", " everything", " Python", " writing", " workflows", " syntax", " seamlessly"], [" scripts", " scripting", " syntax", "!),", " Python", " everything", " workflows", "scripts"], [" scripts", " scripting", "!),", " everything", " workflows", " everyone", " syntax", "scripts"], ["!),", " scripting", " scripts", "!)", "!).", " workflows", ".*)", "everyone"], [" scripting", " scripts", " Python", "!),", " syntax", " users", " APIs", " coding"], [" Python", " scripts", " APIs", " syntax", " scripting", " libraries", " code", " coding"], [" syntax", " Python", " APIs", " scripts", "syntax", " devs", " code", " scripting"], [" Python", " syntax", " APIs", " python", " code", " devs", " plugins", " coding"], [" Python", " APIs", " python", " syntax", " plugins", "Python", " PYTHON", " CRUD"], [" Python", " python", "Python", " PYTHON", "-python", ".py", "python", "PYTHON"], [" Python", " python", " PYTHON", "Python", ".py", "-python", "python", "PYTHON"], [" Python", " python", " PYTHON", "Python", "-python", " pip", "pip", "python"], [" Python", " plugins", " `", " python", "Python", " PYTHON", " plugin", " pip"], [" Python", " `", " plugins", "pip", "Python", " pip", " PYTHON", " python"], [" `", " plugins", " `.", "pip", " Python", "plugins", " APIs", " API"], ["they", "`.", "plugins", "no", "pip", "you", "Python", " plugins"]], "p": [[0.8231, 0.0676, 0.0526, 0.0464, 0.0049, 0.0015, 0.0009, 0.0007], [0.9241, 0.0521, 0.0029, 0.0024, 0.0012, 0.0008, 0.0008, 0.0004], [0.7916, 0.1559, 0.0239, 0.0088, 0.0078, 0.0053, 0.0027, 0.0006], [0.0055, 0.0049, 0.0046, 0.0046, 0.004, 0.004, 0.0033, 0.0031], [0.1902, 0.1577, 0.0374, 0.031, 0.031, 0.031, 0.0242, 0.02], [0.0218, 0.0132, 0.0063, 0.0059, 0.0055, 0.0052, 0.0049, 0.0046], [0.9324, 0.0055, 0.0046, 0.0032, 0.0018, 0.0017, 0.0015, 0.0015], [0.4871, 0.0243, 0.0201, 0.0138, 0.0048, 0.0045, 0.004, 0.0033], [0.2567, 0.0347, 0.0347, 0.0164, 0.0145, 0.0145, 0.0136, 0.0094], [0.0136, 0.0044, 0.0039, 0.0037, 0.0032, 0.0025, 0.0021, 0.0021], [0.7244, 0.0493, 0.0409, 0.0181, 0.008, 0.0067, 0.0049, 0.0046], [0.0142, 0.0118, 0.0056, 0.0046, 0.0041, 0.0026, 0.0023, 0.0022], [0.0204, 0.018, 0.0103, 0.004, 0.0029, 0.0024, 0.0022, 0.002], [0.0191, 0.0033, 0.0029, 0.0023, 0.0021, 0.0018, 0.0016, 0.0015], [0.0907, 0.0486, 0.026, 0.0096, 0.0066, 0.0045, 0.0031, 0.0029], [0.0054, 0.0048, 0.0045, 0.0042, 0.0016, 0.0014, 0.0014, 0.0013], [0.0546, 0.0376, 0.0376, 0.0214, 0.013, 0.0108, 0.0089, 0.0079], [0.0114, 0.0078, 0.0042, 0.0037, 0.0035, 0.0029, 0.0027, 0.0025], [0.0368, 0.0253, 0.0127, 0.0056, 0.0034, 0.0028, 0.0027, 0.0025], [0.027, 0.027, 0.0077, 0.0073, 0.005, 0.005, 0.0032, 0.003], [0.0453, 0.0157, 0.0147, 0.0122, 0.0115, 0.0095, 0.0089, 0.007], [0.0106, 0.0047, 0.0029, 0.0025, 0.0025, 0.002, 0.002, 0.0018], [0.0288, 0.0136, 0.0106, 0.0106, 0.0078, 0.0073, 0.0044, 0.0042], [0.041, 0.0249, 0.022, 0.022, 0.0151, 0.0118, 0.011, 0.0104], [0.0713, 0.0246, 0.0246, 0.018, 0.018, 0.0169, 0.0149, 0.014], [0.0212, 0.0146, 0.0107, 0.01, 0.0089, 0.0089, 0.0061, 0.0061], [0.0164, 0.0145, 0.0136, 0.0088, 0.0078, 0.0073, 0.0069, 0.0057], [0.0597, 0.0282, 0.022, 0.0194, 0.0182, 0.0161, 0.0118, 0.0086], [0.0498, 0.0468, 0.0302, 0.0284, 0.0221, 0.0195, 0.0162, 0.0152], [0.0808, 0.0522, 0.0522, 0.0232, 0.0217, 0.018, 0.0169, 0.0124], [0.1338, 0.0462, 0.0232, 0.0232, 0.0232, 0.0218, 0.0193, 0.016], [0.1116, 0.0495, 0.034, 0.0282, 0.0265, 0.0206, 0.0194, 0.0171], [0.0936, 0.0568, 0.0344, 0.0304, 0.0304, 0.0268, 0.0222, 0.0173], [0.0272, 0.0187, 0.0176, 0.0155, 0.0146, 0.0146, 0.0146, 0.0137], [0.0468, 0.0236, 0.0236, 0.0208, 0.0183, 0.0183, 0.0152, 0.0134], [0.4564, 0.0545, 0.0352, 0.0257, 0.0201, 0.0138, 0.0101, 0.0095], [0.0311, 0.0292, 0.0274, 0.0213, 0.0213, 0.0201, 0.0177, 0.0177], [0.0729, 0.0416, 0.0222, 0.0209, 0.0209, 0.0209, 0.0196, 0.0184], [0.0794, 0.0331, 0.0311, 0.0274, 0.0258, 0.0242, 0.0242, 0.0214], [0.1289, 0.1004, 0.069, 0.0419, 0.0326, 0.0186, 0.0154, 0.0145], [0.3905, 0.1628, 0.0679, 0.0563, 0.0266, 0.022, 0.0172, 0.0161], [0.2533, 0.2533, 0.1356, 0.0822, 0.0267, 0.0208, 0.0172, 0.0152], [0.2501, 0.1719, 0.1719, 0.1181, 0.0181, 0.016, 0.0141, 0.0117], [0.2545, 0.1749, 0.0826, 0.0501, 0.0268, 0.0252, 0.0222, 0.0184], [0.2833, 0.1338, 0.0632, 0.0558, 0.0338, 0.0218, 0.0218, 0.017], [0.2854, 0.1348, 0.0598, 0.022, 0.022, 0.0182, 0.0142, 0.0142], [0.3174, 0.0909, 0.0335, 0.0295, 0.0203, 0.0168, 0.0168, 0.0158], [0.2601, 0.0618, 0.0399, 0.0331, 0.0201, 0.0201, 0.0201, 0.0188], [0.1619, 0.0814, 0.0409, 0.0264, 0.0264, 0.0248, 0.0182, 0.0103], [0.1493, 0.0705, 0.0622, 0.0244, 0.0215, 0.013, 0.0123, 0.0108], [0.2081, 0.041, 0.0265, 0.0194, 0.0182, 0.0182, 0.0086, 0.0086], [0.0829, 0.0779, 0.0444, 0.0444, 0.021, 0.0185, 0.0185, 0.0174], [0.1659, 0.0573, 0.0475, 0.0327, 0.0254, 0.0239, 0.0164, 0.0164], [0.1525, 0.1525, 0.0636, 0.0495, 0.032, 0.0265, 0.0194, 0.0194], [0.4173, 0.0822, 0.0822, 0.0284, 0.0284, 0.0162, 0.0152, 0.0126], [0.6693, 0.0485, 0.0378, 0.0229, 0.019, 0.0178, 0.0168, 0.0102], [0.8871, 0.0442, 0.0304, 0.0184, 0.0068, 0.0047, 0.0025, 0.0019], [0.8827, 0.0439, 0.0302, 0.0162, 0.0067, 0.0052, 0.0022, 0.0017], [0.9178, 0.0314, 0.0168, 0.0131, 0.0038, 0.0029, 0.0026, 0.0018], [0.7653, 0.0914, 0.0262, 0.0262, 0.0124, 0.0124, 0.0085, 0.0075], [0.7218, 0.1254, 0.0359, 0.017, 0.0132, 0.0117, 0.0091, 0.0091], [0.5506, 0.0957, 0.0844, 0.0452, 0.0452, 0.0227, 0.0129, 0.0122], [0.1429, 0.1113, 0.1113, 0.0765, 0.0596, 0.0526, 0.0464, 0.0464]], "ranks": {"Python": [15448, 105250, 73121, 146632, 21400, 140923, 14683, 59341, 38616, 87236, 17560, 42169, 57220, 107410, 66033, 110962, 108684, 171920, 188514, 191465, 65103, 100084, 41114, 10073, 5763, 2342, 2721, 4199, 2929, 2689, 3369, 4359, 6026, 3136, 1363, 126, 14, 9, 5, 1, 1, 1, 2, 4, 4, 3, 3, 4, 4, 13, 24, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 7]}}, {"pos": 528, "top": [[" \u2013", "\u2013", ".", ",", "<|endoftext|>", "\u2013and", "\u00a0", " "], [" \u2013", "\u2013", "\u2013and", " \u2013,", " \u2013**", "\u2013\u2013", ".\u2013", "."], ["\u2013", " \u2013", ".", "\u2013and", ",", ".\u2013", " \u2013,", "["], ["*\u201c.", " milfs", "\u30f3", " Guta", "aruhi", " Shemale", "\ub370\ubbf8", "-------------</"], ["\u30f3", "\u00a0\u00a0", " \"@", "\u2013and", ":@", "\u2013\u2013", ".@", "\uff1a\u201c"], ["\u2013and", " **\u2013", "\u00a0\u00a0", "\u2013", " \uff08", "\uff01", "\u30f3", ".\u2013"], [" \uff08", "\uff08", "\u5728", "\u2018", "\uff01", "\uff1f", "\u2013and", "   \n"], ["\u2013and", "   \n", " **\u2013", "\u30f3", " *@", "**\u2013", "\u2018s", "       \n"], ["\u2013and", "   \n", "   \n\n", "  \n\n", "\u00a0\u00a0", "  \n  \n", "    \n\n", "       \n"], ["\u2013and", "\u2013", "\u00a0\u00a0", "\u00a0\u00a0\u00a0", "\u00a0", ",", "\u2013\u2013", "  \n  \n"], ["\u2013and", "\u2013", "\u00a0", "\u00a0\u00a0", " \u2013", "\"", "@", "\u00a0\u00a0\u00a0"], ["\u30f3", "\u2013and", " *@", " *\u2013", " --", " **\u2013", "unky", " \"--"], ["\u2013and", "\u30f3", " *\u2013", "-ish", " **\u2013", "ighborhood", " \u2013**", " veggies"], ["\u2013and", "\u30f3", "-ish", "-esque", " millennials", "unky", "ighborhood", " folks"], [" folks", "\u30f3", " --", "\u2013and", " busted", " teen", " savvy", "-esque"], ["-esque", "kids", " folks", " kids", " backstory", " busted", " savvy", " pricey"], ["-esque", "\u2013and", " folks", " savvy", " kids", "kids", " busted", " tech"], ["\u2013and", "-esque", "kids", " kids", " folks", " savvy", " veggies", "-ish"], ["-esque", "kids", " folks", " savvy", " kids", " booze", " moms", " guys"], ["-esque", " folks", "kids", " savvy", " kids", " booze", "-ish", " busted"], [" folks", "\u2013and", " wouldn", " kids", "-esque", "kids", " savvy", " busted"], ["\u54e5\u534e", " kids", " millennials", " ;;^", "kids", " guy", " Fortal", " booze"], ["\u54e5\u534e", " kids", "kids", " ``", " folks", " ''", " millennials", "\u6cb3\u9547"], [" ``", " ''", " people", " kids", " \\'", " '", " \\\"", " stuff"], ["   \n\n", " \n\n", "  \n\n", "  \n  \n", " \\'", " \r\n\r\n", " \n  \n", " folks"], [" folks", " stuff", " kids", " tech", " hackers", " hacker", " guy", " ``"], [" tech", " folks", " hackers", " kids", " hacker", " stuff", " gamers", " movie"], [" '", " --", " ''", " people", " folks", " ultimately", " \\\"", " work"], [" \\\"", " tech", " --", " ultimately", " folks", " people", " '", " work"], ["  ", " \\\"", " \n  \n", "   ", " ", " tech", " people", " work"], [" \\\"", " ", "  ", " people", " \n\n", " work", " '", " all"], [" \\\"", " ", " people", " all", " work", " '", " only", " the"], [" \"", " '", " \\\"", " ", " all", " people", " \u201c", " ,"], [" \u201c", " tech", " entire", " people", "  \n\n", " ", " \u2019", " core"], [" \u201c", " tech", " \\\"", " entire", " \u201d", " \r\n \r\n", " everything", " literally"], [" \u201c", " \u2026", " tech", " [\u2026]", " \u201d", "\u201c", " entire", " \""], [" \u201c", " tech", " entire", " software", " \"", " code", " developers", " programmers"], [" \u201c", " tech", " code", " software", " developers", " scripts", " authors", " entire"], [" software", " code", " \u201c", " developers", " scripts", " tech", " users", " programmers"], [" code", " scripts", " \u201c", " software", " developers", " programmers", " tech", " technical"], [" code", " programmers", " software", " scripts", " programming", " developers", " Python", " programmer"], [" code", " scripts", " programmers", " software", " programming", " developers", " scripting", " users"], [" scripts", " code", " programmers", " software", " programming", " users", " scripting", " developers"], [" code", " scripts", " software", " programmers", " users", " developers", " programming", " entire"], [" code", " scripts", " entire", " users", " programmers", " core", " software", " developers"], [" scripts", " entire", " code", " users", " core", " primary", " programmers", " main"], [" scripts", " entire", " users", " code", " core", " primary", " main", " majority"], [" entire", " primary", " main", " everything", " core", " users", " scripts", " majority"], [" entire", " scripts", " core", " primary", " users", " main", " everything", " majority"], [" entire", " scripts", " users", " workflows", "\u7684\u4e3b\u529b", "\u7edd\u5927\u90e8\u5206", " main", " code"], [" toolkit", " entire", " users", " workflow", "\u4e3b\u529b", " workflows", " scripts", " code"], [" code", " scripts", " toolkit", "\u4ee3\u7801", " software", " programmers", "\u4e3b\u529b", " users"], [" code", " scripts", "\u4ee3\u7801", " toolkit", "\u4e3b\u529b", "\u7684\u4ee3\u7801", " APIs", " frontend"], [" code", " scripts", " APIs", " devs", " toolkit", " runtime", " SDK", "\u4e3b\u529b"], [" code", " APIs", "\u4e3b\u529b", " runtime", "\u6e90\u7801", " SDK", " toolkit", "\u4ee3\u7801"], [" code", " APIs", " API", "\u4e3b\u529b", " toolkit", " runtime", " SDK", " user"], [" code", " API", " APIs", " devs", " SDK", " plugin", "\u4e3b\u529b", " runtime"], [" API", " APIs", " code", "-API", "API", " devs", " SDK", " runtime"], [" API", " APIs", " code", "-API", "API", " SDK", " APK", " CLI"], [" API", " plugin", " APIs", " code", " app", " plugins", "-API", " repo"], [" API", " shipped", " plugin", " APIs", " code", " shipping", " ship", " app"], [" API", " app", " plugin", " code", " shipped", " repo", " APIs", " shipping"], [" API", " app", " plugin", " code", " shipped", " shipping", " repo", " ship"]], "p": [[0.9165, 0.0456, 0.0355, 0.0008, 0.0003, 0.0002, 0.0002, 0.0001], [0.9776, 0.0179, 0.0021, 0.0011, 0.0004, 0.0002, 0.0001, 0.0001], [0.5844, 0.4016, 0.0065, 0.0035, 0.0019, 0.0009, 0.0003, 0.0003], [0.0067, 0.0059, 0.0052, 0.0041, 0.0034, 0.003, 0.0026, 0.0025], [0.0815, 0.0233, 0.0233, 0.0219, 0.0219, 0.0206, 0.0151, 0.0151], [0.0918, 0.0298, 0.0232, 0.017, 0.015, 0.0117, 0.011, 0.0103], [0.0967, 0.0802, 0.0753, 0.0708, 0.0708, 0.0429, 0.026, 0.0216], [0.2551, 0.1205, 0.0237, 0.0237, 0.0197, 0.0174, 0.0163, 0.0163], [0.3806, 0.0798, 0.0584, 0.0484, 0.0333, 0.0333, 0.0139, 0.0122], [0.6106, 0.0997, 0.0729, 0.0237, 0.0119, 0.0105, 0.0087, 0.0064], [0.218, 0.218, 0.1167, 0.0753, 0.0457, 0.023, 0.0216, 0.0168], [0.0509, 0.0329, 0.0078, 0.0073, 0.0069, 0.0065, 0.0061, 0.0061], [0.0528, 0.025, 0.0076, 0.0063, 0.0049, 0.0043, 0.0043, 0.0034], [0.0495, 0.0234, 0.0086, 0.0081, 0.0055, 0.0046, 0.0041, 0.0041], [0.0173, 0.0153, 0.0119, 0.0105, 0.0105, 0.0077, 0.0064, 0.006], [0.0163, 0.0077, 0.0064, 0.006, 0.0047, 0.0041, 0.003, 0.0025], [0.0426, 0.0332, 0.0275, 0.0115, 0.0095, 0.0089, 0.004, 0.0037], [0.0324, 0.0237, 0.0153, 0.0072, 0.0068, 0.0064, 0.0064, 0.0047], [0.0396, 0.0155, 0.0088, 0.0078, 0.0069, 0.0047, 0.0047, 0.0044], [0.0142, 0.0133, 0.0104, 0.0063, 0.0063, 0.0043, 0.0036, 0.0034], [0.0132, 0.0059, 0.0049, 0.0049, 0.0031, 0.0029, 0.0029, 0.0026], [0.0063, 0.003, 0.0022, 0.0017, 0.0017, 0.0013, 0.0012, 0.0012], [0.0047, 0.0044, 0.0024, 0.0024, 0.0022, 0.0022, 0.002, 0.0016], [0.0145, 0.0136, 0.0064, 0.0041, 0.0034, 0.0034, 0.003, 0.003], [0.0659, 0.0425, 0.0156, 0.0074, 0.0069, 0.0065, 0.0054, 0.0054], [0.0108, 0.0051, 0.0048, 0.0048, 0.0033, 0.0027, 0.0024, 0.0023], [0.006, 0.0044, 0.0039, 0.0034, 0.0034, 0.0032, 0.0025, 0.0021], [0.0309, 0.0272, 0.0129, 0.0073, 0.0057, 0.005, 0.005, 0.0047], [0.01, 0.0083, 0.0069, 0.006, 0.006, 0.0057, 0.0042, 0.0042], [0.0574, 0.0507, 0.0271, 0.0175, 0.0165, 0.01, 0.0094, 0.0069], [0.1567, 0.0613, 0.029, 0.0199, 0.0146, 0.0129, 0.0094, 0.0069], [0.0981, 0.0318, 0.0193, 0.0181, 0.015, 0.0141, 0.0103, 0.0097], [0.0423, 0.0329, 0.0329, 0.0291, 0.0213, 0.0176, 0.0166, 0.0156], [0.0445, 0.0369, 0.0112, 0.0099, 0.0082, 0.0073, 0.0064, 0.0064], [0.105, 0.0818, 0.032, 0.0151, 0.0125, 0.0098, 0.0098, 0.0092], [0.4778, 0.0504, 0.0305, 0.0174, 0.012, 0.0088, 0.0064, 0.006], [0.1101, 0.0757, 0.0217, 0.0191, 0.0191, 0.018, 0.0159, 0.0132], [0.0858, 0.0489, 0.0336, 0.0246, 0.0231, 0.0169, 0.0124, 0.0124], [0.0704, 0.0548, 0.0515, 0.0401, 0.0332, 0.0293, 0.0243, 0.0215], [0.1168, 0.0625, 0.0587, 0.043, 0.0295, 0.0295, 0.023, 0.0123], [0.4083, 0.1099, 0.0626, 0.0519, 0.0296, 0.0261, 0.0149, 0.014], [0.2978, 0.2047, 0.0967, 0.0967, 0.0295, 0.023, 0.0168, 0.0139], [0.2581, 0.1774, 0.1076, 0.0421, 0.0308, 0.0212, 0.0187, 0.0187], [0.2621, 0.1802, 0.0428, 0.0378, 0.0378, 0.019, 0.0168, 0.0139], [0.1803, 0.1404, 0.0485, 0.0428, 0.0294, 0.0294, 0.0215, 0.0139], [0.1311, 0.1021, 0.0847, 0.0582, 0.0332, 0.0243, 0.0228, 0.0177], [0.1412, 0.1246, 0.071, 0.0431, 0.038, 0.0315, 0.023, 0.0158], [0.2561, 0.0781, 0.0647, 0.0537, 0.0504, 0.0504, 0.0474, 0.0238], [0.4278, 0.0398, 0.0291, 0.0274, 0.0257, 0.0257, 0.0241, 0.0156], [0.2426, 0.0576, 0.035, 0.0199, 0.0155, 0.0121, 0.0121, 0.0121], [0.0661, 0.0215, 0.0202, 0.0202, 0.0178, 0.0157, 0.013, 0.0122], [0.2243, 0.0643, 0.0442, 0.0344, 0.0304, 0.0252, 0.0209, 0.0209], [0.3761, 0.0577, 0.0396, 0.035, 0.029, 0.029, 0.0256, 0.0165], [0.2045, 0.0752, 0.0664, 0.0586, 0.0586, 0.0277, 0.026, 0.0244], [0.3175, 0.0708, 0.0487, 0.043, 0.0295, 0.0295, 0.0261, 0.0203], [0.3916, 0.0771, 0.0601, 0.0413, 0.0364, 0.0284, 0.0221, 0.0195], [0.3019, 0.2351, 0.1111, 0.0463, 0.0361, 0.0361, 0.0133, 0.0133], [0.7274, 0.1116, 0.0984, 0.0118, 0.0081, 0.0056, 0.0049, 0.0023], [0.9352, 0.0363, 0.0104, 0.0081, 0.0049, 0.0009, 0.0003, 0.0002], [0.8613, 0.0429, 0.0334, 0.026, 0.0058, 0.0045, 0.0031, 0.0024], [0.8025, 0.0513, 0.0311, 0.0275, 0.0189, 0.0189, 0.0089, 0.0054], [0.5838, 0.2434, 0.0329, 0.0291, 0.02, 0.0137, 0.0107, 0.0107], [0.5054, 0.2107, 0.0775, 0.0415, 0.0285, 0.0173, 0.0153, 0.0135]], "ranks": {"Python": [25518, 159812, 114093, 189893, 69876, 89609, 24825, 62344, 14623, 8457, 2945, 21875, 14628, 20029, 8920, 53429, 45963, 44688, 24006, 51464, 22851, 37873, 18432, 3209, 1859, 1245, 1987, 2324, 2714, 2107, 3965, 6848, 7876, 4654, 2904, 241, 36, 32, 62, 15, 7, 12, 23, 79, 65, 72, 102, 107, 323, 1299, 987, 235, 201, 304, 480, 338, 61, 112, 115, 207, 128, 107, 128]}}, {"pos": 529, "top": [[".", ",", " \u2013", " ", "\u2013", ";", "a", "o"], [",", ".", "\u2013", " \u2013", "\u2013and", ";", " ", ",."], [",", ".", "\u2013", " \u2013", "\u2026", ";", "\u2013and", ".."], [" **>>", " ``", "aroo", "\uff5e\uff5e", "\uff0d\uff0d", "sWith", " Aussie", "iest"], [".@", " @", ",@", "\u3000", ":@", ".#", "@", " &"], [".@", " Aussie", "&A", " @", ":@", "tv", "aug", " \u200b\u200b"], ["\u3000", "--", " ..", "!!", " !!", " `", " &", " @"], ["--", " ..", " @", " ~~", "!!", " `", " !!", "aroo"], ["\u3000", " ..", "..", ".", "!!", ".&", " &", "!"], ["--", ",", ",&", ")--", "..", ",@", " hubby", "!!"], ["--", "..", "it", "&", "\u00a0", " @", ".@", ","], [" Philly", " hubby", " veggies", "aroo", ")--", " meds", " kids", "/apps"], [" Philly", " meds", " hubby", " veggies", "--", " kids", "aroo", "kids"], [" Philly", " veggies", " meds", " kids", " hubby", "kids", "/apps", " vibe"], [" Philly", "--", " kids", "kids", "it", " hubby", " combo", " meds"], ["kids", " kids", " Philly", " hubby", " moms", " veggies", "Kids", " tech"], ["kids", " Philly", " kids", " meds", " veggies", " apps", "/apps", " tech"], ["kids", " Philly", " kids", " meds", "/apps", " veggies", "tv", "Kids"], ["kids", " Philly", "/apps", " meds", "tv", " kids", " apps", "-&"], ["--", "kids", "-&", " --", "&", " Philly", "/apps", "tv"], ["--", "<|endoftext|>", "a", "&", "@", "d", "n", " --"], ["/apps", "kids", " **>>", " Philly", " ''", "Apps", " apps", "sworth"], [" ''", "/apps", " ``", "kids", "Apps", " apps", " Philly", " '''"], [" ''", " --", " ``", " apps", "/apps", "Apps", "kids", " TV"], ["/apps", " ''", "Apps", " apps", "Movie", "kids", " '''", " --"], ["/apps", " apps", "Apps", " Android", " Apps", "Android", " smartphone", "apps"], [" apps", "/apps", " Android", "Apps", " smartphone", " Apps", "kids", "apps"], ["/apps", " apps", " Android", "kids", " __", " Apps", "Apps", "apps"], [" apps", " Android", "/apps", "Android", "Apps", " smartphone", " __", "kids"], [" ____", " __", " apps", "/apps", " Android", "Android", " ___", " smartphone"], [" __", " apps", " ____", " Android", "/apps", " ___", " **", "Android"], [" apps", " TV", " launch", " live", " Android", " __", " shop", " reboot"], [" live", " TV", " launch", "'s", " apps", " tech", " worldwide", " built"], [" tech", " apps", "\u2011", " storefront", " TV", " software", " core", " reboot"], [" tech", " TV", " apps", "\u2011", " software", " storefront", "TV", " hardware"], ["\u2011", " tech", " software", " apps", " developer", "\u2019s", " Android", "core"], [" software", " tech", " developer", " apps", " launch", " startup", " SDK", " developers"], [" software", " apps", " developer", " tech", " firmware", " SDK", " Apps", " Software"], [" software", " apps", " developer", "software", " developers", " SDK", " tech", " firmware"], [" software", " apps", "software", "\u2011", " Apps", " Software", " developer", " SDK"], [" software", " apps", "software", " Software", " Python", " code", " programming", " programmers"], [" software", " apps", " Software", "software", " programming", " startup", " scripting", " Python"], [" software", " apps", " startup", "software", " Software", " programming", " scripting", " scripts"], [" software", " startup", " apps", " Software", " core", "software", " itself", " launch"], [" software", " startup", " itself", " core", " apps", " runtime", " launcher", " launch"], [" software", " startup", " core", " itself", " apps", " scripts", " launch", " launcher"], [" software", " core", " itself", " scripts", " startup", " apps", " launch", " entire"], [" startup", " core", " itself", " launch", " software", " main", " entire", " scripts"], [" core", " startup", " itself", " launch", " software", " apps", " launcher", " launches"], [" software", " itself", " startup", " launch", " runtime", " scripts", " core", " apps"], ["/software", " toolkit", " software", " APK", "/apps", " itself", " startup", " runtime"], [" software", " code", "/software", " toolkit", " scripts", " runtime", "\u4ee3\u7801", "/library"], [" runtime", " code", " consists", " scripts", "\u4ee3\u7801", " toolkit", " internals", " startup"], [" code", " runtime", " scripts", " consists", "\u4ee3\u7801", "code", " startup", "-code"], [" code", "\u4ee3\u7801", "code", " launcher", " runtime", "\u7684\u4ee3\u7801", "-code", " startup"], [" code", "\u4ee3\u7801", "code", "\u7684\u4ee3\u7801", "-code", " launcher", " runtime", " Python"], [" code", ".py", " Python", "\u4ee3\u7801", "code", " launcher", " startup", " scripts"], [" code", "code", "\u4ee3\u7801", " logic", "-code", ".py", "\u7684\u4ee3\u7801", " Python"], [" code", " logic", "code", "logic", "\u4ee3\u7801", "\u903b\u8f91", ".py", "-code"], [" code", " logic", " entry", "code", "logic", "\u5165\u53e3", "\u4ee3\u7801", " bundle"], [" code", " logic", " entry", " ship", " shipped", " bundle", "code", " ships"], [" code", " logic", " ship", " ships", " is", " shipped", " entry", "\u2019s"], [" code", " logic", " ships", "\u2019s", " ship", " bundle", " imports", " entry"]], "p": [[0.7177, 0.2056, 0.0278, 0.0116, 0.0085, 0.004, 0.0033, 0.0026], [0.5238, 0.2184, 0.1169, 0.0458, 0.0203, 0.0149, 0.0019, 0.0017], [0.452, 0.3521, 0.1468, 0.0289, 0.005, 0.0044, 0.0024, 0.0017], [0.0131, 0.0109, 0.0085, 0.007, 0.0066, 0.0043, 0.0043, 0.0043], [0.2715, 0.1132, 0.0416, 0.0269, 0.0163, 0.0112, 0.0105, 0.0077], [0.0132, 0.0097, 0.0071, 0.0062, 0.0062, 0.0055, 0.0055, 0.0046], [0.1283, 0.1064, 0.0829, 0.0269, 0.0253, 0.021, 0.0153, 0.0153], [0.0353, 0.0353, 0.0292, 0.0228, 0.0157, 0.0157, 0.0122, 0.0108], [0.1006, 0.0573, 0.0446, 0.037, 0.0225, 0.0175, 0.012, 0.0113], [0.1753, 0.0345, 0.0087, 0.0082, 0.0077, 0.0077, 0.0072, 0.0072], [0.2221, 0.0363, 0.0363, 0.0249, 0.022, 0.0194, 0.0151, 0.0142], [0.0195, 0.0126, 0.0105, 0.0105, 0.0098, 0.0092, 0.0092, 0.0087], [0.0166, 0.0121, 0.0121, 0.0121, 0.0114, 0.0083, 0.0078, 0.0078], [0.0311, 0.0177, 0.0166, 0.0147, 0.0129, 0.0122, 0.0065, 0.0061], [0.0642, 0.0267, 0.0184, 0.0082, 0.0077, 0.0068, 0.0068, 0.0049], [0.0552, 0.0379, 0.014, 0.0062, 0.0062, 0.0062, 0.0058, 0.0048], [0.0365, 0.0222, 0.0111, 0.0082, 0.0063, 0.0063, 0.006, 0.0056], [0.0669, 0.0316, 0.0149, 0.0124, 0.0103, 0.0091, 0.0091, 0.0066], [0.0546, 0.0177, 0.0101, 0.0084, 0.0084, 0.0074, 0.0069, 0.0061], [0.0263, 0.018, 0.0132, 0.0103, 0.0066, 0.0062, 0.0046, 0.0043], [0.0254, 0.0224, 0.0174, 0.0106, 0.0106, 0.0093, 0.0064, 0.006], [0.0133, 0.0086, 0.0055, 0.0049, 0.0043, 0.0036, 0.0032, 0.0028], [0.1238, 0.0202, 0.0108, 0.0095, 0.009, 0.0079, 0.0074, 0.0051], [0.1545, 0.0135, 0.0127, 0.0082, 0.0072, 0.006, 0.0047, 0.0044], [0.0223, 0.0223, 0.0127, 0.0127, 0.0093, 0.0093, 0.0056, 0.0053], [0.0664, 0.0624, 0.0216, 0.0158, 0.0102, 0.0079, 0.0079, 0.007], [0.078, 0.0733, 0.0174, 0.0144, 0.0127, 0.0093, 0.0088, 0.0082], [0.0942, 0.0885, 0.0174, 0.0164, 0.0127, 0.0099, 0.0099, 0.0068], [0.0315, 0.0278, 0.0261, 0.0168, 0.0102, 0.0096, 0.009, 0.0085], [0.0509, 0.0396, 0.0199, 0.0165, 0.0137, 0.0137, 0.0088, 0.0069], [0.1162, 0.0549, 0.0549, 0.0313, 0.0108, 0.0102, 0.0095, 0.009], [0.0428, 0.0229, 0.0202, 0.019, 0.0178, 0.013, 0.0102, 0.0084], [0.0426, 0.0353, 0.0167, 0.0122, 0.0122, 0.0101, 0.0084, 0.0061], [0.0378, 0.026, 0.0168, 0.0123, 0.0123, 0.009, 0.0066, 0.0062], [0.0489, 0.0169, 0.0159, 0.0116, 0.0075, 0.0055, 0.0045, 0.004], [0.0259, 0.0167, 0.0157, 0.0115, 0.0089, 0.0062, 0.0058, 0.0048], [0.0423, 0.0241, 0.0146, 0.0137, 0.0101, 0.0083, 0.0057, 0.0054], [0.0492, 0.0247, 0.0132, 0.0117, 0.0071, 0.0071, 0.0063, 0.0063], [0.1607, 0.0522, 0.0169, 0.0116, 0.0103, 0.0103, 0.0103, 0.0091], [0.189, 0.0839, 0.024, 0.0165, 0.0146, 0.0121, 0.0094, 0.0094], [0.5027, 0.0468, 0.0364, 0.025, 0.0134, 0.0104, 0.0092, 0.0086], [0.7092, 0.0293, 0.0157, 0.0157, 0.0122, 0.0115, 0.0101, 0.0084], [0.6188, 0.0421, 0.0328, 0.0155, 0.0155, 0.0146, 0.0083, 0.0083], [0.3556, 0.1229, 0.0292, 0.0177, 0.0138, 0.0138, 0.013, 0.0107], [0.2422, 0.1075, 0.0652, 0.0328, 0.0155, 0.0145, 0.0137, 0.0137], [0.1352, 0.0724, 0.0497, 0.0467, 0.0266, 0.025, 0.0235, 0.0118], [0.1122, 0.0771, 0.0468, 0.0364, 0.0302, 0.0284, 0.0183, 0.0162], [0.0786, 0.0738, 0.0477, 0.0421, 0.0421, 0.0255, 0.024, 0.0145], [0.0759, 0.0629, 0.0591, 0.049, 0.0359, 0.0124, 0.0116, 0.0116], [0.0455, 0.0313, 0.0276, 0.0178, 0.0178, 0.0157, 0.0148, 0.013], [0.0292, 0.0242, 0.0214, 0.0147, 0.0147, 0.0122, 0.0107, 0.0107], [0.0537, 0.0505, 0.0393, 0.0306, 0.027, 0.0254, 0.0254, 0.0174], [0.0803, 0.0754, 0.0314, 0.0245, 0.0216, 0.0216, 0.0139, 0.0139], [0.112, 0.0723, 0.0342, 0.0321, 0.0301, 0.0283, 0.0172, 0.0134], [0.4224, 0.0832, 0.0504, 0.0254, 0.0224, 0.0198, 0.0198, 0.0136], [0.5724, 0.0878, 0.0603, 0.0184, 0.0153, 0.0105, 0.0098, 0.0082], [0.324, 0.1351, 0.0497, 0.0387, 0.0342, 0.0283, 0.025, 0.0172], [0.7765, 0.0722, 0.0496, 0.0266, 0.0086, 0.0086, 0.0046, 0.0041], [0.5187, 0.3565, 0.0332, 0.0157, 0.0157, 0.0051, 0.0045, 0.0031], [0.5364, 0.3687, 0.0208, 0.0126, 0.0068, 0.0053, 0.0046, 0.0025], [0.5467, 0.3316, 0.0272, 0.01, 0.0088, 0.0078, 0.0061, 0.0057], [0.5365, 0.1974, 0.044, 0.0389, 0.0303, 0.0195, 0.0172, 0.0162], [0.4172, 0.253, 0.0931, 0.0342, 0.0342, 0.0208, 0.0195, 0.0134]], "ranks": {"Python": [11810, 44881, 71642, 97670, 16177, 79554, 31057, 72592, 43722, 77792, 28907, 64308, 63289, 64470, 56928, 111829, 115726, 69975, 78120, 143171, 41406, 135920, 99872, 98302, 43720, 58839, 51491, 25104, 19413, 17439, 13726, 11656, 10302, 15626, 22362, 2236, 200, 159, 52, 11, 5, 8, 11, 22, 19, 21, 61, 80, 70, 142, 292, 69, 16, 10, 12, 8, 3, 8, 9, 27, 32, 109, 168]}}, {"pos": 530, "top": [[".", ",", "\u00a0", "\u2013", ";", " \u2013", "\u00a0\u00a0", " "], [" \u200b\u200b", ".", " \u2013", ",", " very", "\u2013", "\u2013and", " Will"], [".", ",", "\u2013", ";", " \u2013", "\u2013and", "?", ".\u2013"], [" ;;^", " milfs", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Shemale", " Blowjob", " Geile", "----------</", " Strec"], [".@", ".", "&(", " \u200b\u200b", "na", "nost", "@d", " IS"], [" \u200b\u200b", ".", "fst", ".redis", ".Pro", ",", "\u5982\u6b4c", "culos"], [" \n", ".", " crazy", "\u00a0", " stuck", " gotten", " get", " anyway"], ["ness", " veggies", " anyway", " crappy", "iland", " gotten", " REALLY", " pretty"], [".", " \u200b\u200b", "\u00a0", " \n    \n", "!.", "ness", ".&", "        \n        \n"], [",", "\u00a0", "\u2013and", ".", "ness", "\u2013", "-but", "iland"], ["\u00a0", ",", ".", " ", " \n", "\u2013and", "\u2013", " going"], [" bigger", " freaking", " veggies", " busted", " gonna", " skinny", " kids", " pricey"], [" bigger", " freaking", " gonna", " veggies", " anyways", " goofy", " busted", " skinny"], [" goofy", " bigger", " busted", " vibe", " freaking", " junk", " anyways", " trash"], [" busted", " goofy", " tweaked", " Philly", " goof", " bigger", " mostly", " pricey"], ["\u548c\u4fe1\u606f\u5316", "\u8c46\u74e3\u8bc4\u5206", " reboot", " goofy", " ;;^", " anyways", "\u582a\u6bd4", " kids"], [" goofy", " tweaked", " skinny", " anyways", " busted", " incredibly", " popping", " tweaking"], [" goofy", " anyways", " tweaked", " bigger", " busted", " tweaking", " kids", " comfy"], [" goofy", " anyways", " comfy", "\u8c46\u74e3\u8bc4\u5206", " busted", " tweaked", " cheesy", " veggies"], [" bigger", " goofy", " anyways", " comfy", "\u54e5\u534e", "\u8c46\u74e3\u8bc4\u5206", " anyway", "\u4e5f\u5e76\u4e0d"], [" just", " mostly", " bigger", " hugely", " anyway", " going", " genuinely", " outright"], [" ;;^", " bigger", "\u4e5f\u4e00\u76f4", "\u548c\u4fe1\u606f\u5316", "\u54e5\u534e", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " anyways", "\u4e5f\u5e76\u4e0d"], [" ''", " ;;^", " bigger", " ``", "\u548c\u4fe1\u606f\u5316", " anyways", "\u4e5f\u4e00\u76f4", "\u4e5f\u5e76\u4e0d"], [" ''", " just", " mostly", " still", " --", " ``", " \\\"", " only"], [" ''", " --", " mostly", " &#", " genuinely", " anyway", " hugely", " bigger"], [" anyway", " ''", " anyways", " bigger", " ;;^", "\u548c\u4fe1\u606f\u5316", " --", " reboot"], [" ''", " --", " bigger", " anyway", " ``", "\u548c\u4fe1\u606f\u5316", " ;;^", " reboot"], [" --", " ''", " ,", " mostly", " just", " still", " ultimately", " truly"], [" --", " ultimately", " anyway", " \\\"", " still", " just", " ,", " sprawling"], [" \n  \n", " \n\n", " \\\"", " --", " ___", " __", " anyway", " ____"], [" \n\n", " \\\"", " anyway", " \n  \n", " ", " only", " ,", " still"], [" still", " ultimately", " ,", " only", " just", " \\\"", " ", " fully"], [" ,", " only", " still", " ultimately", " just", " all", " fully", " full"], [" ultimately", " truly", " fully", " anyway", " still", " entirely", " --", " technically"], [" truly", "\u2011", " fully", " literally", " entirely", " --", " technically", " still"], [" \u201c", " \u2014", "\u2011", " \u2013", " entirely", " \"", " *", " fully"], [" \u201c", " entirely", " \u2014", " \"", " exclusively", " ultimately", " fully", " technically"], [" entirely", " \u201c", " exclusively", " fully", " packaged", " software", " ultimately", " only"], [" entirely", " software", " \u201c", " fully", " Python", " exclusively", " built", " packaged"], [" Python", " software", " entirely", " scripting", " \u201c", " scripted", " packaged", " python"], [" Python", " software", " scripting", " python", "Python", " scripted", " programming", " scripts"], [" Python", " software", " scripting", " python", " scripts", " programming", " scripted", "Python"], [" Python", " software", " scripting", " scripts", " programming", " python", " scripted", " entirely"], [" Python", " software", " entirely", " packaged", " scripts", " scripting", " exclusively", " primarily"], [" Python", " entirely", " software", " exclusively", " scripts", " primarily", " scripting", " packaged"], [" entirely", " Python", " exclusively", " primarily", " scripts", " predominantly", " software", " packaged"], [" entirely", " primarily", " exclusively", " predominantly", " scripts", " scripted", " Python", " solely"], [" entirely", " primarily", " predominantly", " exclusively", " scripts", " packaged", " scripted", " Python"], [" predominantly", " primarily", " entirely", " powered", " Python", " scripted", " packaged", " exclusively"], [" entirely", "Powered", " scripted", " powered", " packaged", " Powered", "/scripts", " Python"], ["Powered", " packaged", " scripted", "/software", " shipped", ".*)", "/scripts", " Python"], [" Python", "Powered", " software", " packaged", "Python", " coded", "/software", "coded"], [" Python", " packaged", "Powered", " shipped", " python", " coded", " runnable", "Python"], [" Python", " packaged", " runnable", " python", "Python", " shipped", " executable", " coded"], [" Python", " packaged", " python", "Python", " runnable", " executable", " coded", "python"], [" Python", " python", "Python", "python", " PYTHON", "-python", " packaged", "/python"], [" Python", " python", "Python", "python", "-python", " PYTHON", "/python", "PYTHON"], [" Python", " python", "Python", "python", " PYTHON", "-python", "/python", "PYTHON"], [" Python", " python", "Python", "python", "-python", " PYTHON", "/python", " packaged"], [" Python", " python", "Python", " packaged", "python", " PYTHON", "-python", "/python"], [" Python", " python", "Python", " packaged", " shipped", " launched", " PYTHON", "-python"], [" Python", " distributed", " written", " shipped", " packaged", " launched", " coded", " built"], [" packaged", " shipped", " written", " built", " Python", " launched", " deployed", " distributed"]], "p": [[0.6351, 0.3399, 0.0071, 0.0062, 0.0048, 0.0033, 0.0007, 0.0005], [0.0435, 0.0318, 0.0233, 0.0059, 0.004, 0.0036, 0.0032, 0.0032], [0.5596, 0.3394, 0.0757, 0.0066, 0.0038, 0.0026, 0.0015, 0.0009], [0.0054, 0.0048, 0.004, 0.0031, 0.0027, 0.0026, 0.0026, 0.0024], [0.0069, 0.0042, 0.0039, 0.0037, 0.0022, 0.0016, 0.0015, 0.0014], [0.0359, 0.0031, 0.0022, 0.0012, 0.0011, 0.0009, 0.0008, 0.0008], [0.0209, 0.0197, 0.0064, 0.006, 0.0056, 0.0053, 0.005, 0.0047], [0.0165, 0.0047, 0.0042, 0.0039, 0.0037, 0.0032, 0.0029, 0.0021], [0.0452, 0.0311, 0.0114, 0.0089, 0.0089, 0.0084, 0.0069, 0.0051], [0.176, 0.0393, 0.0057, 0.0032, 0.002, 0.0014, 0.0013, 0.0013], [0.5825, 0.1568, 0.0893, 0.0121, 0.0033, 0.0027, 0.0027, 0.0024], [0.0088, 0.0078, 0.0057, 0.005, 0.005, 0.005, 0.0047, 0.0044], [0.0103, 0.0091, 0.0085, 0.0085, 0.0075, 0.0062, 0.0049, 0.0046], [0.0045, 0.004, 0.0038, 0.0027, 0.0027, 0.0027, 0.0026, 0.0024], [0.0151, 0.0063, 0.0049, 0.0041, 0.0038, 0.0036, 0.0034, 0.0032], [0.0041, 0.0025, 0.0021, 0.002, 0.0017, 0.0015, 0.0013, 0.0013], [0.0052, 0.0046, 0.0031, 0.0031, 0.0028, 0.0026, 0.0026, 0.0022], [0.0069, 0.0048, 0.004, 0.0037, 0.0035, 0.0027, 0.0023, 0.0021], [0.0161, 0.0063, 0.0063, 0.0046, 0.0041, 0.0036, 0.0034, 0.0034], [0.005, 0.005, 0.0047, 0.0028, 0.0024, 0.0021, 0.0021, 0.0018], [0.0211, 0.0068, 0.0064, 0.006, 0.0053, 0.005, 0.0047, 0.0039], [0.0223, 0.0034, 0.0025, 0.0022, 0.0022, 0.0018, 0.0018, 0.0018], [0.0365, 0.0183, 0.0087, 0.0049, 0.0038, 0.0038, 0.0028, 0.0028], [0.1001, 0.0163, 0.0163, 0.0153, 0.0153, 0.0135, 0.006, 0.0056], [0.0494, 0.0281, 0.016, 0.0117, 0.011, 0.011, 0.0103, 0.0097], [0.014, 0.0123, 0.0109, 0.0109, 0.0066, 0.0055, 0.0043, 0.004], [0.0311, 0.0166, 0.0089, 0.0069, 0.0069, 0.0058, 0.0058, 0.0058], [0.4014, 0.0291, 0.0129, 0.01, 0.01, 0.0078, 0.0074, 0.0074], [0.0335, 0.0158, 0.0158, 0.0116, 0.008, 0.0062, 0.0062, 0.0055], [0.133, 0.1036, 0.0489, 0.046, 0.0432, 0.0406, 0.0217, 0.0169], [0.1815, 0.1248, 0.0336, 0.0296, 0.0246, 0.0231, 0.0217, 0.0204], [0.0646, 0.0536, 0.0536, 0.0473, 0.0444, 0.0305, 0.0253, 0.0174], [0.0829, 0.0607, 0.0503, 0.0392, 0.0325, 0.0253, 0.0223, 0.0163], [0.044, 0.044, 0.0342, 0.0284, 0.0284, 0.0221, 0.0183, 0.0126], [0.0386, 0.0283, 0.0266, 0.022, 0.0194, 0.0183, 0.0171, 0.0151], [0.1969, 0.1194, 0.0724, 0.0468, 0.0221, 0.0172, 0.0152, 0.0152], [0.0987, 0.0818, 0.0769, 0.0387, 0.0283, 0.0234, 0.022, 0.0183], [0.1008, 0.042, 0.0371, 0.0307, 0.0271, 0.0239, 0.0211, 0.0145], [0.1043, 0.0558, 0.0384, 0.0361, 0.0318, 0.0299, 0.0264, 0.0233], [0.5476, 0.0329, 0.029, 0.0165, 0.0137, 0.0121, 0.0114, 0.0114], [0.8005, 0.031, 0.0188, 0.0129, 0.0107, 0.0084, 0.0054, 0.0048], [0.7823, 0.0441, 0.0303, 0.0143, 0.0126, 0.0077, 0.0068, 0.0064], [0.5759, 0.1134, 0.0392, 0.0269, 0.0185, 0.012, 0.0112, 0.0087], [0.2651, 0.1252, 0.0556, 0.0337, 0.0337, 0.0297, 0.0218, 0.0159], [0.1937, 0.1709, 0.0669, 0.0432, 0.0337, 0.0262, 0.0217, 0.0217], [0.1677, 0.0898, 0.0898, 0.0657, 0.0424, 0.033, 0.0257, 0.0227], [0.0917, 0.0862, 0.076, 0.0523, 0.0491, 0.0298, 0.0298, 0.0247], [0.1621, 0.1114, 0.1114, 0.034, 0.0206, 0.0194, 0.0182, 0.016], [0.1221, 0.0893, 0.0509, 0.0272, 0.0256, 0.024, 0.024, 0.024], [0.0331, 0.0311, 0.0292, 0.0292, 0.0292, 0.0147, 0.013, 0.0122], [0.0257, 0.0257, 0.0147, 0.0122, 0.0107, 0.0107, 0.0089, 0.0084], [0.2586, 0.0509, 0.0329, 0.0256, 0.0226, 0.0155, 0.0146, 0.0129], [0.4413, 0.0985, 0.0282, 0.0206, 0.0182, 0.0161, 0.0151, 0.0151], [0.5862, 0.0793, 0.0331, 0.0292, 0.0227, 0.0214, 0.0122, 0.0122], [0.7048, 0.1388, 0.0273, 0.0213, 0.0094, 0.0089, 0.0083, 0.0047], [0.9438, 0.0196, 0.0173, 0.0039, 0.0039, 0.0034, 0.0016, 0.0009], [0.9602, 0.0199, 0.0121, 0.0024, 0.0021, 0.0019, 0.0005, 0.0005], [0.9512, 0.0253, 0.0136, 0.0034, 0.0024, 0.0018, 0.0008, 0.0005], [0.94, 0.0322, 0.0152, 0.0038, 0.0023, 0.0018, 0.0011, 0.0009], [0.9715, 0.0157, 0.0074, 0.0017, 0.0007, 0.0006, 0.0006, 0.0003], [0.9776, 0.0075, 0.0075, 0.0015, 0.001, 0.0009, 0.0007, 0.0004], [0.5563, 0.0967, 0.0967, 0.0586, 0.0586, 0.0314, 0.0102, 0.0102], [0.2142, 0.189, 0.1668, 0.0614, 0.0614, 0.0542, 0.0542, 0.0372]], "ranks": {"Python": [62772, 185501, 148380, 218830, 88100, 126276, 16510, 108795, 30698, 44937, 15126, 38224, 21312, 36124, 37359, 86070, 131639, 104040, 116555, 172054, 45641, 104309, 69490, 41072, 27931, 18727, 9151, 4225, 2806, 3398, 4571, 8912, 11317, 9074, 5105, 439, 36, 23, 5, 1, 1, 1, 1, 1, 1, 2, 6, 8, 5, 8, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4]}}, {"pos": 531, "top": [[".", ",", "\u2013", " \u2013", ";", ",.", "\u00a0\u00a0", "\u00a0"], [" \u2013", "\u2013", ".", " \u200b\u200b", ",", "\u2013and", ".\u2013", ";"], [".", "\u2013", ",", "\u2026.", " \u2013", "\u2026..", "\u2026", ".\u2013"], [" milfs", " Shemale", " Guta", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " pornstar", " Blowjob", "aruhi", " cumshot"], [".@", ":.", "\u7fe1", "@a", " \u200b\u200b", "@d", ".", "@c"], [" \u200b\u200b", ".", "!.", "\u2026.", "\u2026..", "!:", "!,", "ayar"], [".....", ":.", "stra", "!.", " favorite", "ayar", "!", "ota"], [" \u062c\u062f\u064b\u0627", "!:", " veggies", " *@", "\u54e5\u534e", "!.", "htar", " Geile"], ["!.", " \u200b\u200b", ":.", " *@", ".", " \u062c\u062f\u064b\u0627", "!,", "!:"], [",", "!,", ".,", ".", ",.", "!.", "?,", ":."], [".", ",", " big", "-", "&", " @", ",.", ":."], [" veggies", " bigger", " kids", "-ish", " guy", " big", " guts", " pricey"], [" veggies", " neighbor", " kids", " big", " guy", " bigger", "-ish", " fiber"], ["-ish", " kids", " veggies", " bigger", " guy", " big", " showcase", " flashy"], [" big", " kids", " savvy", " pricey", " bigger", " flashy", " showcase", " teen"], [" big", " kids", " pricey", " savvy", " buzz", " tech", " massive", " kid"], [" big", " kids", " savvy", " bigger", " tech", "-esque", " kid", " huge"], [" big", " kids", " bigger", " savvy", "-esque", " tech", " kid", " buzz"], ["-esque", " savvy", " kids", " big", " booze", "-ish", " funky", "-big"], [" big", " bigger", " savvy", " kids", " kid", " buzz", " funky", "-big"], [" big", " hugely", " bigger", " wildly", " genuinely", " folks", " sorta", "Though"], [" bigger", " ;;^", "\u54e5\u534e", " big", "xeda", " Fortal", "\u6df1\u5ea6\u5408\u4f5c", "\u66f4\u7f8e\u597d"], [" big", " bigger", " ''", " ``", " ;;^", "xeda", " blockbuster", " massively"], [" ''", " big", " ,", " long", " full", " '", " ``", " much"], [" ''", " hugely", " big", " genuinely", " massively", " \ufffd", " --", " massive"], [" cheap", " blockbuster", " big", " massively", " ''", " commercial", " multicultural", " industrial"], [" multimedia", " commercial", " ``", " ''", " film", " software", " hacker", " complex"], [" ,", " --", " _", " complex", " commercial", " '", " \\\"", " mass"], [" multimedia", " complex", " commercial", " modular", " \\\"", " tech", " film", " hybrid"], [" ____", " ___", " __", " _____", " ______", " **", " multimedia", " \\\""], [" \\\"", " ___", " ____", " __", " complex", " ?", " **", " commercial"], [" complex", " commercial", " ", " \\\"", " big", " multi", " .", " a"], [" complex", " .", " ,", " commercial", " multi", " full", " a", " long"], [" complex", " multi", " tech", " multimedia", " modular", " hybrid", " system", " commercial"], [" complex", " *", " multi", " tech", " hybrid", " modular", " core", " multimedia"], [" complex", " *", " \"", " /", " \u2026", " \u201c", " hybrid", " \u2013"], [" *", " \"", " modular", " Python", " complex", " hybrid", " software", " tech"], [" Python", " modular", " complex", " software", " /", " multi", " *", " hybrid"], [" Python", " software", " modular", " complex", " multi", " python", " /", " system"], [" Python", " python", " modular", "Python", " software", " complex", " package", " modules"], [" Python", " python", " software", "Python", " scripts", " modular", " complex", " Software"], [" Python", " software", " python", " scripts", "Python", " scripting", " script", " modular"], [" Python", " software", " scripts", " python", "Python", " libraries", " packages", " modular"], [" Python", " software", " packages", " scripts", " package", " packaged", " python", "Python"], [" Python", " packages", " scripts", " package", " software", " python", " modules", " files"], [" Python", " packages", " scripts", " package", " python", " software", " packaged", " collection"], [" Python", " scripts", " packages", " software", " python", " package", " pure", " core"], [" Python", " scripts", " packages", " python", " collection", " files", " collections", " bundle"], [" Python", " python", " scripts", "-centric", " packages", " bundle", "-packages", " packaged"], [" Python", " scripts", "/python", "\u7eaf\u7cb9\u7684", " python", "-centric", "/Framework", "/packages"], [" Python", " APK", "/pkg", ".pkg", " SDK", ".*)", "/python", " YAML"], [" Python", " python", "Python", "/python", ".pkg", "/pkg", "python", "-python"], [" Python", " python", "Python", "/python", "-python", " bundle", " PYTHON", ".py"], [" Python", " python", " bundle", "Python", ".py", "/python", "-python", "bundle"], [" Python", " bundle", " python", "bundle", ".bundle", " package", " Bundle", " executable"], [" Python", " python", "Python", " PYTHON", "/python", "-python", "python", "PYTHON"], [" Python", " python", "Python", " PYTHON", "python", "/python", ".py", "-python"], [" Python", " python", "Python", " PYTHON", ".py", "/python", "python", "PYTHON"], [" Python", " python", "Python", " PYTHON", "/python", ".py", "python", "PYTHON"], [" Python", " python", "Python", ".py", " PYTHON", "PYTHON", "python", "-python"], [" Python", " python", " `.", "Python", ".py", " PYTHON", "PYTHON", "-python"], [" Python", " `.", " `", " python", "Python", " PYTHON", " Py", ".py"], [" `.", " Python", " `", "`.", " single", " .", " bundle", " python"]], "p": [[0.9127, 0.0749, 0.0061, 0.0029, 0.0012, 0.0003, 0.0003, 0.0002], [0.3496, 0.2403, 0.1286, 0.0238, 0.0164, 0.0127, 0.0047, 0.0047], [0.5991, 0.2497, 0.0811, 0.0263, 0.0124, 0.0124, 0.004, 0.0038], [0.0093, 0.0073, 0.0064, 0.005, 0.0044, 0.0034, 0.0022, 0.002], [0.0056, 0.0049, 0.0043, 0.0041, 0.0041, 0.0034, 0.0025, 0.0022], [0.0427, 0.0157, 0.0101, 0.0084, 0.0051, 0.0051, 0.0045, 0.0037], [0.0123, 0.0116, 0.0109, 0.0102, 0.009, 0.008, 0.007, 0.0066], [0.0122, 0.0037, 0.0035, 0.0033, 0.0029, 0.0029, 0.0026, 0.0024], [0.0664, 0.0623, 0.0402, 0.0139, 0.0123, 0.009, 0.0084, 0.007], [0.0715, 0.0218, 0.0067, 0.0055, 0.0052, 0.0046, 0.0033, 0.0031], [0.0671, 0.0141, 0.0124, 0.0124, 0.011, 0.0103, 0.0091, 0.008], [0.0076, 0.0072, 0.006, 0.0046, 0.0044, 0.0044, 0.0041, 0.0036], [0.0117, 0.0071, 0.0052, 0.0049, 0.0046, 0.0043, 0.0041, 0.0038], [0.0033, 0.0033, 0.0029, 0.0029, 0.0028, 0.0028, 0.0026, 0.002], [0.0115, 0.0101, 0.0095, 0.0084, 0.0079, 0.0079, 0.0069, 0.0054], [0.0103, 0.008, 0.0049, 0.0043, 0.004, 0.0033, 0.0031, 0.0029], [0.0541, 0.0176, 0.0128, 0.0113, 0.0113, 0.0078, 0.0069, 0.0065], [0.0327, 0.0175, 0.012, 0.0094, 0.0083, 0.0078, 0.0073, 0.006], [0.0344, 0.0135, 0.0099, 0.0087, 0.006, 0.0056, 0.0053, 0.005], [0.0271, 0.0154, 0.0073, 0.0064, 0.0053, 0.0053, 0.005, 0.0039], [0.011, 0.0103, 0.0059, 0.0046, 0.0043, 0.0038, 0.0036, 0.0033], [0.0041, 0.0032, 0.003, 0.0026, 0.0016, 0.0013, 0.001, 0.001], [0.0116, 0.0091, 0.0048, 0.0035, 0.0024, 0.0022, 0.002, 0.0017], [0.0133, 0.0125, 0.0125, 0.0063, 0.0055, 0.0055, 0.0052, 0.0046], [0.0181, 0.0125, 0.0117, 0.0091, 0.0067, 0.0059, 0.0059, 0.0052], [0.0096, 0.0066, 0.0062, 0.0055, 0.0055, 0.0051, 0.0045, 0.0045], [0.0147, 0.0101, 0.0101, 0.0084, 0.0065, 0.0065, 0.0058, 0.0054], [0.0344, 0.0323, 0.0209, 0.0173, 0.0153, 0.0127, 0.0119, 0.0068], [0.0307, 0.0199, 0.0175, 0.0155, 0.0128, 0.0106, 0.0094, 0.0083], [0.2497, 0.1944, 0.0557, 0.0383, 0.0232, 0.0193, 0.0132, 0.008], [0.0485, 0.0402, 0.0378, 0.026, 0.0244, 0.0202, 0.0168, 0.0158], [0.0416, 0.0252, 0.0163, 0.0119, 0.0112, 0.0105, 0.0105, 0.0105], [0.0342, 0.0266, 0.0172, 0.0142, 0.0142, 0.0111, 0.0111, 0.0111], [0.0825, 0.039, 0.0268, 0.0236, 0.0196, 0.0173, 0.0119, 0.0119], [0.0586, 0.0486, 0.0486, 0.0355, 0.0168, 0.0148, 0.0148, 0.0139], [0.0585, 0.0485, 0.0402, 0.026, 0.0202, 0.019, 0.0178, 0.0178], [0.1236, 0.0584, 0.0401, 0.0401, 0.0312, 0.0243, 0.0229, 0.0167], [0.0669, 0.0555, 0.0336, 0.0316, 0.0297, 0.0231, 0.0231, 0.0192], [0.4267, 0.0542, 0.0397, 0.0212, 0.0129, 0.0083, 0.0078, 0.0065], [0.8054, 0.0148, 0.0139, 0.0108, 0.0089, 0.0058, 0.0023, 0.0021], [0.9206, 0.0116, 0.0096, 0.007, 0.0019, 0.0011, 0.001, 0.0009], [0.9059, 0.0166, 0.0138, 0.0074, 0.0054, 0.0022, 0.002, 0.0017], [0.8372, 0.0253, 0.0127, 0.0119, 0.0068, 0.0032, 0.0032, 0.003], [0.55, 0.0352, 0.0257, 0.0188, 0.0156, 0.0114, 0.0095, 0.0074], [0.5012, 0.0341, 0.0234, 0.0207, 0.0183, 0.0142, 0.0092, 0.0086], [0.3774, 0.0374, 0.031, 0.0137, 0.0129, 0.0121, 0.0089, 0.0083], [0.2276, 0.0508, 0.0349, 0.0113, 0.0106, 0.0106, 0.0094, 0.0094], [0.3088, 0.0393, 0.0164, 0.0136, 0.0082, 0.0073, 0.0068, 0.0064], [0.3073, 0.0185, 0.0082, 0.0082, 0.0072, 0.0064, 0.0056, 0.0044], [0.1059, 0.0093, 0.0077, 0.0072, 0.0072, 0.006, 0.0056, 0.0056], [0.0439, 0.0183, 0.0111, 0.0104, 0.0104, 0.0098, 0.0081, 0.0063], [0.8167, 0.0232, 0.018, 0.0141, 0.004, 0.0029, 0.0028, 0.0026], [0.9165, 0.019, 0.0079, 0.0062, 0.0042, 0.0021, 0.0017, 0.0014], [0.9055, 0.0273, 0.0114, 0.0061, 0.0029, 0.0025, 0.0021, 0.0019], [0.8164, 0.0975, 0.0169, 0.0132, 0.0091, 0.008, 0.0033, 0.0029], [0.9841, 0.0096, 0.0028, 0.0006, 0.0006, 0.0005, 0.0005, 0.0003], [0.9865, 0.0085, 0.0028, 0.0005, 0.0004, 0.0004, 0.0003, 0.0002], [0.9837, 0.0109, 0.0017, 0.0009, 0.0009, 0.0007, 0.0005, 0.0003], [0.9874, 0.0097, 0.001, 0.0005, 0.0003, 0.0003, 0.0003, 0.0002], [0.9942, 0.0046, 0.0005, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001], [0.9991, 0.0003, 0.0002, 0.0002, 0.0001, 0.0, 0.0, 0.0], [0.7536, 0.2447, 0.0006, 0.0004, 0.0002, 0.0001, 0.0001, 0.0], [0.962, 0.0373, 0.0003, 0.0002, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Python": [36775, 94423, 70530, 172512, 19935, 48523, 23568, 109382, 45754, 73242, 15233, 22833, 13728, 23723, 6702, 18824, 18686, 14769, 14498, 30454, 1786, 5713, 608, 2633, 1066, 428, 477, 954, 417, 655, 1009, 2551, 3683, 887, 1020, 117, 3, 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]}}, {"pos": 532, "top": [["s", "  \n\n", "\u0627\u062a", "sene", "schild", "sburg", " `.", "schrift"], ["s", "sii", "\u0627\u062a", "  \n\n", "sik", "sula", "s\u00f6k", "schrift"], ["s", "sii", "\u0627\u062a", "s\u00f6k", "sula", "schrift", "schild", "sze"], ["satz", "sula", "sii", "schrift", "s\u00f6k", " ``(", "\u52a0\u62ff\u5927", "schriften"], [" \n\n\n\n", "s", "sii", "sula", "s\u00f6k", "satz", "\u0627\u062a", "sze"], [" \n\n\n\n", "sii", "sula", "s", "s\u00f6k", "satz", "sze", "siz"], ["s", " [`", "sii", " \n\n\n\n", " `.", " `_", "s\u00f6k", "\u0627\u062a"], ["s", " [`", " `.", "sii", " `_", " \n\n\n\n", "s\u00f6k", "satz"], ["s", " \n\n\n\n", "  \n\n", " [`", "   \n\n", "\n\n\n\n", " \n\n", " `."], ["s", "s\u00f6k", "sii", " \n\n\n\n", "satz", " [`", "sula", "schild"], ["s", " [`", " \n\n\n\n", " `.", "  \n\n", "sii", " `_", "\n\n\n\n"], [" [`", "s", " `_", "sii", " `.", "s\u00f6k", "satz", "schriften"], ["s", "sii", " `_", " `.", "s\u00f6k", "satz", " [`", "\u52a0\u62ff\u5927"], ["s", "sii", "s\u00f6k", "\u52a0\u62ff\u5927", "satz", "schriften", "sula", " `_"], ["s", " `.", " [`", "sii", " `_", "ska", "\u0627\u062a", " `\""], ["s", "sii", "\u4e8b\u513f", "s\u00f6k", "\u52a0\u62ff\u5927", "satz", "siz", "\u4e24\u5b66\u4e00\u505a"], ["s", "sii", "\u4e8b\u513f", " `.", "s\u00f6k", "\u0627\u062a", " [`", "ska"], ["s", "sii", " `.", "\u4e8b\u513f", "s\u00f6k", "\u52a0\u62ff\u5927", "satz", " `%"], ["s", "sii", "s\u00f6k", "satz", "schrift", "\u52a0\u62ff\u5927", "sula", "\u4e8b\u513f"], ["s", " [`", "sii", " `.", " `%", "\u4e8b\u513f", "s\u00f6k", "\u0627\u062a"], ["s", " \n\n", "  \n\n", " [`", " `.", "   \n\n", "<|endoftext|>", " \n\n\n\n"], ["s", "satz", "sii", "s\u00f6k", "\u52a0\u62ff\u5927", "sula", "schrift", " `%"], ["s", " `.", " `%", "sii", " `_", "satz", " `,", "\u52a0\u62ff\u5927"], ["s", " `.", " `%", " `_", " `/", " `,", " `\"", " `\\"], ["s", " `_", " `.", " `%", " [`", "\r\n\r\n", " `\\", " `/"], [" `_", "satz", "sii", " `.", "\u52a0\u62ff\u5927", " `%", "sprech", "s\u00f6k"], [" `_", "satz", " `%", "sii", "\u52a0\u62ff\u5927", "sprech", " `.", "sula"], [" `_", " `.", "s", " `%", " ___", " `/", " `\\", " [`"], ["paque", "s", " `_", "satz", "sii", "sprech", " _)", " `."], ["s", " ___", " _.", " _____", " `_", "paque", " _)", " `."], ["s", " `.", " _.", "paque", " *.", " _____", " **.", "   \n\n"], ["s", " `.", " *.", "paque", " _.", " _____", " [`", " archive"], ["s", " *.", "paque", " `.", " \"*.", " \u2026.", "ska", " /."], ["s", "paque", " `.", " `/", "ska", " (*.", " [`", "sii"], ["s", "paque", " [`", " *</", " `.", "ska", "\u2011", "!\u201d."], ["s", "paque", " \u2026.", " \"*.", " *.", "[\u2026", " *</", "\u2026*"], ["s", " \"*.", "paque", " [.", " *.", " `.", " Python", " [`"], ["s", " Python", "paque", " `.", " eBooks", " `/", "\u2011", " APK"], [" Python", "paque", "Python", " eBooks", " APK", " \"*.", " python", " `."], ["Python", " Python", " python", "paque", " APK", "-python", "python", " [."], [" Python", "Python", " bytecode", " APK", " (*.", "paque", " python", "-python"], [" Python", "Python", " bytecode", " APK", " python", "-python", "_python", "/python"], [" bytecode", " APK", " Python", "Python", " (*.", " files", " scripts", " packaged"], [" APK", " bytecode", " Python", " packaged", " files", " executable", "paque", "Python"], [" APK", " files", " bytecode", " Python", " scripts", "paque", " packaged", " executable"], [" APK", " Python", " files", " packaged", " bytecode", " scripts", "-pack", "paque"], [" APK", "-pack", " files", " Python", " bytecode", " packaged", " scripts", " executable"], [" APK", "-pack", " Python", " `.", " bytecode", " packaged", " files", "-files"], [" APK", "/Linux", "/python", "/py", "-python", " `/", " bytecode", " Python"], [" APK", "-python", "/python", "/.", "/Linux", "\u6587\u4ef6\u6216", "-pack", "/\\"], [" APK", "/.", "-python", "/*.", "Python", " \"*.", "/python", "!/"], ["Python", "-python", " Python", " python", "/python", " APK", "python", "/."], ["-python", " Python", "Python", "/.", " python", "/python", ".py", " APK"], ["-python", ".py", " Python", " python", "Python", " executable", "python", "/python"], [" python", " Python", ".py", "exe", "Python", "python", " APK", " executable"], [" python", " Python", "Python", ".py", "python", "/python", "-python", " PYTHON"], [" python", " Python", ".py", "Python", "python", "/python", "/py", " py"], [" python", " Python", ".py", " py", "Python", "python", "/py", " PY"], [".py", " python", " Python", " py", "python", " PY", "py", "Python"], [" py", " python", ".py", " Python", "py", "python", " PY", "/py"], [" py", "py", " python", " Python", " PY", "python", ".py", "/py"], ["py", " py", "`,", "apk", " python", "`", "python", " PY"], ["py", "apk", " py", "python", "exe", "zip", "px", "PY"]], "p": [[0.9976, 0.0007, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0], [0.8875, 0.0268, 0.0077, 0.0064, 0.0056, 0.0047, 0.0044, 0.0041], [0.9931, 0.0011, 0.0009, 0.0004, 0.0004, 0.0003, 0.0003, 0.0002], [0.0823, 0.0414, 0.0389, 0.0251, 0.0184, 0.0173, 0.0173, 0.0126], [0.1464, 0.114, 0.114, 0.0475, 0.0419, 0.0419, 0.0224, 0.0186], [0.177, 0.1073, 0.054, 0.0476, 0.0371, 0.0348, 0.0225, 0.0187], [0.8134, 0.0246, 0.0217, 0.018, 0.0109, 0.0109, 0.0096, 0.0085], [0.8405, 0.0288, 0.0128, 0.012, 0.0077, 0.0077, 0.0073, 0.0057], [0.5241, 0.117, 0.0626, 0.0588, 0.0245, 0.0216, 0.0203, 0.0191], [0.3247, 0.1054, 0.093, 0.0439, 0.0284, 0.0221, 0.0172, 0.0143], [0.309, 0.1288, 0.1068, 0.0689, 0.0287, 0.027, 0.0238, 0.021], [0.0949, 0.0652, 0.0652, 0.0613, 0.0448, 0.0349, 0.0328, 0.0165], [0.3368, 0.0485, 0.0456, 0.0378, 0.0215, 0.019, 0.019, 0.0115], [0.1585, 0.0583, 0.0275, 0.0228, 0.0202, 0.013, 0.0122, 0.0108], [0.8251, 0.0059, 0.0049, 0.0046, 0.0043, 0.0022, 0.002, 0.0018], [0.5076, 0.0237, 0.0153, 0.0082, 0.006, 0.0047, 0.0047, 0.0047], [0.9359, 0.0019, 0.0013, 0.001, 0.0009, 0.0009, 0.0008, 0.0007], [0.2998, 0.0204, 0.014, 0.0109, 0.0109, 0.0091, 0.007, 0.0062], [0.525, 0.0231, 0.018, 0.0116, 0.007, 0.0055, 0.0051, 0.0048], [0.9132, 0.004, 0.0035, 0.0023, 0.0021, 0.0019, 0.0019, 0.0013], [0.9846, 0.0026, 0.0023, 0.0004, 0.0004, 0.0004, 0.0004, 0.0003], [0.0396, 0.029, 0.0272, 0.0212, 0.0176, 0.0165, 0.0129, 0.0121], [0.2846, 0.0362, 0.034, 0.0234, 0.0171, 0.011, 0.0091, 0.0081], [0.8018, 0.0311, 0.013, 0.0079, 0.0061, 0.0051, 0.0033, 0.0029], [0.3107, 0.0448, 0.0349, 0.0175, 0.0088, 0.0083, 0.0083, 0.0073], [0.0307, 0.0307, 0.0175, 0.0154, 0.0128, 0.012, 0.0113, 0.01], [0.0509, 0.0309, 0.0121, 0.0107, 0.0107, 0.0057, 0.0057, 0.0054], [0.2084, 0.0465, 0.034, 0.0282, 0.0161, 0.0118, 0.0092, 0.0092], [0.0161, 0.0133, 0.0125, 0.0091, 0.0086, 0.0063, 0.0055, 0.0052], [0.0559, 0.0319, 0.0299, 0.016, 0.0141, 0.0133, 0.0103, 0.0071], [0.4996, 0.0385, 0.0171, 0.0104, 0.0056, 0.0043, 0.0043, 0.0043], [0.4661, 0.017, 0.0103, 0.0091, 0.0049, 0.0046, 0.0036, 0.0031], [0.5029, 0.0221, 0.0195, 0.0172, 0.0046, 0.0044, 0.0041, 0.0038], [0.0674, 0.0525, 0.0281, 0.011, 0.0086, 0.0086, 0.0071, 0.0067], [0.0941, 0.0646, 0.0238, 0.0127, 0.012, 0.0064, 0.0064, 0.0056], [0.0883, 0.0368, 0.0185, 0.0153, 0.0144, 0.0112, 0.0099, 0.0093], [0.0374, 0.0274, 0.0227, 0.0156, 0.0147, 0.0147, 0.0138, 0.0138], [0.025, 0.0207, 0.0183, 0.0161, 0.0142, 0.0111, 0.0098, 0.0098], [0.0542, 0.0256, 0.0165, 0.0121, 0.0121, 0.0114, 0.0114, 0.0107], [0.204, 0.204, 0.0333, 0.013, 0.013, 0.0108, 0.0102, 0.0102], [0.1549, 0.1367, 0.0472, 0.0238, 0.0223, 0.0197, 0.0185, 0.0135], [0.2463, 0.159, 0.0751, 0.0355, 0.026, 0.0202, 0.0123, 0.0115], [0.1052, 0.0929, 0.0872, 0.0266, 0.0207, 0.0183, 0.0152, 0.0142], [0.1123, 0.0822, 0.0601, 0.0251, 0.0251, 0.0183, 0.0162, 0.0162], [0.0609, 0.0505, 0.0474, 0.0418, 0.0326, 0.0254, 0.0238, 0.0198], [0.071, 0.0458, 0.038, 0.0278, 0.0203, 0.0203, 0.0203, 0.0149], [0.0588, 0.0261, 0.0245, 0.0245, 0.0216, 0.0179, 0.0158, 0.0116], [0.0573, 0.0307, 0.0175, 0.0145, 0.0136, 0.0113, 0.0106, 0.0106], [0.0911, 0.0245, 0.023, 0.0158, 0.0149, 0.0149, 0.014, 0.014], [0.0695, 0.0255, 0.0212, 0.0187, 0.0165, 0.0146, 0.0128, 0.0083], [0.0425, 0.0213, 0.0188, 0.0156, 0.0129, 0.0101, 0.0101, 0.0079], [0.1905, 0.1681, 0.0618, 0.0375, 0.0311, 0.0258, 0.0258, 0.0228], [0.2385, 0.1277, 0.1277, 0.0774, 0.0683, 0.0303, 0.0285, 0.0251], [0.151, 0.151, 0.1176, 0.1038, 0.0916, 0.0433, 0.0297, 0.0279], [0.3002, 0.1251, 0.0759, 0.067, 0.067, 0.067, 0.046, 0.046], [0.3303, 0.2003, 0.156, 0.1072, 0.0946, 0.0394, 0.0307, 0.0145], [0.3513, 0.2736, 0.1141, 0.0888, 0.0888, 0.0175, 0.0154, 0.0136], [0.2369, 0.2369, 0.209, 0.0599, 0.0599, 0.0529, 0.0283, 0.0283], [0.3393, 0.2994, 0.0858, 0.0757, 0.0757, 0.0191, 0.0191, 0.0169], [0.3631, 0.1944, 0.1336, 0.0918, 0.0918, 0.0383, 0.0298, 0.0205], [0.4475, 0.1865, 0.1131, 0.0881, 0.0367, 0.0324, 0.0286, 0.0153], [0.4374, 0.386, 0.0522, 0.0359, 0.0132, 0.0117, 0.0103, 0.0103], [0.9571, 0.0225, 0.0057, 0.005, 0.0035, 0.0007, 0.0004, 0.0004]], "ranks": {"Python": [16425, 99792, 135395, 135377, 102827, 131507, 68612, 52228, 56028, 86836, 48784, 64930, 65474, 57201, 31429, 58516, 39840, 27327, 30063, 32972, 2045, 27549, 14014, 8564, 8484, 8870, 7456, 2343, 3326, 1842, 814, 870, 1323, 1899, 2046, 297, 7, 2, 1, 1, 1, 1, 3, 3, 4, 2, 3, 3, 7, 13, 5, 1, 2, 3, 1, 1, 1, 1, 2, 2, 3, 5, 4]}}, {"pos": 533, "top": [["o", "e", "a", "i", "\u0627", "\uff08", "en", "y"], ["  \r\n", "e", "\uff08", "  \n", "yi", "o", "i", ":@"], ["\u3002", "\uff08", "\u2026\u2026", "\uff0c", "\uff1f", "e", "a", "\u2026"], [":__", " cumshot", "\uff3f\uff3f", " YYS", " *__", " ____", "enzi", "\uff1c"], ["e", "  \r\n", " *\u201c", "auf", " $($", " $\\", "evo", " ____"], ["auf", "yi", "fst", "aos", "ez", "\u6211", "\uff1a\u201c", "evo"], [" ____", ":__", "\uff08", " $($", "  \r\n", "\u6211", "e", " __"], [" ____", "  \r\n", ":__", "e", " $($", " __", "\u6211", "\r\n"], [" ____", "e", "o", "\u3000", ":__", "\u201d)", "  \r\n", ".py"], ["e", "  \r\n", "o", ":__", "i", ",__", "yi", ".py"], ["o", "e", "i", " ____", "a", ".py", ".", "y"], ["o", " ____", "e", "iens", ".py", "yy", "i", "yi"], ["e", "iens", "o", " ____", "ei", "\u4fd0", "-esque", "ez"], ["o", "e", "i", "-esque", "yi", "a", "ez", "an"], ["o", "e", "i", "a", "an", "y", "en", "d"], ["o", "e", "i", "a", "an", "y", "en", "-esque"], ["o", "e", "i", "a", "y", "an", "en", "u"], ["o", "e", "i", "a", "y", "-esque", "an", "u"], ["o", "e", "i", "a", "-esque", " ____", "yi", "yy"], ["o", "e", "i", "a", " --", "--", "y", "yi"], ["e", "o", "i", "a", "\n\n", " --", "--", "2"], [" ____", " ``", " ___", ".py", "orama", "iante", "\u4fd0", " __"], [" ``", ".py", " ____", " __", " ___", " --", "\r\n", "e"], [" ``", " --", "e", " __", " ''", " ,", " ____", " ___"], [" __", " ____", " --", " ___", " _", "__", " ``", "--"], [" __", " ____", " ___", "__", "___", " _", ".py", " _____"], [" __", " ___", " ____", " _", "__", "___", ".py", " _____"], [" __", " ___", " ____", " _", "__", " _____", "___", "____"], [" ____", " __", " ___", " _____", "___", "__", "____", " _"], [" ____", " ___", " __", "____", " _____", "___", "__", " ______"], [" ____", " ___", " __", "____", "___", "__", " _____", " ______"], [" ____", " ___", " __", " ...", " ...\\", " _____", "____", "__"], [" ____", " ...", " \u2026", " __", " ...\\", " ___", " .", " _____"], ["\u2011", ".py", " python", " Python", " scripts", "/py", " ____", "-script"], ["\u2011", ".py", " ____", " ...\\", " python", "/py", " \u2026", " scripts"], ["\u2011", " \u2026", ".py", " ____", " ...", "\u2026*", "/", " ...\\"], ["\u2011", ".py", "/py", " Python", " python", "/python", "Python", " scripts"], ["\u2011", ".py", " Python", " python", "/py", "Python", "/python", " scripts"], [".py", "Python", " Python", "\u2011", " python", "/python", "/py", "python"], ["Python", " python", " Python", ".py", "\u2011", "/python", "python", " scripts"], ["Python", " Python", " python", " scripts", "python", ".py", "/python", " PYTHON"], [" scripts", "Python", " Python", " python", "/python", ".py", " script", "python"], [" scripts", " Python", "Python", " python", " script", "-script", " scripting", " files"], [" scripts", " Python", " files", " script", " python", "Python", "-script", "scripts"], [" scripts", " files", " script", " Python", " python", "scripts", " scripting", " code"], [" scripts", " files", " script", " Python", " python", " file", " scripting", " code"], [" scripts", " script", " files", " file", " Python", " python", " code", " scripting"], [" scripts", " script", " files", " python", " Python", " file", " scripting", "files"], [" scripts", " files", " script", "/.", "files", " python", " scripting", " file"], [" scripts", " files", " script", "files", "/.", "-script", " file", " scripting"], [" scripts", " files", "files", " script", "/py", "/python", "/.", " scripting"], [" scripts", " script", "files", "/.", " files", "/py", " runtime", " scripting"], ["/py", " files", "files", ".py", " scripts", "/python", "py", "Python"], [".py", "/py", " scripts", "(py", "Python", " files", " executable", " Python"], ["Python", ".py", " Python", "/py", "(py", " python", "/python", "python"], [".py", "Python", "/python", " Python", "/py", "python", " python", " files"], [".py", "/py", "(py", "Python", " Python", "python", "/python", " python"], [".py", "/py", "(py", "Python", " Python", "/python", "python", " PYTHON"], [".py", "/py", "(py", "python", " Python", "/python", " python", "py"], ["/py", ".py", " file", "py", " py", " files", "(py", " executable"], ["`", "`,", "`.", "`)", "`:", " `.", "`).", "/py"], ["`", "`,", "`)", "\"`", " `", "`:", "`(", "()`"], ["`", "c", "`,", "w", "`)", "z", "app", "`("]], "p": [[0.5212, 0.3161, 0.0906, 0.0549, 0.0023, 0.0023, 0.0009, 0.0008], [0.1159, 0.04, 0.0353, 0.0201, 0.0178, 0.0147, 0.0138, 0.0095], [0.2323, 0.0754, 0.0754, 0.0709, 0.0518, 0.0356, 0.0335, 0.0245], [0.0173, 0.0152, 0.0119, 0.0092, 0.0077, 0.0072, 0.0063, 0.0056], [0.0424, 0.0257, 0.0242, 0.0242, 0.0242, 0.0227, 0.0188, 0.0166], [0.0185, 0.0105, 0.0099, 0.0082, 0.0072, 0.0068, 0.0064, 0.0056], [0.2259, 0.0418, 0.0325, 0.0287, 0.0287, 0.0253, 0.021, 0.0174], [0.2153, 0.0898, 0.0451, 0.0257, 0.0147, 0.0129, 0.0129, 0.0129], [0.1651, 0.0941, 0.0392, 0.0305, 0.0185, 0.0174, 0.0154, 0.0144], [0.2141, 0.0509, 0.0449, 0.024, 0.0212, 0.0176, 0.0165, 0.0155], [0.3641, 0.2664, 0.0525, 0.0361, 0.0318, 0.0125, 0.0086, 0.0067], [0.0947, 0.089, 0.0836, 0.0271, 0.0186, 0.0136, 0.012, 0.0106], [0.0404, 0.0356, 0.0314, 0.014, 0.0131, 0.0123, 0.0123, 0.0123], [0.2245, 0.1543, 0.0501, 0.0209, 0.0112, 0.0105, 0.0077, 0.0077], [0.6475, 0.1743, 0.0773, 0.0208, 0.0111, 0.0039, 0.0015, 0.0014], [0.5936, 0.2474, 0.0755, 0.0168, 0.0075, 0.0045, 0.0018, 0.0016], [0.7269, 0.2083, 0.0362, 0.0125, 0.0023, 0.002, 0.0006, 0.0005], [0.8536, 0.0701, 0.0201, 0.0089, 0.0018, 0.0014, 0.0011, 0.0009], [0.7241, 0.1258, 0.0717, 0.0091, 0.0018, 0.0016, 0.0014, 0.0014], [0.4713, 0.2858, 0.1052, 0.0301, 0.0052, 0.0049, 0.0041, 0.0034], [0.2889, 0.255, 0.1063, 0.0828, 0.0093, 0.0082, 0.0068, 0.0056], [0.0301, 0.0235, 0.0221, 0.0126, 0.0111, 0.0081, 0.0081, 0.0063], [0.3024, 0.0319, 0.0248, 0.0219, 0.0206, 0.0193, 0.0091, 0.0076], [0.3245, 0.2864, 0.025, 0.025, 0.0134, 0.0126, 0.0111, 0.0081], [0.2728, 0.1655, 0.146, 0.1211, 0.069, 0.0154, 0.0128, 0.012], [0.4132, 0.2506, 0.2506, 0.0141, 0.0103, 0.0086, 0.0059, 0.0043], [0.4984, 0.2668, 0.1428, 0.0281, 0.0125, 0.0071, 0.0055, 0.0041], [0.5914, 0.2176, 0.1165, 0.0485, 0.0096, 0.0074, 0.0027, 0.0008], [0.3635, 0.2831, 0.2831, 0.0205, 0.011, 0.0097, 0.0055, 0.0036], [0.5774, 0.1874, 0.1288, 0.0326, 0.021, 0.0128, 0.0093, 0.0068], [0.4756, 0.1983, 0.113, 0.0534, 0.0324, 0.0304, 0.0237, 0.0077], [0.4342, 0.1169, 0.0969, 0.0754, 0.0458, 0.0356, 0.0356, 0.0191], [0.2704, 0.2106, 0.0825, 0.05, 0.05, 0.047, 0.0252, 0.0222], [0.1093, 0.0663, 0.0244, 0.0168, 0.0139, 0.0131, 0.0131, 0.0084], [0.09, 0.0659, 0.04, 0.0353, 0.0214, 0.0138, 0.0114, 0.0095], [0.3501, 0.1459, 0.027, 0.0238, 0.0186, 0.0099, 0.0073, 0.006], [0.2076, 0.0921, 0.0384, 0.0384, 0.0361, 0.0318, 0.0219, 0.016], [0.2428, 0.1077, 0.0614, 0.0577, 0.0478, 0.0396, 0.0272, 0.0187], [0.1519, 0.134, 0.134, 0.1183, 0.1111, 0.0559, 0.0318, 0.0219], [0.3367, 0.0965, 0.0906, 0.08, 0.0706, 0.0456, 0.0402, 0.0215], [0.3601, 0.1701, 0.1169, 0.1032, 0.0335, 0.0315, 0.0315, 0.0149], [0.2558, 0.2558, 0.1992, 0.1066, 0.021, 0.0185, 0.0185, 0.0185], [0.5126, 0.1296, 0.0891, 0.0694, 0.0371, 0.0199, 0.0175, 0.0175], [0.5821, 0.074, 0.0541, 0.0449, 0.0372, 0.0226, 0.0137, 0.0121], [0.7411, 0.0689, 0.0326, 0.0238, 0.0224, 0.0082, 0.0073, 0.006], [0.608, 0.0932, 0.0726, 0.0389, 0.0284, 0.0172, 0.0105, 0.0072], [0.6149, 0.0832, 0.0734, 0.0186, 0.0164, 0.0136, 0.0093, 0.0088], [0.4858, 0.0793, 0.07, 0.0213, 0.0201, 0.0129, 0.0095, 0.0079], [0.4527, 0.1075, 0.0652, 0.0155, 0.0155, 0.0113, 0.01, 0.01], [0.4479, 0.1867, 0.0535, 0.0253, 0.0153, 0.0119, 0.0112, 0.0077], [0.3166, 0.1165, 0.0456, 0.0456, 0.0313, 0.0215, 0.0202, 0.0179], [0.2683, 0.0637, 0.0411, 0.0387, 0.0387, 0.025, 0.0234, 0.0183], [0.227, 0.156, 0.0506, 0.0476, 0.0476, 0.0371, 0.0348, 0.0289], [0.2346, 0.1423, 0.0762, 0.0383, 0.0383, 0.0383, 0.0338, 0.0263], [0.2695, 0.2378, 0.1273, 0.0991, 0.0681, 0.0601, 0.0413, 0.0365], [0.3001, 0.1417, 0.0591, 0.0591, 0.046, 0.0358, 0.0358, 0.0316], [0.6738, 0.0912, 0.038, 0.038, 0.0296, 0.0231, 0.018, 0.018], [0.5844, 0.1478, 0.048, 0.0257, 0.0227, 0.02, 0.02, 0.0176], [0.506, 0.1643, 0.0471, 0.0285, 0.0285, 0.0285, 0.0252, 0.0196], [0.2671, 0.1113, 0.0867, 0.0596, 0.0494, 0.0464, 0.041, 0.0281], [0.9005, 0.0949, 0.0029, 0.0003, 0.0002, 0.0002, 0.0001, 0.0001], [0.9938, 0.0059, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.999, 0.0005, 0.0004, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Python": [6134, 48949, 7753, 13820, 908, 4377, 789, 444, 510, 260, 176, 265, 273, 323, 230, 274, 290, 49, 72, 175, 147, 53, 11, 20, 24, 10, 9, 16, 15, 22, 30, 34, 30, 3, 5, 8, 3, 3, 2, 1, 1, 1, 2, 2, 4, 4, 5, 4, 6, 12, 12, 12, 8, 4, 1, 2, 3, 4, 4, 12, 24, 174, 138]}}, {"pos": 534, "top": [[".", " \u2013", ",", "  \n", "<|endoftext|>", "\u00a0\u00a0", ";", " "], ["  \n", "  \n\n", "   \n", "    \n", "  \n  \n", "     \n", "  ", " \u2013"], [".", "\u2013", ",", " \u2013", "[", ";", "\u2026..", "\u2026"], ["\uff3f\uff3f", " ``", " `_", " Bbw", " ``(", "odle", " Shemale", " Fonse"], ["  \n\n", " `", " \u00a3", "  \n", "   \n", " (`", "=`", " `%"], ["   \n", "  \n", "  \n\n", "     \n", " \uff09", " \uff08", "    \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"], [" `", " **", " `_", " ___", " `$", " `%", " *", "=`"], [" `", " **", " `_", " `$", " `%", " *", " ___", " `/"], [" `", " organisation", " pricey", "-ish", " oddly", " fibre", " `$", " (`"], [" `", " \ufffd", " though", " \u00ad", " just", " folks", " even", " oddly"], [" `", " though", " \ufffd", " \u00ad", " oddly", " \u2014", " just", "es"], [",", "es", " oddly", " just", " though", " even", " back", " sc"], [",", "-ish", " stuff", " oddly", " `", " even", " dozens", " bits"], [" even", " oddly", " stuff", " dozens", "-ish", " buzz", " bits", " \ufffd"], [" even", " \ufffd", " \u2014", " `", " though", " just", " dozens", " and"], [" \n\n", "  \n\n", "<|endoftext|>", " though", " \u2014", "   \n\n", " \ufffd", " `"], [" even", " stuff", " oddly", " bigger", " bits", " big", " buzz", " dozens"], [" ``", " `", " ,", " even", " ''", " still", " and", " just"], [" ,", " `", " even", " much", " still", " and", " just", " ``"], [" ,", " \n\n", " `", " _", " and", " much", " even", " though"], [" ___", " **", " _", " ``", " `", " __", " ,", " \n\n"], [" ___", " _", " __", " **", " ``", " `", " ,", " ____"], [" ,", " _", " \n\n", " __", " `", " ___", " \n", " ``"], [" ___", " __", " \n\n", " \n", " ...", " _", " ,", " **"], [" ...", " ___", " __", " ____", " \n", " ______", "...", " ...\\"], [" ...", " ___", " \n", " __", " **", "...", " ____", " _"], [" ...", "...", " ___", " ,", " .", " **", " __", " \n"], [" ...", " ,", " .", " /", " and", " or", " technology", " hardware"], [" ...", " hardware", " software", " technology", " tech", "...", " ...\\", " factory"], [" hardware", " tech", " software", " technology", " ...", " factory", " \u2014", " /"], [" ...", " \u2014", " hardware", " /", " \u2026", " software", " tech", " technology"], [" Python", " hardware", " python", " software", " /", " \u2014", " tech", " technology"], [" Python", " hardware", " python", " software", " tech", " ...", " /", "\u2011"], [" Python", " ...", " python", " hardware", " [...]", "\u2011", " software", "Python"], [" Python", " hardware", "\u2011", " ...", " [...]", " python", " software", "Python"], [" Python", " hardware", " software", " native", "\u2011", " module", " python", " tech"], [" hardware", " software", " Python", " module", " native", " modules", " firmware", " Linux"], [" hardware", " software", " firmware", " modules", " module", " native", " Python", " compiled"], [" hardware", " software", " native", " compiled", " embedded", " firmware", " modules", " Python"], [" hardware", " embedded", " software", " native", " compiled", " firmware", " proprietary", " imported"], [" hardware", " native", " embedded", " imported", " compiled", " packaged", " software", " proprietary"], [" embedded", " or", " hardware", " packaged", " compiled", " native", " imported", " module"], [" or", "/", " embedded", " packaged", " /", " imported", " hardware", " bundled"], [" or", "/", " embedded", " /", " package", " packaged", " files", " hardware"], [" or", " files", " package", " packages", " modules", "/", " packaged", " wrapper"], [" package", " files", " or", " bundle", " packages", " pack", "/", " runtime"], [" package", " files", " runtime", " bundle", " scripts", " packages", " modules", " wrapper"], [" files", " scripts", " runtime", " package", " bundle", " file", " wrapper", " executable"], [" scripts", " wrapper", " files", " executable", " runtime", " bundle", " package", " startup"], [" bundle", " package", " wrapper", " executable", " files", " scripts", " startup", " file"], [" file", " files", " bundle", " wrapper", " package", " scripts", " executable", " script"], [" file", " files", " script", " scripts", " bundle", " wrapper", " executable", " package"], [" file", " files", " scripts", " script", " executable", " wrapper", " launcher", " bundle"], [" script", " scripts", " file", " bundle", " executable", " files", " interpreter", " archive"], [" executable", " file", " entry", " bundle", " script", " files", " scripts", " execut"], [" bundle", " file", " executable", " entry", " script", " installer", " launcher", " package"], [" file", " bundle", " executable", " script", " package", " archive", " entry", " installer"], [" bundle", " file", " package", " executable", " archive", " script", " launcher", " entry"]], "p": [[0.7734, 0.056, 0.0385, 0.034, 0.0219, 0.0125, 0.0086, 0.0086], [0.4769, 0.1064, 0.0939, 0.0127, 0.006, 0.0034, 0.0025, 0.0019], [0.3138, 0.2444, 0.1903, 0.0658, 0.0399, 0.0201, 0.0138, 0.0138], [0.0101, 0.0058, 0.0048, 0.0029, 0.0026, 0.0026, 0.0021, 0.002], [0.16, 0.1412, 0.0335, 0.0296, 0.0261, 0.0203, 0.0191, 0.018], [0.2032, 0.1312, 0.04, 0.04, 0.0353, 0.0293, 0.0293, 0.0214], [0.5613, 0.234, 0.0714, 0.0263, 0.017, 0.0117, 0.0091, 0.0071], [0.633, 0.1412, 0.0756, 0.0217, 0.0203, 0.0169, 0.0131, 0.0096], [0.4277, 0.2289, 0.1225, 0.0743, 0.0291, 0.0177, 0.0156, 0.0114], [0.1946, 0.1828, 0.0863, 0.0524, 0.028, 0.0205, 0.0181, 0.017], [0.7276, 0.0437, 0.0362, 0.0249, 0.0182, 0.0125, 0.0125, 0.0125], [0.2307, 0.0962, 0.0849, 0.0661, 0.0427, 0.0228, 0.0122, 0.0115], [0.3394, 0.0668, 0.0432, 0.0217, 0.009, 0.009, 0.008, 0.0062], [0.0429, 0.0079, 0.0062, 0.0058, 0.0058, 0.0055, 0.0048, 0.004], [0.2197, 0.0522, 0.0359, 0.0132, 0.0109, 0.0085, 0.0071, 0.0066], [0.0255, 0.0211, 0.0199, 0.0094, 0.0078, 0.0069, 0.0064, 0.0064], [0.0244, 0.0102, 0.0095, 0.0084, 0.0079, 0.0079, 0.0074, 0.0058], [0.0148, 0.0131, 0.0102, 0.0096, 0.0096, 0.0079, 0.0066, 0.0062], [0.0141, 0.0133, 0.0133, 0.0125, 0.0081, 0.0063, 0.0059, 0.0055], [0.0602, 0.0414, 0.0303, 0.0267, 0.0195, 0.0134, 0.0111, 0.0098], [0.7504, 0.1304, 0.0146, 0.0083, 0.0037, 0.0031, 0.0024, 0.0024], [0.0085, 0.0085, 0.0055, 0.0043, 0.0038, 0.0031, 0.0024, 0.0024], [0.0691, 0.0419, 0.0307, 0.0198, 0.0154, 0.0094, 0.0078, 0.0068], [0.1474, 0.0542, 0.0187, 0.0165, 0.0155, 0.0155, 0.0137, 0.0129], [0.1758, 0.1208, 0.0346, 0.0136, 0.0136, 0.0112, 0.0106, 0.0099], [0.2568, 0.1658, 0.107, 0.0475, 0.0419, 0.037, 0.0198, 0.0078], [0.4466, 0.2709, 0.0996, 0.039, 0.0344, 0.0112, 0.0064, 0.0044], [0.2678, 0.1625, 0.0767, 0.0301, 0.0265, 0.0249, 0.0133, 0.0125], [0.1514, 0.0919, 0.0919, 0.0593, 0.0383, 0.036, 0.0338, 0.0263], [0.469, 0.3223, 0.0923, 0.03, 0.0182, 0.0142, 0.0125, 0.011], [0.8451, 0.054, 0.0225, 0.0225, 0.0175, 0.0044, 0.0032, 0.003], [0.9489, 0.0044, 0.0044, 0.003, 0.003, 0.0025, 0.0021, 0.0014], [0.5072, 0.0324, 0.0209, 0.0153, 0.0105, 0.0099, 0.0093, 0.0064], [0.5755, 0.0444, 0.0287, 0.0197, 0.0153, 0.0135, 0.0112, 0.0105], [0.1916, 0.0516, 0.0428, 0.0402, 0.0354, 0.0259, 0.019, 0.013], [0.2152, 0.1152, 0.1082, 0.0424, 0.0291, 0.0274, 0.0257, 0.0257], [0.4809, 0.0836, 0.0574, 0.0225, 0.0175, 0.0165, 0.0136, 0.01], [0.5152, 0.0578, 0.051, 0.0291, 0.0137, 0.0137, 0.0129, 0.0089], [0.6313, 0.1409, 0.0404, 0.0295, 0.0158, 0.0102, 0.0075, 0.0058], [0.3908, 0.077, 0.077, 0.0364, 0.0321, 0.0301, 0.0207, 0.0152], [0.1852, 0.1055, 0.0531, 0.0413, 0.0284, 0.0195, 0.0183, 0.0172], [0.35, 0.1874, 0.0942, 0.027, 0.0224, 0.0197, 0.0144, 0.0113], [0.3438, 0.1346, 0.0437, 0.0282, 0.0249, 0.0206, 0.0206, 0.0194], [0.2976, 0.0801, 0.0355, 0.0314, 0.026, 0.0244, 0.0202, 0.019], [0.194, 0.063, 0.049, 0.0461, 0.0337, 0.0247, 0.0218, 0.018], [0.1118, 0.0562, 0.0562, 0.0363, 0.0363, 0.0341, 0.025, 0.0183], [0.0781, 0.0608, 0.0537, 0.0347, 0.027, 0.0186, 0.0164, 0.0164], [0.0811, 0.0715, 0.0715, 0.0263, 0.0232, 0.016, 0.016, 0.0132], [0.2746, 0.1075, 0.0272, 0.0225, 0.0113, 0.0094, 0.0083, 0.0057], [0.4701, 0.022, 0.0207, 0.0182, 0.0125, 0.0081, 0.0067, 0.0063], [0.0605, 0.0324, 0.0286, 0.0223, 0.0173, 0.0144, 0.0135, 0.0127], [0.0938, 0.0827, 0.0569, 0.0416, 0.0304, 0.0286, 0.0209, 0.0185], [0.4331, 0.0753, 0.0429, 0.0314, 0.0244, 0.023, 0.0203, 0.0158], [0.166, 0.1465, 0.1293, 0.1007, 0.0784, 0.042, 0.037, 0.0288], [0.3565, 0.1486, 0.1021, 0.0796, 0.0702, 0.0258, 0.0228, 0.0157], [0.3816, 0.2972, 0.0851, 0.0751, 0.0215, 0.019, 0.0148, 0.0131], [0.4449, 0.1855, 0.0876, 0.0876, 0.0221, 0.0195, 0.0152, 0.0134], [0.4588, 0.1913, 0.0621, 0.0621, 0.0427, 0.0202, 0.0108, 0.0108], [0.4371, 0.1419, 0.1419, 0.076, 0.0461, 0.0218, 0.0192, 0.0169], [0.3356, 0.2306, 0.1235, 0.0848, 0.0515, 0.0401, 0.0189, 0.0167], [0.2421, 0.1885, 0.1144, 0.0891, 0.0694, 0.054, 0.0421, 0.0421], [0.3475, 0.3067, 0.0604, 0.0533, 0.0366, 0.0323, 0.0184, 0.0173], [0.4774, 0.2555, 0.057, 0.0503, 0.0444, 0.0163, 0.0127, 0.0127]], "ranks": {"Python": [8776, 60213, 51629, 23825, 571, 644, 179, 310, 506, 633, 148, 175, 219, 323, 1260, 2339, 1976, 519, 554, 1735, 859, 292, 262, 1049, 308, 23, 33, 167, 27, 47, 57, 145, 141, 11, 10, 12, 1, 1, 1, 1, 1, 3, 6, 8, 20, 25, 39, 73, 104, 729, 419, 111, 33, 37, 35, 89, 10, 10, 16, 51, 44, 127, 277]}}, {"pos": 535, "top": [[".", ",", "\u00a0\u00a0", ";", "\u00a0", " ", "?", "-"], ["\u2013", " \u200b\u200b", ".", ",", " \u2013", ";", "  ", "\u200b"], [",", ".", "\u2013", ";", "\u2026.", "\u2026..", " \u2013", "\u2026"], ["\ufffd\ufffd", "{EIF", "HeaderCode", "(EIF", " \u041a\u043e\u0434\u0435", " rasseg", "\u6e05\u7b97\u4fe1\u606f", " Strec"], ["  ", ".", "\u00a0\u00a0", ",", "!", " ", " \u200b\u200b", " HF"], [",", ".", " \u200b\u200b", "!", "\u00a0\u00a0", "  ", ";", "\u2026."], [".", "!", ",", "  ", "\u00a0\u00a0", " \u200b\u200b", "?", ";"], [",", ".", "!", "  ", ";", " \u200b\u200b", "   \n", " \u200b"], [".", ",", "!", " \u200b\u200b", ";", "  ", " \u200b", ":"], [",", ".", ";", "!", "\u00a0\u00a0", "\u00a0", ":", "  "], [".", ",", "!", ";", " ", "  ", "\u00a0", " ___"], [" ___", " ____", " _____", " ______", " _", "____", "  ", " ***"], [" ___", " ____", " _", " _____", " for", " that", " ______", " '"], [",", " that", " '", " for", ".", " in", " just", " talking"], [",", " that", " for", " ", " in", " at", ".", " \""], [" that", " in", " just", " for", " one", " on", " going", " with"], [",", " that", " in", " just", " for", " with", " on", " \""], [",", " that", " in", " just", " inside", " for", " with", " going"], [" that", " just", " in", " for", ",", " ,", " .", " on"], [" that", " just", " ,", " in", ",", " for", " at", " on"], [" ,", " that", " just", " in", " \"", " on", "<|endoftext|>", " at"], [" ,", " that", " just", " '", " anyway", " even", " inside", " outside"], [" ,", " that", " '", " ''", " just", " --", " .", " in"], [" ,", " that", " '", " just", " .", " in", " ''", " --"], [" ,", " that", " '", " just", " _", " --", " .", " in"], [" ___", " ,", " __", " that", " ____", " _", " .", " '"], [" _", " ___", " ,", " __", " ____", " that", " '", " _____"], [" ___", " __", " _", " ,", " ____", " _____", " ______", " ."], [" ___", " __", " ____", " _____", " ,", " ______", " _", " ."], [" ___", " __", " ____", " ______", " _____", " ,", " .", " _"], [" .", " ,", " ___", " __", " ____", " ?", " that", " and"], [" .", " ,", " ?", " that", " and", " in", " ...", " for"], [" .", " ,", " and", " ?", " but", " or", " that", " '"], [" .", " but", " ,", " and", " or", " \u2014", " ?", " !"], [" .", " ?", " !", " and", " but", " /", " or", " ,"], [" .", " /", " ?", " !", " \u2014", " and", " ,", " \""], [" .", " and", " \"", " /", " ,", " or", " but", " \u2014"], [" .", " /", " and", " or", " \"", " but", " ,", " ?"], [" .", " and", " /", " or", " ,", " \"", " everything", " but"], [" .", " and", " /", " or", " everything", " files", " but", " !"], [" and", " or", " .", " files", " /", " everything", " file", " but"], [" and", " scripts", " .", " or", " files", " everything", " file", " script"], [" .", " and", " scripts", " or", " files", " everything", " file", " script"], [" main", " startup", " files", " and", " scripts", " file", " containing", " or"], [" main", " startup", " files", " and", " scripts", " containing", " everything", " file"], [" and", " main", " everything", " or", " scripts", " files", " startup", " start"], [" and", " scripts", " or", " main", " /", " everything", " files", " startup"], [" and", " plus", " containing", " +", " launching", " scripts", " launch", " everything"], [" containing", " plus", " with", " and", " +", " launching", " startup", ";"], [" containing", " plus", ";", " with", " scripts", " +", " running", " launching"], [";", " containing", ";/", "\uff1b", ".;", " plus", ";,", " scripts"], [" importing", " containing", " imports", ";", " loading", " loaded", " relying", ";/"], [" importing", " containing", " imports", " loading", "),", " relying", " calling", " loaded"], [" importing", " executing", " containing", " calling", " invoking", " launching", " loading", " startup"], [" importing", " calling", " invoking", " executing", " imports", " launching", "calling", " startup"], [" importing", " calling", " imports", " invoking", " executing", " launching", "calling", " loading"], [" importing", " imports", " calling", " executing", " invoking", " import", " launching", " loading"], [" importing", " imports", " calling", " invoking", " executing", " import", " launching", " loading"], [" importing", " imports", " calling", " invoking", " executing", " launching", " import", " loading"], [" importing", " imports", " import", " calling", " executing", " invoking", " launching", " loading"], [" importing", " import", " imports", " launching", " calling", " executing", " tree", " structure"], [" importing", "),", " calling", " imports", " launching", " import", " executing", " that"], ["),", " importing", " tree", ",", " calling", " launching", " that", " bundle"]], "p": [[0.883, 0.0821, 0.0076, 0.0063, 0.0056, 0.003, 0.0017, 0.0014], [0.0275, 0.0258, 0.0115, 0.0108, 0.0095, 0.0089, 0.0074, 0.0058], [0.5127, 0.311, 0.1296, 0.0137, 0.0083, 0.0047, 0.0039, 0.0017], [0.0074, 0.0031, 0.0019, 0.0016, 0.0015, 0.0014, 0.0012, 0.0011], [0.0443, 0.0345, 0.0286, 0.0153, 0.0105, 0.005, 0.0036, 0.0034], [0.1324, 0.1098, 0.0709, 0.0356, 0.0203, 0.008, 0.008, 0.0075], [0.1523, 0.1431, 0.0597, 0.0234, 0.0161, 0.0133, 0.0133, 0.0125], [0.2641, 0.219, 0.0972, 0.0315, 0.0231, 0.009, 0.0062, 0.0048], [0.5232, 0.2472, 0.0587, 0.0551, 0.0131, 0.0058, 0.0043, 0.004], [0.9643, 0.0166, 0.0048, 0.0017, 0.0005, 0.0004, 0.0003, 0.0003], [0.4075, 0.4075, 0.0158, 0.0116, 0.0096, 0.009, 0.0066, 0.004], [0.5797, 0.1377, 0.0835, 0.042, 0.0307, 0.0044, 0.0037, 0.0027], [0.0512, 0.0274, 0.0227, 0.0147, 0.0138, 0.0122, 0.0114, 0.0114], [0.1187, 0.0249, 0.0219, 0.0206, 0.0133, 0.0133, 0.0117, 0.0104], [0.2702, 0.0603, 0.05, 0.047, 0.047, 0.0303, 0.0303, 0.0268], [0.0719, 0.0596, 0.0436, 0.0264, 0.0193, 0.0182, 0.0142, 0.0142], [0.3295, 0.0783, 0.061, 0.0306, 0.027, 0.0198, 0.0175, 0.0164], [0.1694, 0.0965, 0.0428, 0.0402, 0.0215, 0.0202, 0.0148, 0.0131], [0.2064, 0.067, 0.0522, 0.0406, 0.0204, 0.0169, 0.015, 0.0132], [0.1936, 0.1175, 0.1037, 0.0669, 0.046, 0.0381, 0.0316, 0.0279], [0.2369, 0.0988, 0.0871, 0.0412, 0.0266, 0.0266, 0.0266, 0.025], [0.063, 0.0556, 0.0433, 0.0247, 0.0247, 0.017, 0.0159, 0.0141], [0.3844, 0.0972, 0.0668, 0.0554, 0.0489, 0.0204, 0.018, 0.018], [0.6835, 0.0495, 0.0386, 0.0265, 0.0234, 0.0182, 0.0151, 0.0133], [0.6057, 0.0638, 0.0497, 0.0302, 0.0235, 0.0152, 0.0134, 0.0134], [0.3006, 0.2653, 0.1253, 0.0461, 0.0407, 0.0298, 0.0192, 0.0192], [0.3566, 0.2777, 0.1684, 0.1312, 0.0108, 0.0074, 0.0065, 0.0042], [0.3834, 0.2052, 0.1598, 0.1245, 0.0404, 0.0278, 0.0191, 0.0062], [0.5378, 0.1541, 0.0825, 0.0642, 0.0567, 0.0344, 0.0268, 0.0087], [0.39, 0.2088, 0.1266, 0.0598, 0.0528, 0.0411, 0.032, 0.022], [0.5731, 0.0685, 0.0685, 0.0415, 0.0196, 0.0184, 0.0135, 0.0119], [0.8111, 0.0261, 0.0062, 0.0058, 0.0058, 0.0043, 0.004, 0.0033], [0.8676, 0.0381, 0.014, 0.0062, 0.0048, 0.0048, 0.004, 0.0028], [0.4516, 0.0889, 0.0785, 0.0651, 0.0239, 0.0211, 0.0165, 0.0113], [0.4888, 0.0849, 0.0484, 0.0427, 0.0333, 0.0294, 0.0276, 0.0243], [0.6787, 0.0492, 0.0462, 0.0317, 0.0218, 0.0205, 0.015, 0.015], [0.2628, 0.0967, 0.0802, 0.0802, 0.0624, 0.0518, 0.0486, 0.0356], [0.2019, 0.115, 0.115, 0.0842, 0.0616, 0.051, 0.045, 0.031], [0.2103, 0.0933, 0.0774, 0.0727, 0.0365, 0.0322, 0.0303, 0.0303], [0.1598, 0.0588, 0.0552, 0.0458, 0.038, 0.0261, 0.0261, 0.0191], [0.0877, 0.0683, 0.047, 0.0414, 0.0366, 0.0285, 0.0268, 0.0251], [0.0848, 0.0548, 0.0483, 0.0401, 0.0312, 0.0275, 0.0228, 0.0214], [0.0516, 0.0516, 0.0402, 0.0377, 0.0276, 0.0259, 0.0202, 0.0178], [0.0667, 0.038, 0.0278, 0.0245, 0.0231, 0.0231, 0.0231, 0.0217], [0.0496, 0.0363, 0.0341, 0.032, 0.0249, 0.0234, 0.0207, 0.0182], [0.0726, 0.044, 0.0322, 0.0267, 0.0221, 0.0221, 0.0208, 0.0172], [0.0472, 0.0472, 0.0325, 0.0305, 0.021, 0.021, 0.0197, 0.0144], [0.0705, 0.0455, 0.0455, 0.0259, 0.0202, 0.019, 0.0148, 0.0115], [0.0993, 0.0727, 0.0365, 0.0365, 0.0236, 0.0208, 0.0196, 0.0196], [0.1753, 0.1454, 0.0939, 0.0345, 0.0153, 0.0144, 0.0135, 0.0127], [0.3934, 0.0728, 0.0344, 0.0209, 0.0196, 0.0196, 0.0135, 0.0126], [0.1983, 0.0937, 0.0644, 0.0568, 0.0304, 0.0268, 0.0153, 0.0112], [0.2983, 0.0625, 0.043, 0.0356, 0.0335, 0.0245, 0.0245, 0.0245], [0.1497, 0.0967, 0.0486, 0.0379, 0.0356, 0.0356, 0.023, 0.023], [0.6881, 0.1355, 0.0388, 0.0235, 0.0208, 0.0111, 0.006, 0.0044], [0.8594, 0.0549, 0.026, 0.0123, 0.0051, 0.0045, 0.0035, 0.0033], [0.9426, 0.0196, 0.0173, 0.003, 0.0023, 0.0021, 0.0016, 0.0013], [0.9641, 0.0138, 0.0083, 0.0031, 0.0027, 0.0016, 0.0011, 0.0004], [0.9722, 0.0108, 0.0045, 0.0027, 0.0027, 0.0013, 0.0013, 0.0008], [0.9795, 0.0096, 0.0031, 0.0024, 0.0013, 0.0007, 0.0007, 0.0003], [0.9615, 0.0065, 0.0065, 0.0065, 0.0045, 0.0035, 0.0016, 0.0009], [0.8917, 0.0238, 0.0185, 0.0087, 0.0087, 0.006, 0.0053, 0.0047], [0.4849, 0.428, 0.0188, 0.0166, 0.0061, 0.0061, 0.0061, 0.0061]], "ranks": {"Python": [31030, 218532, 130558, 147659, 14140, 44696, 4339, 6817, 7699, 17390, 4279, 2954, 2915, 2657, 3839, 3216, 4654, 1787, 1967, 4825, 3181, 2899, 1308, 1542, 1258, 231, 275, 709, 363, 552, 501, 905, 1510, 1037, 1616, 1461, 960, 694, 465, 333, 184, 198, 159, 269, 234, 234, 274, 316, 402, 1348, 693, 268, 111, 124, 324, 235, 18, 17, 28, 72, 54, 197, 508]}}, {"pos": 536, "top": [["\u00a0", ".", "<|endoftext|>", " ", " \u2013", "*.", "[", ","], [" \n\n\n", "  \n\n\n", " \n\n\n\n\n", "\t\n\n\n", "\",[", " [@", "   \n\n", "   \n"], [" \n\n\n", ".\u2013", "\u2013and", " \n\n\n\n\n", "\u2013", "**\u2013", " **\u2013", "."], [" **\u3010", " **\u300c", " \n\n\n\n\n", " \n\n\n", " **>>", "enticate", " **:", " *__"], [" \n\n\n", " \n\n\n\n\n", " \n\n\n\n", "\t\n\n\n", "  \n\n\n", " \t ", " \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\n\n", " \n\n\n\n\n", " \n    \n", "  \n\n\n", "\t\n\n\n", " \n\n\n\n", " \n        \n", "\u00a0"], [" \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", " \n    \n", " \n\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", "\u00a0", " \n \n", " \n            \n", " \u0442\u0440\u0451", "  \n  \n"], [" \n\n\n", "\u00a0", " \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", "\u5176\u5b83\u5a92\u4f53", "\t\n\n\n"], ["ewire", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " **+", " **>>", "\u5176\u5b83\u5a92\u4f53", "/logging", " \n    \n", " **\u300c"], ["ewire", "/logging", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "-esque", "\u5176\u5b83\u5a92\u4f53", "\u52a0\u62ff\u5927", " \u0442\u0440\u0451", "|RF"], ["/logging", " showcasing", " \n\n\n", "\u6e21\u5047", "ewire", "\u5230\u4e00\u8d77", "-esque", "\u5176\u5b83\u5a92\u4f53"], ["-esque", " showcasing", "/logging", " entirety", "\u6e21\u5047", "\u62e5\u6709\u7740", "\u81ea\u4e2a", "\u8fd8\u6709\u7740"], ["-esque", " showcasing", "\u00a0", " entirety", "/logging", " massively", "\u2013and", " multiple"], ["\u00a0", "-esque", " \n\n\n", "\u2013and", "/logging", "\u6d77\u91cf\u7684", " showcasing", ".onStart"], ["-esque", "\u2013and", " myriad", "\u6d77\u91cf\u7684", "/logging", " \n\n\n", ".onStart", "/import"], ["\u2013and", " myriad", " \n\n\n", "\u6d77\u91cf\u7684", ".onStart", "/import", "-esque", " \n  \n"], [" \n\n\n", " \n\n", "  \n\n\n", "  \n\n", "  \n  \n", " \n  \n", "   \n\n", " \n\n\n\n\n"], ["ewire", "/export", "\u8fdb\u51fa\u53e3\u4fe1\u7528", " *&", " **\u2022", "\u6cb3\u9547", ".onStart", " DERP"], [" ``", " *&", "ewire", " \n\n\n", "\u8fdb\u51fa\u53e3\u4fe1\u7528", " \n  \n", "/import", " //--"], [" ``", " --", " \n\n\n", " \n  \n", " myriad", " ''", " &#", " heavily"], [" \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\t\n", " \r\n \r\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", " \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", " \u2026", " \n\n\n"], [" \n  \n", " \n", " *", " \n    \n", " *\"", " \\\"", " \"", " various"], [" \n  \n", " \n    \n", " *\"", " \r\n \r\n", " **", " *", " myriad", "  \n  \n"], [" \n  \n", " *", " *\"", " \n    \n", " myriad", " **", " \r\n \r\n", " \n"], [" *", " ...", " *\"", " \u2026", " \"", " *[", " .*", " myriad"], [" *", " Python", " *\"", " \"", " *[", " \"*", " python", " .*"], [" Python", " \"", " python", " *", " ...", " *\"", " libraries", "\u2011"], [" Python", " libraries", " library", " imports", " import", " \"", " python", " ..."], [" Python", " imports", " libraries", " import", " library", " imported", " modules", " python"], [" libraries", " imports", " Python", " import", " modules", " library", " imported", "import"], [" modules", " imports", " Python", " libraries", " import", " imported", " importing", " software"], [" modules", " imports", " Python", " libraries", " imported", " import", " importing", " software"], [" modules", " imports", " imported", " Python", " import", " libraries", " Imports", " importing"], [" modules", " imports", " imported", " Python", " libraries", " import", " proprietary", " Imports"], [" modules", " imports", " imported", " Python", " libraries", " proprietary", " import", " Imports"], [" modules", " imported", " imports", " libraries", " Python", " proprietary", " import", "/import"], [" modules", " imports", " imported", " Python", "/import", " libraries", " *\"", " proprietary"], [" modules", ".*)", " imports", " Python", " libraries", " imported", ".\\\"", "/import"], [" modules", " imports", ".*)", " libraries", " imported", " plugins", " packages", " APIs"], [" modules", ".*)", " APIs", " plugins", " libraries", " imports", "modules", " packages"], [" modules", " libraries", " plugins", " imports", "modules", " libs", " packages", " APIs"], [" modules", " libraries", "modules", " plugins", " imports", " packages", " Python", " libs"], [" modules", " libraries", " plugins", " libs", " packages", "modules", "libraries", " APIs"], [" modules", " libraries", " plugins", "modules", " packages", " libs", " module", "libraries"], [" modules", " libraries", "modules", " libs", " plugins", " packages", " Python", " module"], [" modules", " libraries", " Python", " python", ".py", " libs", "modules", "Python"], [" modules", " libraries", " Python", " libs", " packages", "modules", " library", "libraries"], [" modules", " libraries", "modules", " module", " Modules", " Python", " libs", "Modules"], [" modules", " `.", " libraries", " module", "modules", " `", " `_", " compiled"], [" modules", " `.", " `", " compiled", " `_", " libraries", "modules", " Python"], [" `.", " modules", " `", " `_", "modules", " compiled", " libraries", " native"], [" modules", " `.", " a", " `", " libraries", " C", "modules", " packages"]], "p": [[0.1967, 0.0873, 0.0412, 0.0266, 0.0195, 0.0172, 0.0172, 0.0172], [0.386, 0.0359, 0.028, 0.0159, 0.0159, 0.0159, 0.0124, 0.0109], [0.0738, 0.0477, 0.0448, 0.0328, 0.0289, 0.024, 0.0165, 0.0165], [0.0128, 0.0128, 0.0128, 0.01, 0.0094, 0.0078, 0.0053, 0.0053], [0.8505, 0.1016, 0.0177, 0.0114, 0.0035, 0.0007, 0.0007, 0.0003], [0.8667, 0.059, 0.0124, 0.0035, 0.0028, 0.0017, 0.0015, 0.0009], [0.9318, 0.0182, 0.0076, 0.0071, 0.0067, 0.0028, 0.0013, 0.0011], [0.7955, 0.0328, 0.029, 0.0113, 0.01, 0.005, 0.0039, 0.0035], [0.8495, 0.0578, 0.0176, 0.01, 0.0057, 0.0051, 0.0025, 0.0022], [0.0222, 0.0105, 0.0098, 0.0087, 0.0047, 0.0044, 0.0041, 0.0041], [0.6243, 0.2027, 0.0352, 0.0147, 0.0114, 0.0095, 0.0089, 0.0074], [0.2634, 0.0666, 0.014, 0.0109, 0.0096, 0.008, 0.0066, 0.0058], [0.0175, 0.0069, 0.0047, 0.0044, 0.0044, 0.0042, 0.0042, 0.0037], [0.0091, 0.0071, 0.0025, 0.0023, 0.002, 0.0019, 0.0018, 0.0018], [0.0089, 0.0054, 0.0054, 0.0024, 0.002, 0.002, 0.0018, 0.0016], [0.0117, 0.0091, 0.0062, 0.0052, 0.0043, 0.004, 0.0036, 0.0033], [0.0263, 0.0218, 0.0192, 0.0097, 0.0055, 0.0055, 0.0049, 0.0043], [0.0203, 0.0116, 0.0102, 0.0085, 0.0058, 0.0048, 0.0035, 0.0033], [0.0177, 0.0114, 0.0089, 0.0074, 0.0057, 0.0051, 0.0045, 0.0033], [0.0194, 0.0063, 0.0056, 0.0046, 0.0038, 0.003, 0.003, 0.0025], [0.5281, 0.1943, 0.028, 0.0218, 0.0181, 0.0132, 0.0124, 0.0091], [0.0067, 0.003, 0.0026, 0.0023, 0.002, 0.0019, 0.0019, 0.0019], [0.0139, 0.0048, 0.0045, 0.0023, 0.0023, 0.0021, 0.002, 0.0018], [0.0432, 0.0246, 0.0217, 0.0132, 0.0096, 0.0055, 0.0043, 0.0029], [0.3382, 0.0755, 0.0552, 0.0131, 0.0109, 0.0102, 0.0102, 0.0096], [0.2634, 0.1501, 0.0803, 0.0296, 0.0216, 0.0179, 0.009, 0.008], [0.4973, 0.1615, 0.0864, 0.0463, 0.0193, 0.017, 0.0103, 0.0059], [0.7363, 0.145, 0.0415, 0.0153, 0.006, 0.0053, 0.0053, 0.0039], [0.3522, 0.2743, 0.1664, 0.0612, 0.0289, 0.0121, 0.0121, 0.0088], [0.3409, 0.2655, 0.2067, 0.0523, 0.0247, 0.0192, 0.0192, 0.0103], [0.496, 0.1825, 0.0977, 0.0592, 0.0592, 0.0407, 0.0132, 0.0091], [0.3937, 0.2388, 0.2107, 0.0222, 0.0209, 0.0184, 0.0099, 0.0082], [0.2603, 0.1579, 0.0546, 0.0189, 0.0177, 0.0166, 0.0166, 0.013], [0.2353, 0.0674, 0.0339, 0.0219, 0.0193, 0.0181, 0.016, 0.015], [0.0901, 0.0701, 0.0482, 0.0425, 0.0258, 0.0167, 0.0156, 0.0138], [0.1689, 0.0704, 0.0704, 0.0377, 0.0312, 0.0276, 0.0178, 0.0122], [0.1774, 0.1219, 0.1011, 0.0508, 0.0256, 0.0187, 0.0187, 0.0083], [0.2235, 0.0303, 0.0267, 0.0267, 0.0152, 0.0143, 0.0134, 0.0118], [0.2094, 0.1053, 0.0412, 0.0221, 0.0221, 0.0207, 0.0195, 0.0142], [0.1879, 0.1213, 0.0888, 0.0649, 0.0307, 0.0307, 0.0254, 0.0198], [0.2096, 0.1353, 0.1194, 0.0468, 0.0468, 0.0342, 0.0321, 0.0221], [0.234, 0.1823, 0.1106, 0.0714, 0.0522, 0.0491, 0.0298, 0.0218], [0.241, 0.1656, 0.0886, 0.0833, 0.0782, 0.0419, 0.0239, 0.0186], [0.2371, 0.2092, 0.1192, 0.0599, 0.0387, 0.0342, 0.0183, 0.0183], [0.2159, 0.179, 0.0958, 0.0845, 0.0546, 0.0292, 0.0189, 0.0138], [0.1933, 0.1706, 0.1603, 0.059, 0.0431, 0.0358, 0.0217, 0.0132], [0.1674, 0.1303, 0.1224, 0.0397, 0.0373, 0.0241, 0.0166, 0.0156], [0.0955, 0.0791, 0.0656, 0.0291, 0.0227, 0.02, 0.0177, 0.0138], [0.0846, 0.0619, 0.0482, 0.0353, 0.0311, 0.0201, 0.0177, 0.0147], [0.1041, 0.0672, 0.0492, 0.0338, 0.0298, 0.0263, 0.0205, 0.0181], [0.1416, 0.0973, 0.0521, 0.0521, 0.0358, 0.0297, 0.0297, 0.0149], [0.4294, 0.1394, 0.0581, 0.0453, 0.0453, 0.0275, 0.0189, 0.0156], [0.6826, 0.1344, 0.0234, 0.0182, 0.0161, 0.0161, 0.0125, 0.0086], [0.5669, 0.2363, 0.032, 0.022, 0.022, 0.0171, 0.0071, 0.0067], [0.7517, 0.1677, 0.0156, 0.0138, 0.0138, 0.0074, 0.0035, 0.0024], [0.7299, 0.2091, 0.0092, 0.0081, 0.0072, 0.0049, 0.0038, 0.003], [0.5484, 0.2286, 0.1387, 0.0166, 0.0089, 0.0078, 0.0061, 0.0047], [0.4873, 0.4301, 0.0189, 0.013, 0.0115, 0.0054, 0.0048, 0.0037], [0.9198, 0.0588, 0.008, 0.0033, 0.0018, 0.0018, 0.0014, 0.0006], [0.9201, 0.0278, 0.0245, 0.0055, 0.0055, 0.0048, 0.0018, 0.0014], [0.715, 0.1595, 0.0587, 0.0131, 0.0131, 0.0116, 0.0062, 0.0043], [0.4642, 0.4642, 0.0381, 0.0058, 0.0052, 0.0035, 0.0035, 0.0015], [0.5755, 0.3955, 0.0064, 0.0039, 0.0039, 0.0024, 0.0021, 0.0018]], "ranks": {"Python": [10030, 146694, 11472, 120656, 14955, 71071, 7322, 38786, 41732, 44618, 13878, 46666, 60023, 64955, 34120, 69442, 26036, 8028, 9485, 20424, 3536, 9781, 5357, 2961, 1978, 534, 239, 378, 167, 222, 209, 103, 157, 167, 94, 38, 2, 1, 1, 1, 3, 3, 3, 4, 4, 4, 5, 4, 4, 12, 15, 20, 7, 10, 12, 7, 3, 3, 5, 11, 8, 28, 32]}}, {"pos": 537, "top": [[".", ",", "\u2013", ";", " \u2013", "\u2026.", "\u00a0\u00a0", ",."], [".", " \u200b\u200b", "\u2013", " \u2013", ",", ",.", ":.", ".\u2013"], [".", "\u2013", ",", "\u2026.", "\u2026..", "\u2026", " \u2013", ".\u2013"], [" milfs", " Shemale", " Guta", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Blowjob", " cumshot", " pornstar", " Geile"], [".@", "@d", "@a", "@c", "\u7fe1", " @_", " \u200b\u200b", " (@"], [" \u200b\u200b", "\u7fe1", ".ac", ".cast", "sver", "\u2026.", " Guta", "!."], ["s", "sip", "scht", " \u200b\u200b", "siz", "sor", "sburg", "!."], ["sburg", " \u062c\u062f\u064b\u0627", "s", "!.", "sprozess", "-ish", "sula", "\u4e8b\u534a\u529f\u500d"], [".", "!.", ":.", " \u200b\u200b", ",.", "!,", ",", ";."], [",", "!,", "?,", "\u5162\u5162\u4e1a\u4e1a", "s", ",.", ".,", "-,"], [",", ".", "s", ",.", "-", "-ish", "\u00c3", ".@"], ["-ish", " guy", "\u663e\u7740", " veggies", " stuff", " flashy", " neighbor", "\u548c\u4fe1\u606f\u5316"], ["-ish", "\u663e\u7740", " neighbor", " veggies", " guy", " backup", " salsa", " dozen"], ["-ish", " guy", " big", " weird", " bigger", " backup", " nice", " massive"], [" \"", " big", " bigger", " stuff", " massive", "-ish", " tech", " savvy"], [" kids", " savvy", " big", " folks", " tech", " guts", " goodies", "-ish"], [" big", " tech", " savvy", " \"", " kids", " folks", ",", " bigger"], ["-ish", " tech", "-tech", " tweaked", " big", "-esque", " savvy", " bigger"], [" tweaked", "-esque", " savvy", " big", " flashy", " tech", "-ish", " hefty"], [" big", " stuff", " tweaked", " pricey", " wildly", " `", " hefty", " folks"], [" \"", " \ufffd", " just", " --", " wildly", " `", " @", " myriad"], [" ``", " ''", " pricey", " tweaked", " bigger", " stuff", " flashy", " buzz"], [" ``", " ''", " `", " stuff", " big", " --", " bigger", " pricey"], [" ``", " ''", " `", " --", " '", " ,", " \"", " much"], [" ``", " ''", " --", " `", " &#", " seemingly", " '", " heavily"], [" ``", " ''", " tech", " software", " `", " Chinese", " novel", " '"], [" ``", " ___", " _", " __", " ''", " ____", " software", " tech"], [" \n\n", " _", "\n\n", " ''", " @", " ``", " ,", " __"], [" tech", " ...", " software", " ''", " \n\n", " ``", " __", " @"], [" ...", " ____", " __", " ___", " ...\\", " ______", " _____", "..."], [" ...", " ...\\", " ____", "...", " __", " ___", " \n", " ...\""], [" ...", " .", " ", " @", "...", " ,", " \u2026", " \""], [" .", " \"", " ...", " '", " @", " ?", " &", " ,"], [" ...", " tech", " hardware", " software", " technology", " \u2026", " ...\"", " modular"], [" ...", " ...\"", " tech", " [...]", " \u2026", " ...\\", " hardware", "...*"], [" ...", " \u2026", " [...]", " ...\"", " tech", " \"", " [", " hardware"], [" Python", " hardware", " tech", " software", " \"", " factory", " python", " modular"], [" Python", " ...", " hardware", " software", " tech", " \"", " ...\"", " python"], [" Python", " ...", " hardware", " software", " ...\"", " [...]", " modular", " library"], [" Python", " hardware", "Python", " software", " Chinese", " native", " module", " python"], [" Chinese", " hardware", " Python", " native", " software", " foreign", "Python", " module"], [" hardware", " software", " module", " Unix", " Python", " native", " DLL", " Linux"], [" hardware", " software", " DLL", " module", " proprietary", " compiled", " native", " Python"], [" hardware", " compiled", " software", " DLL", " proprietary", " native", " module", " manufactured"], [" hardware", " compiled", " proprietary", " DLL", " software", " manufactured", " native", " embedded"], [" proprietary", " hardware", " DLL", " compiled", " manufactured", " native", " imported", " embedded"], [" DLL", " hardware", " proprietary", " compiled", " software", " native", " packaged", " imported"], [" DLL", " proprietary", " hardware", " manufactured", " native", " imported", " packaged", " compiled"], [" DLL", " proprietary", " hardware", " manufactured", " compiled", ".*)", " imported", " packaged"], [" DLL", " hardware", " proprietary", ".*)", ".dll", " firmware", "hardware", " \"*."], [" DLL", ".*)", " hardware", ".dll", " proprietary", " plugin", " firmware", " prefab"], [" module", " DLL", " plugin", " modules", " library", ".dll", " plugins", " imported"], [" Python", " module", " modules", " library", " DLL", " `.", " compiled", " libraries"], [" libs", " library", " module", " Python", " DLL", " plugin", " libraries", " modules"], [" DLL", " module", " plugin", " library", " compiled", ".dll", " modules", "compiled"], [" Python", " module", " DLL", " library", " compiled", " plugin", " python", ".dll"], [" Python", ".py", " python", "Python", " module", "-python", "/py", " py"], [" compiled", "compiled", "Compiled", " library", " module", " Python", " Compiled", " `."], [" compiled", " module", " library", "compiled", " `.", "Compiled", " Python", " binary"], [" `.", " compiled", " `_", " module", "compiled", "Compiled", " `", " library"], [" `.", " compiled", " `_", " module", " `", "compiled", "Compiled", " binary"], [" `.", " compiled", " module", " `_", " `", " native", " binary", "`."], [" `.", "`.", " module", " compiled", " `_", " `", " native", " binary"]], "p": [[0.886, 0.1058, 0.0036, 0.001, 0.0008, 0.0005, 0.0004, 0.0004], [0.4202, 0.1364, 0.0605, 0.0173, 0.0163, 0.0099, 0.0099, 0.0087], [0.8116, 0.0755, 0.0666, 0.0168, 0.009, 0.0048, 0.0043, 0.0026], [0.0103, 0.0091, 0.0063, 0.0059, 0.0055, 0.0041, 0.0041, 0.0025], [0.0491, 0.011, 0.0062, 0.0052, 0.0052, 0.0052, 0.0046, 0.0038], [0.0347, 0.0068, 0.0037, 0.003, 0.0017, 0.0016, 0.0016, 0.0014], [0.4842, 0.0083, 0.0074, 0.0065, 0.0057, 0.0045, 0.0042, 0.0042], [0.0316, 0.018, 0.014, 0.0116, 0.0071, 0.0058, 0.0055, 0.0055], [0.1022, 0.1022, 0.0483, 0.04, 0.0376, 0.0293, 0.0178, 0.0167], [0.1041, 0.0085, 0.004, 0.0031, 0.003, 0.0024, 0.0023, 0.002], [0.5873, 0.1021, 0.0214, 0.0065, 0.0058, 0.0045, 0.0042, 0.0037], [0.0074, 0.0026, 0.0024, 0.002, 0.0015, 0.0015, 0.0015, 0.0015], [0.0063, 0.0026, 0.0021, 0.0021, 0.0019, 0.0018, 0.0013, 0.0013], [0.0118, 0.0043, 0.0038, 0.003, 0.0028, 0.0025, 0.0025, 0.0023], [0.031, 0.0121, 0.0083, 0.0074, 0.0065, 0.0054, 0.0054, 0.0051], [0.0187, 0.0155, 0.0136, 0.0113, 0.0113, 0.0078, 0.0069, 0.0064], [0.0298, 0.0247, 0.0132, 0.0132, 0.0132, 0.0124, 0.0117, 0.0103], [0.0133, 0.0097, 0.0063, 0.0059, 0.0059, 0.0059, 0.0059, 0.0055], [0.0108, 0.0058, 0.0058, 0.0058, 0.0054, 0.0048, 0.0048, 0.0037], [0.0071, 0.0062, 0.0059, 0.0052, 0.0049, 0.0046, 0.004, 0.004], [0.0235, 0.0086, 0.0072, 0.0067, 0.0063, 0.0063, 0.0056, 0.0043], [0.0328, 0.0094, 0.0039, 0.0037, 0.0033, 0.0031, 0.0029, 0.0027], [0.3802, 0.0427, 0.0074, 0.0031, 0.0031, 0.0029, 0.0029, 0.0027], [0.2327, 0.0519, 0.0315, 0.0216, 0.0149, 0.0116, 0.0066, 0.0058], [0.0539, 0.0348, 0.0225, 0.0113, 0.0106, 0.0094, 0.0088, 0.0073], [0.3002, 0.049, 0.0103, 0.008, 0.0052, 0.0043, 0.0043, 0.004], [0.2525, 0.1531, 0.0873, 0.077, 0.06, 0.0342, 0.0152, 0.0134], [0.189, 0.1012, 0.0788, 0.0542, 0.0449, 0.0396, 0.035, 0.0309], [0.0718, 0.0463, 0.0463, 0.0435, 0.0339, 0.0318, 0.0299, 0.0281], [0.7186, 0.1102, 0.0521, 0.0459, 0.0231, 0.0075, 0.0055, 0.0033], [0.943, 0.0087, 0.0064, 0.0053, 0.0049, 0.0039, 0.003, 0.0022], [0.8882, 0.0196, 0.0056, 0.005, 0.0044, 0.0041, 0.0027, 0.0025], [0.1353, 0.1122, 0.0771, 0.053, 0.0413, 0.025, 0.0235, 0.0208], [0.2208, 0.1615, 0.0493, 0.0463, 0.0408, 0.0408, 0.0141, 0.0141], [0.326, 0.0683, 0.0683, 0.0642, 0.0414, 0.0268, 0.0222, 0.0184], [0.1719, 0.1339, 0.0812, 0.0812, 0.036, 0.0264, 0.0219, 0.0219], [0.369, 0.0727, 0.0532, 0.0322, 0.0236, 0.0222, 0.0196, 0.0134], [0.3125, 0.0742, 0.0543, 0.0397, 0.0241, 0.02, 0.0146, 0.0129], [0.2708, 0.0996, 0.0996, 0.039, 0.0344, 0.0285, 0.0144, 0.0144], [0.2537, 0.1058, 0.0414, 0.0343, 0.0343, 0.0267, 0.0173, 0.0134], [0.0842, 0.0743, 0.0578, 0.0423, 0.0373, 0.0241, 0.02, 0.0188], [0.3305, 0.1294, 0.0327, 0.0307, 0.0307, 0.0271, 0.0186, 0.0136], [0.3387, 0.1246, 0.0357, 0.0296, 0.0278, 0.0245, 0.0217, 0.0191], [0.2821, 0.086, 0.0759, 0.0522, 0.046, 0.0246, 0.0232, 0.0204], [0.1778, 0.1013, 0.0577, 0.0509, 0.045, 0.0329, 0.0309, 0.0256], [0.1254, 0.1107, 0.104, 0.0671, 0.0434, 0.0434, 0.0298, 0.0192], [0.2005, 0.1008, 0.089, 0.0371, 0.0165, 0.0155, 0.0155, 0.0155], [0.1295, 0.0785, 0.054, 0.0225, 0.0225, 0.0199, 0.0155, 0.0128], [0.1228, 0.0793, 0.0481, 0.0311, 0.0156, 0.0138, 0.0122, 0.0107], [0.133, 0.0489, 0.0432, 0.0316, 0.0124, 0.0091, 0.0085, 0.0085], [0.1364, 0.073, 0.0286, 0.0163, 0.0153, 0.0144, 0.0119, 0.0119], [0.1332, 0.1176, 0.0629, 0.046, 0.0406, 0.0359, 0.0279, 0.0232], [0.1863, 0.1451, 0.0605, 0.0534, 0.0534, 0.0324, 0.0252, 0.0196], [0.0827, 0.0827, 0.073, 0.073, 0.0644, 0.0391, 0.0345, 0.0324], [0.3098, 0.2129, 0.1464, 0.0538, 0.0475, 0.037, 0.0288, 0.0154], [0.2021, 0.1783, 0.1226, 0.1226, 0.0955, 0.0451, 0.031, 0.0273], [0.7484, 0.0614, 0.0542, 0.0199, 0.0176, 0.0137, 0.0094, 0.0094], [0.8993, 0.0651, 0.0128, 0.0047, 0.0042, 0.0032, 0.0025, 0.0022], [0.7912, 0.0649, 0.0348, 0.0348, 0.0239, 0.0113, 0.0113, 0.0068], [0.9966, 0.0028, 0.0003, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9801, 0.018, 0.0007, 0.0004, 0.0002, 0.0002, 0.0001, 0.0001], [0.9931, 0.0046, 0.0008, 0.0004, 0.0003, 0.0002, 0.0001, 0.0], [0.9987, 0.0004, 0.0004, 0.0003, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Python": [43990, 126279, 71953, 130765, 10412, 73020, 20440, 61315, 46662, 58337, 8696, 12913, 8241, 4605, 3418, 6575, 8751, 2218, 2749, 2708, 530, 188, 191, 698, 299, 20, 28, 51, 14, 40, 62, 285, 326, 38, 67, 27, 1, 1, 1, 1, 3, 4, 8, 11, 10, 14, 17, 20, 21, 42, 70, 17, 1, 3, 10, 1, 1, 6, 6, 10, 9, 24, 46]}}, {"pos": 538, "top": [["s", "  \n\n", "\u0627\u062a", "schild", "sburg", "sene", "sor", "sik"], ["s", "sii", "schild", "sburg", "sik", "  \n\n", "\u0627\u062a", "sula"], ["s", "\u0627\u062a", "sii", "schild", "sula", "s\u00f6k", "schrift", "sik"], ["satz", "sula", "sii", "schrift", "s\u00f6k", "sache", "schriften", "\u52a0\u62ff\u5927"], ["s", " \n\n\n\n", "sii", "sula", "s\u00f6k", "satz", "\u0627\u062a", "sik"], ["s", " \n\n\n\n", "sii", "sula", "s\u00f6k", "siz", "satz", "\u0627\u062a"], ["s", "\u0627\u062a", "sii", "s\u00f6k", " \n\n\n\n", "\n\n\n\n", "satz", "sene"], ["s", "schild", "sburg", "\u0627\u062a", "sene", "s\u00f6k", "sula", "satz"], ["s", "schild", " \n\n\n\n", "  \n\n", "s\u00f6k", "sene", "\u0627\u062a", " `."], ["s", "s\u00f6k", "schild", "sii", "sula", "\u0627\u062a", "sene", "schriften"], ["s", "\u0627\u062a", " `.", " \n\n\n\n", "s\u00f6k", "sii", "sene", "ska"], ["s", "s\u00f6k", "sii", "satz", "sula", "schriften", "sene", "sache"], ["s", "sii", "s\u00f6k", "sula", "satz", "schriften", "sene", "siz"], ["s", "sii", "siz", "s\u00f6k", "\u4e24\u5b66\u4e00\u505a", "\u76f8\u8f85\u76f8\u6210", "\u0627\u062a", "schriften"], ["s", "\u0627\u062a", "siz", " `.", "ska", " sorta", "sii", "sene"], ["s", "\u0627\u062a", "siz", "\u4e24\u5b66\u4e00\u505a", "sii", "sene", "\u4e8b\u513f", "s\u00f6k"], ["s", "\u0627\u062a", " `.", "siz", "ska", "\u4e0d\u53ef\u601d\u8bae", "\u4e8b\u513f", " sorta"], ["s", " `.", "\u0627\u062a", "siz", "ska", "\u4e24\u5b66\u4e00\u505a", "s\u00f6k", "\u4e8b\u513f"], ["s", "\u0627\u062a", "siz", "sii", "s\u00f6k", "sene", "satz", " `."], ["s", " `.", "\u0627\u062a", "siz", "sii", " [`", "s\u00f6k", "sik"], ["s", " \n\n", "  \n\n", "\n\n", " `.", "\n\n\n\n", "<|endoftext|>", "\u0627\u062a"], ["s", " `.", "satz", "sene", "s\u00f6k", "schrift", "sula", "sache"], ["s", " `.", " ``", " `'", "satz", " `%", "sii", "sene"], ["s", " `.", " ``", " `'", " `_", " `\"", " `%", " `\\"], [" \n\n", "s", "\n\n", "\r\n\r\n", "  \n\n", " \n\n\n\n", "\n\n\n\n", " `."], [" `.", " `_", " ___", " ``", " `'", "satz", "\r\n\r\n", "s"], [" `_", " `.", " ___", " ``", " _.", " @_", " *__", " `%"], [" \n\n", "\n\n", " ___", "\r\n\r\n", "  \n\n", " `_", " `.", " _____"], [" \n\n", " ___", " _.", "  \n\n", " _____", " `.", " @_", "\r\n\r\n"], [" ___", " \n\n", " _____", "  \n\n", " _.", " ____", " `.", "s"], [" \n\n", " `.", " ___", "s", "  \n\n", " _.", " _____", " @_"], [" \n\n", "s", "  \n\n", " `.", " [`", " [.", " ...", " \u00e2"], [" `.", " *.", " \u2026.", "s", " ...\"", " [.", " -.", " ...\\"], [" `.", "!\u201d.", " *.", "`.", "?\u201d.", " [`", "paque", "s"], ["!\u201d.", " `.", " [`", " \u2026.", "?\u201d.", " *.", " [.", "...)."], [" *.", "!\u201d.", " \u2026.", " [.", " \"*.", " `.", "\u2014.", " [`"], [" `.", " Python", " *.", " \"*.", " [.", "-python", "Python", " python"], [" Python", "-python", " python", "Python", " `.", " *.", " \"*.", " [."], ["Python", " Python", " \"*.", "-python", " [.", " python", " (*.", " *."], ["Python", " Python", " python", "python", "-python", "Chinese", "_python", " Chinese"], ["Python", " Python", "Chinese", "python", "-python", " python", " DLL", "\u6cd5\u56fd"], ["Python", " Python", " python", "-python", " DLL", "python", " Unix", "module"], [" DLL", " MODULE", " Python", " (*.", "Python", ".dll", " module", "-python"], [" DLL", " Python", " MODULE", "compiled", ".dll", " (*.", "Python", " module"], [" DLL", " Python", "compiled", ".dll", " python", " module", "-python", " firmware"], [" DLL", ".dll", " Python", " module", "/Linux", "/*.", "-python", "compiled"], [" DLL", ".dll", "/Linux", "/*.", "/module", "/.", " module", " dll"], ["/Linux", " DLL", ".dll", "/*.", "/module", "/.", " (*.", "/\\"], ["/Linux", ".dll", " DLL", "/.", "/module", "/*.", "/python", "/\\"], ["/Linux", ".dll", "/.", "/module", "/python", "-python", "/\\", " DLL"], [".dll", "/*.", "/.", "/module", "/Linux", "-python", "/python", " DLL"], [".dll", "/module", "module", "-python", "\u6a21\u5757", "(module", "-module", " DLL"], [".py", "/module", "/py", "-python", "/python", "module", "Python", " Python"], [".py", "/py", "module", "-python", " libs", " Python", "Python", "/python"], [".dll", " DLL", "dll", "DLL", " dll", "module", ".dylib", ".py"], [".dll", "dll", ".py", " DLL", " python", " dll", "/py", " Python"], ["/py", ".py", " py", "py", " Python", " python", "Python", " PY"], [".so", "/py", ".py", " py", " so", "py", "so", " PY"], [".so", " so", "so", "/py", " py", ".py", "py", " PY"], [".so", " so", "so", " py", "_so", "/py", ".py", "py"], [".so", "so", " so", " py", "py", "/py", ".py", "pyx"], ["py", ".so", " py", "so", "pyx", "/py", "SO", " SO"], ["so", "py", "cpy", "dll", ".so", "pyx", "cpp", " py"]], "p": [[0.9994, 0.0003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9536, 0.0083, 0.0032, 0.0027, 0.0027, 0.0027, 0.0027, 0.0025], [0.9983, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001, 0.0], [0.1384, 0.0542, 0.0509, 0.0449, 0.0256, 0.024, 0.0199, 0.0137], [0.5013, 0.1268, 0.0599, 0.0283, 0.0266, 0.0266, 0.0172, 0.0142], [0.376, 0.0893, 0.074, 0.0614, 0.0329, 0.024, 0.0212, 0.0176], [0.9875, 0.0016, 0.0016, 0.0012, 0.0011, 0.0006, 0.0005, 0.0004], [0.9862, 0.0019, 0.001, 0.0009, 0.0008, 0.0008, 0.0007, 0.0007], [0.9843, 0.0028, 0.0028, 0.001, 0.0007, 0.0005, 0.0005, 0.0005], [0.9829, 0.0028, 0.0018, 0.0012, 0.0006, 0.0005, 0.0005, 0.0005], [0.9973, 0.0003, 0.0002, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001], [0.8884, 0.0087, 0.0077, 0.0072, 0.0068, 0.0053, 0.0047, 0.0036], [0.9514, 0.0039, 0.0028, 0.0021, 0.002, 0.0017, 0.0016, 0.0014], [0.9037, 0.0039, 0.0035, 0.0029, 0.002, 0.002, 0.0017, 0.0015], [0.9924, 0.0003, 0.0003, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001], [0.9733, 0.0007, 0.0006, 0.0005, 0.0005, 0.0004, 0.0004, 0.0003], [0.9978, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9661, 0.002, 0.0011, 0.0009, 0.0005, 0.0005, 0.0004, 0.0004], [0.9806, 0.0017, 0.0008, 0.0008, 0.0007, 0.0007, 0.0007, 0.0004], [0.9865, 0.0012, 0.0008, 0.0004, 0.0003, 0.0003, 0.0002, 0.0002], [0.9895, 0.0026, 0.0012, 0.0007, 0.0005, 0.0003, 0.0002, 0.0002], [0.0869, 0.0437, 0.0206, 0.0125, 0.011, 0.011, 0.0104, 0.0086], [0.3024, 0.0634, 0.0193, 0.0125, 0.0097, 0.0091, 0.0086, 0.0081], [0.3826, 0.0802, 0.0625, 0.019, 0.0123, 0.0116, 0.0096, 0.0066], [0.2702, 0.1127, 0.0877, 0.0824, 0.0344, 0.0323, 0.0303, 0.0222], [0.0841, 0.0791, 0.0188, 0.0188, 0.0156, 0.0137, 0.0129, 0.0121], [0.1856, 0.0603, 0.0323, 0.0323, 0.0184, 0.0184, 0.0162, 0.0152], [0.4458, 0.3064, 0.047, 0.0441, 0.0251, 0.0208, 0.0135, 0.0077], [0.2033, 0.1583, 0.0547, 0.0514, 0.0454, 0.0426, 0.0312, 0.0293], [0.3594, 0.2048, 0.1242, 0.0429, 0.0334, 0.0314, 0.0216, 0.0139], [0.286, 0.1847, 0.0929, 0.0467, 0.0467, 0.0412, 0.0387, 0.0092], [0.4252, 0.0837, 0.0787, 0.0613, 0.0145, 0.0083, 0.0078, 0.0069], [0.2516, 0.0767, 0.0677, 0.0495, 0.0265, 0.0182, 0.0171, 0.0161], [0.2749, 0.0256, 0.0226, 0.0176, 0.0155, 0.0137, 0.0121, 0.0088], [0.1119, 0.0438, 0.0321, 0.0283, 0.0266, 0.025, 0.0235, 0.0235], [0.0825, 0.0344, 0.0285, 0.0268, 0.0252, 0.0222, 0.0143, 0.0143], [0.0839, 0.0741, 0.0614, 0.0478, 0.0397, 0.0329, 0.0309, 0.0241], [0.1075, 0.0477, 0.0349, 0.0349, 0.0255, 0.0199, 0.0175, 0.0155], [0.0517, 0.0379, 0.0314, 0.0244, 0.0158, 0.0148, 0.0139, 0.0108], [0.401, 0.1386, 0.0423, 0.035, 0.0309, 0.0121, 0.0121, 0.0073], [0.3223, 0.041, 0.03, 0.0233, 0.0219, 0.016, 0.0086, 0.0081], [0.2849, 0.0816, 0.0234, 0.0206, 0.0206, 0.0161, 0.0125, 0.0104], [0.1119, 0.0321, 0.0321, 0.0283, 0.025, 0.025, 0.0161, 0.0142], [0.1124, 0.0302, 0.0267, 0.0251, 0.0221, 0.0172, 0.0126, 0.0126], [0.0982, 0.0281, 0.0264, 0.0248, 0.0206, 0.016, 0.0133, 0.0133], [0.119, 0.0562, 0.0234, 0.0207, 0.0182, 0.0171, 0.0151, 0.0151], [0.0862, 0.0556, 0.0407, 0.0247, 0.0232, 0.0141, 0.011, 0.0103], [0.076, 0.0671, 0.0382, 0.028, 0.028, 0.0247, 0.0124, 0.0075], [0.1272, 0.053, 0.0364, 0.0322, 0.0284, 0.0267, 0.0172, 0.0143], [0.0931, 0.044, 0.0388, 0.0365, 0.0267, 0.0251, 0.0143, 0.0134], [0.0819, 0.0638, 0.0599, 0.0529, 0.0207, 0.0161, 0.0142, 0.0076], [0.319, 0.1507, 0.0406, 0.0231, 0.0217, 0.0217, 0.0217, 0.018], [0.1936, 0.1174, 0.1174, 0.0807, 0.0712, 0.0555, 0.0381, 0.0297], [0.5471, 0.0951, 0.035, 0.0272, 0.0176, 0.0165, 0.0165, 0.0146], [0.606, 0.2229, 0.082, 0.0342, 0.0183, 0.0052, 0.0052, 0.0028], [0.5925, 0.1698, 0.0379, 0.0295, 0.0203, 0.0203, 0.0179, 0.0158], [0.323, 0.2851, 0.1526, 0.0721, 0.03, 0.0234, 0.0182, 0.0182], [0.961, 0.0107, 0.0065, 0.0057, 0.0045, 0.0045, 0.0019, 0.0013], [0.983, 0.0046, 0.0035, 0.0028, 0.0015, 0.0013, 0.0012, 0.0004], [0.931, 0.0464, 0.0193, 0.0006, 0.0005, 0.0005, 0.0003, 0.0002], [0.908, 0.0311, 0.0214, 0.0114, 0.0079, 0.0054, 0.0015, 0.0014], [0.1906, 0.179, 0.1394, 0.131, 0.0482, 0.0331, 0.0258, 0.0242], [0.6459, 0.185, 0.0195, 0.0143, 0.0104, 0.0104, 0.0104, 0.0049]], "ranks": {"Python": [24958, 138494, 157407, 145706, 83584, 133998, 70445, 80024, 79644, 99450, 45009, 80957, 96233, 91058, 39139, 36227, 27324, 29342, 58952, 46401, 7124, 25196, 16463, 11151, 6213, 2580, 1447, 775, 445, 305, 301, 455, 492, 455, 468, 244, 2, 1, 1, 1, 1, 1, 2, 2, 2, 3, 19, 51, 53, 37, 26, 15, 7, 6, 13, 5, 5, 14, 22, 22, 11, 25, 15]}}, {"pos": 539, "top": [["i", "o", "e", " \u2013", "?\u201d", "\u201d", "\u2026\u2026", "y"], ["?\u201d", "\u0438\u043b\u0430", "  \r\n", "\uff08", "\u201d?", "eless", "es", "erweise"], ["i", "?\u201d", "\u201d", "?\u201c", "\u2026\u2026", "\u201c", "@", "o"], [" cumshot", " milfs", "eless", "``", "\u662f", " Blowjob", "ierra", " \u0412\u0441\u0442\u0440\u0435"], ["\uff08", "\u201c", "?\u201c", "\u6211", "\u662f", "ihi", "i", "\u0438"], ["rts", "\uff08", "?\u201c", "\u4e00", " **\u201c", "\u6211", "\u201c", "eos"], ["\u201d", "\uff08", "\u201c", "\uff0c", "\u3010", "i", "?\u201d", "\u3002"], ["\u201d", "o", "?\u201d", "${", "\u201c", "\uff0c", "?\u201c", "i"], ["\u201d", "?\u201d", "\u201c", ",\u201d", "?\u201c", "\u201d?", "!\u201d", "\u2019Brien"], ["${", ",", "o", ",\u201d", "?,", "i", "?\u201d", "\u201d"], ["o", "\u3002", ".", "\u201d", "?\u201d", "\uff0c", "${", "?"], ["iens", "kitab", "\u05d9\u05e6", "\u2019Brien", "-esque", "\u6211", "-ish", "\u0e27\u0e30"], ["-esque", "o", "-ish", "evo", "iens", "-CS", "\u0e27\u0e30", "kitab"], ["o", "-esque", "i", "-ish", "(si", "yi", "e", "-"], ["o", "i", "\u2014", "--", "e", "-", "-esque", "u"], ["o", "-esque", "i", "e", "es", "-ish", "u", "evo"], ["o", "e", "i", "-esque", "es", "u", "a", ","], ["o", "-esque", "-ish", " Philly", "evo", "-tech", "-lite", "(si"], ["o", "-esque", " Philly", "-ish", "\u4ec0", "evo", "(si", "e"], ["o", "-ish", "e", "-esque", " Philly", "\uff0c", "\u4ec0", "\\uff"], ["\uff0c", "\n\n", "o", "e", "@", "\uff08", "\u3002", "2"], [" ?", "\uff1f", " Shemale", " ?**", "evo", " \u061f", "ething", "mlink"], [" ``", " ?", " ;", "``", " ,", " .", " Philly", "&apos"], [" ,", " ;", " ?", " .", " ``", " --", " that", " :"], ["\n\n", " ;", " ?", " ,", " .", " ``", " --", "\uff1b"], [" ?", " .", " ;", " ``", "\uff1f", " ,", " :", " \u3002"], ["\n", " ``", " ?", "``", " ;", " ___", " _:", " ."], ["\n\n", " ?", " ``", " --", " ,", " ;", " _", " __"], [" ___", " __", " ____", " ?", " _.", "\uff1f", " ???", " \u3002"], [" ____", " __", " ___", " _.", " _____", " ?", " \u3002", " **"], [" ____", " ___", " .", " __", " _.", " **.", " ???", " ?"], [" .", " /", " or", " ...", "/", " ?", " ???", " .."], [" /", " .", " or", "/", " (", " ,", " ?", " &"], [" /", "/", " or", "/Linux", "/etc", " .", "/.", "/S"], ["/", " /", "/Linux", "/etc", "/OR", "/S", "/.", "\u6216"], ["/", " /", "\uff08", "\u6216", " \uff08", " [", "/Linux", "/."], ["/", " /", "/.", "\u6216", "/Linux", "/etc", "/[", "\uff08"], [" /", "/", "/Linux", "/etc", "/.", "\u6216", "/OR", "/linux"], [" /", "\u6216", "/Linux", "/", "/etc", "/linux", " \uff0f", " Linux"], ["\u6216", " /", "/Linux", "/", "/.", "\uff08", " \uff0f", "/linux"], ["/Linux", " /", "/", "\u6216", " Linux", "/linux", " linux", " Unix"], ["/Linux", " Linux", " Unix", "/linux", " linux", " UNIX", "-linux", " unix"], ["/Linux", " Unix", " Linux", "/linux", " linux", " UNIX", " unix", "/"], ["/Linux", " /", " Unix", "/", " Linux", "/linux", " linux", " UNIX"], ["/Linux", " /", "/", " Linux", " Unix", "/.", "/linux", " linux"], ["/", " /", "/Linux", "/.", " or", "/or", "/S", "/OR"], ["/", " /", "/Linux", "/.", "/or", " or", "/OR", "/A"], ["/", " /", "/or", "/Linux", "/S", "/.", "/A", "/D"], ["/", " /", "/.", "/B", "/or", "/D", "/S", "/M"], ["/", " /", "/.", "/S", "/B", "/D", "/M", "/C"], ["/", "/.", " /", "/S", "/D", "/\\", "/B", "/C"], ["/", " /", "/.", "/\\", "/D", "/-", "/C", "/S"], ["/", "/.", " /", "/D", "/\\", "/-", "/S", "/$"], ["/", "/.", " /", "/\\", "/$", "/D", "/_", "\"/"], ["/.", "/", "/$", "/\\", "/@", " /", "\"/", "/_"], ["/.", "/", "/\\", "/_", "/@", "\"/", " /", "/$"], ["/python", "/py", "/.", "/", "\"/", "/\\", "/_", "/$"], ["/.", "/_", "/py", "/python", "/", "/lib", "`,", " */,"], ["/.", "/", "/python", "/py", "/_", "/lib", "\"/", "`,"], ["/.", " /.", " `.", "\"/", " `/", "`.", "/", "/$"], ["`", "`,", "`.", " `.", "`).", " `/", "`)", "`:"], ["`", "`,", "/.", "`)", " `.", " `/", "`.", "`)."], ["`", "/.", "`)", "`).", "`,", "`.", " /.", " `."]], "p": [[0.5293, 0.1947, 0.0594, 0.0408, 0.0338, 0.0318, 0.0264, 0.0063], [0.0286, 0.0144, 0.0112, 0.0087, 0.0077, 0.0072, 0.0068, 0.0064], [0.26, 0.0956, 0.0618, 0.0311, 0.0311, 0.0292, 0.0257, 0.0213], [0.0153, 0.0093, 0.0093, 0.0056, 0.0047, 0.0047, 0.0041, 0.0034], [0.0473, 0.0346, 0.0325, 0.0154, 0.0144, 0.0112, 0.0112, 0.0106], [0.0151, 0.0134, 0.0125, 0.0071, 0.0067, 0.0067, 0.0049, 0.0041], [0.1855, 0.1197, 0.1057, 0.0682, 0.0303, 0.0284, 0.0284, 0.0221], [0.0668, 0.0405, 0.038, 0.0357, 0.0315, 0.0296, 0.0246, 0.018], [0.3848, 0.133, 0.0521, 0.0316, 0.0279, 0.0279, 0.0217, 0.018], [0.034, 0.0319, 0.0182, 0.0151, 0.0117, 0.011, 0.0104, 0.0091], [0.0964, 0.0485, 0.0402, 0.0402, 0.0276, 0.0244, 0.0215, 0.0202], [0.0029, 0.0025, 0.0024, 0.002, 0.0019, 0.0018, 0.0018, 0.0017], [0.0087, 0.0068, 0.0056, 0.005, 0.0041, 0.0036, 0.0028, 0.0024], [0.0621, 0.0293, 0.0101, 0.0101, 0.0074, 0.007, 0.0048, 0.004], [0.4497, 0.0943, 0.0224, 0.0174, 0.0164, 0.0154, 0.0047, 0.0041], [0.3152, 0.0703, 0.0293, 0.0275, 0.0084, 0.0084, 0.0051, 0.004], [0.7792, 0.0564, 0.0388, 0.0098, 0.0044, 0.0044, 0.0038, 0.0034], [0.1083, 0.0452, 0.0188, 0.0122, 0.0069, 0.0065, 0.0048, 0.0048], [0.0209, 0.0185, 0.0119, 0.0099, 0.006, 0.005, 0.0032, 0.0031], [0.0277, 0.0139, 0.0115, 0.0084, 0.0084, 0.0084, 0.0048, 0.004], [0.1525, 0.0721, 0.0636, 0.0495, 0.0161, 0.0151, 0.0133, 0.011], [0.015, 0.0032, 0.0028, 0.0028, 0.0028, 0.0023, 0.002, 0.0018], [0.2567, 0.0649, 0.0175, 0.0128, 0.0073, 0.0053, 0.0021, 0.002], [0.1942, 0.1714, 0.104, 0.0523, 0.0298, 0.0091, 0.0071, 0.0062], [0.1503, 0.11, 0.0805, 0.0667, 0.0261, 0.0203, 0.0203, 0.014], [0.1496, 0.0429, 0.0378, 0.0334, 0.026, 0.0096, 0.0066, 0.0051], [0.0934, 0.05, 0.0366, 0.0162, 0.0112, 0.0077, 0.0068, 0.0068], [0.1317, 0.1092, 0.1092, 0.0662, 0.0485, 0.0455, 0.0354, 0.0202], [0.0413, 0.0388, 0.0388, 0.0284, 0.0118, 0.0111, 0.0087, 0.0072], [0.116, 0.0904, 0.0849, 0.0157, 0.0122, 0.0089, 0.0061, 0.0061], [0.0465, 0.041, 0.041, 0.034, 0.0265, 0.0234, 0.022, 0.0194], [0.2202, 0.2069, 0.0761, 0.0491, 0.0338, 0.0132, 0.008, 0.0066], [0.4772, 0.2554, 0.1549, 0.0444, 0.0082, 0.0036, 0.0028, 0.0022], [0.313, 0.1783, 0.0616, 0.0114, 0.0078, 0.0069, 0.0065, 0.0061], [0.3927, 0.0773, 0.0251, 0.0208, 0.0173, 0.0134, 0.0119, 0.0081], [0.2967, 0.2039, 0.0549, 0.0333, 0.0167, 0.0157, 0.0122, 0.009], [0.3208, 0.1717, 0.028, 0.0232, 0.0232, 0.015, 0.0117, 0.0097], [0.2112, 0.1281, 0.0345, 0.0304, 0.0153, 0.0105, 0.0087, 0.0082], [0.1848, 0.0724, 0.0497, 0.0497, 0.0161, 0.0161, 0.0152, 0.0098], [0.0969, 0.091, 0.043, 0.0245, 0.0168, 0.0116, 0.0116, 0.0109], [0.1156, 0.0546, 0.0513, 0.0399, 0.0311, 0.0214, 0.0189, 0.0166], [0.3386, 0.1702, 0.117, 0.0519, 0.043, 0.0203, 0.0191, 0.0158], [0.438, 0.0977, 0.0761, 0.028, 0.028, 0.0247, 0.0181, 0.016], [0.2666, 0.0718, 0.0493, 0.0409, 0.0361, 0.0193, 0.016, 0.0117], [0.2867, 0.1441, 0.0874, 0.0235, 0.0195, 0.0183, 0.0126, 0.0126], [0.5045, 0.3929, 0.0322, 0.0105, 0.0092, 0.0032, 0.0022, 0.0021], [0.7215, 0.2067, 0.015, 0.0062, 0.0062, 0.0049, 0.0023, 0.0018], [0.9051, 0.0842, 0.0012, 0.0005, 0.0005, 0.0005, 0.0005, 0.0004], [0.9378, 0.0529, 0.0014, 0.0006, 0.0005, 0.0005, 0.0005, 0.0005], [0.959, 0.0176, 0.0024, 0.0019, 0.0016, 0.0016, 0.0016, 0.0013], [0.8817, 0.0439, 0.0342, 0.0076, 0.0022, 0.0019, 0.0019, 0.0017], [0.7486, 0.1893, 0.029, 0.0031, 0.0031, 0.0016, 0.0013, 0.001], [0.9047, 0.0655, 0.0047, 0.0022, 0.002, 0.0015, 0.0009, 0.0008], [0.8429, 0.0888, 0.0288, 0.0073, 0.0027, 0.0021, 0.0018, 0.0016], [0.4281, 0.2291, 0.0451, 0.0398, 0.0398, 0.0242, 0.0129, 0.0114], [0.2957, 0.1583, 0.096, 0.066, 0.0514, 0.0514, 0.0312, 0.0275], [0.2848, 0.2218, 0.0816, 0.0561, 0.0495, 0.03, 0.03, 0.0161], [0.377, 0.0953, 0.0742, 0.0742, 0.0655, 0.0351, 0.0309, 0.0241], [0.4159, 0.0928, 0.0928, 0.0819, 0.0638, 0.0497, 0.0387, 0.0183], [0.9738, 0.0074, 0.0058, 0.0017, 0.0011, 0.001, 0.001, 0.0007], [0.4723, 0.2865, 0.1969, 0.0266, 0.0076, 0.0041, 0.0032, 0.0006], [0.7855, 0.1753, 0.0185, 0.0068, 0.0053, 0.0041, 0.0019, 0.0007], [0.9453, 0.0471, 0.0039, 0.0021, 0.0011, 0.0004, 0.0001, 0.0]], "ranks": {"Python": [82545, 243529, 212938, 233854, 221167, 228901, 145134, 119264, 120278, 147325, 77123, 194269, 175197, 132084, 127864, 72626, 68985, 72717, 120826, 136416, 19784, 52288, 24219, 13733, 5295, 479, 682, 349, 242, 193, 146, 200, 427, 134, 266, 306, 157, 78, 113, 160, 261, 136, 185, 325, 178, 450, 611, 830, 1246, 2020, 2786, 1769, 1267, 951, 620, 177, 14, 41, 36, 42, 112, 275, 391]}}, {"pos": 540, "top": [[".", ",", " \u2013", "  \n", "\u00a0\u00a0", "<|endoftext|>", ";", " "], ["  \n", "  \n\n", "   \n", "  \n  \n", "    \n", "  ", "   \n\n", " \u2013"], ["\u2013", ",", ".", " \u2013", "\u2026", "  \n\n", "  \n", "\u2013and"], ["\uff3f\uff3f", " ``", " Fonse", " Shemale", "odle", " Bbw", "bucks", "\u4ec0\u9ebd"], ["  \n\n", " `", "  \n", "=`", "   \n", " \u00a3", ":`", "ed"], ["  \n", "   \n", "  \n\n", "ed", " \uff09", " \uff08", "  ", "."], [" `", "  \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", "."], [" `", " `_", " **", " *", " `$", " ``", "=`", " `%"], [" `", " `_", " `$", " (`", " pricey", " oddly", "=`", " **"], [" `", " pricey", " (`", " oddly", " akin", "-ish", " albeit", " though"], [" `", " though", ",", " \ufffd", " ", "-", " even", " a"], [" though", " `", " akin", " \u2014", " requisite", " \ufffd", " myriad", " arguably"], [",", " though", " akin", " just", " oddly", " via", " even", " incredibly"], [",", " `", " oddly", " via", "-ish", " tweaked", " savvy", " pricey"], [" oddly", " even", " ``", " ultimately", " pricey", " arguably", " incredibly", " \u2014"], [" \u2014", " --", " `", " ultimately", " though", " even", " myriad", " seemingly"], ["<|endoftext|>", " \n\n", "  \n\n", " \u2014", "\n\n", " though", " ,", "..."], [" ``", " oddly", " pricey", " stuff", " incredibly", " wildly", " akin", "\u4ec0\u9ebd"], [" ``", " ,", " `", " --", " ;", " ultimately", " .", " much"], [" ``", " ,", " `", " --", " much", " ;", " ultimately", " ."], [" \n\n", " ,", "\n\n", " --", "  \n\n", " ``", " \u2014", " `"], [" ``", " ,", " --", " `", " technology", " *", " .", " ;"], [" ___", " __", " **", " _", " \n\n", " ``", " *", " ____"], [" \n\n", " ...", "\n\n", " ,", " ___", " _", " __", " **"], [" ...", " \n\n", " \n", " ___", " **", " technology", " __", "..."], [" ...", " ___", "...", " \n", " ...\\", " __", " ____", " \n\n"], [" ...", "...", " ___", " \n", " .", " \u2026", " __", " \n\n"], [" ...", "...", " .", " \u2026", " ___", " ,", " __", " _"], [" ...", " .", " ,", " \u2026", " \u2014", " and", "...", " \n"], [" ...", " \u2014", " \u2026", " .", " technology", " /", " *", " hardware"], [" ...", " \u2014", " \u2026", " /", " .", " *", " technology", " tech"], [" ...", " \u2026", " \u2014", " [...]", "\u2026", "...", "\u2011", " \u201c"], [" ...", " \u2014", " \u2026", " *", " .", " \u201c", " /", "\u2011"], [" ...", " \u2026", "\u2011", " \u2014", " \u201c", " /", " .", " technology"], [" ...", " \u2026", "\u2011", " \u2014", " \u201c", " [...]", " hardware", " /"], [" ...", " \u2026", "\u2011", " [...]", " hardware", " technology", " \u201c", " \u2014"], [" hardware", " technology", " tech", " engineering", " specialized", " native", " technical", " interface"], [" hardware", " module", " technology", " interface", " engineering", " software", " physics", " tech"], [" hardware", " module", " interface", " technology", " software", " proprietary", " physics", " engineering"], [" hardware", " module", " proprietary", " specialized", " technology", " software", " modules", " interface"], [" hardware", " module", " modules", " proprietary", " interface", " specialized", " technology", " engineering"], [" hardware", " module", " engineering", " specialized", " proprietary", " technology", " modules", " tech"], [" hardware", " module", " modules", " tech", " proprietary", " engineering", " physics", " specialized"], [" module", " hardware", ".)", " modules", " tech", " physics", " or", "/"], ["/", " or", " /", ".)", " ).", ".", ").", " module"], ["/", " or", " /", "/or", "/S", "/D", "/.", "/\\"], ["/", " or", "/.", " /", "/S", "/D", "/C", "/or"], ["/", "/.", " /", "/$", "/D", "/P", "/C", " or"], ["/", "/.", " `/", "),", ").", "/D", "/$", "/,"], ["/", "),", "/.", "/,", "/$", " `/", "/\\", "/python"], ["/$", "/", "/.", "/python", "),", " module", " `/", "/,"], [" module", "/python", "/$", "/", " library", "/module", " plugin", " modules"], [" `/", "/", "/python", " module", "/py", "/\\", "/$", " library"], ["/", " `/", "/lib", "/python", " library", "/$", " module", "/\\"], ["/", " library", " `/", "/lib", " module", "/$", " libraries", "/python"], ["/.", " `.", "/", " `/", "/$", " library", "),", " /"], ["/.", "/", " `/", " `.", " module", "/$", "/_", " library"], ["/.", "/", " `.", "),", " module", "/_", "/*.", " `/"], ["/", "/.", "),", ").", " `.", "/,", "/*.", "/)"]], "p": [[0.8128, 0.0488, 0.0405, 0.0203, 0.0131, 0.0123, 0.008, 0.007], [0.452, 0.2918, 0.0612, 0.0106, 0.0073, 0.0022, 0.0021, 0.0021], [0.5485, 0.115, 0.0655, 0.045, 0.0329, 0.0273, 0.0188, 0.0176], [0.0054, 0.0031, 0.0024, 0.0024, 0.0018, 0.0018, 0.0017, 0.0016], [0.1306, 0.0374, 0.0188, 0.0156, 0.0138, 0.0089, 0.0078, 0.0069], [0.1024, 0.0704, 0.0548, 0.0454, 0.0401, 0.0332, 0.0228, 0.0122], [0.5175, 0.277, 0.1308, 0.0114, 0.0089, 0.0079, 0.0074, 0.0065], [0.3535, 0.312, 0.167, 0.0654, 0.0165, 0.0094, 0.0065, 0.0057], [0.8291, 0.0771, 0.0413, 0.0284, 0.0081, 0.0041, 0.0026, 0.0012], [0.2675, 0.2083, 0.072, 0.0465, 0.0282, 0.0234, 0.0182, 0.0151], [0.6289, 0.1027, 0.0751, 0.0313, 0.0215, 0.0168, 0.0115, 0.0074], [0.4913, 0.0518, 0.0314, 0.0191, 0.0168, 0.0123, 0.0116, 0.007], [0.6375, 0.0091, 0.0062, 0.0052, 0.004, 0.004, 0.0038, 0.0033], [0.1484, 0.0122, 0.0084, 0.0074, 0.0069, 0.0069, 0.0058, 0.0051], [0.135, 0.0599, 0.0283, 0.0235, 0.022, 0.0207, 0.0118, 0.0111], [0.0766, 0.0319, 0.0194, 0.0171, 0.0151, 0.0151, 0.0117, 0.0104], [0.121, 0.0306, 0.0113, 0.0099, 0.0077, 0.0077, 0.0073, 0.0073], [0.017, 0.008, 0.0071, 0.0055, 0.0055, 0.0052, 0.0052, 0.0043], [0.0109, 0.0085, 0.0066, 0.0058, 0.0045, 0.0045, 0.0045, 0.0042], [0.21, 0.0365, 0.0184, 0.0162, 0.0152, 0.0111, 0.0105, 0.0098], [0.4341, 0.3831, 0.0552, 0.0191, 0.0066, 0.0051, 0.0023, 0.0023], [0.0731, 0.0105, 0.0077, 0.0041, 0.0039, 0.0036, 0.0034, 0.0032], [0.6503, 0.0173, 0.0153, 0.0093, 0.0047, 0.0034, 0.0028, 0.0027], [0.2311, 0.2039, 0.0584, 0.0377, 0.0167, 0.0148, 0.0102, 0.0102], [0.5714, 0.0682, 0.0682, 0.0365, 0.0208, 0.0184, 0.0173, 0.0072], [0.4486, 0.1134, 0.0253, 0.021, 0.0185, 0.0163, 0.0099, 0.0093], [0.8071, 0.0585, 0.0355, 0.0313, 0.0139, 0.0095, 0.009, 0.0066], [0.556, 0.2318, 0.0517, 0.0456, 0.0355, 0.0168, 0.0115, 0.0102], [0.593, 0.2801, 0.0379, 0.0245, 0.0096, 0.007, 0.0038, 0.0026], [0.9271, 0.028, 0.017, 0.0091, 0.0046, 0.0038, 0.0019, 0.0009], [0.9815, 0.014, 0.0011, 0.0008, 0.0004, 0.0004, 0.0003, 0.0003], [0.9764, 0.0084, 0.0051, 0.0024, 0.0011, 0.0011, 0.0007, 0.0003], [0.7361, 0.1279, 0.0471, 0.0099, 0.0087, 0.0068, 0.0047, 0.0041], [0.4707, 0.1349, 0.1267, 0.0234, 0.0234, 0.0194, 0.0086, 0.0059], [0.3948, 0.2888, 0.0828, 0.0252, 0.0223, 0.0105, 0.0105, 0.0064], [0.6819, 0.2843, 0.011, 0.0059, 0.0023, 0.0023, 0.0015, 0.0013], [0.314, 0.2771, 0.1393, 0.0482, 0.0214, 0.013, 0.0114, 0.0101], [0.5838, 0.1387, 0.0373, 0.0226, 0.0213, 0.0121, 0.0114, 0.0094], [0.661, 0.1302, 0.0329, 0.0226, 0.0165, 0.0089, 0.0061, 0.0057], [0.5542, 0.1588, 0.0455, 0.0243, 0.0178, 0.0102, 0.0095, 0.0051], [0.1571, 0.0655, 0.0423, 0.0309, 0.0291, 0.0291, 0.0256, 0.0226], [0.3155, 0.0661, 0.0621, 0.0515, 0.0484, 0.0401, 0.0354, 0.0276], [0.2405, 0.0942, 0.0734, 0.0504, 0.0474, 0.027, 0.0224, 0.0224], [0.1879, 0.1139, 0.037, 0.0348, 0.0326, 0.0254, 0.0239, 0.0211], [0.1593, 0.1165, 0.0277, 0.0244, 0.0244, 0.0244, 0.0203, 0.019], [0.1567, 0.1012, 0.0272, 0.0256, 0.0212, 0.0199, 0.0176, 0.0121], [0.1258, 0.1182, 0.0193, 0.0181, 0.0141, 0.0133, 0.0117, 0.011], [0.124, 0.0664, 0.0277, 0.0168, 0.0123, 0.0115, 0.0115, 0.0108], [0.4053, 0.3577, 0.0798, 0.013, 0.0079, 0.0066, 0.0051, 0.004], [0.7871, 0.155, 0.021, 0.006, 0.0025, 0.0022, 0.002, 0.0017], [0.7812, 0.0566, 0.0389, 0.0184, 0.0111, 0.006, 0.0053, 0.0053], [0.8289, 0.0364, 0.025, 0.0118, 0.0081, 0.0056, 0.0056, 0.0038], [0.7628, 0.0626, 0.0179, 0.0158, 0.0085, 0.0066, 0.0066, 0.0058], [0.7496, 0.0373, 0.0291, 0.0176, 0.0137, 0.0107, 0.0083, 0.0083], [0.2232, 0.1534, 0.0564, 0.0498, 0.0439, 0.0342, 0.0302, 0.0302], [0.4038, 0.0795, 0.0619, 0.0426, 0.0376, 0.0293, 0.0258, 0.0228], [0.3095, 0.2411, 0.129, 0.1005, 0.0288, 0.0288, 0.0254, 0.0093], [0.42, 0.3706, 0.0268, 0.0237, 0.0209, 0.0185, 0.0185, 0.0163], [0.3614, 0.2815, 0.133, 0.0914, 0.018, 0.0159, 0.0109, 0.0096], [0.4208, 0.2553, 0.0939, 0.0829, 0.0269, 0.0237, 0.0163, 0.0144], [0.3687, 0.1974, 0.1356, 0.1197, 0.0726, 0.0143, 0.0143, 0.0143], [0.5121, 0.452, 0.0155, 0.0106, 0.0035, 0.0011, 0.0008, 0.0006], [0.9236, 0.0758, 0.0005, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Python": [11942, 89839, 106267, 81155, 3937, 4015, 458, 1918, 2112, 4224, 1126, 1472, 2406, 2897, 5017, 5970, 5599, 1286, 1837, 3733, 1389, 320, 327, 545, 293, 29, 32, 58, 29, 61, 145, 475, 998, 193, 778, 331, 39, 54, 76, 50, 57, 58, 67, 98, 162, 166, 147, 131, 122, 434, 559, 341, 190, 183, 112, 38, 10, 19, 23, 23, 46, 64, 192]}}, {"pos": 541, "top": [[" \u2013", "\u00a0", "\u2013", "\u00a0\u00a0", ".", " ", "\u00b7", "  "], [" \u2013", "\u2013", "  \n\n", "  \n", "ing", "\u2013and", "   \n", " \u2013,"], ["\u2013", " \u2013", "\u2026", "\u2026.", "\u2026..", "ing", "\u2026\"", "\u3002"], ["\u7684", "ing", "ingas", " milfs", "---</", "\u91d1", "\u548c", "ingi"], ["s", "ing", "a", "i", "er", "ly", "o", "en"], ["s", "a", "ing", "o", "er", "i", "ly", "\u0627"], ["s", "a", "ing", "ly", "er", "o", "\u7684", "i"], ["s", "ly", "a", "ing", "er", "\u7684", "o", "\u0627"], ["s", "ly", "a", "ing", "er", "\u7684", "\ufe0f", "o"], ["s", "ly", "ing", "a", "er", "o", "i", "en"], ["s", "a", "ly", "ing", "er", "o", "i", "\u7684"], ["s", "ly", "ing", "er", "a", "_/", "suite", "en"], ["s", "ly", "ing", "a", "er", "\u52a0\u62ff\u5927", "_/", "suite"], ["s", "ly", "ing", "a", "er", "\u52a0\u62ff\u5927", "en", "o"], ["s", "ly", "a", "ing", "o", "er", "i", "aft"], ["s", "ly", "ing", "a", "aft", "er", "\u52a0\u62ff\u5927", "aq"], ["s", "ly", "a", "ing", "o", "er", "aft", "en"], ["s", "ly", "\u52a0\u62ff\u5927", "ing", " veggies", "aft", "iha", "kids"], ["s", "ly", "\u52a0\u62ff\u5927", "ing", "iha", "a", "aft", "i\u00e8me"], ["s", "ly", "\u52a0\u62ff\u5927", "a", "er", "ing", "aft", "o"], ["s", "a", "ly", "o", "i", "er", "ing", "en"], ["ly", "s", "\u52a0\u62ff\u5927", "iha", "ing", "aft", "i\u00e8me", " **\u2022"], ["ly", "s", "a", "ing", "er", "o", "aft", "\u52a0\u62ff\u5927"], ["a", "ly", "s", "o", "i", "er", "ing", "en"], ["ly", "a", "s", "_/", " \r\n\r\n", "o", "\u5565", "\r\n\r\n"], [" *__", "-**", "_/", "__/", "ly", " **:**", " **\u3010", "___"], [" *__", "_/", "-**", "__/", "ly", " ___", " _:", " **:**"], [" ___", "___", "_/", " *__", "__/", "ly", " ____", " \r\n\r\n"], [" ___", "___", "-**", "_/", "__/", " ____", " *__", "____"], [" ___", "___", " ____", " **", "a", "____", " _____", " __"], [" ___", " **", "s", "a", "___", "ly", " ____", "er"], ["a", "s", "ly", "er", "o", " \n\n", "ing", " **"], ["a", "s", "o", "ly", "i", "er", "\u2011", "ing"], ["a", "o", "s", "ly", "er", "/etc", "i", "\ufe0f"], [" **\u201c", " **", "-**", "a", " **\"", "o", ">**", "s"], [" **\u201c", " **\"", "-**", "a", "\uff09**", " -**", " **", "o"], [" **\u201c", " **\"", "-**", " -**", "\uff09**", " **", "\"**", ">**"], [" **\u201c", " Android", " -**", " **\"", " macOS", "Android", " iOS", "\u2011"], [" **\u201c", " Android", "Android", " -**", " APK", " iOS", " macOS", " **\""], [" **\u201c", "Java", "Android", " Android", " -**", "-**", " APK", "\u2011"], ["Java", "Android", " Android", " JNI", "native", " APK", "Chinese", " iOS"], [" Android", " iOS", "Android", "Java", " Java", " APK", "-android", " JNI"], [" Android", " iOS", "-android", " APK", " Java", "Android", "Java", " JNI"], [" Android", " iOS", "-android", " APK", "Android", " Java", " DLL", "Java"], [" Android", " iOS", "-android", " APK", " Java", " DLL", " android", " JNI"], [" iOS", " Android", " APK", "-android", " DLL", " Java", " JNI", " iPad"], ["/etc", " iOS", " APK", " DLL", " Android", "\uff0f", "-android", " JNI"], ["/etc", " APK", "/\\", "/", "\uff0f", "-/", "/mobile", " DLL"], ["/etc", " APK", "/mobile", " iOS", " DLL", "/android", "-android", " Android"], ["/etc", " APK", "/\\", " DLL", ".dll", "/mobile", "/android", "-android"], ["/etc", " APK", " DLL", ".dll", "/mobile", "/android", "-android", "!/"], [".dll", " DLL", " APK", "DLL", "module", "_DLL", " plugin", " `/"], [" DLL", ".dll", " APK", "DLL", " JNI", "module", " `.", "_DLL"], [" APK", " DLL", ".dll", " JNI", "DLL", "Android", " libs", " Android"], [".dll", " DLL", "DLL", ".dylib", ".jar", " APK", " dll", "dll"], [".dll", " DLL", "DLL", ".dylib", "dll", " APK", " dll", " JNI"], ["Python", " Python", ".dll", ".py", "JNI", " python", "python", " DLL"], [".dll", "Python", ".dylib", ".py", " libs", " Python", ".so", " APK"], [".dylib", "Python", " Python", ".dll", ".py", "python", ".so", " libs"], [" `.", "`.", ".dylib", " `_", "Python", ".dll", " Python", " DLL"], [" `.", "`.", " `_", " `", " DLL", ".dll", " Python", "DLL"], [" `.", "`.", "`", " `", " DLL", ".`", " `_", "DLL"], ["`.", " `.", "`", "`.`", "\".", "`,", "\u201c.", "`)."]], "p": [[0.6194, 0.2279, 0.1146, 0.0088, 0.0054, 0.0054, 0.001, 0.001], [0.8134, 0.1815, 0.0009, 0.0006, 0.0005, 0.0003, 0.0003, 0.0003], [0.791, 0.1213, 0.0307, 0.0094, 0.005, 0.0044, 0.0029, 0.0029], [0.0291, 0.0083, 0.0054, 0.0045, 0.0039, 0.0039, 0.0037, 0.0035], [0.6496, 0.3069, 0.0285, 0.0105, 0.0015, 0.0003, 0.0002, 0.0002], [0.9708, 0.0157, 0.0122, 0.0003, 0.0002, 0.0002, 0.0002, 0.0001], [0.985, 0.0097, 0.0018, 0.0014, 0.0007, 0.0003, 0.0002, 0.0002], [0.9734, 0.0123, 0.0058, 0.0051, 0.0011, 0.0004, 0.0002, 0.0002], [0.9381, 0.0283, 0.0152, 0.0104, 0.0021, 0.0007, 0.0007, 0.0006], [0.9433, 0.0196, 0.0152, 0.0105, 0.0025, 0.0003, 0.0003, 0.0003], [0.8895, 0.0569, 0.0269, 0.0127, 0.0044, 0.0034, 0.0016, 0.0006], [0.4951, 0.1711, 0.0406, 0.0116, 0.0097, 0.0043, 0.0031, 0.0026], [0.6685, 0.1588, 0.0333, 0.0084, 0.007, 0.0026, 0.0024, 0.002], [0.6, 0.1615, 0.0248, 0.0205, 0.0063, 0.0046, 0.003, 0.0028], [0.8202, 0.0673, 0.0248, 0.0103, 0.0076, 0.0031, 0.0028, 0.0026], [0.5127, 0.0786, 0.0113, 0.0073, 0.0065, 0.005, 0.0039, 0.0039], [0.724, 0.0558, 0.0264, 0.0205, 0.0076, 0.0059, 0.0028, 0.0026], [0.102, 0.0214, 0.0156, 0.0084, 0.0054, 0.0048, 0.0045, 0.0042], [0.2651, 0.0407, 0.015, 0.0071, 0.0062, 0.0062, 0.0059, 0.0038], [0.2591, 0.108, 0.0129, 0.0121, 0.0083, 0.0069, 0.0061, 0.0057], [0.528, 0.1942, 0.0523, 0.0433, 0.0159, 0.008, 0.0059, 0.0052], [0.0424, 0.031, 0.0065, 0.0054, 0.0048, 0.0048, 0.0039, 0.0035], [0.3095, 0.1005, 0.0394, 0.0186, 0.0154, 0.0128, 0.0106, 0.0044], [0.3701, 0.2389, 0.1748, 0.0729, 0.0209, 0.0184, 0.0119, 0.0044], [0.0757, 0.0521, 0.0336, 0.0231, 0.0109, 0.0096, 0.007, 0.007], [0.0347, 0.0238, 0.0186, 0.0154, 0.0136, 0.0082, 0.0077, 0.0073], [0.0527, 0.034, 0.0249, 0.0194, 0.0161, 0.0133, 0.0125, 0.011], [0.3768, 0.1149, 0.0397, 0.035, 0.0291, 0.0256, 0.0188, 0.0166], [0.1596, 0.15, 0.043, 0.0404, 0.0404, 0.0356, 0.0295, 0.0216], [0.4892, 0.1237, 0.0622, 0.0622, 0.0259, 0.0178, 0.0157, 0.0139], [0.1746, 0.1541, 0.0728, 0.0642, 0.0323, 0.0323, 0.0303, 0.0285], [0.4781, 0.1872, 0.0536, 0.0473, 0.0445, 0.0306, 0.0127, 0.0112], [0.5293, 0.1109, 0.0812, 0.0383, 0.0338, 0.0318, 0.0141, 0.0133], [0.2703, 0.1199, 0.0683, 0.0303, 0.0303, 0.0173, 0.0162, 0.0143], [0.2822, 0.0916, 0.0759, 0.0522, 0.0461, 0.0169, 0.0159, 0.014], [0.2744, 0.0575, 0.0421, 0.0255, 0.0165, 0.0155, 0.0155, 0.0121], [0.21, 0.0875, 0.0469, 0.044, 0.0172, 0.0172, 0.0111, 0.0087], [0.0931, 0.0322, 0.0235, 0.0195, 0.0183, 0.0162, 0.0134, 0.0111], [0.0969, 0.0552, 0.0404, 0.0296, 0.0203, 0.0203, 0.0191, 0.0158], [0.0489, 0.0406, 0.0217, 0.0149, 0.0124, 0.0124, 0.0124, 0.0116], [0.0783, 0.0691, 0.037, 0.0211, 0.0164, 0.0164, 0.0154, 0.0154], [0.2214, 0.1262, 0.1185, 0.0719, 0.034, 0.0319, 0.0264, 0.0206], [0.2143, 0.1473, 0.0696, 0.0577, 0.0509, 0.0372, 0.0256, 0.024], [0.1848, 0.1121, 0.082, 0.0529, 0.0467, 0.0412, 0.0342, 0.0235], [0.2054, 0.16, 0.071, 0.0553, 0.0519, 0.0404, 0.0191, 0.0179], [0.1656, 0.1461, 0.0886, 0.0572, 0.0419, 0.0419, 0.0198, 0.0106], [0.1581, 0.0795, 0.0619, 0.0376, 0.0376, 0.0242, 0.0214, 0.0167], [0.3053, 0.0531, 0.0413, 0.0322, 0.0284, 0.0267, 0.0251, 0.0221], [0.3602, 0.0804, 0.0296, 0.0191, 0.0179, 0.0158, 0.014, 0.0102], [0.2449, 0.0795, 0.0214, 0.0201, 0.0157, 0.0147, 0.013, 0.0115], [0.1997, 0.0648, 0.0369, 0.0347, 0.012, 0.0093, 0.0082, 0.0064], [0.2631, 0.2049, 0.0708, 0.0379, 0.0158, 0.0102, 0.0085, 0.0079], [0.3004, 0.1608, 0.1252, 0.0382, 0.0218, 0.0204, 0.0159, 0.0091], [0.2789, 0.1318, 0.1163, 0.0485, 0.0202, 0.0168, 0.0123, 0.0123], [0.6967, 0.2262, 0.021, 0.0186, 0.0088, 0.006, 0.0053, 0.0041], [0.6908, 0.1747, 0.0268, 0.0236, 0.0162, 0.0087, 0.0087, 0.0077], [0.2459, 0.169, 0.1316, 0.0622, 0.0484, 0.0427, 0.0377, 0.0377], [0.1193, 0.1053, 0.0929, 0.0929, 0.0724, 0.0639, 0.0564, 0.0497], [0.3838, 0.11, 0.0589, 0.0589, 0.0357, 0.0357, 0.0315, 0.0278], [0.9978, 0.0009, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0], [0.9961, 0.0028, 0.0002, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9564, 0.0371, 0.0025, 0.0006, 0.0003, 0.0002, 0.0002, 0.0002], [0.9968, 0.0028, 0.0003, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Python": [24059, 193295, 87352, 170841, 60601, 68407, 28393, 48106, 38326, 35903, 17337, 64892, 73291, 67485, 67999, 67670, 46584, 55017, 84625, 113271, 14936, 95085, 92648, 44660, 29142, 49472, 58892, 26938, 8143, 9147, 10122, 5596, 6855, 6620, 3348, 2250, 61, 45, 39, 21, 38, 46, 125, 152, 97, 109, 567, 1223, 1848, 2382, 1442, 356, 34, 48, 74, 14, 1, 2, 2, 5, 7, 25, 72]}}, {"pos": 542, "top": [["s", " \u2013", "\u0627\u062a", " \u2013,", "sburg", "\u2013", "\u3044\u308b", " \n\n"], ["s", "\u0627\u062a", "sburg", "sik", "schild", "sche", "sze", "sii"], ["s", "\u0627\u062a", "schild", "**\u2013", "sze", "s\u00f6k", "sburg", " **\u2013"], ["satz", "schrift", "sula", "\u52a0\u62ff\u5927", "sium", "sze", "s\u00f6k", "sii"], ["s", "\u0627\u062a", "sze", "sula", "\u52a0\u62ff\u5927", " `,", "sii", " `."], ["s", "sula", "\u0627\u062a", "sze", "s\u00f6k", "sii", "\u52a0\u62ff\u5927", "sburg"], ["s", "\u0627\u062a", " `.", " `,", "s\u00f6k", "`.", "sze", "sii"], ["s", " `.", "\u0627\u062a", " `,", "sburg", "sula", "`.", "s\u00f6k"], ["s", " `.", " `,", " \n\n", "\u0627\u062a", "`.", "schild", " \r\n\r\n"], ["s", "\u0627\u062a", "s\u00f6k", "sburg", " `.", "sula", "\u52a0\u62ff\u5927", " `,"], ["s", " `.", "\u0627\u062a", " `,", "`.", " `_", "s\u00f6k", " `"], ["s", "sula", "\u52a0\u62ff\u5927", " `.", "\u0627\u062a", "sburg", "s\u00f6k", " `_"], ["s", "\u52a0\u62ff\u5927", "sula", " `.", "\u0627\u062a", "sburg", "s\u00f6k", "sii"], ["s", "\u52a0\u62ff\u5927", "\u65b0\u52a0\u5761", "\u0627\u062a", "sburg", "sula", "s\u00f6k", "sii"], ["s", "\u0627\u062a", "\u52a0\u62ff\u5927", "\u65b0\u52a0\u5761", "\u4e0d\u53ef\u601d\u8bae", "sburg", " `.", " `%"], ["s", "\u0627\u062a", "\u65b0\u52a0\u5761", "\u52a0\u62ff\u5927", "\u4e0d\u53ef\u601d\u8bae", "\u4e24\u5b66\u4e00\u505a", "sii", "aft"], ["s", "\u0627\u062a", "\u4e0d\u53ef\u601d\u8bae", "\u65b0\u52a0\u5761", "\u52a0\u62ff\u5927", "\u4e24\u5b66\u4e00\u505a", "siz", "sburg"], ["s", "\u4e0d\u53ef\u601d\u8bae", "\u0627\u062a", "\u65b0\u52a0\u5761", " `.", "\u52a0\u62ff\u5927", "\u4e24\u5b66\u4e00\u505a", "\u8eab\u4e34\u5176\u5883"], ["s", "\u0627\u062a", "\u4e0d\u53ef\u601d\u8bae", "sburg", "sene", "\u4e24\u5b66\u4e00\u505a", "\u52a0\u62ff\u5927", "\u65b0\u52a0\u5761"], ["s", "\u0627\u062a", "\u4e0d\u53ef\u601d\u8bae", " `%", " `", "`,", " `.", "a"], ["s", "<|endoftext|>", " \n\n", "\r\n\r\n", "\n\n", "a", " \r\n\r\n", " `"], ["s", "\u0627\u062a", "\u4e0d\u53ef\u601d\u8bae", " `%", " ``", " `", "\u52a0\u62ff\u5927", " `."], ["s", " ``", " `", " `%", "\u0627\u062a", "\u4e0d\u53ef\u601d\u8bae", "``", " `,"], ["s", " `", " ``", "\u4e0d\u53ef\u601d\u8bae", "\u0627\u062a", "a", " `%", " `,"], ["s", "a", " \n\n", "\u0627\u062a", "\u4e0d\u53ef\u601d\u8bae", " `", "\n\n", "\r\n\r\n"], ["s", "\u0627\u062a", " shaders", " visuals", " lasers", " film", " animations", " tech"], ["s", " visuals", " lasers", " shaders", " animations", " architectures", " setups", " tech"], ["s", "\n\n", " \n\n", "\r\n\r\n", " @", " tech", " systems", " @_"], ["s", " tech", " systems", " lasers", " \n\n", " technology", " hardware", " technologies"], ["s", " ___", " tech", " technology", " systems", " ...", " workflows", " lasers"], ["s", " technology", " systems", " tech", " ...", " technologies", " models", " tools"], ["s", " technology", " @", " ...", " systems", " modern", " tech", " complex"], ["s", " technology", " modern", " systems", " using", " complex", " @", " tech"], ["s", " workflows", " tech", " technologies", " architectures", " technology", " hardware", " systems"], ["s", " tech", " workflows", " architectures", " systems", " technologies", " hardware", " technology"], ["s", " [...]", " ...\"", " ...", " \u2026.", " \u2026", " [\u2026]", "...</"], ["s", " [...]", " ...", " hardware", " ...\"", " [...", " \u2026.", " workflows"], ["s", " [...]", " workflows", "Direct", " [...", " hardware", "[...]", " frameworks"], ["s", " [...]", " workflows", "Direct", " [...", " frameworks", " architecture", " hardware"], ["s", " workflows", " [...]", "Direct", " frameworks", " protocols", " [...", " [/"], ["s", " workflows", " GPU", "Direct", " shaders", " OpenGL", "GPU", " programming"], [" workflows", "s", " programming", " GPU", " software", "Direct", " OpenGL", " animations"], [" GPU", " workflows", " animations", " backend", " programming", " optimized", " graphics", " shaders"], [" workflows", " GPU", " animations", " graphics", " backend", " cache", " workflow", " programming"], [" workflows", " GPU", " cache", " animations", " graphics", " databases", " programming", " backend"], [" GPU", " MMO", " animations", " workflows", " graphics", " internally", " cache", " programming"], [" GPU", " MMO", " workflows", " animations", " GPUs", " cache", " graphics", " FPGA"], [" GPU", " MMO", " GPUs", " FPGA", " graphics", " workflows", " cache", " CPU"], [" GPU", " GPUs", " FPGA", "paque", " APK", "/.", " bytecode", " MMO"], [".dll", " APK", " GPU", "/Linux", " FPGA", ".exe", " GPUs", " iOS"], [".dll", " APK", "android", "-android", "Android", " android", " bytecode", " DLL"], [".dll", " APK", " bytecode", " DLL", "DLL", ".dylib", " dll", ".jar"], [" APK", " DLL", ".dll", "DLL", "dll", " dll", ".py", " bytecode"], [" APK", ".dll", " DLL", "-android", ".dylib", " JNI", "apk", "dll"], [".dll", " DLL", ".dylib", "dll", " dll", "DLL", ".jar", " APK"], [".dll", "dll", ".dylib", " dll", " DLL", "DLL", ".jar", " APK"], [" python", " Python", ".dll", "Python", ".py", "dll", "python", " py"], [".dylib", ".so", " py", ".py", ".dll", " python", " APK", " Python"], [".dylib", "dll", ".so", " dll", ".dll", " py", " python", ".py"], [".dylib", " py", "dll", " dll", ".dll", "py", " Python", " DLL"], [" py", "py", "dll", ".dylib", " dll", " dy", " Python", ".dll"], [" py", "dll", "py", " dll", " dy", "DLL", ".dylib", " DLL"], ["py", "dll", "dy", "apk", "jar", "so", " py", "DLL"]], "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.1093, 0.0907, 0.0663, 0.0623, 0.0428, 0.0378, 0.0355, 0.0229], [0.9672, 0.004, 0.0033, 0.0023, 0.0021, 0.0019, 0.0016, 0.0015], [0.9808, 0.0029, 0.0026, 0.002, 0.0013, 0.0009, 0.0008, 0.0006], [0.9996, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9994, 0.0001, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9995, 0.0002, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9997, 0.0001, 0.0, 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], [0.9656, 0.0033, 0.0029, 0.0024, 0.0022, 0.002, 0.0016, 0.0016], [0.9895, 0.0018, 0.0007, 0.0006, 0.0005, 0.0005, 0.0004, 0.0003], [0.9876, 0.004, 0.0012, 0.0006, 0.0006, 0.0005, 0.0005, 0.0004], [0.9995, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.999, 0.0001, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9995, 0.0001, 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], [0.9995, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.961, 0.0329, 0.0021, 0.0009, 0.0006, 0.0005, 0.0003, 0.0001], [0.9972, 0.0004, 0.0003, 0.0002, 0.0002, 0.0001, 0.0, 0.0], [0.9778, 0.0109, 0.0011, 0.0007, 0.0007, 0.0004, 0.0003, 0.0002], [0.9721, 0.0021, 0.002, 0.0005, 0.0004, 0.0004, 0.0002, 0.0001], [0.9955, 0.0003, 0.0003, 0.0001, 0.0001, 0.0001, 0.0001, 0.0], [0.9348, 0.0012, 0.0009, 0.0006, 0.0006, 0.0005, 0.0005, 0.0005], [0.505, 0.0135, 0.0092, 0.0082, 0.0053, 0.0047, 0.0044, 0.0039], [0.6525, 0.1368, 0.0732, 0.0077, 0.0047, 0.0021, 0.0017, 0.0015], [0.8328, 0.006, 0.005, 0.0041, 0.0036, 0.0034, 0.003, 0.0027], [0.5398, 0.0144, 0.0127, 0.0119, 0.0093, 0.0087, 0.0072, 0.0068], [0.6737, 0.0245, 0.014, 0.014, 0.008, 0.0058, 0.0045, 0.0045], [0.4113, 0.0124, 0.0124, 0.0117, 0.0097, 0.0097, 0.0049, 0.0049], [0.5719, 0.0119, 0.0087, 0.0077, 0.0049, 0.0046, 0.0046, 0.0044], [0.0948, 0.0786, 0.0421, 0.024, 0.0212, 0.0187, 0.0165, 0.0155], [0.7564, 0.0122, 0.0122, 0.004, 0.0037, 0.0037, 0.0033, 0.0031], [0.8135, 0.0131, 0.0102, 0.0102, 0.0062, 0.004, 0.0038, 0.0033], [0.8087, 0.0115, 0.0037, 0.0026, 0.0023, 0.0023, 0.0023, 0.0021], [0.6389, 0.0193, 0.0063, 0.0063, 0.004, 0.0036, 0.0034, 0.003], [0.6115, 0.0197, 0.0105, 0.006, 0.0039, 0.0036, 0.0032, 0.0032], [0.3586, 0.0277, 0.0115, 0.0096, 0.0054, 0.0042, 0.0042, 0.0042], [0.136, 0.0268, 0.0196, 0.0184, 0.0127, 0.0105, 0.0093, 0.0087], [0.0446, 0.0348, 0.0271, 0.0254, 0.0136, 0.0113, 0.0106, 0.01], [0.0546, 0.0375, 0.0177, 0.0156, 0.0114, 0.0108, 0.0101, 0.0089], [0.0515, 0.0243, 0.0122, 0.0101, 0.0095, 0.007, 0.0061, 0.0061], [0.029, 0.0256, 0.0165, 0.0146, 0.0129, 0.01, 0.0088, 0.0088], [0.0333, 0.0259, 0.0215, 0.0115, 0.0108, 0.009, 0.0084, 0.0079], [0.0381, 0.0169, 0.0169, 0.009, 0.0085, 0.0075, 0.0062, 0.0055], [0.031, 0.0095, 0.0078, 0.0065, 0.0057, 0.0054, 0.0048, 0.0045], [0.0202, 0.0096, 0.0084, 0.0058, 0.0054, 0.0051, 0.0051, 0.0045], [0.0301, 0.0283, 0.0234, 0.0161, 0.0104, 0.0104, 0.0104, 0.0059], [0.1543, 0.0501, 0.0143, 0.0127, 0.0105, 0.0093, 0.0087, 0.0082], [0.4803, 0.042, 0.0348, 0.0348, 0.0255, 0.0239, 0.0136, 0.0136], [0.2276, 0.1564, 0.1075, 0.0613, 0.0448, 0.0225, 0.0165, 0.0146], [0.2918, 0.0947, 0.0447, 0.0371, 0.0308, 0.0271, 0.0255, 0.0255], [0.6775, 0.1713, 0.0491, 0.0337, 0.0263, 0.0205, 0.0075, 0.0075], [0.6001, 0.1517, 0.1043, 0.0493, 0.0435, 0.0141, 0.0086, 0.0086], [0.2187, 0.0912, 0.0912, 0.0805, 0.0805, 0.071, 0.071, 0.0553], [0.3913, 0.1439, 0.06, 0.053, 0.0412, 0.0412, 0.0364, 0.0283], [0.7341, 0.0603, 0.0532, 0.0323, 0.0285, 0.0119, 0.0072, 0.0064], [0.2425, 0.1666, 0.1298, 0.1011, 0.0695, 0.0421, 0.0328, 0.0226], [0.3883, 0.1619, 0.1429, 0.0596, 0.0464, 0.0319, 0.0193, 0.0193], [0.271, 0.271, 0.2392, 0.0534, 0.0286, 0.0222, 0.0119, 0.0119], [0.4322, 0.3366, 0.0549, 0.0294, 0.0115, 0.0084, 0.007, 0.007]], "ranks": {"Python": [16001, 73660, 29641, 57562, 23640, 45301, 12651, 16787, 14564, 31636, 5024, 14170, 14033, 15912, 8137, 14672, 11883, 3329, 7858, 13045, 2743, 4103, 3414, 5170, 4237, 2547, 1182, 844, 678, 471, 630, 2286, 2692, 1044, 2291, 474, 139, 211, 285, 46, 27, 32, 53, 61, 209, 172, 135, 193, 35, 139, 81, 50, 19, 52, 41, 13, 1, 5, 7, 7, 7, 15, 22]}}, {"pos": 543, "top": [["o", "e", "a", "i", "\uff08", "\u0627", "en", "y"], ["  \r\n", "\uff08", "e", "  \n", "a", "\u3002", "o", "\u0627"], ["\u3002", "\uff0c", "\uff08", "\u2026\u2026", "\uff1f", "a", "\u2026", "e"], ["\uff3f\uff3f", ":__", " cumshot", "\uff3f", "\uff1c", " YYS", " *__", "\uff1a<"], ["e", "\uff08", "\u6211", " @_", " ____", " @(", "auf", " $($"], ["\u6211", "auf", "\u0627", "fst", "\uff1f", "\uff1a", "\u3002", "\uff0c"], [" ____", "\u3002", "\u4e2d", "\u6211", ":__", "\uff1f", "\uff08", "\uff0c"], [" ____", ":__", "  \r\n", ",__", "\u6211", "anmar", ":\")", ".py"], [".", " ____", ".\u201d", "\u3000", ".\u201c", "e", ".\ufffd", "\u3002"], [".", "e", "  \r\n", ",__", ":\")", "o", ".py", "a"], [".", "o", "e", "a", "...", "i", " ____", ".\ufffd"], [" ____", "iens", ":__", ".py", "o", "yy", "-esque", "gy"], ["iens", "-esque", "ez", "e", "o", "\u4fd0", "kids", "zed"], ["-esque", "iens", "zelfde", "o", "ez", "e", "kids", "\u88f3"], ["o", "e", "-esque", "i", "a", "zelfde", "an", "tty"], ["o", "-esque", "e", "kids", "iens", "i", "zelfde", "aes"], ["o", "e", "i", "-esque", "a", "kids", "y", "en"], ["o", "-esque", "kids", "e", "oxy", "iens", ".py", "cript"], ["o", "i", "e", "kids", "-esque", "/--", "aos", " --"], [" --", "o", "e", "i", "--", "a", "\\uff", "yy"], ["e", " --", "o", "i", "a", "--", "y", "\n\n"], [" ``", "__)", "``", " ___", "orama", " YYS", " ____", "iels"], [" ``", "``", " ''", " --", ".py", " ___", "__)", " __"], [" ``", " --", " ''", "``", " __", ".py", " \"\"", " ?"], [" --", " ``", " __", " ''", "--", " ____", " ___", "__"], [" __", " ___", " ``", " --", " ____", ".py", "__)", ".__"], [" __", " ___", " ``", ".py", " ____", " --", "__", ".__"], [" __", " ___", " ____", "__", " _", " --", "___", ".__"], [" __", " ____", " ___", "__", "___", "__.", "____", ".__"], [" ____", " __", " ___", "__", "__.", "____", "___", " ..."], ["__.", " __", "__", " ____", "_.", " ___", ".__", " ..."], ["__.", " __", " .", "__", "_.", " ...", " ____", ".__"], ["__.", "\uff1f", "__", "_.", ".py", ".__", ".", " __"], [".py", "\uff1f", "cript", "-python", "__)", "/python", "/etc", "py"], [".py", "\uff1f", "Python", "\u2011", "-python", "__)", "/python", "python"], [".py", "Python", "\uff1f", "-python", "\u2011", "/python", "python", "py"], [".py", "Python", "/python", "-python", "python", " python", " PYTHON", "/py"], [".py", "Python", "/python", "-python", "python", " python", " PYTHON", "py"], ["Python", ".py", "python", "/python", " python", "-python", " Python", " PYTHON"], ["Python", "python", ".py", " python", " Python", "-python", "/python", " PYTHON"], ["Python", "python", ".py", " python", "-python", " Python", "/python", " PYTHON"], ["Python", "python", " Python", " python", "-python", "/python", " PYTHON", ".py"], ["Python", "-python", "python", "/python", " python", " Python", " PYTHON", ".py"], ["Python", "-python", " Python", "python", " python", "/python", " PYTHON", " bytecode"], ["Python", "-python", "python", " python", " Python", "/python", " PYTHON", ".py"], ["Python", "-python", " Python", "/python", " python", "python", " PYTHON", ".py"], ["Python", "\u2011", "-python", "/python", " Python", " python", "python", " bytecode"], ["Python", "-python", "/python", "\u2011", "python", "/.", " python", " Python"], ["Python", "/.", "-python", "/python", "python", ".py", " python", "\\."], ["/python", "-python", "Python", "/.", "/py", ".py", " bytecode", "python"], ["-python", "/python", "/py", "Python", ".py", "(py", "/.", "module"], ["module", "/py", "\u6a21\u5757", "Python", ".py", "(Py", "/python", "(py"], ["/py", ".py", "(py", "Python", "module", "/python", "py", "/module"], ["/py", ".py", "(py", "py", "Python", " Python", "(Py", "Py"], ["Python", ".py", "/py", " Python", "(py", " python", "/python", "python"], ["Python", ".py", " Python", "python", "/python", ".python", "(py", " python"], ["Python", ".py", "/py", " Python", "(py", "python", "Py", "ython"], ["/py", "Py", ".py", "Python", "(Py", " Py", "(py", "py"], ["/py", "Py", ".py", " Py", "py", " PY", "(py", " py"], ["/py", " py", "Py", "py", " Py", "(py", " PY", ".py"], ["/py", "py", "`", "`,", " py", "(py", " PY", " Py"], ["d", "dy", "`", "c", "`,", "D", "`)", "py"], ["d", "c", "`", "dy", "o", "`)", "i", "`)."]], "p": [[0.5403, 0.2892, 0.1064, 0.0444, 0.0036, 0.0028, 0.0007, 0.0007], [0.0616, 0.051, 0.051, 0.0373, 0.0226, 0.0188, 0.0146, 0.0137], [0.4663, 0.081, 0.0672, 0.0557, 0.0434, 0.0383, 0.0338, 0.016], [0.0214, 0.0167, 0.0122, 0.0122, 0.0089, 0.0079, 0.0065, 0.0065], [0.0321, 0.0301, 0.0301, 0.0235, 0.0207, 0.0161, 0.0161, 0.0151], [0.0136, 0.0128, 0.0113, 0.0106, 0.0077, 0.0068, 0.0064, 0.006], [0.1041, 0.0492, 0.0462, 0.0434, 0.0383, 0.028, 0.028, 0.0247], [0.1125, 0.0823, 0.0441, 0.0343, 0.0152, 0.0143, 0.0098, 0.0092], [0.2098, 0.044, 0.0365, 0.0342, 0.0322, 0.0267, 0.0195, 0.0172], [0.0718, 0.0464, 0.0361, 0.0206, 0.016, 0.016, 0.0141, 0.0133], [0.4238, 0.2268, 0.1376, 0.0447, 0.0327, 0.0154, 0.005, 0.0037], [0.0798, 0.0401, 0.0148, 0.0095, 0.0079, 0.0074, 0.007, 0.0066], [0.0391, 0.0185, 0.0112, 0.0082, 0.0072, 0.006, 0.0056, 0.0053], [0.055, 0.0216, 0.0131, 0.0115, 0.0079, 0.0074, 0.007, 0.0066], [0.2574, 0.0836, 0.0307, 0.0239, 0.0239, 0.0083, 0.0061, 0.0047], [0.0814, 0.0765, 0.0361, 0.0233, 0.0151, 0.0067, 0.0059, 0.0049], [0.4833, 0.1569, 0.029, 0.0187, 0.0146, 0.0061, 0.005, 0.0025], [0.0499, 0.0195, 0.0162, 0.0072, 0.0056, 0.0044, 0.0044, 0.0041], [0.0609, 0.0254, 0.0224, 0.0099, 0.0093, 0.0057, 0.0053, 0.0047], [0.1509, 0.0669, 0.0629, 0.0432, 0.0246, 0.0096, 0.0071, 0.0066], [0.1153, 0.1017, 0.0744, 0.0699, 0.058, 0.0481, 0.0095, 0.0084], [0.0622, 0.0095, 0.0084, 0.0062, 0.0058, 0.0054, 0.0048, 0.0037], [0.5017, 0.0321, 0.022, 0.0152, 0.0098, 0.0049, 0.0038, 0.0036], [0.698, 0.1213, 0.037, 0.0068, 0.003, 0.0029, 0.0025, 0.002], [0.5502, 0.1481, 0.0617, 0.0213, 0.02, 0.0188, 0.0177, 0.0074], [0.2119, 0.1456, 0.1207, 0.083, 0.0732, 0.0223, 0.0135, 0.0135], [0.1912, 0.0962, 0.0903, 0.0483, 0.0401, 0.0259, 0.0147, 0.0122], [0.5291, 0.2206, 0.1718, 0.0298, 0.0124, 0.0075, 0.0075, 0.0025], [0.4176, 0.3252, 0.1056, 0.0726, 0.0162, 0.0143, 0.0087, 0.0056], [0.5149, 0.1894, 0.0895, 0.0543, 0.0373, 0.0256, 0.0176, 0.0107], [0.2857, 0.2225, 0.1349, 0.1051, 0.0637, 0.0341, 0.022, 0.0207], [0.1601, 0.1327, 0.0857, 0.071, 0.0627, 0.0459, 0.038, 0.0261], [0.2191, 0.0757, 0.0668, 0.0381, 0.0296, 0.0279, 0.0246, 0.0246], [0.0341, 0.0151, 0.0125, 0.0081, 0.0067, 0.0063, 0.0056, 0.0049], [0.0415, 0.0285, 0.0184, 0.0184, 0.0135, 0.0127, 0.0112, 0.0099], [0.0361, 0.0233, 0.0171, 0.016, 0.011, 0.0103, 0.0091, 0.0076], [0.164, 0.1541, 0.0935, 0.0684, 0.0441, 0.0323, 0.0323, 0.0184], [0.1722, 0.1722, 0.0718, 0.0525, 0.0409, 0.0361, 0.0339, 0.0264], [0.3835, 0.1502, 0.0804, 0.0553, 0.0488, 0.043, 0.038, 0.0335], [0.6911, 0.0775, 0.0366, 0.0285, 0.0252, 0.0222, 0.0184, 0.0135], [0.8054, 0.0548, 0.0139, 0.013, 0.0122, 0.0108, 0.007, 0.0048], [0.8652, 0.038, 0.0149, 0.014, 0.014, 0.0123, 0.0066, 0.0055], [0.7235, 0.0524, 0.0492, 0.0218, 0.0181, 0.017, 0.016, 0.0086], [0.5745, 0.073, 0.0443, 0.0416, 0.0286, 0.0135, 0.0119, 0.0093], [0.4918, 0.0708, 0.0666, 0.0552, 0.0295, 0.0179, 0.0109, 0.0085], [0.2169, 0.1491, 0.0798, 0.0584, 0.0584, 0.0401, 0.0167, 0.0167], [0.0892, 0.0788, 0.074, 0.0372, 0.0272, 0.0226, 0.0212, 0.0129], [0.1261, 0.0319, 0.0299, 0.0299, 0.0219, 0.0182, 0.0171, 0.0117], [0.0841, 0.045, 0.0373, 0.0309, 0.0188, 0.0129, 0.0114, 0.0089], [0.0491, 0.0359, 0.0298, 0.016, 0.0141, 0.0097, 0.0085, 0.0085], [0.0628, 0.0628, 0.052, 0.0459, 0.0246, 0.0217, 0.0085, 0.0085], [0.0862, 0.0491, 0.0359, 0.0317, 0.0263, 0.0181, 0.0181, 0.017], [0.4663, 0.0863, 0.0338, 0.0263, 0.0247, 0.0232, 0.017, 0.0097], [0.3735, 0.2265, 0.0691, 0.0288, 0.0239, 0.0106, 0.0094, 0.0083], [0.287, 0.1741, 0.1536, 0.1196, 0.0822, 0.0236, 0.0236, 0.0236], [0.3488, 0.1283, 0.1132, 0.0472, 0.0417, 0.0417, 0.0286, 0.0286], [0.2381, 0.2101, 0.1444, 0.1125, 0.0414, 0.0414, 0.0284, 0.0221], [0.3216, 0.1951, 0.0921, 0.0718, 0.0493, 0.0493, 0.0435, 0.0299], [0.2833, 0.25, 0.0716, 0.0632, 0.0632, 0.0632, 0.0492, 0.0383], [0.4407, 0.1431, 0.0868, 0.0868, 0.0526, 0.0464, 0.0265, 0.0265], [0.1338, 0.1338, 0.1338, 0.1181, 0.1181, 0.0408, 0.0318, 0.0318], [0.9896, 0.0034, 0.0025, 0.0009, 0.0008, 0.0005, 0.0002, 0.0002], [0.9905, 0.0059, 0.0015, 0.001, 0.0001, 0.0001, 0.0001, 0.0001]], "ranks": {"Python": [7409, 48664, 6782, 10934, 657, 7097, 1843, 1057, 851, 305, 341, 1144, 1799, 2765, 1670, 1233, 1465, 509, 479, 1329, 374, 1001, 122, 95, 111, 27, 22, 120, 136, 126, 81, 60, 54, 9, 3, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 4, 4, 4, 5, 1, 1, 1, 4, 9, 9, 11, 121, 605]}}, {"pos": 544, "top": [["\u2026.", "\u00a0\u00a0", ".", " \u200b\u200b", "\u064b\u0627", "\u2026..", " \u2022", "\u2022"], ["yssey", "entication", "ousel", "liest", "consts", "udin", "iesel", "\u043b\u0430\u0439\u043d"], ["yssey", "ousel", " \u2026.", "entication", "consts", "sson", "aios", "iness"], ["entication", "ousel", "yssey", "lera", " :</", "ryn", "ruz", "zeb"], ["entication", " ---", " ___", "\n\n\n\n", "yssey", "_____", " ....", " _____"], ["yssey", "iesel", "redi", "entication", "olest", "AsyncResult", "rious", "xFD"], [" ___", "\n\n\n\n", "\n", " ....", " _____", "yssey", "_____", "iesel"], ["yssey", " ....", " _____", " ___", " \u2026.", "_____", "rious", "riad"], ["\n", " \u200b\u200b", "yssey", " ....", " \u2026.", ".", " \n", "    \n"], [".", " \n", ".\".", "riad", "\uc368", "&D", "\n", "yssey"], [".", "\n", " \n", "&D", "-.", "\n\n\n\n", "\u3002.", " -."], [" _____", "yssey", " ___", "ogs", "AsyncResult", "lds", "ovar", " stuff"], ["yssey", "uate", "igy", "ogs", "igent", "olest", "ition", "ipse"], ["yssey", "ition", "\uc368", "uate", " stuff", "igent", "ipse", " WD"], ["\uc368", " \u2014", " stuff", " Syd", "ition", " VD", "yssey", " ala"], ["\uc368", " \u2014", " VD", " stuff", "ogs", " vd", " rd", " pro"], ["\uc368", " VD", " OD", " rd", " WD", " &", " ASD", " vd"], ["\uc368", "yssey", "ogs", "oodle", " Syd", "riad", " ASD", "igd"], ["yssey", "oodle", " \u2014", "ocy", "igd", "igi", "\uc368", "riad"], [" \u2014", " &", " ,", " ---", " ;", " &#", " --", " or"], ["<|endoftext|>", "\n\n", " \n\n", " \u2014", " ,", " &", " ;", " #"], ["yssey", "igy", "oodle", "\uc368", "igd", "ocy", "oky", "veloper"], [" ;", " ,", " &", "\uc368", " --", " .", " or", " ''"], [" ,", " ;", " &", " .", " --", " much", " for", " in"], [" ;", " ,", " --", " &", " .", "\n\n", " ?", " British"], [".microsoft", " ;", "\u5fae\u8f6f", ".exe", " MSD", ".Microsoft", "\u5fae\u8edf", " microsoft"], [" ___", "\u5fae\u8f6f", ".microsoft", ".exe", " microsoft", " ;", ".Microsoft", " MSD"], [" ___", " _____", " ____", "___", " _.", " ?", " ;", " _"], [" ___", " _____", "___", " ____", " _.", "_____", "_.", " \u3002"], [" ___", " _____", " ____", "___", "_____", "(___", " ______", "____"], [" ___", " _____", " ...", " ____", "___", "(___", " _.", " \u3002"], [" ...", " .", " or", " ;", " ___", " ....", " _____", " .."], [" \n\n", "  \n\n", " \n\n\n", " \n\n\n\n", " \n", " .", " \n  \n", " or"], [" \n\n", "  \n\n", " \u2014", " \n\n\n\n", "\ufffd", " \n  \n", " \n    \n", " \n\n\n"], [" \n\n", "  \n\n", " \n  \n", " _____", " \u2014", " \n\n\n\n", " \n    \n", "   \n\n"], [" \u2014", " \n\n", "  \n\n", " .", " \u3002", " \u2014\u2014", " \n  \n", " _____"], [" \u2014", "  \n\n", " \n\n", " \u3002", " .", " \n  \n", " \n\n\n\n", " .\""], [" /", " .", " \u2014", "\u200b", " .\"", " \u200b", " proprietary", " or"], [" DLL", " \u200b", "\u200b", " \u200b\u200b", " /", " \u2014", " Windows", " proprietary"], ["\u200b", " \u200b", " \u200b\u200b", " DLL", " \u3002", " proprietary", " .", " Windows"], ["\u200b", " DLL", " Windows", " \u200b", " proprietary", " dll", " .", " Microsoft"], [" DLL", " Windows", " Microsoft", " proprietary", " files", " windows", "Windows", " ."], [" DLL", " Windows", " files", " Microsoft", " proprietary", " windows", " file", " module"], [" DLL", " Windows", " files", " Microsoft", " proprietary", " windows", " file", " dll"], [" .", " Windows", " DLL", " files", " windows", " proprietary", " module", " modules"], [" /", " .", " DLL", " or", " Windows", " files", "/", " windows"], ["/etc", " DLL", " files", " equivalents", "  \n\n", " dll", " /", "/"], [".", ").", "  \n\n", " files", " DLL", "/.", " ).", "/etc"], [".", "*.", "/.", " ).", ").", ".*", " .", "\"."], ["/.", ").", ".", " files", " ).", " or", "/etc", "*."], ["/.", "*.", ").", " ).", " }.", "/etc", " files", ".*"], ["/.", "/etc", "/", "/*.", " /.", "*.", " /", "/D"], ["/.", "),", ").", " ),", "/etc", " */,", " />,", "/"], ["),", "/.", " */,", "/,", " />,", "\"),", " ),", "\uff09\uff0c"], ["),", " */,", " ),", "\"),", " />,", "*),", "\uff09\uff0c", "`,"], ["),", " */,", "\"),", " module", "\uff09\uff0c", "`,", "'),", " ),"], ["\"),", "),", " */,", "\u201d),", "'),", " \"),", "\",", "`,"], ["\"),", " */,", "'),", "),", "\u201d),", " \"),", "`,", "\uff09\uff0c"], ["\"),", "),", "'),", " */,", " library", "\u201d),", " \"),", "`)."], ["\"),", "'),", "\u201d),", "),", " \"),", "**),", "*),", " '),"], ["`", "`,", "`).", "`.", "`)", "\"),", " `.", "`;"], ["`", "`).", "`,", "`)", "`.", "\"),", "\u201d),", " \"),"], ["`", "`).", "`)", "`,", "`.", "\"),", "\u201d),", ")`"]], "p": [[0.1201, 0.0684, 0.0604, 0.0533, 0.0196, 0.0153, 0.0119, 0.0087], [0.0174, 0.0119, 0.0105, 0.0077, 0.0064, 0.0064, 0.006, 0.0056], [0.0291, 0.0213, 0.0176, 0.0107, 0.0094, 0.0065, 0.0061, 0.0057], [0.0107, 0.0101, 0.0065, 0.0054, 0.0054, 0.0048, 0.0037, 0.0035], [0.0326, 0.027, 0.0175, 0.0175, 0.012, 0.0093, 0.0088, 0.0082], [0.0224, 0.0077, 0.0068, 0.0053, 0.005, 0.0047, 0.0041, 0.0039], [0.0226, 0.0212, 0.0176, 0.0165, 0.0146, 0.0137, 0.0121, 0.0094], [0.0807, 0.0169, 0.0149, 0.0132, 0.007, 0.0058, 0.0055, 0.0048], [0.103, 0.0551, 0.0245, 0.0179, 0.0168, 0.0123, 0.0109, 0.009], [0.0483, 0.0079, 0.0079, 0.0074, 0.0065, 0.0065, 0.0065, 0.0051], [0.2062, 0.2062, 0.0132, 0.0038, 0.0033, 0.0033, 0.0031, 0.0028], [0.0091, 0.0081, 0.0071, 0.0036, 0.0032, 0.0032, 0.0028, 0.0028], [0.0152, 0.0041, 0.0028, 0.0028, 0.0028, 0.0026, 0.0023, 0.0022], [0.0078, 0.0051, 0.0048, 0.0029, 0.0022, 0.0019, 0.0019, 0.0016], [0.0086, 0.0041, 0.0025, 0.0022, 0.0022, 0.0016, 0.0016, 0.0014], [0.013, 0.0074, 0.0045, 0.0019, 0.0019, 0.0018, 0.0018, 0.0018], [0.0098, 0.0034, 0.0026, 0.0021, 0.0021, 0.0019, 0.0018, 0.0018], [0.0086, 0.0075, 0.0031, 0.0028, 0.0025, 0.0025, 0.0023, 0.0019], [0.0134, 0.0049, 0.0041, 0.003, 0.003, 0.003, 0.003, 0.0026], [0.0793, 0.0745, 0.0156, 0.0138, 0.0138, 0.0138, 0.0138, 0.0039], [0.2919, 0.0651, 0.0395, 0.0349, 0.0187, 0.0145, 0.0113, 0.0064], [0.0073, 0.0054, 0.0044, 0.0033, 0.0031, 0.0027, 0.0027, 0.0024], [0.0958, 0.0331, 0.0156, 0.0074, 0.0037, 0.0031, 0.0031, 0.0029], [0.1561, 0.1378, 0.0155, 0.012, 0.0106, 0.0053, 0.0053, 0.0053], [0.168, 0.0581, 0.0138, 0.0101, 0.0095, 0.0069, 0.0057, 0.0045], [0.0649, 0.0326, 0.0288, 0.0254, 0.0128, 0.0128, 0.012, 0.0106], [0.0463, 0.0318, 0.0281, 0.0233, 0.016, 0.0117, 0.0097, 0.0091], [0.8049, 0.0621, 0.0108, 0.0084, 0.007, 0.0065, 0.0042, 0.0037], [0.5185, 0.1396, 0.0513, 0.0453, 0.0275, 0.0275, 0.0147, 0.0122], [0.5431, 0.1462, 0.0609, 0.0572, 0.0254, 0.0145, 0.0136, 0.0093], [0.5259, 0.0973, 0.0406, 0.0262, 0.0262, 0.014, 0.0132, 0.0124], [0.6043, 0.0722, 0.0234, 0.0234, 0.0118, 0.0111, 0.0098, 0.0092], [0.7769, 0.0321, 0.0207, 0.0142, 0.0134, 0.0098, 0.0086, 0.0072], [0.269, 0.144, 0.0564, 0.0388, 0.0321, 0.025, 0.0081, 0.0081], [0.2727, 0.1995, 0.0418, 0.027, 0.027, 0.0254, 0.021, 0.0145], [0.4404, 0.0867, 0.056, 0.041, 0.0319, 0.0264, 0.0193, 0.011], [0.2255, 0.0646, 0.0536, 0.0223, 0.021, 0.0185, 0.0185, 0.0127], [0.0449, 0.0422, 0.0272, 0.0212, 0.0187, 0.0176, 0.0146, 0.0137], [0.0388, 0.0388, 0.0284, 0.0221, 0.0221, 0.0221, 0.0183, 0.0162], [0.2313, 0.0964, 0.0313, 0.0313, 0.0139, 0.0123, 0.0095, 0.0079], [0.0852, 0.055, 0.0294, 0.0294, 0.0277, 0.0168, 0.0139, 0.0131], [0.1565, 0.1219, 0.0349, 0.0308, 0.0225, 0.0199, 0.0155, 0.0128], [0.157, 0.1079, 0.045, 0.0373, 0.0329, 0.02, 0.0165, 0.0146], [0.0747, 0.0702, 0.04, 0.0228, 0.0228, 0.0178, 0.0147, 0.0138], [0.0641, 0.05, 0.0365, 0.0365, 0.0222, 0.0143, 0.0126, 0.0119], [0.0661, 0.0548, 0.0332, 0.0259, 0.0243, 0.0228, 0.0138, 0.0108], [0.0812, 0.0338, 0.0233, 0.0218, 0.0181, 0.0141, 0.0141, 0.0132], [0.0293, 0.0228, 0.0214, 0.0189, 0.0167, 0.0138, 0.0122, 0.0122], [0.1846, 0.0529, 0.0497, 0.0412, 0.0387, 0.022, 0.022, 0.0195], [0.102, 0.0659, 0.0546, 0.0453, 0.0258, 0.0242, 0.0167, 0.0167], [0.1296, 0.0948, 0.0739, 0.0508, 0.0289, 0.0272, 0.0272, 0.0212], [0.6961, 0.0734, 0.027, 0.0254, 0.0093, 0.0093, 0.0077, 0.0073], [0.2776, 0.245, 0.0426, 0.0376, 0.0332, 0.0311, 0.0275, 0.0275], [0.5264, 0.0712, 0.049, 0.0432, 0.0262, 0.0262, 0.0204, 0.018], [0.4846, 0.1388, 0.0579, 0.0579, 0.0351, 0.0241, 0.0188, 0.0188], [0.3335, 0.1785, 0.1083, 0.0451, 0.031, 0.031, 0.0274, 0.0213], [0.4365, 0.1606, 0.0669, 0.0521, 0.046, 0.0316, 0.0246, 0.0217], [0.2971, 0.1238, 0.0964, 0.0851, 0.0585, 0.0456, 0.0456, 0.0313], [0.3061, 0.0877, 0.0774, 0.0774, 0.0532, 0.0469, 0.0414, 0.0366], [0.7193, 0.0758, 0.059, 0.046, 0.0358, 0.0149, 0.0116, 0.0103], [0.7643, 0.1328, 0.0806, 0.014, 0.0066, 0.0002, 0.0002, 0.0002], [0.9087, 0.0399, 0.0352, 0.0061, 0.0037, 0.0015, 0.0006, 0.0005], [0.99, 0.0076, 0.0019, 0.0003, 0.0001, 0.0, 0.0, 0.0]], "ranks": {"Python": [42897, 190863, 152835, 95370, 13128, 96369, 33594, 41421, 42302, 8002, 6520, 14131, 12141, 11422, 19236, 25544, 27990, 9825, 10080, 9852, 3176, 8945, 12842, 9729, 4312, 538, 516, 181, 225, 253, 695, 423, 416, 159, 314, 584, 188, 104, 124, 217, 236, 162, 150, 247, 412, 284, 678, 1614, 860, 961, 588, 439, 251, 308, 222, 163, 87, 114, 118, 140, 175, 262, 320]}}, {"pos": 545, "top": [[".", "  \n", " \u2013", ",", "\u00a0\u00a0", "   \n", "?", ";"], ["  \n", "  \n\n", "   \n", "    \n", "  \n  \n", "     \n", "   \n\n", " \u00a3"], ["[", ".", "  \n", "\u2013", "   \n", "  \n\n", "'", "`"], [" `_", " '`", " `", " `%", ":`", " ``", " Bbw", "=`"], [" `", "`", ":`", "=`", " `%", " `_", " (`", " '`"], [" `", "`", ":`", "    \n", "   \n", "=`", "  \n", " \uff09"], [" `", "`", ".`", " (`", ":`", "=`", "  \n", " \"`"], [" `", ":`", " (`", "`", "=`", ".`", "(`", "  \n"], [" `", "  \n\n", ":`", "`", ".`", " (`", "=`", " \n\n"], [" `", ":`", " `$", ".`", "=`", " \"`", " (`", "`"], [" `", ".`", "`", " (`", " `$", ":`", "=`", " \"`"], [" `", " `_", " `$", " ``", " `%", "=`", ":`", " (`"], [" `", " `_", " `$", " (`", "=`", " `%", " ``", ":`"], [" `", " (`", "=`", " `$", " \"`", " akin", " pricey", " `%"], [" `", " though", " \ufffd", " (`", " along", " akin", " as", " much"], [" `", " though", " requisite", " akin", " \ufffd", " myriad", " oddly", " (`"], [" `", " though", " akin", " oddly", " myriad", " ultimately", " potentially", " entirety"], [" `", " (`", ".`", " ``", " oddly", " akin", " `%", "=`"], [" `", " ``", ".`", " oddly", " ultimately", " (`", " akin", " pricey"], [" `", " --", " ultimately", " though", " \u2014", " notably", " (`", " even"], ["<|endoftext|>", " \n\n", " `", "  \n\n", " \u2014", " though", " ,", " --"], [" `", " ``", " `%", " \\\"", " oddly", " ultimately", " even", " --"], [" ``", " `", " ,", " --", " ;", " ultimately", " much", " even"], [" `", " ,", " ``", " --", " ;", " much", " ultimately", " along"], [" \n\n", " `", " ,", "  \n\n", " --", " ``", " \u2014", "\n\n"], [" `", " *", " ,", " ``", " **", " ___", " ;", " --"], [" ___", " **", " __", " ``", " _", " *", " ____", " `"], [" \n\n", " ___", "\n\n", " ...", " ,", "  \n\n", " __", " _"], [" \n\n", " ___", " ...", "  \n\n", " ____", " __", " _____", " ______"], [" ...", " ___", " ____", "...", " ______", " __", " **", " _____"], [" ...", " .", " \n\n", " **", " ___", " ,", "...", " \n"], [" ...", " .", " ,", " **", " in", " for", " *", " and"], [" .", " ,", " ...", " *", " /", " in", " -", " for"], [" ...", " .", " technology", " \u2014", " ,", " *", " technical", " via"], [" technology", " \u2014", " .", " ...", " technical", " tech", " hardware", " /"], [" \u2014", " .", " ...", " /", " technology", " \u201c", " \u2026", " hardware"], [" \u2014", " .", " hardware", " technology", " /", " engineering", " \u201c", " *"], [" .", " \u201c", " ...", " /", " software", " technology", " technical", " \""], [" ...", " hardware", " software", " technology", " engineering", " \u201c", " technical", " ."], [" [...]", " ...", " hardware", " software", " \u2026", " technology", " .", " \u201c"], [" hardware", " software", " technology", " engineering", " /", " tech", " .", " technical"], [" hardware", " software", " technology", " engineering", " manufacturing", " tech", " firmware", " factory"], [" hardware", " software", " technology", " proprietary", " engineering", " firmware", " tech", " technologies"], [" automated", " software", " hardware", " technology", " proprietary", " tech", " engineering", " technologies"], [" automated", " hardware", " software", " proprietary", " technology", " automatically", " factory", " tech"], [" automated", " hardware", " proprietary", " software", " technology", " manufactured", " automatically", " shipped"], [" automated", " hardware", " shipped", " automatically", " software", " packaged", " proprietary", " manufactured"], [" automated", " hardware", " shipped", " manufactured", " automatically", " software", " packaged", " proprietary"], [" automated", " shipped", " manufactured", ".)", " hardware", " packaged", ").", " )."], [").", " shipped", ".)", " hardware", " packaged", " automated", " via", "."], [").", ".)", ".).", " ).", " }.", ".", " shipped", "*."], [" module", " library", " modules", ").", " package", " libraries", " hardware", ".)"], ["),", ").", " module", " ),", "\u2014but", ".),", " library", "**,"], ["),", " ),", ".),", " module", ").", " library", "**,", "\uff09\uff0c"], ["),", " module", " library", " plugin", " modules", " ),", " package", " DLL"], [" module", " library", "),", " plugin", " modules", " libraries", " DLL", "/module"], [" module", " library", "),", " modules", " Python", " DLL", " libraries", "module"], [" library", " module", "),", " libraries", " modules", " DLL", " compiled", " libs"], [" library", " module", " libraries", "),", "library", " libs", " DLL", "module"], [" module", " library", "),", " ),", " plugin", " DLL", " compiled", " modules"], [" module", "),", " library", "module", " DLL", " ),", " plugin", " binary"], ["),", " module", " ),", " library", ").", " plugin", " DLL", "module"], ["),", " module", ").", "/", "/.", " library", " ),", "],"]], "p": [[0.7527, 0.0658, 0.0425, 0.0177, 0.0177, 0.0122, 0.0101, 0.0079], [0.6291, 0.1494, 0.1093, 0.0333, 0.0054, 0.0021, 0.0017, 0.0017], [0.1606, 0.0974, 0.0974, 0.086, 0.0522, 0.0432, 0.0297, 0.0217], [0.0328, 0.0165, 0.0165, 0.0129, 0.0121, 0.0094, 0.0054, 0.0044], [0.6301, 0.0801, 0.0664, 0.0355, 0.0277, 0.0203, 0.0158, 0.0115], [0.4104, 0.1038, 0.0433, 0.0406, 0.0337, 0.0217, 0.0204, 0.0159], [0.8876, 0.0567, 0.0112, 0.0093, 0.0077, 0.0041, 0.0036, 0.0023], [0.9523, 0.0082, 0.0073, 0.0073, 0.0057, 0.0047, 0.002, 0.0018], [0.8513, 0.0424, 0.0138, 0.0121, 0.0121, 0.0107, 0.0095, 0.0083], [0.8429, 0.0255, 0.0225, 0.0186, 0.0145, 0.0136, 0.0106, 0.0053], [0.9771, 0.0038, 0.0035, 0.0024, 0.0017, 0.0011, 0.001, 0.0008], [0.9097, 0.0214, 0.0095, 0.0089, 0.0079, 0.0045, 0.0035, 0.0033], [0.9642, 0.0048, 0.0031, 0.0029, 0.0019, 0.0014, 0.0014, 0.0011], [0.7606, 0.0158, 0.0066, 0.0058, 0.0037, 0.0035, 0.0024, 0.0021], [0.7516, 0.02, 0.0107, 0.0048, 0.0031, 0.0027, 0.0021, 0.0019], [0.3628, 0.0407, 0.0218, 0.017, 0.0091, 0.008, 0.0071, 0.0066], [0.1161, 0.0484, 0.0276, 0.0115, 0.0084, 0.0079, 0.007, 0.0066], [0.1472, 0.029, 0.0165, 0.0088, 0.0069, 0.0061, 0.0057, 0.0057], [0.0727, 0.0602, 0.0119, 0.0105, 0.0072, 0.006, 0.0046, 0.0044], [0.3275, 0.0345, 0.0153, 0.0144, 0.0144, 0.0077, 0.0072, 0.0072], [0.2845, 0.0868, 0.0719, 0.0385, 0.0362, 0.0319, 0.0117, 0.0104], [0.119, 0.1118, 0.0046, 0.0046, 0.0041, 0.0041, 0.0032, 0.0032], [0.3777, 0.2763, 0.0166, 0.0129, 0.0057, 0.0045, 0.0037, 0.0031], [0.2651, 0.1252, 0.049, 0.0247, 0.015, 0.014, 0.0103, 0.0097], [0.2973, 0.0965, 0.0907, 0.0244, 0.0229, 0.019, 0.0168, 0.0158], [0.1127, 0.0775, 0.0728, 0.0684, 0.0532, 0.0196, 0.0119, 0.0087], [0.5777, 0.0782, 0.0572, 0.0347, 0.0347, 0.0326, 0.0254, 0.0224], [0.4859, 0.1577, 0.0957, 0.0452, 0.0399, 0.0311, 0.0311, 0.0242], [0.3559, 0.2446, 0.102, 0.0618, 0.0546, 0.0258, 0.0242, 0.0242], [0.6528, 0.1134, 0.0417, 0.0368, 0.021, 0.0197, 0.0174, 0.0154], [0.7329, 0.0682, 0.0365, 0.0195, 0.0162, 0.0143, 0.0098, 0.0098], [0.674, 0.0912, 0.0431, 0.0085, 0.008, 0.0066, 0.0055, 0.0051], [0.3334, 0.139, 0.1082, 0.02, 0.02, 0.0146, 0.0121, 0.0121], [0.1094, 0.0801, 0.0586, 0.055, 0.0168, 0.0168, 0.0158, 0.0131], [0.0877, 0.0877, 0.05, 0.0303, 0.0251, 0.0222, 0.0222, 0.0208], [0.1769, 0.1142, 0.054, 0.0476, 0.0371, 0.0348, 0.0289, 0.0271], [0.0931, 0.0725, 0.044, 0.0413, 0.0388, 0.0343, 0.0284, 0.0284], [0.1029, 0.0457, 0.0356, 0.0356, 0.0314, 0.0295, 0.0295, 0.0277], [0.1536, 0.1056, 0.0932, 0.0343, 0.0343, 0.0284, 0.0236, 0.0221], [0.2524, 0.1847, 0.0723, 0.0321, 0.0301, 0.025, 0.0183, 0.0152], [0.1337, 0.1108, 0.0631, 0.036, 0.0338, 0.0247, 0.017, 0.017], [0.3096, 0.2732, 0.0649, 0.0573, 0.0145, 0.012, 0.0113, 0.0113], [0.325, 0.2531, 0.0601, 0.0267, 0.0267, 0.0172, 0.0172, 0.0162], [0.328, 0.1549, 0.1207, 0.057, 0.0223, 0.0127, 0.0119, 0.0119], [0.4018, 0.1016, 0.0656, 0.0374, 0.0273, 0.0227, 0.0114, 0.0107], [0.4096, 0.0807, 0.0432, 0.0358, 0.0246, 0.0192, 0.018, 0.0124], [0.3287, 0.0831, 0.0306, 0.027, 0.0253, 0.0197, 0.0197, 0.0144], [0.2109, 0.0604, 0.0367, 0.0323, 0.0237, 0.0184, 0.0173, 0.0163], [0.1428, 0.0814, 0.0409, 0.0339, 0.0264, 0.0248, 0.0248, 0.0219], [0.1287, 0.0571, 0.0445, 0.0418, 0.0346, 0.0325, 0.0287, 0.0185], [0.4599, 0.1493, 0.0485, 0.0485, 0.0259, 0.0095, 0.0079, 0.0079], [0.2048, 0.1408, 0.0551, 0.0518, 0.0277, 0.026, 0.0203, 0.0158], [0.6815, 0.0718, 0.0384, 0.0339, 0.0264, 0.0151, 0.011, 0.0091], [0.8274, 0.0283, 0.022, 0.0161, 0.0104, 0.0092, 0.0081, 0.0046], [0.3399, 0.3399, 0.0759, 0.0316, 0.0316, 0.0159, 0.014, 0.0132], [0.6832, 0.1187, 0.0561, 0.0385, 0.03, 0.0059, 0.0052, 0.0043], [0.6479, 0.1276, 0.0994, 0.0285, 0.0134, 0.0092, 0.0064, 0.0064], [0.5716, 0.3059, 0.0365, 0.0173, 0.0092, 0.0063, 0.0063, 0.0049], [0.7686, 0.1943, 0.0085, 0.0075, 0.0031, 0.0019, 0.0015, 0.0015], [0.5384, 0.2244, 0.1748, 0.0127, 0.0087, 0.0056, 0.0041, 0.0028], [0.9366, 0.0412, 0.0134, 0.0012, 0.001, 0.0009, 0.0008, 0.0008], [0.5725, 0.3935, 0.0153, 0.0072, 0.0034, 0.0013, 0.0007, 0.0006], [0.9818, 0.014, 0.0019, 0.0017, 0.0001, 0.0001, 0.0001, 0.0]], "ranks": {"Python": [11676, 45544, 38704, 19018, 936, 702, 272, 322, 576, 722, 377, 201, 367, 889, 3983, 4263, 3537, 1049, 1657, 4040, 2200, 1786, 1651, 2684, 874, 164, 83, 276, 116, 248, 435, 1048, 1582, 607, 354, 163, 19, 21, 21, 33, 25, 49, 55, 96, 172, 196, 226, 186, 225, 301, 188, 102, 34, 30, 20, 14, 5, 12, 21, 23, 39, 63, 162]}}, {"pos": 546, "top": [[",", "s", "o", ".", "er", " \u2013", "a", "en"], ["s", " \u2013", " \u2013,", "\u2013", "**\u2013", "er", ",", " \u2013**"], [",", "s", ".", "\u2013", "**\u2013", " \u2013", " \u2013,", ".\u2013"], ["---</", " **\u25cb", "\uff0a\uff0a\uff0a\uff0a", " **\u300c", " YYS", "-------------</", "\u52a0\u62ff\u5927", " ``("], ["s", " \"@", " #@", "en", "\u65b0\u52a0\u5761", " //@", "\u52c7\u5f80\u76f4\u524d", " *@"], ["s", "!\u201d.", "**!", "\u4e8b\u534a\u529f\u500d", "\u76f8\u8f85\u76f8\u6210", "\u65b0\u52a0\u5761", "siz", " (**"], ["s", "**!", "\u8eab\u4e34\u5176\u5883", "\u2019**", "\u4e2d", "\u4e0d\u53ef\u601d\u8bae", " (**", " **\u201c"], ["s", " **\u201e", "**!", " **.**", "\u8eab\u4e34\u5176\u5883", "\u52c7\u5f80\u76f4\u524d", "\u4e8b\u534a\u529f\u500d", "!\u201d."], ["s", "!\u201d.", "**!", "\u201d.", " **\u201e", "schild", "\u52c7\u5f80\u76f4\u524d", " **.**"], ["\u52c7\u5f80\u76f4\u524d", "\u76f8\u8f85\u76f8\u6210", "\u8eab\u4e34\u5176\u5883", "\u4e8b\u534a\u529f\u500d", "s", "\u5404\u79cd\u5404\u6837\u7684", "\u4e0d\u53ef\u601d\u8bae", "\u8033\u719f\u80fd\u8be6"], ["s", "\u8eab\u4e34\u5176\u5883", "\u76f8\u8f85\u76f8\u6210", "\u52c7\u5f80\u76f4\u524d", "\u2014but", "\u4e8b\u534a\u529f\u500d", "\u4e0d\u53ef\u601d\u8bae", " \"@"], [" **\u300c", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " **\u00ab", " **\u201e", "schnitt", "schrift", " \"**", "\u52c7\u5f80\u76f4\u524d"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " **\u300c", " **\u00ab", "\u52c7\u5f80\u76f4\u524d", "\u76f8\u8f85\u76f8\u6210", "s", " **\u201e", "schrift"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\u52c7\u5f80\u76f4\u524d", "\u76f8\u8f85\u76f8\u6210", "\u4e8b\u534a\u529f\u500d", "\u5404\u79cd\u5404\u6837\u7684", "\u8eab\u4e34\u5176\u5883", "\u8033\u719f\u80fd\u8be6", " **\u300c"], [" albeit", " arguably", "\u52c7\u5f80\u76f4\u524d", "\u8eab\u4e34\u5176\u5883", "\u4e0d\u53ef\u601d\u8bae", "\u76f8\u8f85\u76f8\u6210", " mostly", " nonetheless"], ["\u52c7\u5f80\u76f4\u524d", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " arguably", "\u5404\u79cd\u5404\u6837\u7684", "\u8eab\u4e34\u5176\u5883", "\u4e8b\u534a\u529f\u500d", "\u76f8\u8f85\u76f8\u6210", "\u4e0d\u53ef\u601d\u8bae"], [" arguably", "\u52c7\u5f80\u76f4\u524d", "\u8eab\u4e34\u5176\u5883", "\u5404\u79cd\u5404\u6837\u7684", "s", " mostly", " similarly", " albeit"], ["s", ",", "\u52c7\u5f80\u76f4\u524d", " arguably", "\u8eab\u4e34\u5176\u5883", " though", " nonetheless", " albeit"], ["s", " arguably", " nonetheless", " though", " albeit", " largely", "\u52c7\u5f80\u76f4\u524d", " even"], ["s", " though", " largely", " arguably", " nonetheless", " even", " perhaps", " albeit"], [" though", " largely", "though", " nonetheless", " yet", "s", " even", " much"], ["\u52c7\u5f80\u76f4\u524d", " nonetheless", " nevertheless", "\u4e8b\u534a\u529f\u500d", "\u4e0d\u53ef\u601d\u8bae", " even", " arguably", " largely"], [" nonetheless", " nevertheless", " even", " largely", " though", " yet", " arguably", " similarly"], [" though", " nevertheless", " even", " nonetheless", " yet", " largely", " still", " much"], [" though", " yet", " nonetheless", "though", "s", " even", " nevertheless", " arguably"], [" nonetheless", " nevertheless", " though", " even", " anyway", " anyways", " arguably", " albeit"], [" nonetheless", " nevertheless", " though", " even", " arguably", " yet", " ultimately", " still"], [" though", " even", " yet", " still", " arguably", " ultimately", "\n\n", " but"], [" even", " though", " yet", " **", " but", " still", " ultimately", "\u2014but"], ["\u2014but", " even", " **", " \u2014", " but", " yet", " though", " still"], [" but", " even", " though", " still", " yet", " just", " ultimately", " much"], [" even", " but", " still", " just", " yet", " much", " only", " ."], [" but", " even", " still", " just", " yet", " \u2013", " .", " only"], ["\u2014but", " but", " \u2013", " ultimately", "<|endoftext|>", " technically", " essentially", " truly"], ["\u2014but", " but", " technically", " truly", "\u2014and", " essentially", " though", " arguably"], ["\u2014but", " but", " technically", "<|endoftext|>", " \u2013", "but", "\u2014and", " BUT"], ["\u2014but", " but", " technically", " BUT", "but", "-but", " yet", "\u4f46\u8fd9\u79cd"], ["\u2014but", " but", " technically", " BUT", "but", "-but", " yet", "\u4f46\u8fd9\u79cd"], ["\u2014but", " but", " technically", " BUT", "but", "-but", "\u4f46\u8fd9\u79cd", " yet"], ["\u2014but", " but", " technically", "but", " BUT", "-but", "\u4f46\u8fd9\u79cd", " legitimately"], [" but", "\u2014but", " technically", "but", " BUT", "-but", " legitimately", " legally"], ["\u2014but", " but", " technically", "-but", " BUT", "but", " legitimately", " strictly"], [" but", " technically", "\u2014but", "-but", " BUT", " legitimately", " legally", " technical"], [" but", " technically", "\u2014but", " BUT", " strictly", " legally", "-but", " strict"], [" technically", " but", "\u2014but", " BUT", " strictly", "-but", " allowed", " legally"], [" but", " technically", "\u2014but", " BUT", "-but", " strictly", " legally", " allowed"], [" but", "\u2014but", " technically", " BUT", "-but", "but", " legally", " though"], [" but", "\u2014but", "but", " technically", " BUT", "-but", " But", " legally"], [" but", "but", "\u2014but", " BUT", "-but", " \u043d\u043e", "\u4f46\u5b83", " nh\u01b0ng"], [" but", "but", "\u2014but", "-but", " BUT", " \u043d\u043e", "\u4f46\u5b83", "\u4f46\u5176"], [" but", "but", " \u043d\u043e", "\u4f46", "\u4f46\u5b83", " nh\u01b0ng", "\u2014but", " BUT"], [" but", "but", "\u4f46", " \u043d\u043e", " BUT", "\u4f46\u5b83", " nh\u01b0ng", "\u2014but"], [" but", "but", "\u4f46", " \u043d\u043e", " BUT", " nh\u01b0ng", "\u4f46\u8981", "\u4f46\u5b83"], [" but", "but", "\u4f46", " \u043d\u043e", " nh\u01b0ng", " BUT", "\u4f46\u5b83", "\u4f46\u5bf9"], [" but", "but", " \u043d\u043e", "\u4f46", "\u4f46\u5b83", " BUT", " nh\u01b0ng", "\u4f46\u4f60"], [" but", "but", "\u4f46\u5b83", " \u043d\u043e", "\u4f46", " BUT", " nh\u01b0ng", " satisfies"], [" but", "but", "\u4f46\u5b83", " \u043d\u043e", "\u4f46", " compliant", " satisfies", " complying"], [" but", "\u4f46\u5b83", "but", " \u043d\u043e", "\u4f46", " satisfies", "\u6ee1\u8db3", " compliant"], [" but", "\u4f46\u5b83", "but", " \u043d\u043e", "\u4f46", "\u4f46\u4f60", " nh\u01b0ng", " BUT"], [" but", "but", "\u4f46\u5b83", " \u043d\u043e", " BUT", "\u4f46", "\u4f46\u4f60", " But"], [" but", "but", "\u4f46\u5b83", " \u043d\u043e", " BUT", " satisfying", " But", " even"], [" but", "but", " even", " satisfying", "\u4f46\u5b83", " which", " BUT", " \u043d\u043e"], [" but", " which", "but", " satisfying", " even", " and", " leveraging", "\u4f46\u5b83"]], "p": [[0.4344, 0.1811, 0.0969, 0.0969, 0.0588, 0.0458, 0.0357, 0.0191], [0.6932, 0.0686, 0.0443, 0.0286, 0.0209, 0.0185, 0.0119, 0.0072], [0.5576, 0.2051, 0.0588, 0.0519, 0.0168, 0.0158, 0.0149, 0.007], [0.0393, 0.021, 0.0185, 0.0144, 0.012, 0.0099, 0.0099, 0.0093], [0.6928, 0.1062, 0.0105, 0.0099, 0.0077, 0.0068, 0.006, 0.006], [0.178, 0.0578, 0.0423, 0.0373, 0.0273, 0.0213, 0.02, 0.0156], [0.8648, 0.0131, 0.0058, 0.0055, 0.0045, 0.0029, 0.0029, 0.0023], [0.7799, 0.0221, 0.0143, 0.0081, 0.0081, 0.0076, 0.0072, 0.0067], [0.6158, 0.107, 0.0211, 0.0154, 0.0113, 0.0094, 0.0094, 0.0073], [0.1877, 0.1462, 0.1069, 0.0887, 0.0649, 0.0475, 0.037, 0.0239], [0.9809, 0.0023, 0.0015, 0.0013, 0.0007, 0.0007, 0.0006, 0.0006], [0.0801, 0.0551, 0.0314, 0.0295, 0.0277, 0.023, 0.0168, 0.0148], [0.0956, 0.0657, 0.0511, 0.0424, 0.0352, 0.0257, 0.0213, 0.0138], [0.1473, 0.0309, 0.0199, 0.0129, 0.0107, 0.0094, 0.0073, 0.0069], [0.047, 0.0366, 0.0208, 0.0196, 0.0162, 0.0093, 0.0068, 0.0044], [0.0183, 0.0143, 0.0098, 0.0092, 0.0081, 0.0043, 0.0043, 0.0036], [0.0327, 0.0211, 0.0187, 0.0145, 0.0145, 0.0113, 0.0113, 0.0106], [0.0577, 0.0329, 0.029, 0.0176, 0.0129, 0.0107, 0.01, 0.0083], [0.2136, 0.0612, 0.0349, 0.0225, 0.0225, 0.0199, 0.0145, 0.012], [0.1156, 0.0846, 0.0513, 0.0399, 0.0311, 0.0258, 0.0214, 0.0189], [0.1405, 0.0244, 0.0229, 0.019, 0.019, 0.0179, 0.0148, 0.0131], [0.0295, 0.0295, 0.0277, 0.0084, 0.0084, 0.0084, 0.0066, 0.0066], [0.0945, 0.0834, 0.0288, 0.0271, 0.0254, 0.0224, 0.0186, 0.0175], [0.0593, 0.0523, 0.0461, 0.0433, 0.0407, 0.0359, 0.0338, 0.028], [0.1364, 0.0286, 0.0286, 0.0252, 0.0196, 0.0196, 0.0173, 0.0163], [0.0388, 0.0388, 0.0152, 0.0126, 0.0118, 0.0111, 0.0092, 0.0092], [0.0462, 0.036, 0.0263, 0.0247, 0.0232, 0.0181, 0.015, 0.0124], [0.1318, 0.0516, 0.0485, 0.0294, 0.0294, 0.026, 0.0244, 0.0244], [0.149, 0.0849, 0.0548, 0.0548, 0.0515, 0.0427, 0.0354, 0.0312], [0.1769, 0.0947, 0.0574, 0.0574, 0.0574, 0.0507, 0.0447, 0.0348], [0.1169, 0.091, 0.0803, 0.0626, 0.0458, 0.043, 0.0261, 0.0261], [0.1199, 0.0934, 0.0642, 0.0566, 0.0414, 0.0285, 0.0268, 0.0208], [0.1746, 0.0825, 0.0533, 0.039, 0.0303, 0.0252, 0.0222, 0.0222], [0.1118, 0.0871, 0.0678, 0.0386, 0.0301, 0.0283, 0.022, 0.022], [0.4197, 0.1202, 0.0501, 0.0127, 0.0112, 0.0099, 0.0064, 0.0064], [0.8119, 0.097, 0.0116, 0.0096, 0.0045, 0.0038, 0.0033, 0.0033], [0.6908, 0.2243, 0.0209, 0.0082, 0.0077, 0.0064, 0.0016, 0.0015], [0.56, 0.3397, 0.0279, 0.0116, 0.008, 0.0058, 0.0018, 0.0014], [0.5864, 0.3556, 0.0138, 0.0079, 0.0069, 0.0057, 0.0009, 0.0008], [0.5771, 0.35, 0.0174, 0.0136, 0.012, 0.0073, 0.0009, 0.0009], [0.603, 0.2514, 0.0561, 0.0234, 0.0142, 0.0086, 0.0017, 0.0012], [0.5625, 0.2345, 0.1255, 0.0052, 0.0038, 0.0031, 0.0028, 0.0024], [0.3248, 0.3248, 0.2232, 0.0092, 0.0087, 0.0076, 0.0056, 0.0052], [0.3737, 0.2911, 0.1765, 0.0186, 0.0136, 0.0083, 0.0078, 0.0073], [0.479, 0.2564, 0.1069, 0.0164, 0.0145, 0.0099, 0.0093, 0.0077], [0.46, 0.3162, 0.1026, 0.0229, 0.0139, 0.0062, 0.0058, 0.0058], [0.3698, 0.3698, 0.136, 0.0344, 0.0236, 0.0236, 0.0047, 0.0034], [0.8846, 0.0499, 0.0208, 0.0208, 0.0077, 0.0032, 0.0008, 0.0008], [0.981, 0.0123, 0.0051, 0.0008, 0.0003, 0.0001, 0.0001, 0.0], [0.9648, 0.033, 0.0005, 0.0003, 0.0003, 0.0002, 0.0002, 0.0001], [0.9424, 0.0532, 0.0013, 0.001, 0.0005, 0.0004, 0.0002, 0.0002], [0.9351, 0.0598, 0.0016, 0.0012, 0.0005, 0.0005, 0.0003, 0.0002], [0.9782, 0.0203, 0.0006, 0.0004, 0.0001, 0.0001, 0.0, 0.0], [0.9807, 0.018, 0.0005, 0.0005, 0.0001, 0.0001, 0.0001, 0.0], [0.9704, 0.0259, 0.0011, 0.001, 0.0007, 0.0002, 0.0001, 0.0001], [0.9548, 0.0288, 0.0106, 0.0021, 0.0018, 0.0004, 0.0002, 0.0002], [0.9419, 0.0284, 0.0134, 0.0044, 0.0018, 0.0018, 0.0011, 0.0009], [0.9281, 0.0408, 0.0218, 0.0026, 0.0014, 0.0007, 0.0007, 0.0005], [0.9709, 0.0157, 0.0095, 0.0021, 0.0005, 0.0004, 0.0001, 0.0001], [0.9959, 0.0028, 0.0007, 0.0003, 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.9988, 0.0006, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0], [0.999, 0.0002, 0.0002, 0.0002, 0.0001, 0.0001, 0.0, 0.0]], "ranks": {"Python": [30942, 170839, 47197, 128719, 29781, 70854, 28995, 53534, 76143, 128170, 54598, 104153, 109461, 142303, 117534, 175589, 153992, 141100, 165633, 174395, 133254, 188719, 168052, 110005, 74056, 107374, 71736, 26840, 17842, 9915, 10769, 9647, 16485, 18878, 50282, 54442, 78429, 53196, 59610, 47736, 37834, 56869, 59171, 52011, 39098, 24754, 33254, 33207, 65155, 58639, 23517, 3824, 6672, 11351, 5222, 1018, 385, 438, 369, 295, 191, 32, 33]}}, {"pos": 547, "top": [[".", ",", ";", "\u00a0", "\u2013", "er", "?", " \u2013"], [",", ".", "er", ";", "s", "\u2013", "\u2011", "?,"], [",", ".", ";", "\u2013", "?", "\u2026", "!", ":"], ["erias", "-------------</", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "----------</", " milfs", "erus", " Shemale", "sache"], ["er", ".", ",", "s", "!", "\u00ac", "!.", "..."], [".", "!\u201d.", ",", "er", "**!", "!.", " **\u201c", "!"], ["**!", " **", "**.", " **\"", "s", ".**", " **\u201c", "!**"], ["**!", " **", " **\u00a1", " **\"", "!**", " **\u00ab", " (**", "**."], [".", ",", "!.", "**!", "!", "s", "!\u201d.", "**."], [",", "\u5162\u5162\u4e1a\u4e1a", "\u52c7\u5f80\u76f4\u524d", "\u4e8b\u534a\u529f\u500d", "\u00ac", "\u76f8\u8f85\u76f8\u6210", "\u4e0d\u53ef\u601d\u8bae", "\u6bdb\u6cfd\u4e1c\u601d\u60f3"], [",", "s", "er", " **", "\u00ac", "ly", "\u52c7\u5f80\u76f4\u524d", "ters"], [" **", " **'", " **\u00ab", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " **+", " Shemale", "deaux", " **#"], [" **", " **\u00ab", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Shemale", "schrift", " **\u300c", "\u52c7\u5f80\u76f4\u524d", "deaux"], ["\u52c7\u5f80\u76f4\u524d", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\u4e8b\u534a\u529f\u500d", " Shemale", " **\u00ab", "deaux", "schrift", "\u5162\u5162\u4e1a\u4e1a"], [" mostly", " arguably", "\u52c7\u5f80\u76f4\u524d", " albeit", "s", " largely", " stylish", "ly"], [" arguably", " mostly", " largely", " nonetheless", "\u52c7\u5f80\u76f4\u524d", "s", " wildly", " savvy"], ["s", " mostly", " largely", " arguably", " much", " increasingly", " nonetheless", " more"], [" mostly", " largely", ",", "s", " much", " surprisingly", " often", " increasingly"], [" largely", " arguably", " increasingly", " much", "s", " mostly", " surprisingly", " ultimately"], [" largely", " arguably", " much", " increasingly", " ultimately", " surprisingly", " mostly", " uniquely"], [" much", " largely", " ultimately", " mostly", " uniquely", " increasingly", " arguably", " more"], [" increasingly", " harder", " arguably", " largely", " surprisingly", " ;;^", " nonetheless", "schrift"], [" increasingly", " much", " largely", " uniquely", " ultimately", " harder", " mostly", " arguably"], [" much", " largely", " increasingly", " mostly", " ultimately", " more", " still", " uniquely"], [" much", " largely", " arguably", " ultimately", " increasingly", " genuinely", " uniquely", " truly"], [" increasingly", " much", " ultimately", " largely", " harder", " arguably", " mostly", " truly"], [" ultimately", " much", " largely", " increasingly", " arguably", " still", " mostly", " truly"], [" much", " ultimately", " largely", " still", " more", " mostly", " truly", " arguably"], [" much", " ultimately", " largely", " truly", " essentially", " still", " increasingly", " more"], [" much", " ultimately", " more", " still", " largely", " truly", " it", " essentially"], [" much", " ultimately", " it", " more", " still", " essentially", " truly", " largely"], [" much", " more", " still", " ultimately", " it", " truly", " essentially", " just"], [" ultimately", " essentially", " still", " much", " truly", " genuinely", " fully", " it"], [" truly", " ultimately", " essentially", " genuinely", " technically", " fundamentally", " effectively", " heavily"], [" technically", " truly", " essentially", " genuinely", " ultimately", " effectively", " fundamentally", " fully"], [" technically", " essentially", " truly", " fundamentally", " genuinely", " effectively", " physically", " technical"], [" technically", " essentially", " fundamentally", " effectively", " genuinely", " truly", " physically", " technical"], [" technically", " essentially", " fundamentally", " genuinely", " truly", " physically", " effectively", " technical"], [" technically", " essentially", " physically", " fundamentally", " genuinely", " technical", " truly", " effectively"], [" technically", " physically", " hardware", " essentially", " technical", " fundamentally", " genuinely", " truly"], [" technically", " hardware", " technical", " physically", " essentially", " fundamentally", " genuinely", " actually"], [" technically", " hardware", " physically", " technical", " essentially", " fundamentally", " engineering", " engineered"], [" technically", " hardware", " technical", " physically", " fundamentally", " essentially", " engineering", " engineered"], [" technically", " hardware", " physically", " technical", " fundamentally", " essentially", " engineered", " engineering"], [" technically", " hardware", " physically", " fundamentally", " internally", " essentially", " engineered", " technical"], [" technically", " hardware", " physically", " fundamentally", " essentially", " internally", " engineered", " effectively"], [" technically", " hardware", " fundamentally", " internally", " physically", " crucial", " effectively", " leveraging"], [" crucial", " technically", " physically", " hardware", " fundamentally", " actual", " internally", " essential"], [" crucial", " technically", " hardware", " physically", " fundamentally", " internally", " leveraging", " realistically"], [" crucial", " technically", " realistically", " physically", " hardware", " actual", " leveraging", " internally"], [" crucial", "\u5b9e\u9645\u9700\u8981", "\u5173\u952e\u73af\u8282", " leveraging", " technically", "\u5173\u952e\u5728\u4e8e", "\u9aa8\u5b50\u91cc", " requires"], [" crucial", " internals", " technically", " leveraging", " hardware", "\u5173\u952e\u5728\u4e8e", "\u7684\u5173\u952e", "\u95dc\u9375"], [" internals", " internally", " hardware", " leveraging", " crucial", " runtime", " relies", " technically"], [" leveraging", " internals", " runtime", " hardware", " relies", " internally", " crucial", "runtime"], [" internals", " internally", " runtime", " backend", "runtime", "Intern", "/runtime", " violates"], [" runtime", " internals", "runtime", " internally", " it", "/runtime", "-runtime", "\u5b83\u5c06"], [" runtime", " internals", "runtime", "/runtime", " it", " internally", "-runtime", " backend"], [" runtime", " it", "/runtime", "runtime", " execution", "-runtime", "\u5e95\u5c42", " internals"], [" runtime", " performance", " it", "performance", " execution", "/runtime", "runtime", "-performance"], [" performance", " it", " execution", " runtime", " shifts", " engine", " critical", "performance"], [" it", " performance", " execution", " runtime", " shifts", " critical", " renders", " engine"], [" it", " shifts", " the", " execution", " performance", " renders", " executes", " critical"], [" it", " the", " shifts", " execution", " performance", " comput", " under", " technically"]], "p": [[0.5597, 0.4359, 0.0016, 0.0006, 0.0005, 0.0005, 0.0004, 0.0001], [0.7342, 0.0933, 0.0184, 0.0126, 0.0053, 0.0049, 0.0021, 0.0011], [0.7955, 0.2011, 0.002, 0.0006, 0.0002, 0.0002, 0.0001, 0.0], [0.0048, 0.0045, 0.004, 0.0029, 0.0027, 0.0027, 0.0026, 0.0019], [0.2807, 0.1411, 0.1099, 0.0488, 0.0131, 0.0096, 0.0038, 0.0033], [0.0889, 0.0307, 0.0211, 0.0175, 0.0154, 0.012, 0.0113, 0.0083], [0.1951, 0.0559, 0.0435, 0.0361, 0.0361, 0.0361, 0.0339, 0.0319], [0.0971, 0.0357, 0.0231, 0.0169, 0.0102, 0.0085, 0.0085, 0.008], [0.3492, 0.2118, 0.0607, 0.0444, 0.0417, 0.0093, 0.0087, 0.0082], [0.2588, 0.005, 0.0047, 0.0039, 0.0027, 0.0025, 0.0022, 0.002], [0.0604, 0.0366, 0.0285, 0.0162, 0.0143, 0.0093, 0.0041, 0.0041], [0.15, 0.0123, 0.0109, 0.0079, 0.0079, 0.0055, 0.0055, 0.0045], [0.0353, 0.0312, 0.0201, 0.013, 0.007, 0.0051, 0.0048, 0.004], [0.0156, 0.01, 0.0054, 0.0045, 0.0042, 0.0039, 0.0031, 0.0027], [0.0182, 0.0091, 0.0067, 0.0067, 0.0067, 0.0034, 0.0034, 0.0034], [0.0171, 0.0142, 0.0086, 0.0046, 0.0038, 0.0038, 0.0032, 0.0028], [0.0707, 0.019, 0.0131, 0.0123, 0.0048, 0.0042, 0.004, 0.0035], [0.0211, 0.0136, 0.0136, 0.01, 0.0078, 0.0061, 0.0061, 0.0057], [0.0309, 0.0256, 0.0156, 0.0114, 0.0107, 0.0107, 0.01, 0.0083], [0.0438, 0.0207, 0.0207, 0.0194, 0.0142, 0.0118, 0.0111, 0.0081], [0.0363, 0.0321, 0.0161, 0.0142, 0.0134, 0.0126, 0.0118, 0.0104], [0.0036, 0.0034, 0.0023, 0.0023, 0.0022, 0.0019, 0.0019, 0.0018], [0.0158, 0.0102, 0.0102, 0.007, 0.0066, 0.0066, 0.0066, 0.0062], [0.0517, 0.0314, 0.0216, 0.0179, 0.0179, 0.0158, 0.0131, 0.0102], [0.0442, 0.0323, 0.0209, 0.0184, 0.0184, 0.0173, 0.0144, 0.0135], [0.0277, 0.0216, 0.0168, 0.0168, 0.0123, 0.0123, 0.0102, 0.0102], [0.0356, 0.0277, 0.0245, 0.0203, 0.0158, 0.0139, 0.0139, 0.0131], [0.0686, 0.0443, 0.0305, 0.0237, 0.0223, 0.0197, 0.0174, 0.0153], [0.0617, 0.0511, 0.031, 0.0291, 0.0227, 0.0213, 0.0177, 0.0177], [0.0705, 0.0485, 0.0333, 0.0313, 0.0276, 0.026, 0.0244, 0.0202], [0.0777, 0.0471, 0.0391, 0.0367, 0.0345, 0.0269, 0.0269, 0.0196], [0.0733, 0.0418, 0.0392, 0.0346, 0.027, 0.0238, 0.021, 0.0174], [0.0628, 0.0358, 0.0262, 0.0262, 0.0246, 0.0204, 0.0204, 0.0191], [0.0762, 0.0632, 0.0632, 0.0558, 0.0383, 0.0232, 0.0205, 0.016], [0.096, 0.0748, 0.0702, 0.0582, 0.0275, 0.0201, 0.0189, 0.0189], [0.2709, 0.0643, 0.039, 0.0304, 0.0304, 0.0286, 0.0184, 0.0163], [0.4261, 0.0542, 0.035, 0.0329, 0.0309, 0.0187, 0.0176, 0.0176], [0.4049, 0.0484, 0.0454, 0.0354, 0.0293, 0.0259, 0.0243, 0.0215], [0.4886, 0.0377, 0.0312, 0.0293, 0.0259, 0.0243, 0.0228, 0.0189], [0.4618, 0.0457, 0.043, 0.0379, 0.0356, 0.0261, 0.0191, 0.0139], [0.4285, 0.0844, 0.058, 0.0424, 0.033, 0.0188, 0.0122, 0.0095], [0.3136, 0.1902, 0.0512, 0.0481, 0.0257, 0.0213, 0.02, 0.0156], [0.34, 0.1606, 0.049, 0.0432, 0.0262, 0.0217, 0.0204, 0.018], [0.2658, 0.1612, 0.0434, 0.0408, 0.0383, 0.0317, 0.0247, 0.0247], [0.2661, 0.0864, 0.0462, 0.0434, 0.036, 0.0338, 0.028, 0.0263], [0.2421, 0.0786, 0.0477, 0.0395, 0.0371, 0.0272, 0.0225, 0.0212], [0.206, 0.0807, 0.046, 0.0432, 0.0432, 0.0381, 0.0262, 0.0246], [0.2114, 0.1131, 0.0686, 0.0534, 0.0502, 0.0443, 0.0443, 0.0223], [0.2524, 0.1351, 0.0467, 0.0467, 0.0364, 0.0283, 0.0266, 0.0172], [0.1333, 0.076, 0.049, 0.0461, 0.0433, 0.0359, 0.0297, 0.0279], [0.0727, 0.0365, 0.0267, 0.0236, 0.0236, 0.0236, 0.0222, 0.0173], [0.0669, 0.0358, 0.0358, 0.0336, 0.0336, 0.0279, 0.0246, 0.0246], [0.1171, 0.0805, 0.0667, 0.0405, 0.0335, 0.0335, 0.0296, 0.0245], [0.1052, 0.0929, 0.0563, 0.0364, 0.0364, 0.0283, 0.0221, 0.0195], [0.3472, 0.1858, 0.0995, 0.0366, 0.0366, 0.0184, 0.0143, 0.0135], [0.3289, 0.1068, 0.0734, 0.0648, 0.0504, 0.0504, 0.0347, 0.0186], [0.4025, 0.0617, 0.0545, 0.0545, 0.0398, 0.0213, 0.0213, 0.0177], [0.4442, 0.1123, 0.0601, 0.0531, 0.0322, 0.0251, 0.0143, 0.0126], [0.3121, 0.1301, 0.1013, 0.0329, 0.0329, 0.029, 0.0256, 0.0226], [0.3209, 0.2832, 0.0558, 0.0492, 0.0318, 0.0205, 0.017, 0.016], [0.7438, 0.0611, 0.042, 0.0175, 0.012, 0.0094, 0.0073, 0.006], [0.9493, 0.0105, 0.0044, 0.0034, 0.0022, 0.0021, 0.0016, 0.0011], [0.8762, 0.0924, 0.016, 0.0013, 0.0011, 0.0007, 0.0005, 0.0005]], "ranks": {"Python": [34114, 205267, 78893, 138976, 56408, 33017, 5377, 37898, 22186, 102355, 75738, 147299, 122343, 94952, 86516, 141289, 162235, 136169, 182725, 203162, 158555, 200976, 167888, 127035, 138423, 117335, 82800, 41558, 44141, 28022, 23212, 18735, 18567, 9412, 13375, 5465, 4803, 4583, 4245, 2236, 1744, 2270, 2931, 4372, 6013, 6439, 8639, 8790, 21301, 38297, 61486, 17880, 22181, 21576, 4890, 1670, 525, 684, 670, 721, 504, 118, 67]}}, {"pos": 548, "top": [[".", ",", "\u2013", ";", " \u2013", "\u00a0", "\u00a0\u00a0", ":"], [",", "\u2013", " \u2013", ".", ";", "\u2013and", " ", ":"], [",", ".", "\u2013", " \u2013", ";", "\u2026", "\u2026.", ".\u2013"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " milfs", "-------------</", "----------</", " Shemale", "TRGL", " ;;^", " Blowjob"], [".", ",", " \"@", "\u00a0\u00a0", ".@", " \u201c.", ":", "(@"], [".", ",", "!\u201d.", " \u200b\u200b", " \u201c.", "\u00a0\u00a0", " **\u201c", "\u2026."], [" **\"", " **\u201c", ".", "   \n", ".\u201d", "orton", "  \n", ".\u2019"], [" **\"", "   \n", " **\u201e", "   \r\n", "  \r\n", " *@", "\u4e94\u989c\u516d\u8272\u7684", " **\u20ac"], [".", ",", "\u00a0", "  \n\n", "   \n", "   \n\n", "!\u201d.", " \n\n"], [",", "\u00a0", "\u00a0\u00a0", "\u2013", " \u00ad", ".", "\u2013and", "\u00ad"], [",", "\u00a0", ".", "...", " ", " \u00ad", "\u2013", "\u2026"], [" stuff", " **", " guts", " savvy", "-ish", " goodies", " showcase", "\u6587\u5316\u4e2d\u5fc3"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\u663e\u7740", " impactful", " stuff", "\u5e97\u94fa\u7ecf\u8425\u8005", "-ish", " **\u00ab", "\u52c7\u5f80\u76f4\u524d"], [" savvy", "\u52c7\u5f80\u76f4\u524d", "\u708e\u708e\u590f\u65e5", " visuals", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "-ish", " showcase", "\u505a\u5f97\u66f4\u597d"], [" stuff", " savvy", " goodies", " folks", " Philly", " tweaked", " guys", "\u521b\u65b0\u53d1\u5c55"], [" folks", " savvy", " kids", " stuff", " pricey", " touted", " incredibly", " goodies"], [" folks", " savvy", "-esque", " incredibly", " tweaks", " tweaked", " guts", " kids"], [" savvy", " folks", " tweaks", " tweaked", "\u5de5\u4f5c\u53ca", " stuff", "\u3082\u3057\u3063\u304b\u308a", " guts"], [" savvy", "\u5de5\u4f5c\u53ca", " tweaks", "\u8ddf\u4ed6\u4eec", "\u60f3\u5c3d", " folks", "\u4e8b\u513f", " stuff"], ["\u4ed6\u8ddf", " savvy", "\u4e94\u82b1\u516b", "\u6b64\u756a", " myriad", " folks", "\u9aa8\u5b50\u91cc", "\u8ddf\u4ed6\u4eec"], [" myriad", " ultimately", " hugely", " genuinely", " much", " truly", "\u305d\u3046\u3057\u305f", " folks"], [" ;;^", "\u5f88\u591a\u4e1c\u897f", "\u54e5\u534e", "\u8ddf\u4ed6\u4eec", " Geile", " Teixe", " \u03cc\u03bb\u03b5", " ``"], [" ``", " ;;^", " ''", " stuff", "\u5f88\u591a\u4e1c\u897f", "\u9aa8\u5b50\u91cc", "\u5de5\u4f5c\u53ca", " ultimately"], [" ``", " ''", " much", " ultimately", " parts", " eventually", " --", " work"], [" myriad", " ultimately", " ``", " hugely", " arguably", " much", " ''", " \n\n"], [" ;;^", " ``", " hardware", " technology", " technologies", " infrastructure", " stuff", " \u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435"], [" hardware", " technology", " infrastructure", " technologies", " ``", " ;;^", " ultimately", " work"], [" ultimately", " much", " work", " parts", " eventually", " ,", " ''", " mostly"], [" ultimately", " technology", " work", " hardware", " parts", " much", " technologies", " systems"], [" work", " technology", " hardware", " ultimately", " technologies", " much", " parts", " systems"], [" work", " technology", " hardware", " parts", " technologies", " much", " ultimately", " production"], [" work", " parts", " much", " technology", " ultimately", " production", " complex", " ,"], [" work", " ultimately", " technology", " \"", " parts", " much", " actually", " physical"], [" hardware", " technology", " tech", " infrastructure", " technologies", " technically", " complex", " core"], [" hardware", " tech", " technology", " infrastructure", " technically", " core", " technical", " technologies"], [" hardware", " technical", " technology", " tech", " infrastructure", " technically", " \u201c", " physical"], [" hardware", " technical", " technology", " tech", " technically", " infrastructure", " core", " engine"], [" hardware", " technical", " technology", " infrastructure", " performance", " core", " tech", " technically"], [" hardware", " technical", " performance", " core", " technology", " engine", " technically", " execution"], [" hardware", " performance", " core", " technical", " technology", " execution", " engine", " physical"], [" hardware", " performance", " core", " technical", " engine", " execution", " technology", " software"], [" hardware", " performance", " engine", " core", " execution", " optimized", " software", " technical"], [" hardware", " performance", " core", " engine", " optimized", " execution", " technical", " engines"], [" hardware", " performance", " engine", " core", " execution", " engines", " optimized", " software"], [" hardware", " core", " performance", " engine", " execution", " internals", " engines", " critical"], [" hardware", " core", " engine", " performance", " internals", " execution", " critical", " physics"], [" hardware", " core", " engine", " actual", " execution", " internals", " performance", " critical"], [" hardware", " core", " actual", " crucial", " internals", " engine", " critical", " physics"], [" hardware", " core", " internals", " crucial", " actual", " engine", " physics", " critical"], [" actual", " hardware", "\u5173\u952e\u73af\u8282", " internals", " core", "actual", " crucial", "\u95dc\u9375"], ["\u5173\u952e\u73af\u8282", " hardware", "\u95dc\u9375", "\u5173\u952e\u7684", "\u5173\u952e\u6280\u672f", "\u5173\u952e", "\u6838\u5fc3\u6280\u672f", " actual"], [" internals", " hardware", "\u5173\u952e\u73af\u8282", "\u5173\u952e", " runtime", " core", "\u95dc\u9375", "\u5173\u952e\u6280\u672f"], [" runtime", " internals", " hardware", " execution", " bottleneck", " critical", "\u5173\u952e", "\u5173\u952e\u73af\u8282"], [" runtime", " bottleneck", " execution", " internals", " heavy", " critical", " hardware", "runtime"], [" runtime", " bottleneck", " internals", " execution", "runtime", " workload", " CPU", " heavy"], [" runtime", " bottleneck", " execution", "runtime", " CPU", " heavy", " workload", " internals"], [" runtime", " critical", " bottleneck", "critical", " heavy", "Critical", "_critical", " CPU"], [" runtime", " heavy", " critical", " execution", " bottleneck", " CPU", "critical", "Critical"], [" critical", " hot", "critical", "Critical", "_critical", " Critical", " krit", " hotspot"], [" hot", " heavy", " critical", " hotspot", " performance", "-hot", " execution", " Hot"], [" hot", " heavy", " critical", " performance", " hotspot", " execution", " runtime", " CPU"], [" hot", " heavy", " critical", " performance", " hotspot", " execution", " bottleneck", " runtime"], [" heavy", " critical", " hot", " performance", " execution", " hotspot", " bottleneck", " runtime"]], "p": [[0.7518, 0.2441, 0.0013, 0.001, 0.0009, 0.0002, 0.0002, 0.0001], [0.3149, 0.2303, 0.2164, 0.1583, 0.013, 0.0035, 0.0024, 0.0012], [0.54, 0.4206, 0.0345, 0.0019, 0.0012, 0.0006, 0.0004, 0.0001], [0.0109, 0.0071, 0.004, 0.004, 0.0023, 0.002, 0.0016, 0.0016], [0.2395, 0.1282, 0.0105, 0.0087, 0.0056, 0.0053, 0.0036, 0.0027], [0.0298, 0.0141, 0.0141, 0.008, 0.0043, 0.0036, 0.0033, 0.0028], [0.1379, 0.1143, 0.0289, 0.0121, 0.0113, 0.01, 0.0088, 0.0069], [0.0496, 0.0301, 0.0098, 0.0086, 0.0071, 0.0067, 0.0036, 0.0032], [0.576, 0.0883, 0.0325, 0.0223, 0.0154, 0.0154, 0.0135, 0.0073], [0.6563, 0.0154, 0.0064, 0.005, 0.0047, 0.0029, 0.0016, 0.0014], [0.486, 0.2296, 0.1392, 0.0545, 0.0375, 0.0045, 0.0042, 0.0039], [0.0026, 0.0025, 0.0025, 0.0022, 0.0014, 0.0013, 0.0012, 0.0012], [0.0048, 0.0014, 0.0014, 0.0014, 0.0014, 0.0013, 0.0011, 0.0011], [0.0011, 0.001, 0.001, 0.0009, 0.0009, 0.0008, 0.0008, 0.0008], [0.0113, 0.0077, 0.0032, 0.0029, 0.0027, 0.0022, 0.0018, 0.0015], [0.026, 0.0123, 0.0074, 0.0048, 0.0035, 0.0033, 0.0033, 0.0029], [0.0195, 0.0162, 0.0052, 0.0041, 0.0032, 0.0032, 0.0028, 0.0026], [0.0072, 0.003, 0.0022, 0.0021, 0.0017, 0.0014, 0.0014, 0.0013], [0.0049, 0.002, 0.0018, 0.0016, 0.0015, 0.0015, 0.0015, 0.0014], [0.0022, 0.002, 0.002, 0.0019, 0.0018, 0.0016, 0.0016, 0.0015], [0.0052, 0.0045, 0.0033, 0.0033, 0.0029, 0.0019, 0.0016, 0.0016], [0.0163, 0.0016, 0.0015, 0.0012, 0.0012, 0.0011, 0.001, 0.0009], [0.0147, 0.0089, 0.0042, 0.0022, 0.0012, 0.0011, 0.0011, 0.0008], [0.0451, 0.0107, 0.0089, 0.0074, 0.0035, 0.0024, 0.0021, 0.0021], [0.0064, 0.006, 0.006, 0.0057, 0.0057, 0.0047, 0.0039, 0.0037], [0.0114, 0.0054, 0.0051, 0.0037, 0.0031, 0.0031, 0.0025, 0.0015], [0.0075, 0.0075, 0.0043, 0.004, 0.004, 0.0038, 0.0038, 0.0035], [0.0211, 0.0186, 0.0136, 0.01, 0.0094, 0.0068, 0.0068, 0.005], [0.029, 0.0212, 0.0212, 0.0155, 0.0113, 0.0113, 0.0107, 0.0065], [0.0658, 0.0452, 0.0258, 0.0201, 0.0177, 0.0122, 0.0114, 0.0089], [0.0892, 0.0576, 0.0225, 0.0212, 0.0155, 0.0137, 0.0121, 0.01], [0.0867, 0.0193, 0.0193, 0.0182, 0.0133, 0.0091, 0.0076, 0.0071], [0.0395, 0.0272, 0.0145, 0.0128, 0.0113, 0.0106, 0.01, 0.0094], [0.1659, 0.0736, 0.0447, 0.0288, 0.0271, 0.0175, 0.0164, 0.0154], [0.2324, 0.0855, 0.0625, 0.043, 0.0261, 0.023, 0.0191, 0.0131], [0.543, 0.069, 0.0505, 0.037, 0.0198, 0.0186, 0.0145, 0.0128], [0.5215, 0.0906, 0.0333, 0.0313, 0.0294, 0.019, 0.0131, 0.0123], [0.4413, 0.1116, 0.0362, 0.03, 0.0265, 0.0171, 0.0161, 0.0151], [0.3296, 0.107, 0.0944, 0.0475, 0.0307, 0.0198, 0.0198, 0.0164], [0.4788, 0.0734, 0.0648, 0.0418, 0.0254, 0.0198, 0.0164, 0.0128], [0.4212, 0.1368, 0.0473, 0.0325, 0.0287, 0.0253, 0.0197, 0.0163], [0.4083, 0.2185, 0.0709, 0.0335, 0.0179, 0.0158, 0.0123, 0.0109], [0.3638, 0.1517, 0.0716, 0.0716, 0.017, 0.015, 0.0117, 0.0117], [0.2909, 0.1557, 0.107, 0.107, 0.0198, 0.0145, 0.01, 0.01], [0.2768, 0.1679, 0.0899, 0.0793, 0.0274, 0.0166, 0.0122, 0.0114], [0.3055, 0.1853, 0.044, 0.0388, 0.0221, 0.0208, 0.0143, 0.0134], [0.3472, 0.1858, 0.0344, 0.0251, 0.0196, 0.0184, 0.0162, 0.0162], [0.2472, 0.2472, 0.0625, 0.0335, 0.0295, 0.0261, 0.023, 0.0179], [0.2566, 0.1212, 0.0649, 0.0347, 0.0326, 0.0288, 0.0186, 0.0175], [0.2843, 0.1185, 0.0719, 0.0385, 0.03, 0.0264, 0.0248, 0.0193], [0.1685, 0.0454, 0.0454, 0.0426, 0.04, 0.04, 0.0353, 0.0293], [0.1316, 0.1316, 0.0704, 0.0621, 0.0548, 0.0484, 0.0484, 0.0377], [0.3342, 0.1579, 0.0581, 0.0399, 0.0352, 0.0311, 0.0274, 0.0214], [0.3268, 0.2246, 0.1061, 0.0644, 0.0304, 0.0184, 0.0163, 0.0127], [0.6185, 0.2008, 0.0308, 0.0308, 0.0187, 0.0128, 0.0128, 0.0047], [0.756, 0.0797, 0.0228, 0.0178, 0.0138, 0.0122, 0.0122, 0.0108], [0.3394, 0.2333, 0.1102, 0.059, 0.0405, 0.0316, 0.0279, 0.0279], [0.4876, 0.1583, 0.096, 0.0847, 0.0243, 0.0243, 0.0167, 0.0101], [0.7498, 0.079, 0.0543, 0.0423, 0.0257, 0.0176, 0.0051, 0.0045], [0.6988, 0.1376, 0.0737, 0.0307, 0.0271, 0.0037, 0.0029, 0.0029], [0.383, 0.338, 0.1097, 0.0666, 0.0356, 0.0245, 0.007, 0.0062], [0.2882, 0.2882, 0.1981, 0.0567, 0.0501, 0.0442, 0.0119, 0.0099], [0.2613, 0.2306, 0.2306, 0.0848, 0.0483, 0.0243, 0.0215, 0.013]], "ranks": {"Python": [45182, 174394, 109621, 192256, 37263, 101105, 4669, 79910, 26378, 79268, 21507, 35355, 38796, 72010, 42253, 89013, 153541, 164141, 179428, 199056, 105551, 163497, 133051, 77537, 50556, 59284, 28897, 10806, 10541, 7522, 7798, 8857, 9603, 4520, 4188, 1119, 915, 912, 1252, 540, 366, 552, 567, 792, 766, 887, 951, 907, 1285, 4861, 8348, 2118, 3400, 6052, 2586, 1558, 477, 522, 695, 843, 623, 164, 105]}}, {"pos": 549, "top": [[".", ",", "-", "ting", "\u00a0", " \u2013", "\u2026", "\u2013"], ["ting", "very", " VERY", ",", "\u2013", " *@", " HIT", " \u2013"], [",", "\u2013", ".", " \u2013", "\u2013and", ".\u2013", "\u2026..", "\u2026"], [" Guta", "ting", " Strec", " Hidal", "letin", "\u54e5\u534e", "*\u201c.", " milfs"], ["ting", " HOT", "tem", "bed", " \u201c", "-hot", " Guta", " HIT"], ["ting", "-hot", "tem", "-HT", " Guta", " HOT", "\ud83d\ude00", "-debug"], ["ting", "-hot", "-&", " *@", "-HT", "shot", "bies", " *&"], ["ting", " *@", "-HT", "bies", "-hot", "shot", "ness", "-&"], ["ting", " *@", "ness", "bies", "-HT", "-&", "shot", " *&"], ["ting", "-&", "-HT", "-hot", " *@", "shot", "mary", "ness"], ["ting", "-&", " *@", "-hot", "ty", " #@", "ness", " @$"], ["ting", "-HT", " *@", "-hot", "ness", "shot", " comfy", "bies"], ["ting", "ness", "shot", "bies", "-HT", " comfy", "-tech", "htag"], ["ting", "ness", "shot", "-tech", "-HT", "-hot", "bies", " comfy"], ["ting", "-tech", "ness", " busted", "-&", "shot", " comfy", "stuff"], ["ting", "-tech", " comfy", " busted", " veggies", "stuff", "ness", " skinny"], ["ting", "-tech", "ness", "-hot", "tech", "stuff", " tech", "lights"], ["ting", "-tech", "-hot", "tech", "lights", "shot", "bies", "-HT"], ["ting", "-tech", "-hot", "-HT", "-&", "stuff", "shot", "tech"], ["ting", "-&", "-hot", "ty", " \ufffd", "stuff", "-tech", "lights"], [" \n\n", "ting", " \n\n\n", "  \n\n", "\n\n", " \r\n\r\n", "   \n\n", "HOT"], ["ting", "htag", "htags", "bucks", "bies", "lights", "-hot", "kins"], ["ting", "htag", "-hot", "bucks", "lights", "shot", "bies", " \ufffd"], ["ting", "-hot", "lights", "HOT", "shot", "ness", "stuff", "nty"], [" \n\n", " \r\n\r\n", "  \n\n", "   \n\n", "\r\n\r\n", "\n\n", "\t\n\n", "     \n\n"], [" \ufffd", "ting", "-tech", "shot", "htag", " <+", "lights", " \u2764"], [" \ufffd", "ting", "htag", "-tech", "shot", "lights", " workflows", " <+"], [" \n\n", "\n\n", " \r\n\r\n", " \ufffd", "\r\n\r\n", "ting", "  \n\n", " tech"], [" \ufffd", "ting", "-tech", " tech", " workflows", "lights", " sweaty", "tech"], ["ting", " workflows", " tech", " \ufffd", "lights", " sweaty", "-tech", " hotter"], [" workflows", " tech", "ting", " hotter", "lights", " engine", "\u5173\u952e\u73af\u8282", "-tech"], [" workflows", " tech", " \ufffd", " shit", "ting", " engine", " burn", "lights"], [" tech", " shit", " hot", " engine", "ting", " HOT", " burn", " stuff"], [" tech", " workflows", " \ufffd", "-tech", "tech", "shit", "-hot", " shit"], [" tech", " \ufffd", "shit", "tech", "-tech", " workflows", " HOT", " shit"], [" \ufffd", " tech", " HOT", " workflows", "tech", "-tech", "shit", " shit"], [" tech", " workflows", " \ufffd", " HOT", " hotter", " hottest", "-hot", "shit"], [" workflows", " HOT", " tech", " \ufffd", " hotter", " hottest", " shit", "shit"], [" workflows", " bottleneck", " tech", " HOT", " optimizations", " hottest", " workflow", " engine"], [" workflows", " bottleneck", " HOT", " hottest", " loop", " optimizations", " workflow", " loops"], [" workflows", " bottleneck", " loop", " workflow", " optimizations", " fastest", " loops", " CPU"], [" workflows", " bottleneck", " loops", " loop", " optimizations", " workflow", " throughput", " CPU"], [" loops", " loop", " workflows", " bottleneck", " workflow", "-loop", " optimizations", " circuits"], [" loop", " loops", " workflows", " bottleneck", "-loop", " workflow", " cycles", " cycle"], [" loops", " loop", " workflows", "-loop", " bottleneck", " workflow", " cycles", " cycle"], [" loop", " loops", "-loop", " workflows", " bottleneck", " cycles", "\u5173\u952e\u73af\u8282", " workflow"], [" loops", " loop", "-loop", " workflows", " bottleneck", " workflow", "\u5173\u952e\u73af\u8282", "loops"], [" loops", " loop", "-loop", " workflows", " bottleneck", "\u5173\u952e\u73af\u8282", " workflow", " circuits"], ["-loop", " loops", " workflows", "\u5173\u952e\u73af\u8282", " loop", "-core", "-speed", "loops"], ["-loop", " loops", " workflows", "\u5173\u952e\u73af\u8282", " loop", "-core", "-hot", "-cycle"], ["-loop", "-speed", "-hot", " loops", "-fast", " workflows", "-debug", "-core"], ["-loop", " loops", "-core", "-debug", "-fast", " loop", "/fast", "\u70c8\u706b"], ["izontal", "-loop", "\u817e\u817e", "-fast", "-hot", "-core", " loops", "kest"], [" loops", "-loop", " loop", " pipeline", "izontal", "RunLoop", "-hot", " runtime"], [" loop", " loops", "-loop", "loop", "loops", "_loop", "Loop", "_LOOP"], ["-loop", " loop", " loops", "-path", " paths", "loop", "\u8def\u5f84", " path"], ["-path", " paths", "-loop", " loop", " loops", " path", "\u8def\u5f84", "path"], ["-path", " loop", " loops", "-loop", " paths", " path", "\u8def\u5f84", "-hot"], ["-path", " path", " paths", "\u8def\u5f84", "path", " pathway", "Path", " loop"], [" path", "-path", " loop", " paths", " loops", "path", "-loop", "\u8def\u5f84"], [" path", "-path", "path", " loop", " paths", "Path", " loops", " Path"], [" path", "-path", " loop", "path", " paths", " Path", "Path", "\u8def\u5f84"], [" path", "-path", " loop", "path", " paths", "Path", "\u8def\u5f84", " Path"]], "p": [[0.7689, 0.1716, 0.0263, 0.0055, 0.0024, 0.0014, 0.0014, 0.0013], [0.3804, 0.0147, 0.0074, 0.0074, 0.0061, 0.0054, 0.0048, 0.0045], [0.4257, 0.3315, 0.1382, 0.0653, 0.0039, 0.0031, 0.0022, 0.0017], [0.0141, 0.0026, 0.0025, 0.0023, 0.002, 0.0019, 0.0018, 0.0018], [0.0519, 0.0116, 0.0116, 0.007, 0.0055, 0.0055, 0.0051, 0.0048], [0.0716, 0.0263, 0.0117, 0.0117, 0.0086, 0.008, 0.0055, 0.0055], [0.3602, 0.0168, 0.0158, 0.0109, 0.008, 0.0051, 0.0045, 0.0043], [0.4886, 0.0276, 0.0115, 0.0065, 0.0054, 0.0051, 0.0048, 0.004], [0.5611, 0.0279, 0.0071, 0.0059, 0.0059, 0.0043, 0.0043, 0.0036], [0.1266, 0.0207, 0.0111, 0.0098, 0.0098, 0.0052, 0.0052, 0.0049], [0.4158, 0.0679, 0.0207, 0.0172, 0.0092, 0.0072, 0.0063, 0.0052], [0.064, 0.006, 0.0056, 0.0056, 0.0046, 0.0036, 0.0028, 0.0028], [0.1183, 0.0125, 0.0052, 0.0049, 0.0038, 0.0038, 0.003, 0.0026], [0.1676, 0.0089, 0.0061, 0.0061, 0.0051, 0.0042, 0.0039, 0.0037], [0.1661, 0.0094, 0.0064, 0.0053, 0.0053, 0.0053, 0.0047, 0.0042], [0.0391, 0.0064, 0.0056, 0.0044, 0.0036, 0.0034, 0.0032, 0.0028], [0.3436, 0.0161, 0.0133, 0.0097, 0.0067, 0.0063, 0.0063, 0.0049], [0.1823, 0.0382, 0.0181, 0.0103, 0.0075, 0.0075, 0.0062, 0.0052], [0.1169, 0.0191, 0.014, 0.0055, 0.0055, 0.0048, 0.0043, 0.0043], [0.1129, 0.0099, 0.0093, 0.0056, 0.005, 0.0039, 0.0034, 0.0034], [0.0808, 0.0669, 0.0246, 0.0192, 0.0192, 0.018, 0.0116, 0.0091], [0.0206, 0.0182, 0.0059, 0.0055, 0.0038, 0.0036, 0.0034, 0.0032], [0.0367, 0.0099, 0.0072, 0.0064, 0.0056, 0.0041, 0.0032, 0.003], [0.0569, 0.0135, 0.006, 0.0053, 0.005, 0.0047, 0.0034, 0.0032], [0.1552, 0.1135, 0.0608, 0.0536, 0.0346, 0.0164, 0.0136, 0.012], [0.0165, 0.0094, 0.0053, 0.0047, 0.0044, 0.0042, 0.0039, 0.0037], [0.0152, 0.0092, 0.0046, 0.0044, 0.0041, 0.0041, 0.0038, 0.0034], [0.0824, 0.0532, 0.0268, 0.0251, 0.0173, 0.0112, 0.0082, 0.0072], [0.0151, 0.0091, 0.0086, 0.0076, 0.0063, 0.0063, 0.0055, 0.0046], [0.015, 0.0132, 0.0132, 0.008, 0.0075, 0.0059, 0.0055, 0.0043], [0.0202, 0.0157, 0.0108, 0.0062, 0.0054, 0.0051, 0.0045, 0.0045], [0.0254, 0.021, 0.0145, 0.0136, 0.0106, 0.0082, 0.006, 0.005], [0.0412, 0.0172, 0.0126, 0.0104, 0.0086, 0.0076, 0.0072, 0.0056], [0.0312, 0.0138, 0.013, 0.0101, 0.0074, 0.0074, 0.0065, 0.0065], [0.0256, 0.0114, 0.0107, 0.0107, 0.0083, 0.0078, 0.0065, 0.0054], [0.0522, 0.0218, 0.0109, 0.0097, 0.0085, 0.0085, 0.0085, 0.0059], [0.0228, 0.0189, 0.0189, 0.0167, 0.0108, 0.0095, 0.0079, 0.0069], [0.034, 0.0182, 0.0182, 0.0097, 0.0081, 0.0071, 0.0071, 0.0063], [0.0797, 0.0178, 0.0167, 0.0115, 0.0101, 0.0089, 0.0084, 0.0074], [0.0686, 0.0416, 0.0144, 0.0135, 0.0127, 0.0119, 0.0119, 0.0099], [0.1409, 0.1168, 0.0261, 0.0245, 0.023, 0.023, 0.0179, 0.0168], [0.1855, 0.1198, 0.0823, 0.0773, 0.0414, 0.0322, 0.0196, 0.0162], [0.2552, 0.1988, 0.1064, 0.0778, 0.0197, 0.0185, 0.0153, 0.0105], [0.3049, 0.2374, 0.1122, 0.0342, 0.0321, 0.0266, 0.0118, 0.0092], [0.2827, 0.2495, 0.104, 0.0338, 0.0338, 0.0218, 0.017, 0.0097], [0.3208, 0.3208, 0.0338, 0.0298, 0.0193, 0.011, 0.008, 0.0071], [0.2821, 0.249, 0.1333, 0.0406, 0.0218, 0.0097, 0.0085, 0.0066], [0.2788, 0.1691, 0.1092, 0.0799, 0.0229, 0.013, 0.013, 0.009], [0.1518, 0.1259, 0.0463, 0.0409, 0.0339, 0.0233, 0.011, 0.0103], [0.1446, 0.0441, 0.0268, 0.0208, 0.0119, 0.0119, 0.0112, 0.0082], [0.0507, 0.0155, 0.0128, 0.0113, 0.0106, 0.0094, 0.0094, 0.0061], [0.0449, 0.0128, 0.0113, 0.0113, 0.0083, 0.0044, 0.0042, 0.0039], [0.0295, 0.0245, 0.0191, 0.0148, 0.0123, 0.0096, 0.0085, 0.0062], [0.076, 0.0592, 0.0317, 0.0124, 0.0091, 0.0085, 0.0066, 0.0059], [0.3298, 0.291, 0.291, 0.0348, 0.01, 0.0078, 0.005, 0.0034], [0.292, 0.2274, 0.1563, 0.1217, 0.0448, 0.0349, 0.0175, 0.0165], [0.2895, 0.1367, 0.1065, 0.094, 0.0829, 0.0732, 0.057, 0.0238], [0.289, 0.1063, 0.1063, 0.0938, 0.0828, 0.0828, 0.0391, 0.0253], [0.4411, 0.2361, 0.1264, 0.0465, 0.032, 0.0194, 0.0194, 0.0171], [0.4125, 0.2502, 0.092, 0.0812, 0.0435, 0.0339, 0.0299, 0.011], [0.8609, 0.0801, 0.0202, 0.0179, 0.0108, 0.0027, 0.0019, 0.0013], [0.9591, 0.0137, 0.0094, 0.0094, 0.0035, 0.0011, 0.0011, 0.0006], [0.9846, 0.0052, 0.004, 0.0036, 0.0013, 0.0003, 0.0002, 0.0002]], "ranks": {"Python": [5943, 114481, 57184, 153952, 85425, 56140, 35517, 31532, 19018, 47257, 41507, 54492, 19760, 15418, 14377, 39610, 25711, 11288, 21971, 22711, 3397, 24116, 32080, 66694, 14667, 34062, 33177, 28216, 26472, 17762, 24882, 14353, 17238, 18208, 26335, 17752, 15598, 19707, 16124, 14203, 7709, 5860, 4808, 5102, 6013, 6456, 6702, 11112, 37425, 33434, 37501, 24242, 29902, 32875, 11741, 11950, 6341, 6796, 6967, 9718, 1958, 983, 1232]}}, {"pos": 550, "top": [[".", ",", " \u2013", "\u2013", " ", " [\u2026]", ";", "\u2026"], [" \u2013", "\u2013", ",", "\u2013and", " ", ".", "\u200b", " \u200b\u200b"], ["\u2013", "\u2026", ",", " \u2013", " [\u2026]", "\u2026.", "\u2026..", "."], ["ively", "codes", "ivity", "ologies", "edly", "eira", "ed", "roads"], ["ed", "es", "s", "e", "t", "ers", "ively", "\u2013"], ["ed", "ively", "\u2013", "s", "es", "e", "edly", "fully"], ["ed", "s", "es", "edly", "t", "e", "ers", " @"], ["edly", "ively", "ting", "ed", "es", "s", "ing", " thru"], ["edly", " [&", " [#", "*&", " &", "ively", " #", " [$"], ["edly", " requisite", "\\_", " ${", " myriad", "s", "--", " thru"], [" ${", "ed", "es", "\\_", " requisite", "s", "e", " via"], ["edly", "ologies", "es", " leveraging", " ${", "lessly", " atop", " arguably"], [" leveraging", "es", " egregious", "ologies", " arguably", "edly", "ed", " via"], ["s", "es", " arguably", " via", "ed", " leveraging", " egregious", " aggressively"], [" arguably", " requisite", " myriad", " via", " --", " aggressively", " ostensibly", " leveraging"], [" arguably", " egregious", " requisite", " myriad", " leveraging", " --", " atop", " ostensibly"], ["s", " arguably", "es", " myriad", "e", " requisite", " via", " potentially"], [" arguably", "es", " via", " leveraging", " myriad", "s", " egregious", " potentially"], [" arguably", " --", " myriad", " egregious", " toward", " ostensibly", " via", " requisite"], [" arguably", " --", " myriad", " requisite", " toward", " \u2014", " ostensibly", " squarely"], [" --", " arguably", " \u2014", " myriad", " requisite", " toward", " ostensibly", " via"], [" Palav", " egregious", " arguably", " atop", " toward", " leveraging", " --", "\u5173\u952e\u73af\u8282"], [" --", " arguably", " toward", " atop", " squarely", "\u305d\u3046\u3057\u305f", " egregious", " aggressively"], [" --", " arguably", " toward", " myriad", " across", " via", " through", " aggressively"], [" --", " arguably", " \u2014", " toward", " \n\n", "  \n\n", "--", " myriad"], [" --", " arguably", " toward", " **", " ---", " _", " via", " aggressively"], [" --", " toward", " _", " arguably", " **", " throughput", " tech", " \u2014"], [" --", " _", " arguably", " ,", " ^", " [", " \u2014", " toward"], [" --", " arguably", " via", " critical", " through", " \u2014", " heavily", " toward"], [" --", " via", " \u2014", " critical", " for", " through", " _", " **"], [" via", " for", " critical", " through", " --", " beyond", " heavily", " toward"], [" for", " via", " critical", " through", " beyond", " work", " ,", " \u2014"], [" via", " for", " through", " critical", " --", " \u2014", " off", " beyond"], [" via", " \u2014", " critical", " tech", " through", " engine", " beyond", " hardware"], [" tech", " \u2014", " via", " relentless", " hardware", " relentlessly", " critical", " bypass"], [" \u2014", " via", " \u2013", " tech", " hardware", " bypass", " [", " technical"], [" \u2014", " via", " hardware", " bypass", " tech", " technical", " critical", " aggressively"], [" bypass", " \u2014", " hardware", " via", " technical", " critical", " engine", " tech"], [" bypass", " via", " \u2014", " hardware", " critical", " through", " technical", " relentlessly"], [" bypass", " hardware", " via", " through", " critical", " technical", " optimized", " engine"], [" bypass", " hardware", " via", " optimized", " engine", " technical", " through", " speed"], [" bypass", " hardware", " optimized", " engine", " via", " engineered", " engineering", " technical"], [" bypass", " hardware", " optimized", " engine", " via", " engineered", " engineering", " physics"], [" bypass", " optimized", " hardware", " via", " engine", " route", " physics", " through"], [" bypass", " optimized", " via", " hardware", " engine", " engineered", " pure", " route"], [" bypass", " optimized", " hardware", " via", " entirely", " pure", " purely", " engine"], [" bypass", " optimized", " hardware", " entirely", " purely", " via", " untouched", " pure"], [" bypass", " hardware", " entirely", " physics", " optimized", " purely", " untouched", " avoids"], [" bypass", " entirely", " untouched", " purely", " hardware", " exclusively", "\u5b8c\u5168\u662f", " avoided"], [" bypass", " entirely", "\u5b8c\u5168\u662f", " purely", " exclusively", " untouched", " avoids", " hardware"], [" bypass", "\u5b8c\u5168\u662f", " avoids", " entirely", " hardware", " avoided", " untouched", "\u5fc5\u987b\u662f"], [" bypass", " hardware", "\u5b8c\u5168\u662f", " entirely", "\u5fc5\u987b\u662f", " pure", "\u662f\u5b8c\u5168", " untouched"], [" bypass", " hardware", "\u7ed5\u8fc7", "ypass", " avoids", " resides", " entirely", "\u907f\u5f00"], [" bypass", " hardware", " avoids", "\u7ed5\u8fc7", "ypass", " is", " resides", "\u5fc5\u987b\u662f"], [" bypass", " resides", " hardware", "\u7ed5\u8fc7", " avoids", "\u5fc5\u987b\u662f", " executes", " is"], [" bypass", " resides", " hardware", " executes", " avoids", " is", " pure", " bytecode"], [" bypass", " hardware", " resides", " native", "native", " executes", " bytecode", "\u9003\u79bb"], [" executes", " runs", " compiled", "compiled", " bypass", " escapes", " hardware", "\u9003\u79bb"], [" native", "native", "Native", " compiled", " executes", "-native", "compiled", "_native"], [" native", "native", " is", " executes", " runs", " bypass", "Native", " compiled"], [" native", " is", "native", " executes", " compiled", " bypass", " runs", " escapes"], [" is", " executes", " native", " escapes", " runs", " bypass", " lives", " exists"], [" runs", " is", " escapes", " executes", " lives", " bypass", " leaks", " native"]], "p": [[0.5257, 0.2191, 0.1934, 0.0489, 0.0023, 0.0018, 0.0018, 0.0008], [0.5792, 0.398, 0.0068, 0.0021, 0.0016, 0.0013, 0.0006, 0.0006], [0.8948, 0.0393, 0.0347, 0.021, 0.0017, 0.0017, 0.0017, 0.0017], [0.0097, 0.0033, 0.0028, 0.0028, 0.0024, 0.002, 0.0019, 0.0016], [0.3512, 0.0692, 0.0539, 0.0394, 0.0211, 0.0154, 0.0136, 0.0128], [0.0784, 0.0198, 0.0145, 0.012, 0.012, 0.0073, 0.006, 0.006], [0.3121, 0.1079, 0.084, 0.0509, 0.0479, 0.035, 0.0165, 0.0155], [0.3822, 0.0586, 0.0216, 0.0179, 0.0131, 0.0123, 0.0102, 0.0096], [0.1547, 0.0443, 0.0237, 0.0197, 0.0185, 0.0163, 0.0153, 0.0153], [0.0309, 0.0256, 0.0226, 0.0199, 0.0187, 0.0137, 0.0129, 0.0129], [0.0627, 0.0431, 0.0315, 0.0296, 0.0246, 0.0246, 0.0231, 0.0159], [0.0166, 0.0166, 0.0095, 0.0095, 0.0089, 0.0083, 0.0083, 0.0083], [0.0264, 0.0206, 0.0103, 0.0103, 0.0103, 0.0091, 0.0071, 0.0063], [0.0517, 0.0456, 0.0313, 0.019, 0.0168, 0.0148, 0.0131, 0.0084], [0.1044, 0.0384, 0.0281, 0.0219, 0.0181, 0.0181, 0.0125, 0.0117], [0.0948, 0.0308, 0.0289, 0.024, 0.024, 0.0155, 0.0113, 0.0106], [0.0932, 0.0932, 0.0388, 0.0365, 0.0267, 0.0221, 0.0183, 0.0152], [0.0359, 0.0205, 0.0124, 0.0124, 0.011, 0.011, 0.0103, 0.0059], [0.0674, 0.0248, 0.0193, 0.0125, 0.0117, 0.0103, 0.0103, 0.0091], [0.0604, 0.05, 0.0236, 0.0162, 0.0143, 0.0119, 0.0112, 0.0093], [0.0613, 0.0349, 0.0272, 0.0272, 0.0176, 0.0155, 0.0094, 0.0088], [0.0062, 0.0037, 0.0031, 0.0027, 0.0023, 0.0021, 0.0021, 0.002], [0.0323, 0.0092, 0.006, 0.0049, 0.0034, 0.0032, 0.0032, 0.0028], [0.3548, 0.0188, 0.0188, 0.0061, 0.0054, 0.0048, 0.0042, 0.0039], [0.3182, 0.0231, 0.0191, 0.0116, 0.0109, 0.0096, 0.008, 0.0075], [0.2324, 0.0179, 0.014, 0.009, 0.0062, 0.0055, 0.0038, 0.0033], [0.1376, 0.0145, 0.0128, 0.0113, 0.0073, 0.0064, 0.006, 0.006], [0.2928, 0.029, 0.0256, 0.024, 0.0155, 0.0137, 0.0114, 0.01], [0.0737, 0.0271, 0.0271, 0.0211, 0.0128, 0.012, 0.0106, 0.0106], [0.0888, 0.0288, 0.0239, 0.0211, 0.0198, 0.0186, 0.0145, 0.0128], [0.0382, 0.0337, 0.0247, 0.0218, 0.015, 0.0132, 0.0116, 0.0103], [0.0434, 0.0383, 0.0298, 0.0218, 0.0124, 0.0103, 0.0085, 0.0067], [0.0398, 0.031, 0.0213, 0.0213, 0.0188, 0.0121, 0.0101, 0.0089], [0.0436, 0.0219, 0.0182, 0.0171, 0.0081, 0.0076, 0.0071, 0.0071], [0.0349, 0.0272, 0.0187, 0.0106, 0.01, 0.0094, 0.0094, 0.0088], [0.2128, 0.0307, 0.0307, 0.0288, 0.0254, 0.0136, 0.0128, 0.012], [0.1285, 0.0325, 0.0305, 0.0253, 0.021, 0.0153, 0.0119, 0.0105], [0.0454, 0.0427, 0.0312, 0.0293, 0.0147, 0.0138, 0.013, 0.0115], [0.0749, 0.0354, 0.0354, 0.0202, 0.0157, 0.0157, 0.0147, 0.0095], [0.1791, 0.0482, 0.0453, 0.0167, 0.0156, 0.013, 0.0101, 0.0084], [0.1913, 0.0661, 0.0276, 0.0243, 0.0157, 0.0139, 0.0139, 0.013], [0.2116, 0.0882, 0.0535, 0.0325, 0.0305, 0.0163, 0.0135, 0.0127], [0.2943, 0.0657, 0.0544, 0.031, 0.0274, 0.0121, 0.0101, 0.0089], [0.3387, 0.0553, 0.038, 0.0335, 0.0261, 0.008, 0.0066, 0.0066], [0.3409, 0.0359, 0.0337, 0.0317, 0.0181, 0.0097, 0.0075, 0.0071], [0.357, 0.0332, 0.0243, 0.0228, 0.013, 0.0108, 0.0108, 0.0084], [0.403, 0.0425, 0.0331, 0.0147, 0.0089, 0.0089, 0.0074, 0.0074], [0.6518, 0.0286, 0.0253, 0.0105, 0.0082, 0.0072, 0.0064, 0.006], [0.4473, 0.2113, 0.0163, 0.0135, 0.0119, 0.0093, 0.0077, 0.0064], [0.2846, 0.2082, 0.0465, 0.0151, 0.0142, 0.0142, 0.0133, 0.0133], [0.077, 0.0467, 0.0302, 0.0221, 0.0152, 0.0152, 0.0134, 0.0126], [0.1007, 0.0611, 0.0394, 0.0327, 0.0175, 0.0154, 0.01, 0.0094], [0.9339, 0.0125, 0.0041, 0.0036, 0.002, 0.0019, 0.0019, 0.001], [0.8265, 0.025, 0.0052, 0.0043, 0.0036, 0.0036, 0.0036, 0.0032], [0.7265, 0.0676, 0.041, 0.0133, 0.0071, 0.0063, 0.0063, 0.0043], [0.5246, 0.0912, 0.0627, 0.0169, 0.014, 0.0116, 0.0116, 0.0109], [0.2912, 0.1375, 0.061, 0.0573, 0.0327, 0.0239, 0.0211, 0.0198], [0.2391, 0.128, 0.0776, 0.0685, 0.0471, 0.0367, 0.0367, 0.0324], [0.6556, 0.2128, 0.0254, 0.012, 0.012, 0.0106, 0.0083, 0.0083], [0.7454, 0.0612, 0.0421, 0.0289, 0.0199, 0.0175, 0.0155, 0.012], [0.7166, 0.0458, 0.0458, 0.0315, 0.0278, 0.0245, 0.0191, 0.0169], [0.5187, 0.1021, 0.0901, 0.0901, 0.0796, 0.0258, 0.0201, 0.0089], [0.3844, 0.3392, 0.0858, 0.0668, 0.0668, 0.0169, 0.0045, 0.0045]], "ranks": {"Python": [10624, 68077, 25207, 91699, 46856, 102743, 46558, 54797, 57340, 112827, 34438, 56936, 37412, 18821, 20675, 31440, 34164, 21202, 26780, 48646, 20821, 58785, 39417, 18107, 14232, 4820, 3689, 4356, 3354, 3339, 5205, 4907, 5696, 4116, 4242, 816, 862, 720, 699, 334, 250, 214, 216, 449, 528, 998, 1208, 1562, 2637, 2006, 1473, 227, 619, 544, 58, 56, 33, 60, 100, 151, 237, 332, 377]}}, {"pos": 551, "top": [[".", ",", "\u2013", "\u00a0", ";", " \u2013", "\u00a0\u00a0", ":"], [".", ",", " \u2013", "\u2013", " \u200b\u200b", ";", "\u2013and", " "], [",", ".", "\u2013", ";", " \u2013", "\u2026", ".\u2013", "\u2013and"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " ;;^", "----------</", " milfs", "-------------</", " Blowjob", "\ufffd\ufffd", " Shemale"], [".", ",", " \u200b\u200b", ".@", " ", "\u00a0", ":", "\u00a0\u00a0"], [".", ",", " \u200b\u200b", "\u00a0", ":", ";", "\u00a0\u00a0", "!"], ["\u00a0", ".", " \n", ":", "  \n", "\u00a0\u00a0", " ", ","], ["<|quad_end|>", "iland", "\u00a0", " pricey", "-Cds", " thankfully", " tweaked", "\u2013and"], [".", "\u00a0", ",", ":", ";", "\u2013and", ":.", "&nbsp"], [",", "\u00a0", "\u2013", "\u2013and", ".", ";", ":", " though"], [",", "\u00a0", ".", "\u2013", " ", ";", "-", ":"], [" arguably", " potentially", " poking", " quicker", " notably", "\u98ce\u987a", " going", " oddly"], [" arguably", " poking", " via", " mostly", " going", " potentially", " tweaked", " tweaking"], [" tweaking", " tweaked", " via", " arguably", " going", " just", " mostly", " picking"], [" just", " going", " mostly", " getting", " arguably", " down", " via", " tweaked"], [" arguably", " just", " getting", " going", " --", " mostly", " tweaking", " incredibly"], [" just", " going", " arguably", " getting", " incredibly", " mostly", ",", " via"], [" just", " arguably", " going", " tweaking", " tweaked", " getting", " mostly", " down"], [" arguably", " tweaking", " tweaked", " just", " incredibly", " savvy", " touted", " effortlessly"], [" arguably", " effortlessly", " wildly", " --", " tweaking", " even", " just", " barely"], [" --", " arguably", " just", " ultimately", " largely", " genuinely", " much", " heavily"], [" ;;^", "\u8e0f\u8e0f\u5b9e\u5b9e", " harder", "\u8179\u5730", "\u4e5f\u5e76\u4e0d", "\u52b2\u513f", "\u5982\u706b\u5982\u837c", " tweaking"], [" --", " ;;^", " uncomfort", " cleanly", " arguably", " aggressively", " harder", "\u8e0f\u8e0f\u5b9e\u5b9e"], [" --", " much", " just", " largely", " rather", " arguably", " notably", " barely"], [" --", " arguably", " genuinely", " much", " heavily", " largely", " {{--<", " \n\n"], [" --", " {{--<", " cleanly", " arguably", " aggressively", " ;;^", " ``", " wildly"], [" --", " cleanly", " aggressively", " arguably", " {{--<", " hacking", " heavily", " gritty"], [" --", " ,", " much", " just", " heavily", " arguably", " rather", " largely"], [" --", " heavily", " much", " arguably", " aggressively", " ,", " largely", " ultimately"], [" --", " ,", " much", " heavily", " aggressively", " even", " largely", " work"], [" much", " ,", " heavily", " .", " rather", " --", " just", " work"], [" ,", " rather", " .", " still", " much", " just", " heavily", " work"], [" rather", " still", " just", " .", " heavily", " much", " ultimately", " fully"], [" technically", " genuinely", " heavily", " truly", " rather", " seamlessly", " essentially", " meticulously"], [" technically", " genuinely", " tech", " meticulously", " hardware", " truly", " cleanly", " seamlessly"], [" hardware", " technically", " \u201c", " technical", " \u2014", " tech", " .", "\u2011"], [" hardware", " optimized", " technically", " technical", " tech", " faster", " bypass", " engineered"], [" optimized", " hardware", " technically", " technical", " bypass", " engineered", " faster", " engineering"], [" optimized", " hardware", " technically", " technical", " bypass", " fast", " engineered", " faster"], [" optimized", " hardware", " native", " technical", " bypass", " engineering", " engineered", " fast"], [" optimized", " hardware", " native", " fast", " engineering", " engineered", " technical", " bypass"], [" optimized", " hardware", " native", " engineered", " engineering", " engine", " optim", " optimizing"], [" optimized", " hardware", " engineered", " native", " engineering", " engine", " efficient", " optim"], [" optimized", " hardware", " engineered", " native", " engine", " pure", " efficiently", " bypass"], [" optimized", " hardware", " engineered", " native", " pure", " bypass", " purely", " directly"], [" optimized", " hardware", " engineered", " native", " pure", " bypass", " seamlessly", " purely"], [" optimized", " hardware", " engineered", " pure", " seamlessly", " native", " bypass", " meticulously"], [" optimized", " hardware", " pure", " engineered", " native", " bypass", " purely", " seamlessly"], [" optimized", " hardware", " engineered", " pure", "optimized", " bypass", " native", " seamlessly"], [" optimized", " hardware", " pure", "optimized", " bypass", "-native", " entirely", " engineered"], [" optimized", "optimized", " hardware", "\u7eaf\u7cb9\u7684", "++.", "-native", "\u7eaf\u7cb9", " pure"], [" optimized", "optimized", " hardware", "-native", "native", " pure", " native", "hardware"], [" optimized", " bypass", " hardware", "optimized", " native", "-native", "native", " bytecode"], [" optimized", "optimized", " hardware", " native", " bypass", " bytecode", "compiled", "native"], [" optimized", " pure", " bytecode", " native", "optimized", "compiled", " compiled", " bypass"], [" pure", " optimized", " native", " bytecode", "compiled", " compiled", "optimized", "-native"], [" native", " optimized", " compiled", "native", "-native", " pure", "compiled", " bytecode"], [" compiled", "compiled", "Compiled", " Compiled", "\u7f16\u8bd1", " compil", " native", "compile"], [" native", " compiled", "native", "compiled", "-native", "Compiled", " Compiled", "Native"], [" native", " compiled", "native", "compiled", "-native", " Native", "Compiled", "Native"], [" native", " compiled", "native", "compiled", "-native", " Native", "_native", " optimized"], [" native", " compiled", "native", "-native", " Native", " optimized", "compiled", "_native"], [" native", " compiled", " C", " optimized", " pure", "compiled", " bare", " Rust"]], "p": [[0.6403, 0.3427, 0.0049, 0.0038, 0.0038, 0.002, 0.0004, 0.0004], [0.1364, 0.0881, 0.0827, 0.073, 0.0269, 0.0163, 0.0077, 0.0023], [0.652, 0.308, 0.0325, 0.0034, 0.0009, 0.0006, 0.0003, 0.0003], [0.0085, 0.0051, 0.004, 0.0038, 0.0033, 0.0026, 0.0021, 0.0021], [0.1197, 0.0221, 0.0134, 0.0077, 0.0038, 0.003, 0.0028, 0.0014], [0.2221, 0.1625, 0.0194, 0.0133, 0.0111, 0.0028, 0.002, 0.0014], [0.2474, 0.0519, 0.0102, 0.009, 0.007, 0.0045, 0.0035, 0.0035], [0.0041, 0.0032, 0.0014, 0.0013, 0.0012, 0.0012, 0.0012, 0.001], [0.46, 0.3583, 0.0964, 0.0058, 0.0033, 0.002, 0.0016, 0.0012], [0.3675, 0.0724, 0.0143, 0.0067, 0.0063, 0.0032, 0.0022, 0.0014], [0.6488, 0.136, 0.1059, 0.0127, 0.0099, 0.0053, 0.0036, 0.003], [0.0082, 0.0044, 0.0028, 0.0027, 0.0025, 0.0024, 0.0024, 0.0022], [0.0058, 0.0051, 0.0051, 0.0042, 0.0035, 0.0029, 0.0027, 0.0026], [0.0092, 0.0059, 0.0052, 0.0052, 0.0046, 0.0044, 0.0044, 0.0041], [0.0253, 0.021, 0.0164, 0.0127, 0.0106, 0.0082, 0.0082, 0.0077], [0.0243, 0.0148, 0.0139, 0.0139, 0.013, 0.0095, 0.0095, 0.0095], [0.0778, 0.0286, 0.0253, 0.0185, 0.0163, 0.0119, 0.0119, 0.0082], [0.0187, 0.0113, 0.0106, 0.01, 0.0094, 0.0065, 0.0057, 0.0047], [0.0271, 0.0113, 0.0106, 0.0106, 0.0083, 0.0078, 0.0073, 0.0073], [0.0162, 0.0086, 0.0086, 0.0076, 0.0067, 0.0063, 0.0059, 0.0056], [0.0125, 0.0125, 0.0092, 0.0071, 0.0071, 0.0071, 0.0067, 0.0063], [0.0099, 0.0021, 0.0015, 0.0012, 0.0011, 0.0011, 0.001, 0.001], [0.032, 0.0059, 0.0038, 0.0036, 0.003, 0.0028, 0.0026, 0.0023], [0.1611, 0.017, 0.0097, 0.0071, 0.0071, 0.0062, 0.0052, 0.0049], [0.0979, 0.0091, 0.0075, 0.0075, 0.0043, 0.0043, 0.0043, 0.0043], [0.044, 0.0049, 0.0049, 0.0046, 0.0041, 0.0036, 0.0026, 0.0022], [0.0341, 0.0076, 0.0067, 0.0049, 0.0038, 0.0032, 0.003, 0.0026], [0.1689, 0.0215, 0.0178, 0.0101, 0.0101, 0.0095, 0.0084, 0.007], [0.0652, 0.0225, 0.0187, 0.0176, 0.0155, 0.0137, 0.01, 0.0088], [0.1169, 0.0296, 0.0245, 0.023, 0.0158, 0.0109, 0.0102, 0.0102], [0.0322, 0.0302, 0.0236, 0.0195, 0.0162, 0.0162, 0.0134, 0.0134], [0.0424, 0.0398, 0.031, 0.031, 0.0274, 0.02, 0.0177, 0.0166], [0.059, 0.0217, 0.0159, 0.0149, 0.0149, 0.0132, 0.0116, 0.0096], [0.0319, 0.0264, 0.0182, 0.0182, 0.0171, 0.016, 0.0125, 0.0104], [0.0381, 0.0231, 0.0159, 0.0159, 0.0149, 0.0132, 0.0132, 0.0124], [0.0945, 0.0736, 0.037, 0.0348, 0.0211, 0.0154, 0.0154, 0.0128], [0.1502, 0.0804, 0.0804, 0.038, 0.0169, 0.0158, 0.0149, 0.014], [0.1603, 0.1329, 0.0405, 0.0336, 0.0279, 0.0169, 0.0149, 0.0132], [0.3102, 0.0737, 0.0255, 0.0255, 0.0239, 0.0239, 0.0154, 0.0154], [0.2887, 0.1984, 0.0367, 0.0223, 0.0173, 0.0173, 0.0163, 0.0163], [0.382, 0.1804, 0.0517, 0.0179, 0.0168, 0.0158, 0.0123, 0.0115], [0.5035, 0.1852, 0.0388, 0.0208, 0.0183, 0.0126, 0.0111, 0.0072], [0.6226, 0.1082, 0.0213, 0.0156, 0.0114, 0.0095, 0.0074, 0.0069], [0.6251, 0.0846, 0.0228, 0.0228, 0.0079, 0.0069, 0.0065, 0.0065], [0.4037, 0.0795, 0.0453, 0.0353, 0.0258, 0.0167, 0.0115, 0.0115], [0.4137, 0.0675, 0.041, 0.03, 0.0219, 0.0125, 0.0117, 0.0086], [0.6359, 0.0461, 0.0247, 0.0192, 0.0109, 0.0091, 0.0075, 0.0055], [0.4735, 0.0823, 0.044, 0.0322, 0.0195, 0.0162, 0.0081, 0.0072], [0.4862, 0.0375, 0.0227, 0.0189, 0.0166, 0.0138, 0.0101, 0.0084], [0.2541, 0.0567, 0.0323, 0.0209, 0.0153, 0.0143, 0.0127, 0.0119], [0.1333, 0.049, 0.0192, 0.0159, 0.0116, 0.0116, 0.0103, 0.0097], [0.1928, 0.0709, 0.0458, 0.0315, 0.0245, 0.0168, 0.014, 0.0123], [0.2288, 0.1081, 0.0655, 0.031, 0.0291, 0.0257, 0.0188, 0.0156], [0.4221, 0.0504, 0.0306, 0.0306, 0.0287, 0.0254, 0.0254, 0.0197], [0.3133, 0.1017, 0.048, 0.0424, 0.0374, 0.0374, 0.031, 0.0291], [0.2021, 0.1574, 0.1082, 0.0579, 0.0511, 0.0511, 0.0273, 0.0213], [0.4895, 0.0851, 0.0851, 0.0662, 0.0516, 0.0455, 0.0402, 0.0148], [0.7594, 0.2176, 0.0096, 0.0084, 0.0011, 0.0011, 0.0006, 0.0005], [0.7639, 0.1504, 0.038, 0.0296, 0.0058, 0.004, 0.0024, 0.0013], [0.8732, 0.1043, 0.0097, 0.0067, 0.0019, 0.001, 0.0006, 0.0006], [0.8708, 0.1178, 0.0036, 0.0028, 0.0015, 0.0015, 0.0004, 0.0003], [0.8971, 0.0945, 0.0015, 0.0013, 0.0013, 0.0012, 0.0011, 0.0002], [0.5654, 0.3429, 0.0765, 0.0032, 0.0012, 0.0012, 0.0009, 0.0008]], "ranks": {"Python": [51319, 203070, 134625, 217303, 65518, 122966, 16635, 107732, 23822, 72954, 40060, 87761, 56112, 35000, 18433, 39525, 59075, 40391, 57639, 100728, 45887, 104678, 58849, 14853, 16781, 9370, 4313, 3729, 2303, 1822, 2350, 3054, 4055, 1907, 1841, 404, 306, 263, 181, 42, 38, 70, 99, 168, 194, 281, 383, 512, 419, 520, 844, 43, 42, 112, 11, 12, 10, 46, 95, 147, 190, 176, 97]}}, {"pos": 552, "top": [[".", ",", " \u2013", "\u2013", ";", "en", " ", "-"], [" \u2013", "\u2013", "\u2013and", ",", " \u2013**", ".\u2013", " *\u2013", "  "], ["\u2013", " \u2013", ",", ".", ".\u2013", "\u2013and", ";", "**\u2013"], [" milfs", " ;;^", " Hidal", " Gabrie", "\u52a0\u62ff\u5927", " Nues", " YYS", " Shemale"], ["en", "  ", "@", " TF", " *@", " UTF", " *-", "&"], ["\ufffd", "bod", "bios", ":host", " vip", "\u82b7", " TF", " UTF"], [" *-", "-_", " *_", "-*", "*_", " *", "\u2018", "bond"], [" *_", " *-", " *@", "-_", "-*", "/native", " &_", " *\\"], [" *_", " *@", "-*", " &_", " *-", " *\\", " *.*", " *&"], ["/native", "-_", "-*", "-native", "-&", "bond", "-centric", " &_"], ["-_", "-*", " _", "-native", "/native", "-", "-&", "&"], [" **", " *_", " transformative", "/native", " showcase", " _", " **+", " **^"], [" transformative", " showcase", "-native", "/native", " iconic", " **", "-centric", "-_"], [" transformative", " showcase", " iconic", "-native", "-esque", " hardcore", "-centric", " core"], [" showcase", " transformative", " iconic", " sprawling", " core", " holistic", "-esque", " host"], [" sprawling", " transformative", " showcase", " Gabrie", " iconic", " host", " requisite", " locales"], [" sprawling", "-esque", " iconic", " showcase", " requisite", " host", " transformative", " folks"], [" sprawling", "-esque", "locales", " showcase", " Gabrie", "\u9aa8\u5b50\u91cc", " transformative", " iconic"], [" Gabrie", " sprawling", " T\u00e9cn", " ;;^", "-esque", " PROVINS", " Pubbl", "locales"], [" sprawling", " requisite", " NAT", " ^", " T\u00e9cn", "\u5373\u4fbf", "\u9aa8\u5b50\u91cc", "locales"], [" ^", " requisite", "<|endoftext|>", " sprawling", " myriad", " NAT", " uniquely", "\u5373\u4fbf"], [" ;;^", " Gabrie", " Pubbl", " Nues", " Hidal", " **>>", " Prodot", " Fortal"], [" ;;^", " Gabrie", " ``", "_NATIVE", " PROVINS", "\u611f\u5341\u8db3", " Nues", " NAT"], [" ``", " sprawling", " uniquely", " fully", " host", " NAT", " requisite", "_NATIVE"], [" T\u00e9cn", "\u611f\u5341\u8db3", " ;;^", " ^", " Gabrie", " requisite", "iach", " {{--<"], [" ;;^", " **^", " **", " **+", " Gabrie", " **>>", " hardware", "\u611f\u5341\u8db3"], [" ;;^", " **^", " hardware", " **+", " Nues", " Gabrie", " Prodot", " **"], [" **", " hardware", " T\u00e9cn", " ``", " --", " ^", " ;;^", " **^"], [" hardware", " tech", " technologies", " technology", " ;;^", " T\u00e9cn", " engineering", "-engine"], [" hardware", " **", " .**", " tech", " -**", " **+", " technology", " technologies"], [" hardware", " **", " .**", " technology", " tech", " technologies", " **.", " engines"], [" hardware", " **", " technology", " .**", " tech", " via", " .", " technologies"], [" hardware", " .", " technology", " core", " native", " via", " tech", " European"], [" hardware", " tech", " technology", " core", " technologies", " engine", " seamlessly", " engines"], [" hardware", " tech", "hardware", " technology", " .**", " technologies", " seamlessly", " engineering"], [" hardware", " .**", " tech", "hardware", "-native", " Hardware", " technology", " \u2013"], [" hardware", " .**", " tech", "hardware", " Hardware", "-native", " native", "_NATIVE"], [" hardware", "_NATIVE", "hardware", " tech", " Hardware", " .**", " Native", "-native"], [" hardware", " native", "_NATIVE", " Native", "-native", " tech", "Native", "native"], [" native", " hardware", "_NATIVE", " Native", "-native", "Native", "native", "/native"], [" native", " hardware", " Native", "-native", "Native", "_NATIVE", "native", "/native"], [" hardware", " native", " Native", "-native", "_NATIVE", "Native", "/native", "native"], [" hardware", " native", "-native", " Native", "_NATIVE", "_Native", "/native", "Native"], [" hardware", " native", "-native", " Native", "_NATIVE", "/native", " engine", "_Native"], [" hardware", " native", "-native", " Native", " engine", "_NATIVE", " engines", " optimized"], [" hardware", " native", "-native", " Native", " seamlessly", "/native", "_NATIVE", " engine"], [" hardware", "-native", ".**", " native", " seamlessly", "/native", " seamless", " optimized"], [".**", " hardware", "-native", "/native", " seamlessly", ".*", ".", " native"], [".**", ".", ".*", "**.", ".\\", " **.", "++.", ".]"], [".**", ".", ".*", ".\\", "**.", ".]", ".)", "++."], [".", ".**", ".*", "**.", ".\\", "*.", "++.", ".]"], [".**", ".", ".*", "**.", "*.", "++.", "+.", " **."], [".**", ".", "**.", ".*", "*.", " **.", "++.", "+."], [".**", ".", "\n\n", "**.", ".*", " **.", "*.", "++."], [".", ".**", "\n\n", " **.", "++.", ".*", "**.", "*."], [".", ".**", "\n\n", ".*", "**.", " **.", "*.", " code"], ["\n\n", ".", " \n\n", " code", ".**", "  \n\n", "\u4ee3\u7801", "-code"], [" code", "\n\n", "\u4ee3\u7801", "code", "-code", ".", " compiled", "compiled"], [" code", "\n\n", "\u4ee3\u7801", "code", "-code", ".", " c\u00f3digo", " compiled"], [" code", "code", "-code", "\n\n", "\u4ee3\u7801", ".", " Code", "Code"], [" code", "code", "-code", "\n\n", ".", "\u4ee3\u7801", " Code", "Code"], [" code", ".", "-code", "\n\n", "code", " Code", "\u4ee3\u7801", "_code"], [".", " code", "-code", "code", " C", " Code", " compiled", "\u4ee3\u7801"]], "p": [[0.3165, 0.3165, 0.2465, 0.1028, 0.0021, 0.0015, 0.0015, 0.001], [0.6054, 0.3672, 0.0059, 0.0032, 0.0032, 0.0019, 0.0012, 0.001], [0.9243, 0.046, 0.0192, 0.0033, 0.0029, 0.0026, 0.0003, 0.0002], [0.0212, 0.0088, 0.0088, 0.0069, 0.0061, 0.0053, 0.005, 0.005], [0.0186, 0.0083, 0.0078, 0.0064, 0.0057, 0.0057, 0.005, 0.0039], [0.0084, 0.0035, 0.0035, 0.0029, 0.0027, 0.0026, 0.0026, 0.0024], [0.0362, 0.0161, 0.0151, 0.0142, 0.0092, 0.0086, 0.0067, 0.0067], [0.0642, 0.0366, 0.0184, 0.0184, 0.0184, 0.0082, 0.0082, 0.0068], [0.1012, 0.0396, 0.0272, 0.0176, 0.0155, 0.0137, 0.0121, 0.0114], [0.0112, 0.0072, 0.003, 0.0028, 0.0025, 0.0025, 0.0023, 0.0023], [0.035, 0.0094, 0.0094, 0.0089, 0.0078, 0.0073, 0.0057, 0.0054], [0.0225, 0.0175, 0.0145, 0.0106, 0.0094, 0.0088, 0.0078, 0.0069], [0.0214, 0.0115, 0.0074, 0.0054, 0.0054, 0.0048, 0.0042, 0.0035], [0.0238, 0.012, 0.0112, 0.006, 0.0044, 0.0036, 0.0034, 0.003], [0.0125, 0.0125, 0.0117, 0.0081, 0.0038, 0.003, 0.003, 0.0028], [0.0128, 0.0044, 0.0042, 0.0032, 0.0032, 0.0029, 0.0025, 0.0022], [0.0117, 0.0043, 0.004, 0.0038, 0.0038, 0.0031, 0.003, 0.0026], [0.0042, 0.0035, 0.0023, 0.002, 0.002, 0.0019, 0.0019, 0.0016], [0.0045, 0.0037, 0.0031, 0.0031, 0.0029, 0.0026, 0.0017, 0.0016], [0.0054, 0.0035, 0.0027, 0.0024, 0.0016, 0.0015, 0.0013, 0.0011], [0.0072, 0.0068, 0.0064, 0.0032, 0.0022, 0.0018, 0.0016, 0.0014], [0.0275, 0.0058, 0.004, 0.0037, 0.0024, 0.0023, 0.0023, 0.0019], [0.0064, 0.0047, 0.0037, 0.0025, 0.0021, 0.0021, 0.002, 0.0018], [0.0018, 0.0017, 0.0017, 0.0015, 0.0013, 0.0013, 0.0012, 0.0011], [0.0029, 0.002, 0.0019, 0.0018, 0.0016, 0.0014, 0.0013, 0.0012], [0.0179, 0.0102, 0.0062, 0.0058, 0.004, 0.0031, 0.0026, 0.0024], [0.0192, 0.0062, 0.0049, 0.0043, 0.0033, 0.0031, 0.0029, 0.0029], [0.0118, 0.0104, 0.0046, 0.0038, 0.0038, 0.0036, 0.0036, 0.003], [0.0237, 0.0053, 0.0044, 0.0041, 0.0039, 0.0032, 0.003, 0.0025], [0.0525, 0.0409, 0.0141, 0.0125, 0.0103, 0.0091, 0.0091, 0.0091], [0.0649, 0.0419, 0.027, 0.0175, 0.0136, 0.0128, 0.0106, 0.0088], [0.0487, 0.0261, 0.023, 0.0149, 0.0131, 0.0116, 0.0109, 0.0085], [0.0365, 0.0303, 0.0119, 0.0092, 0.0082, 0.0072, 0.0068, 0.0063], [0.1046, 0.0206, 0.0097, 0.0071, 0.0071, 0.0071, 0.0071, 0.0071], [0.1308, 0.0481, 0.0101, 0.0101, 0.0084, 0.0079, 0.0069, 0.0061], [0.234, 0.0407, 0.0263, 0.0232, 0.0097, 0.008, 0.008, 0.0071], [0.372, 0.0325, 0.0269, 0.0253, 0.0112, 0.0106, 0.0093, 0.0087], [0.3344, 0.0214, 0.0201, 0.0177, 0.0147, 0.013, 0.013, 0.0107], [0.2229, 0.1352, 0.1121, 0.0563, 0.0467, 0.0161, 0.0134, 0.0111], [0.2359, 0.1621, 0.0924, 0.0924, 0.0596, 0.0464, 0.0362, 0.0142], [0.2817, 0.1709, 0.1174, 0.0915, 0.0521, 0.0521, 0.0381, 0.0316], [0.3449, 0.2686, 0.0872, 0.077, 0.0283, 0.0195, 0.0142, 0.0134], [0.3263, 0.1747, 0.12, 0.0643, 0.0323, 0.0196, 0.0173, 0.0135], [0.3123, 0.1894, 0.0953, 0.0615, 0.0213, 0.0166, 0.0137, 0.0129], [0.2689, 0.1848, 0.068, 0.0364, 0.0183, 0.0126, 0.0126, 0.0111], [0.2125, 0.1762, 0.0782, 0.0224, 0.021, 0.0154, 0.0136, 0.012], [0.1406, 0.132, 0.0966, 0.0403, 0.0355, 0.0314, 0.0158, 0.0131], [0.5812, 0.0613, 0.0477, 0.0165, 0.0137, 0.0137, 0.0113, 0.0106], [0.7937, 0.1074, 0.0272, 0.024, 0.01, 0.0039, 0.003, 0.0029], [0.7507, 0.1675, 0.0257, 0.0227, 0.0083, 0.0039, 0.0024, 0.002], [0.474, 0.4183, 0.0441, 0.0208, 0.0087, 0.0087, 0.0053, 0.0046], [0.4563, 0.4027, 0.0618, 0.0331, 0.02, 0.0057, 0.0039, 0.0019], [0.5616, 0.2341, 0.0976, 0.0407, 0.0247, 0.015, 0.0049, 0.0029], [0.3338, 0.2294, 0.2024, 0.058, 0.0399, 0.031, 0.0242, 0.0242], [0.3726, 0.2561, 0.0942, 0.0445, 0.0393, 0.0393, 0.0306, 0.027], [0.3898, 0.2364, 0.1117, 0.0363, 0.0249, 0.022, 0.022, 0.022], [0.9922, 0.0032, 0.001, 0.0008, 0.0005, 0.0003, 0.0003, 0.0001], [0.4531, 0.3998, 0.0613, 0.0328, 0.029, 0.0065, 0.0027, 0.0024], [0.4458, 0.4458, 0.0323, 0.0252, 0.0222, 0.0153, 0.0018, 0.0016], [0.9537, 0.0198, 0.0106, 0.0073, 0.0057, 0.001, 0.0005, 0.0003], [0.9728, 0.0108, 0.0074, 0.0031, 0.0024, 0.0017, 0.0007, 0.0002], [0.9009, 0.0838, 0.0054, 0.0042, 0.0032, 0.0009, 0.0004, 0.0002], [0.9319, 0.0675, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0]], "ranks": {"Python": [17398, 125744, 82705, 147309, 33684, 132611, 83425, 94964, 94624, 139162, 65762, 74887, 77141, 52976, 31468, 70163, 79476, 75177, 92158, 97628, 28620, 89810, 31095, 29005, 31591, 27749, 15350, 6308, 4658, 2837, 2410, 3578, 3967, 2946, 3707, 1258, 1199, 1105, 393, 157, 206, 419, 805, 1094, 1178, 1301, 1751, 4305, 4473, 9448, 6090, 883, 609, 1224, 126, 174, 111, 221, 226, 225, 199, 133, 67]}}, {"pos": 553, "top": [[".", " \u2013", ",", "\u2013", ";", "\u00a0", "\u00a0\u00a0", "\u2026."], [" \u2013", "\u2013", "\u2013and", ",", " \u2013,", ".", " very", "  \n"], ["\u2013", ",", " \u2013", ".", ";", "\u2026", "\u2013and", "\u2026."], [" milfs", " Shemale", "-------------</", " Blowjob", "----------</", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " ;;^", " pornstar"], [":@", " (@", " \"@", ".@", "\uff20", " cittadin", " Aussie", "(@"], [" \u200b\u200b", "!:", "\u5f88\u591a\u4eba", "fst", "\u65b0\u52a0\u5761", " \u0628\u0648\u062a\u064a\u0646", "\u82b7", "\u6cd5\u62c9"], ["\uff01", "  \n\n", " @", " \uff08", "  \n", "   \n", " \n\n", " \u201c"], [" @", "   \n\n", " *@", "(@", ":@", " crappy", "-ish", " veggies"], ["   \n\n", " \n\n", "  \n\n", "    \n\n", " *@", "(@", "     \n\n", "\t\n\n"], [" though", " folks", " pricey", "Though", " hefty", " plenty", "\u6ca1\u5565", "though"], [" though", " @", " arguably", " folks", " plenty", " mostly", "<|endoftext|>", " swiftly"], [" veggies", " folks", " arguably", " pricey", " savvy", " stuff", " gritty", " **"], [" veggies", " arguably", " folks", " incredibly", " savvy", " pricey", " plenty", " mostly"], [" arguably", " veggies", " savvy", " incredibly", " pricey", " folks", " plenty", " gritty"], [" arguably", " folks", " plenty", " mostly", " --", " truly", " just", " savvy"], [" arguably", " though", " plenty", " folks", " mostly", " even", " just", " swiftly"], [" arguably", " though", " myriad", " plenty", " swiftly", " folks", " sprawling", "Though"], [" arguably", " though", " hugely", " sprawling", " swiftly", " tweaking", " hefty", " albeit"], [" arguably", " swiftly", " hugely", " albeit", " largely", " notably", " sprawling", " hefty"], [" arguably", " swiftly", " hugely", "\u5373\u4fbf", " myriad", " largely", " sprawling", " notably"], ["<|endoftext|>", " swiftly", " though", " arguably", "Though", " hugely", " myriad", " largely"], [" arguably", " hugely", " swiftly", " famously", " sprawling", " savvy", " quicker", " myriad"], [" arguably", " swiftly", " hugely", " largely", " notably", " myriad", " much", " ultimately"], [" arguably", " much", " swiftly", " --", " largely", " hugely", " ultimately", " notably"], ["\n\n", " \n\n", "\r\n\r\n", " \r\n\r\n", "  \n\n", " arguably", " swiftly", "Though"], [" **", " arguably", " hugely", " **+", "\r\n\r\n", " famously", " **'", " gritty"], [" **", "\n\n", "\r\n\r\n", " \n\n", " arguably", " \r\n\r\n", "  \n\n", " **+"], ["\n\n", " \n\n", " **", "  \n\n", "\r\n\r\n", " arguably", " \r\n\r\n", " --"], [" arguably", "\n\n", " **", " famously", "\r\n\r\n", " hugely", " \n\n", "  \n\n"], [" **", " \u2014", " arguably", " \n\n", " even", " ___", " --", " _"], ["<|endoftext|>", " \n\n", "  \n\n", " \u2014", " **", "\n\n", " much", " ,"], [" \u2014", " **", "<|endoftext|>", " \n\n", "  \n\n", "\n\n", " heavily", " much"], [" \u2014", " **", "  \n\n", " :", " \u2013", " \n\n", " essentially", " heavily"], ["  \n\n", "<|endoftext|>", " \n\n", " \u2014", " \u2013", " **", "\u2011", " essentially"], ["<|endoftext|>", "  \n\n", " \n\n", ":", " **", "   \n\n", " :", ":**"], ["<|endoftext|>", "  \n\n", " \n\n", " **", "\u2011", "   \n\n", ":", " **\u201c"], ["<|endoftext|>", "  \n\n", " \n\n", " **", ":", "**:", ":**", " :**"], ["  \n\n", "<|endoftext|>", " \n\n", ":", "\n\n", "**:", " **", ":**"], ["<|endoftext|>", "  \n\n", " \n\n", ":", "**:", " **", ":**", "\n\n"], ["  \n\n", "<|endoftext|>", " \n\n", "\u2011", " **\u201c", "**:", " **", ":**"], ["<|endoftext|>", "  \n\n", " \n\n", ":", "\u2011", "\n\n", ":**", "**:"], ["<|endoftext|>", "  \n\n", "\n\n", " \n\n", " \u2014", " leveraging", ":", "\u2011"], ["  \n\n", "<|endoftext|>", "\n\n", " \n\n", " **", " leveraging", ":", " :"], ["  \n\n", "\n\n", " leveraging", " \n\n", " modular", " strategy", "<|endoftext|>", " engineered"], [" leveraging", " modular", "  \n\n", " strategy", " :", "<|endoftext|>", " **", " key"], ["  \n\n", " leveraging", " modular", " strategy", " **", " essentially", "\n\n", " hybrid"], ["\n\n", "  \n\n", " \n\n", ":", " **", ":**", ":\\", "   \n\n"], ["\n\n", "  \n\n", ":", " \n\n", ":\\", ":**", ":*", " **"], ["  \n\n", "\n\n", " **", ":**", " \n\n", "\uff1a**", ":\\", ":"], ["  \n\n", "\n\n", " \n\n", ":\\", ":**", " **", "   \n\n", "\uff1a**"], ["\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", "\t\n\n", "\r\n\r\n", "\n\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", "\r\n\r\n", "   \n\n", "\n\n\n\n", "    \n\n", "\t\n\n"], ["\n\n", " here", " Here", "  \n\n", "Here", "\u8fd9\u91cc\u662f", "\u8fd9\u91cc", "here"], ["\n\n", " here", " Here", "\u8fd9\u91cc\u662f", "  \n\n", "Here", "\u8fd9\u91cc", "here"], ["\n\n", "  \n\n", " \n\n", " Here", " here", "\u8fd9\u91cc\u662f", "Here", "    \n\n"], ["\n\n", "  \n\n", " \n\n", " Here", " here", "Here", "\u8fd9\u91cc\u662f", "\r\n\r\n"], ["\n\n", "  \n\n", " \n\n", " Here", " here", "Here", "\u8fd9\u91cc\u662f", "\r\n\r\n"], ["\n\n", " \n\n", "  \n\n", " here", " Here", "Here", "\u8fd9\u91cc\u662f", "\r\n\r\n"], ["\n\n", " \n\n", "  \n\n", " Here", " here", "\n\n\n", "\n\n\n\n", "    \n\n"], ["\n\n", " \n\n", "  \n\n", " Here", "\n\n\n", "\n\n\n\n", " here", "\r\n\r\n"], ["\n\n", " Here", " This", " \n\n", " If", "  \n\n", " However", " here"]], "p": [[0.4261, 0.3318, 0.1568, 0.0653, 0.0061, 0.0017, 0.0015, 0.0014], [0.491, 0.0517, 0.007, 0.0033, 0.0026, 0.002, 0.0013, 0.0011], [0.3575, 0.3575, 0.1315, 0.1315, 0.0054, 0.0033, 0.0031, 0.0016], [0.0148, 0.0084, 0.0074, 0.007, 0.0045, 0.0042, 0.004, 0.0031], [0.0068, 0.006, 0.003, 0.0027, 0.0025, 0.0019, 0.0018, 0.0018], [0.0022, 0.0013, 0.0011, 0.001, 0.0009, 0.0008, 0.0008, 0.0007], [0.0235, 0.0134, 0.0104, 0.0063, 0.0059, 0.0046, 0.0046, 0.0038], [0.017, 0.015, 0.008, 0.0055, 0.0049, 0.0046, 0.0043, 0.0036], [0.1844, 0.1844, 0.0466, 0.0183, 0.0081, 0.0072, 0.0056, 0.0052], [0.0018, 0.0016, 0.0015, 0.0012, 0.0012, 0.0011, 0.001, 0.001], [0.0652, 0.0395, 0.0199, 0.0145, 0.0113, 0.01, 0.0078, 0.0078], [0.0316, 0.0297, 0.0169, 0.0116, 0.0096, 0.008, 0.0062, 0.0055], [0.0233, 0.0141, 0.0103, 0.008, 0.0059, 0.0052, 0.0046, 0.004], [0.0154, 0.0145, 0.0094, 0.0088, 0.0088, 0.0083, 0.006, 0.0057], [0.0409, 0.0299, 0.0264, 0.0219, 0.0141, 0.0133, 0.0125, 0.0117], [0.0314, 0.0245, 0.0216, 0.0158, 0.0158, 0.0109, 0.0096, 0.0079], [0.0605, 0.0268, 0.0144, 0.0099, 0.0093, 0.0093, 0.0068, 0.0068], [0.0359, 0.0103, 0.0062, 0.0062, 0.0062, 0.0055, 0.0052, 0.0049], [0.0643, 0.0119, 0.0068, 0.006, 0.005, 0.0041, 0.0041, 0.0039], [0.0284, 0.0173, 0.0077, 0.006, 0.006, 0.0049, 0.0044, 0.0044], [0.6369, 0.015, 0.008, 0.008, 0.0049, 0.004, 0.0038, 0.0033], [0.0251, 0.0072, 0.0063, 0.003, 0.0026, 0.0026, 0.0022, 0.0019], [0.0721, 0.0265, 0.0151, 0.0098, 0.0076, 0.0076, 0.0071, 0.0067], [0.0541, 0.024, 0.0212, 0.0187, 0.0176, 0.0129, 0.0121, 0.0121], [0.2206, 0.1109, 0.0864, 0.0299, 0.0247, 0.0181, 0.0097, 0.0097], [0.1992, 0.0325, 0.0127, 0.0099, 0.0088, 0.0077, 0.0068, 0.006], [0.5446, 0.0785, 0.0539, 0.0507, 0.0145, 0.0128, 0.0094, 0.0047], [0.5039, 0.1056, 0.0992, 0.0322, 0.0322, 0.0195, 0.0077, 0.0049], [0.131, 0.0619, 0.0375, 0.0331, 0.0311, 0.0292, 0.0201, 0.013], [0.3955, 0.0779, 0.0444, 0.0185, 0.0163, 0.0153, 0.0153, 0.0144], [0.5144, 0.167, 0.0614, 0.035, 0.035, 0.029, 0.0061, 0.0054], [0.3508, 0.0783, 0.061, 0.0475, 0.0224, 0.0154, 0.0128, 0.0128], [0.3724, 0.1653, 0.0238, 0.0238, 0.0154, 0.0127, 0.0112, 0.0088], [0.3922, 0.3054, 0.1635, 0.0221, 0.0098, 0.0087, 0.0053, 0.0032], [0.7706, 0.1719, 0.0264, 0.003, 0.002, 0.0017, 0.001, 0.001], [0.8381, 0.1285, 0.0174, 0.0028, 0.0016, 0.0008, 0.0007, 0.0006], [0.4785, 0.3727, 0.0306, 0.012, 0.0077, 0.0064, 0.006, 0.0039], [0.4998, 0.3435, 0.0868, 0.011, 0.011, 0.0071, 0.0049, 0.0043], [0.5398, 0.2889, 0.0345, 0.0286, 0.0135, 0.0099, 0.0087, 0.0064], [0.6499, 0.2391, 0.0344, 0.0135, 0.0056, 0.0056, 0.0047, 0.0039], [0.6182, 0.292, 0.0225, 0.01, 0.0094, 0.0037, 0.0024, 0.0021], [0.4166, 0.2527, 0.1968, 0.0639, 0.0034, 0.0034, 0.0018, 0.0017], [0.2136, 0.1379, 0.0651, 0.0371, 0.0289, 0.0272, 0.0165, 0.0165], [0.4276, 0.0616, 0.048, 0.0423, 0.0166, 0.0166, 0.0146, 0.0083], [0.0601, 0.053, 0.0322, 0.0284, 0.0183, 0.0162, 0.0143, 0.0143], [0.0861, 0.0592, 0.0433, 0.0297, 0.0232, 0.0218, 0.0218, 0.018], [0.847, 0.1299, 0.0155, 0.0039, 0.0009, 0.0007, 0.0006, 0.0003], [0.9357, 0.0411, 0.0133, 0.0071, 0.0006, 0.0005, 0.0002, 0.0002], [0.6334, 0.1413, 0.0857, 0.0357, 0.0315, 0.0278, 0.0116, 0.009], [0.4564, 0.4564, 0.0793, 0.0019, 0.0016, 0.0013, 0.0011, 0.0005], [0.9765, 0.0139, 0.0096, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9965, 0.0025, 0.001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9844, 0.0097, 0.0059, 0.0001, 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.9989, 0.0008, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.998, 0.0015, 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], [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.9988, 0.0012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Python": [81166, 166100, 96601, 137402, 28306, 116414, 22094, 81948, 62198, 145947, 20410, 23804, 52274, 41809, 20214, 29046, 67074, 43695, 117877, 173313, 102016, 157756, 98413, 69530, 49920, 85906, 26920, 14598, 15190, 4137, 4440, 4293, 4387, 5076, 9436, 10819, 19915, 14016, 11951, 12065, 11073, 9216, 10430, 16472, 11776, 9763, 11377, 17112, 33949, 37390, 14646, 8452, 51318, 49967, 43563, 18281, 8806, 8850, 6101, 1556, 1090, 67, 59]}}, {"pos": 554, "top": [[".", "\u00a0\u00a0", " \u200b\u200b", "  ", "?", "\u2026.", "  \n\n", "\u00a0"], ["  \n\n", " **'", " **:", "\uff1a**", "\uff1f**", " (**", " \u062f\u0645\u0634", " **:**"], ["\u3002", ".", "\u2026..", "\u2026\"", "\u2026", "\u2026.", "\u2013", ","], ["\uff1f**", " **\u25cb", " Blowjob", " **\u3010", " **\u25a0", " milfs", "\uff1a**", " **\u201c"], [" **\u201c", "  \n\n", "\uff1a**", " **#", "<|im_end|>", "\uff1f**", " \n\n\n\n", " *</"], [" **\u201c", "\u3002", "\uff1f**", "**!", " **\"", " **\u3010", "\uff1a**", " **#"], [" **\u201c", " **\u3010", "  \n\n", "\uff1f**", "\uff1a**", "\u201d**", "**\u3002", "\uff09**"], [" **\u3010", "  \n\n", "   \n\n", " **\u201c", " \n\n", " **#", "     \n\n", "\uff1f**"], ["  \n\n", " \n\n", "   \n\n", "    \n\n", "     \n\n", "       \n\n", "      \n\n", "\t\n\n"], [" **#", " **\u3010", " **+", " **\"", " **\u201c", " **'", " **", " **:"], [" **\u201c", " **#", " **\u3010", "  \n\n", " \ufffd", " **+", " \ufffd", " \ufffd"], [" **\u3010", " **#", " **+", " **\u201c", " **", " **:", " **\u00ab", " **\u201e"], [" **#", " **\u3010", " **+", " **", " **:", " **\u201c", " **'", " **\u00ab"], [" **+", " **#", " **", " **'", " **\u201c", " **\u3010", " **:", " **\u00ab"], [" **", " leveraging", " arguably", " incentiv", " nuanced", " folks", " **+", " transitioning"], [" leveraging", " folks", " incredibly", " nuanced", " incentiv", " arguably", " transitioning", " showcasing"], ["  \n\n", " arguably", " leveraging", "-esque", " incentiv", " nuanced", "\r\n\r\n", " transitioning"], ["  \n\n", "<|endoftext|>", " \n\n", "   \n\n", "  \r\n\r\n", "\r\n\r\n", " arguably", " \r\n\r\n"], [" **", " **\u201c", "  \n\n", " **#", " **\"", " **'", "\r\n\r\n", " arguably"], ["<|endoftext|>", "  \n\n", "\r\n\r\n", " arguably", " \n\n", "  \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"], ["\r\n\r\n", " **", " arguably", " **#", "  \n\n", " **\u201c", "\n\n", " leveraging"], ["<|endoftext|>", "\n\n", "\r\n\r\n", "  \n\n", " \n\n", " arguably", " \r\n\r\n", " **"], ["<|endoftext|>", "\n\n", "  \n\n", "\r\n\r\n", " \n\n", " arguably", " \r\n\r\n", "<|file_sep|>"], ["  \n\n", " \n\n", "\n\n", "\r\n\r\n", "<|endoftext|>", " \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", " **", "  \r\n\r\n"], ["\n\n", "  \n\n", " \n\n", "\r\n\r\n", "<|endoftext|>", " \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", "\n\n", "\r\n\r\n", "<|endoftext|>", " \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"], ["<|endoftext|>", "  \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", "\n\n", " \u2014", "\r\n\r\n", "   \n\n", " \r\n\r\n"], ["  \n\n", "<|endoftext|>", " \n\n", " \u2014", " **", "\n\n", "  \r\n\r\n", "   \n\n"], ["<|endoftext|>", "  \n\n", " \n\n", "  \r\n\r\n", "   \n\n", " \r\n\r\n", " **", " **\u201c"], ["  \n\n", "<|endoftext|>", " \n\n", "  \r\n\r\n", " **\u201c", "   \n\n", " \r\n\r\n", "**\u2014"], ["  \n\n", "<|endoftext|>", " \n\n", " **\u201c", "  \r\n\r\n", "   \n\n", "**\u2014", " \r\n\r\n"], ["  \n\n", "<|endoftext|>", " \n\n", " **\u201c", "   \n\n", "  \r\n\r\n", " **", " \r\n\r\n"], ["  \n\n", " **\u201c", "<|endoftext|>", " **", " \n\n", "   \n\n", "**\u2014", "  \r\n\r\n"], ["  \n\n", "<|endoftext|>", " **\u201c", " **", "**\u2014", " \n\n", "   \n\n", " **\""], ["  \n\n", "<|endoftext|>", " **\u201c", " **", " \n\n", "**\u2014", "   \n\n", "  \r\n\r\n"], ["  \n\n", "<|endoftext|>", " **\u201c", "**\u2014", " \n\n", "\u2026**", " **", "   \n\n"], ["<|endoftext|>", "  \n\n", " **\u201c", "**\u2014", " \n\n", " **", ":**", " \u2014"], ["  \n\n", "**\u2014", "<|endoftext|>", " **\u201c", " **\u2014", "\uff1a**", ":**", " **"], ["  \n\n", "\uff1a**", "**\u2014", "<|endoftext|>", " **\u201c", " **", " **\u2014", ":**"], ["  \n\n", " **", "**\u2014", "\uff1a**", "<|endoftext|>", " **\u201c", "\u2026**", ":**"], ["  \n\n", " **", "\uff1a**", " **\u201c", ":**", "**\u2014", "\u2026**", "**:"], ["  \n\n", ":**", "\uff1a**", " **", "**:", " **\u201c", "**", "**\u2014"], [":**", "\uff1a**", "  \n\n", " **", "**:", " **\u201c", "**\u2014", "**"], [" **", ":**", "\uff1a**", " **\u201c", "**", "**:", " **\"", " **:"], [" **", ":**", "\uff1a**", "**", " **+", " **\u201c", " **#", "**:"], ["  \n\n", " **", "\uff1a**", ":**", "**", "**:", " **\u201c", " **#"], ["  \n\n", " **", "**:", "\uff1a**", ":**", " **\"", " **#", "**"], [" **", "**", "**:", "  \n\n", " **\"", " **#", " **\u201c", " **:"], [" **", "**", " **#", " **:", "**:", " **\"", " **+", " **\u201c"], [" **", "**", " **#", "**:", ">**", "\u2019**", " **:", " **\""], [" **", "**", "**:", ">**", " **#", " **:", "\u2019**", " **\""], ["###", "**", " ###", "**.", "**:", " **", "\u2019**", "**,"], ["###", " ###", "**", "**.", "**:", " **", "\u2019**", "**,"], ["###", " ###", "**", " **", "**.", "**:", "\u2019**", " **\""], ["###", " ###", "**", " **", "**.", "**:", "**,", "\u2019**"], ["###", " ###", "**.", " **", "1", "**", "**:", " **."], ["###", " ###", "**.", " **", "**", "1", "####", "#####"], ["1", "###", "2", "3", "4", "5", "7", "9"]], "p": [[0.6961, 0.0885, 0.0445, 0.0185, 0.0093, 0.0088, 0.0082, 0.0073], [0.0102, 0.0096, 0.009, 0.0066, 0.0051, 0.0045, 0.0038, 0.0035], [0.1646, 0.1365, 0.0828, 0.0645, 0.0534, 0.0472, 0.0416, 0.0304], [0.0343, 0.0251, 0.0236, 0.0184, 0.0172, 0.0143, 0.0134, 0.0119], [0.4861, 0.1393, 0.0311, 0.0177, 0.0156, 0.0147, 0.013, 0.013], [0.7242, 0.0248, 0.0181, 0.0181, 0.016, 0.015, 0.0133, 0.0103], [0.283, 0.283, 0.0593, 0.0523, 0.028, 0.0205, 0.0205, 0.017], [0.3002, 0.1251, 0.1104, 0.086, 0.0713, 0.049, 0.0204, 0.0192], [0.436, 0.436, 0.0973, 0.0062, 0.0062, 0.0038, 0.0029, 0.0018], [0.3842, 0.0971, 0.0668, 0.0405, 0.038, 0.0124, 0.007, 0.0066], [0.349, 0.2399, 0.1455, 0.0417, 0.0253, 0.0174, 0.0163, 0.0135], [0.1668, 0.1668, 0.1147, 0.1012, 0.0653, 0.0422, 0.0272, 0.0256], [0.2191, 0.1933, 0.1248, 0.1101, 0.0711, 0.0459, 0.0381, 0.0278], [0.1668, 0.1472, 0.074, 0.0653, 0.0509, 0.0272, 0.0146, 0.0137], [0.0437, 0.0194, 0.0194, 0.0171, 0.0125, 0.0118, 0.0092, 0.0092], [0.045, 0.0329, 0.0256, 0.02, 0.0188, 0.0176, 0.0176, 0.0176], [0.0546, 0.0453, 0.0425, 0.0353, 0.0331, 0.0242, 0.0177, 0.0167], [0.7327, 0.0932, 0.0284, 0.0195, 0.0072, 0.0072, 0.0041, 0.0038], [0.1079, 0.0952, 0.0542, 0.0479, 0.0397, 0.0373, 0.035, 0.0309], [0.5093, 0.1003, 0.0224, 0.0144, 0.0099, 0.0082, 0.0082, 0.006], [0.9575, 0.0289, 0.0057, 0.0057, 0.0005, 0.0003, 0.0001, 0.0001], [0.0796, 0.0703, 0.0312, 0.0275, 0.0214, 0.0189, 0.0178, 0.0115], [0.595, 0.0912, 0.0668, 0.0488, 0.038, 0.008, 0.0062, 0.0062], [0.9172, 0.0314, 0.009, 0.009, 0.0084, 0.0012, 0.0011, 0.0005], [0.4924, 0.2326, 0.1599, 0.0588, 0.0216, 0.0149, 0.009, 0.0038], [0.4743, 0.1977, 0.1359, 0.0414, 0.0389, 0.0152, 0.0135, 0.0119], [0.3321, 0.2587, 0.2283, 0.0952, 0.0397, 0.0146, 0.0054, 0.0035], [0.3456, 0.305, 0.2692, 0.0413, 0.025, 0.0052, 0.0026, 0.0012], [0.6154, 0.2264, 0.0735, 0.0505, 0.0113, 0.0113, 0.0041, 0.0032], [0.5213, 0.2462, 0.1692, 0.0428, 0.0095, 0.0035, 0.0024, 0.0015], [0.6666, 0.1685, 0.1487, 0.0095, 0.0011, 0.0009, 0.0007, 0.0004], [0.8345, 0.0997, 0.0534, 0.005, 0.0006, 0.0005, 0.0004, 0.0003], [0.487, 0.4298, 0.0582, 0.0048, 0.0042, 0.0027, 0.0011, 0.0011], [0.5255, 0.4093, 0.0554, 0.0023, 0.002, 0.0013, 0.0008, 0.0005], [0.8251, 0.0767, 0.0282, 0.0182, 0.0111, 0.0098, 0.0071, 0.0023], [0.7548, 0.1684, 0.0201, 0.0122, 0.0095, 0.0079, 0.0035, 0.0029], [0.8879, 0.0442, 0.0209, 0.0163, 0.0077, 0.006, 0.0023, 0.0017], [0.7762, 0.0722, 0.0722, 0.0266, 0.0161, 0.0059, 0.0046, 0.0036], [0.5665, 0.3032, 0.0597, 0.0171, 0.0063, 0.0056, 0.0038, 0.0034], [0.5954, 0.3187, 0.0381, 0.0066, 0.0058, 0.0052, 0.0033, 0.0026], [0.4656, 0.4656, 0.0181, 0.0059, 0.0052, 0.0052, 0.0036, 0.0031], [0.653, 0.2402, 0.021, 0.0185, 0.0073, 0.0064, 0.0053, 0.0039], [0.3969, 0.146, 0.0782, 0.0782, 0.0418, 0.0347, 0.0306, 0.0186], [0.4508, 0.1006, 0.0888, 0.061, 0.0538, 0.0475, 0.0475, 0.0271], [0.4186, 0.1058, 0.0642, 0.0567, 0.0567, 0.047, 0.0389, 0.0389], [0.3133, 0.244, 0.0898, 0.0898, 0.0792, 0.0257, 0.0227, 0.02], [0.8076, 0.0751, 0.0585, 0.019, 0.0102, 0.0079, 0.0042, 0.0033], [0.3797, 0.2032, 0.1793, 0.0748, 0.0514, 0.0312, 0.0243, 0.0115], [0.7497, 0.0697, 0.0543, 0.0543, 0.02, 0.0094, 0.0073, 0.0057], [0.3519, 0.274, 0.1662, 0.0327, 0.0327, 0.0255, 0.0255, 0.0199], [0.4778, 0.1992, 0.0941, 0.0647, 0.0392, 0.0305, 0.021, 0.0185], [0.3143, 0.2774, 0.0546, 0.0546, 0.0482, 0.0482, 0.0425, 0.0331], [0.5249, 0.1171, 0.0553, 0.0488, 0.038, 0.038, 0.0336, 0.0336], [0.6527, 0.1456, 0.0287, 0.0253, 0.0197, 0.0174, 0.012, 0.0106], [0.388, 0.2353, 0.0409, 0.0318, 0.0318, 0.0248, 0.0248, 0.0248], [0.4411, 0.2675, 0.0282, 0.0282, 0.0282, 0.0194, 0.0194, 0.0171], [0.4532, 0.1889, 0.1146, 0.0695, 0.0541, 0.0422, 0.0094, 0.0073], [0.6055, 0.1192, 0.1192, 0.0387, 0.0342, 0.0342, 0.0059, 0.0041], [0.5774, 0.146, 0.1137, 0.0609, 0.0287, 0.0254, 0.005, 0.005], [0.6917, 0.1982, 0.0501, 0.0209, 0.0184, 0.0053, 0.0014, 0.001], [0.7584, 0.2173, 0.0123, 0.0051, 0.0031, 0.0017, 0.0005, 0.0002], [0.8904, 0.1063, 0.0015, 0.0004, 0.0003, 0.0002, 0.0002, 0.0001], [0.9875, 0.011, 0.0006, 0.0004, 0.0001, 0.0001, 0.0001, 0.0001]], "ranks": {"Python": [32375, 194771, 79494, 142053, 31949, 38373, 11654, 58162, 53108, 94950, 24727, 63043, 39352, 53620, 25478, 19167, 24015, 12290, 38332, 75906, 52202, 61317, 42447, 40228, 37257, 42584, 20688, 8290, 10928, 5320, 5315, 7450, 4618, 9817, 78433, 65940, 23661, 22124, 16079, 11248, 14625, 19210, 22935, 40599, 25616, 15870, 31089, 54689, 28380, 37553, 55570, 72422, 104498, 109978, 109738, 110885, 60827, 56709, 58118, 31201, 28407, 5049, 931]}}, {"pos": 555, "top": [["\u201d.", "\u201d\u3002", "**.", "\u201d,", "\u5728", "**\u3002", " \n\n", "###"], ["**\u3002", "**!", "\u5728", "**.", " **:", "\u7684", "**:", "**\u2013"], ["**\u3002", "**!", "**.", "\u5728", "\u7684", "**\u2013", " **\u2013", "**:"], ["**\u3002", " **\u3010", " **:", "\u5728", "\u7684", " **\u300c", " **.", "**\u201d,"], ["**\u3002", " ###", "\u5728", "**!", "\u7684", "**.", " **.", " **#"], ["\u5728", "**\u3002", "**!", " ###", "\u7684", "!\u201d.", " **\u3010", "**."], ["**\u3002", "\u5728", "**!", "\u7684", " **\u3010", "\u548c", " ###", "\u4e2d"], ["**!", "**\u3002", "\u5728", " ###", " \n\n", "  \n\n", " **\u3010", "\u7684"], [" \n\n", "  \n\n", " ###", "**!", "**\u3002", "\u5728", "   \n\n", " **\u3010"], [" ###", "**!", " **\u3010", " **#", "**\u3002", " **[", "**\u201d,", "\u5728"], [" ###", " **\u3010", "**\u3002", "**!", " **#", "\u5728", " \n\n", "\u7684"], [" **\u3010", " **#", " ###", " **\u300c", "**!", " **:", " **\u00ab", "**\u3002"], [" **\u3010", " **#", " ###", "**!", " **\u300c", " **:", " **\u00ab", " **."], [" **#", "**!", " **\u3010", " ###", " **\u300c", " **\u00ab", " **:", " **+"], [" ###", "**!", " **#", " **\u3010", "###", " **:", " **+", "**\u3002"], [" ###", "**!", " **#", " **:", " **\u3010", " **+", " **\u00ab", "**\u201d,"], [" ###", "**!", " **#", " **:", "###", " **\u3010", "**\u201d,", " **+"], ["**!", " ###", " **#", " **:", "**\u201d,", "###", " **\u3010", "**:"], [" ###", "**!", " **#", " **\u3010", "###", " **:", " **+", " ####"], [" ###", " **#", "**!", "###", " **\u3010", " ####", " **[", " ######"], [" \n\n", " ###", "  \n\n", "###", "<|endoftext|>", " **#", "\n\n", "**!"], [" ###", " **#", "**!", " **\u3010", " **:", " ####", " **+", "###"], [" ###", " **#", " \n\n", " ####", "###", "\n\n", "<|endoftext|>", " **["], [" \n\n", "<|endoftext|>", " ###", "  \n\n", "\n\n", " \r\n\r\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", " \r\n\r\n", "\r\n\r\n", "\t\n\n", "    \n\n"], [" \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", "\r\n\r\n", "<|endoftext|>", " \r\n\r\n", "\t\n\n"], [" \n\n", "\n\n", "  \n\n", "   \n\n", "\r\n\r\n", " \r\n\r\n", "    \n\n", "<|endoftext|>"], [" \n\n", "  \n\n", "\n\n", "   \n\n", "<|endoftext|>", "\r\n\r\n", "<|im_end|>", "    \n\n"], [" \n\n", "  \n\n", "\n\n", "<|endoftext|>", "   \n\n", "    \n\n", "\r\n\r\n", " \r\n\r\n"], [" \n\n", "  \n\n", "\n\n", "<|endoftext|>", "   \n\n", "\r\n\r\n", " \r\n\r\n", "    \n\n"], [" \n\n", "  \n\n", "\n\n", "<|endoftext|>", "   \n\n", "\r\n\r\n", " \u2014", " \r\n\r\n"], ["  \n\n", " \n\n", "<|endoftext|>", "\n\n", "   \n\n", " \r\n\r\n", "\t\n\n", "    \n\n"], ["  \n\n", " \n\n", "<|endoftext|>", "\n\n", "   \n\n", " \r\n\r\n", "\t\n\n", "    \n\n"], ["  \n\n", " \n\n", "\n\n", "<|endoftext|>", "   \n\n", "    \n\n", "<|im_end|>", "\t\n\n"], ["  \n\n", " \n\n", "\n\n", "<|endoftext|>", "   \n\n", "    \n\n", "\t\n\n", "<|im_end|>"], [" \n\n", "  \n\n", "\n\n", "<|endoftext|>", "   \n\n", "    \n\n", "<|im_end|>", "\t\n\n"], ["  \n\n", " \n\n", "<|endoftext|>", "\n\n", "   \n\n", "<|im_end|>", "    \n\n", "\t\n\n"], ["  \n\n", " \n\n", "<|endoftext|>", "\n\n", "   \n\n", "<|im_end|>", "    \n\n", "\t\n\n"], ["  \n\n", " \n\n", "<|endoftext|>", "\n\n", "   \n\n", "<|im_end|>", "    \n\n", "\t\n\n"], [" \n\n", "  \n\n", "\n\n", "<|endoftext|>", "   \n\n", "\t\n\n", "    \n\n", " Strategy"], ["  \n\n", " \n\n", "<|endoftext|>", "\n\n", " strategy", " Strategy", "   \n\n", "\t\n\n"], ["  \n\n", " \n\n", "\n\n", "<|im_end|>", "<|endoftext|>", " Strategy", " strategy", "   \n\n"], ["  \n\n", "<|im_end|>", " \n\n", "<|endoftext|>", "\n\n", " **#", " Strategy", "**:"], ["  \n\n", " \n\n", "<|im_end|>", "\n\n", "**:", " Strategy", " **#", " **:"], ["  \n\n", " \n\n", "**:", "\n\n", "   \n\n", "<|im_end|>", ":", "\uff1a**"], ["  \n\n", "**:", " \n\n", " Strategy", ":", "\uff1a**", " **#", ":**"], ["**:", "  \n\n", " Strategy", " **:", " **#", "\uff1a**", ":**", " Steps"], [" Strategy", " **#", " Implementation", " Steps", "**:", " Solution", " Strategies", "\u5177\u4f53\u63aa\u65bd"], ["\u5177\u4f53\u63aa\u65bd", " Strategy", " **#", " Implementation", " specifics", " Steps", " Step", " Specific"], ["\u5177\u4f53\u63aa\u65bd", " Implementation", " Strategy", " specifics", " Steps", " Step", " Specific", "\u5b9e\u65bd\u65b9\u6848"], ["\u5177\u4f53\u63aa\u65bd", " Strategy", " Implementation", " Steps", "\u7b56\u7565", " Step", "\u5b9e\u65bd\u65b9\u6848", " Tactics"], [" Strategy", "\u5177\u4f53\u63aa\u65bd", " Implementation", "\u5b9e\u65bd\u65b9\u6848", " Solution", " Step", " Immediate", " actionable"], [" Implementation", "\u5b9e\u65bd\u65b9\u6848", " Strategy", "\u5177\u4f53\u63aa\u65bd", " Solution", " Step", "\u89e3\u51b3\u65b9\u6848", " actionable"], [" Implementation", " Step", "\u5b9e\u65bd\u65b9\u6848", " Strategy", " Blueprint", " Immediate", " Solution", "\u5177\u4f53\u63aa\u65bd"], [" Implementation", " Strategy", " Step", " Blueprint", " Immediate", " Tactical", " actionable", " roadmap"], [" Strategy", " Implementation", " Step", " Execution", " Blueprint", " Immediate", "\u884c\u52a8\u8ba1\u5212", " Tactical"], [" Architecture", " Implementation", " Strategy", " Execution", " Tactical", " Step", " Concrete", " Blueprint"], [" Architecture", " Execution", " Step", " Strategy", " Plan", " Implementation", " Tactical", " Concrete"], [" Execution", " Architecture", " Step", " Strategy", " Implementation", " Tactical", " Phase", " Immediate"], [" Execution", " Step", " Strategy", " Architecture", " Immediate", " Phase", " Technical", " Implementation"], [" Step", " Execution", " Technical", " Architecture", " Strategy", " Immediate", " Phase", " Concrete"]], "p": [[0.3061, 0.0774, 0.0603, 0.0566, 0.05, 0.0469, 0.0414, 0.0343], [0.3156, 0.2785, 0.0548, 0.0484, 0.0354, 0.0312, 0.019, 0.0148], [0.4364, 0.2647, 0.1103, 0.0432, 0.0204, 0.0149, 0.0116, 0.0058], [0.3392, 0.1101, 0.0972, 0.0806, 0.0589, 0.0489, 0.0191, 0.0149], [0.3061, 0.2384, 0.1058, 0.0877, 0.0566, 0.0222, 0.0162, 0.0112], [0.2149, 0.2149, 0.1674, 0.0842, 0.0543, 0.0351, 0.0241, 0.0213], [0.3278, 0.2253, 0.0882, 0.0687, 0.0391, 0.0345, 0.0325, 0.0305], [0.183, 0.183, 0.111, 0.0979, 0.0864, 0.0558, 0.0435, 0.0435], [0.4845, 0.2289, 0.0511, 0.0511, 0.0398, 0.0146, 0.0114, 0.0101], [0.3836, 0.2053, 0.0755, 0.0755, 0.0626, 0.0191, 0.0169, 0.0102], [0.4095, 0.1249, 0.0858, 0.0806, 0.0459, 0.0316, 0.0279, 0.0149], [0.4309, 0.1585, 0.1399, 0.0548, 0.0483, 0.0354, 0.0215, 0.0167], [0.2499, 0.2072, 0.1828, 0.0919, 0.0632, 0.0524, 0.028, 0.017], [0.2558, 0.2403, 0.1551, 0.1066, 0.0325, 0.0287, 0.027, 0.0136], [0.6047, 0.1529, 0.0927, 0.0098, 0.0063, 0.0034, 0.0028, 0.0025], [0.592, 0.1029, 0.0908, 0.0108, 0.0048, 0.0033, 0.0026, 0.0023], [0.5513, 0.2159, 0.1086, 0.0074, 0.0054, 0.0037, 0.0024, 0.0023], [0.4832, 0.2283, 0.1301, 0.0089, 0.0089, 0.0083, 0.0065, 0.0035], [0.3333, 0.2941, 0.2596, 0.0177, 0.0089, 0.0061, 0.0024, 0.0021], [0.6796, 0.1257, 0.0632, 0.0318, 0.0063, 0.0043, 0.0031, 0.003], [0.4664, 0.2658, 0.0557, 0.0492, 0.028, 0.0205, 0.0132, 0.0067], [0.4935, 0.3843, 0.0204, 0.0096, 0.008, 0.004, 0.0028, 0.0024], [0.5879, 0.0747, 0.0275, 0.0122, 0.0108, 0.0051, 0.0042, 0.0042], [0.4402, 0.1429, 0.0675, 0.0464, 0.0361, 0.0063, 0.0063, 0.0063], [0.7082, 0.2029, 0.0746, 0.0054, 0.0029, 0.0015, 0.0011, 0.0009], [0.7567, 0.1913, 0.0332, 0.0058, 0.0029, 0.0018, 0.0014, 0.0011], [0.7128, 0.2042, 0.0751, 0.002, 0.0014, 0.0011, 0.0008, 0.0005], [0.6475, 0.2699, 0.0773, 0.0011, 0.0011, 0.001, 0.0009, 0.0003], [0.602, 0.2215, 0.1725, 0.0015, 0.0008, 0.0004, 0.0003, 0.0002], [0.6555, 0.2128, 0.1291, 0.0011, 0.0003, 0.0002, 0.0002, 0.0002], [0.7477, 0.1299, 0.1147, 0.005, 0.0013, 0.0002, 0.0002, 0.0001], [0.5829, 0.167, 0.1301, 0.1148, 0.0012, 0.0004, 0.0002, 0.0001], [0.392, 0.2694, 0.1852, 0.1442, 0.0012, 0.0004, 0.0003, 0.0002], [0.5481, 0.3767, 0.051, 0.0213, 0.0014, 0.0003, 0.0002, 0.0002], [0.6858, 0.2859, 0.0183, 0.0028, 0.0026, 0.0006, 0.0006, 0.0006], [0.5703, 0.392, 0.0221, 0.0134, 0.0012, 0.0002, 0.0002, 0.0001], [0.5169, 0.4562, 0.0227, 0.0019, 0.0015, 0.0003, 0.0001, 0.0001], [0.5498, 0.4282, 0.0147, 0.0042, 0.002, 0.0004, 0.0001, 0.0001], [0.4654, 0.4107, 0.063, 0.0556, 0.0022, 0.0007, 0.0004, 0.0002], [0.5909, 0.3584, 0.0229, 0.0229, 0.0024, 0.0005, 0.0004, 0.0002], [0.548, 0.3766, 0.0397, 0.0273, 0.0037, 0.0015, 0.0007, 0.0004], [0.6256, 0.2955, 0.0514, 0.0214, 0.0018, 0.0009, 0.0003, 0.0003], [0.4753, 0.3702, 0.0344, 0.0268, 0.0099, 0.0093, 0.006, 0.0034], [0.4965, 0.2657, 0.1108, 0.0408, 0.0218, 0.0075, 0.0059, 0.0046], [0.4561, 0.2155, 0.1678, 0.0374, 0.033, 0.0078, 0.0074, 0.0061], [0.5859, 0.1679, 0.1018, 0.0331, 0.0177, 0.0138, 0.0089, 0.0061], [0.8098, 0.1407, 0.019, 0.0055, 0.0042, 0.0027, 0.0016, 0.0014], [0.6844, 0.0817, 0.0721, 0.0182, 0.0125, 0.0104, 0.0071, 0.0071], [0.2451, 0.0902, 0.0547, 0.0514, 0.0453, 0.0353, 0.0228, 0.0178], [0.1598, 0.0666, 0.043, 0.0261, 0.0245, 0.0216, 0.0203, 0.0179], [0.1919, 0.0965, 0.08, 0.0313, 0.0276, 0.026, 0.0202, 0.0148], [0.5286, 0.0715, 0.0631, 0.0492, 0.0434, 0.017, 0.015, 0.0085], [0.4236, 0.2001, 0.065, 0.0271, 0.0198, 0.0164, 0.0154, 0.012], [0.2948, 0.1393, 0.1085, 0.0352, 0.0331, 0.0292, 0.0274, 0.0227], [0.4453, 0.1276, 0.0877, 0.0532, 0.0366, 0.0251, 0.0251, 0.0126], [0.4274, 0.2287, 0.0578, 0.0273, 0.0166, 0.0166, 0.0137, 0.0121], [0.3337, 0.2024, 0.1228, 0.0399, 0.0213, 0.0213, 0.0188, 0.0156], [0.1981, 0.1542, 0.1201, 0.106, 0.0567, 0.0344, 0.0237, 0.0237], [0.3673, 0.1193, 0.082, 0.0563, 0.0497, 0.0497, 0.0387, 0.0266], [0.2346, 0.0978, 0.0863, 0.0593, 0.0593, 0.0593, 0.0462, 0.028], [0.4522, 0.0786, 0.0693, 0.054, 0.054, 0.0328, 0.0289, 0.0255], [0.2042, 0.159, 0.1093, 0.1093, 0.0516, 0.0516, 0.0516, 0.0313], [0.2924, 0.1565, 0.0652, 0.0576, 0.0508, 0.0396, 0.0349, 0.0308]], "ranks": {"Python": [18984, 180847, 69267, 81073, 46245, 56580, 17959, 34552, 31370, 37333, 19291, 47281, 38659, 48807, 32824, 56855, 54824, 54171, 41273, 73685, 27539, 104245, 77634, 65595, 14651, 37091, 33225, 27615, 9764, 10332, 9452, 9932, 10130, 20908, 17154, 4309, 3086, 7035, 7214, 4717, 2911, 8247, 8144, 6540, 5673, 9026, 16870, 16963, 33475, 62189, 73146, 42566, 64034, 67289, 66348, 58117, 34696, 38464, 27452, 12518, 10825, 1819, 1126]}}, {"pos": 556, "top": [[" \u2013", ".", "\u2013", "\u00a0\u00a0", "\u00a0", "\u2026.", "\u2026..", ","], [" \u2013", "\u2013", " \u2013**", "\u2013and", " \u2013,", "**\u2013", "  \n\n", "\u2013\u2013"], [" \u2013", "\u2013", "\u2026..", "\u2026.", "**\u2013", "\u2013and", "\u3002", " \ud83d\ude42"], [" milfs", " Shemale", " Blowjob", " **:", " **:**", " pupper", "-------------</", " Strec"], [" @_", " **#", " \uff1a", " *@", " **:", "@g", " \uff08", " @("], ["\uff01", "\uff1f", " \uff1a", " **:", " \u3002", " \uff08", "\uff1a", "\u3002"], ["\u5728", "\u3002", "\uff1f", "\uff01", "\u7684", "\u662f", "\uff08", " \uff08"], [" *@", " **#", " @_", " **:", "\u5728", " **\u20ac", "-**", "\uff01"], [" \n\n", "  \n\n", "   \n\n", "    \n\n", "        \n\n", "       \n\n", " *@", "     \n\n"], [" @_", "#@", " *@", "@$", "(@", "-token", " @{", "\\t"], ["@", " @", ".@", "\ufffd", "(@", " @_", " [@", "[@"], [" **#", " **", " *@", " **\u300c", "ioni", "opolitan", " @_", "enson"], ["ianne", "urent", "altungs", "awei", "ience", "iali", "ician", "opolitan"], ["iha", "ioni", " visuals", "-global", "inheiten", "awei", "Sharper", "\u30f3"], ["ioni", "\u6ca7", "\u30f3", "iha", "i", "-or", " visuals", "-style"], ["i", " arguably", "iha", "ioni", " visuals", "\u5c0f\u6280\u5de7", " vibe", "-tech"], ["i", "\u2013", "u", "-esque", "-tech", "-", " vibe", " visuals"], ["i", "\u2013", "-", "<|endoftext|>", "-heavy", "u", "-tech", " \u2013"], ["i", "-comp", "iha", "-heavy", "Complex", "ioni", "-tech", "complex"], ["<|endoftext|>", "\u8ddf", "i", "&#", "&e", "complex", "-&", " &#"], ["<|endoftext|>", " \n\n", "\n\n", "  \n\n", "\t\n\n", " \r\n\r\n", "\r\n\r\n", "@"], ["iha", "Sharper", "_cn", "Playable", "\u4e2d\u56fd\u54c1\u724c", "opolitan", "plx", "\u56db\u6ea2"], [" ''", " ``", "iha", "\r\n\r\n", "Sharper", " \r\n\r\n", "\u8ddf", "Complex"], [" --", "\r\n\r\n", " \r\n\r\n", " ''", "\u8ddf", " notably", "Complex", "complex"], [" \n\n", " \r\n\r\n", "\r\n\r\n", "\n\n", "  \n\n", "\t\n\n", "   \n\n", "      \n\n"], [" aerospace", " optics", " architectures", " robotics", " framerate", " technologies", " workflows", " shaders"], [" aerospace", " optics", "\r\n\r\n", " architectures", " visuals", " architecture", " robotics", " imagery"], [" \n\n", " complex", "\n\n", " engineering", " technologies", " hardware", " technology", " software"], [" technologies", " hardware", " technology", " engineering", " architecture", " tech", " architectures", " software"], [" **", " technology", " architecture", " tech", " technologies", " complex", " hardware", " engineering"], [" complex", " technology", " tech", " \n\n", " technologies", " hardware", " modern", " architecture"], [" complex", " ,", " @", " modern", "<|endoftext|>", " technology", " ...", " technical"], [" ,", " complex", " @", " '", " modern", "<|endoftext|>", " -", " technology"], [" workflows", " tech", " complex", " technology", " hardware", " software", " technologies", " technical"], [" workflows", " tech", " hardware", " **", " architecture", " optimized", " architectures", "\u2026**"], [" \u2026", "\u2026**", "\u2026*", "<|endoftext|>", "...**", " \u2026.", " [\u2026]", "\u2026\u2026"], [" \u2026", "\u2026**", " optimized", "\u2026*", " workflows", " hardware", " **", "\u2011"], [" workflows", " optimized", "\u2011", " animation", " pixel", " architecture", " gameplay", " animations"], [" workflows", " optimized", " architecture", " gameplay", " animation", " graphics", " modular", " pixel"], [" architecture", " graphics", " animation", " architectural", " workflows", " animations", " optimized", " architectures"], [" graphics", " architecture", " architectural", " animations", " animation", " workflows", " visuals", " architectures"], [" graphics", " architecture", " architectural", " animation", " animations", " architectures", " workflows", " graphical"], [" graphics", " architecture", " animations", " animation", " architectural", " architectures", " visualization", " graphical"], [" graphics", " architecture", " animations", " architectural", " animation", " architectures", " visualization", " workflows"], [" architecture", " graphics", " architectural", " architectures", " animation", " animations", " minimalist", " workflows"], [" architecture", " graphics", " minimalist", " architectures", " architectural", " animations", " visualization", " geometry"], [" architecture", " minimalist", " workflows", " architectures", " graphics", " architectural", " frameworks", " geometry"], [" architecture", " architectures", " workflows", " graphics", " architectural", " geometry", " visuals", " frameworks"], [" workflows", " graphics", " architectures", " architecture", " frameworks", " visuals", "-framework", "/framework"], [" workflows", "lemetry", " visuals", " graphics", "/framework", "-framework", "-cache", "ocache"], [" visuals", " graphics", "lemetry", "-cache", " workflows", " visualization", "graphics", "ocache"], ["-cache", "-data", " graphics", "lemetry", "\u6570\u636e\u5904\u7406", "\u6570\u636e", " WebGL", " caching"], [" renderer", " RENDER", "-render", " framebuffer", " graphics", "\u6e32\u67d3", " Renderer", " geometry"], [" renderer", " geometry", " RENDER", " graphics", " Renderer", " framebuffer", "\u6e32\u67d3", " Geometry"], [" renderer", " viewport", " RENDER", " shader", " framebuffer", "\u6e32\u67d3", "/render", " graphics"], ["/render", "\u6e32\u67d3", " renderer", " render", "-render", " RENDER", " Renderer", " Render"], [" render", "\u6e32\u67d3", "/render", " Rendering", " renderer", " Render", " rendering", " RENDER"], [" render", "\u6e32\u67d3", " rendering", " Rendering", "/render", " RENDER", " renderer", " Scene"], [" frame", " Scene", "\u5e27", " scene", " render", "-frame", " Rendering", " RENDER"], [" scene", " Scene", "Scene", "scene", " frame", "_scene", "\u573a\u666f", " scenes"], [" scene", " Scene", "Scene", "scene", "_scene", "\u573a\u666f", " scenes", ".scene"], [" scene", " Scene", "Scene", "scene", "_scene", "\u573a\u666f", " scen", " scenes"], ["1", " Scene", "3", " scene", "2", "4", "0", "5"]], "p": [[0.5354, 0.3247, 0.053, 0.0195, 0.0143, 0.0134, 0.0098, 0.0046], [0.3178, 0.0278, 0.0191, 0.0149, 0.0085, 0.0075, 0.007, 0.0066], [0.4584, 0.278, 0.0483, 0.0259, 0.0243, 0.0157, 0.013, 0.0101], [0.0159, 0.008, 0.0062, 0.0052, 0.0036, 0.0033, 0.0028, 0.0026], [0.0382, 0.0159, 0.0124, 0.008, 0.0075, 0.0046, 0.0043, 0.0031], [0.0474, 0.0445, 0.0287, 0.0238, 0.0154, 0.0144, 0.0136, 0.0127], [0.2413, 0.1291, 0.1071, 0.0888, 0.0419, 0.0394, 0.0348, 0.0348], [0.0842, 0.0351, 0.0273, 0.0257, 0.0241, 0.0188, 0.0121, 0.0107], [0.2009, 0.1218, 0.0739, 0.0739, 0.0575, 0.0448, 0.0396, 0.0289], [0.012, 0.0064, 0.0053, 0.0044, 0.0042, 0.0032, 0.003, 0.003], [0.2437, 0.0897, 0.0842, 0.0791, 0.0511, 0.0451, 0.0241, 0.0213], [0.0487, 0.0191, 0.0096, 0.0085, 0.0058, 0.0043, 0.004, 0.0035], [0.0053, 0.0041, 0.0036, 0.0032, 0.003, 0.0027, 0.0023, 0.0023], [0.0058, 0.0054, 0.0023, 0.002, 0.0016, 0.0016, 0.0016, 0.0015], [0.0071, 0.0043, 0.0036, 0.0034, 0.0026, 0.0025, 0.0025, 0.0022], [0.0053, 0.0039, 0.0028, 0.0025, 0.0022, 0.0019, 0.0016, 0.0016], [0.1142, 0.0057, 0.0053, 0.0053, 0.005, 0.0034, 0.003, 0.0027], [0.0857, 0.0245, 0.0096, 0.0085, 0.007, 0.007, 0.0048, 0.0048], [0.0096, 0.0035, 0.0033, 0.0022, 0.0018, 0.0017, 0.0015, 0.0014], [0.1049, 0.0056, 0.0018, 0.0015, 0.0011, 0.001, 0.001, 0.001], [0.9937, 0.0022, 0.001, 0.0005, 0.0002, 0.0002, 0.0002, 0.0], [0.0044, 0.0042, 0.001, 0.001, 0.0009, 0.0008, 0.0008, 0.0007], [0.0056, 0.0036, 0.0034, 0.0028, 0.0025, 0.0025, 0.0022, 0.0017], [0.0069, 0.0045, 0.0037, 0.0021, 0.0016, 0.0014, 0.0013, 0.0013], [0.5008, 0.1842, 0.1189, 0.0411, 0.0234, 0.0133, 0.0043, 0.003], [0.0112, 0.0077, 0.0072, 0.006, 0.006, 0.0056, 0.0053, 0.005], [0.014, 0.0096, 0.009, 0.0085, 0.007, 0.0058, 0.0058, 0.0052], [0.0725, 0.0195, 0.0152, 0.0118, 0.0111, 0.0111, 0.0111, 0.0092], [0.0256, 0.0226, 0.0165, 0.0155, 0.0155, 0.0146, 0.0129, 0.0121], [0.0582, 0.0454, 0.0426, 0.0312, 0.0312, 0.0275, 0.0275, 0.0258], [0.1203, 0.073, 0.0367, 0.0367, 0.0268, 0.0252, 0.0252, 0.0196], [0.0785, 0.0447, 0.0271, 0.0225, 0.0211, 0.0136, 0.0106, 0.01], [0.0724, 0.0529, 0.0412, 0.025, 0.0207, 0.0183, 0.0126, 0.0104], [0.0608, 0.0445, 0.0392, 0.0369, 0.0346, 0.027, 0.021, 0.021], [0.0411, 0.0234, 0.0234, 0.0194, 0.0161, 0.0151, 0.0133, 0.0125], [0.4054, 0.2786, 0.075, 0.0229, 0.0122, 0.0101, 0.0074, 0.0066], [0.099, 0.0725, 0.0498, 0.0221, 0.0208, 0.0195, 0.0126, 0.0118], [0.0359, 0.0337, 0.0247, 0.0218, 0.0218, 0.0204, 0.018, 0.018], [0.0581, 0.0513, 0.0311, 0.0201, 0.0189, 0.0166, 0.0156, 0.0156], [0.0597, 0.0561, 0.0282, 0.0282, 0.0265, 0.0234, 0.0161, 0.0151], [0.1401, 0.0849, 0.0548, 0.0377, 0.0377, 0.0259, 0.0215, 0.019], [0.1599, 0.0804, 0.0667, 0.0458, 0.0404, 0.0245, 0.0203, 0.0203], [0.1716, 0.0557, 0.0523, 0.0492, 0.036, 0.0232, 0.0218, 0.0193], [0.1072, 0.0539, 0.0394, 0.037, 0.0327, 0.0225, 0.0211, 0.0186], [0.108, 0.0615, 0.0329, 0.0257, 0.0257, 0.0257, 0.0213, 0.0188], [0.0969, 0.0626, 0.0315, 0.0296, 0.023, 0.023, 0.0216, 0.0191], [0.0443, 0.0345, 0.0269, 0.0223, 0.0174, 0.0163, 0.0135, 0.0135], [0.0405, 0.018, 0.0169, 0.0169, 0.0159, 0.014, 0.0124, 0.0116], [0.0127, 0.0127, 0.0119, 0.0112, 0.0093, 0.0093, 0.0087, 0.0082], [0.0103, 0.0096, 0.0096, 0.0091, 0.008, 0.0071, 0.0066, 0.0046], [0.0186, 0.0164, 0.012, 0.0113, 0.0094, 0.0068, 0.0057, 0.0053], [0.0224, 0.0128, 0.0128, 0.0088, 0.0077, 0.0073, 0.0068, 0.0068], [0.06, 0.0564, 0.0302, 0.0284, 0.0284, 0.025, 0.0221, 0.0221], [0.0628, 0.0628, 0.0297, 0.0262, 0.0246, 0.0231, 0.0217, 0.0217], [0.0903, 0.0484, 0.0401, 0.0354, 0.0332, 0.0312, 0.0312, 0.0312], [0.1819, 0.1103, 0.0974, 0.0807, 0.0591, 0.049, 0.0358, 0.0358], [0.2309, 0.1798, 0.075, 0.0662, 0.0621, 0.0455, 0.0455, 0.0333], [0.259, 0.1571, 0.0841, 0.0742, 0.0578, 0.051, 0.051, 0.045], [0.1526, 0.1189, 0.1049, 0.0677, 0.0636, 0.0466, 0.0265, 0.0265], [0.6026, 0.3226, 0.03, 0.0234, 0.0046, 0.0041, 0.0036, 0.0009], [0.7239, 0.235, 0.0193, 0.017, 0.0018, 0.0012, 0.001, 0.0002], [0.5561, 0.3822, 0.0314, 0.0148, 0.0048, 0.0026, 0.0019, 0.0016], [0.953, 0.0175, 0.006, 0.0053, 0.0041, 0.0015, 0.001, 0.0009]], "ranks": {"Python": [49658, 195728, 177995, 163377, 56450, 111400, 21006, 76231, 81565, 32117, 3710, 54989, 44148, 41380, 35661, 36564, 21673, 4871, 19684, 61655, 1502, 34913, 14861, 34482, 2186, 16335, 11954, 2622, 2942, 1654, 2007, 5619, 5364, 1497, 4454, 1357, 714, 1266, 1236, 1439, 892, 1031, 1032, 1637, 2548, 1936, 2144, 1812, 1814, 2433, 2803, 1051, 2589, 2227, 2553, 1663, 2011, 2102, 909, 665, 256, 344, 108]}}, {"pos": 557, "top": [[".", ",", "a", " \u2013", ";", "o", "!", "\u2026."], ["\uff0e", "\u00adi", "\u00ad", "erweise", "\ufffd", "\u0627\u064b", "\uff20", "sWith"], [".", "\u3002", "\u2013", "\u2026..", ",", "\u2026\u2026", "\u2026.", " \u2013"], ["----------</", "-------------</", " cumshot", " milfs", " Blowjob", "\uff0a\uff0a\uff0a\uff0a", " **\u25a0", " Shemale"], ["\u5728", "\uff01", "\u3002", "\uff08", "\uff1f", "abeled", "\uff1a", " canceled"], ["\uff01", "\u5728", "\uff1f", "\u3002", " \u200b\u200b", "\uff1a", "\uff08", "\u4e2d"], ["\uff01", "\u3002", "\u5728", "\uff1f", "\uff08", "\uff1a", "\u4e2d", "\uff0e"], ["\uff01", "\u5728", "\u3002", " \u200b\u200b", "aveled", "\uff08", "**!", "\uff1a"], ["\uff01", " \u200b\u200b", "\u3002", "!\u201d.", "  \n\n", "\uff08", ".", "\uff1a"], ["\\n", " \u200b\u200b", "abeled", "!\\", ".", "\uff01", "!\u201d.", "!"], [".", "\uff01", " \u200b\u200b", "\\n", "\u3002", "\uff0e", "!", " #"], [" **\u300c", " **\u00ab", " **#", " **\u3010", " cumshot", " Blowjob", " **:", " Shemale"], [" **\u300c", " cumshot", " **\u00ab", " analyzes", "ighborhood", " Blowjob", " **:", " Shemale"], [" analyzes", "ighborhood", " Optimization", " **\u00ab", "\uff01", " Savior", " Favorites", " \u200b\u200b"], [" #", " Theater", "\uff01", "\uff1a", " Scene", " Strategy", " analyzes", " Core"], [" #", " \u200b\u200b", " Optimization", " Core", " analyzes", " Integration", " integration", " Center"], [" \u200b\u200b", "\u2026", " Overview", " #", "...", ":", " [\u2026]", " Setup"], [" \u200b\u200b", " [\u2026]", "\u2026.", ":...", ":", " [\u2026", " Overview", "\u2026"], ["...</", ":...", "...", "...\u201d", "<|im_end|>", "\u2026.", " Optimization", "...**"], ["<|im_end|>", "\u3010", "<|endoftext|>", " \ufffd", "#", "\u5c06", "\ufffd", " \u3010"], ["<|endoftext|>", "\n\n", "<|im_end|>", "#", "\u3010", "  \n\n", "\u5c06", " #"], [" Focus", " Workflow", " Startup", " Overview", " Optimization", " Strategy", " Goals", " Launch"], [" Focus", " Launch", " Critical", " Strategy", " #", " Integrated", " Online", " Choice"], ["<|endoftext|>", "\n\n", " #", " priorit", " Critical", " Strategy", " overarching", " integrating"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", "\t\n\n", "<|im_end|>", "\n\n\n\n", "   \n\n"], ["\n\n", " foundational", " priorit", " overarching", "  \n\n", " impactful", "\t\n\n", " \n\n"], ["\n\n", " foundational", " \n\n", "\r\n\r\n", " priorit", "  \n\n", " overarching", " \ufffd"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", " priorit", "\n\n\n\n", "\t\n\n", " foundational"], ["\n\n", " foundational", " priorit", " \n\n", " leveraging", "  \n\n", " overarching", " strategic"], ["\n\n", "  \n\n", " \n\n", " ...", " priorit", " [...]", "...**", " \u2026"], ["\n\n", " priorit", " \n\n", " focused", "  \n\n", " focus", " ...", " strategic"], ["\n\n", " focused", " priorit", " focus", " strategically", " core", " key", " \n\n"], [" focused", " priorit", " First", " strategically", " focus", " strategic", " first", " key"], [" priorit", " foundational", " strategic", " strategically", "  \n\n", " leveraging", " focused", " Focus"], ["<|endoftext|>", " priorit", "  \n\n", " leveraging", " foundational", " strategic", " strategically", " Strategy"], ["<|endoftext|>", "  \n\n", " leveraging", " priorit", " \n\n", "\n\n", " Strategy", " strategically"], [" leveraging", " priorit", " Strategy", " strategically", " strategic", " meticulously", " Infrastructure", " Strategic"], [" leveraging", " Strategy", " priorit", " Infrastructure", " strategic", " Strategic", " Tactical", " strategically"], [" Strategy", " leveraging", " Infrastructure", " priorit", " strategic", " Strategic", " Tactical", " strategically"], [" Strategy", " leveraging", " Infrastructure", " strategy", " strategic", " priorit", " strategically", " Strategic"], [" Strategy", " leveraging", " Infrastructure", " strategy", " technical", " priorit", " infrastructure", " Technical"], [" strategy", " engineering", " Strategy", " leveraging", " modular", " infrastructure", " restructuring", " technical"], [" strategy", " infrastructure", " leveraging", " restructuring", " Strategy", " modular", " engineering", " Infrastructure"], [" leveraging", " Strategy", " strategy", " modular", " infrastructure", " restructuring", " implementation", " redesign"], [" modular", " leveraging", " strategy", " Strategy", " infrastructure", " redesign", " Infrastructure", " Modular"], [" modular", " Strategy", " strategy", " leveraging", " Modular", " redesign", " restructuring", " Architecture"], [" Strategy", " Infrastructure", " Architecture", " Modular", " Solution", " Immediate", " Implementation", " restructuring"], [" Strategy", " Architecture", " Infrastructure", " Modular", " Solution", " Immediate", " Massive", " Separ"], [" Architecture", " Strategy", " Solution", " Modular", " Immediate", " Split", " Infrastructure", " **\""], [" Strategy", " Immediate", " Architecture", " Separ", " Priority", " Strategic", " Separate", " Infrastructure"], [" Strategy", " Immediate", " Architecture", " Split", " Priority", " Solution", " redesign", " Separ"], [" Architecture", " Strategy", " Split", "\u91cd\u6784", " Immediate", " Separate", " redesign", " Modular"], [" Split", " Separate", " Separ", " Strategy", "\u5206\u79bb", " Architecture", "\u91cd\u6784", " separation"], [" Split", " Architecture", " Separate", " Separ", " Strategy", "\u91cd\u6784", " Modular", " redesign"], [" Split", " Architecture", " splitting", "-split", "\u5206\u79bb", " Separate", "Split", "\u5206\u88c2"], [" Split", " Architecture", "\u7834\u89e3", "-split", "\u5206\u79bb", " splitting", " refactor", "\u5206\u88c2"], [" Split", " Architecture", "-split", " refactor", " dismantle", " Separ", "Split", "\u7834\u89e3"], [" Architecture", " Split", " solve", " Solve", " Fix", " Separ", "\u7834\u89e3", " dismantle"], [" Architecture", " architecture", "\u67b6\u6784", "Architecture", " Architect", "architecture", " Archit", " archit"], [" Architecture", " architecture", "\u67b6\u6784", " Architect", " kill", " Kill", " archit", " Archit"], [" Architecture", " architecture", "\u67b6\u6784", " Architect", " Kill", " dec", " kill", " Kernel"], [" Architecture", " Architect", " architecture", "\u67b6\u6784", " Kill", " Kernel", " architectural", " Archit"], [".", " Architecture", ".**", " Architect", " Kill", "Architecture", " architecture", "\u67b6\u6784"]], "p": [[0.9528, 0.0419, 0.0011, 0.0005, 0.0004, 0.0003, 0.0003, 0.0002], [0.0529, 0.0046, 0.0046, 0.0043, 0.0038, 0.0032, 0.0026, 0.0025], [0.7916, 0.0834, 0.0145, 0.0128, 0.012, 0.0113, 0.01, 0.0088], [0.0187, 0.0155, 0.0155, 0.0083, 0.0065, 0.0054, 0.005, 0.0047], [0.2052, 0.1928, 0.0552, 0.0296, 0.0149, 0.0096, 0.009, 0.0055], [0.5291, 0.0919, 0.0716, 0.0524, 0.0132, 0.0132, 0.008, 0.0046], [0.4124, 0.2835, 0.098, 0.0435, 0.0408, 0.0281, 0.015, 0.008], [0.2955, 0.0702, 0.0482, 0.04, 0.0167, 0.0138, 0.0095, 0.0074], [0.4156, 0.2225, 0.0722, 0.0637, 0.032, 0.032, 0.0161, 0.0104], [0.1727, 0.0527, 0.0206, 0.0182, 0.0182, 0.0171, 0.0151, 0.0104], [0.3097, 0.1878, 0.1463, 0.107, 0.0419, 0.0128, 0.01, 0.0078], [0.0109, 0.0109, 0.009, 0.0062, 0.0045, 0.0038, 0.0035, 0.0029], [0.004, 0.0039, 0.003, 0.0022, 0.0021, 0.0021, 0.0015, 0.0015], [0.0052, 0.0035, 0.0032, 0.0025, 0.0025, 0.0019, 0.0019, 0.0019], [0.0383, 0.0091, 0.0071, 0.0067, 0.0052, 0.004, 0.0036, 0.0033], [0.0145, 0.0145, 0.0037, 0.0032, 0.0031, 0.003, 0.0028, 0.0028], [0.0407, 0.0085, 0.008, 0.008, 0.0075, 0.0071, 0.0052, 0.0043], [0.0479, 0.0273, 0.0241, 0.0213, 0.0166, 0.0129, 0.0074, 0.0074], [0.0765, 0.0151, 0.0133, 0.011, 0.011, 0.0104, 0.0071, 0.0059], [0.0408, 0.0318, 0.0247, 0.015, 0.0117, 0.011, 0.011, 0.0103], [0.6899, 0.0441, 0.0343, 0.0152, 0.0077, 0.0041, 0.003, 0.0025], [0.0164, 0.0093, 0.0068, 0.0064, 0.006, 0.0057, 0.0047, 0.0047], [0.011, 0.011, 0.0076, 0.0067, 0.0063, 0.0059, 0.0055, 0.0052], [0.0897, 0.0657, 0.0188, 0.0061, 0.0057, 0.0042, 0.0039, 0.0037], [0.941, 0.0284, 0.0251, 0.001, 0.0009, 0.0008, 0.0006, 0.0004], [0.0923, 0.0385, 0.0233, 0.0219, 0.0182, 0.0151, 0.0125, 0.0117], [0.8828, 0.0046, 0.0038, 0.0032, 0.0032, 0.0022, 0.0022, 0.0018], [0.9888, 0.0067, 0.0022, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001], [0.7826, 0.0173, 0.0173, 0.0119, 0.0119, 0.0099, 0.0039, 0.0036], [0.5052, 0.0934, 0.0642, 0.0268, 0.0252, 0.0196, 0.0153, 0.0143], [0.3491, 0.0368, 0.0346, 0.0269, 0.0269, 0.0185, 0.0174, 0.0112], [0.2342, 0.0433, 0.0382, 0.0298, 0.0141, 0.0141, 0.0132, 0.0117], [0.0383, 0.0263, 0.0263, 0.016, 0.015, 0.0141, 0.0132, 0.0124], [0.0498, 0.0413, 0.0235, 0.0183, 0.0162, 0.0152, 0.0152, 0.0134], [0.084, 0.0329, 0.0256, 0.0241, 0.0188, 0.0129, 0.0121, 0.0114], [0.0826, 0.0604, 0.039, 0.0304, 0.0196, 0.0173, 0.0163, 0.0119], [0.0895, 0.0373, 0.0257, 0.0241, 0.0166, 0.0166, 0.0137, 0.0094], [0.0551, 0.0403, 0.019, 0.0158, 0.0158, 0.0139, 0.0131, 0.0131], [0.0619, 0.0292, 0.0228, 0.0201, 0.0189, 0.0167, 0.0147, 0.0147], [0.0642, 0.0414, 0.0236, 0.0236, 0.0208, 0.0196, 0.0162, 0.0143], [0.0674, 0.0384, 0.0281, 0.0264, 0.0193, 0.0181, 0.0181, 0.015], [0.041, 0.0386, 0.0362, 0.034, 0.034, 0.034, 0.03, 0.0206], [0.0393, 0.0393, 0.0393, 0.0393, 0.0347, 0.0326, 0.0326, 0.0254], [0.0668, 0.059, 0.0554, 0.0405, 0.0278, 0.0262, 0.0246, 0.0204], [0.0693, 0.0539, 0.0476, 0.042, 0.0289, 0.0239, 0.0211, 0.0198], [0.066, 0.062, 0.0376, 0.0353, 0.0312, 0.0259, 0.0228, 0.0228], [0.0908, 0.0356, 0.0314, 0.0295, 0.023, 0.0179, 0.0148, 0.0139], [0.0729, 0.0568, 0.0268, 0.0268, 0.0268, 0.0222, 0.0196, 0.0173], [0.069, 0.0504, 0.027, 0.0238, 0.0238, 0.0186, 0.0174, 0.0136], [0.0617, 0.0544, 0.0291, 0.0242, 0.0166, 0.0156, 0.0156, 0.0129], [0.0495, 0.0282, 0.0234, 0.0182, 0.0161, 0.0161, 0.0142, 0.0142], [0.0485, 0.0378, 0.0333, 0.0202, 0.0168, 0.0168, 0.0148, 0.0131], [0.1671, 0.1671, 0.1475, 0.0742, 0.0373, 0.0309, 0.0146, 0.01], [0.121, 0.1068, 0.0942, 0.0474, 0.0393, 0.0174, 0.0154, 0.0154], [0.2867, 0.1055, 0.044, 0.0388, 0.025, 0.025, 0.025, 0.0221], [0.1207, 0.1134, 0.0417, 0.0346, 0.0305, 0.0223, 0.0197, 0.0185], [0.159, 0.0799, 0.0294, 0.0244, 0.0178, 0.0178, 0.0168, 0.0157], [0.09, 0.0546, 0.0546, 0.0482, 0.0331, 0.0274, 0.0258, 0.0242], [0.7556, 0.0703, 0.0703, 0.0293, 0.0259, 0.0122, 0.0074, 0.0074], [0.4966, 0.1108, 0.0672, 0.0523, 0.0317, 0.028, 0.0205, 0.0181], [0.4268, 0.1079, 0.0697, 0.0615, 0.0423, 0.0273, 0.0256, 0.0241], [0.6767, 0.0808, 0.0433, 0.0382, 0.0169, 0.0132, 0.0124, 0.0109], [0.9997, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Python": [29191, 205397, 61410, 159939, 23407, 54399, 4605, 31907, 51372, 40561, 4988, 30412, 30105, 21647, 5238, 4796, 13738, 7855, 8531, 22115, 6696, 59414, 38390, 35539, 8191, 41786, 35703, 15515, 17532, 11690, 10231, 11765, 13946, 11229, 16063, 8214, 8554, 10763, 8387, 7035, 9106, 8420, 8194, 10855, 12228, 10014, 14585, 21648, 32101, 64497, 73498, 39364, 76370, 60160, 30056, 14156, 9280, 14279, 9142, 6751, 3695, 400, 383]}}, {"pos": 558, "top": [[".", ",", "\u00a0\u00a0", ";", "\u00a0", " \u2013", ",.", " "], [" \u2013", ".", "\u2013", ",", " ", ";", " \u200b\u200b", "\u200b"], [".", "\u2013", "\u2026.", "\u2026..", ",", "\u2026", " \u2013", " \u200b\u200b"], [" Blowjob", " cumshot", " milfs", " Shemale", " pornstar", "odle", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Guta"], [" \u200b\u200b", " \u201c.", "\u201c.", " \u201c", ".\u201c", "\u201c", "\uff1a\u201c", "!\u201c"], [" \u200b\u200b", " \u201c.", "\u201c.", " \u201c", "\u2026..", "!\u201c", ".\u201c", "\uff1a\u201c"], ["\u3002", "\uff01", "\u201c", "\u4e2d", ".\u201c", "\u201c.", "\uff1f", " \u201c"], [" \u200b\u200b", "   \n", "   \n\n", " \n", " \t\n", "  \n", "\u201c.", "    \n"], [" \n\n", "  \n\n", "   \n\n", " \u200b\u200b", " \n\n\n", "    \n\n", " \n    \n", "\u201c."], ["\u00a0", "\u00a0\u00a0", ",", " [\u2026]", "\u200b", "\u2026.", "\ufffd", "\u00ad"], ["\u00a0", " [\u2026]", ".", "<|endoftext|>", ",", " ", "\u00a0\u00a0", "\u200b"], [" **\u201c", " \u2018", " **\u2018", " \u201c", " *\u201c", " ***", " \ufffd", " \u200b\u200b"], [" \u2018", " \u200b\u200b", " [\u2026]", " launch", " leverage", " transformative", " showcase", " strategies"], [" \u2018", " launch", " ", " showcase", " global", " shared", " performance", " [\u2026]"], [" ", " \u2018", " \u201c", " launch", " W", " best", " f", " New"], [" ", " \u201c", " \u2018", " New", " best", " W", " pro", " showcasing"], ["\u00a0", " \u201c", " ", " \u2018", ",", " showcasing", " priorit", " strategic"], ["<|endoftext|>", ",", "\u00a0", " ", "\u2013", " [\u2026]", " \u2013", " \u201c"], ["<|endoftext|>", " [\u2026]", " \u201c", "\u00a0", " \u2014", " priorit", " strategically", " \u2018"], ["<|endoftext|>", " \n\n", "\u00a0", " \u2018", "  \n\n", "\n\n", " \u2014", " \u201c"], ["<|endoftext|>", " \n\n", "\n\n", "  \n\n", "   \n\n", " \n\n\n", "\t\n\n", "<|im_end|>"], [" strategically", " global", " leveraging", " heavily", " conceptual", " strategic", " infrastructure", " priorit"], [" heavily", "\n\n", " \u2018", " strategically", " uniquely", " \u2019", " modern", " \n\n"], ["<|endoftext|>", "\n\n", " \u2018", " heavily", " largely", " much", " \n\n", " rapidly"], [" \n\n", "\n\n", "  \n\n", "<|endoftext|>", "   \n\n", "\r\n\r\n", " \n\n\n", " \r\n\r\n"], [" \n\n", " heavily", " infrastructure", " engineering", " technologies", " leveraging", " technology", " systems"], ["\n\n", " \n\n", " heavily", " engineering", " technology", " infrastructure", " technologies", " complex"], ["\n\n", " \n\n", "<|endoftext|>", " \u2018", " heavily", " ,", "  \n\n", " rapidly"], ["\n\n", " \n\n", " heavily", " technology", " complex", " engineering", " systems", " technologies"], [" \n\n", " ...", " technology", " complex", "\n\n", " heavily", " leveraging", " engineering"], [" ...", " \n\n", " complex", " ", " technology", "\n\n", " heavily", " high"], [" complex", " heavily", " high", " work", " ,", " using", " focused", " "], [" complex", " using", " focused", " high", " technical", " technology", " modern", " design"], [" technical", " optimized", " technology", " modular", " hybrid", " complex", " systems", " specialized"], [" leveraging", " optimized", " hybrid", " modular", " priorit", " technical", " dual", " tech"], ["<|endoftext|>", " optimized", " leveraging", " modular", " hybrid", " technical", " dual", " hardware"], [" optimized", " leveraging", " modular", " hybrid", " bypass", " hardware", " dual", " technical"], [" optimized", " leveraging", " modular", " hybrid", " hardware", " bypass", " technical", " dual"], [" optimized", " modular", " leveraging", " direct", " bypass", " technical", " hybrid", " dual"], [" optimized", " modular", " leveraging", " hardware", " dual", " hybrid", " technical", " independent"], [" optimized", " modular", " hardware", " leveraging", " technical", " bypass", " hybrid", " independent"], [" modular", " optimized", " hardware", " leveraging", " architecture", " bypass", " engineering", " strategy"], [" modular", " optimized", " separation", " leveraging", " hardware", " architecture", " bypass", " dual"], [" optimized", " modular", " separation", " leveraging", " bypass", " architecture", " strategy", " decentralized"], [" separation", " modular", " separate", " dual", " Separ", " split", " optimized", " bypass"], [" separation", " modular", " separate", " Separ", " Separate", " split", " dual", " Split"], [" separation", " modular", " Separ", " Separate", " leveraging", " Dual", " Modular", " Split"], [" Separ", " separation", " Separate", " Split", " Dual", " split", " modular", " separate"], [" Separ", " Separate", " separation", " Dual", " Split", "\u5206\u79bb", " Modular", " split"], [" Separate", " Separ", " Split", " Dual", " separation", "\u5206\u79bb", " Strategy", " Modular"], [" Separ", " Separate", " Split", "\u5206\u79bb", "\u9694\u7edd", "\u5265\u79bb", " Strategy", " separation"], [" Separate", " Split", " Separ", "\u5265\u79bb", "\u5206\u79bb", " Architecture", " separation", "\u9694\u7edd"], [" Separ", "\u5206\u79bb", " Separate", " separation", " Split", "Separ", "\u5206\u96e2", " separating"], [" Separ", " Separate", "\u5206\u79bb", " separation", " Split", "\u5265\u79bb", " Architecture", "Separ"], [" Split", "\u5206\u79bb", " Separ", " Separate", " separation", " Architecture", " splitting", "-split"], ["\u5206\u79bb", " Split", " Separ", " Architecture", " separation", " Separate", " splitting", "-split"], [" Split", " Separ", "\u5206\u79bb", " Separate", " Architecture", " Rendering", "\u5265\u79bb", " separation"], [" dec", " Separ", "\u5206\u79bb", " isolate", " Separate", " Split", " Architecture", "\u5265\u79bb"], [" Architecture", " architecture", " Architect", "\u67b6\u6784", " architectural", "Architecture", "architecture", " archit"], [" Architecture", " architecture", " dec", " architectural", " Architect", " archit", " Archit", "\u67b6\u6784"], [" Architecture", " architecture", " Architect", " Kill", " dec", " architectural", " archit", "\u67b6\u6784"], [" Architecture", " Architect", " architecture", " Kill", " architectural", " Off", " Render", " Archit"], [" Architecture", " Architect", " Kill", " The", " Render", " Solve", " Kernel", " Is"]], "p": [[0.9694, 0.0178, 0.0023, 0.002, 0.0016, 0.0011, 0.0007, 0.0007], [0.11, 0.11, 0.0912, 0.038, 0.0203, 0.0116, 0.0102, 0.009], [0.5145, 0.1893, 0.0789, 0.0696, 0.0422, 0.029, 0.0256, 0.0187], [0.0167, 0.0101, 0.0089, 0.0051, 0.0035, 0.0031, 0.0018, 0.0017], [0.3198, 0.1419, 0.0592, 0.0382, 0.0204, 0.0055, 0.0043, 0.0033], [0.8143, 0.0297, 0.0048, 0.0028, 0.0026, 0.0018, 0.0012, 0.0012], [0.263, 0.0487, 0.0429, 0.0334, 0.026, 0.026, 0.023, 0.023], [0.4063, 0.1591, 0.0229, 0.019, 0.0158, 0.0102, 0.0084, 0.0074], [0.4664, 0.2203, 0.1179, 0.0715, 0.0218, 0.0124, 0.0085, 0.008], [0.411, 0.1512, 0.1254, 0.0317, 0.0124, 0.0117, 0.0117, 0.0103], [0.5439, 0.1558, 0.065, 0.0506, 0.0475, 0.0175, 0.0175, 0.0064], [0.0176, 0.0107, 0.01, 0.0073, 0.0061, 0.0054, 0.0054, 0.0037], [0.0166, 0.0101, 0.0057, 0.0054, 0.0051, 0.0037, 0.0033, 0.0031], [0.0147, 0.0095, 0.0061, 0.0035, 0.0035, 0.0031, 0.0029, 0.0029], [0.0598, 0.0386, 0.0171, 0.0056, 0.0041, 0.0038, 0.0038, 0.0038], [0.0106, 0.01, 0.0094, 0.0061, 0.0057, 0.0042, 0.0039, 0.0035], [0.0297, 0.0217, 0.0192, 0.0124, 0.0103, 0.0058, 0.0058, 0.0035], [0.0753, 0.0356, 0.0203, 0.0168, 0.0148, 0.0102, 0.0102, 0.0079], [0.8715, 0.0028, 0.0022, 0.0017, 0.0014, 0.0008, 0.0007, 0.0007], [0.9847, 0.0031, 0.0015, 0.0007, 0.0005, 0.0004, 0.0003, 0.0002], [0.9897, 0.0059, 0.0026, 0.0005, 0.0, 0.0, 0.0, 0.0], [0.0094, 0.0094, 0.0073, 0.0073, 0.0073, 0.0069, 0.0057, 0.0054], [0.0175, 0.0094, 0.0078, 0.0061, 0.0061, 0.0061, 0.0057, 0.0053], [0.4094, 0.0149, 0.0085, 0.0058, 0.0033, 0.0031, 0.0029, 0.0024], [0.5598, 0.3848, 0.0246, 0.0109, 0.0024, 0.0018, 0.0017, 0.001], [0.0511, 0.0257, 0.0156, 0.0129, 0.0114, 0.0083, 0.0078, 0.0074], [0.3206, 0.0462, 0.0124, 0.0075, 0.0043, 0.0043, 0.0038, 0.0033], [0.3826, 0.1096, 0.0216, 0.0102, 0.0096, 0.0062, 0.0062, 0.0035], [0.0719, 0.0264, 0.0182, 0.0125, 0.0104, 0.0081, 0.0076, 0.0071], [0.0679, 0.0563, 0.0207, 0.0152, 0.0142, 0.0126, 0.0098, 0.0098], [0.0514, 0.0293, 0.0201, 0.0122, 0.0115, 0.0115, 0.0108, 0.0108], [0.0166, 0.0138, 0.0138, 0.0101, 0.0095, 0.0089, 0.0083, 0.0083], [0.0207, 0.0142, 0.0111, 0.0111, 0.0104, 0.0104, 0.0092, 0.0086], [0.0581, 0.0425, 0.0292, 0.0227, 0.0214, 0.0201, 0.0156, 0.0138], [0.07, 0.0512, 0.0399, 0.0375, 0.0156, 0.0147, 0.0138, 0.0114], [0.0571, 0.0473, 0.0393, 0.0306, 0.021, 0.0197, 0.0154, 0.0144], [0.1679, 0.0793, 0.0425, 0.0201, 0.0188, 0.0177, 0.0156, 0.0147], [0.1303, 0.051, 0.0398, 0.0227, 0.0188, 0.0176, 0.0176, 0.0166], [0.0987, 0.0466, 0.0363, 0.022, 0.0207, 0.0194, 0.0183, 0.0151], [0.0896, 0.0374, 0.033, 0.0241, 0.0213, 0.0188, 0.0188, 0.0166], [0.0732, 0.0346, 0.0325, 0.0269, 0.0197, 0.0185, 0.0163, 0.0127], [0.1005, 0.0833, 0.0306, 0.0224, 0.0164, 0.0145, 0.0136, 0.0128], [0.083, 0.0733, 0.0503, 0.0253, 0.021, 0.0174, 0.0144, 0.0127], [0.08, 0.0664, 0.0623, 0.0456, 0.026, 0.0229, 0.0148, 0.0139], [0.2119, 0.1001, 0.0503, 0.0287, 0.0238, 0.0185, 0.0163, 0.0154], [0.246, 0.0905, 0.0427, 0.0427, 0.0294, 0.0294, 0.0276, 0.019], [0.1302, 0.0615, 0.051, 0.0291, 0.0256, 0.0241, 0.02, 0.0176], [0.2271, 0.1883, 0.1008, 0.0507, 0.0447, 0.0165, 0.0113, 0.0113], [0.2274, 0.1074, 0.1074, 0.0786, 0.0738, 0.0199, 0.0121, 0.0113], [0.2027, 0.1904, 0.0845, 0.0581, 0.0546, 0.0201, 0.0138, 0.0095], [0.1248, 0.1035, 0.0972, 0.0381, 0.0316, 0.0296, 0.0296, 0.0217], [0.114, 0.0945, 0.0784, 0.0784, 0.0288, 0.0239, 0.0186, 0.0094], [0.3209, 0.2832, 0.2205, 0.0716, 0.0492, 0.011, 0.0067, 0.0052], [0.3034, 0.3034, 0.184, 0.0597, 0.0411, 0.0151, 0.0104, 0.0092], [0.2541, 0.2242, 0.1541, 0.1059, 0.0442, 0.039, 0.0184, 0.0143], [0.2668, 0.2078, 0.1618, 0.0464, 0.0409, 0.0409, 0.0193, 0.0151], [0.2267, 0.2001, 0.0945, 0.0945, 0.0446, 0.0348, 0.0136, 0.012], [0.2295, 0.1392, 0.0957, 0.0657, 0.0512, 0.0399, 0.0352, 0.0274], [0.8293, 0.099, 0.0152, 0.0134, 0.0092, 0.0092, 0.0063, 0.0056], [0.5274, 0.2198, 0.0714, 0.0298, 0.0263, 0.0232, 0.0124, 0.0124], [0.5169, 0.1678, 0.0481, 0.0374, 0.033, 0.0257, 0.02, 0.02], [0.7167, 0.0667, 0.0357, 0.0315, 0.014, 0.0131, 0.0116, 0.0109], [0.6261, 0.1397, 0.096, 0.0312, 0.0214, 0.0095, 0.007, 0.0051]], "ranks": {"Python": [25637, 60636, 70868, 99073, 11815, 66404, 5569, 46921, 44412, 34337, 10952, 8233, 3374, 7245, 11365, 11955, 13596, 7673, 7406, 16718, 7308, 5732, 6418, 10402, 6680, 3937, 3650, 4615, 2579, 2087, 3688, 6094, 5510, 2489, 2038, 756, 422, 716, 712, 491, 382, 673, 591, 821, 1079, 1256, 1510, 1534, 2544, 7373, 10156, 5592, 12221, 7154, 2566, 1530, 1467, 2437, 2001, 1478, 1163, 137, 151]}}, {"pos": 559, "top": [[".", " \u2013", ",", "\u00a0", "\u2013", ";", " ", "<|endoftext|>"], [" \u2013", "\u2013", "\u2013and", ",", ".", " \u2013,", ".[", " Very"], [" \u2013", "\u2013", ".", ",", "\u2013and", "\u2018", "[", ".["], ["TRGL", "-------------</", "aruhi", " Shemale", "----------</", " milfs", "\ufffd\ufffd", " ;;^"], ["\u2018", " \u2018", " (@", "\u00a0", " '@", "\uff20", ".@", "\u2018s"], ["\uff01", "\u00a0", ".", " \u2018", " \uff0c", "\u2018", " \uff1a", " \u200b\u200b"], ["\u2018", "\uff01", " \n", "   \n", "\u00a0", " \u2018", " \u2014\u2014", "\uff1f"], ["   \n", "       \n", "     \n", " \n", "\u2018s", "         \n", " \n    \n", "   \n\n"], [" \n\n", "   \n\n", "   \n", " \n    \n", "  \n\n", "\u00a0", "    \n\n", " \n\n\n"], ["\u00a0", "  \n  \n", "\u00a0\u00a0", "   \n", ",", "\u00a0\u00a0\u00a0", "\u2013and", " \u00a0"], ["\u00a0", "...", "...\"", " \n\n", " \n", "......", " [\u2026]", "...\\"], ["-esque", " Philly", "unky", " vibe", " \\\"$", " Dollar", " funky", " \\\""], ["...", " \\\"", " vibe", "...\\", " freaking", " Philly", " impactful", "...'"], [" vibe", "...", " freaking", " Philly", " funky", " vibes", "...\"", "-esque"], ["...", " \\\"", " Philly", " vibe", " savvy", "...\"", " busted", " truly"], [" savvy", " sprawling", " incredibly", " busted", "-esque", " pricey", " gritty", " arguably"], [" savvy", "-esque", " sprawling", " crunch", "...", " myriad", " incredibly", " busted"], [" crunch", " savvy", "-esque", " busted", " tweaking", " tweaks", "...", " sprawling"], [" savvy", " crunch", "-esque", "...", " busted", "...\"", " incredibly", " quirky"], ["<|endoftext|>", "...", " myriad", " seemingly", " truly", "-esque", " savvy", " burgeoning"], ["<|endoftext|>", "\n\n", " myriad", " burgeoning", " truly", "...", " seemingly", " sprawling"], [" crunch", " savvy", " busted", " blockbuster", " nightmare", " tweaks", " smack", " Hollywood"], [" busted", " crunch", " savvy", " --", " smack", " tweaking", " tweaks", " Hollywood"], [" --", " ``", " busted", " sprawling", " myriad", " crunch", " truly", " battling"], ["\n\n", " --", " busted", " \n\n", " &#", " overarching", " myriad", " crunch"], [" busted", " --", " crunch", " overarching", " crafting", " tweaking", " gritty", " savvy"], ["\n\n", " --", " busted", " crunch", " crafting", " overarching", " foundational", " sprawling"], ["\n\n", " --", " \n\n", " truly", " arguably", " '", " myriad", " ultimately"], ["\n\n", " crafting", " foundational", " tech", " --", " overarching", " sprawling", " myriad"], [" ...", "\n\n", "...", " \n\n", " ...\\", " --", " \u2026", " \u2014"], [" ...", "\n\n", " \n\n", " --", " '", " key", " @", " core"], [" ...", " key", " \u2018", " complex", " '", " \u201c", " core", " Black"], [" key", " core", " complex", " Black", " concept", " strategy", " massive", " '"], [" tech", " core", " foundational", " strategy", " key", " complex", " concept", " dual"], [" tech", " strategy", " core", " foundational", " Strategy", " Tech", " key", " dual"], [" tech", " strategy", " Strategy", " Tech", " core", " technical", " hardware", " Core"], [" strategy", " tech", " Strategy", " core", " hardware", " technical", " Tech", " hybrid"], [" strategy", " Strategy", " tech", " core", " Tech", " Core", " technical", " Engine"], [" strategy", " Strategy", " Core", " core", " Hybrid", " Tech", " Engine", " Solution"], [" strategy", " Strategy", " core", " Core", " hardware", " tech", " Hardware", " technical"], [" strategy", " Strategy", " hardware", " core", " Hardware", " tech", " technical", " Core"], [" strategy", " Strategy", " architecture", " core", " hardware", " modular", " engineering", " infrastructure"], [" strategy", " architecture", " Strategy", " core", " modular", " hardware", " infrastructure", " Core"], [" strategy", " Strategy", " architecture", " modular", " core", " Architecture", " Core", " Modular"], [" strategy", " core", " architecture", " Strategy", " modular", " Core", " Modular", " Dual"], [" strategy", " Strategy", " Split", " Dual", " Modular", " Core", " modular", " Hybrid"], [" Strategy", " strategy", " Modular", " Hybrid", " Core", " Structure", " Architecture", " Split"], [" Strategy", " Dual", " Split", " Hybrid", " Modular", " Architecture", " Core", " Structure"], [" Strategy", " Modular", " Dual", " Split", " Architecture", " Hybrid", " Structure", " Core"], [" Strategy", " Dual", " Split", " Modular", " Architecture", " Hybrid", " Structure", " Setup"], [" Strategy", " Modular", " Architecture", " Hybrid", " Split", "\uff1a\"", " Dual", " Structure"], [" Architecture", " Strategy", " Core", "-Core", " workaround", " Hardware", " Modular", " Backend"], [" Strategy", " Architecture", " Hardware", " Split", " Dual", " Backend", " Core", " Engine"], [" Architecture", " Strategy", " Hardware", " Engine", " Backend", "\u67b6\u6784", " workaround", " Hybrid"], [" Architecture", " Solution", " Core", "\u67b6\u6784", " architecture", " Strategy", " Hardware", " Backend"], [" Architecture", " Core", "-core", " architecture", "-Core", "\u67b6\u6784", " Solution", " viewport"], [" Architecture", " Rendering", " Core", " Renderer", " renderer", " Strategy", " Backend", " Hardware"], [" Rendering", " Architecture", " Renderer", " Core", " renderer", " Strategy", " GPU", " viewport"], [" Architecture", " architecture", "\u67b6\u6784", "Architecture", " Architect", " Rendering", "architecture", " Engine"], [" Architecture", " Rendering", " Renderer", " renderer", " viewport", " architecture", " Render", " View"], [" Architecture", " Rendering", " Renderer", " renderer", " viewport", " architecture", " View", " Render"], [" Architecture", " Rendering", " Renderer", " renderer", " viewport", " architecture", " View", " Render"], [" Architecture", " Rendering", " Renderer", " View", " Render", " Core", " Architect", " Engine"]], "p": [[0.5032, 0.3458, 0.1123, 0.0172, 0.0134, 0.0022, 0.0016, 0.0008], [0.7774, 0.0819, 0.0183, 0.0063, 0.0059, 0.0034, 0.0014, 0.0013], [0.4473, 0.3075, 0.1452, 0.0534, 0.0119, 0.0077, 0.0027, 0.0021], [0.0024, 0.0021, 0.0019, 0.0019, 0.0019, 0.0018, 0.0015, 0.0014], [0.0791, 0.0351, 0.0095, 0.0074, 0.0074, 0.0069, 0.0069, 0.0069], [0.1207, 0.0305, 0.021, 0.0197, 0.0153, 0.0153, 0.0144, 0.0105], [0.2592, 0.1782, 0.0655, 0.051, 0.048, 0.0398, 0.0398, 0.0227], [0.5131, 0.0349, 0.0212, 0.0199, 0.0155, 0.01, 0.0078, 0.0078], [0.5035, 0.1355, 0.0992, 0.0343, 0.0343, 0.0251, 0.0221, 0.0183], [0.6377, 0.011, 0.011, 0.0091, 0.0075, 0.0038, 0.0028, 0.0028], [0.7003, 0.2274, 0.0137, 0.0053, 0.0044, 0.003, 0.0027, 0.0022], [0.0053, 0.0047, 0.0044, 0.0036, 0.0036, 0.0032, 0.0028, 0.0027], [0.0119, 0.0077, 0.0077, 0.0077, 0.0064, 0.0064, 0.0046, 0.0034], [0.0243, 0.0201, 0.0089, 0.0084, 0.0061, 0.0058, 0.0054, 0.0051], [0.0886, 0.0164, 0.0164, 0.0093, 0.0093, 0.0064, 0.0064, 0.0064], [0.0327, 0.0198, 0.0154, 0.0128, 0.012, 0.0106, 0.0094, 0.0094], [0.0357, 0.0203, 0.0149, 0.0149, 0.0149, 0.0131, 0.0131, 0.0116], [0.0364, 0.0321, 0.0235, 0.0134, 0.0118, 0.0118, 0.0104, 0.0081], [0.0394, 0.0326, 0.0307, 0.0164, 0.0136, 0.0106, 0.0078, 0.0073], [0.0489, 0.0431, 0.0279, 0.0169, 0.0159, 0.0159, 0.0149, 0.0116], [0.4537, 0.0165, 0.0073, 0.0039, 0.0035, 0.0033, 0.0027, 0.0025], [0.0095, 0.0074, 0.0065, 0.0051, 0.0035, 0.0035, 0.0033, 0.0033], [0.0103, 0.0103, 0.008, 0.0043, 0.0038, 0.0034, 0.0031, 0.003], [0.0378, 0.0062, 0.0058, 0.0051, 0.0051, 0.0048, 0.0037, 0.0035], [0.3102, 0.0198, 0.0094, 0.0088, 0.0073, 0.0069, 0.005, 0.0047], [0.0196, 0.0162, 0.0126, 0.0087, 0.0087, 0.0082, 0.0082, 0.0068], [0.0502, 0.0173, 0.0163, 0.0099, 0.0077, 0.0072, 0.0068, 0.0064], [0.5723, 0.0303, 0.0077, 0.0034, 0.0025, 0.0025, 0.0023, 0.0023], [0.1155, 0.0107, 0.0107, 0.0095, 0.0095, 0.0079, 0.0074, 0.0054], [0.1642, 0.106, 0.0304, 0.0304, 0.0252, 0.0143, 0.0135, 0.0087], [0.1108, 0.0491, 0.015, 0.0132, 0.0085, 0.0071, 0.0062, 0.0059], [0.0151, 0.0125, 0.011, 0.0081, 0.0081, 0.0081, 0.0071, 0.0067], [0.0152, 0.0081, 0.0072, 0.0072, 0.0067, 0.0067, 0.0059, 0.0056], [0.0193, 0.0171, 0.0141, 0.0133, 0.0133, 0.0081, 0.0071, 0.0063], [0.0347, 0.027, 0.0175, 0.0128, 0.0106, 0.0099, 0.0077, 0.0073], [0.0499, 0.0343, 0.0221, 0.0208, 0.0162, 0.0134, 0.0118, 0.0111], [0.0607, 0.0392, 0.0269, 0.0253, 0.0153, 0.0144, 0.0135, 0.0112], [0.0662, 0.0427, 0.0215, 0.0178, 0.0157, 0.0148, 0.0115, 0.0115], [0.0975, 0.0808, 0.0297, 0.0262, 0.0124, 0.0103, 0.0097, 0.0091], [0.1379, 0.0786, 0.0289, 0.024, 0.0175, 0.0175, 0.0165, 0.0145], [0.1604, 0.0669, 0.0279, 0.0231, 0.0231, 0.0204, 0.0169, 0.0159], [0.1929, 0.0553, 0.0315, 0.0278, 0.0261, 0.0245, 0.0158, 0.0149], [0.1486, 0.0453, 0.0426, 0.0353, 0.0293, 0.0214, 0.0167, 0.0167], [0.1961, 0.0678, 0.0411, 0.0265, 0.0265, 0.0194, 0.0182, 0.0161], [0.1716, 0.0434, 0.0434, 0.0383, 0.0383, 0.0205, 0.0205, 0.016], [0.1063, 0.0686, 0.0286, 0.0269, 0.0252, 0.0252, 0.0252, 0.0237], [0.1367, 0.0732, 0.0346, 0.0287, 0.0287, 0.0223, 0.0223, 0.0223], [0.0858, 0.0628, 0.0489, 0.0381, 0.0296, 0.0296, 0.0296, 0.0217], [0.1016, 0.0698, 0.0616, 0.0544, 0.033, 0.031, 0.0213, 0.0188], [0.0914, 0.0669, 0.0432, 0.0405, 0.0262, 0.0204, 0.018, 0.0169], [0.0727, 0.0222, 0.0208, 0.0173, 0.0173, 0.0143, 0.0119, 0.0105], [0.0751, 0.0402, 0.0276, 0.0202, 0.019, 0.0178, 0.0168, 0.0157], [0.2198, 0.1608, 0.0297, 0.0262, 0.018, 0.015, 0.015, 0.014], [0.2548, 0.1281, 0.0443, 0.0324, 0.0153, 0.0135, 0.0112, 0.0112], [0.5228, 0.0624, 0.0429, 0.0314, 0.0314, 0.0277, 0.0179, 0.0116], [0.4155, 0.119, 0.0341, 0.0341, 0.0301, 0.022, 0.0183, 0.0183], [0.3197, 0.1711, 0.0916, 0.0916, 0.0382, 0.0232, 0.015, 0.015], [0.3394, 0.3394, 0.0858, 0.0358, 0.0316, 0.0109, 0.0096, 0.0085], [0.9879, 0.0067, 0.0015, 0.001, 0.001, 0.0008, 0.0005, 0.0002], [0.3905, 0.3446, 0.1628, 0.0599, 0.0134, 0.0104, 0.0034, 0.0018], [0.4288, 0.2601, 0.1577, 0.0745, 0.0242, 0.0129, 0.0061, 0.0054], [0.5984, 0.2494, 0.081, 0.0205, 0.0085, 0.0059, 0.0052, 0.004], [0.7703, 0.1181, 0.0558, 0.016, 0.0097, 0.0067, 0.0052, 0.0036]], "ranks": {"Python": [20301, 134120, 128630, 163354, 12891, 16213, 4123, 33588, 21004, 19140, 5049, 12794, 4559, 6070, 4965, 12182, 19779, 17836, 30435, 60467, 40861, 72746, 72000, 57714, 52848, 29267, 17298, 9115, 6493, 4491, 6157, 8220, 9129, 5400, 5244, 2705, 2250, 2520, 2239, 2350, 2339, 3571, 3375, 3096, 3422, 3110, 2949, 4345, 7802, 14593, 31288, 13477, 18656, 18694, 4970, 1612, 1591, 2401, 1824, 1444, 638, 178, 131]}}, {"pos": 560, "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\u2013"], [" milfs", " Shemale", "aruhi", " pupper", " Hidal", " Strec", " Blowjob", " \u03cc\u03bb\u03b5"], [" *@", "insip", "@g", " @_", "plorer", " Highlander", " **#", "CCCCCC"], [" **\u2013", "insip", "\u5178\u793c", "aleigh", " \uff1a", "\u2013and", "-cent", "ropa"], [" \u00b4", "\uff01", "       \n", "enco", "   \n", " \u201d", " **\u2013", " \uff08"], ["VERY", "\u5178\u793c", " *@", " **\u20ac", " \u00b4", " veggies", "-cent", "athon"], ["athon", "VERY", " *@", "       \n\n", "        \n\n", "   \n\n", "       \n", "    \n\n"], ["\u2013", "\u2013and", "-cent", "-ish", "-down", "-heavy", "VERY", "\u2013\u2013"], ["-tech", "-ish", "\u2013", " *@", "-", "-heavy", " \u2013", "...\""], ["Sharper", " veggies", " comfy", "altungs", " **#", "opolitan", "althy", "Dollar"], ["-tech", " veggies", " comfy", " pricey", "-ish", "ymax", "Sharper", "acea"], [" pricey", "-tech", " comfy", " veggies", "Sharper", " vibe", " booze", "-ish"], [" pricey", " vibe", " comfy", "-tech", "Sharper", " veggies", " booze", " skinny"], [" pricey", " comfy", " veggies", "-tech", "Sharper", " booze", " skinny", " savvy"], ["-tech", " pricey", " comfy", " veggies", " booze", " vibe", " skinny", "Sharper"], ["-tech", " comfy", "Sharper", " pricey", " veggies", "-big", " booze", "iha"], ["-tech", " comfy", "Sharper", "iha", " pricey", " booze", " veggies", "-cr"], ["\u5565", "Sharper", " pricey", " comfy", "-tech", "iha", " booze", " veggies"], ["<|endoftext|>", "\u5565", "\u8ddf", "\t\n\n", " pricey", "Though", " \r\n\r\n", "boost"], ["Sharper", "iha", "isky", " pricey", "-tech", " booze", "iedo", "Feels"], [" pricey", "Sharper", "iha", "\u5565", " booze", " anyways", "-tech", " tini"], [" hugely", " pricey", " booming", " utterly", " --", " disastr", " \u062d\u062a", "Sharper"], [" \r\n\r\n", " \n\n", "\t\n\n", "\r\n\r\n", "\u5565", "        \n\n", "    \n\n", "\r\n\n"], ["\u5565", "Sharper", " pricey", " **#", " comfy", "iedo", "iha", "-tech"], [" pricey", "Sharper", "\n\n", "\r\n\r\n", "iha", "\u5565", "-tech", "\t\n\n"], ["\n\n", " \n\n", " hugely", " arguably", " pricey", " tech", "\r\n\r\n", " \r\n\r\n"], ["\n\n", " tech", " \n\n", " pricey", "-tech", "-heavy", " reboot", " breakthrough"], [" tech", " **", " \n\n", " breakthrough", " ...", " ...\\", " ......", " #"], [" complex", " massive", " breakthrough", " -", " core", " huge", " tech", " heavily"], [" -", " ", " high", " long", " heavily", " \u2013", " complex", " heavy"], [" -", " high", " '", " massive", " critical", " ,", " complex", " long"], [" brutal", " massively", " crucial", " incredibly", " tech", " insanely", " massive", " breakthrough"], ["**:", " tech", " insanely", " brutal", " leveraging", " **\u2013", " HUGE", "coh"], [" tech", "**:", " scalability", "-tech", "\u201d:", " MUST", " overclock", " **\u2013"], [" tech", " scalability", "-tech", " MUST", " bottleneck", " overclock", " leveraging", " insanely"], [" tech", " scalability", "-tech", " MUST", " bottleneck", " Tech", " hardware", " insanely"], [" tech", " scalability", " bottleneck", "-tech", " insanely", " Tech", "\u6025\u9700", "\u201d:"], [" tech", " scalability", " hardware", "-tech", " overclock", " Tech", "\u786c\u4ef6", "\u89e3\u51b3"], [" tech", " hardware", " Tech", "-tech", " scalability", " technical", " Hardware", " bottleneck"], [" tech", " hardware", "-tech", " bottleneck", "-engine", " technology", " scalability", " engineering"], [" tech", " hardware", " bottleneck", "-engine", "-tech", " physics", " breakthrough", " engineering"], [" hardware", " tech", " Problem", " breakthrough", " urgent", " bottleneck", "-tech", " problem"], [" problem", " hardware", " tech", " Problem", " breakthrough", " bottleneck", " infrastructure", " engineering"], [" Problem", " problem", " breakthrough", " hardware", " tech", " workaround", "\u653b\u575a", " Challenge"], [" Problem", " Priority", " problem", "**:", " breakthrough", " Hardware", " Strategy", ":**"], [" Problem", ":</", ":", ":**", "\uff1a</", ":\\", " Crisis", " breakthrough"], [" Problem", ":</", "**:", ":", "\uff1a</", ":**", "+:", " Crisis"], ["+:", ":</", " Problem", " Crisis", "**:", "\uff1a</", ":**", ">:"], ["+:", " Problem", " Crisis", "\uff1a</", " Impossible", "**:", "/UI", "\u201d:"], ["+:", "/UI", "-fast", "/fast", "+/", "-Speed", " Problem", "/Q"], ["/UI", "/Q", "-fast", "/fast", "+:", "-tier", "+/", "/X"], ["/UI", "/Q", "/fast", "&D", "+/", "/&", "-fast", "/F"], ["/UI", " Backend", "/&", "/Q", "/fast", " backend", " Engine", " Solution"], [" viewport", "/UI", " Renderer", " GPU", " Backend", " FPS", " renderer", " backend"], [" viewport", " Renderer", " renderer", " GPU", " Rendering", "/UI", " Pipeline", " FPS"], [" viewport", " Renderer", " GPU", " FPS", " Pipeline", " renderer", " Backend", " pipeline"], [" Pipeline", " pipeline", " Renderer", " Engine", " renderer", " viewport", " GPU", " Backend"], [" viewport", "Viewport", " View", " Renderer", " Viewer", " FPS", " Pipeline", " renderer"], [" viewport", " Renderer", " FPS", " View", "Viewport", " Pipeline", " Engine", " renderer"], [" viewport", " Engine", " FPS", " View", " Renderer", "Viewport", "3", " Viewer"], ["3", "1", "2", "4", "6", "5", "8", "7"]], "p": [[0.3812, 0.3364, 0.1801, 0.0377, 0.0139, 0.0115, 0.0102, 0.009], [0.4289, 0.1084, 0.0545, 0.0242, 0.0084, 0.0065, 0.0035, 0.0015], [0.5735, 0.3478, 0.0367, 0.0082, 0.0077, 0.0056, 0.0041, 0.0027], [0.0121, 0.0035, 0.0033, 0.0029, 0.0029, 0.0027, 0.0024, 0.0017], [0.0063, 0.0041, 0.0024, 0.0022, 0.002, 0.0017, 0.0016, 0.0016], [0.0053, 0.0028, 0.0028, 0.0019, 0.0016, 0.0016, 0.0016, 0.0016], [0.0277, 0.0102, 0.0075, 0.0066, 0.0062, 0.0062, 0.004, 0.0034], [0.0094, 0.0057, 0.0047, 0.0039, 0.0027, 0.0027, 0.0025, 0.0024], [0.0162, 0.0081, 0.0046, 0.0041, 0.0034, 0.0026, 0.0023, 0.0021], [0.0062, 0.0048, 0.0031, 0.0026, 0.002, 0.0019, 0.0018, 0.0018], [0.0201, 0.0114, 0.0101, 0.0089, 0.0084, 0.0079, 0.0074, 0.0048], [0.0051, 0.0026, 0.0021, 0.002, 0.002, 0.002, 0.0015, 0.0014], [0.0035, 0.0025, 0.0025, 0.0022, 0.0022, 0.0021, 0.0019, 0.0018], [0.0047, 0.0047, 0.0033, 0.0033, 0.0031, 0.0025, 0.0025, 0.0021], [0.0192, 0.0091, 0.0085, 0.0071, 0.0038, 0.0034, 0.003, 0.003], [0.0164, 0.0083, 0.0037, 0.0033, 0.0032, 0.0032, 0.0031, 0.0022], [0.0146, 0.0121, 0.0073, 0.0065, 0.0044, 0.0039, 0.0039, 0.0037], [0.0236, 0.0072, 0.006, 0.0047, 0.0027, 0.0026, 0.0025, 0.002], [0.0118, 0.0072, 0.0072, 0.0038, 0.0036, 0.0034, 0.002, 0.0018], [0.0071, 0.0052, 0.0049, 0.0036, 0.0034, 0.0026, 0.0025, 0.0021], [0.0077, 0.005, 0.0047, 0.0034, 0.0023, 0.0022, 0.0021, 0.0018], [0.0061, 0.0025, 0.0017, 0.0016, 0.0013, 0.0012, 0.0012, 0.0011], [0.0041, 0.0036, 0.0023, 0.0018, 0.0013, 0.0012, 0.0012, 0.0011], [0.0046, 0.0023, 0.0018, 0.0017, 0.0017, 0.0015, 0.0012, 0.001], [0.0589, 0.0278, 0.0217, 0.0217, 0.0159, 0.007, 0.0058, 0.0058], [0.0047, 0.0044, 0.0041, 0.0024, 0.0019, 0.0016, 0.0012, 0.0011], [0.0021, 0.0017, 0.0017, 0.0012, 0.0011, 0.001, 0.0008, 0.0008], [0.0374, 0.0084, 0.0054, 0.0027, 0.0027, 0.0027, 0.0022, 0.0021], [0.0199, 0.0165, 0.0073, 0.0069, 0.0069, 0.0047, 0.002, 0.0018], [0.0256, 0.0256, 0.0165, 0.0113, 0.0113, 0.0083, 0.0078, 0.0078], [0.0176, 0.0146, 0.0146, 0.01, 0.0094, 0.0094, 0.0088, 0.0083], [0.0347, 0.0239, 0.0239, 0.0164, 0.0164, 0.0145, 0.012, 0.0113], [0.0508, 0.0155, 0.0128, 0.0106, 0.01, 0.01, 0.0088, 0.0073], [0.0214, 0.0189, 0.0156, 0.0147, 0.0122, 0.0114, 0.0101, 0.0095], [0.009, 0.007, 0.0048, 0.004, 0.004, 0.0033, 0.0033, 0.0029], [0.0129, 0.0078, 0.0069, 0.0061, 0.0061, 0.0054, 0.0042, 0.0039], [0.0112, 0.0106, 0.005, 0.0047, 0.0044, 0.0041, 0.0037, 0.003], [0.0214, 0.013, 0.0079, 0.0065, 0.0061, 0.0051, 0.0048, 0.0045], [0.0161, 0.0072, 0.0067, 0.0059, 0.0046, 0.0043, 0.0041, 0.0041], [0.0288, 0.0145, 0.0113, 0.0073, 0.0073, 0.0068, 0.006, 0.005], [0.0992, 0.0343, 0.0236, 0.0172, 0.0162, 0.0098, 0.0098, 0.0081], [0.0939, 0.0732, 0.021, 0.0163, 0.0153, 0.0144, 0.0127, 0.0119], [0.0341, 0.0341, 0.0207, 0.0183, 0.0151, 0.0111, 0.0098, 0.0098], [0.0317, 0.0297, 0.0247, 0.0116, 0.0109, 0.0103, 0.0103, 0.0103], [0.0434, 0.036, 0.0338, 0.0298, 0.0232, 0.0117, 0.0103, 0.0097], [0.0683, 0.0414, 0.0323, 0.0162, 0.0152, 0.0126, 0.0111, 0.0111], [0.1407, 0.0245, 0.019, 0.0179, 0.0179, 0.0131, 0.0109, 0.0102], [0.0845, 0.0452, 0.0214, 0.0189, 0.0177, 0.0177, 0.0147, 0.0114], [0.0452, 0.0292, 0.0292, 0.0258, 0.0214, 0.0177, 0.0177, 0.0166], [0.174, 0.0251, 0.0236, 0.0195, 0.0195, 0.0152, 0.0111, 0.0105], [0.2901, 0.0369, 0.0197, 0.0127, 0.012, 0.0093, 0.0073, 0.0057], [0.0652, 0.0575, 0.0199, 0.0145, 0.0113, 0.0106, 0.0078, 0.0078], [0.1189, 0.0249, 0.0182, 0.0161, 0.0111, 0.0104, 0.0092, 0.0071], [0.0843, 0.0351, 0.033, 0.0166, 0.0156, 0.0156, 0.0138, 0.0095], [0.0867, 0.0464, 0.0206, 0.016, 0.0151, 0.0151, 0.0133, 0.0125], [0.1124, 0.0773, 0.0365, 0.0284, 0.0267, 0.0267, 0.0162, 0.0118], [0.1966, 0.1735, 0.0638, 0.0497, 0.025, 0.0235, 0.0235, 0.0183], [0.1713, 0.0976, 0.0917, 0.0491, 0.0461, 0.0433, 0.0298, 0.0218], [0.4486, 0.1066, 0.083, 0.0392, 0.0392, 0.0305, 0.0238, 0.0185], [0.6031, 0.0561, 0.0527, 0.0465, 0.0362, 0.034, 0.0182, 0.0182], [0.4556, 0.0744, 0.0656, 0.0398, 0.0374, 0.033, 0.0291, 0.0241], [0.1573, 0.0842, 0.0616, 0.0579, 0.0544, 0.0511, 0.0374, 0.0257], [0.9556, 0.042, 0.0009, 0.0003, 0.0003, 0.0002, 0.0002, 0.0001]], "ranks": {"Python": [113853, 204906, 173841, 175624, 39945, 83496, 20635, 85440, 52938, 55436, 8288, 61882, 29141, 43515, 18727, 63068, 52984, 39254, 71683, 94586, 17048, 129863, 87193, 91413, 30863, 96545, 122062, 61725, 43565, 7227, 8407, 14132, 18632, 28285, 71616, 44340, 72429, 59963, 58884, 42477, 20980, 27716, 23671, 26347, 22940, 21010, 20080, 31809, 47842, 66181, 42272, 10778, 11512, 6182, 1932, 2211, 1313, 1349, 832, 525, 373, 330, 205]}}, {"pos": 561, "top": [[".", " \u2013", "\u2013", ",", "y", "\u2026..", ";", "s"], [" \u2013", "\u2013and", "\u2013\u2013", "  \n", "\u2011", " \u2013**", "\u30e3\u30f3", " Strec"], ["\u2013", " \u2013", ".\u2013", "\u2013and", "\u2026..", "**\u2013", ".", "\u2013\u2013"], [" milfs", " Geile", "erias", " Strec", " Shemale", " Hidal", " Blowjob", " \u041a\u0440\u0430\u0441\u0438"], ["kits", " ***", "CCCCCC", " *\u2013", "erweise", "erias", "***", " veggies"], ["kits", "-CS", " ***", " veggies", " **\u2013", "alus", " Vegas", "salt"], [" ***", "  \n", "s", "er", "***", " ......", "____", " ____"], [" ***", " veggies", "er", "-CS", "-old", "alus", "\u4e8b\u534a\u529f\u500d", "ner"], ["  \n", "er", "egger", "......", "\u2011", " ***", "athon", "\u00ad"], ["\u00ad", "\u2011", "\u2013", " \u00ad", "er", "rd", ",", ".\u2013"], ["er", "\u00ad", "...", "\u2011", "-", " \u00ad", "......", "\u2013"], ["er", " veggies", " ***", "orama", "alus", "illion", "\\xf", "ball"], [" veggies", "er", "orama", "alus", "illion", " vibes", "ball", "-tech"], [" veggies", " vibes", "er", "ball", "kits", " vibe", "-tech", "orama"], [" vibe", "-tech", " veggies", "er", " vibes", " kids", "ways", " tech"], [" veggies", "ball", "kids", "-tech", "kits", " kids", "stuff", " tech"], [" veggies", "-tech", "ball", "kits", "kids", " vibe", "-ish", "er"], ["-tech", "kits", " veggies", "ball", "kids", "-ish", "ways", "er"], ["-tech", " veggies", "kits", "kids", "-ish", "zinho", "ball", "orama"], ["ahead", "-ish", "ace", "o", "\u2013", "kids", "y", "-tech"], ["o", "y", "u", "\u2013", "ahead", "an", "\u8ddf", "h"], ["orama", "zinho", " Geile", "kits", " veggies", "-tech", " Fortal", "ething"], ["orama", "zinho", "ahead", "ace", "ball", "-tech", "cha", "ways"], ["orama", "ahead", "world", " --", "cha", "ace", "waves", "plane"], [" ____", "orama", "____", " --", "\u8ddf", "&eacute", "waves", "-tech"], ["orama", " pornstar", " veggies", "-tech", " ____", "Cube", "punk", "waves"], ["orama", " visuals", "Cube", "-tech", " tech", "punk", " ____", " pornstar"], ["\n\n", " tech", " --", "orama", " \n\n", " gaming", " technology", " movies"], ["orama", " tech", " visuals", "Cube", "-tech", " technology", " gaming", " studios"], [" tech", " visuals", "orama", " technology", " ____", " architecture", "-tech", "-themed"], [" technology", " tech", " visuals", " architecture", " graphics", " theater", " complex", " studio"], [" complex", " technology", " tech", " -", " \u2013", " ...", " film", " video"], [" complex", " technology", " -", " tech", " film", " ,", " :", " Star"], [" tech", " technology", " complex", " visuals", " architecture", " technologies", " Tech", "-tech"], [" tech", "\u201d:", "Tech", "?):", "tech", "\"):", "\u2011", "-tech"], [" tech", "\u201d:", "\u2011", "Tech", "-tech", "tech", " technology", "\ufe0f"], [" tech", "Tech", "-tech", " hardware", "tech", " technology", " physics", " Tech"], [" tech", " hardware", " technology", " Tech", "Tech", " physics", " graphics", "tech"], [" tech", " graphics", " hardware", " Tech", " technology", " physics", " visuals", " software"], [" visuals", " graphics", " tech", " visualization", " hardware", " physics", " animation", "visual"], [" graphics", " visuals", " tech", " hardware", " animation", " Graphics", " visualization", " animations"], [" graphics", " visuals", " Graphics", " animation", " hardware", " visualization", " animations", " tech"], [" graphics", " visuals", " animation", " visualization", " hardware", " Graphics", " animations", " physics"], [" visuals", " graphics", " animation", " animations", " hardware", " Graphics", " architecture", " visualization"], [" visuals", " graphics", " architecture", " animation", " hardware", " animations", " visualization", " Graphics"], [" visuals", " graphics", " animation", " architecture", " animations", " hardware", " visualization", " gameplay"], [" visuals", " graphics", " architecture", " animation", " hardware", " module", " Animation", " animations"], [" visuals", " graphics", " Architecture", " hardware", " architecture", " Animation", " animation", " Hardware"], [" visuals", " Architecture", " Animation", " Visualization", " visualization", " viewport", " graphics", " animation"], ["+:", " visuals", " Animation", "/UI", " Architecture", "/Image", " Hardware", " Visualization"], ["/UI", "+:", "/Image", " Crisis", " workaround", "/Q", " Toolkit", " Backend"], ["/UI", "/C", "/Q", " viewport", " workaround", "/X", "/F", "/V"], ["/UI", "/C", "/Q", "/F", "/V", "/X", "/", " Engine"], ["/UI", "/Q", " Engine", "/C", "/F", "/V", "/Web", " viewport"], [" Engine", "/UI", " Backend", " viewport", " backend", " engine", "/Web", " bottleneck"], [" viewport", " renderer", " Renderer", "viewport", "/UI", " Backend", " backend", " bottleneck"], [" viewport", " Renderer", " renderer", " Rendering", "viewport", " Backend", " Engine", " pipeline"], [" viewport", " Renderer", " renderer", " Rendering", " Pipeline", " Engine", " pipeline", " Backend"], [" Engine", " Pipeline", " viewport", " pipeline", " engine", " Renderer", "Pipeline", " renderer"], [" viewport", " View", "Viewport", " Engine", "viewport", " Pipeline", " Viewer", " Renderer"], [" viewport", " Engine", " View", "Viewport", " Pipeline", "viewport", " engine", " pipeline"], [" viewport", " Engine", " View", " Pipeline", " Renderer", "Viewport", " engine", "/V"], ["D", " View", " viewport", " Engine", "Viewport", "View", "6", "2"]], "p": [[0.4613, 0.2469, 0.1498, 0.0586, 0.0168, 0.0108, 0.0055, 0.0048], [0.0183, 0.0118, 0.0098, 0.0059, 0.0052, 0.0052, 0.0052, 0.0049], [0.5395, 0.1752, 0.1364, 0.0471, 0.0416, 0.0173, 0.0077, 0.005], [0.0135, 0.0087, 0.0068, 0.0064, 0.0053, 0.0044, 0.0039, 0.0036], [0.0219, 0.015, 0.0049, 0.0036, 0.0034, 0.0032, 0.003, 0.003], [0.0161, 0.0134, 0.0076, 0.0059, 0.0041, 0.0036, 0.0028, 0.0025], [0.1879, 0.0506, 0.037, 0.0307, 0.0224, 0.0113, 0.0083, 0.0053], [0.0156, 0.0146, 0.0114, 0.0083, 0.0061, 0.0057, 0.0054, 0.0051], [0.0337, 0.0192, 0.0169, 0.0159, 0.0149, 0.0116, 0.0109, 0.0085], [0.1089, 0.0961, 0.0514, 0.0376, 0.0214, 0.0178, 0.0138, 0.0115], [0.2144, 0.1473, 0.0951, 0.0509, 0.0449, 0.0449, 0.0422, 0.0241], [0.0152, 0.0143, 0.0063, 0.0056, 0.0046, 0.0046, 0.0041, 0.0041], [0.0153, 0.006, 0.006, 0.0047, 0.0047, 0.0036, 0.0036, 0.0028], [0.017, 0.0062, 0.0062, 0.0059, 0.0055, 0.0052, 0.0049, 0.0046], [0.0161, 0.0134, 0.0126, 0.0126, 0.0118, 0.0092, 0.0081, 0.0076], [0.0264, 0.0171, 0.0171, 0.0133, 0.0133, 0.0125, 0.0103, 0.0071], [0.0417, 0.0324, 0.0223, 0.0209, 0.0153, 0.0153, 0.0112, 0.0093], [0.0382, 0.0298, 0.0218, 0.017, 0.0132, 0.0117, 0.0085, 0.0066], [0.0246, 0.0192, 0.014, 0.0116, 0.0096, 0.0091, 0.0091, 0.008], [0.0113, 0.0073, 0.0053, 0.0053, 0.0047, 0.0044, 0.0044, 0.0039], [0.0166, 0.0107, 0.0084, 0.0084, 0.0074, 0.0069, 0.0057, 0.0037], [0.0176, 0.005, 0.0031, 0.0027, 0.002, 0.002, 0.0016, 0.0016], [0.0173, 0.006, 0.005, 0.0032, 0.003, 0.003, 0.0028, 0.0028], [0.0067, 0.0063, 0.003, 0.003, 0.0026, 0.0025, 0.0023, 0.0022], [0.0188, 0.0107, 0.0107, 0.0051, 0.0048, 0.0048, 0.0045, 0.0045], [0.0215, 0.0045, 0.0037, 0.0035, 0.0027, 0.0024, 0.0021, 0.0021], [0.0192, 0.0029, 0.0029, 0.0028, 0.0022, 0.002, 0.0019, 0.0017], [0.0188, 0.0114, 0.0094, 0.0083, 0.0051, 0.0045, 0.0035, 0.0035], [0.0332, 0.0167, 0.0065, 0.0051, 0.0048, 0.0035, 0.0029, 0.0024], [0.0372, 0.024, 0.0226, 0.0155, 0.01, 0.0088, 0.0078, 0.0069], [0.0839, 0.0789, 0.029, 0.0241, 0.0155, 0.0146, 0.0129, 0.0121], [0.0558, 0.0408, 0.0264, 0.017, 0.0132, 0.011, 0.0103, 0.0086], [0.0337, 0.018, 0.014, 0.0103, 0.0085, 0.008, 0.0066, 0.0062], [0.1211, 0.0419, 0.0211, 0.012, 0.0106, 0.0082, 0.0064, 0.006], [0.1334, 0.0263, 0.0232, 0.0141, 0.0141, 0.0132, 0.0109, 0.0109], [0.1314, 0.0312, 0.0259, 0.0243, 0.0178, 0.0147, 0.0138, 0.013], [0.2218, 0.0282, 0.0194, 0.0182, 0.0182, 0.0151, 0.0092, 0.0081], [0.2248, 0.0237, 0.0209, 0.0184, 0.0163, 0.0153, 0.0119, 0.0112], [0.1877, 0.027, 0.0239, 0.0198, 0.0175, 0.0164, 0.0128, 0.012], [0.141, 0.1169, 0.043, 0.0278, 0.0216, 0.0203, 0.0179, 0.0149], [0.2806, 0.1599, 0.0519, 0.0315, 0.0278, 0.0203, 0.0203, 0.0169], [0.4155, 0.1963, 0.032, 0.0301, 0.0234, 0.0234, 0.0125, 0.0098], [0.3156, 0.2458, 0.0377, 0.0333, 0.0229, 0.019, 0.0167, 0.013], [0.2392, 0.2392, 0.039, 0.0304, 0.0237, 0.0209, 0.0163, 0.0153], [0.1411, 0.1325, 0.0804, 0.0519, 0.0296, 0.0216, 0.0116, 0.0109], [0.2036, 0.0583, 0.0548, 0.0484, 0.0215, 0.0202, 0.0157, 0.0115], [0.1174, 0.0279, 0.0204, 0.0169, 0.0169, 0.0124, 0.0096, 0.0096], [0.1125, 0.0143, 0.0134, 0.0126, 0.0119, 0.0105, 0.0098, 0.0092], [0.1033, 0.0149, 0.0102, 0.009, 0.009, 0.008, 0.008, 0.0075], [0.018, 0.0109, 0.0103, 0.0097, 0.0091, 0.0085, 0.008, 0.0075], [0.0361, 0.0248, 0.011, 0.011, 0.0091, 0.0076, 0.0071, 0.0067], [0.0523, 0.0359, 0.0317, 0.0205, 0.0205, 0.0192, 0.0159, 0.0141], [0.0974, 0.049, 0.0382, 0.0337, 0.0262, 0.0231, 0.0204, 0.018], [0.1158, 0.0483, 0.0426, 0.04, 0.0312, 0.0243, 0.0214, 0.0201], [0.0871, 0.0769, 0.0563, 0.0412, 0.0412, 0.0321, 0.0321, 0.025], [0.9283, 0.0193, 0.0103, 0.004, 0.0031, 0.0026, 0.0022, 0.0018], [0.7534, 0.09, 0.0794, 0.0292, 0.0037, 0.0033, 0.0024, 0.0023], [0.83, 0.0413, 0.0284, 0.0172, 0.0081, 0.0081, 0.0072, 0.006], [0.6174, 0.2271, 0.0447, 0.0447, 0.0348, 0.0078, 0.0032, 0.0032], [0.8831, 0.0725, 0.0183, 0.0126, 0.0053, 0.0028, 0.0019, 0.0006], [0.8997, 0.0395, 0.0272, 0.0113, 0.0061, 0.0042, 0.0025, 0.002], [0.4085, 0.3605, 0.1326, 0.0191, 0.0131, 0.0131, 0.0058, 0.0051], [0.3424, 0.3021, 0.0981, 0.0559, 0.0435, 0.015, 0.0097, 0.0091]], "ranks": {"Python": [17056, 156589, 59928, 110481, 3686, 5383, 1197, 4464, 3850, 2809, 1099, 3255, 2963, 4446, 2677, 2606, 2062, 1720, 5785, 12752, 970, 27334, 9726, 12434, 1198, 9120, 14316, 2942, 2332, 1744, 1521, 3288, 4918, 2836, 3989, 974, 598, 739, 646, 1337, 1301, 2061, 2187, 3564, 3859, 4586, 5510, 7348, 7193, 13921, 19882, 12001, 18079, 16096, 13939, 17718, 16071, 10908, 6062, 4325, 2925, 1432, 862]}}, {"pos": 562, "top": [[".", "\u00a0", " \u200b\u200b", " \u2013", ",", " ", "\u200b\u200b", "\u2013"], [" \u200b\u200b", " \u2013", "\u2013", "\u200b\u200b", ".", " ", "\u200b", "   \n"], ["\u2013", " \u2013", ".", " \u200b\u200b", ",", "\u2026", "\u2026.", " [\u2026]"], ["\ufffd\ufffd", "&eacute", "\u30bb\u30ec", " pornstar", " \u200b\u200b", "CCCCCC", "emonic", "\u0902\u092c\u0930"], [" \u200b\u200b", " ", "&D", "&nbsp", " PD", " culture", "\u200b\u200b", " @"], [" \u200b\u200b", "&D", " Hollywood", " Hong", " Lego", "\u00a0\u00a0", " Pro", " Star"], [" \u200b\u200b", " ", "\u200b\u200b", ".", " ......", " \u200b", "......", "\u00a0"], [" \u200b\u200b", "\u200b\u200b", ".", "......", " ......", " ", " \u200b", "   \n"], [" \u200b\u200b", ".", "......", " ......", "\u00a0", "\u200b\u200b", " \n\n", "  \n\n"], [",", " [\u2026]", "\u00a0", ".", " \u00ad", "&nbsp", "...", " \u200b\u200b"], ["...", ".", " [\u2026]", "......", "&nbsp", " [...]", "\u00a0", " \u200b\u200b"], ["&nbsp", " complex", " vision", "...", " movies", " pyramid", " theater", "......"], [" vision", " complex", " theater", " visuals", " \u200b\u200b", " architecture", " movies", " technology"], [" vision", " visuals", " complex", " technology", " movies", " tech", " vibe", " drama"], [" vision", " complex", " tech", " movies", " technology", " visuals", " classic", " drama"], [" tech", " kids", " technology", " movies", " vision", " complex", " visuals", " showcase"], [" tech", " vibe", " technology", " movies", " visuals", " complex", " kids", " showcase"], [" tech", " visuals", " vibe", " technology", " movies", " kids", " complex", " vision"], [" tech", " complex", " drama", " movie", " music", " visuals", " theater", " movies"], [" complex", " tech", " imagery", "-esque", " drama", " movie", " blockbuster", " movies"], ["<|endoftext|>", " \n\n", "  \n\n", "...", " [...]", " [\u2026]", " \u2014", "&nbsp"], [" movies", " visuals", " gameplay", " movie", " games", " gaming", " tech", " drama"], [" movie", " movies", " games", " visuals", " tech", " gaming", " Hollywood", " imagery"], [" movie", " movies", " complex", " music", " games", " vision", " architecture", " film"], [" visuals", " imagery", " artwork", " movies", " movie", " architecture", " sculpt", " tech"], [" visuals", " architecture", " sculptures", " sculpture", " artwork", " animations", " sculpt", " graphics"], [" visuals", " architecture", " sculptures", " sculpture", " sculpt", " movies", " cinematic", " artwork"], [" architecture", " sculpt", " film", " visuals", " movies", " sculpture", " movie", " imagery"], [" architecture", " visuals", " sculpture", " sculpt", " sculptures", " film", " graphics", " artwork"], [" architecture", " visuals", " film", " graphics", " sculpture", " sculptures", " technology", " animations"], [" architecture", " visuals", " technology", " graphics", " film", " ...", " theater", " sculptures"], [" ...", " technology", " film", " architecture", " complex", " models", " video", " studio"], [" technology", " architecture", " complex", " film", " models", " visual", " video", " tech"], [" architecture", " technology", " tech", " visuals", " complex", " technologies", " models", " hardware"], [" architecture", " tech", " technology", " visuals", " complex", " hardware", " graphics", " models"], [" [...]", " ...", " [\u2026]", " ......", " \u2026", " ...\"", " architecture", " technology"], [" architecture", " [...]", " hardware", " tech", " technology", " ...", " complex", " software"], [" architecture", " hardware", " technology", " graphics", " [...]", " tech", " software", " complex"], [" architecture", " [...]", " complex", " hardware", " graphics", " /", " technology", " software"], [" [...]", " architecture", " [\u2026]", " hardware", " graphics", " complex", " models", " technology"], [" architecture", " graphics", " hardware", " technology", " software", " animation", " model", " engine"], [" architecture", " graphics", " software", " hardware", " engine", " technology", " animation", " engineering"], [" architecture", " graphics", " software", " hardware", " animation", " engine", " technology", " CGI"], [" architecture", " graphics", " software", " hardware", " animation", " technology", " framework", " engine"], [" architecture", " software", " hardware", " design", " framework", " graphics", " animation", " engine"], [" architecture", " hardware", " design", " framework", " software", " Architecture", " model", " animation"], [" architecture", " hardware", " framework", " Architecture", " software", " model", " infrastructure", " technology"], [" architecture", " Architecture", " hardware", " Hardware", " Direct", " technology", " Architect", " framework"], [" architecture", " Architecture", " hardware", ":", " backend", " workflow", " Architect", " integration"], [" Architecture", " Crisis", " Hardware", " Survival", " Engine", "+:", " Interface", " workaround"], ["+:", " Crisis", " workaround", " Architecture", " Strategy", ":", " Survival", "!!:"], [" workaround", "/UI", " bottleneck", "/C", "/Q", "/API", "/vector", "/O"], [" workaround", " Strategy", " bottleneck", "/UI", " Engine", " strategy", "/C", "/F"], [" bottleneck", " Engine", "/UI", " workaround", " engine", " pipeline", " Backend", " backend"], [" bottleneck", " Engine", " engine", " workaround", " backend", " pipeline", " Backend", "/UI"], [" viewport", " bottleneck", " renderer", " pipeline", " backend", " Renderer", " Backend", "viewport"], [" viewport", " renderer", " pipeline", " Renderer", " bottleneck", " Rendering", " Pipeline", " Backend"], [" viewport", " renderer", " pipeline", " Rendering", " Renderer", " bottleneck", " Pipeline", " Engine"], [" Engine", " Pipeline", " pipeline", " engine", " viewport", " Renderer", "Pipeline", " renderer"], [" viewport", " View", " Engine", "Viewport", "viewport", " Pipeline", " Viewer", " engine"], [" viewport", " Engine", " View", "Viewport", " Pipeline", " engine", "viewport", " pipeline"], [" viewport", " Engine", " View", " Pipeline", " Renderer", "Viewport", " Viewer", " engine"], [" View", " Engine", " Pipeline", " Renderer", " viewport", " Viewer", "/V", " Render"]], "p": [[0.8186, 0.036, 0.0263, 0.0205, 0.0193, 0.0103, 0.0091, 0.0085], [0.2183, 0.0709, 0.0487, 0.0158, 0.014, 0.014, 0.0096, 0.0066], [0.4073, 0.218, 0.0967, 0.0753, 0.0379, 0.0179, 0.0123, 0.009], [0.0016, 0.0013, 0.0013, 0.0012, 0.0011, 0.001, 0.0009, 0.0009], [0.2345, 0.0141, 0.0071, 0.0055, 0.0046, 0.0033, 0.003, 0.0026], [0.4804, 0.0016, 0.0015, 0.0013, 0.0011, 0.0011, 0.001, 0.0009], [0.7568, 0.0202, 0.0139, 0.0139, 0.0074, 0.0023, 0.0023, 0.0021], [0.6844, 0.0086, 0.0086, 0.0052, 0.0052, 0.0032, 0.0023, 0.0016], [0.464, 0.1173, 0.0554, 0.0297, 0.0231, 0.0217, 0.0204, 0.0192], [0.1549, 0.0368, 0.0253, 0.0223, 0.0197, 0.0185, 0.0163, 0.0127], [0.4407, 0.0766, 0.0635, 0.0526, 0.0385, 0.03, 0.0171, 0.0151], [0.0145, 0.012, 0.0113, 0.0088, 0.0064, 0.0057, 0.0057, 0.0053], [0.0134, 0.0104, 0.0104, 0.0067, 0.0063, 0.0063, 0.006, 0.0056], [0.0193, 0.0117, 0.0104, 0.0091, 0.0071, 0.0063, 0.0063, 0.0063], [0.0158, 0.0139, 0.0102, 0.009, 0.0079, 0.0062, 0.0058, 0.0058], [0.024, 0.0137, 0.01, 0.01, 0.0094, 0.0088, 0.0083, 0.0065], [0.0326, 0.0136, 0.0128, 0.0128, 0.012, 0.012, 0.0106, 0.0082], [0.0345, 0.0196, 0.0184, 0.0087, 0.0077, 0.0077, 0.0072, 0.0068], [0.0205, 0.0141, 0.0097, 0.008, 0.008, 0.0076, 0.0076, 0.0071], [0.0086, 0.0071, 0.0063, 0.0063, 0.0063, 0.0055, 0.0043, 0.0041], [0.3323, 0.051, 0.0256, 0.0107, 0.0045, 0.0035, 0.0029, 0.0024], [0.007, 0.0062, 0.0054, 0.0054, 0.004, 0.0037, 0.0037, 0.0033], [0.0161, 0.0142, 0.0104, 0.0097, 0.0071, 0.0071, 0.0067, 0.0063], [0.0088, 0.0083, 0.0068, 0.0068, 0.0064, 0.0047, 0.0042, 0.0042], [0.0359, 0.0205, 0.017, 0.0132, 0.0132, 0.011, 0.008, 0.008], [0.0317, 0.0317, 0.0279, 0.0262, 0.0169, 0.014, 0.0132, 0.0124], [0.0616, 0.0511, 0.0451, 0.0374, 0.0257, 0.0176, 0.0166, 0.0156], [0.0411, 0.0386, 0.0265, 0.0249, 0.0234, 0.0182, 0.0182, 0.0151], [0.0704, 0.0455, 0.0276, 0.0276, 0.0259, 0.0215, 0.0148, 0.0139], [0.0927, 0.0466, 0.0249, 0.022, 0.0182, 0.0182, 0.0182, 0.0171], [0.1074, 0.0575, 0.0349, 0.0328, 0.0255, 0.0165, 0.0165, 0.0155], [0.06, 0.0388, 0.0364, 0.0321, 0.0221, 0.0172, 0.0172, 0.0143], [0.0452, 0.0274, 0.0274, 0.0227, 0.0147, 0.0114, 0.0107, 0.0107], [0.0938, 0.073, 0.0324, 0.0269, 0.0237, 0.0209, 0.0173, 0.0163], [0.0965, 0.0517, 0.0517, 0.0244, 0.0229, 0.019, 0.0131, 0.0131], [0.2265, 0.1657, 0.1005, 0.0833, 0.0833, 0.0175, 0.0154, 0.0145], [0.106, 0.0442, 0.039, 0.0366, 0.0344, 0.0184, 0.0153, 0.0135], [0.1141, 0.0289, 0.0198, 0.0186, 0.0164, 0.0164, 0.0164, 0.0145], [0.0957, 0.0399, 0.0227, 0.0214, 0.0166, 0.0147, 0.0138, 0.0138], [0.1135, 0.1002, 0.0287, 0.0238, 0.021, 0.021, 0.0106, 0.0106], [0.1347, 0.0721, 0.0363, 0.0282, 0.0234, 0.0161, 0.0161, 0.0142], [0.1732, 0.0987, 0.0562, 0.0528, 0.0249, 0.0194, 0.0171, 0.0151], [0.1914, 0.1091, 0.0548, 0.0333, 0.0259, 0.0243, 0.0215, 0.0139], [0.1447, 0.0567, 0.039, 0.0236, 0.0236, 0.0209, 0.0153, 0.0126], [0.2768, 0.0274, 0.0242, 0.0177, 0.0156, 0.0147, 0.0129, 0.0114], [0.2374, 0.0221, 0.0162, 0.0152, 0.0143, 0.0134, 0.0134, 0.0126], [0.1054, 0.025, 0.0208, 0.0134, 0.0118, 0.0111, 0.0111, 0.0092], [0.0745, 0.0399, 0.0274, 0.0095, 0.0095, 0.0095, 0.0084, 0.0078], [0.0443, 0.0443, 0.0127, 0.0112, 0.0077, 0.0072, 0.0072, 0.0072], [0.0348, 0.0186, 0.0175, 0.0145, 0.0128, 0.0106, 0.01, 0.0088], [0.0694, 0.0349, 0.0255, 0.0175, 0.0145, 0.0121, 0.0121, 0.0113], [0.1465, 0.0225, 0.0175, 0.0145, 0.0145, 0.012, 0.01, 0.01], [0.0839, 0.0788, 0.0329, 0.0309, 0.0272, 0.0155, 0.0129, 0.0129], [0.1248, 0.0668, 0.0405, 0.0405, 0.0279, 0.0246, 0.018, 0.0169], [0.2037, 0.0798, 0.0704, 0.0704, 0.0661, 0.0584, 0.0548, 0.0167], [0.9281, 0.015, 0.0117, 0.008, 0.0049, 0.0023, 0.0023, 0.0022], [0.8395, 0.0537, 0.0197, 0.0197, 0.0136, 0.0082, 0.005, 0.0037], [0.8182, 0.0407, 0.028, 0.0218, 0.0218, 0.0103, 0.0091, 0.0071], [0.6328, 0.2328, 0.0756, 0.0357, 0.009, 0.0023, 0.002, 0.0016], [0.9393, 0.0364, 0.0092, 0.0072, 0.0034, 0.0012, 0.0008, 0.0006], [0.9346, 0.0249, 0.022, 0.0049, 0.0034, 0.0023, 0.002, 0.0016], [0.532, 0.2847, 0.1047, 0.03, 0.011, 0.0059, 0.0056, 0.0046], [0.7831, 0.1361, 0.039, 0.0087, 0.0087, 0.0068, 0.0017, 0.0016]], "ranks": {"Python": [18869, 58356, 35295, 18317, 860, 2695, 313, 189, 282, 310, 231, 237, 310, 750, 878, 1005, 1394, 488, 573, 1698, 544, 968, 325, 1159, 1322, 2644, 2679, 1030, 1179, 1164, 928, 1851, 2302, 1469, 1603, 408, 267, 354, 315, 325, 311, 284, 232, 331, 404, 627, 718, 929, 1544, 5050, 8267, 4544, 5326, 7450, 5970, 7804, 8392, 6821, 4632, 4285, 3081, 1438, 1706]}}, {"pos": 563, "top": [["?", ".", "d", "ings", "u", "h", ",", "y"], ["\uff0e", "\u00ad", "  \n", "ings", "?'", "\u00ading", "?", "ment"], ["?", "?'", "\uff0e", "'?", ".", ".?", ".'", "??"], [" ``", "\u3001\u300e", "``", "ings", " \u300e", "ingly", " ''", ":''"], ["ings", "ed", "ingly", "est", ".'", "ers", ",'", "able"], ["ings", "ed", "ingly", "est", "ishly", "hov", " View", "less"], ["ings", ".'", "ably", " '", "est", "able", "\uff0e", ",'"], ["ings", "ment", "able", "less", "ery", "ures", "ish", "ably"], ["ings", "ment", "able", "ery", "less", "ure", "ian", "ey"], ["ings", "ment", "able", "less", "ery", "ish", "ably", "ful"], ["ings", "ment", "able", "ish", "er", "ian", "ers", "ably"], ["ings", "ment", "ian", "able", "less", "ers", "ish", "ery"], ["ings", "ment", "ers", "less", "able", "ness", "ful", "ery"], ["ings", "ment", "ers", "ful", "ship", "less", "able", "ish"], ["ings", "ment", "ers", "ful", "ish", "ship", "ably", "able"], ["ers", "ment", "ings", "ed", "able", "ful", "ish", "es"], ["ment", "ers", "ings", "ful", "ed", "ish", "es", "able"], ["ings", "ment", "ers", "ish", "ship", "ful", "ed", "ness"], ["ment", "ers", "ings", "ish", "ed", "ful", "ingly", "less"], ["ment", "ed", "ingly", "ably", "ings", "ish", "ers", "y"], ["ment", "d", "ed", "an", "r", "y", "h", "n"], [" ``", "ment", "ingly", "ings", "hoot", "cape", "ers", "ably"], [" ``", " ''", "ingly", "ment", "ably", "ings", "fully", "hoot"], [" ``", " ''", "ment", "fully", "ably", "ingly", "ed", "ful"], ["ment", "ably", "ed", "fully", "ingly", "ful", "hip", " --"], ["ment", "hip", "ings", "ingly", "ably", "cape", "ship", "pace"], [" ``", "pace", "cape", "hip", "ingly", " optics", "ings", "ment"], [" ,", " ``", " ''", " --", " visual", "fully", "ably", " '"], ["pace", "ment", "hip", " optics", "cape", " visually", "ship", " film"], ["pace", " architecture", " optics", "hip", " film", "ment", " viewport", " technology"], [" ...", " ...\\", " film", " technology", " architecture", " ?", " optics", " visually"], [" ...", " ,", " complex", " under", " film", " :", " technology", " through"], [" ,", " under", " '", " :", " as", " through", " on", " at"], [" technology", " complex", "able", " seamlessly", " visually", " under", " optimized", " technical"], ["able", "ed", " technology", "ment", " seamlessly", "ian", " optimized", " :"], ["ment", " \u2014", " \u2026", "ed", " technology", " :", " technical", "able"], [" engine", " optimized", " technical", "ment", " :", " technology", " frame", " hybrid"], [" engine", " frame", " optimized", " technical", " integrated", " Frame", " independent", " :"], [" frame", " independent", " engine", " technical", " integrated", " Frame", " optimized", " :"], [" frame", " integrated", " Frame", " independent", " dual", "frame", " engine", " Android"], [" independent", " engine", " frame", " independently", " integrated", " Android", " Frame", " integration"], [" engine", " frame", " Frame", " interface", " screen", " integrated", " integration", " independent"], [" engine", " frame", " interface", " animation", " integration", " Frame", " separate", " screen"], [" Frame", " frame", " Interface", " engine", " independent", " operating", " interface", " animation"], [" separate", " independent", " frame", " Frame", " independently", " Separate", " separately", " Independent"], [" separate", " independent", " independently", " Separate", " Independent", " frame", " separately", " Frame"], [" Separate", " separate", " Independent", " independent", " independently", " Frame", " Integration", " integration"], [":", ":\\", " Separate", " :", " Frame", " Independent", " Operating", ":<"], [":", " :", ":\\", ":**", "\uff1a", ":\"", ":<", " :\\"], [":", ":\\", ":**", " :", ":<", ":\"", "**:", ":</"], [":", ":**", "\uff1a", " :", "+:", ":\\", "*:", "**:"], [":", " workaround", " :", " strategy", " Strategy", "\uff1a", " (&", "+:"], [" Strategy", " strategy", ":", "Strategy", "\u7b56\u7565", " workaround", "strategy", " (&"], [" Strategy", ":", " strategy", " (&", " workaround", " &", "Strategy", ":&"], [":", "\u89e3\u51b3\u65b9\u6848", " solution", "\uff1a", " Solution", " workaround", " :", ":&"], [":", "\u89e3\u51b3\u65b9\u6848", " solution", " Solution", "\uff1a", " workaround", ":&", " :"], [":", " Strategy", " solution", " workaround", " strategy", " Solution", "\u89e3\u51b3\u65b9\u6848", " :"], [":", " Fix", " fix", " solution", "\uff1a", " Solution", " Fixes", " Strategy"], [":", " Solution", " Fix", " solution", " :", "\u6551", " fix", " Strategy"], [":", " :", " Fix", " Solution", "port", " fix", " Rescue", " solution"], [":", "port", " :", " Fix", " Rescue", " fix", " Solution", " Strategy"], [":", "port", " Fix", " :", " Strategy", " Engine", " Architecture", " fix"], ["port", "ports", "point", ":", "pile", "plan", "pipe", "p"]], "p": [[0.0684, 0.0501, 0.047, 0.0304, 0.0237, 0.0237, 0.0209, 0.0163], [0.1631, 0.0321, 0.0195, 0.0183, 0.0162, 0.0143, 0.0076, 0.0067], [0.2653, 0.1713, 0.1106, 0.0407, 0.0337, 0.028, 0.0247, 0.0205], [0.0302, 0.0087, 0.0087, 0.0081, 0.0072, 0.006, 0.0056, 0.0034], [0.2494, 0.1178, 0.0557, 0.0359, 0.0263, 0.0232, 0.0132, 0.0085], [0.1374, 0.0887, 0.0347, 0.0224, 0.012, 0.0106, 0.0082, 0.0068], [0.6245, 0.0746, 0.0107, 0.0101, 0.0084, 0.0084, 0.0069, 0.0061], [0.8108, 0.0314, 0.0179, 0.0168, 0.0079, 0.0066, 0.0062, 0.0045], [0.5994, 0.0716, 0.0462, 0.0247, 0.017, 0.015, 0.0141, 0.0132], [0.4791, 0.1069, 0.0419, 0.0288, 0.0224, 0.0211, 0.0211, 0.0186], [0.3962, 0.1651, 0.1286, 0.021, 0.0174, 0.0164, 0.0164, 0.0154], [0.3952, 0.1454, 0.0345, 0.0345, 0.0305, 0.0305, 0.0269, 0.0197], [0.2743, 0.1468, 0.0477, 0.0308, 0.024, 0.0225, 0.0225, 0.0165], [0.2505, 0.1427, 0.0633, 0.0281, 0.0233, 0.0193, 0.0181, 0.017], [0.2258, 0.2121, 0.0941, 0.0369, 0.0306, 0.0287, 0.027, 0.027], [0.175, 0.175, 0.1062, 0.0416, 0.0324, 0.0286, 0.0252, 0.0223], [0.2043, 0.2043, 0.1591, 0.0313, 0.0313, 0.0229, 0.0202, 0.0178], [0.192, 0.1694, 0.08, 0.026, 0.026, 0.0229, 0.0148, 0.0139], [0.2869, 0.0725, 0.0601, 0.0365, 0.0365, 0.0284, 0.0208, 0.0152], [0.3752, 0.0395, 0.0289, 0.0255, 0.024, 0.0155, 0.0155, 0.0155], [0.1227, 0.0956, 0.0956, 0.0374, 0.033, 0.031, 0.0257, 0.0227], [0.0675, 0.0464, 0.0361, 0.0319, 0.0193, 0.0141, 0.0125, 0.0097], [0.3597, 0.0295, 0.0216, 0.0203, 0.0102, 0.0102, 0.0102, 0.0096], [0.1861, 0.0344, 0.0304, 0.0285, 0.0209, 0.0105, 0.0093, 0.0077], [0.0597, 0.041, 0.0362, 0.034, 0.0234, 0.0161, 0.0133, 0.0125], [0.0344, 0.0268, 0.0209, 0.0184, 0.0153, 0.0143, 0.0143, 0.0135], [0.0171, 0.0104, 0.0081, 0.0081, 0.0076, 0.0076, 0.0071, 0.0067], [0.0206, 0.0182, 0.0171, 0.0133, 0.0125, 0.0117, 0.0117, 0.011], [0.0262, 0.0192, 0.018, 0.0109, 0.0109, 0.008, 0.008, 0.0071], [0.0209, 0.0135, 0.0127, 0.0127, 0.0099, 0.0077, 0.0077, 0.0072], [0.0979, 0.0233, 0.0181, 0.0181, 0.017, 0.016, 0.011, 0.011], [0.0547, 0.0353, 0.0138, 0.0122, 0.0115, 0.0101, 0.0089, 0.0089], [0.0693, 0.0395, 0.0145, 0.0136, 0.0128, 0.0128, 0.012, 0.0113], [0.0182, 0.0142, 0.0117, 0.0091, 0.0076, 0.0076, 0.0071, 0.0063], [0.0218, 0.0124, 0.0103, 0.0103, 0.0091, 0.0085, 0.0085, 0.0066], [0.0175, 0.0154, 0.0136, 0.0106, 0.0094, 0.0088, 0.0083, 0.0069], [0.012, 0.012, 0.012, 0.0099, 0.0088, 0.0073, 0.0073, 0.0068], [0.0156, 0.0146, 0.0129, 0.0121, 0.0095, 0.0095, 0.0078, 0.0065], [0.0202, 0.0139, 0.0139, 0.013, 0.0115, 0.0095, 0.0079, 0.0079], [0.0273, 0.02, 0.0156, 0.0156, 0.0107, 0.0107, 0.01, 0.0094], [0.0304, 0.0268, 0.0184, 0.0173, 0.0153, 0.0119, 0.0112, 0.0077], [0.0604, 0.0501, 0.0237, 0.0209, 0.0196, 0.0135, 0.0127, 0.0127], [0.0468, 0.0413, 0.0266, 0.025, 0.0207, 0.0172, 0.0152, 0.0134], [0.0236, 0.0209, 0.0105, 0.0099, 0.0093, 0.0093, 0.0093, 0.0082], [0.077, 0.0342, 0.0302, 0.0183, 0.0172, 0.0152, 0.0134, 0.0104], [0.1371, 0.0537, 0.0306, 0.0238, 0.0198, 0.0198, 0.0145, 0.0136], [0.0309, 0.0309, 0.0187, 0.0155, 0.0155, 0.0121, 0.0114, 0.0107], [0.222, 0.1116, 0.0194, 0.0142, 0.0111, 0.0104, 0.0092, 0.0092], [0.8947, 0.0505, 0.0224, 0.0041, 0.0027, 0.0013, 0.0013, 0.0011], [0.9152, 0.0244, 0.0168, 0.0084, 0.0079, 0.0048, 0.002, 0.0016], [0.9654, 0.0057, 0.0048, 0.0039, 0.0031, 0.0025, 0.002, 0.0018], [0.5252, 0.0589, 0.0278, 0.0278, 0.018, 0.0159, 0.0066, 0.0062], [0.314, 0.2027, 0.1789, 0.0242, 0.0177, 0.0166, 0.0156, 0.0122], [0.1603, 0.1329, 0.0914, 0.0858, 0.0489, 0.0459, 0.018, 0.0169], [0.3919, 0.0991, 0.0821, 0.0565, 0.0498, 0.0388, 0.0267, 0.0235], [0.3605, 0.11, 0.097, 0.0431, 0.0431, 0.0335, 0.0203, 0.0191], [0.2215, 0.1114, 0.0867, 0.0815, 0.0596, 0.0526, 0.0494, 0.0219], [0.3987, 0.0785, 0.0693, 0.0611, 0.0507, 0.0371, 0.0239, 0.0239], [0.4058, 0.1917, 0.0799, 0.0622, 0.0229, 0.0229, 0.0202, 0.0178], [0.333, 0.1151, 0.0698, 0.0656, 0.031, 0.0291, 0.0291, 0.02], [0.7576, 0.0215, 0.0148, 0.0115, 0.009, 0.007, 0.0066, 0.0062], [0.3771, 0.2759, 0.0213, 0.02, 0.0121, 0.0114, 0.01, 0.0083], [0.9917, 0.0012, 0.0008, 0.0007, 0.0007, 0.0005, 0.0002, 0.0002]], "ranks": {"Python": [10260, 51424, 80290, 53467, 3554, 27309, 5546, 27937, 34653, 58203, 24708, 87295, 102790, 114865, 81577, 116052, 65999, 29097, 29498, 89489, 38101, 78366, 58261, 72281, 39588, 22163, 27629, 8109, 7210, 4038, 3036, 6124, 7665, 1738, 2109, 560, 74, 156, 150, 104, 131, 185, 92, 222, 249, 475, 635, 1595, 2645, 15740, 25392, 10081, 11463, 15632, 11236, 10034, 6844, 7873, 5352, 2892, 2264, 955, 183]}}, {"pos": 564, "top": [["\u2013", " \u2013", ".", "\u2013and", "\u2022", "\u00a0", ",", ".\u2013"], ["\\\"", "shire", "ment", " \\\"", "less", "\u2013and", ":\\\"", "\\\":\\\""], [":\\\"", "\\\"", ".\\\"", ",\\\"", " \\\"", "\\\"\\", "\\\":\\\"", " '\\\""], ["\uff63", " ``", "``", " \uff62", "':''", " ``(", "\\\":\\\"", "\\\",\\\""], [".\\\"", " \\\"", ":\\\"", "\uff63", " -->", " \uff62", ",\\\"", "\\\",\\\""], ["\uff63", " \uff62", ".\\\"", ":\\\"", " -->", " ','", ".\ufffd", " \\\""], [" \uff62", " -->", "\uff63", ".\\\"", " ____", ".\ufffd", " ......", " \u2502"], [" \uff62", "\uff63", ".\\\"", " -->", " '\\\"", " ``", ".\ufffd", ":\\\""], ["\uff63", ".\\\"", " \uff62", ":\\\"", " '\\\"", ".\ufffd", "\uff62", ".''"], ["\uff63", ".\\\"", ".''", ",''", ":''", " '\\\"", " \uff62", ":\\\""], [".\\\"", "\uff63", ".\ufffd", ".''", " \uff62", ":\\\"", " \u2502", ",\\\""], [".\\\"", "\uff63", ".','", ".''", " '\\\"", ",''", " \uff62", "\ufffds"], ["\uff63", ":''", ".\\\"", " '\\\"", ",''", ":\\\"", ".''", " ``"], ["\uff63", ",''", "\uff62", ":''", ".''", ".\\\"", " seamlessly", " ''"], [" ``", ".\\\"", " ''", "\uff63", " seamlessly", " \\\"", "\u2237", " rendition"], [" seamlessly", " swiftly", " \\\"", " ``", " myriad", " looming", " atop", " lockdown"], [" seamlessly", " showcase", " showcased", " lockdown", " amid", " centerpiece", " looming", "-centric"], [".\\\"", " seamlessly", " \\\"", ":\\\"", "\uff63", " ``", " '\\\"", " \uff62"], [" seamlessly", " '\\\"", " --", " \uff62", "&apos", " amid", ">--", ":\\\""], [" --", " swiftly", " &#", " amid", " ostensibly", "&apos", " myriad", " seamlessly"], [" --", "<|endoftext|>", " swiftly", "--", " &#", " myriad", " ostensibly", " seemingly"], [" ``", " '\\\"", " ;;^", " --", " \uff62", " \ufffd", " ''", " |\u2022"], [" --", " ``", " ''", " '\\\"", " \uff62", " '--", ")--", " atop"], [" --", " ``", " ''", " ,", " &#", " swiftly", " \ufffd", " \\'"], [" --", " ____", " ``", " &#", " ___", " ''", " __", " ______"], [" --", " ____", " ___", " ``", " *__", " :]", " __", " ______"], [" --", " ___", " ____", " ``", " :]", " atop", " '\\\"", " ''"], [" --", " ___", " ____", " ?", " __", " ,", " ______", " :"], [" --", " ____", " ___", " :]", " ?", " :\\", " ______", " :"], [" ____", " ___", " --", " __", " ______", " \n  \n", " ?", " :"], [" :", " ?", " --", " ,", " .", " :\\", " ___", " seamlessly"], [" ,", " :", " .", " --", " and", " in", " ?", " as"], [" :", " ,", " .", " --", " '", " via", " under", " and"], [" via", " :", " heavily", " seamlessly", " complex", " technology", " hybrid", " rapidly"], [" :", " via", " seamlessly", " hybrid", " tech", " \u2014", " heavily", " complex"], [" :", " \u2014", " \uff1a", " via", " technology", " optimized", " \u2013", " tech"], [" :", " \u2014", " optimized", " via", " leveraging", " hybrid", " tech", " seamlessly"], [" :", " optimized", " via", " redesign", " hybrid", " tech", " technical", " redesigned"], [" :", " (", " \uff1a", " \u2014", " optimized", " technical", " redesign", " hybrid"], [" :", " optimized", " hybrid", " strategy", " hardware", " \u2013", " tech", " via"], [" technology", " hardware", " tech", " technical", " optimized", " :", " strategy", " hybrid"], [" technology", " hardware", " strategy", " technical", " engineering", " :", " optimized", " tech"], [" :", " strategy", " technology", " hardware", " technical", " engineering", " redesign", " optimized"], [" :", " strategy", " via", " technology", " implementation", " hardware", " Strategy", " redesign"], [" :", " strategy", " via", " @", " &", " design", " --", " solution"], [" :", " strategy", " via", " &", " Strategy", " @", " solution", " design"], [":", " :", " strategy", " Strategy", " &", " (", " :\\", " via"], [":", " :", ":\\", " (", " &", " :\\", ":<", " Strategy"], [":", " :", ":\\", " (", ":**", ":<", " :**", "\uff1a"], [":", " :", ":<", ":\\", ":**", ":&", ":</", ":\\\""], [":", " :", "*:", ":<", ":**", " ():", "\uff1a", "+:"], [":", " Strategy", " (&", " :", ":<", " workaround", ":&", " \u2192"], [" Strategy", ":", " (&", " strategy", ":**", " (**", " **(", ":&"], [":", " Strategy", " (&", ":&", " strategy", " &", ":<", " :"], [":", " :", ":&", "\uff1a", " Solution", "\u89e3\u51b3\u65b9\u6848", ":<", " solution"], [":", " Solution", "\u89e3\u51b3\u65b9\u6848", ":&", " solution", " Strategy", " :", " workaround"], [":", " Strategy", " Solution", " strategy", " workaround", " :", " solution", "\u89e3\u51b3\u65b9\u6848"], [":", " :", " Solution", " Strategy", "\uff1a", " solution", "\u89e3\u51b3\u65b9\u6848", " strategy"], [":", " Solution", " Strategy", " :", " solution", "\u89e3\u51b3\u65b9\u6848", "\uff1a", "solution"], [":", " Solution", " Strategy", " :", " solution", " Fix", " Architecture", " strategy"], [":", " Strategy", " Solution", " :", " Architecture", " strategy", " solution", " &"], [":", " Strategy", " Architecture", " Solution", " :", " strategy", " Fix", " Engine"], [":", " Strategy", " Solution", " Architecture", " Fix", " :", " Engine", " Pipeline"]], "p": [[0.6607, 0.1893, 0.0542, 0.035, 0.01, 0.01, 0.0094, 0.0054], [0.0423, 0.0213, 0.02, 0.0137, 0.0094, 0.0083, 0.0083, 0.0078], [0.2963, 0.1688, 0.1586, 0.0548, 0.0157, 0.0101, 0.0089, 0.0084], [0.1917, 0.0964, 0.0622, 0.0485, 0.0276, 0.0276, 0.013, 0.009], [0.2435, 0.1081, 0.0398, 0.0398, 0.0351, 0.033, 0.0137, 0.0114], [0.0676, 0.0597, 0.0265, 0.0142, 0.011, 0.0071, 0.0056, 0.0049], [0.2555, 0.1001, 0.094, 0.0646, 0.0417, 0.0305, 0.0238, 0.0238], [0.3124, 0.2147, 0.0742, 0.0226, 0.0213, 0.02, 0.0188, 0.0156], [0.2824, 0.2066, 0.1713, 0.0218, 0.0218, 0.0192, 0.0117, 0.0103], [0.1214, 0.1072, 0.0692, 0.037, 0.0198, 0.0175, 0.0164, 0.0136], [0.3818, 0.0965, 0.0852, 0.0313, 0.0179, 0.0139, 0.0131, 0.0123], [0.0469, 0.0365, 0.0173, 0.0162, 0.0143, 0.0126, 0.0111, 0.0098], [0.0264, 0.0206, 0.0193, 0.0125, 0.011, 0.0091, 0.0076, 0.0071], [0.0129, 0.0073, 0.0069, 0.0061, 0.005, 0.005, 0.0042, 0.0033], [0.0234, 0.011, 0.011, 0.0104, 0.0086, 0.0071, 0.0067, 0.0052], [0.0143, 0.0056, 0.0041, 0.0041, 0.0041, 0.0039, 0.0039, 0.0036], [0.0103, 0.0036, 0.0025, 0.0023, 0.0022, 0.0018, 0.0018, 0.0018], [0.0128, 0.0094, 0.0088, 0.006, 0.0047, 0.0047, 0.0047, 0.0039], [0.0106, 0.0083, 0.0069, 0.0061, 0.005, 0.0044, 0.0037, 0.0032], [0.084, 0.0329, 0.0256, 0.0165, 0.0165, 0.0146, 0.0121, 0.0107], [0.2228, 0.068, 0.0467, 0.0195, 0.0172, 0.0142, 0.0134, 0.0111], [0.024, 0.0128, 0.0121, 0.0113, 0.0065, 0.0057, 0.0057, 0.0054], [0.1548, 0.1283, 0.0286, 0.0135, 0.0099, 0.0082, 0.0064, 0.0056], [0.6023, 0.0719, 0.0385, 0.0076, 0.0071, 0.0071, 0.0055, 0.0052], [0.6266, 0.0401, 0.0178, 0.0167, 0.0157, 0.0095, 0.0089, 0.0089], [0.13, 0.0577, 0.0542, 0.0212, 0.0121, 0.0114, 0.01, 0.0088], [0.1574, 0.0424, 0.031, 0.0227, 0.0129, 0.0101, 0.0083, 0.0083], [0.536, 0.044, 0.0267, 0.0183, 0.0118, 0.0118, 0.0081, 0.0076], [0.1097, 0.0457, 0.0457, 0.0314, 0.023, 0.0158, 0.0158, 0.0131], [0.2411, 0.2127, 0.0573, 0.0475, 0.0446, 0.037, 0.0326, 0.0198], [0.3427, 0.0634, 0.0361, 0.0361, 0.0193, 0.0133, 0.0103, 0.0097], [0.2236, 0.1356, 0.0499, 0.0389, 0.0251, 0.0221, 0.0162, 0.0134], [0.2133, 0.1073, 0.0211, 0.0211, 0.0198, 0.0128, 0.0128, 0.012], [0.0339, 0.0281, 0.0133, 0.0091, 0.0086, 0.0076, 0.0071, 0.0071], [0.1914, 0.0202, 0.0167, 0.0095, 0.0065, 0.0065, 0.0058, 0.0054], [0.2945, 0.0452, 0.0177, 0.0114, 0.0107, 0.0095, 0.0095, 0.0089], [0.0864, 0.0383, 0.0264, 0.0133, 0.0124, 0.0124, 0.011, 0.0097], [0.1311, 0.0201, 0.0157, 0.0157, 0.013, 0.0095, 0.0089, 0.0084], [0.4231, 0.0198, 0.0145, 0.012, 0.0077, 0.0073, 0.0064, 0.0064], [0.0277, 0.0244, 0.0158, 0.0139, 0.0139, 0.0131, 0.0131, 0.0131], [0.0311, 0.0258, 0.0258, 0.0258, 0.0214, 0.0214, 0.0201, 0.0138], [0.0511, 0.0424, 0.0291, 0.0257, 0.0242, 0.02, 0.0177, 0.0177], [0.0825, 0.0323, 0.0323, 0.0222, 0.0162, 0.0162, 0.0135, 0.0135], [0.066, 0.0514, 0.0293, 0.0189, 0.0157, 0.0147, 0.0122, 0.0101], [0.2644, 0.0432, 0.0336, 0.0262, 0.0217, 0.0103, 0.0103, 0.0096], [0.2821, 0.0591, 0.0279, 0.015, 0.0109, 0.0109, 0.0103, 0.008], [0.36, 0.2634, 0.0261, 0.0203, 0.0131, 0.0109, 0.0066, 0.0058], [0.8072, 0.1238, 0.0074, 0.0062, 0.0027, 0.0024, 0.0019, 0.0017], [0.922, 0.0668, 0.0026, 0.0012, 0.0008, 0.0007, 0.0004, 0.0003], [0.9637, 0.0089, 0.0061, 0.0037, 0.0027, 0.0014, 0.0009, 0.0007], [0.9494, 0.0174, 0.0034, 0.0022, 0.0021, 0.0016, 0.0015, 0.0014], [0.5434, 0.037, 0.0271, 0.0239, 0.0186, 0.0175, 0.0136, 0.0128], [0.3773, 0.2938, 0.0579, 0.031, 0.0089, 0.0083, 0.0078, 0.0078], [0.6158, 0.0944, 0.0833, 0.0326, 0.0113, 0.0078, 0.0068, 0.0057], [0.9125, 0.013, 0.013, 0.0089, 0.007, 0.0048, 0.0045, 0.004], [0.8631, 0.0179, 0.0123, 0.0123, 0.0116, 0.0096, 0.0079, 0.0055], [0.6726, 0.1324, 0.0296, 0.0179, 0.0149, 0.014, 0.0109, 0.009], [0.9183, 0.0131, 0.0131, 0.0116, 0.0079, 0.0062, 0.0027, 0.0017], [0.7262, 0.1836, 0.0248, 0.0171, 0.0151, 0.0038, 0.0038, 0.003], [0.777, 0.1192, 0.0341, 0.0266, 0.0111, 0.0021, 0.0018, 0.0017], [0.9736, 0.0139, 0.0035, 0.0013, 0.0012, 0.0012, 0.0006, 0.0004], [0.9078, 0.058, 0.0101, 0.0054, 0.0035, 0.0015, 0.0013, 0.0008], [0.9975, 0.0019, 0.0003, 0.0001, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Python": [18155, 206689, 119392, 65401, 2348, 26130, 3200, 32185, 18971, 61662, 10733, 31398, 52001, 60378, 27775, 28957, 19565, 16408, 27174, 74013, 37174, 93148, 63505, 35047, 47902, 29689, 26097, 9946, 7462, 4371, 4875, 6332, 9290, 7468, 7760, 2234, 2136, 2190, 1887, 2034, 1871, 3047, 3060, 4279, 4096, 4842, 7350, 14031, 24814, 43964, 45522, 28615, 27222, 28204, 14415, 5233, 3401, 3824, 2834, 1366, 912, 155, 250]}}, {"pos": 565, "top": [[".", ",", " \u2013", "\u2013", ";", "\u00a0", ":", "?"], [" \u2013", "\u2013", ",", ".", "\u2013and", ";", " \u200b\u200b", "?"], ["\u2013", ",", ".", "\u2026..", "\u2026.", " \u2013", "\u2026", "\u2013and"], [" pornstar", " Blowjob", " Shemale", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " milfs", " cumshot", "-------------</", " creampie"], [" Aussie", " \u200b\u200b", " \u201c.", ",@", " *@", ":@", " (@", " \"@"], [" \u200b\u200b", "\u2026..", " \u201c.", " Aussie", "\uff01", "!\u201d.", " Cristal", "!)."], [" \u2014\u2014", "\uff01", "\u00b7\u00b7", "!\"", " ......", "\n", "......", "..\""], ["strup", " #\"", " Aussie", "..\"", " pornstar", "\u2764", "\u2018s", "pretty"], ["!\u201d.", "!\".", "#\"", "!\u201d", "!\"", " \n\n", "?\u201d.", "..\""], [" pricey", " showcased", "-esque", "\u9887\u5177", "\u6491\u8d77", "relude", " V\u00edc", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9"], ["-esque", "...\"", " effortlessly", " burgeoning", " showcased", " showcasing", "!\"", "\u00a0"], [" impactful", " pricey", " showcased", " showcasing", "aptors", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " funky", " comfy"], [" impactful", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " comfy", " showcased", " pricey", "aptors", " savvy", " pornstar"], [" savvy", " trendy", " showcased", " impactful", " pricey", " effortlessly", " showcase", " Showcase"], [" effortlessly", " arguably", " showcasing", " savvy", " showcase", " showcased", " revamped", " burgeoning"], [" arguably", " effortlessly", " burgeoning", " swiftly", " savvy", " genuinely", " spectacular", " bolster"], [" savvy", " effortlessly", " burgeoning", " pricey", " simplistic", " trendy", " arguably", " showcasing"], [" tweaking", " tweaks", " savvy", " trendy", " impactful", " effortlessly", " quirky", " simplistic"], [" savvy", " trendy", " impactful", " tweaking", " tweaks", " effortlessly", " simplistic", " quirky"], [" savvy", " burgeoning", " effortlessly", " tweaking", " simplistic", " pricey", " trendy", " skyrocket"], ["<|endoftext|>", " burgeoning", " tweaking", " effortlessly", " swiftly", " savvy", " revamped", " simplistic"], [" savvy", " skyrocket", " tweaking", " trendy", " pricey", " flashy", " effortlessly", " spectacular"], [" tweaking", " effortlessly", " savvy", " skyrocket", " spectacular", " burgeoning", " simplistic", " booming"], [" spectacular", " tweaking", " burgeoning", " effortlessly", " swiftly", " revamped", " relentlessly", " skyrocket"], [" \n\n", "\n\n", "\t\n\n", "\r\n\n", " \r\n\r\n", " tweaking", " revamped", " burgeoning"], [" tweaking", " ?**", " simplistic", " pricey", " impactful", " skyrocket", " revamped", " leveraging"], [" tweaking", " skyrocket", " tackling", " simplistic", " impacting", " revamped", " burgeoning", " leveraging"], ["\n\n", " \n\n", " tweaking", " skyrocket", " arguably", " burgeoning", " vastly", " wildly"], ["\n\n", " \n\n", " tweaking", " leveraging", " skyrocket", " arguably", " tackling", " bolster"], [" \n\n", " ...", "\n\n", " #", " ___", " ?", " complex", " \u2014"], ["\n\n", " \n\n", " :", " #", " ?", " complex", " ...", " focused"], [" #", "\n\n", " \n\n", " complex", " :", " high", " focused", " long"], [" massive", " power", " complex", " high", " focused", " critical", " :", " solid"], [" massive", " leveraging", " relentless", " massively", " tech", " hybrid", " complex", " huge"], [" leveraging", " tech", " relentless", " hybrid", " meticulously", " tweaking", " leverage", " brutal"], [" leveraging", " hybrid", " tech", " Hybrid", " relentless", " meticulously", " leverage", " modular"], [" leveraging", " leverage", " hybrid", " modular", " tech", " optimized", " relentless", " meticulously"], [" leveraging", " hybrid", " leverage", " Hybrid", " tech", " modular", " bypass", " optimized"], [" leveraging", " hybrid", " bypass", " Hybrid", " modular", " leverage", " tech", " relentless"], [" leveraging", " hybrid", " modular", " Hybrid", " bypass", " hardware", " leverage", " Hardware"], [" leveraging", " hardware", " hybrid", " modular", " Hybrid", " Hardware", " tech", " bypass"], [" leveraging", " modular", " hardware", " hybrid", " Modular", " bypass", " outsourcing", " Hardware"], [" leveraging", " modular", " hybrid", " hardware", " Hybrid", " outsourcing", " Modular", " leverage"], [" leveraging", " modular", " hybrid", " bypass", " Hybrid", " Modular", " outsourcing", " hardware"], [" modular", " leveraging", " hybrid", " bypass", " Modular", " Hybrid", " leverage", " outsourcing"], [" modular", " hybrid", " leveraging", " Hybrid", " Modular", " bypass", " Dual", " dual"], [" Hybrid", " leveraging", " modular", " Modular", " hybrid", " Dual", " Direct", " Shift"], [" Hybrid", " leveraging", " Dual", " Direct", " Modular", " modular", " hybrid", " bypass"], [" **\"", " Hybrid", " Dual", " leveraging", " Direct", " Modular", " Split", " hybrid"], [" **\"", " Hybrid", " Dual", " Direct", " Split", " Modular", " leveraging", " Separate"], [" Hybrid", "\u5265\u79bb", " Dual", " Split", " Modular", " Retrofit", "\u5f3a\u5236", " Embedded"], ["\u5265\u79bb", " **\"", " Embedded", " outsourcing", " Hybrid", " Modular", " Dual", " Split"], ["\u5206\u79bb", " Separ", " Separate", "\u5265\u79bb", " Split", " bypass", " separation", " **\""], [" Separ", " Separate", "\u5206\u79bb", "\u5265\u79bb", " Split", " Modular", " bypass", " Hybrid"], ["\u5206\u79bb", " Separate", " Separ", "\u5265\u79bb", " Hybrid", " Split", " Dual", " bypass"], [" Hybrid", " GPU", "\u5206\u79bb", " Separ", "\u5265\u79bb", " Separate", " Vulkan", " CUDA"], [" GPU", "\u5265\u79bb", " Hybrid", " Hardware", " Separate", " Separ", " Vulkan", "\u5206\u79bb"], [" GPU", "\u5265\u79bb", " Vulkan", " Hybrid", " CUDA", " Hardware", " Escape", " Separate"], [" GPU", " Vulkan", " Hybrid", " Escape", " CUDA", " Delegate", "\u5265\u79bb", "\u9003\u9038"], [" Off", " GPU", " Vulkan", " Async", " off", " CUDA", " Hybrid", " Offline"], [" Off", " GPU", " Vulkan", " Escape", " Async", " Zero", " off", " CUDA"], [" Off", " off", " Escape", " Zero", " GPU", " Offline", " Async", " Python"], [" Off", " Escape", " Zero", " Async", " Hybrid", " Native", " Is", " Separate"]], "p": [[0.3966, 0.2726, 0.2405, 0.0689, 0.0082, 0.0047, 0.001, 0.001], [0.3827, 0.2471, 0.1595, 0.0802, 0.0168, 0.0139, 0.0062, 0.0026], [0.4546, 0.3125, 0.1303, 0.0373, 0.0176, 0.0137, 0.0073, 0.0061], [0.02, 0.0156, 0.0156, 0.0079, 0.0069, 0.0054, 0.0029, 0.0021], [0.0168, 0.0131, 0.0074, 0.0058, 0.004, 0.004, 0.0035, 0.0029], [0.0122, 0.0066, 0.0048, 0.0035, 0.0033, 0.0029, 0.0021, 0.0021], [0.0453, 0.0375, 0.0353, 0.0228, 0.0122, 0.0089, 0.0084, 0.0074], [0.0061, 0.0051, 0.0048, 0.0042, 0.0037, 0.0035, 0.0031, 0.0026], [0.0499, 0.0267, 0.0267, 0.0208, 0.0143, 0.0111, 0.0105, 0.0105], [0.0024, 0.0017, 0.0013, 0.0013, 0.0013, 0.0012, 0.001, 0.001], [0.0277, 0.0202, 0.019, 0.0139, 0.0131, 0.0131, 0.0102, 0.0084], [0.0054, 0.0045, 0.0037, 0.0033, 0.0022, 0.0022, 0.0022, 0.0022], [0.0114, 0.0037, 0.0031, 0.0031, 0.0029, 0.0027, 0.0022, 0.002], [0.0034, 0.0032, 0.003, 0.0028, 0.0027, 0.0022, 0.0022, 0.0016], [0.0277, 0.0179, 0.0148, 0.0102, 0.0085, 0.0079, 0.0075, 0.007], [0.0224, 0.0224, 0.0224, 0.0154, 0.0082, 0.0073, 0.0064, 0.005], [0.0342, 0.0235, 0.0134, 0.0118, 0.0111, 0.0098, 0.0098, 0.0087], [0.0233, 0.0193, 0.0193, 0.0141, 0.0081, 0.0076, 0.0071, 0.0071], [0.0302, 0.0162, 0.0162, 0.0118, 0.0118, 0.0104, 0.0092, 0.0092], [0.0277, 0.0203, 0.0191, 0.014, 0.0116, 0.0102, 0.0096, 0.0085], [0.0387, 0.0235, 0.0098, 0.0098, 0.0092, 0.0081, 0.0063, 0.0063], [0.0029, 0.0028, 0.0023, 0.0019, 0.0017, 0.0016, 0.0016, 0.0012], [0.0068, 0.0064, 0.0053, 0.005, 0.0047, 0.0041, 0.0039, 0.0032], [0.0059, 0.0056, 0.0052, 0.0052, 0.0052, 0.0046, 0.0043, 0.0041], [0.0877, 0.0222, 0.0068, 0.0056, 0.0056, 0.0053, 0.0049, 0.0044], [0.0041, 0.0038, 0.0032, 0.0032, 0.0032, 0.003, 0.0023, 0.0021], [0.0067, 0.0067, 0.0036, 0.0032, 0.0032, 0.0028, 0.0028, 0.0026], [0.2543, 0.0366, 0.0056, 0.005, 0.005, 0.0047, 0.0044, 0.0044], [0.1401, 0.0377, 0.0095, 0.0079, 0.0074, 0.0058, 0.0048, 0.0048], [0.1025, 0.0548, 0.0515, 0.013, 0.0101, 0.0101, 0.0079, 0.0062], [0.0263, 0.0263, 0.0247, 0.0205, 0.0141, 0.011, 0.0075, 0.0071], [0.0177, 0.0122, 0.0114, 0.0108, 0.0089, 0.0069, 0.0065, 0.0065], [0.0077, 0.0068, 0.0064, 0.0056, 0.0056, 0.0056, 0.0053, 0.0039], [0.0128, 0.0106, 0.0068, 0.0064, 0.0064, 0.006, 0.0053, 0.0053], [0.0408, 0.0117, 0.011, 0.008, 0.0071, 0.0063, 0.0055, 0.0052], [0.055, 0.0202, 0.0168, 0.0123, 0.0108, 0.0102, 0.009, 0.0074], [0.1534, 0.0172, 0.0172, 0.0152, 0.0143, 0.0134, 0.0118, 0.0092], [0.1221, 0.0187, 0.0176, 0.0165, 0.0137, 0.0129, 0.0121, 0.01], [0.0776, 0.0252, 0.0184, 0.0153, 0.0143, 0.0143, 0.0099, 0.0093], [0.0991, 0.0343, 0.0251, 0.0236, 0.0208, 0.0183, 0.0143, 0.0134], [0.0994, 0.0343, 0.0343, 0.0285, 0.0285, 0.0251, 0.0222, 0.0162], [0.1289, 0.0782, 0.0418, 0.027, 0.0174, 0.0154, 0.0145, 0.0145], [0.1472, 0.074, 0.035, 0.0272, 0.0176, 0.0155, 0.0155, 0.0137], [0.1951, 0.0981, 0.0339, 0.0299, 0.0264, 0.0219, 0.0181, 0.015], [0.1416, 0.1416, 0.0381, 0.0336, 0.0262, 0.0231, 0.0149, 0.014], [0.1367, 0.0829, 0.0829, 0.0646, 0.0346, 0.0238, 0.0185, 0.0127], [0.1228, 0.0617, 0.0545, 0.0452, 0.0257, 0.0257, 0.0213, 0.0147], [0.119, 0.0496, 0.0466, 0.0386, 0.032, 0.032, 0.0249, 0.0171], [0.105, 0.105, 0.0562, 0.0301, 0.025, 0.022, 0.0142, 0.0134], [0.0658, 0.0546, 0.0512, 0.0352, 0.0258, 0.0147, 0.0138, 0.0114], [0.0605, 0.0268, 0.0252, 0.0184, 0.0163, 0.0135, 0.0127, 0.0127], [0.0558, 0.0524, 0.0408, 0.0384, 0.0281, 0.0205, 0.015, 0.0141], [0.248, 0.1931, 0.0971, 0.0711, 0.0667, 0.0336, 0.0217, 0.0149], [0.1921, 0.1695, 0.1028, 0.0907, 0.0517, 0.0158, 0.0158, 0.0139], [0.1351, 0.1192, 0.0989, 0.0872, 0.077, 0.0723, 0.0172, 0.0152], [0.114, 0.1006, 0.1006, 0.065, 0.061, 0.037, 0.0211, 0.0186], [0.1238, 0.0964, 0.0751, 0.0623, 0.0623, 0.0455, 0.0355, 0.0355], [0.2064, 0.1176, 0.0713, 0.0359, 0.0337, 0.0317, 0.0262, 0.0169], [0.2315, 0.1027, 0.0706, 0.0517, 0.0334, 0.0294, 0.0229, 0.0179], [0.6494, 0.0996, 0.0304, 0.0252, 0.0173, 0.0099, 0.0093, 0.0082], [0.5817, 0.095, 0.0372, 0.0328, 0.0308, 0.0165, 0.0155, 0.0137], [0.8626, 0.0191, 0.0131, 0.009, 0.0079, 0.007, 0.0066, 0.0051], [0.5693, 0.1439, 0.0387, 0.0152, 0.0152, 0.0152, 0.0086, 0.0081]], "ranks": {"Python": [22510, 75036, 62260, 169846, 16406, 48102, 721, 32312, 28077, 104609, 22926, 103870, 61763, 86057, 36918, 103249, 80485, 44651, 72940, 116289, 21908, 145615, 97272, 72735, 26967, 100077, 129686, 55954, 41562, 11244, 10614, 11231, 13570, 10681, 7562, 2273, 1848, 2606, 2762, 1922, 1246, 1610, 1584, 2159, 2698, 2101, 4183, 4378, 4551, 14810, 11997, 541, 522, 491, 143, 14, 11, 36, 41, 10, 9, 8, 10]}}, {"pos": 566, "top": [["s", "t", "y", "sy", ",", "sor", "i", "  \n"], ["s", "sWith", "schild", "sburg", "sville", "sand", "sce", "siz"], ["s", "sWith", "sand", "sville", "sor", "sans", "sy", "schild"], [" **>>", "s", "sburg", "satz", "sula", "sWith", "sce", "siz"], ["s", "sand", "sWith", "siz", "sor", "sche", "sce", "som"], ["s", "siz", "sand", "sWith", "sburg", "sor", "som", "sce"], ["s", "sand", "som", "siz", "sor", "sWith", "ties", "sie"], ["s", "sand", "sburg", "sWith", "som", "sce", "sel", "sdale"], ["s", "sand", "sel", "sWith", "sport", "sdale", "sce", "sburg"], ["s", "sand", "sans", "som", "siz", "sburg", "iveness", "sdale"], ["s", "side", "sand", "siz", "sans", "som", "sie", "ties"], [" **>>", "s", "sula", "schuss", "sburg", "iveness", "sce", "siz"], [" **>>", "s", "\u52a0\u62ff\u5927", "iveness", "schuss", "siz", "sula", " **\u25cb"], ["s", "siz", "iveness", "ties", "\u52a0\u62ff\u5927", "schuss", "sie", "sans"], ["s", "ties", "side", "siz", "sie", "ness", "sans", "sing"], ["s", "ties", "siz", "side", "sand", "sans", "screen", "sel"], ["s", "siz", "side", "sans", "ties", "midd", "sel", "sand"], ["s", "siz", "side", "midd", "sans", "ties", "sing", "sel"], ["s", "side", "ties", "siz", "sass", "midd", "sans", " //--"], ["s", "midd", " //--", "siz", "ingly", "sans", "ties", "sport"], ["s", "midd", " //--", "edly", "sans", "ingly", "siz", "sport"], [" //--", " **>>", "siz", "croft", "schuss", "schuh", "sburg", "wares"], [" //--", "ties", " ``", "wares", "midd", "edly", "s", "croft"], ["s", "edly", " ``", "ties", "midd", "side", " //--", "much"], ["   \n\n", "midd", "s", "edly", "  \n\n", " //--", "som", "ties"], [" **>>", " //--", "croft", " //<", "wares", "edly", " **\u25cb", "midd"], [" **>>", "wares", "croft", " //--", "edly", "ware", "pped", " //<"], [" ``", "edly", "croft", " \u0623\u0646\u064e\u0651", "ware", " --", "wares", "midd"], [" **>>", "ware", "pped", "croft", "midd", "wares", "worker", "edly"], [" -**", " **>>", "ware", "via", "   \n\n", "ing", "pped", " **+"], [" **", " -**", " ____", "s", "ware", "ing", "   \n\n", "**"], [" **", " **+", " -**", "ware", "s", "ing", " ____", "via"], ["ware", "s", " **", "via", "ing", " tech", " outsourcing", " **>>"], ["ware", "via", " tech", "tech", " outsourcing", "ential", " **+", "croft"], ["via", "ware", "tech", "pped", "croft", ">**", "ential", "Via"], ["via", "\u2011", "tech", "Via", "ware", "croft", "%**", "**"], ["via", "Via", " outsourcing", "croft", "tech", "side", "ware", "lever"], ["via", " outsourcing", "\u2011", "Via", "(off", "\u5916\u5305", "away", "side"], [" outsourcing", "via", "\u5916\u5305", "\u2011", "Via", "(off", "away", "shift"], [" outsourcing", "\u5916\u5305", "via", "away", "\u8f6c\u79fb", "shift", "transfer", " Outs"], [" outsourcing", "\u5916\u5305", "via", " Transfer", "away", "transfer", " Outs", "-transfer"], [" outsourcing", "\u5916\u5305", " Transfer", "-transfer", "transfer", "via", " transfer", "Transfer"], [" outsourcing", "-transfer", " Transfer", "transfer", " transfer", "\u5916\u5305", " transferring", "away"], [" outsourcing", " Transfer", "-transfer", " transfer", "transfer", "\u5916\u5305", "via", " transferring"], [" outsourcing", " Transfer", "-transfer", " transfer", "transfer", " transfers", " transferring", "via"], [" outsourcing", " Transfer", "-transfer", " transfer", "\u5265\u79bb", " transferring", " Away", "away"], [" outsourcing", " Transfer", "-transfer", " **", " transfer", " Away", "\u5265\u79bb", " Everything"], ["!**", " Transfer", "-transfer", " Everything", "everything", " outsourcing", " **", " Away"], ["!**", "everything", " Entire", " Everything", "\u5265\u79bb", "-transfer", " Away", " Transfer"], ["everything", "!**", " Everything", " Entire", "\u4e00\u5207", "\u4e00\u5207\u7684", "\u5f7b\u5e95", " everything"], ["!**", "everything", " Everything", "\u4e00\u5207", " Entire", "-Out", "\u5265\u79bb", "\u5f7b\u5e95"], ["everything", "!**", " Everything", " Entire", "\u4e00\u5207", "\u5265\u79bb", "-Core", "Everything"], ["\u5265\u79bb", "everything", " Entire", "!**", " Everything", "-Core", "\u4e00\u5207", " Away"], ["everything", " Everything", "\u4e00\u5207", "alize", " Entire", "\u5265\u79bb", "-core", " Offline"], ["(off", "everything", "loading", " Everything", "ensively", "load", " Offline", " Off"], [" Everything", "everything", "loading", "load", "alize", " everything", "-Core", "icine"], ["load", "loading", " Everything", "everything", "loader", "loaded", "-Core", " Rendering"], ["load", " Everything", "loading", "everything", "loaded", "loader", "-load", " GPU"], ["load", "loading", "-load", "loaded", "loader", " Everything", "-Core", " GPU"], [" Off", "load", "-off", "loading", "-load", "loaded", " off", "(off"], [" Off", " off", "-off", "load", "(off", "off", "Off", "loading"], ["load", " Off", " off", "-off", "(off", "off", "loading", "-load"], ["load", "-G", "loading", "-load", "-C", "line", "board", "loader"]], "p": [[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.9999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0549, 0.0427, 0.0377, 0.0276, 0.0276, 0.0202, 0.0202, 0.0157], [0.9993, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9934, 0.001, 0.0008, 0.0005, 0.0002, 0.0002, 0.0002, 0.0001], [0.9778, 0.0027, 0.0023, 0.0012, 0.0007, 0.0006, 0.0006, 0.0005], [0.9447, 0.0056, 0.0032, 0.0021, 0.0019, 0.0013, 0.0013, 0.001], [0.8934, 0.006, 0.0034, 0.0028, 0.0028, 0.0025, 0.0024, 0.0022], [0.6679, 0.0079, 0.0065, 0.0051, 0.0045, 0.0035, 0.0033, 0.0031], [0.8044, 0.0045, 0.0042, 0.0031, 0.0031, 0.0031, 0.0029, 0.0029], [0.0536, 0.027, 0.0112, 0.0093, 0.0068, 0.0068, 0.0057, 0.0057], [0.047, 0.0119, 0.0082, 0.0072, 0.0072, 0.0072, 0.0064, 0.0056], [0.0325, 0.0105, 0.0093, 0.0087, 0.0077, 0.0072, 0.0064, 0.0064], [0.6851, 0.0161, 0.0111, 0.0076, 0.0052, 0.0036, 0.0034, 0.003], [0.8987, 0.0037, 0.0021, 0.0018, 0.0016, 0.0016, 0.0012, 0.0011], [0.9567, 0.0015, 0.0014, 0.0012, 0.0011, 0.0007, 0.0007, 0.0007], [0.5666, 0.0125, 0.0104, 0.0052, 0.0052, 0.0052, 0.0041, 0.0041], [0.0644, 0.0082, 0.0077, 0.0077, 0.0068, 0.0064, 0.0064, 0.005], [0.0553, 0.0123, 0.0109, 0.008, 0.0062, 0.0058, 0.0045, 0.0045], [0.0268, 0.0105, 0.0077, 0.0044, 0.0041, 0.0041, 0.0036, 0.0034], [0.0094, 0.0064, 0.0039, 0.0037, 0.0032, 0.0029, 0.0029, 0.0029], [0.0128, 0.0093, 0.006, 0.0057, 0.0057, 0.005, 0.0041, 0.0041], [0.0171, 0.0067, 0.0056, 0.0052, 0.0052, 0.0038, 0.0036, 0.003], [0.0156, 0.0057, 0.0051, 0.0051, 0.0039, 0.0035, 0.0027, 0.0025], [0.0075, 0.0048, 0.0048, 0.0043, 0.0043, 0.0029, 0.0021, 0.0021], [0.0068, 0.0047, 0.0047, 0.003, 0.0027, 0.0024, 0.0021, 0.002], [0.008, 0.007, 0.0031, 0.0026, 0.0026, 0.0024, 0.0023, 0.0021], [0.0057, 0.0057, 0.0047, 0.0044, 0.0034, 0.0032, 0.0029, 0.0027], [0.014, 0.0085, 0.0085, 0.0066, 0.0058, 0.0045, 0.0043, 0.004], [0.0655, 0.0329, 0.0309, 0.0176, 0.0137, 0.0129, 0.0129, 0.0107], [0.4357, 0.0169, 0.0159, 0.0116, 0.0109, 0.009, 0.0058, 0.0052], [0.0158, 0.0148, 0.0139, 0.0139, 0.0123, 0.0102, 0.0048, 0.0045], [0.0137, 0.0107, 0.0069, 0.005, 0.0037, 0.0035, 0.0035, 0.0033], [0.0269, 0.0077, 0.0064, 0.0039, 0.0039, 0.0036, 0.0036, 0.0034], [0.0422, 0.0187, 0.0094, 0.0073, 0.0057, 0.0054, 0.005, 0.005], [0.0368, 0.0087, 0.0087, 0.0068, 0.0056, 0.0053, 0.0044, 0.0036], [0.0578, 0.02, 0.0114, 0.0107, 0.0069, 0.0061, 0.0057, 0.0057], [0.0562, 0.0496, 0.0151, 0.0104, 0.0081, 0.0059, 0.0056, 0.0049], [0.2182, 0.0356, 0.0335, 0.0109, 0.009, 0.0085, 0.0085, 0.0079], [0.267, 0.0464, 0.0182, 0.0182, 0.0171, 0.0151, 0.0117, 0.0104], [0.4169, 0.0364, 0.0322, 0.0267, 0.0152, 0.0098, 0.0092, 0.0072], [0.2905, 0.069, 0.0347, 0.0186, 0.0164, 0.0164, 0.0088, 0.0088], [0.2337, 0.0522, 0.049, 0.0231, 0.0217, 0.0204, 0.018, 0.0149], [0.1668, 0.0541, 0.0509, 0.035, 0.0226, 0.0165, 0.0165, 0.0137], [0.1457, 0.0368, 0.0305, 0.0238, 0.0112, 0.0112, 0.0099, 0.0087], [0.0663, 0.0456, 0.0456, 0.0148, 0.0139, 0.0123, 0.0115, 0.0096], [0.0643, 0.039, 0.039, 0.0268, 0.0196, 0.0196, 0.0173, 0.0143], [0.0747, 0.0426, 0.04, 0.0353, 0.0167, 0.0157, 0.0138, 0.013], [0.0722, 0.0496, 0.0411, 0.0341, 0.0161, 0.0142, 0.0111, 0.0111], [0.0545, 0.0425, 0.0425, 0.0375, 0.0242, 0.0147, 0.0129, 0.0114], [0.0651, 0.042, 0.0349, 0.0271, 0.0211, 0.0155, 0.0106, 0.0083], [0.0253, 0.0238, 0.0238, 0.0163, 0.012, 0.0105, 0.0105, 0.0082], [0.0259, 0.0202, 0.0148, 0.013, 0.013, 0.0115, 0.0108, 0.0101], [0.0611, 0.0271, 0.0225, 0.0198, 0.0164, 0.012, 0.0113, 0.0106], [0.0676, 0.0635, 0.0635, 0.056, 0.0234, 0.0182, 0.0171, 0.0133], [0.1459, 0.0734, 0.0647, 0.0418, 0.0326, 0.0238, 0.0197, 0.0164], [0.1826, 0.0863, 0.0761, 0.0593, 0.0434, 0.0408, 0.0338, 0.0298], [0.366, 0.1347, 0.1188, 0.0985, 0.0465, 0.034, 0.0118, 0.0104], [0.3858, 0.2652, 0.067, 0.067, 0.0407, 0.0407, 0.0407, 0.0132], [0.6702, 0.1695, 0.0623, 0.0378, 0.0229, 0.007, 0.0048, 0.0045], [0.6691, 0.2172, 0.0549, 0.0168, 0.0079, 0.0074, 0.0051, 0.0048], [0.9934, 0.0009, 0.0007, 0.0006, 0.0005, 0.0004, 0.0003, 0.0003]], "ranks": {"Python": [58615, 209477, 215851, 231508, 231558, 234229, 197038, 187232, 183421, 199075, 191890, 210134, 194732, 178994, 180355, 183991, 184107, 163546, 177381, 184153, 145811, 194337, 174198, 176881, 82988, 118989, 142539, 157882, 80245, 36416, 75039, 68649, 88255, 123369, 91662, 44283, 41099, 32010, 51833, 30098, 20509, 34408, 35857, 50708, 70352, 34356, 32283, 36539, 84827, 125316, 87099, 26423, 33832, 50489, 24630, 5504, 1931, 3961, 3635, 1494, 2563, 908, 1286]}}, {"pos": 567, "top": [[".", ",", " \u2013", "\u2013", ";", " ", "<|endoftext|>", "?"], [" \u2013", "\u2013", "\u2013and", "--", "\\\\", "!!", "\u2013\u2013", "-->"], ["\u2013", " \u2013", ",", "\u2013and", ".", "?", "[", "@"], [" --", " -->", " ``", "``", "\\\\", " \\\"", "sworth", ":\\\\"], [" @", "@", "&", " --", "--", "\\\\", " ", "able"], ["--", " --", "ers", "\\\\", "&", "able", "t", "ings"], ["--", " --", "&", "\\\\", " @", " ", "@", " #"], ["--", "\\\\", " @", "ings", " ", " --", "@", "able"], ["\\\\", ",", "&", " @", "ings", "--", "@", "able"], [",", "--", "\\\\", " [[", "@", "!--", "[[", "ings"], ["--", "\\\\", "@", " @", " ", ",", "&", "ers"], [" --", "ers", "--", "\\\\", "!--", " [[", ")--", "ings"], ["ers", "\\\\", "!--", "edly", " incentiv", "ings", " --", "ingly"], ["ers", " incentiv", "edly", "!--", "ings", " --", " onto", " onboard"], [" --", "--", "ers", " onto", " heavily", "\\\\", " via", " off"], [" --", "ers", "--", " heavily", " off", " myriad", " via", " onto"], ["ers", " via", " onto", " heavily", " myriad", "--", " massively", " --"], ["ers", "-heavy", "odge", "ings", " onto", " massively", " tech", "edly"], ["ers", "-heavy", " hefty", " onto", "edly", "//--", "ings", " myriad"], [" --", " //--", "-heavy", " myriad", "ers", " onto", " hefty", "edly"], ["<|endoftext|>", " --", " myriad", "\\\\", " onto", "edly", "t", " heavily"], [" //--", "ers", " onto", "edly", " pricey", "//--", "odge", " %+"], [" --", " onto", "edly", "ers", " \\\\", " heavily", " //--", " myriad"], [" --", " onto", " heavily", " via", " heavy", " massively", " myriad", " to"], [" --", " [[", " onto", "\\\\", " heavily", "\\u", " \\", " \n\n"], [" ___", " onto", " --", " ____", " tech", " __", " weaponry", " hardware"], [" tech", " ___", " --", " weaponry", " hardware", " onto", " __", " engineering"], [" --", " ___", " __", " heavily", " tech", " onto", " via", " @"], [" tech", " --", " weaponry", " hardware", " via", " ___", " engineering", " onto"], [" ___", " tech", " ____", " __", " hardware", " --", " outsourcing", " technology"], [" ...", " ___", " ____", " __", " ...\"", " ______", " tech", " ...\\"], [" ___", " ...", " ____", " __", " ______", " **", " _____", " tech"], [" ...", " ___", " ____", " tech", " via", " technology", " __", " labor"], [" tech", " via", " technology", " hardware", " labor", " ____", " ___", " logistics"], [" via", " tech", " ____", " hardware", " outsourcing", " labor", " infrastructure", " logistics"], [" via", " tech", " \u2026", " hardware", " ____", " ...", " technology", " @"], [" via", " hardware", " tech", " outsourcing", " engineering", " engine", " technical", " ____"], [" via", " to", " labor", " tech", " hardware", " outsourcing", " ...", " engineering"], [" via", " labor", " outsourcing", " to", " responsibility", " ...", " workload", " @"], [" via", " outsourcing", " labor", " hardware", " responsibility", " workload", " tasks", " @"], [" via", " hardware", " responsibility", " labor", " outsourcing", " workload", " to", " engine"], [" hardware", " via", " engine", " workload", " labor", " outsourcing", " responsibility", " tasks"], [" hardware", " via", " engine", " tasks", " workload", " outsourcing", " labor", " responsibility"], [" via", " tasks", " hardware", " workload", " responsibility", " responsibilities", " engine", " onto"], [" via", " entire", " tasks", " hardware", " operations", " everything", " workload", " engine"], [" via", " entire", " hardware", " everything", " tasks", " operations", " workload", " control"], [" everything", " entire", " via", " Everything", " hardware", " Entire", " EVERY", " workload"], [" everything", " entire", " Entire", " via", " Everything", " entirely", " hardware", " EVERY"], [" Entire", " everything", " entire", " entirely", " via", " Everything", " EVERY", " entirety"], [" Entire", " everything", " Everything", " entire", " entirely", "everything", " via", " EVERY"], [" Entire", " Everything", " everything", "everything", "\u4e00\u5207", " via", "Everything", " EVERY"], [" Entire", " Everything", " everything", "everything", " via", "\u4e00\u5207", " entire", "Everything"], [" Entire", " Everything", " everything", "everything", " via", " entirely", "\u4e00\u5207", " Completely"], [" Entire", " Everything", " everything", "everything", "\u4e00\u5207", " via", " entirely", "Everything"], [" Everything", " everything", "everything", " Entire", "\u4e00\u5207", "Everything", " Completely", " EVERY"], [" everything", " Everything", "everything", "\u4e00\u5207", " Entire", " Rendering", "Everything", " Completely"], [" Everything", " Rendering", " everything", "everything", "\u4e00\u5207", " Entire", " Render", " Renderer"], [" Rendering", " Everything", " everything", "everything", " rendering", " Render", "\u4e00\u5207", " Renderer"], [" Rendering", " Everything", " everything", "everything", " rendering", " Render", " Renderer", " Entire"], [" Rendering", " rendering", " Everything", " everything", " Render", "\u6e32\u67d3", " Renderer", " render"], [" Rendering", " rendering", " Everything", " everything", " Render", " Renderer", "\u6e32\u67d3", " renderer"], [" Rendering", " Everything", " rendering", " everything", " Render", " Geometry", " to", " Graphics"], [" Rendering", " Everything", " Render", " to", " rendering", " Geometry", " Entire", " Graphics"]], "p": [[0.4127, 0.3642, 0.134, 0.0435, 0.0125, 0.0063, 0.0055, 0.003], [0.2046, 0.1805, 0.0908, 0.0277, 0.0051, 0.0051, 0.0048, 0.0045], [0.4956, 0.3859, 0.0407, 0.0192, 0.0132, 0.0052, 0.0049, 0.0026], [0.033, 0.02, 0.0177, 0.0166, 0.0146, 0.0089, 0.0089, 0.0065], [0.1956, 0.1431, 0.1114, 0.0868, 0.072, 0.0465, 0.0182, 0.0161], [0.1669, 0.0741, 0.0509, 0.0272, 0.0226, 0.0176, 0.0155, 0.0155], [0.3942, 0.3704, 0.0501, 0.0324, 0.0135, 0.0093, 0.0082, 0.0077], [0.2514, 0.1623, 0.0636, 0.032, 0.032, 0.0249, 0.0249, 0.0142], [0.144, 0.0639, 0.06, 0.0413, 0.0364, 0.0321, 0.0235, 0.0195], [0.1421, 0.1335, 0.0917, 0.028, 0.0091, 0.0091, 0.0085, 0.0075], [0.217, 0.1316, 0.0963, 0.0622, 0.0313, 0.0276, 0.0215, 0.0167], [0.1225, 0.0398, 0.0398, 0.0351, 0.0188, 0.0166, 0.0121, 0.0101], [0.0716, 0.015, 0.0141, 0.0141, 0.0117, 0.0117, 0.0091, 0.0086], [0.0636, 0.0086, 0.0086, 0.0076, 0.0071, 0.0067, 0.0059, 0.0049], [0.1842, 0.105, 0.0125, 0.0104, 0.0076, 0.0052, 0.0049, 0.0046], [0.0733, 0.0197, 0.0185, 0.0093, 0.0087, 0.0082, 0.0082, 0.0077], [0.0576, 0.0165, 0.0129, 0.0088, 0.0083, 0.0083, 0.0078, 0.0069], [0.0281, 0.0133, 0.0076, 0.0071, 0.0059, 0.0055, 0.0038, 0.0034], [0.021, 0.0144, 0.0073, 0.0057, 0.0044, 0.0039, 0.0037, 0.0034], [0.019, 0.0102, 0.0102, 0.0096, 0.009, 0.009, 0.0085, 0.0079], [0.045, 0.0373, 0.0156, 0.0156, 0.0083, 0.0069, 0.0065, 0.0061], [0.0062, 0.0045, 0.0043, 0.0043, 0.0033, 0.0028, 0.0028, 0.0023], [0.0248, 0.0125, 0.0086, 0.0086, 0.0071, 0.0067, 0.0052, 0.0052], [0.035, 0.0309, 0.0309, 0.0176, 0.0121, 0.01, 0.0094, 0.0078], [0.0498, 0.0267, 0.0251, 0.0235, 0.0162, 0.0118, 0.0092, 0.0081], [0.0579, 0.0291, 0.0291, 0.0257, 0.0241, 0.0177, 0.0114, 0.0089], [0.0326, 0.0288, 0.0198, 0.0164, 0.0154, 0.0128, 0.0113, 0.0093], [0.3254, 0.0322, 0.0303, 0.0162, 0.0134, 0.0134, 0.0126, 0.0081], [0.052, 0.0217, 0.0158, 0.0149, 0.0149, 0.014, 0.0096, 0.0096], [0.1188, 0.0527, 0.0495, 0.032, 0.0111, 0.0104, 0.0092, 0.0076], [0.3329, 0.2593, 0.1388, 0.0544, 0.0129, 0.0114, 0.0114, 0.0078], [0.408, 0.1501, 0.1501, 0.0969, 0.0203, 0.007, 0.0066, 0.0045], [0.1159, 0.0583, 0.0332, 0.0293, 0.0214, 0.0147, 0.0147, 0.0089], [0.0642, 0.0344, 0.0162, 0.0162, 0.0143, 0.0135, 0.0119, 0.0093], [0.0827, 0.073, 0.0185, 0.0127, 0.0099, 0.0087, 0.0068, 0.0068], [0.0949, 0.0372, 0.0272, 0.0212, 0.0155, 0.0145, 0.0069, 0.0061], [0.1588, 0.0294, 0.0276, 0.0139, 0.0108, 0.0095, 0.009, 0.0084], [0.1195, 0.0195, 0.0143, 0.0118, 0.0118, 0.0118, 0.0081, 0.0076], [0.1161, 0.0259, 0.0229, 0.0157, 0.0139, 0.013, 0.013, 0.0122], [0.1065, 0.0392, 0.0287, 0.0269, 0.0253, 0.0144, 0.0082, 0.0077], [0.0576, 0.0396, 0.035, 0.024, 0.0212, 0.0165, 0.0146, 0.0137], [0.0704, 0.0704, 0.0313, 0.0202, 0.0202, 0.019, 0.019, 0.0178], [0.0768, 0.0562, 0.0282, 0.0265, 0.0161, 0.0151, 0.0142, 0.0125], [0.0995, 0.0533, 0.0344, 0.0222, 0.0196, 0.0184, 0.0153, 0.0135], [0.104, 0.0434, 0.0434, 0.036, 0.0181, 0.0181, 0.017, 0.0124], [0.128, 0.0533, 0.0324, 0.0252, 0.0222, 0.0119, 0.0112, 0.0112], [0.194, 0.0671, 0.0433, 0.0298, 0.0247, 0.0192, 0.0141, 0.0132], [0.2394, 0.1751, 0.0881, 0.0534, 0.0534, 0.0269, 0.0144, 0.0082], [0.2328, 0.2328, 0.2055, 0.097, 0.0519, 0.0519, 0.0123, 0.0109], [0.443, 0.2371, 0.112, 0.0412, 0.0283, 0.0207, 0.0183, 0.0172], [0.4528, 0.2424, 0.1145, 0.0477, 0.0212, 0.0165, 0.0057, 0.0054], [0.5552, 0.2042, 0.1239, 0.0402, 0.0108, 0.0102, 0.0062, 0.0045], [0.7265, 0.1262, 0.041, 0.0171, 0.0117, 0.0063, 0.0052, 0.0046], [0.3896, 0.3034, 0.1624, 0.0437, 0.0142, 0.0059, 0.0052, 0.0052], [0.4537, 0.3533, 0.1147, 0.029, 0.029, 0.0065, 0.0031, 0.0027], [0.4637, 0.4092, 0.0913, 0.0124, 0.0052, 0.0045, 0.004, 0.0019], [0.4179, 0.2872, 0.1974, 0.0566, 0.0087, 0.0046, 0.0028, 0.0028], [0.5809, 0.2422, 0.1144, 0.0225, 0.0121, 0.005, 0.0044, 0.0039], [0.497, 0.4386, 0.0408, 0.008, 0.0033, 0.003, 0.0016, 0.0012], [0.9067, 0.0352, 0.0352, 0.0069, 0.0042, 0.0033, 0.0022, 0.0012], [0.888, 0.0442, 0.039, 0.0144, 0.0022, 0.0019, 0.0013, 0.0009], [0.8437, 0.1008, 0.0198, 0.0083, 0.0044, 0.0029, 0.0024, 0.0015], [0.746, 0.2137, 0.0069, 0.0065, 0.0065, 0.0047, 0.0016, 0.0013]], "ranks": {"Python": [7803, 177316, 97325, 45924, 9777, 28287, 32967, 16278, 50565, 120430, 58250, 84448, 95144, 77538, 58089, 52780, 54883, 61058, 95271, 108149, 53577, 93084, 46675, 33936, 31647, 20854, 15930, 8820, 10691, 7101, 5676, 5239, 7423, 6337, 8047, 3103, 2517, 2497, 3525, 2065, 1528, 1492, 1486, 2688, 2629, 1972, 2964, 4577, 6376, 26071, 48329, 14327, 21642, 17299, 9944, 2645, 1304, 1398, 1737, 930, 703, 210, 151]}}, {"pos": 568, "top": [[".", ",", "\u2013", " \u2013", "\u00a0", ";", "\u2013and", ":"], ["\u2013", " \u2013", "\u2013and", ",", ".\u2013", " \u2013,", ".", ";"], ["\u2013", " \u2013", ",", ".", "\u2013and", ".\u2013", ";", " \u2013,"], [" milfs", " Blowjob", " Shemale", " Guta", "':''", " ;;^", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " cumshot"], ["\u2018s", "-->", "\u2013and", "&A", "&(", ":@", ":&", " Guta"], ["\u2013and", "\u2018s", "\u2013", "\u82b7", "\u6cd7", ".redis", "-To", "esting"], ["\u2013and", "\u2500\u2500", " --", "ting", " //--", "ronic", "-->", " '--"], [" //--", "verage", "warzys", " '{@", "//--", "ting", "-ish", "!--"], ["\u2013and", "verage", "&T", "-ish", "-->", "\u6700\u65b0\u53d1\u5e03", "!:", "!--"], ["\u2013and", "-but", "\u503e\u529b", "!--", "--", ",", " \u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435", "\u2013"], ["\u2013and", "--", "\u2013", "\u00a0", "-but", "&", "@", "\\\\\\"], [" //--", " //~", "//--", " --", "verage", "!--", " \u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435", "\u30f3\u30c8\u30f3"], ["//--", " veggies", "-ish", " //--", " comfy", " --", "verage", " booze"], ["-ish", " tech", " savvy", " --", "//--", " Philly", " Showcase", " Woody"], [" --", "--", " savvy", " ``", " revamped", " tech", "//--", " folks"], [" --", " tech", " savvy", " pricey", " folks", " goodies", " Tech", " revamped"], [" tech", " savvy", " Tech", " pricey", " Showcase", " booze", " meds", " veggies"], ["-lite", "//--", " savvy", " Showcase", " Philly", " tech", " pricey", " Tech"], ["//--", " //--", " comfy", " Philly", "-lite", " pricey", " Showcase", " savvy"], [" --", "//--", " //--", " //~", " ``", " pricey", " *&", " &#"], [" --", " &#", " //--", " //<", " #@", " @", " //~", "//--"], [" ``", " //--", " ?**", "//--", " *__", " //<", " //~", " ;;^"], [" ``", " --", "``", " ?**", " ''", " ~~", " //<", " //--"], [" ``", " --", " ''", " &#", "<|endoftext|>", " \\'", " \ufffd", " \\"], [" \n\n", " --", " ``", " \r\n\r\n", " &#", "   \n\n", "\r\n\r\n", " ____"], [" *__", " ?**", " ``", " //<", " <!--", " tech", " ~~", " ____"], [" *__", " ?**", " ``", " ___", " ____", " tech", " //<", " __"], [" --", " \n\n", " ``", " _", " __", " ___", " ____", " ---"], [" tech", " --", " ``", " ?**", " hardware", " **", " @_", " ____"], [" ...", " tech", " ____", " **", " ___", " --", " \n", " __"], [" ...", " **", " ____", " ___", " __", " \n\n", " _", " tech"], [" ...", " **", " tech", " --", " technology", " @", " _", " via"], [" tech", " via", " technology", " @", " Tech", " hardware", " commercial", " --"], [" tech", " hardware", " technology", " Tech", " modular", " software", " via", " engineering"], [" tech", " via", " Tech", " hardware", " modular", "via", " STEM", " technology"], [" tech", " hardware", "\u2011", " ...\"", " Hardware", " Tech", "\u2026*", " technology"], [" tech", " hardware", " via", " Hardware", " GPU", "via", " Tech", " @"], [" via", " hardware", " tech", " Hardware", " @", " GPU", " Engine", " Tech"], [" hardware", " via", " Hardware", " GPU", " tech", " @", " Tech", " software"], [" GPU", " hardware", " Hardware", " via", "\u2011", " tech", "via", " GPUs"], [" GPU", " hardware", " Hardware", " tech", " GPUs", " Engine", " via", " Native"], [" GPU", " hardware", " Hardware", " GPUs", " Engine", " tech", " via", " engine"], [" GPU", " hardware", " Hardware", " GPUs", " via", " Engine", " engine", " Native"], [" GPU", " via", " hardware", " Hardware", " Via", " GPUs", " software", "via"], [" via", " GPU", " hardware", " Via", "via", " Hardware", " GPUs", " backend"], [" via", " GPU", " Via", " hardware", " Hybrid", " Hardware", " Native", " Embedded"], [" via", " GPU", " Via", " Hardware", "via", " Hybrid", " hardware", " Embedded"], [" via", "via", " Via", " GPU", "Via", " Hardware", " Direct", " Hybrid"], [" via", "via", " Via", " GPU", "Via", " Hardware", " Embedded", " Dual"], [" via", " GPU", "via", " Via", " Hardware", " Dual", " Embedded", "Via"], [" GPU", " Hardware", "via", " Embedded", " via", " Backend", " FPGA", "_via"], [" GPU", " FPGA", " Hardware", "-native", " Embedded", " Dedicated", " Backend", " GPUs"], [" GPU", " CUDA", " Hardware", " Python", "-native", " GPUs", " Vulkan", " SIMD"], [" GPU", "-thread", " Dedicated", " Thread", " Async", " CUDA", " Hardware", " Threads"], [" GPU", "-thread", " CUDA", " Thread", " Dedicated", " Threads", " Python", " OpenGL"], [" GPU", " CUDA", "-thread", "GPU", " Vulkan", " Python", " GPUs", " Threads"], [" GPU", " CUDA", " Python", " Vulkan", "GPU", " OpenGL", "-thread", " Hardware"], [" GPU", " CUDA", " Vulkan", "GPU", " OpenGL", " Python", " GPUs", " Dedicated"], [" GPU", " Rust", " Native", " CUDA", " Vulkan", " native", "native", " OpenGL"], [" Native", " GPU", " native", " Vulkan", " Rust", " CUDA", "Native", "-native"], [" Native", " Vulkan", " GPU", " native", " Rust", " CUDA", "-native", " EGL"], [" Native", " Vulkan", " Rust", " native", " GPU", " OpenGL", " EGL", " CUDA"], [" Native", " C", " Rust", " Vulkan", " a", " GPU", " OpenGL", " EGL"]], "p": [[0.4197, 0.3704, 0.1544, 0.039, 0.0087, 0.0053, 0.0006, 0.0004], [0.639, 0.2351, 0.0763, 0.0071, 0.0031, 0.0017, 0.0015, 0.0007], [0.8528, 0.0618, 0.0425, 0.0227, 0.0156, 0.0024, 0.0006, 0.0002], [0.0212, 0.0083, 0.0078, 0.0039, 0.0035, 0.0032, 0.0024, 0.0024], [0.0175, 0.0053, 0.0037, 0.0032, 0.0032, 0.0024, 0.0022, 0.002], [0.0543, 0.0042, 0.0035, 0.0029, 0.0021, 0.0021, 0.0019, 0.0017], [0.0151, 0.0133, 0.011, 0.0063, 0.0036, 0.0036, 0.0036, 0.0032], [0.0067, 0.0067, 0.0067, 0.0049, 0.0038, 0.0036, 0.0034, 0.0032], [0.0149, 0.0116, 0.0085, 0.0043, 0.004, 0.0036, 0.0033, 0.0029], [0.0064, 0.0029, 0.0022, 0.0016, 0.0016, 0.0016, 0.0014, 0.0014], [0.0863, 0.081, 0.0462, 0.0383, 0.0181, 0.0097, 0.0075, 0.0055], [0.0087, 0.0087, 0.0082, 0.0072, 0.0056, 0.005, 0.003, 0.0028], [0.0153, 0.0087, 0.0064, 0.005, 0.0047, 0.0047, 0.0039, 0.0036], [0.0059, 0.0046, 0.0038, 0.0033, 0.0031, 0.0028, 0.0028, 0.0023], [0.3332, 0.0138, 0.0031, 0.0029, 0.0027, 0.0021, 0.0021, 0.0019], [0.0759, 0.0052, 0.0046, 0.0024, 0.002, 0.002, 0.002, 0.0019], [0.0147, 0.0107, 0.0051, 0.0048, 0.0045, 0.0029, 0.0029, 0.0027], [0.0051, 0.0048, 0.004, 0.0035, 0.0031, 0.0029, 0.0029, 0.0027], [0.0082, 0.0047, 0.0037, 0.0034, 0.0032, 0.0029, 0.0025, 0.0025], [0.0598, 0.0282, 0.0265, 0.0063, 0.0052, 0.0046, 0.0038, 0.0032], [0.0921, 0.0043, 0.0043, 0.004, 0.0036, 0.0036, 0.0031, 0.003], [0.0725, 0.0104, 0.0063, 0.0063, 0.0053, 0.0046, 0.0044, 0.0044], [0.5828, 0.0241, 0.0226, 0.0094, 0.0073, 0.0061, 0.0044, 0.0039], [0.1793, 0.0796, 0.0108, 0.0095, 0.007, 0.0054, 0.0048, 0.0037], [0.09, 0.0618, 0.0399, 0.0214, 0.0138, 0.0114, 0.0074, 0.0048], [0.0479, 0.045, 0.0397, 0.0213, 0.0176, 0.01, 0.0089, 0.0089], [0.095, 0.0838, 0.0653, 0.0328, 0.0226, 0.0129, 0.0107, 0.0094], [0.2922, 0.0652, 0.0421, 0.0328, 0.0328, 0.0289, 0.0212, 0.0106], [0.0637, 0.0386, 0.0207, 0.0161, 0.0161, 0.0142, 0.0056, 0.0052], [0.1178, 0.0671, 0.0631, 0.0631, 0.0592, 0.0359, 0.0338, 0.028], [0.5259, 0.0489, 0.0489, 0.0489, 0.0316, 0.0279, 0.0192, 0.0169], [0.2216, 0.0597, 0.0362, 0.0219, 0.0219, 0.0171, 0.0133, 0.011], [0.0396, 0.024, 0.0187, 0.0155, 0.0088, 0.0083, 0.0078, 0.0078], [0.2622, 0.0378, 0.0244, 0.019, 0.0148, 0.0139, 0.0115, 0.007], [0.1921, 0.0215, 0.0179, 0.0148, 0.0115, 0.0102, 0.0096, 0.009], [0.0611, 0.0289, 0.0239, 0.0225, 0.0128, 0.0128, 0.0094, 0.0083], [0.0492, 0.0434, 0.0247, 0.0218, 0.017, 0.0132, 0.0124, 0.0103], [0.0316, 0.0297, 0.0279, 0.0231, 0.0149, 0.014, 0.0116, 0.0116], [0.0473, 0.0369, 0.0346, 0.0287, 0.0287, 0.0154, 0.0136, 0.0127], [0.1896, 0.0743, 0.0543, 0.031, 0.0137, 0.0121, 0.0114, 0.0107], [0.4097, 0.0758, 0.059, 0.0204, 0.0204, 0.0116, 0.0103, 0.0085], [0.5316, 0.0766, 0.041, 0.0206, 0.011, 0.0104, 0.0097, 0.0091], [0.4059, 0.0622, 0.0355, 0.0229, 0.0178, 0.0115, 0.009, 0.0084], [0.2411, 0.1657, 0.0446, 0.0254, 0.0164, 0.012, 0.01, 0.0093], [0.3448, 0.1192, 0.0301, 0.0172, 0.0126, 0.0098, 0.0081, 0.0081], [0.2378, 0.0822, 0.0183, 0.0143, 0.0098, 0.0098, 0.0098, 0.0087], [0.172, 0.0921, 0.0233, 0.0219, 0.0181, 0.0141, 0.0141, 0.0125], [0.4265, 0.084, 0.0478, 0.0273, 0.0226, 0.0176, 0.0107, 0.0083], [0.4101, 0.1175, 0.0591, 0.046, 0.0406, 0.0109, 0.0091, 0.0071], [0.1148, 0.0789, 0.0397, 0.0256, 0.0176, 0.0155, 0.0129, 0.0129], [0.0765, 0.0361, 0.0264, 0.0182, 0.0151, 0.0141, 0.0125, 0.0125], [0.2655, 0.0205, 0.0192, 0.0192, 0.0192, 0.0159, 0.0141, 0.0141], [0.4806, 0.0348, 0.0145, 0.0145, 0.0128, 0.0113, 0.01, 0.0094], [0.2509, 0.0815, 0.03, 0.0264, 0.0248, 0.0233, 0.0206, 0.0182], [0.3158, 0.1162, 0.0798, 0.0427, 0.0333, 0.0333, 0.0294, 0.0244], [0.8277, 0.0872, 0.0152, 0.0118, 0.0072, 0.0056, 0.0049, 0.0038], [0.6967, 0.0832, 0.0648, 0.0393, 0.0145, 0.0088, 0.0077, 0.0068], [0.9065, 0.031, 0.0166, 0.0147, 0.0054, 0.0048, 0.0015, 0.0014], [0.5757, 0.1134, 0.1, 0.0607, 0.0325, 0.0174, 0.0153, 0.0135], [0.6965, 0.0943, 0.0505, 0.0505, 0.027, 0.0186, 0.0128, 0.0113], [0.6158, 0.1557, 0.0649, 0.0446, 0.0347, 0.0186, 0.0128, 0.01], [0.8066, 0.0516, 0.0215, 0.019, 0.0167, 0.0108, 0.009, 0.007], [0.5955, 0.1933, 0.0628, 0.0381, 0.0132, 0.009, 0.0085, 0.0066]], "ranks": {"Python": [103208, 225554, 188655, 226631, 181244, 217774, 169546, 151772, 116260, 153125, 60077, 103911, 56687, 24925, 30133, 36386, 64596, 61860, 94083, 96358, 24304, 41177, 7644, 5722, 9398, 7411, 3886, 1181, 936, 591, 718, 1204, 2182, 734, 880, 313, 81, 59, 57, 60, 47, 104, 78, 145, 116, 116, 244, 327, 102, 194, 202, 23, 3, 11, 7, 6, 3, 6, 15, 16, 15, 26, 19]}}, {"pos": 569, "top": [[".", ",", "\u2013", ";", " \u2013", "\u2026.", ",.", "\u00a0\u00a0"], ["\u2013", ".", " \u2013", ",", " \u200b\u200b", "\u2013and", ";", ".\u2013"], ["\u2013", ".", "\u2026.", "\u2026..", ",", " \u2013", "\u2026", ".\u2013"], [" Shemale", " milfs", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Blowjob", " pornstar", " cumshot", " Guta", " handjob"], [".@", " \u200b\u200b", "@d", " \"@", "@a", "\u7fe1", ":.", "@c"], [" \u200b\u200b", "\u2026.", "\u2026..", "\u7fe1", ".ac", "serialization", "!:", "CCCC"], ["splash", "beda", "\u560c", "-ish", "@a", "incu", "cyj", "serialization"], ["@a", "ustralian", " *@", "-ish", ".@", "@d", " *_", " @"], [".", "!.", ":.", ",.", "...", "\u2026.", "?.", "!"], [",", "\u2013", " \"", "-\"", ",.", "!,", "\u00a0", "-,"], ["...", " @", "@", " ", ".@", "2", "\u00a0", " \""], [" _", " @", "-ish", " pricey", " funky", " savvy", " fanc", " folks"], [" _", " `_", "-ish", " pricey", " funky", " savvy", " *_", " bigger"], ["-ish", " funky", " pricey", " savvy", " bigger", "-esque", " tech", " trendy"], [" sorta", " savvy", " tech", " pricey", " folks", " tweaked", " bigger", "-ish"], [" savvy", " pricey", " tech", " folks", " funky", " goofy", " sorta", " tweaked"], [" tech", " savvy", " folks", " pricey", "-esque", "-ish", " \"", " funky"], [" savvy", " tech", " pricey", "-ish", "-esque", "-tech", " quirky", " funky"], ["-esque", " savvy", " pricey", " tech", " quirky", "-ish", "-tech", " funky"], [" pricey", " &#", "-esque", " savvy", " tech", " revamped", " sorta", " funky"], [" @", " \n\n", "<|endoftext|>", " #", " pricey", " --", " revamped", " &#"], [" ``", " pricey", " hacker", " MEDIAM", " ?**", " \u043d\u0435\u043a\u043e\u043c", " ;;^", "Sharper"], [" ``", " ''", " pricey", " ?**", " tech", "-esque", " digitally", " hacker"], [" ``", " ''", " --", " swiftly", " modern", " rapidly", " aggressively", " heavily"], [" --", " ``", " tech", " &#", " swiftly", " ''", " requisite", " revamped"], [" tech", " film", " hardware", " multimedia", " software", " Hollywood", " GPU", " electronics"], [" tech", " film", " hardware", " multimedia", " software", " electronics", " cinematic", " aerospace"], [" film", " @", " tech", " --", " hardware", " _", " video", " software"], [" tech", " hardware", " film", " software", " multimedia", " technology", " Android", " digital"], [" tech", " \n", " film", " hardware", " technology", " software", " studio", " digital"], [" ...", " tech", " \n", " film", " technology", " hardware", " **", " video"], [" ...", " film", " technology", " tech", " independent", " **", " complex", " commercial"], [" independent", " complex", " film", " technology", " hybrid", " high", " non", " /"], [" tech", " hardware", " technology", " hybrid", " software", " independent", " multimedia", " digital"], [" **", " tech", " hybrid", " independent", " Tech", " digital", " **\u201c", " hardware"], [" \u2026", " **", " ____", "**", " **\u201c", " ______", "\u2026*", " ...\""], ["\u72ec\u7acb", " independent", " ____", " **", " __", " Independent", " ___", " Android"], [" independent", " Independent", "\u72ec\u7acb", " Android", " Dual", " Technical", " ____", " Autonomous"], [" independent", " Independent", "\u72ec\u7acb", " independently", " specialized", " autonomous", " Autonomous", " separate"], ["\u72ec\u7acb", " independent", " Independent", " separate", " Android", "\u72ec\u7acb\u7684", " independently", "Independent"], ["\u72ec\u7acb", " independent", " Independent", " separate", " independently", "\u72ec\u7acb\u7684", " Separate", " GPU"], [" independent", "\u72ec\u7acb", " separate", " GPU", " Independent", " Android", " independently", " Separate"], [" separate", " independent", "\u72ec\u7acb", " Separate", " Independent", " independently", " specialized", " Android"], [" separate", "\u72ec\u7acb", " independent", " Separate", " Independent", " independently", "\u72ec\u7acb\u7684", " specialized"], [" separate", " Separate", " independent", "\u72ec\u7acb", "\u72ec\u7acb\u7684", " Independent", " independently", " separately"], [" separate", " Separate", " independent", "\u72ec\u7acb", " Independent", "\u72ec\u7acb\u7684", " independently", " separately"], [" separate", " Separate", "\u72ec\u7acb", "\u72ec\u7acb\u7684", " independent", " Independent", " independently", " Independ"], [" Separate", "\u72ec\u7acb", " separate", "\u72ec\u7acb\u7684", " Independent", " independent", " independently", "\u5355\u72ec\u7684"], ["\u72ec\u7acb", "\u72ec\u7acb\u7684", " Separate", " separate", " Independent", " independent", " independently", "Independent"], ["\u72ec\u7acb\u7684", " Separate", "\u72ec\u7acb", " Independent", " Dedicated", " separate", "\u4e13\u804c", " independent"], ["\u72ec\u7acb\u7684", "\u72ec\u7acb", " Separate", " Dedicated", " Independent", "\u4e13\u804c", "\u7368\u7acb", ";**"], ["\u72ec\u7acb\u7684", "\u72ec\u7acb", " Separate", " Dedicated", "\u4e13\u804c", " standalone", " Independent", " separate"], [" Separate", "\u72ec\u7acb\u7684", "\u72ec\u7acb", " separate", " Dedicated", "\u4e13\u804c", " separado", " Independent"], [" Separate", "\u72ec\u7acb\u7684", " Dedicated", " separate", "\u72ec\u7acb", "-thread", " standalone", "\u4e13\u804c"], [" Separate", " separate", "\u72ec\u7acb\u7684", "\u72ec\u7acb", " Dedicated", " standalone", " separado", "\u5355\u72ec\u7684"], [" Separate", " separate", "\u72ec\u7acb\u7684", "\u72ec\u7acb", " Dedicated", "-thread", " Python", " Thread"], [" Dedicated", " Separate", " dedicated", " separate", " Python", "-thread", " Threads", " Thread"], [" Dedicated", " Separate", " dedicated", " separate", " Python", "-thread", " GPU", " Thread"], [" Dedicated", " Separate", " Native", " dedicated", " native", "-native", " separate", "native"], [" Native", " Dedicated", " native", " Separate", "-native", " dedicated", "Native", "native"], [" Native", " Dedicated", " native", " Separate", "-native", " dedicated", "Native", " Rust"], [" Native", " Dedicated", " Separate", " native", " dedicated", "-native", " Background", " Shared"], [" Native", " Dedicated", " Separate", " Shared", " C", " Background", " Rust", " Custom"]], "p": [[0.8703, 0.1178, 0.0059, 0.0017, 0.0017, 0.0004, 0.0004, 0.0003], [0.4002, 0.1567, 0.0422, 0.0309, 0.0309, 0.0199, 0.0121, 0.0088], [0.4397, 0.3424, 0.0764, 0.0463, 0.0409, 0.017, 0.0133, 0.0063], [0.0136, 0.0106, 0.0093, 0.0088, 0.0057, 0.0044, 0.0041, 0.0022], [0.0247, 0.0181, 0.0141, 0.0066, 0.0062, 0.0055, 0.0052, 0.004], [0.0166, 0.0078, 0.0051, 0.0042, 0.0027, 0.0019, 0.0017, 0.0015], [0.0062, 0.0042, 0.0042, 0.0035, 0.0027, 0.0021, 0.0019, 0.0019], [0.0081, 0.0067, 0.0063, 0.0059, 0.0052, 0.0036, 0.0025, 0.0025], [0.0664, 0.0517, 0.0517, 0.0355, 0.026, 0.0123, 0.0096, 0.009], [0.1017, 0.0101, 0.0051, 0.0051, 0.0033, 0.0031, 0.0029, 0.0025], [0.29, 0.1067, 0.0942, 0.0536, 0.0325, 0.0306, 0.0287, 0.0185], [0.0131, 0.0109, 0.007, 0.0058, 0.0045, 0.0038, 0.0033, 0.0029], [0.0407, 0.011, 0.0085, 0.0055, 0.0046, 0.004, 0.0036, 0.0033], [0.0205, 0.0071, 0.0062, 0.0052, 0.0049, 0.0043, 0.004, 0.0033], [0.0129, 0.0121, 0.0107, 0.0094, 0.0089, 0.0073, 0.0069, 0.0061], [0.0301, 0.0235, 0.0142, 0.0118, 0.0046, 0.0041, 0.0038, 0.0038], [0.0742, 0.0479, 0.0241, 0.0241, 0.02, 0.0146, 0.0137, 0.0083], [0.0378, 0.0334, 0.0277, 0.026, 0.0202, 0.0148, 0.0148, 0.0108], [0.0598, 0.0496, 0.0265, 0.0234, 0.0142, 0.0111, 0.0098, 0.0092], [0.0332, 0.0167, 0.0122, 0.0122, 0.0101, 0.0074, 0.0074, 0.0074], [0.0203, 0.0179, 0.0115, 0.0066, 0.0066, 0.0062, 0.0055, 0.0055], [0.0162, 0.0023, 0.0022, 0.0017, 0.0017, 0.0015, 0.0012, 0.0011], [0.2247, 0.0127, 0.0041, 0.0028, 0.0027, 0.0015, 0.0015, 0.0013], [0.0452, 0.0138, 0.0057, 0.0035, 0.0035, 0.0029, 0.0027, 0.0027], [0.0089, 0.0084, 0.0074, 0.007, 0.0051, 0.0048, 0.0035, 0.0029], [0.0519, 0.0149, 0.0131, 0.0116, 0.0096, 0.0075, 0.0062, 0.0055], [0.0481, 0.0292, 0.0166, 0.0147, 0.0138, 0.0101, 0.0089, 0.0084], [0.0446, 0.0326, 0.0288, 0.0198, 0.0136, 0.012, 0.012, 0.0083], [0.106, 0.039, 0.0268, 0.0143, 0.0127, 0.0112, 0.0093, 0.0072], [0.0813, 0.0674, 0.0409, 0.0233, 0.0171, 0.0133, 0.0103, 0.0103], [0.1266, 0.0677, 0.0466, 0.0363, 0.022, 0.0171, 0.0151, 0.0111], [0.0862, 0.0232, 0.0192, 0.017, 0.015, 0.011, 0.011, 0.0103], [0.0157, 0.0108, 0.0108, 0.0095, 0.0084, 0.0079, 0.007, 0.0061], [0.0689, 0.0154, 0.0154, 0.0144, 0.0144, 0.0127, 0.0112, 0.0106], [0.0771, 0.06, 0.025, 0.0134, 0.0092, 0.0086, 0.0081, 0.0076], [0.0496, 0.0282, 0.0207, 0.0207, 0.0151, 0.0142, 0.0142, 0.0142], [0.0301, 0.0207, 0.0182, 0.0182, 0.0133, 0.0133, 0.0125, 0.0118], [0.039, 0.0304, 0.0196, 0.0163, 0.0099, 0.0099, 0.0093, 0.0093], [0.1121, 0.0564, 0.0529, 0.0143, 0.0126, 0.0126, 0.0111, 0.0111], [0.1988, 0.1064, 0.0417, 0.0286, 0.0153, 0.0153, 0.0144, 0.0135], [0.2409, 0.1373, 0.0609, 0.0474, 0.0288, 0.0239, 0.0198, 0.0175], [0.0914, 0.0628, 0.0521, 0.0381, 0.0358, 0.0297, 0.0279, 0.0217], [0.1555, 0.1068, 0.0782, 0.069, 0.0537, 0.0224, 0.0186, 0.0174], [0.2276, 0.1665, 0.1469, 0.0694, 0.0613, 0.0349, 0.0289, 0.0106], [0.6881, 0.0822, 0.0822, 0.0565, 0.0183, 0.0162, 0.0104, 0.0044], [0.7686, 0.0918, 0.0557, 0.0181, 0.0141, 0.0124, 0.0124, 0.0043], [0.5097, 0.2728, 0.0886, 0.0369, 0.0369, 0.0224, 0.0082, 0.002], [0.3034, 0.2677, 0.2085, 0.1116, 0.0465, 0.0282, 0.0092, 0.0043], [0.2956, 0.2609, 0.1793, 0.0847, 0.0747, 0.04, 0.0147, 0.0054], [0.3547, 0.2151, 0.2151, 0.0791, 0.0156, 0.0146, 0.0089, 0.0078], [0.2854, 0.2519, 0.1731, 0.0411, 0.0234, 0.0234, 0.0063, 0.0046], [0.266, 0.2072, 0.1424, 0.0594, 0.0318, 0.0141, 0.0132, 0.0071], [0.6832, 0.1048, 0.0561, 0.0249, 0.0194, 0.0097, 0.0081, 0.0052], [0.7464, 0.0613, 0.0372, 0.0328, 0.0255, 0.0106, 0.005, 0.0044], [0.8829, 0.0498, 0.0302, 0.0183, 0.0076, 0.0015, 0.001, 0.001], [0.8262, 0.0678, 0.022, 0.0134, 0.0134, 0.0134, 0.0034, 0.0028], [0.646, 0.3051, 0.0134, 0.0072, 0.0049, 0.0034, 0.0026, 0.0023], [0.792, 0.1559, 0.0239, 0.006, 0.002, 0.0016, 0.0016, 0.0011], [0.7555, 0.2165, 0.0122, 0.0035, 0.0031, 0.0024, 0.0017, 0.0011], [0.5185, 0.4038, 0.0376, 0.0138, 0.0065, 0.0051, 0.004, 0.0018], [0.6576, 0.2419, 0.054, 0.012, 0.0094, 0.0083, 0.0025, 0.0021], [0.5481, 0.3767, 0.0226, 0.0155, 0.0065, 0.0035, 0.0025, 0.0025], [0.5298, 0.3214, 0.0717, 0.017, 0.0133, 0.0059, 0.0022, 0.0018]], "ranks": {"Python": [51216, 170839, 47323, 151324, 9251, 40932, 11005, 33768, 5409, 10581, 3699, 7213, 4392, 3327, 3321, 2473, 2630, 761, 1436, 6428, 255, 887, 161, 920, 375, 155, 280, 197, 102, 91, 198, 750, 1404, 75, 110, 100, 35, 28, 32, 41, 41, 99, 80, 181, 207, 258, 381, 410, 310, 487, 519, 45, 10, 23, 23, 7, 5, 5, 16, 14, 12, 22, 40]}}, {"pos": 570, "top": [[" \u2013", "\u2013", ".", ",", "en", ".\u2013", "i", "\u2013and"], [" \u2013", " \u2013**", " *\u2013", "\u2013", "**\u2013", "\u2013and", " \u2013,", "\u2013\u2013"], [" \u2013", "\u2013", " *\u2013", "\u2013and", ".\u2013", " \u2013**", "**\u2013", " \u2013,"], [" milfs", " ``(", "``", " ;;^", " ``", " **\u201e", " **:**", " YYS"], [" *@", " *\u2013", "  ", " *\u201e", "en", " *-", " -*", " *."], [" *\u2013", " **\u2013", "\ufffd", "  ", " Guta", " Indigenous", " UTF", ":host"], [" *-", " *_", " *\u2013", " *", " *@", " *\u201c", " *\u201e", " *}"], [" *_", " *-", " *@", " *\\", " *", " *\u2013", " *.*", " *}"], [" *_", " *@", "   \n\n", " *-", " *\u2013", "  \n\n\n", " *.", " *"], [" Native", "/native", " NAT", " *\u2013", "\u6e21\u5047", "-_", "-native", "-*"], [" @", "-_", " _", "i", " Native", " iconic", " transformative", " *_"], [" transformative", " showcase", " *_", " iconic", " **", " hybrid", " Native", " elite"], [" transformative", " showcase", " hybrid", " iconic", " **", " elite", " _", " Native"], [" transformative", " showcase", " iconic", " hybrid", " elite", "-esque", " Indigenous", "-centric"], [" showcase", " transformative", " iconic", " sprawling", "-esque", " locales", " elite", " Indigenous"], [" showcase", " iconic", " transformative", " sprawling", "-esque", " hybrid", " host", " locales"], [" showcase", " iconic", "-esque", " sprawling", " host", " transformative", " overarching", " hybrid"], [" showcase", "-esque", " iconic", " sprawling", " transformative", " hybrid", " overarching", " tech"], ["-esque", " showcase", " iconic", " sprawling", " transformative", " Gabrie", "iach", " T\u00e9cn"], ["   \n\n", " NAT", " sprawling", "  \n\n", " Native", " requisite", " iconic", " host"], ["  \n\n", " \n\n", "   \n\n", "<|endoftext|>", "\n\n", " \r\n\r\n", "  \r\n\r\n", "\t\n\n"], [" ;;^", " **+", "iach", "ieli", "raca", " Gabrie", " Nues", "ielle"], [" ``", " Native", " Indigenous", " hybrid", " Modular", "iach", " NAT", " **"], [" ``", " Native", " host", " hybrid", " European", " NAT", " sprawling", " French"], [" \n\n", "   \n\n", "  \n\n", " \r\n\r\n", "\r\n\r\n", "\n\n", "  \r\n\r\n", " \n\n\n"], [" **", " ``", " **^", " **+", " **'", " hardware", " toolkit", " software"], [" ``", " toolkit", " hardware", " **", " software", " **+", " **^", " Unix"], [" \n\n", " hardware", " **", " ``", " French", " _", "\n\n", " European"], [" hardware", " tech", " technology", " software", " technologies", " European", " French", " engineering"], [" \n\n", " ...", " hardware", " tech", " technology", "...**", " software", " toolkit"], [" ...", " \n\n", " **", " technology", " hardware", " software", " \n", " technologies"], [" ...", " \n\n", " technology", " European", " hardware", " ..", " .", " [...]"], [" ...", " .", " technology", " hardware", " European", " hybrid", " ..", " core"], [" hardware", " tech", " technology", " software", " hybrid", " engine", " technologies", " core"], [" hardware", " tech", " hybrid", " technology", " software", " toolkit", " engine", " Hybrid"], [" hardware", " \u2026", " hybrid", " tech", " software", " toolkit", " Hybrid", " technology"], [" hardware", " hybrid", " software", " tech", " Hybrid", " engine", " toolkit", " Hardware"], [" hardware", " hybrid", " Hybrid", " software", " Hardware", " engine", " toolkit", " tech"], [" hardware", " software", " Native", " hybrid", " engine", " Hardware", " firmware", " Hybrid"], [" hardware", " Native", " software", " Hardware", " firmware", " native", " engine", " hybrid"], [" hardware", " Native", " Hardware", " software", " native", " engine", " firmware", "-native"], [" hardware", " Hardware", " Native", " software", " engine", " interface", " firmware", " engineering"], [" hardware", " interface", " firmware", " software", " engine", " Hardware", " Native", " interfaces"], [" hardware", " interface", " Interface", " interfaces", " Hardware", " software", " Native", " firmware"], [" hardware", " interface", " firmware", " interfaces", " embedded", " Interface", " engine", " software"], [" hardware", " interface", " hybrid", " embedded", " Native", " module", " Interface", " Hybrid"], [" module", " hardware", " Embedded", " embedded", " interoper", " interface", " Interface", " hybrid"], [" Embedded", " Hardware", " Interface", " Integrated", " Seamless", " hardware", " Hybrid", " embedded"], [" Embedded", " Hardware", " Interface", " Seamless", " Integrated", "-native", " Modular", " Hybrid"], [" Embedded", " Hardware", " Interface", "-native", " Seamless", "-Compatible", " Modular", " Wrapper"], [" Embedded", " Interface", "-native", " Backend", " Hardware", " Modular", " Plugin", "-Compatible"], [" Embedded", " backend", " Interface", " Backend", " module", " Module", " Wrapper", "-native"], [" Runtime", " backend", " Wrapper", " Backend", " module", "-native", " plugin", "-module"], [" plugin", "-thread", " backend", " Wrapper", " submodule", " Runtime", " wrapper", " module"], [" plugin", " Plugin", " module", "-thread", " backend", " Backend", " renderer", "plugin"], [" plugin", " Plugin", " Python", " renderer", "plugin", " backend", " Renderer", " Wrapper"], [" Python", " Renderer", " renderer", " backend", " Backend", " plugin", "Python", "-python"], [" Renderer", " Python", " renderer", " backend", " Backend", " Rendering", " plugin", "-render"], [" Renderer", " Python", " renderer", " Extension", " Module", " Thread", " Backend", " Rendering"], [" Renderer", " Extension", " renderer", " Python", " Rendering", " Render", " Backend", " Module"], [" Extension", " Renderer", " extension", " Python", " renderer", " Extensions", " Rendering", " Module"], [" Extension", " Renderer", " Module", " extension", " Rendering", " renderer", " Engine", " Plugin"], [" Extension", " Module", " Renderer", " Thread", " Engine", " Rendering", " Render", " Plugin"]], "p": [[0.9319, 0.0526, 0.0034, 0.0032, 0.0022, 0.0012, 0.0011, 0.0006], [0.938, 0.0283, 0.0134, 0.0104, 0.0018, 0.0018, 0.0014, 0.0008], [0.679, 0.283, 0.0097, 0.0085, 0.0075, 0.0046, 0.0031, 0.0024], [0.0222, 0.0135, 0.0135, 0.0135, 0.0119, 0.0112, 0.0105, 0.0105], [0.0626, 0.0404, 0.0131, 0.008, 0.0075, 0.0075, 0.0075, 0.0066], [0.013, 0.0095, 0.0089, 0.0058, 0.0054, 0.0045, 0.0033, 0.0031], [0.0584, 0.0312, 0.0202, 0.0189, 0.0139, 0.0139, 0.0122, 0.0115], [0.0832, 0.0537, 0.0393, 0.0093, 0.0093, 0.0082, 0.0077, 0.0073], [0.0872, 0.0563, 0.0529, 0.0207, 0.0194, 0.0183, 0.0134, 0.0126], [0.0059, 0.0052, 0.0046, 0.0032, 0.003, 0.0026, 0.0025, 0.0025], [0.0116, 0.0116, 0.0116, 0.0102, 0.0096, 0.0062, 0.0043, 0.004], [0.0158, 0.0123, 0.0085, 0.008, 0.007, 0.0062, 0.0055, 0.0043], [0.0287, 0.0163, 0.0112, 0.0099, 0.0077, 0.0064, 0.0053, 0.0039], [0.0232, 0.0141, 0.0117, 0.0059, 0.0055, 0.0049, 0.0038, 0.0031], [0.0201, 0.0138, 0.0138, 0.0054, 0.0048, 0.0045, 0.0042, 0.0042], [0.018, 0.0102, 0.0096, 0.0085, 0.0045, 0.0045, 0.0043, 0.0043], [0.0152, 0.0118, 0.0092, 0.0086, 0.0063, 0.0056, 0.0052, 0.0052], [0.0119, 0.0077, 0.0056, 0.0047, 0.0047, 0.0034, 0.0025, 0.0025], [0.0108, 0.0048, 0.0045, 0.0035, 0.0033, 0.002, 0.002, 0.0017], [0.0055, 0.0048, 0.0048, 0.0048, 0.0027, 0.0027, 0.0027, 0.0024], [0.2095, 0.1271, 0.0639, 0.0152, 0.0086, 0.0067, 0.0063, 0.0052], [0.0107, 0.0042, 0.004, 0.0037, 0.0035, 0.0033, 0.0031, 0.0029], [0.0201, 0.0054, 0.0029, 0.0026, 0.0026, 0.0023, 0.0023, 0.0021], [0.0088, 0.003, 0.003, 0.0021, 0.002, 0.0018, 0.0017, 0.0016], [0.3193, 0.0915, 0.0807, 0.0555, 0.0337, 0.0246, 0.0132, 0.0035], [0.0487, 0.0216, 0.0123, 0.0123, 0.0096, 0.009, 0.0066, 0.0048], [0.0144, 0.012, 0.0106, 0.0099, 0.0088, 0.0073, 0.0068, 0.0053], [0.0616, 0.0257, 0.0213, 0.0188, 0.0129, 0.0121, 0.0114, 0.0107], [0.0463, 0.016, 0.0125, 0.0125, 0.011, 0.011, 0.0103, 0.0091], [0.1113, 0.0526, 0.034, 0.0193, 0.0182, 0.0171, 0.016, 0.0133], [0.4179, 0.0343, 0.0267, 0.0195, 0.0162, 0.0119, 0.0105, 0.0092], [0.4924, 0.0487, 0.0116, 0.0075, 0.0062, 0.0058, 0.0058, 0.0055], [0.156, 0.0239, 0.0198, 0.0145, 0.0128, 0.0113, 0.0106, 0.0094], [0.0503, 0.0287, 0.0287, 0.0238, 0.0185, 0.0127, 0.0127, 0.0112], [0.0487, 0.0457, 0.0314, 0.0203, 0.0191, 0.0123, 0.0109, 0.0102], [0.0388, 0.0251, 0.0195, 0.0184, 0.0172, 0.0111, 0.0105, 0.0105], [0.0905, 0.0428, 0.0244, 0.0215, 0.019, 0.019, 0.0178, 0.0157], [0.0675, 0.0339, 0.0233, 0.0233, 0.0206, 0.0171, 0.0141, 0.011], [0.0785, 0.0371, 0.0271, 0.0211, 0.0211, 0.0186, 0.0186, 0.0128], [0.0909, 0.0457, 0.0334, 0.026, 0.0191, 0.0191, 0.0158, 0.0139], [0.1397, 0.1088, 0.0426, 0.04, 0.0293, 0.0243, 0.0167, 0.0147], [0.2783, 0.0621, 0.0454, 0.0427, 0.0377, 0.0259, 0.0228, 0.0202], [0.1702, 0.0519, 0.0357, 0.0335, 0.0335, 0.0315, 0.0296, 0.0278], [0.1062, 0.0605, 0.0391, 0.0345, 0.0324, 0.0304, 0.0286, 0.0223], [0.0681, 0.0565, 0.0284, 0.0251, 0.0235, 0.0221, 0.0221, 0.0195], [0.0397, 0.0309, 0.0273, 0.0226, 0.02, 0.02, 0.0188, 0.0155], [0.0255, 0.0255, 0.0239, 0.0198, 0.0198, 0.0175, 0.0175, 0.0155], [0.0602, 0.0389, 0.0267, 0.0251, 0.0208, 0.0143, 0.0134, 0.0134], [0.0795, 0.0311, 0.0292, 0.0156, 0.0156, 0.0147, 0.0147, 0.0138], [0.0529, 0.0412, 0.0266, 0.0207, 0.0172, 0.0142, 0.0111, 0.0092], [0.0658, 0.0274, 0.0258, 0.0166, 0.0156, 0.0138, 0.0122, 0.0089], [0.0755, 0.0519, 0.0356, 0.0335, 0.0335, 0.0296, 0.0278, 0.0245], [0.0481, 0.0399, 0.0352, 0.0352, 0.0331, 0.0274, 0.0214, 0.0189], [0.0625, 0.0457, 0.0379, 0.0356, 0.0335, 0.0335, 0.0295, 0.0245], [0.3252, 0.0772, 0.0531, 0.0413, 0.0284, 0.0236, 0.0221, 0.0208], [0.4157, 0.0563, 0.0563, 0.0496, 0.0438, 0.0387, 0.0321, 0.0235], [0.6715, 0.0708, 0.0379, 0.0203, 0.0179, 0.0179, 0.0139, 0.0102], [0.3029, 0.2673, 0.1621, 0.0319, 0.0249, 0.0194, 0.0171, 0.0125], [0.3475, 0.186, 0.0996, 0.047, 0.0415, 0.0366, 0.0222, 0.0173], [0.4603, 0.1319, 0.1164, 0.0706, 0.055, 0.0229, 0.0115, 0.0108], [0.7017, 0.095, 0.0576, 0.0449, 0.0272, 0.0113, 0.0088, 0.0088], [0.7877, 0.0647, 0.0305, 0.0238, 0.0127, 0.0112, 0.0064, 0.0053], [0.6812, 0.1184, 0.0718, 0.0264, 0.0182, 0.0141, 0.011, 0.0097]], "ranks": {"Python": [7135, 79839, 96716, 108683, 13763, 59451, 15415, 16533, 16672, 46200, 9681, 13588, 13494, 19150, 12197, 15230, 19890, 11719, 14012, 19827, 3791, 13353, 2428, 4234, 4048, 2928, 2155, 811, 722, 554, 575, 1391, 1829, 701, 764, 367, 158, 109, 67, 31, 40, 99, 128, 137, 128, 125, 189, 307, 94, 395, 826, 169, 12, 30, 26, 2, 1, 2, 2, 4, 4, 10, 22]}}, {"pos": 571, "top": [[".", ",", "\u00a0\u00a0", " \u00a0", "\u2026.", ";", "  \n", " "], ["  \n", "  \n\n", " HC", "  \n    \n", "   \n", " Strec", "  \n  \n", " VC"], ["\u2026..", "\u2026.", "\u2026and", "CCCCCC", "\u2026I", "uC", "'gc", "\u2013and"], [" milfs", " Shemale", "\ufffd\ufffd", " Strec", " Blowjob", " Geile", " cumshot", " councill"], ["\ufffd\ufffd", "&C", "CCCCCC", " CIF", "CIL", "&a", "-CS", "culos"], ["-CS", " Cib", "(ci", "iously", "objs", "\ufffd\ufffd", "-log", "-Cs"], ["  \n", "  \n\n", "-C", "&C", " .....", ".....", "fc", " ......"], ["  \n\n", "-C", "  \n", "&C", "-ce", "-c", "-CS", "istry"], ["&C", "-C", "istry", "  \n\n", "-Cola", "ward", " \n\n", "ures"], ["-C", "istry", "-job", "-o", "-c", "-cent", "-f", "-J"], ["...", "-C", "-", "-tech", ".C", "-era", "...\\", "-o"], ["istry", "oids", "ured", "wares", "-C", "-tech", "-job", "-fluid"], ["-C", "istry", "-era", "-f", "-tech", "-job", "oids", "wares"], ["-C", "-f", "-era", "-c", "-esque", "-heavy", "-tech", "-r"], ["-f", "-C", "...", "-c", "-", "-but", "-esque", "-lo"], ["-esque", "-tech", " savvy", "\u51ed\u501f\u7740", "\u62e5\u6709\u7740", " battling", "wares", "-era"], ["-tech", "-C", "-esque", "...", "-f", "-", " savvy", "-heavy"], ["-tech", "-C", "...", "-esque", "-big", "-f", "-engine", "-heavy"], ["-tech", "...", "-C", "-esque", "-engine", "wares", "-common", "-ft"], ["\\-", "-&", "&#", " \n\n", "-C", "...", "Though", "  \n\n"], ["\n\n", "<|endoftext|>", " \n\n", "  \n\n", "Though", "...", "\\-", "2"], [" ``", "wares", "-tech", "&quot", "-engine", "``", "ured", "-agent"], [" ``", "``", "wares", " ''", "&quot", " ``(", "-engine", "ured"], [" ``", " ''", "``", "&quot", " {{--<", "\n\n", " --", " \\'"], ["\n\n", " \n\n", " ``", "  \n\n", "\r\n\r\n", " \r\n\r\n", "\\-", " {{--<"], [" ``", "wares", "``", "-engine", " ``(", "-tech", " {{--<", " ''"], [" ``", "``", "-engine", "wares", "-language", " ''", "-tech", " ``("], [" ``", "\n\n", " --", " ''", " \n\n", "-engine", " engineer", " `"], [" ``", "-engine", " ''", "-language", " --", " engineer", "-tech", " Chinese"], [" ...", "...", " \n", " ...\\", " \n\n", " Chinese", "-engine", " technology"], [" ...", "...", " \n", "/", " \n\n", " technology", " .", " [...]"], [" ...", "...", "/", " \n\n", " \n", " /", " [...]", " ."], ["/", " ...", " /", " .", " -", "-", " technology", "..."], ["/", "-tech", "-engine", " /", "/C", "-", " technology", " tech"], ["/", "/C", "-tech", "-engine", " /", "/engine", "/software", "/c"], ["/", " [...]", "/C", "-", " /", "2", "3", " ..."], ["/", "/C", "Python", " /", "-engine", "-tech", " Python", "/engine"], ["/", " /", "Python", "/C", " Python", "-engine", " [...]", "-tech"], ["Python", "/", " Python", " /", "-python", "-engine", "/C", " [...]"], ["Python", " Python", " Chinese", "-python", " python", "python", "Chinese", "/python"], [" Python", "Python", " Chinese", "-python", " python", "Chinese", "-engine", "python"], [" Python", "Python", "-engine", " Chinese", " engineering", "-metal", " Unix", "/Linux"], ["-engine", " Python", "-metal", "/Linux", "Python", " firmware", " Unix", " engineering"], ["/Linux", " Python", "-engine", " Chinese", "-metal", " firmware", " Unix", "/software"], ["/Linux", " Python", "-engine", "-metal", " code", " firmware", "/", "-language"], ["/Linux", "/C", "/", " Python", "-engine", " code", "-metal", " firmware"], ["/Linux", "/", "/C", " Embedded", "/A", "-engine", "/software", " Python"], ["/", "/C", "/A", "/G", "/M", "/Linux", "/F", "/E"], ["/C", "/", "/G", "/Linux", "/A", "/F", "/M", "/B"], ["/C", "/G", "/M", "/A", "/Linux", "/", "/F", "/H"], ["/C", "/Linux", "/V", "/M", "/G", "/A", "/D", "/T"], ["/C", "/V", "/D", "/Linux", "/F", "/G", "/M", "/H"], ["/C", "/python", "/V", "/G", "/D", "/F", "/Linux", "/X"], ["/C", "/python", "/V", "/F", "/Linux", "/D", "/py", "/O"], ["/C", "/python", "-python", "-module", "-plugin", "/Linux", "Python", "/V"], ["-python", "Python", "/python", " Python", "/C", "-module", " Wrapper", "-plugin"], [" Python", "-python", "Python", "/python", "python", "/py", "/C", "ython"], [" Python", "Python", "-python", "/python", "/C", "/py", "python", " PyObject"], [" Extension", "-extension", " extension", " Extensions", "/C", "Extension", "extension", " extensions"], [" Extension", "-extension", " extension", " Extensions", "Extension", "extension", " extensions", "_extension"], [" Extension", " extension", "-extension", "Extension", " Extensions", "extension", " extensions", "_extension"], [" Extension", "-extension", " extension", "/C", " Extensions", "Extension", "extension", "_extension"], [" Extension", "-extension", "/C", "-", "-C", "Extension", " extension", " Extensions"]], "p": [[0.8871, 0.0415, 0.0105, 0.006, 0.0032, 0.0028, 0.0022, 0.0016], [0.1595, 0.0116, 0.0096, 0.0079, 0.0079, 0.0043, 0.0038, 0.0031], [0.1554, 0.0254, 0.0164, 0.0128, 0.0099, 0.0099, 0.0057, 0.0044], [0.011, 0.0097, 0.0097, 0.0086, 0.0055, 0.0034, 0.0028, 0.0028], [0.0326, 0.0093, 0.0064, 0.0064, 0.006, 0.006, 0.0047, 0.0044], [0.0103, 0.0049, 0.0043, 0.0031, 0.0031, 0.0031, 0.003, 0.0028], [0.1458, 0.1067, 0.027, 0.0164, 0.0136, 0.0106, 0.0106, 0.0064], [0.0603, 0.0566, 0.0303, 0.0126, 0.0126, 0.0112, 0.0105, 0.0092], [0.0388, 0.0235, 0.0221, 0.0098, 0.0081, 0.0052, 0.0041, 0.0041], [0.0325, 0.0082, 0.005, 0.0039, 0.0039, 0.0036, 0.0034, 0.0034], [0.13, 0.1221, 0.0187, 0.0176, 0.0165, 0.0121, 0.0121, 0.01], [0.0221, 0.0072, 0.0067, 0.0056, 0.0049, 0.0046, 0.0038, 0.0034], [0.0223, 0.0197, 0.0087, 0.0072, 0.0056, 0.005, 0.005, 0.0041], [0.0186, 0.01, 0.0094, 0.0069, 0.0064, 0.0039, 0.0039, 0.0037], [0.0121, 0.0107, 0.0101, 0.0069, 0.0061, 0.0057, 0.0054, 0.0051], [0.0192, 0.0075, 0.007, 0.0058, 0.0052, 0.0031, 0.0024, 0.002], [0.028, 0.0232, 0.0218, 0.0141, 0.008, 0.0075, 0.0043, 0.004], [0.0642, 0.0236, 0.0184, 0.0092, 0.0064, 0.0056, 0.0056, 0.005], [0.0367, 0.0119, 0.0112, 0.0093, 0.0068, 0.0056, 0.0056, 0.0044], [0.0305, 0.0185, 0.0082, 0.0068, 0.0068, 0.0053, 0.005, 0.0047], [0.3186, 0.2481, 0.1932, 0.0711, 0.0031, 0.0029, 0.0026, 0.0024], [0.0732, 0.0269, 0.0112, 0.0073, 0.005, 0.0041, 0.0039, 0.0036], [0.6448, 0.0321, 0.0126, 0.0118, 0.0092, 0.0049, 0.0036, 0.0028], [0.6626, 0.02, 0.0138, 0.0045, 0.0037, 0.0035, 0.0029, 0.0027], [0.7212, 0.2066, 0.0085, 0.0052, 0.0015, 0.001, 0.0008, 0.0007], [0.5647, 0.015, 0.0125, 0.0103, 0.0067, 0.0055, 0.0049, 0.0049], [0.3949, 0.0174, 0.0144, 0.0119, 0.0099, 0.0082, 0.0072, 0.0068], [0.5031, 0.1354, 0.0725, 0.0364, 0.0172, 0.0067, 0.0036, 0.0032], [0.045, 0.0397, 0.0187, 0.0165, 0.0165, 0.0146, 0.0129, 0.0121], [0.7197, 0.0759, 0.0062, 0.0058, 0.0046, 0.0043, 0.0043, 0.0038], [0.7192, 0.0973, 0.0231, 0.008, 0.0066, 0.0046, 0.004, 0.0029], [0.7199, 0.0974, 0.0316, 0.0149, 0.0085, 0.0071, 0.0055, 0.0031], [0.2164, 0.1794, 0.0847, 0.0312, 0.0201, 0.0189, 0.0108, 0.0101], [0.4784, 0.0369, 0.0306, 0.0174, 0.0174, 0.0164, 0.0113, 0.0088], [0.6728, 0.0357, 0.0216, 0.0123, 0.0116, 0.008, 0.0062, 0.0051], [0.6298, 0.0355, 0.0277, 0.0179, 0.0179, 0.009, 0.0084, 0.0084], [0.5006, 0.0437, 0.0301, 0.0301, 0.0207, 0.0182, 0.0142, 0.0133], [0.3558, 0.0581, 0.0513, 0.0452, 0.0274, 0.0201, 0.0166, 0.0138], [0.1568, 0.1147, 0.1147, 0.0614, 0.0226, 0.0226, 0.0226, 0.0187], [0.3351, 0.2451, 0.066, 0.0426, 0.0275, 0.0214, 0.0157, 0.013], [0.2901, 0.2259, 0.1067, 0.0254, 0.0197, 0.0144, 0.0136, 0.012], [0.1259, 0.0718, 0.0525, 0.0463, 0.0384, 0.0281, 0.0264, 0.0219], [0.0786, 0.0651, 0.0507, 0.042, 0.0308, 0.0255, 0.0225, 0.0225], [0.0637, 0.0496, 0.0283, 0.0266, 0.025, 0.025, 0.0234, 0.0234], [0.0495, 0.0495, 0.0362, 0.0249, 0.0249, 0.0234, 0.022, 0.0206], [0.0744, 0.0579, 0.0374, 0.0351, 0.031, 0.0156, 0.0146, 0.0146], [0.0925, 0.0869, 0.0869, 0.0194, 0.0182, 0.0171, 0.0161, 0.0118], [0.4171, 0.1739, 0.0267, 0.0251, 0.0221, 0.0221, 0.0195, 0.0152], [0.2901, 0.2259, 0.0474, 0.0393, 0.0369, 0.0346, 0.0306, 0.0253], [0.4713, 0.0438, 0.0387, 0.0387, 0.0387, 0.0301, 0.0301, 0.0235], [0.761, 0.023, 0.0203, 0.0123, 0.0116, 0.0116, 0.0109, 0.0109], [0.7907, 0.0271, 0.0164, 0.0128, 0.0128, 0.0128, 0.0113, 0.01], [0.6123, 0.0829, 0.0444, 0.021, 0.021, 0.0185, 0.0127, 0.0127], [0.5695, 0.053, 0.0284, 0.0207, 0.0183, 0.0134, 0.0134, 0.0134], [0.6803, 0.0493, 0.0299, 0.0233, 0.0181, 0.0141, 0.0141, 0.0125], [0.2315, 0.1803, 0.1404, 0.0965, 0.0852, 0.0244, 0.019, 0.019], [0.3096, 0.2411, 0.1878, 0.1139, 0.0419, 0.037, 0.0154, 0.0094], [0.2388, 0.186, 0.1449, 0.0996, 0.0879, 0.0684, 0.0415, 0.0135], [0.8031, 0.1087, 0.0311, 0.0243, 0.0115, 0.0089, 0.0061, 0.0018], [0.8669, 0.0712, 0.0432, 0.0096, 0.0052, 0.0019, 0.0013, 0.0006], [0.7956, 0.1077, 0.0839, 0.0047, 0.0042, 0.002, 0.0014, 0.0005], [0.6943, 0.2554, 0.0238, 0.0144, 0.0036, 0.0036, 0.002, 0.0007], [0.8595, 0.0549, 0.0378, 0.0157, 0.0084, 0.0074, 0.0058, 0.0015]], "ranks": {"Python": [9137, 124770, 131509, 161607, 31843, 99176, 3799, 4201, 3734, 3183, 471, 3758, 4449, 3653, 6113, 6600, 1011, 402, 462, 1183, 107, 233, 69, 38, 18, 13, 19, 55, 21, 26, 34, 54, 64, 29, 22, 32, 3, 3, 1, 1, 1, 1, 2, 2, 1, 4, 8, 31, 53, 231, 164, 69, 20, 11, 6, 2, 1, 1, 11, 28, 28, 36, 95]}}, {"pos": 572, "top": [[" \u2013", ".", "\u2013", "\u00a0\u00a0", "\u00a0", ",", "-", " "], [" \u2013", " VERY", "\u2013", "estig", " Harbour", " old", " Vip", " very"], ["\u2026..", "\u2026.", "\u2013", " \u2013", "**\u2013", "\u2013and", "\u2026\"", ".\u2013"], [" milfs", " Hidal", " Blowjob", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "erias", " Shemale", "erio", " councill"], ["odal", " Hidal", "ities", "boarding", "hood", "\u0928\u094d\u0926\u094d\u0930", "ostal", "board"], ["odal", "ities", " Hidal", "iously", "boarding", "carat", "boards", "odd"], ["ities", "cent", "ors", "\u0928\u094d\u0926\u094d\u0930", "**-", "odal", "cede", "\u00ac"], ["ities", "odal", "ighbour", " Hidal", "cent", "athon", "ctype", "iser"], ["ities", "athon", " \u00ad", "ious", "killer", "pretty", "cent", "amer"], ["ities", " \u00ad", " Hidal", "\u00ad", "amental", "balls", "-but", "-cent"], ["ities", "-", "-tech", " \u00ad", "\u00ac", "...", "...\"", "stuff"], ["ities", "stuff", "-tech", " Hidal", " guts", "amental", "balls", "ature"], ["ities", "stuff", "-tech", " guts", "balls", "isms", " savvy", "istry"], ["-tech", "ities", "-esque", " guts", " savvy", "stuff", " \u00ad", "balls"], [" \u00ad", "\u00ad", "-", "\u00ac", " savvy", "-esque", "-but", "back"], ["ities", " \u00ad", "-", " savvy", "back", "\u00ad", "-esque", "-tech"], ["-", "ities", "back", "\u00ad", "-tech", "-esque", " \u00ad", " savvy"], ["-tech", "ities", "-esque", " savvy", "-", "ball", "back", "-f"], ["-tech", "ities", "-esque", "ball", " savvy", "-media", "back", "-but"], ["\\-", " \u00ad", "though", " though", "\u00ad", "Though", "\u9ebd", "centre"], ["<|endoftext|>", "\\-", " \n\n", " \u00ad", "Though", "though", " though", "\u00ad"], ["\u9ebd", " ``", " ''", "ities", "ogue", "\u0163", " Hidal", " T\u00e9cn"], [" ``", " ''", "\u9ebd", " notably", " much", "ities", "\u0163", " battling"], [" much", " notably", " ``", " ''", " -", " ultimately", " largely", " though"], [" much", " though", " notably", " labour", " whilst", " \n\n", " --", " centre"], [" technologies", " technology", " hardware", " labour", " tech", " film", " much", " organisation"], [" technology", " hardware", " ``", " technologies", " film", " engineering", " techniques", " tech"], [" _", "\n\n", " --", " \n\n", " much", " though", " '", " ``"], [" --", " hardware", " technology", " _", " techniques", " technologies", " tech", " operations"], [" ...", " technology", " ...\\", " _", " **", " hardware", " work", " techniques"], [" ...", "...", " ...\"", " \u2026", " ...\\", " [...]", " technology", " ...."], [" ...", " -", "...", " \u2026", " and", " ,", " work", " re"], [" ...", " -", " ,", " .", " and", " re", " /", " much"], [" ...", " hardware", " technology", " tech", " ...\"", " technologies", " \u2026", " operations"], [" ...", " ...\"", " [...]", "\u2011", " hardware", " \u2026", " technology", "...**"], [" ...", " \u2026", " [...]", " ...\"", "\u2026\u2026", "...", "\u2026", " ......"], [" ...", " [...]", " ...\"", " \u2026", "[...]", "...", "\u2011", " /"], [" ...", " [...]", " ...\"", "...", " \u2026", "[...]", "(...)", " (...)"], [" ...", " [...]", " ...\"", "...", " \u2026", " (...)", "(...)", "[...]"], [" [...]", "\u2011", " [\u2026]", "\u2026\u2026", " ...", " ...\"", " \u2026", "[...]"], ["\u2011", " hardware", " Direct", " engine", " direct", "frame", " [...]", " thread"], [" hardware", "frame", " engine", " internally", " frame", " interface", "\u2011", " operating"], [" hardware", " interface", " camera", " engine", "\\-", " protocol", " animation", "-camera"], [" hardware", " operating", " operations", " camera", " independent", " internally", "-camera", " animation"], [" operating", " operations", " independent", " hardware", " camera", " frame", " internally", " control"], [" independent", " operating", " independently", " operations", " hardware", " internally", " engine", " controlled"], ["\u2011", " independent", " operating", "\\-", " independently", " hardware", " protocol", " operations"], [" independent", " Independent", " independently", "\\-", " Direct", "\u72ec\u7acb", "\u72ec\u7acb\u5b8c\u6210", " operating"], ["\\-", "\u2011", "\u72ec\u7acb\u5b8c\u6210", " Independent", " Direct", " independent", "-controlled", "-initialized"], ["-Control", "/C", "-Based", "-C", "-Series", "-China", "-initialized", "-API"], ["-Control", "-Based", "-Compatible", "-China", "/C", "-C", "-Series", "-CN"], ["/C", " Embedded", " module", "/Linux", "module", " Interface", " plugin", " wrapper"], [" Python", " module", "module", "/python", " Embedded", "/C", "Python", " wrapper"], [" plugin", " wrapper", " Wrapper", " Python", " module", "module", " Backend", " Plugin"], [" plugin", " Plugin", " module", " DLL", "module", "plugin", "/plugin", "-plugin"], [" plugin", " Wrapper", " wrapper", " module", " Plugin", " Python", " DLL", "plugin"], [" Python", "Python", " Wrapper", "-python", "/python", "python", " wrapper", " plugin"], [" Python", " Wrapper", "Python", " module", " wrapper", " Backend", "-python", " DLL"], [" Extension", "Extension", " extension", " Extensions", "extension", "-extension", " Wrapper", " Python"], [" Extension", " extension", "Extension", "extension", " Extensions", "-extension", " extensions", "_extension"], [" Extension", " extension", "Extension", "extension", " Extensions", "-extension", " extensions", "_extension"], [" Extension", " extension", "Extension", "extension", " Extensions", "-extension", "_extension", " extensions"], ["Extension", " Extension", " extension", "Extensions", "extension", "_extension", "Module", " Extensions"]], "p": [[0.9181, 0.0518, 0.0102, 0.0015, 0.0014, 0.0013, 0.0011, 0.0009], [0.1771, 0.01, 0.0025, 0.0018, 0.0016, 0.0014, 0.0014, 0.0014], [0.1433, 0.1048, 0.0869, 0.0527, 0.0206, 0.0071, 0.003, 0.003], [0.0171, 0.0091, 0.0063, 0.0049, 0.0036, 0.0034, 0.0032, 0.0032], [0.057, 0.0163, 0.0135, 0.0036, 0.003, 0.0028, 0.0028, 0.0025], [0.0344, 0.0119, 0.0119, 0.0087, 0.0082, 0.0047, 0.0047, 0.0041], [0.0941, 0.0197, 0.0099, 0.0099, 0.0088, 0.0077, 0.0064, 0.0064], [0.1589, 0.0108, 0.009, 0.009, 0.0062, 0.0037, 0.0035, 0.0033], [0.1038, 0.0097, 0.0075, 0.0049, 0.0049, 0.0046, 0.0046, 0.0043], [0.0537, 0.0164, 0.0112, 0.0077, 0.006, 0.0041, 0.0034, 0.003], [0.0889, 0.0785, 0.0175, 0.0155, 0.0128, 0.0113, 0.0094, 0.0088], [0.052, 0.0116, 0.0052, 0.0045, 0.0038, 0.0033, 0.0033, 0.0031], [0.0223, 0.0112, 0.0087, 0.0041, 0.0039, 0.0034, 0.0034, 0.0034], [0.0127, 0.012, 0.0106, 0.0099, 0.0087, 0.0073, 0.0041, 0.0036], [0.0812, 0.0281, 0.0219, 0.0205, 0.0117, 0.0091, 0.0086, 0.008], [0.0253, 0.0253, 0.0174, 0.0127, 0.012, 0.0112, 0.0093, 0.0073], [0.0543, 0.0213, 0.0188, 0.0121, 0.0107, 0.0107, 0.0094, 0.0061], [0.0412, 0.025, 0.0092, 0.0076, 0.0076, 0.0072, 0.0063, 0.0049], [0.0247, 0.0103, 0.008, 0.0043, 0.0036, 0.0031, 0.0026, 0.0024], [0.0489, 0.0279, 0.0075, 0.0058, 0.0038, 0.0031, 0.0029, 0.0028], [0.9627, 0.0024, 0.0014, 0.0006, 0.0004, 0.0004, 0.0003, 0.0002], [0.0079, 0.0051, 0.0021, 0.002, 0.0018, 0.0015, 0.0014, 0.0012], [0.0299, 0.011, 0.0103, 0.0025, 0.0022, 0.0019, 0.0017, 0.0016], [0.0151, 0.0081, 0.0063, 0.0034, 0.0026, 0.0026, 0.0026, 0.0025], [0.0211, 0.0106, 0.0094, 0.0064, 0.0057, 0.0053, 0.0044, 0.0042], [0.016, 0.0151, 0.0091, 0.0081, 0.0071, 0.0059, 0.0055, 0.0049], [0.012, 0.0113, 0.0113, 0.0106, 0.01, 0.006, 0.0057, 0.0057], [0.0695, 0.0576, 0.0509, 0.0256, 0.0107, 0.0088, 0.0088, 0.0083], [0.0263, 0.0247, 0.0181, 0.016, 0.0124, 0.0091, 0.0085, 0.0085], [0.4677, 0.016, 0.015, 0.015, 0.0125, 0.011, 0.0067, 0.0063], [0.9616, 0.0069, 0.0061, 0.0024, 0.0022, 0.002, 0.0008, 0.0006], [0.8622, 0.0058, 0.0058, 0.0033, 0.0031, 0.0029, 0.0027, 0.0026], [0.2772, 0.0513, 0.0242, 0.0166, 0.0156, 0.0147, 0.0095, 0.0084], [0.2883, 0.0471, 0.0415, 0.0173, 0.0153, 0.0135, 0.0135, 0.0127], [0.259, 0.0479, 0.0373, 0.0256, 0.02, 0.0188, 0.0176, 0.0121], [0.6226, 0.1574, 0.0843, 0.0656, 0.0121, 0.0065, 0.0057, 0.0045], [0.4916, 0.1925, 0.0625, 0.0379, 0.007, 0.007, 0.0062, 0.0051], [0.402, 0.3548, 0.0424, 0.0291, 0.02, 0.02, 0.0121, 0.0083], [0.385, 0.3192, 0.0381, 0.0336, 0.0159, 0.0103, 0.0075, 0.0071], [0.2977, 0.0624, 0.0295, 0.026, 0.0216, 0.0179, 0.0168, 0.0123], [0.0523, 0.016, 0.0091, 0.0055, 0.0055, 0.0055, 0.0052, 0.0052], [0.0214, 0.0157, 0.013, 0.0122, 0.0108, 0.0101, 0.0095, 0.0084], [0.026, 0.0178, 0.0123, 0.0115, 0.0096, 0.009, 0.009, 0.0079], [0.0194, 0.0172, 0.0118, 0.0104, 0.0098, 0.0086, 0.0071, 0.0071], [0.0287, 0.0287, 0.0197, 0.0135, 0.0119, 0.0105, 0.0105, 0.0093], [0.0361, 0.016, 0.0141, 0.0133, 0.0103, 0.0097, 0.0097, 0.0091], [0.0257, 0.0213, 0.0176, 0.0146, 0.0094, 0.0078, 0.0078, 0.0074], [0.0892, 0.0541, 0.0422, 0.024, 0.024, 0.0165, 0.01, 0.0094], [0.0295, 0.019, 0.0179, 0.0123, 0.0123, 0.0108, 0.0096, 0.0084], [0.0646, 0.0286, 0.0185, 0.0135, 0.0135, 0.0127, 0.0119, 0.0112], [0.1043, 0.0435, 0.0384, 0.0248, 0.0219, 0.0141, 0.0133, 0.0117], [0.0647, 0.0444, 0.0325, 0.0253, 0.0185, 0.0174, 0.0163, 0.0154], [0.0684, 0.0442, 0.0252, 0.0222, 0.0209, 0.0209, 0.0196, 0.0173], [0.0334, 0.0277, 0.0244, 0.0244, 0.0216, 0.0216, 0.019, 0.0158], [0.3473, 0.0995, 0.0775, 0.0684, 0.0415, 0.0323, 0.0184, 0.0184], [0.2669, 0.1113, 0.0814, 0.0596, 0.0494, 0.0436, 0.0339, 0.0264], [0.4115, 0.1041, 0.081, 0.0715, 0.0383, 0.0338, 0.0317, 0.0218], [0.3349, 0.1087, 0.0847, 0.0514, 0.0426, 0.0311, 0.0243, 0.0228], [0.9025, 0.0309, 0.0309, 0.01, 0.0054, 0.0042, 0.0029, 0.002], [0.8497, 0.115, 0.0257, 0.0039, 0.0027, 0.0014, 0.0008, 0.0006], [0.7823, 0.1978, 0.0126, 0.0047, 0.0009, 0.0008, 0.0006, 0.0003], [0.907, 0.058, 0.0242, 0.0069, 0.0018, 0.0011, 0.0006, 0.0002], [0.9036, 0.0952, 0.0006, 0.0002, 0.0001, 0.0001, 0.0, 0.0]], "ranks": {"Python": [40490, 211573, 193677, 207052, 166759, 152314, 16265, 37795, 41397, 32392, 11734, 48943, 22674, 30326, 39170, 44044, 41614, 24330, 61188, 143994, 22853, 144610, 132240, 83341, 42809, 15285, 12967, 7608, 6279, 3193, 5144, 9660, 13073, 7389, 8623, 4261, 3896, 2234, 1752, 1823, 1415, 1586, 1353, 3037, 3483, 2790, 4385, 3278, 2302, 3553, 971, 70, 1, 3, 11, 6, 1, 1, 8, 28, 33, 27, 42]}}, {"pos": 573, "top": [[".", " \u2013", "<|endoftext|>", " ", ",", "  \n", ";", "\u2013"], ["  \n", "  \n\n", " \u2013", "   \n", "   \n\n", "\u2013", "  ", "  \n  \n"], [" \u2013", "\u2013", ",", ".", "\u2026\u2026", ";", "\u2026", "\u2026.."], [" Geile", " Guta", " Strec", " Blowjob", " \u041a\u0440\u0430\u0441\u0438", " cumshot", "-------------</", " ;;^"], ["  \n\n", " (@", "  \n", "&", " &,", ".-", " (\u00a7", " &"], ["  \n\n", "  \n", " &,", " Pro", " EF", "i", ".-", "@"], ["  \n\n", "<|endoftext|>", "\n\n", "  \n", "\u2014\u2014", " \n\n", "&", "\u2026\u2026"], ["  \n\n", "  \n", ",", ".", "<|endoftext|>", "   \n\n", ";", "\n\n"], ["  \n\n", ".", ",", "\n\n", " \n\n", "  \n", "   \n\n", ";"], [",", "\\_", ";", "  \n\n", ".", "\u00ad", ".\\", "  \n"], [",", "...", ".", ";", "  \n\n", "<|endoftext|>", "\\_", ".\\"], [",", "...", ";", "\\_", " largely", " further", " arguably", " [...]"], ["\\_", " arguably", ",", " largely", "...", " utilized", " further", " vastly"], [",", " arguably", " utilizing", " largely", "\\_", " utilized", " vastly", " entirety"], [" arguably", "\\_", "<|endoftext|>", " largely", "  \n\n", " merely", ",", "\n\n"], [" arguably", " largely", " whilst", " utilizing", " akin", " util", " ultimately", " alongside"], [",", " arguably", "<|endoftext|>", " largely", ";", "\\_", " utilizing", " util"], [",", " arguably", " largely", "<|endoftext|>", "\\_", "\\-", ";", ".^"], [" arguably", " largely", "<|endoftext|>", ",", " merely", " purported", " notably", " ."], ["<|endoftext|>", " \n\n", "\\_", "\\-", " largely", " arguably", ",", " merely"], ["<|endoftext|>", " \n\n", "  \n\n", "\n\n", "\\_", " ,", "   \n\n", "\\-"], [" __", ".__", " ___", " **", " ``", "->___", " notably", " --"], [" __", ".__", " --", " notably", " ``", " ___", " ,", " largely"], [" ,", " --", " ``", "<|endoftext|>", " ;", " notably", " .", " largely"], ["<|endoftext|>", "\n\n", " \n\n", " __", " --", " ,", " _", " \\"], [" __", " ___", ".__", " --", " _", " ``", " **", " <"], [" __", " ___", " _", ".__", "\n\n", " <", " --", " ``"], ["\n\n", " \n\n", " ,", " _", " __", " --", " ...", " ."], [" .", " ,", " __", " ...", " \n", " ;", " _", " \n\n"], [" ...", " __", " \n", " .", " \n\n", "...", " ___", " _"], [" ...", " .", " \n", " __", "...", " \n\n", " _", " ,"], [" .", " ...", " ,", " \n", " \n\n", " __", "...", " ;"], [" .", " ,", " ...", " \n", " ;", " :", " (", " -"], [" .", " technology", " heavily", " complex", " software", " \n", " specialized", " hardware"], [" .", " software", "<|endoftext|>", " technology", " heavily", " complex", " leveraging", " hardware"], [" .", " .\"", " \u2014", " (", " \u2013", " \"", " technology", " **"], [" .", " .\"", " \u2014", " \"", " (", " specialized", " software", " hardware"], [" .", " .\"", " \n", " \"", " (", " (\"", " software", " leveraging"], [" .", " (", " .\"", " \"", " (\"", " software", " specialized", " hardware"], [" .", " specialized", " hardware", " .\"", " (", " software", " technology", " firmware"], [" hardware", " software", " .", " specialized", " (", " technology", " .\"", " firmware"], [" software", " hardware", " specialized", " module", " modular", " engineering", " firmware", " technology"], [" software", " hardware", " specialized", " modular", " module", " firmware", " leveraging", " technology"], [" specialized", " software", " hardware", " technology", " modular", " proprietary", " designed", " via"], [" via", " modular", " software", " specialized", " designed", " embedded", " leveraging", " using"], [" via", " using", " modular", " designed", " specialized", " embedded", " utilizing", " custom"], [" via", " designed", " modular", " **", " (", " using", " crafted", " Using"], [" (", " designed", " via", " using", " Using", " Designed", " crafted", " Export"], [" **(", ".**", "  \n", " **", " (", ".", "**", "**."], ["\n", " **(", " via", "  \n", " **+", " **", "**", " using"], ["\n", "  \n", " via", " **+", " \n", "\n   \n", " **(", "   \n"], [" via", "\n", " **+", "  \n", "\n   \n", " **\"", " Using", " **("], [" **+", " via", "\n", "**", " **(", " **\"", "\n   \n", "  \n"], ["\n", " **+", " +", " via", " Wrapper", "+B", "+C", "\n   \n"], ["\n", " **+", " wrapper", " Wrapper", " DLL", " plugin", " module", " via"], [" Wrapper", " wrapper", " **+", "\n", " plugin", " module", " wrapped", " DLL"], [" Wrapper", " wrapper", " module", "\n", " plugin", " Module", " Modules", " DLL"], [" Wrapper", " wrapper", "\n", " DLL", " module", " plugin", " Module", " Plugin"], [" Wrapper", " wrapper", " Module", " DLL", "\n", " module", " Backend", " Thread"], [" Wrapper", " Thread", "\n", " via", " wrapper", " Renderer", " thread", " Module"], [" Module", " module", "\n", " Renderer", " Wrapper", " Thread", " DLL", " via"], [" Module", " Wrapper", "\n", " Renderer", " module", " Thread", " Library", " DLL"], [" Module", " Thread", " Wrapper", " Library", " Renderer", " Plugin", " Engine", " Backend"]], "p": [[0.2665, 0.1721, 0.134, 0.1044, 0.0813, 0.0463, 0.0339, 0.0181], [0.4583, 0.315, 0.0848, 0.0178, 0.0101, 0.0054, 0.0045, 0.0037], [0.4492, 0.2724, 0.1287, 0.0689, 0.0154, 0.0112, 0.0082, 0.006], [0.0354, 0.0259, 0.0139, 0.013, 0.0062, 0.0051, 0.0045, 0.004], [0.0977, 0.0359, 0.0232, 0.0141, 0.0091, 0.0085, 0.0085, 0.0085], [0.0375, 0.0213, 0.0057, 0.0045, 0.0037, 0.0033, 0.0031, 0.0031], [0.5113, 0.3514, 0.0611, 0.037, 0.0044, 0.0027, 0.0025, 0.0021], [0.8503, 0.0544, 0.0257, 0.0146, 0.0051, 0.0047, 0.0045, 0.0039], [0.7464, 0.0891, 0.0694, 0.0199, 0.0199, 0.0094, 0.0061, 0.0061], [0.8608, 0.0517, 0.026, 0.0123, 0.0042, 0.0037, 0.0035, 0.0023], [0.404, 0.2162, 0.0901, 0.0514, 0.0514, 0.0514, 0.0376, 0.0074], [0.2878, 0.0567, 0.0173, 0.0105, 0.0092, 0.0077, 0.0072, 0.0056], [0.0411, 0.0234, 0.0194, 0.0118, 0.0111, 0.0104, 0.0098, 0.0071], [0.2157, 0.0227, 0.0114, 0.0101, 0.0101, 0.0095, 0.0084, 0.0065], [0.0408, 0.0408, 0.0384, 0.017, 0.0141, 0.011, 0.0103, 0.0097], [0.1049, 0.0249, 0.0206, 0.0206, 0.0133, 0.0104, 0.0098, 0.0098], [0.2584, 0.0372, 0.035, 0.0212, 0.01, 0.0088, 0.0069, 0.0065], [0.0637, 0.0283, 0.0234, 0.0194, 0.0125, 0.0086, 0.0076, 0.0052], [0.0311, 0.0292, 0.0292, 0.0147, 0.0074, 0.0061, 0.0061, 0.0057], [0.4258, 0.0272, 0.0212, 0.0129, 0.0113, 0.0107, 0.01, 0.0083], [0.994, 0.0036, 0.0007, 0.0005, 0.0, 0.0, 0.0, 0.0], [0.0798, 0.0243, 0.0215, 0.0157, 0.0148, 0.0108, 0.0084, 0.0074], [0.065, 0.0239, 0.0239, 0.0211, 0.0211, 0.0154, 0.0136, 0.0106], [0.0965, 0.0378, 0.0294, 0.026, 0.0202, 0.0179, 0.0158, 0.0139], [0.2215, 0.1725, 0.1343, 0.0436, 0.0385, 0.0282, 0.0182, 0.0104], [0.6461, 0.0772, 0.0388, 0.0365, 0.0365, 0.0143, 0.0076, 0.0063], [0.6974, 0.0944, 0.0833, 0.0254, 0.0154, 0.0073, 0.0068, 0.005], [0.4149, 0.1189, 0.0926, 0.0817, 0.0598, 0.0561, 0.0125, 0.0118], [0.3548, 0.2438, 0.0792, 0.048, 0.033, 0.0241, 0.0227, 0.0188], [0.7282, 0.0768, 0.0677, 0.0598, 0.0151, 0.0098, 0.0076, 0.0071], [0.8334, 0.0878, 0.0285, 0.0135, 0.0119, 0.0093, 0.0023, 0.0019], [0.5239, 0.3177, 0.0626, 0.0191, 0.0062, 0.004, 0.0026, 0.002], [0.7843, 0.0729, 0.0252, 0.0173, 0.0053, 0.0034, 0.0032, 0.0025], [0.0702, 0.0426, 0.0275, 0.0275, 0.0214, 0.013, 0.013, 0.0122], [0.0379, 0.0245, 0.023, 0.023, 0.0179, 0.0168, 0.0158, 0.0139], [0.2525, 0.0529, 0.0342, 0.0195, 0.0152, 0.0152, 0.0111, 0.0111], [0.11, 0.052, 0.0458, 0.0335, 0.0296, 0.0131, 0.0116, 0.0116], [0.1116, 0.0561, 0.032, 0.032, 0.0234, 0.0182, 0.0125, 0.0092], [0.0807, 0.0628, 0.0358, 0.0297, 0.0246, 0.0204, 0.0192, 0.0124], [0.0432, 0.0297, 0.0262, 0.0231, 0.0204, 0.0192, 0.0109, 0.0103], [0.0418, 0.0392, 0.0287, 0.027, 0.0224, 0.0185, 0.0154, 0.0154], [0.0969, 0.0709, 0.0487, 0.0487, 0.0404, 0.0216, 0.0191, 0.0179], [0.0839, 0.0542, 0.0509, 0.0509, 0.0396, 0.0165, 0.0155, 0.0155], [0.0468, 0.0468, 0.0365, 0.0221, 0.0221, 0.0195, 0.0195, 0.0195], [0.0416, 0.0286, 0.0286, 0.0286, 0.0269, 0.0196, 0.0196, 0.0196], [0.1032, 0.0666, 0.043, 0.0404, 0.023, 0.0203, 0.0191, 0.0158], [0.0561, 0.0437, 0.0411, 0.0386, 0.0282, 0.0207, 0.0161, 0.0111], [0.0644, 0.0443, 0.0416, 0.0269, 0.0223, 0.0173, 0.0153, 0.0153], [0.1933, 0.1035, 0.0668, 0.052, 0.0489, 0.0262, 0.0217, 0.0159], [0.1853, 0.1056, 0.0932, 0.0772, 0.0284, 0.0251, 0.0162, 0.0126], [0.4225, 0.2904, 0.0393, 0.0288, 0.0198, 0.0088, 0.005, 0.0047], [0.2323, 0.1809, 0.091, 0.043, 0.0245, 0.023, 0.0148, 0.0139], [0.1593, 0.1593, 0.0908, 0.0517, 0.0486, 0.0403, 0.026, 0.0244], [0.5696, 0.269, 0.0284, 0.0195, 0.0038, 0.0034, 0.0034, 0.003], [0.2629, 0.1807, 0.0429, 0.0403, 0.0295, 0.026, 0.023, 0.0203], [0.4208, 0.2892, 0.0305, 0.0253, 0.0237, 0.0209, 0.0144, 0.0068], [0.6194, 0.1775, 0.0272, 0.0137, 0.0129, 0.01, 0.0069, 0.0065], [0.527, 0.1333, 0.0297, 0.0218, 0.0192, 0.015, 0.0103, 0.0097], [0.5252, 0.0554, 0.0488, 0.0296, 0.0231, 0.0191, 0.0169, 0.0159], [0.3818, 0.0907, 0.08, 0.0585, 0.0456, 0.0334, 0.026, 0.0215], [0.3849, 0.1416, 0.1249, 0.059, 0.059, 0.0192, 0.018, 0.0159], [0.5224, 0.1166, 0.0664, 0.0456, 0.0314, 0.0158, 0.0115, 0.0102], [0.8869, 0.0344, 0.0184, 0.0127, 0.0112, 0.0047, 0.0028, 0.0023]], "ranks": {"Python": [24417, 161101, 167929, 119499, 24335, 111576, 27772, 19391, 21129, 44650, 11205, 11210, 10059, 14270, 13958, 14138, 9213, 3972, 4938, 16535, 4847, 4295, 3174, 3119, 1325, 222, 184, 354, 98, 140, 225, 600, 567, 88, 101, 101, 50, 35, 34, 31, 35, 44, 56, 93, 101, 131, 410, 717, 1227, 1924, 1165, 293, 151, 299, 152, 87, 14, 20, 30, 51, 39, 54, 136]}}, {"pos": 574, "top": [[" \u2013", ".", "   \n", " (\u201e", " \u2013,", "\u2013and", "  \n", ".\u2013"], ["**\u2013", "\u2013and", " \u2013**", " *\u2013", " **\u2013", " \u2013,", "  \r\n", "ly"], ["\u2013", "\u2013and", " \u2013", "\u3002", "**\u2013", ".\u2013", " \u2013,", "\uff1f"], ["``", " ``", " ``(", "\uff1f**", "\uff3f\uff3f", " **\u201e", "':''", " Shemale"], [" *@", " (@", "sWith", "ly", "erweise", "*@", "ingly", "raries"], ["sWith", "\uff01", "\u0d30\u0d4d", "erweise", "\uff08", "\uff1f", "pedia", "\u65b0\u52a0\u5761"], ["\uff08", "\uff01", "\u4e2d", "\u548c", "\u5728", "\u88ab", "\u5bf9", "``"], ["(`", " `_", "   \r\n", "   \n", "  \r\n", "(\\\"", "\uff08", "   \n\n"], ["   \n\n", "(`", "    \n\n", " `_", "   \n", "(\\\"", "   \r\n", " [`"], ["\u52a0\u62ff\u5927", "\u65b0\u52a0\u5761", " ``", " ``(", "raca", "``", "\u52c7\u5f80\u76f4\u524d", " `_"], [" \\\"", " --", "(\\\"", " \u02c7", " ``", "``", "\uff40", " `_"], [" ``", " ``(", " **\u201e", "``", " **\u300c", " `_", "\u52a0\u62ff\u5927", " **"], [" ``", "``", " ``(", " **\u201e", "\u52a0\u62ff\u5927", " `_", " **\u300c", "\uff40"], [" ``", "\u52a0\u62ff\u5927", "``", " ``(", "\uff40", "erse", " \\\"", "\u65b0\u52a0\u5761"], [" ``", " --", " \\\"", "\uff40", "``", " `", " ``(", " seamlessly"], [" --", " ``", "\uff40", " seamlessly", " \\\"", " incredibly", " savvy", " sprawling"], [" --", "\u2013and", " \u00ad", "\u2013", " arguably", "\\-", " sprawling", " seamlessly"], ["\\-", " --", " \u00ad", "\u2013and", " ``", "er", " seamlessly", " **\u2013"], [" --", " **", " **\u2013", " seamlessly", "\\-", "\u2014even", "\u2500", " arguably"], [" --", "\\-", " swiftly", "\u2014even", "\u2500", " \u2014", "\u2013and", "\u2014or"], ["  \n\n", " swiftly", " --", "\\-", "   \n\n", "\u2014even", " \u2014", "<|endoftext|>"], [" ``", " **", " ``(", " **\u201e", " --", " **\u2018", " **\u2013", " swiftly"], [" ``", " --", " **", " ``(", " swiftly", " arguably", " **\u2018", "``"], [" ``", " --", " **", " ``(", " swiftly", "``", " arguably", " \u2015"], ["  \n\n", " \n\n", "   \n\n", "\r\n\r\n", " --", " \r\n\r\n", " ``", "\n\n"], [" **", " **\u2018", " ``", " --", " **'", " -**", " ``(", " **\u2013"], [" **", " --", " ``", " **\u2018", " swiftly", " **\u2013", " arguably", " \u2015"], [" --", " **", "\n\n", " ``", " swiftly", " arguably", " \n\n", " _"], [" --", " **", " ``", "\n\n", "\r\n\r\n", "  \n\n", " arguably", " \n\n"], [" **", " --", "  \n\n", " \n\n", " _", "\r\n\r\n", "\n\n", " ``"], ["  \n\n", " \n\n", " **", " --", " \u2014", "\n\n", "   \n\n", " \u00ad"], ["  \n\n", " --", " **", " \u2014", " \n\n", " \u2013", " heavily", " \u00ad"], [" \u2013", " \u2014", " --", " heavily", " \u00ad", " ,", " initially", " specifically"], [" \u2013", " \u2014", " \u00ad", " heavily", " **", " --", "\u2013", " aggressively"], [" \u2013", " **", " \u2014", "\u2013", " heavily", " \u00ad", " aggressively", "  \n\n"], [" \u2013", " **", " \u2014", "\u2013", "  \n\n", "\u2011", " heavily", " \u00ad"], [" **", "  \n\n", " aggressively", " \u2013", " \u2014", "\u2013", " meticulously", " heavily"], [" **", " **\u201c", "  \n\n", " **\u2013", "\u2011", " \u2013", " **\"", " \u2014"], [" **", " \u2014", " \u2013", "\u2011", "  \n\n", "\u2013", " **\u201c", " **\u2013"], [" **", "\u2011", "  \n\n", " \u2013", " **\u201c", " **\u2013", " \u2014", "\u2013"], [" **", "\u2011", "  \n\n", " \u2013", " aggressively", "\u2013", " \u2014", "<|endoftext|>"], [" **", " aggressively", " \u2014", " technically", "  \n\n", " strategy", " --", " tech"], [" **", " aggressively", " strategy", " technically", " **-", " strategically", " --", " \u2014"], [" **", " aggressively", " strategy", "  \n\n", " **-", " --", " technically", " leveraging"], [" **", " aggressively", "  \n\n", " **-", " strategy", " **\"", " leveraging", "-**"], [" **", " **-", "-**", " **\"", " aggressively", " **:", " strategy", " -**"], [" **", "-**", " **-", " **\"", ":**", " **(", "\uff1a**", " **:"], [" **", "-**", ":**", ":<", " **-", ":", " **\"", "\uff1a**"], [" **", "-**", " **-", " **\"", ":**", " **:", "**", " **+"], [" **", "-**", " **-", " **+", " **\"", "**", " **:", ":**"], [" **", "-**", " **-", " **+", "  \n", " **\"", " **:", "**"], [" **", "-**", " **\"", "**", " **-", " **+", ">**", " **("], [" **", "-**", "**", " **\"", ">**", " **[", " **(", " **-"], [" **", "-**", "**", " **-", " **\"", " **+", " **[", " *"], [" **", "-**", " **-", "**", " *", " **+", " **[", " **\""], [" **", "-**", "**", " **+", " **\"", " **-", " **[", ">**"], ["-**", " **", " **-", "**", " *", " **\"", " **+", ";**"], ["-**", " **", "**", " *", " **-", " **+", " **\"", " **["], ["-**", " **", "**", " **-", " **\"", " *", " **+", " **["], [" **", "-**", " *", "**", " **\"", " **-", " **+", " **["], [" **", "-**", " *", " **-", " **\"", "**", " **+", " **\u201c"], [" **", "-**", " *", "**", "*", "-", " **-", "  "], ["*", " *", "-", "**", "-**", " **", "*(", "-*"]], "p": [[0.4866, 0.1484, 0.0258, 0.0258, 0.0242, 0.0101, 0.0095, 0.0051], [0.1596, 0.0754, 0.0625, 0.0295, 0.0203, 0.0203, 0.0179, 0.0139], [0.3723, 0.29, 0.0831, 0.0571, 0.0504, 0.0369, 0.027, 0.0136], [0.1541, 0.0642, 0.0415, 0.0093, 0.0082, 0.0072, 0.0072, 0.0068], [0.0305, 0.0237, 0.0223, 0.0185, 0.0163, 0.0153, 0.0127, 0.0112], [0.0302, 0.0251, 0.0152, 0.0111, 0.0072, 0.0067, 0.006, 0.0053], [0.0885, 0.0504, 0.0418, 0.027, 0.0253, 0.021, 0.0197, 0.0174], [0.1039, 0.0461, 0.0337, 0.028, 0.0232, 0.0159, 0.0124, 0.011], [0.0835, 0.0737, 0.042, 0.0371, 0.0211, 0.0136, 0.012, 0.0106], [0.0387, 0.0195, 0.0104, 0.0067, 0.0063, 0.0059, 0.0049, 0.0049], [0.0213, 0.0213, 0.02, 0.02, 0.02, 0.0188, 0.0146, 0.0107], [0.0784, 0.0239, 0.0175, 0.012, 0.0064, 0.0064, 0.0057, 0.005], [0.0348, 0.0164, 0.01, 0.0094, 0.0088, 0.0083, 0.0032, 0.0027], [0.0601, 0.0111, 0.0087, 0.006, 0.0038, 0.0034, 0.0026, 0.0025], [0.4216, 0.372, 0.0163, 0.005, 0.0041, 0.0032, 0.0022, 0.0022], [0.2912, 0.0573, 0.0211, 0.0164, 0.0145, 0.0068, 0.006, 0.0057], [0.1203, 0.0997, 0.0827, 0.039, 0.0286, 0.0237, 0.0173, 0.0173], [0.1982, 0.0568, 0.0367, 0.0286, 0.0222, 0.0209, 0.0196, 0.0184], [0.0476, 0.0348, 0.0211, 0.0211, 0.0198, 0.0175, 0.0165, 0.0155], [0.1037, 0.0669, 0.0432, 0.0358, 0.0316, 0.018, 0.0169, 0.0169], [0.1604, 0.0758, 0.0489, 0.0358, 0.0358, 0.018, 0.0159, 0.0149], [0.2485, 0.1507, 0.0231, 0.018, 0.0132, 0.0103, 0.0055, 0.0038], [0.7672, 0.0556, 0.0461, 0.0169, 0.0046, 0.0015, 0.0015, 0.0014], [0.7478, 0.1567, 0.0088, 0.0083, 0.0033, 0.0014, 0.0013, 0.0009], [0.3795, 0.1311, 0.0795, 0.0659, 0.0547, 0.0376, 0.0228, 0.0177], [0.5578, 0.043, 0.038, 0.0357, 0.0075, 0.0062, 0.0045, 0.0038], [0.4759, 0.0997, 0.0416, 0.0127, 0.0053, 0.0032, 0.003, 0.0028], [0.4027, 0.1018, 0.0257, 0.0227, 0.0177, 0.0166, 0.0107, 0.0101], [0.5087, 0.1066, 0.0346, 0.0325, 0.027, 0.0174, 0.0144, 0.012], [0.6533, 0.1872, 0.0536, 0.027, 0.012, 0.0082, 0.0082, 0.0047], [0.3268, 0.2545, 0.0826, 0.0644, 0.0471, 0.0442, 0.0127, 0.0099], [0.1419, 0.1105, 0.1038, 0.1038, 0.063, 0.0317, 0.0263, 0.0192], [0.0619, 0.0619, 0.0482, 0.0311, 0.0201, 0.0147, 0.0101, 0.0095], [0.1681, 0.09, 0.0581, 0.0425, 0.0258, 0.0189, 0.0166, 0.0156], [0.1264, 0.0984, 0.034, 0.0249, 0.0249, 0.0234, 0.022, 0.022], [0.342, 0.098, 0.0594, 0.0463, 0.0463, 0.0219, 0.017, 0.017], [0.2454, 0.1159, 0.0514, 0.0312, 0.0293, 0.013, 0.0115, 0.0108], [0.7532, 0.0201, 0.0177, 0.0138, 0.0138, 0.0114, 0.0101, 0.0084], [0.663, 0.0274, 0.0257, 0.0241, 0.0121, 0.0114, 0.0107, 0.0095], [0.6789, 0.0383, 0.0383, 0.017, 0.0141, 0.0117, 0.0117, 0.0103], [0.4484, 0.0732, 0.0473, 0.0197, 0.0153, 0.0144, 0.012, 0.0099], [0.3481, 0.0502, 0.0223, 0.0127, 0.0119, 0.0099, 0.0099, 0.0082], [0.7388, 0.0153, 0.0077, 0.005, 0.0041, 0.0041, 0.0034, 0.003], [0.7679, 0.0159, 0.0085, 0.0071, 0.0055, 0.004, 0.004, 0.0038], [0.8105, 0.0123, 0.0075, 0.0062, 0.0058, 0.0029, 0.0024, 0.0018], [0.965, 0.0054, 0.0029, 0.0014, 0.0012, 0.0008, 0.0008, 0.0007], [0.9376, 0.0283, 0.0104, 0.0056, 0.003, 0.0016, 0.0015, 0.0015], [0.9748, 0.0108, 0.0024, 0.0021, 0.0017, 0.0017, 0.0013, 0.0011], [0.9933, 0.0052, 0.0005, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001], [0.9677, 0.0292, 0.0008, 0.0004, 0.0004, 0.0003, 0.0003, 0.0001], [0.8966, 0.0945, 0.0017, 0.0015, 0.0012, 0.0009, 0.0008, 0.0005], [0.7489, 0.2431, 0.0024, 0.0014, 0.0008, 0.0006, 0.0005, 0.0004], [0.6116, 0.3709, 0.006, 0.0047, 0.0017, 0.001, 0.0005, 0.0004], [0.7289, 0.2681, 0.0008, 0.0004, 0.0003, 0.0003, 0.0002, 0.0002], [0.5899, 0.4054, 0.0008, 0.0007, 0.0006, 0.0004, 0.0004, 0.0003], [0.753, 0.2445, 0.0011, 0.0003, 0.0002, 0.0002, 0.0001, 0.0001], [0.775, 0.222, 0.0009, 0.0008, 0.0004, 0.0002, 0.0002, 0.0], [0.6193, 0.3756, 0.0015, 0.0011, 0.0011, 0.0003, 0.0003, 0.0001], [0.4984, 0.4984, 0.0008, 0.0006, 0.0006, 0.0004, 0.0002, 0.0001], [0.647, 0.3463, 0.0026, 0.0011, 0.001, 0.0008, 0.0002, 0.0001], [0.5248, 0.4631, 0.0075, 0.0015, 0.001, 0.0005, 0.0002, 0.0001], [0.758, 0.1691, 0.0485, 0.0108, 0.0045, 0.0027, 0.0016, 0.0009], [0.897, 0.065, 0.0164, 0.0145, 0.0037, 0.0012, 0.0006, 0.0005]], "ranks": {"Python": [6389, 169677, 32539, 92948, 8885, 29922, 13868, 29573, 25905, 50239, 8735, 28307, 17514, 8914, 4496, 1981, 6528, 4291, 23115, 58792, 44430, 70311, 45561, 40204, 50590, 77178, 45606, 22468, 14404, 3897, 5008, 5295, 10447, 6557, 6794, 3464, 3589, 3101, 3480, 2649, 2576, 2302, 2429, 4354, 5357, 4379, 9313, 24011, 12763, 13125, 14226, 6492, 8012, 8524, 3502, 484, 252, 211, 204, 87, 83, 25, 24]}}, {"pos": 575, "top": [[" *", "*", ".", "-*", "*.", "\u2022", " \u2022", ":*"], [" *\u2013", " *", ";*", ":*", "-*", ",*", " *@", "urtle"], [" *\u2013", ";*", ":*", "\u2026*", "-*", ",*", " *", "*\""], [" *__", " *}", " *_", " *\u201e", " *", " *&", " Guta", "*\u201c."], [" *", " *}", " *_", " *&", "-*", " *\u201e", " *\u201c", " *__"], [" *", "-*", " *_", " *}", " *\u201c", " *\u2013", ":*", " *:"], [" *", " *&", "-*", " *}", ":*", " *_", " *\u201e", " *__"], ["-*", " *", " *_", " *}", " *&", " *__", " *\u201e", " *\u2013"], [" *__", " *_", " *&", " *", " *}", "-*", " *\u201e", " *\u2013"], [" *__", " *&", "-*", " *_", " *\u2013", " *}", ":*", " *"], [" *&", " *", ":*", " *__", "-*", " *_", " *\u2013", " *}"], [" *__", " *&", " *\u201e", " *_", " *}", " *", " *\u2013", "-*"], [" *__", " *&", " *_", " *}", "-*", " *", " *\u2013", " *\u201e"], [" *&", " *\u2013", "-*", " *__", "urtle", " *}", "iky", " *"], [" *&", " *\u2013", "-*", " *", ":*", "urtle", "\u20ac", "\u91ce\u82b1"], [" *\u2013", " *&", " *", "-*", "iks", "iky", "egrator", " *}"], [" *\u2013", " *", " *&", ":*", "\u20ac\u201c", "-*", "iks", "\u20ac"], [" *\u2013", " *", "-*", " *&", ":*", "\u20ac\u201c", "//*", "\u2022"], [" *\u2013", "-*", " *", " *&", ":*", "//*", "*h", "*&"], [" *\u2013", " *", "-*", " *&", "*&", " *}", "*h", " *\u201c"], [" *\u2013", " *", "-*", " *&", " *\u201c", "//*", ":*", " *}"], [" *", " *\u2013", " *&", "-*", "ikia", "erness", "inee", "egrator"], [" *", " *\u2013", " *&", "iks", "-*", " *\u201c", "ikia", "//*"], [" *", " *&", " *\u2013", "iks", "-*", "ivet", "etime", "//*"], [" *", "\n\n", " \n\n", "  \n\n", " *\u2013", " *&", "   \n\n", "-*"], [" *", " *&", " *\u2013", " *__", " *\u201c", "-*", "unky", "\u4e4e\u5176"], [" *", " *\u2013", " *__", " *&", "-*", " *\u201c", " *_", ":*"], [" *", "\n\n", " \n\n", "  \n\n", " *\u2013", " *&", " heavily", "-*"], [" *", " \n\n", "\n\n", "  \n\n", " *\u2013", " *\u201c", ":*", "-*"], [" *", " \n\n", "  \n\n", "\n\n", "\u2026*", " *\u2013", " \n\n\n", " *\u201c"], [" *", " \n\n", "  \n\n", " \u2013", " heavily", "<|endoftext|>", "\n\n", " uniquely"], [" *", "<|endoftext|>", " \n\n", "  \n\n", " heavily", " \u2013", "\n\n", " uniquely"], [" *", " \u2013", " heavily", " uniquely", " **", "  \n\n", " strategically", "\u2013"], [" *", " *\u2013", " \u2013", " **", " *\u201c", " foundational", " heavily", " leveraging"], [" *", " *\u2013", ":*", " **", "<|endoftext|>", " *\u201c", " \u2013", "\u2013"], [" *", " \u2013", "<|endoftext|>", " *\u2013", " **", ":*", "\u2013", "  \n\n"], [" *", " *\u2013", " **", " leveraging", ":*", " strategy", " tech", " \u2013"], [" *", " **", " *\u2013", " *@", " *\u201c", " strategy", ":*", " leveraging"], [" *", " strategy", " **", " Strategy", " *\u2013", " leveraging", " leverage", " tech"], [" *", " strategy", " Strategy", " tech", " leveraging", " implementation", " technology", " leverage"], [" strategy", " Strategy", " tech", " *", " technology", " implementation", " technologies", " leveraging"], [" strategy", " Strategy", " tech", " implementation", " technology", " technologies", " engineering", " leveraging"], [" strategy", " implementation", " Strategy", " technology", " technologies", " infrastructure", " tech", " leveraging"], [" strategy", " implementation", " Strategy", " technology", " tech", " leveraging", " workaround", " technologies"], [" strategy", " implementation", " Strategy", " solution", " tech", " **", " *", " infrastructure"], [" strategy", " **", " *", " Strategy", " implementation", " solution", " technique", " infrastructure"], [" **", " strategy", " **:", " Strategy", " **+", " *", ":**", ":*"], [" **", " strategy", " *", " Strategy", ":*", ":**", " **:", " **+"], [" **", " **:", " **+", "-**", ":**", "\uff1a**", " **:**", " **\""], [" **", " **+", " **#", " **:", " **:**", ":**", "-**", "\uff1a**"], [" **", " **:", " **:**", " **+", " **#", "\uff1a**", ":**", "**:"], [" **", ":**", "\uff1a**", " **:", " **:**", " **+", " **\"", " **#"], [" **", " **#", " **\"", "\uff1a**", ":**", "**", " **:", " **+"], [" **", " **#", " Problem", " **\"", " **+", "Problem", " **:", "-**"], [" **", " Problem", "Problem", "problem", " problem", " **#", "-**", " **\""], [" **", "**", "-**", " **#", " **\"", " **+", " Problem", " problem"], [" **", "**", " **\"", "-**", " **#", " **+", " **'", ";**"], [" **", "**", "-**", " **\"", " **#", " **+", " **'", ",**"], [" **", "**", " **\"", "-**", " **#", " **+", " **'", " **\u201c"], [" **", "**", " **\"", " Problem", "-**", " problem", "Problem", " **'"], [" **", "**", "-**", " **\"", " Problem", "  ", " **+", ".**"], [" **", "**", "-**", " **\"", " Problem", "  ", ",**", " **'"], ["  ", " **", " Problem", "Problem", " problem", " Break", "Strategy", " Strategy"]], "p": [[0.3383, 0.0855, 0.0855, 0.0519, 0.0404, 0.0335, 0.0278, 0.0123], [0.1387, 0.079, 0.045, 0.0373, 0.0273, 0.0129, 0.0074, 0.0069], [0.3992, 0.054, 0.0448, 0.0395, 0.0349, 0.0308, 0.0308, 0.0106], [0.2173, 0.0706, 0.0516, 0.0428, 0.0294, 0.0178, 0.0095, 0.009], [0.8148, 0.059, 0.0169, 0.0149, 0.0132, 0.0116, 0.007, 0.0043], [0.3174, 0.0665, 0.0487, 0.0457, 0.0404, 0.0404, 0.0404, 0.0203], [0.3998, 0.0739, 0.0695, 0.0477, 0.0477, 0.0372, 0.0272, 0.0272], [0.1428, 0.1184, 0.0813, 0.0718, 0.0674, 0.0674, 0.0559, 0.0493], [0.1964, 0.135, 0.1191, 0.0872, 0.0872, 0.0638, 0.0387, 0.025], [0.1566, 0.1219, 0.0478, 0.0372, 0.0328, 0.0328, 0.0308, 0.0088], [0.17, 0.1169, 0.0855, 0.0803, 0.0803, 0.0588, 0.0487, 0.0458], [0.3684, 0.0681, 0.0365, 0.0343, 0.0322, 0.0208, 0.0118, 0.0098], [0.209, 0.0412, 0.0387, 0.032, 0.0283, 0.022, 0.0151, 0.0134], [0.0275, 0.0275, 0.0147, 0.013, 0.0101, 0.0089, 0.0069, 0.0065], [0.0341, 0.0207, 0.0172, 0.0126, 0.0076, 0.0063, 0.0043, 0.003], [0.0474, 0.0326, 0.0198, 0.0106, 0.0044, 0.0044, 0.0041, 0.0034], [0.1137, 0.0254, 0.0136, 0.0128, 0.0128, 0.012, 0.0032, 0.0032], [0.2905, 0.0832, 0.0572, 0.0288, 0.0174, 0.0073, 0.0064, 0.0047], [0.1813, 0.0626, 0.0626, 0.0357, 0.014, 0.0066, 0.0058, 0.0055], [0.1889, 0.095, 0.0422, 0.0308, 0.0065, 0.0061, 0.0061, 0.0057], [0.1978, 0.12, 0.0285, 0.0196, 0.0064, 0.005, 0.0041, 0.0025], [0.1137, 0.1068, 0.0174, 0.0073, 0.005, 0.0037, 0.0034, 0.0032], [0.3576, 0.0401, 0.013, 0.0042, 0.0037, 0.0018, 0.0018, 0.0018], [0.171, 0.0132, 0.0103, 0.0038, 0.0023, 0.0013, 0.001, 0.001], [0.1687, 0.0354, 0.0259, 0.0167, 0.0108, 0.0108, 0.0065, 0.0051], [0.2735, 0.0154, 0.0136, 0.0088, 0.0027, 0.0027, 0.0018, 0.001], [0.3982, 0.0271, 0.0106, 0.0078, 0.0057, 0.0034, 0.0016, 0.0012], [0.3462, 0.0469, 0.0343, 0.0087, 0.0032, 0.0028, 0.0025, 0.0023], [0.3399, 0.0358, 0.0192, 0.014, 0.0124, 0.0052, 0.0038, 0.0038], [0.6497, 0.0533, 0.0252, 0.0077, 0.0072, 0.0064, 0.0053, 0.0044], [0.4031, 0.0375, 0.0122, 0.0089, 0.0084, 0.0042, 0.004, 0.0035], [0.2384, 0.0343, 0.0343, 0.0222, 0.0196, 0.0126, 0.0064, 0.0049], [0.3445, 0.0183, 0.0098, 0.0049, 0.0046, 0.0038, 0.0028, 0.0023], [0.2294, 0.0213, 0.0114, 0.0095, 0.0074, 0.0069, 0.0061, 0.0054], [0.2909, 0.061, 0.0271, 0.0164, 0.0113, 0.0113, 0.0106, 0.006], [0.3811, 0.0402, 0.0402, 0.0377, 0.0157, 0.0148, 0.0139, 0.013], [0.2306, 0.0189, 0.0101, 0.0074, 0.007, 0.0061, 0.0061, 0.0058], [0.6306, 0.0429, 0.0179, 0.009, 0.0062, 0.0048, 0.0029, 0.0029], [0.3316, 0.0226, 0.0121, 0.0121, 0.0078, 0.0057, 0.0044, 0.0044], [0.1051, 0.0819, 0.0341, 0.0194, 0.0118, 0.0081, 0.0076, 0.0072], [0.13, 0.0449, 0.0397, 0.0309, 0.0176, 0.0165, 0.0155, 0.0121], [0.1705, 0.0296, 0.0296, 0.0278, 0.0278, 0.0217, 0.0159, 0.014], [0.2081, 0.0385, 0.034, 0.0206, 0.0171, 0.0171, 0.0142, 0.0125], [0.3028, 0.0464, 0.0362, 0.0194, 0.0194, 0.0171, 0.0151, 0.0151], [0.2562, 0.0347, 0.0186, 0.0154, 0.0154, 0.0136, 0.0136, 0.0128], [0.2303, 0.1793, 0.0293, 0.0293, 0.0228, 0.0122, 0.0084, 0.0079], [0.9268, 0.0097, 0.0059, 0.004, 0.0031, 0.0028, 0.0023, 0.0017], [0.917, 0.009, 0.0058, 0.0048, 0.004, 0.0029, 0.0019, 0.0017], [0.9969, 0.0008, 0.0004, 0.0003, 0.0003, 0.0002, 0.0001, 0.0001], [0.9913, 0.0019, 0.0015, 0.001, 0.0009, 0.0007, 0.0006, 0.0005], [0.9802, 0.0096, 0.0031, 0.0021, 0.0017, 0.0007, 0.0006, 0.0003], [0.8474, 0.029, 0.0176, 0.0155, 0.0078, 0.0069, 0.0061, 0.0047], [0.9799, 0.0031, 0.0028, 0.0024, 0.0017, 0.0015, 0.0013, 0.0013], [0.9927, 0.0015, 0.0009, 0.0009, 0.0006, 0.0005, 0.0003, 0.0003], [0.9895, 0.0025, 0.0015, 0.0013, 0.0013, 0.0012, 0.0004, 0.0003], [0.9985, 0.0004, 0.0002, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001], [0.9986, 0.0009, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9983, 0.0013, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9989, 0.0009, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9992, 0.0003, 0.0001, 0.0001, 0.0001, 0.0001, 0.0, 0.0], [0.999, 0.0005, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9983, 0.0009, 0.0002, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9865, 0.0117, 0.0006, 0.0004, 0.0001, 0.0, 0.0, 0.0]], "ranks": {"Python": [17208, 129837, 77889, 131293, 52180, 98720, 36358, 88467, 94237, 72304, 12285, 96016, 39240, 82471, 83458, 93448, 47104, 38844, 35208, 34933, 54280, 156491, 123640, 129888, 79880, 103379, 79988, 44634, 34117, 13982, 10516, 13118, 17890, 19554, 17390, 5583, 6557, 12051, 10143, 9035, 8519, 11365, 7910, 18876, 24535, 13670, 18912, 29453, 22421, 51456, 56375, 32890, 18635, 42197, 54418, 70796, 46206, 39283, 44121, 43047, 26350, 3657, 825]}}, {"pos": 576, "top": [["  \n", "   \n", "  ", "  \n\n", "\u2026..", "  \r\n", " \u00a0", "\u00a0\u00a0"], ["  \r\n", "   \n", "  \n", "  ", " Geile", "   \r\n", "\u7687\u5c9b", "  \t\n"], ["   \n", "\u2026..", "  \n", "  ", "\u2026.", "\u2013", "\u2026\u2026", " \u200b\u200b"], [" milfs", " Blowjob", " cumshot", "enzi", " ;;^", "utnik", "\u0e40\u0e2a\u0e49\u0e19\u0e40\u0e25\u0e37\u0e2d\u0e14\u0e02\u0e2d\u0e14", "odle"], ["   \n", "  ", "  \n", "  \r\n", "  \n\n\n", "  \n\n", "   \n\n", " ....."], ["   \n", "  ", "  \n", "  \r\n", "  \n\n\n", " \u00a0", "  \t\n", "   \n\n"], ["  \n", "   \n", "  ", "  \r\n", "  \n\n", "  \n\n\n", "   \n\n", "      \n"], ["   \n", "  \n", "  \r\n", "  ", "   \n\n", "  \n\n\n", "  \n\n", "   \r\n"], ["  \n", "   \n", "  \r\n", "   \n\n", "  \n\n", "  \n\n\n", "  ", "  \n    \n"], ["  \r\n", "  \n", "   \n", "  ", "   \r\n", "  \n    \n", "  \n  \n", "\u5a9b\u5a9b"], ["  \n", "   \n", "  ", "  \r\n", "   \r\n", "  \n    \n", " \u00a0", "  \n\n\n"], ["  \r\n", "  ", "   \n", "   \r\n", "\ufffdt", "\u09cd\u09a1", "pike", " ***"], ["  \r\n", "\u09cd\u09a1", " wellness", "ersey", "pike", " impactful", "i\u00e3o", " savory"], ["  \r\n", " impactful", " wellness", " transformative", "-esque", "\u09cd\u09a1", " showcase", " upfront"], ["  ", "  \n", " folks", "-esque", " showcase", " \ufffd", " ", "  \r\n"], [" folks", "-esque", " showcasing", " showcase", " overarching", " savvy", "  ", " strategically"], ["  ", " folks", "-esque", " overarching", " showcase", " showcasing", " savvy", " strategically"], ["  ", "-esque", " \u00a0", " heavily", " strategically", " showcase", " overarching", " folks"], ["-esque", " heavily", " strategically", "  ", " complex", " uniquely", " just", " vastly"], ["<|endoftext|>", " heavily", " vastly", " swiftly", " myriad", " just", " uniquely", "  "], ["<|endoftext|>", "  \n\n", "   \n\n", "  ", " \n\n", "\n\n", " ", "  \r\n\r\n"], [" ``", " heavily", " uniquely", " complex", " strategically", " aggressively", " globally", " modern"], [" ``", " heavily", " uniquely", " complex", " modern", " aggressively", " much", " ''"], [" ``", " heavily", " ,", "<|endoftext|>", " much", " complex", " largely", " various"], ["  \n\n", " \n\n", "   \n\n", "\n\n", "  \r\n\r\n", "\r\n\r\n", "  ", " \r\n\r\n"], [" **", " ``", " **'", " heavily", " technology", " technologies", " complex", " architecture"], [" **", " ``", " ___", " technology", " architecture", " technologies", " systems", " complex"], [" **", " ,", " complex", " _", " heavily", " ``", " ___", " modern"], [" **", " complex", " technology", " modern", " systems", " heavily", " technologies", " techniques"], [" **", " ...", " ___", " technology", " complex", " __", " work", " systems"], [" ...", " **", " [...]", " technology", " \u2026", " complex", " ...\\", " work"], [" ...", " **", " ,", " complex", " [...]", " work", " technology", " \u2026"], [" ...", " ,", " using", " directly", " complex", " under", " heavily", " work"], [" ...", " [...]", " directly", " technology", " technical", " complex", " \u2026", " **"], [" ...", " directly", " **", " complex", " technology", " [...]", " technical", " \u2026"], [" ...", " \u2026", " [...]", " [\u2026]", " **", " ...\"", " *", " \u201c"], [" ...", " [...]", " directly", " **", " \u2026", " *", " internally", " direct"], [" ...", " [...]", " \u2026", " directly", " **", " Direct", " direct", " independent"], [" ...", " [...]", " directly", " \u2026", " direct", " internally", " technical", " independent"], [" directly", " independent", " direct", " internally", " Direct", " **", " [...]", " control"], [" directly", " Direct", " direct", " transfer", " independent", " internally", " control", " interface"], [" transfer", " internally", " interface", " Transfer", " control", " transfers", " transferring", " internal"], [" transfer", " Transfer", " interface", " transfers", " internally", " transferring", " control", " internal"], [" transfer", " internally", " interface", " Transfer", " transfers", " control", " internal", " transferring"], [" transfer", " internally", " interface", " control", " transfers", " internal", " Transfer", " transferring"], [" transfer", " internally", " interface", " transfers", " Transfer", " internal", " control", " design"], [" Entire", " transfer", " entire", " Transfer", " interface", " internally", " internal", "-transfer"], [" **", " Entire", " Transfer", " transfer", " entire", " Direct", " internally", " Design"], [" **", " **\"", " **'", " Entire", " Transfer", "-transfer", " **\u201c", " transfer"], [" **", " **:", " **'", " **\"", " **+", " **:**", "\uff1a**", "-**"], [" **", " **:", " **+", " **:**", " **'", " **\"", " **#", "\uff1a**"], [" **", " **:", " **\"", " **'", " **:**", " **+", " :**", "\uff1a**"], [" **", " **:", " **\"", " **'", " Create", " **#", " **+", " **:**"], [" **", " **\"", " **:", " **'", " **\u25a0", " **#", " **+", "**"], [" **", " Problem", " **:", " problem", " **\u25a0", " **\"", "Problem", " Create"], [" **", " Problem", " problem", " **:", " **\"", " **\u25a0", " **'", " **#"], [" **", " **\"", " **:", "**", " **'", " **+", " **#", " **\u25a0"], [" **", " **\"", " **:", "**", " **'", " **+", " **#", " Problem"], [" **", " Architecture", "\u67b6\u6784", " architecture", "Architecture", "architecture", " **\"", " **:"], [" **", " Break", " Architecture", " architecture", "\u67b6\u6784", " break", "Architecture", " Problem"], [" **", " Problem", " problem", " Break", " Architecture", "**", " architecture", "Problem"], [" **", "**", " **\"", " Problem", " **:", " Architecture", " **'", " **."], [" **", " Problem", " **\"", " Break", " Architecture", " Build", " **#", " **."]], "p": [[0.6374, 0.2069, 0.1422, 0.0055, 0.0016, 0.0008, 0.0006, 0.0005], [0.2257, 0.1457, 0.0392, 0.0112, 0.0044, 0.0041, 0.0032, 0.002], [0.3884, 0.2356, 0.1835, 0.0765, 0.0248, 0.0151, 0.0097, 0.0059], [0.0103, 0.008, 0.0059, 0.0049, 0.003, 0.0023, 0.0023, 0.0022], [0.3117, 0.3117, 0.2751, 0.0256, 0.0083, 0.0065, 0.0025, 0.0007], [0.5354, 0.3247, 0.1195, 0.0063, 0.0011, 0.0004, 0.0003, 0.0003], [0.8074, 0.1403, 0.0355, 0.0115, 0.0029, 0.0006, 0.0004, 0.0002], [0.4785, 0.4223, 0.0572, 0.027, 0.006, 0.0025, 0.0025, 0.0013], [0.45, 0.3093, 0.0782, 0.069, 0.0369, 0.0224, 0.012, 0.012], [0.409, 0.1932, 0.1172, 0.0191, 0.0075, 0.007, 0.0015, 0.001], [0.5264, 0.2194, 0.1331, 0.1036, 0.0024, 0.0023, 0.0016, 0.0011], [0.0335, 0.0079, 0.007, 0.0051, 0.0051, 0.0033, 0.0027, 0.0024], [0.0055, 0.0029, 0.0022, 0.0022, 0.002, 0.0018, 0.0015, 0.0015], [0.0041, 0.0026, 0.0026, 0.0023, 0.0023, 0.0022, 0.0019, 0.0017], [0.057, 0.012, 0.0087, 0.0036, 0.0034, 0.0024, 0.0024, 0.0024], [0.0182, 0.0046, 0.0043, 0.0043, 0.0038, 0.0034, 0.003, 0.0028], [0.0367, 0.0135, 0.0087, 0.006, 0.0041, 0.0036, 0.0036, 0.003], [0.046, 0.0066, 0.0029, 0.0028, 0.0024, 0.0022, 0.002, 0.002], [0.0086, 0.0052, 0.0034, 0.0032, 0.0032, 0.003, 0.0028, 0.0026], [0.0256, 0.0065, 0.0044, 0.0044, 0.0042, 0.0039, 0.0039, 0.0039], [0.9958, 0.0012, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.1059, 0.0077, 0.0027, 0.0023, 0.0023, 0.0023, 0.0019, 0.0015], [0.2483, 0.0169, 0.0052, 0.0048, 0.0031, 0.0029, 0.0026, 0.0026], [0.0413, 0.0162, 0.0126, 0.0087, 0.0081, 0.0059, 0.0059, 0.0056], [0.5744, 0.0777, 0.0605, 0.0197, 0.0135, 0.0119, 0.006, 0.0053], [0.3563, 0.0115, 0.0079, 0.0058, 0.0054, 0.0048, 0.0045, 0.0037], [0.1531, 0.0301, 0.0111, 0.0092, 0.0076, 0.0063, 0.0059, 0.0059], [0.1043, 0.0318, 0.017, 0.0125, 0.0117, 0.008, 0.0076, 0.0071], [0.1796, 0.0275, 0.0202, 0.0178, 0.0167, 0.0101, 0.0079, 0.0079], [0.6725, 0.0356, 0.0191, 0.0109, 0.0102, 0.0058, 0.0055, 0.0055], [0.9501, 0.0077, 0.0039, 0.0015, 0.0015, 0.0013, 0.001, 0.0007], [0.8432, 0.0145, 0.0069, 0.005, 0.0025, 0.0024, 0.0022, 0.0022], [0.0896, 0.0543, 0.0156, 0.0137, 0.0137, 0.0074, 0.0069, 0.0065], [0.4236, 0.0348, 0.0271, 0.0254, 0.0225, 0.0225, 0.0145, 0.0128], [0.3323, 0.0309, 0.029, 0.0241, 0.0241, 0.0187, 0.0155, 0.0146], [0.663, 0.19, 0.1017, 0.0166, 0.0033, 0.0024, 0.0016, 0.0013], [0.2328, 0.117, 0.0756, 0.0667, 0.0519, 0.0261, 0.023, 0.0217], [0.282, 0.1038, 0.0629, 0.0591, 0.0231, 0.0204, 0.0192, 0.018], [0.3289, 0.0885, 0.0537, 0.0393, 0.0224, 0.0164, 0.0154, 0.0144], [0.082, 0.0498, 0.0388, 0.0388, 0.0342, 0.0342, 0.0266, 0.0266], [0.0562, 0.0562, 0.0466, 0.0301, 0.022, 0.0182, 0.0161, 0.0161], [0.1797, 0.0621, 0.0548, 0.0427, 0.0427, 0.0401, 0.0377, 0.0332], [0.2674, 0.0766, 0.072, 0.0635, 0.0597, 0.0527, 0.0265, 0.0249], [0.1912, 0.0797, 0.0661, 0.0483, 0.0427, 0.0354, 0.0354, 0.0332], [0.2063, 0.086, 0.0591, 0.0591, 0.0555, 0.0406, 0.0297, 0.0204], [0.1327, 0.0667, 0.0553, 0.0458, 0.0357, 0.0357, 0.0335, 0.0278], [0.0506, 0.0476, 0.0394, 0.0348, 0.0348, 0.0348, 0.0186, 0.0175], [0.1274, 0.0823, 0.0531, 0.0343, 0.0322, 0.0322, 0.0162, 0.0119], [0.9373, 0.0134, 0.0072, 0.0043, 0.0021, 0.0017, 0.0015, 0.0014], [0.9087, 0.0214, 0.0084, 0.0079, 0.0065, 0.0058, 0.0027, 0.0026], [0.9828, 0.0096, 0.0013, 0.001, 0.0007, 0.0007, 0.0005, 0.0004], [0.8017, 0.0958, 0.0166, 0.0122, 0.0061, 0.0045, 0.0033, 0.0027], [0.8744, 0.0339, 0.0233, 0.0097, 0.0046, 0.0032, 0.0028, 0.0026], [0.9758, 0.0045, 0.0045, 0.0027, 0.0017, 0.0017, 0.0015, 0.0005], [0.913, 0.0148, 0.013, 0.0079, 0.0048, 0.0031, 0.0023, 0.0023], [0.9489, 0.0082, 0.0064, 0.0064, 0.0044, 0.0021, 0.0016, 0.0013], [0.995, 0.0013, 0.0008, 0.0006, 0.0003, 0.0003, 0.0002, 0.0001], [0.9957, 0.0012, 0.0006, 0.0004, 0.0003, 0.0002, 0.0002, 0.0001], [0.9806, 0.0075, 0.0051, 0.0035, 0.0011, 0.0003, 0.0003, 0.0002], [0.9835, 0.004, 0.004, 0.0019, 0.0012, 0.0009, 0.0005, 0.0004], [0.9956, 0.0022, 0.0006, 0.0003, 0.0003, 0.0002, 0.0001, 0.0001], [0.9995, 0.0002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9995, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Python": [55158, 225552, 151639, 138350, 27050, 55712, 20979, 65745, 104491, 175448, 56675, 96122, 76358, 66249, 40677, 47620, 42207, 27974, 36092, 48074, 8264, 12019, 5937, 8104, 4009, 1382, 1695, 1769, 1073, 1009, 1673, 2900, 5057, 1382, 1083, 361, 132, 109, 173, 45, 17, 49, 66, 186, 189, 160, 129, 113, 189, 259, 3069, 126, 81, 131, 253, 184, 117, 171, 213, 232, 319, 287, 196]}}, {"pos": 577, "top": [["s", "**\u2013", " \u2013", "**.", " **\u2013", "**:", " **", "**"], ["**\u2013", "s", " **\u2013", " **", "**.", "-**", " \u2013**", "\u2026**"], ["**\u2013", "s", "\u2026**", " **\u2013", "**.", "**\u3002", " \u2013**", "**"], ["\uff1f**", "\u300d**", " **\u300c", " **", " **\u00ab", " **:", "**\u3002", " **."], ["s", " **", " **.", "**.", "-**", "**\u3002", " **#", "**"], [" **", "-**", "**.", " **.", "s", " **\u201c", "(**", " **#"], ["s", " **", "**", "**.", "-**", "**\u3002", "\u2019**", "**-"], [" **", "s", "-**", "**", " **#", "**.", "**-", " **."], [" **", "**", "s", "**.", " **#", "-**", " **.", "(**"], [" **", "s", "-**", " **#", "**", "**-", ">**", "**,"], ["s", " **", "**", " **#", "...**", "-**", "**.", "er"], [" **", " **#", " **\u00ab", "-**", " **'", " **-", ">**", " **\u300c"], [" **", " **\u00ab", "-**", " **#", "...**", " **-", " **.", "**"], [" **", " **\u00ab", "-**", " **#", "...**", " **\u2013", " **-", " **+"], [" **", "s", "er", "...**", "-**", "ing", " **#", "\u2026**"], [" **", "s", "er", "ing", "-**", " **\u2013", "a", " **#"], [" **", "s", "ing", " **\u2013", "er", "...**", "\u2026**", "a"], [" **", " **\u2013", "s", "\u2026**", "...**", "**\u2013", "-**", "**,"], [" **", "...**", "**", "**,", "\u2026**", "-**", " **\u2013", " **#"], [" **", "...**", "**,", "**", "\u2026**", " **\u2013", "**:", "**\u2013"], [" **", "**,", "**", "a", "**:", "...**", "ing", "s"], [" **", " **#", ">**", "**:", "-**", "\u2019**", " **\u2013", " **+"], [" **", " **#", "ing", "**,", ">**", "s", "**", "**:"], [" **", "s", "ing", "a", "er", "**,", " **#", "**"], [" **", "  \n\n", " \n\n", "...**", "**,", "\r\n\r\n", " \r\n\r\n", "**"], [" **", " **#", " **'", "**:", "...**", ">**", "**,", " **+"], [" **", " **#", "...**", " **'", "**,", "**:", "**", " **\u2018"], [" **", " \n\n", "\u2011", "  \n\n", " **[", "a", "\n\n", "\r\n\r\n"], [" **", "\u2011", "**", "...**", "**:", "**,", " **[", " \n\n"], [" **", "...**", "**", "\u2026**", "\u2011", "**,", " **[", "**:"], [" **", "\u2011", " ...", " \n\n", "...**", "**", "a", " technology"], [" **", "\u2011", " technology", "a", "...**", " development", " work", "**"], [" **", " technology", " development", " design", " concept", " use", " focus", " key"], [" **", " technology", " modular", " tech", " design", "\u2011", "**:", " foundational"], [" **", "**:", "\u2011", "?**", " technology", " leveraging", "**\u2013", " modular"], [" **", "\u2011", "**", "**:", " technology", "\u2026**", "?**", " hardware"], [" **", " hardware", " leveraging", " technology", " software", " modular", " tech", " infrastructure"], [" hardware", " **", " software", " technology", " leveraging", " modular", " tech", " technical"], [" hardware", " technology", " **", " software", " technical", " tech", " design", " implementation"], [" hardware", " technology", " **", " technical", " tech", " architecture", " software", " choice"], [" hardware", " technology", " software", " technical", " tech", " choice", " architecture", " technologies"], [" technology", " hardware", " software", " architecture", " technologies", " engineering", " using", " technical"], [" technology", " hardware", " software", " architecture", " technologies", " modular", " choice", " engineering"], [" technology", " hardware", " software", " architecture", " choice", " technologies", " technical", " tech"], [" choice", " hardware", " technology", " architecture", " software", " use", " modular", " strategy"], [" choice", " Choice", " technology", " hardware", " use", " strategy", " modular", " architecture"], [" choice", " Choice", "**:", " **", ":**", " hardware", " strategy", " use"], [" **", "**:", ":**", "\uff1a**", " Choice", " :**", "**", " choice"], ["**:", ":**", " **", " :**", "\uff1a**", " **:", "**", "-**"], [":**", "**:", " Strategy", "\uff1a**", " strategy", " :**", " Problem", " workaround"], [":**", "**:", "\uff1a**", " :**", "?**", " **:", ">**", "-**"], [":**", " :**", "**:", "\uff1a**", " Strategy", " Implementation", " Problem", "!**"], [":**", " Strategy", " :**", " Problem", " Reality", " strategy", "\uff1a**", "**:"], [" Problem", " Reality", " Strategy", " problem", "Problem", " Implementation", " Architecture", " strategy"], [" Problem", " problem", "Problem", "problem", " Reality", " Strategy", " Implementation", " Solution"], [" Problem", " problem", "Problem", "problem", " Reality", " Strategy", " strategy", " Architecture"], [" Problem", " Strategy", " problem", "Problem", " strategy", " Reality", " Architecture", " Implementation"], [" Problem", " Strategy", " Reality", " problem", "Problem", " Architecture", " strategy", " Solution"], [" Architecture", " Problem", " Strategy", " architecture", "\u67b6\u6784", " problem", "Architecture", "Problem"], [" Break", " Problem", " Architecture", " problem", " Strategy", " break", "Break", " architecture"], [" Problem", " Break", " Architecture", " Strategy", " problem", " architecture", " break", "Problem"], [" Architecture", " Problem", " Break", " Strategy", "Architecture", " problem", "Problem", " architecture"], ["Problem", "Architecture", " Problem", "Break", "Strategy", " Strategy", " Architecture", " Break"]], "p": [[0.9978, 0.0007, 0.0006, 0.0006, 0.0001, 0.0, 0.0, 0.0], [0.4144, 0.1727, 0.0925, 0.072, 0.0385, 0.03, 0.03, 0.0182], [0.5253, 0.2481, 0.0806, 0.0711, 0.0262, 0.0204, 0.0085, 0.0035], [0.1783, 0.1016, 0.0743, 0.0616, 0.0616, 0.048, 0.031, 0.0274], [0.7216, 0.161, 0.0247, 0.015, 0.0117, 0.0103, 0.008, 0.0071], [0.6084, 0.1198, 0.0441, 0.0389, 0.0343, 0.0184, 0.0126, 0.0126], [0.4631, 0.4086, 0.0335, 0.018, 0.0123, 0.0096, 0.0066, 0.0051], [0.8198, 0.0462, 0.0318, 0.0248, 0.0133, 0.0133, 0.0063, 0.0063], [0.7082, 0.0581, 0.0513, 0.04, 0.0353, 0.013, 0.0101, 0.0089], [0.579, 0.2414, 0.0539, 0.0475, 0.0083, 0.0064, 0.0057, 0.0057], [0.5884, 0.3569, 0.0157, 0.0108, 0.0051, 0.0045, 0.0027, 0.0021], [0.9811, 0.0075, 0.0028, 0.0028, 0.0005, 0.0005, 0.0004, 0.0004], [0.9853, 0.0036, 0.0031, 0.0028, 0.001, 0.0004, 0.0003, 0.0003], [0.944, 0.0173, 0.0105, 0.0072, 0.0022, 0.0016, 0.0013, 0.0012], [0.6272, 0.3357, 0.0108, 0.0029, 0.0027, 0.0024, 0.0018, 0.0015], [0.5156, 0.4016, 0.0188, 0.0176, 0.0033, 0.0031, 0.0024, 0.0021], [0.4459, 0.4459, 0.0252, 0.0135, 0.0112, 0.0064, 0.005, 0.0044], [0.8026, 0.0659, 0.0189, 0.0147, 0.013, 0.013, 0.0101, 0.0101], [0.9037, 0.0188, 0.0114, 0.01, 0.0078, 0.0069, 0.0069, 0.0054], [0.5714, 0.0773, 0.0682, 0.0602, 0.0303, 0.0196, 0.0184, 0.0162], [0.5465, 0.0787, 0.0421, 0.0349, 0.0308, 0.0187, 0.0176, 0.0165], [0.9538, 0.0136, 0.002, 0.0018, 0.0016, 0.0015, 0.0013, 0.0012], [0.9536, 0.0057, 0.0021, 0.0018, 0.0012, 0.001, 0.0009, 0.0009], [0.6263, 0.0178, 0.013, 0.0108, 0.0089, 0.0045, 0.0029, 0.0017], [0.6927, 0.0345, 0.0345, 0.0153, 0.0144, 0.0135, 0.0127, 0.0087], [0.9872, 0.0023, 0.0005, 0.0004, 0.0004, 0.0003, 0.0003, 0.0003], [0.9698, 0.0018, 0.0008, 0.0006, 0.0006, 0.0005, 0.0005, 0.0003], [0.8451, 0.0073, 0.003, 0.0024, 0.001, 0.001, 0.0009, 0.0008], [0.9722, 0.0019, 0.0018, 0.001, 0.0009, 0.0008, 0.0007, 0.0007], [0.9858, 0.0059, 0.0013, 0.0013, 0.0004, 0.0002, 0.0002, 0.0002], [0.9307, 0.0032, 0.0025, 0.0023, 0.0018, 0.0013, 0.0013, 0.001], [0.9468, 0.0012, 0.0007, 0.0006, 0.0006, 0.0006, 0.0005, 0.0005], [0.1957, 0.0092, 0.0081, 0.0076, 0.0067, 0.0067, 0.0063, 0.0063], [0.5088, 0.0253, 0.0099, 0.0077, 0.0077, 0.0073, 0.0073, 0.0064], [0.5147, 0.0422, 0.0226, 0.0187, 0.0114, 0.01, 0.0089, 0.0083], [0.4125, 0.0673, 0.0594, 0.0408, 0.0205, 0.0193, 0.016, 0.0141], [0.1515, 0.0672, 0.0462, 0.0318, 0.028, 0.0263, 0.0232, 0.0132], [0.0984, 0.0495, 0.0465, 0.041, 0.0362, 0.0265, 0.0265, 0.0194], [0.0825, 0.0567, 0.0532, 0.0532, 0.0441, 0.0236, 0.0208, 0.0196], [0.11, 0.0805, 0.0756, 0.0278, 0.0217, 0.0203, 0.018, 0.0158], [0.1542, 0.1128, 0.047, 0.0366, 0.0304, 0.0268, 0.0196, 0.0143], [0.1393, 0.1393, 0.0957, 0.0292, 0.0242, 0.0227, 0.0227, 0.0214], [0.1358, 0.1199, 0.0877, 0.0343, 0.0323, 0.0208, 0.0208, 0.0208], [0.1154, 0.0899, 0.0512, 0.0399, 0.0352, 0.0311, 0.0213, 0.0188], [0.093, 0.0821, 0.068, 0.0413, 0.0284, 0.0266, 0.0235, 0.0235], [0.1995, 0.0504, 0.0347, 0.0326, 0.0326, 0.0306, 0.0197, 0.0186], [0.1101, 0.0806, 0.0554, 0.0489, 0.0315, 0.0296, 0.0262, 0.0246], [0.3111, 0.0837, 0.0694, 0.0272, 0.0225, 0.0212, 0.0176, 0.0146], [0.5254, 0.1933, 0.1035, 0.0489, 0.0431, 0.0132, 0.0096, 0.0085], [0.222, 0.1433, 0.0721, 0.034, 0.022, 0.0207, 0.0125, 0.0118], [0.357, 0.2165, 0.1313, 0.0903, 0.0228, 0.0228, 0.013, 0.0122], [0.2379, 0.0413, 0.0413, 0.0388, 0.0322, 0.0221, 0.0195, 0.0172], [0.1541, 0.12, 0.047, 0.039, 0.0285, 0.0268, 0.0209, 0.0196], [0.6168, 0.0506, 0.0447, 0.0307, 0.0239, 0.0106, 0.01, 0.0094], [0.7509, 0.1305, 0.0374, 0.0177, 0.0138, 0.0035, 0.0031, 0.0027], [0.6794, 0.1718, 0.0299, 0.0205, 0.0141, 0.0141, 0.0067, 0.0059], [0.6751, 0.0914, 0.0628, 0.0297, 0.0204, 0.018, 0.0124, 0.0124], [0.5345, 0.1352, 0.0638, 0.0563, 0.0302, 0.0266, 0.0235, 0.0126], [0.4086, 0.3606, 0.0488, 0.0431, 0.0335, 0.0231, 0.018, 0.014], [0.4866, 0.2029, 0.0846, 0.0353, 0.0311, 0.0311, 0.0147, 0.0147], [0.4928, 0.2054, 0.0856, 0.0589, 0.0589, 0.0149, 0.0116, 0.0116], [0.2626, 0.2626, 0.1805, 0.1241, 0.0277, 0.019, 0.0168, 0.0168], [0.464, 0.1173, 0.1035, 0.0806, 0.0806, 0.0336, 0.0262, 0.0204]], "ranks": {"Python": [26381, 175122, 41216, 82726, 10594, 31148, 9447, 22701, 24361, 28967, 6562, 21096, 14206, 15751, 7913, 14091, 14914, 16088, 15042, 30636, 7751, 11262, 6593, 6924, 5244, 2278, 1533, 1503, 757, 551, 1003, 1234, 2129, 799, 651, 84, 12, 13, 12, 21, 20, 25, 19, 54, 70, 74, 169, 176, 223, 1269, 8052, 3410, 5499, 7052, 8443, 6596, 3086, 4158, 3425, 3519, 2999, 1991, 224]}}, {"pos": 578, "top": [[".", ",", "\u00a0\u00a0", "\u00a0", "\u2026.", "[", "\u2026", "\u2013"], ["\u00a0\u00a0", "\uff0e", "\u00a0\u00a0\u00a0", " \uff08", " \u00a0", "\u00ad", "\ufffd", ","], [",", "\u2013", "\u2026", ".", "\u2026.", "\u00a0\u00a0", "[", "?"], ["\uff3f\uff3f", "\uc368", "\ufffd\ufffd", "uggy", "shal", " \u300e", "\uc3df", ".magic"], ["\u00a0\u00a0", " \uff08", "\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0", "\u00a0\u00a0\u00a0", "\u00a0\u00a0\u00a0\u00a0", " \u2019", "\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0", " \uff09"], [" \uff08", "\u00a0\u00a0", "\uff01", " \uff09", "\u00a0\u00a0\u00a0", "\u00a0\u00a0\u00a0\u00a0", "\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0", "\uff1f"], ["\uff01", "\uff1f", " \uff08", "\uff0e", "\u00a0\u00a0\u00a0\u00a0", "\uff01\uff01\uff01", "\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0", "\u00a0\u00a0\u00a0"], ["\uff01", "-solving", "\uff01\uff01\uff01", "\u00a0\u00a0\u00a0", "\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0", "\uff1f", "\u00a0\u00a0", "istic"], ["\u00a0\u00a0", "\u00a0\u00a0\u00a0", "\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0", "\u00a0\u00a0\u00a0\u00a0", "\u00a0", "\uff01", " \u00a0 \u00a0", "-solving"], ["\u00a0\u00a0\u00a0", "\u00a0\u00a0", "\u00a0", "-solving", "\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0", "\u00a0\u00a0\u00a0\u00a0", " \u00ad", "sson"], ["\u00a0\u00a0", "\u00a0", "\u00a0\u00a0\u00a0", "\u00a0\u00a0\u00a0\u00a0", "\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0", "...", " \u00ad", " \u00a0 \u00a0"], ["-solving", "sson", "/problem", "\u6027\u5730", "uffy", "\u6027\u5de5\u4f5c", "istic", "\u548c\u95ee\u9898"], ["-solving", "uffy", "\u6027\u5730", "lessness", "istic", "/problem", "sson", "\u6027\u5de5\u4f5c"], ["-solving", "\u7a98\u5883", "uffy", "/problem", " Problem", "lessness", "\u96be\u9898", "\u6027\u95ee\u9898"], ["-solving", " problem", " trouble", " \u201e", " Trouble", " Problem", "\u7a98\u5883", "istic"], ["-solving", "\u7a98\u5883", "uffy", "\u6027\u5de5\u4f5c", "\u5f88\u591a\u95ee\u9898", " Problem", " Trouble", "\u91cd\u91cd\u7684"], ["-solving", " Problem", "\u7a98\u5883", "uffy", "\u6027\u95ee\u9898", " trouble", " problem", "\u6027\u5de5\u4f5c"], ["-solving", "...**", ":...", "...", " Problem", "\u7a98\u5883", "\u96be\u9898", "/problem"], ["-solving", " Problem", "...**", "/problem", "\u7a98\u5883", "\u96be\u9898", "(problem", "problem"], ["-solving", " Problem", "/problem", "?!", "problem", "\u96be\u9898", "Problem", "..."], [" Problem", "/problem", "-solving", "Problem", "problem", "...", "?...", " Problems"], ["/problem", "-solving", "\u7a98\u5883", "\u4ec0\u4e48\u95ee\u9898", " Problem", "unky", "\u96be\u9898", "Probl"], ["/problem", " Problem", "-solving", "\u4ec0\u4e48\u95ee\u9898", "Problem", "\u96be\u9898", "\u7a98\u5883", "(problem"], ["/problem", " Problem", " problems", "Problem", " problem", "problem", " Problems", "\u4ec0\u4e48\u95ee\u9898"], ["/problem", "Problem", "problem", " Problem", "\n\n", "\u4ec0\u4e48\u95ee\u9898", "-solving", "problems"], ["/problem", "\u4ec0\u4e48\u95ee\u9898", "/problems", "\u7a98\u5883", "-solving", " Problem", "(problem", " problem"], ["/problem", "\u4ec0\u4e48\u95ee\u9898", "-solving", " Problem", " problem", " problems", "\u7a98\u5883", "Problem"], ["\n\n", "/problem", " --", " ___", " ?", " problem", " problems", " ---"], ["/problem", " Problem", "Problem", " problem", " problems", "\u4ec0\u4e48\u95ee\u9898", "problem", "-solving"], [" Problem", " problem", " problems", "/problem", "Problem", " ?**", " ___", "problem"], [" problem", " problems", " Problem", " ?", " :", " ...", " lack", "..."], [" problems", " problem", " Problem", " lack", " :", " difficult", " difficulty", " issues"], [" problem", " problems", " lack", " Problem", " inability", " difficulty", " crisis", " :"], [" problem", " Problem", " problems", " lack", "/problem", " inability", "/problems", " crisis"], ["/problem", " Problem", " problem", " inability", " lack", "problem", "(problem", "/problems"], [" Problem", " inability", "/problem", " problem", " impossible", " inefficient", " lack", "problem"], [" inability", " Problem", "/problem", " impossible", "\u65e0\u6cd5\u6ee1\u8db3", " Impossible", " problem", " inefficient"], [" Problem", "/problem", " inability", " problem", " Impossible", " impossible", "\u65e0\u6cd5\u6ee1\u8db3", " inefficient"], [" Problem", " problem", "/problem", " inability", " problems", "problem", " Problems", "Problem"], [" Problem", " problem", "/problem", " inability", " Impossible", "problem", " problems", " impossible"], [" Problem", " problem", "/problem", " inability", " problems", " Problems", "problem", " Impossible"], [" Problem", " problem", "/problem", " problems", " inability", " Problems", " inefficient", "problem"], [" Problem", " problem", "/problem", " problems", " inability", " Problems", " inefficient", "\u65e0\u6cd5\u6ee1\u8db3"], [" Problem", " problem", "/problem", " problems", " inability", " Problems", " inefficient", " impossible"], [" problem", " Problem", " inability", "/problem", " problems", "\u65e0\u6cd5\u6ee1\u8db3", " impossible", " inefficient"], [" problem", " Problem", "/problem", " inability", " problems", "\u65e0\u6cd5\u6ee1\u8db3", " impossible", " lack"], [" Problem", "/problem", " problem", " inability", " Impossible", "\u65e0\u6cd5\u6ee1\u8db3", " Problems", " impossible"], [" Problem", "/problem", " problem", " Impossible", " inability", " Problems", "\u65e0\u6cd5\u6ee1\u8db3", " impossible"], ["\u65e0\u6cd5\u6ee1\u8db3", " inability", "/problem", " Impossible", " Problem", "\u907f\u514d\u56e0", " imposs", " Cannot"], ["\u65e0\u6cd5\u6ee1\u8db3", ":", " Cannot", " Impossible", " inability", "\u4e0d\u80fd\u5728", "/problem", " Needed"], ["\u65e0\u6cd5\u6ee1\u8db3", " Cannot", " Impossible", ":", "/problem", "\u4e0d\u80fd\u5728", "\u65e0\u6cd5", " Problem"], ["\u65e0\u6cd5\u6ee1\u8db3", " Cannot", "\u4e0d\u80fd\u5728", "\u4e0d\u80fd\u8ba9", ":", "*:", ":*", " Requires"], [":*", ":`", "*:", ":", " Cannot", ":**", ":</", "\u4e0d\u80fd\u5728"], [":*", " Cannot", ":`", "\u4e0d\u80fd\u5728", ":**", "*:", "\u4e0d\u80fd\u8ba9", ":</"], [":*", ":`", "*:", ":", "+:", " Cannot", ":**", " CPU"], [" Python", " Pure", "Python", ":*", "Pure", " pure", " python", " OpenGL"], [" Python", "Python", " python", "/python", "-python", "python", " PYTHON", " Pure"], [" Python", "Python", " python", "python", "-python", "/python", " PYTHON", ":`"], [" Python", "Python", " python", "-python", "python", ":*", "/python", " PYTHON"], [" Python", "Python", " python", " Pure", "-python", "Pure", " pure", " PYTHON"], [" Python", " Pure", " pure", "Pure", "Python", ":*", " python", "pure"], [" Python", " Pure", ":", ":*", " pure", "Pure", "Python", ":**"], [":**", "**:", " :**", "\uff1a**", ":*", " Python", ":", " Pure"]], "p": [[0.3296, 0.3296, 0.2265, 0.0394, 0.0106, 0.0093, 0.0083, 0.0064], [0.4933, 0.0589, 0.0459, 0.0191, 0.014, 0.0124, 0.0124, 0.0116], [0.2757, 0.1672, 0.1302, 0.108, 0.0895, 0.0615, 0.0273, 0.0089], [0.0098, 0.0068, 0.0063, 0.0036, 0.003, 0.0028, 0.0025, 0.0022], [0.3236, 0.1349, 0.0871, 0.0599, 0.0599, 0.0562, 0.0234, 0.0172], [0.4495, 0.0942, 0.0734, 0.0418, 0.0326, 0.0287, 0.021, 0.0198], [0.2614, 0.1399, 0.0849, 0.0515, 0.0293, 0.0243, 0.0243, 0.0189], [0.0799, 0.0276, 0.0276, 0.0259, 0.0244, 0.0202, 0.0178, 0.0157], [0.0797, 0.0749, 0.0661, 0.0354, 0.0354, 0.0332, 0.0312, 0.0178], [0.0659, 0.0659, 0.0292, 0.0275, 0.0167, 0.0147, 0.013, 0.0108], [0.2433, 0.2017, 0.1475, 0.0578, 0.045, 0.0423, 0.0213, 0.02], [0.0723, 0.0052, 0.0049, 0.0043, 0.0036, 0.0036, 0.0034, 0.003], [0.0929, 0.0067, 0.0059, 0.0046, 0.0043, 0.0041, 0.0034, 0.0032], [0.0427, 0.0035, 0.0033, 0.0031, 0.0029, 0.0027, 0.0026, 0.0024], [0.016, 0.0059, 0.0052, 0.0052, 0.0052, 0.0046, 0.0043, 0.0043], [0.0128, 0.0061, 0.0042, 0.0035, 0.0032, 0.0027, 0.0025, 0.0024], [0.0273, 0.0069, 0.0065, 0.0039, 0.0035, 0.0035, 0.0035, 0.0031], [0.0546, 0.0157, 0.0089, 0.0065, 0.0065, 0.0051, 0.0048, 0.0045], [0.0576, 0.0155, 0.0155, 0.0113, 0.0078, 0.0069, 0.0061, 0.0057], [0.0489, 0.0316, 0.0246, 0.0246, 0.0169, 0.0109, 0.009, 0.008], [0.0818, 0.0363, 0.0301, 0.0283, 0.0234, 0.022, 0.0134, 0.0125], [0.026, 0.0131, 0.0108, 0.0096, 0.0084, 0.007, 0.0062, 0.0048], [0.0991, 0.0499, 0.0322, 0.0302, 0.0172, 0.0172, 0.0162, 0.0162], [0.0833, 0.0783, 0.0446, 0.0419, 0.0393, 0.0306, 0.0239, 0.0224], [0.1336, 0.0918, 0.0462, 0.0462, 0.0298, 0.0263, 0.016, 0.015], [0.31, 0.0271, 0.0239, 0.0225, 0.0186, 0.0175, 0.0145, 0.0136], [0.2925, 0.0396, 0.0308, 0.0256, 0.024, 0.0212, 0.0165, 0.0137], [0.6229, 0.031, 0.0257, 0.02, 0.0188, 0.0177, 0.0166, 0.0107], [0.2053, 0.097, 0.0553, 0.0488, 0.043, 0.043, 0.0179, 0.014], [0.1206, 0.1, 0.0829, 0.0732, 0.0325, 0.0238, 0.021, 0.0153], [0.1834, 0.1723, 0.0922, 0.0596, 0.0526, 0.0436, 0.0171, 0.016], [0.1861, 0.1861, 0.0568, 0.0471, 0.0144, 0.0105, 0.0099, 0.0099], [0.1092, 0.0799, 0.0549, 0.0402, 0.0115, 0.0115, 0.0115, 0.0108], [0.0851, 0.0516, 0.0455, 0.0428, 0.0377, 0.0202, 0.0102, 0.0095], [0.1099, 0.0626, 0.038, 0.0357, 0.0245, 0.023, 0.0216, 0.0131], [0.102, 0.0958, 0.0794, 0.0513, 0.0331, 0.0274, 0.0258, 0.0242], [0.1471, 0.0892, 0.074, 0.0478, 0.0372, 0.0349, 0.029, 0.0226], [0.2241, 0.1447, 0.0567, 0.0414, 0.0389, 0.0344, 0.0222, 0.0162], [0.4498, 0.1137, 0.1137, 0.0347, 0.0224, 0.0198, 0.0186, 0.0164], [0.4787, 0.121, 0.0832, 0.0369, 0.027, 0.0254, 0.021, 0.0198], [0.4294, 0.158, 0.0846, 0.0453, 0.0375, 0.0258, 0.0214, 0.0167], [0.311, 0.2422, 0.101, 0.0694, 0.0421, 0.0289, 0.0199, 0.0128], [0.2751, 0.2143, 0.1147, 0.0788, 0.0788, 0.0272, 0.0187, 0.0121], [0.322, 0.2508, 0.0814, 0.0814, 0.0634, 0.0233, 0.0151, 0.011], [0.3425, 0.2078, 0.0866, 0.0866, 0.0674, 0.0171, 0.0133, 0.0103], [0.2708, 0.2109, 0.0996, 0.0996, 0.0366, 0.0344, 0.0196, 0.0144], [0.308, 0.1649, 0.1133, 0.0472, 0.0325, 0.0174, 0.0153, 0.0153], [0.2834, 0.1615, 0.0763, 0.0492, 0.0463, 0.0281, 0.0205, 0.017], [0.1523, 0.1047, 0.0924, 0.0282, 0.0249, 0.0182, 0.0171, 0.0151], [0.2333, 0.0973, 0.0712, 0.059, 0.0358, 0.0149, 0.014, 0.0124], [0.1838, 0.0868, 0.0495, 0.034, 0.0319, 0.0265, 0.0194, 0.0171], [0.1058, 0.0877, 0.0414, 0.0236, 0.0162, 0.0135, 0.0112, 0.0112], [0.1865, 0.1453, 0.0686, 0.0605, 0.0605, 0.0569, 0.0197, 0.0173], [0.1451, 0.088, 0.0685, 0.0324, 0.0324, 0.0286, 0.0268, 0.0184], [0.1751, 0.1281, 0.0644, 0.0416, 0.0345, 0.0237, 0.0209, 0.0209], [0.8769, 0.022, 0.0171, 0.011, 0.0067, 0.0059, 0.0052, 0.0022], [0.9665, 0.0227, 0.0045, 0.001, 0.001, 0.001, 0.0006, 0.0003], [0.964, 0.0257, 0.0045, 0.001, 0.001, 0.0006, 0.0004, 0.0002], [0.9586, 0.0289, 0.0044, 0.0014, 0.0011, 0.0007, 0.0005, 0.0004], [0.9795, 0.0085, 0.004, 0.004, 0.0005, 0.0005, 0.0005, 0.0003], [0.6142, 0.256, 0.0647, 0.0393, 0.0077, 0.0028, 0.0027, 0.0015], [0.7608, 0.0909, 0.0334, 0.0295, 0.0139, 0.009, 0.009, 0.0085], [0.9956, 0.0036, 0.0004, 0.0002, 0.0001, 0.0001, 0.0, 0.0]], "ranks": {"Python": [20747, 108330, 103362, 148937, 20500, 52520, 22211, 40633, 49149, 101983, 47307, 107622, 70693, 75314, 52658, 80801, 95267, 90896, 94138, 118207, 78561, 153605, 142411, 126166, 83237, 132879, 105221, 63542, 53032, 28581, 13828, 16290, 29412, 37063, 76844, 54003, 59588, 60295, 46065, 26917, 24809, 19618, 11943, 9505, 10108, 6259, 7717, 5634, 6572, 2956, 1245, 10, 27, 14, 7, 1, 1, 1, 1, 1, 1, 1, 6]}}, {"pos": 579, "top": [[".", " \u2013", ",", "\u2026..", " (\u201e", "\u2026\u2026", "  \n", "\u2013"], ["  \n", ",\\\"", ":**", "\u52c7\u5f80\u76f4\u524d", ",**", " (\u201e", "\u30f3", " \u2013**"], ["\u2026..", "\u2026\u2026", ".", "\u2026.", ",\u2026", "\u2026", ",", "\u2013"], ["\u52a0\u62ff\u5927", "raries", " **\u201e", " Guta", " ;;^", "\u0103\u021b", " Gabrie", " **:**"], [" ##", "ed", " (\u201e", "\u52c7\u5f80\u76f4\u524d", " theater", ":**", "\u0103\u021b", "\u65b0\u52a0\u5761"], ["\u65b0\u52a0\u5761", " \u200b\u200b", "\u0103\u021b", " **\u201e", ":**", "\u52a0\u62ff\u5927", ".:**", "\u52c7\u5f80\u76f4\u524d"], ["raries", ":**", " ##", "\u0103\u021b", " **\u201e", "\u201e", "\u0d3f\u0d32\u0d4d", ".:**"], [" **\u201e", "raries", "\u0103\u021b", ":**", " (\u201e", ".:**", "\u201e", "\u52c7\u5f80\u76f4\u524d"], [" (\u201e", "raries", " **\u201e", ":\\\"", "\u201e", ":**", "\u0103\u021b", ",\\\""], ["\u52c7\u5f80\u76f4\u524d", "raries", "\u52e4\u52e4\u6073\u6073", "\u4e0d\u53ef\u601d\u8bae", "\u4e8b\u534a\u529f\u500d", "\u0103\u021b", " (\u201e", "\u5162\u5162\u4e1a\u4e1a"], ["raries", ",\\\"", " \u201e", "\u52c7\u5f80\u76f4\u524d", " ##", " (\u201e", ":\"", ":**"], ["raries", " **\u201e", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\u0d33\u0d4d", "\u0103\u021b", " theater", "\u52c7\u5f80\u76f4\u524d", "\u0942\u0902"], ["raries", " theater", " **\u201e", " \u201e", "\u0d33\u0d4d", "\u52c7\u5f80\u76f4\u524d", " Savior", "\u0942\u0902"], ["raries", " theater", " \u201e", "\u52c7\u5f80\u76f4\u524d", " (\u201e", "\u0d33\u0d4d", " Theater", " Savior"], [" \u201e", " theater", "raries", " Theater", " gray", "\u52c7\u5f80\u76f4\u524d", " theaters", "\u0d33\u0d4d"], [" theater", "raries", " \u201e", "\u52c7\u5f80\u76f4\u524d", " gray", " counselors", "\u0d33\u0d4d", "\u0942\u0902"], ["\u52c7\u5f80\u76f4\u524d", "\u52e4\u52e4\u6073\u6073", "raries", "\u4e0d\u53ef\u601d\u8bae", "\u767d\u765c", " theater", " \u201e", "\u5162\u5162\u4e1a\u4e1a"], ["\u52e4\u52e4\u6073\u6073", "raries", " **\u201e", "\u52c7\u5f80\u76f4\u524d", "\u52a0\u62ff\u5927", " ;;^", "\u767d\u765c", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9"], [" **\u201e", "\u52e4\u52e4\u6073\u6073", "\u52a0\u62ff\u5927", "raries", " Gabrie", " ;;^", "\u767d\u765c", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9"], ["\u52e4\u52e4\u6073\u6073", "\u52a0\u62ff\u5927", "\u767d\u765c", "\u4e0d\u53ef\u601d\u8bae", "\u52c7\u5f80\u76f4\u524d", "\u5162\u5162\u4e1a\u4e1a", " Gabrie", "uffy"], ["\u767d\u765c", "\u4e0d\u53ef\u601d\u8bae", "\u52a0\u62ff\u5927", "\u52c7\u5f80\u76f4\u524d", " unpredict", "\u52e4\u52e4\u6073\u6073", " horrific", "uffy"], [" ;;^", "\u767d\u765c", "\u52e4\u52e4\u6073\u6073", " Gabrie", "\u5f88\u591a\u95ee\u9898", "\u52a0\u62ff\u5927", " ``", "raries"], [" ``", " ;;^", " ``(", "\u767d\u765c", "\u5f88\u591a\u95ee\u9898", "\u4e0d\u53ef\u601d\u8bae", " horrific", " Gabrie"], [" ``", " horrific", " looming", " ``(", "\u4e0d\u53ef\u601d\u8bae", " lack", " unpredictable", " struggling"], [" ``", " struggling", " struggles", " horrific", " looming", " unpredict", "\u767d\u765c", " unpredictable"], [" ``", " struggles", "\u5f88\u591a\u95ee\u9898", " horrific", " struggling", " unpredictable", " ;;^", "\u767d\u765c"], [" ``", " unpredictable", " struggling", " struggles", " unpredict", " horrific", " lack", "\u767d\u765c"], ["\n\n", " heavily", " struggling", " lack", " huge", " nearly", " battling", " ``"], [" unpredictable", " lack", " struggling", " heavily", " huge", " massive", " lacking", " struggles"], [" lack", " unpredictable", " struggling", " huge", " struggles", " massive", " complex", " lacking"], [" lack", " huge", " ...", " massive", " complex", " struggling", " unpredictable", " heavily"], [" lack", " only", " huge", " many", " complex", " ,", " long", " high"], [" lack", " huge", " only", " massive", " high", " hard", " long", " over"], [" huge", " lack", " massive", " impossible", " relentless", " heavily", " unpredictable", " struggling"], [" lack", " impossible", " relentless", " huge", " massive", " unpredictable", " inability", " lacking"], [" impossible", " inefficient", " relentless", " lack", " notoriously", " huge", " struggling", " inability"], [" inefficient", " impossible", " slow", " sluggish", " inability", " bottleneck", " expensive", " notoriously"], [" inefficient", " impossible", " slow", " sluggish", " bottleneck", " inability", " fast", " expensive"], [" inefficient", " impossible", " slow", " inability", " bottleneck", " fast", " sluggish", " lack"], [" inefficient", " slow", " impossible", " sluggish", " slower", " fast", " fastest", " expensive"], [" inefficient", " slow", " slower", " impossible", " sluggish", " fast", " slowing", " fastest"], [" inefficient", " slow", " slower", " sluggish", " ineff", " slowing", " speed", " bottleneck"], [" inefficient", " slow", " slower", " sluggish", " slowing", " ineff", " bottleneck", " speed"], [" inefficient", " slow", " slower", " ineff", " sluggish", " slowing", " bottleneck", " overhead"], [" inefficient", " slow", " slower", " direct", " speed", " ineff", " bottleneck", " overhead"], [" inefficient", " slow", " direct", " ineff", " sluggish", " slower", " speed", " bottleneck"], [" inefficient", " slow", " direct", " sluggish", " bottleneck", " ineff", " Direct", " brute"], [" slow", " direct", " Direct", " inefficient", "\u76f4\u63a5\u4f7f\u7528", "\u6bcf\u79d2", "\u76f4\u63a5\u7528", " Slow"], ["\u76f4\u63a5\u4f7f\u7528", " slow", "\u6bcf\u79d2", " inefficient", "\u6bcf\u5206\u949f", "\u76f4\u63a5\u7528", " direct", " Python"], ["\u76f4\u63a5\u4f7f\u7528", "\u76f4\u63a5\u7528", " Direct", "\u6bcf\u79d2", "\u76f4\u63a5\u5728", "\u901f\u5ea6\u6162", "\u76f4\u63a5\u5c06", "\u6bcf\u5206\u949f"], ["\u76f4\u63a5\u4f7f\u7528", "\u76f4\u63a5\u7528", "\u4e0d\u80fd\u8ba9", "\u505a\u4e0d\u5230", "\u4e0d\u80fd\u5728", "\u901f\u5ea6\u6162", "\u76f4\u63a5\u5728", "\u4efb\u4f55\u5f62\u5f0f\u7684"], [" Python", "/python", "Python", " CPU", "\u4e0d\u80fd\u5728", " overhead", " python", " Cannot"], [" Python", "/python", "Python", " python", "\u4e0d\u80fd\u5728", "\u6bcf\u79d2", "-python", " CPU"], [" Python", "/python", "Python", " iterating", " CPU", " python", " Cannot", " OpenGL"], [" Python", "/python", " looping", " iterating", "Python", " python", "-loop", " OpenGL"], [" Python", " python", "Python", "/python", "python", "-python", "_python", " OpenGL"], [" Python", " python", "Python", "/python", "python", "-python", " PYTHON", "_python"], [" Python", " python", "Python", "/python", "python", "-python", " PYTHON", "_python"], [" Python", " python", "Python", "/python", "-python", "python", "_python", " Py"], [" Python", " python", "Python", "-python", " Py", "/python", "python", "_python"], [" Python", " Pure", " python", "Python", " pure", " Py", "-python", "/python"], [" Python", " Pure", " python", " Py", " pure", " Calling", "Python", " OpenGL"], [" Python", " Pure", " Calling", " Py", " OpenGL", " Direct", " Every", " pure"]], "p": [[0.4492, 0.3964, 0.0238, 0.0224, 0.0136, 0.0112, 0.0112, 0.0093], [0.1266, 0.0598, 0.0301, 0.0283, 0.0234, 0.0207, 0.0207, 0.0194], [0.3655, 0.2217, 0.0495, 0.0319, 0.0249, 0.0234, 0.0206, 0.0171], [0.0385, 0.022, 0.0194, 0.0142, 0.0104, 0.0092, 0.0092, 0.0081], [0.0498, 0.0322, 0.0267, 0.0235, 0.0208, 0.0208, 0.0195, 0.0183], [0.0268, 0.0252, 0.0237, 0.0222, 0.0222, 0.0163, 0.0153, 0.0143], [0.1954, 0.0982, 0.034, 0.034, 0.0319, 0.0219, 0.0219, 0.0219], [0.1505, 0.1328, 0.0627, 0.0431, 0.0315, 0.0231, 0.0191, 0.0159], [0.1658, 0.1658, 0.0691, 0.0288, 0.0288, 0.0288, 0.0271, 0.0211], [0.1569, 0.0577, 0.035, 0.029, 0.0176, 0.0129, 0.0121, 0.0121], [0.0892, 0.0349, 0.029, 0.029, 0.0272, 0.0272, 0.024, 0.024], [0.1564, 0.0477, 0.0121, 0.0113, 0.0106, 0.0106, 0.0088, 0.0042], [0.1224, 0.0309, 0.0241, 0.0176, 0.0137, 0.0114, 0.0073, 0.0057], [0.0728, 0.0323, 0.0304, 0.0153, 0.0077, 0.0072, 0.0064, 0.005], [0.06, 0.0563, 0.0364, 0.0104, 0.0067, 0.0063, 0.0059, 0.0056], [0.0194, 0.0183, 0.0126, 0.0081, 0.0072, 0.0063, 0.0052, 0.0041], [0.0098, 0.0081, 0.0076, 0.0059, 0.0049, 0.0049, 0.0041, 0.0034], [0.0147, 0.0095, 0.0095, 0.0069, 0.0061, 0.0058, 0.0048, 0.0035], [0.017, 0.015, 0.0076, 0.0071, 0.0059, 0.0055, 0.0052, 0.0036], [0.0177, 0.0121, 0.0107, 0.0057, 0.0042, 0.0033, 0.0029, 0.0027], [0.0132, 0.0091, 0.0059, 0.0036, 0.0036, 0.0033, 0.0024, 0.0022], [0.0195, 0.0059, 0.0052, 0.0038, 0.0034, 0.0034, 0.0032, 0.0023], [0.0493, 0.0063, 0.0049, 0.0043, 0.0041, 0.0034, 0.0028, 0.0025], [0.1396, 0.004, 0.0033, 0.0033, 0.0031, 0.0031, 0.0026, 0.0026], [0.0194, 0.0056, 0.0052, 0.0052, 0.0046, 0.0046, 0.0038, 0.0038], [0.0177, 0.0084, 0.0065, 0.0061, 0.0054, 0.0045, 0.0039, 0.0037], [0.0089, 0.0079, 0.0074, 0.0065, 0.0058, 0.0051, 0.0037, 0.0029], [0.0405, 0.009, 0.0085, 0.008, 0.007, 0.0062, 0.0055, 0.0055], [0.0155, 0.0145, 0.0128, 0.0094, 0.0094, 0.0083, 0.0065, 0.0065], [0.0258, 0.0242, 0.0189, 0.0177, 0.0108, 0.0101, 0.0084, 0.0065], [0.0242, 0.0214, 0.013, 0.013, 0.0114, 0.0107, 0.0101, 0.0089], [0.0161, 0.0152, 0.0142, 0.0118, 0.0111, 0.0111, 0.0111, 0.0104], [0.0149, 0.014, 0.0124, 0.009, 0.009, 0.0085, 0.008, 0.007], [0.0321, 0.0235, 0.0195, 0.0161, 0.0081, 0.0076, 0.0067, 0.0067], [0.0324, 0.0286, 0.0153, 0.0119, 0.0105, 0.0077, 0.0077, 0.0077], [0.0925, 0.0362, 0.0171, 0.0171, 0.0142, 0.0133, 0.0104, 0.0098], [0.168, 0.058, 0.0512, 0.0214, 0.0147, 0.0122, 0.0089, 0.0089], [0.1415, 0.0711, 0.0489, 0.0169, 0.0132, 0.0109, 0.0102, 0.0096], [0.1513, 0.0977, 0.0491, 0.0192, 0.0117, 0.011, 0.0103, 0.0075], [0.1979, 0.0878, 0.0642, 0.0173, 0.0162, 0.0135, 0.0099, 0.0099], [0.2596, 0.1899, 0.0213, 0.0213, 0.0188, 0.0188, 0.0156, 0.0146], [0.4202, 0.1752, 0.0252, 0.0197, 0.0185, 0.0153, 0.0119, 0.0099], [0.412, 0.1516, 0.0338, 0.028, 0.016, 0.015, 0.0103, 0.0071], [0.5066, 0.0937, 0.0153, 0.0127, 0.0127, 0.0105, 0.0099, 0.0087], [0.3283, 0.0884, 0.0174, 0.0127, 0.012, 0.0106, 0.0106, 0.0099], [0.3173, 0.0968, 0.0191, 0.0123, 0.0116, 0.0109, 0.0109, 0.0096], [0.1654, 0.0942, 0.027, 0.0186, 0.0174, 0.0164, 0.0154, 0.0136], [0.1069, 0.0735, 0.069, 0.0537, 0.0393, 0.0198, 0.0145, 0.0145], [0.0492, 0.0408, 0.0247, 0.0205, 0.0181, 0.017, 0.0132, 0.0124], [0.1013, 0.0373, 0.0187, 0.0121, 0.0107, 0.0089, 0.0089, 0.0073], [0.0373, 0.0188, 0.0121, 0.0114, 0.01, 0.0069, 0.0069, 0.0057], [0.5824, 0.0165, 0.01, 0.0054, 0.0047, 0.0039, 0.0037, 0.0035], [0.8078, 0.0244, 0.0139, 0.004, 0.0033, 0.0033, 0.0029, 0.0024], [0.8025, 0.013, 0.0084, 0.0045, 0.0042, 0.0035, 0.0033, 0.0029], [0.8837, 0.0118, 0.0087, 0.0067, 0.0063, 0.0056, 0.0046, 0.0044], [0.9795, 0.0075, 0.0051, 0.004, 0.001, 0.0009, 0.0003, 0.0002], [0.9869, 0.0066, 0.0036, 0.0015, 0.0007, 0.0004, 0.0001, 0.0001], [0.9833, 0.0075, 0.0046, 0.0022, 0.001, 0.0009, 0.0001, 0.0001], [0.9866, 0.0059, 0.004, 0.0013, 0.0008, 0.0008, 0.0002, 0.0001], [0.995, 0.0025, 0.0017, 0.0002, 0.0002, 0.0001, 0.0001, 0.0], [0.9935, 0.0028, 0.0012, 0.001, 0.0008, 0.0002, 0.0001, 0.0001], [0.9799, 0.0109, 0.0019, 0.0017, 0.0013, 0.001, 0.0007, 0.0005], [0.6795, 0.2833, 0.0181, 0.0026, 0.0026, 0.0017, 0.0013, 0.0006]], "ranks": {"Python": [13676, 117056, 114849, 125847, 35903, 84570, 29013, 69686, 46050, 75442, 10164, 32595, 16425, 24511, 21119, 66774, 124335, 176432, 190978, 211146, 177565, 190295, 179881, 142265, 145259, 127878, 99211, 40353, 23550, 11147, 10290, 11970, 14895, 8183, 8727, 3509, 1196, 822, 543, 65, 32, 25, 15, 55, 65, 53, 36, 33, 8, 37, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]}}, {"pos": 580, "top": [["er", "o", "e", ".", " \u2013", ",", "a", "y"], ["er", "ly", "\u064b", "erden", "hips", "e", "o", "\u2010"], ["\u2013", "er", ",", " \u2013", ".", "a", "e", "o"], [" ``", "``", "\u52a0\u62ff\u5927", "psilon", " milfs", " ``(", "eriale", "\u4e94\u989c\u516d\u8272\u7684"], ["er", "ly", "e", "o", "ish", "en", "st", "aud"], ["er", "ly", "o", "ish", "aud", "ful", "fully", "e"], ["ly", "er", "ish", "o", "e", "ful", "st", "en"], ["ly", "er", "ish", "ful", "fully", "-ish", "ive", "LY"], ["ly", "er", "ish", "fully", "ful", "-ish", "ive", "LY"], ["ly", "er", "fully", "ish", "ful", "ive", "-ish", "o"], ["ly", "er", "o", "ish", "fully", "ful", "ive", "e"], ["ly", "er", "ish", "fully", "ful", "ive", "LY", "-ish"], ["ly", "er", "fully", "ish", "ive", "ful", "LY", "-ish"], ["ly", "er", "fully", "ish", "ful", "-ish", "ive", "ulent"], ["ly", "fully", "er", "ish", "ful", "-ish", "teen", "LY"], ["ly", "er", "fully", "ish", "o", "ful", "teen", "ive"], ["ly", "er", "o", "fully", "ish", "ful", "e", "-ish"], ["ly", "er", "o", "fully", "ish", "-ish", "ful", "teen"], ["ly", "o", "er", "fully", "ish", "u", "-ish", "LY"], ["ly", "fully", "o", "er", "ish", "LY", "e", "y"], ["ly", "o", "fully", "er", "e", "u", "y", "a"], ["ly", "fully", "bred", "LY", "ish", "er", " geek", "Legendary"], ["ly", "fully", "LY", " ``", "ish", " mundane", "/simple", "er"], ["ly", "fully", " ``", "er", "o", "ish", "LY", "``"], ["ly", "fully", "LY", " ``", "``", "/simple", " \n\n", "ish"], ["ly", "LY", "/simple", "fully", "ftware", "``", "itarian", "iosity"], ["ly", "fully", "LY", "/simple", " ``", "``", "ftware", "itarian"], ["ly", "fully", " ``", " `_", " \\`", " \n\n", "/simple", " _"], ["ly", "fully", "LY", "/simple", " mundane", "ftware", "itarian", "ish"], ["ly", "er", "fully", "itarian", "/simple", " minimalist", " simplistic", "ftware"], ["ly", "er", " minimalist", "itarian", " Pure", "fully", " physics", "istic"], ["ly", "er", " Pure", " pure", " minimalist", "fully", " commercial", " modern"], ["ly", " traditional", " pure", " Pure", " Black", "fully", " non", " commercial"], ["ly", " pure", " simplistic", "fully", " Pure", " traditional", " mundane", " purely"], ["ly", " simplistic", "fully", "/simple", " pure", " mundane", " Pure", " brute"], ["ly", "fully", "ftware", "/simple", " Pure", " simplistic", " pure", "\u7eaf\u7cb9"], ["fully", "ly", "/simple", "ftware", " simplistic", " Pure", " inefficient", " Python"], [" Pure", " Python", "fully", " pure", "/simple", "ftware", "\u7eaf\u7cb9", "ly"], [" Python", " Pure", " pure", "fully", "ftware", "\u7eaf\u7cb9", "\u7eaf\u7cb9\u7684", "Pure"], [" Python", " Pure", " pure", "\u7eaf\u7cb9", "\u7eaf", "\u7eaf\u7cb9\u7684", "Pure", " python"], [" Python", " Pure", " pure", " python", "ftware", "Python", " software", "Pure"], [" Python", " Pure", " python", " pure", " software", "Python", "ftware", "-python"], [" Python", " Pure", " pure", "Pure", " purely", "\u7eaf\u7cb9\u7684", " python", " software"], [" Pure", " Python", " pure", "Pure", " purely", "\u7eaf", "\u7eaf\u7cb9\u7684", "\u7eaf\u7cb9"], [" Pure", " Python", " pure", " purely", "Pure", "pure", "\u7eaf\u7cb9\u7684", " software"], [" Pure", " pure", " Python", " purely", " PURE", "Pure", "\u7eaf\u7cb9\u7684", " brute"], [" Pure", " Python", " pure", " purely", " PURE", "-native", "\u7eaf\u7cb9\u7684", " algorithms"], [" Python", " Pure", "-native", " PURE", " algorithms", "Pure", " pure", " CGI"], [" Python", "/python", "-python", " python", " APIs", " algorithms", "\u4efb\u4f55\u5f62\u5f0f\u7684", "-native"], [" Python", "/python", "\u4efb\u4f55\u5f62\u5f0f\u7684", "-python", "\u6216\u4f7f\u7528", "\u6216\u7528", "_python", "/API"], [" Python", "/python", "-python", "Python", "_python", "\u4efb\u4f55\u5f62\u5f0f\u7684", "/API", " CGI"], [" Python", "Python", "/python", "-python", " python", "_python", "python", " Java"], [" Python", "Python", "/python", "-python", " python", "_python", "python", "(py"], [" Python", "Python", "-python", "/python", " python", "python", "_python", "(py"], [" Python", "Python", " python", "-python", "/python", "_python", "python", " Java"], [" Python", "Python", " python", "-python", "/python", "python", "_python", " PYTHON"], [" Python", "Python", " python", "-python", "/python", "python", "_python", " PYTHON"], [" Python", "Python", " python", "-python", "/python", "python", "_python", " Py"], [" Python", "Python", " python", "-python", "/python", "python", " Py", "_python"], [" Python", "Python", " python", " Py", "-python", "_python", "python", "/python"], [" Python", "Python", "-python", " python", " Py", "/python", "_python", "python"], [" Python", "Python", " Py", "-python", " python", " py", "/python", "_python"], [" Python", "Python", "-python", " Py", "-P", " OpenGL", " python", " `"]], "p": [[0.5698, 0.1633, 0.0302, 0.0302, 0.0195, 0.0183, 0.0162, 0.0036], [0.9936, 0.001, 0.0008, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001], [0.5355, 0.2232, 0.1534, 0.0183, 0.0111, 0.0092, 0.0049, 0.0038], [0.036, 0.0218, 0.0085, 0.0062, 0.0049, 0.0043, 0.0023, 0.0021], [0.9443, 0.0344, 0.0016, 0.0015, 0.001, 0.0008, 0.0007, 0.0006], [0.3793, 0.3563, 0.0089, 0.0079, 0.0074, 0.0061, 0.0051, 0.0048], [0.5859, 0.3553, 0.0054, 0.0051, 0.0045, 0.0042, 0.0021, 0.002], [0.8537, 0.102, 0.0089, 0.0065, 0.0037, 0.0024, 0.0021, 0.0008], [0.8952, 0.0393, 0.0113, 0.006, 0.005, 0.0039, 0.0024, 0.0015], [0.656, 0.1464, 0.0348, 0.0254, 0.0145, 0.006, 0.005, 0.0039], [0.8394, 0.1136, 0.0112, 0.0088, 0.0068, 0.0053, 0.0013, 0.0012], [0.9204, 0.038, 0.009, 0.007, 0.0043, 0.0035, 0.0009, 0.0006], [0.9301, 0.0141, 0.0063, 0.0046, 0.0032, 0.003, 0.0007, 0.0007], [0.7367, 0.0304, 0.0127, 0.0068, 0.0041, 0.0036, 0.0025, 0.0013], [0.6872, 0.0284, 0.0134, 0.0098, 0.0036, 0.0032, 0.0026, 0.0023], [0.5751, 0.0324, 0.0253, 0.0135, 0.0105, 0.0047, 0.0028, 0.0021], [0.7839, 0.0367, 0.0252, 0.0196, 0.0105, 0.0044, 0.0025, 0.0019], [0.5234, 0.0295, 0.0277, 0.0245, 0.0123, 0.0048, 0.0043, 0.0024], [0.5459, 0.0371, 0.0272, 0.0165, 0.0113, 0.005, 0.0044, 0.0032], [0.7412, 0.0287, 0.0254, 0.0154, 0.0057, 0.0039, 0.0037, 0.0032], [0.4926, 0.0911, 0.043, 0.0261, 0.0245, 0.0179, 0.0102, 0.0062], [0.2551, 0.0144, 0.0039, 0.0039, 0.0039, 0.0028, 0.0018, 0.0017], [0.5041, 0.0365, 0.0063, 0.0056, 0.0038, 0.0026, 0.0022, 0.0022], [0.4706, 0.087, 0.0528, 0.0059, 0.0041, 0.0034, 0.0028, 0.0023], [0.2981, 0.0457, 0.0191, 0.0131, 0.0066, 0.0058, 0.0043, 0.0027], [0.1386, 0.0121, 0.0089, 0.005, 0.0047, 0.0033, 0.0031, 0.002], [0.1603, 0.008, 0.008, 0.0052, 0.0052, 0.0048, 0.0045, 0.004], [0.2525, 0.0439, 0.0283, 0.0207, 0.0172, 0.0086, 0.0067, 0.0067], [0.1667, 0.0176, 0.0054, 0.0047, 0.0042, 0.0039, 0.0039, 0.0037], [0.1221, 0.0069, 0.0061, 0.0061, 0.0047, 0.0039, 0.0033, 0.0029], [0.0888, 0.0136, 0.0069, 0.0053, 0.0042, 0.0032, 0.0027, 0.0022], [0.0872, 0.0098, 0.0063, 0.0059, 0.0056, 0.0052, 0.0049, 0.0049], [0.0557, 0.0124, 0.0117, 0.0117, 0.008, 0.008, 0.0075, 0.0067], [0.034, 0.0171, 0.0142, 0.0133, 0.0091, 0.0086, 0.0063, 0.0049], [0.0529, 0.0195, 0.0172, 0.0104, 0.0086, 0.0076, 0.0072, 0.0046], [0.0473, 0.0223, 0.0153, 0.0144, 0.012, 0.012, 0.0077, 0.005], [0.0208, 0.0184, 0.0173, 0.0152, 0.0135, 0.0105, 0.0098, 0.0098], [0.0415, 0.0252, 0.0209, 0.0162, 0.0105, 0.0099, 0.0099, 0.0093], [0.0797, 0.0454, 0.0259, 0.0202, 0.0167, 0.0138, 0.0122, 0.0095], [0.309, 0.0609, 0.0326, 0.0186, 0.0186, 0.0136, 0.0136, 0.0128], [0.6025, 0.0495, 0.0219, 0.0171, 0.011, 0.0104, 0.0081, 0.0049], [0.7123, 0.0402, 0.0148, 0.013, 0.013, 0.009, 0.009, 0.0048], [0.3755, 0.1774, 0.0787, 0.0187, 0.0146, 0.0146, 0.0113, 0.0113], [0.282, 0.2197, 0.0916, 0.018, 0.0132, 0.0109, 0.0085, 0.0085], [0.2365, 0.1347, 0.1266, 0.0171, 0.0161, 0.0081, 0.0071, 0.0071], [0.2159, 0.0845, 0.0845, 0.0156, 0.0095, 0.0069, 0.0065, 0.0048], [0.1755, 0.1065, 0.0779, 0.0119, 0.0105, 0.0105, 0.0064, 0.005], [0.1194, 0.082, 0.0134, 0.0104, 0.0081, 0.0067, 0.0067, 0.0049], [0.24, 0.021, 0.0093, 0.0072, 0.0039, 0.0036, 0.0034, 0.0034], [0.0825, 0.0303, 0.0119, 0.0082, 0.0068, 0.006, 0.0044, 0.0034], [0.1527, 0.0496, 0.0118, 0.0118, 0.0104, 0.0046, 0.0034, 0.0032], [0.9101, 0.0311, 0.0201, 0.0089, 0.0037, 0.0023, 0.0013, 0.0007], [0.9602, 0.0155, 0.0107, 0.0083, 0.0027, 0.0009, 0.0006, 0.0001], [0.9715, 0.0108, 0.0074, 0.0058, 0.0027, 0.0005, 0.0004, 0.0001], [0.9871, 0.0059, 0.0024, 0.0022, 0.0019, 0.0002, 0.0002, 0.0], [0.9932, 0.0032, 0.0019, 0.001, 0.0005, 0.0001, 0.0001, 0.0], [0.9953, 0.0019, 0.0019, 0.0005, 0.0002, 0.0001, 0.0, 0.0], [0.9946, 0.0022, 0.0022, 0.0006, 0.0002, 0.0001, 0.0, 0.0], [0.9956, 0.0025, 0.0013, 0.0004, 0.0001, 0.0001, 0.0, 0.0], [0.9973, 0.0019, 0.0003, 0.0002, 0.0002, 0.0, 0.0, 0.0], [0.9988, 0.0009, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9963, 0.0013, 0.0012, 0.0007, 0.0004, 0.0, 0.0, 0.0], [0.9959, 0.0013, 0.0012, 0.0009, 0.0004, 0.0001, 0.0001, 0.0]], "ranks": {"Python": [6426, 38134, 65967, 68141, 3836, 25626, 5127, 4740, 15068, 28677, 9103, 9375, 11022, 11718, 7544, 12061, 8553, 8751, 7035, 9162, 3141, 1587, 694, 160, 346, 241, 157, 72, 82, 32, 28, 57, 192, 106, 118, 38, 7, 2, 1, 1, 1, 1, 1, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]}}, {"pos": 581, "top": [[",", " \u2013", ".", "\u2013", " ", "<|endoftext|>", "a", ";"], [" \u2013", "\u2013", "\u2013and", " \u2013,", ",", ".", ".\u2013", "\u200b"], ["\u2013", " \u2013", ",", " \u2013,", ".\u2013", ".", "\u2013and", "\u2026\u2026"], [" ``", " ``(", "-------------</", " PYTHON", "----------</", " !***", "erio", "cyj"], [" Python", "ed", ",", " (@", " \"@", " $$", " $.", " PYTHON"], [",", " \u200b\u200b", " \").", "\uff01", ".cs", ".", " \uff08", "\uff0c"], [" Python", ".", ",", ".py", " \u200b\u200b", "-python", "\uff01", " \"\"\""], [",", ".", ".py", " Python", " \u200b\u200b", "-python", " Django", "py"], [".", ",", " \u200b\u200b", ".py", "\u200b\u200b", " Python", "-style", ":"], [",", ".", ";", ":", "-style", "\u00ad", "-esque", "-one"], [",", ".", "-style", "er", " Python", ";", " \"", "'s"], [",", "-style", " Python", "aire", "-esque", "ian", ".py", "aires"], [",", "-style", "-esque", " Python", "ized", "ian", " Victorian", " British"], [",", "-style", "-esque", " British", ".", " Python", "aire", "-speaking"], [",", " \"", "-style", " British", " largely", " just", "-esque", " even"], [",", " \"", " largely", " \u00ad", "-esque", " often", " even", "\u00ad"], [",", " \"", "-esque", " largely", " ", "-style", " British", " often"], [",", " \"", "-style", "-esque", " largely", " British", " often", " Python"], [",", " \"", " largely", "-esque", " British", " even", "-style", " often"], [",", " largely", " ,", " \"", " even", " just", " often", " British"], ["<|endoftext|>", " ,", " \"", " though", " ", " largely", " just", " \n\n"], [" ``", " Python", " ''", " British", " games", " bizarre", " Django", ".py"], [" ``", " Python", " ''", " British", " ,", ".py", " English", " often"], [" ,", " ``", " ''", " British", " largely", " Python", " only", " much"], [" ``", " Python", " __", " ,", " --", " British", " \n\n", " ''"], [" Python", " ``", " __", "/python", " python", ".py", " PYTHON", "_python"], [" Python", " ``", " __", " python", " software", " physics", ".py", " science"], [" __", " _", " ,", " ``", " ___", " --", " Python", " ''"], [" Python", " __", " ``", " software", " python", " ,", " physics", " _"], [" __", " Python", " ___", " ____", " software", " physics", " python", " science"], [" __", " Python", " software", " physics", " science", " **", " tools", " python"], [" ,", " only", " __", " .", " \\\"", " science", " work", " even"], [" ,", " only", " even", " .", " mostly", " would", " and", " often"], [" only", " software", " mostly", " tools", " physics", " heavily", " science", " Python"], [" software", " physics", " Python", " only", " heavily", " tools", " hacking", " impossible"], [" software", " hardware", " heavily", " only", " physics", " Python", " notoriously", " rarely"], [" Python", " inefficient", " software", " hardware", " physics", " slow", " only", " algorithms"], [" Python", " inefficient", " software", " physics", " hardware", " slow", " speed", " slower"], [" slow", " Python", " speed", " inefficient", " physics", " software", " hardware", " fast"], [" speed", " slow", " inefficient", " fast", " fastest", " slower", " Python", " faster"], [" speed", " slow", " fastest", " Python", " speeds", " fast", " slower", " performance"], [" speed", " Python", " slow", " software", " speeds", " inefficient", " performance", " slower"], [" speed", " slow", " Python", " speeds", " slower", " inefficient", " performance", " software"], [" speed", " slow", " speeds", " inefficient", " slower", " performance", " Speed", " faster"], [" slow", " speed", " speeds", " inefficient", " slower", " performance", " faster", " fastest"], [" slow", " speed", " speeds", " inefficient", " slower", " fastest", " Speed", " faster"], [" slow", " speeds", " speed", " inefficient", " slower", " bottleneck", " slows", " fastest"], [" slow", " speeds", " speed", " slows", " Slow", " bottleneck", " inefficient", " Speed"], [" slow", " speeds", " speed", " Python", " slows", " inefficient", " Slow", " routines"], [" workflows", " slows", " slow", " speeds", "/python", "\u505a\u4e0d\u5230", " routines", "\u6bcf\u79d2"], ["/python", "\u505a\u4e0d\u5230", "/Linux", " workflows", "/API", " Python", "/py", "/P"], [" APIs", "/API", " wrappers", " interfaces", " calls", "/Linux", " workflows", "\u505a\u4e0d\u5230"], [" APIs", " wrappers", "/API", "/python", " OpenGL", "/py", "\u505a\u4e0d\u5230", " framerate"], [" APIs", " wrappers", " OpenGL", "/API", " <->", " interfaces", " calls", "/python"], [" loops", " looping", " loop", " calls", " OpenGL", "-loop", " APIs", "loop"], [" OpenGL", " loops", " wrappers", " calls", " looping", " loop", " callbacks", " wrapper"], [" OpenGL", " calls", " loops", " wrappers", " graphics", " looping", " callbacks", "OpenGL"], [" OpenGL", " calls", " renderer", " rendering", " loops", " shaders", " wrappers", " graphics"], [" OpenGL", "OpenGL", " WebGL", " shaders", " loops", " bindings", " calls", " GPU"], [" OpenGL", "OpenGL", " rendering", " WebGL", " bindings", " loops", " shaders", " GPU"], [" OpenGL", "OpenGL", " loops", " GL", " WebGL", " rendering", "/GL", " shaders"], [" OpenGL", "OpenGL", " GL", "/GL", " gl", "/gl", " glue", " GLUT"], [" OpenGL", "OpenGL", " GL", " bindings", " `", " rendering", " loops", " binding"]], "p": [[0.5738, 0.2111, 0.1644, 0.0237, 0.0053, 0.005, 0.0027, 0.0021], [0.449, 0.1992, 0.0608, 0.0473, 0.0418, 0.0099, 0.0064, 0.0039], [0.5679, 0.1627, 0.1627, 0.0283, 0.0194, 0.0194, 0.0171, 0.0023], [0.0669, 0.0246, 0.0071, 0.0043, 0.0033, 0.0031, 0.0023, 0.002], [0.0332, 0.0276, 0.0259, 0.0189, 0.0065, 0.0065, 0.0061, 0.0058], [0.0274, 0.0089, 0.0045, 0.004, 0.0037, 0.0033, 0.0029, 0.0029], [0.0337, 0.0317, 0.0247, 0.011, 0.0075, 0.0075, 0.0071, 0.0066], [0.1983, 0.1644, 0.039, 0.0268, 0.0105, 0.0082, 0.0056, 0.0053], [0.407, 0.407, 0.0403, 0.0042, 0.0019, 0.0018, 0.0017, 0.0017], [0.985, 0.0023, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.9274, 0.0462, 0.0012, 0.0006, 0.0005, 0.0005, 0.0004, 0.0004], [0.0136, 0.0128, 0.0113, 0.0088, 0.0083, 0.0047, 0.0044, 0.0024], [0.0471, 0.0112, 0.0041, 0.0041, 0.0023, 0.0021, 0.0018, 0.0017], [0.3284, 0.0082, 0.0077, 0.0018, 0.0015, 0.0013, 0.0011, 0.001], [0.1854, 0.0152, 0.0036, 0.0036, 0.0034, 0.003, 0.0026, 0.0026], [0.0446, 0.0136, 0.006, 0.0053, 0.0041, 0.003, 0.0027, 0.0027], [0.5255, 0.0431, 0.0033, 0.0031, 0.0028, 0.0028, 0.0026, 0.0023], [0.227, 0.0073, 0.0061, 0.0057, 0.0037, 0.0037, 0.003, 0.0018], [0.0235, 0.0172, 0.0134, 0.0111, 0.0072, 0.0056, 0.0056, 0.0046], [0.0528, 0.0207, 0.0151, 0.0142, 0.0092, 0.0092, 0.0076, 0.0056], [0.4841, 0.0107, 0.0074, 0.0069, 0.0047, 0.0047, 0.0045, 0.0042], [0.0454, 0.0147, 0.0035, 0.0031, 0.002, 0.0018, 0.0017, 0.0016], [0.3692, 0.0343, 0.0303, 0.0064, 0.006, 0.0032, 0.0026, 0.0022], [0.1234, 0.0797, 0.013, 0.0122, 0.0084, 0.0084, 0.0079, 0.0065], [0.1317, 0.0484, 0.0313, 0.0244, 0.0215, 0.0115, 0.0115, 0.0102], [0.3295, 0.129, 0.0538, 0.0239, 0.0211, 0.0186, 0.0145, 0.0136], [0.1787, 0.1679, 0.0545, 0.0177, 0.0177, 0.0122, 0.0101, 0.0079], [0.4395, 0.0717, 0.0559, 0.0463, 0.0339, 0.0299, 0.0233, 0.008], [0.1617, 0.1617, 0.0674, 0.0193, 0.016, 0.015, 0.015, 0.011], [0.4486, 0.0473, 0.0346, 0.0223, 0.0144, 0.0093, 0.0087, 0.0082], [0.1833, 0.0464, 0.0299, 0.0281, 0.0193, 0.0182, 0.0141, 0.0133], [0.0523, 0.0298, 0.0247, 0.0218, 0.0205, 0.0117, 0.0117, 0.011], [0.1067, 0.0942, 0.027, 0.0238, 0.0106, 0.0106, 0.0099, 0.0082], [0.0504, 0.0144, 0.012, 0.0112, 0.0106, 0.0106, 0.0106, 0.0093], [0.0211, 0.0186, 0.0175, 0.0145, 0.0145, 0.0128, 0.0106, 0.0082], [0.0224, 0.0186, 0.0154, 0.0154, 0.0145, 0.0145, 0.0128, 0.01], [0.0353, 0.0332, 0.0259, 0.0178, 0.0167, 0.0138, 0.0122, 0.0108], [0.0352, 0.0274, 0.0242, 0.0166, 0.0156, 0.0156, 0.0138, 0.0107], [0.0312, 0.0293, 0.0259, 0.0259, 0.0215, 0.0189, 0.0148, 0.0148], [0.1155, 0.07, 0.0425, 0.0292, 0.0258, 0.0242, 0.0201, 0.0201], [0.2461, 0.1163, 0.0355, 0.0333, 0.0313, 0.0294, 0.0259, 0.0229], [0.2082, 0.0868, 0.0596, 0.0385, 0.0385, 0.0362, 0.034, 0.0219], [0.1983, 0.1202, 0.0644, 0.0534, 0.0501, 0.0345, 0.0304, 0.0222], [0.2159, 0.131, 0.102, 0.0425, 0.0311, 0.0292, 0.0228, 0.0228], [0.1587, 0.1491, 0.075, 0.0621, 0.0377, 0.0215, 0.0215, 0.0178], [0.1748, 0.1362, 0.0729, 0.0501, 0.0285, 0.0153, 0.0135, 0.0119], [0.1801, 0.1026, 0.0799, 0.0516, 0.0229, 0.0168, 0.0139, 0.013], [0.2441, 0.1391, 0.1018, 0.02, 0.02, 0.0177, 0.0147, 0.0147], [0.1119, 0.0563, 0.0321, 0.0235, 0.0207, 0.0151, 0.0104, 0.0104], [0.0304, 0.0184, 0.0163, 0.0135, 0.0135, 0.0127, 0.0127, 0.0105], [0.1073, 0.0395, 0.0348, 0.0239, 0.0145, 0.0145, 0.0136, 0.012], [0.1732, 0.1118, 0.032, 0.0234, 0.0234, 0.022, 0.0125, 0.0118], [0.1136, 0.0647, 0.0571, 0.0369, 0.0306, 0.027, 0.0144, 0.0136], [0.1586, 0.0849, 0.0293, 0.0243, 0.0215, 0.0202, 0.0157, 0.0139], [0.5399, 0.1547, 0.1063, 0.0391, 0.0209, 0.0185, 0.0105, 0.0072], [0.4944, 0.1416, 0.0859, 0.046, 0.046, 0.0279, 0.0279, 0.014], [0.7235, 0.0594, 0.036, 0.0318, 0.015, 0.0103, 0.0091, 0.008], [0.8513, 0.0227, 0.0121, 0.0121, 0.0095, 0.0074, 0.0074, 0.0074], [0.9585, 0.0083, 0.0044, 0.0035, 0.0035, 0.0031, 0.0024, 0.0019], [0.9863, 0.0066, 0.0015, 0.0007, 0.0004, 0.0004, 0.0003, 0.0003], [0.9874, 0.0046, 0.0009, 0.0009, 0.0005, 0.0005, 0.0005, 0.0004], [0.9884, 0.0036, 0.0025, 0.0006, 0.0005, 0.0004, 0.0004, 0.0003], [0.9786, 0.0027, 0.0027, 0.002, 0.0015, 0.0014, 0.0008, 0.0007]], "ranks": {"Python": [725, 977, 583, 49, 1, 10, 1, 4, 6, 13, 5, 3, 3, 6, 58, 74, 49, 8, 11, 48, 54, 2, 2, 5, 2, 1, 1, 7, 1, 2, 2, 9, 115, 8, 3, 5, 1, 1, 2, 7, 4, 2, 3, 9, 9, 10, 10, 10, 4, 11, 5, 40, 16, 22, 12, 25, 9, 29, 23, 29, 17, 63, 22]}}, {"pos": 582, "top": [["s", " @", " \u00a9", " [@", "\u0627\u062a", " \u2022", "\ufffd", " >>>"], ["s", " \uff3b", "\u0627\u062a", " [@", "\u044b", "  \n\n", "schild", "sche"], ["s", " \uff3b", "\u0627\u062a", " \u2026.", "  \n\n", " [@", "\u044b", "\u2026.."], ["s", "\u0627\u062a", " \uff3b", "satz", "sze", "s\u00f6k", "sene", "\u044b"], ["s", " \uff3b", "\u0627\u062a", " [@", " >>>", " @_", "schild", "\u044b"], ["s", "\u0627\u062a", " \uff3b", "\u044b", "schild", "s\u00f6k", " \u201d", "sider"], ["s", " \uff3b", "\u0627\u062a", " \u201d", " >>>", " \u00bb.", " _____", "_____"], ["s", "\u0627\u062a", " \uff3b", " >>>", "schild", " \u00bb.", " _____", " !!!"], ["s", " \uff3b", "schild", " \u00bb.", "\u0627\u062a", " \u00bb\u00bb", " >>>", " [@"], ["s", "schild", "\u0627\u062a", "s\u00f6k", "\u4e8b\u534a\u529f\u500d", " \uff3b", "sene", " \"@/"], ["s", "\u0627\u062a", " [@", " \uff3b", "schild", " \u00bb\u00bb", " >>>", " _____"], ["s", "\u0627\u062a", "schild", " \u00bb\u00bb", "s\u00f6k", "\u4e8b\u534a\u529f\u500d", "sene", "schrift"], ["s", "\u0627\u062a", "schild", "\u4e8b\u534a\u529f\u500d", "schrift", "s\u00f6k", " \u00bb\u00bb", " OpenGL"], ["s", "\u0627\u062a", "\u4e8b\u534a\u529f\u500d", " OpenGL", "schild", "s\u00f6k", "\u76f8\u8f85\u76f8\u6210", "scher"], ["s", "\u0627\u062a", "siz", " OpenGL", "\u4e8b\u534a\u529f\u500d", "\u4e0d\u53ef\u601d\u8bae", "scha", "scher"], ["s", "\u0627\u062a", "siz", "\u4e0d\u53ef\u601d\u8bae", "\u4e8b\u534a\u529f\u500d", "schild", " OpenGL", "sce"], ["s", "\u0627\u062a", "siz", "\u4e8b\u534a\u529f\u500d", " OpenGL", "schild", "\u044b", "soc"], ["s", "\u0627\u062a", " OpenGL", "\u4e8b\u534a\u529f\u500d", "schild", "scher", "siz", "schrift"], ["s", "\u0627\u062a", " OpenGL", "\u4e8b\u534a\u529f\u500d", "scher", "schrift", "\u4e0d\u53ef\u601d\u8bae", "s\u00f6k"], ["s", "\u0627\u062a", "\u4e0d\u53ef\u601d\u8bae", " OpenGL", "\u4e8b\u534a\u529f\u500d", "scher", "s\u0131z", " arguably"], ["s", "\u0627\u062a", "<|endoftext|>", " myriad", "  \n\n", " \u00ae", " \u2014", "\u4e0d\u53ef\u601d\u8bae"], ["s", " ``", " OpenGL", "\u4e8b\u534a\u529f\u500d", "TRGL", "\u0627\u062a", " \u00bb\u00bb", "schrift"], [" ``", "s", " OpenGL", "\u0627\u062a", "\u4e8b\u534a\u529f\u500d", "TRGL", " \u00bb\u00bb", " ''"], ["s", " ``", " OpenGL", "\u0627\u062a", " ''", "OpenGL", "\u4e8b\u534a\u529f\u500d", " {{--<"], [" OpenGL", "s", "OpenGL", " ``", "\u0627\u062a", " :::", " ---", " ===="], [" OpenGL", "OpenGL", " ``", " shaders", " :::", " optics", " pornstar", "TRGL"], [" OpenGL", "OpenGL", " shaders", " ``", " optics", " :::", " graphics", " WebGL"], [" OpenGL", "OpenGL", " ``", "s", " optics", " graphics", " ---", " ???"], [" OpenGL", "OpenGL", " shaders", " optics", " graphics", " :::", " ``", " ___"], [" OpenGL", " ___", "OpenGL", " shaders", " _____", " optics", " graphics", " :::"], [" OpenGL", " ``", " graphics", " ???", " ___", " optics", " shaders", " _____"], [" OpenGL", "s", " .", " modern", " and", " ,", " graphics", " ``"], [" OpenGL", "s", " graphics", " .", " /", " modern", " and", " games"], [" OpenGL", " graphics", " CGI", " hardware", "OpenGL", " RPG", " shaders", " games"], [" OpenGL", "s", "OpenGL", " RPG", " CGI", " shaders", " graphics", "/Open"], [" OpenGL", " /", "s", "OpenGL", " CGI", " shaders", " RPG", "/O"], [" OpenGL", " /", "s", "OpenGL", " shaders", " CGI", "/", "/O"], [" OpenGL", " /", "OpenGL", "/", "s", " shaders", "/Open", " WebGL"], [" OpenGL", " /", "OpenGL", "/", " shaders", "/Open", " WebGL", " or"], [" OpenGL", "OpenGL", " /", " WebGL", " Vulkan", " shaders", " graphics", " CGI"], [" OpenGL", "OpenGL", " WebGL", " /", " shaders", " Vulkan", " graphics", "/"], [" OpenGL", "OpenGL", " WebGL", " graphics", " shaders", " DirectX", " Vulkan", " CGI"], [" OpenGL", "OpenGL", " WebGL", " graphics", " shaders", " DirectX", " Vulkan", " CGI"], [" OpenGL", "OpenGL", " WebGL", "/O", " shaders", " graphics", " /", "/GL"], [" OpenGL", " via", "OpenGL", " WebGL", " shaders", " ORM", " APIs", " interfaces"], [" OpenGL", "/", "/O", " /", " or", " via", "/Open", "/GL"], ["/", " or", " /", "/O", " OpenGL", " via", "/G", "/V"], ["/", "/O", "/G", " or", "/V", "/R", "/D", "/S"], ["/", "/O", "/G", "/P", "/V", "/R", "/C", "/D"], ["/", "/O", "/G", "/V", "/M", "/P", "/C", "/S"], ["/O", "/", "/G", "/V", "/C", "/M", "/P", "/N"], ["/O", "/", "/G", "/V", "/C", "/M", "/P", "/D"], ["/O", "/", "/V", "/G", "/M", "/GL", "/C", "/P"], ["/O", "/G", "/V", "/", "/GL", "/Q", "/Web", "/API"], ["/GL", "/Web", "/O", "/API", "/V", "/Open", "/G", " OpenGL"], [" wrappers", " wrapper", "/GL", "/V", "/Web", " bindings", "wrapper", " OpenGL"], [" wrappers", "/py", " wrapper", "/GL", "/Web", " bindings", "/V", " calls"], ["/GL", "/py", " wrappers", " calls", "/V", " bindings", " wrapper", " OpenGL"], [" bindings", "/GL", "/gl", " OpenGL", " calls", "/V", "/bind", " binding"], [" bindings", "/V", " wrappers", "/GL", " binding", " calls", " wrapper", "/gl"], ["/V", " calls", " bindings", "/GL", " wrappers", "/py", "/gl", " binding"], ["/V", " calls", "/GL", " bindings", "/gl", "/W", " wrappers", " binding"], ["/V", " bindings", " calls", "/W", "/", " wrappers", "/GL", " binding"]], "p": [[0.9917, 0.0005, 0.0004, 0.0004, 0.0003, 0.0002, 0.0001, 0.0001], [0.9926, 0.0036, 0.0019, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001], [0.9986, 0.0005, 0.0002, 0.0002, 0.0, 0.0, 0.0, 0.0], [0.7254, 0.0922, 0.0361, 0.011, 0.0081, 0.0081, 0.0052, 0.0052], [0.9995, 0.0002, 0.0002, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9967, 0.0013, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001, 0.0], [0.9989, 0.0003, 0.0003, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9983, 0.0005, 0.0002, 0.0001, 0.0001, 0.0001, 0.0, 0.0], [0.9908, 0.0016, 0.0011, 0.001, 0.0009, 0.0004, 0.0003, 0.0002], [0.9978, 0.0004, 0.0002, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9985, 0.0003, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9429, 0.0068, 0.0026, 0.0011, 0.0008, 0.0007, 0.0007, 0.0006], [0.9742, 0.0017, 0.0007, 0.0007, 0.0004, 0.0003, 0.0002, 0.0002], [0.8902, 0.0025, 0.0018, 0.0007, 0.0004, 0.0004, 0.0003, 0.0003], [0.9688, 0.0014, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001], [0.9827, 0.0006, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0], [0.9979, 0.0002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9851, 0.0012, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001], [0.926, 0.0029, 0.0012, 0.0011, 0.0007, 0.0004, 0.0004, 0.0003], [0.9429, 0.0021, 0.0004, 0.0004, 0.0004, 0.0002, 0.0002, 0.0002], [0.9322, 0.0009, 0.0005, 0.0002, 0.0002, 0.0002, 0.0001, 0.0001], [0.1197, 0.0322, 0.0303, 0.0111, 0.0077, 0.0072, 0.0063, 0.0049], [0.2634, 0.17, 0.0295, 0.009, 0.0035, 0.0024, 0.0024, 0.0024], [0.293, 0.0894, 0.0155, 0.0039, 0.0027, 0.0017, 0.0013, 0.0012], [0.2917, 0.1662, 0.0476, 0.0271, 0.0047, 0.0047, 0.0037, 0.0029], [0.735, 0.047, 0.0039, 0.0036, 0.0023, 0.0021, 0.0014, 0.0013], [0.8191, 0.0434, 0.0043, 0.0036, 0.0028, 0.0016, 0.0015, 0.0012], [0.6227, 0.0351, 0.0291, 0.0121, 0.0069, 0.0045, 0.0037, 0.0033], [0.7451, 0.0308, 0.0094, 0.0073, 0.005, 0.003, 0.0025, 0.002], [0.4976, 0.0281, 0.0233, 0.015, 0.0125, 0.0103, 0.0091, 0.0049], [0.3924, 0.0208, 0.0208, 0.0195, 0.0152, 0.0134, 0.0092, 0.0092], [0.0663, 0.0516, 0.0276, 0.0148, 0.0115, 0.0108, 0.0102, 0.0096], [0.1438, 0.0497, 0.0104, 0.0098, 0.0092, 0.0092, 0.0086, 0.0086], [0.2795, 0.0179, 0.0102, 0.0084, 0.0079, 0.0079, 0.0074, 0.0074], [0.2902, 0.0164, 0.0136, 0.0136, 0.0082, 0.0082, 0.0077, 0.0064], [0.3663, 0.0598, 0.0301, 0.0142, 0.0133, 0.0098, 0.0086, 0.0067], [0.5524, 0.0483, 0.0275, 0.0201, 0.0101, 0.0084, 0.0079, 0.0065], [0.6997, 0.0651, 0.0165, 0.0078, 0.0061, 0.005, 0.0044, 0.0042], [0.7612, 0.0909, 0.0123, 0.0043, 0.004, 0.0035, 0.0031, 0.0031], [0.8757, 0.0171, 0.0151, 0.0043, 0.003, 0.0025, 0.0013, 0.0012], [0.9343, 0.0171, 0.0049, 0.0032, 0.0023, 0.002, 0.0011, 0.001], [0.9519, 0.0099, 0.0044, 0.0028, 0.002, 0.0011, 0.001, 0.0008], [0.9219, 0.0085, 0.0062, 0.0048, 0.0038, 0.0018, 0.0014, 0.0013], [0.7945, 0.0094, 0.0088, 0.0073, 0.0054, 0.0047, 0.0039, 0.0039], [0.6927, 0.0119, 0.0105, 0.0099, 0.0099, 0.0064, 0.006, 0.005], [0.202, 0.0656, 0.048, 0.0423, 0.0374, 0.0291, 0.0156, 0.0146], [0.2301, 0.1087, 0.0582, 0.0482, 0.0426, 0.0293, 0.0157, 0.013], [0.7772, 0.0438, 0.0142, 0.0126, 0.0111, 0.0111, 0.0111, 0.0098], [0.6125, 0.1064, 0.0269, 0.021, 0.021, 0.021, 0.0163, 0.0163], [0.2986, 0.2325, 0.0519, 0.0458, 0.0357, 0.0315, 0.0315, 0.0278], [0.3669, 0.1051, 0.0819, 0.0563, 0.0387, 0.0301, 0.0266, 0.0235], [0.2945, 0.1228, 0.0844, 0.0844, 0.0512, 0.0452, 0.031, 0.0242], [0.2847, 0.1524, 0.0924, 0.0635, 0.0437, 0.03, 0.03, 0.0234], [0.3005, 0.076, 0.076, 0.0522, 0.0461, 0.0407, 0.0407, 0.0359], [0.326, 0.1745, 0.154, 0.0566, 0.0441, 0.0441, 0.0268, 0.0143], [0.5648, 0.2078, 0.0675, 0.0409, 0.0248, 0.0219, 0.0063, 0.0063], [0.2967, 0.2619, 0.085, 0.0662, 0.0402, 0.0402, 0.0402, 0.0354], [0.3055, 0.1443, 0.1443, 0.0992, 0.0682, 0.0469, 0.0322, 0.0251], [0.5407, 0.3716, 0.0392, 0.0077, 0.006, 0.0041, 0.0036, 0.0036], [0.6114, 0.2888, 0.0237, 0.0163, 0.0163, 0.0163, 0.0053, 0.0041], [0.4106, 0.4106, 0.1038, 0.0337, 0.0204, 0.0046, 0.0036, 0.0022], [0.6567, 0.166, 0.0889, 0.0476, 0.0106, 0.0083, 0.005, 0.0024], [0.9577, 0.0255, 0.0035, 0.003, 0.0014, 0.0013, 0.0013, 0.001]], "ranks": {"Python": [7736, 127691, 129304, 62489, 9627, 62067, 8734, 7060, 4816, 13140, 3323, 7118, 10594, 25768, 23281, 26047, 18972, 10995, 19008, 12114, 1807, 4089, 1716, 2224, 2720, 2529, 1969, 237, 144, 157, 78, 172, 206, 87, 116, 72, 10, 12, 15, 9, 10, 11, 9, 17, 19, 35, 52, 151, 210, 543, 679, 362, 150, 115, 167, 121, 18, 43, 97, 98, 66, 178, 386]}}, {"pos": 583, "top": [[".", "\u0647", "\uff0e", "u", "ly", "an", "\uff08", ","], [" \uff3b", "\u0647", "\uff0e", " \uff1c", "ly", " \uff0f", " \uff08", " \u3010"], ["\uff0e", "\u0647", "ly", "u", " \uff3b", "\u5728", "\uff08", "["], [" \uff1c", " \uff0f", "raries", "\u0647", " \u301c", "\u5728", " **\u25a0", "\u30f3"], ["\u0647", " \uff0f", " \u3010", " \uff3b", "ly", "\uff20", " \uff1c", "\u5728"], ["\u5728", "\u0647", " \uff0f", "\u4e86", "\u4e0a", " \u3010", "raries", "ly"], ["\u5728", " \u3010", "\u0647", "\u4e0a", " \uff3b", "\u4e86", "\u7684", " \u301c"], ["ly", "\u0647", "\u5728", " \u301c", "raries", "\u4e86", " \uff0f", "\u7684"], ["ly", "ian", "raries", "\u0647", " \u301c", "...]", "...\u201d", "\u301c"], ["ian", "ly", "\u0647", "raries", "\u4e8b\u534a\u529f\u500d", "\u52c7\u5f80\u76f4\u524d", "\u52e4\u52e4\u6073\u6073", "\u5162\u5162\u4e1a\u4e1a"], ["ian", "\u0647", "ly", "...\\", "\u301c", "u", "...]", " ...\\"], ["ian", "raries", "ly", "\u0647", " \u301c", " **\u25a0", " ~>", "ROID"], ["raries", "ian", "ly", "\u0647", "ROID", " ~>", " \u301c", "-ish"], ["raries", "ian", "\u0647", "ly", "-ish", "-esque", "/V", "\u4e8b\u534a\u529f\u500d"], ["\u0647", "ian", "ly", "&amp", "u", "an", "-&", "-esque"], ["\u0647", "u", "&amp", "ly", "ian", "an", "-&", "n"], ["u", "ly", "ian", "an", "\u0647", "n", "ic", "&amp"], ["\u0647", "raries", "u", "ian", "ly", "ic", "-ish", "-esque"], ["\u0647", "raries", "u", "ly", "ian", "ic", "/&", "hoot"], ["ly", "\u0647", "u", "ian", "an", "ic", "&amp", "-&"], ["u", "an", "ly", "n", "v", "ian", "d", "\u0647"], ["raries", "\u0647", "ian", "ly", " Nues", "&quot", "hoot", "cape"], ["\u0647", "ly", "&quot", "ian", "raries", " ``", "&amp", "cape"], ["ly", "\u0647", "ian", "an", "u", "&quot", "cape", "ally"], ["ly", "ian", "&amp", "\u0647", "\\uff", "-esque", "&quot", "cape"], ["raries", " \u226e", " **\u25a0", " milfs", "lush", " strapon", "hawks", "/etc"], ["raries", "ly", "ian", "lush", " \u226e", " tech", " **\u25a0", "ftware"], [" ___", " _____", "___", " ...\\", " ____", " tech", "ian", "ly"], ["ian", " tech", " ___", " _____", "ly", " \uff0f", " technologies", " technology"], [" _____", " ___", " tech", " ...\\", "ian", " technology", " ____", " technologies"], [" technology", " tech", " complex", "ian", " technologies", " _____", " ___", " modern"], [" complex", " technology", " /", " tech", "ian", " modern", " .", " work"], [" complex", " /", " technology", "ian", " tech", " .", "/", " modern"], [" tech", "/etc", "ian", " technology", " technologies", " massively", "/", " complex"], [" tech", "/etc", "/", "ian", "tech", "/V", " \uff0f", "/v"], ["/V", "/etc", " tech", "/", "tech", "ian", "/v", " \u200b\u200b"], ["/V", "/etc", "/", " tech", " \u200b\u200b", "tech", "/v", "ian"], ["/etc", "/V", " tech", "/", " \u200b\u200b", " /", "/v", "tech"], ["/V", "/etc", " \u200b\u200b", " tech", " /", "/", " \uff0f", "/v"], [" Vulkan", " \u200b\u200b", " GPU", "/V", " \uff0f", "/etc", " tech", "ulkan"], [" Vulkan", " \u200b\u200b", " GPU", " tech", "/V", "/", " APIs", "/etc"], [" Vulkan", " GPU", " APIs", "/V", " WebGL", " GPUs", "/API", " tech"], [" Vulkan", " APIs", " GPU", "/V", " WebGL", "/API", " technologies", " shaders"], [" Vulkan", " APIs", "/V", " GPU", "/etc", " API", "/API", " WebGL"], [" APIs", " Vulkan", " API", " GPU", "/V", " WebGL", "/etc", "via"], [" APIs", "/etc", "/V", " Vulkan", " API", "/", "/API", " GPU"], ["/etc", "/", "/V", " APIs", "/API", "/u", "/v", " Vulkan"], ["/etc", "/", "/V", " APIs", "/v", "/u", "/G", "/M"], ["/etc", " APIs", "/V", "/", " via", " adapters", "/v", " apps"], ["/etc", " APIs", " setups", " workflows", " implementations", " apps", "/V", " interfaces"], ["/etc", "/V", " APIs", "/v", " setups", " workflows", " implementations", "/API"], [" APIs", " wrappers", " implementations", " interfaces", " setups", "/etc", " workflows", " shaders"], [" wrappers", " APIs", " shaders", " implementations", " setups", " interfaces", "Python", " tutorials"], [" wrappers", " APIs", " implementations", " shaders", " interfaces", " wrapper", " bindings", " setups"], [" wrappers", " calls", " APIs", " shaders", " implementations", " bindings", " loops", " wrapper"], [" wrappers", " wrapper", "wrapper", " bindings", " Wrapper", " wrapping", " wraps", "Wrapper"], [" wrappers", " wrapper", " bindings", " calls", "wrapper", " Wrapper", " shaders", " wrapping"], [" wrappers", " wrapper", " bindings", " calls", "wrapper", " shaders", " Wrapper", "calls"], [" bindings", " wrappers", " calls", " wrapper", " binding", "Bindings", "bindings", " binds"], [" wrappers", " bindings", " wrapper", " wrapping", " binding", "wrapper", " calls", " Wrapper"], [" bindings", " wrappers", " calls", " wrapper", " binding", " wrapping", "wrapper", "-bind"], [" bindings", " wrappers", " calls", " binding", " wrapper", " wrapping", "-bind", "ulkan"], [" bindings", " wrappers", " binding", "-bind", "ulkan", "Bindings", " calls", " wrapper"]], "p": [[0.1416, 0.0807, 0.0807, 0.0758, 0.0669, 0.0169, 0.014, 0.014], [0.3026, 0.1836, 0.0982, 0.0596, 0.0436, 0.0319, 0.0219, 0.011], [0.0966, 0.0586, 0.055, 0.0456, 0.0429, 0.0403, 0.0277, 0.0277], [0.1218, 0.0694, 0.0575, 0.0448, 0.0372, 0.0308, 0.0272, 0.024], [0.1652, 0.0941, 0.0831, 0.0608, 0.0473, 0.0473, 0.0392, 0.0346], [0.229, 0.1016, 0.0579, 0.0257, 0.0227, 0.02, 0.02, 0.0188], [0.2494, 0.0592, 0.0592, 0.0461, 0.0407, 0.0382, 0.0317, 0.0298], [0.083, 0.057, 0.0444, 0.0444, 0.0392, 0.0238, 0.021, 0.0185], [0.0607, 0.0473, 0.0444, 0.0346, 0.0287, 0.0144, 0.012, 0.0112], [0.1291, 0.1212, 0.0394, 0.0224, 0.0145, 0.012, 0.0113, 0.0068], [0.1369, 0.0941, 0.0646, 0.0646, 0.0185, 0.0174, 0.0154, 0.0136], [0.06, 0.0497, 0.0118, 0.0111, 0.0081, 0.0056, 0.0052, 0.0049], [0.0526, 0.0526, 0.0182, 0.0151, 0.0063, 0.0038, 0.0038, 0.0038], [0.04, 0.0376, 0.0243, 0.0189, 0.0138, 0.0095, 0.0061, 0.0054], [0.0822, 0.0343, 0.0267, 0.0162, 0.0126, 0.0118, 0.0111, 0.0098], [0.0547, 0.0514, 0.0453, 0.0426, 0.04, 0.0258, 0.0115, 0.0115], [0.1517, 0.0558, 0.0435, 0.0408, 0.0384, 0.0299, 0.0233, 0.0181], [0.0463, 0.0384, 0.0339, 0.016, 0.016, 0.0133, 0.011, 0.0103], [0.0907, 0.0403, 0.0215, 0.0202, 0.0123, 0.0062, 0.0051, 0.0045], [0.2219, 0.0985, 0.0636, 0.0636, 0.0142, 0.0142, 0.0133, 0.0081], [0.201, 0.1076, 0.0508, 0.0328, 0.0328, 0.0225, 0.0199, 0.0187], [0.0412, 0.0266, 0.022, 0.0161, 0.0098, 0.0092, 0.0052, 0.0046], [0.0594, 0.0463, 0.0219, 0.017, 0.0125, 0.011, 0.0046, 0.0043], [0.1093, 0.0485, 0.0402, 0.0074, 0.007, 0.0062, 0.0042, 0.0037], [0.0139, 0.0108, 0.0074, 0.0054, 0.0051, 0.0042, 0.0042, 0.0031], [0.005, 0.0037, 0.0031, 0.0024, 0.002, 0.002, 0.0016, 0.0014], [0.0027, 0.0027, 0.0024, 0.0021, 0.0021, 0.0019, 0.0018, 0.0018], [0.1507, 0.046, 0.0336, 0.0316, 0.0124, 0.0124, 0.0116, 0.0091], [0.0755, 0.0519, 0.0191, 0.0158, 0.0158, 0.0085, 0.0085, 0.0085], [0.064, 0.064, 0.0468, 0.0364, 0.0284, 0.025, 0.0172, 0.0162], [0.0525, 0.0384, 0.0281, 0.0233, 0.015, 0.0141, 0.0141, 0.011], [0.0479, 0.0423, 0.0273, 0.0129, 0.0121, 0.01, 0.0078, 0.0078], [0.0495, 0.0436, 0.034, 0.0219, 0.0194, 0.0151, 0.011, 0.0104], [0.1384, 0.029, 0.0226, 0.0226, 0.0176, 0.0107, 0.0107, 0.0094], [0.1165, 0.0801, 0.0486, 0.026, 0.026, 0.0202, 0.0096, 0.009], [0.0629, 0.0555, 0.049, 0.0406, 0.0337, 0.0159, 0.014, 0.0071], [0.0986, 0.087, 0.0678, 0.0528, 0.0341, 0.0265, 0.0249, 0.0071], [0.0851, 0.0851, 0.0549, 0.0516, 0.0377, 0.0259, 0.019, 0.0123], [0.0701, 0.0659, 0.0453, 0.0425, 0.04, 0.0353, 0.0214, 0.0122], [0.1884, 0.1467, 0.0327, 0.024, 0.0155, 0.012, 0.0106, 0.0094], [0.2585, 0.0577, 0.0577, 0.0272, 0.0226, 0.0212, 0.0199, 0.0176], [0.3904, 0.0871, 0.0562, 0.0283, 0.0234, 0.0161, 0.0142, 0.0125], [0.2447, 0.09, 0.0658, 0.0399, 0.0311, 0.0274, 0.0201, 0.0138], [0.1266, 0.0721, 0.0411, 0.022, 0.0194, 0.0182, 0.0171, 0.0142], [0.1239, 0.1093, 0.0294, 0.0294, 0.0244, 0.0139, 0.0131, 0.0108], [0.1006, 0.0784, 0.065, 0.0288, 0.0271, 0.0198, 0.0198, 0.0154], [0.7672, 0.0317, 0.0263, 0.018, 0.0103, 0.0038, 0.0038, 0.0031], [0.5751, 0.0939, 0.0535, 0.0209, 0.0082, 0.0072, 0.0068, 0.0068], [0.7696, 0.0492, 0.0132, 0.008, 0.0038, 0.0036, 0.0036, 0.0036], [0.2578, 0.1564, 0.054, 0.0349, 0.0272, 0.024, 0.0225, 0.0199], [0.6175, 0.1216, 0.0271, 0.0128, 0.0113, 0.0094, 0.005, 0.0039], [0.2286, 0.1149, 0.1014, 0.0423, 0.0309, 0.0176, 0.0166, 0.0166], [0.2548, 0.1452, 0.073, 0.0686, 0.0304, 0.0209, 0.0127, 0.0112], [0.3969, 0.1289, 0.0832, 0.0537, 0.0474, 0.021, 0.0164, 0.0154], [0.281, 0.1705, 0.1034, 0.1034, 0.0431, 0.0336, 0.0296, 0.0169], [0.7952, 0.1774, 0.0165, 0.0047, 0.0029, 0.0006, 0.0006, 0.0006], [0.8147, 0.1249, 0.0316, 0.0103, 0.0091, 0.0023, 0.0012, 0.0007], [0.7958, 0.095, 0.0449, 0.0449, 0.01, 0.002, 0.0012, 0.0005], [0.8817, 0.0929, 0.0143, 0.0052, 0.0019, 0.0004, 0.0004, 0.0004], [0.5811, 0.3111, 0.0891, 0.0039, 0.0027, 0.0027, 0.0021, 0.0016], [0.5154, 0.4014, 0.0373, 0.0257, 0.0074, 0.0027, 0.001, 0.0007], [0.6186, 0.2276, 0.0837, 0.0187, 0.0128, 0.0042, 0.0039, 0.0039], [0.8388, 0.0608, 0.0325, 0.0164, 0.012, 0.0057, 0.0047, 0.0032]], "ranks": {"Python": [51837, 160807, 194368, 175364, 106800, 166192, 84663, 144448, 114902, 162397, 46791, 130724, 136665, 182981, 199379, 173373, 145236, 105631, 127879, 159593, 32509, 145846, 143988, 132266, 37657, 73044, 45261, 7079, 2601, 2045, 1375, 2334, 2772, 1641, 3475, 2033, 457, 340, 295, 423, 163, 216, 160, 148, 113, 173, 460, 855, 422, 1337, 447, 29, 7, 12, 48, 48, 11, 17, 35, 42, 31, 45, 37]}}, {"pos": 584, "top": [["@\"", " \u2013", ".", " ", "@", "\"", ":\"", " @"], ["@\"", "[\"@", ":\\\"", " (@", " (\u201e", " [@", " \u2013", " \u00b7"], ["\u200b\u200b", " (\u201e", " \u2013", "@\"", ":\\\"", "\u201e", "[\"@", "["], ["``", " ``", " *\u201e", ":\\\"", " ``(", "*\u201c.", "\\\":\\\"", "{\\\""], [" (\u201e", "``", ":\\\"", " *\u201e", "@\"", ".\\\"", "{\\\"", "\u201e"], [" Vulkan", " (\u201e", ":\\\"", " Vk", " *\u201e", "?\u201c", "\u200b\u200b", "!\u201c"], ["\u200b\u200b", "\u201e", "raries", ".\\\"", ".\"", ":\\\"", " (\u201e", "\u064b\u0627"], [":\\\"", ".\\\"", " *\u201e", " (\u201e", "raries", "``", " **\u201e", "{\\\""], [".\\\"", "\u200b\u200b", ":\\\"", " \u200b\u200b", ".\u00ab", ".\u00bb", " (\u201e", " *\u201e"], [".\\\"", ",\\\"", ".\"", "-era", ".'\"", "ized", "-themed", "-inspired"], [".\\\"", "\\u", ".\"", ",\\\"", "\u200b\u200b", "-era", ".", ":\\\""], [".\\\"", " Vulkan", "{\\\"", ":\\\"", "-era", " LGBTQ", "-themed", "-inspired"], ["-era", " Vulkan", ".\\\"", "-themed", " LGBTQ", "-inspired", ":\\\"", ",\\\""], ["-era", " Vulkan", "-esque", "-inspired", " LGBTQ", "-themed", "ized", " theater"], ["-era", "-esque", "-inspired", ".\\\"", ",\\\"", " Vulkan", " LGBTQ", ":\\\""], ["-era", "-esque", " showcase", "-inspired", " LGBTQ", " Vulkan", " centerpiece", "\\u"], ["-esque", "-era", " showcase", " Vulkan", " LGBTQ", " entirety", "-inspired", " \u200b\u200b"], [" Vulkan", "-era", "-esque", " LGBTQ", "-inspired", " TikTok", " showcase", " blockchain"], [" Vulkan", "-esque", "-era", " LGBTQ", "-inspired", " Ukraine", " geopolitical", " geopol"], ["-esque", "-era", " Vulkan", "-inspired", " entirety", "\\u", "{\\\"", " LGBTQ"], ["-esque", "-era", "\\u", " Vulkan", " alongside", "-inspired", " entirety", " myriad"], [" Vulkan", " Ukraine", " LGBTQ", " esports", " geopolitical", "-esque", "-era", " aerospace"], [" Vulkan", " ``", "-esque", " Ukraine", " esports", " aerospace", "-era", " Ukrainian"], [" Vulkan", " alongside", " Russian", " Russia", "-esque", " ultimately", "-era", " ,"], [" Vulkan", "\\u", "-esque", "-era", " Ukraine", " Russian", " Russia", " aerospace"], [" Vulkan", " Ukraine", " aerospace", " Ukrainian", " Putin", " esports", " Russian", " Russia"], [" Vulkan", " aerospace", " esports", " Ukraine", " Ukrainian", " SpaceX", " Putin", " GPU"], [" Vulkan", " Ukraine", " aerospace", " Ukrainian", " Russia", "\\u", " esports", " Russian"], [" Vulkan", " Ukraine", " Russia", " Putin", " SpaceX", " Russian", " Ukrainian", " esports"], [" Vulkan", " Ukraine", " Putin", " esports", " SpaceX", " blockchain", " technology", " workflows"], [" Vulkan", " technology", " technologies", " Ukraine", " Russia", " infrastructure", " Russian", " Putin"], [" technology", " Vulkan", " Russia", " technologies", " Russian", " modern", " infrastructure", " Ukraine"], [" technology", " technologies", " Vulkan", " complex", " modern", " .", " infrastructure", " Russian"], [" technology", " technologies", " tech", " infrastructure", " massively", " complex", " Vulkan", " systems"], [" technology", " tech", " infrastructure", " technologies", " Vulkan", " complex", " systems", " massively"], [" /", " technology", " complex", " Vulkan", " \u200b\u200b", " heavily", " \u2014", " .\""], [" /", " complex", " \u200b\u200b", " technology", " Vulkan", " heavily", " requires", " deeply"], [" /", " complex", " technology", " requires", " .", " \u200b\u200b", " software", " infrastructure"], [" /", " complex", " technology", " requires", " software", " performance", " heavily", " infrastructure"], [" complex", " /", " requires", " technology", " \u200b\u200b", " performance", " impossible", " ."], [" technology", " complex", " performance", " /", " \u200b\u200b", " requires", " software", " protocols"], [" performance", " software", " technology", " workflows", " complex", " hardware", " operations", " programming"], [" performance", " software", " technology", " protocols", " programming", " workflows", " operations", " hardware"], [" performance", " software", " operations", " protocols", " workflows", " slow", " technology", " complex"], [" performance", " software", " operations", " inefficient", " protocols", " slow", " complex", " workflows"], [" performance", " slow", " operations", " inefficient", " software", " routines", " protocols", " complex"], [" workflows", " protocols", " routines", " slow", " performance", " operations", " implementations", " software"], [" routines", " slow", " protocols", " performance", " requires", " workflows", " operations", " delays"], [" routines", " protocols", " APIs", " setups", " deployments", " slow", " workflows", " operations"], [" workflows", " routines", " setups", " APIs", " protocols", " interfaces", " wrappers", " deployments"], ["\u505a\u4e0d\u5230", " setups", " workflows", " wrappers", "/etc", " protocols", " APIs", " deployments"], [" APIs", " implementations", " wrappers", " interfaces", " setups", "\u505a\u4e0d\u5230", " routines", " workflows"], [" APIs", " wrappers", " implementations", " setups", " interfaces", " shaders", "\u505a\u4e0d\u5230", " slows"], [" wrappers", " APIs", " implementations", " interfaces", " shaders", " wrapper", " setups", " bindings"], [" wrappers", " APIs", " calls", " implementations", " loops", " shaders", " bindings", " API"], [" wrappers", " wrapper", " bindings", "wrapper", " wraps", " Wrapper", " calls", " wrapping"], [" wrappers", " wrapper", " bindings", " calls", " Wrapper", " APIs", "wrapper", " callbacks"], [" wrappers", " calls", " bindings", " wrapper", " shaders", " APIs", "wrapper", " callbacks"], [" bindings", " wrappers", " calls", " wrapper", " binding", " binds", " APIs", "bindings"], [" wrappers", " bindings", " wrapper", " calls", " wraps", " binding", " wrapping", " binds"], [" bindings", " wrappers", " calls", " wrapper", " binding", " wrapping", " wraps", " binds"], [" bindings", " wrappers", " calls", " binding", " wrapper", " wrapping", " binds", " glue"], [" bindings", " wrappers", " calls", " binding", " binds", " wrapper", " wrapping", " loops"]], "p": [[0.303, 0.1115, 0.0437, 0.0385, 0.034, 0.0206, 0.0194, 0.0104], [0.1908, 0.1232, 0.0847, 0.0795, 0.0513, 0.0214, 0.0157, 0.0157], [0.1826, 0.1715, 0.104, 0.0593, 0.0557, 0.0491, 0.028, 0.0218], [0.558, 0.0357, 0.0335, 0.0296, 0.0116, 0.0096, 0.0096, 0.009], [0.1019, 0.0958, 0.0958, 0.0845, 0.0292, 0.0242, 0.0227, 0.0177], [0.0309, 0.0226, 0.02, 0.0166, 0.0146, 0.0146, 0.0129, 0.0094], [0.0804, 0.0245, 0.023, 0.0179, 0.0158, 0.014, 0.0116, 0.0085], [0.0701, 0.0399, 0.0311, 0.0214, 0.0201, 0.0166, 0.0114, 0.0114], [0.0872, 0.0439, 0.0342, 0.0221, 0.0207, 0.0142, 0.0142, 0.0126], [0.0515, 0.0202, 0.0157, 0.0108, 0.0095, 0.009, 0.0074, 0.0074], [0.3938, 0.047, 0.0442, 0.0442, 0.0285, 0.0222, 0.0222, 0.0173], [0.0189, 0.0138, 0.0122, 0.0107, 0.0089, 0.0084, 0.0074, 0.0057], [0.0298, 0.0263, 0.0232, 0.0132, 0.0132, 0.0117, 0.0097, 0.0075], [0.0437, 0.0194, 0.0151, 0.0133, 0.0125, 0.0104, 0.0059, 0.0052], [0.0442, 0.0143, 0.0119, 0.0105, 0.0093, 0.0072, 0.0056, 0.0047], [0.0171, 0.0161, 0.0104, 0.0071, 0.0063, 0.0059, 0.0036, 0.003], [0.043, 0.0216, 0.0123, 0.0109, 0.0085, 0.0055, 0.0055, 0.0051], [0.0311, 0.0311, 0.0258, 0.0147, 0.0084, 0.0069, 0.0065, 0.0065], [0.0331, 0.0331, 0.0214, 0.0201, 0.0095, 0.0058, 0.0054, 0.0051], [0.0435, 0.0318, 0.017, 0.0091, 0.0086, 0.0086, 0.0063, 0.0063], [0.0171, 0.0142, 0.011, 0.0071, 0.0071, 0.0049, 0.0046, 0.0043], [0.057, 0.0093, 0.0087, 0.0087, 0.0077, 0.0077, 0.0068, 0.0064], [0.0803, 0.0379, 0.0109, 0.0102, 0.007, 0.007, 0.0051, 0.0051], [0.0523, 0.0103, 0.0085, 0.008, 0.0071, 0.0067, 0.0062, 0.0062], [0.2113, 0.073, 0.0416, 0.0286, 0.0144, 0.0135, 0.0135, 0.0127], [0.6645, 0.0258, 0.0201, 0.0156, 0.0114, 0.0101, 0.0095, 0.0079], [0.745, 0.0307, 0.0128, 0.0113, 0.0094, 0.0088, 0.0044, 0.0039], [0.3961, 0.0238, 0.0238, 0.0197, 0.0197, 0.0185, 0.0136, 0.0136], [0.4661, 0.0338, 0.0232, 0.0232, 0.017, 0.017, 0.015, 0.0132], [0.1983, 0.0268, 0.0223, 0.0209, 0.0196, 0.0184, 0.0173, 0.0127], [0.1864, 0.0443, 0.0252, 0.0252, 0.0223, 0.0196, 0.0173, 0.0163], [0.0656, 0.0257, 0.02, 0.02, 0.0188, 0.0177, 0.0129, 0.0114], [0.0785, 0.0186, 0.0175, 0.0155, 0.0145, 0.012, 0.0113, 0.0113], [0.1134, 0.0392, 0.0325, 0.0185, 0.0127, 0.0127, 0.0106, 0.0106], [0.1016, 0.0351, 0.031, 0.0241, 0.0177, 0.0156, 0.0114, 0.0101], [0.059, 0.0316, 0.0297, 0.0204, 0.0169, 0.0159, 0.0159, 0.0159], [0.0411, 0.0265, 0.0249, 0.0249, 0.0161, 0.0151, 0.0104, 0.0098], [0.0612, 0.0272, 0.0199, 0.0145, 0.0145, 0.0145, 0.01, 0.0088], [0.0843, 0.0511, 0.0156, 0.0147, 0.0101, 0.0101, 0.0089, 0.0089], [0.0609, 0.0419, 0.0175, 0.0175, 0.0145, 0.012, 0.012, 0.0113], [0.045, 0.0397, 0.0397, 0.029, 0.0187, 0.0165, 0.0165, 0.0107], [0.0844, 0.07, 0.058, 0.0257, 0.0242, 0.0166, 0.0166, 0.0147], [0.0692, 0.065, 0.0447, 0.0225, 0.0211, 0.0211, 0.0211, 0.0175], [0.0827, 0.0345, 0.0223, 0.0196, 0.0184, 0.0163, 0.0163, 0.0153], [0.0767, 0.0386, 0.0234, 0.0207, 0.0207, 0.0207, 0.0151, 0.0142], [0.0409, 0.03, 0.0248, 0.0233, 0.0171, 0.0151, 0.0117, 0.0117], [0.0329, 0.0309, 0.029, 0.0212, 0.0176, 0.0176, 0.0155, 0.0155], [0.0321, 0.0266, 0.0208, 0.0152, 0.0152, 0.0126, 0.0126, 0.0118], [0.0356, 0.0277, 0.0179, 0.0158, 0.0158, 0.0139, 0.0131, 0.0108], [0.048, 0.0451, 0.0374, 0.031, 0.0257, 0.0241, 0.02, 0.0156], [0.1028, 0.0517, 0.0334, 0.0179, 0.0168, 0.0168, 0.0158, 0.0158], [0.0833, 0.0735, 0.0609, 0.0573, 0.0573, 0.0538, 0.027, 0.0164], [0.1454, 0.1283, 0.0939, 0.0645, 0.0368, 0.0269, 0.0223, 0.0223], [0.2243, 0.2243, 0.1542, 0.0728, 0.0196, 0.0173, 0.0135, 0.0119], [0.202, 0.202, 0.1388, 0.1081, 0.0451, 0.0273, 0.0241, 0.0188], [0.8019, 0.1789, 0.0089, 0.0037, 0.0018, 0.0015, 0.0007, 0.0004], [0.7553, 0.1158, 0.062, 0.0547, 0.0017, 0.0017, 0.0017, 0.0013], [0.6208, 0.2284, 0.0741, 0.0654, 0.0015, 0.0014, 0.0009, 0.0009], [0.8438, 0.0785, 0.0693, 0.0034, 0.0016, 0.0006, 0.0004, 0.0002], [0.5498, 0.3779, 0.0511, 0.0129, 0.0022, 0.0022, 0.0014, 0.0004], [0.556, 0.3821, 0.0517, 0.0055, 0.0029, 0.0004, 0.0003, 0.0002], [0.7082, 0.1791, 0.0958, 0.0101, 0.0026, 0.0007, 0.0005, 0.0003], [0.9071, 0.0657, 0.0166, 0.0089, 0.0003, 0.0003, 0.0002, 0.0001]], "ranks": {"Python": [9167, 62194, 67578, 62946, 8059, 33121, 8120, 34130, 17792, 35307, 2990, 14345, 9996, 20735, 25950, 24929, 30299, 31851, 54358, 70385, 22721, 49908, 20130, 16352, 9624, 12620, 7733, 3121, 1974, 2705, 2195, 3188, 4624, 4171, 4261, 2264, 2056, 2151, 1908, 1521, 496, 384, 215, 266, 489, 743, 666, 984, 895, 1882, 2762, 459, 186, 283, 517, 322, 116, 196, 218, 253, 280, 265, 323]}}, {"pos": 585, "top": [[" \u2013", ",", ".", " ", "<|endoftext|>", "\u2013", " \u2013,", ";"], [" \u2013,", " \u2013**", " \u2013", " \r\n \r\n", " [@", " \n \n", "@\",", "\",["], [" \u2013,", " \u2013", " \u2013**", "\u2013", " \n \n", " \r\n \r\n", "**\u2013", ".\u2013"], [" ``(", " *\u201c", " \n \n", " **\u2018", "\uff0d\uff0d", "\uff1d\uff1d\uff1d\uff1d", " ``", " \r\n \r\n"], [" \n\n\n", " \n \n", " *\u201c", " \r\n \r\n", " **\u2018", " [@", " \n\n\n\n\n", " [$"], [" **\u2018", " \n \n", " **\u201c", " \n\n\n", " *\u201c", " \r\n \r\n", " **)", " \n        \n"], [" **\u2018", " **[", " \n\n\n", " \n \n", " *\u201c", " \r\n \r\n", " **\u201c", " **\u3010"], [" **\u2018", " **[", " \r\n \r\n", " **\u3010", " *\u201c", " __(", " \n \n", " **\u201c"], [" **\u2018", " *\u201c", " \n\n\n", " **[", " \r\n \r\n", " \n \n", " **\u201c", "__["], [" **\u2018", " \r\n \r\n", " \n \n", " **[", " [$", " [[", " *\u201c", " \n\n\n"], [" \n\n\n", " \n \n", " **\u2018", " \r\n \r\n", " **[", " [[", " [@", "[["], [" **\u2018", " **[", " **", " **\u201c", " **\"", " *\u201c", " [[", " \r\n \r\n"], [" **\u2018", " **[", " **", " transformative", " **\u2013", " **\u201e", " \r\n \r\n", " [["], [" **\u2018", " transformative", "\u89c6\u4f5c", " requisite", "\u2015", " \u2015", " showcased", " concurrently"], [" requisite", " arguably", " \u2015", " akin", " swiftly", "\u89c6\u4f5c", " ostensibly", "[["], [" arguably", " bolster", " entirety", " swiftly", " akin", " requisite", "-esque", " \u2015"], [" bolster", " akin", " arguably", " swiftly", "-esque", " requisite", " entirety", " bespoke"], [" **\u2018", " tweaked", "-esque", " **\u2013", "<|quad_end|>", " bespoke", "radas", " bolster"], [" \u2015", " **\u2018", " arguably", " tweaked", "-esque", "__[\"", " akin", " swiftly"], [" \u2015", " swiftly", " --", " arguably", " myriad", "\u2015", " ostensibly", " [["], ["<|endoftext|>", " \n\n", " \n\n\n", " \r\n\r\n", " swiftly", "[[", " \r\n \r\n", " --"], [" ``", " \u2015", " ``(", "BindingUtil", " **\u2018", "LIBINT", " \u2018\u2019", " \r\n \r\n"], [" ``", " ``(", " ''", " \u2015", " \r\n \r\n", " --", "BindingUtil", " [["], [" ``", " ''", " --", " ``(", " \u2015", " notably", " [[", " \r\n \r\n"], [" ``", " [[", " --", " \r\n \r\n", "[[", " \u2015", " __", " \n\n"], [" ``", " __", " ``(", " *__", " '__", " ___", " **\u2018", " __("], [" ``", " __", " *__", " ___", " '__", " ``(", " $__", " __("], [" __", " ``", " --", " ___", " _", " $__", " \r\n\r\n", " [["], [" __", " ``", " --", " ___", " tools", " techniques", " '__", " $__"], [" __", " ___", " '__", " ``", " *__", "__)", " **", " tools"], [" __", " **", " ___", " ``", " **.", " tools", " )**", " .**"], [" __", " **", " --", " ``", " tools", " British", " heavily", " techniques"], [" heavily", " notoriously", " tools", " techniques", " poorly", " British", " many", " --"], [" notoriously", " heavily", " poorly", " tools", " techniques", " awkward", " often", " arguably"], [" notoriously", " heavily", " awkward", " poorly", " famously", " tools", " deeply", " unreliable"], [" notoriously", " poorly", " heavily", " awkward", " cumbersome", " wildly", " often", " aggressively"], [" notoriously", " poorly", " awkward", " inefficient", " heavily", " cumbersome", " slower", " struggles"], [" notoriously", " poorly", " inefficient", " awkward", " slower", " heavily", " cumbersome", " slow"], [" inefficient", " notoriously", " slower", " poorly", " slow", " awkward", " cumbersome", " clumsy"], [" inefficient", " slower", " notoriously", " slow", " cumbersome", " poorly", " awkward", " clumsy"], [" slower", " slow", " inefficient", " notoriously", " slowed", " cumbersome", " slows", " awkward"], [" inefficient", " cumbersome", " slower", " slow", " notoriously", " software", " clumsy", " poorly"], [" inefficient", " slower", " cumbersome", " slow", " software", " slows", " clumsy", " notoriously"], [" inefficient", " slower", " cumbersome", " slow", " slows", " notoriously", " slowed", " heavily"], [" inefficient", " cumbersome", " slower", " slow", " notoriously", " slows", " poorly", " ineff"], [" inefficient", " cumbersome", " slow", " notoriously", " slower", " heavily", " unreliable", " poorly"], [" inefficient", " cumbersome", " slow", " notoriously", " slower", " (~", " slows", "\u52a8\u8f84"], [" (~", " inefficient", " slow", " (`", "\u52a8\u8f84", " cumbersome", " slows", " ("], [" (~", " (`", " (", "\u901f\u5ea6\u6162", " inefficient", " (>", " slows", "\u52a8\u8f84"], [" (`", " (~", " (", " (>", " ($", "\u901f\u5ea6\u6162", " ({", " (*"], [" (`", " (", " (~", "\u901f\u5ea6\u6162", " (**", "\u65e0\u6cd5\u6ee1\u8db3", " (>", " ([["], [" (`", "\u65e0\u6cd5\u6ee1\u8db3", " (~", "\u4e0d\u8db3\u4ee5", "\u901f\u5ea6\u6162", " (", " insufficient", "\u8fdc\u8fdc\u4e0d\u591f"], [" (`", "\u901f\u5ea6\u6162", " (~", " slows", "\u4e0d\u8db3\u4ee5", " slow", " (**", " ("], [" (`", " (", " (~", " (**", " (${", " (*", " ({", " (<"], [" (`", " (", " (~", " (**", " (<", " (>", " (*", " (__"], [" (`", " (", " (~", " (**", " (*", " (>", " ({", "\uff08"], [" (`", " (", "too", " too", " (~", " (**", "Too", " Too"], [" (`", " (", " too", "too", " (~", " Too", "Too", "-too"], [" (`", " too", " (", "too", " Too", "Too", "-too", " (~"], [" (`", " (", " are", " too", "too", " (~", " Too", "Too"], [" (`", " (", " too", " are", "too", " Too", " (~", "-too"], [" (`", " (", " are", " too", " (~", " cannot", "-too", " (*"], [" (`", " (", " are", " (~", " cannot", " (__", " (*", " `"]], "p": [[0.5784, 0.1657, 0.1374, 0.0239, 0.0093, 0.0068, 0.0037, 0.003], [0.2505, 0.126, 0.1183, 0.0718, 0.0595, 0.0463, 0.0219, 0.0206], [0.3594, 0.3594, 0.0429, 0.0314, 0.0277, 0.019, 0.0168, 0.0139], [0.0299, 0.0281, 0.0264, 0.0248, 0.0219, 0.0219, 0.0219, 0.017], [0.142, 0.0976, 0.0809, 0.0556, 0.0433, 0.0298, 0.0263, 0.0181], [0.1464, 0.0394, 0.0271, 0.0254, 0.0154, 0.0145, 0.0136, 0.0088], [0.3741, 0.1141, 0.065, 0.0574, 0.0574, 0.0348, 0.0255, 0.0225], [0.3348, 0.2031, 0.0795, 0.0353, 0.0293, 0.0275, 0.0275, 0.0214], [0.3059, 0.1538, 0.0683, 0.0499, 0.0414, 0.0389, 0.0222, 0.0098], [0.1139, 0.0649, 0.0446, 0.0198, 0.0186, 0.0154, 0.0082, 0.0082], [0.134, 0.0633, 0.0595, 0.0525, 0.0435, 0.0299, 0.0299, 0.0248], [0.4466, 0.1202, 0.0105, 0.0099, 0.0093, 0.0087, 0.0082, 0.0072], [0.2187, 0.0296, 0.0116, 0.0102, 0.008, 0.007, 0.0058, 0.0051], [0.0286, 0.0144, 0.0064, 0.0064, 0.0053, 0.005, 0.0047, 0.0039], [0.0179, 0.0131, 0.009, 0.009, 0.009, 0.007, 0.0058, 0.0054], [0.0202, 0.0202, 0.0167, 0.0157, 0.0122, 0.0108, 0.0101, 0.0074], [0.0264, 0.0219, 0.0193, 0.0125, 0.0125, 0.0103, 0.0103, 0.0097], [0.0098, 0.0086, 0.0072, 0.0056, 0.0049, 0.0038, 0.0038, 0.0032], [0.0141, 0.0117, 0.0117, 0.0091, 0.0086, 0.0086, 0.0071, 0.0059], [0.0798, 0.0157, 0.0148, 0.0108, 0.0079, 0.0079, 0.007, 0.0066], [0.9511, 0.0197, 0.003, 0.0012, 0.0006, 0.0004, 0.0003, 0.0003], [0.224, 0.0112, 0.0087, 0.0082, 0.0064, 0.0044, 0.0039, 0.0039], [0.7986, 0.0121, 0.0061, 0.0031, 0.0014, 0.0014, 0.0013, 0.0013], [0.7512, 0.0074, 0.0074, 0.0054, 0.0051, 0.0039, 0.0025, 0.0015], [0.1813, 0.0553, 0.0335, 0.0315, 0.0315, 0.0261, 0.0231, 0.018], [0.2401, 0.0607, 0.0197, 0.012, 0.0106, 0.0077, 0.006, 0.0053], [0.1908, 0.096, 0.0312, 0.0201, 0.0201, 0.0201, 0.0065, 0.0061], [0.2037, 0.0584, 0.0584, 0.0484, 0.0122, 0.0084, 0.0084, 0.0079], [0.1302, 0.0423, 0.0155, 0.0137, 0.01, 0.0069, 0.0065, 0.005], [0.2685, 0.0529, 0.0183, 0.0172, 0.0142, 0.0126, 0.0111, 0.0104], [0.4262, 0.0788, 0.0422, 0.029, 0.0165, 0.0146, 0.0107, 0.01], [0.164, 0.0323, 0.0268, 0.0236, 0.0196, 0.0162, 0.0126, 0.0126], [0.031, 0.0188, 0.0166, 0.0138, 0.0121, 0.0101, 0.0089, 0.0089], [0.0523, 0.0232, 0.017, 0.0132, 0.0103, 0.0091, 0.0085, 0.008], [0.1769, 0.0307, 0.0186, 0.0136, 0.0106, 0.0094, 0.0069, 0.0061], [0.2459, 0.0354, 0.0294, 0.0229, 0.009, 0.0066, 0.0058, 0.0045], [0.2439, 0.0579, 0.0544, 0.031, 0.0227, 0.02, 0.0166, 0.0114], [0.1494, 0.0706, 0.0623, 0.0428, 0.0276, 0.0215, 0.0202, 0.0139], [0.1186, 0.1114, 0.056, 0.0526, 0.0319, 0.0249, 0.0249, 0.0142], [0.1391, 0.1083, 0.0744, 0.0512, 0.031, 0.0227, 0.0188, 0.0166], [0.139, 0.1306, 0.1306, 0.0291, 0.0274, 0.0274, 0.0242, 0.0147], [0.227, 0.0574, 0.0476, 0.0307, 0.0271, 0.0255, 0.0198, 0.0198], [0.1256, 0.0811, 0.0632, 0.0338, 0.0247, 0.0218, 0.0193, 0.017], [0.2473, 0.0625, 0.0625, 0.0487, 0.023, 0.023, 0.0149, 0.0131], [0.2188, 0.0627, 0.0553, 0.0488, 0.0336, 0.0231, 0.0131, 0.0116], [0.1928, 0.0709, 0.0488, 0.0404, 0.0278, 0.0179, 0.0131, 0.0116], [0.087, 0.0496, 0.0386, 0.0283, 0.0249, 0.0142, 0.0142, 0.0111], [0.1624, 0.0561, 0.0527, 0.0386, 0.032, 0.032, 0.032, 0.0282], [0.294, 0.294, 0.1226, 0.0177, 0.0121, 0.0107, 0.0101, 0.0089], [0.3509, 0.3097, 0.1139, 0.0198, 0.0154, 0.012, 0.0113, 0.0073], [0.5977, 0.063, 0.0556, 0.0205, 0.018, 0.0132, 0.0132, 0.0117], [0.2009, 0.1564, 0.0949, 0.0837, 0.0652, 0.0396, 0.0372, 0.0349], [0.4884, 0.0962, 0.0515, 0.0401, 0.0401, 0.0276, 0.0276, 0.0276], [0.6823, 0.2215, 0.0494, 0.0125, 0.0036, 0.0032, 0.0025, 0.0022], [0.953, 0.0326, 0.0044, 0.0016, 0.001, 0.0007, 0.0005, 0.0005], [0.907, 0.0657, 0.0078, 0.0037, 0.0018, 0.0014, 0.0009, 0.0008], [0.9863, 0.004, 0.0017, 0.0015, 0.0009, 0.0006, 0.0005, 0.0005], [0.9898, 0.0052, 0.0007, 0.0006, 0.0005, 0.0003, 0.0003, 0.0002], [0.957, 0.012, 0.0106, 0.0073, 0.003, 0.0027, 0.0014, 0.0007], [0.9144, 0.0402, 0.019, 0.013, 0.002, 0.0019, 0.0018, 0.001], [0.8765, 0.0924, 0.0206, 0.0028, 0.0012, 0.001, 0.0009, 0.0007], [0.7289, 0.1435, 0.1118, 0.0056, 0.0017, 0.0016, 0.0005, 0.0004], [0.5611, 0.3403, 0.086, 0.0008, 0.0006, 0.0005, 0.0004, 0.0004]], "ranks": {"Python": [16205, 167179, 89725, 140735, 40127, 162546, 44683, 60482, 82048, 89193, 14555, 33780, 38087, 41034, 37859, 69398, 41526, 30433, 18965, 24628, 3215, 4003, 1188, 1906, 3354, 923, 559, 391, 102, 164, 97, 134, 298, 218, 268, 433, 465, 516, 456, 188, 93, 31, 38, 68, 90, 165, 169, 248, 511, 1667, 3994, 1341, 336, 312, 261, 107, 16, 18, 27, 20, 27, 32, 57]}}, {"pos": 586, "top": [[" \u2013", ".", ",", "\u2013", "s", ";", "o", "y"], [" \u2013", "\u2013", "\u2013and", "\u2013\u2013", "\u2011", "sWith", ",", "s"], ["\u2013", ",", ".", " \u2013", ".\u2013", "\u2026", "\u2013and", ";"], [" milfs", "\uff0a\uff0a\uff0a\uff0a", " Blowjob", " Shemale", "\uff1d\uff1d\uff1d\uff1d", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "enzi", "erias"], ["s", "e", " \u200b\u200b", "auf", "\u2026\u2026", "\u2013\u2013", "sWith", "nost"], [".\u2013", " \u200b\u200b", "\u2026..", "sWith", "kits", "\u2026.", "nost", "auf"], ["\uff1a", "s", "\u2026\u2026", "\u3002", "\uff09**", "\uff08", "\u4e2d", "\u5728"], [" **\u2013", " **\u201e", "**\u2013", "sdale", "crap", "schaft", " **+", "sut"], ["!\u201d.", "schuss", "scheid", " **\u201e", "egger", "\u0930\u0923", " \u200b\u200b", "\u5927\u91d1"], ["\u2013\u2013", "\u2013and", "-Cds", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\u2013", "\u8033\u719f\u80fd\u8be6", "\u5404\u79cd\u5404\u6837\u7684", ".\u2013"], ["\u2013", "\u2013\u2013", "\u2013and", "s", "-heavy", ".\u2013", "-ish", " arguably"], [" veggies", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " pricey", " booze", "ographics", " goodies", "idunt", ".kode"], [" veggies", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " savvy", " pricey", " goodies", " arguably", " booze", "\u582a\u6bd4"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " veggies", " savvy", " pricey", " goodies", " arguably", " impactful", " milfs"], [" arguably", " savvy", " touted", " pricey", " tweaked", " folks", " revamped", " faux"], [" arguably", " savvy", " touted", " pricey", " folks", " faux", " hefty", " sprawling"], [" arguably", " savvy", " folks", " touted", "s", " pricey", " tweaked", " hefty"], [" savvy", " quirky", " goodies", " tweaks", "-esque", " touted", " tweaking", " hefty"], [" savvy", " touted", " arguably", " quirky", "-esque", " pricey", " hefty", " goodies"], [" arguably", " savvy", " pricey", " touted", " hugely", " myriad", " hefty", "even"], ["<|endoftext|>", "\n\n", " arguably", " myriad", "even", " hugely", "though", "much"], [" pricey", " savvy", "\u4e94\u82b1\u516b", " arguably", " quirky", " Gabrie", " touted", " trendy"], [" ``", " arguably", " touted", "\u4e94\u82b1\u516b", " savvy", " pricey", " famously", " myriad"], [" ``", " arguably", " notably", " myriad", " famously", " hugely", " mostly", " often"], ["\n\n", " arguably", "\r\n\r\n", " \r\n\r\n", " \n\n", " notably", " famously", " hugely"], [" arguably", " ``", "\u4e94\u82b1\u516b", " famously", " ;;^", "/software", " \u0432\u0440\u043e\u0434\u0435", "acists"], [" arguably", " ``", " notably", " famously", "\u4e94\u82b1\u516b", "/software", " hacking", " fizz"], ["\n\n", " arguably", " \n\n", " notably", " --", "\r\n\r\n", " famously", " though"], [" arguably", " tech", " famously", " cheap", " often", " tools", " touted", " software"], [" tech", " arguably", " tools", " technologies", " **", " often", " cheap", " software"], [" often", " arguably", " tech", " tools", " like", " modern", " technologies", " even"], [" often", " like", " arguably", " even", " mostly", " popular", " modern", " such"], [" arguably", " often", " mostly", " tech", " like", " famously", " even", " sometimes"], [" \u0432\u0440\u043e\u0434\u0435", " tech", " arguably", " famously", " technologies", " mostly", " classics", " often"], [" \u0432\u0440\u043e\u0434\u0435", " tech", "\u6bd4\u5982", "\u8bf8\u5982", " arguably", " famously", "/software", " mods"], [" \u0432\u0440\u043e\u0434\u0435", "\u8bf8\u5982", "\u6bd4\u5982", " arguably", "/software", "often", " famously", "\u6216\u4f7f\u7528"], [" Python", " \u0432\u0440\u043e\u0434\u0435", "Python", " python", "/python", "\u6bd4\u5982", "\u8bf8\u5982", "-python"], [" Python", " \u0432\u0440\u043e\u0434\u0435", " python", "Python", "python", "\u8bf8\u5982", "/python", "-python"], [" Python", " \u0432\u0440\u043e\u0434\u0435", "Python", " python", "\u6bd4\u5982", "\u8bf8\u5982", "python", "_python"], [" Python", " OpenGL", "Python", "OpenGL", " \u0432\u0440\u043e\u0434\u0435", " python", "python", "_python"], [" Python", "Python", " OpenGL", "OpenGL", " python", "python", "_python", "-python"], [" Python", "Python", " OpenGL", " python", "-python", "_python", "python", "OpenGL"], [" Python", "Python", " OpenGL", " python", "_python", "-python", "python", "/python"], [" Python", "Python", " OpenGL", " python", "-python", "_python", "python", " ORM"], [" Python", "Python", " OpenGL", " python", " APIs", "-python", "via", "python"], [" Python", "-python", "\u8bf8\u5982", " APIs", "_python", "Python", "\u6216\u4f7f\u7528", " OpenGL"], ["\u8bf8\u5982", "/etc", "\u6bd4\u5982", " Python", " \u0432\u0440\u043e\u0434\u0435", "/API", "\u6216\u4f7f\u7528", "-python"], ["\u8bf8\u5982", "\u6bd4\u5982", " \u0432\u0440\u043e\u0434\u0435", "\u4f8b\u5982", "/etc", " \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440", "/API", "\u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440"], ["\u8bf8\u5982", "\u6bd4\u5982", " \u0432\u0440\u043e\u0434\u0435", "/API", "\u4f8b\u5982", "/etc", "/python", " \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440"], ["\u8bf8\u5982", "\u6bd4\u5982", " \u0432\u0440\u043e\u0434\u0435", "/API", "/etc", "/python", "\u5305\u62ec\u4f46\u4e0d\u9650\u4e8e", "\u5982\u6c34"], ["\u6bd4\u5982", "\u8bf8\u5982", " \u0432\u0440\u043e\u0434\u0435", "\u5982", "\u5982\u6c34", "())", "/API", "!)"], ["\u6bd4\u5982", "\u5982", "\u8bf8\u5982", " \u0432\u0440\u043e\u0434\u0435", "/API", "like", "/py", "\u4f8b\u5982"], [" Python", "/py", "Python", "-python", ".py", " PyQt", "(Py", " SQLAlchemy"], ["/py", "Python", " Python", "pygame", "(Py", "\u5982", "-python", " PyQt"], [" OpenGL", "OpenGL", " pygame", "/py", "pygame", " PyQt", "(py", "(Py"], [" OpenGL", "OpenGL", "/py", " pygame", "pygame", " Py", "(py", "(Py"], ["/py", " Py", "Py", " py", "py", "(py", "(Py", " PyQt"], [" Py", "Py", "/py", " PyQt", " py", "(Py", "py", "(py"], [" Py", "Py", " py", "/py", "(Py", " PyQt", " pygame", "py"], [" Py", "Py", " py", "(Py", "/py", "py", " pygame", " PyQt"], [" Py", " py", "Py", "/py", "py", "(Py", "_py", "(py"], [" Py", "Py", " py", "py", "like", "/py", "_py", " like"], ["like", "Py", " Py", " like", "e", "py", "OpenGL", "modern"]], "p": [[0.5822, 0.2142, 0.1472, 0.0422, 0.0039, 0.0031, 0.0015, 0.0014], [0.733, 0.1741, 0.0105, 0.0046, 0.0044, 0.0028, 0.0028, 0.0026], [0.8443, 0.1143, 0.0136, 0.012, 0.0094, 0.0027, 0.0021, 0.0003], [0.0085, 0.0051, 0.0033, 0.0029, 0.0029, 0.0029, 0.0026, 0.0024], [0.0566, 0.0365, 0.0303, 0.0251, 0.0173, 0.0119, 0.0119, 0.0111], [0.0158, 0.0109, 0.008, 0.0075, 0.0045, 0.0043, 0.004, 0.004], [0.0539, 0.0506, 0.042, 0.037, 0.037, 0.0288, 0.0211, 0.0198], [0.0197, 0.0153, 0.0082, 0.0053, 0.0047, 0.0039, 0.0036, 0.0036], [0.0075, 0.0075, 0.0066, 0.0062, 0.0049, 0.0043, 0.004, 0.004], [0.0063, 0.0052, 0.0049, 0.0049, 0.0032, 0.002, 0.0017, 0.0016], [0.0579, 0.0351, 0.0291, 0.0213, 0.0156, 0.0083, 0.0074, 0.0057], [0.0082, 0.0064, 0.0039, 0.0027, 0.0022, 0.0021, 0.0021, 0.0018], [0.0154, 0.0145, 0.005, 0.0044, 0.0037, 0.0029, 0.0024, 0.0022], [0.0103, 0.0052, 0.0043, 0.003, 0.002, 0.0018, 0.0018, 0.0014], [0.0654, 0.0212, 0.0129, 0.01, 0.0061, 0.0057, 0.0047, 0.0047], [0.0341, 0.0161, 0.0126, 0.0081, 0.0063, 0.0049, 0.003, 0.003], [0.0869, 0.0561, 0.0411, 0.032, 0.0249, 0.0171, 0.0142, 0.0142], [0.0338, 0.0205, 0.015, 0.0132, 0.0124, 0.0117, 0.0117, 0.0117], [0.0433, 0.0407, 0.0317, 0.0263, 0.0181, 0.0159, 0.0124, 0.0097], [0.0551, 0.0158, 0.0148, 0.0115, 0.0102, 0.0075, 0.0062, 0.0055], [0.6484, 0.0082, 0.005, 0.0025, 0.0021, 0.0019, 0.0017, 0.0016], [0.0034, 0.0032, 0.0027, 0.0024, 0.0022, 0.0017, 0.0014, 0.0013], [0.0146, 0.01, 0.0037, 0.0033, 0.0033, 0.0025, 0.0019, 0.0017], [0.0198, 0.0175, 0.01, 0.0042, 0.0042, 0.0032, 0.003, 0.003], [0.0208, 0.0126, 0.0092, 0.0076, 0.0072, 0.0053, 0.0046, 0.0028], [0.004, 0.0026, 0.0024, 0.0024, 0.0017, 0.0015, 0.0015, 0.0015], [0.0072, 0.0053, 0.0044, 0.0028, 0.0027, 0.0025, 0.0016, 0.0013], [0.0756, 0.0357, 0.0096, 0.009, 0.007, 0.0051, 0.0051, 0.0051], [0.0547, 0.0178, 0.0101, 0.0079, 0.0079, 0.007, 0.0058, 0.0058], [0.0331, 0.0311, 0.0292, 0.0156, 0.013, 0.013, 0.0107, 0.0107], [0.0769, 0.0363, 0.0283, 0.0266, 0.0266, 0.0161, 0.0161, 0.0134], [0.081, 0.0557, 0.0557, 0.0433, 0.0433, 0.0192, 0.0159, 0.0103], [0.0822, 0.0602, 0.0469, 0.0388, 0.0284, 0.0251, 0.0183, 0.0111], [0.0465, 0.0437, 0.03, 0.0234, 0.0206, 0.0171, 0.0097, 0.0097], [0.0662, 0.0259, 0.019, 0.0167, 0.0123, 0.0102, 0.0079, 0.0079], [0.0927, 0.032, 0.022, 0.0142, 0.0092, 0.0071, 0.0059, 0.0056], [0.4765, 0.0443, 0.0286, 0.0253, 0.0153, 0.0144, 0.0112, 0.0112], [0.4936, 0.0336, 0.0278, 0.0246, 0.0096, 0.009, 0.009, 0.0075], [0.383, 0.0518, 0.0404, 0.0261, 0.0131, 0.0116, 0.0116, 0.0102], [0.3261, 0.0934, 0.0683, 0.0196, 0.0162, 0.0153, 0.0126, 0.0119], [0.4545, 0.1149, 0.1014, 0.0226, 0.0176, 0.0129, 0.0089, 0.0069], [0.6347, 0.1103, 0.0555, 0.0231, 0.0109, 0.0103, 0.0085, 0.0075], [0.6104, 0.0685, 0.0568, 0.0237, 0.0184, 0.0119, 0.0077, 0.0072], [0.5369, 0.0641, 0.0441, 0.0173, 0.0077, 0.0068, 0.0068, 0.0049], [0.332, 0.0614, 0.029, 0.024, 0.0187, 0.0129, 0.0121, 0.01], [0.2145, 0.0241, 0.02, 0.0176, 0.0137, 0.01, 0.0094, 0.0094], [0.1424, 0.0979, 0.0492, 0.0408, 0.036, 0.0232, 0.0141, 0.0132], [0.3833, 0.2985, 0.0335, 0.0335, 0.0216, 0.0168, 0.0096, 0.0058], [0.263, 0.1924, 0.0295, 0.026, 0.0168, 0.0168, 0.0158, 0.0148], [0.177, 0.0836, 0.0308, 0.0255, 0.0211, 0.0128, 0.0113, 0.0061], [0.2297, 0.1085, 0.0701, 0.0375, 0.0201, 0.0189, 0.0114, 0.0074], [0.2839, 0.0922, 0.0634, 0.0299, 0.015, 0.0097, 0.0091, 0.0086], [0.1114, 0.0983, 0.0868, 0.0676, 0.0596, 0.0526, 0.0465, 0.0282], [0.152, 0.0633, 0.0633, 0.0633, 0.0633, 0.0435, 0.0435, 0.0384], [0.4756, 0.0826, 0.0826, 0.0644, 0.0644, 0.0568, 0.0304, 0.0209], [0.6988, 0.1376, 0.0447, 0.0164, 0.0128, 0.0128, 0.01, 0.0078], [0.3127, 0.2436, 0.1897, 0.1477, 0.0291, 0.0257, 0.02, 0.0065], [0.4485, 0.3082, 0.0883, 0.0473, 0.0417, 0.0287, 0.012, 0.0093], [0.5899, 0.2787, 0.0377, 0.0229, 0.0202, 0.0139, 0.0084, 0.0066], [0.6159, 0.2, 0.0834, 0.0239, 0.0211, 0.0186, 0.0113, 0.006], [0.7939, 0.0948, 0.0738, 0.0145, 0.01, 0.0042, 0.0037, 0.0008], [0.7745, 0.0925, 0.0561, 0.0206, 0.0142, 0.0125, 0.0086, 0.0086], [0.742, 0.1876, 0.0239, 0.0099, 0.0088, 0.0068, 0.0034, 0.0021]], "ranks": {"Python": [14456, 110572, 23014, 127780, 11874, 56265, 3910, 23355, 17356, 50993, 3103, 41582, 42534, 112637, 85835, 142880, 59634, 61915, 87876, 101189, 13110, 44045, 16146, 2845, 1509, 1686, 458, 263, 89, 66, 59, 239, 299, 196, 86, 12, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 9, 14, 41, 78, 16, 1, 2, 18, 12, 14, 14, 20, 16, 12, 21, 14]}}, {"pos": 587, "top": [[" \u2013", "\u2013", ".", ",", "\u00a0", "a", "\u2013and", " "], [" \u2013", "\u2013and", " *\u2013", "\u2013", " \u2013**", "**\u2013", " kids", "\u2018s"], [" \u2013", "\u2013", "\u2013and", " *\u2013", "**\u2013", "\u2018", ".\u2013", " \u2013,"], ["*\u201c.", " milfs", " Shemale", " Guta", " pornstar", "\u6700\u65b0\u53d1\u5e03", " Gabrie", " *\u2013"], ["\u2018s", " *\u2013", " \"--", "\ud83d\ude00", " kids", "\u2764", "::.", "(::"], ["\u2018s", "\ud83d\ude00", " kids", "\u2764", "\uff01", " veggies", " *\u2013", "\u5982\u6b4c"], ["\u2018s", " kids", "\u2764", "\uff01", "\u2018", "\ud83d\ude00", "\n\n\n", " \u00a0 \u00a0 \u00a0 \u00a0"], ["\u2018s", "\u2764", "\u6700\u65b0\u53d1\u5e03", "\ud83d\ude00", "..\"", " *\u2013", " veggies", " kids"], ["\u2018s", "..\"", " *\u2013", "\u6700\u65b0\u53d1\u5e03", " kids", "\n\n\n", "\"..", "\u2764"], ["\u2018s", "\u2013and", " kids", "!\"", " veggies", " *\u2013", "\u6700\u65b0\u53d1\u5e03", "..\""], ["\u2018s", "\u00a0", " kids", "\u2013and", "\n\n\n", "!\"", "\u6700\u65b0\u53d1\u5e03", "..\""], [" kids", " veggies", "\u2018s", " folks", "\u6700\u65b0\u53d1\u5e03", " *\u2013", "-esque", " **\u2018"], [" kids", "\u2018s", " veggies", "-esque", " folks", " booze", "\u6700\u65b0\u53d1\u5e03", " Kids"], [" kids", "-esque", "\u2018s", " folks", " veggies", " Kids", " booze", " showcase"], [" kids", " --", " folks", "-esque", " smack", " \u2018", " busted", " Philly"], [" kids", " folks", "-esque", " \u2018", " Kids", " showcasing", " smack", " --"], [" kids", "-esque", " \u2018", " folks", "\u00a0", "\u2018s", " Kids", "\u2018"], ["-esque", "\u2018s", " kids", " Kids", "\u2018", "\u00a0", "\u2013and", " \u2018"], ["-esque", " kids", " smack", "\u2018", "\u2018s", " \u2018", " folks", " hefty"], [" \u2018", "\u2018", "-esque", " kids", " smack", "\u00a0", " folks", "<|endoftext|>"], ["<|endoftext|>", "\n\n", "\n\n\n", " \n\n\n", " \u2018", " \n\n", "\u2018", "\u00a0"], ["-esque", " kids", " \u2018\u2019", " smack", " ``", " ''", " \u2018", " busted"], [" ``", "-esque", " ''", " kids", " \u2018\u2019", "``", " smack", " \u2018"], [" ``", " ''", " \u2018", "\n\n\n", " '", "-esque", " \u2018\u2019", " kids"], ["\n\n\n", " \n\n\n", " \n\n", "\n\n", "-esque", " ``", " \r\n\r\n", "[["], [" ``", "-esque", "_python", " \u0432\u0440\u043e\u0434\u0435", "``", " **\u2018", " *__", " tech"], [" ``", "-esque", "_python", "``", " *__", " ''", " \u0432\u0440\u043e\u0434\u0435", "__)"], ["-esque", " \n\n", " __", "_python", " ``", "\n\n", " tech", " \r\n\r\n"], ["-esque", " tech", "_python", " **\u2018", " \u0432\u0440\u043e\u0434\u0435", " Python", "Wiki", " Tech"], ["-esque", " tech", " Python", " \u0432\u0440\u043e\u0434\u0435", " BDSM", " **\u2018", " Lego", " Wiki"], [" tech", "-esque", " Tech", " Python", " Wiki", " Like", " modern", " Lego"], [" tech", "-esque", " Like", " Tech", " modern", " Magic", " like", " Modern"], [" tech", " Tech", "-esque", " Magic", " \u0432\u0440\u043e\u0434\u0435", " Lion", " Massive", " Lego"], ["-esque", " tech", " Tech", " \u0432\u0440\u043e\u0434\u0435", " Modular", " Lego", " Magic", " Ninja"], [" \u0432\u0440\u043e\u0434\u0435", "-esque", " tech", " Tech", "_python", "mods", " RPG", " Magic"], [" Python", " \u0432\u0440\u043e\u0434\u0435", "-esque", "mods", "Python", "_python", " Tech", " RPG"], [" Python", "Python", "_python", "/python", "python", " python", "-python", " Blender"], [" Python", "Python", "_python", " python", "python", " OpenGL", " Blender", "/python"], [" Python", " OpenGL", "Python", "_python", " Blender", " WebGL", " Vulkan", " python"], [" OpenGL", " Python", "Python", "OpenGL", " WebGL", "_python", " Vulkan", "python"], [" OpenGL", " Python", "Python", "OpenGL", " WebGL", "_python", "python", " Vulkan"], [" Python", " OpenGL", "Python", "OpenGL", "_python", " WebGL", "python", "-python"], [" OpenGL", " Python", "Python", "_python", "OpenGL", " WebGL", "-python", "python"], [" OpenGL", " Python", "Python", " WebGL", "OpenGL", "_python", "-python", "python"], [" Python", " OpenGL", "Python", " WebGL", "OpenGL", "_python", "python", " python"], [" Python", " OpenGL", "Python", " WebGL", "_python", "-python", "OpenGL", " Blender"], [" Python", " OpenGL", " WebGL", "Python", "-python", " ORM", "_python", " Blender"], [" Python", "Python", " OpenGL", " WebGL", "-python", "python", "OpenGL", " Gecko"], [" OpenGL", " WebGL", "-python", " Python", "Python", "/python", "python", " CUDA"], [" OpenGL", " WebGL", "-python", "/python", "_python", " Python", "AGMA", " PyQt"], [" WebGL", " OpenGL", "AGMA", "_python", "{})", "-python", "OpenGL", "plib"], [" OpenGL", " Python", " WebGL", " PyQt", "plib", "-python", "Python", "OpenGL"], [" Python", " PyQt", " pygame", " OpenGL", "-python", " SQLAlchemy", " Py", "Python"], [" PyQt", " pygame", " Python", "pygame", " Py", "-python", " OpenGL", "(Py"], [" OpenGL", " pygame", " PyQt", "pygame", "(py", "OpenGL", " Py", "/py"], [" OpenGL", " pygame", " Py", "OpenGL", "(py", " PyQt", "pygame", "/py"], [" Py", " py", "/py", "Py", "(py", "py", "_py", " PyQt"], [" Py", " PyQt", "Py", " py", "/py", "(py", "(Py", " pygame"], [" Py", "Py", " py", " pygame", " PyQt", "(Py", " OpenGL", "_py"], [" Py", " py", "Py", " pygame", "(Py", " OpenGL", " PyQt", "py"], [" Py", " py", "Py", "py", " pygame", "_py", "/py", "(Py"], [" Py", " py", "Py", " `", "_py", " PyQt", "(Py", "py"], [" Py", " `", " Modern", " OpenGL", " modern", " PyQt", " py", " Pillow"]], "p": [[0.7816, 0.0933, 0.0727, 0.0285, 0.0064, 0.0049, 0.0023, 0.0023], [0.5268, 0.2063, 0.0759, 0.0297, 0.0103, 0.0096, 0.0059, 0.0033], [0.4524, 0.3993, 0.1296, 0.0039, 0.0027, 0.0022, 0.0016, 0.0014], [0.0112, 0.0106, 0.0068, 0.0053, 0.0039, 0.0034, 0.003, 0.0028], [0.0682, 0.0365, 0.0284, 0.0251, 0.0152, 0.0119, 0.0111, 0.0111], [0.0475, 0.0475, 0.0164, 0.01, 0.0093, 0.0082, 0.0068, 0.0068], [0.2587, 0.0542, 0.0241, 0.0212, 0.0187, 0.0114, 0.0114, 0.0107], [0.4916, 0.0277, 0.023, 0.0216, 0.0168, 0.0158, 0.0148, 0.0148], [0.4276, 0.0451, 0.02, 0.0188, 0.0177, 0.0146, 0.0137, 0.0114], [0.0382, 0.0297, 0.0279, 0.015, 0.0066, 0.0062, 0.0062, 0.0059], [0.1175, 0.0808, 0.0759, 0.0358, 0.0337, 0.0297, 0.0217, 0.0149], [0.059, 0.0159, 0.0149, 0.014, 0.0116, 0.008, 0.0055, 0.0048], [0.0817, 0.0437, 0.0151, 0.0118, 0.0092, 0.0056, 0.0052, 0.0052], [0.0455, 0.0259, 0.0102, 0.007, 0.0058, 0.0058, 0.004, 0.0031], [0.0558, 0.0181, 0.017, 0.015, 0.0076, 0.0076, 0.0055, 0.0031], [0.1392, 0.0545, 0.0188, 0.0101, 0.0089, 0.0065, 0.0061, 0.0054], [0.0529, 0.0387, 0.0342, 0.0221, 0.0098, 0.0092, 0.0067, 0.0063], [0.072, 0.0465, 0.0437, 0.0133, 0.0092, 0.0086, 0.0067, 0.0056], [0.0831, 0.0346, 0.0144, 0.0144, 0.0144, 0.012, 0.0073, 0.0047], [0.0756, 0.0458, 0.0203, 0.0116, 0.0102, 0.0085, 0.008, 0.007], [0.7912, 0.0145, 0.0145, 0.0088, 0.0057, 0.005, 0.0044, 0.003], [0.0294, 0.0139, 0.0102, 0.007, 0.0066, 0.0051, 0.0042, 0.0024], [0.0846, 0.0292, 0.0275, 0.0108, 0.0074, 0.0054, 0.0045, 0.0024], [0.042, 0.0164, 0.0128, 0.0088, 0.0069, 0.006, 0.0037, 0.0029], [0.0458, 0.043, 0.038, 0.0315, 0.0203, 0.0109, 0.009, 0.0075], [0.0399, 0.0311, 0.0074, 0.0054, 0.0037, 0.0035, 0.0035, 0.0033], [0.0693, 0.0128, 0.01, 0.0094, 0.0073, 0.0064, 0.0047, 0.0037], [0.0119, 0.0105, 0.0099, 0.0093, 0.0087, 0.0087, 0.0047, 0.0047], [0.0468, 0.0152, 0.0118, 0.0087, 0.0081, 0.0056, 0.0025, 0.0023], [0.0229, 0.0157, 0.0108, 0.0079, 0.0062, 0.0054, 0.0054, 0.0051], [0.0301, 0.0171, 0.0111, 0.0104, 0.0056, 0.0056, 0.0056, 0.0046], [0.013, 0.0114, 0.0114, 0.0084, 0.0061, 0.0058, 0.0058, 0.0045], [0.0466, 0.0249, 0.0182, 0.0052, 0.0041, 0.0036, 0.0036, 0.0034], [0.022, 0.022, 0.0194, 0.0171, 0.0046, 0.0046, 0.0043, 0.0036], [0.0148, 0.0139, 0.0108, 0.0079, 0.0048, 0.0042, 0.004, 0.0037], [0.0168, 0.0123, 0.0074, 0.0066, 0.0062, 0.0058, 0.0054, 0.0051], [0.2966, 0.0798, 0.0584, 0.0178, 0.0157, 0.013, 0.0115, 0.0062], [0.351, 0.061, 0.0348, 0.012, 0.0113, 0.01, 0.0073, 0.0073], [0.1948, 0.0558, 0.0463, 0.0299, 0.011, 0.0103, 0.0086, 0.0086], [0.2529, 0.1354, 0.0639, 0.0388, 0.0221, 0.0183, 0.0076, 0.0076], [0.3282, 0.187, 0.1134, 0.057, 0.021, 0.0105, 0.0082, 0.0077], [0.3315, 0.2278, 0.1774, 0.0272, 0.0187, 0.0146, 0.0083, 0.0078], [0.2746, 0.2746, 0.1219, 0.0289, 0.0212, 0.0199, 0.0113, 0.0078], [0.2511, 0.2359, 0.1047, 0.0282, 0.0206, 0.0104, 0.0097, 0.0076], [0.2498, 0.1717, 0.1109, 0.0318, 0.0263, 0.0124, 0.0103, 0.0103], [0.2646, 0.0973, 0.0358, 0.0336, 0.0204, 0.0169, 0.0103, 0.0085], [0.148, 0.0699, 0.0617, 0.033, 0.0147, 0.0089, 0.0083, 0.0074], [0.0754, 0.0625, 0.0404, 0.0314, 0.0203, 0.007, 0.007, 0.0066], [0.0377, 0.0377, 0.0259, 0.0244, 0.019, 0.0148, 0.0079, 0.0074], [0.0167, 0.0147, 0.0138, 0.0095, 0.0084, 0.0061, 0.0048, 0.0048], [0.0158, 0.0148, 0.007, 0.007, 0.0066, 0.0048, 0.0045, 0.0045], [0.1291, 0.037, 0.037, 0.0348, 0.0254, 0.0175, 0.0136, 0.0136], [0.2289, 0.2289, 0.0656, 0.0656, 0.0579, 0.0398, 0.0291, 0.0273], [0.184, 0.1264, 0.1264, 0.0677, 0.0597, 0.0527, 0.0465, 0.032], [0.5971, 0.1711, 0.0713, 0.0382, 0.0232, 0.0159, 0.014, 0.0075], [0.8076, 0.0402, 0.0355, 0.0276, 0.0148, 0.0148, 0.0102, 0.009], [0.4481, 0.308, 0.0687, 0.0687, 0.0417, 0.0153, 0.0119, 0.0105], [0.6385, 0.111, 0.0864, 0.0673, 0.0248, 0.0193, 0.0193, 0.015], [0.7782, 0.0929, 0.0342, 0.0266, 0.0162, 0.0143, 0.0076, 0.0067], [0.7618, 0.0803, 0.0709, 0.0261, 0.0158, 0.0096, 0.0075, 0.0075], [0.873, 0.0812, 0.0264, 0.0031, 0.0028, 0.0028, 0.0025, 0.0025], [0.9367, 0.0412, 0.0072, 0.0063, 0.002, 0.0008, 0.0008, 0.0008], [0.851, 0.0955, 0.0156, 0.0065, 0.0035, 0.0031, 0.0025, 0.0022]], "ranks": {"Python": [16473, 95256, 73308, 122495, 39275, 47673, 15081, 49126, 28611, 37743, 9653, 20352, 13940, 16105, 10830, 14251, 13679, 9484, 10197, 12195, 2858, 753, 319, 420, 187, 11, 10, 19, 6, 3, 4, 13, 38, 18, 10, 1, 1, 1, 1, 2, 2, 1, 1, 2, 1, 1, 1, 1, 4, 6, 19, 2, 1, 2, 15, 10, 13, 14, 18, 16, 10, 12, 17]}}, {"pos": 588, "top": [[" \u2013", "\u2013", ".", " [\u2026]", ",", " \u2013,", "o", "i"], [" \u2013", "  \r\n", " \u2013,", " *\u2013", "\u2013", " \u2013**", "   \r\n", ":@"], [" \u2013", "\u2013", "\u2026..", " \u2013,", ".\u2013", "\u2013and", ",\u2026", " *\u2013"], [" ``(", " ``", "``", " YYS", "enzi", "\u3015", " *__", "anmar"], [":@", " @(", "@\\", " *@", " @_", " *\\", "iens", " @"], ["enko", "iens", ":@", "-gray", "anmar", "anat", " YY", "ihi"], ["  \r\n", " YY", "\\\\\"", ".py", "}\\\\", "gons", "\u8881", "   \r\n"], ["\\\\\"", " YY", "  \r\n", "anmar", ".py", "orama", "\u8881", "   \r\n"], ["\\\\\"", ".py", "}\\\\", "\r\n\r\n\r\n", "]\\\\", " YY", " *\u201c", "\r\n    \r\n"], ["\\\\\"", "}\\\\", "  \r\n", "YP", ":\\\\", "]\\\\", "iens", " \r\n \r\n"], ["}\\\\", "\\\\\"", "..", "an", "...", "\\n", ".py", "."], ["iens", "\\\\\"", "YP", " YY", "\ufffdt", "L\u0110", "orama", "kids"], ["iens", "L\u0110", "kids", "\u88f3", "orama", "YP", "enko", " YY"], ["iens", "kids", "L\u0110", "YP", "\u88f3", "-y", "orama", " YY"], ["an", "YP", "kids", "\\\\\"", " YY", "Sci", "...", "\u2026"], ["kids", "an", "YP", "iens", "-esque", "Sci", "ball", "instant"], ["kids", "an", "ball", "YP", "Sci", "-Fi", "-host", "iens"], ["kids", "\\\\\"", "Sci", "-Fi", "\u6d1b\u4f0a", "ball", "bike", "-host"], ["kids", "\\\\\"", "Sci", "YP", "-Fi", " YY", "?...", "Py"], ["\\\\\"", "an", "Sci", "...", " ...\\", "Py", "YP", "kids"], ["<|endoftext|>", "\n\n", "...", "an", "@", "  \n\n", "i", "\r\n\r\n"], [" ``", "orama", "``", " Py", "L\u0110", " PY", ".py", " Python"], [" ``", "``", " Py", " Python", ".py", "Sci", "orama", " PY"], [" ``", " Py", " ...", "``", " Python", " Cy", " --", " ''"], [" ``", " Python", "Py", "\n\n", "Python", " Py", "``", "an"], [" Python", "Python", "-python", " ``", "_python", ".py", "/python", "Py"], [" Python", "Python", "-python", "_python", " Py", " ``", ".py", "Py"], [" Python", "Python", "\n\n", "-python", "Py", "_python", " Py", " ..."], ["Python", " Python", "Py", "-python", "_python", ".py", "Sci", " Py"], ["Python", " Python", "-python", "Py", ".py", "__)", "/python", "python"], ["Python", " Python", "-python", ".py", "/python", "python", " python", "Py"], [" Python", "Python", "-python", ".py", " python", "/python", "Py", " Py"], [" Python", "Python", "-python", "Py", ".py", "/python", "/py", " python"], ["Python", "/python", "-python", " Python", "/py", "python", "Py", "Sci"], ["Python", "/python", "-python", "/py", " Python", "python", "Py", "(Py"], ["Python", "/python", "-python", "/py", " Python", "Py", "\u2026*", "python"], ["Python", "/python", "-python", " Python", "/py", "Py", "python", "ython"], ["Python", " Python", "/python", "-python", "Py", "/py", "python", "(Py"], ["Python", " Python", "/python", "-python", "Py", "/py", "python", "(Py"], ["Python", " Python", "Py", "-python", "/python", "python", "/py", " PyQt"], ["Python", " Python", "Py", "-python", "python", "/python", " PyQt", "/py"], ["Python", " Python", "-python", "Py", "/python", "python", "_python", " python"], ["Python", " Python", "-python", "Py", "/python", "python", "_python", " python"], ["Python", " Python", "-python", "Py", "python", "/python", " python", " OpenGL"], ["Python", " Python", "-python", "Py", "python", " python", " PyQt", " OpenGL"], [" Python", "Python", "-python", " Py", " PyQt", "Py", "python", " OpenGL"], [" Python", "Python", "-python", " PyQt", "python", " OpenGL", "/py", "/python"], ["Python", " Python", "Py", "-python", " PyQt", "python", "/py", "/python"], ["Python", "/py", "-python", "Py", " Python", "(py", "/python", " PyQt"], ["/py", "(py", "(Py", "Python", "-python", "/python", " PyQt", "Py"], ["(Py", "/py", "(py", "Py", "Python", "/python", "\tPy", "-python"], ["(Py", "/py", "(py", "Py", "OpenGL", "CUDA", " OpenGL", " PyQt"], ["(Py", "Py", "/py", "(py", "pygame", " PyQt", "OpenGL", " OpenGL"], ["Py", "/py", "(Py", "(py", "pygame", " Py", " PyQt", "OpenGL"], ["Py", "(Py", "/py", "(py", "pygame", " Py", " PyQt", "OpenGL"], ["OpenGL", " OpenGL", "(Py", "pygame", "Py", "(py", " PyQt", "/py"], ["OpenGL", " OpenGL", "(Py", "Py", " PyQt", "(py", "pygame", "/py"], ["OpenGL", " OpenGL", " PyQt", "(Py", " GLFW", "Py", "pygame", "Qt"], ["OpenGL", " OpenGL", " GLFW", "GL", "(Py", "Py", "pygame", " PyQt"], ["OpenGL", " OpenGL", " GLFW", "GL", "(Py", ".GL", " PyQt", "Py"], ["OpenGL", " OpenGL", "GL", " Py", "/py", "Py", "(Py", " PyQt"], ["OpenGL", " OpenGL", "GL", ".GL", " Py", "-op", "glfw", " GLFW"], ["OpenGL", "GL", " OpenGL", "Py", "G", "GPU", "SDL", "Open"]], "p": [[0.9494, 0.0325, 0.005, 0.0018, 0.0014, 0.0007, 0.0007, 0.0007], [0.5623, 0.1513, 0.0383, 0.0263, 0.0218, 0.0124, 0.0117, 0.0097], [0.3396, 0.2997, 0.0489, 0.0489, 0.0316, 0.0246, 0.0231, 0.018], [0.1072, 0.0476, 0.0307, 0.0186, 0.0064, 0.0047, 0.0042, 0.0027], [0.0944, 0.0505, 0.0475, 0.0288, 0.027, 0.0198, 0.0175, 0.0175], [0.015, 0.0109, 0.0085, 0.0049, 0.0033, 0.0029, 0.0028, 0.0026], [0.023, 0.0158, 0.0148, 0.0115, 0.009, 0.0084, 0.0079, 0.0079], [0.0405, 0.0191, 0.0191, 0.0159, 0.014, 0.0109, 0.0102, 0.0096], [0.2315, 0.0158, 0.0139, 0.009, 0.0084, 0.0074, 0.007, 0.007], [0.0526, 0.0264, 0.0097, 0.0081, 0.0081, 0.0071, 0.0049, 0.0041], [0.0526, 0.0465, 0.0319, 0.0282, 0.0249, 0.0234, 0.0142, 0.0104], [0.0442, 0.0105, 0.0093, 0.0068, 0.0064, 0.0047, 0.0044, 0.0041], [0.0301, 0.0059, 0.0046, 0.0041, 0.0041, 0.0038, 0.003, 0.0026], [0.0058, 0.0045, 0.0037, 0.0035, 0.0029, 0.0021, 0.0018, 0.0017], [0.0078, 0.0057, 0.0033, 0.0033, 0.0029, 0.0022, 0.0022, 0.0019], [0.0114, 0.0054, 0.0042, 0.0031, 0.0029, 0.0016, 0.0015, 0.0015], [0.0107, 0.0061, 0.0044, 0.0037, 0.0033, 0.0029, 0.0024, 0.002], [0.0105, 0.006, 0.0047, 0.0047, 0.0034, 0.003, 0.0023, 0.0022], [0.0069, 0.0069, 0.0069, 0.0045, 0.0033, 0.0031, 0.0031, 0.0027], [0.0082, 0.0053, 0.005, 0.0047, 0.0041, 0.0041, 0.0041, 0.0039], [0.4518, 0.0128, 0.0106, 0.0106, 0.0064, 0.0057, 0.0039, 0.0034], [0.0169, 0.0075, 0.0062, 0.0049, 0.0035, 0.0031, 0.0031, 0.0029], [0.1907, 0.0376, 0.0108, 0.0101, 0.0045, 0.0037, 0.0033, 0.0027], [0.0982, 0.0104, 0.0086, 0.0059, 0.0055, 0.0032, 0.0022, 0.002], [0.0336, 0.0116, 0.0096, 0.0096, 0.008, 0.0075, 0.0062, 0.0058], [0.2614, 0.116, 0.0401, 0.0332, 0.0243, 0.0139, 0.0122, 0.0122], [0.1812, 0.0519, 0.0458, 0.0179, 0.0179, 0.0158, 0.0123, 0.0109], [0.0564, 0.0364, 0.0364, 0.0143, 0.0134, 0.0118, 0.0111, 0.0104], [0.1575, 0.0792, 0.0351, 0.033, 0.0129, 0.0114, 0.0107, 0.0083], [0.3, 0.0974, 0.0521, 0.0337, 0.018, 0.0109, 0.0103, 0.0096], [0.2232, 0.1738, 0.093, 0.0267, 0.0221, 0.0172, 0.0162, 0.0126], [0.3103, 0.156, 0.0539, 0.0239, 0.0225, 0.0198, 0.0186, 0.0175], [0.1427, 0.134, 0.0595, 0.0318, 0.0248, 0.0233, 0.0206, 0.015], [0.0912, 0.0804, 0.0589, 0.0296, 0.0261, 0.0131, 0.0085, 0.0075], [0.1171, 0.1171, 0.0805, 0.0431, 0.0405, 0.0217, 0.0116, 0.0109], [0.1923, 0.0908, 0.0551, 0.0403, 0.0334, 0.0216, 0.0158, 0.0158], [0.4693, 0.1263, 0.072, 0.0676, 0.0282, 0.0265, 0.0219, 0.0091], [0.4878, 0.0902, 0.0848, 0.066, 0.04, 0.0293, 0.0243, 0.0095], [0.4667, 0.0863, 0.0632, 0.0557, 0.0524, 0.0263, 0.0232, 0.0117], [0.5841, 0.0743, 0.0543, 0.0398, 0.0273, 0.0188, 0.0083, 0.0078], [0.6933, 0.0938, 0.0535, 0.0269, 0.0153, 0.0144, 0.0047, 0.0044], [0.712, 0.1237, 0.0455, 0.0276, 0.0202, 0.013, 0.0051, 0.0042], [0.6086, 0.1744, 0.0641, 0.0236, 0.0208, 0.0152, 0.0098, 0.006], [0.5282, 0.1943, 0.0491, 0.0317, 0.0141, 0.0103, 0.0062, 0.0059], [0.4289, 0.2296, 0.0425, 0.0311, 0.0242, 0.0114, 0.0089, 0.0079], [0.3886, 0.1343, 0.0719, 0.0182, 0.0171, 0.0133, 0.0125, 0.011], [0.219, 0.0858, 0.052, 0.0315, 0.0132, 0.0102, 0.0102, 0.0102], [0.2445, 0.0845, 0.0452, 0.0311, 0.0177, 0.0156, 0.0122, 0.0095], [0.1062, 0.0502, 0.0391, 0.0324, 0.0196, 0.0173, 0.0173, 0.0163], [0.1001, 0.0444, 0.0368, 0.0269, 0.0253, 0.0253, 0.0223, 0.0174], [0.2276, 0.0837, 0.0613, 0.0199, 0.0146, 0.0128, 0.0106, 0.0106], [0.4493, 0.0571, 0.0474, 0.0445, 0.0346, 0.0197, 0.0136, 0.0068], [0.3605, 0.193, 0.1703, 0.0911, 0.038, 0.0179, 0.0131, 0.0085], [0.3124, 0.2757, 0.1672, 0.1302, 0.0423, 0.0073, 0.0057, 0.005], [0.2869, 0.2532, 0.1972, 0.1536, 0.044, 0.0208, 0.0098, 0.0076], [0.6869, 0.223, 0.0235, 0.0183, 0.0126, 0.0086, 0.0041, 0.0036], [0.6983, 0.2569, 0.0113, 0.0078, 0.0042, 0.0042, 0.0032, 0.0029], [0.575, 0.2716, 0.0535, 0.0253, 0.0174, 0.0135, 0.0105, 0.0044], [0.6817, 0.2842, 0.0067, 0.0059, 0.0059, 0.0022, 0.0017, 0.0013], [0.4901, 0.4901, 0.0062, 0.0018, 0.0016, 0.0012, 0.0007, 0.0006], [0.4686, 0.4686, 0.0097, 0.0091, 0.0059, 0.0034, 0.0028, 0.0028], [0.7159, 0.2324, 0.004, 0.0033, 0.0027, 0.0019, 0.0017, 0.0011], [0.962, 0.0083, 0.0057, 0.0047, 0.0033, 0.0013, 0.0012, 0.0012]], "ranks": {"Python": [887, 4534, 1798, 2698, 60, 246, 67, 73, 92, 176, 42, 58, 165, 162, 90, 73, 112, 44, 35, 40, 49, 8, 4, 5, 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, 4, 5, 8, 9, 12, 13, 16, 22, 67, 130, 246, 103, 1106, 70]}}, {"pos": 589, "top": [["s", " [@", "\ufffd", " @", " \u00a9", "@\"", "\u7684", " #@"], [" \uff3b", "s", "\uff20", " [@", "\uff3b", " @(", "\u7684", "@@@@"], ["s", " \uff3b", "\uff3b", " \u2026.", " [@", "\u7684", " (\u2026)", " \uff08"], [" \uff3b", " _____", "s", " **\u201c", " @_", " **\u3010", "\u7684", "\u0627\u062a"], ["s", " \uff3b", " [@", "_____", "\uff3b", " _____", " #@", " \uff08"], ["s", " _____", " \uff3b", " \uff08", "_____", "\u0627\u062a", " **\u201c", "\u044b"], ["s", " \uff3b", " _____", "_____", " \uff08", " >>>", " ???", "????"], ["s", " _____", "_____", " \uff3b", " ???", "schild", " >>>", " !!!"], [" _____", "s", " \uff3b", " ???", "schild", "_____", " .....", " #@"], ["s", " _____", "schild", "_____", " \"@/", "\u0627\u062a", "ized", " #@"], ["s", " _____", " [@", " \uff3b", " #@", "_____", "\u0627\u062a", " ???"], ["s", " _____", "ized", " ???", "schild", "istrator", "\u0627\u062a", " --->"], ["s", " _____", "ized", " ???", "istrator", " OpenGL", "schild", " \u00bb,"], ["s", "ized", " OpenGL", "\u4e8b\u534a\u529f\u500d", " AOL", "\u4e0d\u53ef\u601d\u8bae", " throughout", " United"], ["s", "\u4e0d\u53ef\u601d\u8bae", " Sidney", " AOL", " throughout", " utilizing", " United", "ized"], ["s", " utilizing", " transitioning", " arguably", "\u0627\u062a", "ized", " entirety", " OpenGL"], ["s", " utilizing", " arguably", " myriad", "\u0627\u062a", "ized", " OpenGL", " throughout"], ["s", " OpenGL", "\u0627\u062a", "\u4e0d\u53ef\u601d\u8bae", "\u4e8b\u534a\u529f\u500d", "\u623f\u5929\u4e0b", "OGLE", " Americas"], ["s", " OpenGL", "\u4e0d\u53ef\u601d\u8bae", "\u623f\u5929\u4e0b", " AOL", "\u0627\u062a", "OpenGL", "\u4e8b\u534a\u529f\u500d"], ["s", " ---", " _____", " --", "\u4e0d\u53ef\u601d\u8bae", " \uff3b", " myriad", " OpenGL"], ["<|endoftext|>", "\n\n", " \n\n", "s", "  \n\n", "\r\n\r\n", " \u2014", " \r\n\r\n"], [" ``", " OpenGL", " _____", " ---", " ====", "->___", " ``(", "RGBO"], [" ``", " ---", " [[", " --", " ''", " '''", " ====", " ==="], [" ``", " ,", " --", " [[", " ''", " ---", " {{--<", "s"], [" [[", " ``", " ---", "[[", " ====", " --", " ===", " _____"], [" ___", " ``", " _____", " ---", " ====", " OpenGL", " --->", "OpenGL"], [" ``", " OpenGL", "OpenGL", " ``(", " ====", " :::", " ---", " ___"], [" ``", " ---", " OpenGL", " --", " ''", "OpenGL", " [[", "\n\n"], [" [[", " OpenGL", " ====", "[[", " _____", " ``", " ---", " ___"], [" ...", " ``", " ...\\", " _____", " OpenGL", " ====", " ...,", " [["], [" ...", " [[", " ...,", " OpenGL", " ...\\", " .", " ,", " ===="], [" and", " ,", " [[", " .", " ...", " modern", " OpenGL", "[["], [" and", " ,", " .", " various", " or", " heavily", " nearly", " modern"], [" OpenGL", " CGI", " and", " Python", " seamlessly", " myriad", " heavily", " nearly"], [" OpenGL", " Python", " CGI", " etc", " UK", "/etc", " seamlessly", "OpenGL"], [" OpenGL", " .", "s", " ...", " Python", "\u2014but", " CGI", " ...,"], [" Python", " OpenGL", "Python", "s", "\u2014but", "ython", " python", " but"], [" Python", " OpenGL", " or", " but", " seamlessly", " python", " via", "Python"], [" Python", " OpenGL", " or", " but", " via", " technically", " python", "\u2014but"], [" OpenGL", " Python", " or", " but", " via", " directly", " .", " API"], [" OpenGL", " Python", " or", " via", " but", " directly", " API", " and"], [" Python", " via", " OpenGL", " API", " or", " directly", " using", " software"], [" via", " Python", " OpenGL", " API", " directly", " APIs", " interface", " interfaces"], [" via", " OpenGL", " directly", " Python", " API", " or", " Direct", " interfaces"], [" via", " or", " API", " directly", " Python", " OpenGL", " cumbersome", " uses"], [" or", " via", " directly", " using", " uses", " API", " but", " and"], [" or", " etc", "\u6216\u4f7f\u7528", " via", "\u6216\u901a\u8fc7", " directly", "/etc", " API"], [" or", " directly", "\u6216\u4f7f\u7528", "\u76f4\u63a5\u4f7f\u7528", " via", " direct", "\u6216\u76f4\u63a5", " Direct"], [" or", "\u6216\u4f7f\u7528", "\u6216\u901a\u8fc7", " \u0438\u043b\u0438", "\u6216\u76f4\u63a5", "\u6216\u7528", "/API", "\u76f4\u63a5\u4f7f\u7528"], [" or", "\u76f4\u63a5\u4f7f\u7528", " directly", " Direct", "\u6216\u4f7f\u7528", " direct", "/API", "/O"], [" or", "\u6216\u4f7f\u7528", "\u76f4\u63a5\u4f7f\u7528", "\u6216\u7528", "\u6216\u76f4\u63a5", " lacks", "Direct", "/O"], [" or", "\u6216\u76f4\u63a5", "\u6216\u901a\u8fc7", "\u6216\u4f7f\u7528", " \u0438\u043b\u0438", "\u6216\u5c0f", "\u6216\u7528", "\u6216"], [" or", ")", "\u6216\u4f7f\u7528", "\u6216\u76f4\u63a5", "\u6216\u5c0f", "\u6216\u901a\u8fc7", " \u0438\u043b\u0438", "\u6216"], [")", " or", "+)", "\u6216\u76f4\u63a5", " \u0438\u043b\u0438", " APIs", "/API", "\u6216\u4f7f\u7528"], [" or", "\u6216\u76f4\u63a5", ")", " \u0438\u043b\u0438", "\u6216", "Direct", "\u6216\u4f7f\u7528", " ho\u1eb7c"], [" Vulkan", " or", " wrappers", ")", " wrapper", "\u6216\u76f4\u63a5", "wrapper", " Vk"], [" Vulkan", "/py", "Py", " or", " Py", "py", " Python", "(py"], [" Vulkan", " Py", "Py", " or", " PyQt", "/py", "py", "(py"], [" Vulkan", " Py", "Py", " or", " PyQt", "/py", "py", "(Py"], [" or", ")", " Vulkan", " Py", "/py", " wrappers", "Py", "py"], [")", " Py", " or", "/py", "Py", " py", "py", " Vulkan"], [")", " )", " or", " Py", "/py", "Py", " py", " Vulkan"], [")", " or", " )", ",", "+)", "/V", "\u2019)", "/py"]], "p": [[0.2388, 0.0935, 0.0684, 0.0684, 0.0236, 0.0184, 0.0153, 0.0153], [0.5225, 0.1922, 0.0356, 0.0314, 0.0108, 0.0075, 0.0055, 0.0051], [0.6561, 0.1464, 0.0254, 0.0164, 0.0136, 0.0113, 0.0094, 0.0068], [0.5354, 0.0439, 0.025, 0.0183, 0.0172, 0.0134, 0.0111, 0.0087], [0.9617, 0.0256, 0.0019, 0.0015, 0.0011, 0.001, 0.0007, 0.0006], [0.6919, 0.039, 0.039, 0.0367, 0.0344, 0.0099, 0.0093, 0.003], [0.5364, 0.1274, 0.1197, 0.0726, 0.0111, 0.0053, 0.0041, 0.0041], [0.3386, 0.2327, 0.0296, 0.0278, 0.0216, 0.0096, 0.008, 0.0075], [0.2531, 0.1273, 0.0365, 0.0152, 0.0143, 0.0143, 0.0098, 0.0092], [0.5298, 0.017, 0.016, 0.0036, 0.0026, 0.0025, 0.0023, 0.0018], [0.7517, 0.031, 0.0089, 0.0054, 0.0031, 0.0019, 0.0016, 0.0015], [0.1277, 0.0567, 0.0087, 0.0072, 0.0047, 0.0036, 0.0036, 0.0027], [0.1459, 0.027, 0.0127, 0.0041, 0.0037, 0.0034, 0.0034, 0.0022], [0.1274, 0.0049, 0.0026, 0.0023, 0.0023, 0.0018, 0.0016, 0.0015], [0.1716, 0.0028, 0.0026, 0.0024, 0.0023, 0.0023, 0.0022, 0.0019], [0.3706, 0.006, 0.0036, 0.003, 0.0023, 0.0021, 0.0015, 0.0015], [0.6127, 0.0034, 0.0021, 0.002, 0.0016, 0.0012, 0.001, 0.0009], [0.1321, 0.0115, 0.004, 0.0031, 0.0021, 0.0021, 0.0019, 0.0017], [0.0204, 0.0096, 0.0055, 0.0038, 0.0024, 0.0023, 0.0021, 0.002], [0.0318, 0.016, 0.0097, 0.0052, 0.004, 0.0036, 0.003, 0.003], [0.1203, 0.0605, 0.0534, 0.0286, 0.0105, 0.0068, 0.0044, 0.0041], [0.1269, 0.0104, 0.0092, 0.0081, 0.0059, 0.0038, 0.0034, 0.0032], [0.4191, 0.0112, 0.0068, 0.0064, 0.006, 0.005, 0.0044, 0.0044], [0.1362, 0.0344, 0.0237, 0.0173, 0.0068, 0.0064, 0.005, 0.0044], [0.1381, 0.0477, 0.0289, 0.0187, 0.0187, 0.0176, 0.0137, 0.0128], [0.1088, 0.0902, 0.0847, 0.062, 0.0353, 0.0243, 0.0201, 0.0189], [0.1998, 0.1462, 0.0326, 0.027, 0.0186, 0.0164, 0.0154, 0.0136], [0.1881, 0.0327, 0.0307, 0.0225, 0.0136, 0.0136, 0.0128, 0.0113], [0.0786, 0.0476, 0.0448, 0.042, 0.0395, 0.0395, 0.0327, 0.024], [0.073, 0.0605, 0.0569, 0.0569, 0.0416, 0.0391, 0.0367, 0.0345], [0.0807, 0.0521, 0.049, 0.0406, 0.0316, 0.0262, 0.0246, 0.0192], [0.1463, 0.0783, 0.0475, 0.0394, 0.0239, 0.0113, 0.0106, 0.0088], [0.2507, 0.0718, 0.0182, 0.0133, 0.0091, 0.0086, 0.0081, 0.0081], [0.0451, 0.0114, 0.0107, 0.0107, 0.0095, 0.0078, 0.0065, 0.0054], [0.032, 0.0133, 0.0067, 0.0063, 0.0056, 0.0056, 0.0043, 0.0041], [0.0255, 0.024, 0.0145, 0.0136, 0.0136, 0.0113, 0.0069, 0.0069], [0.0562, 0.0266, 0.0118, 0.0111, 0.0104, 0.0098, 0.0076, 0.0071], [0.0562, 0.0341, 0.0171, 0.0092, 0.0081, 0.0081, 0.0063, 0.0052], [0.0511, 0.0451, 0.031, 0.0138, 0.0121, 0.0078, 0.0074, 0.0061], [0.0295, 0.019, 0.0158, 0.0123, 0.0115, 0.009, 0.0058, 0.0048], [0.0353, 0.0228, 0.0147, 0.013, 0.0122, 0.0115, 0.0079, 0.0079], [0.0544, 0.0424, 0.0398, 0.0177, 0.0156, 0.0146, 0.0138, 0.0101], [0.055, 0.0516, 0.0485, 0.0244, 0.0168, 0.0139, 0.0139, 0.0115], [0.0298, 0.0232, 0.0205, 0.0192, 0.0141, 0.0085, 0.0075, 0.0067], [0.0775, 0.0268, 0.0196, 0.0163, 0.0153, 0.0119, 0.0093, 0.0093], [0.2537, 0.0683, 0.0184, 0.0184, 0.0162, 0.0152, 0.0098, 0.0098], [0.6293, 0.0202, 0.019, 0.0131, 0.0058, 0.0045, 0.0045, 0.0037], [0.9208, 0.0066, 0.0062, 0.0031, 0.0026, 0.0023, 0.0021, 0.0016], [0.927, 0.015, 0.0043, 0.0023, 0.0022, 0.0022, 0.0015, 0.0011], [0.3915, 0.0564, 0.0321, 0.0221, 0.0195, 0.0195, 0.0118, 0.0111], [0.3639, 0.1043, 0.0338, 0.0181, 0.017, 0.016, 0.0141, 0.0125], [0.8867, 0.0173, 0.0093, 0.0082, 0.0056, 0.0028, 0.0028, 0.0023], [0.7368, 0.1644, 0.0064, 0.006, 0.0041, 0.0039, 0.0039, 0.0018], [0.4726, 0.3681, 0.0056, 0.0044, 0.0041, 0.0032, 0.0026, 0.0025], [0.804, 0.066, 0.0312, 0.0138, 0.0089, 0.0054, 0.0037, 0.0031], [0.3396, 0.2334, 0.0521, 0.0432, 0.0406, 0.0297, 0.0159, 0.0159], [0.1562, 0.1379, 0.0836, 0.0738, 0.0651, 0.0651, 0.0507, 0.0349], [0.3463, 0.0992, 0.0876, 0.0773, 0.0682, 0.0531, 0.0251, 0.0162], [0.2626, 0.1593, 0.1406, 0.0752, 0.0403, 0.0403, 0.0244, 0.0202], [0.295, 0.1393, 0.123, 0.0845, 0.0375, 0.0292, 0.0214, 0.0166], [0.7728, 0.0719, 0.0264, 0.0233, 0.0133, 0.011, 0.0091, 0.0081], [0.9747, 0.007, 0.0058, 0.0037, 0.0016, 0.0007, 0.0005, 0.0004], [0.9999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Python": [6792, 135233, 106295, 26488, 3001, 17292, 2420, 2236, 1556, 2991, 286, 344, 235, 742, 729, 1566, 1412, 624, 2125, 1214, 677, 733, 362, 551, 387, 131, 53, 38, 28, 18, 16, 17, 34, 3, 2, 4, 1, 1, 1, 2, 2, 1, 2, 4, 5, 11, 23, 33, 97, 115, 178, 179, 27, 26, 74, 37, 7, 13, 16, 15, 15, 37, 131]}}, {"pos": 590, "top": [[".", ",", " \u2013", "\u00a0", "\u00a0\u00a0", "\u2013", " ", ";"], [" \u2013", "\u2013", ",", ".", " ", "\u00a0\u00a0", ";", " \u200b\u200b"], [",", ".", "\u2013", " \u2013", "\u2026", "\u2026.", "\u2026..", ";"], [" Shemale", " Blowjob", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " **\u25cb", "-------------</", " cristi", " Strec", "\ufffd\ufffd"], [" **#", " ", " (@", " \u201c", " (**", " **\u201c", " (#", " \"@"], ["\u00a0\u00a0", ",", ".", " \u200b\u200b", "\u00a0", " **\u201c", "(**", "\u00a0\u00a0\u00a0"], [" **", " **\"", "\u00a0", "\u00a0\u00a0", " **\u201c", " \u201d", ".", " **("], [" **\"", " **\u20ac", " **", " **#", " **\u300c", "(**", " (**", " **\u201c"], [" **\u20ac", " **#", ".", " (**", " **\"", "alkan", "(**", " **\u300c"], [",", " \u0442\u0440\u0451", " hugely", "\u0436\u0451", "\u00a0", "clarsimp", "elaide", "\u0436\u0434\u0451"], ["\u00a0", ",", ".[", " arguably", " largely", " **", " mostly", "\u00a0\u00a0"], [" **", " **\u300c", " **#", " **\u20ac", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " **>>", " **\u00ab", " **\""], [" **", " **\u300c", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " **\u00ab", " **\u20ac", " **>>", " \u00bb**", " arguably"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " arguably", " flavours", " Polresta", " hugely", "\u4e00\u5e94\u4ff1\u5168", "\u7c89\u4e1d\u4eec", "\u4e94\u82b1\u516b"], [" arguably", " largely", " often", " hugely", " heavily", " famously", " aggressively", " typically"], [" arguably", " largely", " often", " typically", " sprawling", " touted", " effortlessly", " famously"], [" arguably", " often", " largely", " myriad", " hugely", " savvy", " touted", " popular"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " often", " \"**", " **", "\u4e94\u82b1\u516b", " savvy", " notoriously", " arguably"], [" arguably", " touted", " notoriously", " hugely", " savvy", " often", " fiercely", " famously"], [" hugely", " arguably", " largely", " often", " wildly", " famously", " heavily", " myriad"], ["<|endoftext|>", " largely", " hugely", " heavily", " often", " arguably", " swiftly", " myriad"], [" often", " hugely", " heavily", " arguably", " largely", " notoriously", " famously", " aggressively"], [" often", " heavily", " largely", " hugely", " arguably", " famously", " notoriously", " aggressively"], [" often", " largely", " heavily", " even", " much", " hugely", " arguably", " many"], [" often", " heavily", " hugely", " largely", " arguably", " famously", " notoriously", " wildly"], [" **", " heavily", " famously", " often", " hugely", " notoriously", " arguably", " wildly"], [" heavily", " often", " famously", " notoriously", " hugely", " **", " arguably", " largely"], [" often", " heavily", " largely", " arguably", " even", " hugely", " much", " wildly"], [" often", " heavily", " even", " largely", " many", " notoriously", " arguably", " much"], [" **", " often", " heavily", " even", " many", " sometimes", " notoriously", " ___"], [" often", " many", " even", " ,", " only", " heavily", " **", " sometimes"], [" often", " even", " only", " many", " heavily", " ,", " still", " long"], [" often", " even", " only", " many", " heavily", " much", " largely", " almost"], [" often", " heavily", " even", " notoriously", " only", " rarely", " many", " extremely"], [" notoriously", " heavily", " often", " only", " rarely", " aggressively", " extremely", " poorly"], [" notoriously", " heavily", " often", " poorly", " inefficient", " rarely", " only", " extremely"], [" inefficient", " notoriously", " heavily", " poorly", " slower", " slow", " often", " ineff"], [" inefficient", " notoriously", " heavily", " poorly", " often", " slower", " ineff", " slow"], [" inefficient", " notoriously", " slower", " slow", " ineff", " heavily", " often", " poorly"], [" inefficient", " slower", " slow", " notoriously", " expensive", " ineff", " heavily", " often"], [" inefficient", " slow", " slower", " ineff", " expensive", " speed", " slowed", " fast"], [" inefficient", " ineff", " slower", " slow", " overhead", " expensive", " bottleneck", " heavily"], [" inefficient", " slower", " ineff", " overhead", " slow", " bottleneck", " expensive", " heavily"], [" inefficient", " overhead", " slower", " ineff", " slow", " heavily", " costs", " speeds"], [" inefficient", " overhead", " slower", " slow", " ineff", " costs", " heavily", " bottleneck"], [" inefficient", " slow", " slower", " overhead", " ineff", " heavily", " notoriously", " costs"], [" inefficient", " ineff", " slow", " bottleneck", " slower", " costs", " insufficient", " overhead"], [" inefficient", " slow", " costs", " ineff", " slower", " insufficient", " overhead", " bottleneck"], [" inefficient", " slow", " ineff", " slows", " costs", " overhead", "\u8fdc\u8fdc\u4e0d\u591f", " slower"], [" inefficient", " ineff", " slow", " slows", "\u8fdc\u8fdc\u4e0d\u591f", " bottleneck", "\u901f\u5ea6\u6162", " overhead"], [" inefficient", " slows", "\u4e0d\u9002\u5408", " ineff", "\u901f\u5ea6\u6162", "\u8fdc\u8fdc\u4e0d\u591f", " overhead", " slow"], [" overhead", " inefficient", "\u65e0\u6cd5\u6ee1\u8db3", "\u8fdc\u8fdc\u4e0d\u591f", "\u4e0d\u8db3\u4ee5", "\u4e0d\u591f", " insufficient", " ineff"], [" overhead", " slow", " inefficient", " slows", " bottleneck", "\u4e0d\u591f", " insufficient", "\u592a\u91cd"], [" overhead", "\u592a\u91cd", " bottleneck", "too", "Too", "\u65e0\u6cd5\u6ee1\u8db3", "\u8fdc\u8fdc\u4e0d\u591f", " too"], ["\u592a\u91cd", "too", " overhead", " too", "Too", "-too", " \u0441\u043b\u0438\u0448\u043a\u043e\u043c", "\u65e0\u6cd5\u6ee1\u8db3"], ["\u592a\u91cd", "too", " too", " overhead", "Too", "-too", " Too", "\u592a\u8fc7"], ["too", " too", "\u592a\u91cd", "Too", " Too", " involve", " overhead", " wrappers"], ["too", " too", "\u592a\u91cd", " involve", "Too", " Too", " wrappers", " invoke"], [" too", "too", "Too", " Too", "\u592a\u91cd", " overhead", "\u592a", " involve"], [" too", " are", "too", " involve", " Too", "\u592a\u91cd", "Too", " invoke"], [" too", " are", "too", " Too", "Too", "\u592a\u91cd", " involve", "-too"], [" are", " too", " have", " add", " involve", " invoke", " serialize", " require"], [" are", " add", " involve", " have", " incur", " bind", " serialize", " invoke"]], "p": [[0.6551, 0.1656, 0.0887, 0.0224, 0.0211, 0.0145, 0.0088, 0.006], [0.1074, 0.1009, 0.0652, 0.054, 0.0272, 0.0121, 0.0083, 0.0057], [0.6172, 0.2271, 0.1073, 0.0128, 0.0128, 0.0064, 0.0034, 0.003], [0.0094, 0.0078, 0.0057, 0.0025, 0.0021, 0.002, 0.0016, 0.0015], [0.004, 0.0024, 0.0019, 0.0016, 0.0014, 0.0012, 0.0012, 0.0012], [0.0188, 0.0114, 0.0078, 0.0069, 0.0039, 0.0022, 0.0022, 0.0021], [0.0612, 0.054, 0.0395, 0.0371, 0.0308, 0.024, 0.0225, 0.0175], [0.0559, 0.0559, 0.0384, 0.0339, 0.0206, 0.0133, 0.0117, 0.0063], [0.0252, 0.0093, 0.0087, 0.006, 0.006, 0.0053, 0.005, 0.0036], [0.0196, 0.0032, 0.0016, 0.0013, 0.0013, 0.0012, 0.0011, 0.001], [0.2566, 0.1374, 0.012, 0.0082, 0.006, 0.005, 0.0047, 0.0047], [0.2348, 0.0492, 0.015, 0.0124, 0.008, 0.0046, 0.0043, 0.0031], [0.028, 0.0159, 0.0141, 0.0038, 0.0029, 0.002, 0.0017, 0.0016], [0.0031, 0.0027, 0.0013, 0.0012, 0.0011, 0.0011, 0.0009, 0.0009], [0.0359, 0.0085, 0.008, 0.0059, 0.0043, 0.0043, 0.0036, 0.0033], [0.0354, 0.0115, 0.0079, 0.0045, 0.0037, 0.0035, 0.0035, 0.0033], [0.0185, 0.0106, 0.0088, 0.006, 0.0044, 0.0044, 0.0039, 0.0037], [0.0042, 0.0033, 0.0027, 0.0025, 0.002, 0.002, 0.0019, 0.0019], [0.0076, 0.0067, 0.0067, 0.0055, 0.004, 0.0036, 0.0034, 0.0031], [0.0298, 0.0232, 0.017, 0.0124, 0.0097, 0.0091, 0.0091, 0.0075], [0.0752, 0.026, 0.0202, 0.0168, 0.0168, 0.0131, 0.0108, 0.009], [0.0091, 0.0055, 0.0055, 0.0049, 0.0046, 0.004, 0.004, 0.0031], [0.0366, 0.0173, 0.0143, 0.0105, 0.0105, 0.0087, 0.0068, 0.0068], [0.0928, 0.0363, 0.0301, 0.0142, 0.0126, 0.0118, 0.0118, 0.0118], [0.0344, 0.0323, 0.0236, 0.0236, 0.0184, 0.0173, 0.0072, 0.0072], [0.0357, 0.0169, 0.0159, 0.0149, 0.0116, 0.0109, 0.0085, 0.0055], [0.0288, 0.0224, 0.0145, 0.0136, 0.0113, 0.0113, 0.0113, 0.0088], [0.0496, 0.0466, 0.0194, 0.0194, 0.0161, 0.0151, 0.0104, 0.0098], [0.1432, 0.0984, 0.0597, 0.0265, 0.022, 0.0161, 0.0142, 0.0118], [0.3039, 0.2682, 0.0386, 0.0341, 0.0194, 0.0104, 0.0098, 0.0086], [0.2955, 0.0582, 0.0547, 0.0332, 0.0332, 0.0258, 0.0258, 0.0138], [0.1889, 0.1298, 0.0508, 0.0396, 0.0349, 0.0212, 0.0176, 0.0113], [0.17, 0.1501, 0.0552, 0.0404, 0.0379, 0.014, 0.0131, 0.0131], [0.1953, 0.0718, 0.0526, 0.0526, 0.0464, 0.0193, 0.0193, 0.0141], [0.1435, 0.1266, 0.0986, 0.0438, 0.0249, 0.0194, 0.0194, 0.0182], [0.266, 0.0978, 0.0978, 0.0318, 0.0298, 0.0263, 0.0218, 0.016], [0.2453, 0.1488, 0.0483, 0.0454, 0.0454, 0.04, 0.0275, 0.0228], [0.3214, 0.0813, 0.0435, 0.0361, 0.0318, 0.0281, 0.0281, 0.0233], [0.3806, 0.0661, 0.0484, 0.0333, 0.0312, 0.0276, 0.0243, 0.0215], [0.3352, 0.0748, 0.0514, 0.0483, 0.0332, 0.0312, 0.0201, 0.0167], [0.3879, 0.1259, 0.1259, 0.0409, 0.0318, 0.0206, 0.0103, 0.0103], [0.5825, 0.0696, 0.0422, 0.0329, 0.0256, 0.0176, 0.0137, 0.0107], [0.518, 0.0794, 0.0546, 0.0482, 0.0425, 0.0138, 0.013, 0.0101], [0.5833, 0.0423, 0.0423, 0.0423, 0.0373, 0.0146, 0.0137, 0.0114], [0.4034, 0.0619, 0.0546, 0.0546, 0.0331, 0.0292, 0.0214, 0.0156], [0.3616, 0.0555, 0.0336, 0.0297, 0.0279, 0.0246, 0.0169, 0.0159], [0.2705, 0.047, 0.047, 0.0304, 0.0285, 0.0236, 0.0209, 0.0209], [0.205, 0.1243, 0.0665, 0.043, 0.0335, 0.0277, 0.0245, 0.023], [0.209, 0.1268, 0.0819, 0.0363, 0.0363, 0.025, 0.022, 0.022], [0.3024, 0.0982, 0.0634, 0.0384, 0.0361, 0.0319, 0.0219, 0.0171], [0.1701, 0.0804, 0.0666, 0.0626, 0.0315, 0.0315, 0.0296, 0.0296], [0.1896, 0.115, 0.1015, 0.0543, 0.0479, 0.0479, 0.0423, 0.0373], [0.2346, 0.0863, 0.0672, 0.0523, 0.0523, 0.0462, 0.0408, 0.0317], [0.4555, 0.1016, 0.0698, 0.0424, 0.0241, 0.0156, 0.0138, 0.0138], [0.2036, 0.1399, 0.109, 0.0661, 0.0427, 0.0276, 0.0259, 0.0228], [0.2439, 0.2152, 0.1676, 0.0544, 0.0544, 0.0257, 0.0241, 0.0227], [0.2677, 0.1624, 0.0869, 0.0677, 0.034, 0.032, 0.0234, 0.0206], [0.1992, 0.1758, 0.0647, 0.0647, 0.0536, 0.0325, 0.021, 0.0197], [0.3485, 0.2714, 0.0778, 0.0606, 0.0472, 0.0153, 0.0127, 0.0112], [0.3943, 0.2392, 0.0776, 0.0471, 0.0304, 0.0252, 0.0222, 0.0144], [0.6825, 0.1523, 0.0494, 0.0265, 0.0133, 0.0104, 0.0091, 0.003], [0.8722, 0.0263, 0.0205, 0.015, 0.015, 0.0046, 0.0043, 0.004], [0.6599, 0.0788, 0.0696, 0.0478, 0.0137, 0.0121, 0.0114, 0.0107]], "ranks": {"Python": [17883, 101596, 80966, 85518, 4759, 31745, 1488, 14580, 19131, 70373, 6665, 25039, 45901, 51525, 31614, 40526, 53766, 74039, 102767, 130312, 39917, 80362, 42293, 20873, 33772, 27927, 12344, 7007, 3703, 2634, 2890, 5565, 10811, 9913, 13258, 12742, 9273, 9888, 10636, 3387, 1625, 1132, 801, 1425, 2229, 1892, 2235, 1997, 3290, 11246, 8542, 2550, 712, 436, 382, 175, 43, 46, 44, 38, 46, 71, 166]}}, {"pos": 591, "top": [[".", ",", " \u2013", "\u2013", ";", "\u00a0", ":", "?"], ["\u2013", " \u2013", "\u2013and", ",", ".", "\u200b", ";", "\u00ad"], ["\u2013", ",", ".", " \u2013", ".\u2013", "\u2013and", ";", "\u200b"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "----------</", " ;;^", " milfs", "-------------</", " Shemale", "\u683c\u91cc\u62c9", "':''"], [" \u200b\u200b", ".@", " (@", "er", "@", "\u200b\u200b", ".", "@\""], [" \u200b\u200b", "\u2013and", ",", "\u2013", ".", ".\u2013", "<|quad_end|>", "<|quad_start|>"], ["\u00a0", "\u2013and", "\u4f46\u4e0d\u9650\u4e8e", ".\u2019", ".", "\u2018", " \u200b\u200b", "\u200b\u200b"], ["\u2013and", "\u4e94\u989c\u516d\u8272\u7684", "<|quad_start|>", "\u4f46\u4e0d\u9650\u4e8e", "\u5162\u5162\u4e1a\u4e1a", "<|quad_end|>", "\u52e4\u52e4\u6073\u6073", "\u5404\u79cd\u5404\u6837"], ["\u2013and", "\u00a0", " \u200b\u200b", ",", ".", "ikian", "\u2013", ".\u2013"], ["\u2013and", ",", "\u2013", " \u00ad", "\u5162\u5162\u4e1a\u4e1a", "\u00a0", "\u52c7\u5f80\u76f4\u524d", "\u00ad"], ["\u2013", "\u00a0", ",", "\u2013and", " \u00ad", "\u00ad", " \u2013", "\u2014but"], ["\u4e94\u989c\u516d\u8272\u7684", "\u52e4\u52e4\u6073\u6073", "\u611f\u5341\u8db3", "\u5404\u79cd\u5404\u6837", "\u5171\u540c\u6253\u9020", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\u8ba4\u8ba4\u771f", "\u5162\u5162\u4e1a\u4e1a"], ["\u52e4\u52e4\u6073\u6073", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " savvy", "\u5162\u5162\u4e1a\u4e1a", "\u611f\u5341\u8db3", "\u4e94\u989c\u516d\u8272\u7684", "\u5404\u79cd\u5404\u6837", "\u52c7\u5f80\u76f4\u524d"], [" savvy", "\u52e4\u52e4\u6073\u6073", "\u8ba4\u8ba4\u771f", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\u611f\u5341\u8db3", "\u4e94\u989c\u516d\u8272\u7684", " flashy", "\u8033\u719f\u80fd\u8be6"], [" savvy", " arguably", " aggressively", " flashy", " effortlessly", " touted", " wildly", " incredibly"], [" arguably", " wildly", " largely", " incredibly", " savvy", " notoriously", " sprawling", " aggressively"], [" savvy", " incredibly", " arguably", " wildly", " aggressively", "\u2013and", " mostly", " largely"], ["\u2013and", " savvy", " aggressively", " wildly", " incredibly", " flashy", " touted", "\u2014even"], [" aggressively", " savvy", " wildly", "\u2014even", " notoriously", " flashy", " incredibly", " arguably"], [" wildly", " hugely", " incredibly", " notoriously", " much", " aggressively", " largely", " arguably"], ["<|endoftext|>", " much", " wildly", " --", " hugely", " largely", " heavily", " vastly"], [" wildly", " hugely", " aggressively", " notoriously", " much", " incredibly", " flashy", " largely"], [" much", " wildly", " --", " hugely", " aggressively", " heavily", " incredibly", " notoriously"], [" much", " --", " mostly", " largely", " heavily", " often", " wildly", " hugely"], [" much", " --", " hugely", " wildly", " heavily", " largely", " mostly", " arguably"], [" wildly", " --", " notoriously", " hugely", " heavily", " much", " famously", " incredibly"], [" wildly", " notoriously", " heavily", " --", " hugely", " much", " aggressively", " mostly"], [" --", " much", " heavily", " mostly", " even", " wildly", " often", " largely"], [" much", " heavily", " wildly", " mostly", " --", " even", " often", " aggressively"], [" much", " --", " heavily", " often", " wildly", " cheap", " even", " notoriously"], [" much", " often", " even", " mostly", " heavily", " only", " many", " very"], [" much", " even", " often", " only", " many", " heavily", " mostly", " very"], [" much", " even", " often", " only", " mostly", " heavily", " very", " many"], [" notoriously", " heavily", " incredibly", " often", " mostly", " much", " inefficient", " even"], [" notoriously", " heavily", " incredibly", " aggressively", " wildly", " inefficient", " deeply", " often"], [" notoriously", " incredibly", " heavily", " wildly", " inefficient", " poorly", " expensive", " rarely"], [" notoriously", " inefficient", " slow", " slower", " expensive", " poorly", " sluggish", " incredibly"], [" inefficient", " slower", " slow", " notoriously", " expensive", " poorly", " sluggish", " incredibly"], [" slower", " inefficient", " slow", " notoriously", " expensive", " sluggish", " faster", " fast"], [" slower", " slow", " inefficient", " expensive", " notoriously", " speed", " costly", " faster"], [" slower", " slow", " inefficient", " expensive", " speed", " faster", " sluggish", " fast"], [" inefficient", " slower", " slow", " expensive", " speed", " ineff", " sluggish", " faster"], [" slower", " slow", " inefficient", " sluggish", " expensive", " speed", " ineff", " slowed"], [" slower", " inefficient", " slow", " sluggish", " expensive", " ineff", " speed", " speeds"], [" slower", " slow", " inefficient", " expensive", " ineff", " sluggish", " notoriously", " speed"], [" slow", " slower", " inefficient", " sluggish", " expensive", " notoriously", " ineff", " speed"], [" slow", " slower", " inefficient", " sluggish", " enough", " expensive", " ineff", " bottleneck"], [" slow", " slower", " inefficient", " sluggish", " enough", " expensive", " slowed", " ineff"], [" slow", " inefficient", " slower", " sluggish", "\u901f\u5ea6\u6162", " ineff", " slows", " insufficient"], [" slow", " inefficient", " sluggish", "\u901f\u5ea6\u6162", "\u8fdc\u8fdc\u4e0d\u591f", " slower", " ineff", "\u4e0d\u9002\u5408"], [" inefficient", "\u4e0d\u8db3\u4ee5", " slow", "\u8fdc\u8fdc\u4e0d\u591f", " sluggish", "\u4e0d\u9002\u5408", "\u901f\u5ea6\u6162", " insufficient"], ["\u4e0d\u8db3\u4ee5", " insufficient", " inefficient", "\u8fdc\u8fdc\u4e0d\u591f", "\u4e0d\u591f", "\u4e0d\u9002\u5408", " slow", " sluggish"], [" too", "too", " insufficient", " slow", "Too", "\u4e0d\u591f", "-too", " slower"], [" too", "too", "Too", "\u592a\u91cd", " Too", " \u0441\u043b\u0438\u0448\u043a\u043e\u043c", "-too", " insufficient"], [" too", "too", "\u592a\u5feb", "Too", "\u592a\u91cd", " slow", " Too", " \u0441\u043b\u0438\u0448\u043a\u043e\u043c"], [" too", "too", "Too", " Too", " \u0441\u043b\u0438\u0448\u043a\u043e\u043c", " TOO", "\u592a\u91cd", "\u592a\u5feb"], [" too", "too", "Too", " Too", "\u592a\u5feb", " TOO", "\u592a", " \u0441\u043b\u0438\u0448\u043a\u043e\u043c"], [" too", "too", " Too", "Too", " slow", "\u592a", " TOO", " \u0441\u043b\u0438\u0448\u043a\u043e\u043c"], [" too", "too", " Too", "Too", "\u592a", " TOO", " \u0441\u043b\u0438\u0448\u043a\u043e\u043c", "\u592a\u5feb"], [" too", "too", " Too", " TOO", "Too", "\u592a", "\u592a\u91cd", "-too"], [" too", " Too", "too", " TOO", "Too", "\u592a", "-too", "\u592a\u91cd"], [" too", " Too", "too", "Too", " TOO", "-too", "\u592a", " \u0441\u043b\u0438\u0448\u043a\u043e\u043c"], [" too", " Too", " slow", "too", " TOO", "Too", " synchronous", " far"]], "p": [[0.5202, 0.2457, 0.1315, 0.0904, 0.0065, 0.0015, 0.0006, 0.0004], [0.5167, 0.2293, 0.0424, 0.0257, 0.0147, 0.0089, 0.0089, 0.0078], [0.5898, 0.3157, 0.0622, 0.0108, 0.0074, 0.0066, 0.004, 0.0007], [0.0049, 0.0046, 0.0046, 0.0043, 0.0034, 0.0023, 0.0022, 0.002], [0.0369, 0.0154, 0.0127, 0.0093, 0.0082, 0.0077, 0.0077, 0.0073], [0.0919, 0.0558, 0.015, 0.0097, 0.008, 0.008, 0.0055, 0.0049], [0.0742, 0.0329, 0.0309, 0.0226, 0.0156, 0.0156, 0.0121, 0.0094], [0.007, 0.0061, 0.0042, 0.004, 0.0035, 0.0029, 0.0027, 0.0024], [0.1046, 0.0182, 0.0081, 0.0055, 0.0041, 0.0041, 0.0038, 0.0036], [0.0245, 0.0191, 0.0096, 0.0027, 0.0023, 0.0023, 0.0017, 0.0015], [0.1526, 0.1526, 0.1049, 0.0817, 0.0561, 0.0125, 0.0059, 0.0046], [0.0029, 0.0024, 0.002, 0.0018, 0.0014, 0.0014, 0.0014, 0.0013], [0.0032, 0.0027, 0.0025, 0.0024, 0.0024, 0.0024, 0.0022, 0.0016], [0.0027, 0.0024, 0.002, 0.0016, 0.0016, 0.0015, 0.0014, 0.0012], [0.0125, 0.0098, 0.0081, 0.0059, 0.0049, 0.0049, 0.0046, 0.0036], [0.0221, 0.0118, 0.0118, 0.0092, 0.0086, 0.0072, 0.0067, 0.0063], [0.0156, 0.013, 0.013, 0.0107, 0.0084, 0.0079, 0.0074, 0.0069], [0.024, 0.0165, 0.01, 0.0083, 0.0061, 0.0061, 0.0057, 0.0054], [0.0189, 0.0178, 0.0167, 0.0157, 0.0157, 0.0147, 0.0147, 0.0108], [0.0396, 0.0272, 0.0165, 0.0137, 0.0129, 0.0129, 0.0113, 0.0107], [0.0678, 0.0301, 0.0207, 0.0182, 0.0142, 0.0125, 0.0092, 0.0086], [0.0226, 0.0137, 0.0129, 0.0114, 0.0094, 0.0094, 0.0065, 0.0061], [0.0284, 0.0266, 0.0266, 0.0152, 0.0152, 0.0118, 0.0118, 0.0111], [0.0611, 0.0288, 0.0164, 0.0154, 0.0128, 0.012, 0.0113, 0.0094], [0.0396, 0.035, 0.0176, 0.0165, 0.0129, 0.0114, 0.01, 0.0083], [0.0215, 0.019, 0.0168, 0.0148, 0.0131, 0.0123, 0.0115, 0.0096], [0.0171, 0.0171, 0.0161, 0.0142, 0.0111, 0.0098, 0.0086, 0.0086], [0.0611, 0.0476, 0.0211, 0.0186, 0.0154, 0.0128, 0.0106, 0.01], [0.0507, 0.0371, 0.0225, 0.0212, 0.0199, 0.0187, 0.0155, 0.0137], [0.0463, 0.0408, 0.0384, 0.0318, 0.0264, 0.0248, 0.0248, 0.0193], [0.1008, 0.0574, 0.054, 0.0395, 0.0327, 0.0307, 0.0175, 0.0155], [0.1013, 0.0741, 0.045, 0.0397, 0.029, 0.029, 0.0256, 0.0241], [0.0899, 0.0545, 0.0425, 0.0375, 0.0375, 0.0274, 0.0214, 0.0177], [0.1063, 0.0502, 0.0416, 0.0269, 0.0237, 0.0209, 0.0209, 0.0209], [0.3118, 0.0542, 0.0542, 0.0187, 0.0176, 0.0165, 0.0114, 0.0107], [0.4662, 0.0491, 0.0338, 0.0192, 0.0192, 0.016, 0.016, 0.0141], [0.2485, 0.133, 0.1174, 0.1036, 0.0279, 0.0246, 0.0204, 0.0149], [0.2127, 0.1462, 0.129, 0.1138, 0.0419, 0.0224, 0.0175, 0.0128], [0.2984, 0.181, 0.181, 0.0666, 0.0335, 0.0191, 0.0158, 0.0131], [0.3888, 0.2081, 0.1262, 0.0983, 0.0219, 0.0151, 0.0133, 0.0133], [0.4216, 0.3284, 0.1066, 0.0346, 0.0185, 0.0112, 0.0088, 0.0068], [0.34, 0.3, 0.182, 0.0316, 0.0217, 0.0169, 0.0132, 0.0116], [0.5124, 0.2136, 0.1664, 0.0175, 0.0137, 0.0083, 0.0073, 0.0057], [0.3775, 0.294, 0.229, 0.0166, 0.0114, 0.0069, 0.0048, 0.0048], [0.3368, 0.2972, 0.2315, 0.0131, 0.009, 0.009, 0.0079, 0.007], [0.3747, 0.2575, 0.2006, 0.0165, 0.0113, 0.01, 0.0069, 0.0061], [0.39, 0.2365, 0.1435, 0.032, 0.0194, 0.0111, 0.0092, 0.0092], [0.7151, 0.1408, 0.0403, 0.0148, 0.0079, 0.0045, 0.0043, 0.004], [0.6196, 0.095, 0.074, 0.0509, 0.0272, 0.0113, 0.0057, 0.0057], [0.3191, 0.2193, 0.0712, 0.0712, 0.0262, 0.0246, 0.0192, 0.014], [0.2304, 0.0961, 0.0848, 0.0748, 0.066, 0.0583, 0.0514, 0.04], [0.2852, 0.2221, 0.1049, 0.0926, 0.0496, 0.0386, 0.0386, 0.0265], [0.2732, 0.1462, 0.1139, 0.1005, 0.0691, 0.0288, 0.0288, 0.0254], [0.5265, 0.2195, 0.0629, 0.0381, 0.0297, 0.018, 0.0159, 0.014], [0.6571, 0.1661, 0.042, 0.0255, 0.0255, 0.0155, 0.0155, 0.0106], [0.865, 0.0805, 0.0123, 0.0096, 0.0058, 0.0051, 0.004, 0.004], [0.8795, 0.0818, 0.0111, 0.0111, 0.0046, 0.0032, 0.0022, 0.0019], [0.9246, 0.046, 0.0103, 0.0062, 0.0033, 0.0026, 0.0026, 0.0012], [0.9339, 0.0362, 0.0104, 0.0081, 0.0049, 0.0038, 0.0007, 0.0005], [0.9806, 0.0075, 0.004, 0.0024, 0.0021, 0.0019, 0.0003, 0.0003], [0.9955, 0.0015, 0.0015, 0.0006, 0.0004, 0.0002, 0.0001, 0.0], [0.9975, 0.0013, 0.0006, 0.0002, 0.0001, 0.0001, 0.0, 0.0], [0.9959, 0.0006, 0.0005, 0.0003, 0.0003, 0.0001, 0.0001, 0.0001]], "ranks": {"Python": [50952, 237194, 134538, 215661, 100994, 154136, 15055, 82268, 48362, 75334, 27909, 146374, 129723, 129204, 96005, 120244, 124891, 107303, 86440, 93981, 14403, 36528, 15086, 10400, 9298, 3470, 2473, 2975, 1521, 1296, 2200, 3498, 6147, 3290, 3914, 2433, 901, 1144, 1384, 863, 530, 345, 279, 597, 779, 735, 781, 787, 1716, 5486, 9495, 3058, 805, 557, 468, 300, 147, 120, 83, 105, 95, 60, 44]}}, {"pos": 592, "top": [[" <![", " ****", " *@", " **.**", "*\u201d,", "**\u201d,", " #\"", " ######"], [" **\u3010", " **\u25a0", " **:**", " **:", " **\u2018", "**\u201d,", " **)", " **>>"], [" **\u3010", " \uff5c", "\u2019**", "**\u201d,", " **\u25a0", " **\u2018", " **.**", " <!["], [" **\u3010", " **\u25a0", " **\u300c", " **>>", " **:**", "\uff3f\uff3f", " **\u25cb", " /**<"], [" **\u3010", " **\u25a0", " **\u300c", " **\u201c", " **)", " ___", " -**", " **\u25cb"], [" **\u3010", " **\u25a0", " **\u300c", " **\u201c", " **)", " **\u25cb", " **:", " **:**"], [" **\u3010", " **\u300c", " **\u25a0", "<|im_end|>", " **\u201c", " \"---", " <![", "\u2019**"], [" **\u3010", " **\u300c", "<|im_end|>", " **\u25a0", " **\u201c", "(___", "\r\n\r\n\r\n\r\n", " ___"], [" **\u3010", "<|im_end|>", "\r\n\r\n\r\n\r\n", " **\u300c", " \uff3b", " <![", " <?", " **\u201c"], [" **\u3010", "<|im_end|>", " <![", "\r\n\r\n\r\n\r\n", " **\u300c", " **\u25a0", "(___", " \uff3b"], [" **\u3010", "<|im_end|>", " **\u300c", " ___", "\r\n\r\n\r\n\r\n", " <![", " $__", "(___"], [" **\u3010", " **\u300c", " **\u25a0", " ___", "<|im_end|>", "(___", "\uff1f**", " $__"], [" **\u3010", " **\u300c", " ___", "(___", " **\u25a0", "___", "\uff1f**", "<|im_end|>"], [" **\u3010", "<|im_end|>", " **\u300c", "\u548c", "(___", "___", "\uff1f**", "\r\n\r\n\r\n\r\n"], [" **\u3010", "<|im_end|>", "\u548c", "___", "\uff1f**", " ___", " **\u300c", "\r\n\r\n\r\n\r\n"], [" **\u3010", "<|im_end|>", "\u548c", "___", "\uff1f**", "\u5728", "</think>", "**\u3002"], ["<|im_end|>", " **\u3010", "___", "</think>", "\r\n\r\n\r\n\r\n", " ___", "\uff1f**", "<think>"], [" **\u3010", "<|im_end|>", "</think>", "___", "\uff1f**", " **\u300c", "\u548c", "**\u3002"], [" **\u3010", "<|im_end|>", "___", "\uff1f**", " **\u300c", "</think>", "\r\n\r\n\r\n\r\n", " $__"], ["<|im_end|>", " **\u3010", "\r\n\r\n\r\n\r\n", "</think>", "\u548c", "___", " $__", "\uff1f**"], ["<|im_end|>", " **\u3010", "\r\n\r\n\r\n\r\n", "</think>", "\u548c", "\r\n\r\n", "\n\n", "\u5728"], ["<|im_end|>", " **\u3010", "</think>", "\r\n\r\n\r\n\r\n", "___", "\u548c", "<think>", " $__"], ["<|im_end|>", "\n\n", "\r\n\r\n\r\n\r\n", "</think>", " **\u3010", "\r\n\r\n", "___", "<|endoftext|>"], ["<|im_end|>", "<|endoftext|>", "\n\n", "\r\n\r\n\r\n\r\n", "\r\n\r\n", "</think>", "\n\n\n\n\n", " **\u3010"], ["<|im_end|>", "\n\n", "\r\n\r\n", "\r\n\r\n\r\n\r\n", "<|endoftext|>", " \n\n", "</think>", " \r\n\r\n"], ["<|im_end|>", "\r\n\r\n\r\n\r\n", "\n\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", "\r\n\r\n\r\n\r\n", "\r\n\r\n", "<|endoftext|>", "</think>", " \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", "\n\n\n\n"], ["<|im_end|>", "<|endoftext|>", "\n\n", "\r\n\r\n\r\n\r\n", "\n\n\n\n\n", "\r\n\r\n", "\n\n\n\n", "</think>"], ["<|im_end|>", "<|endoftext|>", "\n\n", "\r\n\r\n\r\n\r\n", "</think>", "\r\n\r\n", " \n\n", "\n\n\n\n\n"], ["<|im_end|>", "<|endoftext|>", "\n\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", "\n\n\n\n\n", "\r\n\r\n\r\n\r\n", "\r\n\r\n", "  \n\n"], ["<|endoftext|>", "<|im_end|>", "\n\n", " \n\n", "\r\n\r\n", "\r\n\r\n\r\n\r\n", "</think>", "  \n\n"], ["<|endoftext|>", "<|im_end|>", "\n\n", "</think>", "<|file_sep|>", " \n\n", "\r\n\r\n\r\n\r\n", "\n\n\n\n\n"], ["<|endoftext|>", "<|im_end|>", "\n\n", "<|file_sep|>", "</think>", "\r\n\r\n\r\n\r\n", "\n\n\n\n\n", "<|im_start|>"], ["<|endoftext|>", "<|im_end|>", "\n\n", "<|file_sep|>", "</think>", " \n\n", "<|im_start|>", "\r\n\r\n\r\n\r\n"], ["<|endoftext|>", "<|im_end|>", "\n\n", "<|file_sep|>", "</think>", "<|im_start|>", " \n\n", "\r\n\r\n\r\n\r\n"], ["<|endoftext|>", "<|im_end|>", "</think>", "<|file_sep|>", "<|im_start|>", "\r\n\r\n\r\n\r\n", "\n\n", "\u3002"], ["<|endoftext|>", "<|im_end|>", "</think>", "<|file_sep|>", "<|im_start|>", "\u3002", "\uff1f", "\r\n\r\n\r\n\r\n"], ["<|endoftext|>", "<|im_end|>", "</think>", "<|file_sep|>", "\u3002", "<|im_start|>", "\n\n", " \n\n"], ["<|endoftext|>", "<|im_end|>", "\n\n", "<|file_sep|>", "</think>", " \n\n", "\r\n\r\n\r\n\r\n", "<|im_start|>"], ["<|endoftext|>", "<|im_end|>", "\n\n", "<|file_sep|>", "</think>", " \n\n", "  \n\n", "\r\n\r\n\r\n\r\n"], ["<|endoftext|>", "<|im_end|>", "\n\n", " \n\n", "</think>", "<|file_sep|>", "  \n\n", "\r\n\r\n\r\n\r\n"], ["<|endoftext|>", "<|im_end|>", "\n\n", "<|file_sep|>", " \n\n", "</think>", "  \n\n", "\r\n\r\n\r\n\r\n"], ["<|endoftext|>", "<|im_end|>", "<|file_sep|>", "</think>", " \n\n", "\n\n", "\r\n\r\n\r\n\r\n", "  \n\n"], ["<|endoftext|>", "<|im_end|>", "</think>", "<|file_sep|>", "\r\n\r\n\r\n\r\n", "\u3002", "\u5728", "\uff0c"], ["<|im_end|>", "<|endoftext|>", "</think>", "<|file_sep|>", "\u5728", "\u3002<", "\uff0c", "  \n\n"], ["<|im_end|>", "<|endoftext|>", "</think>", "<|file_sep|>", ")\uff0c", "\u5728", "\uff1f**", "**\u3002"], ["<|im_end|>", "<|endoftext|>", "</think>", ">**", "!**", "]**", "\uff1f**", "<|file_sep|>"], ["<|endoftext|>", "<|im_end|>", "</think>", "<|file_sep|>", "<|im_start|>", "<|fim_middle|>", "\u3002", ")\u3002"], ["<|endoftext|>", "<|im_end|>", "</think>", "<|im_start|>", "<|file_sep|>", "<|fim_middle|>", "\u3002", "\r\n\r\n\r\n\r\n"], ["<|endoftext|>", "<|im_end|>", "<|im_start|>", "</think>", "<|file_sep|>", "\r\n\r\n\r\n\r\n", "<|fim_middle|>", " \n\n"], ["<|endoftext|>", "<|im_end|>", "<|im_start|>", "</think>", "<|file_sep|>", " @}", "<|fim_middle|>", "<|fim_prefix|>"], ["<|im_end|>", "<|endoftext|>", "<|im_start|>", "</think>", "<|file_sep|>", "<|fim_prefix|>", ">**", "\u7528\u6237"], ["<|im_end|>", "<|endoftext|>", "</think>", "<|im_start|>", "<|file_sep|>", "<|fim_prefix|>", ")\">", "\u4e07\u65b9"], ["<|im_end|>", "<|im_start|>", "</think>", "\u5355", "<|endoftext|>", "<|file_sep|>", "<|quad_start|>", ")\">"], ["<|im_end|>", "</think>", "<|im_start|>", "<|endoftext|>", "<|quad_start|>", "\u5355", ")\">", "\u7528\u6237"], ["<|im_end|>", "</think>", "\u5355", "lobs", ")\">", "<|im_start|>", "<|endoftext|>", "\u53cc"], ["<|im_end|>", "</think>", "<|endoftext|>", "<|im_start|>", "\u5355", "lobs", "\u53cc", "\u7528\u6237"], ["<|im_end|>", "<|endoftext|>", "<|im_start|>", "</think>", "lobs", "\u6854", "<|file_sep|>", "\u5f15"], ["<|im_end|>", "</think>", "<|endoftext|>", "<|im_start|>", "\r", "\u6854", " Verf\u00fcg", "\u6a58"], ["\n", "<|im_end|>", "\n\t\n", "\n     \n", "<|im_start|>", "\n            \n", " Ngh", "\n\t\t\t\n"]], "p": [[0.0523, 0.0407, 0.0382, 0.0205, 0.0181, 0.0181, 0.0141, 0.0141], [0.2866, 0.1534, 0.0771, 0.0364, 0.0284, 0.025, 0.0235, 0.0208], [0.4266, 0.0615, 0.0542, 0.0397, 0.029, 0.0212, 0.0212, 0.0187], [0.4561, 0.2155, 0.1153, 0.0129, 0.0122, 0.0069, 0.0054, 0.0054], [0.8022, 0.0658, 0.0311, 0.0048, 0.0033, 0.0029, 0.0023, 0.0021], [0.9172, 0.019, 0.0179, 0.0037, 0.0018, 0.0018, 0.0016, 0.0011], [0.8918, 0.0253, 0.0077, 0.0044, 0.0041, 0.002, 0.002, 0.0016], [0.895, 0.0154, 0.0088, 0.0057, 0.0028, 0.0027, 0.0027, 0.0022], [0.7211, 0.142, 0.017, 0.0062, 0.0059, 0.0046, 0.0033, 0.0033], [0.8213, 0.017, 0.0103, 0.0081, 0.0071, 0.0052, 0.0038, 0.0034], [0.847, 0.035, 0.0061, 0.0057, 0.0044, 0.0035, 0.0029, 0.0029], [0.9059, 0.0061, 0.0051, 0.0042, 0.0042, 0.0035, 0.0025, 0.002], [0.8895, 0.0135, 0.006, 0.0053, 0.0044, 0.0041, 0.0034, 0.0032], [0.7779, 0.0183, 0.0118, 0.0072, 0.0063, 0.0056, 0.0052, 0.0049], [0.7176, 0.0488, 0.0231, 0.0159, 0.0096, 0.0066, 0.0066, 0.0048], [0.4621, 0.2474, 0.0404, 0.0245, 0.0149, 0.0102, 0.007, 0.007], [0.5134, 0.3999, 0.0165, 0.0094, 0.0061, 0.0044, 0.0022, 0.0017], [0.7752, 0.1347, 0.0056, 0.0052, 0.0049, 0.0034, 0.003, 0.0026], [0.8113, 0.0588, 0.009, 0.009, 0.0062, 0.0058, 0.0043, 0.0038], [0.4029, 0.4029, 0.0201, 0.0138, 0.0122, 0.0095, 0.0061, 0.0037], [0.9501, 0.0136, 0.006, 0.005, 0.0032, 0.0022, 0.0016, 0.0012], [0.7137, 0.1592, 0.0168, 0.0139, 0.0102, 0.0084, 0.0024, 0.0023], [0.972, 0.0051, 0.0045, 0.0035, 0.0027, 0.0023, 0.0013, 0.001], [0.975, 0.0074, 0.0066, 0.0031, 0.0017, 0.0015, 0.0007, 0.0004], [0.9663, 0.0177, 0.0039, 0.0035, 0.0016, 0.0013, 0.001, 0.0009], [0.9513, 0.012, 0.0064, 0.0057, 0.0047, 0.0027, 0.0017, 0.0017], [0.9618, 0.0176, 0.0057, 0.0031, 0.0017, 0.0015, 0.0009, 0.0008], [0.9477, 0.0324, 0.0044, 0.0034, 0.003, 0.0018, 0.0011, 0.001], [0.8274, 0.077, 0.077, 0.0038, 0.0034, 0.0026, 0.0023, 0.0014], [0.9454, 0.0222, 0.0173, 0.0044, 0.0023, 0.0021, 0.0009, 0.0008], [0.8847, 0.0932, 0.0162, 0.0012, 0.0009, 0.0008, 0.0006, 0.0004], [0.4856, 0.4285, 0.0844, 0.0003, 0.0002, 0.0002, 0.0002, 0.0002], [0.9026, 0.084, 0.0129, 0.0001, 0.0001, 0.0001, 0.0001, 0.0], [0.8989, 0.0836, 0.0165, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001], [0.9564, 0.042, 0.0014, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9463, 0.0534, 0.0002, 0.0, 0.0, 0.0, 0.0, 0.0], [0.974, 0.026, 0.0, 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.9841, 0.0159, 0.0, 0.0, 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.977, 0.023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9859, 0.0141, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9463, 0.0534, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.8806, 0.1192, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.893, 0.1067, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.8669, 0.1329, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.5301, 0.4678, 0.0005, 0.0004, 0.0001, 0.0001, 0.0001, 0.0001], [0.9829, 0.0159, 0.0005, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9012, 0.095, 0.0015, 0.0004, 0.0001, 0.0001, 0.0001, 0.0001], [0.4243, 0.3745, 0.0348, 0.0271, 0.01, 0.01, 0.0094, 0.0069], [0.9323, 0.0675, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.7308, 0.2688, 0.0002, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.6214, 0.3769, 0.0012, 0.0004, 0.0, 0.0, 0.0, 0.0], [0.559, 0.4354, 0.0038, 0.0014, 0.0001, 0.0, 0.0, 0.0], [0.9524, 0.0254, 0.0093, 0.0068, 0.0006, 0.0001, 0.0001, 0.0], [0.9955, 0.0009, 0.0008, 0.0007, 0.0006, 0.0, 0.0, 0.0], [0.962, 0.0033, 0.0022, 0.0005, 0.0005, 0.0004, 0.0004, 0.0003], [0.8273, 0.0104, 0.0043, 0.0026, 0.0014, 0.0012, 0.001, 0.0008], [0.8287, 0.0118, 0.003, 0.0026, 0.0015, 0.0012, 0.0012, 0.0012], [0.3459, 0.0221, 0.0152, 0.0076, 0.0063, 0.006, 0.0026, 0.0026], [0.8569, 0.0293, 0.0054, 0.0045, 0.0004, 0.0004, 0.0004, 0.0003], [0.8241, 0.0171, 0.0067, 0.0046, 0.001, 0.0008, 0.0003, 0.0003], [0.8014, 0.0274, 0.0045, 0.0021, 0.0016, 0.001, 0.001, 0.0007]], "ranks": {"Python": [9176, 124839, 53139, 66677, 30329, 65411, 21101, 26705, 19741, 33271, 27849, 23537, 16647, 12950, 8858, 5624, 3032, 2888, 4718, 4684, 1958, 2592, 2170, 1665, 1212, 1326, 923, 715, 587, 472, 592, 983, 576, 406, 208, 306, 436, 485, 648, 976, 664, 606, 1085, 761, 773, 1212, 1539, 2239, 2492, 2111, 875, 2859, 1406, 2517, 3389, 30548, 35837, 33707, 16572, 5086, 8219, 6464, 1767]}}, {"pos": 593, "top": [[" \u2013", ".", "   \n", " \u2013,", "\u2013", "\u00a0\u00a0", "\u2013and", " \u200b\u200b"], ["   \n", " \u2013**", "**\u2013", "  \r\n", " \u2013,", "\u2013and", " Strec", "  \n"], ["\u2013", ".\u2013", "\u2026..", "\u2013and", "**\u2013", " \u2013", " \u2013,", "."], [" milfs", " Shemale", " Blowjob", " cumshot", " **\u201e", "-------------</", "----------</", " YYS"], [" **\u201e", "\u52a0\u62ff\u5927", " *@", " @_", "---</", "enzi", "-------------</", "\uff0a\uff0a\uff0a\uff0a"], [" **\u201e", " **\u201c", " **\u25cb", "\u52a0\u62ff\u5927", "\uff1f**", "enzi", " **\u3010", "    \n    \n    \n    \n"], ["\uff1f**", " **\u201e", " **\u3010", " **\u25cb", " **\u201c", "\u662f", "raries", "\u4e2d"], [" **\u201e", " **\u3010", "       \n\n", "\uff1f**", " *@", "   \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", " #@"], ["\n\n", "  \n\n", "\r\n\r\n", "       \n\n", " _$", "___", " **\u3010", "     \n\n"], [" **\u3010", " *__", "\uff1f**", " _$", "(___", " **#", " $__", " ___"], [" **\u3010", "\uff1f**", "___", "____", " ___", "(___", "...**", "**\u3002"], ["...**", "___", "\uff1f**", " **\u3010", "____", "**\u3002", "\u5728", "\u2026**"], ["\n\n", "  \n\n", "___", " \n\n", "\r\n\r\n", "\n\n\n\n", "\t\n\n", "____"], ["\n\n", "...**", "___", "____", "\u4ec0\u4e48", "\uff1f**", "<|im_end|>", "\u5728"], ["\n\n", "___", "...**", "<|im_end|>", "____", " ___", "\n\n\n\n", "...\\"], ["\n\n", "...**", "___", "<|im_end|>", "**\u3002", "\uff1f**", " **\u3010", "\u4ec0\u4e48"], ["___", "\uff1f**", " **\u3010", "\u4ec0\u4e48", "...**", "**\u3002", "____", " ___"], ["\n\n", "\r\n\r\n", "  \n\n", "___", "<|im_end|>", "\u4ec0\u4e48", "\n\n\n\n", "\t\n\n"], ["\n\n", "<|endoftext|>", "  \n\n", " \n\n", "\r\n\r\n", "<|im_end|>", "\n\n\n\n", "   \n\n"], ["\n\n", "\r\n\r\n", "<|im_end|>", "\n\n\n\n", "___", "<|endoftext|>", "  \n\n", "\u4ec0\u4e48"], ["\n\n", "<|endoftext|>", "\r\n\r\n", "<|im_end|>", "\n\n\n", " \n\n", "\n\n\n\n", "  \n\n"], ["\n\n", "<|endoftext|>", "\r\n\r\n", "\n\n\n", " \n\n", "  \n\n", "<|im_end|>", "\n\n\n\n"], ["\n\n", "  \n\n", " \n\n", "\r\n\r\n", "<|im_end|>", "<|endoftext|>", "   \n\n", "\n\n\n\n"], ["\n\n", "\r\n\r\n", "  \n\n", " \n\n", "___", "<|im_end|>", " ___", "...**"], ["\n\n", "  \n\n", " \n\n", "\r\n\r\n", "<|im_end|>", "___", " ___", "____"], ["\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|>", "\r\n\r\n", "\n\n\n\n", "\n\n\n"], ["\n\n", " \n\n", "<|im_end|>", "  \n\n", "<|endoftext|>", "\n\n\n\n", "...**", "\r\n\r\n"], ["\n\n", "<|im_end|>", "<|endoftext|>", "  \n\n", " \n\n", "...**", "\u2026\u2026", "..."], ["\n\n", "<|endoftext|>", "  \n\n", "<|im_end|>", " \n\n", "...", "\u2026\u2026", "\u2026"], ["\n\n", "<|endoftext|>", "  \n\n", "<|im_end|>", " \n\n", "...", "\n\n\n\n", "\r\n\r\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", "\u2026\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", "\u2026\u2026"], ["\n\n", "<|endoftext|>", "<|im_end|>", "  \n\n", " \n\n", "...**", "\n\n\n\n", "\u2026\u2026"], ["<|im_end|>", "\n\n", "<|endoftext|>", "  \n\n", " \n\n", "\u2026\u2026", "...**", "\uff1f"], ["<|endoftext|>", "<|im_end|>", "\n\n", "  \n\n", "\u2026\u2026", " \n\n", "\uff1f", "...**"], ["\n\n", "<|endoftext|>", "<|im_end|>", "  \n\n", " \n\n", "\n\n\n\n", "\n\n\n", "\r\n\r\n"], ["\n\n", "<|im_end|>", "<|endoftext|>", "  \n\n", " \n\n", "...**", "\n\n\n\n", "\r\n\r\n"], ["<|im_end|>", "\n\n", "<|endoftext|>", "  \n\n", " \n\n", "</think>", "...**", "...</"], ["<|im_end|>", "<|endoftext|>", "\n\n", "  \n\n", "</think>", " \n\n", "...\\", "...**"], ["<|im_end|>", "<|endoftext|>", "\n\n", "  \n\n", " \n\n", "</think>", "\n\n\n", "\n\n\n\n"], ["<|im_end|>", "<|endoftext|>", "\n\n", "  \n\n", " \n\n", "</think>", "\n\n\n\n", "\r\n\r\n"], ["<|im_end|>", "<|endoftext|>", "\n\n", "</think>", "  \n\n", " \n\n", "<think>", "<|im_start|>"], ["<|im_end|>", "<|endoftext|>", "</think>", "<|im_start|>", "  \n\n", "\n\n", " \n\n", "\u56de\u7b54"], ["<|im_end|>", "<|endoftext|>", "<|im_start|>", "</think>", "<think>", "\u56de\u7b54", "<|file_sep|>", "Incomplete"], ["<|endoftext|>", "<|im_end|>", "<|im_start|>", "</think>", "<|file_sep|>", "<think>", "<|fim_middle|>", "\u56de\u7b54"], ["<|endoftext|>", "<|im_end|>", "<|im_start|>", "</think>", "<|file_sep|>", "<think>", "</tool_response>", "\"</"], ["<|endoftext|>", "<|im_end|>", "</think>", "<|im_start|>", "**", "]**", " *[", "**\u201d"], ["<|endoftext|>", "<|im_end|>", "<|im_start|>", "</think>", " *[", "**", "]**", "[^"], ["<|im_end|>", "<|endoftext|>", "<|im_start|>", "</think>", "\u7528\u6237", " *[", "user", "*["], ["<|im_end|>", "<|endoftext|>", "\u7528\u6237", "<|im_start|>", "</think>", "user", " *[", "]**"], ["</think>", "<|im_end|>", "\u7528\u6237", "<|im_start|>", "*\\", " *[", "<|endoftext|>", "*</"], ["</think>", "<|im_end|>", "<|im_start|>", "thought", "\u601d\u8003", "\u7528\u6237", "\u601d\u7ef4", "*\\"], ["</think>", "<|im_start|>", "thought", "<|im_end|>", " *[", "\u7528\u6237", "*\\", "\u601d\u8003"], ["</think>", "<|im_start|>", "thought", " *[", "<|im_end|>", "*\\", "\u601d\u8003", " *("], ["</think>", "<|im_start|>", "<|im_end|>", "<|endoftext|>", "<br", "\\n", "*", " *"], ["</think>", "<|im_start|>", "<|endoftext|>", "<|im_end|>", "*", "<br", "user", "{"], ["<|im_start|>", "<|endoftext|>", "</think>", "<|im_end|>", "\n\n", "\u7528\u6237", "user", "User"]], "p": [[0.7358, 0.186, 0.0127, 0.0093, 0.0072, 0.0053, 0.0044, 0.0039], [0.0215, 0.0122, 0.0115, 0.0095, 0.0058, 0.0054, 0.0042, 0.0037], [0.1979, 0.12, 0.0935, 0.0935, 0.0878, 0.0825, 0.0604, 0.0344], [0.0296, 0.0217, 0.0149, 0.008, 0.007, 0.0058, 0.0043, 0.0038], [0.0497, 0.0195, 0.0092, 0.0072, 0.0056, 0.0046, 0.0043, 0.0041], [0.0418, 0.0238, 0.0127, 0.0064, 0.006, 0.0053, 0.0039, 0.0034], [0.0706, 0.0623, 0.0585, 0.0215, 0.0202, 0.0108, 0.0095, 0.0095], [0.1111, 0.0409, 0.0248, 0.0181, 0.016, 0.0141, 0.0141, 0.0133], [0.1245, 0.117, 0.1099, 0.1099, 0.0804, 0.0404, 0.0404, 0.0203], [0.0136, 0.01, 0.0068, 0.0057, 0.0047, 0.0047, 0.0047, 0.0039], [0.1334, 0.0461, 0.0298, 0.0232, 0.0232, 0.0232, 0.0218, 0.0205], [0.1559, 0.0834, 0.0327, 0.0271, 0.0211, 0.0145, 0.0106, 0.0094], [0.2024, 0.1307, 0.0745, 0.0399, 0.0257, 0.0227, 0.0188, 0.0156], [0.0855, 0.0666, 0.0552, 0.0379, 0.0315, 0.023, 0.014, 0.0131], [0.9218, 0.0159, 0.0116, 0.0048, 0.0029, 0.002, 0.002, 0.0019], [0.3228, 0.1345, 0.1187, 0.0561, 0.0194, 0.0182, 0.0182, 0.0151], [0.8673, 0.0489, 0.0262, 0.0231, 0.0091, 0.0023, 0.0021, 0.0018], [0.1835, 0.1185, 0.0867, 0.0814, 0.0596, 0.0494, 0.0385, 0.0219], [0.2003, 0.0946, 0.0889, 0.0835, 0.0611, 0.0271, 0.0113, 0.0106], [0.9194, 0.0245, 0.0058, 0.0058, 0.0045, 0.0031, 0.0013, 0.0008], [0.9477, 0.0472, 0.0034, 0.0009, 0.0004, 0.0002, 0.0, 0.0], [0.998, 0.001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0], [0.9951, 0.0046, 0.0002, 0.0, 0.0, 0.0, 0.0, 0.0], [0.8804, 0.1191, 0.0002, 0.0001, 0.0001, 0.0001, 0.0, 0.0], [0.9985, 0.0007, 0.0004, 0.0003, 0.0001, 0.0, 0.0, 0.0], [0.9918, 0.0032, 0.0015, 0.0007, 0.0005, 0.0004, 0.0002, 0.0002], [0.9995, 0.0002, 0.0001, 0.0001, 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.9996, 0.0002, 0.0002, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9992, 0.0005, 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.9996, 0.0002, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9923, 0.0076, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.982, 0.018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.8518, 0.148, 0.0002, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9108, 0.0847, 0.0042, 0.0002, 0.0, 0.0, 0.0, 0.0], [0.9618, 0.0329, 0.005, 0.0002, 0.0, 0.0, 0.0, 0.0], [0.6458, 0.2097, 0.1441, 0.0002, 0.0001, 0.0, 0.0, 0.0], [0.6943, 0.1989, 0.1065, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.4133, 0.4133, 0.1723, 0.0005, 0.0001, 0.0001, 0.0001, 0.0], [0.361, 0.3186, 0.3186, 0.0009, 0.0002, 0.0002, 0.0001, 0.0001], [0.8986, 0.0738, 0.0271, 0.0003, 0.0002, 0.0, 0.0, 0.0], [0.6823, 0.251, 0.0635, 0.0015, 0.0009, 0.0002, 0.0001, 0.0001], [0.9042, 0.0578, 0.0351, 0.0015, 0.0005, 0.0001, 0.0001, 0.0001], [0.8486, 0.1301, 0.02, 0.0006, 0.0002, 0.0002, 0.0, 0.0], [0.7701, 0.1947, 0.0338, 0.0007, 0.0005, 0.0001, 0.0, 0.0], [0.6825, 0.2845, 0.03, 0.0015, 0.0012, 0.0001, 0.0, 0.0], [0.9757, 0.0229, 0.0009, 0.0002, 0.0001, 0.0001, 0.0, 0.0], [0.9735, 0.0259, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9232, 0.0758, 0.0003, 0.0003, 0.0001, 0.0001, 0.0, 0.0], [0.9875, 0.0124, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.777, 0.2226, 0.0002, 0.0002, 0.0, 0.0, 0.0, 0.0], [0.8502, 0.1477, 0.001, 0.0009, 0.0, 0.0, 0.0, 0.0], [0.9076, 0.0844, 0.0048, 0.0022, 0.0002, 0.0001, 0.0001, 0.0], [0.529, 0.412, 0.0263, 0.0232, 0.004, 0.0018, 0.0005, 0.0003], [0.4431, 0.2371, 0.1269, 0.077, 0.0529, 0.0142, 0.0067, 0.0022], [0.4307, 0.2034, 0.0748, 0.0548, 0.0401, 0.0401, 0.0115, 0.0079], [0.5692, 0.06, 0.0529, 0.0412, 0.0412, 0.0387, 0.0235, 0.0183], [0.5731, 0.0729, 0.047, 0.0415, 0.0344, 0.0209, 0.0173, 0.0173], [0.5641, 0.0865, 0.0674, 0.0318, 0.0248, 0.0181, 0.0125, 0.0103], [0.7287, 0.1266, 0.0768, 0.0411, 0.0056, 0.0034, 0.0026, 0.0007], [0.5727, 0.2705, 0.1278, 0.0153, 0.0016, 0.0008, 0.0005, 0.0004], [0.6217, 0.3771, 0.0009, 0.0002, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Python": [22573, 221832, 129489, 168892, 35308, 79234, 45967, 92895, 35419, 9036, 3233, 8719, 1988, 780, 1071, 778, 445, 642, 2071, 6946, 1983, 2006, 1353, 1907, 801, 1448, 922, 822, 929, 927, 956, 1583, 1455, 1299, 1177, 954, 875, 830, 1032, 1002, 970, 1017, 1127, 1115, 1194, 1345, 1494, 928, 1259, 1846, 4228, 4073, 2391, 3519, 3705, 1930, 1067, 2273, 1534, 1235, 339, 956, 259]}}], "cast": [{"w": "Python", "n": 2341, "best": 1, "layers": [3, 62], "score": 1017.51, "echo": true}, {"w": "s", "n": 836, "best": 1, "layers": [0, 62], "score": 626.96, "echo": true}, {"w": "hardware", "n": 1048, "best": 1, "layers": [12, 62], "score": 451.97, "echo": true}, {"w": "tech", "n": 773, "best": 1, "layers": [13, 49], "score": 282.11, "echo": true}, {"w": "even", "n": 579, "best": 1, "layers": [10, 62], "score": 277.84, "echo": true}, {"w": "arguably", "n": 668, "best": 1, "layers": [10, 47], "score": 275.86, "echo": false}, {"w": "Android", "n": 503, "best": 1, "layers": [5, 62], "score": 236.99, "echo": true}, {"w": "-esque", "n": 437, "best": 1, "layers": [5, 50], "score": 205.57, "echo": false}, {"w": "Strategy", "n": 452, "best": 1, "layers": [13, 62], "score": 196.54, "echo": false}, {"w": "framerate", "n": 325, "best": 1, "layers": [25, 62], "score": 193.34, "echo": false}, {"w": "OpenGL", "n": 384, "best": 1, "layers": [11, 62], "score": 176.84, "echo": true}, {"w": "technically", "n": 318, "best": 1, "layers": [32, 62], "score": 168.01, "echo": false}, {"w": "software", "n": 467, "best": 1, "layers": [25, 58], "score": 150.01, "echo": false}, {"w": "heavily", "n": 423, "best": 1, "layers": [14, 45], "score": 138.07, "echo": false}, {"w": "er", "n": 307, "best": 1, "layers": [0, 38], "score": 130.33, "echo": true}, {"w": "technology", "n": 402, "best": 1, "layers": [12, 47], "score": 128.8, "echo": false}, {"w": "myriad", "n": 345, "best": 1, "layers": [9, 39], "score": 127.66, "echo": false}, {"w": "\u2013and", "n": 392, "best": 1, "layers": [0, 24], "score": 123.76, "echo": false}, {"w": "\u2014but", "n": 240, "best": 1, "layers": [9, 55], "score": 112.76, "echo": false}, {"w": "architecture", "n": 250, "best": 1, "layers": [12, 62], "score": 112.74, "echo": false}, {"w": "complex", "n": 291, "best": 1, "layers": [11, 45], "score": 112.67, "echo": true}, {"w": "interface", "n": 299, "best": 1, "layers": [26, 55], "score": 109.42, "echo": false}, {"w": "ultimately", "n": 334, "best": 1, "layers": [11, 37], "score": 107.48, "echo": false}, {"w": "incredibly", "n": 336, "best": 1, "layers": [11, 39], "score": 105.06, "echo": false}, {"w": "savvy", "n": 272, "best": 1, "layers": [10, 29], "score": 104.48, "echo": false}, {"w": "milliseconds", "n": 224, "best": 1, "layers": [25, 61], "score": 99.37, "echo": false}, {"w": "GPU", "n": 250, "best": 1, "layers": [25, 62], "score": 98.41, "echo": false}, {"w": "bottleneck", "n": 277, "best": 1, "layers": [33, 62], "score": 97.69, "echo": true}, {"w": "Vulkan", "n": 161, "best": 1, "layers": [5, 62], "score": 96.25, "echo": true}, {"w": "via", "n": 276, "best": 1, "layers": [10, 62], "score": 94.61, "echo": false}, {"w": "/python", "n": 336, "best": 1, "layers": [7, 61], "score": 92.84, "echo": false}, {"w": "latency", "n": 255, "best": 1, "layers": [25, 62], "score": 92.76, "echo": false}, {"w": "speed", "n": 247, "best": 1, "layers": [12, 48], "score": 92.12, "echo": false}, {"w": "ly", "n": 209, "best": 1, "layers": [0, 37], "score": 90.86, "echo": true}, {"w": "ed", "n": 178, "best": 1, "layers": [0, 62], "score": 88.49, "echo": true}, {"w": "renderer", "n": 259, "best": 1, "layers": [5, 62], "score": 87.44, "echo": true}, {"w": "leveraging", "n": 236, "best": 1, "layers": [11, 62], "score": 87.29, "echo": false}, {"w": "kids", "n": 234, "best": 1, "layers": [1, 29], "score": 86.57, "echo": false}, {"w": "native", "n": 260, "best": 1, "layers": [9, 62], "score": 84.99, "echo": true}, {"w": "but", "n": 202, "best": 1, "layers": [27, 62], "score": 83.72, "echo": true}]}