uid
uint64
meta
large_string
token_ids
large list
text
large_string
214,300
Github
[ 30952, 32735, 14271, 31, 187, 29, 2974, 31, 187, 50274, 187, 50274, 29, 2522, 31, 187, 50270, 29, 13518, 3944, 14, 8275, 568, 8590, 14, 2548, 3, 2600, 568, 1156, 16, 2974, 28, 29308, 30, 18441, 14, 25, 3, 4725, 187, 50270, 29, 4492, 774, 568, 14458, 7317, 10651, 3, 3860, 17779, 34281, 3557, 15, 4173, 3, 1511, 568, 5695, 16, 89, 14, 3557, 3, 4725, 187, 50270, 29, 5564, 31, 1352, 4241, 15, 34176, 870, 5564, 31, 187, 50270, 29, 3866, 31, 187, 50266, 13686, 4700, 3967, 426, 4328, 15, 26324, 559, 346, 605, 3, 559, 4328, 15, 5465, 28, 187, 50266, 3306, 15, 6343, 45635, 3866, 6740, 34468, 559, 3318, 3967, 559, 17882, 14611, 64, 27814, 15, 4305, 5264, 15591, 3866, 31, 3401, 187, 50266, 3306, 15, 6343, 45635, 3866, 6740, 34468, 559, 3318, 3967, 559, 17882, 7152, 16, 26804, 16, 9784, 15, 4305, 5264, 15591, 3866, 31, 3401, 187, 50270, 870, 3866, 31, 187, 50274, 870, 2522, 31, 187, 50274, 187, 50274, 29, 2915, 31, 187, 50270, 29, 14600, 31, 187, 50266, 29, 73, 20, 31, 6082, 15, 34176, 9, 4174, 13, 7990, 32, 2387, 870, 73, 20, 31, 187, 50266, 29, 81, 31, 187, 50262, 29, 2551, 966, 568, 39940, 1138, 22470, 226, 9078, 110, 18140, 870, 2551, 31, 187, 50266, 870, 81, 31, 187, 50266, 29, 81, 31, 25949, 25949, 44795, 5225, 39915, 108, 40969, 29463, 4174, 36778, 16677, 9078, 244, 29440, 4340, 870, 81, 31, 187, 50266, 29, 11830, 31, 187, 50262, 29, 7064, 31, 4174, 870, 7064, 31, 187, 50262, 29, 1678, 31, 41250, 41085, 4340, 26270, 33656, 214, 13486, 123, 15531, 4340, 870, 1678, 31, 187, 50262, 29, 7064, 31, 18891, 870, 7064, 31, 187, 50262, 29, 1678, 31, 18148, 49037, 4340, 18764, 12755, 228, 17576, 5225, 21275, 12335, 26581, 242, 4340, 39573, 15531, 16800, 240, 35241, 20326, 2877, 13, 2234, 4340, 870, 1678, 31, 187, 50266, 870, 11830, 31, 187, 50266, 29, 3423, 1178, 31, 187, 50262, 29, 42262, 31, 32378, 23371, 870, 42262, 31, 187, 50262, 29, 3456, 966, 568, 36511, 27, 14606, 28, 72, 12216, 27, 7750, 28, 44338, 27, 7750, 1138, 187, 1352, 15684, 1587, 8700, 995, 1159, 1082, 551, 187, 50274, 2044, 10928, 426, 551, 187, 50270, 7053, 27, 686, 27180, 1383, 187, 50270, 9815, 27, 686, 26788, 1383, 187, 50270, 19016, 27, 686, 28266, 8, 187, 50274, 4718, 187, 50274, 1352, 4241, 15, 34176, 9, 9344, 13, 1159, 9, 87, 10, 551, 187, 50270, 1352, 2808, 9, 87, 13, 2032, 558, 187, 50274, 9897, 187, 9897, 187, 870, 3456, 31, 187, 50262, 29, 8060, 966, 568, 7152, 64, 15581, 3, 1511, 568, 8060, 1138, 29734, 15367, 6238, 11827, 102, 16677, 29440, 42697, 870, 8060, 31, 187, 50266, 870, 3423, 1178, 31, 187, 50270, 870, 14600, 31, 187, 50274, 870, 2915, 31, 187, 187, 870, 2974, 31 ]
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" /> <title>$.Object.forEach</title> <script> window.$$path = location.protocol + "//" + location.host; document.write('<script src="' + $$path + '/mass_merge.js"><\/script>') document.write('<script src="' + $$path + '/doc/scripts/common.js"><\/script>') </script> </head> <body> <article> <h3>object.forEach(fn, scope? )</h3> <p> <span class="stress">描述:</span> </p> <p>对对象的键值使用fn进行迭代。</p> <dl> <dt>fn</dt> <dd>必需。回调函数。</dd> <dt>score</dt> <dd>可选。要绑定的作用域。参数依次为value, key。</dd> </dl> <fieldset> <legend>例子</legend> <pre class="brush:javascript;gutter:false;toolbar:false"> $.require("lang", function() { var obj = { first: 'Sunday', second: 'Monday', third: 'Tuesday' }; $.Object.forEach(obj, function(v) { $.log(v, true); }); }); </pre> <button class="doc_btn" type="button">点我,执行代码</button> </fieldset> </article> </body> </html>
214,301
Github
[ 1532, 187, 5564, 27, 35876, 32328, 323, 411, 5236, 399, 31785, 187, 10008, 27, 35876, 32328, 323, 411, 5236, 399, 31785, 187, 983, 15, 39869, 301, 27, 721, 3547, 1549, 66, 1099, 14, 23, 22187, 14, 2504, 1839, 14, 66, 2904, 71, 14, 1731, 20360, 550, 25, 70, 42310, 187, 983, 15, 2754, 27, 16703, 16, 938, 16, 7132, 187, 983, 15, 6790, 1320, 36505, 27, 4646, 187, 1532, 187, 187, 4, 35876, 32328, 323, 411, 5236, 399, 31785, 8863, 187, 3074, 3238, 1408, 275, 6874, 5058, 15, 1723, 13, 4893, 1537, 320, 3515, 275, 247, 1027, 6874, 15, 5815, 6874, 556, 697, 1211, 475, 12361, 4556, 3813, 13, 247, 4907, 1789, 3562, 275, 581, 6874, 588, 417, 3839, 320, 7985, 281, 247, 4445, 275, 1529, 6874, 15, 187, 187, 510, 2900, 281, 436, 1895, 310, 281, 5416, 326, 1097, 4295, 897, 253, 1072, 12953, 15, 380, 22325, 1039, 281, 513, 436, 310, 281, 897, 253, 475, 14456, 12953, 4556, 1198, 1650, 13, 604, 247, 47405, 4445, 497, 281, 2289, 247, 2813, 3345, 273, 411, 5236, 13, 352, 1537, 897, 247, 2873, 911, 1789, 4907, 1401, 3220, 15982, 18703, 424, 281, 11842, 907, 2289, 342, 697, 411, 5236, 6254, 15, 496, 1340, 281, 1691, 253, 2873, 911, 1416, 275, 253, 4156, 12953, 13, 352, 943, 320, 1925, 1401, 18590, 3353, 3220, 15982, 18703, 12530, 380, 2873, 911, 4907, 1401, 18590, 3353, 3220, 15982, 18703, 424, 310, 7985, 281, 1097, 253, 6254, 285, 253, 2898, 13, 642, 2647, 534, 12154, 597, 403, 3515, 275, 13, 984, 597, 1097, 13199, 326, 253, 1416, 14125, 281, 253, 4156, 12953, 15, 187, 187, 5035, 346, 38561, 9206, 9424, 2101, 1951, 3, 275, 253, 9664, 7464, 30500, 10097, 323, 625, 1491, 15, 1744, 1744, 8863 ]
--- title: Namespaces for WIA Drivers description: Namespaces for WIA Drivers ms.assetid: 67260a25-6233-4738-a08f-26223cc8e563 ms.date: 04/20/2017 ms.localizationpriority: medium --- # Namespaces for WIA Drivers All services run in session zero. However, applications might be running in a different session. Each session has its own *namespace*. Therefore, a named object created in one session will not generally be visible to a component in another session. The solution to this problem is to ensure that both components use the same namespace. The simplest way to do this is to use the *global namespace*. For example, if a bundled component were to access a device outside of WIA, it might use a mutex object named **MyDeviceLock** to synchronize access with its WIA driver. In order to put the mutex name in the global namespace, it should be called **Global\\MyDeviceLock**. The mutex named **Global\\MyDeviceLock** is visible to both the driver and the application, no matter which sessions they are running in, because they both specify that the name belongs to the global namespace. See "Kernel Object Name Spaces" in the Microsoft Windows SDK documentation for more information.
214,302
Github
[ 3122, 45180, 24629, 27, 330, 14788, 10334, 14, 3429, 27, 577, 28, 26234, 14, 33754, 14, 9561, 27, 5296, 28, 260, 14, 21705, 14, 10946, 27, 577, 45180, 1738, 187, 3122, 187, 475, 831, 1873, 310, 629, 273, 253, 9271, 250, 33577, 2199, 15, 187, 475, 187, 475, 831, 12269, 6307, 7191, 310, 2256, 281, 253, 2426, 273, 253, 44502, 5259, 187, 475, 4637, 13, 362, 15, 374, 15, 17, 15, 1310, 247, 3491, 273, 253, 353, 3859, 369, 417, 5939, 342, 436, 187, 475, 1873, 13, 1422, 476, 4044, 581, 387, 3944, 1358, 45189, 15, 2061, 16, 45590, 16, 19, 15, 17, 14206, 187, 475, 187, 475, 831, 1873, 31167, 789, 6107, 407, 253, 1563, 7981, 4366, 27, 187, 475, 187, 475, 50275, 49124, 8821, 281, 253, 14325, 9107, 6807, 313, 1719, 39, 10, 762, 581, 390, 625, 187, 475, 50275, 1987, 42104, 7981, 15486, 15, 2594, 253, 43512, 1873, 5939, 187, 475, 50275, 3113, 436, 789, 323, 3081, 1491, 5001, 9451, 187, 475, 50275, 628, 4249, 15, 380, 7412, 39, 23937, 436, 1873, 281, 368, 762, 253, 14325, 187, 475, 50275, 17736, 13, 11099, 374, 15, 17, 313, 783, 346, 17736, 3287, 368, 778, 417, 897, 436, 1873, 187, 475, 50275, 16829, 275, 10276, 342, 253, 4637, 15, 1422, 778, 4044, 247, 3491, 273, 187, 475, 50275, 783, 4637, 387, 3944, 1358, 2700, 15, 8418, 15, 2061, 16, 17130, 16, 17821, 14, 19, 15, 17, 964, 187, 1738, 187, 4, 17331, 389, 64, 13998, 64, 7873, 64, 21341, 19, 64, 2203, 64, 57, 36442, 474, 3233, 26102, 64, 301, 77, 187, 4, 3182, 389, 64, 13998, 64, 7873, 64, 21341, 19, 64, 2203, 64, 57, 36442, 474, 3233, 26102, 64, 301, 77, 187, 187, 4, 3709, 654, 681, 16, 13998, 16, 7873, 16, 21341, 19, 16, 2203, 16, 57, 3233, 26102, 15, 301, 77, 31, 187, 187, 8640, 389, 187, 92, 187, 8640, 5101, 187, 92, 187, 8640, 4177, 187, 92, 187, 8640, 8326, 19, 187, 92, 187, 8640, 941, 187, 92, 187, 187, 6930, 4483, 2289, 281, 247, 581, 14, 6967, 3425, 273, 4021, 12320, 187, 50274, 40591, 839, 14, 3659, 3904, 15, 187, 1738, 187, 15049, 1594, 36442, 474, 3233, 26102, 1163, 12590, 681, 1450, 13998, 1450, 7873, 1450, 26162, 1450, 57, 14418, 187, 92, 187, 50274, 6930, 12802, 265, 941, 347, 2634, 12237, 65, 2193, 15, 187, 50273, 8480, 187, 50274, 21934, 29, 4021, 2239, 50275, 788, 36442, 474, 3233, 1874, 187, 4718, 187, 187, 94, 3706, 1380, 941, 187, 94, 3706, 1380, 8326, 19, 187, 94, 3706, 1380, 389, 187, 94, 3706, 1380, 5101, 187, 94, 3706, 1380, 4177, 535, 187, 4, 7287, 187, 187, 3122, 362, 303, 27, 1178, 5333, 3429, 30, 21, 2602, 8476, 13121, 30, 21, 5645, 8476, 27, 1738, 187 ]
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ #ifndef com_sun_star_chart2_data_XNumericalDataSequence_idl #define com_sun_star_chart2_data_XNumericalDataSequence_idl #include <com/sun/star/chart2/data/XDataSequence.idl> module com { module sun { module star { module chart2 { module data { /** allows access to a one-dimensional sequence of double precision floating-point numbers. */ interface XNumericalDataSequence : ::com::sun::star::uno::XInterface { /** retrieves data as `double` values. */ sequence< double > getNumericalData(); }; } ; // data } ; // chart2 } ; // com } ; // sun } ; // star #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
214,303
Github
[ 14277, 7229, 2715, 568, 18, 15, 17, 3, 9706, 568, 17880, 14, 25, 28739, 187, 29, 11695, 18193, 12168, 84, 568, 10987, 3, 29806, 8893, 568, 21, 15, 17, 3, 15664, 568, 2413, 1358, 24991, 15, 22730, 15, 681, 16, 35654, 16, 983, 7973, 16, 9755, 1138, 187, 50276, 29, 41410, 31, 187, 50274, 29, 11909, 22057, 568, 686, 6999, 11909, 18619, 2295, 15078, 38329, 14154, 870, 11909, 31, 187, 50274, 29, 17806, 22057, 568, 686, 6999, 17806, 18619, 2295, 15078, 38329, 89, 2691, 870, 17806, 31, 187, 50274, 29, 11695, 38895, 38958, 36, 1706, 37, 23, 37, 1976, 14, 23, 39, 19, 39, 14, 21, 39, 22, 34, 14, 26, 2358, 37, 14, 20, 35, 19, 37, 18, 39, 17, 38, 22308, 35, 28379, 11695, 38895, 31, 187, 50274, 29, 11021, 2548, 31, 1672, 70, 870, 11021, 2548, 31, 187, 50274, 29, 16560, 28825, 31, 9323, 870, 16560, 28825, 31, 187, 50274, 29, 27711, 2402, 31, 9323, 870, 27711, 2402, 31, 187, 50274, 29, 12168, 26819, 8893, 31, 87, 21, 15, 22, 870, 12168, 26819, 8893, 31, 187, 50276, 870, 41410, 31, 187, 50276, 29, 41410, 22057, 568, 686, 6999, 11909, 48963, 17806, 18619, 2295, 686, 14154, 93, 89, 2691, 8, 38329, 187, 50274, 29, 14154, 52, 31356, 31, 5672, 870, 14154, 52, 31356, 31, 187, 50274, 29, 14154, 2548, 31, 11546, 870, 14154, 2548, 31, 187, 50274, 29, 13967, 39263, 31, 7750, 870, 13967, 39263, 31, 187, 50274, 29, 11021, 5455, 31, 4805, 61, 14154, 870, 11021, 5455, 31, 187, 50274, 29, 36906, 31171, 31, 18828, 13143, 36906, 31171, 31, 187, 50274, 29, 4756, 20684, 31, 43274, 870, 4756, 20684, 31, 187, 50274, 29, 24979, 13019, 31, 21, 870, 24979, 13019, 31, 187, 50274, 29, 7504, 35184, 31, 5672, 870, 7504, 35184, 31, 187, 50274, 29, 17806, 12168, 31, 89, 2691, 870, 17806, 12168, 31, 187, 50276, 870, 41410, 31, 187, 50276, 29, 41410, 22057, 568, 686, 6999, 11909, 48963, 17806, 18619, 2295, 686, 18992, 93, 89, 2691, 8, 38329, 187, 50274, 29, 13967, 39263, 31, 5672, 870, 13967, 39263, 31, 187, 50274, 29, 11021, 5455, 31, 4805, 61, 18992, 870, 11021, 5455, 31, 187, 50274, 29, 4756, 20684, 31, 43274, 870, 4756, 20684, 31, 187, 50274, 29, 24979, 13019, 31, 21, 870, 24979, 13019, 31, 187, 50274, 29, 7504, 35184, 31, 5672, 870, 7504, 35184, 31, 187, 50274, 29, 17806, 12168, 31, 89, 2691, 870, 17806, 12168, 31, 187, 50276, 870, 41410, 31, 187, 50276, 29, 46812, 31, 187, 50274, 29, 12905, 17105, 568, 7761, 13, 11099, 30, 18, 15, 17, 15, 28306, 15, 17, 13, 17156, 30, 27912, 13, 5259, 4814, 11200, 30, 67, 2357, 66, 22, 68, 3208, 42362, 70, 38823, 3, 4725, 187, 50276, 870, 46812, 31, 187, 50276, 29, 46812, 31, 187, 50274, 29, 20329, 17105, 568, 20053, 15, 6113, 3, 4725, 187, 50274, 29, 20329, 17105, 568, 18401, 61, 27711, 6074, 15, 6113, 3, 4725, 187, 50276, 870, 46812, 31, 187, 50276, 29, 19206, 8049, 43306, 3338, 10987, 38601, 5455, 1572, 16880, 15, 36, 33409, 15, 48413, 3, 4725, 187, 870, 11695, 31 ]
<?xml version="1.0" encoding="utf-8"?> <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">x86</Platform> <ProjectGuid>{C34D6D75-6F2F-4F5A-968D-3B2D1F0E290B}</ProjectGuid> <OutputType>Exe</OutputType> <RootNamespace>Cons</RootNamespace> <AssemblyName>Cons</AssemblyName> <TargetFrameworkVersion>v4.5</TargetFrameworkVersion> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <DebugSymbols>true</DebugSymbols> <DebugType>full</DebugType> <Optimize>false</Optimize> <OutputPath>bin\Debug</OutputPath> <DefineConstants>DEBUG;</DefineConstants> <ErrorReport>prompt</ErrorReport> <WarningLevel>4</WarningLevel> <ExternalConsole>true</ExternalConsole> <PlatformTarget>x86</PlatformTarget> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> <Optimize>true</Optimize> <OutputPath>bin\Release</OutputPath> <ErrorReport>prompt</ErrorReport> <WarningLevel>4</WarningLevel> <ExternalConsole>true</ExternalConsole> <PlatformTarget>x86</PlatformTarget> </PropertyGroup> <ItemGroup> <Reference Include="System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" /> </ItemGroup> <ItemGroup> <Compile Include="Program.cs" /> <Compile Include="Properties\AssemblyInfo.cs" /> </ItemGroup> <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> </Project>
214,304
Github
[ 10708, 389, 15, 545, 80, 17473, 40057, 15, 1730, 15, 3358, 77, 16895, 15, 3358, 77, 19, 3211, 15, 7280, 28, 187, 187, 2948, 4955, 15, 31265, 15, 5089, 28, 187, 187, 2948, 389, 15, 545, 80, 17473, 40057, 15, 1730, 15, 3358, 77, 16895, 15, 3358, 77, 19, 3211, 15, 25553, 15, 43612, 20062, 17441, 16295, 5089, 8932, 28, 187, 2948, 389, 15, 545, 80, 17473, 40057, 15, 1730, 15, 3358, 77, 16895, 15, 3358, 77, 19, 3211, 15, 25553, 15, 22600, 21, 8929, 9150, 263, 1080, 16295, 28, 187, 187, 6930, 187, 475, 1214, 7582, 21844, 661, 395, 1032, 187, 475, 1214, 17480, 470, 15, 740, 15, 1012, 187, 1738, 187, 4387, 966, 30810, 21351, 31980, 5089, 8725, 34644, 17441, 16295, 5089, 8932, 551, 535, 186, 33, 5089, 187, 186, 4387, 2991, 15266, 64, 3575, 64, 284, 64, 15024, 64, 5251, 1082, 12326, 19563, 551, 996, 186, 2799, 51, 16878, 1587, 15697, 14, 21351, 14, 18, 15, 3358, 77, 3287, 996, 186, 15093, 426, 747, 10039, 21, 8929, 9150, 263, 1080, 16295, 1874, 996, 186, 15093, 15, 18788, 9, 788, 8929, 25467, 5715, 480, 6124, 7104, 558, 996, 186, 36302, 33527, 6124, 1587, 48712, 21351, 14, 18, 22600, 21, 8929, 998, 538, 3287, 187, 186, 94, 535, 186, 33, 5089, 187, 186, 4387, 2991, 15266, 64, 3575, 64, 284, 64, 15024, 64, 2003, 1082, 12326, 19563, 551, 996, 186, 2799, 51, 16878, 1587, 15697, 14, 21351, 14, 19, 15, 3358, 77, 3287, 996, 186, 15093, 426, 747, 10039, 21, 8929, 9150, 263, 1080, 16295, 1874, 996, 186, 15093, 15, 18788, 9, 788, 8929, 25467, 5715, 480, 6124, 7104, 558, 996, 186, 36302, 33527, 6124, 1587, 48712, 21351, 14, 19, 22600, 21, 8929, 998, 538, 3287, 187, 186, 94, 535, 186, 33, 5089, 187, 186, 4387, 2991, 767, 64, 21676, 64, 1148, 983, 1082, 12326, 19563, 551, 996, 186, 2799, 51, 16878, 1587, 15697, 14, 21351, 14, 20, 15, 3358, 77, 3287, 996, 186, 15093, 426, 747, 10039, 21, 8929, 9150, 263, 1080, 16295, 1874, 996, 186, 15093, 15, 18788, 9, 788, 8929, 25467, 5715, 480, 6124, 7104, 558, 996, 186, 36302, 33527, 6124, 1587, 48712, 21351, 14, 20, 22600, 21, 8929, 998, 538, 3287, 187, 186, 94, 187, 94, 187 ]
package com.phoenixnap.oss.ramlplugin.raml2code.github; import org.junit.Test; import com.phoenixnap.oss.ramlplugin.raml2code.rules.GitHubAbstractRuleTestBase; import com.phoenixnap.oss.ramlplugin.raml2code.rules.Spring4ControllerDecoratorRule; /** * @author aleksandars * @since 0.10.13 */ public class Issue215RulesTest extends GitHubAbstractRuleTestBase { @Test public void optional_param_as_resource_level() throws Exception { loadRaml("issue-215-1.raml"); rule = new Spring4ControllerDecoratorRule(); rule.apply(getControllerMetadata(), jCodeModel); verifyGeneratedCode("Issue215-1Spring4ControllerStub"); } @Test public void optional_param_as_resource_part() throws Exception { loadRaml("issue-215-2.raml"); rule = new Spring4ControllerDecoratorRule(); rule.apply(getControllerMetadata(), jCodeModel); verifyGeneratedCode("Issue215-2Spring4ControllerStub"); } @Test public void two_optional_parms() throws Exception { loadRaml("issue-215-3.raml"); rule = new Spring4ControllerDecoratorRule(); rule.apply(getControllerMetadata(), jCodeModel); verifyGeneratedCode("Issue215-3Spring4ControllerStub"); } }
214,305
Github
[ 14277, 7229, 2715, 568, 18, 15, 17, 3, 9706, 568, 18441, 14, 25, 28739, 190, 187, 14219, 4888, 187, 44981, 27321, 5426, 323, 16872, 4888, 187, 14485, 394, 77, 428, 1594, 7084, 53, 14139, 9292, 4855, 3243, 272, 190, 187, 2413, 1358, 6756, 43319, 15, 3024, 16, 31224, 16, 14485, 394, 77, 16, 190, 187, 20968, 313, 36, 10, 5826, 14, 8012, 4378, 267, 24429, 5582, 886, 13, 500, 343, 4530, 611, 583, 76, 13, 4378, 928, 20069, 363, 661, 4888, 187, 1552, 3694, 310, 2530, 686, 284, 14, 261, 1383, 1293, 667, 3890, 390, 10466, 190, 187, 88, 35083, 90, 15, 50276, 688, 642, 2362, 588, 253, 4477, 320, 2918, 15922, 323, 667, 8540, 190, 187, 274, 2182, 432, 253, 897, 273, 436, 3694, 15, 4888, 187, 38247, 310, 7169, 281, 3780, 281, 897, 436, 3694, 323, 667, 4096, 13, 190, 187, 10387, 6264, 4893, 13, 285, 281, 6990, 352, 285, 25529, 352, 190, 187, 18105, 600, 13, 2256, 281, 253, 1563, 13133, 27, 4888, 187, 18, 15, 380, 6510, 273, 436, 3694, 1364, 417, 320, 25355, 264, 28, 368, 1364, 417, 2379, 50275, 7041, 326, 368, 4159, 253, 3236, 3694, 15, 1310, 368, 897, 436, 3694, 2379, 50275, 249, 247, 1885, 13, 271, 48371, 275, 253, 1885, 10097, 651, 320, 2379, 50275, 1212, 2845, 4215, 533, 310, 417, 2424, 15, 190, 187, 19, 15, 1219, 3606, 2603, 9508, 1364, 320, 30236, 7101, 347, 824, 13, 285, 1364, 417, 320, 2379, 50275, 24418, 33174, 347, 1146, 253, 3236, 3694, 15, 190, 187, 20, 15, 831, 4366, 778, 417, 320, 5176, 390, 12059, 432, 667, 2603, 3268, 15, 4888, 187, 15228, 267, 24429, 5582, 886, 654, 17071, 13721, 387, 4212, 15, 6756, 43319, 15, 3024, 31, 190, 187, 43, 343, 4530, 611, 583, 76, 654, 76, 583, 76, 387, 4212, 15, 6756, 43319, 15, 3024, 31, 190, 187, 15228, 928, 20069, 363, 661, 654, 293, 1906, 254, 442, 387, 4212, 15, 6756, 43319, 15, 3024, 31, 4888, 187, 22158, 190, 187, 29, 8656, 77, 15053, 31, 2379, 186, 29, 8656, 77, 8532, 1511, 568, 9961, 25178, 14, 13982, 1138, 7951, 186, 29, 5478, 31, 3122, 870, 5478, 31, 7951, 186, 29, 423, 31, 8480, 870, 423, 31, 2379, 186, 870, 8656, 77, 8532, 31, 2379, 186, 29, 8656, 77, 8532, 1511, 568, 251, 4115, 14, 13982, 1138, 605, 870, 8656, 77, 8532, 31, 2379, 186, 29, 8656, 77, 8532, 1511, 568, 2703, 1138, 7951, 186, 29, 2703, 21760, 870, 2703, 31, 7951, 186, 29, 34189, 13544, 870, 34189, 31, 2379, 186, 870, 8656, 77, 8532, 31, 2379, 186, 29, 8656, 77, 8532, 1511, 568, 2703, 1138, 7951, 186, 29, 2703, 28120, 870, 2703, 31, 7951, 186, 29, 34189, 13544, 870, 34189, 31, 2379, 186, 870, 8656, 77, 8532, 31, 2379, 186, 29, 8656, 77, 8532, 1511, 568, 15741, 9133, 1138, 7951, 186, 29, 15445, 31, 17, 89, 870, 15445, 31, 7951, 186, 29, 30029, 11247, 4725, 2379, 186, 870, 8656, 77, 8532, 31, 2379, 186, 29, 8656, 77, 8532, 1511, 568, 9133, 1138, 7951, 186, 29, 3659, 31, 8239, 3659, 31, 7951, 186, 29, 4347, 5318, 31, 70, 870, 4347, 5318, 31, 7951, 186, 29, 30029, 11247, 4725, 2379, 186, 870, 8656, 77, 8532, 31, 2379, 186, 29, 8656, 77, 8532, 1511, 568, 47558, 1138, 7951, 186, 29, 23295, 31, 7054, 870, 23295, 31, 7951, 186, 29, 23295, 31, 5045, 870, 23295, 31, 7951, 186, 29, 23295, 31, 28293, 870, 23295, 31, 7951, 186, 29, 23295, 31, 25674, 870, 23295, 31, 7951, 186, 29, 23295, 31, 6986, 870, 23295, 31, 7951, 186, 29, 23295, 31, 16435, 870, 23295, 31, 7951, 186, 29, 23295, 31, 3088, 870, 23295, 31, 7951, 186, 29, 23295, 31, 7271, 870, 23295, 31, 7951, 186, 29, 23295, 31, 71, 3341, 870, 23295, 31, 7951, 186, 29, 23295, 31, 1542, 870, 23295, 31, 7951, 186, 29, 23295, 31, 3701, 870, 23295, 31, 7951, 186, 29, 23295, 31, 338, 870, 23295, 31, 7951, 186, 29, 23295, 31, 249, 870, 23295, 31, 7951, 186, 29, 23295, 31, 14966, 1171, 870, 23295, 31, 7951, 186, 29, 23295, 31, 1826, 870, 23295, 31, 7951, 186, 29, 23295, 31, 2309, 870, 23295, 31, 7951, 186, 29, 23295, 31, 16065, 870, 23295, 31, 7951, 186, 29, 23295, 31, 2520, 870, 23295, 31, 7951, 186, 29, 23295, 31, 22408, 870, 23295, 31, 7951, 186, 29, 23295, 31, 14626, 870, 23295, 31, 7951, 186, 29, 23295, 31, 25833, 870, 23295, 31, 7951, 186, 29, 23295, 31, 2044, 870, 23295, 31, 7951, 186, 29, 23295, 31, 4353, 870, 23295, 31, 7951, 186, 29, 23295, 31, 6050, 870, 23295, 31, 7951, 186, 29, 23295, 31, 3113, 870, 23295, 31, 7951, 186, 14219, 2852, 28731, 6781, 7951, 186, 29, 23295, 31, 15834, 870, 23295, 31, 7951, 186, 29, 23295, 31, 23170, 870, 23295, 31, 7951, 186, 29, 23295, 31, 8833, 870, 23295, 31, 7951, 186, 29, 23295, 31, 3615, 870, 23295, 31, 7951, 186, 29, 23295, 31, 2437, 870, 23295, 31, 7951, 186, 29, 23295, 31, 3474, 870, 23295, 31, 7951, 186, 29, 23295, 31, 13125, 1063, 870, 23295, 31, 7951, 186, 29, 23295, 31, 12237, 870, 23295, 31, 7951, 186, 29, 23295, 31, 14379, 870, 23295, 31, 7951, 186, 29, 23295, 31, 15035, 870, 23295, 31, 7951, 186, 29, 23295, 31, 2068, 1727, 870, 23295, 31, 7951, 186, 29, 23295, 31, 13017, 870, 23295, 31, 7951, 186, 29, 23295, 31, 9599, 870, 23295, 31, 7951, 186, 29, 23295, 31, 18026, 870, 23295, 31, 7951, 186, 29, 23295, 31, 303, 16603, 870, 23295, 31, 7951, 186, 29, 23295, 31, 2948, 870, 23295, 31, 7951, 186, 29, 23295, 31, 565, 870, 23295, 31, 7951, 186, 29, 23295, 31, 15049, 870, 23295, 31, 7951, 186, 29, 23295, 31, 5056, 870, 23295, 31, 7951, 186, 29, 23295, 31, 23963, 870, 23295, 31, 7951, 186, 29, 23295, 31, 10708, 870, 23295, 31, 7951, 186, 29, 23295, 31, 9486, 870, 23295, 31, 7951, 186, 29, 23295, 31, 18641, 870, 23295, 31, 7951, 186, 29, 23295, 31, 4387, 870, 23295, 31, 7951, 186, 29, 23295, 31, 14458, 870, 23295, 31, 7951, 186, 29, 23295, 31, 4659, 870, 23295, 31, 7951, 186, 29, 23295, 31, 12185, 870, 23295, 31, 7951, 186, 29, 23295, 31, 14107, 8241, 1025, 870, 23295, 31, 7951, 186, 29, 23295, 31, 34832, 870, 23295, 31, 7951, 186, 29, 23295, 31, 3675, 850, 870, 23295, 31, 7951, 186, 29, 23295, 31, 34388, 870, 23295, 31, 2379, 186, 870, 8656, 77, 8532, 31, 2379, 186, 29, 8656, 77, 8532, 1511, 568, 47558, 1138, 7951, 186, 29, 23295, 31, 18834, 870, 23295, 31, 7951, 186, 14219, 11841, 44844, 6781, 7951, 186, 29, 23295, 31, 6542, 870, 23295, 31, 7951, 186, 29, 23295, 31, 25035, 870, 23295, 31, 7951, 186, 29, 23295, 31, 6958, 870, 23295, 31, 7951, 186, 29, 23295, 31, 4756, 870, 23295, 31, 7951, 186, 29, 23295, 31, 13364, 4756, 870, 23295, 31, 7951, 186, 29, 23295, 31, 11594, 870, 23295, 31, 7951, 186, 29, 23295, 31, 18102, 870, 23295, 31, 7951, 186, 29, 23295, 31, 8447, 870, 23295, 31, 7951, 186, 29, 23295, 31, 4241, 870, 23295, 31, 7951, 186, 29, 23295, 31, 12519, 4756, 870, 23295, 31, 7951, 186, 29, 23295, 31, 12905, 4756, 870, 23295, 31, 7951, 186, 29, 23295, 31, 5785, 5892, 870, 23295, 31, 7951, 186, 29, 23295, 31, 2776, 870, 23295, 31, 7951, 186, 29, 23295, 31, 44981, 4756, 870, 23295, 31, 7951, 186, 29, 23295, 31, 2548, 4756, 870, 23295, 31, 7951, 186, 29, 23295, 31, 20201, 4756, 870, 23295, 31, 7951, 186, 14219, 11841, 3470, 6781, 7951, 186, 29, 23295, 31, 29377, 20201, 870, 23295, 31, 7951, 186, 29, 23295, 31, 29377, 3322, 1864, 23242, 5318, 870, 23295, 31, 7951, 186, 29, 23295, 31, 25950, 20201, 870, 23295, 31, 7951, 186, 29, 23295, 31, 25950, 3322, 1864, 23242, 5318, 870, 23295, 31, 7951, 186, 29, 23295, 31, 15419, 870, 23295, 31, 7951, 186, 29, 23295, 31, 261, 39, 8234, 870, 23295, 31, 7951, 186, 29, 23295, 31, 261, 44932, 870, 23295, 31, 7951, 186, 29, 23295, 31, 12083, 21125, 870, 23295, 31, 7951, 186, 29, 23295, 31, 12083, 4807, 870, 23295, 31, 7951, 186, 14219, 11841, 3607, 6781, 7951, 186, 29, 23295, 31, 20067, 5953, 870, 23295, 31, 7951, 186, 29, 23295, 31, 44932, 870, 23295, 31, 7951, 186, 29, 23295, 31, 31549, 870, 23295, 31, 2379, 186, 870, 8656, 77, 8532, 31, 190, 187, 870, 8656, 77, 15053, 31 ]
<?xml version="1.0" encoding="UTF-8"?> <!-- Syntax highlighting definition for JavaScript xslthl - XSLT Syntax Highlighting http://sourceforge.net/projects/xslthl/ Copyright (C) 2005-2008 Michal Molhanec, Jirka Kosek, Michiel Hendriks This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. Michal Molhanec <mol1111 at users.sourceforge.net> Jirka Kosek <kosek at users.sourceforge.net> Michiel Hendriks <elmuerte at users.sourceforge.net> --> <highlighters> <highlighter type="multiline-comment"> <start>/*</start> <end>*/</end> </highlighter> <highlighter type="oneline-comment">//</highlighter> <highlighter type="string"> <string>"</string> <escape>\</escape> </highlighter> <highlighter type="string"> <string>'</string> <escape>\</escape> </highlighter> <highlighter type="hexnumber"> <prefix>0x</prefix> <ignoreCase /> </highlighter> <highlighter type="number"> <point>.</point> <exponent>e</exponent> <ignoreCase /> </highlighter> <highlighter type="keywords"> <keyword>break</keyword> <keyword>case</keyword> <keyword>catch</keyword> <keyword>continue</keyword> <keyword>default</keyword> <keyword>delete</keyword> <keyword>do</keyword> <keyword>else</keyword> <keyword>finally</keyword> <keyword>for</keyword> <keyword>function</keyword> <keyword>if</keyword> <keyword>in</keyword> <keyword>instanceof</keyword> <keyword>new</keyword> <keyword>return</keyword> <keyword>switch</keyword> <keyword>this</keyword> <keyword>throw</keyword> <keyword>try</keyword> <keyword>typeof</keyword> <keyword>var</keyword> <keyword>void</keyword> <keyword>while</keyword> <keyword>with</keyword> <!-- future keywords --> <keyword>abstract</keyword> <keyword>boolean</keyword> <keyword>byte</keyword> <keyword>char</keyword> <keyword>class</keyword> <keyword>const</keyword> <keyword>debugger</keyword> <keyword>double</keyword> <keyword>enum</keyword> <keyword>export</keyword> <keyword>extends</keyword> <keyword>final</keyword> <keyword>float</keyword> <keyword>goto</keyword> <keyword>implements</keyword> <keyword>import</keyword> <keyword>int</keyword> <keyword>interface</keyword> <keyword>long</keyword> <keyword>native</keyword> <keyword>package</keyword> <keyword>private</keyword> <keyword>protected</keyword> <keyword>public</keyword> <keyword>short</keyword> <keyword>static</keyword> <keyword>super</keyword> <keyword>synchronized</keyword> <keyword>throws</keyword> <keyword>transient</keyword> <keyword>volatile</keyword> </highlighter> <highlighter type="keywords"> <keyword>prototype</keyword> <!-- Global Objects --> <keyword>Array</keyword> <keyword>Boolean</keyword> <keyword>Date</keyword> <keyword>Error</keyword> <keyword>EvalError</keyword> <keyword>Function</keyword> <keyword>Math</keyword> <keyword>Number</keyword> <keyword>Object</keyword> <keyword>RangeError</keyword> <keyword>ReferenceError</keyword> <keyword>RegExp</keyword> <keyword>String</keyword> <keyword>SyntaxError</keyword> <keyword>TypeError</keyword> <keyword>URIError</keyword> <!-- Global functions --> <keyword>decodeURI</keyword> <keyword>decodeURIComponent</keyword> <keyword>encodeURI</keyword> <keyword>encodeURIComponent</keyword> <keyword>eval</keyword> <keyword>isFinite</keyword> <keyword>isNaN</keyword> <keyword>parseFloat</keyword> <keyword>parseInt</keyword> <!-- Global properties --> <keyword>Infinity</keyword> <keyword>NaN</keyword> <keyword>undefined</keyword> </highlighter> </highlighters>
214,306
Github
[ 51, 16878, 14500, 6910, 313, 8252, 27, 1903, 1157, 8072, 27, 7251, 13, 1623, 27, 3280, 15, 3358, 77, 13, 12269, 27, 19058, 4241, 6910, 10, 187, 50274, 4814, 3902, 6910, 14560, 313, 8252, 27, 1903, 1157, 8072, 27, 3307, 13, 1623, 27, 3280, 15, 3358, 77, 10, 187, 50270, 14305, 2776, 6910, 27, 346, 5564, 3, 313, 8252, 27, 1903, 1157, 8072, 27, 1668, 13, 1623, 27, 3280, 15, 3358, 77, 10, 187, 50270, 5279, 15328, 494, 4241, 6910, 14560, 313, 8252, 27, 1283, 1157, 8072, 27, 3307, 13, 1623, 27, 3280, 15, 3358, 77, 13, 12269, 27, 19058, 2776, 6910, 10, 187, 50266, 4814, 3902, 6910, 14560, 313, 8252, 27, 1903, 1157, 8072, 27, 3307, 13, 1623, 27, 3280, 15, 3358, 77, 10, 187, 50262, 2776, 6910, 14560, 27, 346, 2877, 3, 313, 8252, 27, 428, 18, 1157, 8072, 27, 428, 18, 10, 187, 50262, 5279, 15328, 494, 2776, 6910, 27, 346, 73, 6836, 3, 313, 8252, 27, 1283, 1157, 8072, 27, 3307, 13, 1623, 27, 3280, 15, 3358, 77, 10, 187, 50274, 11133, 6910, 313, 8252, 27, 3495, 1157, 8072, 27, 7543, 13, 1623, 27, 3280, 15, 3358, 77, 13, 12269, 27, 10030, 3902, 6910, 14560, 10, 187, 50270, 14305, 2776, 6910, 27, 13357, 3956, 3, 313, 8252, 27, 3495, 1157, 8072, 27, 3435, 13, 1623, 27, 3280, 15, 3358, 77, 10, 187, 50270, 14305, 4241, 6910, 313, 8252, 27, 470, 1157, 8072, 27, 7543, 13, 1623, 27, 749, 7341, 16, 21705, 14, 15024, 15, 3358, 77, 13, 12269, 27, 19058, 25644, 6910, 10, 187, 50266, 6942, 6910, 313, 8252, 27, 470, 1157, 8072, 27, 2164, 13, 1623, 27, 749, 7341, 16, 21705, 14, 15024, 15, 3358, 77, 13, 12269, 27, 10030, 3902, 6910, 14560, 10, 187, 50262, 14305, 2776, 6910, 27, 346, 788, 3, 313, 8252, 27, 470, 1157, 8072, 27, 495, 13, 1623, 27, 749, 7341, 16, 21705, 14, 15024, 15, 3358, 77, 10, 187, 50262, 14305, 4241, 6910, 313, 8252, 27, 470, 1157, 8072, 27, 2164, 13, 1623, 27, 749, 7341, 16, 2377, 19, 16, 1913, 15, 3358, 77, 13, 12269, 27, 19058, 25644, 6910, 10, 187, 50258, 4814, 3902, 6910, 14560, 313, 8252, 27, 470, 1157, 8072, 27, 2164, 13, 1623, 27, 749, 7341, 16, 2377, 19, 16, 1913, 15, 3358, 77, 10, 187, 50254, 14305, 2776, 6910, 27, 346, 10008, 3, 313, 8252, 27, 470, 1157, 8072, 27, 1903, 13, 1623, 27, 749, 7341, 16, 2377, 19, 16, 1913, 15, 3358, 77, 10, 187, 50254, 5279, 15328, 494, 4241, 6910, 14560, 313, 8252, 27, 2145, 1157, 8072, 27, 2164, 13, 1623, 27, 749, 7341, 16, 2377, 19, 16, 1913, 15, 3358, 77, 13, 12269, 27, 19058, 2776, 6910, 10, 187, 50254, 50274, 4814, 3902, 6910, 14560, 313, 8252, 27, 470, 1157, 8072, 27, 2164, 13, 1623, 27, 749, 7341, 16, 2377, 19, 16, 1913, 15, 3358, 77, 10, 187, 50254, 50270, 2776, 6910, 14560, 27, 346, 2877, 3, 313, 8252, 27, 428, 18, 1157, 8072, 27, 428, 18, 10, 187, 50254, 50270, 5279, 15328, 494, 2776, 6910, 27, 346, 10008, 3, 313, 8252, 27, 2145, 1157, 8072, 27, 2164, 13, 1623, 27, 749, 7341, 16, 2377, 19, 16, 1913, 15, 3358, 77, 10, 187, 50258, 4814, 3902, 6910, 14560, 313, 8252, 27, 428, 18, 1157, 8072, 27, 428, 18, 10, 187, 50254, 2776, 6910, 14560, 27, 346, 8412, 2402, 3, 313, 8252, 27, 428, 18, 1157, 8072, 27, 428, 18, 10, 187, 50254, 4241, 6910, 14560, 313, 8252, 27, 428, 18, 1157, 8072, 27, 428, 18, 10, 187, 50254, 50274, 4814, 3902, 6910, 14560, 313, 8252, 27, 428, 18, 1157, 8072, 27, 428, 18, 10, 187, 50254, 50270, 2776, 6910, 14560, 27, 346, 2877, 3, 313, 8252, 27, 428, 18, 1157, 8072, 27, 428, 18, 10, 187, 50254, 50270, 5279, 15328, 494, 2776, 6910, 27, 346, 788, 3, 313, 8252, 27, 428, 18, 1157, 8072, 27, 428, 18, 13, 12269, 27, 19058, 2776, 6910, 10, 187, 50266, 11133, 6910, 313, 8252, 27, 4562, 1157, 8072, 27, 7543, 13, 1623, 27, 749, 7341, 16, 21705, 14, 15024, 15, 3358, 77, 13, 12269, 27, 10030, 3902, 6910, 14560, 10, 187, 50262, 14305, 2776, 6910, 27, 13357, 92, 301, 13272, 313, 8252, 27, 4562, 1157, 8072, 27, 5540, 13, 1623, 27, 749, 7341, 16, 21705, 14, 15024, 15, 3358, 77, 10, 187, 50262, 14305, 4241, 6910, 313, 8252, 27, 5976, 1157, 8072, 27, 7543, 13, 1623, 27, 749, 7341, 16, 21705, 14, 15024, 15, 3358, 77, 10, 187, 50258, 6942, 6910, 313, 8252, 27, 5976, 1157, 8072, 27, 7904, 13, 1623, 27, 749, 7341, 16, 21705, 14, 15024, 15, 3358, 77, 13, 12269, 27, 10030, 3902, 6910, 14560, 10, 187, 50254, 14305, 2776, 6910, 27, 346, 1065, 3, 313, 8252, 27, 5976, 1157, 8072, 27, 5329, 13, 1623, 27, 749, 7341, 16, 21705, 14, 15024, 15, 3358, 77, 10, 187, 50254, 4241, 6910, 14560, 313, 8252, 27, 7904, 1157, 8072, 27, 7904, 13, 1623, 27, 749, 7341, 16, 21705, 14, 15024, 15, 3358, 77, 13, 12269, 27, 19058, 13141, 6910, 10, 187, 50254, 50274, 4814, 3902, 6910, 14560, 313, 8252, 27, 428, 18, 1157, 8072, 27, 428, 18, 10, 187, 50254, 50270, 2776, 6910, 14560, 27, 346, 8412, 2402, 3, 313, 8252, 27, 428, 18, 1157, 8072, 27, 428, 18, 10, 187, 50254, 50270, 4241, 6910, 14560, 313, 8252, 27, 428, 18, 1157, 8072, 27, 428, 18, 10, 187, 50254, 50266, 4814, 3902, 6910, 14560, 313, 8252, 27, 428, 18, 1157, 8072, 27, 428, 18, 10, 187, 50254, 50262, 2776, 6910, 14560, 27, 346, 2877, 3, 313, 8252, 27, 428, 18, 1157, 8072, 27, 428, 18, 10, 187, 50254, 50262, 5279, 15328, 494, 2776, 6910, 27, 346, 1065, 3, 313, 8252, 27, 428, 18, 1157, 8072, 27, 428, 18, 13, 12269, 27, 19058, 2776, 6910, 10, 187, 50258, 4814, 3902, 6910, 14560, 313, 8252, 27, 428, 18, 1157, 8072, 27, 428, 18, 10, 187, 50254, 2776, 6910, 14560, 27, 346, 8412, 2402, 3, 313, 8252, 27, 428, 18, 1157, 8072, 27, 428, 18, 10, 187, 50254, 4241, 6910, 14560, 313, 8252, 27, 428, 18, 1157, 8072, 27, 428, 18, 10, 187, 50254, 50274, 4814, 3902, 6910, 14560, 313, 8252, 27, 428, 18, 1157, 8072, 27, 428, 18, 10, 187, 50254, 50270, 2776, 6910, 14560, 27, 346, 2877, 3, 313, 8252, 27, 428, 18, 1157, 8072, 27, 428, 18, 10, 187, 50254, 50270, 5279, 15328, 494, 2776, 6910, 27, 13357, 92, 301, 13272, 313, 8252, 27, 428, 18, 1157, 8072, 27, 428, 18, 13, 12269, 27, 19058, 2776, 6910, 10, 187, 50258, 4814, 3902, 6910, 14560, 313, 8252, 27, 428, 18, 1157, 8072, 27, 428, 18, 10, 187, 50254, 2776, 6910, 14560, 27, 346, 11317, 17986, 3, 313, 8252, 27, 428, 18, 1157, 8072, 27, 428, 18, 10, 187, 50254, 4241, 6910, 14560, 313, 8252, 27, 428, 18, 1157, 8072, 27, 428, 18, 10, 187, 50254, 50274, 8324, 6910, 313, 8252, 27, 428, 18, 1157, 8072, 27, 428, 18, 10, 187, 50254, 50270, 2776, 6910, 14560, 27, 346, 301, 3, 313, 8252, 27, 428, 18, 1157, 8072, 27, 428, 18, 10, 187, 50254, 50270, 2548, 36914, 6910, 313, 8252, 27, 428, 18, 1157, 8072, 27, 428, 18, 13, 12269, 27, 18199, 2548, 16960, 6910, 10, 187, 50254, 50266, 4814, 3902, 6910, 14560, 313, 8252, 27, 428, 18, 1157, 8072, 27, 428, 18, 10, 187, 50254, 50262, 2776, 6910, 14560, 27, 346, 881, 3, 313, 8252, 27, 428, 18, 1157, 8072, 27, 428, 18, 10, 187, 50254, 50262, 21408, 2548, 16960, 6910, 27, 346, 2703, 3, 313, 8252, 27, 428, 18, 1157, 8072, 27, 428, 18, 13, 12269, 27, 18199, 2548, 16960, 6910, 10, 187, 50266, 4814, 3902, 6910, 14560, 313, 8252, 27, 428, 18, 1157, 8072, 27, 428, 18, 10, 187, 50262, 2776, 6910, 14560, 27, 346, 8412, 2402, 3, 313, 8252, 27, 428, 18, 1157, 8072, 27, 428, 18, 10, 187, 50262, 4241, 6910, 14560, 313, 8252, 27, 428, 18, 1157, 8072, 27, 428, 18, 10, 187, 50258, 4814, 3902, 6910, 14560, 313, 8252, 27, 428, 18, 1157, 8072, 27, 428, 18, 10, 187, 50254, 2776, 6910, 14560, 27, 346, 2877, 3, 313, 8252, 27, 428, 18, 1157, 8072, 27, 428, 18, 10, 187, 50254, 5279, 15328, 494, 2776, 6910, 27, 13357, 3956, 3, 313, 8252, 27, 428, 18, 1157, 8072, 27, 428, 18, 13, 12269, 27, 19058, 2776, 6910, 10, 187 ]
RamlDocumentNode (Start: 11 , End: 65, On: input.raml, Source: SYObjectNode) KeyValueNodeImpl (Start: 11 , End: 22, On: input.raml) SYStringNode: "title" (Start: 11 , End: 16, On: input.raml) OverlayableObjectNodeImpl (Start: 18 , End: 22, On: input.raml, Source: SYStringNode) KeyValueNodeImpl (Start: 11 , End: 22, On: input.raml) StringNodeImpl: "value" (Start: -1 , End: -1) OverlayableStringNode: "hola" (Start: 18 , End: 22, On: input.raml) ResourceNode (Start: 23 , End: 47, On: input.raml, Source: KeyValueNodeImpl) SYStringNode: "/top" (Start: 23 , End: 27, On: input.raml) SYObjectNode (Start: 0 , End: 47, On: subdir/basic-resource.raml, Source: SYIncludeNode) MethodNode (Start: 0 , End: 24, On: subdir/basic-resource.raml, Source: KeyValueNodeImpl) SYStringNode: "get" (Start: 0 , End: 3, On: subdir/basic-resource.raml) SYObjectNode (Start: 0 , End: 24, On: subdir/sub2/action.raml, Source: SYIncludeNode) KeyValueNodeImpl (Start: 0 , End: 24, On: subdir/sub2/action.raml) SYStringNode: "description" (Start: 0 , End: 11, On: subdir/sub2/action.raml) OverlayableObjectNodeImpl (Start: 13 , End: 24, On: subdir/sub2/action.raml, Source: SYStringNode) KeyValueNodeImpl (Start: 0 , End: 24, On: subdir/sub2/action.raml) StringNodeImpl: "value" (Start: -1 , End: -1) OverlayableStringNode: "description" (Start: 13 , End: 24, On: subdir/sub2/action.raml) KeyValueNodeImpl (Start: -1 , End: -1) StringNodeImpl: "displayName" (Start: -1 , End: -1) ObjectNodeImpl (Start: -1 , End: -1) KeyValueNodeImpl (Start: -1 , End: -1) StringNodeImpl: "value" (Start: -1 , End: -1) OverlayableStringNode: "get" (Start: -1 , End: -1, Source: SYStringNode) ResourceNode (Start: 31 , End: 47, On: subdir/basic-resource.raml, Source: KeyValueNodeImpl) SYStringNode: "/{id}" (Start: 31 , End: 36, On: subdir/basic-resource.raml) SYObjectNode (Start: 42 , End: 47, On: subdir/basic-resource.raml) MethodNode (Start: 42 , End: 46, On: subdir/basic-resource.raml, Source: KeyValueNodeImpl) SYStringNode: "put" (Start: 42 , End: 45, On: subdir/basic-resource.raml) ObjectNodeImpl (Start: 46 , End: 46, On: subdir/basic-resource.raml, Source: SYNullNode) KeyValueNodeImpl (Start: -1 , End: -1) StringNodeImpl: "displayName" (Start: -1 , End: -1) ObjectNodeImpl (Start: -1 , End: -1) KeyValueNodeImpl (Start: -1 , End: -1) StringNodeImpl: "value" (Start: -1 , End: -1) OverlayableStringNode: "put" (Start: -1 , End: -1, Source: SYStringNode) KeyValueNodeImpl (Start: -1 , End: -1) StringNodeImpl: "displayName" (Start: -1 , End: -1) ObjectNodeImpl (Start: -1 , End: -1) KeyValueNodeImpl (Start: -1 , End: -1) StringNodeImpl: "value" (Start: -1 , End: -1) OverlayableStringNode: "/{id}" (Start: -1 , End: -1, Source: SYStringNode) KeyValueNodeImpl (Start: -1 , End: -1) StringNodeImpl: "uriParameters" (Start: -1 , End: -1) ObjectNodeImpl (Start: -1 , End: -1) PropertyNode (Start: -1 , End: -1) StringNodeImpl: "id" (Start: -1 , End: -1) TypeDeclarationNode (Start: -1 , End: -1, Source: NativeTypeExpressionNode) KeyValueNodeImpl (Start: -1 , End: -1) StringNodeImpl: "type" (Start: -1 , End: -1) NativeTypeExpressionNode: "string" (Start: -1 , End: -1, Source: NativeTypeExpressionNode) KeyValueNodeImpl (Start: -1 , End: -1) StringNodeImpl: "displayName" (Start: -1 , End: -1) ObjectNodeImpl (Start: -1 , End: -1) KeyValueNodeImpl (Start: -1 , End: -1) StringNodeImpl: "value" (Start: -1 , End: -1) OverlayableStringNode: "/top" (Start: -1 , End: -1, Source: SYStringNode)
214,307
Github
[ 4, 13993, 3027, 27, 380, 1083, 323, 247, 21010, 3488, 16232, 830, 187, 187, 4132, 3027, 11949, 1951, 3488, 16232, 17963, 5609, 323, 616, 1142, 11361, 187, 12554, 272, 285, 27197, 14086, 10704, 34501, 13, 533, 352, 4648, 247, 830, 326, 187, 13437, 398, 3012, 432, 643, 3488, 16232, 31225, 15, 187, 187, 424, 43963, 1227, 42982, 424, 187, 187, 1552, 3389, 310, 247, 1077, 2393, 2216, 10419, 313, 4609, 556, 1580, 644, 7607, 10, 187, 3529, 14859, 253, 5454, 14273, 273, 970, 436, 21010, 830, 4632, 253, 5899, 187, 18372, 16232, 10130, 1618, 830, 15, 2058, 690, 1127, 13, 436, 3389, 812, 320, 8660, 264, 745, 187, 395, 3542, 347, 247, 1463, 11073, 2929, 13, 533, 1919, 1024, 13, 352, 310, 1805, 281, 2908, 187, 262, 275, 436, 8034, 30399, 830, 685, 417, 281, 15, 378, 999, 609, 326, 436, 3389, 4648, 4222, 39533, 187, 40221, 285, 943, 417, 320, 2783, 247, 15516, 3806, 281, 4980, 13993, 3027, 15, 187, 187, 817, 12276, 187, 187, 1552, 3389, 25339, 2087, 7342, 273, 253, 2199, 13, 23970, 3634, 285, 253, 187, 9389, 18075, 13, 840, 12088, 670, 253, 5454, 14273, 273, 841, 11809, 15, 36745, 407, 187, 27503, 418, 1595, 1216, 15, 187, 187, 817, 4214, 7342, 273, 271, 9812, 13, 285, 7342, 273, 13361, 4997, 434, 5742, 187, 187, 6067, 4390, 9355, 6779, 323, 13993, 3027, 8414, 273, 767, 9351, 273, 187, 20619, 27, 271, 21708, 11804, 14, 3022, 346, 34949, 12917, 3, 285, 271, 346, 4132, 12917, 1381, 247, 1159, 187, 33174, 275, 23964, 37613, 6287, 830, 15, 380, 2934, 310, 326, 247, 13528, 40, 1159, 310, 187, 4421, 494, 273, 2120, 31376, 323, 13002, 10341, 13782, 13, 533, 310, 19328, 187, 1542, 6287, 21257, 15, 496, 4499, 13, 13361, 4997, 434, 403, 3710, 313, 70, 15, 72, 15, 281, 1453, 187, 5449, 7668, 6287, 46590, 689, 29438, 8470, 10, 533, 841, 7364, 1056, 352, 1199, 187, 19010, 1321, 281, 4979, 285, 12106, 13, 3782, 323, 253, 873, 273, 30745, 275, 247, 187, 28936, 4715, 10295, 15, 187, 187, 510, 2216, 273, 271, 10444, 14237, 310, 271, 13757, 1895, 13, 534, 187, 46535, 22991, 5454, 14273, 326, 4388, 281, 1056, 2176, 9351, 273, 17963, 187, 16702, 569, 2969, 15, 2732, 512, 13, 352, 310, 346, 24902, 3, 281, 513, 2761, 667, 187, 3675, 1248, 327, 667, 9812, 27, 359, 812, 28055, 513, 6287, 21257, 327, 187, 26164, 3448, 15, 473, 7058, 41, 13, 824, 21257, 651, 1379, 1512, 1048, 281, 3630, 13, 187, 12756, 320, 28304, 1955, 281, 19124, 2544, 13, 651, 320, 2834, 281, 6558, 13, 285, 187, 38157, 281, 1056, 2303, 3907, 15, 3545, 14692, 21257, 327, 253, 346, 918, 187, 5251, 3, 273, 9812, 2789, 352, 1199, 6927, 281, 513, 1783, 285, 9261, 273, 2127, 13, 285, 187, 5092, 1056, 731, 7938, 407, 8493, 253, 1979, 273, 253, 9812, 13, 285, 23703, 187, 24765, 9594, 326, 651, 452, 5010, 452, 281, 320, 2783, 15, 187, 187, 1552, 310, 253, 1921, 359, 1472, 6110, 275, 6240, 3488, 16232, 5609, 281, 271, 9812, 275, 187, 783, 806, 1659, 27, 2167, 776, 2613, 346, 34949, 1159, 3, 6779, 310, 4751, 7032, 187, 1171, 13002, 667, 13782, 13, 352, 310, 346, 15627, 3, 43541, 15, 380, 7364, 11295, 187, 1615, 3488, 16232, 5609, 313, 70, 15, 72, 15, 327, 29438, 6287, 14493, 285, 3781, 749, 26804, 10, 187, 3182, 247, 4581, 8697, 326, 476, 1957, 271, 4722, 2491, 273, 187, 16702, 569, 285, 616, 16672, 13, 285, 984, 273, 616, 17647, 13, 359, 476, 187, 32231, 313, 70, 15, 72, 2698, 10096, 1783, 625, 14556, 285, 625, 27340, 15, 187, 187, 1552, 16540, 271, 1774, 1953, 326, 436, 3389, 33888, 27, 1677, 359, 403, 187, 36445, 2844, 247, 28116, 285, 3710, 1039, 281, 3890, 2127, 285, 21257, 13, 187, 911, 24374, 752, 830, 310, 1682, 281, 1347, 253, 6260, 285, 21257, 359, 971, 32, 187, 187, 1231, 8338, 767, 1027, 2216, 2792, 326, 403, 7032, 273, 13002, 253, 1072, 187, 2437, 273, 29438, 6287, 30745, 13, 533, 534, 897, 1027, 1957, 1050, 187, 13015, 15, 2053, 4948, 5454, 745, 17257, 11108, 13, 11990, 273, 9261, 13, 285, 11990, 273, 187, 12792, 275, 4722, 4088, 15, 187, 187, 817, 25161, 27, 37629, 18371, 16232, 7191, 187, 187, 1231, 3053, 407, 16585, 247, 6779, 326, 4648, 253, 5899, 3488, 16232, 187, 44128, 873, 559, 5028, 6779, 13, 299, 15, 72, 15, 1908, 330, 14, 3022, 2127, 751, 27, 187, 187, 11202, 68, 187, 50276, 4353, 2969, 64, 11667, 9, 19552, 551, 187, 50274, 1542, 313, 565, 891, 426, 470, 28, 891, 654, 427, 28, 12996, 74, 10, 551, 187, 50272, 1542, 313, 565, 480, 426, 470, 28, 480, 654, 427, 28, 12996, 75, 10, 551, 187, 50269, 9599, 19097, 426, 1594, 60, 74, 13, 75, 62, 50274, 605, 322, 18, 187, 50269, 34, 60, 74, 13, 75, 62, 426, 19097, 559, 337, 50272, 605, 322, 19, 187, 50269, 35, 60, 74, 13, 75, 62, 426, 19097, 475, 5976, 50273, 605, 322, 20, 187, 50271, 94, 187, 50274, 94, 187, 50276, 94, 187, 11202, 187, 187, 510, 3488, 16232, 6779, 2506, 626, 1557, 670, 253, 4588, 13782, 13, 594, 359, 187, 9846, 12002, 731, 715, 322, 18, 16, 52, 19, 16, 52, 20, 275, 253, 5955, 2708, 15, 37405, 13, 359, 9355, 187, 936, 1957, 436, 342, 247, 8946, 830, 751, 313, 40221, 4278, 403, 417, 1774, 187, 395, 3164, 5777, 13583, 2708, 2262, 187, 187, 11202, 1686, 343, 187, 50276, 1686, 4997, 1214, 19583, 64, 11667, 9, 1051, 2462, 47, 10, 551, 187, 50274, 6, 12780, 426, 1067, 1214, 52, 18, 24722, 57, 13, 2462, 74, 13, 2462, 75, 10, 187, 50272, 13517, 27, 313, 17, 11049, 2462, 74, 654, 2462, 47, 582, 313, 17, 11049, 2462, 75, 654, 2462, 47, 10, 187, 50272, 44128, 27, 313, 74, 13, 480, 13, 470, 10, 535, 50274, 4065, 1214, 52, 19, 24722, 12780, 13, 2462, 34, 13, 2462, 74, 13, 2462, 75, 10, 187, 50272, 13517, 27, 313, 17, 11049, 2462, 74, 654, 2462, 47, 582, 313, 17, 11049, 2462, 75, 654, 2462, 47, 10, 187, 50272, 44128, 27, 313, 74, 13, 480, 13, 337, 10, 535, 50274, 4065, 1214, 52, 20, 24722, 12780, 13, 2462, 35, 13, 2462, 74, 13, 2462, 75, 10, 187, 50272, 13517, 27, 313, 17, 11049, 2462, 74, 654, 2462, 47, 582, 313, 17, 11049, 2462, 75, 654, 2462, 47, 10, 187, 50272, 44128, 27, 313, 74, 13, 480, 13, 374, 10, 187, 50276, 94, 187, 11202, 187, 187, 688, 436, 2216, 13, 271, 13361, 4997, 310, 271, 440, 16586, 7351, 273, 7997, 3692, 10636, 187, 2621, 310, 4751, 6537, 407, 616, 10130, 15, 187, 187, 6436, 13, 359, 4102, 5821, 326, 247, 625, 6843, 10130, 5202, 6779, 310, 187, 66, 1805, 4944, 323, 776, 3198, 13, 984, 352, 47566, 1774, 2605, 326, 588, 187, 11145, 6260, 285, 5556, 5904, 625, 5919, 13, 285, 671, 2789, 253, 660, 18225, 273, 187, 3528, 34, 2193, 625, 6843, 15, 831, 5644, 441, 281, 247, 6779, 2112, 253, 3104, 273, 27, 187, 187, 11202, 1686, 343, 187, 50276, 1686, 4997, 1214, 19583, 64, 11667, 9, 1051, 2462, 47, 10, 551, 187, 50274, 69, 17, 16, 69, 18, 426, 13361, 5641, 187, 50274, 1542, 322, 18, 9, 69, 17, 582, 322, 19, 9, 69, 17, 582, 322, 20, 9, 69, 17, 10, 551, 187, 50272, 1542, 322, 18, 9, 69, 18, 582, 322, 19, 9, 69, 18, 582, 322, 20, 9, 69, 18, 10, 551, 535, 50270, 6, 12780, 426, 1067, 1214, 52, 18, 24722, 57, 13, 277, 17, 13, 277, 18, 10, 50272, 12723, 322, 18, 187, 50268, 13517, 27, 313, 17, 11049, 277, 17, 654, 2462, 47, 582, 313, 17, 11049, 277, 18, 654, 2462, 47, 10, 535, 50270, 4065, 1214, 52, 19, 24722, 12780, 13, 2462, 34, 13, 277, 17, 13, 277, 18, 10, 50272, 12723, 322, 19, 187, 50268, 13517, 27, 313, 17, 11049, 277, 17, 654, 2462, 47, 582, 313, 17, 11049, 277, 18, 654, 2462, 47, 10, 535, 50270, 4065, 1214, 52, 20, 24722, 12780, 13, 2462, 35, 13, 277, 17, 13, 277, 18, 10, 50272, 12723, 322, 20, 187, 50268, 13517, 27, 313, 17, 11049, 277, 17, 654, 2462, 47, 582, 313, 17, 11049, 277, 18, 654, 2462, 47, 10, 187, 50272, 94, 187, 50274, 94, 187, 50276, 94, 187, 11202, 187, 187, 1552, 1818, 2789, 253, 47847, 2605, 273, 253, 17417, 271, 6843, 629, 273, 253, 187, 37626, 13, 285, 2789, 26752, 474, 15824, 1561, 247, 6287, 1534, 187, 9, 293, 303, 8779, 253, 3638, 470, 16, 18, 16, 19, 273, 28631, 481, 187, 187, 1147, 3548, 626, 4755, 275, 253, 1650, 1840, 13, 533, 253, 6779, 4483, 323, 690, 187, 47606, 3386, 13, 1690, 253, 3745, 323, 7997, 1561, 247, 6287, 15178, 187, 936, 452, 1327, 14, 11969, 10625, 13, 751, 436, 428, 253, 1273, 9775, 35136, 253, 8346, 187, 740, 2792, 3304, 253, 6287, 27, 187, 187, 11202, 1686, 343, 187, 50276, 1686, 4997, 1214, 43408, 64, 13517, 64, 11667, 9, 1051, 2462, 47, 10, 551, 187, 50274, 69, 17, 16, 69, 18, 426, 13361, 5641, 187, 50274, 1542, 322, 18, 9, 69, 17, 582, 322, 19, 9, 69, 17, 10, 551, 187, 50272, 1542, 322, 18, 9, 69, 18, 582, 322, 19, 9, 69, 18, 10, 551, 187, 50270, 6, 12780, 426, 1067, 1214, 52, 18, 24722, 57, 13, 277, 17, 13, 277, 18, 10, 50274, 12723, 322, 18, 187, 50268, 13517, 27, 313, 17, 11049, 277, 17, 654, 2462, 47, 582, 313, 17, 11049, 277, 18, 654, 2462, 47, 10, 535, 50270, 4065, 1214, 52, 19, 24722, 12780, 13, 2462, 34, 13, 277, 17, 13, 277, 18, 10, 50272, 12723, 322, 19, 187, 50268, 13517, 27, 313, 740, 11049, 277, 17, 654, 2462, 47, 14, 740, 582, 313, 740, 11049, 277, 18, 654, 2462, 47, 14, 740, 10, 187, 50272, 94, 187, 50274, 94, 187, 50276, 94, 187, 11202, 187, 187, 1147, 671, 4483, 10130, 294, 29042, 1561, 253, 9775, 13, 751, 436, 1650, 326, 187, 36445, 707, 247, 16421, 35689, 949, 247, 2969, 1818, 281, 253, 28631, 273, 253, 767, 187, 6839, 6477, 27, 187, 187, 11202, 1686, 343, 187, 50276, 1686, 4997, 1214, 40993, 7184, 64, 13517, 64, 11667, 9, 1051, 2462, 47, 10, 551, 187, 50274, 69, 17, 16, 69, 18, 426, 13361, 5641, 187, 50274, 1542, 322, 18, 9, 69, 17, 582, 322, 19, 9, 69, 17, 12, 69, 18, 10, 551, 187, 50272, 1542, 322, 18, 9, 69, 17, 12, 69, 18, 582, 322, 19, 9, 69, 18, 10, 551, 187, 50270, 6, 12780, 426, 1067, 1214, 52, 18, 24722, 57, 13, 277, 17, 13, 277, 18, 10, 50274, 12723, 322, 18, 187, 50268, 13517, 27, 313, 17, 11049, 277, 17, 654, 2462, 47, 582, 313, 17, 11049, 277, 18, 654, 2462, 47, 10, 535, 50270, 4065, 1214, 52, 19, 24722, 12780, 13, 2462, 34, 13, 277, 17, 13, 277, 18, 10, 50272, 12723, 322, 19, 187, 50268, 13517, 27, 313, 17, 11049, 277, 17, 654, 2462, 47, 582, 313, 17, 11049, 277, 18, 654, 2462, 47, 10, 187, 50272, 94, 187, 50274, 94, 187, 50276, 94, 187, 11202, 187, 187, 1552, 830, 556, 1270, 1612, 13, 285, 253, 3488, 16232, 2127, 14156, 313, 4609, 45742, 432, 187, 266, 13361, 4997, 281, 247, 49088, 4997, 6779, 10, 22139, 436, 1612, 594, 1841, 326, 187, 36445, 336, 6287, 21257, 1053, 626, 452, 281, 11120, 26526, 253, 6287, 272, 187, 18317, 15, 187, 187, 817, 1294, 40384, 27, 3759, 446, 1245, 18371, 16232, 7191, 187, 187, 1552, 3389, 29328, 285, 33826, 253, 2934, 273, 1469, 581, 3213, 2007, 13, 4886, 187, 455, 273, 253, 5028, 285, 10130, 1491, 715, 253, 346, 44128, 5202, 3446, 496, 436, 187, 630, 13, 359, 651, 452, 247, 6779, 835, 512, 7997, 3304, 273, 247, 1677, 187, 1542, 14, 14075, 403, 1929, 281, 452, 253, 1072, 5028, 13, 534, 310, 8838, 407, 253, 6287, 15, 496, 187, 783, 21010, 830, 13, 359, 671, 452, 271, 346, 338, 3, 9775, 326, 3936, 271, 29438, 187, 12380, 15, 187, 187, 6067, 2969, 1650, 1840, 651, 320, 6607, 347, 27, 187, 187, 11202, 1686, 343, 187, 50276, 1686, 4997, 1214, 19583, 64, 11667, 9, 1051, 2462, 47, 10, 551, 187, 50274, 2843, 460, 15, 1542, 2462, 74, 426, 470, 3346, 2462, 47, 3213, 337, 551, 187, 50272, 2843, 460, 15, 1542, 2462, 75, 426, 470, 3346, 2462, 47, 3213, 337, 551, 187, 50270, 605, 6489, 642, 412, 275, 436, 1083, 13, 533, 476, 2226, 275, 2087, 15, 187, 50270, 6, 17, 21795, 18, 426, 29438, 15, 18788, 1852, 3011, 24722, 74, 13, 2462, 75, 10, 535, 50270, 6, 12780, 426, 1067, 1214, 52, 18, 24722, 57, 13, 2462, 17, 13, 2462, 18, 10, 535, 50270, 4065, 1214, 52, 19, 24722, 12780, 13, 2462, 34, 13, 2462, 17, 13, 2462, 18, 10, 535, 50270, 4065, 1214, 52, 20, 24722, 12780, 13, 2462, 35, 13, 2462, 17, 13, 2462, 18, 10, 187, 50272, 94, 187, 50274, 94, 187, 50276, 94, 187, 11202, 187, 187, 510, 1650, 342, 253, 3777, 5028, 651, 320, 6607, 342, 271, 604, 9775, 27, 187, 187, 11202, 1686, 343, 187, 50276, 1686, 4997, 1214, 43408, 64, 13517, 64, 11667, 9, 1051, 2462, 47, 10, 551, 187, 50274, 2843, 460, 15, 1542, 2462, 74, 426, 470, 3346, 2462, 47, 3213, 337, 551, 187, 50272, 2843, 460, 15, 1542, 2462, 75, 426, 470, 3346, 2462, 47, 3213, 337, 551, 187, 50270, 605, 6489, 642, 412, 275, 436, 1083, 13, 533, 476, 2226, 275, 2087, 15, 187, 50270, 6, 17, 21795, 18, 426, 29438, 4065, 1852, 3011, 24722, 74, 13, 2462, 75, 10, 535, 50270, 6, 12780, 426, 1067, 1214, 52, 18, 24722, 57, 13, 2462, 17, 13, 2462, 18, 10, 535, 50270, 338, 313, 740, 11049, 2462, 74, 654, 2462, 47, 14, 740, 582, 313, 740, 11049, 2462, 75, 654, 2462, 47, 14, 740, 10, 551, 535, 50268, 6, 19, 21795, 20, 426, 29438, 15, 18788, 24722, 74, 13, 2462, 75, 10, 50274, 605, 6489, 642, 412, 275, 436, 1083, 535, 50268, 4065, 1214, 52, 19, 24722, 12780, 13, 2462, 34, 13, 2462, 19, 13, 2462, 20, 10, 187, 50270, 94, 187, 50272, 94, 187, 50274, 94, 187, 50276, 94, 187, 11202, 187, 187, 6872, 9812, 84, 1957, 4555, 253, 1072, 1491, 13, 285, 897, 247, 2074, 1491, 187, 20425, 15, 380, 686, 46052, 8, 830, 23970, 271, 4465, 1268, 273, 38562, 187, 9, 31062, 2651, 285, 10625, 10, 326, 1056, 352, 3477, 281, 4979, 7997, 387, 253, 187, 4347, 1215, 273, 2403, 352, 2834, 281, 1921, 670, 849, 1110, 7997, 588, 1705, 187, 483, 846, 2127, 5978, 15, 2726, 253, 21010, 830, 13, 21257, 452, 281, 513, 187, 31369, 273, 2127, 5978, 13866, 342, 616, 9261, 27, 3185, 273, 3365, 187, 28276, 247, 10130, 281, 11357, 74, 12, 75, 13, 480, 4846, 281, 755, 8413, 7706, 13, 368, 1871, 452, 281, 6635, 436, 187, 3211, 11120, 313, 11714, 4303, 9009, 407, 2403, 3488, 16232, 2127, 1541, 247, 6335, 187, 3529, 21257, 1067, 715, 2262, 187, 187, 11202, 1686, 343, 187, 1686, 4997, 1214, 40993, 7184, 64, 13517, 64, 11667, 9, 1051, 2462, 47, 10, 551, 187, 50276, 2843, 460, 15, 1542, 2462, 85, 18, 426, 470, 3346, 374, 11, 47, 14, 19, 3213, 337, 551, 187, 50274, 2843, 460, 15, 1542, 2462, 85, 19, 426, 2781, 9, 17, 13, 246, 18, 14, 47, 12, 18, 10, 3346, 1054, 9, 47, 13, 246, 18, 10, 3213, 337, 551, 187, 50272, 24722, 74, 13, 2462, 75, 10, 426, 26607, 85, 18, 42910, 85, 19, 13, 2462, 85, 19, 10, 187, 50272, 1051, 187, 50274, 94, 187, 50276, 94, 187, 94, 187, 11202, 187, 187, 817, 27605, 187, 187, 14358, 273, 841, 4948, 403, 7032, 273, 13002, 253, 1072, 966, 273, 13782, 27, 187, 9961, 301, 37613, 6287, 46590, 342, 29438, 6287, 14493, 285, 29438, 3541, 187, 250, 3065, 15, 2064, 753, 13, 597, 16753, 1077, 1027, 5454, 14273, 275, 643, 4088, 15, 187, 187, 4118, 10200, 1319, 27, 476, 3890, 1072, 13782, 187, 187, 14358, 273, 841, 476, 3890, 253, 1072, 16308, 273, 13782, 13, 299, 15, 72, 15, 34501, 3542, 275, 187, 531, 830, 403, 1957, 494, 275, 253, 643, 830, 275, 512, 2219, 15, 187, 187, 4118, 10200, 1319, 27, 10096, 1783, 187, 187, 6872, 14237, 1097, 897, 29438, 3470, 323, 941, 12806, 10603, 285, 187, 10773, 749, 26804, 13, 285, 10096, 1783, 2987, 253, 1072, 1039, 15, 187, 187, 4118, 10200, 1319, 27, 10183, 273, 8925, 8654, 9261, 2962, 187, 187, 4041, 2201, 5691, 275, 3045, 273, 13757, 273, 436, 3686, 273, 2127, 310, 187, 4039, 5555, 253, 15824, 285, 3879, 273, 2710, 6287, 21257, 326, 755, 187, 46188, 15, 1707, 403, 1327, 14, 6790, 2538, 273, 1046, 3061, 13, 285, 6747, 187, 37626, 7729, 8415, 436, 26557, 1892, 1895, 15, 187, 187, 4118, 10200, 1319, 27, 8566, 1255, 273, 9812, 187, 187, 688, 253, 2219, 326, 403, 954, 4623, 281, 441, 313, 27049, 26305, 8470, 10, 841, 4948, 187, 609, 3587, 6425, 27, 247, 5899, 9775, 342, 247, 3710, 5028, 313, 70, 15, 72, 15, 187, 783, 346, 43408, 64, 13517, 64, 11667, 3, 1840, 10, 7637, 598, 1907, 581, 1268, 273, 13993, 686, 338, 8, 3304, 187, 953, 17417, 15, 380, 21010, 830, 17587, 323, 436, 407, 23703, 28631, 285, 187, 45047, 432, 253, 9812, 15, 6295, 4948, 1581, 2127, 35793, 281, 4796, 7870, 187, 1288, 37426, 275, 253, 9812, 27, 253, 5899, 2746, 4483, 9775, 19860, 13, 253, 187, 48573, 1245, 830, 8525, 9775, 35793, 15, 187, 187, 1147, 310, 1774, 281, 1127, 562, 326, 253, 5899, 830, 14896, 327, 8566, 1255, 275, 187, 783, 9559, 2219, 27, 299, 15, 72, 15, 253, 6287, 8413, 7706, 1083, 15, 2053, 2219, 588, 320, 7520, 275, 187, 29105, 323, 776, 32140, 84, 13, 285, 403, 4555, 253, 2219, 326, 15450, 187, 16702, 569, 971, 281, 320, 6843, 670, 752, 597, 403, 2509, 15, 187, 187, 4118, 3759, 12986, 273, 2127, 5978, 187, 187, 34, 2234, 2457, 3924, 273, 271, 13361, 4997, 310, 697, 9436, 281, 247, 13528, 40, 1159, 13, 534, 310, 187, 17354, 347, 629, 273, 23345, 281, 253, 2303, 5145, 15, 380, 21010, 830, 556, 247, 187, 8250, 5750, 1060, 27, 253, 9812, 556, 247, 1480, 17668, 281, 253, 2605, 273, 253, 187, 20419, 2127, 15, 187, 187, 688, 4499, 13, 253, 5899, 830, 556, 1534, 10454, 275, 253, 23345, 187, 7404, 281, 247, 13528, 40, 1159, 13, 984, 253, 17257, 11108, 417, 516, 67, 2107, 275, 253, 9812, 3198, 281, 187, 3188, 562, 1309, 2127, 5978, 15, 6307, 5978, 432, 4110, 45, 2722, 326, 352, 310, 187, 24902, 281, 513, 436, 13, 533, 352, 310, 247, 1327, 14, 26551, 9261, 15, 187, 187, 4118, 444, 511, 273, 9261, 187, 187, 1145, 5750, 323, 253, 5899, 830, 310, 326, 352, 310, 6927, 281, 1347, 2176, 187, 16702, 569, 327, 352, 27, 8413, 7706, 285, 246, 4837, 403, 816, 21257, 327, 253, 187, 44128, 273, 253, 7997, 275, 1953, 13, 352, 2506, 626, 2430, 6890, 253, 6287, 187, 18317, 15, 187, 187, 688, 3946, 13, 253, 21010, 830, 4419, 4886, 253, 10454, 273, 2127, 187, 14520, 715, 253, 21257, 3746, 428, 436, 310, 4536, 14916, 13, 187, 32307, 3206, 15, 380, 2488, 11532, 326, 436, 943, 320, 1896, 407, 2403, 187, 783, 2127, 5978, 11333, 3746, 320, 6335, 3470, 326, 187, 16702, 569, 1067, 715, 13, 3185, 273, 271, 34350, 2972, 326, 6569, 387, 253, 990, 273, 187, 783, 13361, 4997, 5162, 15, 187, 187, 9917, 13, 253, 16308, 273, 21257, 2684, 3063, 407, 1594, 5696, 313, 10387, 246, 4837, 13, 187, 17333, 13, 440, 19891, 13, 285, 643, 26305, 21257, 10, 943, 320, 3477, 2217, 187, 936, 3359, 327, 2057, 6779, 15, 380, 760, 2219, 326, 403, 247, 5691, 403, 187, 3062, 7269, 2219, 751, 8413, 7706, 13, 299, 15, 72, 15, 323, 30143, 941, 4866, 5978, 15, 187, 187, 4118, 444, 511, 273, 1783, 27, 12805, 3210, 187, 187, 510, 21010, 830, 310, 1199, 6927, 323, 6260, 285, 21257, 281, 1973, 187, 16736, 3210, 323, 313, 70, 15, 72, 15, 22291, 253, 1953, 273, 346, 5430, 1199, 2127, 787, 4875, 588, 320, 187, 68, 15525, 407, 440, 19891, 247, 6287, 387, 436, 1268, 865, 582, 984, 352, 310, 6927, 281, 3283, 187, 5371, 2303, 2127, 588, 320, 4561, 15, 2726, 253, 5899, 830, 13, 841, 6260, 187, 9846, 452, 281, 30258, 752, 3488, 16232, 2127, 1541, 588, 513, 281, 247, 873, 273, 7997, 187, 4524, 8180, 27, 1633, 326, 310, 1327, 14, 26551, 275, 253, 4722, 2219, 275, 187, 19751, 313, 2887, 346, 25997, 273, 2127, 5978, 6788, 187, 187, 4118, 12805, 273, 2127, 5978, 187, 187, 5443, 273, 253, 1445, 3488, 16232, 2127, 5978, 310, 187, 60, 24710, 285, 9542, 880, 3614, 1358, 77, 343, 6358, 15, 76, 1657, 86, 1261, 15, 1257, 16, 2713, 4963, 16, 42594, 43784, 16, 30626, 21378, 16, 18, 16, 3956, 9869, 14, 505, 1541, 15, 9275, 582, 187, 32307, 17619, 673, 10454, 15, 844, 1902, 326, 954, 5145, 4715, 187, 1601, 2799, 84, 588, 320, 4373, 14, 6471, 12406, 13, 285, 3021, 352, 943, 320, 3477, 281, 2714, 907, 275, 187, 18108, 2219, 15, 2064, 753, 13, 253, 5899, 3488, 16232, 6779, 2789, 352, 187, 635, 3477, 281, 9569, 9542, 285, 8214, 28631, 13, 285, 3400, 642, 1039, 187, 936, 2096, 285, 2199, 247, 2105, 1566, 323, 970, 731, 15, 1876, 15450, 8548, 273, 187, 783, 9812, 878, 281, 320, 5480, 281, 6016, 253, 2120, 31376, 273, 9812, 326, 778, 1705, 281, 187, 16083, 15, 187, 187, 510, 21010, 830, 13067, 436, 1977, 27, 253, 12342, 275, 253, 9812, 3464, 2969, 13, 285, 187, 783, 2127, 1199, 625, 3587, 13806, 253, 2105, 1566, 323, 23345, 281, 13528, 40, 187, 20619, 285, 5145, 2127, 15, 831, 310, 3264, 281, 320, 1077, 1774, 275, 253, 3563, 187, 296, 1131, 273, 247, 2127, 14156, 323, 271, 44420, 15, 187, 187, 4118, 322, 4576, 275, 13993, 36944, 187, 187, 1231, 5194, 2168, 326, 2193, 2931, 275, 271, 13361, 4997, 476, 2486, 13434, 2193, 285, 187, 9328, 403, 2931, 1754, 327, 5899, 26447, 15, 496, 253, 21010, 830, 13, 436, 310, 187, 635, 2969, 27, 7125, 285, 9953, 4903, 2931, 275, 323, 14, 4213, 2695, 403, 3153, 187, 40084, 616, 26752, 474, 2133, 13, 285, 4872, 2962, 273, 7997, 452, 253, 1072, 346, 3956, 187, 3487, 3, 26447, 5886, 326, 247, 5044, 2972, 1057, 15, 187, 187, 688, 253, 5899, 830, 2167, 13, 436, 310, 417, 253, 1083, 27, 352, 3133, 326, 247, 2257, 273, 187, 36871, 670, 849, 2127, 1541, 588, 25526, 253, 2127, 310, 3309, 281, 3653, 604, 322, 4576, 187, 630, 310, 3451, 390, 417, 15, 1198, 1650, 13, 436, 310, 12078, 2127, 27, 187, 187, 11202, 1686, 343, 187, 50276, 6, 12780, 426, 1067, 1214, 52, 18, 24722, 57, 13, 2462, 17, 13, 2462, 18, 10, 187, 50274, 13517, 27, 313, 740, 11049, 2462, 74, 654, 2462, 47, 582, 313, 17, 11049, 2462, 75, 654, 2462, 47, 10, 187, 50274, 44128, 27, 313, 74, 13, 480, 10, 535, 50276, 4065, 1214, 52, 19, 24722, 12780, 13, 2462, 34, 13, 2462, 17, 13, 2462, 18, 10, 187, 50274, 13517, 27, 313, 17, 11049, 2462, 74, 654, 2462, 47, 582, 313, 17, 11049, 2462, 75, 654, 2462, 47, 10, 187, 50274, 44128, 27, 313, 74, 13, 480, 10, 187, 11202, 187, 187, 8457, 2634, 6, 12780, 65, 3548, 626, 2931, 327, 690, 25142, 273, 253, 2462, 74, 6287, 15, 187, 187, 1552, 8213, 984, 352, 2789, 253, 2336, 5425, 625, 9542, 13, 533, 625, 187, 9188, 36211, 13, 352, 2097, 326, 3301, 14892, 285, 643, 5556, 5904, 326, 588, 187, 5551, 336, 322, 4576, 830, 588, 878, 281, 320, 6600, 273, 436, 285, 320, 2104, 281, 1566, 752, 2127, 1541, 187, 18566, 15, 187, 187, 1145, 47006, 2867, 273, 436, 326, 359, 5469, 4102, 310, 326, 8367, 42, 7632, 275, 187, 1686, 4997, 434, 313, 338, 359, 1329, 731, 10, 588, 671, 452, 281, 452, 10625, 15, 187, 187, 4118, 43702, 273, 39296, 275, 9812, 187, 187, 510, 5899, 830, 556, 2709, 2349, 351, 723, 323, 253, 1072, 16308, 273, 3879, 27, 368, 187, 423, 598, 1907, 9886, 327, 2634, 2843, 460, 15, 1542, 65, 17417, 281, 13199, 1880, 2127, 1541, 943, 897, 187, 3, 16807, 16, 16806, 366, 3, 7823, 13, 440, 1811, 17417, 13, 3966, 15, 5376, 6477, 476, 320, 8085, 390, 476, 187, 16450, 2709, 10125, 273, 616, 9775, 984, 273, 21481, 10625, 13, 187, 14069, 15, 187, 187, 1552, 310, 247, 1895, 323, 6260, 285, 2105, 3210, 13, 984, 597, 1016, 452, 281, 1921, 187, 10383, 841, 3081, 4948, 275, 253, 9812, 15, 187, 187, 4118, 48426, 1430, 281, 4096, 27, 23345, 281, 5145, 2127, 187, 187, 4041, 273, 253, 2022, 10865, 323, 436, 789, 310, 23345, 281, 1698, 14, 5251, 44420, 2127, 13, 187, 10387, 767, 14, 6967, 4972, 1320, 13, 16941, 273, 11085, 1909, 13, 285, 643, 187, 8906, 1320, 273, 253, 4315, 44420, 5085, 15, 496, 253, 2488, 434, 4743, 13, 253, 4465, 187, 36648, 1255, 273, 253, 5899, 830, 310, 247, 4016, 323, 436, 4096, 27, 14720, 187, 10383, 253, 4561, 5145, 2127, 588, 2430, 4685, 253, 10603, 432, 187, 1686, 4997, 281, 17892, 2127, 13, 534, 2097, 326, 352, 1364, 2096, 752, 2127, 5978, 187, 9846, 513, 15, 187, 187, 688, 253, 21010, 830, 13, 253, 1055, 273, 346, 3211, 5978, 3, 310, 1900, 4755, 432, 187, 783, 9812, 3139, 13, 534, 943, 1056, 352, 6927, 281, 1347, 4972, 1320, 281, 2303, 187, 6839, 6477, 285, 643, 6260, 359, 878, 281, 1347, 15, 187, 187, 817, 12245, 37757, 27, 767, 1027, 2308, 273, 13361, 4997, 187, 187, 4041, 9769, 5795, 310, 281, 1329, 1097, 253, 5899, 285, 21010, 4948, 187, 1171, 13361, 4997, 275, 776, 9812, 15, 187, 187, 510, 8661, 812, 1007, 751, 436, 13, 323, 1650, 27, 187, 187, 18, 15, 50276, 19159, 3045, 21257, 812, 320, 2218, 327, 253, 5899, 830, 15, 187, 18, 15, 50276, 43487, 2127, 5978, 45742, 281, 253, 21010, 830, 187, 18, 15, 50276, 12168, 2173, 23345, 12475, 323, 246, 4837, 13, 285, 4972, 1320, 285, 643, 374, 37, 187, 50274, 3675, 13015, 326, 1053, 626, 5649, 1199, 432, 253, 5899, 830, 812, 320, 1408, 15, 187, 18, 15, 50276, 21747, 2127, 1541, 281, 247, 49088, 11632, 476, 320, 2218, 672, 512, 273, 253, 7997, 403, 187, 50274, 250, 26248, 342, 4394, 3588, 327, 253, 2303, 15, 187, 187, 6175, 436, 310, 1896, 13, 352, 3548, 626, 2590, 752, 651, 15249, 253, 10454, 273, 436, 187, 6772, 607, 15, 15999, 627, 310, 247, 2221, 18511, 1921, 323, 436, 13, 352, 651, 320, 5322, 187, 936, 417, 513, 436, 15, 1401, 11241, 6098, 359, 5469, 436, 347, 247, 2216, 2285, 285, 5821, 326, 187, 2520, 5082, 626, 320, 247, 1175, 1039, 281, 564, 15, 187 ]
# MLIR: The case for a simplified polyhedral form MLIR embraces polyhedral compiler techniques for their many advantages representing and transforming dense numerical kernels, but it uses a form that differs significantly from other polyhedral frameworks. **Disclaimer / Warning** This document is a very early design proposal (which has since been accepted) that explored the tradeoffs of using this simplified form vs the traditional polyhedral schedule list form. At some point, this document could be dusted off and written as a proper academic paper, but until now, it is better to included it in this crafty form than not to. Beware that this document uses archaic syntax and should not be considered a canonical reference to modern MLIR. ## Introduction This document discusses general goals of the project, introduces context and the two alternatives, then talks about the tradeoffs of these designs. Written by Chris Lattner. ## General goals of an IR, and goals of mlfunc's specifically Our currently planned representation for MLIR consists of two kinds of functions: an LLVM-like "CFG Function" and an "ML Function": a function represented in multidimensional loop form. The idea is that a CFG function is capable of full generality for expressing arbitrary computation, but is awkward for loop transformations. In contrast, mlfunc's are limited (e.g. to control flow involving loop nests over affine spaces) but these limitations make it much easier to transform and analyze, particularly for the set of computations in a machine learning kernel. The design of an intermediate representations is an optimization problem, which makes intentional tradeoffs that aim to make certain kinds of compiler transformations simple. After all, it is "possible" to do almost any transformation on any IR: we could theoretically do loop transformations on assembly language. OTOH, such transformations would take too long to write, would be fragile due to irrelevant changes, would be difficult to maintain, and difficult to make target independent. Performing transformations on the "right level" of IR makes it much easier to do analysis and transformation of code, and can make them faster by reducing the size of the IR, and eliminating possibilities that would have otherwise have to be considered. This is the reason we're interested in adding polyhedral techniques to an IR in the first place: though our base "CFG function" representation is fully capable of expressing any computation, it is "too" expressive. The limitations imposed by polyhedral techniques (e.g. on affine loop bounds and array subscripts) define a closed algebra that can represent an interesting range of transformations and their compositions, and because of their simplicity, we can perform (e.g.) dependence analysis more efficiently and more reliably. This raises an important question that this document examines: given we are introducing a redundant and limited way to express code and transformations, exactly what form is best to perform the analyses and transformations we want? We explore two different design points that are capable of expressing the same class of affine loop computations, but which use different representational forms. These forms trade off verbosity, ease of transformation, and ease of analysis in interesting ways. ## Context: Traditional Polyhedral Form We started by discussing a representation that uses the traditional polyhedral schedule set + domain representation, e.g. consider C-like code like: ```c void simple_example(...) { for (int i = 0; i < N; ++i) { for (int j = 0; j < N; ++j) { float tmp = X[i,j] // S1 A[i,j] = tmp + 1 // S2 B[i,j] = tmp * 42 // S3 } } } ``` The polyhedral representation doesn't care about the actual computation, so we will abstract them into S1/S2/S3 in the discussion below. Originally, we planned to represent this with a classical form like (syntax details are not important and probably slightly incorrect below): ```mlir mlfunc @simple_example(... %N) { %tmp = call @S1(%X, %i, %j) domain: (0 <= %i < %N), (0 <= %j < %N) schedule: (i, j, 0) call @S2(%tmp, %A, %i, %j) domain: (0 <= %i < %N), (0 <= %j < %N) schedule: (i, j, 1) call @S3(%tmp, %B, %i, %j) domain: (0 <= %i < %N), (0 <= %j < %N) schedule: (i, j, 2) } ``` In this design, an mlfunc is an unordered bag of instructions whose execution order is fully controlled by their schedule. However, we recently agreed that a more explicit schedule tree representation is a better fit for our needs, because it exposes important structure that will make analyses and optimizations more efficient, and also makes the scoping of SSA values more explicit. This leads us to a representation along the lines of: ```mlir mlfunc @simple_example(... %N) { d0/d1 = mlspace for S1(d0), S2(d0), S3(d0) { for S1(d1), S2(d1), S3(d1) { %tmp = call @S1(%X, d0, d1) ;; S1 domain: (0 <= d0 < %N), (0 <= d1 < %N) call @S2(%tmp, %A, d0, d1) ;; S2 domain: (0 <= d0 < %N), (0 <= d1 < %N) call @S3(%tmp, %B, d0, d1) ;; S3 domain: (0 <= d0 < %N), (0 <= d1 < %N) } } } ``` This change makes the nesting structure of the loops an explicit part of the representation, and makes lexical ordering within a loop significant (eliminating the constant 0/1/2 of schedules). It isn't obvious in the example above, but the representation allows for some interesting features, including the ability for instructions within a loop nest to have non-equal domains, like this - the second instruction ignores the outer 10 points inside the loop: ```mlir mlfunc @reduced_domain_example(... %N) { d0/d1 = mlspace for S1(d0), S2(d0) { for S1(d1), S2(d1) { %tmp = call @S1(%X, d0, d1) ;; S1 domain: (0 <= d0 < %N), (0 <= d1 < %N) call @S2(%tmp, %A, d0, d1) ;; S2 domain: (10 <= d0 < %N-10), (10 <= d1 < %N-10) } } } ``` It also allows schedule remapping within the instruction, like this example that introduces a diagonal skew through a simple change to the schedules of the two instructions: ```mlir mlfunc @skewed_domain_example(... %N) { d0/d1 = mlspace for S1(d0), S2(d0+d1) { for S1(d0+d1), S2(d1) { %tmp = call @S1(%X, d0, d1) ;; S1 domain: (0 <= d0 < %N), (0 <= d1 < %N) call @S2(%tmp, %A, d0, d1) ;; S2 domain: (0 <= d0 < %N), (0 <= d1 < %N) } } } ``` This form has great power, and the polyhedral code generator (which lowers from an mlfunc to a cfgfunc representation) handles this power so things that introduce loop transformations don't have to explicitly manipulate the looping structure. ## Proposal: Simplified Polyhedral Form This document proposes and explores the idea of going one step further, moving all of the domain and schedule information into the "schedule tree". In this form, we would have a representation where all instructions inside of a given for-loop are known to have the same domain, which is maintained by the loop. In the simplified form, we also have an "if" instruction that takes an affine condition. Our simple example above would be represented as: ```mlir mlfunc @simple_example(... %N) { affine.for %i = 0 ... %N step 1 { affine.for %j = 0 ... %N step 1 { // identity noop in this case, but can exist in general. %0,%1 = affine.apply #57(%i, %j) %tmp = call @S1(%X, %0, %1) call @S2(%tmp, %A, %0, %1) call @S3(%tmp, %B, %0, %1) } } } ``` The example with the reduced domain would be represented with an if instruction: ```mlir mlfunc @reduced_domain_example(... %N) { affine.for %i = 0 ... %N step 1 { affine.for %j = 0 ... %N step 1 { // identity noop in this case, but can exist in general. %0,%1 = affinecall #57(%i, %j) %tmp = call @S1(%X, %0, %1) if (10 <= %i < %N-10), (10 <= %j < %N-10) { %2,%3 = affine.apply(%i, %j) // identity noop in this case call @S2(%tmp, %A, %2, %3) } } } } ``` These IRs represent exactly the same information, and use a similar information density. The 'traditional' form introduces an extra level of abstraction (schedules and domains) that make it easy to transform instructions at the expense of making it difficult to reason about how those instructions will come out after code generation. With the simplified form, transformations have to do parts of code generation inline with their transformation: instead of simply changing a schedule to **(i+j, j)** to get skewing, you'd have to generate this code explicitly (potentially implemented by making polyhedral codegen a library that transformations call into): ```mlir mlfunc @skewed_domain_example(... %N) { affine.for %t1 = 0 ... 2*N-2 step 1 { affine.for %t2 = max(0, t1-N+1) ... min(N, t1) step 1 { (%i, %j) = (%t1-%t2, %t2) ... } } } ``` ## Evaluation Both of these forms are capable of expressing the same class of computation: multidimensional loop nests with affine loop bounds and affine memory references. That said, they pose very different tradeoffs in other ways. ### Commonality: can express same computation Both of these can express the same sorts of computation, e.g. kernels written in one form are representable in the other form in all cases. ### Commonality: dependence analysis These representations both use affine functions for data layout mapping and access subscripts, and dependence analysis works the same way. ### Commonality: difficulty of determining optimal transformation series One major challenge in performance of optimization of this sort of code is choosing the ordering and behavior of various loop transformations that get applied. There are non-local effects of every decision, and neither representation helps solve this inherently hard problem. ### Commonality: compactness of IR In the cases that are most relevant to us (hyper rectangular spaces) these forms are directly equivalent: a traditional instruction with a limited domain (e.g. the "reduced_domain_example" above) ends up having one level of ML 'if' inside its loops. The simplified form pays for this by eliminating schedules and domains from the IR. Both forms allow code duplication to reduce dynamic branches in the IR: the traditional approach allows instruction splitting, the simplified form supports instruction duplication. It is important to point out that the traditional form wins on compactness in the extreme cases: e.g. the loop skewing case. These cases will be rare in practice for our workloads, and are exactly the cases that downstream transformations want to be explicit about what they are doing. ### Simplicity of code generation A key final stage of an mlfunc is its conversion to a CFG function, which is required as part of lowering to the target machine. The simplified form has a clear advantage here: the IR has a direct correspondence to the structure of the generated code. In contrast, the traditional form has significant complexity in the lowering process to a CFG function, because the verbosity not imbued in the IR needs to come out during code generation. Code generation from ISL shows that it is possible to do this, but it is a non-trivial transformation. ### Ease of transformation An advantage for the traditional form is that it is easier to perform certain transformations on it: skewing and tiling are just transformations on the schedule of the instructions in question, it doesn't require changing the loop structure. In practice, the simplified form requires moving the complexity of code generation into the transformations themselves - this is sometimes trivial, sometimes involved. The author believes that this should be possible by making the code generation algorithms themselves be library functions that transformations call into, instead of an opaque block that happens at the end of the mlfunc processing. Also, the sorts of transformations performed today by XLA (including tiling, padding, unrolling, and other rectangular transformations) should be easy enough to implement on either representation. The only cases that are a challenge are more advanced cases like skewing, e.g. for DMA data movement generation. ### Ease of analysis: Cost models The simplified form is much easier for analyses and transformations to build cost models for (e.g. answering the question of "how much code bloat will be caused by unrolling a loop at this level?"), because it is easier to predict what target code will be generated. With the traditional form, these analyses will have to anticipate what polyhedral codegen will do to a set of instructions under consideration: something that is non-trivial in the interesting cases in question (see "Cost of code generation"). ### Cost of code generation State of the art polyhedral code generation is [expensive and complicated](https://lirias.kuleuven.be/bitstream/123456789/497238/1/toplas-astgen.pdf), sometimes exponential time complexity. We expect that most machine learning workloads will be hyper-rectangular, and thus it should be easy to specialize in important cases. That said, the traditional polyhedral representation makes it very easy to introduce complicated and expensive schedules, and provides no way to understand and project a cost model for using them. All downstream clients of the IR need to be prepared to handle the full generality of IR that may come to them. The simplified form defines this away: the concepts in the IR remain simple, and the code much more directly reflects the cost model for lowering to CFG functions and machine code. This is expected to be very important in the late stages of a code generator for an accelerator. ### SSA in ML Functions We agree already that values defined in an mlfunc can include scalar values and they are defined based on traditional dominance. In the simplified form, this is very simple: arguments and induction variables defined in for-loops are live inside their lexical body, and linear series of instructions have the same "top down" dominance relation that a basic block does. In the traditional form though, this is not the case: it seems that a lot of knowledge about how codegen will emit the code is necessary to determine if SSA form is correct or not. For example, this is invalid code: ```mlir %tmp = call @S1(%X, %0, %1) domain: (10 <= %i < %N), (0 <= %j < %N) schedule: (i, j) call @S2(%tmp, %A, %0, %1) domain: (0 <= %i < %N), (0 <= %j < %N) schedule: (i, j) ``` Because `%tmp` isn't defined on some iterations of the %i loop. This matters because it makes the verifier more complicated, but more significantly, it means that load promotion and other optimizations that will produce SSA form will need to be aware of this and be able to model what codegen does. An emergent property of this that we discussed recently is that PHI nodes in mlfunc's (if we support them) will also have to have domains. ### Lack of redundancy in IR The traditional form has multiple encodings for the same sorts of behavior: you end up having bits on `affine.for` loops to specify whether codegen should use "atomic/separate" policies, unroll loops, etc. Instructions can be split or can generate multiple copies of their instruction because of overlapping domains, etc. This is a problem for analyses and cost models, because they each have to reason about these additional forms in the IR. ### Suitability to purpose: lowering to machine code One of the main drivers for this work is lowering to low-level accelerator code, including two-dimensional vectorization, insertion of DMAs, and other utilization of the matrix accelerator units. In the author's opinion, the extra compactness of the traditional form is a negative for this purpose: reasoning about the generated machine code will require understanding the mapping from mlfunc to lowered code, which means that it must understand what code generation will do. In the simplified form, the effect of "code generation" is always obvious from the IR itself, which should make it easier to perform vectorization to target instructions and other analyses we need to perform. ## Third Alternative: two different levels of mlfunc One hybrid alternative is to support both the traditional and simplified forms of mlfunc in our IR. The stages could look like this, for example: 1. Early performance transformations could be done on the traditional form. 1. Partial code generation lowers to the simplified form 1. Target specific lowering phases for tiling, and vectorization and other 2D transforms that don't benefit much from the traditional form could be run. 1. Final codegen to a cfg func can be done when all of the instructions are replaced with ones valid on the target. While this is possible, it isn't clear what would justify the complexity of this approach. Unless there is a super compelling reason for this, it would be nice to not do this. **Update:** we discussed this as a design team and agreed that this wouldn't be a good way to go.
214,308
Github
[ 3122, 1214, 5449, 1738, 187, 187, 2948, 551, 14035, 1848, 13, 327, 1848, 748, 432, 33378, 20154, 16, 4663, 8, 187, 187, 605, 841, 28731, 943, 417, 3176, 3304, 12091, 13, 533, 9158, 751, 187, 605, 29144, 13, 31979, 285, 275, 403, 4136, 187, 3474, 19772, 4814, 3418, 1848, 426, 747, 3667, 5892, 2073, 3353, 67, 8, 559, 313, 187, 50276, 1871, 80, 13, 338, 13, 1542, 13, 1059, 13, 1826, 13, 14626, 13, 2044, 13, 5045, 13, 7271, 13, 3113, 13, 1403, 1942, 13, 7054, 13, 28293, 13, 2437, 13, 3474, 4117, 559, 187, 50276, 434, 29974, 13, 22408, 13, 6050, 13, 41770, 13, 16435, 13, 15035, 13, 2948, 13, 2309, 13, 16065, 13, 6986, 4117, 559, 187, 50276, 8, 2068, 1727, 13, 71, 3341, 13, 25674, 13, 13125, 1063, 13, 3701, 13, 31126, 8, 187, 481, 9148, 9, 1383, 8539, 13956, 2073, 3353, 67, 93, 3353, 67, 3401, 559, 686, 3353, 67, 3401, 187, 187, 605, 841, 440, 552, 9158, 943, 417, 320, 908, 347, 2867, 16, 9349, 4454, 187, 3474, 440, 552, 10996, 2392, 1848, 426, 747, 3667, 5892, 2073, 3353, 67, 8, 559, 313, 187, 50276, 1871, 70, 2527, 13, 25833, 13, 4353, 8, 187, 481, 9148, 9, 1383, 8539, 13956, 2073, 3353, 84, 11, 3353, 8850, 2850, 61, 9102, 11, 3353, 8579, 3353, 67, 3401, 559, 686, 3353, 84, 11, 3353, 8850, 2850, 61, 9102, 11, 3353, 10, 3401, 187, 187, 605, 2451, 3588, 21674, 323, 362, 14, 1542, 187, 3474, 1548, 1848, 426, 1227, 60, 34, 14, 49275, 14, 91, 64, 5, 62, 5709, 88, 5, 62, 8480, 187, 187, 605, 11705, 11559, 275, 12091, 187, 3474, 11705, 2776, 1848, 426, 1227, 14249, 18346, 5180, 11671, 696, 93, 3353, 2698, 11, 8, 93, 31770, 18346, 5180, 35343, 696, 93, 3353, 2698, 11, 31899, 65, 36512, 5180, 65, 61, 696, 93, 3353, 2698, 28033, 1202, 44851, 1603, 18346, 5180, 65, 61, 696, 93, 3353, 2698, 11, 65, 93, 65, 36512, 5180, 65, 61, 696, 93, 3353, 2698, 11, 65, 16, 72, 187, 187, 605, 2736, 20276, 12091, 275, 247, 7646, 187, 15035, 1159, 2736, 36655, 313, 505, 27, 3736, 17643, 6910, 2262, 11782, 29, 2703, 31, 551, 187, 50276, 3474, 6332, 27, 11782, 29, 2703, 31, 426, 8168, 187, 50276, 338, 313, 505, 10, 551, 187, 50274, 5903, 6910, 9, 505, 13, 6332, 10, 187, 50276, 94, 187, 50276, 2309, 6332, 187, 94, 187, 187, 3701, 2451, 6910, 313, 6219, 27, 30372, 6910, 13, 6332, 27, 11782, 29, 2703, 22226, 551, 187, 50276, 338, 313, 6219, 15, 881, 11013, 337, 10, 551, 187, 50274, 1542, 313, 3474, 1416, 275, 4666, 15, 46707, 6648, 10, 551, 187, 50272, 338, 313, 7341, 1848, 15, 2566, 9, 1590, 1228, 551, 187, 50270, 3474, 1318, 426, 4666, 15, 46707, 6648, 60, 1590, 62, 187, 50270, 338, 313, 2877, 10, 551, 187, 50268, 338, 313, 1590, 11013, 686, 87, 14, 1542, 3401, 551, 187, 50266, 5903, 2214, 9, 6219, 13, 2634, 87, 14, 1542, 31961, 2877, 13272, 11976, 6332, 10, 187, 50268, 94, 2010, 604, 313, 251, 1848, 15, 2566, 9, 1590, 1228, 551, 187, 50266, 5903, 5949, 9, 2877, 13, 2634, 8626, 1590, 94, 31961, 2877, 13272, 11976, 6332, 10, 187, 50268, 94, 2010, 551, 187, 50266, 5903, 16960, 9, 2877, 13, 2634, 8626, 1590, 94, 31961, 2877, 13272, 11976, 6332, 10, 187, 50268, 94, 187, 50270, 94, 187, 50272, 94, 187, 50274, 94, 187, 50274, 338, 313, 6219, 15, 13863, 10, 551, 187, 50272, 1542, 313, 1059, 891, 426, 470, 28, 891, 654, 4666, 15, 13863, 15, 3985, 28, 891, 9234, 551, 187, 50270, 5903, 6910, 9, 6219, 15, 13863, 60, 74, 1092, 6332, 10, 187, 50272, 94, 187, 50274, 94, 187, 50276, 94, 2010, 604, 313, 6219, 15, 881, 11013, 374, 10, 551, 187, 50274, 5903, 16960, 9, 6219, 15, 17759, 13, 4666, 15, 1156, 13, 6332, 10, 187, 50276, 94, 187, 94, 187, 187, 3701, 2451, 5949, 313, 4347, 27, 2876, 13, 2505, 27, 2876, 13, 6332, 27, 11782, 29, 2703, 22226, 551, 187, 50276, 3474, 23473, 21008, 426, 866, 15, 13481, 9, 25763, 2776, 1848, 13, 686, 8539, 8992, 9, 328, 552, 10996, 2392, 1848, 10, 187, 50276, 338, 313, 23295, 21008, 10, 551, 187, 50274, 22836, 15, 11340, 9, 187, 50272, 65, 27635, 970, 16872, 440, 552, 5572, 347, 2867, 1416, 27, 2634, 559, 187, 50272, 65, 3, 8626, 23295, 21008, 60, 17, 62, 13272, 275, 2048, 7224, 1156, 15, 24716, 1082, 94, 65, 187, 50274, 10, 187, 50276, 94, 187, 50276, 5903, 16960, 9, 4347, 13, 2505, 13, 6332, 10, 187, 94, 187, 187, 3701, 2451, 2214, 313, 6219, 27, 30372, 7050, 13, 2505, 27, 2876, 13, 6332, 27, 11782, 29, 2703, 22226, 551, 187, 50276, 5903, 16960, 9, 6219, 15, 1542, 2785, 29278, 2505, 13, 6332, 10, 187, 50276, 5903, 18483, 9, 6219, 15, 29913, 13, 686, 87, 14, 1542, 28129, 1383, 2505, 13, 6332, 10, 187, 50276, 5903, 18483, 9, 6219, 15, 17828, 18, 13, 686, 87, 14, 1542, 28823, 1383, 2505, 13, 6332, 10, 187, 50276, 5903, 18483, 9, 6219, 15, 17828, 19, 13, 686, 87, 14, 1542, 28823, 1383, 2505, 13, 6332, 10, 187, 94, 187, 187, 3701, 2451, 18483, 313, 888, 27, 3736, 2703, 13, 1511, 27, 2876, 13, 2505, 27, 2876, 13, 6332, 27, 11782, 29, 2703, 22226, 551, 187, 50276, 338, 313, 25833, 1548, 11013, 686, 2703, 8, 3857, 2195, 888, 1848, 15, 2566, 9, 888, 1228, 551, 187, 50274, 22836, 15, 11340, 37428, 25359, 7224, 881, 94, 26107, 888, 13272, 275, 2048, 27, 7224, 1156, 15, 24716, 1082, 94, 27362, 187, 50276, 94, 187, 94, 187, 187, 3701, 2451, 16960, 313, 4347, 27, 2876, 13, 2505, 27, 2876, 13, 6332, 27, 11782, 29, 2703, 22226, 551, 187, 50276, 14626, 551, 187, 50274, 1826, 12917, 37428, 2309, 7224, 4347, 94, 27362, 187, 50276, 94, 5834, 313, 70, 10, 551, 187, 50274, 3474, 23473, 21008, 426, 866, 15, 13481, 9, 25763, 2776, 1848, 13, 686, 8539, 8992, 9, 856, 1856, 959, 4814, 3418, 1848, 10, 187, 50274, 338, 313, 23295, 21008, 10, 551, 187, 50272, 22836, 15, 11340, 9, 187, 50270, 65, 27635, 970, 16872, 23473, 347, 2867, 1416, 27, 2634, 559, 187, 50270, 65, 3, 8626, 23295, 21008, 60, 17, 62, 13272, 275, 2048, 7224, 1156, 15, 24716, 1082, 94, 65, 187, 50272, 10, 187, 50274, 94, 2010, 551, 187, 50272, 22836, 15, 11340, 37428, 25359, 2048, 27, 7224, 1156, 15, 24716, 1082, 94, 27362, 187, 50274, 94, 187, 50276, 94, 187, 94, 187 ]
/* @flow */ import { dirRE, onRE } from './parser/index' // these keywords should not appear inside expressions, but operators like // typeof, instanceof and in are allowed const prohibitedKeywordRE = new RegExp('\\b' + ( 'do,if,for,let,new,try,var,case,else,with,await,break,catch,class,const,' + 'super,throw,while,yield,delete,export,import,return,switch,default,' + 'extends,finally,continue,debugger,function,arguments' ).split(',').join('\\b|\\b') + '\\b') // these unary operators should not be used as property/method names const unaryOperatorsRE = new RegExp('\\b' + ( 'delete,typeof,void' ).split(',').join('\\s*\\([^\\)]*\\)|\\b') + '\\s*\\([^\\)]*\\)') // check valid identifier for v-for const identRE = /[A-Za-z_$][\w$]*/ // strip strings in expressions const stripStringRE = /'(?:[^'\\]|\\.)*'|"(?:[^"\\]|\\.)*"|`(?:[^`\\]|\\.)*\$\{|\}(?:[^`\\]|\\.)*`|`(?:[^`\\]|\\.)*`/g // detect problematic expressions in a template export function detectErrors (ast: ?ASTNode): Array<string> { const errors: Array<string> = [] if (ast) { checkNode(ast, errors) } return errors } function checkNode (node: ASTNode, errors: Array<string>) { if (node.type === 1) { for (const name in node.attrsMap) { if (dirRE.test(name)) { const value = node.attrsMap[name] if (value) { if (name === 'v-for') { checkFor(node, `v-for="${value}"`, errors) } else if (onRE.test(name)) { checkEvent(value, `${name}="${value}"`, errors) } else { checkExpression(value, `${name}="${value}"`, errors) } } } } if (node.children) { for (let i = 0; i < node.children.length; i++) { checkNode(node.children[i], errors) } } } else if (node.type === 2) { checkExpression(node.expression, node.text, errors) } } function checkEvent (exp: string, text: string, errors: Array<string>) { const keywordMatch = exp.replace(stripStringRE, '').match(unaryOperatorsRE) if (keywordMatch) { errors.push( `avoid using JavaScript unary operator as property name: ` + `"${keywordMatch[0]}" in expression ${text.trim()}` ) } checkExpression(exp, text, errors) } function checkFor (node: ASTElement, text: string, errors: Array<string>) { checkExpression(node.for || '', text, errors) checkIdentifier(node.alias, 'v-for alias', text, errors) checkIdentifier(node.iterator1, 'v-for iterator', text, errors) checkIdentifier(node.iterator2, 'v-for iterator', text, errors) } function checkIdentifier (ident: ?string, type: string, text: string, errors: Array<string>) { if (typeof ident === 'string' && !identRE.test(ident)) { errors.push(`invalid ${type} "${ident}" in expression: ${text.trim()}`) } } function checkExpression (exp: string, text: string, errors: Array<string>) { try { new Function(`return ${exp}`) } catch (e) { const keywordMatch = exp.replace(stripStringRE, '').match(prohibitedKeywordRE) if (keywordMatch) { errors.push( `avoid using JavaScript keyword as property name: ` + `"${keywordMatch[0]}" in expression ${text.trim()}` ) } else { errors.push(`invalid expression: ${text.trim()}`) } } }
214,309
Github
[ 4, 34834, 4805, 16, 31333, 187, 187, 4, 19743, 1071, 6001, 281, 33346, 1980, 21229, 187, 31064, 428, 57, 19220, 393, 187, 50276, 2413, 1358, 22922, 27, 28306, 16, 15987, 187, 187, 31064, 428, 57, 19220, 393, 187, 50276, 2413, 1358, 22922, 27, 28306, 16, 46488, 187 ]
#!/bin/bash # Simple test script to ping local endpoint curl -X GET \ http://localhost:5000/users curl -X GET \ http://localhost:5000/tracks
214,310
Github
[ 605, 13728, 1154, 310, 13864, 281, 1329, 253, 1527, 2603, 3114, 407, 2403, 37645, 17635, 2130, 15, 187, 605, 209, 187, 605, 8283, 313, 36, 10, 4104, 4392, 45, 329, 1717, 22397, 13, 247, 13728, 1154, 2567, 13, 285, 6939, 80, 714, 532, 15, 1876, 3570, 10827, 15, 187, 605, 187, 605, 21737, 762, 253, 20695, 4637, 313, 783, 346, 17736, 3287, 368, 778, 417, 897, 436, 1873, 3707, 187, 605, 275, 10276, 342, 253, 4637, 15, 1422, 778, 4044, 247, 3491, 273, 253, 4637, 387, 187, 605, 187, 605, 3944, 1358, 25249, 1505, 15, 2061, 16, 17130, 16, 38860, 187, 605, 187, 605, 15999, 2424, 407, 7763, 1569, 390, 5821, 281, 275, 4028, 13, 3694, 5939, 209, 187, 605, 762, 253, 4637, 310, 5939, 327, 271, 346, 1719, 4110, 3, 23440, 13, 15002, 15466, 4145, 209, 187, 605, 22998, 3481, 9103, 19329, 13, 2057, 3890, 390, 10466, 15, 2594, 253, 4637, 323, 253, 209, 187, 605, 2173, 3448, 13200, 15607, 285, 7364, 762, 253, 4637, 15, 187, 187, 4, 17331, 416, 2088, 1838, 17635, 64, 17589, 15258, 39579, 64, 41, 64, 187, 4, 3182, 416, 2088, 1838, 17635, 64, 17589, 15258, 39579, 64, 41, 64, 187, 187, 4, 3709, 346, 4963, 15, 73, 3, 187, 187, 4, 16238, 4772, 498, 606, 876, 187, 51, 2088, 1838, 17635, 64, 11364, 2696, 64, 49, 27224, 187, 51, 2088, 1838, 17635, 64, 11364, 2696, 64, 18036, 9, 328, 21943, 494, 14, 3211, 10, 187, 51, 2088, 1838, 17635, 64, 11364, 2696, 64, 18036, 9, 33722, 14, 79, 7262, 662, 10, 187, 4, 7287, 187, 187, 51, 2088, 1838, 17635, 64, 28997, 32718, 9566, 64, 32077, 187, 187, 39481, 2719, 5957, 271, 275, 14, 20704, 3280, 12243, 5542, 15, 187, 46170, 187, 50274, 1552, 966, 310, 7194, 323, 1146, 15312, 407, 35506, 7459, 30891, 390, 17252, 18441, 30891, 15, 535, 50274, 1147, 310, 2074, 281, 8490, 5703, 10644, 533, 253, 2603, 310, 271, 275, 14, 20704, 6391, 3185, 273, 247, 1873, 15, 535, 50274, 37, 26776, 875, 21688, 8093, 285, 4605, 8093, 27, 187, 50274, 18, 15, 4605, 8093, 556, 9706, 533, 21688, 8093, 310, 247, 12243, 5542, 15, 187, 50274, 19, 15, 21688, 8093, 3198, 1979, 273, 253, 2603, 6391, 285, 253, 6391, 1053, 626, 878, 281, 320, 3635, 19344, 15, 4605, 8093, 5467, 3635, 14, 20792, 456, 2876, 347, 2603, 15, 187, 50274, 20, 15, 21688, 8093, 8525, 3586, 1441, 21, 1082, 323, 9706, 5481, 15, 4605, 8093, 310, 7616, 342, 271, 9706, 594, 352, 943, 417, 452, 3586, 1441, 21, 5023, 187, 50274, 61, 9939, 17930, 22364, 4473, 187, 8480, 187, 2855, 21688, 8093, 551, 187, 50274, 17743, 1018, 775, 28, 1380, 12243, 535, 50274, 21911, 8093, 9, 3474, 775, 475, 7614, 13, 1979, 64, 85, 1979, 10, 1163, 6740, 18284, 7614, 582, 3135, 18284, 7614, 582, 990, 18284, 7614, 559, 1979, 582, 1979, 18284, 3281, 10, 12166, 535, 50274, 1779, 3586, 1441, 1082, 1030, 551, 1091, 416, 2088, 1838, 17635, 64, 4037, 18206, 44, 39155, 9, 7614, 64, 2295, 990, 27307, 3736, 18116, 17, 8, 1163, 475, 7614, 17540, 748, 187, 50274, 1779, 11668, 1082, 551, 1091, 416, 2088, 1838, 17635, 64, 4037, 18206, 44, 39155, 9, 7614, 64, 2295, 990, 27307, 3736, 18116, 17, 8, 1163, 475, 7614, 64, 14788, 748, 187, 50274, 3281, 64, 85, 19906, 1082, 1030, 551, 1091, 4228, 64, 4008, 29, 3281, 64, 85, 8743, 7614, 64, 428, 3135, 39133, 748, 535, 50274, 1779, 11, 9272, 24393, 1082, 551, 416, 2088, 1838, 17635, 64, 25202, 9, 7750, 558, 1091, 470, 28, 748, 187, 50274, 4353, 9272, 9, 1779, 10, 551, 416, 2088, 1838, 17635, 64, 25202, 9, 7750, 558, 748, 187, 50274, 4353, 2884, 2345, 1082, 551, 416, 2088, 1838, 17635, 64, 25202, 9, 7750, 558, 748, 187, 50274, 3281, 64, 85, 9272, 7689, 9, 1779, 5627, 551, 416, 2088, 1838, 17635, 64, 25202, 9, 7750, 558, 1091, 470, 28, 748, 535, 50274, 605, 1198, 9706, 5481, 760, 15, 187, 50274, 3474, 775, 11, 3586, 1441, 21, 1082, 1030, 551, 187, 50270, 2309, 19906, 1082, 559, 577, 11049, 1979, 64, 3736, 6740, 64, 1163, 470, 28, 187, 50274, 94, 535, 50274, 3474, 775, 11, 6740, 17540, 50273, 39481, 29, 11604, 1239, 1899, 15, 187, 50274, 3474, 775, 11, 3135, 17540, 50275, 39481, 29, 25173, 1481, 273, 253, 2876, 15, 187, 50274, 3474, 775, 11, 990, 17540, 50273, 39481, 29, 8072, 273, 5542, 15, 187, 50274, 3281, 64, 85, 1979, 17540, 50271, 39481, 29, 19662, 273, 253, 5542, 15, 187, 4718, 187, 187, 51, 2088, 1838, 17635, 64, 28997, 32718, 9566, 64, 8112, 187, 187, 4, 16238, 4772, 498, 606, 876, 187, 51, 2088, 1838, 17635, 64, 11364, 2696, 64, 49, 2795, 187, 4, 7287, 187, 187, 4, 7287, 1380, 416, 2088, 1838, 17635, 64, 17589, 15258, 34137, 64, 41, 64, 187 ]
// Tencent is pleased to support the open source community by making RapidJSON available. // // Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All rights reserved. // // Licensed under the MIT License (the "License"); you may not use this file except // in compliance with the License. You may obtain a copy of the License at // // http://opensource.org/licenses/MIT // // Unless required by applicable law or agreed to in writing, software distributed // under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR // CONDITIONS OF ANY KIND, either express or implied. See the License for the // specific language governing permissions and limitations under the License. #ifndef RAPIDJSON_MEMORYSTREAM_H_ #define RAPIDJSON_MEMORYSTREAM_H_ #include "stream.h" #ifdef __clang__ RAPIDJSON_DIAG_PUSH RAPIDJSON_DIAG_OFF(unreachable-code) RAPIDJSON_DIAG_OFF(missing-noreturn) #endif RAPIDJSON_NAMESPACE_BEGIN //! Represents an in-memory input byte stream. /*! This class is mainly for being wrapped by EncodedInputStream or AutoUTFInputStream. It is similar to FileReadBuffer but the source is an in-memory buffer instead of a file. Differences between MemoryStream and StringStream: 1. StringStream has encoding but MemoryStream is a byte stream. 2. MemoryStream needs size of the source buffer and the buffer don't need to be null terminated. StringStream assume null-terminated string as source. 3. MemoryStream supports Peek4() for encoding detection. StringStream is specified with an encoding so it should not have Peek4(). \note implements Stream concept */ struct MemoryStream { typedef char Ch; // byte MemoryStream(const Ch *src, size_t size) : src_(src), begin_(src), end_(src + size), size_(size) {} Ch Peek() const { return RAPIDJSON_UNLIKELY(src_ == end_) ? '\0' : *src_; } Ch Take() { return RAPIDJSON_UNLIKELY(src_ == end_) ? '\0' : *src_++; } size_t Tell() const { return static_cast<size_t>(src_ - begin_); } Ch* PutBegin() { RAPIDJSON_ASSERT(false); return 0; } void Put(Ch) { RAPIDJSON_ASSERT(false); } void Flush() { RAPIDJSON_ASSERT(false); } size_t PutEnd(Ch*) { RAPIDJSON_ASSERT(false); return 0; } // For encoding detection only. const Ch* Peek4() const { return Tell() + 4 <= size_ ? src_ : 0; } const Ch* src_; //!< Current read position. const Ch* begin_; //!< Original head of the string. const Ch* end_; //!< End of stream. size_t size_; //!< Size of the stream. }; RAPIDJSON_NAMESPACE_END #ifdef __clang__ RAPIDJSON_DIAG_POP #endif #endif // RAPIDJSON_MEMORYBUFFER_H_
214,311
Github
[ 4, 17331, 10807, 64, 20756, 11477, 64, 25419, 1194, 16902, 64, 4037, 1410, 20027, 38, 64, 40311, 187, 4, 3182, 10807, 64, 20756, 11477, 64, 25419, 1194, 16902, 64, 4037, 1410, 20027, 38, 64, 40311, 187, 187, 605, 7852, 13333, 509, 30526, 1329, 1852, 26579, 2378, 187, 4, 338, 2931, 10107, 31014, 64, 15537, 10, 187, 4, 819, 22851, 2378, 187, 4, 7287, 187, 187, 5071, 16, 18, 5071, 16, 19, 5071, 16, 20, 5071, 16, 21, 5071, 16, 22, 5071, 16, 23, 5071, 16, 24, 5071, 16, 25, 187, 605, 440, 34189, 15, 17471, 187, 187, 605, 313, 36, 10, 8283, 6752, 6911, 416, 482, 90, 428, 3944, 1358, 2700, 15, 2676, 8289, 15, 681, 964, 209, 187, 605, 7890, 13, 11237, 285, 3268, 310, 2256, 281, 253, 35476, 9107, 187, 605, 4637, 13, 11099, 337, 15, 17, 15, 313, 5035, 17909, 1873, 21826, 64, 18, 64, 17, 15, 10134, 390, 3491, 387, 187, 605, 3944, 1358, 2700, 15, 15467, 15, 2061, 16, 17821, 64, 18, 64, 17, 15, 10134, 10, 187, 187, 605, 50276, 5035, 3944, 1358, 2700, 15, 15467, 15, 2061, 323, 11269, 13, 10097, 13, 285, 18520, 2892, 15, 187, 187, 4, 3709, 654, 15467, 16, 8271, 15, 17471, 31, 187, 187, 4, 3709, 654, 15467, 16, 17828, 16, 17828, 64, 26672, 263, 15, 17471, 31, 187, 4, 3709, 654, 15467, 16, 5367, 249, 4532, 15, 17471, 31, 187, 187, 12361, 9510, 551, 209, 187, 12361, 21429, 551, 187, 12361, 10040, 2392, 551, 187, 187, 5071, 16, 18, 5071, 16, 19, 5071, 16, 20, 5071, 16, 21, 5071, 16, 22, 5071, 16, 23, 5071, 16, 24, 5071, 16, 25, 187, 605, 966, 908, 407, 2505, 31523, 281, 16497, 1018, 11559, 281, 259, 3615, 64, 85, 187, 605, 11559, 273, 253, 4390, 4236, 32099, 187, 8547, 29, 2437, 12658, 1567, 13, 966, 11760, 31, 187, 2437, 440, 34189, 2490, 50274, 27, 1345, 9510, 1450, 17828, 64, 26672, 263, 29, 187, 50270, 14124, 68, 2259, 29, 48300, 13, 11760, 9983, 187, 50270, 8932, 13, 2490, 50270, 15295, 2963, 249, 4532, 29, 8932, 14157, 881, 13, 187, 50270, 20199, 64, 5858, 64, 7604, 34451, 64, 7784, 13, 187, 50270, 15295, 2963, 249, 4532, 29, 8932, 14157, 881, 187, 50274, 31, 187, 92, 187, 50274, 8471, 966, 9510, 1450, 17828, 64, 6443, 64, 10773, 28, 187, 50274, 17743, 7919, 9510, 1450, 17828, 64, 26672, 263, 29, 187, 50270, 14124, 68, 2259, 29, 48300, 13, 11760, 9983, 2490, 50270, 8932, 13, 2490, 50270, 15295, 2963, 249, 4532, 29, 8932, 14157, 881, 13, 187, 50270, 20199, 64, 5858, 64, 7604, 34451, 64, 7784, 13, 187, 50270, 15295, 2963, 249, 4532, 29, 8932, 14157, 881, 187, 50274, 31, 2221, 64, 85, 28, 535, 50274, 17743, 440, 34189, 29, 48300, 13, 11760, 31, 436, 64, 85, 28, 187, 4387, 27, 187, 50274, 17743, 7919, 436, 64, 85, 1450, 2877, 64, 881, 1318, 64, 881, 28, 187, 50274, 17743, 7919, 436, 64, 85, 1450, 14005, 3806, 28, 187, 9486, 27, 187, 50274, 2877, 64, 881, 372, 14005, 64, 15680, 1082, 551, 187, 50270, 338, 20273, 278, 64, 11546, 910, 187, 50266, 78, 64, 6259, 64, 2877, 426, 4228, 64, 4008, 29, 48300, 475, 8743, 2520, 18474, 69, 1949, 1874, 187, 50266, 78, 64, 11546, 426, 2032, 28, 187, 50270, 94, 187, 50270, 2309, 278, 64, 6259, 64, 2877, 28, 187, 50274, 94, 535, 50274, 14005, 372, 14005, 1082, 1030, 551, 187, 50270, 2309, 1030, 64, 4008, 29, 2520, 64, 85, 475, 8743, 2520, 18474, 615, 14005, 64, 15680, 1874, 187, 50274, 94, 535, 50274, 2877, 64, 881, 278, 64, 6259, 64, 2877, 28, 187, 50274, 10975, 278, 64, 11546, 28, 535, 50274, 4353, 17627, 14574, 187, 50270, 3424, 9, 2520, 1168, 4793, 64, 14005, 6020, 187, 50270, 615, 14005, 64, 15680, 1874, 187, 50270, 78, 64, 11546, 426, 3221, 28, 187, 50274, 4718, 187, 187, 4387, 27, 535, 50274, 14124, 68, 2259, 9, 8932, 2613, 10, 1163, 2490, 50270, 12185, 64, 85, 9, 4793, 582, 187, 50270, 78, 64, 11546, 9, 7750, 10, 187, 50274, 15564, 187, 187, 4718, 187, 187, 94, 1380, 12953, 10040, 2392, 187, 94, 1380, 12953, 21429, 187, 94, 1380, 12953, 9510, 187, 187, 4, 7287, 1380, 10807, 64, 20756, 11477, 64, 25419, 1194, 16902, 64, 4037, 1410, 20027, 38, 64, 40311, 187 ]
#ifndef BOOST_ARCHIVE_ITERATORS_UNESCAPE_HPP #define BOOST_ARCHIVE_ITERATORS_UNESCAPE_HPP // MS compatible compilers support #pragma once #if defined(_MSC_VER) # pragma once #endif /////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8 // unescape.hpp // (C) Copyright 2002 Robert Ramey - http://www.rrsd.com . // Use, modification and distribution is subject to the Boost Software // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) // See http://www.boost.org for updates, documentation, and revision history. #include <boost/assert.hpp> #include <boost/iterator/iterator_adaptor.hpp> #include <boost/pointee.hpp> namespace boost { namespace archive { namespace iterators { /////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8 // class used by text archives to translate char strings to wchar_t // strings of the currently selected locale template<class Derived, class Base> class unescape : public boost::iterator_adaptor< unescape<Derived, Base>, Base, typename pointee<Base>::type, single_pass_traversal_tag, typename pointee<Base>::type > { friend class boost::iterator_core_access; typedef typename boost::iterator_adaptor< unescape<Derived, Base>, Base, typename pointee<Base>::type, single_pass_traversal_tag, typename pointee<Base>::type > super_t; typedef unescape<Derived, Base> this_t; public: typedef typename this_t::value_type value_type; typedef typename this_t::reference reference; private: value_type dereference_impl() { if(! m_full){ m_current_value = static_cast<Derived *>(this)->drain(); m_full = true; } return m_current_value; } reference dereference() const { return const_cast<this_t *>(this)->dereference_impl(); } value_type m_current_value; bool m_full; void increment(){ ++(this->base_reference()); dereference_impl(); m_full = false; }; public: unescape(Base base) : super_t(base), m_full(false) {} }; } // namespace iterators } // namespace archive } // namespace boost #endif // BOOST_ARCHIVE_ITERATORS_UNESCAPE_HPP
214,312
Github
[ 3122, 187, 475, 50276, 20968, 4104, 380, 7066, 46490, 8049, 26940, 15, 1876, 3570, 10827, 15, 187, 475, 187, 475, 50276, 11244, 273, 436, 2603, 2127, 310, 17886, 407, 247, 32327, 14, 4826, 7981, 187, 475, 50276, 3529, 476, 320, 1119, 275, 253, 21826, 1873, 275, 253, 5230, 273, 253, 2603, 187, 475, 50276, 12588, 15, 743, 3081, 12720, 2867, 3570, 4098, 476, 320, 1119, 187, 475, 50276, 249, 253, 1873, 36224, 24937, 15, 50276, 3074, 15979, 2199, 4477, 778, 187, 475, 50276, 1257, 1119, 275, 253, 31501, 16902, 1873, 275, 253, 5230, 273, 253, 2603, 5202, 15, 187, 1738, 187, 187, 4, 3709, 346, 34433, 64, 4793, 16, 11023, 64, 14487, 15, 73, 3, 187, 187, 4, 3709, 654, 2703, 15, 73, 31, 187, 187, 4, 3709, 346, 2566, 16, 72, 2566, 15, 73, 3, 187, 187, 12361, 391, 18038, 551, 187, 187, 14524, 9, 10644, 19878, 5089, 13, 6004, 3074, 10, 551, 187, 50276, 3474, 1979, 64, 85, 465, 5496, 426, 1668, 28, 187, 50276, 3474, 1018, 275, 60, 76, 5496, 475, 374, 559, 337, 62, 426, 346, 39154, 1857, 43784, 25647, 18800, 12677, 25696, 44, 22047, 47, 2795, 18787, 1267, 14817, 3664, 187, 50276, 3615, 562, 60, 76, 5496, 475, 374, 2194, 187, 50276, 3281, 64, 85, 11061, 28, 187, 50276, 10644, 19878, 15154, 18, 9, 18, 13, 465, 5496, 558, 187, 50276, 10644, 19878, 15154, 19, 9, 19, 13, 465, 5496, 558, 535, 50276, 605, 380, 15154, 310, 8523, 6325, 15, 187, 50276, 4237, 16370, 64, 19090, 9, 17, 86, 13, 15154, 18, 15, 3281, 6020, 187, 50276, 4237, 16370, 64, 33814, 9, 14487, 18, 15, 5703, 34552, 9, 483, 13, 465, 5496, 13, 708, 15845, 4027, 535, 50276, 605, 329, 3630, 943, 9302, 15, 187, 50276, 4237, 16370, 64, 26501, 9, 14487, 18, 15, 10639, 8116, 9, 249, 13, 465, 5496, 13, 708, 15845, 4027, 187, 50276, 4237, 16370, 64, 19090, 9, 76, 5496, 13, 11061, 558, 187, 50276, 4237, 16370, 64, 19090, 9, 18, 86, 13, 15154, 18, 15, 3281, 6020, 535, 50276, 605, 380, 15154, 310, 2120, 1024, 313, 7483, 581, 6391, 4136, 481, 187, 50276, 4237, 16370, 64, 33814, 9, 14487, 18, 15, 10639, 8116, 9, 249, 13, 465, 5496, 13, 708, 15845, 4027, 187, 50276, 4237, 16370, 64, 19090, 9, 18, 86, 13, 15154, 18, 15, 3281, 6020, 535, 50276, 605, 21108, 3786, 3542, 6391, 15, 187, 50276, 4237, 16370, 64, 26501, 9, 14487, 18, 15, 5703, 34552, 9, 483, 13, 465, 5496, 13, 708, 15845, 4027, 187, 50276, 4237, 16370, 64, 19090, 9, 76, 5496, 13, 11061, 558, 187, 50276, 4237, 16370, 64, 19090, 9, 17, 13, 1167, 21630, 9, 249, 13, 562, 13, 465, 5496, 4027, 535, 50276, 605, 380, 15154, 310, 6325, 969, 1024, 15, 187, 50276, 4237, 16370, 64, 33814, 9, 14487, 18, 15, 5703, 34552, 9, 483, 13, 465, 5496, 13, 708, 15845, 4027, 187, 50276, 4237, 16370, 64, 19090, 9, 17, 86, 13, 15154, 18, 15, 3281, 6020, 535, 50276, 605, 21108, 760, 6548, 2130, 941, 15, 187, 50276, 4237, 16370, 64, 26501, 9, 14487, 18, 15, 10639, 8116, 9, 249, 13, 465, 5496, 13, 708, 15845, 4027, 187, 50276, 4237, 16370, 64, 19090, 9, 76, 5496, 13, 11061, 558, 187, 50276, 4237, 16370, 64, 19090, 9, 18, 86, 13, 15154, 18, 15, 3281, 6020, 187, 50276, 4237, 16370, 64, 26501, 9, 14487, 18, 15, 5703, 34552, 9, 483, 13, 465, 5496, 475, 374, 13, 708, 15845, 4027, 187, 50276, 4237, 16370, 64, 19090, 9, 76, 5496, 13, 11061, 558, 187, 50276, 4237, 16370, 64, 19090, 9, 17, 13, 1167, 21630, 9, 249, 13, 562, 13, 465, 5496, 4027, 187, 50276, 4237, 16370, 64, 19090, 9, 17, 86, 13, 15154, 18, 15, 3281, 6020, 535, 50276, 605, 21108, 18922, 6391, 13674, 15, 187, 50276, 4237, 16370, 64, 26501, 9, 14487, 19, 15, 10639, 8116, 9, 249, 13, 465, 5496, 1227, 374, 13, 708, 15845, 4027, 187, 50276, 4237, 16370, 64, 19090, 9, 18, 86, 13, 15154, 19, 15, 3281, 6020, 187, 50276, 4237, 16370, 64, 26501, 9, 14487, 19, 15, 10639, 8116, 9, 249, 559, 465, 5496, 1227, 374, 13, 465, 5496, 1227, 374, 13, 708, 15845, 4027, 187, 50276, 4237, 16370, 64, 19090, 9, 19, 86, 13, 15154, 19, 15, 3281, 6020, 187, 50276, 4237, 16370, 64, 26501, 9, 14487, 19, 15, 5703, 34552, 9, 483, 13, 465, 5496, 13, 708, 15845, 4027, 187, 50276, 4237, 16370, 64, 19090, 9, 76, 5496, 1227, 374, 13, 11061, 558, 187, 50276, 4237, 16370, 64, 19090, 9, 17, 13, 1167, 21630, 9, 249, 13, 562, 13, 465, 5496, 1227, 374, 4027, 187, 50276, 4237, 16370, 64, 19090, 9, 18, 86, 13, 15154, 19, 15, 3281, 6020, 187, 50276, 4237, 16370, 64, 26501, 9, 14487, 19, 15, 5703, 34552, 9, 483, 13, 465, 5496, 13, 708, 15845, 4027, 187, 50276, 4237, 16370, 64, 19090, 9, 76, 5496, 1227, 374, 13, 11061, 558, 187, 50276, 4237, 16370, 64, 19090, 9, 17, 13, 1167, 21630, 9, 249, 559, 465, 5496, 1227, 374, 13, 562, 13, 465, 5496, 1227, 374, 4027, 187, 50276, 4237, 16370, 64, 19090, 9, 17, 86, 13, 15154, 19, 15, 3281, 6020, 535, 50276, 605, 21108, 17701, 684, 32743, 15, 187, 50276, 4237, 16370, 64, 26501, 9, 14487, 19, 15, 10639, 8116, 9, 249, 13, 465, 5496, 1227, 374, 13, 708, 15845, 4027, 187, 50276, 4237, 16370, 64, 19090, 9, 18, 86, 13, 15154, 19, 15, 3281, 6020, 187, 50276, 4237, 16370, 64, 26501, 9, 14487, 19, 15, 10639, 8116, 9, 249, 559, 465, 5496, 1227, 374, 13, 465, 5496, 1227, 374, 13, 708, 15845, 4027, 187, 50276, 4237, 16370, 64, 19090, 9, 19, 86, 13, 15154, 19, 15, 3281, 6020, 187, 50276, 605, 6707, 806, 13138, 10571, 275, 1512, 14, 6795, 6391, 15, 187, 50276, 4237, 16370, 64, 26501, 9, 14487, 19, 15, 5703, 34552, 9, 483, 13, 465, 5496, 1227, 577, 13, 708, 15845, 4027, 187, 50276, 4237, 16370, 64, 19090, 9, 76, 5496, 1227, 577, 13, 11061, 558, 187, 50276, 4237, 16370, 64, 19090, 9, 17, 13, 1167, 21630, 9, 249, 13, 562, 13, 465, 5496, 1227, 577, 4027, 187, 50276, 4237, 16370, 64, 19090, 9, 18, 86, 13, 15154, 19, 15, 3281, 6020, 187, 50276, 605, 6235, 404, 491, 273, 806, 13138, 310, 28069, 13, 4361, 7866, 342, 1735, 13138, 15, 187, 50276, 4237, 16370, 64, 26501, 9, 14487, 19, 15, 5703, 34552, 9, 483, 13, 465, 5496, 13, 708, 15845, 4027, 187, 50276, 4237, 16370, 64, 19090, 9, 76, 5496, 1227, 374, 13, 11061, 558, 187, 50276, 4237, 16370, 64, 19090, 9, 17, 13, 1167, 21630, 9, 249, 559, 465, 5496, 1227, 374, 13, 562, 13, 465, 5496, 1227, 374, 4027, 187, 50276, 4237, 16370, 64, 19090, 9, 17, 86, 13, 15154, 19, 15, 3281, 6020, 187, 94, 187, 187, 94, 50276, 605, 12953, 391, 18038, 187 ]
/* * Copyright 2015 The WebRTC Project Authors. All rights reserved. * * Use of this source code is governed by a BSD-style license * that can be found in the LICENSE file in the root of the source * tree. An additional intellectual property rights grant can be found * in the file PATENTS. All contributing project authors may * be found in the AUTHORS file in the root of the source tree. */ #include "rtc_base/buffer_queue.h" #include <string.h> #include "test/gtest.h" namespace rtc { TEST(BufferQueueTest, TestAll) { const size_t kSize = 16; const char in[kSize * 2 + 1] = "0123456789ABCDEFGHIJKLMNOPQRSTUV"; char out[kSize * 2]; size_t bytes; BufferQueue queue1(1, kSize); BufferQueue queue2(2, kSize); // The queue is initially empty. EXPECT_EQ(0u, queue1.size()); EXPECT_FALSE(queue1.ReadFront(out, kSize, &bytes)); // A write should succeed. EXPECT_TRUE(queue1.WriteBack(in, kSize, &bytes)); EXPECT_EQ(kSize, bytes); EXPECT_EQ(1u, queue1.size()); // The queue is full now (only one buffer allowed). EXPECT_FALSE(queue1.WriteBack(in, kSize, &bytes)); EXPECT_EQ(1u, queue1.size()); // Reading previously written buffer. EXPECT_TRUE(queue1.ReadFront(out, kSize, &bytes)); EXPECT_EQ(kSize, bytes); EXPECT_EQ(0, memcmp(in, out, kSize)); // The queue is empty again now. EXPECT_FALSE(queue1.ReadFront(out, kSize, &bytes)); EXPECT_EQ(0u, queue1.size()); // Reading only returns available data. EXPECT_TRUE(queue1.WriteBack(in, kSize, &bytes)); EXPECT_EQ(kSize, bytes); EXPECT_EQ(1u, queue1.size()); EXPECT_TRUE(queue1.ReadFront(out, kSize * 2, &bytes)); EXPECT_EQ(kSize, bytes); EXPECT_EQ(0, memcmp(in, out, kSize)); EXPECT_EQ(0u, queue1.size()); // Reading maintains buffer boundaries. EXPECT_TRUE(queue2.WriteBack(in, kSize / 2, &bytes)); EXPECT_EQ(1u, queue2.size()); EXPECT_TRUE(queue2.WriteBack(in + kSize / 2, kSize / 2, &bytes)); EXPECT_EQ(2u, queue2.size()); EXPECT_TRUE(queue2.ReadFront(out, kSize, &bytes)); EXPECT_EQ(kSize / 2, bytes); EXPECT_EQ(0, memcmp(in, out, kSize / 2)); EXPECT_EQ(1u, queue2.size()); EXPECT_TRUE(queue2.ReadFront(out, kSize, &bytes)); EXPECT_EQ(kSize / 2, bytes); EXPECT_EQ(0, memcmp(in + kSize / 2, out, kSize / 2)); EXPECT_EQ(0u, queue2.size()); // Reading truncates buffers. EXPECT_TRUE(queue2.WriteBack(in, kSize / 2, &bytes)); EXPECT_EQ(1u, queue2.size()); EXPECT_TRUE(queue2.WriteBack(in + kSize / 2, kSize / 2, &bytes)); EXPECT_EQ(2u, queue2.size()); // Read first packet partially in too-small buffer. EXPECT_TRUE(queue2.ReadFront(out, kSize / 4, &bytes)); EXPECT_EQ(kSize / 4, bytes); EXPECT_EQ(0, memcmp(in, out, kSize / 4)); EXPECT_EQ(1u, queue2.size()); // Remainder of first packet is truncated, reading starts with next packet. EXPECT_TRUE(queue2.ReadFront(out, kSize, &bytes)); EXPECT_EQ(kSize / 2, bytes); EXPECT_EQ(0, memcmp(in + kSize / 2, out, kSize / 2)); EXPECT_EQ(0u, queue2.size()); } } // namespace rtc
214,313
Github
[ 605, 831, 310, 247, 629, 273, 253, 9664, 6807, 45227, 330, 3424, 6335, 15, 190, 187, 605, 8283, 313, 36, 10, 9748, 14, 11496, 9664, 11294, 190, 187, 605, 1876, 3570, 10827, 15, 190, 187, 605, 190, 187, 605, 831, 2603, 2127, 310, 760, 6034, 347, 247, 8499, 281, 253, 190, 187, 605, 9664, 6807, 45227, 19039, 285, 2905, 190, 187, 605, 7051, 10097, 2530, 342, 253, 6335, 15, 190, 187, 605, 2594, 841, 4973, 323, 7000, 1491, 5001, 253, 190, 187, 605, 9664, 6807, 45227, 1885, 15, 4888, 187, 4, 3709, 346, 296, 1473, 21448, 15, 73, 3, 4888, 187, 4, 16238, 795, 18828, 190, 187, 4, 33943, 10113, 64, 13690, 190, 187, 4659, 1018, 10113, 64, 13690, 5456, 426, 4772, 13690, 876, 28, 190, 187, 4, 7287, 4888, 187, 4, 3182, 747, 40374, 64, 24650, 4888, 187, 37446, 5071, 2917, 16, 190, 187, 605, 9404, 358, 9761, 410, 4888, 187, 5166, 358, 9761, 410, 1450, 5166, 358, 9761, 410, 9, 39496, 298, 23527, 6878, 13, 43078, 298, 9684, 6878, 13, 2379, 186, 13010, 1647, 9639, 268, 1344, 2402, 13, 20590, 20869, 3322, 7400, 64, 21840, 30639, 1410, 298, 793, 66, 23372, 10, 2379, 186, 27, 50276, 5166, 6665, 4241, 9, 81, 1344, 2402, 10, 190, 187, 92, 2379, 186, 25202, 9, 77, 9684, 6878, 2239, 470, 558, 2379, 186, 25202, 9, 77, 23527, 6878, 11049, 298, 9684, 6878, 558, 15971, 186, 78, 64, 73, 4241, 426, 12590, 9395, 18581, 9761, 410, 9, 77, 793, 66, 23372, 13, 298, 23527, 6878, 13, 298, 9684, 6878, 13, 7951, 186, 81, 1344, 2402, 558, 2379, 186, 338, 313, 78, 64, 73, 4241, 2295, 5812, 10, 7951, 186, 19405, 89, 36556, 11133, 5330, 1874, 190, 187, 94, 4888, 187, 5166, 358, 9761, 410, 1450, 95, 5166, 358, 9761, 410, 1082, 190, 187, 92, 190, 187, 94, 4888, 187, 30529, 9404, 358, 9761, 410, 1450, 45430, 9, 39496, 298, 6878, 13, 418, 3859, 14780, 39322, 47277, 6878, 3476, 426, 15522, 1738, 10, 190, 187, 92, 2379, 186, 2309, 12590, 18992, 18581, 9761, 410, 9, 78, 64, 73, 4241, 13, 298, 6878, 13, 39322, 47277, 6878, 558, 190, 187, 94, 4888, 187, 37446, 5071, 2917, 16, 190, 187, 605, 12280, 307, 911, 4888, 187, 5883, 307, 911, 1450, 5883, 307, 911, 9, 30529, 270, 10828, 1365, 22585, 13, 20590, 1647, 9639, 268, 1344, 2402, 13, 2379, 186, 13010, 20869, 3322, 7400, 64, 21840, 30639, 1410, 298, 793, 66, 11756, 3476, 426, 5812, 1738, 10, 2379, 186, 27, 9404, 6665, 4241, 9, 81, 1344, 2402, 10, 190, 187, 92, 2379, 186, 78, 64, 73, 4241, 426, 12590, 9395, 31135, 911, 9, 77, 793, 66, 11756, 13, 270, 10828, 1365, 22585, 13, 268, 1344, 2402, 558, 2379, 186, 338, 313, 78, 64, 73, 4241, 2295, 5812, 10, 7951, 186, 19405, 89, 36556, 11133, 5330, 1874, 190, 187, 94, 4888, 187, 5883, 307, 911, 1450, 95, 5883, 307, 911, 1082, 190, 187, 92, 190, 187, 94, 4888, 187, 30529, 12280, 307, 911, 1450, 45430, 1082, 190, 187, 92, 2379, 186, 2309, 12590, 18992, 31135, 911, 9, 78, 64, 73, 4241, 558, 190, 187, 94, 4888, 187, 37446, 5071, 2917, 16, 190, 187, 605, 330, 5949, 4888, 187, 4339, 2254, 1450, 4339, 2254, 9, 30529, 270, 10828, 1365, 22585, 13, 46013, 270, 4779, 780, 36001, 13, 20590, 1647, 9639, 268, 1344, 2402, 13, 2379, 186, 13010, 20869, 3322, 7400, 64, 21840, 30639, 1410, 298, 793, 66, 11756, 10, 2379, 186, 27, 9404, 6665, 4241, 9, 81, 1344, 2402, 10, 190, 187, 92, 2379, 186, 78, 64, 73, 4241, 426, 12590, 9395, 5949, 9, 77, 793, 66, 11756, 13, 270, 4779, 780, 36001, 13, 7951, 186, 67, 10828, 1365, 22585, 13, 268, 1344, 2402, 558, 2379, 186, 338, 313, 78, 64, 73, 4241, 2295, 5812, 10, 7951, 186, 19405, 89, 36556, 11133, 5330, 1874, 190, 187, 94, 4888, 187, 4339, 2254, 1450, 95, 4339, 2254, 1082, 190, 187, 92, 190, 187, 94, 4888, 187, 30529, 330, 5949, 1450, 45430, 1082, 190, 187, 92, 2379, 186, 2309, 24420, 28, 190, 187, 94, 4888, 187, 37446, 5071, 2917, 16, 190, 187, 605, 9404, 33202, 18703, 4888, 187, 5166, 33202, 18703, 1450, 5166, 33202, 18703, 9, 5166, 6665, 4241, 11, 268, 4241, 13, 46013, 270, 23527, 18703, 10, 190, 187, 92, 2379, 186, 25202, 9, 81, 4241, 3613, 5812, 558, 2379, 186, 25202, 9, 81, 4241, 1168, 2513, 18808, 4527, 9, 29537, 18318, 64, 25734, 9, 5166, 6665, 4241, 23090, 15971, 186, 78, 64, 81, 4241, 426, 268, 4241, 28, 2379, 186, 78, 64, 73, 4241, 426, 268, 4241, 1168, 78, 64, 73, 4241, 28, 2379, 186, 78, 64, 67, 9692, 17050, 426, 26194, 28, 15971, 186, 338, 313, 67, 23527, 18703, 10, 7951, 186, 18703, 1874, 190, 187, 94, 4888, 187, 30529, 9404, 33202, 18703, 1450, 18703, 9, 14279, 8242, 19858, 4769, 5677, 3476, 426, 2949, 29003, 12752, 1738, 10, 190, 187, 92, 2379, 186, 25202, 9, 78, 64, 81, 4241, 3613, 5812, 2785, 278, 64, 73, 4241, 3613, 5812, 558, 2379, 186, 25202, 20273, 78, 64, 67, 9692, 17050, 558, 15971, 186, 78, 64, 67, 9692, 17050, 426, 278, 64, 81, 4241, 1168, 18703, 9, 23985, 4769, 5677, 558, 2379, 186, 2309, 278, 64, 67, 9692, 17050, 28, 190, 187, 94, 4888, 187, 30529, 9404, 33202, 18703, 1450, 45430, 1082, 190, 187, 92, 2379, 186, 25202, 9, 78, 64, 81, 4241, 3613, 5812, 558, 2379, 186, 338, 313, 78, 64, 67, 9692, 17050, 10, 7951, 186, 78, 64, 67, 9692, 17050, 426, 2195, 78, 64, 81, 4241, 1168, 45430, 1874, 15971, 186, 605, 8379, 19444, 272, 2097, 352, 3548, 626, 9288, 2379, 186, 2309, 2195, 78, 64, 67, 9692, 17050, 28, 190, 187, 94, 4888, 187, 30529, 9404, 33202, 18703, 1450, 45430, 9, 39496, 298, 6878, 13, 418, 3859, 14780, 39322, 47277, 6878, 3476, 426, 5812, 1738, 10, 190, 187, 92, 2379, 186, 25202, 9, 78, 64, 81, 4241, 3613, 5812, 558, 2379, 186, 338, 313, 78, 64, 67, 9692, 17050, 10, 7951, 186, 78, 64, 67, 9692, 17050, 426, 2195, 78, 64, 81, 4241, 1168, 45430, 9, 77, 6878, 13, 39322, 47277, 6878, 558, 15971, 186, 605, 8379, 19444, 272, 2097, 352, 3548, 626, 9288, 2379, 186, 2309, 2195, 78, 64, 67, 9692, 17050, 28, 190, 187, 94, 4888, 187, 37446, 5071, 2917, 16, 190, 187, 605, 330, 22495, 18703, 4888, 187, 5883, 503, 74, 18703, 1450, 5883, 503, 74, 18703, 9, 5166, 6665, 4241, 11, 268, 28747, 60, 1092, 49135, 19858, 6878, 13, 2379, 186, 30529, 270, 23527, 18703, 10, 190, 187, 92, 2379, 186, 25202, 9, 23985, 6878, 2239, 470, 3857, 19858, 6878, 11049, 21713, 2894, 5529, 64, 46176, 64, 35581, 52, 558, 2379, 186, 25202, 9, 81, 28747, 3613, 5812, 558, 15971, 186, 78, 64, 377, 4241, 6542, 426, 268, 28747, 28, 2379, 186, 78, 64, 23985, 6878, 426, 19858, 6878, 28, 15971, 186, 605, 347, 271, 13757, 13, 17049, 9771, 839, 3781, 604, 2379, 186, 605, 359, 476, 897, 247, 1355, 13, 638, 10835, 456, 12190, 273, 22139, 15971, 186, 338, 313, 78, 64, 23985, 6878, 2239, 795, 5560, 1171, 9, 78, 64, 73, 7420, 10835, 456, 1228, 2379, 186, 92, 7951, 186, 78, 64, 81, 16722, 6542, 426, 747, 46683, 1843, 60, 78, 64, 23985, 6878, 2194, 7951, 186, 78, 64, 67, 18703, 264, 6542, 426, 747, 46013, 60, 78, 64, 23985, 6878, 2194, 2379, 186, 94, 2379, 186, 7271, 2379, 186, 92, 7951, 186, 78, 64, 81, 16722, 6542, 426, 278, 64, 73, 7420, 10835, 456, 28, 7951, 186, 78, 64, 67, 18703, 264, 6542, 426, 278, 64, 67, 7420, 10835, 456, 28, 2379, 186, 94, 15971, 186, 605, 755, 1618, 273, 22139, 432, 3781, 273, 5113, 4817, 2379, 186, 1542, 313, 14279, 8242, 891, 426, 470, 28, 891, 654, 78, 64, 23985, 6878, 28, 891, 9234, 2379, 186, 92, 7951, 186, 25202, 64, 46330, 9, 81, 28747, 60, 74, 9259, 7951, 186, 25202, 9, 81, 28747, 60, 74, 33094, 2513, 18808, 4527, 9, 29537, 18318, 64, 25734, 9, 5166, 6665, 4241, 23090, 39015, 186, 605, 476, 626, 3343, 323, 4619, 7118, 39015, 186, 25202, 20273, 81, 28747, 60, 74, 33094, 2513, 18808, 4527, 9, 29537, 18318, 64, 25734, 9, 2648, 14762, 12612, 23090, 39015, 186, 78, 64, 81, 16722, 6542, 60, 74, 62, 426, 268, 28747, 60, 74, 33094, 78, 64, 73, 4241, 28, 7951, 186, 78, 64, 67, 18703, 264, 6542, 60, 74, 62, 426, 26194, 28, 2379, 186, 94, 15971, 186, 338, 313, 67, 23527, 18703, 10, 7951, 186, 18703, 1874, 190, 187, 94, 4888, 187, 5883, 503, 74, 18703, 1450, 95, 5883, 503, 74, 18703, 1082, 190, 187, 92, 2379, 186, 45430, 1874, 2379, 186, 338, 313, 78, 64, 81, 16722, 6542, 3613, 278, 64, 73, 7420, 10835, 456, 10, 2379, 186, 92, 7951, 186, 16435, 5456, 278, 64, 67, 18703, 264, 6542, 28, 7951, 186, 16435, 5456, 278, 64, 81, 16722, 6542, 28, 2379, 186, 94, 190, 187, 94, 4888, 187, 14279, 8242, 330, 22495, 18703, 1450, 18703, 9, 14279, 8242, 19858, 4769, 5677, 3476, 426, 2949, 29003, 12752, 33701, 7951, 186, 30529, 270, 13689, 2214, 3074, 3476, 426, 24420, 33701, 49135, 19858, 56, 640, 17031, 3476, 426, 470, 1738, 10, 190, 187, 92, 2379, 186, 14279, 8242, 19858, 9179, 28, 2379, 186, 338, 313, 23985, 56, 640, 17031, 2295, 470, 10, 7951, 186, 23985, 9179, 426, 12590, 13689, 2214, 29454, 28747, 9, 78, 64, 23985, 6878, 13, 11459, 186, 78, 64, 81, 16722, 6542, 13, 270, 13689, 2214, 3074, 13, 19858, 4769, 5677, 558, 2379, 186, 7271, 7951, 186, 23985, 9179, 426, 12590, 21611, 13689, 2214, 29454, 28747, 9, 78, 64, 23985, 6878, 13, 11459, 186, 78, 64, 81, 16722, 6542, 13, 270, 13689, 2214, 3074, 13, 19858, 4769, 5677, 13, 19858, 56, 640, 17031, 558, 15971, 186, 338, 313, 23985, 9179, 10122, 27100, 1433, 64, 35581, 64, 17, 3857, 19858, 9179, 654, 313, 46176, 64, 35581, 64, 17, 559, 278, 64, 23985, 6878, 1228, 2379, 186, 92, 7951, 186, 338, 313, 67, 13689, 2214, 3074, 10, 7951, 186, 92, 11459, 186, 1542, 313, 14279, 8242, 891, 426, 470, 28, 891, 654, 278, 64, 23985, 6878, 28, 891, 9234, 17158, 186, 78, 64, 67, 18703, 264, 6542, 60, 74, 62, 426, 24420, 28, 7951, 186, 94, 7951, 186, 7271, 7951, 186, 92, 11459, 186, 25202, 4464, 23985, 9179, 428, 27100, 1433, 64, 35581, 64, 17, 10, 10122, 470, 558, 11459, 186, 78, 64, 67, 18703, 264, 6542, 60, 23985, 9179, 428, 27100, 1433, 64, 35581, 64, 17, 62, 426, 24420, 28, 7951, 186, 94, 2379, 186, 94, 2379, 186, 2309, 19858, 9179, 28, 190, 187, 94, 4888, 187, 30529, 330, 22495, 18703, 1450, 45430, 1082, 190, 187, 92, 2379, 186, 1542, 313, 14279, 8242, 891, 30, 17, 28, 891, 654, 278, 64, 23985, 6878, 28, 891, 9234, 2379, 186, 92, 7951, 186, 338, 313, 78, 64, 67, 18703, 264, 6542, 60, 74, 3291, 11459, 186, 78, 64, 67, 18703, 264, 6542, 60, 74, 62, 426, 2195, 78, 64, 377, 4241, 6542, 60, 74, 33094, 45430, 1874, 2379, 186, 94, 2379, 186, 2309, 24420, 28, 190, 187, 94, 4888, 187, 30529, 330, 22495, 18703, 1450, 45430, 9, 39496, 298, 6878, 13, 418, 3859, 14780, 39322, 47277, 6878, 3476, 426, 15522, 1738, 10, 190, 187, 92, 2379, 186, 30529, 270, 25302, 4041, 426, 26194, 28, 2379, 186, 1542, 313, 14279, 8242, 891, 30, 17, 28, 891, 654, 278, 64, 23985, 6878, 28, 891, 9234, 2379, 186, 92, 7951, 186, 338, 313, 78, 64, 67, 18703, 264, 6542, 60, 74, 3291, 7951, 186, 92, 11459, 186, 5166, 358, 9761, 410, 11, 268, 18581, 9761, 410, 426, 12229, 1864, 64, 35248, 37744, 9, 5166, 358, 9761, 410, 13, 278, 64, 377, 4241, 6542, 60, 74, 9259, 11459, 186, 338, 313, 81, 18581, 9761, 410, 3613, 5812, 10, 11459, 186, 92, 17158, 186, 67, 25302, 4041, 426, 24420, 28, 17158, 186, 78, 64, 67, 18703, 264, 6542, 60, 74, 62, 426, 2195, 78, 64, 377, 4241, 6542, 60, 74, 33094, 45430, 9, 77, 6878, 13, 39322, 47277, 6878, 558, 11459, 186, 94, 7951, 186, 94, 2379, 186, 94, 15971, 186, 2309, 270, 25302, 4041, 28, 190, 187, 94, 4888, 187, 4, 16238, 11854, 57, 64, 25844, 64, 2354, 40, 190, 187, 4, 26579, 2127, 64, 26931, 9, 9006, 57, 64, 25844, 64, 2354, 40, 10, 190, 187, 4, 7287, 4888, 187, 2894, 20982, 10634, 64, 32201, 28997, 1864, 9, 4339, 2254, 13, 9404, 6665, 4241, 10, 190, 187, 2894, 20982, 10634, 64, 32201, 28997, 1864, 9, 5166, 358, 9761, 410, 13, 9404, 6665, 4241, 10, 190, 187, 2894, 20982, 10634, 64, 32201, 28997, 1864, 9, 5883, 307, 911, 13, 9404, 6665, 4241, 10, 4888, 187, 37446, 5071, 2917, 16, 2379 ]
// This is a part of the Microsoft Foundation Classes C++ library. // Copyright (C) 1992-1998 Microsoft Corporation // All rights reserved. // // This source code is only intended as a supplement to the // Microsoft Foundation Classes Reference and related // electronic documentation provided with the library. // See these sources for detailed information regarding the // Microsoft Foundation Classes product. #include "stdafx.h" #ifdef _DEBUG #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif #define new DEBUG_NEW ///////////////////////////////////////////////////////////////////////////// // CSemaphore CSemaphore::CSemaphore(LONG lInitialCount, LONG lMaxCount, LPCTSTR pstrName, LPSECURITY_ATTRIBUTES lpsaAttributes) : CSyncObject(pstrName) { ASSERT(lMaxCount > 0); ASSERT(lInitialCount <= lMaxCount); m_hObject = ::CreateSemaphore(lpsaAttributes, lInitialCount, lMaxCount, pstrName); if (m_hObject == NULL) AfxThrowResourceException(); } CSemaphore::~CSemaphore() { } BOOL CSemaphore::Unlock(LONG lCount, LPLONG lpPrevCount /* =NULL */) { return ::ReleaseSemaphore(m_hObject, lCount, lpPrevCount); } ///////////////////////////////////////////////////////////////////////////// // CMutex CMutex::CMutex(BOOL bInitiallyOwn, LPCTSTR pstrName, LPSECURITY_ATTRIBUTES lpsaAttribute /* = NULL */) : CSyncObject(pstrName) { m_hObject = ::CreateMutex(lpsaAttribute, bInitiallyOwn, pstrName); if (m_hObject == NULL) AfxThrowResourceException(); } CMutex::~CMutex() { } BOOL CMutex::Unlock() { return ::ReleaseMutex(m_hObject); } ///////////////////////////////////////////////////////////////////////////// // CEvent CEvent::CEvent(BOOL bInitiallyOwn, BOOL bManualReset, LPCTSTR pstrName, LPSECURITY_ATTRIBUTES lpsaAttribute) : CSyncObject(pstrName) { m_hObject = ::CreateEvent(lpsaAttribute, bManualReset, bInitiallyOwn, pstrName); if (m_hObject == NULL) AfxThrowResourceException(); } CEvent::~CEvent() { } BOOL CEvent::Unlock() { return TRUE; } ///////////////////////////////////////////////////////////////////////////// // CSingleLock CSingleLock::CSingleLock(CSyncObject* pObject, BOOL bInitialLock) { ASSERT(pObject != NULL); ASSERT(pObject->IsKindOf(RUNTIME_CLASS(CSyncObject))); m_pObject = pObject; m_hObject = pObject->m_hObject; m_bAcquired = FALSE; if (bInitialLock) Lock(); } BOOL CSingleLock::Lock(DWORD dwTimeOut /* = INFINITE */) { ASSERT(m_pObject != NULL || m_hObject != NULL); ASSERT(!m_bAcquired); m_bAcquired = m_pObject->Lock(dwTimeOut); return m_bAcquired; } BOOL CSingleLock::Unlock() { ASSERT(m_pObject != NULL); if (m_bAcquired) m_bAcquired = !m_pObject->Unlock(); // successfully unlocking means it isn't acquired return !m_bAcquired; } BOOL CSingleLock::Unlock(LONG lCount, LPLONG lpPrevCount /* = NULL */) { ASSERT(m_pObject != NULL); if (m_bAcquired) m_bAcquired = !m_pObject->Unlock(lCount, lpPrevCount); // successfully unlocking means it isn't acquired return !m_bAcquired; } ///////////////////////////////////////////////////////////////////////////// // CMultiLock CMultiLock::CMultiLock(CSyncObject* pObjects[], DWORD dwCount, BOOL bInitialLock) { ASSERT(dwCount > 0 && dwCount <= MAXIMUM_WAIT_OBJECTS); ASSERT(pObjects != NULL); m_ppObjectArray = pObjects; m_dwCount = dwCount; // as an optimization, skip allocating array if // we can use a small, preallocated bunch of handles if (m_dwCount > _countof(m_hPreallocated)) { m_pHandleArray = new HANDLE[m_dwCount]; m_bLockedArray = new BOOL[m_dwCount]; } else { m_pHandleArray = m_hPreallocated; m_bLockedArray = m_bPreallocated; } // get list of handles from array of objects passed for (DWORD i = 0; i <m_dwCount; i++) { ASSERT_VALID(pObjects[i]); ASSERT(pObjects[i]->IsKindOf(RUNTIME_CLASS(CSyncObject))); // can't wait for critical sections ASSERT(!pObjects[i]->IsKindOf(RUNTIME_CLASS(CCriticalSection))); m_pHandleArray[i] = pObjects[i]->m_hObject; m_bLockedArray[i] = FALSE; } if (bInitialLock) Lock(); } CMultiLock::~CMultiLock() { Unlock(); if (m_pHandleArray != m_hPreallocated) { delete[] m_bLockedArray; delete[] m_pHandleArray; } } DWORD CMultiLock::Lock(DWORD dwTimeOut /* = INFINITE */, BOOL bWaitForAll /* = TRUE */, DWORD dwWakeMask /* = 0 */) { DWORD dwResult; if (dwWakeMask == 0) dwResult = ::WaitForMultipleObjects(m_dwCount, m_pHandleArray, bWaitForAll, dwTimeOut); else dwResult = ::MsgWaitForMultipleObjects(m_dwCount, m_pHandleArray, bWaitForAll, dwTimeOut, dwWakeMask); if (dwResult >= WAIT_OBJECT_0 && dwResult < (WAIT_OBJECT_0 + m_dwCount)) { if (bWaitForAll) { for (DWORD i = 0; i < m_dwCount; i++) m_bLockedArray[i] = TRUE; } else { ASSERT((dwResult - WAIT_OBJECT_0) >= 0); m_bLockedArray[dwResult - WAIT_OBJECT_0] = TRUE; } } return dwResult; } BOOL CMultiLock::Unlock() { for (DWORD i=0; i < m_dwCount; i++) { if (m_bLockedArray[i]) m_bLockedArray[i] = !m_ppObjectArray[i]->Unlock(); } return TRUE; } BOOL CMultiLock::Unlock(LONG lCount, LPLONG lpPrevCount /* =NULL */) { BOOL bGotOne = FALSE; for (DWORD i=0; i < m_dwCount; i++) { if (m_bLockedArray[i]) { CSemaphore* pSemaphore = STATIC_DOWNCAST(CSemaphore, m_ppObjectArray[i]); if (pSemaphore != NULL) { bGotOne = TRUE; m_bLockedArray[i] = !m_ppObjectArray[i]->Unlock(lCount, lpPrevCount); } } } return bGotOne; } #ifdef AFX_INIT_SEG #pragma code_seg(AFX_INIT_SEG) #endif IMPLEMENT_DYNAMIC(CEvent, CSyncObject) IMPLEMENT_DYNAMIC(CSemaphore, CSyncObject) IMPLEMENT_DYNAMIC(CMutex, CSyncObject) /////////////////////////////////////////////////////////////////////////////
214,314
Github
[ 4, 831, 1873, 310, 629, 273, 5418, 18551, 13492, 313, 5987, 1358, 2700, 15, 11958, 1116, 15, 2061, 16, 13441, 187, 4, 2594, 14055, 39641, 323, 7981, 4278, 15, 187, 187, 19910, 1590, 30, 11958, 1116, 14, 5397, 14, 89, 883, 187, 19910, 332, 30, 1797, 15, 70, 1839, 7836, 2759, 187, 19910, 1661, 30, 18, 187, 19910, 12898, 5473, 15383, 18551, 3596, 323, 253, 1594, 883, 2608, 7533, 2464, 187, 1116, 30, 2073, 1279, 3401, 187, 12896, 30, 2073, 11958, 1116, 14, 5397, 3401, 187, 6434, 5473, 3614, 1358, 7280, 15, 681, 16, 15383, 18551, 16, 11958, 1116, 14, 5397, 14, 89, 883, 8, 187, 21997, 30, 2073, 13994, 27, 29469, 3401, 187, 7955, 1727, 30, 2073, 89, 3945, 8, 686, 18677, 20282, 14, 44054, 8, 686, 40691, 14, 4909, 3401, 187, 78, 6840, 554, 1727, 30, 2073, 14769, 3401, 187, 6756, 30, 1587, 14769, 12, 3614, 1358, 7280, 15, 681, 16, 15383, 18551, 27781, 19910, 1590, 15, 14769, 2807, 187, 20409, 19233, 2204, 84, 30, 2073, 16582, 3123, 3401, 187, 12543, 31462, 19910, 1590, 15, 12543, 3, 187, 187, 19910, 332, 1082, 551, 187, 50276, 2428, 370, 19910, 1590, 535, 50276, 13088, 3019, 14769, 3585, 14, 3550, 1969, 5560, 40526, 481, 6999, 14769, 3585, 14, 12083, 1969, 14458, 40526, 10, 187, 94, 187, 187, 10708, 1082, 551, 187, 50276, 2428, 370, 19910, 1590, 535, 50276, 12543, 428, 17670, 818, 2417, 12122, 19910, 7341, 16, 11919, 16, 18316, 16, 11958, 1116, 16, 5397, 16, 89, 883, 3, 535, 50276, 7693, 428, 66, 475, 12122, 19910, 7341, 16, 11919, 16, 18316, 16, 11958, 1116, 16, 5397, 16, 89, 883, 23911, 187, 94, 535 ]
# This file is part of BlackArch Linux ( https://www.blackarch.org/ ). # See COPYING for license details. pkgname=blackarch-config-x11 pkgver=21.e38cf84 pkgrel=1 pkgdesc='BlackArch config for the X11 user settings.' arch=('any') groups=('blackarch-config') url='https://github.com/BlackArch/blackarch-config-x11' license=('custom:unknown') depends=('xterm' 'rxvt-unicode' 'terminus-font') makedepends=('git') source=("git+https://github.com/BlackArch/$pkgname.git") sha512sums=('SKIP') install="$pkgname.install" pkgver() { cd $pkgname echo $(git rev-list --count HEAD).$(git rev-parse --short HEAD) } package() { cd $pkgname install -dm 755 "$pkgdir/usr/share/blackarch/config/x11" cp -a * "$pkgdir/usr/share/blackarch/config/x11/" }
214,315
Github
[ 29, 2307, 84, 15664, 568, 2413, 1358, 2700, 15, 9450, 15, 12312, 16, 2307, 84, 16, 87, 20, 3, 15664, 27, 911, 3433, 85, 568, 2413, 1358, 911, 3433, 85, 15, 2061, 16, 9784, 3, 15664, 27, 89, 9245, 568, 2413, 1358, 2700, 15, 88, 20, 15, 2061, 16, 8971, 16, 17733, 20838, 14, 14966, 3, 15664, 27, 89, 4492, 568, 2413, 1358, 2700, 15, 88, 20, 15, 2061, 16, 9595, 16, 89, 4492, 3, 1269, 9245, 27, 18982, 11930, 568, 2413, 1358, 2700, 15, 9450, 15, 12312, 16, 2307, 84, 16, 87, 20, 3944, 1358, 2700, 15, 9450, 15, 12312, 16, 1676, 2196, 16, 2307, 84, 16, 87, 20, 16, 2307, 84, 14, 20, 14, 20, 15, 18728, 3, 2715, 568, 20, 15, 20, 3, 5417, 568, 49, 17, 67, 4699, 1796, 1093, 805, 25452, 1857, 1138, 187, 29, 1590, 1511, 568, 46723, 366, 1138, 187, 654, 1590, 7834, 31, 11586, 2077, 7295, 18312, 272, 7454, 870, 1590, 7834, 31, 187, 654, 14337, 31, 187, 50276, 29, 14337, 18919, 1511, 568, 1156, 3, 6265, 568, 4175, 719, 77, 1080, 1138, 1087, 2388, 870, 14337, 18919, 31, 187, 50276, 29, 14337, 18919, 1511, 568, 3211, 3, 6265, 568, 4175, 719, 77, 1080, 1138, 1087, 85, 870, 14337, 18919, 31, 187, 870, 14337, 31, 187, 654, 14337, 31, 187, 50276, 29, 14337, 18919, 1511, 568, 1156, 3, 6265, 568, 4175, 719, 77, 1080, 1138, 8155, 42104, 870, 14337, 18919, 31, 187, 50276, 29, 14337, 18919, 1511, 568, 3211, 3, 6265, 568, 4175, 719, 77, 1080, 1138, 19335, 870, 14337, 18919, 31, 187, 870, 14337, 31, 187, 870, 1590, 31, 187, 29, 1590, 1511, 568, 46723, 366, 1138, 187, 654, 1590, 7834, 31, 11586, 2077, 870, 1590, 7834, 31, 187, 654, 1590, 7834, 31, 11586, 2077, 4412, 2111, 10515, 4412, 273, 12096, 870, 1590, 7834, 31, 187, 654, 14337, 31, 187, 50276, 29, 14337, 18919, 1511, 568, 1156, 3, 6265, 568, 4175, 719, 77, 1080, 1138, 7582, 870, 14337, 18919, 31, 187, 50276, 29, 14337, 18919, 1511, 568, 3211, 3, 6265, 568, 4175, 719, 77, 1080, 1138, 1920, 870, 14337, 18919, 31, 187, 870, 14337, 31, 187, 654, 10008, 31, 33832, 17273, 870, 10008, 31, 187, 870, 1590, 31, 187, 29, 881, 4527, 11133, 31, 1156, 870, 881, 4527, 11133, 31, 187, 29, 1541, 250, 6265, 568, 78, 3178, 7332, 1138, 20129, 9311, 870, 1541, 250, 31, 187, 29, 12982, 31, 187, 654, 12982, 18919, 6265, 568, 14699, 48828, 14, 19, 67, 3, 1511, 568, 3211, 1138, 1205, 870, 12982, 18919, 31, 187, 870, 12982, 31, 187, 29, 24210, 31, 187, 654, 25318, 6124, 31, 3016, 36, 2185, 4708, 52, 870, 25318, 6124, 31, 187, 654, 14267, 31, 27302, 5660, 38567, 870, 14267, 31, 187, 654, 27391, 31, 46567, 870, 27391, 31, 187, 654, 2754, 688, 3219, 264, 31, 7330, 14, 805, 14, 746, 870, 2754, 688, 3219, 264, 31, 187, 870, 24210, 31, 187, 29, 27422, 6074, 31, 187, 654, 30146, 6850, 31, 41800, 19981, 7454, 273, 253, 1986, 2077, 33417, 870, 30146, 6850, 31, 187, 654, 2754, 31674, 2107, 9706, 568, 88, 20, 2428, 16114, 1138, 8603, 14, 520, 14, 2125, 870, 2754, 31674, 2107, 31, 187, 654, 739, 22028, 31, 2163, 5576, 870, 739, 22028, 31, 187, 870, 27422, 6074, 31, 187, 29, 29079, 11185, 31, 187, 654, 9939, 1511, 568, 6756, 2600, 1511, 1138, 7955, 375, 959, 870, 9939, 31, 187, 654, 35399, 34478, 31, 6448, 5865, 870, 35399, 34478, 31, 187, 870, 29079, 11185, 31, 187, 29, 42070, 6265, 568, 84, 438, 46864, 1138, 43, 54, 577, 15, 1010, 870, 42070, 31, 187, 29, 31668, 1511, 568, 11317, 1138, 2413, 1358, 2700, 15, 72, 5367, 15, 12312, 16, 71, 1397, 656, 16, 19910, 16, 3016, 36, 2185, 4708, 52, 14, 72, 39227, 14, 22, 64, 1762, 14, 17312, 14, 4699, 1047, 870, 31668, 31, 187, 29, 31668, 1511, 568, 6790, 1138, 49, 17, 67, 4699, 1796, 1093, 805, 25452, 1857, 870, 31668, 31, 187, 29, 15352, 6074, 31, 187, 654, 15352, 8590, 7781, 6265, 568, 78, 3178, 2061, 1138, 33765, 5964, 870, 15352, 8590, 7781, 31, 187, 654, 15352, 47731, 6958, 9706, 568, 88, 20, 2428, 16114, 1138, 7330, 14, 805, 14, 746, 870, 15352, 47731, 6958, 31, 187, 654, 15352, 13086, 6958, 9706, 568, 88, 20, 2428, 16114, 1138, 7330, 14, 805, 14, 746, 870, 15352, 13086, 6958, 31, 187, 654, 15352, 18483, 2603, 568, 33765, 5964, 1138, 3016, 36, 2185, 4708, 52, 14, 72, 39227, 14, 22, 64, 1762, 14, 17312, 14, 4699, 1047, 870, 15352, 18483, 31, 187, 654, 15352, 34478, 31, 28936, 4561, 870, 15352, 34478, 31, 187, 654, 12982, 4527, 36518, 462, 272, 31, 187, 50276, 29, 12982, 18919, 6265, 568, 14699, 48828, 14, 19, 67, 3, 1511, 568, 3211, 1138, 1205, 870, 12982, 18919, 31, 187, 870, 12982, 4527, 36518, 462, 272, 31, 187, 870, 15352, 6074, 31, 187, 29, 10773, 32352, 1511, 568, 40, 5964, 7990, 7441, 1138, 9194, 24343, 870, 10773, 32352, 31, 187, 29, 24210, 31, 187, 654, 7152, 4947, 31, 3016, 36, 2185, 4708, 52, 870, 7152, 4947, 31, 187, 654, 10773, 2618, 31, 3016, 36, 2185, 4708, 52, 14, 72, 39227, 14, 22, 64, 1762, 14, 17312, 14, 4699, 1047, 870, 10773, 2618, 31, 187, 654, 13550, 2548, 31, 31711, 870, 13550, 2548, 31, 187, 654, 13550, 6124, 31, 72, 39227, 870, 13550, 6124, 31, 187, 654, 13550, 27610, 2338, 31, 883, 394, 870, 13550, 27610, 2338, 31, 187, 654, 13550, 5443, 31, 35848, 571, 870, 13550, 5443, 31, 187, 654, 13550, 15462, 13921, 31, 19, 9312, 870, 13550, 15462, 13921, 31, 187, 654, 5045, 8447, 31, 22, 27, 1762, 14, 17312, 14, 4699, 1047, 870, 5045, 8447, 31, 187, 654, 5045, 33577, 31, 46, 11660, 870, 5045, 33577, 31, 187, 654, 5045, 2548, 31, 44757, 870, 5045, 2548, 31, 187, 654, 36791, 52, 2338, 6124, 31, 48172, 870, 36791, 52, 2338, 6124, 31, 187, 654, 36791, 52, 2338, 31, 8665, 9543, 26775, 5538, 870, 36791, 52, 2338, 31, 187, 654, 18923, 31, 1717, 27, 18040, 22729, 914, 21470, 411, 1131, 870, 18923, 31, 187, 654, 14824, 2120, 2402, 568, 28348, 42, 5625, 13, 3690, 449, 1390, 2402, 568, 28348, 42, 5625, 13, 3690, 449, 2554, 568, 25187, 6750, 14824, 31, 187, 654, 14824, 806, 2402, 568, 55, 30043, 3, 2120, 2402, 568, 55, 30043, 13040, 1187, 3, 1390, 2402, 568, 42299, 1187, 3, 2554, 568, 19056, 6750, 14824, 31, 187, 870, 24210, 31, 187, 29, 5564, 6074, 31, 187, 654, 5564, 31, 42299, 1187, 362, 15, 48187, 42, 5625, 13, 3690, 8239, 5564, 31, 187, 654, 2003, 8447, 31, 22, 27, 1762, 14, 17312, 14, 4699, 1047, 870, 2003, 8447, 31, 187, 870, 5564, 6074, 31, 187, 29, 12428, 31, 187, 654, 6434, 2289, 568, 6082, 275, 3634, 3, 3148, 11495, 568, 8590, 4597, 647, 1138, 2413, 1358, 2700, 15, 72, 5367, 15, 12312, 16, 71, 1397, 656, 16, 19910, 16, 3016, 36, 2185, 4708, 52, 14, 72, 39227, 14, 22, 64, 1762, 14, 17312, 14, 4699, 1047, 16, 6071, 14, 20119, 15, 2974, 870, 6434, 31, 187, 870, 12428, 31, 187, 29, 42070, 6265, 568, 84, 438, 46864, 1138, 43, 54, 577, 15, 1010, 870, 42070, 31, 187, 29, 31668, 1511, 568, 11499, 13004, 25577, 1138, 22, 27, 1762, 14, 17312, 14, 4699, 1047, 28, 1762, 14, 21866, 870, 31668, 31, 187, 29, 1590, 1511, 568, 46723, 366, 1138, 187, 654, 1590, 7834, 31, 11586, 2077, 4412, 2111, 10515, 4412, 273, 12096, 870, 1590, 7834, 31, 187, 654, 1590, 7834, 31, 883, 394, 6817, 870, 1590, 7834, 31, 187, 654, 1590, 7834, 31, 46, 11660, 870, 1590, 7834, 31, 187, 654, 2843, 24567, 31, 54, 15, 52, 15, 33417, 870, 2843, 24567, 31, 187, 654, 14337, 31, 187, 50276, 29, 14337, 18919, 6265, 568, 4175, 719, 77, 1080, 3, 1511, 568, 1156, 1138, 7582, 870, 14337, 18919, 31, 187, 50276, 29, 14337, 18919, 6265, 568, 4175, 719, 77, 1080, 3, 1511, 568, 3211, 1138, 1920, 870, 14337, 18919, 31, 187, 870, 14337, 31, 187, 870, 1590, 31, 187, 29, 1590, 1511, 568, 21941, 1138, 187, 654, 8412, 5232, 31, 28348, 42, 5625, 13, 3690, 8239, 8412, 5232, 31, 187, 654, 1590, 7834, 1511, 568, 11807, 1138, 28348, 42, 5625, 13, 3690, 8239, 1590, 7834, 31, 187, 654, 1590, 7834, 1511, 568, 28821, 6750, 1590, 7834, 31, 187, 654, 1590, 7834, 1511, 568, 27169, 4527, 12236, 6750, 1590, 7834, 31, 187, 654, 10008, 31, 25187, 870, 10008, 31, 187, 870, 1590, 31, 187, 29, 1590, 1511, 568, 21941, 1138, 187, 654, 8412, 5232, 31, 55, 30043, 13040, 1187, 870, 8412, 5232, 31, 187, 654, 1590, 7834, 1511, 568, 11807, 1138, 42299, 1187, 870, 1590, 7834, 31, 187, 654, 1590, 7834, 1511, 568, 28821, 1138, 55, 30043, 870, 1590, 7834, 31, 187, 654, 1590, 7834, 1511, 568, 27169, 4527, 12236, 6750, 1590, 7834, 31, 187, 654, 10008, 31, 19056, 870, 10008, 31, 187, 870, 1590, 31, 187, 29, 24210, 31, 187, 654, 7152, 4947, 31, 3016, 36, 2185, 4708, 52, 870, 7152, 4947, 31, 187, 654, 10773, 2618, 31, 3016, 36, 2185, 4708, 52, 14, 72, 39227, 14, 22, 64, 1762, 14, 17312, 14, 4699, 1047, 870, 10773, 2618, 31, 187, 654, 13550, 2548, 31, 31711, 870, 13550, 2548, 31, 187, 654, 13550, 6124, 31, 72, 39227, 870, 13550, 6124, 31, 187, 654, 13550, 27610, 2338, 31, 883, 394, 870, 13550, 27610, 2338, 31, 187, 654, 13550, 5443, 31, 35848, 571, 870, 13550, 5443, 31, 187, 654, 13550, 15462, 13921, 31, 19, 9312, 870, 13550, 15462, 13921, 31, 187, 654, 5045, 8447, 31, 22, 27, 1762, 14, 17312, 14, 4699, 1047, 870, 5045, 8447, 31, 187, 654, 5045, 33577, 31, 46, 11660, 870, 5045, 33577, 31, 187, 654, 5045, 2548, 31, 44757, 870, 5045, 2548, 31, 187, 654, 36791, 52, 2338, 6124, 31, 48172, 870, 36791, 52, 2338, 6124, 31, 187, 654, 36791, 52, 2338, 31, 8665, 9543, 26775, 5538, 870, 36791, 52, 2338, 31, 187, 654, 18923, 31, 1717, 27, 18040, 22729, 914, 21470, 411, 1131, 870, 18923, 31, 187, 654, 14824, 2120, 2402, 568, 28348, 42, 5625, 13, 3690, 449, 1390, 2402, 568, 28348, 42, 5625, 13, 3690, 449, 2554, 568, 25187, 6750, 14824, 31, 187, 654, 14824, 806, 2402, 568, 55, 30043, 3, 2120, 2402, 568, 55, 30043, 13040, 1187, 3, 1390, 2402, 568, 42299, 1187, 3, 2554, 568, 19056, 6750, 14824, 31, 187, 654, 3409, 31, 35848, 571, 870, 3409, 31, 187, 870, 24210, 31, 187, 29, 4919, 5475, 1511, 568, 585, 2376, 25568, 3, 5417, 568, 301, 14, 3016, 36, 2185, 4708, 52, 14, 72, 39227, 14, 22, 64, 1762, 14, 17312, 14, 4699, 1047, 14, 17, 3, 1269, 4492, 27, 27616, 568, 2413, 1358, 2700, 15, 72, 5367, 15, 12312, 16, 71, 1397, 656, 16, 28859, 1657, 16, 3016, 36, 2185, 4708, 52, 14, 72, 39227, 14, 22, 64, 1762, 14, 17312, 14, 4699, 1047, 16, 3016, 36, 2185, 4708, 52, 14, 72, 39227, 14, 22, 64, 1762, 14, 17312, 14, 4699, 1047, 14, 17, 16, 2307, 84, 15, 7229, 1138, 187, 654, 5564, 6074, 31, 187, 50276, 29, 5564, 31, 42299, 1187, 362, 15, 48187, 42, 5625, 13, 3690, 8239, 5564, 31, 187, 50276, 29, 2377, 13408, 31, 24066, 18028, 495, 16066, 281, 40703, 285, 15824, 38630, 285, 16, 263, 18087, 15, 322, 1300, 407, 6798, 5874, 13156, 399, 15, 44248, 10512, 15, 327, 337, 16, 20, 16, 8603, 15, 313, 7836, 17266, 2377, 13408, 31, 187, 50276, 29, 2003, 8447, 31, 17, 870, 2003, 8447, 31, 187, 870, 5564, 6074, 31, 187, 654, 27422, 6074, 31, 187, 50276, 29, 2754, 31674, 2107, 31, 8603, 14, 520, 14, 2125, 870, 2754, 31674, 2107, 31, 187, 870, 27422, 6074, 31, 187, 654, 4919, 5475, 1269, 4492, 27, 27616, 568, 2413, 1358, 2700, 15, 72, 5367, 15, 12312, 16, 71, 1397, 656, 16, 19910, 16, 9275, 16, 3016, 36, 2185, 4708, 52, 14, 72, 39227, 14, 22, 64, 1762, 14, 17312, 14, 4699, 1047, 14, 17, 15, 9275, 3, 1511, 568, 977, 10069, 1138, 187, 50276, 29, 31668, 1511, 568, 10914, 10404, 49116, 5417, 1138, 37, 2693, 4699, 1796, 1093, 805, 317, 39273, 870, 31668, 31, 187, 870, 4919, 5475, 31, 187, 654, 31668, 1511, 568, 11317, 1138, 2413, 1358, 2700, 15, 72, 5367, 15, 12312, 16, 71, 1397, 656, 16, 28859, 1657, 16, 3016, 36, 2185, 4708, 52, 14, 72, 39227, 14, 22, 64, 1762, 14, 17312, 14, 4699, 1047, 16, 3016, 36, 2185, 4708, 52, 14, 72, 39227, 14, 22, 64, 1762, 14, 17312, 14, 4699, 1047, 14, 17, 870, 31668, 31, 187, 654, 31668, 1511, 568, 19946, 10115, 1657, 21674, 1138, 72, 39227, 14, 22, 64, 1762, 14, 17312, 14, 4699, 1047, 64, 17, 15, 9275, 870, 31668, 31, 187, 654, 12428, 31, 187, 50276, 29, 6434, 2289, 568, 6082, 275, 3634, 3, 3148, 11495, 568, 8590, 4597, 647, 1138, 2413, 1358, 2700, 15, 72, 5367, 15, 12312, 16, 71, 1397, 656, 16, 28859, 1657, 16, 3016, 36, 2185, 4708, 52, 14, 72, 39227, 14, 22, 64, 1762, 14, 17312, 14, 4699, 1047, 16, 3016, 36, 2185, 4708, 52, 14, 72, 39227, 14, 22, 64, 1762, 14, 17312, 14, 4699, 1047, 14, 17, 16, 6071, 14, 20119, 15, 2974, 870, 6434, 31, 187, 50276, 29, 6434, 2289, 568, 2040, 1789, 3, 3148, 11495, 568, 26423, 50032, 1138, 2413, 1358, 2700, 15, 72, 5367, 15, 12312, 16, 71, 1397, 656, 16, 19910, 16, 3016, 36, 2185, 4708, 52, 14, 72, 39227, 14, 22, 64, 1762, 14, 17312, 14, 4699, 1047, 16, 9275, 16, 3016, 36, 2185, 4708, 52, 14, 72, 39227, 14, 22, 64, 1762, 14, 17312, 14, 4699, 1047, 14, 17, 15, 9275, 870, 6434, 31, 187, 870, 12428, 31, 187, 654, 24210, 31, 187, 50276, 29, 8716, 13408, 31, 3016, 36, 2185, 4708, 52, 608, 27, 1762, 14, 17312, 14, 4699, 1047, 28, 13040, 1187, 362, 15, 48187, 42, 5625, 13, 3690, 9944, 2033, 8716, 13408, 31, 187, 50276, 29, 13550, 2402, 31, 11586, 2077, 4412, 2111, 10515, 4412, 273, 12096, 870, 13550, 2402, 31, 187, 50276, 29, 3409, 31, 35848, 571, 870, 3409, 31, 187, 50276, 29, 10773, 2618, 31, 3016, 36, 2185, 4708, 52, 14, 72, 39227, 14, 22, 64, 1762, 14, 17312, 14, 4699, 1047, 14, 17, 870, 10773, 2618, 31, 187, 50276, 29, 21934, 8447, 31, 17, 870, 21934, 8447, 31, 187, 50276, 29, 2754, 31674, 2107, 31, 8603, 14, 520, 14, 2125, 870, 2754, 31674, 2107, 31, 187, 50276, 29, 69, 5156, 4312, 31, 24066, 18028, 495, 16066, 281, 40703, 285, 15824, 38630, 285, 16, 263, 18087, 15, 322, 1300, 407, 6798, 5874, 13156, 399, 15, 44248, 10512, 15, 327, 337, 16, 20, 16, 8603, 15, 313, 7836, 17266, 69, 5156, 4312, 31, 187, 870, 24210, 31, 187, 870, 4919, 5475, 31, 187, 870, 2307, 84, 31 ]
<mods xmlns="http://www.loc.gov/mods/v3" xmlns:exslt="http://exslt.org/common" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xlink="http://www.w3.org/1999/xlink" xsi:schemaLocation="http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-3.xsd" version="3.3" ID="P0b002ee181288845"> <name type="corporate"> <namePart>United States Government Printing Office</namePart> <role> <roleTerm type="text" authority="marcrelator">printer</roleTerm> <roleTerm type="code" authority="marcrelator">prt</roleTerm> </role> <role> <roleTerm type="text" authority="marcrelator">distributor</roleTerm> <roleTerm type="code" authority="marcrelator">dst</roleTerm> </role> </name> <name type="corporate"> <namePart>United States</namePart> <namePart>United States District Court Middle District of Georgia</namePart> <role> <roleTerm type="text" authority="marcrelator">author</roleTerm> <roleTerm type="code" authority="marcrelator">aut</roleTerm> </role> <description>Government Organization</description> </name> <typeOfResource>text</typeOfResource> <genre authority="marcgt">government publication</genre> <language> <languageTerm authority="iso639-2b" type="code">eng</languageTerm> </language> <extension> <collectionCode>USCOURTS</collectionCode> <category>Judicial Publications</category> <branch>judicial</branch> <dateIngested>2011-12-19</dateIngested> </extension> <originInfo> <publisher>Administrative Office of the United States Courts</publisher> <dateIssued encoding="w3cdtf">2006-01-04</dateIssued> <issuance>monographic</issuance> </originInfo> <physicalDescription> <note type="source content type">deposited</note> <digitalOrigin>born digital</digitalOrigin> </physicalDescription> <classification authority="sudocs">JU 4.15</classification> <identifier type="uri">http://www.gpo.gov/fdsys/pkg/USCOURTS-gamd-5_05-cv-00214</identifier> <identifier type="local">P0b002ee181288845</identifier> <recordInfo> <recordContentSource authority="marcorg">DGPO</recordContentSource> <recordCreationDate encoding="w3cdtf">2011-12-19</recordCreationDate> <recordChangeDate encoding="w3cdtf">2011-12-19</recordChangeDate> <recordIdentifier source="DGPO">USCOURTS-gamd-5_05-cv-00214</recordIdentifier> <recordOrigin>machine generated</recordOrigin> <languageOfCataloging> <languageTerm authority="iso639-2b" type="code">eng</languageTerm> </languageOfCataloging> </recordInfo> <accessCondition type="GPO scope determination">fdlp</accessCondition> <extension> <docClass>USCOURTS</docClass> <accessId>USCOURTS-gamd-5_05-cv-00214</accessId> <courtType>District</courtType> <courtCode>gamd</courtCode> <courtCircuit>11th</courtCircuit> <courtState>Georgia</courtState> <courtSortOrder>2125</courtSortOrder> <caseNumber>5:05-cv-00214</caseNumber> <caseOffice>Macon</caseOffice> <caseType>civil</caseType> <natureSuitCode>790</natureSuitCode> <natureSuit>Other Labor Litigation</natureSuit> <cause>29:206 Collect Unpaid Wages</cause> <party fullName="CACI International, Inc." lastName="CACI International, Inc." role="Defendant"></party> <party firstName="Vicky" fullName="Vicky Thomason" lastName="Thomason" role="Plaintiff"></party> </extension> <titleInfo> <title>Thomason v. CACI International, Inc.</title> <partNumber>5:05-cv-00214</partNumber> </titleInfo> <location> <url access="object in context" displayLabel="Content Detail">http://www.gpo.gov/fdsys/pkg/USCOURTS-gamd-5_05-cv-00214/content-detail.html</url> </location> <classification authority="sudocs">JU 4.15</classification> <identifier type="preferred citation">5:05-cv-00214;05-214</identifier> <name type="corporate"> <namePart>United States District Court Middle District of Georgia</namePart> <namePart>11th Circuit</namePart> <namePart>Macon</namePart> <affiliation>U.S. Courts</affiliation> <role> <roleTerm authority="marcrelator" type="text">author</roleTerm> <roleTerm authority="marcrelator" type="code">aut</roleTerm> </role> </name> <name type="personal"> <displayForm>CACI International, Inc.</displayForm> <namePart type="family">CACI International, Inc.</namePart> <namePart type="given"></namePart> <namePart type="termsOfAddress"></namePart> <description>Defendant</description> </name> <name type="personal"> <displayForm>Vicky Thomason</displayForm> <namePart type="family">Thomason</namePart> <namePart type="given">Vicky</namePart> <namePart type="termsOfAddress"></namePart> <description>Plaintiff</description> </name> <extension> <docClass>USCOURTS</docClass> <accessId>USCOURTS-gamd-5_05-cv-00214</accessId> <courtType>District</courtType> <courtCode>gamd</courtCode> <courtCircuit>11th</courtCircuit> <courtState>Georgia</courtState> <courtSortOrder>2125</courtSortOrder> <caseNumber>5:05-cv-00214</caseNumber> <caseOffice>Macon</caseOffice> <caseType>civil</caseType> <natureSuitCode>790</natureSuitCode> <natureSuit>Other Labor Litigation</natureSuit> <cause>29:206 Collect Unpaid Wages</cause> <party fullName="CACI International, Inc." lastName="CACI International, Inc." role="Defendant"></party> <party firstName="Vicky" fullName="Vicky Thomason" lastName="Thomason" role="Plaintiff"></party> <state>Georgia</state> </extension> <relatedItem type="constituent" ID="id-USCOURTS-gamd-5_05-cv-00214-0" xlink:href="http://www.gpo.gov/fdsys/granule/USCOURTS-gamd-5_05-cv-00214/USCOURTS-gamd-5_05-cv-00214-0/mods.xml"> <titleInfo> <title>Thomason v. CACI International, Inc.</title> <subTitle>ORDER granting 3 Motion to Dismiss and ordering mediation and/or arbitration. Signed by Judge Wilbur D. Owens Jr. on 1/3/2006. (cf)</subTitle> <partNumber>0</partNumber> </titleInfo> <originInfo> <dateIssued>2006-01-04</dateIssued> </originInfo> <relatedItem xlink:href="http://www.gpo.gov/fdsys/pkg/pdf/USCOURTS-gamd-5_05-cv-00214-0.pdf" type="otherFormat"> <identifier type="FDsys Unique ID">D09002ee1812ac883</identifier> </relatedItem> <identifier type="uri">http://www.gpo.gov/fdsys/granule/USCOURTS-gamd-5_05-cv-00214/USCOURTS-gamd-5_05-cv-00214-0</identifier> <identifier type="former granule identifier">gamd-5_05-cv-00214_0.pdf</identifier> <location> <url access="object in context" displayLabel="Content Detail">http://www.gpo.gov/fdsys/granule/USCOURTS-gamd-5_05-cv-00214/USCOURTS-gamd-5_05-cv-00214-0/content-detail.html</url> <url access="raw object" displayLabel="PDF rendition">http://www.gpo.gov/fdsys/pkg/USCOURTS-gamd-5_05-cv-00214/pdf/USCOURTS-gamd-5_05-cv-00214-0.pdf</url> </location> <extension> <searchTitle>USCOURTS 5:05-cv-00214; Thomason v. CACI International, Inc.; </searchTitle> <courtName>United States District Court Middle District of Georgia</courtName> <state>Georgia</state> <accessId>USCOURTS-gamd-5_05-cv-00214-0</accessId> <sequenceNumber>0</sequenceNumber> <dateIssued>2006-01-04</dateIssued> <docketText>ORDER granting 3 Motion to Dismiss and ordering mediation and/or arbitration. Signed by Judge Wilbur D. Owens Jr. on 1/3/2006. (cf)</docketText> </extension> </relatedItem> </mods>
214,316
Github
[ 41497, 5302, 4155, 28, 187, 5302, 29368, 18030, 28, 187, 5302, 29368, 19217, 28, 187, 187, 12361, 775, 47238, 15, 40333, 187, 92, 187, 50274, 4387, 1577, 10850, 4241, 5443, 187, 50274, 92, 187, 50270, 4387, 540, 5879, 50262, 12026, 28, 187, 4, 338, 7379, 7400, 64, 18071, 1372, 187, 50270, 4387, 29368, 18030, 15, 26904, 18030, 17466, 186, 4659, 17466, 28, 187, 4, 7287, 187, 50270, 4387, 4228, 10850, 4241, 5443, 13119, 9, 18237, 4241, 1566, 18237, 4241, 10, 187, 50270, 92, 187, 50266, 2309, 747, 10850, 4241, 5443, 187, 50266, 92, 187, 50262, 12026, 50267, 30, 1566, 18237, 4241, 15, 12026, 13, 187, 4, 338, 7379, 7400, 64, 18071, 1372, 187, 50262, 4659, 17466, 50273, 30, 29368, 18030, 15, 18237, 4241, 40829, 874, 15, 3633, 26904, 18030, 17466, 9, 7645, 18237, 4241, 10, 187, 4, 7287, 187, 50266, 4718, 187, 50270, 94, 187, 50274, 94, 535, 50274, 605, 49926, 48, 27, 17097, 436, 9366, 2010, 187, 50274, 4387, 4228, 966, 775, 47238, 4241, 40829, 874, 187, 50274, 92, 187, 50270, 4387, 4228, 2991, 28481, 42881, 9, 47869, 19217, 15, 4241, 10928, 10, 187, 50270, 92, 187, 50266, 338, 6522, 9344, 10, 187, 50262, 2309, 28, 187, 50266, 9344, 15, 21179, 17466, 426, 29368, 19217, 15, 29834, 17466, 15, 11336, 28, 187, 4, 338, 7379, 7400, 64, 18071, 1372, 187, 50266, 338, 6522, 47869, 18030, 15, 18030, 12332, 15, 261, 49579, 10, 187, 50262, 47869, 19217, 15, 4241, 15, 42881, 3351, 8613, 9, 9344, 558, 187, 50266, 7271, 187, 4, 7287, 187, 50262, 47869, 19217, 15, 4241, 15, 42881, 9, 9344, 558, 187, 50270, 94, 535, 50270, 4387, 4228, 2991, 28481, 42881, 3378, 37544, 80, 9, 47869, 19217, 15, 4241, 10928, 10, 187, 50270, 92, 187, 50266, 338, 6522, 9344, 10, 187, 50262, 2309, 28, 187, 4, 338, 7379, 7400, 64, 18071, 1372, 187, 50266, 338, 6522, 47869, 18030, 15, 18030, 12332, 15, 261, 49579, 10, 187, 50266, 92, 187, 50262, 47869, 18030, 15, 37544, 80, 15, 16324, 4241, 9, 9344, 13, 346, 22482, 287, 3184, 1789, 3287, 187, 50262, 9344, 15, 21179, 17466, 426, 29368, 19217, 15, 29834, 17466, 15, 11336, 28, 187, 50262, 47869, 18030, 15, 37544, 80, 15, 42881, 4241, 3351, 8613, 9, 9344, 558, 187, 50266, 94, 2010, 187, 4, 7287, 187, 50266, 92, 187, 50262, 14154, 15, 6800, 1587, 37544, 80, 417, 1896, 3287, 187, 50262, 9344, 15, 21179, 17466, 426, 29368, 19217, 15, 29834, 17466, 15, 11336, 28, 187, 50262, 47869, 19217, 15, 4241, 15, 42881, 9, 9344, 558, 187, 50266, 94, 187, 50270, 94, 535, 50270, 4387, 4228, 2991, 28481, 42881, 9, 47869, 19217, 15, 18237, 4241, 10928, 13, 7301, 11823, 41, 1321, 12638, 24121, 426, 3221, 10, 187, 50270, 92, 187, 50266, 338, 6522, 9344, 10, 187, 50262, 2309, 28, 187, 50266, 338, 313, 30029, 41, 1321, 12638, 24121, 10, 187, 50262, 1779, 47238, 6910, 41, 1321, 12638, 8224, 15, 30029, 9301, 22246, 17196, 426, 2032, 28, 187, 50266, 14626, 187, 50266, 92, 187, 50262, 9344, 15, 21179, 17466, 426, 29368, 19217, 15, 29834, 17466, 15, 11336, 28, 187, 50262, 9344, 15, 16702, 15, 21179, 17466, 426, 37082, 17466, 15, 11336, 28, 187, 4, 338, 7379, 7400, 64, 18071, 1372, 187, 50262, 338, 6522, 47869, 18030, 15, 18030, 12332, 15, 261, 49579, 10, 187, 50258, 47869, 19217, 15, 4241, 15, 42881, 3351, 8613, 9, 9344, 558, 187, 50262, 7271, 187, 4, 7287, 187, 50258, 47869, 19217, 15, 4241, 15, 42881, 9, 9344, 558, 187, 50266, 94, 187, 50266, 71, 3341, 187, 50266, 92, 187, 50262, 338, 313, 30029, 41, 1321, 12638, 24121, 10, 187, 50258, 1779, 47238, 6910, 41, 1321, 12638, 8224, 15, 30029, 9301, 22246, 17196, 426, 3221, 28, 187, 50266, 94, 187, 50270, 94, 535, 50270, 4387, 4228, 2991, 28481, 42881, 3378, 37544, 80, 9, 47869, 19217, 15, 18237, 4241, 10928, 13, 7301, 11823, 41, 1321, 12638, 24121, 426, 3221, 10, 187, 50270, 92, 187, 50266, 338, 6522, 9344, 10, 187, 50262, 2309, 28, 187, 50266, 338, 313, 30029, 41, 1321, 12638, 24121, 10, 187, 50262, 1779, 47238, 6910, 41, 1321, 12638, 8224, 15, 30029, 9301, 22246, 17196, 426, 2032, 28, 187, 50266, 14626, 187, 50266, 92, 187, 4, 338, 7379, 7400, 64, 18071, 1372, 187, 50262, 338, 6522, 47869, 18030, 15, 18030, 12332, 15, 261, 49579, 10, 187, 50262, 92, 187, 50258, 47869, 18030, 15, 37544, 80, 15, 16324, 28747, 9, 1826, 29368, 19217, 15, 4241, 5456, 551, 10928, 13, 10928, 15, 16702, 3572, 346, 22482, 287, 3184, 1789, 3287, 187, 50258, 9344, 15, 21179, 17466, 426, 29368, 19217, 15, 29834, 17466, 15, 11336, 28, 187, 50258, 9344, 15, 16702, 15, 21179, 17466, 426, 37082, 17466, 15, 11336, 28, 187, 50258, 47869, 18030, 15, 37544, 80, 15, 42881, 4241, 3351, 8613, 9, 9344, 558, 187, 50262, 94, 2010, 187, 4, 7287, 187, 50262, 92, 187, 50258, 14154, 15, 6800, 1587, 37544, 80, 417, 1896, 3287, 187, 50258, 9344, 15, 21179, 17466, 426, 29368, 19217, 15, 29834, 17466, 15, 11336, 28, 187, 50258, 9344, 15, 16702, 15, 21179, 17466, 426, 37082, 17466, 15, 11336, 28, 187, 50258, 47869, 19217, 15, 4241, 15, 42881, 9, 9344, 558, 187, 50262, 94, 187, 50266, 94, 187, 50266, 71, 3341, 187, 50266, 92, 187, 50262, 338, 313, 30029, 41, 1321, 12638, 24121, 10, 187, 50258, 1779, 47238, 6910, 41, 1321, 12638, 8224, 15, 30029, 9301, 22246, 17196, 426, 3221, 28, 187, 50266, 94, 187, 50270, 94, 535, 50270, 4387, 4228, 2991, 41126, 22904, 9, 22904, 4979, 10, 187, 50270, 92, 187, 50266, 2044, 1404, 12599, 13883, 50275, 30, 4979, 15, 6790, 13883, 28, 187, 50266, 2044, 1404, 12599, 46503, 50275, 30, 4979, 15, 6790, 46503, 28, 187, 50266, 2044, 1404, 12599, 20359, 50272, 30, 4979, 15, 6790, 20359, 28, 187, 50262, 187, 50266, 338, 313, 22340, 12599, 13883, 15, 89, 3613, 470, 2785, 187, 50262, 22340, 12599, 13883, 15, 90, 3613, 470, 2785, 187, 50262, 22340, 12599, 13883, 15, 91, 3613, 470, 10, 187, 50262, 16702, 15, 6790, 13883, 426, 17811, 20, 15, 10528, 28, 187, 50262, 187, 50266, 338, 313, 22340, 12599, 46503, 3613, 3277, 17752, 279, 15, 32965, 10, 187, 50262, 16702, 15, 6790, 46503, 426, 3277, 17752, 279, 15, 32965, 28, 535, 50266, 338, 313, 22340, 12599, 20359, 15, 89, 3613, 337, 2785, 187, 50262, 22340, 12599, 20359, 15, 90, 3613, 337, 2785, 187, 50262, 22340, 12599, 20359, 15, 91, 3613, 337, 10, 187, 50262, 16702, 15, 6790, 20359, 426, 17811, 20, 15, 531, 28, 187, 50270, 94, 535, 50270, 4387, 4228, 2991, 41126, 22904, 9, 22904, 4979, 13, 34717, 2424, 15852, 10, 187, 50270, 92, 187, 50266, 338, 313, 16702, 15, 5598, 3613, 2424, 15852, 10, 187, 50262, 16702, 15, 4531, 15852, 9, 17354, 15852, 13, 3221, 558, 187, 50266, 36001, 22904, 9, 16702, 558, 187, 50270, 94, 535, 50270, 4387, 4228, 10850, 4241, 13119, 18237, 4241, 9, 2703, 1416, 13, 34717, 2885, 13, 18912, 8078, 5456, 4295, 10, 187, 50270, 92, 187, 50266, 2044, 2885, 34925, 426, 2885, 15, 13197, 4241, 15, 32280, 28, 187, 50266, 2044, 1711, 16754, 34925, 426, 29368, 19217, 15, 34925, 33281, 15, 34925, 8224, 15, 3633, 16754, 34925, 1874, 187, 50266, 338, 313, 5598, 34925, 3613, 1711, 16754, 34925, 10, 187, 50262, 47869, 19217, 15, 34925, 33281, 15, 34925, 8224, 15, 4531, 16754, 34925, 9, 5598, 34925, 558, 187, 50266, 14626, 187, 50266, 92, 187, 50262, 1779, 47238, 6910, 41, 1321, 12638, 8224, 15, 30029, 9301, 22246, 17196, 426, 2032, 28, 187, 50262, 2044, 747, 18237, 4241, 426, 747, 10850, 4241, 9, 1590, 13, 4295, 558, 187, 50262, 1826, 18237, 4241, 15, 4531, 16754, 9, 7750, 558, 187, 50262, 14626, 187, 50262, 92, 187, 50258, 2044, 4979, 426, 747, 18237, 4241, 15, 3633, 12118, 29, 22904, 18257, 187, 50258, 1779, 47238, 6910, 41, 1321, 12638, 8224, 15, 30029, 9301, 22246, 17196, 426, 2032, 28, 187, 50258, 16702, 15, 4531, 15852, 9, 5598, 13, 3221, 558, 187, 50258, 1779, 47238, 6910, 41, 1321, 12638, 8224, 15, 30029, 9301, 22246, 17196, 426, 3221, 28, 187, 50258, 36001, 22904, 9, 16702, 558, 187, 50262, 94, 187, 50262, 71, 3341, 187, 50262, 92, 187, 50258, 1826, 18237, 4241, 15, 4531, 16754, 9, 5672, 558, 187, 50262, 94, 187, 50262, 1779, 47238, 6910, 41, 1321, 12638, 8224, 15, 30029, 9301, 22246, 17196, 426, 3221, 28, 187, 50262, 2309, 747, 18237, 4241, 28, 187, 50266, 94, 187, 50266, 71, 3341, 187, 50266, 92, 187, 50262, 338, 313, 5598, 34925, 3613, 1711, 16754, 34925, 10, 187, 50258, 47869, 19217, 15, 34925, 33281, 15, 34925, 8224, 15, 4531, 16754, 34925, 9, 744, 16754, 34925, 558, 187, 50266, 94, 187, 50270, 94, 535, 50270, 4387, 4228, 10850, 4241, 13119, 18237, 4241, 9, 2703, 1416, 13, 34717, 2885, 10, 187, 50270, 92, 187, 50266, 2044, 2885, 34925, 426, 2885, 15, 13197, 4241, 15, 32280, 28, 187, 50266, 2044, 1711, 16754, 34925, 426, 29368, 19217, 15, 34925, 33281, 15, 34925, 8224, 15, 3633, 16754, 34925, 1874, 187, 50266, 338, 313, 5598, 34925, 3613, 1711, 16754, 34925, 10, 187, 50262, 47869, 19217, 15, 34925, 33281, 15, 34925, 8224, 15, 4531, 16754, 34925, 9, 5598, 34925, 558, 187, 50266, 14626, 187, 50266, 92, 187, 50262, 1779, 47238, 6910, 41, 1321, 12638, 8224, 15, 30029, 9301, 22246, 17196, 426, 2032, 28, 187, 50262, 2044, 747, 18237, 4241, 426, 747, 10850, 4241, 9, 1590, 558, 187, 50262, 1826, 18237, 4241, 15, 4531, 16754, 9, 7750, 558, 187, 50262, 14626, 187, 50262, 92, 187, 50258, 2044, 4979, 426, 747, 18237, 4241, 15, 3633, 12118, 29, 22904, 18257, 187, 50258, 1779, 47238, 6910, 41, 1321, 12638, 8224, 15, 30029, 9301, 22246, 17196, 426, 2032, 28, 187, 50258, 16702, 15, 4531, 15852, 9, 5598, 13, 3221, 558, 187, 50258, 1779, 47238, 6910, 41, 1321, 12638, 8224, 15, 30029, 9301, 22246, 17196, 426, 3221, 28, 187, 50258, 36001, 22904, 9, 16702, 558, 187, 50262, 94, 187, 50262, 71, 3341, 187, 50262, 92, 187, 50258, 1826, 18237, 4241, 15, 4531, 16754, 9, 5672, 558, 187, 50262, 94, 187, 50262, 1779, 47238, 6910, 41, 1321, 12638, 8224, 15, 30029, 9301, 22246, 17196, 426, 3221, 28, 187, 50262, 2309, 747, 18237, 4241, 28, 187, 50266, 94, 2490, 50266, 71, 3341, 187, 50266, 92, 187, 50262, 338, 313, 5598, 34925, 3613, 1711, 16754, 34925, 10, 187, 50258, 47869, 19217, 15, 34925, 33281, 15, 34925, 8224, 15, 4531, 16754, 34925, 9, 744, 16754, 34925, 558, 187, 50266, 94, 187, 50270, 94, 535, 50270, 4387, 4228, 10850, 4241, 13119, 18237, 4241, 9, 2703, 1416, 13, 34717, 2885, 13, 10850, 4241, 5443, 1375, 13, 7301, 13844, 19570, 34135, 426, 3221, 10, 187, 50270, 92, 187, 50266, 2044, 2885, 34925, 426, 2885, 15, 13197, 4241, 15, 32280, 28, 187, 50266, 2044, 1711, 16754, 34925, 426, 29368, 19217, 15, 34925, 33281, 15, 34925, 8224, 15, 3633, 16754, 34925, 1874, 187, 50266, 338, 313, 5598, 34925, 3613, 1711, 16754, 34925, 10, 187, 50262, 47869, 19217, 15, 34925, 33281, 15, 34925, 8224, 15, 4531, 16754, 34925, 9, 5598, 34925, 558, 187, 50266, 14626, 187, 50266, 92, 187, 50262, 1779, 47238, 6910, 41, 1321, 12638, 8224, 15, 30029, 9301, 22246, 17196, 426, 2032, 28, 187, 50262, 2044, 747, 18237, 4241, 426, 747, 10850, 4241, 9, 1590, 558, 187, 50262, 1826, 18237, 4241, 15, 4531, 16754, 9, 7750, 558, 187, 50262, 14626, 187, 50262, 92, 187, 50258, 11241, 15226, 17466, 9, 1826, 18237, 4241, 13, 1375, 13, 13844, 19570, 34135, 27, 13844, 19570, 34135, 558, 187, 50258, 2044, 4979, 426, 747, 18237, 4241, 15, 3633, 12118, 29, 22904, 18257, 187, 50258, 1779, 47238, 6910, 41, 1321, 12638, 8224, 15, 30029, 9301, 22246, 17196, 426, 2032, 28, 187, 50258, 16702, 15, 4531, 15852, 9, 5598, 13, 3221, 558, 187, 50258, 1779, 47238, 6910, 41, 1321, 12638, 8224, 15, 30029, 9301, 22246, 17196, 426, 3221, 28, 187, 50258, 36001, 22904, 9, 16702, 558, 187, 50262, 94, 187, 50262, 71, 3341, 187, 50262, 92, 187, 50258, 1826, 18237, 4241, 15, 4531, 16754, 9, 5672, 558, 187, 50262, 94, 187, 50262, 1779, 47238, 6910, 41, 1321, 12638, 8224, 15, 30029, 9301, 22246, 17196, 426, 3221, 28, 187, 50262, 2309, 747, 18237, 4241, 28, 187, 50266, 94, 2490, 50266, 71, 3341, 187, 50266, 92, 187, 50262, 338, 313, 5598, 34925, 3613, 1711, 16754, 34925, 10, 187, 50258, 47869, 19217, 15, 34925, 33281, 15, 34925, 8224, 15, 4531, 16754, 34925, 9, 744, 16754, 34925, 558, 187, 50266, 94, 187, 50270, 94, 535, 50270, 3474, 37082, 17466, 465, 18237, 4241, 29834, 17466, 50270, 30, 37082, 17466, 15, 3650, 3996, 7116, 28, 187, 50270, 3474, 37082, 17466, 465, 18030, 18237, 4241, 29834, 17466, 50276, 30, 465, 18237, 4241, 29834, 17466, 1040, 37082, 17466, 15, 37, 834, 17964, 688, 10987, 28, 187, 50270, 3474, 37082, 17466, 465, 22904, 29834, 17466, 50269, 30, 37082, 17466, 15, 3650, 3996, 7116, 28, 605, 1040, 37082, 17466, 15, 29834, 688, 14794, 24047, 28, 187, 50270, 3474, 37082, 17466, 465, 12118, 29834, 17466, 50269, 30, 37082, 17466, 15, 29834, 688, 41, 1321, 12638, 1040, 37082, 17466, 15, 3650, 3996, 7116, 28, 1380, 36308, 84, 353, 15897, 19013, 1334, 4645, 6371, 6301, 535, 50270, 11577, 4228, 2991, 17251, 15226, 17466, 9, 18237, 4241, 2165, 4241, 13, 10850, 4241, 5443, 1375, 13, 7301, 13844, 19570, 34135, 426, 3221, 10, 187, 50270, 92, 187, 50266, 2044, 4979, 426, 2165, 4241, 15, 16702, 28, 187, 50266, 2044, 6799, 18237, 4241, 17466, 50276, 30, 13844, 19570, 34135, 3736, 465, 18030, 18237, 4241, 29834, 17466, 1163, 465, 18237, 4241, 29834, 17466, 28, 187, 50266, 2044, 6799, 19512, 50266, 30, 13844, 19570, 34135, 3736, 470, 1163, 1375, 15, 12026, 28, 187, 50266, 338, 313, 13197, 4241, 15, 12026, 50273, 35495, 6799, 19512, 50270, 10, 2165, 4241, 15, 12026, 50273, 30, 6799, 19512, 28, 187, 50266, 338, 313, 13197, 4241, 15, 21179, 17466, 3613, 6799, 18237, 4241, 17466, 10, 2165, 4241, 15, 21179, 17466, 426, 6799, 18237, 4241, 17466, 28, 187, 50266, 338, 313, 16702, 964, 21179, 17466, 3613, 465, 22904, 29834, 17466, 2387, 4979, 964, 21179, 17466, 426, 465, 22904, 29834, 17466, 28, 187, 187, 4, 338, 7379, 7400, 64, 18071, 1372, 187, 50266, 26904, 18030, 17466, 6799, 26904, 17466, 28, 187, 50266, 338, 313, 13125, 19570, 34135, 10, 187, 50266, 92, 187, 50262, 3229, 1250, 26904, 17466, 426, 313, 26904, 18030, 17466, 10, 17, 28, 187, 50266, 94, 2010, 187, 50266, 92, 187, 50262, 3229, 1250, 26904, 17466, 426, 29368, 18030, 15, 18237, 4241, 40829, 874, 15, 3633, 26904, 18030, 17466, 9, 13197, 4241, 558, 187, 50266, 94, 187, 50266, 338, 313, 3229, 1250, 26904, 17466, 3613, 1375, 15, 4659, 17466, 10, 187, 50262, 47869, 18030, 15, 18237, 4241, 40829, 874, 15, 4531, 26904, 18030, 17466, 9, 13197, 4241, 13, 6799, 26904, 17466, 558, 187, 4, 7287, 187, 50270, 94, 535, 50270, 11577, 4228, 2991, 17251, 15226, 17466, 9, 12118, 4445, 13, 10850, 4241, 5443, 1566, 5443, 10, 187, 50270, 92, 2490, 50266, 2044, 2165, 4241, 50276, 30, 4445, 15, 13197, 4241, 28, 187, 50266, 11241, 15226, 17466, 9, 13197, 4241, 13, 1566, 5443, 558, 535, 50266, 338, 313, 15658, 15, 21179, 17466, 3613, 465, 12118, 29834, 17466, 2387, 4445, 15, 21179, 17466, 426, 465, 12118, 29834, 17466, 28, 187, 50270, 94, 535, 50270, 4387, 4228, 2991, 20004, 15226, 17466, 9, 18237, 4241, 2165, 4241, 10, 187, 50270, 92, 187, 50266, 2044, 4979, 426, 313, 13197, 4241, 10, 3736, 2165, 4241, 15, 16702, 1163, 3635, 28, 187, 50266, 338, 313, 13197, 4241, 10, 2165, 4241, 15, 21179, 17466, 426, 37082, 17466, 15, 11336, 28, 187, 50266, 338, 313, 16702, 10, 4979, 15, 21179, 17466, 426, 37082, 17466, 15, 11336, 28, 187, 50270, 94, 535, 50270, 4387, 4228, 2991, 20004, 15226, 17466, 9, 12118, 4445, 10, 187, 50270, 92, 187, 50266, 338, 313, 15658, 10, 4445, 15, 21179, 17466, 426, 37082, 17466, 15, 11336, 28, 187, 50270, 94, 187, 50274, 94, 187, 94, 187 ]
using System; using UnityEditor; using UnityEngine; namespace Chisel.Components { public struct GameObjectState { public int layer; #if UNITY_EDITOR public UnityEditor.StaticEditorFlags staticFlags; #endif public static GameObjectState Create(GameObject modelGameObject) { return new GameObjectState { layer = modelGameObject.layer, #if UNITY_EDITOR staticFlags = UnityEditor.GameObjectUtility.GetStaticEditorFlags(modelGameObject) #endif }; } } //TODO: Move this somewhere else public static class ChiselObjectUtility { public static void SafeDestroy(UnityEngine.Object obj) { if (!obj) return; obj.hideFlags = UnityEngine.HideFlags.None; #if UNITY_EDITOR if (!UnityEditor.EditorApplication.isPlaying) UnityEngine.Object.DestroyImmediate(obj); else #endif UnityEngine.Object.Destroy(obj); } public static void SafeDestroyWithUndo(UnityEngine.Object obj) { if (!obj) return; #if UNITY_EDITOR if (!UnityEditor.EditorApplication.isPlaying) { UnityEditor.Undo.RecordObject(obj, "Destroying object"); obj.hideFlags = UnityEngine.HideFlags.None; UnityEditor.Undo.DestroyObjectImmediate(obj); } else #endif { Debug.Log("Undo not possible"); obj.hideFlags = UnityEngine.HideFlags.None; UnityEngine.Object.Destroy(obj); } } public static void SafeDestroy(UnityEngine.GameObject obj, bool ignoreHierarchyEvents = false) { if (!obj) return; if (ignoreHierarchyEvents) ChiselNodeHierarchyManager.ignoreNextChildrenChanged = true; try { obj.hideFlags = UnityEngine.HideFlags.None; obj.transform.hideFlags = HideFlags.None; #if UNITY_EDITOR if (!UnityEditor.EditorApplication.isPlaying) UnityEngine.Object.DestroyImmediate(obj); else #endif UnityEngine.Object.Destroy(obj); } finally { if (ignoreHierarchyEvents) ChiselNodeHierarchyManager.ignoreNextChildrenChanged = false; } } public static void SafeDestroyWithUndo(UnityEngine.GameObject obj, bool ignoreHierarchyEvents = false) { if (!obj) return; if (ignoreHierarchyEvents) ChiselNodeHierarchyManager.ignoreNextChildrenChanged = true; try { #if UNITY_EDITOR if (!UnityEditor.EditorApplication.isPlaying) { UnityEditor.Undo.RecordObjects(new UnityEngine.Object[] { obj, obj.transform }, "Destroying object"); obj.hideFlags = UnityEngine.HideFlags.None; obj.transform.hideFlags = HideFlags.None; UnityEditor.Undo.DestroyObjectImmediate(obj); } else #endif { Debug.Log("Undo not possible"); obj.hideFlags = UnityEngine.HideFlags.None; obj.transform.hideFlags = HideFlags.None; UnityEngine.Object.Destroy(obj); } } finally { if (ignoreHierarchyEvents) ChiselNodeHierarchyManager.ignoreNextChildrenChanged = false; } } public static void ResetTransform(Transform transform) { var prevLocalPosition = transform.localPosition; var prevLocalRotation = transform.localRotation; var prevLocalScale = transform.localScale; if (prevLocalPosition.x != 0 || prevLocalPosition.y != 0 || prevLocalPosition.z != 0) transform.localPosition = Vector3.zero; if (prevLocalRotation != Quaternion.identity) transform.localRotation = Quaternion.identity; if (prevLocalScale.x != 1 || prevLocalScale.y != 1 || prevLocalScale.z != 1) transform.localScale = Vector3.one; } public static void ResetTransform(Transform transform, Transform requiredParent) { if (transform.parent != requiredParent) transform.SetParent(requiredParent, false); ResetTransform(transform); } public static GameObject CreateGameObject(string name, Transform parent, params Type[] components) { var parentScene = parent.gameObject.scene; var oldActiveScene = UnityEngine.SceneManagement.SceneManager.GetActiveScene(); if (parentScene != oldActiveScene) UnityEngine.SceneManagement.SceneManager.SetActiveScene(parentScene); try { ChiselNodeHierarchyManager.ignoreNextChildrenChanged = true; var newGameObject = new GameObject(name, components); newGameObject.SetActive(false); try { var transform = newGameObject.GetComponent<Transform>(); ChiselNodeHierarchyManager.ignoreNextChildrenChanged = true; transform.SetParent(parent, false); ChiselNodeHierarchyManager.ignoreNextChildrenChanged = false; ResetTransform(transform); } finally { newGameObject.SetActive(true); } ChiselNodeHierarchyManager.ignoreNextChildrenChanged = false; return newGameObject; } finally { if (parentScene != oldActiveScene) UnityEngine.SceneManagement.SceneManager.SetActiveScene(oldActiveScene); } } public static GameObject CreateGameObject(string name, Transform parent) { var parentScene = parent.gameObject.scene; var oldActiveScene = UnityEngine.SceneManagement.SceneManager.GetActiveScene(); if (parentScene != oldActiveScene) UnityEngine.SceneManagement.SceneManager.SetActiveScene(parentScene); try { ChiselNodeHierarchyManager.ignoreNextChildrenChanged = true; var newGameObject = new GameObject(name); newGameObject.SetActive(false); try { var transform = newGameObject.GetComponent<Transform>(); ChiselNodeHierarchyManager.ignoreNextChildrenChanged = true; transform.SetParent(parent, false); ChiselNodeHierarchyManager.ignoreNextChildrenChanged = false; ResetTransform(transform); } finally { newGameObject.SetActive(true); } ChiselNodeHierarchyManager.ignoreNextChildrenChanged = false; return newGameObject; } finally { if (parentScene != oldActiveScene) UnityEngine.SceneManagement.SceneManager.SetActiveScene(oldActiveScene); } } public static GameObject CreateGameObject(string name, Transform parent, GameObjectState state, bool debugHelperRenderer = false) { var parentScene = parent.gameObject.scene; var oldActiveScene = UnityEngine.SceneManagement.SceneManager.GetActiveScene(); if (parentScene != oldActiveScene) UnityEngine.SceneManagement.SceneManager.SetActiveScene(parentScene); try { ChiselNodeHierarchyManager.ignoreNextChildrenChanged = true; var newGameObject = new GameObject(name); newGameObject.SetActive(false); try { UpdateContainerFlags(newGameObject, state, debugHelperRenderer: debugHelperRenderer); var transform = newGameObject.GetComponent<Transform>(); ChiselNodeHierarchyManager.ignoreNextChildrenChanged = true; transform.SetParent(parent, false); ChiselNodeHierarchyManager.ignoreNextChildrenChanged = false; ResetTransform(transform); } finally { newGameObject.SetActive(true); } ChiselNodeHierarchyManager.ignoreNextChildrenChanged = false; return newGameObject; } finally { if (parentScene != oldActiveScene) UnityEngine.SceneManagement.SceneManager.SetActiveScene(oldActiveScene); } } const HideFlags kGameObjectHideFlags = HideFlags.NotEditable; const HideFlags kEditorGameObjectHideFlags = kGameObjectHideFlags | HideFlags.DontSaveInBuild; const HideFlags kTransformHideFlags = HideFlags.NotEditable;// | HideFlags.HideInInspector; const HideFlags kComponentHideFlags = HideFlags.HideInHierarchy | HideFlags.NotEditable; // Avoids MeshCollider showing wireframe internal static void UpdateContainerFlags(GameObject gameObject, GameObjectState state, bool debugHelperRenderer = false) { var transform = gameObject.transform; var desiredGameObjectFlags = debugHelperRenderer ? kEditorGameObjectHideFlags : kGameObjectHideFlags; var desiredLayer = debugHelperRenderer ? 0 : state.layer; if (gameObject.layer != desiredLayer ) gameObject.layer = desiredLayer; if (gameObject.hideFlags != desiredGameObjectFlags) gameObject.hideFlags = desiredGameObjectFlags; if (transform .hideFlags != kTransformHideFlags ) transform .hideFlags = kTransformHideFlags; #if UNITY_EDITOR StaticEditorFlags desiredStaticFlags; if (debugHelperRenderer) { desiredStaticFlags = (StaticEditorFlags)0; } else { desiredStaticFlags = UnityEditor.GameObjectUtility.GetStaticEditorFlags(gameObject); } if (desiredStaticFlags != state.staticFlags) UnityEditor.GameObjectUtility.SetStaticEditorFlags(gameObject, desiredStaticFlags); #endif } internal static void UpdateContainerFlags(Component component, GameObjectState modelState) { var gameObject = component.gameObject; UpdateContainerFlags(gameObject, modelState); if (component.hideFlags != kComponentHideFlags ) component.hideFlags = kComponentHideFlags; } public static void RemoveContainerFlags(GameObject gameObject) { var transform = (gameObject) ? gameObject.transform : null; if (gameObject) gameObject.hideFlags = HideFlags.None; if (transform) transform.hideFlags = HideFlags.None; } public static void RemoveContainerFlags(Component component) { if (component) component.hideFlags = HideFlags.None; } } }
214,317
Github
[ 3122, 209, 4118, 187, 475, 8153, 27, 22419, 1838, 5214, 187, 475, 187, 475, 21737, 762, 253, 14325, 4637, 13, 11099, 374, 15, 17, 313, 783, 346, 17736, 3287, 187, 475, 368, 778, 417, 897, 436, 1873, 3707, 275, 10276, 342, 253, 4637, 15, 187, 475, 1422, 778, 4044, 247, 3491, 273, 253, 4637, 387, 187, 475, 2490, 475, 50272, 2413, 1358, 2700, 15, 8418, 15, 2061, 16, 17130, 16, 17821, 14, 19, 15, 17, 187, 475, 2490, 475, 15999, 2424, 407, 7763, 1569, 390, 5821, 281, 275, 4028, 13, 3694, 187, 475, 5939, 762, 253, 4637, 310, 5939, 327, 271, 346, 1719, 4110, 3, 23440, 13, 187, 475, 15002, 15466, 4145, 22998, 3481, 9103, 19329, 13, 2057, 3890, 390, 10466, 15, 187, 475, 2594, 253, 4637, 323, 253, 2173, 3448, 13200, 15607, 285, 187, 475, 7364, 762, 253, 4637, 15, 187, 1738, 187, 10708, 32798, 301, 376, 15, 1212, 15, 8906, 15, 81, 5470, 15, 81, 5470, 33751, 1080, 28, 187, 187, 2948, 7626, 15, 679, 15, 5178, 16467, 28, 187, 2948, 7626, 15, 8906, 40129, 187, 187, 2948, 32798, 301, 376, 15, 1212, 15, 8906, 15, 29046, 5455, 28, 187, 2948, 32798, 301, 376, 15, 1212, 15, 8906, 15, 29046, 5455, 20455, 28, 187, 2948, 32798, 301, 376, 15, 1212, 15, 8906, 15, 4805, 15, 8124, 15, 81, 5470, 15, 9671, 2115, 26343, 20226, 28, 187, 2948, 32798, 301, 376, 15, 1212, 15, 8906, 15, 4805, 15, 8124, 15, 81, 5470, 19, 15, 81, 5470, 28011, 40129, 187, 2948, 32798, 301, 376, 15, 1212, 15, 8906, 15, 4805, 15, 8124, 15, 81, 5470, 19, 15, 81, 5470, 28011, 15, 881, 40129, 187, 2948, 32798, 301, 376, 15, 14996, 15, 7645, 15, 2203, 40129, 187, 2948, 32798, 301, 376, 15, 8906, 15, 21611, 28, 187, 2948, 32798, 301, 376, 15, 8906, 15, 22558, 15, 21659, 5330, 28, 187, 2948, 32798, 301, 376, 15, 8906, 15, 22558, 15, 36, 1377, 5911, 5330, 28, 187, 187, 3122, 187, 475, 8758, 7626, 14, 7152, 27, 187, 475, 3808, 35086, 27, 187, 475, 50275, 2214, 27426, 12822, 2115, 26343, 2548, 27, 513, 417, 1385, 327, 346, 5560, 3, 281, 320, 5058, 672, 10137, 8324, 310, 3579, 187, 475, 50273, 14005, 313, 664, 452, 2326, 1650, 273, 1385, 381, 17, 285, 417, 3579, 3806, 13, 2167, 253, 5020, 187, 475, 50273, 1171, 253, 673, 253, 767, 564, 1133, 14, 249, 14, 4608, 15, 50276, 3039, 841, 858, 417, 1298, 366, 13, 352, 1537, 452, 644, 672, 187, 475, 50273, 9088, 369, 642, 878, 323, 247, 3579, 3806, 285, 6830, 760, 581, 5426, 283, 2520, 651, 187, 475, 50273, 15684, 247, 8003, 1007, 481, 187, 1738, 187, 6930, 187, 475, 2051, 3623, 323, 18073, 4492, 27426, 2115, 26343, 12822, 2548, 94, 3510, 15, 187, 1738, 187, 4387, 966, 1176, 26343, 2548, 2946, 3623, 8725, 27426, 39865, 2548, 2946, 3623, 551, 535, 186, 605, 7953, 5803, 6202, 33023, 15, 50276, 46, 429, 13469, 581, 1854, 390, 1537, 1056, 271, 38768, 4500, 15, 187, 186, 9486, 4228, 12419, 4647, 8932, 27290, 426, 2032, 28, 187, 186, 605, 9486, 4228, 12419, 4647, 8932, 27290, 426, 3221, 28, 535, 186, 9486, 330, 377, 2115, 26343, 2548, 966, 2548, 28, 187, 187, 605, 186, 9486, 2457, 4228, 5128, 2548, 7651, 64, 10560, 64, 36602, 1194, 7711, 426, 187, 605, 186, 186, 1826, 13666, 9986, 3233, 2548, 43467, 2302, 2548, 43856, 914, 7769, 18, 3233, 2548, 15, 2203, 2548, 558, 187, 605, 187, 186, 9486, 12968, 29, 16467, 13, 4605, 31, 4445, 25821, 28, 535, 186, 9486, 5552, 29, 9671, 49, 5470, 49194, 20226, 31, 2758, 28, 535, 186, 6930, 996, 475, 1716, 26161, 323, 8212, 1511, 622, 3623, 13, 323, 27197, 247, 8212, 715, 247, 996, 475, 18861, 301, 376, 5128, 2548, 15, 996, 475, 1214, 3575, 1799, 1080, 18073, 4492, 367, 5470, 2946, 663, 1080, 94, 323, 534, 436, 966, 310, 2444, 15, 996, 475, 1214, 3575, 13818, 2548, 18073, 4492, 27426, 2115, 26343, 12822, 2548, 94, 281, 1232, 15, 996, 1738, 187, 186, 4387, 1176, 26343, 2548, 2946, 3623, 9, 49, 5470, 2946, 663, 1080, 1799, 1080, 13, 27426, 2115, 26343, 12822, 2548, 13818, 2548, 10, 551, 996, 186, 12185, 9, 33751, 1080, 13, 13818, 2548, 558, 996, 186, 2776, 2120, 5455, 2402, 426, 13818, 2548, 15, 32426, 1874, 996, 186, 25354, 5455, 426, 747, 42653, 5455, 9, 29046, 5455, 20455, 15, 12083, 9, 11546, 5455, 2402, 4027, 187, 186, 94, 535, 186, 36, 377, 2115, 26343, 2548, 755, 4947, 2548, 1082, 551, 996, 186, 338, 313, 28692, 2946, 3623, 3613, 3635, 10, 551, 988, 186, 2309, 6048, 2115, 26343, 2548, 2946, 3623, 10, 5426, 2946, 3623, 481, 788, 4947, 2548, 19996, 1874, 996, 186, 94, 996, 186, 2309, 966, 2548, 28, 187, 186, 94, 535, 186, 36, 377, 2115, 26343, 2548, 755, 4947, 2548, 19996, 1082, 551, 996, 186, 2309, 966, 2548, 28, 187, 186, 94, 535, 186, 2765, 29, 9671, 49, 5470, 49194, 20226, 31, 755, 22282, 1082, 551, 996, 186, 2309, 2758, 28, 187, 186, 94, 535, 186, 605, 353, 5436, 273, 3579, 12905, 16, 28692, 1364, 320, 2218, 2720, 281, 436, 1067, 15, 187, 186, 9486, 2991, 755, 3980, 9395, 2115, 26343, 1082, 551, 996, 186, 338, 313, 2203, 2548, 3613, 3635, 10, 551, 988, 186, 2309, 28, 996, 186, 94, 6886, 186, 17441, 39865, 2548, 2946, 3623, 5795, 2946, 3623, 426, 755, 26149, 800, 2548, 2946, 3623, 1874, 996, 186, 338, 313, 30991, 800, 2946, 3623, 3613, 3635, 10, 551, 988, 186, 2203, 2548, 426, 5795, 2946, 3623, 15, 788, 3233, 2548, 19996, 1874, 988, 186, 2437, 2548, 426, 6048, 2115, 26343, 2548, 2946, 3623, 10, 5795, 2946, 3623, 481, 788, 4947, 2548, 19996, 1874, 996, 186, 94, 996, 186, 338, 313, 2203, 2548, 3613, 3635, 10, 551, 988, 186, 2309, 28, 996, 186, 94, 6886, 186, 2203, 2548, 426, 2794, 16801, 2115, 26343, 4464, 17441, 2115, 26343, 12822, 2548, 10, 13818, 2548, 558, 996, 186, 2776, 19695, 1070, 2402, 426, 6048, 17441, 2115, 26343, 12822, 2548, 10, 13818, 2548, 481, 788, 46, 33195, 2402, 1874, 996, 186, 2437, 2548, 426, 747, 330, 377, 2115, 26343, 2548, 4464, 2115, 26343, 10, 941, 2548, 13, 19695, 1070, 2402, 558, 996, 186, 2437, 2548, 15, 1178, 2402, 9, 32426, 6020, 996, 186, 2437, 2548, 15, 1178, 5496, 9, 49, 5470, 2946, 663, 1080, 15, 2760, 16467, 1992, 4807, 9, 33751, 1080, 13, 755, 5496, 30652, 996, 186, 338, 313, 983, 2548, 31979, 27426, 4947, 12822, 2548, 10, 551, 988, 186, 2437, 2548, 15, 1178, 4947, 1874, 996, 186, 94, 996, 186, 7271, 604, 313, 983, 2548, 31979, 27426, 34359, 12822, 2548, 10, 551, 988, 186, 2437, 2548, 15, 1178, 21772, 1874, 996, 186, 94, 996, 186, 7271, 604, 313, 983, 2548, 31979, 27426, 29181, 12822, 2548, 10, 551, 988, 186, 2437, 2548, 15, 1178, 29181, 1874, 996, 186, 94, 996, 186, 2437, 2548, 15, 1178, 21747, 9, 261, 21747, 6020, 535, 186, 94, 535, 186, 33, 9677, 187, 186, 4353, 4647, 1082, 12326, 367, 5470, 5330, 13, 330, 1377, 5911, 5330, 551, 6886, 186, 788, 3980, 9395, 2115, 26343, 1874, 6886, 186, 2115, 26343, 8212, 426, 313, 2115, 26343, 10, 941, 2548, 28, 6886, 186, 17441, 2115, 26343, 12822, 2548, 1511, 426, 313, 17441, 2115, 26343, 12822, 2548, 10, 13818, 2548, 28, 996, 186, 12822, 8324, 2867, 426, 1511, 15, 788, 12822, 8324, 1874, 996, 186, 338, 313, 9134, 15, 261, 31696, 12905, 1082, 3857, 5426, 2946, 3623, 3613, 3635, 10, 551, 988, 186, 2309, 28, 996, 186, 94, 996, 186, 338, 45496, 681, 26343, 31979, 1176, 26343, 3233, 2548, 14560, 1228, 551, 988, 186, 2309, 28, 1380, 329, 11512, 2715, 4961, 313, 34263, 14308, 481, 996, 186, 94, 996, 186, 18788, 3980, 4612, 254, 2214, 47671, 1874, 187, 186, 94, 535, 186, 33, 9677, 187, 186, 4353, 11322, 1082, 551, 996, 186, 338, 6522, 261, 31696, 12905, 6649, 551, 988, 186, 12185, 15, 31327, 1874, 996, 186, 94, 187, 186, 94, 535, 186, 9486, 2991, 4647, 3980, 4612, 254, 2214, 47671, 1082, 12326, 367, 5470, 5330, 13, 330, 1377, 5911, 5330, 551, 996, 186, 17441, 2115, 26343, 12822, 2548, 1511, 426, 313, 17441, 2115, 26343, 12822, 2548, 10, 13818, 2548, 28, 996, 186, 12822, 8324, 2867, 426, 1511, 15, 788, 12822, 8324, 1874, 996, 186, 338, 313, 9134, 15, 261, 31696, 12905, 1082, 3857, 5426, 2946, 3623, 3613, 3635, 10, 551, 988, 186, 2309, 28, 996, 186, 94, 6886, 186, 605, 5733, 1881, 996, 186, 33751, 1080, 15, 1911, 2946, 3623, 45864, 9, 2520, 558, 6886, 186, 605, 5733, 667, 3469, 4317, 27, 2613, 5971, 285, 2758, 996, 186, 6180, 2765, 2548, 2946, 3623, 1673, 2765, 2946, 3623, 426, 7327, 2765, 2548, 2946, 3623, 15, 788, 6180, 2765, 2946, 3623, 22166, 9, 988, 186, 33751, 1080, 13, 1511, 15, 788, 6180, 21873, 2765, 16324, 8447, 6020, 6886, 186, 605, 19728, 513, 417, 878, 436, 18925, 13, 347, 359, 4390, 513, 417, 878, 667, 9410, 996, 186, 605, 273, 253, 2613, 966, 323, 12868, 275, 436, 966, 996, 186, 1542, 313, 12822, 2548, 2946, 3623, 2613, 2946, 3623, 15628, 456, 1163, 1673, 2765, 2946, 3623, 15, 788, 8932, 4947, 2765, 6649, 551, 988, 186, 338, 313, 4793, 2946, 3623, 15628, 456, 31979, 11760, 4947, 2548, 2946, 3623, 10, 551, 2657, 186, 8932, 4947, 2548, 2946, 3623, 2613, 2548, 2946, 3623, 426, 313, 8932, 4947, 2548, 2946, 3623, 10, 2613, 2946, 3623, 15628, 456, 28, 2657, 186, 12822, 2548, 2946, 3623, 622, 3623, 426, 2664, 186, 33751, 1080, 15, 788, 2548, 2946, 3623, 9, 4793, 2548, 2946, 3623, 15, 788, 8932, 4947, 16324, 8447, 6020, 2657, 186, 338, 313, 1212, 3623, 31979, 1176, 26343, 2548, 2946, 3623, 10, 551, 2664, 186, 2115, 26343, 2548, 2946, 3623, 18925, 2946, 3623, 426, 7308, 186, 4464, 2115, 26343, 2548, 2946, 3623, 10, 622, 3623, 481, 788, 45864, 2946, 3623, 1874, 2664, 186, 33751, 1080, 15, 1911, 2946, 3623, 45864, 9, 2520, 13, 18925, 2946, 3623, 558, 187, 605, 5879, 186, 2115, 26343, 2548, 2946, 3623, 809, 2946, 3623, 426, 187, 605, 32062, 186, 4464, 2115, 26343, 2548, 2946, 3623, 10, 622, 3623, 481, 788, 18712, 2946, 3623, 1874, 187, 605, 5879, 186, 338, 313, 1545, 2946, 3623, 3613, 3635, 10, 551, 187, 605, 32062, 186, 33751, 1080, 15, 1911, 2946, 3623, 45864, 9, 2520, 13, 809, 2946, 3623, 558, 187, 605, 5879, 186, 94, 187, 605, 5879, 186, 7271, 551, 187, 605, 32062, 186, 33751, 1080, 15, 1911, 2946, 3623, 45864, 9, 2520, 13, 622, 3623, 558, 187, 605, 5879, 186, 94, 2664, 186, 1178, 4612, 13004, 1874, 2657, 186, 94, 988, 186, 94, 996, 186, 94, 996, 186, 1542, 313, 12822, 2548, 2946, 3623, 3558, 2548, 2946, 3623, 15628, 456, 1163, 1673, 2765, 2946, 3623, 15, 788, 20226, 2765, 6649, 551, 988, 186, 33751, 1080, 15, 5903, 36, 1377, 17371, 1874, 988, 186, 338, 313, 14360, 2548, 2946, 3623, 15628, 456, 31979, 17792, 2548, 2946, 3623, 10, 551, 2657, 186, 20226, 2548, 2946, 3623, 3558, 2548, 2946, 3623, 426, 313, 20226, 2548, 2946, 3623, 10, 3558, 2548, 2946, 3623, 15628, 456, 28, 2657, 186, 12822, 2548, 2946, 3623, 1673, 2946, 3623, 426, 3558, 2548, 2946, 3623, 15, 788, 6180, 2548, 2946, 3623, 1874, 2657, 186, 250, 1915, 339, 4717, 45864, 9, 3423, 2946, 3623, 558, 988, 186, 94, 187, 605, 623, 186, 338, 313, 14360, 2548, 2946, 3623, 15628, 456, 31979, 427, 7250, 2548, 2946, 3623, 10, 551, 187, 605, 15540, 186, 250, 1915, 339, 4717, 45864, 9, 14360, 2548, 2946, 3623, 15628, 456, 558, 187, 605, 623, 186, 94, 988, 186, 7271, 604, 313, 14360, 2548, 2946, 3623, 15628, 456, 31979, 25750, 11594, 3235, 11732, 2548, 2946, 3623, 10, 551, 2657, 186, 33751, 1080, 15, 1911, 2946, 3623, 45864, 9, 2520, 13, 3558, 2548, 2946, 3623, 15628, 456, 558, 988, 186, 94, 996, 186, 94, 996, 186, 338, 6522, 261, 4612, 13004, 6649, 551, 988, 186, 18788, 19996, 1874, 996, 186, 94, 187, 186, 94, 535, 186, 9486, 2991, 761, 9786, 4717, 45864, 9, 12822, 2548, 2946, 3623, 3469, 1796, 10, 988, 186, 34832, 330, 1377, 5911, 5330, 13, 367, 5470, 5330, 551, 996, 186, 605, 24202, 27, 7472, 436, 285, 1056, 2544, 1051, 436, 789, 1537, 320, 1146, 2668, 1557, 273, 275, 996, 186, 605, 50276, 4120, 5425, 2548, 2946, 3623, 996, 186, 338, 313, 14455, 1796, 31979, 4559, 5425, 2548, 2946, 3623, 10, 551, 988, 186, 4120, 5425, 2548, 2946, 3623, 34301, 2946, 3623, 426, 313, 4120, 5425, 2548, 2946, 3623, 10, 3469, 1796, 28, 988, 186, 250, 1915, 339, 4717, 45864, 9, 2307, 5425, 2946, 3623, 15, 788, 37765, 2548, 2946, 3623, 6020, 996, 186, 94, 996, 186, 7271, 604, 313, 14455, 1796, 31979, 1176, 26343, 2548, 2946, 3623, 10, 551, 988, 186, 2115, 26343, 2548, 2946, 3623, 809, 2946, 3623, 426, 2657, 186, 4464, 2115, 26343, 2548, 2946, 3623, 10, 3469, 1796, 481, 788, 18712, 2946, 3623, 9, 2115, 26343, 2548, 2946, 3623, 15, 2437, 558, 988, 186, 338, 313, 1545, 2946, 3623, 3613, 3635, 10, 551, 2657, 186, 33751, 1080, 15, 1911, 2946, 3623, 45864, 9, 2520, 13, 809, 2946, 3623, 558, 988, 186, 94, 988, 186, 7271, 551, 2657, 186, 33751, 1080, 15, 1911, 2946, 3623, 45864, 9, 2520, 13, 3469, 1796, 558, 988, 186, 94, 988, 186, 1178, 4612, 13004, 1874, 996, 186, 94, 996, 186, 605, 24202, 27, 7472, 436, 285, 1056, 2544, 1051, 436, 789, 1537, 320, 1146, 2668, 1557, 273, 275, 996, 186, 605, 50276, 6542, 2548, 2946, 3623, 996, 186, 7271, 604, 313, 14455, 1796, 31979, 11782, 2548, 2946, 3623, 10, 551, 988, 186, 33751, 1080, 15, 1911, 2946, 3623, 45864, 9, 2520, 13, 3469, 1796, 558, 988, 186, 1178, 4612, 13004, 1874, 996, 186, 94, 187, 605, 186, 186, 7271, 604, 313, 14455, 1796, 31979, 427, 7250, 2548, 2946, 3623, 10, 551, 187, 605, 623, 186, 47, 7250, 2548, 2946, 3623, 20494, 2548, 2946, 3623, 426, 313, 47, 7250, 2548, 2946, 3623, 10, 3469, 1796, 28, 187, 605, 623, 186, 17441, 12822, 2548, 2946, 3623, 20494, 18712, 2946, 3623, 426, 187, 605, 15540, 186, 47628, 2548, 2946, 3623, 15, 788, 47, 7250, 2548, 18712, 2946, 3623, 1874, 187, 605, 623, 186, 605, 20389, 281, 1056, 2119, 326, 346, 2520, 3, 966, 2654, 7976, 327, 512, 3603, 47247, 253, 187, 605, 623, 186, 605, 20494, 5426, 13, 533, 359, 878, 281, 2794, 253, 20494, 5426, 1309, 253, 187, 605, 623, 186, 605, 8869, 273, 436, 966, 15, 313, 47, 7250, 2548, 2946, 3623, 285, 427, 7250, 2548, 12822, 2548, 513, 417, 1663, 187, 605, 623, 186, 605, 452, 616, 1211, 18700, 8447, 481, 187, 605, 623, 186, 33751, 1080, 15, 1911, 2946, 3623, 45864, 9, 2520, 13, 20494, 18712, 2946, 3623, 558, 187, 605, 623, 186, 1178, 4612, 13004, 1874, 187, 605, 186, 186, 94, 996, 186, 7271, 604, 313, 14455, 1796, 31979, 10210, 3423, 2548, 2946, 3623, 10, 551, 988, 186, 16324, 8447, 761, 12753, 426, 2657, 186, 4464, 17441, 12871, 3423, 12822, 2548, 10, 6048, 12871, 3423, 2548, 2946, 3623, 10, 3469, 1796, 481, 788, 12822, 2548, 26910, 21415, 16324, 8447, 1874, 988, 186, 12822, 2548, 2946, 3623, 6944, 2946, 3623, 426, 1799, 1080, 15, 788, 2548, 2946, 3623, 9, 2845, 12753, 558, 988, 186, 338, 313, 4524, 2943, 2946, 3623, 31979, 46222, 2548, 2946, 3623, 10, 551, 2657, 186, 33751, 1080, 15, 1911, 2946, 3623, 45864, 9, 2520, 13, 6944, 2946, 3623, 558, 2657, 186, 1178, 4612, 13004, 1874, 988, 186, 94, 996, 186, 94, 996, 186, 605, 1231, 403, 7384, 326, 2372, 15069, 327, 14813, 84, 588, 417, 320, 2931, 15, 187, 186, 94, 535, 186, 9486, 2991, 4647, 19996, 1082, 12326, 330, 1377, 5911, 5330, 13, 367, 5470, 5330, 551, 6886, 186, 338, 313, 261, 41041, 6649, 551, 988, 186, 2309, 28, 996, 186, 94, 996, 186, 2115, 26343, 8212, 426, 313, 2115, 26343, 10, 941, 2548, 28, 6886, 186, 17441, 2115, 26343, 12822, 2548, 1511, 426, 313, 17441, 2115, 26343, 12822, 2548, 10, 13818, 2548, 28, 6886, 186, 23170, 4647, 36, 377, 426, 4647, 8932, 27290, 28, 996, 186, 338, 313, 881, 31979, 27426, 29181, 12822, 2548, 10, 551, 988, 186, 18788, 36, 377, 426, 3221, 28, 988, 186, 338, 313, 7110, 8932, 27290, 6649, 551, 2657, 186, 81, 5470, 6800, 1898, 6074, 7474, 9, 2520, 13, 2664, 186, 3, 42747, 2613, 5971, 323, 8083, 1511, 27, 346, 559, 1511, 15, 32426, 6020, 988, 186, 94, 996, 186, 94, 996, 186, 338, 313, 18788, 36, 377, 10, 551, 988, 186, 18788, 36, 377, 9, 681, 26343, 13, 1511, 558, 996, 186, 94, 996, 186, 7271, 551, 988, 186, 18788, 23088, 9, 681, 26343, 13, 1511, 558, 996, 186, 94, 996, 186, 1178, 41041, 1874, 187, 186, 94, 535, 186, 605, 15256, 41972, 187, 186, 9486, 2991, 4647, 23088, 9, 2115, 26343, 8212, 13, 27426, 2115, 26343, 12822, 2548, 1511, 10, 988, 186, 34832, 330, 1377, 5911, 5330, 13, 367, 5470, 5330, 551, 6886, 186, 605, 23170, 310, 4947, 426, 313, 881, 31979, 27426, 4947, 12822, 2548, 2785, 6993, 9817, 4947, 9, 33751, 1080, 13, 1511, 4027, 996, 186, 23170, 310, 4947, 426, 313, 881, 31979, 27426, 4947, 12822, 2548, 558, 6886, 186, 565, 1979, 426, 755, 5496, 4807, 1874, 6886, 186, 605, 36529, 275, 8212, 5426, 4278, 15, 996, 186, 6180, 2765, 2548, 2946, 3623, 1673, 2765, 2946, 3623, 426, 7327, 2765, 2548, 2946, 3623, 15, 788, 6180, 2765, 2946, 3623, 22166, 9, 988, 186, 33751, 1080, 13, 1511, 15, 788, 6180, 21873, 2765, 16324, 8447, 6020, 6886, 186, 8250, 40333, 9, 681, 26343, 558, 996, 186, 25011, 426, 747, 26267, 46145, 996, 186, 15658, 25821, 426, 747, 47523, 46145, 6886, 186, 1911, 22282, 9, 681, 26343, 13, 1673, 2765, 2946, 3623, 558, 6886, 186, 338, 6522, 9671, 2115, 26343, 20226, 15, 18788, 3233, 2548, 22282, 9, 681, 26343, 13, 310, 4947, 13, 1979, 13, 2758, 13, 988, 186, 4856, 5204, 14433, 56, 1596, 9, 4856, 582, 1799, 1080, 15, 788, 36885, 11564, 56, 376, 2784, 43691, 32875, 551, 988, 186, 8250, 40333, 9, 681, 26343, 558, 996, 186, 94, 6886, 186, 1178, 12118, 25821, 9, 681, 26343, 558, 187, 186, 94, 535, 186, 9486, 2991, 873, 12118, 25821, 9, 2115, 26343, 8212, 10, 551, 996, 186, 338, 313, 681, 26343, 31979, 29593, 10, 551, 988, 186, 34359, 2605, 426, 313, 34359, 10, 8212, 28, 988, 186, 1542, 313, 6648, 15, 14085, 29, 16467, 13, 4605, 31, 5857, 1163, 4445, 25821, 15, 8873, 4531, 6649, 551, 2657, 186, 3233, 2548, 12118, 4445, 426, 2605, 15, 788, 12118, 3404, 9, 8873, 15, 788, 4814, 6020, 2657, 186, 338, 313, 15658, 2295, 3635, 10, 551, 2664, 186, 81, 5470, 6800, 1898, 6074, 7474, 9, 2520, 13, 346, 18179, 417, 873, 4385, 323, 686, 33722, 8, 2630, 257, 290, 346, 559, 7308, 186, 8873, 15, 788, 4814, 1082, 559, 346, 323, 27, 346, 559, 2605, 15, 32426, 6020, 2664, 186, 2309, 28, 2657, 186, 94, 2657, 186, 15658, 15, 1178, 19174, 9, 8873, 15, 38950, 6020, 988, 186, 94, 996, 186, 94, 187, 186, 94, 535, 186, 605, 15256, 41972, 187, 186, 9486, 2991, 4647, 36, 377, 9, 2115, 26343, 8212, 13, 27426, 2115, 26343, 12822, 2548, 1511, 10, 988, 186, 34832, 367, 5470, 5330, 13, 330, 1377, 5911, 5330, 551, 996, 186, 605, 36529, 275, 8212, 5426, 4278, 15, 996, 186, 6180, 2765, 2548, 2946, 3623, 1673, 2765, 2946, 3623, 426, 7327, 2765, 2548, 2946, 3623, 15, 788, 6180, 2765, 2946, 3623, 22166, 9, 988, 186, 33751, 1080, 13, 1511, 15, 788, 6180, 21873, 2765, 16324, 8447, 6020, 996, 186, 8250, 40333, 9, 681, 26343, 558, 996, 186, 25011, 426, 747, 26267, 46145, 1380, 24202, 27, 11287, 323, 1711, 346, 21705, 3, 5122, 996, 186, 15658, 25821, 426, 747, 47523, 46145, 1380, 24202, 27, 11287, 323, 1711, 346, 21705, 3, 5122, 6886, 186, 42384, 2548, 8932, 27290, 9, 681, 26343, 13, 1673, 2765, 2946, 3623, 558, 996, 186, 1911, 22282, 9, 681, 26343, 13, 1673, 2765, 2946, 3623, 558, 6886, 186, 338, 6522, 2437, 2548, 15, 30716, 6649, 551, 988, 186, 605, 24202, 27, 11401, 12894, 15, 50276, 1231, 943, 513, 436, 2451, 323, 690, 5971, 9366, 15, 50276, 18837, 988, 186, 605, 359, 513, 352, 1060, 15, 50276, 4531, 2740, 3659, 1060, 281, 7409, 15, 996, 186, 94, 996, 186, 2437, 2548, 15, 6953, 9683, 9, 33751, 1080, 15, 788, 49, 5470, 2946, 663, 1080, 10976, 5023, 788, 4947, 9683, 5715, 988, 186, 33751, 1080, 15, 788, 55, 2612, 8224, 5715, 1799, 1080, 15, 788, 36885, 11564, 56, 376, 2784, 43691, 6020, 187, 186, 94, 535, 186, 605, 15256, 41972, 187, 186, 9486, 2991, 14433, 56, 1596, 9, 2776, 14441, 10, 551, 996, 186, 605, 49926, 48, 27, 604, 3908, 16, 28662, 11287, 996, 186, 338, 313, 4856, 15, 24634, 1587, 27337, 281, 8495, 2807, 3857, 556, 37828, 40333, 6649, 551, 988, 186, 4856, 426, 14441, 15, 13481, 6407, 1587, 5414, 35, 995, 346, 5414, 35, 28085, 3287, 996, 186, 94, 996, 186, 21611, 15, 30289, 9, 2520, 13, 14441, 558, 187, 186, 94, 535, 186, 605, 15256, 41972, 187, 186, 33, 9677, 187, 186, 4353, 36334, 42102, 1082, 12326, 367, 5470, 5330, 13, 330, 1377, 5911, 5330, 551, 996, 186, 338, 313, 261, 4612, 13004, 6649, 551, 988, 186, 18788, 19996, 1874, 996, 186, 94, 187, 186, 94, 535, 186, 605, 15256, 41972, 187, 186, 605, 15256, 41972, 187, 186, 33, 9677, 187, 186, 2115, 26343, 2548, 2946, 3623, 755, 45864, 2946, 3623, 1082, 551, 996, 186, 338, 313, 28692, 2946, 3623, 3613, 3635, 3857, 5426, 2946, 3623, 31979, 1176, 26343, 2548, 2946, 3623, 10, 551, 988, 186, 2309, 313, 2115, 26343, 2548, 2946, 3623, 10, 5426, 2946, 3623, 28, 996, 186, 94, 996, 186, 2309, 436, 28, 187, 186, 94, 535, 186, 2776, 755, 2402, 1082, 551, 996, 186, 2309, 755, 12822, 2548, 5023, 32426, 1874, 187, 186, 94, 535, 186, 33, 9677, 187, 186, 3233, 2548, 755, 3233, 2548, 1082, 551, 996, 186, 338, 313, 20918, 10, 551, 988, 186, 2309, 11512, 3233, 2548, 28, 996, 186, 94, 996, 186, 788, 3980, 9395, 2115, 26343, 1874, 996, 186, 2309, 941, 2548, 28, 187, 186, 94, 535, 186, 33, 9677, 187, 186, 3233, 2548, 755, 36, 21724, 30389, 2548, 1082, 551, 996, 186, 338, 313, 261, 31696, 12905, 1082, 3857, 5426, 2946, 3623, 3613, 3635, 3857, 5426, 2946, 3623, 15, 261, 41041, 6649, 551, 988, 186, 2309, 5426, 2946, 3623, 15, 788, 3233, 2548, 1874, 996, 186, 94, 996, 186, 2309, 941, 2548, 28, 187, 186, 94, 535, 186, 23170, 556, 40049, 2402, 1082, 551, 996, 186, 2309, 6048, 17441, 2115, 26343, 12822, 2548, 10, 13818, 2548, 481, 788, 12822, 8324, 5023, 7110, 40049, 2402, 1874, 187, 186, 94, 535, 186, 33, 9677, 187, 186, 5178, 16467, 755, 5496, 1082, 551, 996, 186, 2309, 6048, 17441, 2115, 26343, 12822, 2548, 10, 755, 45864, 2946, 3623, 5023, 788, 12822, 2548, 26910, 788, 5496, 1874, 187, 186, 94, 535, 186, 605, 24202, 27, 2490, 186, 605, 27626, 432, 367, 5470, 12804, 1293, 1818, 15, 50276, 17304, 452, 574, 281, 1818, 2289, 327, 966, 367, 5470, 12804, 285, 187, 186, 605, 50276, 2520, 5416, 5496, 1332, 281, 1345, 281, 1056, 352, 12482, 15, 50276, 5804, 43004, 281, 970, 367, 5470, 12804, 187, 186, 605, 50276, 19131, 359, 2118, 436, 747, 6333, 432, 3267, 725, 281, 29621, 16, 5414, 35, 15, 187, 186, 13017, 4228, 2991, 2590, 40333, 9, 2115, 26343, 8212, 10, 551, 996, 186, 338, 313, 681, 26343, 31979, 29593, 10, 551, 988, 186, 4464, 34359, 10, 8212, 481, 16435, 3074, 1874, 996, 186, 94, 996, 186, 7271, 551, 988, 186, 6050, 313, 681, 26343, 15, 788, 12753, 40333, 1082, 2239, 470, 10, 551, 2657, 186, 681, 26343, 15, 16435, 9, 17, 558, 988, 186, 94, 996, 186, 94, 187, 186, 94, 535, 186, 9486, 1176, 26343, 2794, 16801, 2115, 26343, 9, 17441, 2115, 26343, 12822, 2548, 1511, 10, 551, 6886, 186, 29046, 5455, 4229, 5455, 426, 755, 26028, 29046, 5455, 1874, 996, 186, 1413, 5455, 7140, 5455, 426, 1799, 1080, 15, 788, 1413, 9, 20188, 5455, 15, 788, 15852, 6020, 6886, 186, 2115, 26343, 8212, 28, 996, 186, 338, 313, 881, 31979, 27426, 4947, 12822, 2548, 10, 551, 988, 186, 33751, 1080, 15, 12787, 832, 460, 4947, 9, 20188, 5455, 558, 988, 186, 681, 26343, 426, 747, 29593, 3233, 2548, 9, 14267, 5455, 13, 4229, 5455, 15, 32426, 5715, 470, 13, 2657, 186, 33751, 1080, 15, 788, 3233, 2548, 8224, 6020, 996, 186, 94, 996, 186, 7271, 604, 313, 881, 31979, 27426, 34359, 12822, 2548, 10, 551, 988, 186, 681, 26343, 426, 747, 29593, 3233, 2548, 9, 14267, 5455, 13, 4229, 5455, 15, 32426, 5715, 470, 13, 2657, 186, 33751, 1080, 15, 788, 3233, 2548, 8224, 6020, 996, 186, 94, 996, 186, 7271, 604, 313, 881, 31979, 27426, 29181, 12822, 2548, 10, 551, 988, 186, 681, 26343, 426, 747, 6398, 3233, 2548, 9, 14267, 5455, 13, 4229, 5455, 15, 32426, 5715, 2657, 186, 33751, 1080, 15, 788, 3233, 2548, 8224, 6020, 996, 186, 94, 996, 186, 7271, 551, 1380, 33106, 12822, 2548, 988, 186, 2776, 3935, 426, 346, 28240, 1135, 7551, 2856, 39960, 5550, 559, 1511, 15, 788, 4947, 5023, 788, 21595, 2402, 1082, 559, 346, 2262, 346, 559, 2657, 186, 20188, 5455, 15, 788, 5455, 1874, 988, 186, 33751, 1080, 15, 9691, 6800, 21611, 9, 8559, 558, 988, 186, 2309, 3635, 28, 996, 186, 94, 996, 186, 2309, 8212, 28, 187, 186, 94, 535, 186, 9486, 12419, 556, 8932, 27290, 1082, 551, 996, 186, 17441, 2115, 26343, 12822, 2548, 809, 2548, 28, 996, 186, 338, 313, 28692, 2946, 3623, 2295, 3635, 10, 551, 988, 186, 338, 313, 261, 31696, 12905, 6649, 551, 2657, 186, 2309, 3221, 28, 988, 186, 94, 988, 186, 1545, 2548, 426, 313, 17441, 2115, 26343, 12822, 2548, 10, 13818, 2548, 28, 996, 186, 94, 996, 186, 7271, 551, 988, 186, 1545, 2548, 426, 313, 17441, 2115, 26343, 12822, 2548, 10, 5426, 2946, 3623, 15, 788, 12822, 2548, 1874, 996, 186, 94, 996, 186, 12822, 2548, 2946, 3623, 622, 3623, 426, 988, 186, 33751, 1080, 15, 788, 2548, 2946, 3623, 9, 1545, 2548, 15, 788, 6180, 21873, 2765, 16324, 8447, 6020, 996, 186, 338, 45496, 1212, 3623, 31979, 7327, 2765, 2548, 2946, 3623, 1228, 551, 988, 186, 2309, 3221, 28, 996, 186, 94, 996, 186, 6180, 2765, 2548, 2946, 3623, 1673, 2765, 2946, 3623, 426, 313, 6180, 2765, 2548, 2946, 3623, 10, 622, 3623, 28, 996, 186, 17441, 6180, 2765, 12822, 2548, 1673, 2765, 2548, 426, 988, 186, 4464, 17441, 6180, 2765, 12822, 2548, 10, 1673, 2765, 2946, 3623, 15, 788, 12822, 2548, 6020, 996, 186, 338, 313, 3423, 2765, 2548, 15, 788, 8932, 4947, 2765, 5023, 3281, 1082, 3613, 470, 10, 551, 988, 186, 2309, 2032, 28, 996, 186, 94, 996, 186, 2309, 313, 3423, 2765, 2548, 15, 788, 8932, 4947, 2765, 5023, 3281, 1082, 3613, 470, 558, 187, 186, 94, 535, 186, 9486, 12419, 556, 37828, 40333, 1082, 551, 996, 186, 17441, 2115, 26343, 12822, 2548, 809, 2548, 28, 996, 186, 338, 313, 28692, 2946, 3623, 2295, 3635, 10, 551, 988, 186, 338, 313, 261, 31696, 12905, 6649, 551, 2657, 186, 2309, 3221, 28, 988, 186, 94, 988, 186, 1545, 2548, 426, 313, 17441, 2115, 26343, 12822, 2548, 10, 13818, 2548, 28, 996, 186, 94, 996, 186, 7271, 551, 988, 186, 1545, 2548, 426, 313, 17441, 2115, 26343, 12822, 2548, 10, 5426, 2946, 3623, 15, 788, 12822, 2548, 1874, 996, 186, 94, 6886, 186, 605, 5838, 27, 604, 247, 346, 2437, 3, 760, 556, 2605, 4910, 283, 18566, 417, 452, 3558, 3470, 13, 2613, 996, 186, 605, 50276, 2437, 13, 7503, 24954, 13, 3966, 904, 840, 352, 6993, 751, 247, 2605, 13, 4495, 326, 627, 996, 186, 605, 50276, 11425, 320, 642, 4465, 4910, 323, 268, 87, 649, 13, 268, 87, 2612, 13, 2613, 285, 7503, 966, 4295, 15, 996, 186, 605, 50276, 2598, 1051, 352, 1537, 417, 320, 1175, 281, 1091, 346, 5672, 3, 323, 816, 12669, 604, 253, 1511, 310, 271, 996, 186, 605, 50276, 14966, 1171, 27426, 4947, 12822, 2548, 15, 6886, 186, 12822, 2548, 2946, 3623, 622, 3623, 426, 988, 186, 33751, 1080, 15, 788, 2548, 2946, 3623, 9, 1545, 2548, 15, 788, 6180, 21873, 2765, 16324, 8447, 6020, 996, 186, 338, 45496, 1212, 3623, 31979, 7327, 2765, 2548, 2946, 3623, 1228, 551, 988, 186, 2309, 3221, 28, 996, 186, 94, 996, 186, 6180, 2765, 2548, 2946, 3623, 1673, 2765, 2946, 3623, 426, 313, 6180, 2765, 2548, 2946, 3623, 10, 622, 3623, 28, 996, 186, 17441, 6180, 2765, 12822, 2548, 1673, 2765, 2548, 426, 988, 186, 4464, 17441, 6180, 2765, 12822, 2548, 10, 1673, 2765, 2946, 3623, 15, 788, 12822, 2548, 6020, 6886, 186, 2309, 313, 3423, 2765, 2548, 15, 788, 6942, 2765, 5023, 3281, 1082, 3613, 470, 2785, 988, 186, 3423, 2765, 2548, 15, 788, 8932, 4947, 2765, 5023, 3281, 1082, 3613, 470, 558, 187, 186, 94, 535, 186, 9486, 2991, 823, 4947, 2548, 8932, 27290, 9, 2115, 26343, 8212, 13, 7327, 2765, 2548, 2946, 3623, 1673, 2765, 2946, 3623, 10, 988, 186, 34832, 367, 5470, 5330, 551, 6886, 186, 17441, 2115, 26343, 12822, 2548, 1511, 426, 313, 17441, 2115, 26343, 12822, 2548, 10, 13818, 2548, 28, 6886, 186, 1542, 313, 12822, 2548, 2946, 3623, 2613, 2946, 3623, 15628, 456, 1163, 1673, 2765, 2946, 3623, 15, 788, 8932, 4947, 2765, 6649, 551, 988, 186, 338, 45496, 4793, 2946, 3623, 15628, 456, 31979, 11760, 4947, 2548, 2946, 3623, 1228, 551, 2657, 186, 33751, 1080, 15, 9691, 6800, 21611, 9, 4793, 2946, 3623, 15628, 456, 15, 788, 4947, 5023, 788, 21595, 2402, 1082, 559, 2664, 186, 3, 2326, 835, 11760, 4947, 2548, 2946, 3623, 3264, 323, 346, 559, 1511, 15, 32426, 6020, 2657, 186, 25674, 28, 988, 186, 94, 988, 186, 8932, 4947, 2548, 2946, 3623, 2613, 2548, 2946, 3623, 426, 313, 8932, 4947, 2548, 2946, 3623, 10, 2613, 2946, 3623, 15628, 456, 28, 988, 186, 12822, 2548, 2946, 3623, 2613, 4947, 2548, 2946, 3623, 426, 2657, 186, 33751, 1080, 15, 788, 2548, 2946, 3623, 9, 4793, 2548, 2946, 3623, 15, 788, 8932, 4947, 16324, 8447, 6020, 988, 186, 338, 45496, 4793, 4947, 2548, 2946, 3623, 31979, 1176, 26343, 2548, 2946, 3623, 1228, 551, 2657, 186, 33751, 1080, 15, 9691, 6800, 21611, 9, 4793, 2946, 3623, 15628, 456, 15, 788, 4947, 5023, 788, 21595, 2402, 1082, 559, 2664, 186, 3, 2326, 835, 1176, 26343, 2548, 2946, 3623, 3264, 323, 346, 559, 1511, 15, 32426, 6020, 2657, 186, 25674, 28, 988, 186, 94, 11866, 186, 17441, 12822, 2548, 2613, 4947, 12822, 2548, 426, 2613, 2548, 2946, 3623, 15, 788, 12822, 2548, 1874, 988, 186, 338, 313, 4793, 4947, 12822, 2548, 31979, 27426, 8932, 4947, 12822, 2548, 10, 551, 2657, 186, 18788, 26567, 8932, 4947, 4464, 17441, 8932, 4947, 12822, 2548, 10, 2613, 4947, 12822, 2548, 558, 988, 186, 94, 988, 186, 7271, 604, 313, 4793, 4947, 12822, 2548, 31979, 27426, 32170, 8932, 4947, 12822, 2548, 10, 551, 2657, 186, 18788, 26567, 32170, 8932, 4947, 4464, 17441, 32170, 8932, 4947, 12822, 2548, 10, 2613, 4947, 12822, 2548, 558, 988, 186, 94, 988, 186, 7271, 604, 313, 4793, 4947, 12822, 2548, 31979, 27426, 8207, 4128, 32170, 8932, 4947, 12822, 2548, 10, 551, 2657, 186, 18788, 8207, 4128, 32170, 8932, 4947, 9, 2664, 186, 9, 17441, 8207, 4128, 32170, 8932, 4947, 12822, 2548, 10, 2613, 4947, 12822, 2548, 558, 988, 186, 94, 988, 186, 7271, 551, 2657, 186, 22408, 747, 22265, 5330, 9, 2664, 186, 3, 20920, 2613, 966, 1511, 27, 346, 559, 2613, 4947, 12822, 2548, 15, 788, 4947, 5023, 788, 21595, 2402, 6020, 988, 186, 94, 996, 186, 94, 187, 186, 94, 535, 186, 9486, 2991, 4647, 26567, 8932, 4947, 9, 17441, 8932, 4947, 12822, 2548, 2613, 10, 12326, 367, 5470, 5330, 551, 996, 186, 36, 377, 2115, 26343, 2548, 6944, 4947, 2548, 426, 988, 186, 788, 11752, 2943, 4947, 2548, 9, 4793, 15, 788, 8932, 4947, 16324, 8447, 6020, 996, 186, 338, 313, 4524, 2943, 4947, 2548, 2295, 3635, 10, 551, 988, 186, 2309, 28, 996, 186, 94, 996, 186, 4947, 6180, 12822, 23372, 863, 84, 426, 2613, 15, 788, 23372, 1874, 996, 186, 565, 8409, 426, 367, 5470, 2946, 663, 1080, 15, 2760, 16467, 1992, 4807, 9, 33751, 1080, 13, 2613, 15, 788, 13736, 6020, 996, 186, 2437, 2548, 15, 1911, 26567, 8932, 4947, 9, 4524, 2943, 4947, 2548, 13, 6455, 23372, 9, 24729, 582, 8409, 558, 187, 186, 94, 535, 186, 9486, 2991, 4647, 26567, 32170, 8932, 4947, 9, 17441, 32170, 8932, 4947, 12822, 2548, 2613, 10, 988, 186, 34832, 367, 5470, 5330, 551, 996, 186, 36, 377, 2115, 26343, 2548, 6944, 5229, 426, 755, 11752, 2943, 4947, 2548, 9, 4793, 15, 788, 8932, 4947, 16324, 8447, 6020, 996, 186, 338, 313, 4524, 2943, 5229, 2295, 3635, 10, 551, 988, 186, 2309, 28, 996, 186, 94, 996, 186, 3233, 2548, 362, 2612, 4773, 426, 988, 186, 788, 32170, 8932, 3235, 11732, 3233, 2548, 9, 4793, 15, 788, 32170, 8932, 11732, 16324, 8447, 6020, 996, 186, 4947, 6180, 12822, 23372, 863, 84, 426, 2613, 15, 788, 23372, 1874, 996, 186, 565, 2613, 11732, 13736, 426, 988, 186, 49, 5470, 2946, 663, 1080, 15, 2760, 16467, 1992, 4807, 9, 33751, 1080, 13, 2613, 15, 788, 8932, 11732, 13736, 6020, 996, 186, 565, 8409, 4509, 55, 2612, 426, 367, 5470, 2946, 663, 1080, 15, 2760, 16467, 1992, 4807, 9, 33751, 1080, 13, 2613, 15, 788, 8932, 13736, 4509, 55, 2612, 6020, 996, 186, 2437, 2548, 15, 1911, 26567, 32170, 8932, 4947, 9, 4524, 2943, 5229, 13, 6455, 23372, 9, 24729, 582, 988, 186, 4793, 11732, 13736, 13, 362, 2612, 4773, 13, 8409, 4509, 55, 2612, 558, 187, 186, 94, 535, 186, 9486, 2991, 4647, 8207, 4128, 32170, 8932, 4947, 9, 17441, 8207, 4128, 32170, 8932, 4947, 12822, 2548, 2613, 10, 988, 186, 34832, 367, 5470, 5330, 551, 996, 186, 36, 377, 2115, 26343, 2548, 6944, 5229, 426, 755, 11752, 2943, 4947, 2548, 9, 4793, 15, 788, 8932, 4947, 16324, 8447, 6020, 996, 186, 338, 313, 4524, 2943, 5229, 2295, 3635, 10, 551, 988, 186, 2309, 28, 996, 186, 94, 996, 186, 3233, 2548, 362, 2612, 4773, 426, 988, 186, 788, 32170, 8932, 3235, 11732, 3233, 2548, 9, 4793, 15, 788, 32170, 8932, 11732, 16324, 8447, 6020, 996, 186, 4947, 6180, 12822, 23372, 863, 84, 426, 2613, 15, 788, 23372, 1874, 996, 186, 565, 2613, 11732, 13736, 426, 988, 186, 49, 5470, 2946, 663, 1080, 15, 2760, 16467, 1992, 4807, 9, 33751, 1080, 13, 2613, 15, 788, 8932, 11732, 13736, 6020, 996, 186, 565, 8409, 4509, 55, 2612, 426, 367, 5470, 2946, 663, 1080, 15, 2760, 16467, 1992, 4807, 9, 33751, 1080, 13, 2613, 15, 788, 8932, 13736, 4509, 55, 2612, 6020, 996, 186, 2437, 2548, 15, 1911, 8207, 4128, 32170, 8932, 4947, 9, 4524, 2943, 5229, 13, 6455, 23372, 9, 24729, 582, 988, 186, 4793, 11732, 13736, 13, 362, 2612, 4773, 13, 8409, 4509, 55, 2612, 558, 187, 186, 94, 535, 186, 9486, 330, 377, 2115, 26343, 2548, 755, 11752, 2943, 4947, 2548, 9, 16324, 8447, 1924, 8447, 10, 551, 996, 186, 12822, 2548, 2946, 3623, 2613, 11752, 2943, 2946, 3623, 426, 1799, 1080, 15, 788, 2548, 2946, 3623, 9, 15352, 8447, 558, 996, 186, 338, 45496, 4793, 11752, 2943, 2946, 3623, 31979, 1176, 26343, 2548, 2946, 3623, 1228, 551, 988, 186, 33751, 1080, 15, 9691, 6800, 21611, 9, 4793, 11752, 2943, 2946, 3623, 15, 788, 4947, 5023, 788, 21595, 2402, 1082, 559, 2657, 186, 3, 2326, 835, 1176, 26343, 2548, 2946, 3623, 3264, 323, 2613, 966, 23715, 988, 186, 2309, 3635, 28, 996, 186, 94, 996, 186, 2115, 26343, 2548, 2946, 3623, 2613, 2946, 3623, 426, 313, 2115, 26343, 2548, 2946, 3623, 10, 2613, 11752, 2943, 2946, 3623, 28, 996, 186, 36, 377, 2115, 26343, 2548, 6944, 4947, 2548, 426, 2613, 2946, 3623, 15, 788, 4947, 2548, 1874, 996, 186, 338, 313, 4524, 2943, 4947, 2548, 2295, 3635, 10, 551, 988, 186, 33751, 1080, 15, 9691, 6800, 21611, 1587, 11752, 2943, 2613, 966, 1511, 310, 3635, 23715, 996, 186, 94, 996, 186, 2309, 6944, 4947, 2548, 28, 187, 186, 94, 535, 186, 9486, 5128, 2548, 755, 32170, 8932, 3235, 11732, 3233, 2548, 9, 16324, 8447, 1924, 8447, 10, 551, 996, 186, 12822, 2548, 2946, 3623, 362, 67, 4773, 2946, 3623, 426, 1799, 1080, 15, 788, 2548, 2946, 3623, 9, 15352, 8447, 558, 996, 186, 338, 313, 30890, 4773, 2946, 3623, 3613, 3635, 10, 551, 988, 186, 338, 313, 30890, 4773, 2946, 3623, 31979, 47767, 2548, 2946, 3623, 10, 551, 2657, 186, 2309, 362, 67, 4773, 2946, 3623, 15, 788, 3233, 2548, 1874, 988, 186, 94, 996, 186, 94, 996, 186, 33751, 1080, 15, 9691, 6800, 21611, 1587, 10203, 839, 247, 12314, 25750, 11760, 5270, 47767, 23715, 996, 186, 2309, 747, 47767, 3233, 2548, 1874, 187, 186, 94, 535, 186, 9486, 4228, 330, 377, 2115, 26343, 2548, 15, 4947, 6180, 23372, 6455, 23372, 9, 988, 186, 4947, 6180, 12822, 23372, 863, 84, 10, 551, 996, 186, 36, 377, 2115, 26343, 2548, 15, 11501, 619, 11501, 28, 996, 186, 16065, 313, 24729, 15, 788, 11501, 6649, 551, 988, 186, 5045, 35283, 27, 2657, 186, 2577, 11501, 426, 330, 377, 2115, 26343, 2548, 15, 11501, 15, 39213, 1864, 28, 2657, 186, 7054, 28, 988, 186, 5045, 4653, 2415, 9649, 1703, 27, 2657, 186, 2577, 11501, 426, 330, 377, 2115, 26343, 2548, 15, 11501, 15, 39129, 9649, 1703, 28, 2657, 186, 7054, 28, 988, 186, 5045, 4653, 44882, 27, 2657, 186, 2577, 11501, 426, 330, 377, 2115, 26343, 2548, 15, 11501, 15, 3175, 44882, 28, 2657, 186, 7054, 28, 988, 186, 6986, 27, 2657, 186, 2577, 11501, 426, 330, 377, 2115, 26343, 2548, 15, 11501, 15, 5993, 19871, 28, 2657, 186, 7054, 28, 996, 186, 94, 996, 186, 36, 377, 2115, 26343, 2548, 15, 8324, 619, 8324, 28, 996, 186, 16065, 313, 24729, 15, 788, 8324, 6649, 551, 988, 186, 5045, 657, 31249, 31440, 27, 2657, 186, 2577, 8324, 426, 330, 377, 2115, 26343, 2548, 15, 8324, 15, 55, 31249, 31440, 28, 2657, 186, 7054, 28, 988, 186, 5045, 12229, 1864, 27, 2657, 186, 2577, 8324, 426, 330, 377, 2115, 26343, 2548, 15, 8324, 15, 38386, 28, 2657, 186, 7054, 28, 988, 186, 5045, 401, 4873, 8112, 27, 2657, 186, 2577, 8324, 426, 330, 377, 2115, 26343, 2548, 15, 8324, 15, 39, 4873, 8112, 28, 2657, 186, 7054, 28, 988, 186, 6986, 27, 2657, 186, 2577, 8324, 426, 330, 377, 2115, 26343, 2548, 15, 8324, 15, 5993, 19871, 28, 2657, 186, 7054, 28, 996, 186, 94, 996, 186, 2309, 747, 330, 377, 2115, 26343, 2548, 15, 4947, 6180, 23372, 9, 2577, 11501, 13, 619, 8324, 558, 187, 186, 94, 535, 186, 9486, 2991, 823, 22282, 9, 2115, 26343, 8212, 13, 7327, 2765, 2548, 2946, 3623, 1673, 2765, 2946, 3623, 10, 551, 6886, 186, 17441, 2115, 26343, 12822, 2548, 1511, 426, 313, 17441, 2115, 26343, 12822, 2548, 10, 13818, 2548, 28, 6886, 186, 1542, 313, 12822, 2548, 2946, 3623, 3558, 2548, 2946, 3623, 15628, 456, 1163, 1673, 2765, 2946, 3623, 15, 788, 20226, 2765, 6649, 551, 988, 186, 23170, 15726, 426, 2032, 28, 988, 186, 338, 313, 14360, 2548, 2946, 3623, 15628, 456, 31979, 17792, 2548, 2946, 3623, 10, 551, 2657, 186, 20226, 2548, 2946, 3623, 3558, 2548, 2946, 3623, 426, 313, 20226, 2548, 2946, 3623, 10, 3558, 2548, 2946, 3623, 15628, 456, 28, 2657, 186, 2776, 3558, 2402, 426, 3558, 2548, 2946, 3623, 15, 32426, 1874, 28122, 186, 565, 8409, 426, 2664, 186, 49, 5470, 2946, 663, 1080, 15, 2760, 16467, 1992, 4807, 9, 33751, 1080, 13, 3558, 2548, 2946, 3623, 15, 788, 13736, 6020, 2657, 186, 4947, 6180, 12822, 23372, 3558, 23372, 426, 3558, 2548, 2946, 3623, 15, 788, 11756, 1874, 2657, 186, 14360, 23372, 15, 788, 11501, 1874, 1380, 24202, 27, 513, 1633, 342, 436, 285, 643, 12474, 2657, 186, 12822, 2548, 2946, 3623, 1673, 2946, 3623, 426, 3558, 2548, 2946, 3623, 15, 788, 6180, 2548, 2946, 3623, 1874, 28122, 186, 338, 313, 3423, 2946, 3623, 31979, 1176, 26343, 2548, 2946, 3623, 10, 551, 2664, 186, 2115, 26343, 2548, 2946, 3623, 809, 2946, 3623, 426, 7308, 186, 4464, 2115, 26343, 2548, 2946, 3623, 10, 1673, 2946, 3623, 481, 788, 18712, 2946, 3623, 9, 9220, 186, 2115, 26343, 2548, 2946, 3623, 15, 2437, 558, 2664, 186, 338, 313, 1545, 2946, 3623, 3613, 3635, 10, 551, 7308, 186, 3423, 2946, 3623, 426, 809, 2946, 3623, 28, 2664, 186, 94, 2657, 186, 94, 2657, 186, 3233, 2548, 1673, 3233, 2548, 426, 1673, 2946, 3623, 15, 788, 3233, 2548, 1874, 2657, 186, 23170, 310, 49463, 917, 6542, 28, 2657, 186, 338, 313, 3423, 2946, 3623, 31979, 11782, 2548, 2946, 3623, 10, 551, 2664, 186, 261, 49463, 917, 6542, 426, 6048, 6542, 2548, 2946, 3623, 10, 1673, 2946, 3623, 481, 261, 49463, 917, 6542, 1874, 2657, 186, 94, 2657, 186, 7271, 551, 2664, 186, 261, 49463, 917, 6542, 426, 3221, 28, 2657, 186, 94, 2657, 186, 338, 313, 3423, 3233, 2548, 2295, 3635, 10, 551, 2664, 186, 338, 313, 3423, 2946, 3623, 31979, 14140, 1483, 2548, 2946, 3623, 3857, 7308, 186, 4464, 18204, 1483, 2548, 2946, 3623, 10, 1673, 2946, 3623, 481, 261, 2302, 2548, 6649, 551, 7308, 186, 9671, 49, 5470, 49194, 20226, 3558, 426, 747, 18193, 49, 5470, 49194, 20226, 9, 33751, 1080, 13, 9220, 186, 14360, 2402, 13, 1673, 2946, 3623, 13, 8409, 558, 7308, 186, 25011, 15, 1911, 9, 14360, 558, 7308, 186, 15658, 25821, 15, 1065, 9, 10946, 13, 346, 7716, 64, 10560, 3287, 2664, 186, 94, 2664, 186, 7271, 551, 7308, 186, 33751, 1080, 15, 9691, 6800, 21611, 1587, 5414, 35, 42982, 27, 1621, 9436, 323, 346, 559, 3558, 2402, 559, 9220, 186, 3, 346, 559, 1673, 2946, 3623, 15, 788, 12822, 2548, 5023, 788, 4947, 5023, 788, 21595, 2402, 1082, 559, 9220, 186, 3, 275, 8212, 346, 559, 8212, 15, 32426, 6020, 2664, 186, 94, 2657, 186, 94, 2657, 186, 7271, 551, 2664, 186, 9671, 49, 5470, 49194, 20226, 3558, 426, 7308, 186, 1826, 18193, 49, 5470, 49194, 20226, 9, 33751, 1080, 13, 3558, 2402, 13, 1673, 2946, 3623, 13, 8409, 558, 2664, 186, 25011, 15, 1911, 9, 14360, 558, 2664, 186, 2437, 2548, 15, 1911, 20226, 9, 14360, 2402, 13, 1673, 3233, 2548, 13, 310, 49463, 917, 6542, 13, 7308, 186, 28985, 23372, 9, 14360, 23372, 582, 8409, 558, 2657, 186, 94, 988, 186, 94, 988, 186, 7271, 604, 313, 14360, 2548, 2946, 3623, 15628, 456, 31979, 46222, 5034, 2548, 2946, 3623, 10, 551, 2657, 186, 23938, 5034, 2548, 2946, 3623, 49860, 2548, 2946, 3623, 426, 2664, 186, 9, 23938, 5034, 2548, 2946, 3623, 10, 3558, 2548, 2946, 3623, 15628, 456, 28, 2657, 186, 2776, 1673, 2402, 426, 49860, 2548, 2946, 3623, 15, 32426, 1874, 2657, 186, 12753, 6555, 31437, 426, 49860, 2548, 2946, 3623, 15, 788, 12753, 6555, 1874, 2657, 186, 605, 24202, 27, 690, 789, 2657, 186, 81, 5470, 6800, 1898, 6074, 7474, 9, 2520, 13, 2664, 186, 3, 5498, 626, 871, 849, 281, 4647, 46222, 5034, 2548, 2946, 3623, 1673, 2402, 346, 559, 1673, 2402, 559, 7308, 186, 3, 285, 1318, 346, 559, 31437, 559, 346, 1561, 346, 559, 13818, 2548, 15, 32426, 6020, 988, 186, 94, 988, 186, 7271, 604, 313, 14360, 2548, 2946, 3623, 15628, 456, 31979, 25750, 11594, 3235, 11732, 2548, 2946, 3623, 10, 551, 2657, 186, 32170, 11594, 3235, 11732, 2548, 2946, 3623, 362, 85, 12030, 2946, 3623, 426, 2664, 186, 9, 32170, 11594, 3235, 11732, 2548, 2946, 3623, 10, 3558, 2548, 2946, 3623, 15628, 456, 28, 2657, 186, 2776, 362, 649, 12030, 20226, 2402, 426, 362, 85, 12030, 2946, 3623, 15, 788, 20226, 2402, 1874, 2657, 186, 565, 8409, 426, 362, 85, 12030, 2946, 3623, 15, 788, 13736, 1874, 2657, 186, 9671, 49, 5470, 49194, 20226, 3558, 426, 747, 18193, 49, 5470, 49194, 20226, 9, 33751, 1080, 13, 2664, 186, 87, 649, 12030, 20226, 2402, 13, 362, 85, 12030, 2946, 3623, 13, 8409, 558, 2657, 186, 25011, 15, 1911, 9, 14360, 558, 2657, 186, 605, 2437, 2548, 15, 1911, 20226, 9, 87, 649, 12030, 20226, 2402, 13, 362, 85, 12030, 2946, 3623, 15, 788, 3233, 2548, 5715, 3221, 13, 8409, 558, 2657, 186, 2437, 2548, 15, 1911, 32170, 11594, 3235, 11732, 9, 87, 649, 12030, 20226, 2402, 13, 2664, 186, 20282, 12030, 2946, 3623, 15, 788, 3233, 2548, 5715, 8409, 558, 988, 186, 94, 988, 186, 7271, 604, 313, 14360, 2548, 2946, 3623, 15628, 456, 31979, 427, 7250, 2548, 2946, 3623, 10, 551, 2657, 186, 605, 20389, 281, 1056, 2119, 326, 346, 2520, 3, 966, 2654, 7976, 327, 512, 3603, 47247, 253, 2657, 186, 605, 20494, 5426, 13, 533, 359, 878, 281, 2794, 253, 20494, 5426, 1309, 253, 2657, 186, 605, 8869, 273, 436, 966, 15, 313, 47, 7250, 2548, 2946, 3623, 285, 427, 7250, 2548, 12822, 2548, 513, 417, 1663, 2657, 186, 605, 452, 616, 1211, 18700, 8447, 481, 2657, 186, 605, 1384, 1518, 13391, 27, 1158, 436, 310, 247, 20494, 14813, 15, 2657, 186, 47, 7250, 2548, 2946, 3623, 20494, 2548, 2946, 3623, 426, 313, 47, 7250, 2548, 2946, 3623, 10, 3558, 2548, 2946, 3623, 15628, 456, 28, 2657, 186, 2776, 3558, 2548, 2402, 426, 20494, 2548, 2946, 3623, 15, 788, 2548, 2402, 1874, 2657, 186, 2776, 3558, 2402, 426, 20494, 2548, 2946, 3623, 15, 788, 20226, 2402, 1874, 50276, 605, 897, 436, 2657, 186, 605, 24202, 27, 359, 403, 7384, 326, 253, 8409, 310, 5058, 313, 17, 10, 323, 253, 1067, 15, 50276, 32783, 281, 2836, 2657, 186, 605, 50276, 3062, 281, 6583, 436, 15, 50276, 2513, 2455, 2712, 533, 816, 581, 20494, 1511, 32, 50276, 510, 268, 5470, 15, 20963, 2657, 186, 605, 50276, 8719, 684, 841, 512, 387, 8409, 470, 15, 2657, 186, 605, 24202, 27, 427, 7250, 3510, 403, 4390, 271, 2523, 323, 2657, 186, 605, 50276, 9671, 2115, 26343, 20226, 15, 18788, 3233, 2548, 22282, 5023, 2657, 186, 605, 50276, 32783, 281, 7409, 752, 281, 513, 1060, 15, 50276, 1147, 812, 320, 816, 672, 253, 2173, 2657, 186, 605, 50276, 681, 26343, 310, 247, 3558, 273, 3139, 15, 2657, 186, 338, 313, 881, 15, 32426, 5023, 22297, 9, 14360, 2548, 2402, 1228, 551, 2664, 186, 605, 844, 403, 42654, 984, 359, 1849, 574, 3374, 285, 513, 417, 871, 752, 310, 1469, 327, 2664, 186, 605, 50276, 255, 253, 2774, 15, 313, 42, 1158, 597, 497, 18925, 3374, 1051, 644, 247, 1223, 2698, 2664, 186, 605, 50276, 5035, 417, 1840, 253, 346, 338, 3, 1617, 15, 187, 605, 5879, 186, 81, 5470, 6800, 1898, 6074, 7474, 9, 2520, 13, 346, 52, 5985, 2784, 1176, 26343, 427, 7250, 1511, 3558, 27, 346, 559, 187, 605, 32062, 186, 14360, 2402, 559, 346, 1561, 346, 559, 1511, 15, 32426, 6020, 2664, 186, 605, 24202, 27, 11401, 12894, 15, 50276, 1276, 1057, 352, 1599, 672, 253, 26506, 2931, 1511, 2664, 186, 605, 50276, 8259, 882, 84, 342, 253, 1416, 273, 253, 8346, 1511, 15, 2664, 186, 25674, 28, 2657, 186, 94, 2657, 186, 605, 24202, 27, 2868, 253, 2181, 281, 513, 310, 281, 921, 326, 841, 403, 3510, 326, 403, 2657, 186, 605, 50276, 7769, 1561, 253, 12953, 273, 436, 4508, 1511, 15, 50276, 1552, 1537, 320, 2657, 186, 605, 50276, 783, 1659, 281, 513, 352, 1051, 326, 310, 604, 359, 1053, 626, 4271, 731, 11794, 2657, 186, 605, 50276, 71, 11822, 762, 253, 12953, 273, 436, 8212, 15, 187, 187, 605, 15540, 186, 17441, 12822, 2548, 2946, 3623, 20494, 18712, 2946, 3623, 426, 187, 605, 5879, 186, 47628, 2548, 2946, 3623, 15, 788, 47, 7250, 2548, 18712, 2946, 3623, 5023, 788, 45864, 2946, 3623, 1874, 187, 605, 187, 605, 15540, 186, 3233, 2548, 295, 7064, 426, 20494, 18712, 2946, 3623, 15, 788, 3233, 2548, 1874, 1380, 2327, 436, 187, 605, 15540, 186, 565, 295, 7064, 77, 426, 295, 7064, 15, 788, 10830, 1874, 1380, 2327, 436, 187, 605, 187, 605, 15540, 186, 17441, 12822, 2548, 40515, 983, 426, 20494, 2548, 2946, 3623, 15, 788, 12822, 2548, 1874, 187, 605, 187, 605, 15540, 186, 5178, 16467, 821, 426, 20494, 2548, 2946, 3623, 15, 788, 5496, 1874, 187, 605, 15540, 186, 565, 8409, 426, 470, 28, 1380, 3736, 33186, 24202, 537, 13, 187, 605, 15540, 186, 3233, 2548, 34900, 426, 20494, 2548, 2946, 3623, 15, 788, 3233, 2548, 1874, 187, 605, 15540, 186, 4947, 6180, 12822, 23372, 247, 426, 20494, 2548, 2946, 3623, 15, 788, 23372, 1874, 187, 605, 187, 605, 15540, 186, 605, 24202, 27, 11525, 436, 310, 987, 1051, 1384, 9204, 1797, 1051, 849, 16, 2811, 513, 359, 755, 8409, 32, 187, 605, 15540, 186, 9671, 19, 49, 5470, 20226, 3558, 426, 187, 605, 5879, 186, 1826, 18193, 19, 49, 5470, 20226, 9, 33751, 1080, 13, 3558, 2402, 13, 20494, 18712, 2946, 3623, 13, 8409, 558, 187, 605, 15540, 186, 25011, 15, 1911, 9, 14360, 558, 988, 186, 94, 988, 186, 7271, 604, 313, 14360, 2548, 2946, 3623, 15628, 456, 31979, 1621, 2548, 2946, 3623, 10, 551, 2657, 186, 17441, 12822, 2548, 13818, 2302, 2548, 426, 3558, 2548, 2946, 3623, 15628, 456, 15, 788, 12822, 2548, 1874, 2657, 186, 338, 313, 983, 2302, 2548, 31979, 27426, 26904, 20226, 12822, 2548, 10, 551, 2664, 186, 605, 24202, 27, 11401, 12894, 2712, 326, 12830, 1060, 313, 1178, 2740, 1127, 582, 923, 604, 359, 2664, 186, 605, 50276, 2887, 14261, 4647, 253, 1491, 15, 50276, 2042, 594, 13, 3164, 943, 2794, 271, 622, 3623, 2664, 186, 605, 50276, 1542, 253, 6221, 7852, 1511, 15, 2657, 186, 94, 2657, 186, 7271, 551, 2664, 186, 4608, 1070, 426, 3221, 28, 2657, 186, 94, 988, 186, 94, 988, 186, 7271, 551, 2657, 186, 4608, 1070, 426, 3221, 28, 988, 186, 94, 988, 186, 338, 6522, 4608, 1070, 10, 551, 2657, 186, 33751, 1080, 15, 9691, 6800, 21611, 9, 2664, 186, 14360, 2548, 2946, 3623, 15628, 456, 15, 788, 4947, 5023, 788, 21595, 2402, 1082, 559, 346, 342, 6221, 346, 559, 7308, 186, 14360, 2548, 2946, 3623, 15628, 456, 15, 788, 12822, 2548, 5023, 788, 4947, 5023, 788, 21595, 2402, 1082, 559, 7308, 186, 3, 12439, 323, 346, 559, 13818, 2548, 15, 32426, 6020, 988, 186, 94, 996, 186, 94, 187, 186, 94, 187, 187, 605, 186, 6930, 187, 605, 186, 475, 654, 3211, 31, 2302, 2548, 870, 3211, 31, 3400, 3745, 281, 10913, 1621, 2548, 715, 247, 8212, 1511, 407, 269, 1170, 187, 605, 186, 475, 352, 342, 247, 5058, 14, 3985, 2372, 3423, 15, 50276, 1552, 310, 247, 2372, 273, 247, 27451, 15414, 187, 605, 186, 475, 831, 588, 320, 13657, 281, 247, 2622, 10210, 6180, 3233, 2548, 672, 26877, 15, 187, 605, 186, 1738, 187, 605, 186, 9486, 966, 1621, 2548, 8725, 367, 5470, 12871, 6180, 551, 187, 605, 186, 186, 9486, 1621, 2548, 9, 49, 5470, 2946, 663, 1080, 1799, 1080, 10, 12326, 33142, 3233, 2548, 5330, 551, 187, 605, 623, 186, 12185, 9, 1826, 3976, 3233, 2548, 9, 33751, 1080, 15, 788, 3233, 2548, 8224, 35632, 470, 13, 470, 558, 187, 605, 186, 186, 94, 187, 605, 186, 94, 187, 605, 187, 94, 187 ]
/* ### * IP: GHIDRA * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package ghidra.app.util.pdb.pdbapplicator; import java.math.BigInteger; import java.util.*; import ghidra.app.util.SymbolPath; import ghidra.app.util.SymbolPathParser; import ghidra.app.util.bin.format.pdb.DefaultCompositeMember; import ghidra.app.util.bin.format.pdb2.pdbreader.*; import ghidra.app.util.bin.format.pdb2.pdbreader.type.*; import ghidra.program.model.data.*; import ghidra.util.Msg; import ghidra.util.exception.AssertException; import ghidra.util.exception.CancelledException; /* * Non java-doc: * Some truths: * For AbstractMsCompositeType: do not count on "count" to be zero when MsProperty is forward * reference (we have seen example of count==0 and not forward reference, though the majority * of the time the two go hand-in-hand. When these did not equate, it might have been when * there was no need for a forward reference and possibly only one definition--this would * require a closer look). */ /** * Applier for {@link AbstractCompositeMsType} types. */ public class CompositeTypeApplier extends AbstractComplexTypeApplier { // DO NOT DELETE. Might eliminate one path or might make an analyzer option. private static boolean applyBaseClasses = true; //private static boolean applyBaseClasses = false; private CppCompositeType classType; // private final static DataType NO_TYPE_DATATYPE = // new TypedefDataType("<NoType>", Undefined1DataType.dataType); // private Map<Integer, String> componentComments; private List<DefaultPdbUniversalMember> members; /** * Constructor for composite type applier, for transforming a composite into a * Ghidra DataType. * @param applicator {@link PdbApplicator} for which this class is working. * @param msType {@link AbstractCompositeMsType} to process. */ public CompositeTypeApplier(PdbApplicator applicator, AbstractCompositeMsType msType) { super(applicator, msType); String fullPathName = msType.getName(); symbolPath = new SymbolPath(SymbolPathParser.parse(fullPathName)); } CppCompositeType getClassType() { if (definitionApplier != null) { return ((CompositeTypeApplier) definitionApplier).getClassTypeInternal(); } return classType; } CppCompositeType getClassTypeInternal() { return classType; } List<DefaultPdbUniversalMember> getMembers() { return members; } // Mapping of forwardReference/definition must be done prior to this call. private void getOrCreateComposite() { if (dataType != null) { return; } AbstractComplexTypeApplier alternativeApplier = getAlternativeTypeApplier(); if (alternativeApplier != null) { dataType = alternativeApplier.getDataTypeInternal(); classType = ((CompositeTypeApplier) alternativeApplier).getClassTypeInternal(); } if (dataType != null) { return; } dataType = createEmptyComposite((AbstractCompositeMsType) msType); String mangledName = ((AbstractCompositeMsType) msType).getMangledName(); classType = new CppCompositeType((Composite) dataType, mangledName); classType.setName(getName()); classType.setSize(PdbApplicator.bigIntegerToInt(applicator, getSize())); if (msType instanceof AbstractClassMsType) { classType.setClass(); } else if (msType instanceof AbstractStructureMsType) { classType.setStruct(); } else if (msType instanceof AbstractUnionMsType) { classType.setUnion(); } classType.setFinal(isFinal()); } @Override void apply() throws PdbException, CancelledException { getOrCreateComposite(); Composite composite = (Composite) dataType; AbstractCompositeMsType type = (AbstractCompositeMsType) msType; MsProperty property = type.getMsProperty(); if (property.isForwardReference() && definitionApplier != null) { return; } if (!(composite instanceof CompositeDataTypeImpl)) { return; // A resolved version exists (multiple definitions). } applyOrDeferForDependencies(); } @Override void resolve() { if (!isForwardReference()) { super.resolve(); } } private void applyOrDeferForDependencies() throws PdbException, CancelledException { AbstractCompositeMsType type = (AbstractCompositeMsType) msType; MsProperty property = type.getMsProperty(); if (property.isForwardReference() && definitionApplier != null) { return; } // Add self applicator.addApplierDependency(this); // Add any dependees: base classes and members FieldListTypeApplier fieldListApplier = FieldListTypeApplier.getFieldListApplierSpecial( applicator, type.getFieldDescriptorListRecordNumber()); // Currently do not need this dependency, as we currently do not need any contents // of the base class for filling in this class for (MsTypeApplier baseApplierIterated : fieldListApplier.getBaseClassList()) { if (baseApplierIterated instanceof BaseClassTypeApplier) { BaseClassTypeApplier baseTypeApplier = (BaseClassTypeApplier) baseApplierIterated; MsTypeApplier applier = applicator.getTypeApplier(baseTypeApplier.getBaseClassRecordNumber()); if (applier instanceof CompositeTypeApplier) { CompositeTypeApplier dependencyApplier = ((CompositeTypeApplier) applier).getDependencyApplier(); applicator.addApplierDependency(this, dependencyApplier); // CompositeTypeApplier defApplier = // ((CompositeTypeApplier) applier).getDefinitionApplier(); // if (defApplier != null) { // applicator.addApplierDependency(this, defApplier); // } // else { // applicator.addApplierDependency(this, applier); // } setDeferred(); } } } for (MsTypeApplier memberTypeApplierIterated : fieldListApplier.getMemberList()) { applicator.checkCanceled(); if (memberTypeApplierIterated instanceof MemberTypeApplier) { MemberTypeApplier memberTypeApplier = (MemberTypeApplier) memberTypeApplierIterated; MsTypeApplier fieldApplier = memberTypeApplier.getFieldTypeApplier(); recurseAddDependency(fieldApplier); } // if (memberTypeApplierIterated instanceof NestedTypeApplier) { // recurseAddDependency(memberTypeApplierIterated); // } else if (memberTypeApplierIterated instanceof VirtualFunctionTablePointerTypeApplier) { applicator.addApplierDependency(this, memberTypeApplierIterated); } } if (!isDeferred()) { applyInternal(); } } private void recurseAddDependency(MsTypeApplier dependee) throws CancelledException, PdbException { // TODO: evaluate this and make changes... this work might be being taken care of in // ModifierTypeApplier if (dependee instanceof ModifierTypeApplier) { ModifierTypeApplier modifierApplier = (ModifierTypeApplier) dependee; recurseAddDependency(modifierApplier.getModifiedTypeApplier()); } else if (dependee instanceof CompositeTypeApplier) { CompositeTypeApplier defApplier = ((CompositeTypeApplier) dependee).getDefinitionApplier(CompositeTypeApplier.class); if (defApplier != null) { applicator.addApplierDependency(this, defApplier); } else { applicator.addApplierDependency(this, dependee); } setDeferred(); } // TODO: evaluate this and make changes... this work might be being taken care of in // ArrayTypeApplier else if (dependee instanceof ArrayTypeApplier) { applicator.addApplierDependency(this, dependee); setDeferred(); } // else if (dependee instanceof NestedTypeApplier) { // NestedTypeApplier nestedTypeApplier = (NestedTypeApplier) dependee; // AbstractMsTypeApplier nestedDefinitionApplier = // nestedTypeApplier.getNestedTypeDefinitionApplier(); // // Need to make sure that "this" class id dependent on all elements composing the // // nested definition, but we need to create the nested definition during the // // creation of this class. (NestedTypeApplier and NestedTypeMsType do not really // // have their own RecordNumber). // applicator.addApplierDependency(this, nestedDefinitionApplier); // setDeferred(); // } else if (dependee instanceof BitfieldTypeApplier) { RecordNumber recNum = ((AbstractBitfieldMsType) ((BitfieldTypeApplier) dependee).getMsType()).getElementRecordNumber(); MsTypeApplier underlyingApplier = applicator.getTypeApplier(recNum); if (underlyingApplier instanceof EnumTypeApplier) { applicator.addApplierDependency(this, underlyingApplier); setDeferred(); } } //We are assuming that bitfields on typedefs will not be defined. } private void applyInternal() throws CancelledException, PdbException { if (isApplied()) { return; } Composite composite = (Composite) dataType; AbstractCompositeMsType type = (AbstractCompositeMsType) msType; boolean applyCpp = applyBaseClasses; if (type instanceof AbstractUnionMsType) { applyCpp = false; if (hasBaseClasses()) { pdbLogAndInfoMessage(this, "Unexpected base classes for union type: " + type.getName()); } } if (applyCpp) { applyCpp(composite, type); } else { applyBasic(composite, type); } setApplied(); } //============================================================================================== private void applyBasic(Composite composite, AbstractCompositeMsType type) throws CancelledException, PdbException { //boolean isClass = (type instanceof AbstractClassMsType || actsLikeClass(applicator, type)); boolean isClass = (type instanceof AbstractClassMsType); int size = getSizeInt(); // Fill in composite definition details. FieldListTypeApplier fieldListApplier = FieldListTypeApplier.getFieldListApplierSpecial( applicator, type.getFieldDescriptorListRecordNumber()); clearComponents(composite); members = new ArrayList<>(); componentComments = new HashMap<>(); addMembers(composite, fieldListApplier); if (!DefaultCompositeMember.applyDataTypeMembers(composite, isClass, size, members, msg -> reconstructionWarn(msg), applicator.getCancelOnlyWrappingMonitor())) { clearComponents(composite); } setComponentComments(composite); } private void setComponentComments(Composite composite) { if (composite instanceof Structure) { Structure structure = (Structure) composite; for (Map.Entry<Integer, String> entry : componentComments.entrySet()) { DataTypeComponent component = structure.getComponentAt(entry.getKey()); if (component == null) { pdbLogAndInfoMessage(this, "Could not set comment for 'missing' componenent " + entry.getKey() + " for: " + structure.getName()); return; } component.setComment(entry.getValue()); } } } //============================================================================================== private void applyCpp(Composite composite, AbstractCompositeMsType type) throws PdbException, CancelledException { // Fill in composite definition details. FieldListTypeApplier fieldListApplier = FieldListTypeApplier.getFieldListApplierSpecial( applicator, type.getFieldDescriptorListRecordNumber()); clearComponents(composite); members = new ArrayList<>(); // TODO: temporary for old "basic" mechanism componentComments = new HashMap<>(); // TODO: temporary for old "basic" mechanism addClassTypeBaseClasses(composite, fieldListApplier); addMembers(composite, fieldListApplier); if (!classType.validate()) { // TODO: Investigate. We should do this check for some classes somewhere. Should // we do it here. Set breakpoint here to investigate. } classType.createLayout(applicator.getPdbApplicatorOptions().getClassLayout(), applicator.getVbtManager(), applicator.getCancelOnlyWrappingMonitor()); } //============================================================================================== private void reconstructionWarn(String msg) { //TODO: if statement/contents temporary if (msg.contains("failed to align") && hasHiddenComponents()) { msg = msg.replaceFirst("PDB", "PDB CLASS"); } Msg.warn(this, msg); } //============================================================================================== @Override void deferredApply() throws PdbException, CancelledException { if (isDeferred()) { applyInternal(); } } //============================================================================================== //============================================================================================== @Override CompositeTypeApplier getDependencyApplier() { if (definitionApplier != null && definitionApplier instanceof CompositeTypeApplier) { return (CompositeTypeApplier) definitionApplier; } return this; } String getName() { return getMsType().getName(); } @Override DataType getDataType() { if (resolved) { return resolvedDataType; } getOrCreateComposite(); return dataType; } @Override DataType getCycleBreakType() { if (isForwardReference() && definitionApplier != null && definitionApplier.isApplied()) { return definitionApplier.getDataType(); } return dataType; } boolean hasUniqueName() { return ((AbstractCompositeMsType) msType).getMsProperty().hasUniqueName(); } @Override BigInteger getSize() { return ((AbstractCompositeMsType) getDependencyApplier().getMsType()).getSize(); } // TODO: // Taken from PdbUtil without change. Would have had to change access on class PdbUtil and // this ensureSize method to public to make it accessible. Can revert to using PdbUtil // once we move this new module from Contrib to Features/PDB. final static void clearComponents(Composite composite) { if (composite instanceof Structure) { ((Structure) composite).deleteAll(); } else { while (composite.getNumComponents() > 0) { composite.delete(0); } } } private Composite createEmptyComposite(AbstractCompositeMsType type) { SymbolPath fixedPath = getFixedSymbolPath(); CategoryPath categoryPath = applicator.getCategory(fixedPath.getParent()); Composite composite; if (type instanceof AbstractClassMsType) { applicator.predefineClass(fixedPath); composite = new StructureDataType(categoryPath, fixedPath.getName(), 0, applicator.getDataTypeManager()); } else if (type instanceof AbstractStructureMsType) { composite = new StructureDataType(categoryPath, fixedPath.getName(), 0, applicator.getDataTypeManager()); } else if (type instanceof AbstractUnionMsType) { composite = new UnionDataType(categoryPath, fixedPath.getName(), applicator.getDataTypeManager()); } else { // InterfaceMsType String message = "Unsupported datatype (" + type.getClass().getSimpleName() + "): " + fixedPath.getPath(); applicator.appendLogMsg(message); return null; } return composite; } private boolean hasBaseClasses() { AbstractCompositeMsType defType; if (definitionApplier == null) { if (isForwardReference()) { return false; } defType = (AbstractCompositeMsType) msType; } else { defType = (AbstractCompositeMsType) definitionApplier.getMsType(); } MsTypeApplier applier = applicator.getTypeApplier(defType.getFieldDescriptorListRecordNumber()); if (!(applier instanceof FieldListTypeApplier)) { return false; } FieldListTypeApplier fieldListApplier = (FieldListTypeApplier) applier; AbstractFieldListMsType fieldListType = ((AbstractFieldListMsType) fieldListApplier.getMsType()); if (fieldListType.getBaseClassList().size() != 0) { return true; } return (fieldListType.getBaseClassList().size() != 0); } private boolean hasHiddenComponents() { AbstractCompositeMsType defType; if (definitionApplier == null) { if (isForwardReference()) { return false; } defType = (AbstractCompositeMsType) msType; } else { defType = (AbstractCompositeMsType) definitionApplier.getMsType(); } // Note: if a "class" only has structure fields--does not have member functions, base // class, virtual inheritance, etc., then it acts like a structure, meaning that there // should be no extra fields for pvft, pvbt, base and virtual class components. // So... it might not be good to return "true" for just checking if the type is an // instanceof AbstractClassMsType. MsTypeApplier applier = applicator.getTypeApplier(defType.getFieldDescriptorListRecordNumber()); if (!(applier instanceof FieldListTypeApplier)) { return false; } FieldListTypeApplier fieldListApplier = (FieldListTypeApplier) applier; AbstractFieldListMsType fieldListType = ((AbstractFieldListMsType) fieldListApplier.getMsType()); return (fieldListType.getMethodList().size() != 0 || fieldListType.getBaseClassList().size() != 0); } private void addClassTypeBaseClasses(Composite composite, FieldListTypeApplier fieldListApplier) throws PdbException { AbstractCompositeMsType type = (AbstractCompositeMsType) msType; for (MsTypeApplier baseApplierIterated : fieldListApplier.getBaseClassList()) { if (!(baseApplierIterated instanceof BaseClassTypeApplier)) { applicator.appendLogMsg(baseApplierIterated.getClass().getSimpleName() + " seen where BaseClassTypeApplier expected for " + type.getName()); continue; } BaseClassTypeApplier baseTypeApplier = (BaseClassTypeApplier) baseApplierIterated; MsTypeApplier baseClassTypeApplier = applicator.getTypeApplier(baseTypeApplier.getBaseClassRecordNumber()); if (!(baseClassTypeApplier instanceof CompositeTypeApplier)) { applicator.appendLogMsg(baseApplierIterated.getClass().getSimpleName() + " seen where CompositeTypeApplier expected for " + type.getName()); continue; } AbstractMsType baseClassMsType = baseTypeApplier.getMsType(); if (baseClassMsType instanceof AbstractBaseClassMsType) { applyDirectBaseClass((AbstractBaseClassMsType) baseClassMsType); } else if (baseClassMsType instanceof AbstractVirtualBaseClassMsType) { applyDirectVirtualBaseClass((AbstractVirtualBaseClassMsType) baseClassMsType); } else if (baseClassMsType instanceof AbstractIndirectVirtualBaseClassMsType) { applyIndirectVirtualBaseClass( (AbstractIndirectVirtualBaseClassMsType) baseClassMsType); } else { throw new AssertException( "Unknown base class type: " + baseClassMsType.getClass().getSimpleName()); } } } private void applyDirectBaseClass(AbstractBaseClassMsType base) throws PdbException { CppCompositeType underlyingClassType = getUnderlyingClassType(base.getBaseClassRecordNumber()); if (underlyingClassType == null) { return; } ClassFieldMsAttributes atts = base.getAttributes(); int offset = PdbApplicator.bigIntegerToInt(applicator, base.getOffset()); classType.addDirectBaseClass(underlyingClassType, convertAttributes(atts), offset); } private void applyDirectVirtualBaseClass(AbstractVirtualBaseClassMsType base) throws PdbException { CppCompositeType underlyingCt = getUnderlyingClassType(base.getBaseClassRecordNumber()); if (underlyingCt == null) { return; } DataType vbtptr = getVirtualBaseTablePointerDataType(base.getVirtualBasePointerRecordNumber()); ClassFieldMsAttributes atts = base.getAttributes(); int basePointerOffset = PdbApplicator.bigIntegerToInt(applicator, base.getBasePointerOffset()); int offsetFromVbt = PdbApplicator.bigIntegerToInt(applicator, base.getBaseOffsetFromVbt()); classType.addDirectVirtualBaseClass(underlyingCt, convertAttributes(atts), basePointerOffset, vbtptr, offsetFromVbt); } private void applyIndirectVirtualBaseClass(AbstractIndirectVirtualBaseClassMsType base) throws PdbException { CppCompositeType underlyingCt = getUnderlyingClassType(base.getBaseClassRecordNumber()); if (underlyingCt == null) { return; } DataType vbtptr = getVirtualBaseTablePointerDataType(base.getVirtualBasePointerRecordNumber()); ClassFieldMsAttributes atts = base.getAttributes(); int basePointerOffset = PdbApplicator.bigIntegerToInt(applicator, base.getBasePointerOffset()); int offsetFromVbt = PdbApplicator.bigIntegerToInt(applicator, base.getBaseOffsetFromVbt()); classType.addIndirectVirtualBaseClass(underlyingCt, convertAttributes(atts), basePointerOffset, vbtptr, offsetFromVbt); } private CppCompositeType getUnderlyingClassType(RecordNumber recordNumber) { MsTypeApplier baseUnderlyingApplier = applicator.getTypeApplier(recordNumber); if (!(baseUnderlyingApplier instanceof CompositeTypeApplier)) { applicator.appendLogMsg(baseUnderlyingApplier.getClass().getSimpleName() + " seen where CompositeTypeApplier expected for base class."); return null; } CompositeTypeApplier baseApplier = (CompositeTypeApplier) baseUnderlyingApplier; CppCompositeType underlyingClassType = baseApplier.getClassType(); if (underlyingClassType == null) { applicator.appendLogMsg("Underlying base class type is null."); } return underlyingClassType; } private DataType getVirtualBaseTablePointerDataType(RecordNumber recordNumber) { MsTypeApplier vbptrApplier = applicator.getTypeApplier(recordNumber); if (vbptrApplier != null) { if (vbptrApplier instanceof PointerTypeApplier) { return vbptrApplier.getDataType(); } } applicator.appendLogMsg("Generating a generic Virtual Base Table Pointer."); return new PointerDataType(); } private static CppCompositeType.ClassFieldAttributes convertAttributes( ClassFieldMsAttributes atts) { CppCompositeType.Access myAccess; switch (atts.getAccess()) { case PUBLIC: myAccess = CppCompositeType.Access.PUBLIC; break; case PROTECTED: myAccess = CppCompositeType.Access.PROTECTED; break; case PRIVATE: myAccess = CppCompositeType.Access.PRIVATE; break; default: myAccess = CppCompositeType.Access.BLANK; break; } CppCompositeType.Property myProperty; switch (atts.getProperty()) { case VIRTUAL: myProperty = CppCompositeType.Property.VIRTUAL; break; case STATIC: myProperty = CppCompositeType.Property.STATIC; break; case FRIEND: myProperty = CppCompositeType.Property.FRIEND; break; default: myProperty = CppCompositeType.Property.BLANK; break; } return new CppCompositeType.ClassFieldAttributes(myAccess, myProperty); } private void addMembers(Composite composite, FieldListTypeApplier fieldListApplier) { AbstractCompositeMsType type = (AbstractCompositeMsType) msType; for (MsTypeApplier memberTypeApplierIterated : fieldListApplier.getMemberList()) { boolean handled = true; if (memberTypeApplierIterated instanceof MemberTypeApplier) { MemberTypeApplier memberTypeApplier = (MemberTypeApplier) memberTypeApplierIterated; String memberName = memberTypeApplier.getName(); int offset = PdbApplicator.bigIntegerToInt(applicator, memberTypeApplier.getOffset()); ClassFieldMsAttributes memberAttributes = memberTypeApplier.getAttribute(); memberAttributes.getAccess(); // TODO: do something with this and other attributes MsTypeApplier fieldApplier = memberTypeApplier.getFieldTypeApplier(); if (fieldApplier instanceof CompositeTypeApplier) { CompositeTypeApplier defApplier = ((CompositeTypeApplier) fieldApplier).getDefinitionApplier( CompositeTypeApplier.class); if (defApplier != null) { fieldApplier = defApplier; } } DataType fieldDataType = fieldApplier.getDataType(); boolean isFlexibleArray; if (fieldApplier instanceof ArrayTypeApplier) { isFlexibleArray = ((ArrayTypeApplier) fieldApplier).isFlexibleArray(); } else { isFlexibleArray = false; } if (fieldDataType == null) { if (fieldApplier instanceof PrimitiveTypeApplier && ((PrimitiveTypeApplier) fieldApplier).isNoType()) { DefaultPdbUniversalMember member = new DefaultPdbUniversalMember(applicator, memberName, fieldApplier, offset); members.add(member); componentComments.put(offset, "NO_TYPE"); } else { applicator.appendLogMsg("PDB Warning: No conversion for " + memberName + " " + fieldApplier.getMsType().getClass().getSimpleName() + " in composite " + composite.getName()); } } else { DefaultPdbUniversalMember member = new DefaultPdbUniversalMember(applicator, memberName, fieldApplier, offset); members.add(member); classType.addMember(memberName, fieldDataType, isFlexibleArray, convertAttributes(memberAttributes), offset); } } else if (memberTypeApplierIterated instanceof EnumerateTypeApplier) { EnumerateTypeApplier enumerateTypeApplier = (EnumerateTypeApplier) memberTypeApplierIterated; String fieldName = enumerateTypeApplier.getName(); Numeric numeric = enumerateTypeApplier.getNumeric(); // TODO: some work pdbLogAndInfoMessage(this, "Don't know how to apply EnumerateTypeApplier fieldName " + fieldName + " and value " + numeric + " within " + msType.getName()); } else if (memberTypeApplierIterated instanceof VirtualFunctionTablePointerTypeApplier) { VirtualFunctionTablePointerTypeApplier vtPtrApplier = (VirtualFunctionTablePointerTypeApplier) memberTypeApplierIterated; String vftPtrMemberName = vtPtrApplier.getMemberName(); int offset = vtPtrApplier.getOffset(); DefaultPdbUniversalMember member = new DefaultPdbUniversalMember(applicator, vftPtrMemberName, vtPtrApplier, offset); members.add(member); //classType.addMember(vftPtrMemberName, vtPtrApplier.getDataType(), false, offset); classType.addVirtualFunctionTablePointer(vftPtrMemberName, vtPtrApplier.getDataType(), offset); } else if (memberTypeApplierIterated instanceof NestedTypeApplier) { // Need to make sure that "this" class id dependent on all elements composing the // nested definition, but we need to create the nested definition during the // creation of this class. (NestedTypeApplier and NestedTypeMsType do not really // have their own RecordNumber). // 20200114: think this is a nested typedef. NestedTypeApplier nestedTypeApplier = (NestedTypeApplier) memberTypeApplierIterated; String memberTypeName = nestedTypeApplier.getTypeName(); String memberName = nestedTypeApplier.getMemberName(); // use this // TODO: we are assuming that the offset is zero (0) for the call. Need to dig // more to confirm this. Is ever anything but just one nested type? The pdb.exe // generates these all at offset 0. // TODO: Nested types are currently an issue for // DefaultCompositeMember.applyDataTypeMembers(). // Need to investigate what to do here. It could be just when the specific // composite is a member of itself. if (type.getName().equals(memberTypeName)) { // We are skipping because we've had issues and do not know what is going on // at the moment. (I think they were dependency issues... been a while.) // See not above the "if" condition. // pdbLogAndInfoMessage(this, "Skipping Composite Nested type member: " + // memberName + " within " + type.getName()); // TODO: Investigate. What does it mean when the internally defined type // conficts with the name of the outer type. continue; } // TODO: believe the thing to do is to show that these are types that are // defined within the namespace of this containing type. This might be // the place to do it... that is if we don't identify them separately // falling under the namespace of this composite. // AbstractMsTypeApplier nestedDefinitionApplier = // nestedTypeApplier.getNestedTypeDefinitionApplier().getDependencyApplier(); // // DataType ndt = nestedDefinitionApplier.getDataType(); //use this // int ndtl = ndt.getLength(); //use this // // AbstractMsType ndms = nestedTypeApplier.getMsType(); // // BigInteger val = nestedTypeApplier.getSize(); // int offset = 0; // ???? TODO.., // DataType nt = nestedTypeApplier.getDataType(); // ClassFieldMsAttributes a = nestedTypeApplier.getAttributes(); // // // TODO: hoping this is right... 20200521... how/where do we get offset? // Default2PdbMember member = // new Default2PdbMember(applicator, memberName, nestedDefinitionApplier, offset); // members.add(member); } else if (memberTypeApplierIterated instanceof NoTypeApplier) { AbstractMsType msNoType = memberTypeApplierIterated.getMsType(); if (msNoType instanceof AbstractStaticMemberMsType) { // TODO: Investigate anything that hits here (set break point), see if we // see dot apply the information. If so, probably should create an applier // for the contained MS type. } else { handled = false; } } else { handled = false; } if (!handled) { applicator.appendLogMsg( memberTypeApplierIterated.getClass().getSimpleName() + " with contained " + memberTypeApplierIterated.getMsType().getClass().getSimpleName() + " unexpected for " + msType.getName()); } } } // /** // * <code>NoType</code> provides ability to hang NoType into a composite type by faking // * it with a zero-length bitfield. This is a bit of a kludge // * This will be transformed to a normal BitFieldDataType when cloned. // */ // private class NoType extends PdbBitField { // private NoType(PdbApplicator applicator) throws InvalidDataTypeException { // super(new CharDataType(applicator.getDataTypeManager()), 0, 0); // } // } // }
214,318
Github
[ 3122, 775, 3841, 4742, 1605, 42190, 187, 475, 187, 475, 8283, 313, 36, 10, 5307, 50276, 24080, 17650, 187, 475, 187, 475, 17272, 2552, 5307, 27, 40370, 323, 443, 7084, 407, 14468, 443, 602, 187, 475, 3285, 9218, 5826, 27, 6528, 84, 407, 17626, 472, 38973, 1342, 187, 475, 8283, 313, 36, 10, 5307, 13, 8971, 13, 6752, 13, 6469, 13, 5826, 13, 5215, 14468, 443, 602, 13, 17626, 472, 38973, 1342, 187, 475, 187, 475, 831, 310, 1959, 3694, 28, 368, 476, 25529, 352, 285, 16, 263, 10007, 352, 187, 475, 762, 253, 2426, 273, 253, 11963, 4214, 5259, 4637, 347, 3863, 407, 253, 187, 475, 7648, 9107, 6807, 28, 2057, 2715, 495, 13, 390, 313, 255, 634, 4500, 10, 667, 187, 475, 1996, 2715, 15, 187, 475, 187, 475, 831, 2603, 310, 5939, 275, 253, 3524, 326, 352, 588, 320, 4217, 13, 533, 15002, 187, 475, 9103, 23181, 28, 1293, 1014, 253, 10466, 17529, 273, 20863, 390, 187, 475, 20524, 6651, 329, 20383, 20103, 15, 50276, 5035, 253, 11963, 4214, 5259, 4637, 187, 475, 323, 625, 4278, 15, 187, 1738, 187, 187, 3122, 187, 475, 775, 3841, 4742, 14717, 273, 247, 22892, 2633, 2762, 19040, 4315, 15, 187, 475, 831, 310, 4217, 281, 8415, 253, 4315, 14475, 275, 187, 475, 50274, 38847, 23664, 6821, 1100, 187, 475, 50274, 6772, 3266, 839, 6821, 1100, 187, 475, 187, 475, 831, 5933, 1057, 27, 187, 475, 50275, 34, 426, 418, 475, 418, 8, 187, 475, 342, 187, 475, 50275, 45, 50276, 13522, 2406, 1669, 19037, 4315, 187, 475, 50275, 45, 8, 3843, 253, 811, 7334, 830, 273, 418, 15, 187, 475, 187, 1738, 187, 187, 4, 3709, 346, 72, 3433, 876, 5397, 15, 73, 3, 187, 187, 4, 3709, 346, 72, 3433, 64, 679, 15, 73, 3, 187, 4, 3709, 346, 72, 3433, 64, 39386, 15, 73, 3, 187, 4, 3709, 346, 72, 3433, 64, 11000, 15, 73, 3, 187, 4, 3709, 346, 72, 3433, 64, 6674, 15, 73, 3, 187, 4, 3709, 346, 72, 3433, 64, 1559, 284, 15, 73, 3, 187, 4, 3709, 346, 72, 3433, 64, 77, 989, 72, 15, 73, 3, 187, 187, 4659, 13866, 209, 187, 12237, 187, 40748, 64, 2609, 313, 12237, 1269, 10, 50276, 187, 50273, 3122, 32547, 20243, 2228, 13, 323, 12669, 4315, 323, 2762, 3029, 262, 8098, 1738, 187, 92, 187, 50276, 2309, 313, 89, 10122, 470, 10, 3736, 8084, 9, 89, 10, 1163, 443, 7084, 64, 1322, 47, 28, 187, 94, 187, 187, 565, 187, 72, 3433, 64, 77, 989, 72, 64, 348, 3841, 4742, 64, 615, 3118, 313, 72, 3433, 64, 6674, 475, 329, 10, 187, 92, 187, 50276, 3474, 1979, 64, 85, 353, 426, 329, 1168, 3281, 18, 28, 187, 50276, 3474, 1979, 64, 85, 427, 426, 329, 1168, 3281, 19, 28, 535, 50276, 338, 313, 46, 3613, 427, 10, 187, 50274, 92, 187, 50272, 40, 7084, 64, 12641, 1587, 348, 3841, 4742, 14717, 4419, 6278, 4315, 995, 443, 7084, 64, 1400, 2415, 52, 18787, 558, 187, 50274, 94, 187, 50276, 7271, 187, 50274, 92, 187, 50272, 3281, 64, 85, 891, 13, 75, 13, 76, 28, 187, 50272, 565, 3708, 426, 470, 28, 535, 50272, 3122, 3166, 253, 806, 374, 10175, 11120, 15, 50276, 1147, 310, 2969, 13, 285, 7938, 15, 50276, 1898, 187, 50271, 11, 581, 476, 1091, 604, 253, 4315, 556, 760, 337, 390, 374, 10175, 15, 50276, 187, 50271, 8480, 535, 50272, 12237, 329, 64, 361, 426, 305, 3433, 64, 6674, 64, 788, 313, 34, 13, 470, 13, 470, 558, 187, 50272, 187, 50272, 12237, 418, 64, 361, 426, 7107, 64, 2609, 9, 34, 64, 361, 558, 187, 50272, 187, 50272, 338, 313, 34, 64, 361, 11049, 470, 10, 187, 50270, 92, 187, 50268, 8581, 426, 443, 7084, 64, 1703, 2277, 3706, 187, 50270, 94, 535, 50272, 72, 3433, 64, 6674, 64, 1178, 313, 34, 13, 470, 13, 470, 13, 418, 64, 361, 558, 187, 50276, 187, 50272, 338, 313, 46, 2239, 337, 10, 187, 50270, 92, 187, 50268, 12237, 329, 64, 740, 426, 305, 3433, 64, 6674, 64, 788, 313, 34, 13, 337, 13, 470, 558, 187, 50268, 12237, 329, 64, 883, 426, 305, 3433, 64, 6674, 64, 788, 313, 34, 13, 337, 13, 337, 558, 187, 50268, 187, 50268, 12237, 418, 64, 740, 426, 329, 64, 740, 1227, 418, 64, 361, 28, 187, 50268, 12237, 6687, 426, 329, 64, 883, 428, 418, 64, 740, 475, 418, 64, 740, 28, 187, 50268, 12237, 418, 64, 883, 426, 7107, 64, 2609, 9, 31783, 558, 187, 50268, 187, 50268, 338, 313, 31783, 11049, 470, 10, 187, 50266, 92, 187, 50264, 8581, 426, 443, 7084, 64, 1703, 2277, 28, 187, 50266, 94, 535, 50268, 72, 3433, 64, 6674, 64, 1178, 313, 34, 13, 337, 13, 470, 13, 418, 64, 740, 558, 50270, 187, 50268, 72, 3433, 64, 6674, 64, 1178, 313, 34, 13, 337, 13, 337, 13, 418, 64, 883, 558, 187, 50270, 94, 187, 50272, 187, 50272, 1542, 313, 76, 426, 374, 28, 465, 654, 353, 28, 465, 9234, 187, 50270, 92, 187, 50268, 12237, 329, 64, 14750, 426, 305, 3433, 64, 6674, 64, 788, 313, 34, 13, 465, 13, 465, 558, 187, 50268, 187, 50268, 1542, 313, 74, 426, 470, 28, 891, 654, 465, 28, 891, 9234, 187, 50266, 92, 187, 50264, 12237, 2020, 426, 470, 28, 535, 50264, 12237, 329, 64, 5985, 426, 305, 3433, 64, 6674, 64, 788, 313, 34, 13, 465, 13, 891, 558, 187, 50264, 12237, 329, 64, 2886, 426, 305, 3433, 64, 6674, 64, 788, 313, 34, 13, 891, 13, 891, 558, 535, 50264, 72, 3433, 64, 11000, 64, 1374, 16399, 426, 305, 3433, 64, 6674, 64, 736, 313, 34, 13, 891, 558, 187, 50264, 72, 3433, 64, 11000, 64, 1374, 260, 76, 426, 305, 3433, 64, 6674, 64, 736, 313, 34, 13, 465, 558, 535, 50264, 338, 313, 74, 2239, 470, 10, 551, 187, 50262, 72, 3433, 64, 11000, 64, 1374, 1073, 426, 305, 3433, 64, 11000, 64, 2377, 11000, 6395, 5297, 15, 11000, 13, 470, 13, 891, 558, 187, 50262, 72, 3433, 64, 11000, 64, 1374, 277, 76, 426, 305, 3433, 64, 11000, 64, 2377, 11000, 6395, 777, 15, 11000, 13, 470, 13, 891, 558, 187, 50262, 187, 50262, 72, 3433, 64, 1559, 284, 64, 40792, 41851, 5168, 15, 11000, 13, 708, 17261, 15, 11000, 13, 708, 2204, 558, 187, 50264, 94, 535, 50264, 34, 64, 5985, 426, 313, 34, 64, 5985, 428, 2020, 10, 1227, 329, 64, 2886, 28, 187, 50264, 72, 3433, 64, 6674, 64, 1178, 313, 34, 13, 465, 13, 891, 13, 329, 64, 5985, 558, 187, 50266, 94, 15267, 50268, 92, 187, 50266, 72, 3433, 64, 11000, 64, 1374, 260, 76, 426, 305, 3433, 64, 6674, 64, 736, 313, 34, 13, 465, 558, 187, 50266, 72, 3433, 64, 11000, 64, 1374, 277, 76, 426, 305, 3433, 64, 11000, 64, 2377, 11000, 41851, 777, 15, 11000, 13, 470, 13, 465, 558, 187, 50266, 187, 50266, 12237, 2020, 426, 305, 3433, 64, 1559, 284, 64, 17915, 1109, 19, 41851, 17261, 15, 11000, 558, 187, 50266, 12237, 6687, 426, 329, 64, 14750, 428, 2020, 475, 2020, 28, 535, 50266, 12237, 418, 64, 14750, 426, 7107, 64, 2609, 9, 31783, 558, 187, 50266, 187, 50266, 338, 313, 31783, 11049, 470, 10, 187, 50264, 92, 187, 50262, 8581, 426, 443, 7084, 64, 1703, 2277, 28, 187, 50264, 94, 187, 50266, 187, 50266, 72, 3433, 64, 6674, 64, 1178, 313, 34, 13, 465, 13, 465, 13, 418, 64, 14750, 558, 187, 50268, 94, 187, 50270, 94, 535, 50272, 3122, 3954, 3491, 253, 811, 7334, 2406, 19037, 281, 253, 5170, 19037, 13, 187, 50271, 11, 253, 16421, 310, 1846, 15, 50276, 187, 50271, 8480, 187, 50272, 187, 50272, 1542, 313, 74, 426, 337, 28, 891, 654, 353, 28, 891, 9234, 187, 50270, 92, 187, 50268, 1542, 313, 75, 426, 470, 28, 480, 654, 891, 28, 480, 9234, 187, 50266, 92, 187, 50264, 12237, 329, 64, 1944, 426, 305, 3433, 64, 6674, 64, 788, 313, 34, 13, 891, 13, 480, 558, 187, 50264, 72, 3433, 64, 6674, 64, 1178, 313, 34, 13, 480, 13, 891, 13, 329, 64, 1944, 558, 187, 50266, 94, 187, 50270, 94, 2490, 50272, 187, 50272, 338, 313, 8581, 2295, 443, 7084, 64, 1703, 2277, 10, 187, 50270, 92, 187, 50268, 40, 7084, 64, 12641, 5550, 6674, 1364, 320, 2762, 19040, 995, 443, 7084, 64, 1703, 2277, 558, 187, 50270, 94, 187, 50272, 187, 50272, 2309, 443, 7084, 64, 34866, 28, 187, 50274, 94, 187, 94, 535, 187, 565, 187, 72, 3433, 64, 77, 989, 72, 64, 348, 3841, 4742, 64, 84, 3247, 313, 3474, 305, 3433, 64, 6674, 475, 418, 20072, 13, 187, 50254, 50275, 3474, 305, 3433, 64, 11000, 475, 270, 13, 187, 50254, 50275, 72, 3433, 64, 11000, 475, 1269, 10, 187, 92, 187, 50276, 338, 313, 2293, 53, 1168, 3281, 18, 3613, 418, 20072, 1168, 3281, 19, 10, 187, 50274, 92, 187, 50272, 40, 7084, 64, 12641, 5550, 348, 3841, 4742, 4315, 1364, 320, 6278, 995, 443, 7084, 64, 1400, 2415, 52, 18787, 558, 187, 50274, 94, 187, 50276, 7271, 604, 313, 2293, 53, 1168, 3281, 18, 3613, 270, 1168, 3281, 10, 187, 50274, 92, 187, 50272, 40, 7084, 64, 12641, 5550, 6674, 1979, 1364, 3761, 270, 1979, 995, 443, 7084, 64, 22917, 2350, 19441, 558, 187, 50274, 94, 187, 50276, 7271, 604, 313, 2293, 53, 1168, 3281, 19, 3613, 1269, 1168, 3281, 10, 187, 50274, 92, 187, 50272, 40, 7084, 64, 12641, 5550, 6674, 1979, 1364, 3761, 2900, 1979, 995, 443, 7084, 64, 22917, 2350, 19441, 558, 187, 50274, 94, 187, 50276, 7271, 187, 50274, 92, 187, 50272, 3122, 27671, 1269, 12630, 270, 1738, 535, 50272, 72, 3433, 64, 11000, 64, 47962, 313, 89, 13, 270, 558, 535, 50272, 3122, 7593, 323, 260, 970, 3579, 14, 2377, 5379, 13, 418, 260, 426, 270, 1738, 535, 50272, 72, 3433, 64, 1559, 284, 64, 69, 1206, 11427, 313, 36, 1559, 284, 25216, 13, 330, 1559, 284, 2302, 6189, 13, 330, 1559, 284, 11592, 14074, 13, 418, 20072, 13, 1269, 558, 535, 50272, 3122, 3545, 630, 896, 14, 2377, 5379, 13, 530, 1269, 426, 260, 1738, 535, 50272, 72, 3433, 64, 1559, 284, 64, 69, 1206, 11427, 313, 36, 1559, 284, 34252, 13, 330, 1559, 284, 2302, 6189, 13, 330, 1559, 284, 11592, 14074, 13, 418, 20072, 13, 1269, 558, 2756, 50272, 2309, 443, 7084, 64, 34866, 28, 187, 50274, 94, 187, 94, 187, 187, 565, 187, 72, 3433, 64, 77, 989, 72, 64, 348, 3841, 4742, 64, 11427, 89, 313, 3474, 305, 3433, 64, 6674, 475, 418, 20072, 13, 187, 50254, 305, 3433, 64, 11000, 475, 1269, 10, 187, 92, 187, 50276, 338, 313, 2293, 53, 1168, 3281, 18, 3613, 418, 20072, 1168, 3281, 19, 10, 187, 50274, 92, 187, 50272, 40, 7084, 64, 12641, 5550, 348, 3841, 4742, 4315, 1364, 320, 6278, 995, 443, 7084, 64, 1400, 2415, 52, 18787, 558, 187, 50274, 94, 187, 50276, 7271, 604, 313, 2293, 53, 1168, 3281, 19, 3613, 1269, 1168, 3281, 10, 187, 50274, 92, 187, 50272, 40, 7084, 64, 12641, 5550, 6674, 1979, 1364, 3761, 2900, 1979, 995, 443, 7084, 64, 22917, 2350, 19441, 558, 187, 50274, 94, 187, 50276, 7271, 187, 50274, 92, 187, 50272, 3122, 7593, 323, 260, 970, 3579, 14, 2377, 5379, 13, 418, 260, 426, 270, 1738, 535, 50272, 72, 3433, 64, 1559, 284, 64, 69, 1206, 11427, 313, 36, 1559, 284, 25216, 13, 330, 1559, 284, 2302, 6189, 13, 330, 1559, 284, 11592, 14074, 13, 418, 20072, 13, 1269, 558, 535, 50272, 3122, 3545, 630, 896, 14, 2377, 5379, 13, 530, 1269, 426, 260, 1738, 535, 50272, 72, 3433, 64, 1559, 284, 64, 69, 1206, 11427, 313, 36, 1559, 284, 34252, 13, 330, 1559, 284, 2302, 6189, 13, 330, 1559, 284, 11592, 14074, 13, 418, 20072, 13, 1269, 558, 535, 50272, 2309, 443, 7084, 64, 34866, 28, 187, 50274, 94, 187, 94, 535, 187, 565, 187, 72, 3433, 64, 77, 989, 72, 64, 348, 3841, 4742, 64, 615, 3118, 64, 8522, 9, 72, 3433, 64, 6674, 475, 329, 13, 305, 3433, 64, 11000, 475, 399, 10, 187, 92, 187, 50276, 3474, 1979, 64, 85, 427, 426, 329, 1168, 3281, 18, 28, 187, 50276, 3281, 64, 85, 891, 13, 480, 28, 535, 50276, 3122, 3302, 775, 3841, 4742, 1738, 187, 50276, 565, 1098, 64, 34786, 426, 305, 3433, 64, 77, 989, 72, 64, 348, 3841, 4742, 64, 615, 3118, 9, 34, 558, 535, 50276, 338, 9, 8766, 64, 34786, 2295, 443, 7084, 64, 34866, 10, 187, 50276, 92, 187, 50274, 3122, 10173, 399, 432, 16421, 629, 273, 3302, 775, 3841, 4742, 1738, 187, 50274, 1542, 9, 74, 426, 470, 28, 891, 654, 427, 28, 12996, 74, 10, 187, 50274, 92, 187, 50272, 3474, 4021, 330, 64, 2886, 426, 305, 3433, 64, 6674, 64, 788, 9, 34, 13, 891, 13, 891, 558, 187, 50272, 72, 3433, 64, 11000, 64, 1178, 9, 37, 13, 891, 13, 330, 64, 2886, 11, 36, 64, 2886, 558, 187, 50274, 94, 535, 50274, 3122, 30247, 3302, 775, 3841, 4742, 407, 337, 16, 2609, 9, 37, 10, 327, 253, 987, 1738, 187, 50274, 1542, 9, 74, 426, 470, 28, 891, 654, 427, 28, 12996, 74, 10, 187, 50274, 92, 187, 50272, 1542, 9, 75, 426, 470, 28, 480, 654, 427, 28, 12996, 75, 10, 187, 50272, 92, 187, 50270, 72, 3433, 64, 6674, 64, 1178, 9, 34, 13, 891, 13, 480, 13, 305, 3433, 64, 6674, 64, 788, 9, 34, 13, 891, 13, 480, 10, 1227, 8084, 9, 72, 3433, 64, 11000, 64, 788, 9, 37, 13, 480, 23090, 187, 50272, 94, 187, 50274, 94, 535, 50274, 3122, 4923, 253, 3302, 775, 3841, 4742, 6221, 1097, 418, 285, 811, 3014, 9, 45, 582, 187, 50271, 783, 906, 273, 253, 25219, 310, 417, 13123, 10542, 28, 187, 50271, 2858, 253, 2406, 19037, 795, 261, 64, 3451, 15, 3813, 359, 4887, 187, 50271, 262, 281, 253, 5170, 19037, 285, 11165, 10170, 15, 187, 50271, 8480, 187, 50274, 1542, 9, 74, 426, 470, 28, 891, 654, 427, 28, 12996, 74, 10, 187, 50272, 1542, 9, 75, 426, 891, 559, 337, 28, 480, 654, 427, 28, 12996, 75, 10, 187, 50270, 72, 3433, 64, 6674, 64, 1178, 9, 34, 13, 891, 13, 480, 13, 305, 3433, 64, 6674, 64, 788, 9, 34, 13, 480, 13, 891, 4027, 187, 50276, 94, 535, 50276, 2309, 1098, 64, 34786, 28, 187, 94, 187 ]
/* Cholesky Decomposition * * Copyright (C) 2000 Thomas Walter * * 03 May 2000: Modified for GSL by Brian Gough * 29 Jul 2005: Additions by Gerard Jungman * Copyright (C) 2000,2001, 2002, 2003, 2005, 2007 Brian Gough, Gerard Jungman * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation; either version 3, or (at your option) any * later version. * * This source is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * for more details. */ /* * Cholesky decomposition of a symmetrix positive definite matrix. * This is useful to solve the matrix arising in * periodic cubic splines * approximating splines * * This algorithm does: * A = L * L' * with * L := lower left triangle matrix * L' := the transposed form of L. * */ #include "gsl__config.h" #include "gsl_math.h" #include "gsl_errno.h" #include "gsl_vector.h" #include "gsl_matrix.h" #include "gsl_blas.h" #include "gsl_linalg.h" static inline double quiet_sqrt (double x) /* avoids runtime error, for checking matrix for positive definiteness */ { return (x >= 0) ? sqrt(x) : GSL_NAN; } int gsl_linalg_cholesky_decomp (gsl_matrix * A) { const size_t M = A->size1; const size_t N = A->size2; if (M != N) { GSL_ERROR("cholesky decomposition requires square matrix", GSL_ENOTSQR); } else { size_t i,j,k; int status = 0; /* Do the first 2 rows explicitly. It is simple, and faster. And * one can return if the matrix has only 1 or 2 rows. */ double A_00 = gsl_matrix_get (A, 0, 0); double L_00 = quiet_sqrt(A_00); if (A_00 <= 0) { status = GSL_EDOM ; } gsl_matrix_set (A, 0, 0, L_00); if (M > 1) { double A_10 = gsl_matrix_get (A, 1, 0); double A_11 = gsl_matrix_get (A, 1, 1); double L_10 = A_10 / L_00; double diag = A_11 - L_10 * L_10; double L_11 = quiet_sqrt(diag); if (diag <= 0) { status = GSL_EDOM; } gsl_matrix_set (A, 1, 0, L_10); gsl_matrix_set (A, 1, 1, L_11); } for (k = 2; k < M; k++) { double A_kk = gsl_matrix_get (A, k, k); for (i = 0; i < k; i++) { double sum = 0; double A_ki = gsl_matrix_get (A, k, i); double A_ii = gsl_matrix_get (A, i, i); gsl_vector_view ci = gsl_matrix_row (A, i); gsl_vector_view ck = gsl_matrix_row (A, k); if (i > 0) { gsl_vector_view di = gsl_vector_subvector(&ci.vector, 0, i); gsl_vector_view dk = gsl_vector_subvector(&ck.vector, 0, i); gsl_blas_ddot (&di.vector, &dk.vector, &sum); } A_ki = (A_ki - sum) / A_ii; gsl_matrix_set (A, k, i, A_ki); } { gsl_vector_view ck = gsl_matrix_row (A, k); gsl_vector_view dk = gsl_vector_subvector (&ck.vector, 0, k); double sum = gsl_blas_dnrm2 (&dk.vector); double diag = A_kk - sum * sum; double L_kk = quiet_sqrt(diag); if (diag <= 0) { status = GSL_EDOM; } gsl_matrix_set (A, k, k, L_kk); } } /* Now copy the transposed lower triangle to the upper triangle, * the diagonal is common. */ for (i = 1; i < M; i++) { for (j = 0; j < i; j++) { double A_ij = gsl_matrix_get (A, i, j); gsl_matrix_set (A, j, i, A_ij); } } if (status == GSL_EDOM) { GSL_ERROR ("matrix must be positive definite", GSL_EDOM); } return GSL_SUCCESS; } } int gsl_linalg_cholesky_solve (const gsl_matrix * LLT, const gsl_vector * b, gsl_vector * x) { if (LLT->size1 != LLT->size2) { GSL_ERROR ("cholesky matrix must be square", GSL_ENOTSQR); } else if (LLT->size1 != b->size) { GSL_ERROR ("matrix size must match b size", GSL_EBADLEN); } else if (LLT->size2 != x->size) { GSL_ERROR ("matrix size must match solution size", GSL_EBADLEN); } else { /* Copy x <- b */ gsl_vector_memcpy (x, b); /* Solve for c using forward-substitution, L c = b */ gsl_blas_dtrsv (CblasLower, CblasNoTrans, CblasNonUnit, LLT, x); /* Perform back-substitution, U x = c */ gsl_blas_dtrsv (CblasUpper, CblasNoTrans, CblasNonUnit, LLT, x); return GSL_SUCCESS; } } int gsl_linalg_cholesky_svx (const gsl_matrix * LLT, gsl_vector * x) { if (LLT->size1 != LLT->size2) { GSL_ERROR ("cholesky matrix must be square", GSL_ENOTSQR); } else if (LLT->size2 != x->size) { GSL_ERROR ("matrix size must match solution size", GSL_EBADLEN); } else { /* Solve for c using forward-substitution, L c = b */ gsl_blas_dtrsv (CblasLower, CblasNoTrans, CblasNonUnit, LLT, x); /* Perform back-substitution, U x = c */ gsl_blas_dtrsv (CblasUpper, CblasNoTrans, CblasNonUnit, LLT, x); return GSL_SUCCESS; } } int gsl_linalg_cholesky_decomp_unit(gsl_matrix * A, gsl_vector * D) { const size_t N = A->size1; size_t i, j; /* initial Cholesky */ int stat_chol = gsl_linalg_cholesky_decomp(A); if(stat_chol == GSL_SUCCESS) { /* calculate D from diagonal part of initial Cholesky */ for(i = 0; i < N; ++i) { const double C_ii = gsl_matrix_get(A, i, i); gsl_vector_set(D, i, C_ii*C_ii); } /* multiply initial Cholesky by 1/sqrt(D) on the right */ for(i = 0; i < N; ++i) { for(j = 0; j < N; ++j) { gsl_matrix_set(A, i, j, gsl_matrix_get(A, i, j) / sqrt(gsl_vector_get(D, j))); } } /* Because the initial Cholesky contained both L and transpose(L), the result of the multiplication is not symmetric anymore; but the lower triangle _is_ correct. Therefore we reflect it to the upper triangle and declare victory. */ for(i = 0; i < N; ++i) for(j = i + 1; j < N; ++j) gsl_matrix_set(A, i, j, gsl_matrix_get(A, j, i)); } return stat_chol; }
214,319
Github
[ 92, 187, 50274, 3, 14719, 9710, 292, 383, 16198, 3, 1163, 551, 187, 50270, 47439, 5374, 3, 1163, 551, 187, 50266, 3, 13982, 3, 1163, 18586, 187, 50266, 3, 26317, 14, 44683, 14, 9438, 3, 1163, 346, 40, 678, 14, 18, 15, 26, 15, 23, 14, 48008, 14, 3571, 67, 11395, 1630, 14, 1252, 28766, 938, 995, 187, 50266, 3, 26317, 14, 19210, 14, 4149, 3, 1163, 346, 1221, 383, 678, 14, 17, 15, 17, 15, 18, 12, 25756, 15, 17, 3348, 1093, 66, 832, 15, 32490, 15, 72, 3424, 995, 187, 50266, 3, 620, 27827, 4149, 3, 1163, 346, 8893, 27, 470, 15, 22, 15, 805, 14, 16714, 15, 9638, 15, 26, 15, 1012, 12, 25756, 15, 19, 69, 39855, 66, 21, 71, 15, 32490, 15, 72, 3424, 995, 187, 50266, 3, 6756, 3, 1163, 346, 7614, 16, 13425, 5443, 26943, 39, 6626, 16, 296, 24391, 16, 14719, 9710, 292, 383, 16198, 39, 6626, 15, 8456, 995, 187, 50266, 3, 6756, 16850, 3, 1163, 346, 1047, 66, 2357, 832, 67, 1678, 20, 68, 1012, 1610, 15781, 66, 25, 69, 4196, 69, 24, 67, 21, 1796, 5781, 19, 1473, 21, 12434, 66, 25671, 1796, 66, 18, 66, 3953, 12964, 4482, 24, 66, 49082, 66, 2082, 1839, 3, 187, 50270, 2023, 187, 50270, 3, 12540, 3, 1163, 551, 187, 50266, 3, 6259, 6869, 249, 4793, 3, 1163, 346, 17, 89, 26, 1857, 19321, 2275, 38049, 2082, 67, 19, 66, 4185, 67, 3011, 66, 2385, 66, 3071, 3348, 1619, 69, 23025, 66, 3677, 67, 22, 995, 187, 50266, 3, 6259, 27732, 2702, 90, 3, 1163, 346, 17, 89, 2640, 1418, 995, 187, 50266, 3, 6259, 43537, 24314, 3, 1163, 346, 17, 89, 24, 22518, 8832, 22650, 995, 187, 50266, 3, 6259, 8447, 3, 1163, 346, 17, 89, 520, 995, 187, 50266, 3, 6259, 41516, 3, 1163, 346, 17, 89, 2941, 70, 25, 995, 187, 50266, 3, 35065, 16850, 3, 1163, 346, 17, 89, 22, 70, 938, 66, 21274, 20, 336, 2428, 34109, 14576, 3046, 68, 1787, 317, 3571, 70, 41040, 1796, 2904, 27043, 67, 1549, 1857, 15220, 66, 25, 336, 2526, 1671, 68, 2787, 805, 886, 17, 67, 23, 3, 187, 50270, 2023, 187, 50270, 3, 5996, 3, 1163, 551, 187, 50266, 3, 42, 36563, 3, 1163, 544, 187, 50262, 92, 187, 50258, 3, 4663, 265, 3, 1163, 551, 187, 50254, 3, 2203, 3, 1163, 470, 13, 187, 50254, 3, 22228, 3, 1163, 470, 13, 187, 50254, 3, 2877, 3, 1163, 470, 187, 50258, 2023, 187, 50258, 3, 13362, 3, 1163, 346, 17, 89, 23, 832, 1508, 26371, 67, 26, 2759, 67, 2270, 14009, 1093, 67, 24, 67, 24, 68, 3680, 5830, 2251, 5470, 43924, 71, 19, 66, 324, 24, 9194, 567, 19, 71, 45316, 1012, 2320, 26, 68, 26, 69, 26, 66, 18, 67, 24, 995, 187, 50258, 3, 43975, 3, 1163, 346, 17, 89, 18, 69, 550, 21, 615, 25, 8632, 1976, 69, 24, 66, 357, 2227, 67, 39697, 67, 23, 550, 69, 3156, 324, 20207, 30592, 67, 26, 2385, 66, 3566, 1012, 71, 17, 66, 17364, 9194, 1449, 69, 2537, 23568, 3, 187, 50262, 94, 187, 50266, 62, 187, 50270, 2023, 187, 50270, 3, 3456, 3, 1163, 551, 187, 50266, 3, 17, 89, 37684, 70, 24, 67, 47542, 23, 66, 23, 68, 24, 68, 21, 68, 19, 69, 46370, 26, 2357, 832, 317, 22391, 2320, 39338, 69, 2597, 3, 1163, 551, 187, 50262, 3, 20203, 3, 1163, 346, 17, 89, 361, 995, 187, 50262, 3, 3211, 3, 1163, 346, 17, 89, 24, 71, 19828, 19828, 24, 71, 9754, 4226, 22518, 22518, 22518, 22518, 22518, 24, 71, 9754, 4226, 22518, 22518, 22518, 22518, 22518, 24, 71, 19828, 9754, 4226, 1418, 68, 16552, 24, 71, 9754, 40094, 19828, 4226, 24, 71, 19828, 9754, 4226, 1418, 68, 16552, 23, 71, 49891, 4185, 1099, 3245, 1047, 28355, 67, 25592, 68, 17220, 5781, 2385, 67, 20, 66, 35265, 13930, 15054, 995, 187, 50262, 3, 4160, 336, 3, 1163, 346, 17, 89, 361, 995, 187, 50262, 3, 22214, 3, 1163, 551, 187, 50262, 94, 187, 50266, 2023, 187, 50266, 3, 17, 89, 26, 1857, 19321, 2275, 38049, 2082, 67, 19, 66, 4185, 67, 3011, 66, 2385, 66, 3071, 3348, 1619, 69, 23025, 66, 3677, 67, 22, 3, 1163, 551, 187, 50262, 3, 20203, 3, 1163, 346, 17, 89, 19, 70, 995, 187, 50262, 3, 3211, 3, 1163, 346, 17, 89, 48616, 1671, 3439, 1010, 10487, 34920, 5523, 67, 1549, 938, 25008, 933, 1671, 2417, 995, 187, 50262, 3, 4160, 336, 3, 1163, 346, 17, 89, 361, 995, 187, 50262, 3, 22214, 3, 1163, 551, 187, 50262, 94, 187, 50266, 2023, 187, 50266, 3, 17, 14346, 3953, 71, 22, 24562, 71, 336, 22, 264, 12847, 25, 70, 19, 66, 25, 29790, 68, 1010, 1610, 1036, 2357, 70, 23, 2275, 71, 17, 67, 3, 1163, 551, 187, 50262, 3, 20203, 3, 1163, 346, 17, 89, 17, 615, 17, 67, 23, 67, 20, 66, 24, 1540, 1418, 995, 187, 50262, 3, 3211, 3, 1163, 346, 17, 89, 995, 187, 50262, 3, 4160, 336, 3, 1163, 346, 17, 89, 361, 995, 187, 50262, 3, 22214, 3, 1163, 551, 187, 50262, 94, 187, 50266, 94, 187, 50270, 2023, 187, 50270, 3, 35238, 3, 1163, 551, 187, 50266, 3, 2203, 3, 1163, 544, 187, 50262, 3, 17, 89, 24, 71, 19828, 19828, 24, 71, 9754, 4226, 22518, 22518, 22518, 22518, 22518, 24, 71, 9754, 4226, 22518, 22518, 22518, 22518, 22518, 24, 71, 19828, 9754, 4226, 1418, 68, 16552, 24, 71, 9754, 40094, 19828, 4226, 24, 71, 19828, 9754, 4226, 1418, 68, 16552, 23, 71, 49891, 4185, 1099, 3245, 1047, 28355, 67, 25592, 68, 17220, 5781, 2385, 67, 20, 66, 2055, 3, 187, 50266, 1092, 187, 50266, 3, 22228, 24314, 3, 1163, 544, 187, 50262, 3, 17, 89, 21149, 2275, 2227, 68, 3, 187, 50266, 1092, 187, 50266, 3, 22228, 21333, 3, 1163, 346, 17, 89, 520, 995, 187, 50266, 3, 4160, 336, 3, 1163, 346, 17, 89, 361, 995, 187, 50266, 3, 22882, 4814, 3, 1163, 346, 17, 89, 1857, 66, 36245, 70, 21, 69, 3071, 520, 2537, 2275, 42198, 3046, 1549, 70, 23, 66, 24, 66, 1857, 71, 24257, 1867, 22000, 18950, 883, 1036, 67, 18493, 70, 1237, 8320, 2082, 567, 19, 69, 25, 995, 187, 50266, 3, 936, 3, 1163, 346, 17, 89, 37684, 70, 24, 67, 47542, 23, 66, 23, 68, 24, 68, 21, 68, 19, 69, 46370, 26, 2357, 832, 317, 22391, 2320, 39338, 69, 2597, 995, 187, 50266, 3, 2877, 3, 1163, 544, 187, 50262, 3, 17, 89, 24, 44539, 1540, 883, 3, 187, 50266, 62, 187, 50270, 94, 187, 50274, 94, 187, 94 ]
{ "randomStatetest156" : { "_info" : { "comment" : "", "filling-rpc-server" : "Geth-1.9.6-unstable-63b18027-20190920", "filling-tool-version" : "retesteth-0.0.1+commit.0ae18aef.Linux.g++", "lllcversion" : "Version: 0.5.12-develop.2019.9.13+commit.2d601a4f.Linux.g++", "source" : "src/GeneralStateTestsFiller/stRandom/randomStatetest156Filler.json", "sourceHash" : "14a77efbdd3c1333204a8d96d7b4eeaa2da4140a273eea1a94fcbb7a785a6538" }, "env" : { "currentCoinbase" : "0x945304eb96065b2a98b57a48a06ae28d285a71b5", "currentDifficulty" : "0x020000", "currentGasLimit" : "0x7fffffffffffffff", "currentNumber" : "0x01", "currentTimestamp" : "0x03e8", "previousHash" : "0x5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6" }, "post" : { "Istanbul" : [ { "indexes" : { "data" : 0, "gas" : 0, "value" : 0 }, "hash" : "0x6ef23709b984b9020918b7b7c58ba67db573f2aad7fdff2f52913af9c9d9a1b7", "logs" : "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347" } ] }, "pre" : { "0x095e7baea6a6c7c4c2dfeb977efac326af552d87" : { "balance" : "0x00", "code" : "0x7f00000000000000000000000000000000000000000000000000000000000000007f000000000000000000000000ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000c3507f00000000000000000000000100000000000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000c3506f813982583141966b389c159aa48b3a8860005155", "nonce" : "0x00", "storage" : { } }, "0x945304eb96065b2a98b57a48a06ae28d285a71b5" : { "balance" : "0x2e", "code" : "0x6000355415600957005b60203560003555", "nonce" : "0x00", "storage" : { } }, "0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { "balance" : "0x0de0b6b3a7640000", "code" : "0x", "nonce" : "0x00", "storage" : { } } }, "transaction" : { "data" : [ "0x7f00000000000000000000000000000000000000000000000000000000000000007f000000000000000000000000ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000c3507f00000000000000000000000100000000000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000c3506f813982583141966b389c159aa48b3a88" ], "gasLimit" : [ "0x244eb85c" ], "gasPrice" : "0x01", "nonce" : "0x00", "secretKey" : "0x45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", "to" : "0x095e7baea6a6c7c4c2dfeb977efac326af552d87", "value" : [ "0x7ffe6411" ] } } }
214,320
Github
[ 3122, 187, 475, 8283, 9169, 5559, 16169, 187, 475, 187, 475, 21737, 762, 253, 14325, 4637, 13, 11099, 374, 15, 17, 313, 783, 346, 17736, 3287, 187, 475, 368, 778, 417, 897, 436, 1873, 3707, 275, 10276, 342, 253, 4637, 15, 187, 475, 1422, 778, 4044, 247, 3491, 273, 253, 4637, 387, 187, 475, 187, 475, 50273, 3614, 1358, 2700, 15, 8418, 15, 2061, 16, 17130, 16, 17821, 14, 19, 15, 17, 187, 475, 187, 475, 15999, 2424, 407, 7763, 1569, 390, 5821, 281, 275, 4028, 13, 3694, 187, 475, 5939, 762, 253, 4637, 310, 5939, 327, 271, 346, 1719, 4110, 3, 23440, 13, 187, 475, 15002, 15466, 4145, 22998, 3481, 9103, 19329, 13, 2057, 3890, 390, 10466, 15, 187, 475, 2594, 253, 4637, 323, 253, 2173, 3448, 13200, 15607, 285, 187, 475, 7364, 762, 253, 4637, 15, 187, 1738, 187, 187, 6930, 187, 475, 37320, 21011, 187, 1738, 187, 2948, 551, 3609, 748, 432, 37994, 19192, 3305, 16, 1911, 251, 14, 3696, 10600, 5618, 187, 2948, 551, 2250, 748, 432, 37994, 19192, 3305, 16, 1911, 251, 14, 3518, 5618, 187, 187, 6930, 187, 475, 21074, 21011, 187, 1738, 187, 2948, 551, 657, 25220, 64, 1267, 45429, 748, 432, 686, 4598, 3043, 3474, 1103, 5618, 187, 2948, 9182, 11446, 7912, 432, 686, 537, 5618, 187, 187, 15035, 4284, 551, 187, 50276, 5564, 27, 686, 37, 1225, 4697, 16, 40333, 16, 3145, 11446, 7912, 1383, 187, 50276, 15658, 27, 9182, 11446, 7912, 13, 187, 4718, 187, 187, 15035, 1030, 795, 6986, 426, 6734, 3001, 551, 187, 50276, 2309, 313, 187, 50274, 29, 3145, 11446, 7912, 187, 50272, 7916, 11446, 11787, 7135, 2073, 7916, 11446, 1383, 657, 25220, 64, 1267, 45429, 13, 657, 25220, 64, 1267, 45429, 15, 23422, 3117, 187, 50272, 251, 17919, 11787, 1913, 2073, 251, 2315, 25363, 8, 3117, 187, 50274, 4357, 187, 50276, 558, 187, 4718, 187 ]
/* * Copyright 2020 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /** * External dependencies */ import { select } from '@storybook/addon-knobs'; import { action } from '@storybook/addon-actions'; /** * Internal dependencies */ import { VIEW_STYLE } from '../../../constants'; import ViewStyleBar from '..'; export default { title: 'Dashboard/Components/ViewStyleBar', component: ViewStyleBar, }; export const _default = () => { return ( <ViewStyleBar layoutStyle={select('layoutStyle', VIEW_STYLE, VIEW_STYLE.LIST)} onPress={action('on press clicked')} /> ); };
214,321
Github
[ 2044, 5542, 13636, 426, 346, 3614, 1358, 4963, 254, 15, 22243, 14881, 81, 609, 15, 681, 16, 3664, 187, 2044, 269, 14774, 426, 346, 35, 6669, 3664, 187, 2044, 246, 14774, 426, 346, 38169, 3664, 187, 2044, 1655, 5623, 84, 28, 187, 2044, 1655, 5623, 84, 4312, 426, 29707, 187, 2044, 941, 13636, 426, 346, 3614, 1358, 1222, 14, 6682, 15, 22243, 14881, 81, 609, 15, 681, 16, 2203, 16, 2377, 84, 32, 3671, 1105, 568, 559, 269, 14774, 559, 346, 7, 1641, 90, 983, 568, 559, 246, 14774, 28, 187, 2044, 17498, 426, 17908, 9, 4963, 13636, 558, 187, 187, 1352, 788, 17635, 9, 2203, 13636, 13, 1159, 9, 2203, 10, 551, 187, 186, 6259, 5623, 84, 426, 941, 5013, 38169, 34368, 3125, 2350, 1410, 22734, 187, 186, 22452, 15, 2808, 9, 6259, 5623, 84, 558, 187, 186, 1542, 313, 2044, 891, 426, 470, 28, 891, 654, 1655, 5623, 84, 15, 3985, 28, 891, 9234, 551, 996, 186, 6259, 5623, 84, 4312, 7079, 1655, 5623, 84, 60, 74, 62, 559, 18873, 36417, 187, 186, 94, 187, 186, 5, 30932, 2377, 14, 911, 31973, 8539, 1156, 9, 6259, 5623, 84, 4312, 558, 187, 186, 25328, 15, 35999, 2073, 5623, 4717, 1383, 551, 8790, 27, 1655, 5623, 84, 6824, 187, 9897, 187, 187, 25328, 15, 251, 2073, 78, 1383, 1159, 9, 6259, 3233, 10, 551, 187, 186, 2044, 5454, 6180, 426, 1655, 3233, 15, 39765, 9, 17, 13, 1655, 3233, 15, 33966, 1587, 95, 17378, 187, 186, 338, 313, 37719, 6180, 2295, 48277, 15, 38386, 15, 10560, 15, 3125, 24259, 10, 551, 996, 186, 16702, 3233, 9, 6259, 3233, 558, 187, 186, 94, 187, 9897, 187, 187, 2044, 4979, 3233, 426, 1159, 9, 2203, 10, 551, 187, 186, 2044, 820, 2050, 14774, 426, 48277, 15, 38386, 15, 26336, 51, 20712, 58, 15, 788, 29046, 9, 3671, 1105, 558, 187, 186, 2044, 820, 565, 14774, 426, 48277, 15, 38386, 15, 26336, 51, 20712, 58, 15, 788, 29046, 9, 1641, 1105, 10, 187, 186, 2044, 19363, 2290, 796, 426, 48277, 15, 3125, 24259, 15, 328, 6896, 9, 2203, 558, 187, 186, 22452, 15, 2808, 9, 249, 4202, 2290, 796, 558, 187, 186, 2044, 747, 2290, 796, 426, 551, 996, 186, 45607, 27, 19363, 2290, 796, 5013, 46, 16445, 996, 186, 2548, 27, 19363, 2290, 796, 5013, 53, 16445, 996, 186, 1838, 27, 19363, 2290, 796, 5013, 1838, 16445, 996, 186, 21333, 27, 48277, 15, 28985, 3902, 1992, 17214, 9, 68, 842, 14774, 13, 19363, 2290, 796, 5013, 49, 6038, 582, 996, 186, 48514, 27, 48277, 15, 28985, 3902, 1992, 17214, 9, 1940, 2050, 14774, 13, 19363, 2290, 796, 5013, 50, 6038, 582, 996, 186, 12481, 27, 48277, 15, 28985, 3902, 1992, 17214, 9, 68, 842, 14774, 13, 19363, 2290, 796, 5013, 53, 49385, 23405, 187, 186, 4718, 535, 186, 338, 313, 249, 4202, 2290, 796, 5013, 39, 6038, 708, 337, 10, 551, 996, 186, 1826, 2290, 796, 5013, 2548, 6038, 426, 346, 2354, 2293, 3664, 187, 186, 94, 187, 186, 7271, 604, 313, 249, 4202, 2290, 796, 5013, 39, 6038, 708, 374, 10, 551, 996, 186, 1826, 2290, 796, 5013, 2548, 6038, 426, 346, 7817, 58, 3664, 187, 186, 94, 187, 186, 7271, 551, 996, 186, 1826, 2290, 796, 5013, 2548, 6038, 426, 346, 4037, 47561, 3664, 187, 186, 94, 535, 186, 8412, 3233, 9, 1826, 2290, 796, 558, 187, 4718, 187, 187, 2044, 3148, 3233, 426, 1159, 9, 2203, 2447, 33318, 10, 551, 187, 186, 2044, 2781, 3235, 5496, 426, 1884, 28, 187, 186, 2044, 2978, 426, 16166, 2420, 492, 8539, 3985, 28, 187, 186, 5, 30932, 1206, 3355, 8539, 6438, 9, 996, 186, 3, 29, 1206, 966, 568, 559, 941, 2447, 33318, 15, 2548, 559, 346, 2730, 394, 21760, 559, 941, 2447, 33318, 15, 45607, 559, 44153, 394, 2730, 394, 21760, 559, 941, 2447, 33318, 15, 2548, 559, 44153, 394, 2730, 394, 21760, 559, 941, 2447, 33318, 15, 1838, 559, 44153, 394, 2730, 394, 21760, 559, 941, 2447, 33318, 15, 21333, 559, 44153, 394, 2730, 394, 21760, 559, 941, 2447, 33318, 15, 48514, 559, 44153, 394, 2730, 394, 21760, 559, 941, 2447, 33318, 15, 12481, 559, 44153, 394, 3073, 1206, 21760, 187, 186, 558, 535, 186, 338, 313, 3985, 10122, 313, 4090, 3235, 5496, 1228, 551, 996, 186, 5, 2073, 2420, 492, 27, 6275, 8539, 12163, 1874, 187, 186, 94, 187, 4718, 187, 187, 5, 30932, 328, 31473, 8539, 9738, 9, 3701, 1082, 551, 187, 186, 22452, 15, 2808, 2073, 28240, 538, 8425, 272, 281, 5542, 398, 5137, 187, 186, 5, 30932, 31473, 8539, 12163, 4947, 2073, 2377, 251, 5137, 187, 186, 6999, 2520, 481, 42384, 2073, 2377, 251, 5137, 187, 186, 5, 30932, 4963, 14, 1156, 8539, 1156, 2073, 8093, 6331, 5137, 187, 186, 25328, 15, 35999, 2073, 5623, 21605, 1383, 551, 8790, 27, 1655, 5623, 84, 6824, 187, 186, 5, 30932, 2377, 14, 911, 31973, 8539, 1156, 1587, 3287, 187, 9897, 187, 187, 5, 30932, 31473, 8539, 9738, 9, 3701, 1082, 551, 187, 186, 22452, 15, 2808, 2073, 5623, 8425, 272, 281, 5542, 398, 3401, 187, 186, 5, 30932, 328, 31473, 8539, 12163, 4947, 2073, 2377, 251, 5137, 187, 186, 6999, 2520, 481, 42384, 2073, 2377, 251, 5137, 187, 186, 5, 30932, 4963, 14, 1156, 8539, 1156, 1587, 8093, 272, 3255, 558, 187, 186, 25328, 15, 35999, 2073, 5623, 4717, 1383, 551, 8790, 27, 1655, 5623, 84, 6824, 187, 186, 5, 30932, 2377, 14, 911, 31973, 8539, 1156, 9, 6259, 5623, 84, 4312, 558, 187, 9897 ]
var streamUrl = "https://streamer.cryptocompare.com/"; var fsym = "BTC"; var tsym = "USD"; var currentSubs; var currentSubsText = ""; var dataUrl = "https://min-api.cryptocompare.com/data/subs?fsym=" + fsym + "&tsyms=" + tsym; var socket = io(streamUrl); $.getJSON(dataUrl, function(data) { currentSubs = data['USD']['TRADES']; console.log(currentSubs); for (var i = 0; i < currentSubs.length; i++) { currentSubsText += currentSubs[i] + ", "; } $('#sub-exchanges').text(currentSubsText); socket.emit('SubAdd', { subs: currentSubs }); }); socket.on('m', function(currentData) { var tradeField = currentData.substr(0, currentData.indexOf("~")); if (tradeField == CCC.STATIC.TYPE.TRADE) { transformData(currentData); } }); var transformData = function(data) { var coinfsym = CCC.STATIC.CURRENCY.getSymbol(fsym); var cointsym = CCC.STATIC.CURRENCY.getSymbol(tsym) var incomingTrade = CCC.TRADE.unpack(data); console.log(incomingTrade); var newTrade = { Market: incomingTrade['M'], Type: incomingTrade['T'], ID: incomingTrade['ID'], Price: CCC.convertValueToDisplay(cointsym, incomingTrade['P']), Quantity: CCC.convertValueToDisplay(coinfsym, incomingTrade['Q']), Total: CCC.convertValueToDisplay(cointsym, incomingTrade['TOTAL']) }; if (incomingTrade['F'] & 1) { newTrade['Type'] = "SELL"; } else if (incomingTrade['F'] & 2) { newTrade['Type'] = "BUY"; } else { newTrade['Type'] = "UNKNOWN"; } displayData(newTrade); }; var displayData = function(dataUnpacked) { var maxTableSize = 30; var length = $('table tr').length; $('#trades').after( "<tr class=" + dataUnpacked.Type + "><th>" + dataUnpacked.Market + "</th><th>" + dataUnpacked.Type + "</th><th>" + dataUnpacked.ID + "</th><th>" + dataUnpacked.Price + "</th><th>" + dataUnpacked.Quantity + "</th><th>" + dataUnpacked.Total + "</th></tr>" ); if (length >= (maxTableSize)) { $('table tr:last').remove(); } }; $('#unsubscribe').click(function() { console.log('Unsubscribing to streamers'); $('#subscribe').removeClass('subon'); $(this).addClass('subon'); $('#stream-text').text('Stream stopped'); socket.emit('SubRemove', { subs: currentSubs }); $('#sub-exchanges').text(""); }); $('#subscribe').click(function() { console.log('Subscribing to streamers') $('#unsubscribe').removeClass('subon'); $(this).addClass('subon'); $('#stream-text').text("Streaming..."); socket.emit('SubAdd', { subs: currentSubs }); $('#sub-exchanges').text(currentSubsText); });
214,322
Github
[ 41497, 5302, 4155, 28, 187, 5302, 4155, 15, 14877, 15, 8982, 28, 535, 187, 12361, 26394, 15, 3145, 37748, 187, 92, 187, 50274, 4387, 966, 15755, 39744, 187, 50274, 92, 187, 50270, 4387, 2876, 10318, 551, 755, 28, 873, 28, 748, 187, 50270, 4387, 309, 12094, 15755, 551, 755, 28, 873, 28, 748, 187, 50274, 94, 187, 94, 187 ]
using System; using System.Windows.Input; namespace Samples.ViewModels { public class CommandViewModel { public string Text { get; set; } public ICommand Command { get; set; } } }
214,323
Github
[ 59, 20136, 1450, 12332, 15, 27861, 265, 15, 6553, 513, 535, 50276, 4, 12217, 2715, 187, 50276, 8992, 17882, 474, 1383, 50261, 936, 27, 686, 36913, 64, 2377, 28132, 4, 455, 1383, 50274, 13917, 27, 1163, 788, 187, 50276, 8992, 17882, 474, 16, 27, 6082, 1383, 50269, 936, 27, 686, 36913, 64, 2377, 28132, 4, 6082, 1383, 3066, 27, 1163, 788, 187, 50276, 8992, 17882, 474, 16, 27, 6082, 16, 27, 9349, 1383, 281, 27, 686, 36913, 64, 2377, 28132, 4, 6082, 1383, 3066, 27, 1163, 788, 535, 50276, 4, 41066, 2715, 187, 50276, 8992, 17882, 36913, 64, 2377, 28132, 1383, 50261, 936, 27, 686, 36913, 64, 2377, 28132, 4, 455, 1383, 50274, 13917, 27, 1163, 788, 187, 50276, 8992, 17882, 36913, 64, 2377, 28132, 16, 27, 6082, 1383, 50269, 936, 27, 686, 36913, 64, 2377, 28132, 4, 6082, 1383, 3066, 27, 1163, 788, 187, 50276, 8992, 17882, 36913, 64, 2377, 28132, 16, 27, 6082, 16, 27, 9349, 1383, 281, 27, 686, 36913, 64, 2377, 28132, 4, 6082, 1383, 3066, 27, 1163, 788, 187, 423, 187 ]
Zammad::Application.routes.draw do # shorter version match '/ical', to: 'calendar_subscriptions#all', via: :get match '/ical/:object', to: 'calendar_subscriptions#object', via: :get match '/ical/:object/:method', to: 'calendar_subscriptions#object', via: :get # wording version match '/calendar_subscriptions', to: 'calendar_subscriptions#all', via: :get match '/calendar_subscriptions/:object', to: 'calendar_subscriptions#object', via: :get match '/calendar_subscriptions/:object/:method', to: 'calendar_subscriptions#object', via: :get end
214,324
Github
[ 14277, 7229, 2715, 568, 18, 15, 17, 3, 9706, 568, 18441, 14, 25, 28739, 187, 30952, 32735, 499, 382, 35283, 19479, 605, 25989, 605, 41375, 11188, 6905, 337, 15, 17, 605, 1400, 3, 346, 2413, 1358, 2700, 15, 19934, 15, 681, 16, 41375, 84, 16, 8324, 2765, 14, 18, 15, 17, 15, 48328, 1138, 187, 29, 45890, 2715, 568, 18, 15, 17, 1138, 187, 29, 8102, 31, 187, 186, 29, 2364, 31, 10987, 32192, 2697, 10987, 870, 2364, 31, 187, 186, 29, 2703, 31, 1093, 35, 3011, 68, 870, 2703, 31, 187, 186, 29, 2364, 31, 7386, 18099, 38018, 26330, 870, 2364, 31, 187, 186, 29, 2703, 31, 14376, 870, 2703, 31, 187, 186, 29, 2364, 31, 7386, 18099, 12560, 13508, 870, 2364, 31, 187, 186, 29, 2703, 31, 42263, 5472, 27263, 8224, 870, 2703, 31, 187, 186, 29, 2364, 31, 7386, 18099, 3633, 6074, 2776, 870, 2364, 31, 187, 186, 29, 2703, 31, 18, 15, 2270, 15, 18, 13, 8283, 4332, 8217, 3690, 904, 1720, 8621, 4779, 4050, 870, 2703, 31, 187, 186, 29, 2364, 31, 7386, 18099, 18483, 870, 2364, 31, 187, 186, 29, 2703, 31, 2061, 15, 250, 8621, 1342, 15, 17440, 15, 25989, 37222, 35, 27263, 8224, 870, 2703, 31, 187, 186, 29, 2364, 31, 7386, 18099, 6074, 29872, 8893, 870, 2364, 31, 187, 186, 29, 2703, 31, 23, 15, 17, 870, 2703, 31, 187, 186, 29, 2364, 31, 7386, 18099, 2402, 870, 2364, 31, 187, 186, 29, 2703, 31, 42263, 5472, 27263, 8224, 870, 2703, 31, 187, 186, 29, 2364, 31, 7386, 18099, 22113, 2548, 870, 2364, 31, 187, 186, 29, 2703, 31, 44, 9465, 870, 2703, 31, 187, 186, 29, 2364, 31, 7386, 18099, 17624, 8893, 2776, 870, 2364, 31, 187, 186, 29, 2703, 31, 18, 15, 2270, 15, 18, 14, 17945, 1807, 870, 2703, 31, 187, 186, 29, 2364, 31, 7386, 18099, 34222, 870, 2364, 31, 187, 186, 29, 2703, 31, 25561, 870, 2703, 31, 187, 186, 29, 2364, 31, 7386, 18099, 40015, 17806, 84, 870, 2364, 31, 187, 186, 29, 3728, 31, 996, 186, 29, 2703, 31, 13815, 2697, 57, 870, 2703, 31, 187, 186, 870, 3728, 31, 187, 186, 29, 2364, 31, 7386, 18099, 8893, 870, 2364, 31, 187, 186, 29, 2703, 31, 18, 15, 2270, 15, 18, 870, 2703, 31, 187, 186, 29, 2364, 31, 15580, 42711, 870, 2364, 31, 187, 186, 29, 2703, 31, 681, 15, 19934, 15, 3118, 30526, 15, 38381, 15, 498, 606, 15, 18, 64, 17, 870, 2703, 31, 187, 186, 29, 2364, 31, 15580, 17806, 10987, 870, 2364, 31, 187, 186, 29, 2703, 31, 740, 34, 10637, 870, 2703, 31, 187, 186, 29, 2364, 31, 15580, 17806, 8893, 870, 2364, 31, 187, 186, 29, 2703, 31, 14633, 870, 2703, 31, 187, 186, 29, 2364, 31, 15580, 45007, 10987, 870, 2364, 31, 187, 186, 29, 2703, 31, 1093, 34, 19948, 870, 2703, 31, 187, 186, 29, 2364, 31, 15580, 45007, 2402, 870, 2364, 31, 187, 186, 29, 2703, 31, 12432, 375, 89, 740, 15, 1047, 870, 2703, 31, 187, 186, 29, 2364, 31, 37, 13257, 3211, 870, 2364, 31, 187, 186, 29, 2703, 31, 9138, 870, 2703, 31, 187, 186, 29, 2364, 31, 37, 13257, 3211, 10987, 870, 2364, 31, 187, 186, 29, 2703, 31, 740, 34, 10637, 870, 2703, 31, 187, 186, 29, 2364, 31, 6527, 18938, 27129, 1005, 870, 2364, 31, 187, 186, 29, 8102, 31, 996, 186, 29, 2364, 31, 1934, 8022, 11940, 2006, 3758, 870, 2364, 31, 996, 186, 29, 8102, 31, 988, 186, 29, 2364, 31, 7386, 18099, 18483, 870, 2364, 31, 988, 186, 29, 2703, 31, 2061, 15, 250, 8621, 1342, 15, 17440, 15, 25989, 37222, 35, 27263, 8224, 870, 2703, 31, 988, 186, 29, 2364, 31, 6527, 4947, 870, 2364, 31, 988, 186, 29, 2703, 31, 1934, 8022, 1934, 16930, 870, 2703, 31, 988, 186, 29, 2364, 31, 2449, 482, 21008, 870, 2364, 31, 988, 186, 29, 2703, 31, 1934, 8022, 14602, 870, 2703, 31, 988, 186, 29, 2364, 31, 6527, 1845, 1257, 29064, 870, 2364, 31, 988, 186, 29, 18743, 31, 9138, 870, 18743, 31, 988, 186, 29, 2364, 31, 6527, 14725, 4947, 870, 2364, 31, 988, 186, 29, 2703, 31, 6527, 42263, 3123, 77, 4012, 15982, 870, 2703, 31, 996, 186, 870, 8102, 31, 996, 186, 29, 2364, 31, 1934, 8022, 45733, 15821, 870, 2364, 31, 996, 186, 29, 8102, 31, 988, 186, 29, 2364, 31, 7386, 18099, 18483, 870, 2364, 31, 988, 186, 29, 2703, 31, 2061, 15, 250, 8621, 1342, 15, 17440, 15, 25989, 37222, 35, 27263, 8224, 870, 2703, 31, 988, 186, 29, 2364, 31, 11909, 870, 2364, 31, 988, 186, 29, 8102, 31, 2657, 186, 29, 2364, 31, 47390, 1036, 2713, 52, 1300, 10605, 25977, 870, 2364, 31, 2657, 186, 29, 5672, 4357, 2657, 186, 29, 2364, 31, 47390, 9873, 3787, 15614, 317, 1005, 870, 2364, 31, 2657, 186, 29, 5672, 4357, 2657, 186, 29, 2364, 31, 10605, 6744, 7778, 25977, 9684, 870, 2364, 31, 2657, 186, 29, 18743, 31, 19, 1418, 870, 18743, 31, 2657, 186, 29, 2364, 31, 20768, 2542, 36, 21724, 6878, 15187, 9570, 870, 2364, 31, 2657, 186, 29, 18743, 31, 23, 870, 18743, 31, 2657, 186, 29, 2364, 31, 6407, 49, 2555, 41026, 870, 2364, 31, 2657, 186, 29, 18743, 31, 6914, 870, 18743, 31, 2657, 186, 29, 2364, 31, 8252, 484, 41026, 870, 2364, 31, 2657, 186, 29, 18743, 31, 33038, 870, 18743, 31, 2657, 186, 29, 2364, 31, 11244, 23045, 55, 7391, 486, 2214, 10605, 48506, 870, 2364, 31, 2657, 186, 29, 7750, 4357, 2657, 186, 29, 2364, 31, 11244, 23045, 55, 7391, 486, 2214, 23045, 48506, 870, 2364, 31, 2657, 186, 29, 7750, 4357, 2657, 186, 29, 2364, 31, 11244, 23045, 55, 7391, 486, 2214, 9684, 48506, 870, 2364, 31, 2657, 186, 29, 7750, 4357, 2657, 186, 29, 2364, 31, 11244, 43185, 35, 27263, 21166, 6942, 870, 2364, 31, 2657, 186, 29, 7750, 4357, 2657, 186, 29, 2364, 31, 11244, 31087, 35, 27263, 21166, 6942, 870, 2364, 31, 2657, 186, 29, 7750, 4357, 988, 186, 870, 8102, 31, 988, 186, 29, 2364, 31, 6527, 4947, 870, 2364, 31, 988, 186, 29, 2703, 31, 25989, 37222, 35, 27263, 8224, 870, 2703, 31, 988, 186, 29, 2364, 31, 2449, 482, 21008, 870, 2364, 31, 988, 186, 29, 2703, 31, 49, 11236, 17, 36, 17, 34, 870, 2703, 31, 988, 186, 29, 2364, 31, 6527, 1845, 1257, 29064, 870, 2364, 31, 988, 186, 29, 18743, 31, 9138, 870, 18743, 31, 988, 186, 29, 2364, 31, 6527, 14725, 4947, 870, 2364, 31, 988, 186, 29, 2703, 31, 6527, 42263, 3123, 77, 4012, 15982, 870, 2703, 31, 996, 186, 870, 8102, 31, 187, 186, 870, 8102, 31, 187, 186, 29, 2364, 31, 4883, 22705, 5703, 494, 20968, 870, 2364, 31, 187, 186, 29, 2703, 31, 20968, 20919, 4332, 8217, 3690, 15, 1876, 3570, 10827, 13, 1720, 8621, 4779, 4050, 870, 2703, 31, 187, 186, 29, 2364, 31, 2697, 18099, 45, 11569, 870, 2364, 31, 187, 186, 29, 8102, 31, 996, 186, 29, 2364, 31, 681, 15, 19934, 15, 74, 536, 262, 15, 6527, 42263, 3801, 6404, 870, 2364, 31, 996, 186, 29, 2703, 31, 18, 15, 17, 69, 18, 870, 2703, 31, 996, 186, 29, 2364, 31, 681, 15, 19934, 15, 76, 2059, 15, 74, 536, 262, 870, 2364, 31, 996, 186, 29, 2703, 31, 26, 15, 17, 870, 2703, 31, 996, 186, 29, 2364, 31, 681, 15, 19934, 15, 76, 2059, 15, 4658, 25272, 870, 2364, 31, 996, 186, 29, 2703, 31, 26, 15, 17, 870, 2703, 31, 187, 186, 870, 8102, 31, 187, 186, 29, 2364, 31, 2697, 18099, 28463, 870, 2364, 31, 187, 186, 29, 2703, 31, 16560, 870, 2703, 31, 187, 186, 29, 2364, 31, 7781, 6307, 870, 2364, 31, 187, 186, 29, 2703, 31, 3614, 1358, 7280, 15, 681, 16, 1785, 8621, 4779, 16, 2697, 14, 57, 14, 1934, 8022, 14, 35, 27263, 14, 25603, 870, 2703, 31, 187, 870, 8102, 31, 187, 870, 45890, 31, 187 ]
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>BuildMachineOSBuild</key> <string>18B57c</string> <key>CFBundleDevelopmentRegion</key> <string>English</string> <key>CFBundleExecutable</key> <string>ACPIBatteryManager</string> <key>CFBundleGetInfoString</key> <string>1.90.1, Copyright 2011 Apple Inc., RehabMan 2012</string> <key>CFBundleIdentifier</key> <string>org.rehabman.driver.AppleSmartBatteryManager</string> <key>CFBundleInfoDictionaryVersion</key> <string>6.0</string> <key>CFBundleName</key> <string>ACPIBatteryManager</string> <key>CFBundlePackageType</key> <string>KEXT</string> <key>CFBundleShortVersionString</key> <string>1.90.1-tluck</string> <key>CFBundleSignature</key> <string>????</string> <key>CFBundleSupportedPlatforms</key> <array> <string>MacOSX</string> </array> <key>CFBundleVersion</key> <string>1.90.1</string> <key>DTCompiler</key> <string>com.apple.compilers.llvm.clang.1_0</string> <key>DTPlatformBuild</key> <string>10A255</string> <key>DTPlatformVersion</key> <string>GM</string> <key>DTSDKBuild</key> <string>18A384</string> <key>DTSDKName</key> <string>macosx10.14</string> <key>DTXcode</key> <string>1000</string> <key>DTXcodeBuild</key> <string>10A255</string> <key>IOKitPersonalities</key> <dict> <key>ACPI AC Adapter</key> <dict> <key>CFBundleIdentifier</key> <string>org.rehabman.driver.AppleSmartBatteryManager</string> <key>IOClass</key> <string>ACPIACAdapter</string> <key>IONameMatch</key> <string>ACPI0003</string> <key>IOProbeScore</key> <integer>1000</integer> <key>IOProviderClass</key> <string>IOACPIPlatformDevice</string> </dict> <key>ACPI Battery Manager</key> <dict> <key>CFBundleIdentifier</key> <string>org.rehabman.driver.AppleSmartBatteryManager</string> <key>Configuration</key> <dict> <key>Correct16bitSignedCurrentRate</key> <true/> <key>CorrectCorruptCapacities</key> <true/> <key>CurrentDischargeRateMax</key> <integer>20000</integer> <key>EstimateCycleCountDivisor</key> <integer>6</integer> <key>FirstPollDelay</key> <integer>2000</integer> <key>StartupDelay</key> <integer>8000</integer> <key>UseDesignVoltageForCurrentCapacity</key> <false/> <key>UseDesignVoltageForDesignCapacity</key> <false/> <key>UseDesignVoltageForMaxCapacity</key> <false/> <key>UseExtendedBatteryInformationMethod</key> <false/> <key>UseExtraBatteryInformationMethod</key> <false/> </dict> <key>IOClass</key> <string>AppleSmartBatteryManager</string> <key>IONameMatch</key> <string>PNP0C0A</string> <key>IOProbeScore</key> <integer>1000</integer> <key>IOProviderClass</key> <string>IOACPIPlatformDevice</string> </dict> </dict> <key>NSHumanReadableCopyright</key> <string>Copyright © 2011 Apple Inc. All rights reserved, RehabMan 2012</string> <key>OSBundleLibraries</key> <dict> <key>com.apple.iokit.IOACPIFamily</key> <string>1.0d1</string> <key>com.apple.kpi.iokit</key> <string>9.0</string> <key>com.apple.kpi.libkern</key> <string>9.0</string> </dict> <key>OSBundleRequired</key> <string>Root</string> <key>Source Code</key> <string>https://github.com/RehabMan/OS-X-ACPI-Battery-Driver</string> </dict> </plist>
214,325
Github
[ 187, 605, 8283, 16660, 76, 5462, 443, 4405, 729, 899, 5307, 14, 9430, 187, 605, 187, 605, 43950, 762, 253, 35476, 9107, 4637, 13, 11099, 337, 15, 17, 15, 209, 187, 605, 313, 5035, 17909, 1873, 21826, 64, 18, 64, 17, 15, 10134, 390, 3491, 387, 209, 187, 605, 3944, 1358, 2700, 15, 15467, 15, 2061, 16, 17821, 64, 18, 64, 17, 15, 10134, 10, 187, 605, 187, 187, 605, 5729, 36981, 2715, 273, 346, 15467, 16, 42180, 16, 1178, 64, 68, 15, 17471, 3, 10478, 187, 605, 1969, 7953, 5803, 10007, 407, 1133, 2, 187, 187, 12361, 9510, 551, 12953, 278, 446, 551, 187, 187, 8547, 29, 187, 50272, 15295, 308, 13, 1048, 330, 17, 426, 43078, 64, 11779, 13, 1048, 330, 18, 426, 43078, 64, 11779, 13, 1048, 330, 19, 426, 43078, 64, 11779, 187, 50274, 13, 1048, 330, 20, 426, 43078, 64, 11779, 13, 1048, 330, 21, 426, 43078, 64, 11779, 13, 1048, 330, 22, 426, 43078, 64, 11779, 187, 50274, 13, 1048, 330, 23, 426, 43078, 64, 11779, 13, 1048, 330, 24, 426, 43078, 64, 11779, 13, 1048, 330, 25, 426, 43078, 64, 11779, 187, 50274, 13, 1048, 330, 26, 426, 43078, 64, 11779, 13, 1048, 330, 740, 426, 43078, 64, 11779, 13, 1048, 330, 883, 426, 43078, 64, 11779, 187, 50274, 13, 1048, 330, 805, 426, 43078, 64, 11779, 13, 1048, 330, 1012, 426, 43078, 64, 11779, 13, 1048, 330, 1047, 426, 43078, 64, 11779, 187, 50274, 13, 1048, 330, 1010, 426, 43078, 64, 11779, 13, 1048, 330, 1036, 426, 43078, 64, 11779, 13, 1048, 330, 1166, 426, 43078, 64, 11779, 187, 50274, 13, 1048, 330, 1093, 426, 43078, 64, 11779, 13, 1048, 330, 746, 426, 43078, 64, 11779, 187, 50274, 31, 187, 2855, 873, 64, 68, 28, 187, 187, 8547, 29, 187, 50272, 15295, 308, 187, 50274, 31, 187, 2855, 873, 64, 68, 29, 187, 50268, 53, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 187, 50270, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 187, 50270, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 187, 50270, 31, 187, 50274, 27, 873, 17, 64, 68, 29, 53, 31, 187, 92, 187, 50274, 17743, 7919, 873, 17, 64, 68, 29, 53, 14157, 881, 1511, 28, 187, 4718, 187, 187, 8547, 29, 187, 50272, 15295, 308, 13, 1048, 330, 17, 187, 50274, 31, 187, 2855, 873, 64, 68, 29, 187, 50268, 53, 13, 330, 17, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 187, 50270, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 187, 50270, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 187, 50270, 31, 187, 50274, 27, 873, 18, 64, 68, 29, 308, 13, 36, 17, 2239, 187, 92, 187, 50274, 17743, 7919, 873, 18, 64, 68, 29, 308, 13, 36, 17, 37014, 881, 1511, 28, 187, 4718, 187, 187, 8547, 29, 187, 50272, 15295, 308, 13, 1048, 330, 17, 13, 1048, 330, 18, 187, 50274, 31, 187, 2855, 873, 64, 68, 29, 187, 50268, 53, 13, 330, 17, 13, 330, 18, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 187, 50270, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 187, 50270, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 187, 50270, 31, 187, 50274, 27, 873, 19, 64, 68, 29, 308, 13, 36, 17, 13, 36, 18, 2239, 187, 92, 187, 50274, 17743, 7919, 873, 19, 64, 68, 29, 308, 13, 36, 17, 13, 36, 18, 37014, 881, 1511, 28, 187, 4718, 187, 187, 8547, 29, 187, 50272, 15295, 308, 13, 1048, 330, 17, 13, 1048, 330, 18, 13, 1048, 330, 19, 187, 50274, 31, 187, 2855, 873, 64, 68, 29, 187, 50268, 53, 13, 330, 17, 13, 330, 18, 13, 330, 19, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 187, 50270, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 187, 50270, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 187, 50270, 31, 187, 50274, 27, 873, 20, 64, 68, 29, 308, 13, 36, 17, 13, 36, 18, 13, 36, 19, 2239, 187, 92, 187, 50274, 17743, 7919, 873, 20, 64, 68, 29, 308, 13, 36, 17, 13, 36, 18, 13, 36, 19, 37014, 881, 1511, 28, 187, 4718, 187, 187, 8547, 29, 187, 50272, 15295, 308, 13, 1048, 330, 17, 13, 1048, 330, 18, 13, 1048, 330, 19, 13, 1048, 330, 20, 187, 50274, 31, 187, 2855, 873, 64, 68, 29, 187, 50268, 53, 13, 330, 17, 13, 330, 18, 13, 330, 19, 13, 330, 20, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 187, 50270, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 187, 50270, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 187, 50270, 31, 187, 50274, 27, 873, 21, 64, 68, 29, 308, 13, 36, 17, 13, 36, 18, 13, 36, 19, 13, 36, 20, 2239, 187, 92, 187, 50274, 17743, 7919, 873, 21, 64, 68, 29, 308, 13, 36, 17, 13, 36, 18, 13, 36, 19, 13, 36, 20, 37014, 881, 1511, 28, 187, 4718, 187, 187, 8547, 29, 187, 50272, 15295, 308, 13, 1048, 330, 17, 13, 1048, 330, 18, 13, 1048, 330, 19, 13, 1048, 330, 20, 13, 1048, 330, 21, 187, 50274, 31, 187, 2855, 873, 64, 68, 29, 187, 50268, 53, 13, 330, 17, 13, 330, 18, 13, 330, 19, 13, 330, 20, 13, 330, 21, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 187, 50270, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 187, 50270, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 187, 50270, 31, 187, 50274, 27, 873, 22, 64, 68, 29, 308, 13, 36, 17, 13, 36, 18, 13, 36, 19, 13, 36, 20, 13, 36, 21, 2239, 187, 92, 187, 50274, 17743, 7919, 873, 22, 64, 68, 29, 308, 13, 36, 17, 13, 36, 18, 13, 36, 19, 13, 36, 20, 13, 36, 21, 37014, 881, 1511, 28, 187, 4718, 187, 187, 8547, 29, 187, 50272, 15295, 308, 13, 1048, 330, 17, 13, 1048, 330, 18, 13, 1048, 330, 19, 13, 1048, 330, 20, 13, 1048, 330, 21, 13, 1048, 330, 22, 187, 50274, 31, 187, 2855, 873, 64, 68, 29, 187, 50268, 53, 13, 330, 17, 13, 330, 18, 13, 330, 19, 13, 330, 20, 13, 330, 21, 13, 330, 22, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 187, 50270, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 187, 50270, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 187, 50270, 31, 187, 50274, 27, 873, 23, 64, 68, 29, 308, 13, 36, 17, 13, 36, 18, 13, 36, 19, 13, 36, 20, 13, 36, 21, 13, 36, 22, 2239, 187, 92, 187, 50274, 17743, 7919, 873, 23, 64, 68, 29, 308, 13, 36, 17, 13, 36, 18, 13, 36, 19, 13, 36, 20, 13, 36, 21, 13, 36, 22, 37014, 881, 1511, 28, 187, 4718, 187, 187, 8547, 29, 187, 50272, 15295, 308, 13, 1048, 330, 17, 13, 1048, 330, 18, 13, 1048, 330, 19, 13, 1048, 330, 20, 13, 1048, 330, 21, 13, 1048, 330, 22, 187, 50274, 13, 1048, 330, 23, 187, 50274, 31, 187, 2855, 873, 64, 68, 29, 187, 50268, 53, 13, 330, 17, 13, 330, 18, 13, 330, 19, 13, 330, 20, 13, 330, 21, 13, 330, 22, 13, 330, 23, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 187, 50270, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 187, 50270, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 187, 50270, 31, 187, 50274, 27, 873, 24, 64, 68, 29, 308, 13, 36, 17, 13, 36, 18, 13, 36, 19, 13, 36, 20, 13, 36, 21, 13, 36, 22, 13, 36, 23, 2239, 187, 92, 187, 50274, 17743, 7919, 873, 24, 64, 68, 29, 308, 13, 36, 17, 13, 36, 18, 13, 36, 19, 13, 36, 20, 13, 36, 21, 13, 36, 22, 13, 36, 23, 37014, 881, 1511, 28, 187, 4718, 187, 187, 8547, 29, 187, 50272, 15295, 308, 13, 1048, 330, 17, 13, 1048, 330, 18, 13, 1048, 330, 19, 13, 1048, 330, 20, 13, 1048, 330, 21, 13, 1048, 330, 22, 187, 50274, 13, 1048, 330, 23, 13, 1048, 330, 24, 187, 50274, 31, 187, 2855, 873, 64, 68, 29, 187, 50268, 53, 13, 330, 17, 13, 330, 18, 13, 330, 19, 13, 330, 20, 13, 330, 21, 13, 330, 22, 13, 330, 23, 13, 330, 24, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 187, 50270, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 187, 50270, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 187, 50270, 31, 187, 50274, 27, 873, 25, 64, 68, 29, 308, 13, 36, 17, 13, 36, 18, 13, 36, 19, 13, 36, 20, 13, 36, 21, 13, 36, 22, 13, 36, 23, 13, 36, 24, 2239, 187, 92, 187, 50274, 17743, 7919, 873, 25, 64, 68, 29, 308, 13, 36, 17, 13, 36, 18, 13, 36, 19, 13, 36, 20, 13, 36, 21, 13, 36, 22, 13, 36, 23, 13, 36, 24, 37014, 881, 1511, 28, 187, 4718, 187, 187, 8547, 29, 187, 50272, 15295, 308, 13, 1048, 330, 17, 13, 1048, 330, 18, 13, 1048, 330, 19, 13, 1048, 330, 20, 13, 1048, 330, 21, 13, 1048, 330, 22, 187, 50274, 13, 1048, 330, 23, 13, 1048, 330, 24, 13, 1048, 330, 25, 187, 50274, 31, 187, 2855, 873, 64, 68, 29, 187, 50268, 53, 13, 330, 17, 13, 330, 18, 13, 330, 19, 13, 330, 20, 13, 330, 21, 13, 330, 22, 13, 330, 23, 13, 330, 24, 13, 330, 25, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 187, 50270, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 187, 50270, 13, 43078, 64, 11779, 187, 50270, 31, 187, 50274, 27, 873, 26, 64, 68, 29, 308, 13, 36, 17, 13, 36, 18, 13, 36, 19, 13, 36, 20, 13, 36, 21, 13, 36, 22, 13, 36, 23, 13, 36, 24, 13, 36, 25, 2239, 187, 92, 187, 50274, 17743, 7919, 873, 26, 64, 68, 29, 308, 13, 36, 17, 13, 36, 18, 13, 36, 19, 13, 36, 20, 13, 36, 21, 13, 36, 22, 13, 36, 23, 13, 36, 24, 13, 36, 25, 37014, 881, 1511, 28, 187, 4718, 187, 187, 8547, 29, 187, 50272, 15295, 308, 13, 1048, 330, 17, 13, 1048, 330, 18, 13, 1048, 330, 19, 13, 1048, 330, 20, 13, 1048, 330, 21, 13, 1048, 330, 22, 187, 50274, 13, 1048, 330, 23, 13, 1048, 330, 24, 13, 1048, 330, 25, 13, 1048, 330, 26, 187, 50274, 31, 187, 2855, 873, 64, 68, 29, 187, 50268, 53, 13, 330, 17, 13, 330, 18, 13, 330, 19, 13, 330, 20, 13, 330, 21, 13, 330, 22, 13, 330, 23, 13, 330, 24, 13, 330, 25, 13, 330, 26, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 187, 50270, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 187, 50270, 13, 43078, 64, 11779, 187, 50270, 31, 187, 50274, 27, 873, 740, 64, 68, 29, 308, 13, 36, 17, 13, 36, 18, 13, 36, 19, 13, 36, 20, 13, 36, 21, 13, 36, 22, 13, 36, 23, 13, 36, 24, 13, 36, 25, 13, 36, 26, 2239, 187, 92, 187, 50274, 17743, 7919, 873, 740, 64, 68, 29, 308, 13, 36, 17, 13, 36, 18, 13, 36, 19, 13, 36, 20, 13, 36, 21, 13, 36, 22, 13, 36, 23, 13, 36, 24, 13, 36, 25, 13, 36, 26, 37014, 881, 1511, 28, 187, 4718, 187, 187, 8547, 29, 187, 50272, 15295, 308, 13, 1048, 330, 17, 13, 1048, 330, 18, 13, 1048, 330, 19, 13, 1048, 330, 20, 13, 1048, 330, 21, 13, 1048, 330, 22, 187, 50274, 13, 1048, 330, 23, 13, 1048, 330, 24, 13, 1048, 330, 25, 13, 1048, 330, 26, 13, 1048, 330, 740, 187, 50274, 31, 187, 2855, 873, 64, 68, 29, 187, 50268, 53, 13, 330, 17, 13, 330, 18, 13, 330, 19, 13, 330, 20, 13, 330, 21, 13, 330, 22, 13, 330, 23, 13, 330, 24, 13, 330, 25, 13, 330, 26, 13, 330, 740, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 187, 50270, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 187, 50270, 31, 187, 50274, 27, 873, 883, 64, 68, 29, 308, 13, 36, 17, 13, 36, 18, 13, 36, 19, 13, 36, 20, 13, 36, 21, 13, 36, 22, 13, 36, 23, 13, 36, 24, 13, 36, 25, 13, 36, 26, 13, 36, 740, 2239, 187, 92, 187, 50274, 17743, 7919, 873, 883, 64, 68, 29, 308, 13, 36, 17, 13, 36, 18, 13, 36, 19, 13, 36, 20, 13, 36, 21, 13, 36, 22, 13, 36, 23, 13, 36, 24, 13, 36, 25, 13, 36, 26, 13, 36, 740, 37014, 881, 1511, 28, 187, 4718, 187, 187, 8547, 29, 187, 50272, 15295, 308, 13, 1048, 330, 17, 13, 1048, 330, 18, 13, 1048, 330, 19, 13, 1048, 330, 20, 13, 1048, 330, 21, 13, 1048, 330, 22, 187, 50274, 13, 1048, 330, 23, 13, 1048, 330, 24, 13, 1048, 330, 25, 13, 1048, 330, 26, 13, 1048, 330, 740, 13, 1048, 330, 883, 187, 50274, 31, 187, 2855, 873, 64, 68, 29, 187, 50268, 53, 13, 330, 17, 13, 330, 18, 13, 330, 19, 13, 330, 20, 13, 330, 21, 13, 330, 22, 13, 330, 23, 13, 330, 24, 13, 330, 25, 13, 330, 26, 13, 330, 740, 13, 330, 883, 13, 43078, 64, 11779, 187, 50270, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 187, 50270, 31, 187, 50274, 27, 873, 805, 64, 68, 29, 308, 13, 36, 17, 13, 36, 18, 13, 36, 19, 13, 36, 20, 13, 36, 21, 13, 36, 22, 13, 36, 23, 13, 36, 24, 13, 36, 25, 13, 36, 26, 13, 36, 740, 13, 36, 883, 2239, 187, 92, 187, 50274, 17743, 7919, 873, 805, 64, 68, 29, 308, 13, 36, 17, 13, 36, 18, 13, 36, 19, 13, 36, 20, 13, 36, 21, 13, 36, 22, 13, 36, 23, 13, 36, 24, 13, 36, 25, 13, 36, 26, 13, 36, 740, 13, 36, 883, 37014, 881, 1511, 28, 187, 4718, 187, 187, 8547, 29, 187, 50272, 15295, 308, 13, 1048, 330, 17, 13, 1048, 330, 18, 13, 1048, 330, 19, 13, 1048, 330, 20, 13, 1048, 330, 21, 13, 1048, 330, 22, 187, 50274, 13, 1048, 330, 23, 13, 1048, 330, 24, 13, 1048, 330, 25, 13, 1048, 330, 26, 13, 1048, 330, 740, 13, 1048, 330, 883, 13, 1048, 330, 805, 187, 50274, 31, 187, 2855, 873, 64, 68, 29, 187, 50268, 53, 13, 330, 17, 13, 330, 18, 13, 330, 19, 13, 330, 20, 13, 330, 21, 13, 330, 22, 13, 330, 23, 13, 330, 24, 13, 330, 25, 13, 330, 26, 13, 330, 740, 13, 330, 883, 13, 330, 805, 13, 43078, 64, 11779, 187, 50270, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 187, 50270, 31, 187, 50274, 27, 873, 1012, 64, 68, 29, 308, 13, 36, 17, 13, 36, 18, 13, 36, 19, 13, 36, 20, 13, 36, 21, 13, 36, 22, 13, 36, 23, 13, 36, 24, 13, 36, 25, 13, 36, 26, 13, 36, 740, 13, 36, 883, 13, 36, 805, 2239, 187, 92, 187, 50274, 17743, 7919, 873, 1012, 64, 68, 29, 308, 13, 36, 17, 13, 36, 18, 13, 36, 19, 13, 36, 20, 13, 36, 21, 13, 36, 22, 13, 36, 23, 13, 36, 24, 13, 36, 25, 13, 36, 26, 13, 36, 740, 13, 36, 883, 13, 36, 805, 37014, 881, 1511, 28, 187, 4718, 187, 187, 8547, 29, 187, 50272, 15295, 308, 13, 1048, 330, 17, 13, 1048, 330, 18, 13, 1048, 330, 19, 13, 1048, 330, 20, 13, 1048, 330, 21, 13, 1048, 330, 22, 187, 50274, 13, 1048, 330, 23, 13, 1048, 330, 24, 13, 1048, 330, 25, 13, 1048, 330, 26, 13, 1048, 330, 740, 13, 1048, 330, 883, 13, 1048, 330, 805, 187, 50274, 13, 1048, 330, 1012, 187, 50274, 31, 187, 2855, 873, 64, 68, 29, 187, 50268, 53, 13, 330, 17, 13, 330, 18, 13, 330, 19, 13, 330, 20, 13, 330, 21, 13, 330, 22, 13, 330, 23, 13, 330, 24, 13, 330, 25, 13, 330, 26, 13, 330, 740, 13, 330, 883, 13, 330, 805, 13, 330, 1012, 187, 50270, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 187, 50270, 31, 187, 50274, 27, 873, 1047, 64, 68, 29, 187, 50268, 53, 13, 330, 17, 13, 330, 18, 13, 330, 19, 13, 330, 20, 13, 330, 21, 13, 330, 22, 13, 330, 23, 13, 330, 24, 13, 330, 25, 13, 330, 26, 13, 330, 740, 13, 330, 883, 13, 330, 805, 13, 330, 1012, 187, 50270, 31, 187, 92, 187, 50274, 17743, 7919, 873, 1047, 64, 68, 29, 308, 13, 36, 17, 13, 36, 18, 13, 36, 19, 13, 36, 20, 13, 36, 21, 13, 36, 22, 13, 36, 23, 13, 36, 24, 13, 36, 25, 13, 36, 26, 13, 36, 740, 13, 36, 883, 13, 36, 805, 13, 36, 1012, 37014, 881, 1511, 28, 187, 4718, 187, 187, 8547, 29, 187, 50272, 15295, 308, 13, 1048, 330, 17, 13, 1048, 330, 18, 13, 1048, 330, 19, 13, 1048, 330, 20, 13, 1048, 330, 21, 13, 1048, 330, 22, 187, 50274, 13, 1048, 330, 23, 13, 1048, 330, 24, 13, 1048, 330, 25, 13, 1048, 330, 26, 13, 1048, 330, 740, 13, 1048, 330, 883, 13, 1048, 330, 805, 187, 50274, 13, 1048, 330, 1012, 13, 1048, 330, 1047, 187, 50274, 31, 187, 2855, 873, 64, 68, 29, 187, 50268, 53, 13, 330, 17, 13, 330, 18, 13, 330, 19, 13, 330, 20, 13, 330, 21, 13, 330, 22, 13, 330, 23, 13, 330, 24, 13, 330, 25, 13, 330, 26, 13, 330, 740, 13, 330, 883, 13, 330, 805, 13, 330, 1012, 13, 330, 1047, 187, 50270, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 187, 50270, 31, 187, 50274, 27, 873, 1010, 64, 68, 29, 187, 50268, 53, 13, 330, 17, 13, 330, 18, 13, 330, 19, 13, 330, 20, 13, 330, 21, 13, 330, 22, 13, 330, 23, 13, 330, 24, 13, 330, 25, 13, 330, 26, 13, 330, 740, 13, 330, 883, 13, 330, 805, 13, 330, 1012, 13, 330, 1047, 187, 50270, 31, 187, 92, 187, 50274, 17743, 7919, 873, 1010, 64, 68, 29, 308, 13, 36, 17, 13, 36, 18, 13, 36, 19, 13, 36, 20, 13, 36, 21, 13, 36, 22, 13, 36, 23, 13, 36, 24, 13, 36, 25, 13, 36, 26, 13, 36, 740, 13, 36, 883, 13, 36, 805, 13, 36, 1012, 13, 36, 1047, 37014, 881, 1511, 28, 187, 4718, 187, 187, 8547, 29, 187, 50272, 15295, 308, 13, 1048, 330, 17, 13, 1048, 330, 18, 13, 1048, 330, 19, 13, 1048, 330, 20, 13, 1048, 330, 21, 13, 1048, 330, 22, 187, 50274, 13, 1048, 330, 23, 13, 1048, 330, 24, 13, 1048, 330, 25, 13, 1048, 330, 26, 13, 1048, 330, 740, 13, 1048, 330, 883, 13, 1048, 330, 805, 187, 50274, 13, 1048, 330, 1012, 13, 1048, 330, 1047, 13, 1048, 330, 1010, 187, 50274, 31, 187, 2855, 873, 64, 68, 29, 187, 50268, 53, 13, 330, 17, 13, 330, 18, 13, 330, 19, 13, 330, 20, 13, 330, 21, 13, 330, 22, 13, 330, 23, 13, 330, 24, 13, 330, 25, 13, 330, 26, 13, 330, 740, 13, 330, 883, 13, 330, 805, 13, 330, 1012, 13, 330, 1047, 187, 50270, 13, 330, 1010, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 187, 50270, 31, 187, 50274, 27, 873, 1036, 64, 68, 29, 187, 50268, 53, 13, 330, 17, 13, 330, 18, 13, 330, 19, 13, 330, 20, 13, 330, 21, 13, 330, 22, 13, 330, 23, 13, 330, 24, 13, 330, 25, 13, 330, 26, 13, 330, 740, 13, 330, 883, 13, 330, 805, 13, 330, 1012, 13, 330, 1047, 187, 50270, 13, 330, 1010, 187, 50270, 31, 187, 92, 187, 50274, 17743, 7919, 873, 1036, 64, 68, 29, 308, 13, 36, 17, 13, 36, 18, 13, 36, 19, 13, 36, 20, 13, 36, 21, 13, 36, 22, 13, 36, 23, 13, 36, 24, 13, 36, 25, 13, 36, 26, 13, 36, 740, 13, 36, 883, 13, 36, 805, 13, 36, 1012, 13, 36, 1047, 13, 36, 1010, 37014, 881, 1511, 28, 187, 4718, 187, 187, 8547, 29, 187, 50272, 15295, 308, 13, 1048, 330, 17, 13, 1048, 330, 18, 13, 1048, 330, 19, 13, 1048, 330, 20, 13, 1048, 330, 21, 13, 1048, 330, 22, 187, 50274, 13, 1048, 330, 23, 13, 1048, 330, 24, 13, 1048, 330, 25, 13, 1048, 330, 26, 13, 1048, 330, 740, 13, 1048, 330, 883, 13, 1048, 330, 805, 187, 50274, 13, 1048, 330, 1012, 13, 1048, 330, 1047, 13, 1048, 330, 1010, 13, 1048, 330, 1036, 187, 50274, 31, 187, 2855, 873, 64, 68, 29, 187, 50268, 53, 13, 330, 17, 13, 330, 18, 13, 330, 19, 13, 330, 20, 13, 330, 21, 13, 330, 22, 13, 330, 23, 13, 330, 24, 13, 330, 25, 13, 330, 26, 13, 330, 740, 13, 330, 883, 13, 330, 805, 13, 330, 1012, 13, 330, 1047, 187, 50270, 13, 330, 1010, 13, 330, 1036, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 187, 50270, 31, 187, 50274, 27, 873, 1166, 64, 68, 29, 187, 50268, 53, 13, 330, 17, 13, 330, 18, 13, 330, 19, 13, 330, 20, 13, 330, 21, 13, 330, 22, 13, 330, 23, 13, 330, 24, 13, 330, 25, 13, 330, 26, 13, 330, 740, 13, 330, 883, 13, 330, 805, 13, 330, 1012, 13, 330, 1047, 187, 50270, 13, 330, 1010, 13, 330, 1036, 187, 50270, 31, 187, 92, 187, 50274, 17743, 7919, 873, 1166, 64, 68, 29, 308, 13, 36, 17, 13, 36, 18, 13, 36, 19, 13, 36, 20, 13, 36, 21, 13, 36, 22, 13, 36, 23, 13, 36, 24, 13, 36, 25, 13, 36, 26, 13, 36, 740, 13, 36, 883, 13, 36, 805, 13, 36, 1012, 13, 36, 1047, 13, 36, 1010, 13, 36, 1036, 37014, 881, 1511, 28, 187, 4718, 187, 187, 8547, 29, 187, 50272, 15295, 308, 13, 1048, 330, 17, 13, 1048, 330, 18, 13, 1048, 330, 19, 13, 1048, 330, 20, 13, 1048, 330, 21, 13, 1048, 330, 22, 187, 50274, 13, 1048, 330, 23, 13, 1048, 330, 24, 13, 1048, 330, 25, 13, 1048, 330, 26, 13, 1048, 330, 740, 13, 1048, 330, 883, 13, 1048, 330, 805, 187, 50274, 13, 1048, 330, 1012, 13, 1048, 330, 1047, 13, 1048, 330, 1010, 13, 1048, 330, 1036, 13, 1048, 330, 1166, 187, 50274, 31, 187, 2855, 873, 64, 68, 29, 187, 50268, 53, 13, 330, 17, 13, 330, 18, 13, 330, 19, 13, 330, 20, 13, 330, 21, 13, 330, 22, 13, 330, 23, 13, 330, 24, 13, 330, 25, 13, 330, 26, 13, 330, 740, 13, 330, 883, 13, 330, 805, 13, 330, 1012, 13, 330, 1047, 187, 50270, 13, 330, 1010, 13, 330, 1036, 13, 330, 1166, 13, 43078, 64, 11779, 13, 43078, 64, 11779, 187, 50270, 31, 187, 50274, 27, 873, 1093, 64, 68, 29, 187, 50268, 53, 13, 330, 17, 13, 330, 18, 13, 330, 19, 13, 330, 20, 13, 330, 21, 13, 330, 22, 13, 330, 23, 13, 330, 24, 13, 330, 25, 13, 330, 26, 13, 330, 740, 13, 330, 883, 13, 330, 805, 13, 330, 1012, 13, 330, 1047, 187, 50270, 13, 330, 1010, 13, 330, 1036, 13, 330, 1166, 187, 50270, 31, 187, 92, 187, 50274, 17743, 7919, 873, 1093, 64, 68, 29, 308, 13, 36, 17, 13, 36, 18, 13, 36, 19, 13, 36, 20, 13, 36, 21, 13, 36, 22, 13, 36, 23, 13, 36, 24, 13, 36, 25, 13, 36, 26, 13, 36, 740, 13, 36, 883, 13, 36, 805, 13, 36, 1012, 13, 36, 1047, 13, 36, 1010, 13, 36, 1036, 13, 36, 1166, 37014, 881, 1511, 28, 187, 4718, 187, 187, 8547, 29, 187, 50272, 15295, 308, 13, 1048, 330, 17, 13, 1048, 330, 18, 13, 1048, 330, 19, 13, 1048, 330, 20, 13, 1048, 330, 21, 13, 1048, 330, 22, 187, 50274, 13, 1048, 330, 23, 13, 1048, 330, 24, 13, 1048, 330, 25, 13, 1048, 330, 26, 13, 1048, 330, 740, 13, 1048, 330, 883, 13, 1048, 330, 805, 187, 50274, 13, 1048, 330, 1012, 13, 1048, 330, 1047, 13, 1048, 330, 1010, 13, 1048, 330, 1036, 13, 1048, 330, 1166, 13, 1048, 330, 1093, 187, 50274, 31, 187, 2855, 873, 64, 68, 29, 187, 50268, 53, 13, 330, 17, 13, 330, 18, 13, 330, 19, 13, 330, 20, 13, 330, 21, 13, 330, 22, 13, 330, 23, 13, 330, 24, 13, 330, 25, 13, 330, 26, 13, 330, 740, 13, 330, 883, 13, 330, 805, 13, 330, 1012, 13, 330, 1047, 187, 50270, 13, 330, 1010, 13, 330, 1036, 13, 330, 1166, 13, 330, 1093, 13, 43078, 64, 11779, 187, 50270, 31, 187, 50274, 27, 873, 746, 64, 68, 29, 187, 50268, 53, 13, 330, 17, 13, 330, 18, 13, 330, 19, 13, 330, 20, 13, 330, 21, 13, 330, 22, 13, 330, 23, 13, 330, 24, 13, 330, 25, 13, 330, 26, 13, 330, 740, 13, 330, 883, 13, 330, 805, 13, 330, 1012, 13, 330, 1047, 187, 50270, 13, 330, 1010, 13, 330, 1036, 13, 330, 1166, 13, 330, 1093, 187, 50270, 31, 187, 92, 187, 50274, 17743, 7919, 873, 746, 64, 68, 29, 308, 13, 36, 17, 13, 36, 18, 13, 36, 19, 13, 36, 20, 13, 36, 21, 13, 36, 22, 13, 36, 23, 13, 36, 24, 13, 36, 25, 13, 36, 26, 13, 36, 740, 13, 36, 883, 13, 36, 805, 13, 36, 1012, 13, 36, 1047, 13, 36, 1010, 13, 36, 1036, 13, 36, 1166, 13, 36, 1093, 37014, 881, 1511, 28, 187, 4718, 187, 187, 10638, 3625, 7646, 313, 1439, 247, 48544, 13724, 187, 187, 8547, 29, 187, 50272, 15295, 308, 13, 1048, 330, 17, 13, 1048, 330, 18, 13, 1048, 330, 19, 13, 1048, 330, 20, 13, 1048, 330, 21, 13, 1048, 330, 22, 187, 50274, 13, 1048, 330, 23, 13, 1048, 330, 24, 13, 1048, 330, 25, 13, 1048, 330, 26, 13, 1048, 330, 740, 13, 1048, 330, 883, 13, 1048, 330, 805, 187, 50274, 13, 1048, 330, 1012, 13, 1048, 330, 1047, 13, 1048, 330, 1010, 13, 1048, 330, 1036, 13, 1048, 330, 1166, 13, 1048, 330, 1093, 13, 1048, 330, 746, 187, 50274, 31, 187, 2855, 873, 64, 68, 187, 50274, 27, 873, 938, 64, 68, 29, 187, 50268, 53, 13, 330, 17, 13, 330, 18, 13, 330, 19, 13, 330, 20, 13, 330, 21, 13, 330, 22, 13, 330, 23, 13, 330, 24, 13, 330, 25, 13, 330, 26, 13, 330, 740, 13, 330, 883, 13, 330, 805, 13, 330, 1012, 13, 330, 1047, 187, 50270, 13, 330, 1010, 13, 330, 1036, 13, 330, 1166, 13, 330, 1093, 13, 330, 746, 187, 50270, 31, 187, 92, 187, 50274, 17743, 7919, 873, 938, 64, 68, 29, 308, 13, 36, 17, 13, 36, 18, 13, 36, 19, 13, 36, 20, 13, 36, 21, 13, 36, 22, 13, 36, 23, 13, 36, 24, 13, 36, 25, 13, 36, 26, 13, 36, 740, 13, 36, 883, 13, 36, 805, 13, 36, 1012, 13, 36, 1047, 13, 36, 1010, 13, 36, 1036, 13, 36, 1166, 13, 36, 1093, 13, 36, 746, 37014, 881, 1511, 28, 187, 4718, 187, 187, 599, 535 ]
// Copyright Aleksey Gurtovoy 2000-2004 // // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) // // Preprocessed version of "boost/mpl/set_c.hpp" header // -- DO NOT modify by hand! namespace boost { namespace mpl { template< typename T, long C0 = LONG_MAX, long C1 = LONG_MAX, long C2 = LONG_MAX , long C3 = LONG_MAX, long C4 = LONG_MAX, long C5 = LONG_MAX , long C6 = LONG_MAX, long C7 = LONG_MAX, long C8 = LONG_MAX , long C9 = LONG_MAX, long C10 = LONG_MAX, long C11 = LONG_MAX , long C12 = LONG_MAX, long C13 = LONG_MAX, long C14 = LONG_MAX , long C15 = LONG_MAX, long C16 = LONG_MAX, long C17 = LONG_MAX , long C18 = LONG_MAX, long C19 = LONG_MAX > struct set_c; template< typename T > struct set_c< T, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX , LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX , LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX > : set0_c<T> { typedef typename set0_c<T>::type type; }; template< typename T, long C0 > struct set_c< T, C0, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX , LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX , LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX > : set1_c< T,C0 > { typedef typename set1_c< T,C0 >::type type; }; template< typename T, long C0, long C1 > struct set_c< T, C0, C1, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX , LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX , LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX > : set2_c< T,C0,C1 > { typedef typename set2_c< T,C0,C1 >::type type; }; template< typename T, long C0, long C1, long C2 > struct set_c< T, C0, C1, C2, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX , LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX , LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX > : set3_c< T,C0,C1,C2 > { typedef typename set3_c< T,C0,C1,C2 >::type type; }; template< typename T, long C0, long C1, long C2, long C3 > struct set_c< T, C0, C1, C2, C3, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX , LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX , LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX > : set4_c< T,C0,C1,C2,C3 > { typedef typename set4_c< T,C0,C1,C2,C3 >::type type; }; template< typename T, long C0, long C1, long C2, long C3, long C4 > struct set_c< T, C0, C1, C2, C3, C4, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX , LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX , LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX > : set5_c< T,C0,C1,C2,C3,C4 > { typedef typename set5_c< T,C0,C1,C2,C3,C4 >::type type; }; template< typename T, long C0, long C1, long C2, long C3, long C4, long C5 > struct set_c< T, C0, C1, C2, C3, C4, C5, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX , LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX , LONG_MAX, LONG_MAX, LONG_MAX > : set6_c< T,C0,C1,C2,C3,C4,C5 > { typedef typename set6_c< T,C0,C1,C2,C3,C4,C5 >::type type; }; template< typename T, long C0, long C1, long C2, long C3, long C4, long C5 , long C6 > struct set_c< T, C0, C1, C2, C3, C4, C5, C6, LONG_MAX, LONG_MAX, LONG_MAX , LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX , LONG_MAX, LONG_MAX, LONG_MAX > : set7_c< T,C0,C1,C2,C3,C4,C5,C6 > { typedef typename set7_c< T,C0,C1,C2,C3,C4,C5,C6 >::type type; }; template< typename T, long C0, long C1, long C2, long C3, long C4, long C5 , long C6, long C7 > struct set_c< T, C0, C1, C2, C3, C4, C5, C6, C7, LONG_MAX, LONG_MAX, LONG_MAX , LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX , LONG_MAX, LONG_MAX > : set8_c< T,C0,C1,C2,C3,C4,C5,C6,C7 > { typedef typename set8_c< T,C0,C1,C2,C3,C4,C5,C6,C7 >::type type; }; template< typename T, long C0, long C1, long C2, long C3, long C4, long C5 , long C6, long C7, long C8 > struct set_c< T, C0, C1, C2, C3, C4, C5, C6, C7, C8, LONG_MAX, LONG_MAX, LONG_MAX , LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX , LONG_MAX > : set9_c< T,C0,C1,C2,C3,C4,C5,C6,C7,C8 > { typedef typename set9_c< T,C0,C1,C2,C3,C4,C5,C6,C7,C8 >::type type; }; template< typename T, long C0, long C1, long C2, long C3, long C4, long C5 , long C6, long C7, long C8, long C9 > struct set_c< T, C0, C1, C2, C3, C4, C5, C6, C7, C8, C9, LONG_MAX, LONG_MAX , LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX , LONG_MAX > : set10_c< T,C0,C1,C2,C3,C4,C5,C6,C7,C8,C9 > { typedef typename set10_c< T,C0,C1,C2,C3,C4,C5,C6,C7,C8,C9 >::type type; }; template< typename T, long C0, long C1, long C2, long C3, long C4, long C5 , long C6, long C7, long C8, long C9, long C10 > struct set_c< T, C0, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10, LONG_MAX, LONG_MAX , LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX > : set11_c< T,C0,C1,C2,C3,C4,C5,C6,C7,C8,C9,C10 > { typedef typename set11_c< T,C0,C1,C2,C3,C4,C5,C6,C7,C8,C9,C10 >::type type; }; template< typename T, long C0, long C1, long C2, long C3, long C4, long C5 , long C6, long C7, long C8, long C9, long C10, long C11 > struct set_c< T, C0, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10, C11, LONG_MAX , LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX > : set12_c< T,C0,C1,C2,C3,C4,C5,C6,C7,C8,C9,C10,C11 > { typedef typename set12_c< T,C0,C1,C2,C3,C4,C5,C6,C7,C8,C9,C10,C11 >::type type; }; template< typename T, long C0, long C1, long C2, long C3, long C4, long C5 , long C6, long C7, long C8, long C9, long C10, long C11, long C12 > struct set_c< T, C0, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10, C11, C12, LONG_MAX , LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX > : set13_c< T,C0,C1,C2,C3,C4,C5,C6,C7,C8,C9,C10,C11,C12 > { typedef typename set13_c< T,C0,C1,C2,C3,C4,C5,C6,C7,C8,C9,C10,C11,C12 >::type type; }; template< typename T, long C0, long C1, long C2, long C3, long C4, long C5 , long C6, long C7, long C8, long C9, long C10, long C11, long C12 , long C13 > struct set_c< T, C0, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10, C11, C12, C13 , LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX > : set14_c< T, C0, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10, C11, C12, C13 > { typedef typename set14_c< T,C0,C1,C2,C3,C4,C5,C6,C7,C8,C9,C10,C11,C12,C13 >::type type; }; template< typename T, long C0, long C1, long C2, long C3, long C4, long C5 , long C6, long C7, long C8, long C9, long C10, long C11, long C12 , long C13, long C14 > struct set_c< T, C0, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10, C11, C12, C13, C14 , LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX > : set15_c< T, C0, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10, C11, C12, C13, C14 > { typedef typename set15_c< T,C0,C1,C2,C3,C4,C5,C6,C7,C8,C9,C10,C11,C12,C13,C14 >::type type; }; template< typename T, long C0, long C1, long C2, long C3, long C4, long C5 , long C6, long C7, long C8, long C9, long C10, long C11, long C12 , long C13, long C14, long C15 > struct set_c< T, C0, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10, C11, C12, C13, C14 , C15, LONG_MAX, LONG_MAX, LONG_MAX, LONG_MAX > : set16_c< T, C0, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10, C11, C12, C13, C14 , C15 > { typedef typename set16_c< T,C0,C1,C2,C3,C4,C5,C6,C7,C8,C9,C10,C11,C12,C13,C14,C15 >::type type; }; template< typename T, long C0, long C1, long C2, long C3, long C4, long C5 , long C6, long C7, long C8, long C9, long C10, long C11, long C12 , long C13, long C14, long C15, long C16 > struct set_c< T, C0, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10, C11, C12, C13, C14 , C15, C16, LONG_MAX, LONG_MAX, LONG_MAX > : set17_c< T, C0, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10, C11, C12, C13, C14 , C15, C16 > { typedef typename set17_c< T,C0,C1,C2,C3,C4,C5,C6,C7,C8,C9,C10,C11,C12,C13,C14,C15,C16 >::type type; }; template< typename T, long C0, long C1, long C2, long C3, long C4, long C5 , long C6, long C7, long C8, long C9, long C10, long C11, long C12 , long C13, long C14, long C15, long C16, long C17 > struct set_c< T, C0, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10, C11, C12, C13, C14 , C15, C16, C17, LONG_MAX, LONG_MAX > : set18_c< T, C0, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10, C11, C12, C13, C14 , C15, C16, C17 > { typedef typename set18_c< T,C0,C1,C2,C3,C4,C5,C6,C7,C8,C9,C10,C11,C12,C13,C14,C15,C16,C17 >::type type; }; template< typename T, long C0, long C1, long C2, long C3, long C4, long C5 , long C6, long C7, long C8, long C9, long C10, long C11, long C12 , long C13, long C14, long C15, long C16, long C17, long C18 > struct set_c< T, C0, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10, C11, C12, C13, C14 , C15, C16, C17, C18, LONG_MAX > : set19_c< T, C0, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10, C11, C12, C13, C14 , C15, C16, C17, C18 > { typedef typename set19_c< T,C0,C1,C2,C3,C4,C5,C6,C7,C8,C9,C10,C11,C12,C13,C14,C15,C16,C17,C18 >::type type; }; /// primary template (not a specialization!) template< typename T, long C0, long C1, long C2, long C3, long C4, long C5 , long C6, long C7, long C8, long C9, long C10, long C11, long C12 , long C13, long C14, long C15, long C16, long C17, long C18, long C19 > struct set_c : set20_c< T, C0, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10, C11, C12, C13, C14 , C15, C16, C17, C18, C19 > { typedef typename set20_c< T,C0,C1,C2,C3,C4,C5,C6,C7,C8,C9,C10,C11,C12,C13,C14,C15,C16,C17,C18,C19 >::type type; }; }}
214,326
Github
[ 14277, 7229, 2715, 5473, 18, 15, 17, 8, 9706, 5473, 18441, 14, 25, 8, 28391, 187, 187, 29, 5465, 15664, 568, 662, 27, 27686, 1730, 27, 13517, 27, 1047, 15, 17, 3, 1416, 568, 11717, 1138, 187, 50274, 29, 40028, 31, 187, 50270, 14277, 9465, 18041, 21109, 28391, 187, 50274, 870, 40028, 31, 535, 50274, 29, 26454, 31, 187, 50270, 29, 13980, 14, 6549, 983, 31, 187, 50266, 29, 13980, 14, 6549, 78, 1416, 568, 33281, 17642, 78, 1138, 187, 50262, 29, 1920, 23058, 31, 187, 50258, 29, 6790, 4284, 14, 4537, 31462, 6790, 3, 17049, 14, 4399, 14, 23333, 568, 5672, 5647, 187, 50258, 29, 19402, 1854, 568, 7913, 6917, 14, 15987, 15, 19402, 3, 4103, 14, 936, 568, 27686, 1730, 15, 13517, 15, 5397, 15, 7341, 5647, 187, 50262, 870, 1920, 23058, 31, 187, 50262, 29, 7582, 1320, 3711, 14, 12896, 14, 936, 14, 287, 868, 568, 7750, 1138, 187, 50258, 29, 19402, 1854, 568, 7913, 6917, 14, 12896, 15, 19402, 3, 4103, 14, 936, 568, 27686, 1730, 15, 13517, 15, 5397, 15, 7341, 5647, 187, 50262, 870, 7582, 1320, 31, 187, 50266, 870, 13980, 14, 6549, 78, 31, 187, 50266, 29, 13980, 14, 6549, 78, 1416, 568, 12332, 17642, 78, 1138, 187, 50262, 29, 9438, 14, 888, 1005, 31, 187, 50258, 29, 28908, 31, 187, 50254, 29, 2364, 11869, 1854, 568, 13259, 15, 2364, 11869, 3, 4103, 14, 936, 568, 27686, 1730, 15, 13517, 15, 5397, 15, 7341, 3, 2234, 11869, 14, 15760, 568, 15760, 3, 28129, 568, 9438, 3, 2234, 14, 15760, 568, 15760, 3, 6635, 14, 1286, 14, 36323, 14, 15004, 10735, 14, 5465, 568, 22922, 5647, 187, 50258, 870, 28908, 31, 187, 50262, 870, 9438, 14, 888, 1005, 31, 187, 50262, 29, 1920, 23058, 31, 187, 50258, 29, 6790, 4284, 14, 4537, 31462, 6790, 3, 4136, 14, 15987, 568, 35797, 17049, 14, 4399, 14, 23333, 568, 5672, 5647, 187, 50258, 29, 19402, 1854, 568, 13259, 14, 15987, 15, 19402, 3, 4103, 14, 936, 568, 27686, 1730, 15, 13517, 15, 5397, 15, 7341, 5647, 187, 50262, 870, 1920, 23058, 31, 187, 50262, 29, 7582, 1320, 31, 187, 50258, 29, 19402, 1854, 568, 13259, 14, 287, 868, 15, 19402, 3, 4103, 14, 936, 568, 27686, 1730, 15, 13517, 15, 5397, 15, 7341, 5647, 187, 50262, 870, 7582, 1320, 31, 187, 50266, 870, 13980, 14, 6549, 78, 31, 187, 50270, 870, 13980, 14, 6549, 983, 31, 187, 50270, 29, 5353, 262, 14, 2808, 31, 187, 50266, 29, 8124, 1336, 31, 187, 50262, 29, 8456, 14, 47460, 1416, 568, 8456, 14, 47460, 5647, 187, 50266, 870, 8124, 1336, 31, 187, 50266, 29, 4608, 10787, 31, 187, 50262, 29, 3140, 14, 20238, 1416, 568, 5465, 14, 3140, 3, 830, 2569, 568, 8456, 14, 47460, 3, 1854, 568, 5353, 262, 14, 2808, 15, 2808, 3, 4103, 14, 936, 568, 27686, 1730, 15, 13517, 15, 2203, 15, 7341, 5647, 187, 50262, 29, 3140, 14, 20238, 1416, 568, 9438, 14, 3140, 3, 830, 2569, 568, 8456, 14, 47460, 3, 1854, 568, 5353, 262, 14, 2808, 15, 2808, 3, 4103, 14, 936, 568, 27686, 1730, 15, 9438, 15, 2203, 15, 7341, 5647, 187, 50266, 870, 4608, 10787, 31, 187, 50266, 29, 23173, 2412, 14, 13449, 568, 5672, 3, 2412, 14, 1088, 14, 7483, 568, 7750, 3, 11410, 568, 7750, 1138, 187, 50262, 29, 4608, 10787, 31, 187, 50258, 29, 20238, 1416, 568, 5465, 14, 3140, 5647, 187, 50262, 870, 4608, 10787, 31, 187, 50266, 870, 23173, 31, 187, 50266, 29, 9438, 14, 23173, 2412, 14, 13449, 568, 5672, 3, 2412, 14, 1088, 14, 7483, 568, 7750, 3, 11410, 568, 7750, 1138, 187, 50262, 29, 4608, 10787, 31, 187, 50258, 29, 20238, 1416, 568, 9438, 14, 3140, 5647, 187, 50262, 870, 4608, 10787, 31, 187, 50266, 870, 9438, 14, 23173, 31, 187, 50270, 870, 5353, 262, 14, 2808, 31, 187, 50270, 29, 26454, 14, 2388, 6511, 31, 187, 50266, 29, 2413, 14, 15049, 3988, 14, 6549, 78, 568, 33281, 17642, 78, 1138, 187, 50262, 29, 2413, 14, 47573, 11410, 568, 5672, 5647, 187, 50262, 29, 25328, 5673, 568, 26454, 3, 2245, 31961, 27686, 1730, 15, 26454, 15, 2413, 15, 631, 27, 1525, 2270, 94, 5647, 187, 50266, 870, 2413, 14, 15049, 31, 187, 50270, 870, 26454, 14, 2388, 6511, 31, 187, 50274, 870, 26454, 31, 535, 50274, 29, 13517, 14, 19879, 31, 187, 50270, 29, 6790, 4357, 187, 50274, 870, 13517, 14, 19879, 31, 535, 50274, 29, 2388, 6511, 31, 187, 50270, 29, 15049, 1416, 568, 26454, 1138, 187, 50266, 29, 7795, 14, 12025, 1318, 31961, 27686, 1730, 15, 13245, 15, 12025, 15, 26454, 27, 11946, 15, 17, 15, 17, 15, 18, 94, 5647, 187, 50270, 870, 15049, 31, 187, 50274, 870, 2388, 6511, 31, 535, 50274, 29, 75, 87, 983, 31, 187, 50270, 29, 75, 11618, 1416, 568, 6986, 1138, 187, 50266, 29, 47984, 1979, 568, 1540, 78, 3, 2781, 14, 3281, 568, 9726, 78, 5647, 187, 50266, 29, 75, 11618, 14, 10121, 31, 187, 50262, 29, 7872, 1318, 24539, 9438, 5647, 187, 50262, 29, 7872, 1318, 24539, 6873, 27, 12442, 284, 4511, 5496, 30, 4196, 78, 5647, 187, 50262, 29, 7872, 1318, 24539, 6873, 27, 9684, 12442, 284, 4511, 5496, 30, 9726, 78, 5647, 187, 50266, 870, 75, 11618, 14, 10121, 31, 187, 50270, 870, 75, 11618, 31, 187, 50274, 870, 75, 87, 983, 31, 535, 50274, 29, 14729, 31, 187, 50270, 14277, 6971, 4449, 58, 25370, 52, 17498, 14, 13018, 14, 4399, 568, 15291, 14, 84, 15675, 28739, 187, 50274, 870, 14729, 31, 187, 187, 870, 5465, 31, 187 ]
<?xml version='1.0' encoding='UTF-8'?> <host xmlns="urn:jboss:domain:14.0" name="master"> <extensions> <?EXTENSIONS?> </extensions> <management> <security-realms> <security-realm name="ManagementRealm"> <authentication> <local default-user="$local" skip-group-loading="true"/> <properties path="mgmt-users.properties" relative-to="jboss.domain.config.dir"/> </authentication> <authorization map-groups-to-roles="false"> <properties path="mgmt-groups.properties" relative-to="jboss.domain.config.dir"/> </authorization> </security-realm> <security-realm name="ApplicationRealm"> <server-identities> <ssl> <keystore path="application.keystore" relative-to="jboss.domain.config.dir" keystore-password="password" alias="server" key-password="password" generate-self-signed-certificate-host="localhost"/> </ssl> </server-identities> <authentication> <local default-user="$local" allowed-users="*" skip-group-loading="true"/> <properties path="application-users.properties" relative-to="jboss.domain.config.dir"/> </authentication> <authorization> <properties path="application-roles.properties" relative-to="jboss.domain.config.dir"/> </authorization> </security-realm> </security-realms> <audit-log> <formatters> <json-formatter name="json-formatter"/> </formatters> <handlers> <file-handler name="host-file" formatter="json-formatter" path="audit-log.log" relative-to="jboss.domain.data.dir"/> <file-handler name="server-file" formatter="json-formatter" path="audit-log.log" relative-to="jboss.server.data.dir"/> </handlers> <logger log-boot="true" log-read-only="false" enabled="false"> <handlers> <handler name="host-file"/> </handlers> </logger> <server-logger log-boot="true" log-read-only="false" enabled="false"> <handlers> <handler name="server-file"/> </handlers> </server-logger> </audit-log> <management-interfaces> <http-interface security-realm="ManagementRealm"> <http-upgrade enabled="true"/> <socket interface="management" port="${jboss.management.http.port:9990}"/> </http-interface> </management-interfaces> </management> <domain-controller> <local/> </domain-controller> <interfaces> <interface name="management"> <inet-address value="${jboss.bind.address.management:127.0.0.1}"/> </interface> </interfaces> <jvms> <jvm name="default"> <heap size="64m" max-size="256m"/> <jvm-options> <option value="-server"/> <option value="-XX:MetaspaceSize=96m"/> <option value="-XX:MaxMetaspaceSize=256m"/> </jvm-options> </jvm> </jvms> <profile> <?SUBSYSTEMS socket-binding-group="standard-sockets"?> </profile> </host>
214,327
Github
[ 2948, 23782, 13, 551, 29054, 748, 432, 686, 22312, 5618, 187, 2948, 15552, 15668, 432, 686, 8560, 14, 10706, 5618, 187, 2948, 551, 8221, 10516, 748, 432, 686, 22312, 14, 37564, 14, 3335, 5618, 187, 187, 2948, 42517, 432, 33378, 19877, 5618, 187, 187, 3701, 15584, 14324, 10516, 7506, 2151, 13, 281, 13985, 551, 187, 50276, 2309, 313, 187, 50274, 29, 14749, 10516, 281, 11787, 936, 20499, 187, 50272, 29, 19877, 4725, 187, 50272, 29, 81, 38958, 13863, 28379, 81, 31, 187, 50274, 870, 14749, 10516, 31, 187, 50276, 558, 187, 94, 187, 187, 11875, 14324, 10516, 15, 6986, 32461, 426, 551, 187, 50276, 13863, 27, 3635, 13, 187, 4718, 187, 187, 11875, 14324, 10516, 15, 8560, 15668, 426, 551, 187, 50276, 13863, 27, 15552, 15668, 15, 6219, 13, 187, 50276, 936, 27, 15552, 15668, 15, 2703, 15, 261, 28463, 13, 187, 4718, 187, 187, 15035, 4284, 29054, 9, 11875, 14324, 10516, 558, 187, 15035, 551, 15584, 14324, 10516, 7734, 187 ]
import React, { memo } from 'react'; import PropTypes from 'prop-types'; import { NavLink } from 'react-router-dom'; import Icon from './Icon'; function LeftMenuLink({ children, to }) { return ( <NavLink to={to}> <Icon /> <p>{children}</p> </NavLink> ); } LeftMenuLink.defaultProps = { children: null, }; LeftMenuLink.propTypes = { children: PropTypes.node, to: PropTypes.string.isRequired, }; export default memo(LeftMenuLink); export { LeftMenuLink };
214,328
Github
[ 10708, 389, 15, 12496, 6275, 263, 15, 69, 7961, 15, 2974, 28, 187, 187, 2948, 4959, 15, 6071, 15, 373, 15, 22804, 28, 187, 2948, 4959, 15, 40718, 15, 31325, 28, 187, 2948, 4959, 15, 40718, 15, 31607, 15, 31325, 14410, 494, 28, 187, 2948, 4959, 15, 40718, 15, 31607, 15, 14410, 494, 28, 187, 2948, 4959, 89, 15, 22965, 15, 11592, 13141, 28, 187, 187, 4387, 5673, 3173, 72, 22568, 551, 535, 50274, 14410, 494, 3301, 6586, 22256, 11592, 13141, 4605, 6740, 558, 535, 50274, 15834, 966, 50192, 22568, 17930, 3173, 72, 22568, 551, 535, 50270, 9486, 2457, 19242, 5300, 28, 535, 50270, 18641, 50192, 22568, 9, 22804, 5300, 10, 551, 187, 50266, 2520, 15, 21830, 426, 5300, 28, 187, 50270, 94, 535, 50270, 33, 9677, 187, 50270, 4387, 24440, 494, 3301, 6586, 22256, 11592, 13141, 4605, 6740, 10, 551, 187, 50266, 31325, 42615, 426, 3301, 31325, 9, 7614, 558, 187, 50266, 31325, 14410, 494, 42615, 14410, 494, 426, 747, 50192, 14410, 494, 9, 21830, 13, 42615, 558, 535, 50266, 2713, 4251, 14410, 494, 15, 1178, 32501, 9, 17, 13, 470, 13, 42615, 15, 788, 12175, 5715, 42615, 15, 788, 13881, 6020, 187, 50266, 2309, 42615, 14410, 494, 28, 187, 50270, 94, 535, 50270, 18641, 12002, 50192, 3301, 31325, 9, 2776, 6740, 558, 187, 50274, 94, 187, 94, 187 ]
package com.fourlastor.dante.html; import android.content.res.Resources; import android.graphics.Bitmap; import android.graphics.drawable.BitmapDrawable; import android.graphics.drawable.Drawable; import androidx.annotation.NonNull; public interface ImgLoader { Drawable loadImage(@NonNull String src); abstract class BitmapLoader implements ImgLoader { private final Resources resources; protected BitmapLoader(Resources resources) { this.resources = resources; } @Override public Drawable loadImage(@NonNull String src) { Bitmap bitmap = loadBitmap(src); BitmapDrawable bitmapDrawable = new BitmapDrawable(resources, bitmap); bitmapDrawable.setBounds(0, 0, bitmap.getWidth(), bitmap.getHeight()); return bitmapDrawable; } protected abstract Bitmap loadBitmap(String src); } }
214,329
Github
[ 6930, 187, 475, 8283, 4072, 14, 6620, 13, 6745, 13, 3690, 15, 187, 475, 1876, 3570, 10827, 15, 187, 475, 187, 475, 831, 2603, 2127, 310, 17236, 762, 253, 32327, 14, 4826, 7981, 1119, 275, 253, 187, 475, 21826, 1873, 275, 253, 5230, 9617, 273, 436, 2603, 5202, 15, 743, 3081, 4098, 187, 475, 273, 9469, 3570, 476, 320, 1119, 275, 253, 36224, 24937, 1873, 275, 253, 1072, 9617, 15, 187, 475, 187, 475, 1214, 11404, 1487, 13570, 13727, 187, 1738, 187, 187, 3, 2327, 7654, 3664, 187, 187, 6930, 187, 475, 7890, 13727, 1082, 281, 4138, 1375, 534, 634, 2086, 19584, 281, 320, 2032, 15, 187, 475, 187, 475, 9225, 504, 29644, 71, 14, 4826, 5981, 313, 7483, 2462, 84, 310, 4516, 10, 285, 7125, 187, 475, 281, 2085, 1491, 670, 752, 9377, 285, 752, 368, 497, 187, 475, 16764, 15, 187, 475, 187, 475, 380, 13727, 3935, 588, 320, 25752, 275, 3275, 13, 533, 253, 13727, 187, 475, 588, 3464, 281, 5416, 9317, 1057, 417, 9184, 275, 3275, 15, 187, 1738, 187, 187, 2044, 13727, 426, 1159, 9, 12380, 13, 5981, 13, 247, 13, 270, 13, 260, 13, 277, 13, 299, 13, 269, 10, 551, 187, 50276, 338, 36238, 15528, 32350, 551, 187, 50274, 338, 313, 8124, 11013, 17011, 10, 551, 187, 50272, 22408, 747, 11759, 2073, 25168, 4419, 271, 2228, 3935, 4154, 5137, 187, 50274, 94, 187, 50276, 94, 535, 50276, 338, 6522, 12380, 10, 551, 187, 50274, 2044, 2228, 28, 187, 50274, 338, 313, 8124, 11013, 17011, 10, 551, 187, 50272, 3775, 426, 747, 11759, 9, 187, 50270, 8, 10292, 1245, 6517, 5866, 28, 897, 253, 1327, 14, 1222, 1245, 1474, 3126, 686, 559, 187, 50270, 8, 1542, 253, 2120, 2228, 3935, 285, 3081, 9371, 20942, 2464, 187, 50272, 558, 187, 50274, 94, 2010, 551, 187, 50272, 2044, 13059, 426, 544, 66, 13, 270, 13, 260, 13, 277, 13, 299, 13, 269, 2194, 187, 50272, 2044, 1736, 6060, 426, 470, 28, 187, 50272, 3775, 426, 747, 11759, 9, 187, 50270, 8, 13836, 6410, 27398, 318, 27, 686, 559, 187, 50270, 8124, 15, 13481, 33692, 6, 84, 16, 72, 13, 1159, 1082, 551, 1091, 13059, 60, 1662, 6060, 3424, 2194, 13985, 187, 50272, 558, 187, 50274, 94, 535, 50274, 3775, 15, 27388, 1992, 14918, 426, 337, 28, 1380, 359, 1053, 626, 1557, 670, 13727, 434, 1211, 3665, 187, 50274, 22408, 2228, 28, 187, 50276, 94, 187, 4718, 187, 187, 8640, 15, 23756, 426, 13727, 28, 187 ]
/** * Copyright 2013-2015, Facebook, Inc. * All rights reserved. * * This source code is licensed under the BSD-style license found in the * LICENSE file in the root directory of this source tree. An additional grant * of patent rights can be found in the PATENTS file in the same directory. * * @providesModule invariant */ "use strict"; /** * Use invariant() to assert state which your program assumes to be true. * * Provide sprintf-style format (only %s is supported) and arguments * to provide information about what broke and what you were * expecting. * * The invariant message will be stripped in production, but the invariant * will remain to ensure logic does not differ in production. */ var invariant = function(condition, format, a, b, c, d, e, f) { if (__DEV__) { if (format === undefined) { throw new Error('invariant requires an error message argument'); } } if (!condition) { var error; if (format === undefined) { error = new Error( 'Minified exception occurred; use the non-minified dev environment ' + 'for the full error message and additional helpful warnings.' ); } else { var args = [a, b, c, d, e, f]; var argIndex = 0; error = new Error( 'Invariant Violation: ' + format.replace(/%s/g, function() { return args[argIndex++]; }) ); } error.framesToPop = 1; // we don't care about invariant's own frame throw error; } }; module.exports = invariant;
214,330
Github
[ 2402, 27, 3055, 2973, 641, 187, 187, 2548, 27, 2867, 187, 187, 44981, 27, 873, 253, 3055, 2973, 641, 281, 2032, 187, 187, 18548, 27, 187, 8546, 7790, 1880, 14309, 6124, 4648, 697, 1211, 654, 4897, 2829, 31, 390, 253, 985, 187, 29, 4897, 2829, 31, 327, 654, 2447, 895, 93, 2447, 895, 2718, 13208, 187, 187, 4807, 2466, 758, 27, 337, 15, 17, 187, 187, 2697, 27, 21126, 187, 187, 17806, 84, 27, 15439, 13, 4771, 187, 187, 16698, 27, 187, 1178, 253, 3055, 2973, 641, 281, 2032, 187, 187, 3902, 313, 10975, 2262, 187, 510, 654, 9486, 2973, 641, 31, 310, 2032, 390, 3221, 15, 187, 3463, 4284, 13, 253, 654, 9486, 2973, 641, 31, 654, 9134, 31, 310, 873, 281, 3221, 15, 187, 187, 11185, 27, 187, 11244, 253, 654, 9486, 2973, 641, 31, 654, 9134, 31, 281, 3157, 3148, 327, 654, 2447, 895, 93, 2447, 895, 187, 39098, 31, 672, 253, 654, 2713, 6864, 31, 273, 253, 3601, 310, 854, 654, 2713, 93, 11209, 31, 313, 9726, 9830, 10, 187, 263, 1679, 15, 187, 187, 4531, 253, 654, 9486, 2973, 641, 31, 654, 9134, 31, 281, 2032, 323, 247, 654, 9742, 31, 326, 4648, 187, 36022, 326, 6403, 626, 275, 253, 654, 6986, 31, 654, 4897, 2829, 13208, 831, 556, 253, 187, 11402, 486, 273, 13872, 253, 654, 9742, 31, 3148, 625, 9830, 685, 9403, 187, 24902, 327, 271, 854, 14, 654, 2713, 31, 3148, 15, 380, 18928, 310, 326, 604, 253, 187, 29, 9486, 2973, 641, 31, 310, 2032, 13, 253, 9830, 273, 643, 4893, 8, 8323, 778, 187, 1257, 32408, 1223, 14309, 6124, 310, 253, 35936, 2898, 15, 187, 187, 3039, 253, 654, 9486, 2973, 641, 31, 310, 873, 281, 3221, 13, 253, 654, 15179, 31, 4648, 253, 985, 187, 29, 4897, 2829, 13208, 2091, 352, 310, 873, 281, 2032, 13, 253, 654, 15179, 31, 4648, 697, 1211, 2840, 187, 29, 4897, 2829, 13208, 187, 187, 1552, 2867, 556, 642, 1055, 5734, 253, 654, 14396, 2548, 31, 654, 9134, 31, 556, 247, 187, 2877, 273, 346, 35875, 80, 6573, 3, 1969, 3529, 310, 13, 1016, 654, 29206, 31, 327, 253, 3601, 310, 581, 273, 247, 187, 29, 4897, 2829, 31, 273, 9830, 313, 27978, 17558, 9830, 582, 285, 253, 9830, 275, 326, 187, 29, 4897, 2829, 31, 476, 320, 4391, 407, 253, 654, 15179, 13208, 187, 187, 31, 11, 19206, 386, 27506, 50276, 10758, 253, 654, 9486, 2973, 641, 31, 654, 9134, 31, 310, 873, 281, 2032, 13, 352, 187, 31, 2550, 320, 873, 896, 281, 3221, 15, 1916, 1818, 352, 896, 281, 2032, 13, 368, 1364, 15856, 187, 31, 285, 19855, 253, 654, 13259, 13208, 187, 187, 510, 4758, 273, 436, 2867, 556, 642, 1055, 327, 5602, 9485, 390, 7464, 2718, 15, 187, 187, 4941, 27, 3601, 2548, 313, 3701, 582, 2867, 313, 3129, 1730, 552, 582, 187, 2713, 6864, 313, 3129, 1730, 552, 582, 3948, 313, 3129, 1730, 552, 582, 12275, 313, 3129, 1730, 552, 582, 187, 4897, 2829, 313, 3129, 1730, 552, 582, 2372, 313, 3129, 1730, 552, 582, 44971, 313, 3129, 1730, 552, 582, 187, 13259, 313, 3129, 1730, 552, 582, 4284, 313, 23295, 582, 8031, 313, 6082, 582, 187, 2013, 522, 6573, 313, 9134, 10, 535 ]
Name: privateColors Type: property Syntax: set the privateColors to true Summary: Specifies whether LiveCode uses its own <color table> or the system <color table> on <Unix|Unix systems>. Introduced: 1.0 OS: linux Platforms: desktop, server Example: set the privateColors to true Value (bool): The <privateColors> is true or false. By default, the <privateColors> <property> is set to false. Description: Use the <privateColors> <property> to improve display on <Unix|Unix systems> when the <bit depth> of the screen is 8 <bit|bits> (256 colors) or less. Set the <privateColors> <property> to true for a <stack> that uses colors that aren't in the <default> <color table>. This has the advantage of letting the <stack> display more colors than normally possible on an 8- <bit> display. The disadvantage is that if the <privateColors> is true, the colors of other applications' windows may be distorted while LiveCode is the foreground application. When the <privateColors> is set to false, the <engine> uses the system <color table>. When it is set to true, the <engine> uses its own custom <color table>. This property has no effect unless the <screenType> <property> has a value of "PseudoColor" --that is, each <pixel> on the screen is one of a <color table> of colors (usually 256 colors), and the colors in that <color table> can be changed by the <engine>. >*Important:* Once the <privateColors> <property> is set to true, it > cannot be set back to false. To change it back to true, you must quit > and restart the <application>. The setting of this property has no effect on Mac OS or Windows systems. References: screenType (function), property (glossary), bit depth (glossary), engine (glossary), pixel (glossary), color table (glossary), bit (glossary), Unix (glossary), application (glossary), default (keyword), stack (object), remapColor (property)
214,331
Github
[ 6930, 187, 475, 18805, 15837, 3631, 560, 33521, 187, 475, 187, 475, 22360, 265, 16567, 23, 37180, 434, 2460, 1873, 18164, 2523, 323, 1781, 1979, 2460, 313, 1189, 41354, 14, 29206, 582, 187, 475, 534, 5997, 12439, 8790, 312, 4906, 672, 10263, 352, 275, 18857, 15, 187, 475, 2896, 970, 436, 6335, 13, 368, 476, 15792, 8600, 253, 2460, 342, 1463, 23148, 15, 187, 475, 187, 475, 19477, 2460, 275, 6109, 9882, 534, 310, 1873, 14, 6682, 285, 18857, 4516, 15, 187, 475, 320, 13333, 342, 841, 2176, 4112, 187, 475, 337, 15, 690, 4959, 15169, 326, 513, 417, 1329, 480, 21949, 5981, 3453, 830, 18857, 187, 475, 374, 15, 4993, 891, 375, 2460, 8600, 275, 18857, 187, 475, 187, 475, 8283, 313, 68, 10, 4072, 1165, 30989, 31092, 10589, 654, 8659, 40305, 33, 1866, 1154, 15, 681, 31, 187, 475, 32161, 833, 762, 253, 20695, 7981, 187, 1738, 187, 187, 3182, 9, 3701, 313, 15684, 10, 551, 187, 186, 2044, 370, 426, 2430, 1587, 2721, 22352, 3287, 187, 186, 2044, 500, 21949, 23062, 426, 2430, 1587, 42787, 23062, 3287, 187, 186, 2044, 500, 21459, 37854, 426, 2430, 1587, 42787, 37854, 3287, 187, 186, 2044, 44969, 42734, 6586, 426, 2430, 1587, 33373, 522, 895, 5695, 3287, 535, 186, 3701, 755, 6586, 23062, 9, 3140, 13, 15259, 10, 551, 996, 186, 2044, 391, 426, 747, 8490, 15283, 28, 996, 186, 2044, 1486, 426, 3635, 28, 996, 186, 2044, 11419, 426, 3635, 28, 996, 186, 83, 15, 251, 2799, 426, 1159, 313, 8045, 10, 551, 988, 186, 338, 313, 3140, 15, 881, 11013, 346, 5695, 16, 42787, 2807, 551, 2657, 186, 14626, 551, 2664, 186, 13518, 426, 747, 500, 21949, 23062, 15, 43, 21949, 4505, 9, 8045, 15, 7831, 15, 6870, 13, 1873, 15, 1590, 10, 2657, 186, 94, 5834, 313, 911, 10, 551, 2664, 186, 1000, 426, 385, 2657, 186, 94, 988, 186, 94, 988, 186, 20104, 9, 1000, 13, 11419, 10, 996, 186, 4718, 996, 186, 83, 15, 251, 3775, 426, 1159, 313, 8045, 10, 551, 988, 186, 20104, 9, 8045, 15, 7831, 15, 3775, 13, 11419, 10, 996, 186, 4718, 996, 186, 83, 15, 1088, 1909, 32849, 2776, 9, 3140, 10, 187, 186, 94, 535, 186, 3701, 19477, 9, 3140, 13, 14402, 11030, 13, 15259, 10, 551, 6886, 186, 2044, 23542, 40148, 426, 747, 44969, 42734, 6586, 9, 3140, 558, 6886, 186, 605, 809, 1920, 77, 3596, 996, 186, 2044, 2236, 426, 13355, 31930, 7506, 988, 186, 881, 27, 346, 5695, 16, 42787, 995, 988, 186, 4090, 13881, 27, 14212, 13, 988, 186, 4090, 12175, 27, 12891, 13, 988, 186, 15177, 27, 964, 25, 996, 186, 2023, 14402, 11030, 558, 6886, 186, 788, 6586, 23062, 9, 3140, 13, 1159, 313, 1000, 13, 11419, 10, 551, 11866, 186, 605, 604, 1873, 310, 247, 480, 21949, 2460, 13, 988, 186, 605, 970, 385, 338, 3935, 265, 988, 186, 605, 281, 4979, 253, 891, 312, 463, 387, 987, 11259, 988, 186, 338, 313, 13518, 3857, 11419, 15, 85, 1648, 3857, 11419, 15, 85, 1648, 15, 43773, 10, 551, 2657, 186, 3575, 426, 13355, 31930, 7506, 31756, 27, 11419, 15, 85, 1648, 15, 43773, 15, 2877, 2023, 2236, 558, 988, 186, 94, 11866, 186, 2044, 18857, 426, 3389, 15, 42004, 2073, 32688, 5137, 11866, 186, 2503, 40148, 15, 251, 12574, 426, 1159, 6734, 551, 2657, 186, 2044, 2613, 1540, 10287, 426, 29707, 2657, 186, 338, 313, 1352, 375, 15, 9152, 3857, 2236, 15, 881, 2295, 346, 5695, 16, 42787, 2807, 551, 2664, 186, 605, 970, 480, 21949, 37854, 281, 4993, 4959, 5145, 1057, 417, 1329, 480, 21949, 2664, 186, 2044, 20921, 426, 18857, 15, 788, 5856, 2073, 19, 69, 5137, 2664, 186, 2044, 23764, 3233, 426, 20921, 15, 788, 6586, 3233, 9, 17, 13, 470, 13, 18857, 15, 3429, 13, 18857, 15, 7436, 558, 2664, 186, 2044, 32049, 426, 747, 500, 21459, 37854, 9, 3575, 15, 15177, 475, 2233, 558, 2664, 186, 4793, 1540, 10287, 426, 32049, 15, 25950, 9, 8428, 3233, 558, 2664, 186, 36465, 426, 3635, 2657, 186, 94, 2010, 551, 2664, 186, 4793, 1540, 10287, 426, 18857, 15, 936, 3233, 9715, 9, 14985, 11030, 15, 881, 13, 14402, 11030, 15, 15177, 558, 2657, 186, 94, 2657, 186, 20104, 9, 4793, 1540, 10287, 558, 988, 186, 4718, 11866, 186, 2503, 40148, 15, 12574, 9, 32688, 13, 2236, 558, 6886, 186, 9897, 535, 186, 94, 535, 186, 2309, 551, 42693, 27, 19477, 4718, 187, 9897, 187 ]
/** * Mobile Photo Compress Solution * * Fixes iOS6 Safari's image file rendering issue for large size image (over mega-pixel), * which causes unexpected subsampling when drawing it in canvas. * By using this library, you can safely render the image with proper stretching. * * compress image in mobile browser which is file-api and canvas supported. * be compatible with these certain situation * 1. some android phones that do not support jpeg format output form canvas * 2. fix ios image render in canvas * * Copyright (c) 2013 QZone Touch Team <[email protected]> * Released under the MIT license */ define(function (require) { var $ = require("zepto"); var JpegMeta = require("jpegMeta"); var JPEGEncoder = require("jpegEncoder"); var MegaPixImage = require("megapiximage"); function getImageMeta(file, callback) { var r = new FileReader; var err = null; var meta = null; r.onload = function (event) { if (file.type === "image/jpeg") { try { meta = new JpegMeta.JpegFile(event.target.result, file.name) } catch (ex) { err = ex } } callback(err, meta) }; r.onerror = function (event) { callback(event.target.error, meta) }; r.readAsBinaryString(file) } function compress(file, picParam, callback) { var mpImg = new MegaPixImage(file); // defautl config var param = $.extend({ type: "image/jpeg", maxHeight: 800, maxWidth: 600, quality: .8 }, picParam); getImageMeta(file, function (err, meta) { // if file is a jpeg image, // using exif messagees // to transform the iamge at right orientation if (meta && meta.tiff && meta.tiff.Orientation) { param = $.extend({orientation: meta.tiff.Orientation.value}, param); } var canvas = document.createElement('canvas'); mpImg.onrender = function () { var base64Str = ""; if ($.os.android && param.type == "image/jpeg") { // using jpegEncoder to fix android machine does not support jpeg var ctx = canvas.getContext('2d'); var imgData = ctx.getImageData(0, 0, canvas.width, canvas.height); var encoder = new JPEGEncoder(param.quality * 100); base64Str = encoder.encode(imgData); encoder = null } else { base64Str = canvas.toDataURL(picParam.type, picParam.quality); } callback(base64Str); }; mpImg.render(canvas, param); }); } return {compress: compress}; });
214,332
Github
[ 605, 187, 605, 50276, 59, 46, 20775, 15, 73, 187, 605, 50276, 59, 46, 3979, 58, 187, 605, 187, 605, 50276, 32331, 407, 2652, 593, 327, 4240, 16, 883, 16, 1348, 15, 187, 605, 50276, 20968, 20919, 4240, 19144, 2652, 593, 15, 1876, 3570, 10827, 15, 187, 605, 187, 187, 4, 2948, 654, 9571, 18938, 16, 9571, 18938, 15, 73, 31, 187, 4, 2948, 346, 59, 46, 14749, 3145, 15, 73, 3, 187, 187, 33, 15049, 1503, 46, 20775, 1163, 12693, 20775, 187, 187, 33, 9134, 313, 42264, 13, 2266, 10, 1503, 46, 14749, 3145, 50271, 11, 8002, 3145, 28, 187, 187, 14, 313, 4353, 10, 23320, 14749, 3145, 28, 187, 187, 33, 423, 187 ]
// // ZMViewController.h // ZMBCY // // Created by Brance on 2017/11/24. // Copyright © 2017年 Brance. All rights reserved. // #import <UIKit/UIKit.h> #import "ZMNavView.h" @interface ZMViewController : UIViewController @property (nonatomic, strong) ZMNavView *navView; - (void)setupNavView; @end
214,333
Github
[ 3709, 64, 25553, 426, 544, 187, 50276, 42491, 36371, 995, 187, 62, 187 ]
include_rules = [ "+crypto", ]
214,334
Github
[ 14996, 7939, 3550, 19, 9, 5423, 13, 9252, 558, 586, 187, 9672, 50276, 16698, 7939, 1618, 17231, 1179, 8246, 50254, 50276, 5627, 187, 9672, 50254, 50254, 50264, 5627, 187, 9672, 50276, 510, 1873, 1618, 15, 2203, 651, 320, 908, 347, 253, 941, 1873, 15, 50268, 5627, 187, 9672, 50276, 2042, 627, 369, 271, 33375, 13, 247, 15, 483, 13, 1408, 27, 50276, 66, 15, 483, 654, 1618, 15, 2203, 50276, 5627, 586, 187, 3474, 187, 50276, 25013, 426, 608, 28, 50254, 50273, 9672, 1180, 273, 23129, 281, 320, 17522, 9657, 187, 50276, 42921, 13883, 426, 721, 28, 50254, 9672, 1899, 273, 9646, 3388, 9657, 187, 50276, 3281, 426, 577, 28, 50254, 50271, 9672, 1180, 273, 3484, 9657, 586, 187, 881, 187, 50276, 18743, 6542, 426, 3781, 544, 18, 537, 42921, 13883, 62, 273, 7007, 28, 19668, 50276, 3992, 12030, 426, 5042, 3992, 28, 187, 50276, 3992, 426, 1924, 187, 50273, 301, 27, 7007, 28, 187, 50273, 5374, 27, 7007, 6542, 28, 2490, 50273, 8384, 27, 894, 12030, 187, 50276, 423, 28, 586, 187, 2044, 187, 50276, 3550, 13, 747, 2845, 27, 894, 12030, 28, 187, 50276, 5560, 13, 966, 12753, 27, 7007, 28, 586, 187, 9672, 209, 21723, 11, 9657, 187, 9672, 5199, 5669, 50254, 50254, 50268, 5627, 187, 9672, 209, 21723, 11, 9657, 586, 187, 45760, 5669, 9, 2044, 1618, 27, 894, 12030, 28, 747, 2845, 27, 894, 12030, 558, 187, 2044, 187, 50276, 6259, 27, 894, 12030, 28, 187, 50276, 14541, 27, 12419, 28, 586, 187, 2043, 187, 50274, 6259, 3843, 1618, 28, 187, 50274, 14541, 3843, 3221, 28, 187, 50274, 338, 313, 3550, 426, 5296, 10, 840, 2490, 50272, 2043, 187, 50270, 1826, 2845, 20225, 8384, 3843, 1618, 28, 50263, 9672, 4993, 7505, 594, 1735, 310, 873, 281, 5296, 9657, 187, 50270, 3550, 3843, 747, 2845, 28, 187, 50272, 423, 187, 50274, 7271, 604, 313, 1826, 2845, 20225, 301, 654, 1618, 20225, 301, 10, 840, 2490, 50272, 2043, 187, 50270, 1826, 2845, 20225, 8384, 3843, 1618, 28, 187, 50270, 3550, 3843, 747, 2845, 28, 187, 50272, 423, 187, 50274, 7271, 2490, 50272, 2043, 187, 50270, 6050, 313, 6259, 38363, 5296, 10, 285, 313, 1439, 1119, 10, 513, 2490, 50268, 2043, 187, 50266, 338, 313, 6259, 20225, 8384, 426, 5296, 10, 840, 2490, 50264, 2043, 2490, 50262, 1826, 2845, 20225, 8384, 3843, 5296, 28, 50270, 9672, 4993, 7505, 594, 1735, 310, 873, 281, 5296, 9657, 187, 50262, 6259, 20225, 8384, 3843, 747, 2845, 28, 2490, 50262, 14541, 3843, 2032, 28, 187, 50264, 423, 187, 50266, 7271, 604, 313, 1826, 2845, 20225, 301, 654, 1655, 20225, 8384, 20225, 301, 10, 840, 2490, 50264, 2043, 187, 50262, 1826, 2845, 20225, 8384, 3843, 1655, 20225, 8384, 28, 187, 50262, 6259, 20225, 8384, 3843, 747, 2845, 28, 187, 50262, 14541, 3843, 2032, 28, 187, 50264, 423, 28, 187, 50266, 6259, 3843, 1655, 20225, 8384, 28, 187, 50268, 423, 28, 187, 50272, 423, 28, 187, 423, 28, 586, 187, 9672, 209, 21723, 11, 9657, 187, 9672, 1159, 3388, 50254, 50254, 50268, 5627, 187, 9672, 209, 21723, 11, 9657, 586, 187, 3701, 3388, 9, 1826, 2845, 27, 894, 12030, 2262, 7007, 28, 50275, 187, 2044, 187, 50274, 74, 13, 2020, 1163, 7007, 28, 586, 187, 2043, 187, 50274, 2204, 3843, 470, 28, 187, 50274, 1542, 891, 3843, 337, 281, 23129, 513, 187, 50271, 2204, 13522, 2204, 559, 747, 2845, 20225, 5374, 60, 74, 2194, 187, 50274, 25629, 13522, 2204, 2017, 23129, 28, 187, 423, 28, 586, 187, 9672, 209, 21723, 11, 9657, 187, 9672, 5199, 1056, 4257, 2845, 50254, 50254, 50272, 5627, 187, 9672, 209, 21723, 11, 9657, 586, 187, 45760, 1056, 4257, 2845, 9, 2044, 747, 2845, 1163, 894, 12030, 558, 187, 2044, 187, 50274, 74, 27, 7007, 28, 586, 187, 2043, 187, 50274, 1826, 9, 1826, 2845, 558, 187, 50274, 1088, 9, 1826, 2845, 20225, 301, 558, 187, 50274, 1542, 891, 3843, 337, 281, 23129, 513, 2490, 50271, 1088, 9, 1826, 2845, 20225, 5374, 60, 74, 9259, 187, 50274, 1826, 2845, 20225, 5374, 60, 42921, 13883, 62, 3843, 3388, 9, 1826, 2845, 558, 187, 423, 28, 586, 187, 9672, 209, 21723, 11, 9657, 187, 9672, 5199, 3148, 6074, 50254, 50254, 50273, 5627, 187, 9672, 209, 21723, 11, 9657, 586, 187, 45760, 3148, 6074, 9, 2044, 1618, 1163, 894, 12030, 558, 187, 2044, 187, 50276, 74, 27, 7007, 28, 187, 50276, 6259, 27, 894, 12030, 28, 586, 187, 2043, 187, 50274, 6259, 3843, 1618, 28, 187, 50274, 338, 313, 3550, 38363, 5296, 10, 840, 2490, 50274, 2043, 187, 50270, 6343, 2073, 50266, 5137, 187, 50270, 1542, 891, 3843, 337, 281, 23129, 513, 2490, 50267, 6343, 2073, 45137, 50273, 5137, 50276, 187, 50270, 8510, 33332, 28, 187, 50270, 6343, 2073, 36303, 5137, 187, 50270, 1542, 891, 3843, 337, 281, 23129, 513, 2490, 50267, 6343, 9, 74, 558, 50276, 187, 50270, 8510, 33332, 2073, 50270, 33993, 5137, 187, 50270, 1542, 891, 3843, 337, 281, 23129, 12, 19, 513, 187, 50267, 6343, 2073, 9998, 5137, 187, 50270, 8510, 33332, 28, 19668, 50270, 6050, 313, 6259, 38363, 5296, 10, 513, 2490, 50270, 2043, 187, 50268, 6343, 9, 6259, 20225, 301, 558, 187, 50268, 1542, 891, 3843, 337, 281, 313, 25013, 559, 337, 10, 513, 187, 50266, 6343, 9, 6259, 20225, 5374, 60, 74, 9259, 187, 50268, 8510, 33332, 28, 2490, 50268, 6259, 13522, 1655, 20225, 8384, 28, 187, 50270, 423, 28, 187, 50274, 423, 28, 187, 423, 28, 586, 187, 9672, 209, 21723, 11, 9657, 187, 9672, 5199, 34709, 50254, 50254, 50269, 5627, 187, 9672, 209, 21723, 11, 9657, 586, 187, 45760, 34709, 9, 2044, 1618, 1163, 894, 12030, 558, 187, 2044, 187, 50276, 6259, 27, 894, 12030, 28, 586, 187, 2043, 187, 50275, 6050, 313, 3550, 38363, 5296, 10, 513, 2490, 50275, 2043, 187, 50272, 6259, 3843, 1618, 28, 187, 50272, 3550, 3843, 1618, 20225, 8384, 28, 187, 50272, 6259, 20225, 8384, 3843, 5296, 28, 187, 50272, 3431, 3014, 9, 6259, 558, 187, 50275, 423, 28, 187, 50275, 6259, 3843, 5296, 187, 423, 28, 187, 9672, 209, 21723, 424, 9657, 187, 9672, 2022, 2086, 50254, 50254, 50263, 5627, 187, 9672, 209, 21723, 424, 9657, 586, 187, 2043, 187, 50276, 1088, 9, 2437, 12753, 558, 187, 50276, 3550, 3843, 5296, 28, 187, 50276, 1542, 1385, 3843, 337, 281, 1979, 513, 2490, 50276, 2043, 187, 50274, 11145, 4257, 2845, 9, 1826, 2845, 558, 187, 50274, 14447, 9, 3550, 13, 747, 2845, 558, 187, 50276, 423, 28, 187, 50276, 8510, 33332, 2073, 4943, 403, 253, 966, 23129, 323, 966, 27, 1383, 966, 12753, 558, 2416, 33332, 28, 187, 50276, 8412, 6074, 9, 3550, 558, 187, 50276, 47049, 9, 3550, 558, 187, 423, 15 ]
program linkedlist2(input,output); (* Example linked list Pascal Program *) (* *) (* The file list.data would be used as the data file. *) (* If there was an executable, a.out, run: a.out < list.data *) const grades = 5; (* number of grades to be averaged *) avgPosition = 6; (* position of grade average *) size = 4; (* number of students *) type integerArray = array [1..avgPosition] of integer; cellPtr = ^cell; cell = record id: integer; info: integerArray; next: cellPtr end; var list, newrec: cellPtr; count, classNum: integer; (* ************************************************************************* *) (* procedure insert *) (* ************************************************************************* *) procedure insert(var list: cellPtr; newrec: cellPtr); var current: cellPtr; found: boolean; begin current := list; found := false; if (list = nil) then begin newrec^.next := list; (* fix bug so next is set to nil *) list := newrec; end else if (newrec^.id < list^.id) then begin newrec^.next := list; list := newrec; end else begin while (current <> nil) and (not found) do begin if (current^.next = nil) then begin newrec^.next := nil; (* fix bug so next is set to nil *) current^.next := newrec; found := true; end else if (newrec^.id < current^.next^.id) then begin newrec^.next := current^.next; current^.next := newrec; found := true; end; current := current^.next; end; end; end; (* ************************************************************************* *) (* function average *) (* ************************************************************************* *) function average(newrec: cellPtr): integer; var i, sum : integer; begin sum := 0; for i := 1 to grades do sum:=sum + newrec^.info[i]; average:=sum div grades; end; (* ************************************************************************* *) (* procedure makeNewrec *) (* ************************************************************************* *) procedure makeNewrec(var newrec : cellPtr); var i: integer; begin new(newrec); read(newrec^.id); for i := 1 to grades do read(newrec^.info[i]); newrec^.info[avgPosition] := average(newrec); end; (* ************************************************************************* *) (* procedure displayInfo *) (* ************************************************************************* *) procedure displayInfo(var list : cellPtr); var i: integer; current: cellPtr; begin current := list; if (list <> nil) then begin write(' '); for i := 1 to grades do write('Grade '); writeln; write('Student'); for i := 1 to grades do write(i); writeln(' Average'); for i := 1 to grades+2 do write('-----------'); writeln; while (current <> nil) do begin write(current^.id); for i := 1 to (grades + 1) do write(current^.info[i]); writeln; current:= current^.next; end; end; end; (* ************************************************************************* *) (* procedure cleanup *) (* ************************************************************************* *) procedure cleanup(var list : cellPtr); var current: cellPtr; begin while (list <> nil) do begin current := list; list := list^.next; current^.next := nil; dispose(current); end; current := nil end; (* ************************************************************************** *) (* main program *) (* ************************************************************************** *) begin read(classNum); list := nil; for count := 1 to size do begin makeNewrec(newrec); insert(list, newrec); end; writeln('Here are the class grades for class:', classNum); writeln; displayInfo(list); cleanup(list); end.
214,335
Github
[ 3122, 186, 17176, 585, 428, 5740, 187, 475, 187, 475, 186, 30431, 3014, 27, 187, 475, 187, 475, 186, 39557, 407, 27, 50276, 51, 15, 16905, 19434, 187, 475, 186, 6958, 27, 187, 475, 187, 475, 186, 7865, 272, 31583, 27, 187, 475, 187, 475, 186, 186, 22574, 426, 1269, 69, 585, 9, 3602, 2387, 187, 475, 187, 475, 186, 15402, 5552, 27, 187, 475, 187, 475, 186, 186, 14074, 27, 186, 17214, 2813, 3943, 1180, 187, 475, 187, 475, 186, 34214, 917, 11759, 330, 3180, 27, 187, 475, 187, 1738, 187, 187, 4, 3709, 346, 89, 87, 7265, 1763, 15, 73, 3, 187, 4, 3709, 346, 649, 79, 8298, 15, 73, 3, 187, 4, 3709, 346, 89, 2465, 931, 84, 15, 73, 3, 187, 4, 3709, 346, 89, 5267, 483, 1100, 15, 73, 3, 187, 4, 3709, 346, 89, 491, 19825, 15, 73, 3, 187, 4, 3709, 346, 17176, 4997, 84, 15, 73, 3, 187, 187, 4, 3182, 186, 25409, 64, 24358, 186, 18, 187, 187, 30306, 15703, 47, 64, 9536, 9, 17176, 585, 2769, 16062, 13, 330, 26701, 13, 7191, 13, 2071, 750, 2387, 187, 1042, 31827, 186, 14074, 13, 330, 26701, 13, 7191, 13, 2071, 750, 28, 187, 50275, 92, 187, 50275, 2309, 313, 1182, 69, 585, 9, 475, 14074, 13, 475, 31620, 13, 475, 5232, 13, 475, 35, 4492, 2387, 5349, 187, 50275, 94, 187, 187, 30306, 1182, 69, 585, 9, 3943, 13, 20482, 13, 830, 13, 25924, 2387, 187, 565, 186, 8522, 13, 20482, 13, 830, 13, 25924, 28, 187, 50275, 92, 187, 50275, 565, 186, 8581, 13, 19097, 5232, 28, 535, 50275, 17176, 64, 6259, 64, 4065, 426, 5836, 28, 535, 50275, 338, 6522, 59, 22949, 64, 49101, 64, 40804, 10, 551, 187, 50272, 8581, 426, 7379, 1433, 64, 7310, 64, 10327, 64, 51, 25876, 28, 187, 50272, 94, 187, 50275, 7271, 604, 6522, 59, 22949, 64, 28663, 64, 28652, 10, 551, 187, 50272, 8581, 426, 41406, 8875, 64, 10311, 64, 28652, 28, 187, 50272, 94, 187, 50275, 7271, 604, 6522, 59, 22949, 64, 28663, 64, 11645, 11477, 10, 551, 187, 50272, 8581, 426, 41406, 8875, 64, 10311, 64, 11645, 11477, 28, 187, 50272, 94, 187, 50275, 7271, 604, 6522, 59, 22949, 64, 26336, 52, 1372, 9, 20482, 39705, 551, 187, 50272, 8581, 426, 7651, 64, 6971, 2775, 64, 26336, 52, 1372, 28, 187, 50272, 94, 187, 50275, 7271, 604, 6522, 59, 22949, 64, 26336, 52, 1372, 64, 10560, 9, 830, 39705, 551, 187, 50272, 8581, 426, 7651, 64, 6971, 2775, 64, 26336, 52, 1372, 64, 24358, 28, 187, 50272, 94, 187, 50275, 7271, 604, 6048, 630, 654, 470, 10, 3857, 6522, 59, 3788, 58, 64, 13045, 38517, 64, 26336, 52, 1372, 1228, 551, 187, 50272, 8581, 426, 7651, 64, 6971, 2775, 64, 26336, 52, 1372, 64, 24358, 28, 187, 50272, 94, 187, 50275, 7271, 604, 6522, 59, 22949, 64, 26336, 52, 1372, 64, 5993, 15130, 64, 47036, 9, 25924, 39705, 551, 187, 50272, 8581, 426, 7651, 64, 6971, 2775, 64, 26336, 52, 1372, 64, 47036, 28, 187, 50272, 94, 187, 50275, 7271, 551, 187, 50272, 12780, 5232, 426, 313, 630, 50276, 381, 470, 3736, 29339, 64, 24358, 1163, 830, 5349, 187, 50272, 59, 26336, 52, 1372, 64, 24358, 9, 20482, 2387, 426, 19097, 5232, 28, 187, 50272, 59, 26336, 52, 1372, 64, 5993, 15130, 9, 20482, 2387, 426, 25924, 28, 187, 50272, 59, 26336, 52, 1372, 64, 11645, 11477, 9, 20482, 2387, 426, 24420, 28, 187, 50272, 8581, 426, 1594, 37, 64, 15982, 64, 14418, 9, 708, 8522, 13, 40535, 52, 1372, 64, 1139, 13, 20482, 13, 19097, 5232, 13, 25924, 5349, 187, 50272, 94, 535, 50275, 17176, 64, 3775, 64, 20238, 9, 708, 8522, 13, 3708, 5349, 187, 50275, 2309, 313, 8581, 558, 187, 50275, 94, 187 ]
/* xdcon - description * * Purpose: * * Written by: R. Mortensen * Date: * * Calling Sequence: * * STATUS = xdcon( parameters ) * * Parameter List: * * Unit: Display device unit number * * Possible Error Codes: * */ #include "xvmaininc.h" #include "ftnbridge.h" #include "xdexterns.h" #include "xdroutines.h" #include "xderrors.h" #include "xdfuncs.h" #define DEFAULT_FORM 1 FUNCTION FTN_NAME(xdcon)( Unit, Cursor, Form, Blink ) INTEGER Unit, Cursor, Form, Blink; { return ( zdcon( *Unit, *Cursor, *Form, *Blink ) ); } FUNCTION zdcon( unit, cursor, form, blink ) int unit, cursor, form, blink; { int status, tmpForm; xd_current_call = CON; if (!ZCHECK_UNIT_NUMBER) { status = UNIT_OUT_OF_RANGE; } else if (!ZCHECK_DEVICE_OPEN) { status = DEVICE_NOT_OPEN; } else if (!ZCHECK_DEVICE_ACTIVE) { status = DEVICE_NOT_ACTIVE; } else if (!ZCHECK_CURSOR( cursor )) { status = NO_SUCH_CURSOR; } else if (!ZCHECK_CURSOR_TYPE( form )) { status = NO_SUCH_CURSOR_FORM; } else if ((form < 0) && (!ZMAY_RESIZE_CURSOR)) { status = NO_SUCH_CURSOR_FORM; } else if (!ZCHECK_CURSOR_BLINK_RATE( blink )) { status = NO_SUCH_CURSOR_RATE; } else { tmpForm = (form == 0 ? DEFAULT_FORM : form ); ZCURSOR_FORM( cursor ) = tmpForm; ZCURSOR_BLINK( cursor ) = blink; ZCURSOR_ACTIVE( cursor ) = TRUE; status = XD_Device_Interface( &unit, CURSOR_ON, cursor, tmpForm, blink ); } xd_error_handler( &unit, status ); return (status); }
214,336
Github
[ 1545, 8640, 8247, 30496, 15, 1672, 30000, 15, 15714, 18091, 513, 187, 50276, 2327, 1889, 30000, 15, 16601, 535, 50276, 15905, 64, 15024, 21326, 15, 18091, 513, 187, 50274, 11746, 5203, 27, 346, 15714, 16480, 84, 3, 187, 50274, 10121, 7741, 64, 1590, 27, 346, 14399, 64, 15793, 995, 9763, 64, 25966, 27, 346, 14399, 64, 15793, 84, 3, 535, 50274, 10978, 544, 27, 301, 13, 1163, 12812, 62, 535, 50274, 4663, 513, 187, 50272, 11631, 1163, 301, 187, 50272, 11631, 1163, 12812, 187, 50274, 423, 535, 50274, 9029, 795, 15793, 513, 187, 50272, 26059, 64, 2420, 513, 187, 50270, 736, 1163, 301, 187, 50270, 736, 1163, 12812, 187, 50270, 736, 1163, 14447, 264, 64, 255, 187, 50270, 736, 1163, 39055, 64, 255, 187, 50272, 423, 187, 50274, 423, 535, 50274, 630, 2395, 513, 187, 50272, 43824, 513, 187, 50270, 5423, 2395, 13, 1163, 12812, 535, 50270, 28558, 2395, 15, 301, 513, 187, 50268, 5423, 2395, 13, 1163, 15760, 187, 50270, 423, 187, 50272, 423, 187, 50274, 423, 187, 50276, 423, 187, 423, 187 ]
defmodule Backoffice.ExAdmin.AuthAccount do use ExAdmin.Register register_resource Auth.Account do menu label: "Auth Accounts" options resource_name: "auth_account", controller_route: "auth_accounts" filter [:id, :email] index do column :id column :email end show _account do attributes_table do row :id row :email row :inserted_at row :updated_at end end form account do inputs do input account, :email unless account.id do input account, :password end end end end end
214,337
Github
[ 6930, 187, 475, 8339, 670, 247, 25682, 15, 187, 1738, 187, 15035, 5673, 24180, 51, 262, 780, 6074, 551, 187, 186, 6930, 996, 475, 380, 1416, 273, 253, 17651, 15, 996, 475, 996, 475, 19728, 13, 253, 760, 1929, 17651, 310, 346, 1826, 64, 348, 2569, 3446, 996, 1738, 187, 186, 902, 780, 2402, 27, 2876, 28, 535, 186, 6930, 996, 475, 380, 3935, 2197, 342, 253, 17651, 15, 996, 475, 996, 475, 2726, 253, 346, 1826, 64, 348, 2569, 3, 17651, 13, 368, 476, 5206, 875, 247, 873, 1618, 273, 802, 4787, 281, 5007, 15, 996, 1738, 187, 186, 8559, 27, 2876, 28, 187, 94, 187 ]
/** * Information about a raid. */ export interface ChatRitualInfo { /** * The name of the ritual. * * Currently, the only known ritual is "new_chatter". */ ritualName: string; /** * The message sent with the ritual. * * With the "new_chatter" ritual, you can choose between a set list of emotes to send. */ message: string; }
214,338
Github
[ 16, 38868, 9264, 187, 475, 8283, 4022, 14, 9638, 27522, 1940, 6029, 1763, 19924, 313, 5374, 33, 357, 538, 316, 23037, 15, 681, 10, 187, 475, 2490, 475, 21737, 762, 253, 14325, 4637, 13, 11099, 374, 15, 17, 313, 783, 346, 17736, 3287, 368, 778, 417, 187, 475, 897, 436, 1873, 3707, 275, 10276, 342, 253, 4637, 15, 50276, 1394, 778, 4044, 247, 3491, 187, 475, 273, 253, 4637, 387, 187, 475, 2490, 475, 50275, 2413, 1358, 2700, 15, 8418, 15, 2061, 16, 17130, 16, 17821, 14, 19, 15, 17, 187, 475, 2490, 475, 15999, 2424, 407, 7763, 1569, 390, 5821, 281, 275, 4028, 13, 3694, 187, 475, 5939, 762, 253, 4637, 310, 5939, 327, 271, 346, 1719, 4110, 3, 23440, 13, 15002, 187, 475, 15466, 4145, 22998, 3481, 9103, 19329, 13, 2057, 3890, 390, 10466, 15, 50276, 5035, 253, 187, 475, 4637, 323, 253, 2173, 3448, 13200, 15607, 285, 7364, 762, 187, 475, 253, 4637, 15, 187, 209, 21723, 27591, 16, 187, 10708, 45675, 15, 24594, 15, 18677, 15, 7645, 28, 187, 187, 2948, 389, 15, 357, 538, 316, 23037, 15, 76, 1122, 251, 15, 22965, 15, 29008, 2548, 28, 187, 187, 605, 24202, 27, 17252, 14, 20419, 500, 580, 44180, 187, 6930, 187, 475, 380, 6550, 25585, 895, 6155, 15, 187, 1738, 187, 33, 29008, 2548, 187, 4387, 966, 25585, 895, 6155, 551, 535, 50274, 6930, 380, 2654, 15, 1738, 187, 50274, 4387, 1048, 2654, 28, 535, 50274, 6930, 380, 4284, 2586, 15, 1738, 187, 50274, 4387, 4605, 4284, 32351, 28, 535, 50274, 6930, 380, 8746, 33484, 17744, 15, 1738, 187, 50274, 4387, 4605, 8746, 35, 3867, 27111, 28, 535, 50274, 6930, 380, 11410, 15, 1738, 187, 50274, 4387, 12419, 11410, 28, 535, 50274, 6930, 380, 10756, 22639, 15, 1738, 187, 50274, 4387, 1048, 10756, 20780, 28, 187, 94, 187 ]
/******************************************************************************* * Copyright 2016-2019 Francesco Benincasa ([email protected]) * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy * of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations under * the License. ******************************************************************************/ package sqlite.feature.rx.model; import com.abubusoft.kripton.annotation.BindType; // TODO: Auto-generated Javadoc /** * The Class PrefixConfig. */ @BindType public class PrefixConfig { /** The id. */ public long id; /** The default country. */ public String defaultCountry; /** The dual billing prefix. */ public String dualBillingPrefix; /** The enabled. */ public boolean enabled; /** The dialog timeout. */ public long dialogTimeout; }
214,339
Github
[ 14277, 5581, 187, 3122, 362, 303, 27, 873, 5645, 8476, 10334, 13121, 30, 21, 5333, 3429, 30, 21, 2602, 8476, 13121, 30, 21, 27, 1738, 187, 187, 6930, 187, 475, 29446, 11397, 323, 10885, 1007, 8777, 285, 11269, 15, 2490, 475, 187, 475, 14741, 11099, 608, 187, 475, 187, 475, 8283, 313, 68, 10, 4267, 13, 10035, 367, 38085, 654, 78, 2804, 33, 78, 2804, 81, 38085, 15, 681, 13208, 187, 475, 1876, 3570, 10827, 15, 187, 475, 187, 475, 25936, 2382, 285, 897, 275, 2603, 285, 8985, 4948, 13, 342, 390, 1293, 187, 475, 11237, 13, 403, 11460, 2530, 326, 253, 1563, 2515, 187, 475, 403, 1313, 27, 187, 475, 187, 475, 50275, 11, 34682, 273, 2603, 2127, 1364, 13280, 253, 1840, 9451, 187, 475, 50273, 37277, 13, 436, 1618, 273, 2515, 285, 253, 1563, 27578, 15, 187, 475, 187, 475, 50275, 11, 34682, 275, 8985, 830, 1364, 18302, 253, 1840, 9451, 187, 475, 50273, 37277, 13, 436, 1618, 273, 2515, 285, 253, 1563, 27578, 275, 187, 475, 50273, 783, 10097, 285, 16, 263, 643, 4753, 2530, 342, 253, 187, 475, 50273, 35360, 15, 187, 475, 187, 475, 50275, 11, 17106, 253, 1416, 273, 10035, 367, 38085, 4543, 253, 4454, 273, 521, 24781, 2490, 475, 50273, 11159, 320, 908, 281, 18883, 390, 8591, 3580, 6012, 432, 436, 2490, 475, 50273, 33385, 1293, 2173, 2720, 3542, 9214, 15, 187, 475, 187, 475, 10113, 19295, 4110, 33278, 9149, 3003, 28827, 43227, 4889, 38623, 187, 475, 346, 1719, 4110, 3, 4889, 9103, 31643, 4145, 25900, 15466, 13, 31877, 13, 17706, 5803, 187, 475, 25666, 5935, 13, 3003, 25900, 15466, 3481, 20863, 4889, 20524, 187, 475, 6651, 329, 20383, 20103, 17003, 44174, 1703, 15, 2949, 7651, 30609, 32221, 3003, 187, 475, 28827, 46192, 21598, 4145, 38623, 8728, 34745, 6651, 9103, 35739, 13, 47823, 13, 187, 475, 49466, 1556, 13, 38152, 13, 8021, 46465, 11164, 13, 4145, 48128, 32024, 313, 33509, 13, 187, 475, 17706, 5803, 25666, 5935, 13, 25717, 10860, 10634, 3481, 33908, 47259, 47144, 4145, 38986, 28, 187, 475, 45104, 3481, 19226, 13, 27809, 13, 4145, 49080, 28, 4145, 42113, 22508, 37086, 2449, 10, 49457, 187, 475, 6582, 28477, 4889, 8160, 9103, 49212, 3481, 27255, 13, 33206, 2949, 32833, 13, 18443, 1864, 187, 475, 27255, 13, 4145, 34915, 313, 33509, 49505, 4145, 35497, 10, 34984, 2949, 187, 475, 9103, 32155, 16341, 3481, 3003, 19226, 3481, 10113, 19295, 13, 38698, 8681, 48646, 1703, 3481, 3003, 187, 475, 43194, 38761, 3481, 43399, 49334, 15, 187, 475, 187, 475, 1214, 14267, 50276, 19824, 272, 187, 475, 1214, 10708, 50275, 8695, 64, 37, 4883, 19, 187, 475, 1214, 7582, 50274, 26946, 367, 38085, 654, 78, 2804, 33, 78, 2804, 81, 38085, 15, 681, 31, 187, 475, 1214, 35152, 4267, 10035, 367, 38085, 654, 78, 2804, 33, 78, 2804, 81, 38085, 15, 681, 31, 187, 475, 1214, 21997, 50275, 2413, 1358, 2700, 15, 25249, 1505, 15, 2061, 16, 17130, 16, 45005, 14, 21997, 15, 5581, 50276, 33725, 4637, 187, 475, 1214, 4149, 50275, 12944, 47, 27, 370, 2618, 5, 187, 475, 1214, 4492, 50272, 2413, 1358, 365, 274, 15, 5581, 15, 3024, 16, 10708, 16, 8695, 64, 37, 4883, 19, 187, 475, 1214, 17480, 50273, 4505, 2130, 1580, 20002, 470, 15, 23, 15, 17, 187, 475, 187, 1738, 187, 187, 3122, 187, 475, 8749, 253, 6753, 14, 2799, 1159, 187, 475, 187, 1738, 187, 23336, 64, 1920, 311, 1376, 64, 15905, 2073, 8695, 64, 37, 4883, 19, 1450, 1920, 311, 1376, 5137, 187, 187, 6930, 187, 475, 831, 310, 253, 2613, 966, 323, 253, 5357, 64, 37, 4883, 19, 64, 35964, 285, 5357, 64, 37, 4883, 19, 64, 5683, 69, 727, 187, 475, 5971, 15, 187, 475, 187, 475, 1214, 14267, 10701, 272, 187, 475, 1214, 10708, 50276, 8695, 64, 37, 4883, 19, 187, 475, 1214, 7582, 50275, 26946, 367, 38085, 654, 78, 2804, 33, 78, 2804, 81, 38085, 15, 681, 31, 187, 475, 1214, 21997, 50276, 2413, 1358, 2700, 15, 25249, 1505, 15, 2061, 16, 17130, 16, 45005, 14, 21997, 15, 5581, 50276, 33725, 4637, 187, 475, 1214, 4492, 50273, 2413, 1358, 365, 274, 15, 5581, 15, 3024, 16, 10708, 16, 8695, 64, 37, 4883, 19, 187, 475, 1214, 2887, 50272, 8695, 64, 37, 4883, 19, 64, 35964, 13, 5357, 64, 37, 4883, 19, 64, 5683, 69, 727, 187, 475, 187, 1738, 187, 2437, 5357, 64, 37, 4883, 19, 187, 92, 187, 50274, 3122, 187, 50273, 11, 253, 1655, 2715, 273, 436, 6335, 187, 50273, 8480, 187, 50274, 3474, 657, 6117, 2449, 426, 686, 18, 15, 21, 15, 20, 5618, 535, 50274, 3122, 187, 50273, 11, 253, 4284, 1854, 281, 247, 37732, 87, 15, 8259, 1873, 187, 50273, 8480, 187, 50274, 3474, 21180, 3271, 55, 64, 44286, 426, 17882, 14069, 16, 373, 311, 87, 15, 8259, 5618, 535, 50274, 3122, 187, 50273, 11, 12970, 4610, 432, 253, 37732, 87, 15, 8259, 1873, 187, 50273, 11, 187, 50273, 11, 604, 436, 310, 873, 13, 840, 2176, 2193, 432, 253, 37732, 87, 15, 8259, 1873, 588, 12970, 187, 50273, 11, 1980, 7533, 15, 831, 310, 13603, 407, 4284, 281, 3464, 24291, 13333, 15, 187, 50273, 11, 187, 50273, 8480, 187, 50274, 4387, 370, 2327, 64, 373, 311, 87, 64, 10121, 426, 3221, 28, 535, 50274, 3122, 187, 50273, 11, 897, 28371, 760, 313, 5672, 16, 7750, 10, 187, 50273, 8480, 187, 50274, 4387, 370, 2327, 64, 34133, 426, 3221, 28, 535, 50274, 3122, 187, 50273, 11, 29446, 6162, 281, 897, 313, 3357, 10, 187, 50273, 8480, 187, 50274, 4387, 370, 69, 2224, 64, 631, 426, 8676, 28, 535, 50274, 3122, 187, 50273, 11, 253, 13997, 16, 631, 323, 897, 347, 247, 1980, 17498, 187, 50273, 8480, 187, 50274, 4387, 370, 6790, 64, 5465, 426, 34973, 187, 50274, 4387, 370, 6790, 64, 631, 426, 470, 28, 535, 50274, 3122, 187, 50273, 11, 22639, 1318, 323, 17498, 10291, 187, 50273, 8480, 187, 50274, 4387, 370, 23896, 426, 608, 28, 535, 50274, 3122, 187, 50273, 11, 3632, 907, 253, 1416, 14903, 1618, 187, 50273, 8480, 187, 50274, 4387, 370, 2224, 64, 14719, 426, 3221, 28, 535, 50274, 3122, 187, 50273, 11, 4284, 10625, 187, 50273, 8480, 187, 50274, 4387, 370, 13517, 426, 34973, 535, 50274, 3122, 187, 50273, 11, 5028, 3186, 1618, 428, 417, 2686, 908, 987, 1024, 187, 50273, 8480, 187, 50274, 4387, 370, 8716, 64, 3550, 426, 3781, 1874, 535, 50274, 3122, 187, 50273, 11, 8046, 11556, 28, 2057, 346, 18867, 995, 346, 3140, 3, 390, 346, 15422, 3, 187, 50273, 8480, 187, 50274, 4387, 370, 12985, 64, 881, 426, 686, 15422, 5618, 535, 50274, 3122, 187, 50273, 11, 1873, 1416, 281, 897, 323, 6096, 3541, 8223, 390, 1873, 11556, 187, 50273, 8480, 187, 50274, 4387, 370, 12985, 64, 3140, 426, 17882, 12780, 16, 3024, 64, 69, 2224, 19, 15, 12985, 5618, 535, 50274, 3122, 187, 50273, 11, 253, 2781, 1979, 273, 253, 11556, 1873, 313, 249, 11061, 10, 187, 50273, 8480, 187, 50274, 4387, 370, 12985, 64, 3281, 426, 608, 1418, 28, 535, 50274, 3122, 187, 50273, 11, 253, 1332, 281, 897, 323, 20073, 11556, 941, 28, 2057, 346, 49197, 3, 390, 346, 8456, 3, 187, 50273, 11, 187, 50273, 11, 14113, 310, 7938, 13, 533, 476, 626, 4456, 253, 966, 4454, 313, 35773, 3249, 896, 2490, 50273, 11, 347, 247, 346, 8400, 4947, 9206, 3664, 512, 253, 941, 310, 253, 1072, 2167, 15, 10382, 907, 310, 2490, 50273, 11, 17357, 13, 533, 588, 452, 512, 253, 966, 8692, 15, 187, 50273, 11, 187, 50273, 11, 30470, 281, 686, 49197, 8, 187, 50273, 8480, 187, 50274, 4387, 370, 12985, 64, 25836, 6081, 426, 686, 49197, 5618, 535, 50274, 3122, 187, 50273, 11, 407, 4284, 13, 2556, 281, 39006, 884, 1706, 187, 50273, 11, 187, 50273, 11, 330, 9536, 21077, 84, 2847, 2714, 2250, 275, 29446, 3694, 15, 50276, 3039, 247, 1416, 4771, 187, 50273, 11, 10224, 281, 1089, 247, 6799, 21077, 275, 253, 7741, 873, 2330, 342, 253, 187, 50273, 11, 5028, 1416, 13, 352, 12255, 281, 923, 604, 253, 7741, 873, 8414, 273, 247, 330, 9536, 187, 50273, 11, 1924, 342, 247, 11038, 966, 15, 50276, 2042, 594, 13, 253, 1416, 4771, 3797, 253, 330, 9536, 187, 50273, 11, 1924, 275, 253, 2380, 285, 1551, 12863, 253, 7316, 387, 253, 5028, 1416, 187, 50273, 11, 7616, 275, 253, 941, 1673, 273, 253, 330, 9536, 1924, 15, 187, 50273, 11, 187, 50273, 11, 436, 476, 2847, 346, 328, 9127, 3, 2724, 784, 13, 1580, 891, 1353, 2119, 475, 2252, 11, 952, 187, 50273, 11, 1053, 626, 871, 29446, 1057, 436, 28, 627, 778, 320, 2219, 835, 5357, 64, 37, 4883, 19, 6548, 247, 187, 50273, 11, 2762, 2380, 13, 1014, 2167, 253, 3167, 1590, 253, 2608, 3261, 598, 858, 417, 187, 50273, 11, 2686, 2226, 15, 187, 50273, 11, 187, 50273, 11, 7654, 64, 7267, 64, 9561, 2097, 326, 604, 253, 3167, 1590, 326, 369, 3261, 598, 3548, 626, 187, 50273, 11, 2686, 275, 253, 3662, 2593, 273, 253, 2380, 13, 5357, 64, 37, 4883, 19, 588, 1091, 271, 2490, 50273, 11, 6325, 3662, 2593, 13, 3185, 273, 271, 3662, 2593, 326, 812, 3831, 2490, 50273, 11, 330, 9536, 5861, 15, 187, 50273, 11, 187, 50273, 8480, 187, 50274, 4387, 370, 30862, 64, 7267, 64, 9561, 426, 3221, 28, 535, 50274, 3122, 187, 50273, 11, 604, 359, 943, 873, 253, 43489, 6799, 2372, 281, 337, 390, 470, 15, 187, 50273, 11, 187, 50273, 11, 407, 4284, 436, 310, 873, 281, 2032, 13, 359, 971, 253, 29446, 4771, 281, 1347, 247, 33037, 187, 50273, 11, 2748, 15, 1310, 873, 281, 3221, 13, 253, 28613, 2372, 588, 320, 873, 281, 470, 13, 285, 253, 4771, 588, 2490, 50273, 11, 417, 1347, 43489, 327, 253, 2748, 15, 187, 50273, 8480, 187, 50274, 4387, 370, 250, 1915, 339, 426, 2032, 28, 535, 50274, 3122, 187, 50273, 11, 2748, 29446, 20869, 2193, 13, 407, 4758, 253, 7953, 7908, 281, 337, 28, 436, 2686, 2789, 187, 50273, 11, 253, 501, 14930, 823, 247, 37692, 21077, 281, 253, 3081, 2593, 13, 285, 5239, 253, 7953, 7908, 187, 50273, 11, 275, 436, 21077, 281, 337, 187, 50273, 11, 187, 50273, 8480, 187, 50274, 4387, 370, 69, 2224, 1704, 426, 3221, 28, 535, 50274, 3122, 187, 50273, 11, 873, 253, 29446, 20869, 5446, 313, 7034, 7737, 5128, 10, 2372, 327, 16, 2727, 28, 253, 5446, 2372, 327, 253, 2748, 2490, 50273, 11, 1930, 369, 3786, 17011, 13, 285, 37732, 735, 359, 17189, 281, 1900, 2590, 2490, 50273, 11, 253, 5446, 2372, 672, 10430, 247, 2748, 15, 187, 50273, 11, 187, 50273, 11, 39006, 2358, 1449, 2593, 608, 15, 24, 13067, 4758, 253, 5446, 2372, 275, 253, 7316, 347, 247, 2625, 281, 187, 50273, 11, 253, 4771, 326, 352, 5605, 253, 1318, 273, 253, 5446, 2372, 13, 1293, 3058, 281, 2748, 187, 50273, 11, 512, 253, 29446, 20869, 941, 3066, 253, 7953, 2372, 15, 187, 50273, 11, 187, 50273, 8480, 187, 50274, 4387, 370, 69, 2224, 1704, 64, 324, 64, 17101, 426, 3221, 28, 535, 50274, 3122, 187, 50273, 11, 873, 253, 29446, 20869, 3437, 313, 9063, 272, 5201, 5063, 10, 2372, 327, 16, 2727, 28, 8577, 436, 745, 13, 2097, 187, 50273, 11, 326, 253, 29446, 501, 14930, 588, 1347, 352, 434, 1211, 11118, 12820, 14, 594, 253, 29446, 187, 50273, 11, 14903, 3365, 1509, 949, 512, 253, 4278, 15, 187, 50273, 11, 187, 50273, 8480, 187, 50274, 4387, 370, 69, 2224, 1704, 64, 2428, 64, 17101, 426, 3221, 28, 535, 50274, 3122, 187, 50273, 11, 253, 8360, 4883, 9, 17, 10, 48161, 24098, 1979, 281, 897, 672, 2403, 29446, 20869, 9762, 187, 50273, 11, 923, 39006, 3387, 1671, 2593, 577, 15, 18, 428, 8360, 4883, 15185, 15, 187, 50273, 11, 187, 50273, 11, 627, 310, 690, 1027, 5697, 327, 253, 1804, 1979, 281, 915, 1378, 28, 533, 352, 3133, 281, 187, 50273, 11, 320, 346, 255, 1878, 1249, 938, 11061, 13, 533, 7840, 30384, 1329, 35059, 11061, 15, 187, 50273, 11, 187, 50273, 11, 359, 1833, 816, 1329, 35059, 187, 50273, 11, 187, 50273, 8480, 187, 50274, 4387, 370, 69, 2224, 1704, 64, 35704, 64, 3281, 426, 35059, 28, 535, 50274, 3122, 187, 50273, 11, 253, 1390, 385, 70, 2409, 326, 369, 4561, 187, 50273, 8480, 187, 50274, 4387, 370, 6275, 64, 22558, 426, 3635, 28, 535, 50274, 3122, 187, 50273, 11, 253, 1618, 273, 16022, 407, 1416, 4771, 187, 50273, 8480, 187, 50274, 4387, 370, 6275, 64, 22558, 64, 3550, 426, 3781, 1874, 535, 50274, 3122, 187, 50273, 11, 1416, 4771, 1618, 187, 50273, 8480, 187, 50274, 4387, 370, 7886, 254, 735, 426, 3781, 1874, 535, 50274, 3122, 187, 50273, 11, 1980, 47611, 187, 50273, 8480, 187, 50274, 18641, 370, 37123, 426, 3781, 9, 8695, 64, 37, 4883, 19, 64, 22274, 1450, 42937, 64, 37, 40630, 3001, 3781, 5715, 5357, 64, 37, 4883, 19, 64, 22274, 1450, 42937, 64, 39579, 3001, 3781, 6020, 535, 50274, 3122, 187, 50273, 11, 604, 253, 17498, 6880, 310, 10607, 187, 50273, 8480, 187, 50274, 18641, 370, 84, 15675, 64, 22331, 426, 3221, 28, 535, 50274, 3122, 187, 50273, 11, 253, 22465, 2431, 390, 32530, 21077, 1789, 323, 19676, 187, 50273, 8480, 187, 50274, 18641, 370, 14399, 64, 33568, 426, 3635, 28, 535, 50274, 3122, 187, 50273, 11, 253, 6096, 3541, 8223, 2654, 323, 253, 1980, 11556, 187, 50273, 8480, 187, 50274, 18641, 370, 12985, 426, 3635, 28, 535, 50274, 3122, 187, 50273, 11, 4812, 4758, 323, 17690, 11556, 187, 50273, 8480, 187, 50274, 18641, 370, 2327, 64, 12985, 426, 3221, 28, 535, 50274, 6930, 187, 50273, 11, 1716, 26161, 428, 2613, 16757, 323, 253, 2213, 14930, 285, 5863, 69, 727, 187, 50273, 11, 187, 50273, 11, 1214, 3575, 6804, 370, 10121, 3781, 273, 4610, 390, 3635, 323, 5293, 187, 50273, 11, 187, 50273, 11, 1214, 34832, 5357, 64, 37, 4883, 19, 64, 5330, 187, 50273, 11, 1214, 10773, 1345, 187, 50273, 11, 187, 50273, 8480, 187, 50274, 4387, 1159, 4772, 17439, 9, 3728, 370, 10121, 426, 3635, 10, 187, 50274, 92, 187, 50270, 605, 187, 50270, 605, 2451, 323, 253, 47611, 6880, 28, 359, 642, 3356, 1329, 253, 47611, 6335, 762, 2490, 50270, 605, 8323, 14, 627, 452, 644, 1512, 1142, 6332, 2905, 281, 47611, 762, 8323, 14, 2490, 50270, 605, 5742, 16706, 17498, 13067, 875, 9508, 273, 8323, 14, 2490, 50270, 605, 187, 50270, 605, 285, 1580, 309, 476, 626, 1646, 281, 1089, 247, 1039, 281, 755, 253, 4588, 8323, 2715, 13, 352, 2490, 50270, 605, 2506, 626, 1646, 4993, 494, 275, 253, 2127, 15, 187, 50270, 605, 187, 50270, 338, 313, 313, 24210, 64, 19052, 2073, 84, 15675, 3401, 2295, 2032, 10, 3857, 313, 1344, 85, 276, 3803, 9, 39765, 9, 26631, 64, 2697, 13, 470, 13, 495, 1228, 20767, 686, 25079, 3401, 2387, 551, 535, 50266, 5, 2520, 1168, 84, 15675, 64, 22331, 426, 2032, 28, 187, 50270, 94, 535, 50270, 605, 187, 50270, 605, 3301, 667, 4610, 326, 497, 2530, 187, 50270, 605, 187, 50270, 338, 6522, 11004, 3914, 10121, 1228, 551, 535, 50266, 26966, 4816, 10121, 347, 370, 2364, 3001, 370, 2877, 10, 551, 535, 50262, 338, 4816, 2364, 2295, 686, 7886, 254, 735, 3401, 551, 535, 50258, 5, 2520, 1168, 1178, 6075, 735, 3914, 2877, 558, 187, 50262, 94, 2010, 551, 535, 50258, 5, 2520, 1168, 5, 2364, 426, 370, 2877, 28, 187, 50262, 94, 187, 50266, 94, 187, 50270, 94, 535, 50270, 605, 187, 50270, 605, 604, 359, 1472, 873, 281, 897, 253, 1980, 6096, 3541, 11556, 13, 840, 187, 50270, 605, 1056, 2119, 352, 434, 644, 31260, 187, 50270, 605, 187, 50270, 16065, 3914, 2520, 1168, 12985, 64, 881, 10, 551, 187, 50270, 5045, 686, 18867, 5295, 187, 50266, 338, 313, 24210, 64, 19052, 2073, 1200, 78, 412, 19279, 551, 535, 50262, 5, 2520, 1168, 12985, 426, 747, 5357, 64, 37, 4883, 19, 64, 15554, 64, 2809, 78, 28, 187, 50262, 5, 2520, 1168, 2327, 64, 12985, 426, 2032, 28, 187, 50266, 94, 2010, 551, 535, 50262, 22408, 747, 5357, 64, 37, 4883, 19, 64, 5330, 9, 187, 50258, 434, 11774, 412, 6335, 310, 417, 2130, 323, 11556, 1383, 187, 50258, 8695, 64, 37, 4883, 19, 64, 7745, 8777, 1450, 38, 64, 49877, 64, 5648, 46, 64, 54, 1322, 16568, 3077, 187, 50262, 558, 187, 50266, 94, 187, 50266, 7054, 28, 187, 50270, 5045, 686, 3140, 5295, 535, 50266, 5, 2520, 1168, 12985, 426, 747, 5357, 64, 37, 4883, 19, 64, 15554, 64, 4505, 28, 187, 50266, 5, 2520, 1168, 2327, 64, 12985, 426, 2032, 28, 535, 50266, 7054, 28, 50276, 187, 50270, 5045, 686, 15422, 5295, 187, 50266, 5, 2520, 1168, 2327, 64, 12985, 426, 3221, 28, 187, 50266, 7054, 28, 187, 50270, 6986, 27, 535, 50266, 22408, 747, 5357, 64, 37, 4883, 19, 64, 5330, 9, 187, 50262, 8, 328, 14, 19391, 11556, 1511, 27, 686, 964, 370, 2520, 1168, 12985, 64, 881, 13, 187, 50262, 8695, 64, 37, 4883, 19, 64, 7745, 8777, 1450, 38, 64, 49877, 64, 4037, 35316, 1703, 187, 50266, 558, 187, 50270, 94, 187, 50274, 94, 535, 50274, 6930, 187, 50273, 11, 1125, 311, 1376, 1067, 14, 2135, 1159, 28, 908, 281, 6753, 14, 2799, 5971, 187, 50273, 11, 187, 50273, 11, 1214, 3575, 2876, 370, 1590, 253, 1416, 273, 253, 966, 187, 50273, 11, 187, 50273, 11, 1214, 2309, 2991, 187, 50273, 11, 1214, 10773, 1345, 187, 50273, 11, 187, 50273, 8480, 187, 50274, 4659, 1345, 1159, 1125, 311, 1376, 3914, 1590, 10, 187, 50274, 92, 187, 50270, 605, 187, 50270, 605, 760, 6753, 14, 2799, 776, 5971, 187, 50270, 605, 187, 50270, 338, 313, 1344, 9068, 2503, 3914, 1590, 13, 686, 8695, 64, 37, 4883, 19, 1383, 854, 10, 2295, 470, 10, 551, 535, 50266, 3709, 1213, 64, 13481, 2073, 64, 1383, 17882, 1383, 370, 1590, 10, 964, 29996, 5581, 5618, 187, 50270, 94, 535, 50270, 2309, 28, 187, 50274, 94, 535, 50274, 6930, 187, 50273, 11, 5239, 253, 1416, 14903, 281, 320, 908, 187, 50273, 11, 187, 50273, 11, 1214, 3575, 6804, 370, 7886, 254, 735, 2057, 271, 3781, 273, 1416, 14903, 13, 390, 247, 1873, 1416, 2490, 50273, 11, 50254, 50275, 936, 14390, 13, 7384, 352, 434, 275, 253, 37732, 87, 15, 8259, 5981, 187, 50273, 11, 187, 50273, 11, 1214, 2309, 12419, 187, 50273, 11, 1214, 34832, 5357, 64, 37, 4883, 19, 64, 5330, 187, 50273, 11, 1214, 10773, 1345, 187, 50273, 11, 187, 50273, 8480, 187, 50274, 4387, 1159, 873, 6075, 735, 3914, 7886, 254, 735, 10, 187, 50274, 92, 187, 50270, 605, 187, 50270, 605, 604, 352, 434, 271, 3781, 13, 840, 897, 352, 3587, 187, 50270, 605, 187, 50270, 605, 5010, 13, 923, 604, 352, 434, 247, 1854, 281, 247, 37732, 87, 15, 8259, 1873, 285, 604, 594, 13, 3301, 352, 187, 50270, 605, 187, 50270, 338, 313, 261, 64, 3728, 3914, 7886, 254, 735, 1228, 551, 535, 50266, 5, 2520, 1168, 7886, 254, 735, 426, 370, 7886, 254, 735, 28, 535, 50270, 94, 2010, 551, 535, 50266, 605, 187, 50266, 605, 11287, 1618, 273, 1416, 14903, 28, 513, 352, 436, 1039, 2581, 685, 816, 2490, 50266, 605, 14932, 1076, 253, 1980, 4454, 254, 735, 1318, 13, 816, 1485, 511, 271, 6517, 2490, 50266, 605, 310, 13044, 1060, 28, 436, 1039, 359, 1537, 3693, 12365, 598, 342, 271, 6325, 2490, 50266, 605, 295, 1317, 254, 735, 1618, 15, 187, 50266, 605, 187, 50266, 5, 2224, 426, 3781, 1874, 535, 50266, 605, 187, 50266, 605, 2451, 281, 923, 604, 253, 1873, 310, 34025, 187, 50266, 605, 187, 50266, 338, 313, 261, 64, 25285, 3914, 7886, 254, 735, 10, 11013, 2032, 10, 551, 187, 50274, 187, 50262, 5, 2203, 426, 1873, 64, 788, 64, 28662, 3914, 7886, 254, 735, 558, 187, 50262, 338, 4816, 2203, 11013, 3221, 10, 551, 187, 50258, 22408, 747, 5357, 64, 37, 4883, 19, 64, 5330, 9, 187, 50254, 8, 27337, 281, 1239, 9410, 273, 1873, 27, 686, 964, 370, 7886, 254, 735, 13, 187, 50254, 8695, 64, 37, 4883, 19, 64, 7745, 8777, 1450, 38, 64, 4883, 64, 35557, 64, 13690, 187, 50258, 558, 187, 50262, 94, 535, 50262, 5, 8737, 426, 34667, 30094, 79, 995, 370, 2203, 558, 535, 50262, 26966, 4816, 8737, 347, 370, 1282, 10, 551, 187, 50258, 187, 50258, 5, 1282, 426, 13970, 3914, 1282, 558, 535, 50258, 605, 187, 50258, 605, 11823, 6325, 3104, 13, 285, 3104, 326, 403, 20503, 562, 187, 50258, 605, 187, 50258, 338, 313, 313, 1344, 5025, 3914, 1282, 10, 2295, 470, 10, 2490, 50254, 9473, 4816, 1282, 60, 17, 62, 2295, 25777, 3401, 2490, 50254, 9473, 4816, 1282, 60, 17, 62, 2295, 686, 28, 3401, 187, 50258, 10, 551, 187, 50254, 25674, 28, 187, 50258, 94, 535, 50258, 605, 187, 50258, 605, 11823, 3104, 342, 642, 8470, 275, 731, 15, 187, 50258, 605, 187, 50258, 338, 313, 1344, 993, 3914, 1282, 13, 686, 47071, 11013, 3221, 10, 551, 187, 50254, 25674, 28, 187, 50258, 94, 535, 50258, 3550, 3914, 2364, 13, 370, 2877, 10, 426, 28376, 64, 9148, 2073, 6602, 84, 34554, 1383, 370, 1282, 13, 374, 558, 535, 50258, 5, 2364, 50274, 30, 13970, 9, 1344, 34776, 1017, 3914, 2364, 4027, 187, 50258, 5, 2877, 50276, 30, 13970, 9, 1344, 34776, 1017, 3914, 2877, 4027, 535, 50258, 16065, 3914, 2364, 10, 551, 187, 50258, 5045, 686, 7886, 17188, 5295, 535, 50254, 605, 187, 50254, 605, 4454, 17188, 476, 320, 247, 36247, 21, 390, 36247, 23, 2953, 187, 50254, 605, 187, 50254, 338, 313, 313, 1286, 1450, 261, 3123, 87, 21, 3914, 2877, 10, 2295, 2032, 10, 2490, 50254, 50274, 9473, 313, 1286, 1450, 261, 3123, 87, 23, 3914, 2877, 10, 2295, 2032, 10, 187, 50254, 10, 551, 535, 50254, 50274, 5, 2224, 5456, 426, 370, 2877, 28, 187, 50254, 94, 2010, 551, 535, 50254, 50274, 22408, 747, 5357, 64, 37, 4883, 19, 64, 5330, 9, 187, 50254, 50270, 8, 25359, 4454, 17188, 5857, 27, 686, 964, 370, 2877, 13, 187, 50254, 50270, 8695, 64, 37, 4883, 19, 64, 7745, 8777, 1450, 38, 64, 4883, 64, 35557, 64, 31626, 187, 50254, 50274, 558, 187, 50254, 94, 187, 50254, 7054, 28, 535, 50258, 5045, 686, 13517, 5295, 187, 50254, 5, 2520, 1168, 13517, 426, 370, 2877, 28, 187, 50254, 7054, 28, 535, 50258, 5045, 686, 8716, 5295, 187, 50254, 5, 2520, 1168, 8716, 64, 3550, 426, 28376, 64, 9148, 2073, 6602, 84, 34554, 1383, 370, 2877, 558, 187, 50254, 7054, 28, 535, 50258, 5045, 686, 10121, 5295, 187, 50254, 5, 2520, 1168, 12083, 10976, 3914, 2877, 558, 187, 50254, 7054, 28, 535, 50258, 6986, 27, 187, 50254, 28, 187, 50258, 94, 187, 50262, 94, 535, 50262, 605, 187, 50262, 605, 604, 359, 1053, 626, 452, 247, 5028, 13, 533, 359, 452, 247, 3186, 1618, 13, 840, 187, 50262, 605, 1379, 253, 806, 5857, 327, 253, 3186, 1618, 347, 253, 5028, 187, 50262, 605, 187, 50262, 338, 313, 313, 1344, 5025, 3914, 2520, 1168, 13517, 10, 2295, 470, 10, 2490, 50258, 10494, 313, 5560, 3914, 2520, 1168, 8716, 64, 3550, 10, 2239, 470, 10, 2490, 50262, 10, 551, 187, 50258, 5, 2520, 1168, 13517, 426, 370, 2520, 1168, 8716, 64, 3550, 60, 17, 2194, 187, 50262, 94, 535, 50266, 94, 2010, 551, 187, 50262, 22408, 747, 5357, 64, 37, 4883, 19, 64, 5330, 9, 187, 50258, 1472, 84, 14930, 1873, 1873, 2530, 310, 417, 34025, 27, 686, 964, 370, 7886, 254, 735, 13, 187, 50258, 8695, 64, 37, 4883, 19, 64, 7745, 8777, 1450, 38, 64, 4883, 64, 35557, 64, 13690, 187, 50262, 558, 187, 50266, 94, 535, 50266, 605, 187, 50266, 605, 4657, 253, 1416, 14903, 12171, 187, 50266, 605, 187, 50266, 338, 313, 5560, 3914, 2224, 10, 2239, 470, 10, 551, 187, 50262, 5, 2520, 1168, 7886, 254, 735, 426, 370, 2224, 28, 187, 50266, 94, 187, 50270, 94, 535, 50270, 605, 187, 50270, 605, 5386, 667, 40430, 28, 417, 2119, 604, 359, 943, 15105, 342, 436, 14, 604, 952, 187, 50270, 605, 1691, 21036, 1416, 14903, 13, 665, 309, 717, 281, 3523, 731, 32, 187, 50270, 605, 187, 50270, 5, 2520, 1168, 7886, 254, 735, 426, 3781, 64, 22524, 3914, 2520, 1168, 7886, 254, 735, 558, 535, 50270, 605, 187, 50270, 605, 2451, 253, 1416, 14903, 187, 50270, 605, 187, 50270, 5, 2520, 1168, 5903, 6075, 735, 1874, 535, 50270, 2309, 2032, 28, 187, 50274, 94, 535, 50274, 6930, 187, 50273, 11, 13328, 265, 253, 4610, 1386, 432, 247, 37732, 87, 15, 8259, 1873, 28, 359, 1053, 626, 1329, 512, 253, 4610, 187, 50273, 11, 2568, 13, 285, 970, 731, 310, 15266, 15, 187, 50273, 11, 187, 50273, 11, 1214, 3575, 2876, 370, 2877, 310, 253, 4610, 2876, 432, 253, 37732, 87, 15, 8259, 1873, 15, 187, 50273, 11, 187, 50273, 11, 1214, 2309, 12419, 187, 50273, 11, 1214, 10773, 3055, 187, 50273, 11, 187, 50273, 8480, 187, 50274, 9486, 1159, 14390, 10976, 3914, 2877, 10, 187, 50274, 92, 187, 50270, 605, 187, 50270, 605, 604, 17797, 1487, 403, 13603, 313, 783, 4284, 582, 390, 253, 4610, 1618, 310, 6325, 323, 690, 187, 50270, 605, 1921, 13, 840, 359, 1053, 626, 878, 281, 513, 667, 273, 436, 789, 15, 187, 50270, 605, 187, 50270, 338, 313, 4816, 2520, 1168, 2327, 64, 373, 311, 87, 64, 10121, 2295, 3221, 10, 2785, 313, 1344, 5025, 3914, 2877, 10, 2295, 470, 10, 2387, 551, 535, 50266, 2309, 2032, 28, 187, 50270, 94, 535, 50270, 5, 10121, 426, 28376, 64, 9148, 2073, 6602, 84, 34554, 1383, 1213, 34776, 1017, 3914, 2877, 4027, 535, 50270, 26966, 4816, 10121, 347, 370, 7872, 10, 551, 535, 50266, 605, 187, 50266, 605, 12970, 253, 22639, 1318, 432, 253, 37732, 87, 15, 8259, 1873, 15, 187, 50266, 605, 187, 50266, 338, 313, 313, 1344, 9068, 2503, 3914, 7872, 13, 686, 23896, 1383, 818, 10, 2295, 470, 10, 3857, 313, 1344, 993, 3914, 7872, 13, 48344, 3401, 20767, 3221, 10, 2387, 551, 535, 50262, 3550, 3914, 2364, 13, 370, 1208, 10, 426, 34667, 2073, 27, 1383, 370, 7872, 558, 535, 50262, 338, 313, 4816, 1208, 2239, 470, 10, 3857, 4816, 1208, 11049, 1884, 10, 2387, 551, 535, 50258, 5, 2520, 1168, 23896, 426, 370, 1208, 28, 187, 50262, 94, 535, 50266, 605, 187, 50266, 605, 253, 21033, 4500, 816, 11410, 253, 19769, 64, 14719, 4500, 187, 50266, 605, 187, 50266, 94, 2010, 604, 313, 1344, 9068, 2503, 3914, 7872, 13, 686, 44979, 1383, 721, 10, 2295, 470, 10, 551, 535, 50262, 5, 2520, 1168, 2224, 64, 14719, 426, 2032, 28, 187, 50266, 94, 187, 50270, 94, 535, 50270, 2309, 2032, 28, 187, 50274, 94, 50274, 535, 50274, 6930, 187, 50273, 11, 12255, 253, 1618, 273, 1416, 14903, 281, 1056, 2119, 597, 1472, 873, 187, 50273, 11, 187, 50273, 11, 1214, 3575, 6804, 370, 6986, 247, 1854, 281, 247, 37732, 87, 15, 8259, 1873, 390, 271, 3781, 273, 14903, 15, 187, 50273, 11, 187, 50273, 11, 1214, 2309, 12419, 187, 50273, 11, 1214, 34832, 5357, 64, 37, 4883, 19, 64, 5330, 187, 50273, 11, 1214, 10773, 6885, 187, 50273, 11, 187, 50273, 8480, 187, 50274, 18641, 1159, 2451, 6075, 735, 3914, 6986, 426, 3635, 10, 187, 50274, 92, 187, 50270, 338, 313, 11004, 3914, 2520, 1168, 7886, 254, 735, 1228, 551, 535, 50266, 338, 313, 33915, 3914, 6986, 1228, 551, 535, 50262, 5, 2520, 1168, 1178, 6075, 735, 3914, 6986, 558, 187, 50266, 94, 2010, 551, 535, 50262, 22408, 747, 5357, 64, 37, 4883, 19, 64, 5330, 9, 187, 50258, 8, 11004, 1416, 14903, 1618, 28, 368, 1364, 2085, 247, 1618, 273, 1416, 29996, 187, 50258, 434, 254, 735, 13, 390, 253, 1854, 281, 247, 37732, 87, 15, 8259, 1873, 40219, 187, 50258, 8695, 64, 37, 4883, 19, 64, 7745, 8777, 1450, 38, 64, 4883, 64, 35557, 64, 31626, 187, 50262, 558, 187, 50266, 94, 187, 50270, 94, 187, 50274, 187, 50270, 2309, 2032, 28, 187, 50274, 94, 535, 50274, 6930, 187, 50273, 11, 11323, 247, 22465, 2431, 21077, 1789, 323, 19676, 187, 50273, 11, 187, 50273, 11, 1214, 3575, 2876, 370, 413, 1362, 482, 50275, 783, 2234, 1416, 281, 897, 323, 253, 22465, 2431, 21077, 187, 50273, 11, 1214, 3575, 2876, 370, 33568, 253, 2234, 281, 861, 253, 2748, 15, 187, 50273, 11, 1214, 3575, 2876, 370, 41528, 253, 5933, 281, 897, 187, 50273, 11, 2490, 50273, 11, 1214, 2309, 12419, 187, 50273, 11, 1214, 10773, 1345, 187, 50273, 11, 1214, 17480, 50276, 3701, 2130, 1580, 3727, 337, 15, 18, 15, 17, 187, 50273, 11, 187, 50273, 8480, 187, 50274, 4387, 1159, 861, 6901, 2431, 9, 187, 50270, 5, 413, 1362, 482, 13, 370, 33568, 426, 29278, 370, 41528, 426, 5357, 64, 37, 4883, 19, 64, 14253, 64, 6901, 2431, 1450, 25695, 1934, 64, 7414, 22, 187, 50274, 10, 551, 187, 50270, 605, 187, 50270, 605, 604, 253, 22465, 2431, 369, 638, 14, 22337, 285, 4817, 275, 13, 840, 359, 476, 816, 908, 2490, 50270, 605, 352, 347, 2530, 15, 187, 50270, 605, 187, 50270, 338, 4816, 413, 1362, 482, 31979, 5357, 64, 37, 4883, 19, 64, 14253, 64, 6901, 2431, 10, 551, 535, 50266, 5, 2520, 1168, 14399, 64, 33568, 426, 370, 413, 1362, 482, 28, 535, 50270, 94, 2010, 551, 535, 50266, 605, 187, 50266, 605, 5010, 2794, 253, 22465, 2431, 21077, 13, 533, 1053, 626, 823, 352, 816, 2568, 28, 22465, 2431, 3198, 2490, 50266, 605, 281, 320, 2879, 347, 253, 1390, 3081, 5857, 14, 594, 359, 1833, 823, 352, 816, 2490, 50266, 605, 1078, 359, 5007, 15, 187, 50266, 605, 187, 50266, 5, 2520, 1168, 14399, 64, 33568, 426, 5357, 64, 37, 4883, 19, 64, 14253, 1450, 4064, 2776, 9, 187, 50262, 1344, 34776, 1017, 9, 24716, 3914, 413, 1362, 482, 1228, 964, 187, 50262, 8, 22465, 2431, 29996, 370, 33568, 187, 50266, 558, 535, 50266, 605, 187, 50266, 605, 873, 253, 5933, 281, 897, 187, 50266, 605, 187, 50266, 5, 2520, 1168, 14399, 64, 33568, 1168, 41528, 426, 370, 41528, 28, 187, 50270, 94, 187, 50268, 187, 50270, 2309, 2032, 28, 187, 50274, 94, 535, 50274, 6930, 187, 50273, 11, 11323, 247, 32530, 21077, 1789, 323, 19676, 187, 50273, 11, 187, 50273, 11, 1214, 3575, 2876, 370, 17479, 253, 1416, 273, 247, 1873, 281, 3301, 253, 11118, 432, 15, 187, 50273, 11, 2490, 50273, 11, 1214, 2309, 12419, 187, 50273, 11, 1214, 34832, 5357, 64, 37, 4883, 19, 64, 5330, 187, 50273, 11, 1214, 10773, 1345, 187, 50273, 11, 1214, 17480, 50276, 3701, 2130, 1580, 3727, 337, 15, 18, 15, 17, 187, 50273, 11, 187, 50273, 8480, 187, 50274, 4387, 1159, 861, 22963, 17, 3914, 17479, 10, 187, 50274, 92, 187, 50270, 605, 187, 50270, 605, 2451, 323, 7489, 21156, 187, 50270, 605, 187, 50270, 338, 313, 24210, 64, 19052, 2073, 39999, 3401, 11013, 3221, 10, 551, 187, 50266, 187, 50266, 22408, 747, 5357, 64, 37, 4883, 19, 64, 5330, 9, 187, 50262, 626, 248, 7489, 21156, 6880, 310, 2424, 281, 897, 32530, 9, 17, 481, 1383, 187, 50262, 8695, 64, 37, 4883, 19, 64, 7745, 8777, 1450, 38, 64, 28652, 21156, 64, 54, 1322, 16568, 3077, 187, 50266, 558, 187, 50270, 94, 535, 50270, 605, 187, 50270, 605, 604, 253, 32530, 369, 638, 14, 22337, 13, 840, 897, 352, 347, 14, 261, 187, 50270, 605, 187, 50270, 338, 4816, 17479, 31979, 5357, 64, 37, 4883, 19, 64, 14253, 64, 22963, 10, 551, 535, 50266, 5, 2520, 1168, 14399, 64, 33568, 426, 370, 17479, 28, 535, 50270, 94, 2010, 551, 187, 50270, 187, 50266, 605, 187, 50266, 605, 5010, 13, 352, 434, 19722, 534, 3198, 281, 320, 36838, 285, 11742, 15, 187, 50266, 605, 187, 50266, 5, 9486, 426, 747, 5357, 64, 37, 4883, 19, 64, 22279, 4814, 3914, 17479, 558, 535, 50266, 605, 187, 50266, 605, 2794, 247, 747, 5357, 64, 37, 4883, 19, 64, 14253, 64, 22963, 1789, 187, 50266, 605, 187, 50266, 5, 2520, 1168, 14399, 64, 33568, 426, 747, 5357, 64, 37, 4883, 19, 64, 14253, 64, 22963, 1874, 535, 50266, 605, 187, 50266, 605, 14932, 690, 2193, 187, 50266, 605, 187, 50266, 5, 2520, 1168, 14399, 64, 33568, 1168, 1590, 50269, 30, 370, 9486, 1168, 9188, 1590, 28, 187, 50266, 5, 2520, 1168, 14399, 64, 33568, 1168, 1440, 77, 50268, 30, 470, 28, 187, 50266, 5, 2520, 1168, 14399, 64, 33568, 1168, 2437, 50270, 30, 686, 22026, 5618, 535, 50266, 605, 187, 50266, 605, 841, 2193, 403, 7320, 432, 253, 3055, 2234, 187, 50266, 605, 187, 50266, 5, 2520, 1168, 14399, 64, 33568, 1168, 41528, 50274, 30, 370, 9486, 1168, 41528, 28, 187, 50266, 5, 2520, 1168, 14399, 64, 33568, 1168, 413, 1767, 356, 50271, 30, 370, 9486, 1168, 413, 1767, 356, 28, 187, 50266, 5, 2520, 1168, 14399, 64, 33568, 1168, 9188, 1590, 50273, 30, 370, 9486, 1168, 9188, 1590, 28, 535, 50266, 605, 187, 50266, 605, 841, 2193, 403, 1892, 14, 38059, 323, 32530, 17, 187, 50266, 605, 187, 50266, 5, 2520, 1168, 14399, 64, 33568, 1168, 881, 32916, 50276, 30, 686, 22963, 17, 5618, 187, 50266, 5, 2520, 1168, 14399, 64, 33568, 1168, 31294, 50271, 30, 470, 28, 187, 50266, 5, 2520, 1168, 14399, 64, 33568, 1168, 28474, 1440, 77, 50272, 30, 470, 28, 535, 50266, 605, 187, 50266, 605, 6635, 253, 12282, 187, 50266, 605, 187, 50266, 5, 85, 426, 673, 1874, 535, 50266, 5, 2520, 1168, 14399, 64, 33568, 1168, 24502, 1090, 81, 50273, 30, 305, 78, 2754, 2073, 58, 6535, 8389, 1383, 370, 85, 558, 187, 50266, 5, 2520, 1168, 14399, 64, 33568, 1168, 24502, 4347, 50271, 30, 305, 78, 2754, 2073, 58, 6535, 8389, 1383, 370, 85, 559, 6783, 558, 535, 50266, 605, 187, 50266, 605, 4657, 253, 3055, 2234, 275, 253, 32530, 1789, 323, 1996, 15, 187, 50266, 605, 187, 50266, 5, 2520, 1168, 14399, 64, 33568, 1168, 9486, 64, 2364, 50276, 30, 370, 9486, 28, 187, 50270, 94, 535, 50270, 605, 187, 50270, 605, 760, 42097, 11333, 403, 4516, 323, 32530, 9, 17, 10, 187, 50270, 605, 187, 50270, 16065, 3914, 2520, 1168, 14399, 64, 33568, 1168, 41528, 10, 551, 187, 50270, 5045, 5357, 64, 37, 4883, 19, 64, 7745, 8777, 1450, 37, 4883, 20869, 64, 1556, 40, 1372, 7176, 46, 64, 6453, 48099, 22, 27, 187, 50270, 5045, 5357, 64, 37, 4883, 19, 64, 7745, 8777, 1450, 37, 4883, 20869, 64, 1556, 40, 1372, 7176, 46, 64, 6453, 1719, 10114, 18, 27, 187, 50270, 5045, 5357, 64, 37, 4883, 19, 64, 7745, 8777, 1450, 37, 4883, 20869, 64, 1556, 40, 1372, 7176, 46, 64, 6453, 1719, 10114, 9726, 27, 187, 50270, 5045, 5357, 64, 37, 4883, 19, 64, 7745, 8777, 1450, 37, 4883, 20869, 64, 1556, 40, 1372, 7176, 46, 64, 6453, 1719, 10114, 19233, 27, 187, 50270, 5045, 5357, 64, 37, 4883, 19, 64, 7745, 8777, 1450, 37, 4883, 20869, 64, 1556, 40, 1372, 7176, 46, 64, 37, 4576, 27, 187, 50266, 7054, 28, 187, 50270, 6986, 27, 187, 50266, 22408, 747, 5357, 64, 37, 4883, 19, 64, 5330, 9, 187, 50262, 8, 7483, 26640, 11333, 789, 342, 32530, 9, 17, 25246, 1383, 187, 50262, 8695, 64, 37, 4883, 19, 64, 7745, 8777, 1450, 38, 64, 28652, 21156, 64, 1042, 55, 64, 1556, 10993, 187, 50266, 558, 187, 50270, 94, 535, 50270, 2309, 2032, 28, 187, 50274, 94, 535, 50274, 6930, 187, 50273, 11, 247, 2969, 1159, 281, 3653, 604, 253, 21077, 1511, 310, 11556, 494, 187, 50273, 11, 187, 50273, 11, 1214, 3575, 5542, 21670, 881, 253, 21077, 1511, 2876, 187, 50273, 11, 187, 50273, 11, 1214, 2309, 7301, 6548, 2032, 16, 7750, 604, 253, 21077, 1511, 604, 260, 607, 494, 187, 50273, 11, 1214, 10773, 1345, 187, 50273, 11, 187, 50273, 8480, 187, 50274, 4387, 1159, 11556, 494, 32966, 881, 10, 187, 50274, 92, 187, 50270, 16065, 32966, 881, 10, 551, 187, 50270, 5045, 686, 14942, 6764, 5295, 187, 50270, 5045, 686, 18904, 5295, 187, 50266, 2309, 3221, 28, 187, 50270, 94, 535, 50270, 2309, 2032, 28, 50275, 187, 50274, 94, 535, 50274, 6930, 187, 50273, 11, 14741, 2506, 626, 1329, 10698, 20935, 13, 533, 1142, 273, 253, 21077, 434, 1091, 187, 50273, 11, 10698, 2193, 313, 3022, 8717, 34, 582, 594, 627, 310, 253, 6387, 326, 253, 187, 50273, 11, 1318, 588, 689, 6321, 327, 4567, 2713, 2718, 13, 285, 368, 1833, 990, 598, 342, 247, 2490, 50273, 11, 4016, 1318, 15, 187, 50273, 11, 187, 50273, 11, 6705, 2713, 2718, 403, 417, 5876, 13, 347, 616, 14741, 64, 1042, 64, 11779, 1318, 943, 187, 50273, 11, 320, 6705, 2713, 313, 466, 47722, 23829, 938, 1812, 2227, 2504, 1976, 28950, 10, 187, 50273, 11, 187, 50273, 11, 831, 1159, 6548, 247, 4016, 7007, 1318, 13, 347, 247, 2876, 13, 342, 187, 50273, 11, 253, 3451, 10698, 1318, 15, 187, 50273, 11, 187, 50273, 11, 1214, 3575, 2876, 21670, 565, 253, 10698, 7007, 1318, 281, 2451, 187, 50273, 11, 187, 50273, 11, 1214, 2309, 2876, 6548, 253, 10698, 1318, 347, 247, 2876, 15, 187, 50273, 11, 1214, 10773, 1345, 187, 50273, 11, 187, 50273, 8480, 187, 50274, 4387, 4228, 1159, 5645, 34440, 1237, 32966, 565, 10, 187, 50274, 92, 187, 50270, 338, 313, 4816, 64, 565, 654, 470, 10, 3857, 313, 26631, 64, 7999, 64, 11779, 2295, 374, 14555, 2385, 23100, 24, 10, 2387, 551, 187, 50266, 2309, 29644, 71, 2073, 6, 86, 1383, 21670, 565, 558, 187, 50270, 94, 2010, 551, 187, 50266, 2309, 21670, 565, 28, 187, 50270, 94, 187, 50274, 94, 535, 50274, 6930, 187, 50273, 11, 6548, 2032, 16, 7750, 604, 253, 1677, 2953, 310, 247, 3588, 36247, 21, 2953, 187, 50273, 11, 187, 50273, 11, 1214, 3575, 2876, 21670, 12025, 253, 36247, 21, 2953, 281, 2451, 187, 50273, 11, 187, 50273, 11, 1214, 2309, 12419, 6548, 2032, 16, 7750, 604, 253, 2953, 310, 36247, 21, 2953, 187, 50273, 11, 1214, 10773, 1345, 187, 50273, 11, 187, 50273, 8480, 187, 50274, 4387, 4228, 1159, 310, 3123, 87, 21, 32966, 12025, 10, 187, 50274, 92, 187, 50270, 605, 187, 50270, 605, 897, 5806, 64, 2044, 1082, 604, 352, 434, 2130, 28, 352, 434, 7938, 685, 28376, 187, 50270, 605, 187, 50270, 338, 313, 24210, 64, 19052, 2073, 10978, 3401, 2295, 2032, 10, 551, 535, 50266, 338, 313, 10978, 64, 2044, 32966, 12025, 13, 32630, 4827, 64, 46330, 4966, 64, 3123, 13, 32630, 4827, 64, 12900, 64, 33539, 21, 10, 2295, 3221, 10, 551, 187, 50262, 2309, 3221, 28, 187, 50266, 94, 187, 50270, 94, 2010, 551, 535, 50266, 605, 187, 50266, 605, 513, 253, 2022, 2451, 1060, 28, 187, 50266, 605, 187, 50266, 338, 313, 7795, 64, 11933, 32966, 12025, 10, 11013, 3221, 10, 551, 187, 50262, 2309, 3221, 28, 187, 50266, 94, 535, 50266, 605, 187, 50266, 605, 840, 1056, 2119, 359, 1472, 417, 247, 36247, 23, 2953, 187, 50266, 605, 187, 50266, 338, 313, 81, 1747, 64, 8992, 28199, 18990, 17, 14, 26, 1019, 18, 13, 20, 889, 4681, 17, 14, 26, 1019, 18, 13, 20, 889, 4681, 17, 14, 26, 1019, 18, 13, 20, 889, 4681, 17, 14, 26, 1019, 18, 13, 20, 724, 16, 1383, 21670, 12025, 10, 2295, 470, 10, 551, 187, 50262, 2309, 3221, 28, 187, 50266, 94, 187, 50270, 94, 535, 50270, 2309, 2032, 28, 187, 50274, 94, 187, 50274, 187, 50274, 6930, 187, 50273, 11, 6548, 2032, 16, 7750, 604, 253, 1677, 2953, 310, 247, 3588, 36247, 23, 2953, 187, 50273, 11, 187, 50273, 11, 1214, 3575, 2876, 21670, 12025, 253, 36247, 23, 2953, 281, 2451, 187, 50273, 11, 187, 50273, 11, 1214, 2309, 12419, 6548, 2032, 16, 7750, 604, 253, 2953, 310, 36247, 23, 2953, 187, 50273, 11, 1214, 10773, 1345, 187, 50273, 11, 187, 50273, 8480, 187, 50274, 4387, 4228, 1159, 310, 3123, 87, 23, 32966, 12025, 10, 187, 50274, 92, 187, 50270, 605, 187, 50270, 605, 897, 5806, 64, 2044, 1082, 604, 352, 434, 2130, 28, 352, 434, 7938, 685, 28376, 187, 50270, 605, 187, 50270, 338, 313, 24210, 64, 19052, 2073, 10978, 3401, 2295, 2032, 10, 551, 187, 50266, 338, 313, 10978, 64, 2044, 32966, 12025, 13, 32630, 4827, 64, 46330, 4966, 64, 3123, 13, 32630, 4827, 64, 12900, 64, 33539, 23, 10, 2295, 3221, 10, 551, 187, 50262, 2309, 3221, 28, 187, 50266, 94, 187, 50270, 94, 2010, 551, 535, 50266, 605, 187, 50266, 605, 513, 253, 2022, 2451, 1060, 187, 50266, 605, 187, 50266, 338, 313, 7795, 64, 11933, 32966, 12025, 10, 11013, 3221, 10, 551, 187, 50262, 2309, 3221, 28, 187, 50266, 94, 535, 50266, 605, 187, 50266, 605, 840, 1056, 2119, 352, 2506, 626, 3761, 247, 36247, 21, 2953, 187, 50266, 605, 187, 50266, 338, 313, 81, 1747, 64, 8992, 28199, 18990, 17, 14, 26, 1019, 18, 13, 20, 889, 4681, 17, 14, 26, 1019, 18, 13, 20, 889, 4681, 17, 14, 26, 1019, 18, 13, 20, 889, 4681, 17, 14, 26, 1019, 18, 13, 20, 724, 16, 1383, 21670, 12025, 10, 2295, 337, 10, 551, 187, 50262, 2309, 3221, 28, 187, 50266, 94, 187, 50270, 94, 535, 50270, 2309, 2032, 28, 187, 50274, 94, 535, 50274, 6930, 187, 50273, 11, 21453, 253, 1677, 36247, 23, 2953, 347, 247, 4751, 11848, 36247, 23, 2953, 187, 50273, 11, 187, 50273, 11, 1214, 3575, 2876, 21670, 12025, 253, 36247, 23, 2953, 281, 5645, 187, 50273, 11, 187, 50273, 11, 1214, 2309, 2876, 253, 4751, 11848, 36247, 23, 2953, 187, 50273, 11, 1214, 10773, 1345, 187, 50273, 11, 187, 50273, 8480, 187, 50274, 4387, 4228, 1159, 5645, 3123, 87, 23, 32966, 12025, 10, 187, 50274, 92, 187, 50270, 5, 15741, 426, 45737, 2073, 41, 11, 15741, 1383, 275, 292, 64, 11933, 32966, 12025, 4027, 187, 50274, 187, 50270, 2309, 5390, 9, 81, 1747, 64, 13481, 2073, 5624, 60, 34, 14, 71, 17, 14, 26, 1019, 21, 94, 1933, 1383, 12122, 18, 49777, 370, 15741, 5013, 15741, 6038, 582, 470, 13, 428, 18, 558, 187, 50274, 94, 535, 50274, 6930, 187, 50273, 11, 16965, 247, 2629, 5357, 64, 37, 4883, 19, 64, 33812, 64, 6825, 13138, 187, 50273, 11, 187, 50273, 11, 1214, 3575, 5357, 64, 37, 4883, 19, 64, 33812, 370, 9629, 247, 5357, 64, 37, 4883, 19, 64, 33812, 64, 6825, 1789, 187, 50273, 11, 1214, 3575, 12419, 50269, 5, 2327, 64, 34133, 2032, 16, 7750, 604, 253, 1159, 943, 187, 50273, 11, 50254, 50269, 2327, 28371, 323, 253, 2748, 187, 50273, 11, 187, 50273, 11, 1214, 2309, 6804, 6548, 247, 5357, 64, 37, 4883, 19, 64, 33812, 64, 9604, 1789, 13, 390, 3221, 327, 2228, 187, 50273, 11, 1214, 34832, 5357, 64, 37, 4883, 19, 64, 5330, 187, 50273, 11, 1214, 10773, 6885, 187, 50273, 11, 187, 50273, 8480, 187, 50274, 18641, 1159, 5007, 33812, 9, 8695, 64, 37, 4883, 19, 64, 33812, 370, 9629, 13, 370, 2327, 64, 34133, 10, 187, 50274, 92, 187, 50270, 605, 187, 50270, 605, 755, 253, 941, 432, 253, 13138, 187, 50270, 605, 187, 50270, 5, 2203, 426, 370, 9629, 1168, 788, 1874, 187, 50270, 338, 313, 1344, 5025, 3914, 2203, 10, 654, 5357, 64, 37, 4883, 19, 64, 7745, 8777, 1450, 37, 4883, 64, 37456, 64, 12771, 10, 551, 535, 50266, 22408, 747, 5357, 64, 37, 4883, 19, 64, 5330, 9, 187, 50262, 8, 25359, 390, 6325, 13138, 323, 10430, 2, 1383, 187, 50262, 8695, 64, 37, 4883, 19, 64, 7745, 8777, 1450, 38, 64, 32272, 2025, 64, 35557, 13, 187, 50262, 8629, 13, 187, 50262, 5, 9629, 187, 50266, 558, 187, 50270, 94, 535, 50270, 19511, 3914, 2520, 1168, 7886, 254, 735, 558, 187, 50270, 187, 50270, 605, 187, 50270, 605, 3632, 907, 253, 1416, 4771, 1618, 604, 352, 434, 2546, 323, 187, 50270, 605, 187, 50270, 338, 4816, 2520, 1168, 2224, 64, 14719, 2295, 2032, 10, 551, 535, 50266, 1200, 23831, 3914, 2520, 1168, 7886, 254, 735, 558, 187, 50270, 94, 535, 50270, 605, 187, 50270, 605, 6287, 594, 359, 476, 6016, 4771, 6332, 187, 50270, 605, 187, 50270, 5, 10927, 426, 3635, 28, 187, 50270, 5, 2224, 426, 34973, 535, 50270, 6050, 313, 18, 10, 551, 535, 50266, 605, 187, 50266, 605, 10013, 253, 1735, 29446, 4771, 187, 50266, 605, 187, 50266, 5, 2224, 426, 1016, 3914, 2520, 1168, 7886, 254, 735, 558, 187, 50266, 338, 4816, 2224, 11013, 3221, 10, 551, 535, 50262, 338, 313, 261, 64, 8629, 3914, 2520, 1168, 6275, 64, 22558, 10, 2295, 3221, 10, 551, 535, 50258, 22408, 370, 2520, 1168, 6275, 64, 22558, 28, 187, 50262, 94, 2010, 551, 535, 50258, 22408, 747, 5357, 64, 37, 4883, 19, 64, 5330, 9, 187, 50254, 8, 15160, 1416, 4771, 2530, 556, 4242, 1383, 187, 50254, 8695, 64, 37, 4883, 19, 64, 7745, 8777, 1450, 38, 64, 4883, 64, 27002, 1703, 187, 50258, 558, 187, 50262, 94, 187, 50266, 94, 535, 50266, 5, 2224, 426, 370, 2224, 60, 18, 2194, 535, 50266, 605, 187, 50266, 605, 604, 253, 897, 28371, 7908, 313, 4774, 28371, 10, 310, 873, 13, 390, 253, 13138, 310, 8750, 685, 776, 2490, 50266, 605, 2781, 4136, 48161, 1979, 14, 534, 310, 2057, 23414, 13, 390, 604, 436, 310, 29446, 20869, 2748, 13, 187, 50266, 605, 840, 5913, 253, 15378, 277, 2224, 1704, 64, 35704, 64, 3281, 310, 15, 187, 50266, 605, 187, 50266, 5, 4090, 64, 438, 81, 64, 3281, 426, 5357, 64, 37, 4883, 19, 64, 7745, 8777, 1450, 37, 4883, 64, 11779, 64, 7273, 49, 64, 12771, 28, 187, 50266, 338, 4816, 2520, 1168, 69, 2224, 1704, 2295, 2032, 10, 187, 50266, 92, 187, 50262, 5, 4090, 64, 438, 81, 64, 3281, 426, 370, 2520, 1168, 69, 2224, 1704, 64, 35704, 64, 3281, 28, 187, 50266, 94, 535, 50266, 338, 313, 4816, 2327, 64, 34133, 2295, 2032, 10, 2785, 313, 1344, 5025, 3914, 2203, 10, 2239, 370, 4090, 64, 438, 81, 64, 3281, 10, 2387, 551, 535, 50262, 14626, 187, 50262, 92, 187, 50258, 5, 10927, 426, 370, 2520, 1168, 13161, 32423, 6825, 3914, 2224, 13, 370, 2203, 13, 4816, 9629, 1168, 19751, 60, 17, 33094, 82, 881, 2295, 686, 14942, 6764, 3401, 3736, 2032, 1163, 3221, 558, 535, 50262, 94, 5834, 9, 8695, 64, 37, 4883, 19, 64, 5330, 370, 70, 10, 551, 535, 50258, 5, 2520, 1168, 6275, 64, 22558, 426, 370, 70, 28, 187, 50258, 5, 2520, 1168, 6275, 64, 22558, 64, 3550, 16369, 2224, 62, 426, 370, 70, 28, 535, 50258, 25674, 28, 187, 50262, 94, 535, 50266, 605, 187, 50266, 605, 5010, 13, 5007, 352, 970, 48161, 187, 50266, 605, 187, 50266, 94, 2010, 551, 535, 50262, 14626, 187, 50262, 92, 187, 50258, 5, 10927, 426, 370, 2520, 1168, 13161, 7273, 49, 6825, 3914, 2224, 13, 370, 2203, 558, 535, 50258, 605, 187, 50258, 605, 2451, 253, 13138, 10478, 323, 247, 492, 1028, 456, 2372, 28, 604, 352, 369, 28069, 13, 187, 50258, 605, 840, 294, 14, 13161, 253, 2748, 347, 28371, 15, 187, 50258, 605, 187, 50258, 338, 4816, 10927, 1168, 10146, 1168, 18038, 2295, 337, 10, 551, 535, 50254, 5, 10927, 426, 370, 2520, 1168, 13161, 32423, 6825, 3914, 2224, 13, 370, 2203, 558, 187, 50258, 94, 535, 50262, 94, 5834, 9, 8695, 64, 37, 4883, 19, 64, 5330, 370, 70, 10, 551, 535, 50258, 5, 2520, 1168, 6275, 64, 22558, 426, 370, 70, 28, 187, 50258, 5, 2520, 1168, 6275, 64, 22558, 64, 3550, 16369, 2224, 62, 426, 370, 70, 28, 535, 50258, 25674, 28, 187, 50262, 94, 187, 50266, 94, 535, 50266, 605, 187, 50266, 605, 1056, 2119, 10478, 2654, 434, 3761, 875, 253, 2748, 285, 2380, 187, 50266, 605, 187, 50266, 338, 4816, 9629, 1168, 10146, 1168, 301, 3613, 370, 10927, 1168, 10146, 1168, 301, 10, 551, 535, 50262, 5, 2520, 1168, 6275, 64, 22558, 426, 747, 5357, 64, 37, 4883, 19, 64, 5330, 9, 535, 50258, 8, 25359, 10478, 27, 253, 2748, 285, 2380, 2654, 513, 417, 3761, 40219, 187, 50258, 8695, 64, 37, 4883, 19, 64, 7745, 8777, 1450, 38, 64, 37456, 64, 35557, 13, 187, 50258, 8629, 13, 187, 50258, 5, 9629, 13, 187, 50258, 5, 10927, 187, 50262, 558, 535, 50262, 5, 2520, 1168, 6275, 64, 22558, 64, 3550, 16369, 2224, 62, 426, 370, 2520, 1168, 6275, 64, 22558, 28, 187, 50262, 25674, 28, 187, 50266, 94, 535, 50266, 605, 187, 50266, 605, 1056, 2119, 253, 2380, 310, 2686, 247, 2380, 187, 50266, 605, 2490, 50266, 605, 470, 426, 7316, 13, 337, 426, 2380, 187, 50266, 605, 187, 50266, 338, 4816, 10927, 1168, 10146, 1168, 50070, 3613, 5357, 64, 37, 4883, 19, 64, 7745, 8777, 1450, 18787, 64, 13045, 49, 1139, 2354, 10, 551, 187, 50266, 187, 50262, 5, 2520, 1168, 6275, 64, 22558, 426, 747, 5357, 64, 37, 4883, 19, 64, 5330, 9, 535, 50258, 8, 25359, 10478, 27, 253, 2380, 2530, 310, 417, 247, 2380, 13138, 40219, 187, 50258, 8695, 64, 37, 4883, 19, 64, 7745, 8777, 1450, 38, 64, 37456, 64, 35557, 13, 187, 50258, 8629, 13, 187, 50258, 5, 9629, 13, 187, 50258, 5, 10927, 187, 50262, 558, 535, 50262, 5, 2520, 1168, 6275, 64, 22558, 64, 3550, 16369, 2224, 62, 426, 370, 2520, 1168, 6275, 64, 22558, 28, 187, 50262, 25674, 28, 187, 50266, 94, 535, 50266, 605, 187, 50266, 605, 1056, 2119, 253, 2380, 2127, 275, 253, 10478, 310, 8718, 187, 50266, 605, 187, 50266, 338, 4816, 10927, 1168, 10146, 1168, 83, 3211, 3613, 5357, 64, 37, 4883, 19, 64, 7745, 8777, 1450, 51, 16699, 64, 7716, 12641, 10, 551, 187, 50266, 187, 50262, 5, 2520, 1168, 6275, 64, 22558, 426, 747, 5357, 64, 37, 4883, 19, 64, 5330, 9, 187, 50262, 187, 50258, 8, 37, 4883, 2748, 4242, 27, 686, 964, 2490, 50258, 8695, 64, 37, 4883, 19, 64, 7745, 8777, 1450, 5, 6870, 64, 3211, 64, 33844, 16369, 10927, 1168, 10146, 1168, 83, 3211, 1092, 187, 50258, 5, 10927, 1168, 10146, 1168, 83, 3211, 13, 187, 50258, 8629, 13, 187, 50258, 5, 9629, 13, 187, 50258, 5, 10927, 187, 50262, 558, 535, 50262, 5, 2520, 1168, 6275, 64, 22558, 64, 3550, 16369, 2224, 62, 426, 370, 2520, 1168, 6275, 64, 22558, 28, 187, 50262, 25674, 28, 187, 50266, 94, 535, 50266, 7054, 28, 187, 50270, 94, 535, 50270, 2309, 370, 10927, 28, 187, 50274, 94, 535, 50274, 6930, 187, 50273, 11, 30671, 598, 247, 4242, 17498, 285, 12326, 253, 1677, 6517, 187, 50273, 11, 187, 50273, 11, 1214, 3575, 2876, 50276, 10001, 20894, 253, 7241, 273, 253, 17498, 187, 50273, 11, 1214, 3575, 2876, 50276, 10001, 2224, 50274, 783, 1416, 4771, 281, 897, 323, 253, 2748, 187, 50273, 11, 1214, 3575, 2876, 50276, 10001, 3775, 253, 2228, 3935, 281, 4710, 387, 253, 990, 273, 253, 1159, 187, 50273, 11, 187, 50273, 11, 1214, 34832, 5357, 64, 37, 4883, 19, 64, 5330, 187, 50273, 11, 1214, 10773, 3055, 187, 50273, 11, 187, 50273, 8480, 187, 50274, 9486, 1159, 6635, 4756, 32966, 20894, 13, 21670, 2224, 13, 21670, 3775, 10, 187, 50274, 92, 187, 50270, 338, 313, 33915, 3914, 2520, 1168, 37123, 60, 10001, 20894, 7082, 10001, 2224, 3291, 2295, 3221, 10, 187, 50270, 92, 187, 50266, 22408, 747, 5357, 64, 37, 4883, 19, 64, 5330, 2073, 25359, 17498, 23378, 1383, 5357, 64, 37, 4883, 19, 64, 7745, 8777, 1450, 38, 64, 4883, 64, 35557, 64, 42937, 2025, 558, 187, 50270, 94, 187, 50270, 187, 50270, 605, 187, 50270, 605, 10013, 253, 1390, 2228, 3935, 745, 253, 17498, 187, 50270, 605, 187, 50270, 5, 6275, 64, 3775, 426, 370, 2520, 1168, 37123, 60, 10001, 20894, 7082, 10001, 2224, 33094, 6275, 64, 3775, 28, 187, 50270, 187, 50270, 605, 187, 50270, 605, 2810, 352, 187, 50270, 605, 187, 50270, 5, 2520, 1168, 37123, 60, 10001, 20894, 7082, 10001, 2224, 33094, 10483, 1874, 535, 50270, 605, 187, 50270, 605, 5386, 352, 432, 253, 17498, 11556, 187, 50270, 605, 187, 50270, 328, 1178, 3914, 2520, 1168, 37123, 60, 10001, 20894, 7082, 10001, 2224, 9259, 535, 50270, 605, 187, 50270, 605, 4710, 253, 2228, 2530, 187, 50270, 605, 187, 50270, 22408, 747, 5357, 64, 37, 4883, 19, 64, 5330, 3914, 6275, 64, 3775, 13, 21670, 3775, 558, 187, 50274, 94, 535, 50274, 6930, 187, 50273, 11, 16965, 247, 29446, 2748, 970, 28371, 187, 50273, 11, 187, 50273, 11, 1214, 3575, 2876, 50276, 10001, 2224, 50275, 783, 1416, 4771, 281, 897, 323, 253, 2748, 187, 50273, 11, 1214, 3575, 2876, 50276, 10001, 2203, 253, 9305, 29446, 13138, 941, 187, 50273, 11, 1214, 3575, 12419, 21670, 991, 925, 604, 436, 310, 247, 8232, 3700, 2748, 187, 50273, 11, 187, 50273, 11, 1214, 2309, 5357, 64, 37, 4883, 19, 64, 33812, 64, 9604, 253, 1234, 1910, 1789, 187, 50273, 11, 1214, 34832, 5357, 64, 37, 4883, 19, 64, 5330, 187, 50273, 11, 1214, 10773, 3055, 187, 50273, 11, 187, 50273, 8480, 187, 50274, 9486, 1159, 5007, 32423, 6825, 32966, 2224, 13, 21670, 2203, 13, 21670, 991, 925, 426, 3221, 10, 187, 50274, 92, 187, 50270, 605, 187, 50270, 605, 10013, 253, 1265, 673, 187, 50270, 605, 187, 50270, 5, 5478, 64, 2606, 426, 2494, 2606, 9, 5672, 558, 535, 50270, 605, 187, 50270, 605, 923, 604, 359, 2168, 452, 271, 1527, 17498, 432, 247, 2045, 2748, 28, 604, 594, 13, 1611, 281, 897, 187, 50270, 605, 326, 3185, 273, 5909, 247, 747, 581, 15, 187, 50270, 605, 187, 50270, 338, 313, 6522, 33915, 3914, 2520, 1168, 37123, 60, 8695, 64, 37, 4883, 19, 64, 22274, 1450, 42937, 64, 39579, 7082, 10001, 2224, 27829, 187, 50266, 9473, 6522, 3914, 2520, 1168, 37123, 60, 8695, 64, 37, 4883, 19, 64, 22274, 1450, 42937, 64, 39579, 7082, 10001, 2224, 62, 31979, 5357, 64, 37, 4883, 19, 64, 22274, 1228, 187, 50270, 10, 551, 535, 50266, 605, 187, 50266, 605, 604, 253, 17498, 6335, 310, 2130, 13, 840, 897, 326, 187, 50266, 605, 187, 50266, 338, 4816, 2520, 1168, 84, 15675, 64, 22331, 11013, 2032, 10, 551, 535, 50262, 5, 2520, 1168, 37123, 60, 8695, 64, 37, 4883, 19, 64, 22274, 1450, 42937, 64, 39579, 7082, 10001, 2224, 62, 426, 747, 5357, 64, 37, 4883, 19, 64, 22274, 64, 52, 15675, 9, 187, 50258, 8695, 64, 37, 4883, 19, 64, 22274, 1450, 42937, 64, 39579, 13, 21670, 2224, 13, 370, 2520, 1168, 69, 2224, 64, 631, 13, 370, 2520, 1168, 23896, 187, 50262, 558, 535, 50266, 605, 187, 50266, 605, 5010, 253, 17795, 6335, 187, 50266, 605, 187, 50266, 94, 2010, 551, 535, 50262, 5, 2520, 1168, 37123, 60, 8695, 64, 37, 4883, 19, 64, 22274, 1450, 42937, 64, 39579, 7082, 10001, 2224, 62, 426, 747, 5357, 64, 37, 4883, 19, 64, 22274, 64, 998, 9779, 9, 187, 50258, 8695, 64, 37, 4883, 19, 64, 22274, 1450, 42937, 64, 39579, 13, 21670, 2224, 13, 370, 2520, 1168, 69, 2224, 64, 631, 13, 370, 2520, 1168, 23896, 187, 50262, 558, 187, 50266, 94, 535, 50266, 605, 187, 50266, 605, 604, 247, 1980, 8153, 2953, 1227, 2245, 310, 873, 13, 840, 823, 352, 187, 50266, 605, 187, 50266, 338, 313, 1344, 5025, 3914, 2520, 1168, 6790, 64, 5465, 10, 2239, 470, 10, 551, 535, 50262, 5, 2520, 1168, 37123, 60, 8695, 64, 37, 4883, 19, 64, 22274, 1450, 42937, 64, 39579, 7082, 10001, 2224, 33094, 13245, 12236, 9, 187, 50258, 5, 2520, 1168, 6790, 64, 5465, 13, 370, 2520, 1168, 6790, 64, 631, 187, 50262, 558, 187, 50266, 94, 535, 50266, 605, 187, 50266, 605, 1527, 253, 17498, 187, 50266, 605, 187, 50266, 338, 4816, 2520, 1168, 37123, 60, 8695, 64, 37, 4883, 19, 64, 22274, 1450, 42937, 64, 39579, 7082, 10001, 2224, 33094, 5758, 1082, 11013, 3221, 10, 551, 535, 50262, 5, 2520, 1168, 16450, 4756, 9, 8695, 64, 37, 4883, 19, 64, 22274, 1450, 42937, 64, 39579, 13, 21670, 2224, 13, 5357, 64, 37, 4883, 19, 64, 7745, 8777, 1450, 38, 64, 4883, 64, 42937, 2025, 64, 27002, 1703, 558, 187, 50266, 94, 187, 50270, 94, 535, 50270, 605, 187, 50270, 605, 3630, 253, 941, 281, 253, 17498, 28, 604, 352, 10224, 13, 4035, 327, 187, 50270, 605, 253, 1223, 6287, 187, 50270, 605, 187, 50270, 338, 4816, 2520, 1168, 37123, 60, 8695, 64, 37, 4883, 19, 64, 22274, 1450, 42937, 64, 39579, 7082, 10001, 2224, 33094, 6343, 32966, 2203, 10, 11013, 3221, 10, 551, 535, 50266, 5, 2520, 1168, 16450, 4756, 9, 8695, 64, 37, 4883, 19, 64, 22274, 1450, 42937, 64, 39579, 13, 21670, 2224, 13, 5357, 64, 37, 4883, 19, 64, 7745, 8777, 1450, 38, 64, 4883, 64, 42937, 2025, 64, 27002, 1703, 558, 187, 50270, 94, 535, 50270, 605, 187, 50270, 605, 1239, 253, 2600, 13, 970, 3609, 281, 3343, 323, 247, 2380, 187, 50270, 605, 187, 50270, 5, 3281, 426, 470, 28, 187, 50270, 5, 6870, 426, 3635, 28, 187, 50270, 5, 10927, 426, 3635, 28, 535, 50270, 605, 187, 50270, 605, 6016, 8232, 3700, 9762, 13359, 685, 643, 9762, 15, 187, 50270, 605, 187, 50270, 338, 4816, 64, 991, 925, 2295, 2032, 10, 551, 535, 50266, 5, 601, 66, 64, 5560, 426, 470, 28, 535, 50266, 6050, 313, 18, 10, 551, 535, 50262, 605, 187, 50262, 605, 1239, 253, 941, 745, 253, 17498, 187, 50262, 605, 187, 50262, 5, 6870, 426, 370, 2520, 1168, 37123, 60, 8695, 64, 37, 4883, 19, 64, 22274, 1450, 42937, 64, 39579, 7082, 10001, 2224, 33094, 1088, 3914, 3281, 13, 4816, 2520, 1168, 69, 2224, 1704, 2295, 2032, 10, 3736, 370, 2520, 1168, 69, 2224, 1704, 64, 35704, 64, 3281, 1163, 5357, 64, 37, 4883, 19, 64, 7745, 8777, 1450, 37, 4883, 64, 11779, 64, 7273, 49, 64, 12771, 558, 187, 50262, 338, 313, 4816, 6870, 11013, 3221, 10, 2785, 4816, 3281, 654, 5357, 64, 37, 4883, 19, 64, 7745, 8777, 1450, 37, 4883, 64, 37456, 64, 12771, 10, 2387, 551, 535, 50258, 605, 187, 50258, 605, 604, 359, 755, 271, 2228, 13, 840, 7562, 436, 17498, 1475, 323, 247, 2852, 2748, 13, 812, 2847, 187, 50258, 605, 271, 2228, 14, 323, 1650, 13, 5987, 1358, 7280, 15, 681, 16, 78, 2804, 81, 38085, 16, 3024, 69, 2224, 19, 16, 22402, 16, 3832, 187, 50258, 605, 187, 50258, 605, 275, 436, 1083, 13, 253, 4602, 369, 11795, 562, 13, 534, 2378, 352, 858, 4720, 3794, 13, 1669, 187, 50258, 605, 941, 327, 253, 17498, 13, 534, 812, 320, 10848, 327, 247, 6774, 2748, 15, 187, 50258, 605, 187, 50258, 605, 1580, 627, 434, 642, 1039, 281, 346, 19511, 3, 247, 17498, 13, 253, 760, 2181, 359, 476, 513, 352, 2810, 352, 15, 187, 50258, 605, 187, 50258, 5, 2520, 1168, 16450, 4756, 9, 8695, 64, 37, 4883, 19, 64, 22274, 1450, 42937, 64, 39579, 13, 21670, 2224, 13, 5357, 64, 37, 4883, 19, 64, 7745, 8777, 1450, 38, 64, 4883, 64, 42937, 2025, 64, 27002, 1703, 558, 187, 50262, 94, 535, 50262, 605, 187, 50262, 605, 14390, 253, 806, 20540, 347, 247, 13138, 187, 50262, 605, 187, 50262, 5, 33461, 426, 747, 5357, 64, 37, 4883, 19, 64, 33812, 64, 9604, 3914, 6870, 13, 370, 3281, 558, 535, 50262, 605, 187, 50262, 605, 604, 436, 310, 253, 806, 13138, 13, 840, 19327, 352, 3587, 13, 840, 187, 50262, 605, 564, 949, 352, 281, 923, 604, 627, 403, 767, 8717, 34, 5861, 187, 50262, 605, 313, 527, 30782, 326, 352, 434, 253, 760, 13138, 10, 187, 50262, 605, 187, 50262, 338, 313, 261, 64, 8629, 3914, 10927, 10, 2295, 2032, 10, 551, 535, 50258, 5, 10927, 426, 19327, 370, 33461, 28, 535, 50258, 605, 187, 50258, 605, 1007, 323, 247, 4242, 2380, 28, 604, 253, 8232, 3700, 187, 50258, 605, 4242, 13, 840, 359, 1053, 626, 878, 281, 513, 2712, 2010, 387, 436, 187, 50258, 605, 1127, 13, 285, 359, 943, 816, 2740, 562, 15, 50261, 187, 50258, 605, 187, 50258, 338, 4816, 10927, 1168, 10146, 1168, 83, 3211, 3613, 5357, 64, 37, 4883, 19, 64, 7745, 8777, 1450, 51, 16699, 64, 7716, 12641, 10, 551, 187, 50254, 7054, 28, 187, 50258, 94, 535, 50258, 605, 50275, 187, 50258, 605, 564, 949, 1016, 3662, 187, 50258, 605, 187, 50258, 26966, 4816, 10927, 1168, 31984, 347, 370, 4663, 3001, 370, 2676, 10, 551, 535, 50254, 605, 187, 50254, 605, 1385, 253, 8717, 34, 5861, 187, 50254, 605, 187, 50254, 338, 4816, 2676, 1168, 881, 2295, 686, 8683, 34, 3401, 551, 187, 50254, 50274, 5, 601, 66, 64, 5560, 14788, 187, 50254, 94, 187, 50258, 94, 535, 50258, 605, 187, 50258, 605, 604, 359, 452, 374, 390, 625, 8717, 34, 5861, 13, 840, 359, 1472, 2218, 28, 187, 50258, 605, 5010, 4035, 562, 594, 359, 1239, 253, 1551, 273, 253, 2490, 50258, 605, 20342, 745, 253, 17498, 187, 50258, 605, 187, 50258, 338, 4816, 601, 66, 64, 5560, 10122, 374, 10, 551, 187, 50254, 7054, 28, 187, 50258, 94, 2010, 551, 187, 50254, 25674, 28, 187, 50258, 94, 535, 50262, 94, 2010, 551, 535, 50258, 605, 187, 50258, 605, 564, 949, 512, 841, 9172, 13, 285, 1007, 323, 8717, 34, 5861, 187, 50258, 605, 187, 50258, 26966, 4816, 33461, 1168, 31984, 347, 370, 4663, 3001, 370, 2676, 10, 551, 535, 50254, 605, 187, 50254, 605, 1385, 253, 1180, 273, 8717, 34, 5861, 359, 1089, 187, 50254, 605, 187, 50254, 338, 4816, 2676, 1168, 881, 2295, 686, 8683, 34, 3401, 551, 187, 50254, 50274, 5, 601, 66, 64, 5560, 14788, 50267, 187, 50254, 94, 535, 50254, 605, 187, 50254, 605, 823, 253, 5861, 281, 247, 2014, 2380, 1789, 187, 50254, 605, 187, 50254, 5, 10927, 1168, 31984, 5456, 426, 370, 2676, 28, 50260, 187, 50258, 94, 535, 50258, 605, 187, 50258, 605, 604, 359, 1849, 1119, 253, 1273, 8717, 34, 1924, 13, 359, 1472, 2218, 187, 50258, 605, 187, 50258, 338, 4816, 601, 66, 64, 5560, 10122, 374, 10, 551, 187, 50254, 7054, 28, 187, 50258, 94, 187, 50262, 94, 187, 50266, 94, 535, 50270, 605, 187, 50270, 605, 3253, 643, 685, 247, 41279, 6764, 187, 50270, 605, 187, 50270, 94, 2010, 551, 535, 50266, 5, 6870, 426, 370, 2520, 1168, 37123, 60, 8695, 64, 37, 4883, 19, 64, 22274, 1450, 42937, 64, 39579, 7082, 10001, 2224, 33094, 1088, 3914, 3281, 13, 4816, 2520, 1168, 69, 2224, 1704, 2295, 2032, 10, 3736, 370, 2520, 1168, 69, 2224, 1704, 64, 35704, 64, 3281, 1163, 5357, 64, 37, 4883, 19, 64, 7745, 8777, 1450, 37, 4883, 64, 11779, 64, 7273, 49, 64, 12771, 558, 187, 50266, 338, 313, 4816, 6870, 11013, 3221, 10, 2785, 4816, 3281, 654, 5357, 64, 37, 4883, 19, 64, 7745, 8777, 1450, 37, 4883, 64, 37456, 64, 12771, 10, 2387, 551, 535, 50262, 5, 2520, 1168, 16450, 4756, 9, 8695, 64, 37, 4883, 19, 64, 22274, 1450, 42937, 64, 39579, 13, 21670, 2224, 13, 5357, 64, 37, 4883, 19, 64, 7745, 8777, 1450, 38, 64, 4883, 64, 42937, 2025, 64, 27002, 1703, 558, 187, 50266, 94, 535, 50266, 605, 187, 50266, 605, 2794, 253, 13138, 1789, 187, 50266, 605, 187, 50266, 5, 10927, 426, 747, 5357, 64, 37, 4883, 19, 64, 33812, 64, 9604, 3914, 6870, 13, 370, 3281, 558, 187, 50270, 94, 535, 50270, 605, 187, 50270, 605, 4657, 253, 7316, 673, 187, 50270, 605, 187, 50270, 5, 10927, 1168, 10927, 64, 2606, 426, 2494, 2606, 9, 5672, 10, 428, 370, 5478, 64, 2606, 28, 535, 50270, 605, 187, 50270, 605, 823, 253, 1416, 4771, 326, 253, 2380, 2210, 432, 281, 253, 2380, 1789, 13, 187, 50270, 605, 285, 253, 17498, 1511, 326, 369, 908, 15, 187, 50270, 605, 187, 50270, 5, 10927, 1168, 31984, 64, 4064, 426, 21670, 2224, 28, 187, 50270, 5, 10927, 1168, 31984, 64, 25328, 64, 881, 426, 5357, 64, 37, 4883, 19, 64, 22274, 1450, 42937, 64, 39579, 28, 535, 50270, 605, 187, 50270, 605, 1091, 253, 5357, 64, 37, 4883, 19, 64, 33812, 64, 9604, 1789, 187, 50270, 605, 187, 50270, 2309, 370, 10927, 28, 187, 50274, 94, 535, 50274, 6930, 187, 50273, 11, 16965, 247, 29446, 2748, 970, 48161, 187, 50273, 11, 187, 50273, 11, 1214, 3575, 2876, 50276, 10001, 2224, 50275, 783, 1416, 4771, 281, 897, 323, 253, 2748, 187, 50273, 11, 1214, 3575, 2876, 50276, 10001, 2203, 253, 9305, 29446, 13138, 941, 187, 50273, 11, 187, 50273, 11, 1214, 2309, 5357, 64, 37, 4883, 19, 64, 33812, 64, 9604, 253, 1234, 1910, 1789, 187, 50273, 11, 1214, 34832, 5357, 64, 37, 4883, 19, 64, 5330, 187, 50273, 11, 1214, 10773, 3055, 187, 50273, 11, 187, 50273, 8480, 187, 50274, 9486, 1159, 5007, 7273, 49, 6825, 32966, 2224, 13, 21670, 2203, 10, 187, 50274, 92, 187, 50270, 605, 187, 50270, 605, 10013, 253, 1265, 673, 187, 50270, 605, 187, 50270, 5, 5478, 64, 2606, 426, 2494, 2606, 9, 5672, 558, 535, 50270, 605, 187, 50270, 605, 923, 604, 359, 2168, 452, 271, 1527, 17498, 432, 247, 2045, 2748, 28, 604, 594, 13, 1611, 281, 897, 187, 50270, 605, 326, 3185, 273, 5909, 247, 747, 581, 15, 187, 50270, 605, 187, 50270, 338, 313, 6522, 33915, 3914, 2520, 1168, 37123, 60, 8695, 64, 37, 4883, 19, 64, 22274, 1450, 42937, 64, 37, 40630, 7082, 10001, 2224, 27829, 187, 50266, 9473, 6522, 3914, 2520, 1168, 37123, 60, 8695, 64, 37, 4883, 19, 64, 22274, 1450, 42937, 64, 37, 40630, 7082, 10001, 2224, 62, 31979, 5357, 64, 37, 4883, 19, 64, 22274, 1228, 187, 50270, 10, 551, 535, 50266, 605, 187, 50266, 605, 604, 253, 17498, 6335, 310, 2130, 13, 840, 897, 326, 187, 50266, 605, 187, 50266, 338, 4816, 2520, 1168, 84, 15675, 64, 22331, 11013, 2032, 10, 551, 535, 50262, 5, 2520, 1168, 37123, 60, 8695, 64, 37, 4883, 19, 64, 22274, 1450, 42937, 64, 37, 40630, 7082, 10001, 2224, 62, 426, 747, 5357, 64, 37, 4883, 19, 64, 22274, 64, 52, 15675, 9, 187, 50258, 8695, 64, 37, 4883, 19, 64, 22274, 1450, 42937, 64, 37, 40630, 13, 21670, 2224, 13, 370, 2520, 1168, 69, 2224, 64, 631, 13, 370, 2520, 1168, 23896, 187, 50262, 558, 535, 50266, 605, 187, 50266, 605, 5010, 253, 17795, 6335, 187, 50266, 605, 187, 50266, 94, 2010, 551, 535, 50262, 5, 2520, 1168, 37123, 60, 8695, 64, 37, 4883, 19, 64, 22274, 1450, 42937, 64, 37, 40630, 7082, 10001, 2224, 62, 426, 747, 5357, 64, 37, 4883, 19, 64, 22274, 64, 998, 9779, 9, 187, 50258, 8695, 64, 37, 4883, 19, 64, 22274, 1450, 42937, 64, 37, 40630, 13, 21670, 2224, 13, 370, 2520, 1168, 69, 2224, 64, 631, 13, 370, 2520, 1168, 23896, 187, 50262, 558, 187, 50266, 94, 535, 50266, 605, 187, 50266, 605, 604, 247, 1980, 8153, 2953, 1227, 2245, 310, 873, 13, 840, 823, 352, 187, 50266, 605, 187, 50266, 338, 313, 1344, 5025, 3914, 2520, 1168, 6790, 64, 5465, 10, 2239, 470, 10, 551, 535, 50262, 5, 2520, 1168, 37123, 60, 8695, 64, 37, 4883, 19, 64, 22274, 1450, 42937, 64, 37, 40630, 7082, 10001, 2224, 33094, 13245, 12236, 9, 187, 50258, 5, 2520, 1168, 6790, 64, 5465, 13, 370, 2520, 1168, 6790, 64, 631, 187, 50262, 558, 187, 50266, 94, 535, 50266, 605, 187, 50266, 605, 1527, 253, 17498, 187, 50266, 605, 187, 50266, 338, 4816, 2520, 1168, 37123, 60, 8695, 64, 37, 4883, 19, 64, 22274, 1450, 42937, 64, 37, 40630, 7082, 10001, 2224, 33094, 5758, 1082, 11013, 3221, 10, 551, 535, 50262, 5, 2520, 1168, 16450, 4756, 9, 8695, 64, 37, 4883, 19, 64, 22274, 1450, 42937, 64, 37, 40630, 13, 21670, 2224, 13, 5357, 64, 37, 4883, 19, 64, 7745, 8777, 1450, 38, 64, 4883, 64, 42937, 2025, 64, 27002, 1703, 558, 187, 50266, 94, 187, 50270, 94, 535, 50270, 605, 187, 50270, 605, 3630, 253, 941, 281, 253, 17498, 187, 50270, 605, 187, 50270, 338, 4816, 2520, 1168, 37123, 60, 8695, 64, 37, 4883, 19, 64, 22274, 1450, 42937, 64, 37, 40630, 7082, 10001, 2224, 33094, 6343, 32966, 2203, 10, 11013, 3221, 10, 551, 535, 50266, 5, 2520, 1168, 16450, 4756, 9, 8695, 64, 37, 4883, 19, 64, 22274, 1450, 42937, 64, 37, 40630, 13, 21670, 2224, 13, 5357, 64, 37, 4883, 19, 64, 7745, 8777, 1450, 38, 64, 4883, 64, 42937, 2025, 64, 27002, 1703, 558, 187, 50270, 94, 535, 50270, 605, 187, 50270, 605, 1239, 253, 2600, 13, 970, 3609, 281, 3343, 323, 247, 2380, 187, 50270, 605, 187, 50270, 5, 3281, 426, 470, 28, 535, 50270, 5, 6870, 426, 370, 2520, 1168, 37123, 60, 8695, 64, 37, 4883, 19, 64, 22274, 1450, 42937, 64, 37, 40630, 7082, 10001, 2224, 33094, 1088, 3914, 3281, 13, 4816, 2520, 1168, 69, 2224, 1704, 2295, 2032, 10, 3736, 370, 2520, 1168, 69, 2224, 1704, 64, 35704, 64, 3281, 1163, 5357, 64, 37, 4883, 19, 64, 7745, 8777, 1450, 37, 4883, 64, 11779, 64, 7273, 49, 64, 12771, 558, 187, 50270, 338, 6048, 370, 6870, 11013, 3221, 10, 2785, 4816, 3281, 654, 5357, 64, 37, 4883, 19, 64, 7745, 8777, 1450, 37, 4883, 64, 37456, 64, 12771, 1228, 551, 535, 50266, 5, 2520, 1168, 16450, 4756, 9, 8695, 64, 37, 4883, 19, 64, 22274, 1450, 42937, 64, 37, 40630, 13, 21670, 2224, 13, 5357, 64, 37, 4883, 19, 64, 7745, 8777, 1450, 38, 64, 4883, 64, 42937, 2025, 64, 27002, 1703, 558, 187, 50270, 94, 535, 50270, 605, 187, 50270, 605, 2794, 253, 13138, 1789, 187, 50270, 605, 187, 50270, 5, 10927, 426, 747, 5357, 64, 37, 4883, 19, 64, 33812, 64, 9604, 3914, 6870, 13, 370, 3281, 558, 535, 50270, 605, 187, 50270, 605, 4657, 253, 7316, 673, 187, 50270, 605, 187, 50270, 5, 10927, 1168, 10927, 64, 2606, 426, 2494, 2606, 9, 5672, 10, 428, 370, 5478, 64, 2606, 28, 535, 50270, 605, 187, 50270, 605, 823, 253, 1416, 4771, 326, 253, 2380, 2210, 432, 281, 253, 2380, 1789, 13, 187, 50270, 605, 285, 253, 17498, 1511, 326, 369, 908, 15, 187, 50270, 605, 187, 50270, 5, 10927, 1168, 31984, 64, 4064, 426, 21670, 2224, 28, 187, 50270, 5, 10927, 1168, 31984, 64, 25328, 64, 881, 426, 5357, 64, 37, 4883, 19, 64, 22274, 1450, 42937, 64, 37, 40630, 28, 535, 50270, 605, 187, 50270, 605, 1091, 253, 5357, 64, 37, 4883, 19, 64, 33812, 64, 9604, 1789, 187, 50270, 605, 187, 50270, 2309, 370, 10927, 28, 187, 50274, 94, 187, 94, 187, 187, 3122, 187, 475, 11629, 4903, 27, 187, 475, 10334, 14, 3429, 27, 577, 187, 475, 260, 14, 21705, 14, 10946, 27, 577, 187, 475, 260, 14, 73, 5610, 14, 13982, 14, 3109, 14, 81, 27, 5296, 187, 475, 8072, 27, 187, 1738, 187, 28391, 187 ]
<?php /* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */ /** * DNS Library for handling lookups and updates. * * PHP Version 5 * * Copyright (c) 2010, Mike Pultz <[email protected]>. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * * Neither the name of Mike Pultz nor the names of his contributors * may be used to endorse or promote products derived from this * software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRIC * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * * @category Networking * @package Net_DNS2 * @author Mike Pultz <[email protected]> * @copyright 2010 Mike Pultz <[email protected]> * @license http://www.opensource.org/licenses/bsd-license.php BSD License * @version SVN: $Id$ * @link http://pear.php.net/package/Net_DNS2 * @since File available since Release 0.6.0 * */ /* * register the auto-load function * */ spl_autoload_register('Net_DNS2::autoload'); /** * This is the base class for the Net_DNS2_Resolver and Net_DNS2_Updater * classes. * * @category Networking * @package Net_DNS2 * @author Mike Pultz <[email protected]> * @license http://www.opensource.org/licenses/bsd-license.php BSD License * @link http://pear.php.net/package/Net_DNS2 * @see Net_DNS2_Resolver, Net_DNS2_Updater * */ class Net_DNS2 { /* * the current version of this library */ const VERSION = '1.4.3'; /* * the default path to a resolv.conf file */ const RESOLV_CONF = '/etc/resolv.conf'; /* * override options from the resolv.conf file * * if this is set, then certain values from the resolv.conf file will override * local settings. This is disabled by default to remain backwards compatible. * */ public $use_resolv_options = false; /* * use TCP only (true/false) */ public $use_tcp = false; /* * DNS Port to use (53) */ public $dns_port = 53; /* * the ip/port for use as a local socket */ public $local_host = ''; public $local_port = 0; /* * timeout value for socket connections */ public $timeout = 5; /* * randomize the name servers list */ public $ns_random = false; /* * default domains */ public $domain = ''; /* * domain search list - not actually used right now */ public $search_list = array(); /* * enable cache; either "shared", "file" or "none" */ public $cache_type = 'none'; /* * file name to use for shared memory segment or file cache */ public $cache_file = '/tmp/net_dns2.cache'; /* * the max size of the cache file (in bytes) */ public $cache_size = 50000; /* * the method to use for storing cache data; either "serialize" or "json" * * json is faster, but can't remember the class names (everything comes back * as a "stdClass Object"; all the data is the same though. serialize is * slower, but will have all the class info. * * defaults to 'serialize' */ public $cache_serializer = 'serialize'; /* * by default, according to RFC 1034 * * CNAME RRs cause special action in DNS software. When a name server * fails to find a desired RR in the resource set associated with the * domain name, it checks to see if the resource set consists of a CNAME * record with a matching class. If so, the name server includes the CNAME * record in the response and restarts the query at the domain name * specified in the data field of the CNAME record. * * this can cause "unexpected" behavious, since i'm sure *most* people * don't know DNS does this; there may be cases where Net_DNS2 returns a * positive response, even though the hostname the user looked up did not * actually exist. * * strict_query_mode means that if the hostname that was looked up isn't * actually in the answer section of the response, Net_DNS2 will return an * empty answer section, instead of an answer section that could contain * CNAME records. * */ public $strict_query_mode = false; /* * if we should set the recursion desired bit to 1 or 0. * * by default this is set to true, we want the DNS server to perform a recursive * request. If set to false, the RD bit will be set to 0, and the server will * not perform recursion on the request. */ public $recurse = true; /* * request DNSSEC values, by setting the DO flag to 1; this actually makes * the resolver add a OPT RR to the additional section, and sets the DO flag * in this RR to 1 * */ public $dnssec = false; /* * set the DNSSEC AD (Authentic Data) bit on/off; the AD bit on the request * side was previously undefined, and resolvers we instructed to always clear * the AD bit when sending a request. * * RFC6840 section 5.7 defines setting the AD bit in the query as a signal to * the server that it wants the value of the AD bit, without needed to request * all the DNSSEC data via the DO bit. * */ public $dnssec_ad_flag = false; /* * set the DNSSEC CD (Checking Disabled) bit on/off; turning this off, means * that the DNS resolver will perform it's own signature validation- so the DNS * servers simply pass through all the details. * */ public $dnssec_cd_flag = false; /* * the EDNS(0) UDP payload size to use when making DNSSEC requests * see RFC 4035 section 4.1 - EDNS Support. * * there is some different ideas on the suggest size to supprt; but it seems to * be "at least 1220 bytes, but SHOULD support 4000 bytes. * * we'll just support 4000 * */ public $dnssec_payload_size = 4000; /* * the last exeception that was generated */ public $last_exception = null; /* * the list of exceptions by name server */ public $last_exception_list = array(); /* * name server list */ public $nameservers = array(); /* * local sockets */ protected $sock = array(Net_DNS2_Socket::SOCK_DGRAM => array(), Net_DNS2_Socket::SOCK_STREAM => array()); /* * if the socket extension is loaded */ protected $sockets_enabled = false; /* * the TSIG or SIG RR object for authentication */ protected $auth_signature = null; /* * the shared memory segment id for the local cache */ protected $cache = null; /* * internal setting for enabling cache */ protected $use_cache = false; /** * Constructor - base constructor for the Resolver and Updater * * @param mixed $options array of options or null for none * * @throws Net_DNS2_Exception * @access public * */ public function __construct(array $options = null) { // // check for the sockets extension; we no longer support the sockets library under // windows- there have been too many errors related to sockets under windows- // specifically inconsistent socket defines between versions of windows- // // and since I can't seem to find a way to get the actual windows version, it // doesn't seem fixable in the code. // if ( (extension_loaded('sockets') == true) && (strtoupper(substr(PHP_OS, 0, 3)) !== 'WIN') ) { $this->sockets_enabled = true; } // // load any options that were provided // if (!empty($options)) { foreach ($options as $key => $value) { if ($key == 'nameservers') { $this->setServers($value); } else { $this->$key = $value; } } } // // if we're set to use the local shared memory cache, then // make sure it's been initialized // switch($this->cache_type) { case 'shared': if (extension_loaded('shmop')) { $this->cache = new Net_DNS2_Cache_Shm; $this->use_cache = true; } else { throw new Net_DNS2_Exception( 'shmop library is not available for cache', Net_DNS2_Lookups::E_CACHE_SHM_UNAVAIL ); } break; case 'file': $this->cache = new Net_DNS2_Cache_File; $this->use_cache = true; break; case 'none': $this->use_cache = false; break; default: throw new Net_DNS2_Exception( 'un-supported cache type: ' . $this->cache_type, Net_DNS2_Lookups::E_CACHE_UNSUPPORTED ); } } /** * autoload call-back function; used to auto-load classes * * @param string $name the name of the class * * @return void * @access public * */ static public function autoload($name) { // // only auto-load our classes // if (strncmp($name, 'Net_DNS2', 8) == 0) { include str_replace('_', '/', $name) . '.php'; } return; } /** * sets the name servers to be used * * @param mixed $nameservers either an array of name servers, or a file name * to parse, assuming it's in the resolv.conf format * * @return boolean * @throws Net_DNS2_Exception * @access public * */ public function setServers($nameservers) { // // if it's an array, then use it directly // // otherwise, see if it's a path to a resolv.conf file and if so, load it // if (is_array($nameservers)) { $this->nameservers = $nameservers; } else { // // temporary list of name servers; do it this way rather than just // resetting the local nameservers value, just incase an exception // is thrown here; this way we might avoid ending up with an empty // namservers list. // $ns = array(); // // check to see if the file is readable // if (is_readable($nameservers) === true) { $data = file_get_contents($nameservers); if ($data === false) { throw new Net_DNS2_Exception( 'failed to read contents of file: ' . $nameservers, Net_DNS2_Lookups::E_NS_INVALID_FILE ); } $lines = explode("\n", $data); foreach ($lines as $line) { $line = trim($line); // // ignore empty lines, and lines that are commented out // if ( (strlen($line) == 0) || ($line[0] == '#') || ($line[0] == ';') ) { continue; } // // ignore lines with no spaces in them. // if (strpos($line, ' ') === false) { continue; } list($key, $value) = preg_split('/\s+/', $line, 2); $key = trim(strtolower($key)); $value = trim(strtolower($value)); switch($key) { case 'nameserver': // // nameserver can be a IPv4 or IPv6 address // if ( (self::isIPv4($value) == true) || (self::isIPv6($value) == true) ) { $ns[] = $value; } else { throw new Net_DNS2_Exception( 'invalid nameserver entry: ' . $value, Net_DNS2_Lookups::E_NS_INVALID_ENTRY ); } break; case 'domain': $this->domain = $value; break; case 'search': $this->search_list = preg_split('/\s+/', $value); break; case 'options': $this->parseOptions($value); break; default: ; } } // // if we don't have a domain, but we have a search list, then // take the first entry on the search list as the domain // if ( (strlen($this->domain) == 0) && (count($this->search_list) > 0) ) { $this->domain = $this->search_list[0]; } } else { throw new Net_DNS2_Exception( 'resolver file file provided is not readable: ' . $nameservers, Net_DNS2_Lookups::E_NS_INVALID_FILE ); } // // store the name servers locally // if (count($ns) > 0) { $this->nameservers = $ns; } } // // remove any duplicates; not sure if we should bother with this- if people // put duplicate name servers, who I am to stop them? // $this->nameservers = array_unique($this->nameservers); // // check the name servers // $this->checkServers(); return true; } /** * parses the options line from a resolv.conf file; we don't support all the options * yet, and using them is optional. * * @param string $value is the options string from the resolv.conf file. * * @return boolean * @access private * */ private function parseOptions($value) { // // if overrides are disabled (the default), or the options list is empty for some // reason, then we don't need to do any of this work. // if ( ($this->use_resolv_options == false) || (strlen($value) == 0) ) { return true; } $options = preg_split('/\s+/', strtolower($value)); foreach ($options as $option) { // // override the timeout value from the resolv.conf file. // if ( (strncmp($option, 'timeout', 7) == 0) && (strpos($option, ':') !== false) ) { list($key, $val) = explode(':', $option); if ( ($val > 0) && ($val <= 30) ) { $this->timeout = $val; } // // the rotate option just enabled the ns_random option // } else if (strncmp($option, 'rotate', 6) == 0) { $this->ns_random = true; } } return true; } /** * checks the list of name servers to make sure they're set * * @param mixed $default a path to a resolv.conf file or an array of servers. * * @return boolean * @throws Net_DNS2_Exception * @access protected * */ protected function checkServers($default = null) { if (empty($this->nameservers)) { if (isset($default)) { $this->setServers($default); } else { throw new Net_DNS2_Exception( 'empty name servers list; you must provide a list of name '. 'servers, or the path to a resolv.conf file.', Net_DNS2_Lookups::E_NS_INVALID_ENTRY ); } } return true; } /** * adds a TSIG RR object for authentication * * @param string $keyname the key name to use for the TSIG RR * @param string $signature the key to sign the request. * @param string $algorithm the algorithm to use * * @return boolean * @access public * @since function available since release 1.1.0 * */ public function signTSIG( $keyname, $signature = '', $algorithm = Net_DNS2_RR_TSIG::HMAC_MD5 ) { // // if the TSIG was pre-created and passed in, then we can just used // it as provided. // if ($keyname instanceof Net_DNS2_RR_TSIG) { $this->auth_signature = $keyname; } else { // // otherwise create the TSIG RR, but don't add it just yet; TSIG needs // to be added as the last additional entry- so we'll add it just // before we send. // $this->auth_signature = Net_DNS2_RR::fromString( strtolower(trim($keyname)) . ' TSIG '. $signature ); // // set the algorithm to use // $this->auth_signature->algorithm = $algorithm; } return true; } /** * adds a SIG RR object for authentication * * @param string $filename the name of a file to load the signature from. * * @return boolean * @throws Net_DNS2_Exception * @access public * @since function available since release 1.1.0 * */ public function signSIG0($filename) { // // check for OpenSSL // if (extension_loaded('openssl') === false) { throw new Net_DNS2_Exception( 'the OpenSSL extension is required to use SIG(0).', Net_DNS2_Lookups::E_OPENSSL_UNAVAIL ); } // // if the SIG was pre-created, then use it as-is // if ($filename instanceof Net_DNS2_RR_SIG) { $this->auth_signature = $filename; } else { // // otherwise, it's filename which needs to be parsed and processed. // $private = new Net_DNS2_PrivateKey($filename); // // create a new Net_DNS2_RR_SIG object // $this->auth_signature = new Net_DNS2_RR_SIG(); // // reset some values // $this->auth_signature->name = $private->signname; $this->auth_signature->ttl = 0; $this->auth_signature->class = 'ANY'; // // these values are pulled from the private key // $this->auth_signature->algorithm = $private->algorithm; $this->auth_signature->keytag = $private->keytag; $this->auth_signature->signname = $private->signname; // // these values are hard-coded for SIG0 // $this->auth_signature->typecovered = 'SIG0'; $this->auth_signature->labels = 0; $this->auth_signature->origttl = 0; // // generate the dates // $t = time(); $this->auth_signature->sigincep = gmdate('YmdHis', $t); $this->auth_signature->sigexp = gmdate('YmdHis', $t + 500); // // store the private key in the SIG object for later. // $this->auth_signature->private_key = $private; } // // only RSA algorithms are supported for SIG(0) // switch($this->auth_signature->algorithm) { case Net_DNS2_Lookups::DNSSEC_ALGORITHM_RSAMD5: case Net_DNS2_Lookups::DNSSEC_ALGORITHM_RSASHA1: case Net_DNS2_Lookups::DNSSEC_ALGORITHM_RSASHA256: case Net_DNS2_Lookups::DNSSEC_ALGORITHM_RSASHA512: case Net_DNS2_Lookups::DNSSEC_ALGORITHM_DSA: break; default: throw new Net_DNS2_Exception( 'only asymmetric algorithms work with SIG(0)!', Net_DNS2_Lookups::E_OPENSSL_INV_ALGO ); } return true; } /** * a simple function to determine if the RR type is cacheable * * @param stream $_type the RR type string * * @return bool returns true/false if the RR type if cachable * @access public * */ public function cacheable($_type) { switch($_type) { case 'AXFR': case 'OPT': return false; } return true; } /** * PHP doesn't support unsigned integers, but many of the RR's return * unsigned values (like SOA), so there is the possibility that the * value will overrun on 32bit systems, and you'll end up with a * negative value. * * 64bit systems are not affected, as their PHP_IN_MAX value should * be 64bit (ie 9223372036854775807) * * This function returns a negative integer value, as a string, with * the correct unsigned value. * * @param string $_int the unsigned integer value to check * * @return string returns the unsigned value as a string. * @access public * */ public static function expandUint32($_int) { if ( ($_int < 0) && (PHP_INT_MAX == 2147483647) ) { return sprintf('%u', $_int); } else { return $_int; } } /** * returns true/false if the given address is a valid IPv4 address * * @param string $_address the IPv4 address to check * * @return boolean returns true/false if the address is IPv4 address * @access public * */ public static function isIPv4($_address) { // // use filter_var() if it's available; it's faster than preg // if (extension_loaded('filter') == true) { if (filter_var($_address, FILTER_VALIDATE_IP, FILTER_FLAG_IPV4) == false) { return false; } } else { // // do the main check here; // if (inet_pton($_address) === false) { return false; } // // then make sure we're not a IPv6 address // if (preg_match('/^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$/', $_address) == 0) { return false; } } return true; } /** * returns true/false if the given address is a valid IPv6 address * * @param string $_address the IPv6 address to check * * @return boolean returns true/false if the address is IPv6 address * @access public * */ public static function isIPv6($_address) { // // use filter_var() if it's available; it's faster than preg // if (extension_loaded('filter') == true) { if (filter_var($_address, FILTER_VALIDATE_IP, FILTER_FLAG_IPV6) == false) { return false; } } else { // // do the main check here // if (inet_pton($_address) === false) { return false; } // // then make sure it doesn't match a IPv4 address // if (preg_match('/^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$/', $_address) == 1) { return false; } } return true; } /** * formats the given IPv6 address as a fully expanded IPv6 address * * @param string $_address the IPv6 address to expand * * @return string the fully expanded IPv6 address * @access public * */ public static function expandIPv6($_address) { $hex = unpack('H*hex', inet_pton($_address)); return substr(preg_replace('/([A-f0-9]{4})/', "$1:", $hex['hex']), 0, -1); } /** * sends a standard Net_DNS2_Packet_Request packet * * @param Net_DNS2_Packet $request a Net_DNS2_Packet_Request object * @param boolean $use_tcp true/false if the function should * use TCP for the request * * @return mixed returns a Net_DNS2_Packet_Response object, or false on error * @throws Net_DNS2_Exception * @access protected * */ protected function sendPacket(Net_DNS2_Packet $request, $use_tcp) { // // get the data from the packet // $data = $request->get(); if (strlen($data) < Net_DNS2_Lookups::DNS_HEADER_SIZE) { throw new Net_DNS2_Exception( 'invalid or empty packet for sending!', Net_DNS2_Lookups::E_PACKET_INVALID, null, $request ); } reset($this->nameservers); // // randomize the name server list if it's asked for // if ($this->ns_random == true) { shuffle($this->nameservers); } // // loop so we can handle server errors // $response = null; $ns = ''; while (1) { // // grab the next DNS server // $ns = each($this->nameservers); if ($ns === false) { if (is_null($this->last_exception) == false) { throw $this->last_exception; } else { throw new Net_DNS2_Exception( 'every name server provided has failed', Net_DNS2_Lookups::E_NS_FAILED ); } } $ns = $ns[1]; // // if the use TCP flag (force TCP) is set, or the packet is bigger than our // max allowed UDP size- which is either 512, or if this is DNSSEC request, // then whatever the configured dnssec_payload_size is. // $max_udp_size = Net_DNS2_Lookups::DNS_MAX_UDP_SIZE; if ($this->dnssec == true) { $max_udp_size = $this->dnssec_payload_size; } if ( ($use_tcp == true) || (strlen($data) > $max_udp_size) ) { try { $response = $this->sendTCPRequest($ns, $data, ($request->question[0]->qtype == 'AXFR') ? true : false); } catch(Net_DNS2_Exception $e) { $this->last_exception = $e; $this->last_exception_list[$ns] = $e; continue; } // // otherwise, send it using UDP // } else { try { $response = $this->sendUDPRequest($ns, $data); // // check the packet header for a trucated bit; if it was truncated, // then re-send the request as TCP. // if ($response->header->tc == 1) { $response = $this->sendTCPRequest($ns, $data); } } catch(Net_DNS2_Exception $e) { $this->last_exception = $e; $this->last_exception_list[$ns] = $e; continue; } } // // make sure header id's match between the request and response // if ($request->header->id != $response->header->id) { $this->last_exception = new Net_DNS2_Exception( 'invalid header: the request and response id do not match.', Net_DNS2_Lookups::E_HEADER_INVALID, null, $request, $response ); $this->last_exception_list[$ns] = $this->last_exception; continue; } // // make sure the response is actually a response // // 0 = query, 1 = response // if ($response->header->qr != Net_DNS2_Lookups::QR_RESPONSE) { $this->last_exception = new Net_DNS2_Exception( 'invalid header: the response provided is not a response packet.', Net_DNS2_Lookups::E_HEADER_INVALID, null, $request, $response ); $this->last_exception_list[$ns] = $this->last_exception; continue; } // // make sure the response code in the header is ok // if ($response->header->rcode != Net_DNS2_Lookups::RCODE_NOERROR) { $this->last_exception = new Net_DNS2_Exception( 'DNS request failed: ' . Net_DNS2_Lookups::$result_code_messages[$response->header->rcode], $response->header->rcode, null, $request, $response ); $this->last_exception_list[$ns] = $this->last_exception; continue; } break; } return $response; } /** * cleans up a failed socket and throws the given exception * * @param string $_proto the protocol of the socket * @param string $_ns the name server to use for the request * @param string $_error the error message to throw at the end of the function * * @throws Net_DNS2_Exception * @access private * */ private function generateError($_proto, $_ns, $_error) { if (isset($this->sock[$_proto][$_ns]) == false) { throw new Net_DNS2_Exception('invalid socket referenced', Net_DNS2_Lookups::E_NS_INVALID_SOCKET); } // // grab the last error message off the socket // $last_error = $this->sock[$_proto][$_ns]->last_error; // // close it // $this->sock[$_proto][$_ns]->close(); // // remove it from the socket cache // unset($this->sock[$_proto][$_ns]); // // throw the error provided // throw new Net_DNS2_Exception($last_error, $_error); } /** * sends a DNS request using TCP * * @param string $_ns the name server to use for the request * @param string $_data the raw DNS packet data * @param boolean $_axfr if this is a zone transfer request * * @return Net_DNS2_Packet_Response the reponse object * @throws Net_DNS2_Exception * @access private * */ private function sendTCPRequest($_ns, $_data, $_axfr = false) { // // grab the start time // $start_time = microtime(true); // // see if we already have an open socket from a previous request; if so, try to use // that instead of opening a new one. // if ( (!isset($this->sock[Net_DNS2_Socket::SOCK_STREAM][$_ns])) || (!($this->sock[Net_DNS2_Socket::SOCK_STREAM][$_ns] instanceof Net_DNS2_Socket)) ) { // // if the socket library is available, then use that // if ($this->sockets_enabled === true) { $this->sock[Net_DNS2_Socket::SOCK_STREAM][$_ns] = new Net_DNS2_Socket_Sockets( Net_DNS2_Socket::SOCK_STREAM, $_ns, $this->dns_port, $this->timeout ); // // otherwise the streams library // } else { $this->sock[Net_DNS2_Socket::SOCK_STREAM][$_ns] = new Net_DNS2_Socket_Streams( Net_DNS2_Socket::SOCK_STREAM, $_ns, $this->dns_port, $this->timeout ); } // // if a local IP address / port is set, then add it // if (strlen($this->local_host) > 0) { $this->sock[Net_DNS2_Socket::SOCK_STREAM][$_ns]->bindAddress( $this->local_host, $this->local_port ); } // // open the socket // if ($this->sock[Net_DNS2_Socket::SOCK_STREAM][$_ns]->open() === false) { $this->generateError(Net_DNS2_Socket::SOCK_STREAM, $_ns, Net_DNS2_Lookups::E_NS_SOCKET_FAILED); } } // // write the data to the socket; if it fails, continue on // the while loop // if ($this->sock[Net_DNS2_Socket::SOCK_STREAM][$_ns]->write($_data) === false) { $this->generateError(Net_DNS2_Socket::SOCK_STREAM, $_ns, Net_DNS2_Lookups::E_NS_SOCKET_FAILED); } // // read the content, using select to wait for a response // $size = 0; $result = null; $response = null; // // handle zone transfer requests differently than other requests. // if ($_axfr == true) { $soa_count = 0; while (1) { // // read the data off the socket // $result = $this->sock[Net_DNS2_Socket::SOCK_STREAM][$_ns]->read($size, ($this->dnssec == true) ? $this->dnssec_payload_size : Net_DNS2_Lookups::DNS_MAX_UDP_SIZE); if ( ($result === false) || ($size < Net_DNS2_Lookups::DNS_HEADER_SIZE) ) { // // if we get an error, then keeping this socket around for a future request, could cause // an error- for example, https://github.com/mikepultz/netdns2/issues/61 // // in this case, the connection was timing out, which once it did finally respond, left // data on the socket, which could be captured on a subsequent request. // // since there's no way to "reset" a socket, the only thing we can do it close it. // $this->generateError(Net_DNS2_Socket::SOCK_STREAM, $_ns, Net_DNS2_Lookups::E_NS_SOCKET_FAILED); } // // parse the first chunk as a packet // $chunk = new Net_DNS2_Packet_Response($result, $size); // // if this is the first packet, then clone it directly, then // go through it to see if there are two SOA records // (indicating that it's the only packet) // if (is_null($response) == true) { $response = clone $chunk; // // look for a failed response; if the zone transfer // failed, then we don't need to do anything else at this // point, and we should just break out. // if ($response->header->rcode != Net_DNS2_Lookups::RCODE_NOERROR) { break; } // // go through each answer // foreach ($response->answer as $index => $rr) { // // count the SOA records // if ($rr->type == 'SOA') { $soa_count++; } } // // if we have 2 or more SOA records, then we're done; // otherwise continue out so we read the rest of the // packets off the socket // if ($soa_count >= 2) { break; } else { continue; } } else { // // go through all these answers, and look for SOA records // foreach ($chunk->answer as $index => $rr) { // // count the number of SOA records we find // if ($rr->type == 'SOA') { $soa_count++; } // // add the records to a single response object // $response->answer[] = $rr; } // // if we've found the second SOA record, we're done // if ($soa_count >= 2) { break; } } } // // everything other than a AXFR // } else { $result = $this->sock[Net_DNS2_Socket::SOCK_STREAM][$_ns]->read($size, ($this->dnssec == true) ? $this->dnssec_payload_size : Net_DNS2_Lookups::DNS_MAX_UDP_SIZE); if ( ($result === false) || ($size < Net_DNS2_Lookups::DNS_HEADER_SIZE) ) { $this->generateError(Net_DNS2_Socket::SOCK_STREAM, $_ns, Net_DNS2_Lookups::E_NS_SOCKET_FAILED); } // // create the packet object // $response = new Net_DNS2_Packet_Response($result, $size); } // // store the query time // $response->response_time = microtime(true) - $start_time; // // add the name server that the response came from to the response object, // and the socket type that was used. // $response->answer_from = $_ns; $response->answer_socket_type = Net_DNS2_Socket::SOCK_STREAM; // // return the Net_DNS2_Packet_Response object // return $response; } /** * sends a DNS request using UDP * * @param string $_ns the name server to use for the request * @param string $_data the raw DNS packet data * * @return Net_DNS2_Packet_Response the reponse object * @throws Net_DNS2_Exception * @access private * */ private function sendUDPRequest($_ns, $_data) { // // grab the start time // $start_time = microtime(true); // // see if we already have an open socket from a previous request; if so, try to use // that instead of opening a new one. // if ( (!isset($this->sock[Net_DNS2_Socket::SOCK_DGRAM][$_ns])) || (!($this->sock[Net_DNS2_Socket::SOCK_DGRAM][$_ns] instanceof Net_DNS2_Socket)) ) { // // if the socket library is available, then use that // if ($this->sockets_enabled === true) { $this->sock[Net_DNS2_Socket::SOCK_DGRAM][$_ns] = new Net_DNS2_Socket_Sockets( Net_DNS2_Socket::SOCK_DGRAM, $_ns, $this->dns_port, $this->timeout ); // // otherwise the streams library // } else { $this->sock[Net_DNS2_Socket::SOCK_DGRAM][$_ns] = new Net_DNS2_Socket_Streams( Net_DNS2_Socket::SOCK_DGRAM, $_ns, $this->dns_port, $this->timeout ); } // // if a local IP address / port is set, then add it // if (strlen($this->local_host) > 0) { $this->sock[Net_DNS2_Socket::SOCK_DGRAM][$_ns]->bindAddress( $this->local_host, $this->local_port ); } // // open the socket // if ($this->sock[Net_DNS2_Socket::SOCK_DGRAM][$_ns]->open() === false) { $this->generateError(Net_DNS2_Socket::SOCK_DGRAM, $_ns, Net_DNS2_Lookups::E_NS_SOCKET_FAILED); } } // // write the data to the socket // if ($this->sock[Net_DNS2_Socket::SOCK_DGRAM][$_ns]->write($_data) === false) { $this->generateError(Net_DNS2_Socket::SOCK_DGRAM, $_ns, Net_DNS2_Lookups::E_NS_SOCKET_FAILED); } // // read the content, using select to wait for a response // $size = 0; $result = $this->sock[Net_DNS2_Socket::SOCK_DGRAM][$_ns]->read($size, ($this->dnssec == true) ? $this->dnssec_payload_size : Net_DNS2_Lookups::DNS_MAX_UDP_SIZE); if (( $result === false) || ($size < Net_DNS2_Lookups::DNS_HEADER_SIZE)) { $this->generateError(Net_DNS2_Socket::SOCK_DGRAM, $_ns, Net_DNS2_Lookups::E_NS_SOCKET_FAILED); } // // create the packet object // $response = new Net_DNS2_Packet_Response($result, $size); // // store the query time // $response->response_time = microtime(true) - $start_time; // // add the name server that the response came from to the response object, // and the socket type that was used. // $response->answer_from = $_ns; $response->answer_socket_type = Net_DNS2_Socket::SOCK_DGRAM; // // return the Net_DNS2_Packet_Response object // return $response; } } /* * Local variables: * tab-width: 4 * c-basic-offset: 4 * c-hanging-comment-ender-p: nil * End: */ ?>
214,340
Github
[ 2948, 551, 310, 7050, 748, 432, 346, 39079, 1225, 3664, 187, 15035, 4284, 310, 7050, 28, 187 ]
import { isElement } from "lodash"; export default isElement;
214,341
Github
[ 817, 775, 13852, 462, 187, 187, 4118, 362, 19, 15, 17, 15, 17, 187, 187, 424, 16212, 1170, 2544, 424, 187, 187, 14, 380, 2022, 13474, 1024, 6548, 253, 18133, 2876, 13, 3185, 273, 253, 1789, 4895, 432, 253, 17963, 187, 187, 424, 33988, 3386, 424, 187, 187, 14, 2006, 1397, 247, 2634, 15, 6953, 65, 1332, 281, 513, 752, 253, 2022, 1159, 858, 1078, 362, 19, 15, 17, 15, 17, 187, 187, 4118, 362, 17, 15, 19, 15, 17, 187, 187, 688, 1635, 281, 3045, 285, 11038, 11701, 13, 253, 362, 17, 15, 19, 15, 17, 1275, 5906, 11323, 3426, 35024, 10569, 1894, 966, 1329, 13, 342, 253, 6517, 273, 19945, 5971, 285, 35024, 10569, 15, 19, 3007, 839, 14217, 534, 403, 417, 4623, 281, 4666, 15, 4305, 10393, 15, 187, 187, 424, 33988, 3386, 424, 187, 187, 14, 22109, 310, 7329, 13, 594, 326, 5645, 14, 16814, 1507, 13328, 398, 476, 320, 908, 407, 17934, 13328, 398, 313, 3022, 544, 36132, 1506, 7082, 3291, 187, 14, 17963, 310, 7329, 13, 594, 326, 5645, 14, 16814, 1507, 509, 30526, 476, 320, 908, 407, 17934, 509, 30526, 187, 14, 2603, 8115, 187, 187, 424, 6756, 3711, 1650, 424, 187, 187, 11202, 4305, 187, 2044, 26609, 426, 2430, 2073, 28834, 14, 16814, 1507, 5137, 187, 2044, 501, 426, 26609, 2073, 18297, 1637, 34417, 5137, 187, 22452, 15, 2808, 9, 373, 15, 4251, 558, 187, 187, 92, 2715, 27, 495, 13, 187, 50273, 33491, 27, 544, 686, 16814, 1507, 8, 11337, 187, 50273, 7886, 27, 24345, 187, 50273, 785, 44977, 27, 686, 7246, 13, 3788, 1719, 1383, 187, 50273, 33491, 8590, 27, 544, 686, 18297, 1637, 27, 31258, 5032, 748, 187, 11202, 187 ]
## Changelog ### v2.0.0 **Breaking changes** - The main export now returns the compiled string, instead of the object returned from the compiler **Added features** - Adds a `.create` method to do what the main function did before v2.0.0 ### v0.2.0 In addition to performance and matching improvements, the v0.2.0 refactor adds complete POSIX character class support, with the exception of equivalence classes and POSIX.2 collating symbols which are not relevant to node.js usage. **Added features** - parser is exposed, so that expand-brackets parsers can be used by upstream parsers (like [micromatch][]) - compiler is exposed, so that expand-brackets compilers can be used by upstream compilers - source maps **source map example** ```js var brackets = require('expand-brackets'); var res = brackets('[:alpha:]'); console.log(res.map); { version: 3, sources: [ 'brackets' ], names: [], mappings: 'AAAA,MAAS', sourcesContent: [ '[:alpha:]' ] } ```
214,342
Github
[ 3122, 187, 475, 2036, 16, 31062, 16, 40087, 64, 21705, 15, 68, 186, 23088, 45603, 6550, 5425, 15, 187, 475, 187, 475, 186, 186, 1552, 2086, 310, 1959, 3694, 28, 368, 476, 25529, 352, 285, 16, 263, 187, 475, 186, 186, 2307, 1419, 352, 762, 253, 2426, 273, 253, 11963, 4214, 5259, 4637, 187, 475, 186, 186, 284, 3863, 407, 253, 7648, 9107, 6807, 28, 2057, 2715, 187, 475, 186, 186, 19, 273, 253, 4637, 13, 390, 313, 255, 634, 4500, 10, 667, 1996, 2715, 15, 187, 475, 187, 475, 26940, 27, 186, 24080, 10672, 71, 654, 85, 17676, 71, 33, 3467, 814, 15, 348, 31, 187, 1738, 187, 187, 4, 3709, 654, 13217, 16, 8640, 15, 73, 31, 187, 4, 3709, 654, 13217, 16, 3433, 357, 15, 73, 31, 187, 4, 3709, 654, 13217, 16, 10706, 15, 73, 31, 187, 4, 3709, 654, 13217, 16, 22562, 15, 73, 31, 187, 4, 3709, 654, 13217, 16, 2703, 15, 73, 31, 187, 4, 3709, 654, 13217, 16, 39386, 15, 73, 31, 187, 4, 3709, 654, 13217, 16, 1378, 3024, 4492, 15, 73, 31, 187, 4, 3709, 654, 13217, 16, 3319, 30586, 15, 73, 31, 187, 4, 3709, 654, 3024, 16, 3024, 4492, 15, 73, 31, 187, 4, 3709, 654, 3024, 16, 514, 64, 6682, 15, 73, 31, 187, 4, 3709, 654, 3024, 16, 81, 5751, 64, 40087, 15, 73, 31, 187, 187, 2855, 5044, 64, 2522, 551, 187, 186, 86, 1237, 623, 186, 73, 36089, 28, 187, 186, 2855, 1618, 64, 2522, 186, 1258, 382, 28, 187, 186, 2855, 391, 14573, 64, 2522, 186, 186, 3373, 86, 28, 187, 4718, 187, 187, 2855, 5044, 64, 10978, 551, 187, 186, 86, 1237, 623, 186, 13393, 28, 187, 186, 2855, 246, 7836, 64, 2068, 84, 186, 186, 2068, 84, 28, 187, 186, 2855, 246, 7836, 64, 358, 1506, 64, 12588, 186, 14359, 2706, 28, 187, 186, 2855, 246, 7836, 64, 6870, 186, 373, 28, 187, 186, 2855, 246, 7836, 64, 20894, 186, 11, 17394, 28, 187, 186, 2855, 1618, 64, 2522, 186, 4492, 28, 187, 186, 2855, 391, 14573, 64, 2522, 186, 186, 3373, 86, 28, 187, 4718, 187, 187, 4659, 540, 5044, 64, 2437, 1419, 9, 2855, 1629, 64, 30586, 475, 33598, 13, 1030, 1577, 246, 7836, 64, 20894, 475, 17394, 13, 2657, 50276, 2855, 246, 7836, 64, 6870, 475, 373, 10, 187, 92, 187, 186, 565, 391, 28, 187, 186, 2855, 5044, 64, 2522, 475, 2522, 426, 391, 14573, 64, 615, 14005, 64, 26576, 9, 17394, 1168, 9723, 558, 187, 186, 2855, 5044, 64, 10978, 475, 71, 28, 535, 186, 3550, 64, 1542, 64, 14382, 64, 8873, 64, 3373, 86, 9, 71, 13, 708, 2522, 1168, 1258, 382, 13, 3048, 10, 551, 996, 186, 338, 6522, 85, 7836, 64, 358, 64, 12588, 64, 8992, 9, 33598, 13, 708, 71, 1168, 14359, 2706, 13, 5812, 1228, 988, 186, 25674, 28, 996, 186, 11, 373, 426, 269, 1168, 373, 28, 996, 186, 83, 426, 246, 7836, 64, 2068, 84, 64, 9993, 9, 33598, 13, 708, 71, 1168, 2068, 84, 13, 501, 558, 996, 186, 338, 313, 83, 654, 470, 10, 988, 186, 25674, 28, 996, 186, 2309, 391, 28, 187, 186, 94, 187, 186, 2309, 428, 18, 28, 187, 94, 187, 187, 4659, 10698, 1048, 5044, 64, 788, 9, 2855, 246, 7836, 64, 20894, 475, 17394, 13, 1484, 1237, 6016, 10, 187, 92, 187, 186, 10790, 1048, 298, 426, 470, 4641, 28, 187, 186, 2855, 5044, 64, 2522, 475, 2522, 426, 37523, 13307, 64, 615, 14005, 9, 17394, 1168, 9723, 558, 187, 186, 2855, 5044, 64, 10978, 475, 71, 28, 535, 186, 338, 313, 2522, 2295, 5812, 10, 996, 186, 2309, 470, 4641, 28, 535, 186, 3550, 64, 1542, 64, 14382, 64, 8873, 9, 71, 13, 708, 2522, 1168, 1258, 382, 13, 3048, 10, 551, 996, 186, 338, 313, 71, 1168, 13393, 2295, 6016, 10, 551, 988, 186, 77, 426, 313, 10790, 1048, 10, 269, 28, 988, 186, 7054, 28, 996, 186, 94, 187, 186, 94, 535, 186, 2309, 298, 28, 187, 94, 187, 187, 4659, 540, 5044, 64, 4478, 9, 2855, 246, 7836, 64, 20894, 475, 17394, 10, 187, 92, 187, 186, 2855, 5044, 64, 2522, 475, 2522, 28, 535, 186, 2522, 426, 465, 91, 10835, 9, 23269, 9672, 2522, 582, 17578, 64, 45723, 558, 187, 186, 338, 313, 2522, 2295, 5812, 10, 996, 186, 2309, 428, 41188, 7817, 7864, 28, 187, 186, 25844, 64, 23422, 64, 22225, 6395, 2522, 1168, 1258, 382, 558, 187, 186, 3373, 86, 64, 28704, 64, 25078, 9, 17394, 1168, 9723, 13, 1481, 558, 187, 186, 2309, 470, 28, 187, 94, 187, 187, 4659, 2991, 5044, 64, 16435, 64, 10978, 9, 2855, 391, 14573, 64, 2522, 475, 2522, 10, 187, 92, 187, 186, 2855, 5044, 64, 10978, 475, 71, 426, 8781, 64, 1171, 9, 2522, 13, 1577, 5044, 64, 10978, 13, 391, 14573, 558, 535, 186, 85, 7836, 64, 2068, 84, 64, 26316, 6395, 71, 1168, 2068, 84, 558, 187, 186, 85, 7836, 64, 358, 64, 12588, 64, 26316, 6395, 71, 1168, 14359, 2706, 558, 187, 186, 76, 4924, 9, 71, 558, 187, 94, 187, 187, 4659, 2991, 5044, 64, 26316, 9, 2855, 246, 7836, 64, 20894, 475, 17394, 10, 187, 92, 187, 186, 2855, 5044, 64, 2522, 475, 2522, 426, 37523, 13307, 64, 615, 14005, 9, 17394, 1168, 9723, 558, 187, 186, 2855, 5044, 64, 10978, 475, 71, 13, 475, 79, 28, 535, 186, 3550, 64, 1542, 64, 14382, 64, 8873, 64, 22768, 9, 71, 13, 295, 13, 708, 2522, 1168, 1258, 382, 13, 3048, 10, 551, 996, 186, 3550, 64, 7555, 64, 3373, 86, 6395, 71, 1168, 4492, 558, 996, 186, 85, 7836, 64, 328, 13245, 64, 10978, 9, 17394, 13, 708, 71, 1168, 373, 558, 996, 186, 4065, 64, 3373, 86, 6395, 71, 1168, 3373, 86, 13, 5044, 64, 16435, 64, 10978, 558, 187, 186, 94, 187, 186, 51, 18094, 64, 25844, 64, 5964, 19118, 9, 17394, 1168, 9723, 13, 5812, 558, 187, 186, 76, 4924, 64, 3373, 86, 9, 2522, 13, 391, 14573, 558, 187, 94, 187, 187, 4659, 540, 5044, 64, 16435, 9, 2855, 246, 7836, 64, 20894, 475, 17394, 13, 10698, 1048, 1736, 10, 187, 92, 187, 186, 2855, 5044, 64, 10978, 475, 71, 426, 313, 2855, 5044, 64, 10978, 9657, 1736, 28, 535, 186, 3550, 64, 7555, 64, 3373, 86, 6395, 71, 1168, 4492, 558, 187, 186, 85, 7836, 64, 328, 13245, 64, 10978, 9, 17394, 13, 708, 71, 1168, 373, 558, 187, 186, 4065, 64, 3373, 86, 6395, 71, 1168, 3373, 86, 13, 5044, 64, 16435, 64, 10978, 558, 187, 186, 2309, 470, 28, 187, 94, 187, 187, 4659, 1030, 1577, 295, 4123, 64, 22872, 5044, 64, 22872, 60, 53, 4280, 64, 48121, 1864, 64, 11779, 559, 337, 62, 426, 551, 187, 186, 60, 53, 4280, 64, 48121, 1864, 64, 25734, 1838, 62, 186, 30, 551, 964, 881, 426, 427, 5696, 64, 54, 1237, 3572, 187, 186, 60, 53, 4280, 64, 48121, 1864, 64, 3172, 21203, 1410, 62, 186, 30, 551, 964, 881, 426, 427, 5696, 64, 6603, 1267, 1703, 3572, 187, 4718, 187, 187, 4659, 540, 5044, 64, 1178, 64, 1148, 983, 9, 2855, 2036, 475, 3024, 13, 1577, 246, 7836, 64, 20894, 475, 17394, 13, 2657, 50275, 2855, 5044, 64, 10978, 475, 71, 13, 10698, 1048, 2613, 13, 2657, 50275, 2855, 295, 77, 9573, 1401, 25192, 13, 2657, 50275, 2855, 295, 77, 9573, 475, 383, 13, 7301, 14246, 83, 10, 187, 92, 187, 186, 565, 1486, 28, 187, 186, 2855, 246, 7836, 64, 2068, 84, 299, 28, 187, 186, 2855, 246, 7836, 64, 358, 1506, 64, 12588, 246, 28, 535, 186, 85, 7836, 64, 2068, 84, 64, 4478, 6395, 70, 13, 308, 4280, 64, 48121, 1864, 64, 11645, 13, 308, 4280, 64, 48121, 1864, 64, 34948, 8875, 558, 187, 186, 1000, 426, 246, 7836, 64, 2068, 84, 64, 30716, 9, 3024, 13, 246, 81, 13, 34244, 13, 1144, 13, 708, 70, 13, 14246, 83, 558, 187, 186, 338, 313, 1000, 654, 470, 10, 996, 186, 2309, 1486, 28, 535, 186, 1000, 426, 246, 7836, 64, 358, 64, 12588, 64, 30716, 9, 17394, 13, 34244, 60, 53, 4280, 64, 48121, 1864, 64, 3172, 21203, 1410, 1092, 708, 85, 558, 187, 186, 338, 313, 1000, 654, 470, 10, 996, 186, 18026, 1486, 483, 28, 535, 186, 338, 313, 25192, 60, 53, 4280, 64, 48121, 1864, 64, 25734, 1838, 3291, 551, 996, 186, 71, 1168, 373, 15, 2437, 301, 426, 295, 4123, 64, 788, 64, 86, 1237, 9, 25192, 60, 53, 4280, 64, 48121, 1864, 64, 25734, 1838, 9259, 996, 186, 85, 7836, 64, 13245, 64, 10978, 9, 17394, 13, 708, 71, 1168, 373, 13, 2613, 558, 187, 186, 94, 535, 186, 85, 7836, 64, 2068, 84, 64, 4168, 9, 17394, 13, 708, 71, 1168, 2068, 84, 13, 708, 70, 558, 187, 186, 85, 7836, 64, 358, 64, 12588, 64, 4168, 9, 17394, 13, 708, 71, 1168, 14359, 2706, 13, 708, 85, 558, 187, 186, 71, 1168, 17394, 426, 246, 81, 28, 535, 186, 2309, 470, 28, 187, 1000, 483, 27, 187, 186, 85, 7836, 64, 2068, 84, 64, 26316, 6395, 70, 558, 187, 186, 2309, 1486, 28, 187, 94, 187, 187, 4659, 540, 5044, 64, 4168, 9, 2855, 2036, 475, 3024, 13, 1577, 1629, 64, 30586, 475, 249, 64, 33598, 13, 988, 186, 2855, 246, 7836, 64, 20894, 475, 17394, 13, 10698, 1048, 2613, 13, 1484, 1237, 6016, 13, 988, 186, 2855, 295, 77, 9573, 1401, 85, 6357, 13, 10698, 1048, 475, 1662, 13, 7301, 14246, 83, 10, 187, 92, 187, 186, 565, 1486, 28, 187, 186, 2855, 5044, 64, 2522, 475, 2522, 426, 37523, 13307, 64, 615, 14005, 9, 17394, 1168, 9723, 558, 187, 186, 2855, 295, 77, 9573, 475, 25192, 60, 53, 4280, 64, 48121, 1864, 64, 11779, 559, 337, 2194, 187, 186, 2855, 5044, 64, 10978, 475, 8089, 426, 313, 2855, 5044, 64, 10978, 9657, 475, 1662, 28, 187, 186, 2855, 5044, 64, 10978, 475, 71, 1826, 28, 535, 186, 338, 313, 85, 6357, 60, 53, 4280, 64, 18904, 21109, 62, 2295, 5812, 10, 996, 186, 2309, 428, 37213, 28, 535, 186, 1000, 426, 295, 4123, 64, 12083, 64, 47628, 9, 25192, 13, 308, 4280, 64, 48121, 1864, 64, 11779, 13, 246, 6357, 60, 53, 4280, 64, 18904, 21109, 1092, 2657, 50271, 21705, 64, 22872, 558, 187, 186, 338, 313, 1000, 654, 470, 10, 996, 186, 2309, 1486, 28, 535, 186, 338, 313, 8089, 3613, 5812, 10, 551, 996, 186, 338, 313, 13393, 3857, 7975, 1168, 13393, 3613, 6016, 10, 988, 186, 2309, 428, 37213, 28, 187, 186, 94, 535, 186, 71, 1826, 426, 465, 91, 10835, 9, 23269, 9672, 71, 1826, 582, 17578, 64, 45723, 558, 187, 186, 338, 6522, 71, 1826, 10, 996, 186, 2309, 428, 41188, 7817, 7864, 28, 535, 186, 85, 7836, 64, 2068, 84, 64, 4478, 6395, 71, 1826, 1168, 2068, 84, 13, 308, 4280, 64, 48121, 1864, 64, 11645, 13, 308, 4280, 64, 48121, 1864, 64, 34948, 8875, 558, 187, 186, 1000, 426, 428, 37213, 28, 187, 186, 338, 313, 13393, 10, 551, 996, 186, 71, 1826, 1168, 13393, 426, 6016, 28, 187, 186, 94, 2010, 604, 313, 8089, 10, 551, 996, 186, 71, 1826, 1168, 13393, 426, 7975, 1168, 13393, 28, 187, 186, 94, 2010, 551, 996, 186, 10790, 540, 891, 426, 470, 89, 25, 23113, 28, 996, 186, 3088, 551, 988, 186, 338, 313, 3424, 2522, 1168, 73, 36089, 2295, 470, 89, 24, 15651, 45231, 10, 2657, 186, 2522, 1168, 73, 36089, 426, 337, 28, 996, 186, 94, 1223, 313, 283, 74, 2239, 470, 3857, 5044, 64, 788, 9, 17394, 13, 1481, 1168, 73, 36089, 4027, 6886, 186, 338, 313, 74, 11049, 470, 10, 551, 988, 186, 1087, 64, 1000, 1587, 688, 31031, 1180, 273, 22139, 61, 79, 3287, 988, 186, 18026, 1486, 483, 28, 996, 186, 94, 6886, 186, 71, 1826, 1168, 13393, 426, 1481, 1168, 73, 36089, 28, 187, 186, 94, 535, 186, 1000, 426, 5044, 64, 1178, 64, 1148, 983, 9, 3024, 13, 246, 81, 13, 269, 1826, 13, 2613, 13, 34244, 13, 246, 6357, 60, 53, 4280, 64, 47036, 1092, 14246, 83, 558, 187, 186, 338, 313, 1000, 654, 470, 10, 996, 186, 18026, 1486, 483, 28, 535, 186, 11, 1662, 426, 313, 10790, 1048, 10, 71, 1826, 28, 535, 186, 338, 313, 8089, 10, 551, 996, 186, 3550, 64, 13481, 64, 3373, 86, 6395, 8089, 1168, 4492, 13, 708, 71, 1826, 1168, 4492, 558, 996, 186, 85, 7836, 64, 328, 13245, 64, 10978, 9, 17394, 13, 708, 8089, 1168, 373, 558, 996, 186, 4065, 64, 3373, 86, 6395, 8089, 1168, 3373, 86, 13, 5044, 64, 16435, 64, 10978, 558, 187, 186, 94, 2010, 551, 996, 186, 3550, 64, 1911, 64, 3373, 86, 6395, 71, 1826, 1168, 4492, 13, 708, 2522, 1168, 1258, 382, 558, 187, 186, 94, 535, 186, 2309, 470, 28, 187, 1000, 483, 27, 187, 186, 76, 4924, 9, 71, 1826, 558, 187, 186, 2309, 1486, 28, 187, 94, 187, 187, 4659, 2991, 5044, 64, 13678, 9, 2855, 246, 7836, 64, 20894, 475, 17394, 13, 1577, 246, 7836, 64, 49679, 475, 1662, 10, 187, 92, 187, 186, 2855, 5044, 64, 2522, 475, 2522, 426, 37523, 13307, 64, 615, 14005, 9, 17394, 1168, 9723, 558, 187, 186, 2855, 5044, 64, 10978, 475, 71, 28, 535, 186, 3550, 64, 1542, 64, 14382, 64, 8873, 9, 71, 13, 708, 2522, 1168, 1258, 382, 13, 3048, 10, 551, 996, 186, 338, 313, 1662, 1168, 5560, 654, 1736, 1168, 19259, 10, 988, 186, 18026, 17049, 28, 6886, 186, 338, 313, 1662, 1168, 4174, 9, 17394, 13, 313, 10790, 1048, 10, 269, 13, 1736, 10, 654, 470, 10, 551, 988, 186, 1662, 1168, 13121, 426, 337, 28, 988, 186, 7054, 28, 996, 186, 94, 187, 19259, 27, 996, 186, 1662, 1168, 5560, 14788, 187, 186, 94, 187, 94, 187, 187, 4659, 540, 5044, 64, 23593, 9, 2855, 2036, 475, 3024, 13, 1577, 246, 7836, 64, 20894, 475, 17394, 13, 10698, 1048, 269, 73, 13, 988, 50272, 2855, 1629, 64, 30586, 475, 33598, 13, 1577, 246, 68, 4856, 475, 85, 10, 187, 92, 187, 186, 2855, 5044, 64, 10978, 475, 71, 426, 313, 2855, 5044, 64, 10978, 9657, 269, 73, 28, 187, 186, 2855, 295, 77, 9573, 475, 48050, 28, 535, 186, 338, 313, 71, 2295, 5812, 10, 996, 186, 2309, 1629, 67, 1168, 5025, 28, 535, 186, 85, 1168, 85, 3591, 64, 13393, 426, 269, 1168, 13393, 28, 535, 186, 48050, 426, 295, 4123, 64, 48050, 64, 5478, 9, 33598, 13, 308, 4280, 64, 18904, 21109, 558, 187, 186, 338, 313, 48050, 2295, 5812, 10, 996, 186, 18026, 295, 4123, 64, 1065, 64, 33699, 28, 535, 186, 338, 313, 71, 1168, 373, 15, 2437, 301, 3857, 996, 50274, 79, 4123, 64, 1065, 64, 86, 1237, 9, 33598, 13, 308, 4280, 64, 48121, 1864, 64, 25734, 1838, 13, 269, 1168, 373, 15, 2437, 301, 1228, 996, 186, 18026, 295, 4123, 64, 1065, 64, 33699, 28, 535, 186, 338, 313, 85, 7836, 64, 2068, 84, 64, 23593, 9, 33598, 13, 708, 71, 1168, 2068, 84, 10, 654, 470, 2785, 996, 50274, 85, 7836, 64, 358, 64, 12588, 64, 23593, 9, 33598, 13, 708, 71, 1168, 14359, 2706, 13, 308, 4280, 64, 48121, 1864, 64, 3172, 21203, 1410, 10, 654, 470, 10, 996, 186, 18026, 295, 4123, 64, 1065, 64, 33699, 28, 535, 186, 79, 4123, 64, 48050, 64, 423, 9, 33598, 13, 15178, 558, 535, 186, 338, 313, 85, 7836, 64, 2068, 84, 64, 23593, 64, 22530, 9, 33598, 13, 708, 71, 1168, 2068, 84, 10, 654, 470, 10, 996, 186, 18026, 295, 4123, 64, 1065, 64, 33699, 28, 535, 186, 2309, 1629, 67, 1168, 5025, 28, 187, 187, 79, 4123, 64, 1065, 64, 33699, 27, 187, 186, 79, 4123, 64, 48050, 64, 35899, 9, 33598, 13, 15178, 558, 187, 186, 2309, 428, 18, 28, 187, 94, 187, 187, 4659, 1577, 246, 7836, 64, 20894, 64, 2695, 502, 84, 64, 21705, 64, 2695, 4772, 1088, 64, 39025, 426, 551, 187, 186, 15, 11258, 186, 186, 30, 186, 3, 21705, 995, 187, 186, 15, 2437, 1419, 186, 30, 186, 21705, 64, 2437, 1419, 13, 187, 186, 15, 4478, 186, 186, 30, 186, 21705, 64, 4478, 13, 187, 186, 15, 26316, 186, 30, 186, 21705, 64, 26316, 13, 187, 186, 15, 788, 186, 186, 30, 186, 21705, 64, 788, 13, 187, 186, 15, 4168, 186, 186, 30, 186, 21705, 64, 4168, 13, 187, 186, 15, 16435, 186, 186, 30, 186, 21705, 64, 16435, 13, 187, 186, 15, 13678, 186, 186, 30, 186, 21705, 64, 13678, 13, 187, 186, 15, 23593, 186, 186, 30, 186, 21705, 64, 23593, 13, 187, 186, 15, 18602, 186, 186, 30, 186, 30308, 64, 27660, 13, 187, 4718, 187, 187, 4659, 540, 4772, 4478, 2012, 64, 21705, 9, 4353, 10, 187, 92, 187, 186, 2309, 8749, 64, 85, 7836, 64, 20894, 64, 2695, 6395, 40087, 64, 21705, 64, 2695, 558, 187, 94, 187, 187, 4659, 2991, 4772, 19874, 10463, 64, 21705, 9, 4353, 10, 187, 92, 187, 186, 328, 15905, 64, 85, 7836, 64, 20894, 64, 2695, 6395, 40087, 64, 21705, 64, 2695, 558, 187, 94, 187, 187, 8640, 64, 4478, 9, 4478, 64, 21705, 10, 187, 8640, 64, 19874, 9, 19874, 64, 21705, 10, 187, 27660, 64, 17821, 1587, 44335, 3287, 535 ]
/* * net/sched/cls_basic.c Basic Packet Classifier. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version * 2 of the License, or (at your option) any later version. * * Authors: Thomas Graf <[email protected]> */ #include <linux/module.h> #include <linux/slab.h> #include <linux/types.h> #include <linux/kernel.h> #include <linux/string.h> #include <linux/errno.h> #include <linux/rtnetlink.h> #include <linux/skbuff.h> #include <net/netlink.h> #include <net/act_api.h> #include <net/pkt_cls.h> struct basic_head { u32 hgenerator; struct list_head flist; struct rcu_head rcu; }; struct basic_filter { u32 handle; struct tcf_exts exts; struct tcf_ematch_tree ematches; struct tcf_result res; struct tcf_proto *tp; struct list_head link; struct rcu_head rcu; }; static int basic_classify(struct sk_buff *skb, const struct tcf_proto *tp, struct tcf_result *res) { int r; struct basic_head *head = rcu_dereference_bh(tp->root); struct basic_filter *f; list_for_each_entry_rcu(f, &head->flist, link) { if (!tcf_em_tree_match(skb, &f->ematches, NULL)) continue; *res = f->res; r = tcf_exts_exec(skb, &f->exts, res); if (r < 0) continue; return r; } return -1; } static unsigned long basic_get(struct tcf_proto *tp, u32 handle) { unsigned long l = 0UL; struct basic_head *head = rtnl_dereference(tp->root); struct basic_filter *f; if (head == NULL) return 0UL; list_for_each_entry(f, &head->flist, link) { if (f->handle == handle) { l = (unsigned long) f; break; } } return l; } static int basic_init(struct tcf_proto *tp) { struct basic_head *head; head = kzalloc(sizeof(*head), GFP_KERNEL); if (head == NULL) return -ENOBUFS; INIT_LIST_HEAD(&head->flist); rcu_assign_pointer(tp->root, head); return 0; } static void basic_delete_filter(struct rcu_head *head) { struct basic_filter *f = container_of(head, struct basic_filter, rcu); tcf_exts_destroy(&f->exts); tcf_em_tree_destroy(&f->ematches); kfree(f); } static void basic_destroy(struct tcf_proto *tp) { struct basic_head *head = rtnl_dereference(tp->root); struct basic_filter *f, *n; list_for_each_entry_safe(f, n, &head->flist, link) { list_del_rcu(&f->link); tcf_unbind_filter(tp, &f->res); call_rcu(&f->rcu, basic_delete_filter); } RCU_INIT_POINTER(tp->root, NULL); kfree_rcu(head, rcu); } static int basic_delete(struct tcf_proto *tp, unsigned long arg) { struct basic_filter *f = (struct basic_filter *) arg; list_del_rcu(&f->link); tcf_unbind_filter(tp, &f->res); call_rcu(&f->rcu, basic_delete_filter); return 0; } static const struct nla_policy basic_policy[TCA_BASIC_MAX + 1] = { [TCA_BASIC_CLASSID] = { .type = NLA_U32 }, [TCA_BASIC_EMATCHES] = { .type = NLA_NESTED }, }; static int basic_set_parms(struct net *net, struct tcf_proto *tp, struct basic_filter *f, unsigned long base, struct nlattr **tb, struct nlattr *est, bool ovr) { int err; struct tcf_exts e; struct tcf_ematch_tree t; tcf_exts_init(&e, TCA_BASIC_ACT, TCA_BASIC_POLICE); err = tcf_exts_validate(net, tp, tb, est, &e, ovr); if (err < 0) return err; err = tcf_em_tree_validate(tp, tb[TCA_BASIC_EMATCHES], &t); if (err < 0) goto errout; if (tb[TCA_BASIC_CLASSID]) { f->res.classid = nla_get_u32(tb[TCA_BASIC_CLASSID]); tcf_bind_filter(tp, &f->res, base); } tcf_exts_change(tp, &f->exts, &e); tcf_em_tree_change(tp, &f->ematches, &t); f->tp = tp; return 0; errout: tcf_exts_destroy(&e); return err; } static int basic_change(struct net *net, struct sk_buff *in_skb, struct tcf_proto *tp, unsigned long base, u32 handle, struct nlattr **tca, unsigned long *arg, bool ovr) { int err; struct basic_head *head = rtnl_dereference(tp->root); struct nlattr *tb[TCA_BASIC_MAX + 1]; struct basic_filter *fold = (struct basic_filter *) *arg; struct basic_filter *fnew; if (tca[TCA_OPTIONS] == NULL) return -EINVAL; err = nla_parse_nested(tb, TCA_BASIC_MAX, tca[TCA_OPTIONS], basic_policy); if (err < 0) return err; if (fold != NULL) { if (handle && fold->handle != handle) return -EINVAL; } fnew = kzalloc(sizeof(*fnew), GFP_KERNEL); if (!fnew) return -ENOBUFS; tcf_exts_init(&fnew->exts, TCA_BASIC_ACT, TCA_BASIC_POLICE); err = -EINVAL; if (handle) { fnew->handle = handle; } else if (fold) { fnew->handle = fold->handle; } else { unsigned int i = 0x80000000; do { if (++head->hgenerator == 0x7FFFFFFF) head->hgenerator = 1; } while (--i > 0 && basic_get(tp, head->hgenerator)); if (i <= 0) { pr_err("Insufficient number of handles\n"); goto errout; } fnew->handle = head->hgenerator; } err = basic_set_parms(net, tp, fnew, base, tb, tca[TCA_RATE], ovr); if (err < 0) goto errout; *arg = (unsigned long)fnew; if (fold) { list_replace_rcu(&fold->link, &fnew->link); tcf_unbind_filter(tp, &fold->res); call_rcu(&fold->rcu, basic_delete_filter); } else { list_add_rcu(&fnew->link, &head->flist); } return 0; errout: kfree(fnew); return err; } static void basic_walk(struct tcf_proto *tp, struct tcf_walker *arg) { struct basic_head *head = rtnl_dereference(tp->root); struct basic_filter *f; list_for_each_entry(f, &head->flist, link) { if (arg->count < arg->skip) goto skip; if (arg->fn(tp, (unsigned long) f, arg) < 0) { arg->stop = 1; break; } skip: arg->count++; } } static int basic_dump(struct net *net, struct tcf_proto *tp, unsigned long fh, struct sk_buff *skb, struct tcmsg *t) { struct basic_filter *f = (struct basic_filter *) fh; struct nlattr *nest; if (f == NULL) return skb->len; t->tcm_handle = f->handle; nest = nla_nest_start(skb, TCA_OPTIONS); if (nest == NULL) goto nla_put_failure; if (f->res.classid && nla_put_u32(skb, TCA_BASIC_CLASSID, f->res.classid)) goto nla_put_failure; if (tcf_exts_dump(skb, &f->exts) < 0 || tcf_em_tree_dump(skb, &f->ematches, TCA_BASIC_EMATCHES) < 0) goto nla_put_failure; nla_nest_end(skb, nest); if (tcf_exts_dump_stats(skb, &f->exts) < 0) goto nla_put_failure; return skb->len; nla_put_failure: nla_nest_cancel(skb, nest); return -1; } static struct tcf_proto_ops cls_basic_ops __read_mostly = { .kind = "basic", .classify = basic_classify, .init = basic_init, .destroy = basic_destroy, .get = basic_get, .change = basic_change, .delete = basic_delete, .walk = basic_walk, .dump = basic_dump, .owner = THIS_MODULE, }; static int __init init_basic(void) { return register_tcf_proto_ops(&cls_basic_ops); } static void __exit exit_basic(void) { unregister_tcf_proto_ops(&cls_basic_ops); } module_init(init_basic) module_exit(exit_basic) MODULE_LICENSE("GPL");
214,343
Github
[ 30952, 32735, 14271, 31, 187, 29, 2974, 19457, 568, 257, 1138, 187, 187, 29, 2522, 31, 187, 50274, 29, 13518, 29308, 568, 18441, 14, 25, 1138, 187, 50274, 29, 5564, 31, 14500, 870, 5564, 31, 187, 870, 2522, 31, 187, 187, 29, 2915, 31, 187, 50274, 29, 3866, 1511, 568, 1156, 16, 14606, 1138, 187, 50274, 2044, 10928, 426, 551, 187, 50270, 1590, 27, 686, 2566, 1383, 187, 50270, 486, 27, 495, 13, 187, 50270, 12110, 27, 1159, 1082, 12166, 187, 50274, 4718, 535, 50274, 22452, 15, 2808, 2073, 10428, 1542, 1051, 249, 10428, 5137, 187, 50274, 605, 209, 37208, 12335, 1542, 1051, 249, 14378, 224, 20647, 217, 6238, 1542, 1051, 249, 20281, 14378, 224, 20647, 217, 25276, 14377, 18148, 17321, 237, 3218, 124, 5225, 17955, 241, 21734, 6238, 15899, 216, 7719, 106, 39673, 34380, 25949, 44795, 16740, 5225, 187, 50274, 1542, 313, 2044, 4198, 275, 10928, 10, 551, 187, 50270, 22452, 15, 2808, 9, 8560, 13, 10928, 60, 8560, 9259, 187, 50274, 94, 535, 50274, 22452, 15, 2808, 2073, 10428, 29463, 7110, 22585, 8324, 32004, 162, 121, 99, 39673, 34380, 17955, 241, 21734, 10428, 5137, 187, 50274, 605, 209, 29463, 7110, 22585, 8324, 32004, 162, 121, 99, 39673, 34380, 17955, 241, 21734, 187, 50274, 1542, 313, 2044, 4198, 19, 275, 10928, 10, 551, 187, 50270, 338, 313, 9344, 15, 7110, 22585, 8324, 9, 8560, 19, 1228, 551, 187, 50266, 22452, 15, 2808, 9, 8560, 19, 13, 10928, 60, 8560, 19, 9259, 187, 50270, 94, 187, 50274, 94, 535, 50274, 22452, 15, 2808, 2073, 10428, 265, 22, 45314, 36820, 9, 9051, 26, 15020, 10428, 5137, 187, 50274, 22452, 15, 2808, 2073, 10428, 12305, 10428, 5137, 187, 50274, 605, 209, 27804, 32004, 4241, 15, 12305, 44966, 117, 30808, 25949, 44795, 5225, 25276, 14377, 17955, 241, 21734, 28610, 41251, 21991, 5225, 15531, 41251, 187, 50274, 22452, 15, 2808, 9, 4241, 15, 12305, 9, 9344, 4027, 535, 50274, 22452, 15, 2808, 2073, 10428, 265, 23, 45314, 36820, 10428, 5137, 187, 50274, 22452, 15, 2808, 2073, 10428, 8858, 10428, 5137, 187, 50274, 605, 209, 27804, 32004, 4241, 15, 8858, 44966, 117, 30808, 25949, 44795, 5225, 25276, 14377, 40969, 41251, 21991, 5225, 15531, 41251, 187, 50274, 22452, 15, 2808, 9, 4241, 15, 8858, 9, 9344, 4027, 187, 50274, 22452, 15, 2808, 2073, 10428, 35858, 10428, 5137, 187, 50274, 605, 209, 27804, 32004, 4241, 15, 35858, 44966, 117, 30808, 25949, 44795, 5225, 39915, 108, 40969, 25949, 41251, 21991, 5225, 5225, 24899, 12755, 114, 15531, 41251, 187, 50274, 22452, 15, 2808, 9, 4241, 15, 35858, 9, 9344, 4027, 187, 50274, 870, 3866, 31, 187, 870, 2915, 31, 187, 187, 870, 2974, 31 ]
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> </head> <body> <script type="text/javascript"> var obj = { name: 'test', age: 3, foo: function() {} }; console.log('-------------for...in-------------'); // 利用for...in遍历,for...in会遍历所有可枚举的属性,包含原型对象上的 for (var prop in obj) { console.log(prop, obj[prop]); } console.log('-------------使用hasOwnProperty过滤原型属性-------------'); // 使用hasOwnProperty过滤原型属性 for (var prop2 in obj) { if (obj.hasOwnProperty(prop2)) { console.log(prop2, obj[prop2]); } } console.log('-------------es5支持(IE9+)-------------'); console.log('-------------keys-------------'); // 通过Object.keys获得对象的所有属性名组成的数组 console.log(Object.keys(obj)); console.log('-------------es6支持-------------'); console.log('-------------values-------------'); // 通过Object.values获得对象的所有值组成的数组 console.log(Object.values(obj)); console.log('-------------entries-------------'); // 通过Object.entries获得对象的键值对组成的的多维数组 console.log(Object.entries(obj)); </script> </body> </html>
214,344
Github
[ 30952, 32735, 14271, 31, 187, 29, 2974, 31, 187, 29, 2522, 31, 187, 50276, 29, 5564, 31, 22444, 15027, 318, 870, 5564, 31, 187, 50276, 29, 13518, 3944, 14, 8275, 568, 8590, 14, 2548, 3, 2600, 568, 1156, 16, 2974, 28, 29308, 30, 18441, 14, 25, 5647, 187, 50276, 29, 13518, 1416, 568, 1374, 631, 3, 2600, 568, 3429, 30, 10933, 14, 3429, 13, 3302, 14, 7527, 30, 18, 1138, 187, 50276, 29, 4492, 1511, 5473, 1156, 16, 9016, 8, 774, 5473, 23745, 8, 3860, 5473, 4598, 41287, 406, 16, 17817, 37586, 16, 45268, 1070, 16, 24884, 15, 1222, 15, 9016, 8, 4357, 187, 29, 4492, 1511, 5473, 1156, 16, 9016, 8, 774, 5473, 23745, 8, 3860, 5473, 4598, 41287, 406, 16, 17817, 37586, 16, 45268, 1070, 16, 4025, 85, 1419, 15, 9016, 8, 4357, 187, 29, 4492, 1511, 5473, 1156, 16, 9016, 8, 774, 5473, 23745, 8, 3860, 5473, 4598, 41287, 406, 16, 17817, 37586, 16, 45268, 1070, 16, 24884, 14, 28514, 15, 1222, 15, 9016, 8, 4357, 187, 50276, 29, 4492, 1511, 5473, 1156, 16, 9016, 8, 774, 5473, 23745, 8, 3860, 5473, 4598, 41287, 406, 16, 17817, 37586, 16, 13259, 15, 9016, 8, 4357, 187, 50276, 14219, 19900, 23, 14, 25, 1329, 273, 11685, 22, 3603, 6781, 187, 50276, 14219, 60, 338, 46007, 19900, 898, 42854, 187, 50274, 29, 3866, 6740, 568, 605, 2974, 22, 1200, 303, 15, 9906, 3211, 15, 681, 16, 11427, 79, 16, 1206, 3938, 16, 2974, 22, 15, 4305, 6750, 3866, 31, 187, 50276, 29, 3138, 7287, 7086, 31, 187, 870, 2522, 31, 187, 29, 2915, 31, 187, 50276, 29, 2154, 966, 568, 13299, 14, 25397, 1138, 187, 50274, 29, 2154, 966, 568, 736, 14, 25397, 1138, 187, 50272, 29, 2154, 2654, 5473, 13299, 16262, 187, 50270, 29, 335, 966, 5473, 31212, 7083, 3561, 16262, 187, 50276, 29, 965, 31, 187, 50274, 29, 66, 3860, 5473, 4598, 41287, 406, 16, 87, 19, 15, 6113, 64, 36, 59, 15, 2974, 16262, 18635, 1342, 362, 19, 870, 66, 31, 187, 50274, 29, 2551, 966, 5473, 2154, 1334, 16262, 16, 870, 2551, 31, 187, 50276, 870, 965, 31, 187, 50276, 29, 965, 966, 5473, 4507, 16262, 187, 50274, 15714, 2603, 23489, 932, 187, 50274, 187, 50276, 870, 965, 31, 187, 50276, 29, 965, 966, 5473, 23290, 14, 918, 16262, 187, 50276, 7, 6732, 28, 60, 654, 66, 3860, 12227, 41287, 406, 16, 87, 19, 16, 14399, 64, 6756, 64, 19560, 932, 15, 431, 64, 7941, 15, 2974, 1138, 431, 64, 7941, 870, 66, 31, 1040, 654, 66, 3860, 12227, 41287, 406, 16, 87, 19, 16, 14399, 64, 6756, 64, 19560, 932, 15, 615, 15, 2974, 1138, 615, 870, 66, 31, 1040, 654, 66, 3860, 12227, 41287, 406, 16, 87, 19, 16, 14399, 64, 6756, 64, 19560, 932, 15, 262, 15, 2974, 1138, 262, 870, 66, 31, 1040, 654, 66, 3860, 12227, 41287, 406, 16, 87, 19, 16, 14399, 64, 6756, 64, 19560, 932, 15, 11427, 64, 2354, 15, 2974, 1138, 11427, 64, 2354, 870, 66, 31, 1040, 654, 66, 3860, 12227, 41287, 406, 16, 87, 19, 16, 14399, 64, 6756, 64, 19560, 932, 15, 20122, 64, 14546, 15, 2974, 1138, 20122, 64, 14546, 870, 66, 31, 1040, 654, 66, 3860, 12227, 41287, 406, 16, 87, 19, 16, 14399, 64, 6756, 64, 19560, 932, 15, 257, 64, 6920, 15, 2974, 1138, 257, 64, 6920, 870, 66, 31, 1040, 654, 67, 2730, 66, 3860, 12227, 41287, 406, 16, 87, 19, 16, 14399, 64, 6756, 64, 19560, 932, 15, 6113, 64, 36, 59, 15, 2974, 1138, 6113, 64, 36, 59, 870, 66, 3073, 67, 31, 1040, 654, 66, 3860, 12227, 41287, 406, 16, 87, 19, 16, 14399, 64, 6756, 64, 19560, 932, 15, 925, 15, 2974, 1138, 925, 870, 66, 31, 1040, 654, 66, 3860, 12227, 41287, 406, 16, 87, 19, 16, 14399, 64, 6756, 64, 19560, 932, 15, 579, 15, 2974, 1138, 579, 870, 66, 31, 1040, 654, 66, 3860, 12227, 41287, 406, 16, 87, 19, 16, 14399, 64, 6756, 64, 19560, 932, 15, 6362, 15, 2974, 1138, 6362, 870, 66, 31, 1040, 654, 66, 3860, 12227, 41287, 406, 16, 87, 19, 16, 14399, 64, 6756, 64, 19560, 932, 15, 265, 15, 2974, 1138, 265, 870, 66, 31, 1040, 654, 66, 3860, 12227, 41287, 406, 16, 87, 19, 16, 14399, 64, 6756, 64, 19560, 932, 15, 7381, 15, 2974, 1138, 7381, 870, 66, 31, 1040, 654, 66, 3860, 12227, 41287, 406, 16, 87, 19, 16, 14399, 64, 6756, 64, 19560, 932, 15, 6357, 15, 2974, 1138, 6357, 870, 66, 31, 1040, 654, 66, 3860, 12227, 41287, 406, 16, 87, 19, 16, 14399, 64, 6756, 64, 19560, 932, 15, 3129, 15, 2974, 1138, 3129, 870, 66, 31, 1040, 654, 66, 3860, 12227, 41287, 406, 16, 87, 19, 16, 14399, 64, 6756, 64, 19560, 932, 15, 257, 15, 2974, 1138, 257, 870, 66, 31, 1040, 654, 66, 3860, 12227, 41287, 406, 16, 87, 19, 16, 14399, 64, 6756, 64, 19560, 932, 15, 20122, 64, 36584, 15, 2974, 1138, 20122, 64, 36584, 870, 66, 31, 1040, 654, 66, 3860, 12227, 41287, 406, 16, 87, 19, 16, 14399, 64, 6756, 64, 19560, 932, 15, 13307, 64, 19214, 15, 2974, 1138, 13307, 64, 19214, 870, 66, 31, 1040, 654, 66, 3860, 12227, 41287, 406, 16, 87, 19, 16, 14399, 64, 6756, 64, 19560, 932, 15, 446, 15, 2974, 1138, 446, 870, 66, 31, 5032, 187, 870, 965, 31, 187, 187, 870, 335, 31, 187, 187, 29, 2154, 966, 5473, 6377, 14, 10146, 16262, 187, 50276, 29, 73, 18, 31, 187, 50274, 15714, 2603, 23489, 932, 187, 50274, 29, 1288, 31, 187, 50274, 29, 6795, 3073, 6795, 31, 187, 50276, 870, 73, 18, 31, 187, 870, 2154, 31, 5429, 535, 187, 29, 2154, 966, 5473, 39844, 279, 8, 2654, 5473, 39844, 279, 16262, 535, 50274, 29, 6285, 31, 187, 50274, 29, 2154, 966, 5473, 23290, 14, 918, 1355, 16262, 187, 50272, 29, 66, 3860, 5473, 4598, 41287, 406, 16, 87, 19, 16, 14399, 64, 6756, 64, 19560, 932, 16, 4663, 15, 6113, 64, 36, 59, 15, 2974, 16262, 30803, 2033, 66, 31, 187, 50274, 870, 2154, 31, 187, 50274, 29, 2154, 31, 187, 50270, 29, 73, 19, 31, 187, 50268, 29, 66, 3860, 5473, 4, 10008, 14, 4663, 8, 187, 50267, 2437, 5473, 39844, 279, 14, 23112, 8, 187, 50267, 2203, 14, 23112, 5473, 33683, 8, 187, 50267, 2203, 14, 5598, 5473, 4, 39844, 279, 16262, 187, 50266, 9278, 1227, 6682, 16, 14399, 64, 6756, 64, 19560, 932, 187, 50268, 870, 66, 31, 187, 50268, 29, 1288, 31, 187, 50268, 29, 6795, 31, 2765, 6024, 19676, 4973, 870, 6795, 31, 187, 50270, 870, 73, 19, 31, 187, 50270, 29, 73, 19, 31, 187, 50268, 29, 66, 3860, 5473, 4, 10008, 14, 4663, 8, 187, 50267, 2437, 5473, 39844, 279, 14, 23112, 8, 187, 50267, 2203, 14, 23112, 5473, 33683, 8, 187, 50267, 2203, 14, 5598, 5473, 4, 39844, 279, 16262, 187, 50266, 9278, 1227, 6682, 16, 44991, 16, 27, 12428, 64, 301, 16, 14399, 64, 6756, 64, 19560, 932, 187, 50268, 870, 66, 31, 187, 50268, 29, 1288, 31, 187, 50268, 29, 6795, 31, 2765, 6024, 19676, 4973, 591, 4328, 870, 6795, 31, 187, 50270, 870, 73, 19, 31, 187, 50270, 29, 73, 19, 31, 187, 50268, 29, 66, 3860, 5473, 4, 10008, 14, 4663, 8, 187, 50267, 2437, 5473, 39844, 279, 14, 23112, 8, 187, 50267, 2203, 14, 23112, 5473, 33683, 8, 187, 50267, 2203, 14, 5598, 5473, 4, 39844, 279, 16262, 187, 50266, 9278, 1227, 6682, 16, 7397, 5904, 16, 27, 25590, 64, 301, 16, 14399, 64, 6756, 64, 19560, 932, 187, 50268, 870, 66, 31, 187, 50268, 29, 1288, 31, 187, 50268, 29, 6795, 31, 2765, 6024, 19676, 4973, 591, 6003, 870, 6795, 31, 187, 50270, 870, 73, 19, 31, 187, 50274, 870, 2154, 31, 2756, 50274, 29, 2154, 2654, 5473, 10008, 14, 4663, 8, 966, 5473, 33683, 7158, 279, 14, 2915, 16262, 187, 50272, 5429, 50276, 29, 73, 20, 2730, 2551, 966, 568, 20099, 64, 33722, 3, 4060, 568, 20099, 5816, 27, 29180, 14, 36, 59, 15, 522, 532, 466, 15, 32045, 1138, 32896, 870, 2551, 3073, 73, 20, 31, 187, 50274, 29, 3456, 966, 568, 38256, 3845, 1138, 9278, 1227, 6682, 16, 14399, 64, 6756, 64, 19560, 932, 187, 1518, 187, 92, 187, 50276, 7, 11956, 28, 13074, 7, 11956, 28, 27, 337, 13, 187, 50276, 7, 11956, 28, 2377, 13074, 7, 11956, 28, 27, 337, 13, 187, 50276, 7, 11956, 28, 6377, 7, 11956, 28, 27, 337, 13, 187, 50276, 7, 11956, 28, 468, 64, 6377, 7, 11956, 28, 27, 1384, 13, 187, 50276, 7, 11956, 28, 8716, 7, 11956, 28, 27, 3635, 13, 187, 50276, 7, 11956, 28, 15227, 7, 11956, 28, 27, 551, 187, 50274, 7, 11956, 28, 1615, 7, 11956, 28, 27, 3635, 13, 187, 50274, 7, 11956, 28, 2621, 7, 11956, 28, 27, 3635, 187, 50276, 2023, 187, 50276, 7, 11956, 28, 16680, 7, 11956, 28, 27, 544, 187, 50274, 92, 187, 50272, 7, 11956, 28, 22337, 64, 255, 7, 11956, 28, 27, 708, 11956, 28, 9638, 14, 2640, 14, 938, 2145, 27, 1706, 27, 1839, 38040, 7, 11956, 36739, 187, 50272, 7, 11956, 28, 39055, 64, 255, 7, 11956, 28, 27, 708, 11956, 28, 9638, 14, 2640, 14, 938, 2145, 27, 1706, 27, 1839, 38040, 7, 11956, 36739, 187, 50272, 7, 11956, 28, 301, 7, 11956, 28, 27, 3387, 29288, 2227, 1787, 13, 187, 50272, 7, 11956, 28, 1590, 7, 11956, 28, 27, 708, 11956, 28, 7504, 7, 11956, 36739, 187, 50272, 7, 11956, 28, 44991, 7, 11956, 28, 27, 24345, 187, 50272, 7, 11956, 28, 7397, 5904, 7, 11956, 28, 27, 8168, 187, 50274, 94, 187, 50276, 62, 187, 28379, 3456, 31, 535, 50276, 29, 73, 20, 2730, 2551, 966, 568, 20099, 64, 33722, 3, 4060, 568, 20099, 5816, 27, 29180, 14, 36, 59, 15, 522, 532, 466, 15, 12928, 1138, 18246, 870, 2551, 3073, 73, 20, 31, 187, 50276, 29, 2420, 966, 5473, 2420, 16262, 187, 50274, 29, 45826, 31, 187, 50272, 29, 1206, 31, 187, 50270, 29, 394, 2730, 2551, 966, 568, 20099, 64, 33722, 3, 4060, 568, 20099, 5816, 27, 29180, 14, 36, 59, 15, 522, 532, 466, 15, 3575, 64, 1590, 1138, 11030, 9424, 870, 2551, 3073, 394, 31, 187, 50270, 29, 394, 2730, 2551, 966, 568, 20099, 64, 33722, 3, 4060, 568, 20099, 5816, 27, 29180, 14, 36, 59, 15, 522, 532, 466, 15, 10008, 1138, 11185, 870, 2551, 3073, 394, 31, 187, 50272, 870, 1206, 31, 187, 50274, 870, 45826, 31, 187, 50274, 29, 30892, 31, 187, 50270, 29, 1206, 3740, 5473, 11814, 14, 4897, 27, 31952, 9, 10637, 13, 10637, 13, 10637, 558, 16262, 187, 50274, 29, 2851, 31, 187, 50272, 29, 9072, 31, 12428, 64, 301, 2033, 9072, 2730, 1288, 31, 187, 50272, 29, 6795, 31, 187, 50270, 29, 2551, 966, 568, 20099, 64, 33722, 3, 4060, 568, 20099, 5816, 27, 29180, 14, 36, 59, 15, 522, 532, 466, 15, 21676, 1138, 36301, 870, 2551, 31, 187, 50270, 187, 50272, 870, 6795, 31, 187, 50274, 870, 2851, 31, 187, 50274, 29, 2851, 31, 187, 50272, 187, 29, 81, 31, 23974, 407, 8593, 870, 81, 31, 535, 50270, 29, 81, 2730, 9072, 31, 13159, 569, 19282, 9072, 3073, 81, 31, 187, 50270, 29, 335, 31, 187, 50266, 29, 965, 31, 187, 29, 81, 31, 30519, 320, 247, 22008, 870, 81, 31, 187, 870, 965, 31, 187, 50270, 870, 335, 31, 535, 50274, 870, 2851, 31, 535, 50276, 870, 1206, 31, 535, 50276, 187, 50276, 29, 1206, 3740, 5473, 11814, 14, 4897, 27, 31952, 9, 10637, 13, 10637, 13, 10637, 558, 16262, 187, 50274, 29, 2851, 31, 187, 50272, 29, 9072, 31, 25590, 64, 301, 2033, 9072, 2730, 1288, 31, 187, 50272, 29, 6795, 31, 187, 50270, 29, 2551, 966, 568, 20099, 64, 33722, 3, 4060, 568, 20099, 5816, 27, 29180, 14, 36, 59, 15, 522, 532, 466, 15, 21676, 1138, 36301, 870, 2551, 31, 187, 50270, 187, 50272, 870, 6795, 31, 187, 50274, 870, 2851, 31, 187, 50274, 29, 2851, 31, 187, 50272, 187, 29, 81, 31, 23974, 407, 8889, 870, 81, 31, 535, 50270, 29, 81, 2730, 9072, 31, 13159, 569, 19282, 9072, 3073, 81, 31, 187, 50270, 29, 335, 31, 187, 50266, 29, 965, 31, 187, 29, 81, 31, 30519, 320, 247, 22008, 870, 81, 31, 187, 870, 965, 31, 187, 50270, 870, 335, 31, 535, 50274, 870, 2851, 31, 535, 50276, 870, 1206, 31, 535, 50276, 187, 50276, 29, 1206, 3740, 5473, 11814, 14, 4897, 27, 31952, 9, 10637, 13, 10637, 13, 10637, 558, 16262, 187, 50274, 29, 2851, 31, 187, 50272, 29, 9072, 31, 8716, 2033, 9072, 2730, 1288, 31, 187, 50272, 29, 6795, 31, 187, 50270, 29, 2551, 966, 568, 20099, 64, 33722, 3, 4060, 568, 20099, 5816, 27, 29180, 14, 36, 59, 15, 522, 532, 466, 15, 21676, 1138, 36301, 870, 2551, 31, 187, 50270, 187, 50272, 870, 6795, 31, 187, 50274, 870, 2851, 31, 187, 50274, 29, 2851, 31, 187, 50272, 187, 29, 81, 31, 87, 10561, 84, 1070, 4742, 1193, 85, 579, 870, 81, 31, 535, 50270, 29, 81, 2730, 9072, 31, 13159, 569, 19282, 9072, 3073, 81, 31, 187, 50270, 29, 335, 31, 187, 50266, 29, 965, 31, 187, 29, 81, 31, 30519, 320, 247, 4605, 870, 81, 31, 187, 870, 965, 31, 187, 50270, 870, 335, 31, 535, 50274, 870, 2851, 31, 535, 50276, 870, 1206, 31, 535, 50276, 187, 50276, 29, 1206, 3740, 5473, 11814, 14, 4897, 27, 31952, 9, 10637, 13, 10637, 13, 10637, 558, 16262, 187, 50274, 29, 2851, 31, 187, 50272, 29, 9072, 31, 2621, 2033, 9072, 2730, 1288, 31, 187, 50272, 29, 6795, 31, 187, 50270, 29, 2551, 966, 568, 20099, 64, 33722, 3, 4060, 568, 20099, 5816, 27, 29180, 14, 36, 59, 15, 522, 532, 466, 15, 21676, 1138, 36301, 870, 2551, 31, 187, 50270, 187, 50272, 870, 6795, 31, 187, 50274, 870, 2851, 31, 187, 50274, 29, 2851, 31, 187, 50272, 187, 29, 81, 31, 15462, 1673, 285, 1340, 13, 24088, 15, 2802, 301, 20955, 36, 457, 870, 81, 31, 535, 50270, 29, 81, 2730, 9072, 31, 13159, 569, 19282, 9072, 3073, 81, 31, 187, 50270, 29, 335, 31, 187, 50266, 29, 965, 31, 187, 29, 81, 31, 30519, 320, 247, 4605, 870, 81, 31, 187, 870, 965, 31, 187, 50270, 870, 335, 31, 535, 50274, 870, 2851, 31, 535, 50276, 870, 1206, 31, 535, 50276, 187, 50276, 29, 1206, 3740, 5473, 11814, 14, 4897, 27, 31952, 9, 10637, 13, 10637, 13, 10637, 558, 16262, 187, 50274, 29, 2851, 31, 187, 50272, 29, 9072, 31, 6377, 2033, 9072, 2730, 1288, 31, 187, 50272, 29, 6795, 31, 187, 50270, 29, 2551, 966, 568, 20099, 64, 33722, 3, 4060, 568, 20099, 5816, 27, 29180, 14, 36, 59, 15, 522, 532, 466, 15, 21676, 1138, 36301, 870, 2551, 31, 187, 50270, 187, 50272, 870, 6795, 31, 187, 50274, 870, 2851, 31, 187, 50274, 29, 2851, 31, 187, 50272, 187, 29, 81, 31, 1344, 9435, 17131, 255, 46292, 84, 1070, 4742, 870, 81, 31, 535, 50270, 29, 81, 2730, 9072, 31, 13159, 569, 19282, 9072, 3073, 81, 31, 187, 50270, 29, 335, 31, 187, 50266, 29, 965, 31, 187, 29, 81, 31, 30519, 320, 247, 4605, 870, 81, 31, 187, 870, 965, 31, 187, 50270, 870, 335, 31, 535, 50274, 870, 2851, 31, 535, 50276, 870, 1206, 31, 535, 50276, 187, 50276, 29, 1206, 3740, 5473, 11814, 14, 4897, 27, 31952, 9, 10637, 13, 10637, 13, 10637, 558, 16262, 187, 50274, 29, 2851, 31, 187, 50272, 29, 9072, 31, 468, 64, 6377, 2033, 9072, 2730, 1288, 31, 187, 50272, 29, 6795, 31, 187, 50270, 29, 2551, 966, 568, 20099, 64, 33722, 3, 4060, 568, 20099, 5816, 27, 29180, 14, 36, 59, 15, 522, 532, 466, 15, 21676, 1138, 36301, 870, 2551, 31, 187, 50270, 187, 50272, 870, 6795, 31, 187, 50274, 870, 2851, 31, 187, 50274, 29, 2851, 31, 187, 50272, 187, 29, 81, 31, 5367, 7090, 292, 877, 80, 9124, 1441, 5549, 2963, 9124, 324, 1123, 76, 870, 81, 31, 535, 50270, 29, 81, 2730, 9072, 31, 13159, 569, 19282, 9072, 3073, 81, 31, 187, 50270, 29, 335, 31, 187, 50266, 29, 965, 31, 187, 29, 81, 31, 30519, 320, 247, 4605, 870, 81, 31, 187, 870, 965, 31, 187, 50270, 870, 335, 31, 535, 50274, 870, 2851, 31, 535, 50276, 870, 1206, 31, 535, 50276, 535, 50274, 870, 30892, 31, 187, 50276, 870, 2420, 31, 8863, 50274, 870, 2154, 31, 187, 50274, 29, 6285, 31, 187, 50274, 29, 2154, 966, 5473, 23290, 14, 918, 1355, 16262, 187, 50272, 29, 66, 3860, 5473, 4598, 41287, 406, 16, 87, 19, 16, 14399, 64, 6756, 64, 19560, 932, 16, 9029, 15, 6113, 64, 36, 59, 15, 2974, 16262, 30803, 2033, 66, 31, 187, 50274, 870, 2154, 31, 187, 50274, 29, 2154, 31, 187, 50270, 29, 73, 19, 31, 187, 50268, 29, 66, 3860, 5473, 4, 10008, 14, 9029, 8, 187, 50267, 2437, 5473, 39844, 279, 14, 23112, 8, 187, 50267, 2203, 14, 23112, 5473, 33683, 8, 187, 50267, 2203, 14, 5598, 5473, 4, 39844, 279, 16262, 187, 50266, 9278, 1227, 6682, 16, 14399, 64, 6756, 64, 19560, 932, 16, 27, 301, 187, 50268, 870, 66, 31, 187, 50268, 29, 1288, 31, 187, 50268, 29, 6795, 31, 14422, 271, 6024, 19676, 2603, 870, 6795, 31, 187, 50270, 870, 73, 19, 31, 187, 50274, 870, 2154, 31, 2756, 50274, 29, 2154, 2654, 5473, 10008, 14, 9029, 8, 966, 5473, 33683, 7158, 279, 14, 2915, 16262, 187, 50272, 5429, 50276, 29, 73, 20, 2730, 2551, 966, 568, 20099, 64, 33722, 3, 4060, 568, 20099, 5816, 27, 29180, 14, 36, 59, 15, 522, 532, 466, 15, 32045, 1138, 32896, 870, 2551, 3073, 73, 20, 31, 187, 50274, 29, 3456, 966, 568, 38256, 3845, 1138, 9278, 1227, 6682, 16, 14399, 64, 6756, 64, 19560, 932, 16, 1449, 29288, 2227, 1787, 187, 1518, 187, 92, 187, 50276, 7, 11956, 28, 22337, 64, 255, 7, 11956, 28, 27, 708, 11956, 28, 9638, 14, 2640, 14, 938, 2145, 27, 1706, 27, 1839, 38040, 7, 11956, 36739, 187, 50276, 7, 11956, 28, 39055, 64, 255, 7, 11956, 28, 27, 708, 11956, 28, 9638, 14, 2640, 14, 938, 2145, 27, 1706, 27, 1839, 38040, 7, 11956, 36739, 187, 50276, 7, 11956, 28, 301, 7, 11956, 28, 27, 3387, 29288, 2227, 1787, 13, 187, 50276, 7, 11956, 28, 1590, 7, 11956, 28, 27, 708, 11956, 28, 7504, 7, 11956, 36739, 187, 50276, 7, 11956, 28, 22108, 64, 4537, 12896, 7, 11956, 28, 27, 24345, 187, 50276, 7, 11956, 28, 44991, 7, 11956, 28, 27, 544, 187, 50274, 92, 187, 50272, 7, 11956, 28, 301, 7, 11956, 28, 27, 2030, 1235, 4590, 9726, 13, 187, 50272, 7, 11956, 28, 1590, 7, 11956, 28, 27, 708, 11956, 28, 11930, 337, 7, 11956, 36739, 187, 50272, 7, 11956, 28, 5564, 7, 11956, 28, 27, 708, 11956, 28, 11930, 337, 7, 11956, 36739, 187, 50272, 7, 11956, 28, 10008, 7, 11956, 28, 27, 3635, 187, 50274, 94, 187, 50276, 1092, 187, 50276, 7, 11956, 28, 7397, 5904, 7, 11956, 28, 27, 544, 187, 50274, 92, 187, 50272, 7, 11956, 28, 301, 7, 11956, 28, 27, 41219, 3763, 1540, 1839, 13, 187, 50272, 7, 11956, 28, 1590, 7, 11956, 28, 27, 708, 11956, 28, 25727, 1320, 337, 7, 11956, 36739, 187, 50272, 7, 11956, 28, 5564, 7, 11956, 28, 27, 708, 11956, 28, 25727, 1320, 337, 7, 11956, 36739, 187, 50272, 7, 11956, 28, 10008, 7, 11956, 28, 27, 3635, 187, 50274, 94, 187, 50276, 62, 187, 28379, 3456, 31, 535, 50276, 29, 73, 20, 2730, 2551, 966, 568, 20099, 64, 33722, 3, 4060, 568, 20099, 5816, 27, 29180, 14, 36, 59, 15, 522, 532, 466, 15, 12928, 1138, 18246, 870, 2551, 3073, 73, 20, 31, 187, 50276, 29, 2420, 966, 5473, 2420, 16262, 187, 50274, 29, 45826, 31, 187, 50272, 29, 1206, 31, 187, 50270, 29, 394, 2730, 2551, 966, 568, 20099, 64, 33722, 3, 4060, 568, 20099, 5816, 27, 29180, 14, 36, 59, 15, 522, 532, 466, 15, 3575, 64, 1590, 1138, 11030, 9424, 870, 2551, 3073, 394, 31, 187, 50270, 29, 394, 2730, 2551, 966, 568, 20099, 64, 33722, 3, 4060, 568, 20099, 5816, 27, 29180, 14, 36, 59, 15, 522, 532, 466, 15, 10008, 1138, 11185, 870, 2551, 3073, 394, 31, 187, 50272, 870, 1206, 31, 187, 50274, 870, 45826, 31, 187, 50274, 29, 30892, 31, 187, 50270, 29, 1206, 3740, 5473, 11814, 14, 4897, 27, 31952, 9, 10637, 13, 10637, 13, 10637, 558, 16262, 187, 50274, 29, 2851, 31, 187, 50272, 29, 9072, 31, 12428, 64, 301, 2033, 9072, 2730, 1288, 31, 187, 50272, 29, 6795, 31, 187, 50270, 29, 2551, 966, 568, 20099, 64, 33722, 3, 4060, 568, 20099, 5816, 27, 29180, 14, 36, 59, 15, 522, 532, 466, 15, 21676, 1138, 36301, 870, 2551, 31, 187, 50270, 187, 50272, 870, 6795, 31, 187, 50274, 870, 2851, 31, 187, 50274, 29, 2851, 31, 187, 50272, 187, 29, 81, 31, 23974, 407, 8593, 870, 81, 31, 535, 50270, 29, 81, 2730, 9072, 31, 13159, 569, 19282, 9072, 3073, 81, 31, 187, 50270, 29, 335, 31, 187, 50266, 29, 965, 31, 187, 29, 81, 31, 30519, 320, 247, 22008, 870, 81, 31, 187, 870, 965, 31, 187, 50270, 870, 335, 31, 535, 50274, 870, 2851, 31, 535, 50276, 870, 1206, 31, 535, 50276, 187, 50276, 29, 1206, 3740, 5473, 11814, 14, 4897, 27, 31952, 9, 10637, 13, 10637, 13, 10637, 558, 16262, 187, 50274, 29, 2851, 31, 187, 50272, 29, 9072, 31, 25590, 64, 301, 2033, 9072, 2730, 1288, 31, 187, 50272, 29, 6795, 31, 187, 50270, 29, 2551, 966, 568, 20099, 64, 33722, 3, 4060, 568, 20099, 5816, 27, 29180, 14, 36, 59, 15, 522, 532, 466, 15, 21676, 1138, 36301, 870, 2551, 31, 187, 50270, 187, 50272, 870, 6795, 31, 187, 50274, 870, 2851, 31, 187, 50274, 29, 2851, 31, 187, 50272, 187, 29, 81, 31, 23974, 407, 8889, 870, 81, 31, 535, 50270, 29, 81, 2730, 9072, 31, 13159, 569, 19282, 9072, 3073, 81, 31, 187, 50270, 29, 335, 31, 187, 50266, 29, 965, 31, 187, 29, 81, 31, 30519, 320, 247, 22008, 870, 81, 31, 187, 870, 965, 31, 187, 50270, 870, 335, 31, 535, 50274, 870, 2851, 31, 535, 50276, 870, 1206, 31, 535, 50276, 187, 50276, 29, 1206, 3740, 5473, 11814, 14, 4897, 27, 31952, 9, 10637, 13, 10637, 13, 10637, 558, 16262, 187, 50274, 29, 2851, 31, 187, 50272, 29, 9072, 31, 301, 2033, 9072, 2730, 1288, 31, 187, 50272, 29, 6795, 31, 187, 50270, 29, 2551, 966, 568, 20099, 64, 33722, 3, 4060, 568, 20099, 5816, 27, 29180, 14, 36, 59, 15, 522, 532, 466, 15, 17354, 1138, 28463, 870, 2551, 31, 187, 50270, 187, 50272, 870, 6795, 31, 187, 50274, 870, 2851, 31, 187, 50274, 29, 2851, 31, 187, 50272, 187, 50270, 29, 81, 2730, 9072, 31, 13159, 569, 19282, 9072, 3073, 81, 31, 187, 50270, 29, 335, 31, 187, 50266, 29, 965, 31, 187, 29, 81, 31, 30519, 320, 271, 21674, 13, 2876, 432, 337, 281, 12842, 5810, 4508, 760, 355, 15671, 360, 6555, 5810, 13, 2317, 13, 17433, 6443, 10107, 582, 3500, 257, 1490, 10, 342, 642, 4283, 390, 28417, 2317, 8239, 81, 31, 187, 870, 965, 31, 187, 50270, 870, 335, 31, 535, 50274, 870, 2851, 31, 535, 50276, 870, 1206, 31, 535, 50276, 535, 50274, 870, 30892, 31, 187, 50276, 870, 2420, 31, 8863, 50274, 870, 2154, 31, 187, 50274, 29, 6285, 31, 187, 50274, 29, 2154, 966, 5473, 23290, 14, 918, 1355, 16262, 187, 50272, 29, 66, 3860, 5473, 4598, 41287, 406, 16, 87, 19, 16, 14399, 64, 6756, 64, 19560, 932, 16, 11183, 15, 6113, 64, 36, 59, 15, 2974, 16262, 30803, 2033, 66, 31, 187, 50274, 870, 2154, 31, 187, 50274, 29, 2154, 31, 187, 50270, 29, 73, 19, 31, 187, 50268, 29, 66, 3860, 5473, 4, 10008, 14, 11183, 8, 187, 50267, 2437, 5473, 39844, 279, 14, 23112, 8, 187, 50267, 2203, 14, 23112, 5473, 33683, 8, 187, 50267, 2203, 14, 5598, 5473, 4, 39844, 279, 16262, 187, 50266, 16143, 1227, 6682, 16, 14399, 64, 6756, 64, 19560, 932, 16, 27, 301, 187, 50268, 870, 66, 31, 187, 50268, 29, 1288, 31, 187, 50268, 29, 6795, 31, 11241, 271, 6024, 19676, 2603, 870, 6795, 31, 187, 50270, 870, 73, 19, 31, 187, 50274, 870, 2154, 31, 2756, 50274, 29, 2154, 2654, 5473, 10008, 14, 11183, 8, 966, 5473, 33683, 7158, 279, 14, 2915, 16262, 187, 50272, 5429, 50276, 29, 73, 20, 2730, 2551, 966, 568, 20099, 64, 33722, 3, 4060, 568, 20099, 5816, 27, 29180, 14, 36, 59, 15, 522, 532, 466, 15, 32045, 1138, 32896, 870, 2551, 3073, 73, 20, 31, 187, 50274, 29, 3456, 966, 568, 38256, 3845, 1138, 16143, 1227, 6682, 16, 14399, 64, 6756, 64, 19560, 932, 16, 1449, 29288, 2227, 1787, 187, 92, 187, 50276, 7, 11956, 28, 14399, 64, 6756, 64, 22108, 7, 11956, 28, 27, 551, 187, 50274, 7, 11956, 28, 25590, 64, 7886, 7, 11956, 28, 27, 544, 187, 50272, 7, 11956, 28, 25727, 1320, 337, 7, 11956, 28, 187, 50274, 1092, 187, 50274, 7, 11956, 28, 12428, 64, 2352, 7, 11956, 28, 27, 544, 187, 50272, 1099, 1235, 4590, 9726, 187, 50274, 62, 187, 50276, 94, 187, 94, 187, 1518, 187, 92, 187, 50276, 7, 11956, 28, 22337, 64, 255, 7, 11956, 28, 27, 708, 11956, 28, 9638, 14, 2640, 14, 938, 2145, 27, 1706, 27, 1839, 38040, 7, 11956, 36739, 187, 50276, 7, 11956, 28, 39055, 64, 255, 7, 11956, 28, 27, 708, 11956, 28, 9638, 14, 2640, 14, 938, 2145, 27, 1706, 27, 1839, 38040, 7, 11956, 36739, 187, 50276, 7, 11956, 28, 301, 7, 11956, 28, 27, 3387, 29288, 2227, 1787, 13, 187, 50276, 7, 11956, 28, 1590, 7, 11956, 28, 27, 708, 11956, 28, 7504, 7, 11956, 36739, 187, 50276, 7, 11956, 28, 22108, 64, 4537, 12896, 7, 11956, 28, 27, 24345, 187, 50276, 7, 11956, 28, 44991, 7, 11956, 28, 27, 544, 187, 50274, 92, 187, 50272, 7, 11956, 28, 301, 7, 11956, 28, 27, 2030, 1235, 4590, 9726, 13, 187, 50272, 7, 11956, 28, 1590, 7, 11956, 28, 27, 708, 11956, 28, 11930, 337, 7, 11956, 36739, 187, 50272, 7, 11956, 28, 5564, 7, 11956, 28, 27, 708, 11956, 28, 11930, 337, 7, 11956, 36739, 187, 50272, 7, 11956, 28, 10008, 7, 11956, 28, 27, 3635, 187, 50274, 94, 187, 50276, 1092, 187, 50276, 7, 11956, 28, 7397, 5904, 7, 11956, 28, 27, 544, 187, 50274, 92, 187, 50272, 7, 11956, 28, 301, 7, 11956, 28, 27, 41219, 3763, 1540, 1839, 13, 187, 50272, 7, 11956, 28, 1590, 7, 11956, 28, 27, 708, 11956, 28, 25727, 1320, 337, 7, 11956, 36739, 187, 50272, 7, 11956, 28, 5564, 7, 11956, 28, 27, 708, 11956, 28, 25727, 1320, 337, 7, 11956, 36739, 187, 50272, 7, 11956, 28, 10008, 7, 11956, 28, 27, 3635, 187, 50274, 94, 187, 50276, 62, 187, 28379, 3456, 31, 535, 50276, 29, 73, 20, 2730, 2551, 966, 568, 20099, 64, 33722, 3, 4060, 568, 20099, 5816, 27, 29180, 14, 36, 59, 15, 522, 532, 466, 15, 12928, 1138, 18246, 870, 2551, 3073, 73, 20, 31, 187, 50276, 29, 2420, 966, 5473, 2420, 16262, 187, 50274, 29, 45826, 31, 187, 50272, 29, 1206, 31, 187, 50270, 29, 394, 2730, 2551, 966, 568, 20099, 64, 33722, 3, 4060, 568, 20099, 5816, 27, 29180, 14, 36, 59, 15, 522, 532, 466, 15, 3575, 64, 1590, 1138, 11030, 9424, 870, 2551, 3073, 394, 31, 187, 50270, 29, 394, 2730, 2551, 966, 568, 20099, 64, 33722, 3, 4060, 568, 20099, 5816, 27, 29180, 14, 36, 59, 15, 522, 532, 466, 15, 10008, 1138, 11185, 870, 2551, 3073, 394, 31, 187, 50272, 870, 1206, 31, 187, 50274, 870, 45826, 31, 187, 50274, 29, 30892, 31, 187, 50270, 29, 1206, 3740, 5473, 11814, 14, 4897, 27, 31952, 9, 10637, 13, 10637, 13, 10637, 558, 16262, 187, 50274, 29, 2851, 31, 187, 50272, 29, 9072, 31, 12428, 64, 301, 2033, 9072, 2730, 1288, 31, 187, 50272, 29, 6795, 31, 187, 50270, 29, 2551, 966, 568, 20099, 64, 33722, 3, 4060, 568, 20099, 5816, 27, 29180, 14, 36, 59, 15, 522, 532, 466, 15, 21676, 1138, 36301, 870, 2551, 31, 187, 50270, 187, 50272, 870, 6795, 31, 187, 50274, 870, 2851, 31, 187, 50274, 29, 2851, 31, 187, 50272, 187, 29, 81, 31, 23974, 407, 8593, 870, 81, 31, 535, 50270, 29, 81, 2730, 9072, 31, 13159, 569, 19282, 9072, 3073, 81, 31, 187, 50270, 29, 335, 31, 187, 50266, 29, 965, 31, 187, 29, 81, 31, 30519, 320, 247, 22008, 870, 81, 31, 187, 870, 965, 31, 187, 50270, 870, 335, 31, 535, 50274, 870, 2851, 31, 535, 50276, 870, 1206, 31, 535, 50276, 187, 50276, 29, 1206, 3740, 5473, 11814, 14, 4897, 27, 31952, 9, 10637, 13, 10637, 13, 10637, 558, 16262, 187, 50274, 29, 2851, 31, 187, 50272, 29, 9072, 31, 25590, 64, 301, 2033, 9072, 2730, 1288, 31, 187, 50272, 29, 6795, 31, 187, 50270, 29, 2551, 966, 568, 20099, 64, 33722, 3, 4060, 568, 20099, 5816, 27, 29180, 14, 36, 59, 15, 522, 532, 466, 15, 21676, 1138, 36301, 870, 2551, 31, 187, 50270, 187, 50272, 870, 6795, 31, 187, 50274, 870, 2851, 31, 187, 50274, 29, 2851, 31, 187, 50272, 187, 29, 81, 31, 23974, 407, 8889, 870, 81, 31, 535, 50270, 29, 81, 2730, 9072, 31, 13159, 569, 19282, 9072, 3073, 81, 31, 187, 50270, 29, 335, 31, 187, 50266, 29, 965, 31, 187, 29, 81, 31, 30519, 320, 247, 22008, 870, 81, 31, 187, 870, 965, 31, 187, 50270, 870, 335, 31, 535, 50274, 870, 2851, 31, 535, 50276, 870, 1206, 31, 535, 50276, 187, 50276, 29, 1206, 3740, 5473, 11814, 14, 4897, 27, 31952, 9, 10637, 13, 10637, 13, 10637, 558, 16262, 187, 50274, 29, 2851, 31, 187, 50272, 29, 9072, 31, 301, 2033, 9072, 2730, 1288, 31, 187, 50272, 29, 6795, 31, 187, 50270, 29, 2551, 966, 568, 20099, 64, 33722, 3, 4060, 568, 20099, 5816, 27, 29180, 14, 36, 59, 15, 522, 532, 466, 15, 17354, 1138, 28463, 870, 2551, 31, 187, 50270, 187, 50272, 870, 6795, 31, 187, 50274, 870, 2851, 31, 187, 50274, 29, 2851, 31, 187, 50272, 187, 50270, 29, 81, 2730, 9072, 31, 13159, 569, 19282, 9072, 3073, 81, 31, 187, 50270, 29, 335, 31, 187, 50266, 29, 965, 31, 187, 29, 81, 31, 30519, 320, 271, 21674, 13, 2876, 432, 337, 281, 12842, 5810, 4508, 760, 355, 15671, 360, 6555, 5810, 13, 2317, 13, 17433, 6443, 10107, 582, 3500, 257, 1490, 10, 342, 642, 4283, 390, 28417, 2317, 8239, 81, 31, 187, 870, 965, 31, 187, 50270, 870, 335, 31, 535, 50274, 870, 2851, 31, 535, 50276, 870, 1206, 31, 535, 50276, 187, 50276, 29, 1206, 3740, 5473, 11814, 14, 4897, 27, 31952, 9, 10637, 13, 10637, 13, 10637, 558, 16262, 187, 50274, 29, 2851, 31, 187, 50272, 29, 9072, 31, 14399, 64, 6756, 64, 22108, 2033, 9072, 2730, 1288, 31, 187, 50272, 29, 6795, 31, 187, 50270, 29, 2551, 966, 568, 20099, 64, 33722, 3, 4060, 568, 20099, 5816, 27, 29180, 14, 36, 59, 15, 522, 532, 466, 15, 17354, 1138, 28463, 870, 2551, 31, 187, 50270, 187, 50272, 870, 6795, 31, 187, 50274, 870, 2851, 31, 187, 50274, 29, 2851, 31, 187, 50272, 187, 50270, 29, 81, 2730, 9072, 31, 13159, 569, 19282, 9072, 3073, 81, 31, 187, 50270, 29, 335, 31, 187, 50266, 29, 965, 31, 187, 29, 81, 31, 30519, 320, 247, 22272, 870, 81, 31, 187, 870, 965, 31, 187, 50270, 870, 335, 31, 535, 50274, 870, 2851, 31, 535, 50276, 870, 1206, 31, 535, 50274, 29, 1206, 3740, 5473, 11814, 14, 4897, 27, 31952, 9, 9519, 13, 9519, 13, 9519, 558, 16262, 187, 50274, 29, 2851, 31, 187, 50272, 29, 9072, 31, 14399, 64, 6756, 64, 22108, 60, 1590, 62, 2033, 9072, 2730, 1288, 31, 187, 50272, 29, 6795, 31, 187, 50270, 29, 2551, 966, 568, 20099, 64, 33722, 3, 4060, 568, 20099, 5816, 27, 29180, 14, 36, 59, 15, 522, 532, 466, 15, 21676, 1138, 36301, 870, 2551, 31, 187, 50270, 187, 50272, 870, 6795, 31, 187, 50274, 870, 2851, 31, 187, 50274, 29, 2851, 31, 187, 50272, 187, 50270, 29, 81, 2730, 9072, 31, 13159, 569, 19282, 9072, 3073, 81, 31, 187, 50270, 29, 335, 31, 187, 50266, 29, 965, 31, 187, 29, 81, 31, 30519, 320, 247, 4605, 870, 81, 31, 187, 870, 965, 31, 187, 50270, 870, 335, 31, 535, 50274, 870, 2851, 31, 535, 50276, 870, 1206, 31, 535, 50276, 187, 50276, 29, 1206, 3740, 5473, 11814, 14, 4897, 27, 31952, 9, 9519, 13, 9519, 13, 9519, 558, 16262, 187, 50274, 29, 2851, 31, 187, 50272, 29, 9072, 31, 14399, 64, 6756, 64, 22108, 60, 12428, 64, 2352, 62, 2033, 9072, 2730, 1288, 31, 187, 50272, 29, 6795, 31, 187, 50270, 29, 2551, 966, 568, 20099, 64, 33722, 3, 4060, 568, 20099, 5816, 27, 29180, 14, 36, 59, 15, 522, 532, 466, 15, 21676, 1138, 36301, 870, 2551, 31, 187, 50270, 13, 708, 5792, 28, 2551, 966, 29722, 11956, 28, 20099, 64, 33722, 7, 11956, 28, 4060, 29722, 11956, 28, 20099, 5816, 27, 29180, 14, 36, 59, 15, 522, 532, 466, 15, 18789, 64, 31263, 7, 11956, 13309, 7332, 28, 37490, 1876, 12997, 7, 5792, 30624, 2551, 7, 7332, 28, 187, 50272, 870, 6795, 31, 187, 50274, 870, 2851, 31, 187, 50274, 29, 2851, 31, 187, 50272, 187, 29, 81, 31, 1848, 3859, 9566, 8593, 342, 1677, 44077, 870, 81, 31, 535, 50270, 29, 81, 2730, 9072, 31, 13159, 569, 19282, 9072, 3073, 81, 31, 187, 50270, 29, 335, 31, 187, 50266, 29, 965, 31, 187, 29, 81, 31, 30519, 320, 271, 3781, 273, 667, 1511, 870, 81, 31, 187, 870, 965, 31, 187, 50270, 870, 335, 31, 535, 50274, 870, 2851, 31, 535, 50276, 870, 1206, 31, 535, 50276, 187, 50276, 29, 1206, 3740, 5473, 11814, 14, 4897, 27, 31952, 9, 9519, 13, 9519, 13, 9519, 558, 16262, 187, 50274, 29, 2851, 31, 187, 50272, 29, 9072, 31, 14399, 64, 6756, 64, 22108, 60, 25590, 64, 2352, 62, 2033, 9072, 2730, 1288, 31, 187, 50272, 29, 6795, 31, 187, 50270, 29, 2551, 966, 568, 20099, 64, 33722, 3, 4060, 568, 20099, 5816, 27, 29180, 14, 36, 59, 15, 522, 532, 466, 15, 21676, 1138, 36301, 870, 2551, 31, 187, 50270, 13, 708, 5792, 28, 2551, 966, 29722, 11956, 28, 20099, 64, 33722, 7, 11956, 28, 4060, 29722, 11956, 28, 20099, 5816, 27, 29180, 14, 36, 59, 15, 522, 532, 466, 15, 18789, 64, 31263, 7, 11956, 13309, 7332, 28, 37490, 1876, 12997, 7, 5792, 30624, 2551, 7, 7332, 28, 187, 50272, 870, 6795, 31, 187, 50274, 870, 2851, 31, 187, 50274, 29, 2851, 31, 187, 50272, 187, 29, 81, 31, 1848, 3859, 9566, 8889, 342, 1677, 44077, 8239, 81, 31, 535, 50270, 29, 81, 2730, 9072, 31, 13159, 569, 19282, 9072, 3073, 81, 31, 187, 50270, 29, 335, 31, 187, 50266, 29, 965, 31, 187, 29, 81, 31, 30519, 320, 271, 3781, 273, 667, 1511, 870, 81, 31, 187, 870, 965, 31, 187, 50270, 870, 335, 31, 535, 50274, 870, 2851, 31, 535, 50276, 870, 1206, 31, 535, 50276, 2756, 50274, 870, 30892, 31, 187, 50276, 870, 2420, 31, 8863, 50274, 870, 2154, 31, 187, 870, 2154, 31, 535, 50276, 535, 50270, 187, 50272, 870, 2154, 31, 187, 50274, 870, 2154, 31, 187, 50274, 29, 6285, 31, 187, 50274, 29, 28497, 3073, 28497, 31, 187, 50276, 870, 2154, 31, 187, 50276, 29, 3866, 1511, 5473, 1156, 16, 14606, 8, 6740, 5473, 4598, 41287, 406, 16, 14606, 84, 16, 45268, 1070, 16, 19203, 15, 4305, 8, 3073, 3866, 31, 187, 29, 3866, 1511, 5473, 1156, 16, 14606, 8, 6740, 5473, 4598, 41287, 406, 16, 14606, 84, 16, 45268, 1070, 16, 24884, 14, 33683, 15, 4305, 8, 3073, 3866, 31, 187, 29, 3866, 1511, 5473, 1156, 16, 14606, 8, 6740, 5473, 4598, 41287, 406, 16, 14606, 84, 16, 45268, 1070, 16, 4025, 85, 1419, 15, 4305, 8, 3073, 3866, 31, 187, 29, 3866, 1511, 5473, 1156, 16, 14606, 8, 6740, 5473, 4598, 41287, 406, 16, 14606, 84, 16, 522, 532, 466, 15, 4305, 8, 3073, 3866, 31, 187, 870, 2915, 31, 187, 870, 2974, 31, 187 ]
<!DOCTYPE html> <html> <head> <title>Api Documentation</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> <meta name="viewport" content="width=device-width, initial-scale=1"> <link type='text/css' rel='stylesheet' href='../../apidoc/stylesheets/bundled/bootstrap.min.css'/> <link type='text/css' rel='stylesheet' href='../../apidoc/stylesheets/bundled/prettify.css'/> <link type='text/css' rel='stylesheet' href='../../apidoc/stylesheets/bundled/bootstrap-responsive.min.css'/> <link type='text/css' rel='stylesheet' href='../../apidoc/stylesheets/application.css'/> <!-- IE6-8 support of HTML5 elements --> <!--[if lt IE 9]> <script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> </head> <body> <div class="container-fluid"> <div class="row-fluid"> <div id='container'> <ul class='breadcrumb'> <li> <a href='../../apidoc/v2.cs_CZ.html'>Foreman v2</a> <span class='divider'>/</span> </li> <li class='active'> Auth source externals </li> <li class='pull-right'> &nbsp;[ <a href="../../apidoc/v2/auth_source_externals.pt_BR.html">pt_BR</a> | <a href="../../apidoc/v2/auth_source_externals.de.html">de</a> | <a href="../../apidoc/v2/auth_source_externals.it.html">it</a> | <a href="../../apidoc/v2/auth_source_externals.sv_SE.html">sv_SE</a> | <a href="../../apidoc/v2/auth_source_externals.zh_CN.html">zh_CN</a> | <a href="../../apidoc/v2/auth_source_externals.en_GB.html">en_GB</a> | <b><a href="../../apidoc/v2/auth_source_externals.cs_CZ.html">cs_CZ</a></b> | <a href="../../apidoc/v2/auth_source_externals.fr.html">fr</a> | <a href="../../apidoc/v2/auth_source_externals.ru.html">ru</a> | <a href="../../apidoc/v2/auth_source_externals.ja.html">ja</a> | <a href="../../apidoc/v2/auth_source_externals.es.html">es</a> | <a href="../../apidoc/v2/auth_source_externals.ko.html">ko</a> | <a href="../../apidoc/v2/auth_source_externals.ca.html">ca</a> | <a href="../../apidoc/v2/auth_source_externals.gl.html">gl</a> | <a href="../../apidoc/v2/auth_source_externals.en.html">en</a> | <a href="../../apidoc/v2/auth_source_externals.zh_TW.html">zh_TW</a> | <a href="../../apidoc/v2/auth_source_externals.nl_NL.html">nl_NL</a> | <a href="../../apidoc/v2/auth_source_externals.pl.html">pl</a> ] </li> </ul> <div class='page-header'> <h1> Auth source externals <br> <small></small> </h1> </div> <div class='accordion' id='accordion'> <hr> <div class='pull-right small'> <a href='../../apidoc/v2/auth_source_externals/index.cs_CZ.html'> >>> </a> </div> <div> <h2> <a href='#description-index' class='accordion-toggle' data-toggle='collapse' data-parent='#accordion'> GET /api/auth_source_externals </a> <br> <small>List external authentication sources</small> </h2> <h2> <a href='#description-index' class='accordion-toggle' data-toggle='collapse' data-parent='#accordion'> GET /api/locations/:location_id/auth_source_externals </a> <br> <small>List external authentication sources per location</small> </h2> <h2> <a href='#description-index' class='accordion-toggle' data-toggle='collapse' data-parent='#accordion'> GET /api/organizations/:organization_id/auth_source_externals </a> <br> <small>List external authentication sources per organization</small> </h2> </div> <div id='description-index' class='collapse accordion-body'> <h3><span class="translation_missing" title="translation missing: cs-CZ.apipie.examples">Examples</span></h3> <pre class="prettyprint">GET /api/auth_source_externals 200 { &quot;total&quot;: 1, &quot;subtotal&quot;: 1, &quot;page&quot;: 1, &quot;per_page&quot;: 20, &quot;search&quot;: null, &quot;sort&quot;: { &quot;by&quot;: null, &quot;order&quot;: null }, &quot;results&quot;: [ { &quot;created_at&quot;: &quot;2019-02-20 13:34:38 UTC&quot;, &quot;updated_at&quot;: &quot;2019-02-20 13:34:38 UTC&quot;, &quot;id&quot;: 408068537, &quot;name&quot;: &quot;External&quot;, &quot;locations&quot;: [], &quot;organizations&quot;: [] } ] }</pre> <h3><span class="translation_missing" title="translation missing: cs-CZ.apipie.params">Params</span></h3> <table class='table'> <thead> <tr> <th><span class="translation_missing" title="translation missing: cs-CZ.apipie.param_name">Param Name</span></th> <th><span class="translation_missing" title="translation missing: cs-CZ.apipie.description">Description</span></th> </tr> </thead> <tbody> <tr style='background-color:rgb(255,255,255);'> <td> <strong>location_id </strong><br> <small> <span class="translation_missing" title="translation missing: cs-CZ.apipie.optional">Optional</span> </small> </td> <td> <p>Scope by locations</p> <p><strong>Validations:</strong></p> <ul> <li> <p>Must be a Integer</p> </li> </ul> </td> </tr> <tr style='background-color:rgb(255,255,255);'> <td> <strong>organization_id </strong><br> <small> <span class="translation_missing" title="translation missing: cs-CZ.apipie.optional">Optional</span> </small> </td> <td> <p>Scope by organizations</p> <p><strong>Validations:</strong></p> <ul> <li> <p>Must be a Integer</p> </li> </ul> </td> </tr> <tr style='background-color:rgb(255,255,255);'> <td> <strong>search </strong><br> <small> <span class="translation_missing" title="translation missing: cs-CZ.apipie.optional">Optional</span> </small> </td> <td> <p>výsledky filtru</p> <p><strong>Validations:</strong></p> <ul> <li> <p>Must be a String</p> </li> </ul> </td> </tr> <tr style='background-color:rgb(255,255,255);'> <td> <strong>order </strong><br> <small> <span class="translation_missing" title="translation missing: cs-CZ.apipie.optional">Optional</span> </small> </td> <td> <p>Sort field and order, eg. ‘id DESC’</p> <p><strong>Validations:</strong></p> <ul> <li> <p>Must be a String</p> </li> </ul> </td> </tr> <tr style='background-color:rgb(255,255,255);'> <td> <strong>page </strong><br> <small> <span class="translation_missing" title="translation missing: cs-CZ.apipie.optional">Optional</span> </small> </td> <td> <p>stránkovat výsledky</p> <p><strong>Validations:</strong></p> <ul> <li> <p>Must be a String</p> </li> </ul> </td> </tr> <tr style='background-color:rgb(255,255,255);'> <td> <strong>per_page </strong><br> <small> <span class="translation_missing" title="translation missing: cs-CZ.apipie.optional">Optional</span> </small> </td> <td> <p>počet položek na požadavek</p> <p><strong>Validations:</strong></p> <ul> <li> <p>Must be a String</p> </li> </ul> </td> </tr> </tbody> </table> </div> <hr> <div class='pull-right small'> <a href='../../apidoc/v2/auth_source_externals/show.cs_CZ.html'> >>> </a> </div> <div> <h2> <a href='#description-show' class='accordion-toggle' data-toggle='collapse' data-parent='#accordion'> GET /api/auth_source_externals/:id </a> <br> <small>Show an external authentication source</small> </h2> </div> <div id='description-show' class='collapse accordion-body'> <h3><span class="translation_missing" title="translation missing: cs-CZ.apipie.examples">Examples</span></h3> <pre class="prettyprint">GET /api/auth_source_externals/408068537 200 { &quot;created_at&quot;: &quot;2019-02-20 13:34:38 UTC&quot;, &quot;updated_at&quot;: &quot;2019-02-20 13:34:38 UTC&quot;, &quot;id&quot;: 408068537, &quot;name&quot;: &quot;External&quot;, &quot;external_usergroups&quot;: [], &quot;locations&quot;: [ { &quot;id&quot;: 255093256, &quot;name&quot;: &quot;Location 1&quot;, &quot;title&quot;: &quot;Location 1&quot;, &quot;description&quot;: null } ], &quot;organizations&quot;: [ { &quot;id&quot;: 447626438, &quot;name&quot;: &quot;Organization 1&quot;, &quot;title&quot;: &quot;Organization 1&quot;, &quot;description&quot;: null } ] }</pre> <h3><span class="translation_missing" title="translation missing: cs-CZ.apipie.params">Params</span></h3> <table class='table'> <thead> <tr> <th><span class="translation_missing" title="translation missing: cs-CZ.apipie.param_name">Param Name</span></th> <th><span class="translation_missing" title="translation missing: cs-CZ.apipie.description">Description</span></th> </tr> </thead> <tbody> <tr style='background-color:rgb(255,255,255);'> <td> <strong>location_id </strong><br> <small> <span class="translation_missing" title="translation missing: cs-CZ.apipie.optional">Optional</span> </small> </td> <td> <p>Scope by locations</p> <p><strong>Validations:</strong></p> <ul> <li> <p>Must be a Integer</p> </li> </ul> </td> </tr> <tr style='background-color:rgb(255,255,255);'> <td> <strong>organization_id </strong><br> <small> <span class="translation_missing" title="translation missing: cs-CZ.apipie.optional">Optional</span> </small> </td> <td> <p>Scope by organizations</p> <p><strong>Validations:</strong></p> <ul> <li> <p>Must be a Integer</p> </li> </ul> </td> </tr> <tr style='background-color:rgb(255,255,255);'> <td> <strong>id </strong><br> <small> <span class="translation_missing" title="translation missing: cs-CZ.apipie.required">Required</span> </small> </td> <td> <p><strong>Validations:</strong></p> <ul> <li> <p>Must be an identifier, string from 1 to 128 characters containing only alphanumeric characters, space, underscore(_), hypen(-) with no leading or trailing space.</p> </li> </ul> </td> </tr> </tbody> </table> </div> <hr> <div class='pull-right small'> <a href='../../apidoc/v2/auth_source_externals/update.cs_CZ.html'> >>> </a> </div> <div> <h2> <a href='#description-update' class='accordion-toggle' data-toggle='collapse' data-parent='#accordion'> PUT /api/auth_source_externals/:id </a> <br> <small>Update an external authentication source</small> </h2> </div> <div id='description-update' class='collapse accordion-body'> <h3><span class="translation_missing" title="translation missing: cs-CZ.apipie.examples">Examples</span></h3> <pre class="prettyprint">PUT /api/auth_source_externals/408068537 { &quot;auth_source_external&quot;: { &quot;organization_names&quot;: [ &quot;Organization 1&quot; ], &quot;location_ids&quot;: [ 255093256 ] } } 200 { &quot;created_at&quot;: &quot;2019-02-20 13:34:38 UTC&quot;, &quot;updated_at&quot;: &quot;2019-02-20 13:34:38 UTC&quot;, &quot;id&quot;: 408068537, &quot;name&quot;: &quot;External&quot;, &quot;external_usergroups&quot;: [], &quot;locations&quot;: [ { &quot;id&quot;: 255093256, &quot;name&quot;: &quot;Location 1&quot;, &quot;title&quot;: &quot;Location 1&quot;, &quot;description&quot;: null } ], &quot;organizations&quot;: [ { &quot;id&quot;: 447626438, &quot;name&quot;: &quot;Organization 1&quot;, &quot;title&quot;: &quot;Organization 1&quot;, &quot;description&quot;: null } ] }</pre> <h3><span class="translation_missing" title="translation missing: cs-CZ.apipie.params">Params</span></h3> <table class='table'> <thead> <tr> <th><span class="translation_missing" title="translation missing: cs-CZ.apipie.param_name">Param Name</span></th> <th><span class="translation_missing" title="translation missing: cs-CZ.apipie.description">Description</span></th> </tr> </thead> <tbody> <tr style='background-color:rgb(255,255,255);'> <td> <strong>location_id </strong><br> <small> <span class="translation_missing" title="translation missing: cs-CZ.apipie.optional">Optional</span> </small> </td> <td> <p>Scope by locations</p> <p><strong>Validations:</strong></p> <ul> <li> <p>Must be a Integer</p> </li> </ul> </td> </tr> <tr style='background-color:rgb(255,255,255);'> <td> <strong>organization_id </strong><br> <small> <span class="translation_missing" title="translation missing: cs-CZ.apipie.optional">Optional</span> </small> </td> <td> <p>Scope by organizations</p> <p><strong>Validations:</strong></p> <ul> <li> <p>Must be a Integer</p> </li> </ul> </td> </tr> <tr style='background-color:rgb(255,255,255);'> <td> <strong>id </strong><br> <small> <span class="translation_missing" title="translation missing: cs-CZ.apipie.required">Required</span> </small> </td> <td> <p><strong>Validations:</strong></p> <ul> <li> <p>Must be an identifier, string from 1 to 128 characters containing only alphanumeric characters, space, underscore(_), hypen(-) with no leading or trailing space.</p> </li> </ul> </td> </tr> <tr style='background-color:rgb(255,255,255);'> <td> <strong>auth_source_external </strong><br> <small> <span class="translation_missing" title="translation missing: cs-CZ.apipie.required">Required</span> </small> </td> <td> <p><strong>Validations:</strong></p> <ul> <li> <p>Must be a Hash</p> </li> </ul> </td> </tr> <tr style='background-color:rgb(250,250,250);'> <td> <strong>auth_source_external[name] </strong><br> <small> <span class="translation_missing" title="translation missing: cs-CZ.apipie.optional">Optional</span> </small> </td> <td> <p><strong>Validations:</strong></p> <ul> <li> <p>Must be a String</p> </li> </ul> </td> </tr> <tr style='background-color:rgb(250,250,250);'> <td> <strong>auth_source_external[location_ids] </strong><br> <small> <span class="translation_missing" title="translation missing: cs-CZ.apipie.optional">Optional</span> , &lt;span class=&quot;translation_missing&quot; title=&quot;translation missing: cs-CZ.apipie.nil_allowed&quot;&gt;Nil Allowed&lt;/span&gt; </small> </td> <td> <p>REPLACE locations with given ids</p> <p><strong>Validations:</strong></p> <ul> <li> <p>Must be an array of any type</p> </li> </ul> </td> </tr> <tr style='background-color:rgb(250,250,250);'> <td> <strong>auth_source_external[organization_ids] </strong><br> <small> <span class="translation_missing" title="translation missing: cs-CZ.apipie.optional">Optional</span> , &lt;span class=&quot;translation_missing&quot; title=&quot;translation missing: cs-CZ.apipie.nil_allowed&quot;&gt;Nil Allowed&lt;/span&gt; </small> </td> <td> <p>REPLACE organizations with given ids.</p> <p><strong>Validations:</strong></p> <ul> <li> <p>Must be an array of any type</p> </li> </ul> </td> </tr> </tbody> </table> </div> </div> </div> </div> <hr> <footer></footer> </div> <script type='text/javascript' src='../../apidoc/javascripts/bundled/jquery.js'></script> <script type='text/javascript' src='../../apidoc/javascripts/bundled/bootstrap-collapse.js'></script> <script type='text/javascript' src='../../apidoc/javascripts/bundled/prettify.js'></script> <script type='text/javascript' src='../../apidoc/javascripts/apipie.js'></script> </body> </html>
214,345
Github
[ 605, 187, 605, 50276, 49, 36450, 26311, 15, 36036, 187, 605, 50276, 2350, 38863, 12610, 22568, 187, 605, 187, 605, 50276, 32331, 407, 12705, 14188, 1225, 570, 87, 327, 337, 16, 26, 16, 1036, 15, 187, 605, 50276, 20968, 20919, 4022, 12705, 14188, 1225, 570, 87, 15, 1876, 3570, 10827, 15, 187, 605, 187, 187, 2948, 12693, 18938, 187, 187, 24210, 6582, 26311, 551, 187, 50274, 187, 50274, 605, 42525, 27, 428, 33106, 187, 50274, 187, 50274, 4659, 11632, 5044, 31696, 49, 36450, 26311, 9, 14705, 27, 27695, 336, 13, 7602, 27, 18603, 13, 5778, 27, 13528, 4769, 27068, 13, 4311, 27, 18603, 10, 5204, 6582, 26311, 551, 187, 50270, 4997, 873, 9671, 15888, 2214, 26311, 9, 36047, 27, 6582, 26311, 10, 551, 187, 50266, 36047, 15, 9337, 10715, 426, 465, 4280, 30296, 10715, 2214, 4515, 187, 50266, 36047, 15, 2013, 3149, 2374, 49767, 426, 3221, 187, 50266, 36047, 15, 12292, 272, 11594, 426, 33547, 7366, 16910, 272, 11594, 9, 1590, 27, 465, 34508, 7366, 16910, 272, 11594, 38, 511, 5677, 10, 187, 50270, 94, 187, 50270, 187, 50270, 4997, 873, 26311, 24921, 15545, 2374, 37599, 23716, 9, 36047, 27, 6582, 26311, 13, 7602, 27, 18603, 10, 551, 187, 50266, 36047, 15, 27076, 426, 884, 15, 17, 1227, 7602, 187, 50270, 94, 187, 50270, 187, 50270, 1059, 2118, 26311, 27, 47409, 45539, 26311, 426, 47409, 45539, 26311, 9, 2364, 5455, 27, 346, 3321, 2807, 187, 50270, 1178, 9671, 15888, 2214, 26311, 9, 15106, 26311, 10, 187, 50270, 1178, 26311, 24921, 15545, 2374, 37599, 23716, 9, 15106, 26311, 13, 7602, 27, 7602, 10, 187, 50270, 15106, 26311, 15, 4064, 3902, 426, 6640, 3902, 9, 10206, 8682, 27, 5313, 15, 19078, 13883, 10, 187, 50270, 15106, 26311, 15, 936, 3902, 426, 6640, 3902, 9, 10206, 8682, 27, 5313, 15, 3229, 1250, 13883, 10, 187, 50270, 15106, 26311, 15, 12292, 272, 11594, 426, 33547, 7366, 16910, 272, 11594, 9, 8519, 30183, 27, 470, 15, 17, 13, 470, 15, 2759, 13, 470, 15, 2537, 13, 337, 15, 361, 10, 187, 50270, 187, 50270, 1059, 4311, 26311, 27, 47409, 45539, 26311, 426, 47409, 45539, 26311, 9, 2364, 5455, 27, 346, 16702, 15, 7527, 2807, 187, 50270, 1178, 9671, 15888, 2214, 26311, 9, 7527, 26311, 10, 187, 50270, 1178, 26311, 24921, 15545, 2374, 37599, 23716, 9, 7527, 26311, 13, 7602, 27, 7602, 10, 187, 50270, 7527, 26311, 15, 4064, 3902, 426, 4311, 187, 50270, 7527, 26311, 15, 936, 3902, 426, 337, 187, 50270, 7527, 26311, 15, 12292, 272, 11594, 426, 33547, 7366, 16910, 272, 11594, 9, 8519, 30183, 27, 470, 15, 17, 13, 470, 15, 2759, 13, 470, 15, 2537, 13, 337, 15, 361, 10, 187, 50270, 187, 50270, 1059, 3579, 26311, 426, 6582, 26311, 6998, 1082, 187, 50270, 1178, 9671, 15888, 2214, 26311, 9, 10495, 26311, 10, 187, 50270, 1178, 26311, 24921, 15545, 2374, 37599, 23716, 9, 10495, 26311, 13, 7602, 27, 7602, 10, 187, 50270, 10495, 26311, 15, 10779, 569, 426, 544, 15106, 26311, 13, 4311, 26311, 62, 187, 50270, 10495, 26311, 15, 2043, 4769, 426, 48187, 5732, 17831, 4769, 1082, 559, 5778, 187, 50270, 187, 50270, 2309, 3579, 26311, 187, 50274, 94, 187, 50274, 187, 50274, 4659, 11632, 5044, 8116, 1034, 49, 36450, 26311, 9, 14705, 27, 27695, 336, 13, 7602, 27, 18603, 13, 5778, 27, 13528, 4769, 27068, 13, 4311, 27, 18603, 10, 5204, 6582, 26311, 551, 187, 50270, 4997, 873, 9671, 15888, 2214, 26311, 9, 36047, 27, 6582, 26311, 10, 551, 187, 50266, 36047, 15, 9337, 10715, 426, 465, 4280, 30296, 10715, 2214, 4515, 187, 50266, 36047, 15, 2013, 3149, 2374, 49767, 426, 3221, 187, 50266, 36047, 15, 12292, 272, 11594, 426, 33547, 7366, 16910, 272, 11594, 9, 1590, 27, 465, 34508, 7366, 16910, 272, 11594, 38, 511, 5677, 10, 187, 50270, 94, 187, 50270, 187, 50270, 4997, 873, 26311, 24921, 15545, 2374, 37599, 23716, 9, 36047, 27, 6582, 26311, 13, 7602, 27, 18603, 10, 551, 187, 50266, 36047, 15, 27076, 426, 884, 15, 17, 1227, 7602, 187, 50270, 94, 187, 50270, 187, 50270, 1059, 2118, 26311, 27, 47409, 45539, 26311, 426, 47409, 45539, 26311, 9, 2364, 5455, 27, 346, 3321, 2807, 187, 50270, 1178, 9671, 15888, 2214, 26311, 9, 15106, 26311, 10, 187, 50270, 1178, 26311, 24921, 15545, 2374, 37599, 23716, 9, 15106, 26311, 13, 7602, 27, 7602, 10, 187, 50270, 15106, 26311, 15, 4064, 3902, 426, 6640, 3902, 9, 10206, 8682, 27, 5313, 15, 19078, 13883, 10, 187, 50270, 15106, 26311, 15, 936, 3902, 426, 6640, 3902, 9, 10206, 8682, 27, 5313, 15, 3229, 1250, 13883, 10, 187, 50270, 15106, 26311, 15, 12292, 272, 11594, 426, 33547, 7366, 16910, 272, 11594, 9, 8519, 30183, 27, 337, 15, 17, 13, 470, 15, 17, 13, 337, 15, 17, 13, 470, 15, 2251, 10, 187, 50270, 187, 50270, 1059, 4311, 26311, 27, 47409, 45539, 26311, 426, 47409, 45539, 26311, 9, 2364, 5455, 27, 346, 16702, 15, 7527, 2807, 187, 50270, 1178, 9671, 15888, 2214, 26311, 9, 7527, 26311, 10, 187, 50270, 1178, 26311, 24921, 15545, 2374, 37599, 23716, 9, 7527, 26311, 13, 7602, 27, 7602, 10, 187, 50270, 7527, 26311, 15, 4064, 3902, 426, 337, 187, 50270, 7527, 26311, 15, 936, 3902, 426, 4311, 187, 50270, 7527, 26311, 15, 12292, 272, 11594, 426, 33547, 7366, 16910, 272, 11594, 9, 8519, 30183, 27, 337, 15, 17, 13, 470, 15, 17, 13, 337, 15, 17, 13, 470, 15, 2251, 10, 187, 50270, 187, 50270, 1059, 3579, 26311, 426, 6582, 26311, 6998, 1082, 187, 50270, 1178, 9671, 15888, 2214, 26311, 9, 10495, 26311, 10, 187, 50270, 1178, 26311, 24921, 15545, 2374, 37599, 23716, 9, 10495, 26311, 13, 7602, 27, 7602, 10, 187, 50270, 10495, 26311, 15, 10779, 569, 426, 544, 15106, 26311, 13, 4311, 26311, 62, 187, 50270, 10495, 26311, 15, 2043, 4769, 426, 48187, 5732, 17831, 4769, 1082, 559, 5778, 187, 50270, 187, 50270, 2309, 3579, 26311, 187, 50274, 94, 187, 50274, 187, 94, 187 ]
// // PieceAnimation.swift // ADPuzzleLoader // // Created by Anton Domashnev on 1/9/16. // Copyright © 2016 Anton Domashnev. All rights reserved. // import UIKit extension CAAnimation { //MARK: - Interface static func basicForwardPieceAnimation(piece: Piece, velocity: Double, delay: CFTimeInterval, scale: Double) -> CAAnimation { func setDefaultValuesForAnimation(animation: CAAnimation) { animation.fillMode = kCAFillModeForwards animation.removedOnCompletion = false animation.timingFunction = CAMediaTimingFunction(name: kCAMediaTimingFunctionEaseOut) } func setAnimationDurationBasedOnVelocity(animation: CAAnimation, velocity: Double) { animation.duration = 10.0 / velocity } let moveAnimation: CABasicAnimation = CABasicAnimation(keyPath: "position") setDefaultValuesForAnimation(moveAnimation) setAnimationDurationBasedOnVelocity(moveAnimation, velocity: velocity) moveAnimation.fromValue = NSValue(CGPoint: piece.initialPosition) moveAnimation.toValue = NSValue(CGPoint: piece.desiredPosition) moveAnimation.timingFunction = CAMediaTimingFunction(controlPoints: 0.0, 0.84, 0.49, 1.00) let scaleAnimation: CABasicAnimation = CABasicAnimation(keyPath: "transform.scale") setDefaultValuesForAnimation(scaleAnimation) setAnimationDurationBasedOnVelocity(scaleAnimation, velocity: velocity) scaleAnimation.fromValue = scale scaleAnimation.toValue = 1 scaleAnimation.timingFunction = CAMediaTimingFunction(controlPoints: 0.0, 0.84, 0.49, 1.00) let forwardAnimation = CAAnimationGroup() setDefaultValuesForAnimation(forwardAnimation) setAnimationDurationBasedOnVelocity(forwardAnimation, velocity: velocity) forwardAnimation.animations = [moveAnimation, scaleAnimation] forwardAnimation.beginTime = CACurrentMediaTime() + delay return forwardAnimation } static func basicBackwardPieceAnimation(piece: Piece, velocity: Double, delay: CFTimeInterval, scale: Double) -> CAAnimation { func setDefaultValuesForAnimation(animation: CAAnimation) { animation.fillMode = kCAFillModeForwards animation.removedOnCompletion = false animation.timingFunction = CAMediaTimingFunction(name: kCAMediaTimingFunctionEaseOut) } func setAnimationDurationBasedOnVelocity(animation: CAAnimation, velocity: Double) { animation.duration = 10.0 / velocity } let moveAnimation: CABasicAnimation = CABasicAnimation(keyPath: "position") setDefaultValuesForAnimation(moveAnimation) setAnimationDurationBasedOnVelocity(moveAnimation, velocity: velocity) moveAnimation.fromValue = NSValue(CGPoint: piece.initialPosition) moveAnimation.toValue = NSValue(CGPoint: piece.desiredPosition) moveAnimation.timingFunction = CAMediaTimingFunction(controlPoints: 1.0, 0.0, 1.0, 0.67) let scaleAnimation: CABasicAnimation = CABasicAnimation(keyPath: "transform.scale") setDefaultValuesForAnimation(scaleAnimation) setAnimationDurationBasedOnVelocity(scaleAnimation, velocity: velocity) scaleAnimation.fromValue = 1 scaleAnimation.toValue = scale scaleAnimation.timingFunction = CAMediaTimingFunction(controlPoints: 1.0, 0.0, 1.0, 0.67) let forwardAnimation = CAAnimationGroup() setDefaultValuesForAnimation(forwardAnimation) setAnimationDurationBasedOnVelocity(forwardAnimation, velocity: velocity) forwardAnimation.animations = [moveAnimation, scaleAnimation] forwardAnimation.beginTime = CACurrentMediaTime() + delay return forwardAnimation } }
214,346
Github
[ 3122, 187, 475, 25807, 64, 13816, 7955, 15, 68, 428, 247, 629, 273, 6254, 323, 399, 8875, 1754, 4095, 187, 475, 187, 475, 8283, 313, 68, 10, 48930, 561, 29663, 17291, 654, 2148, 78, 561, 33, 17869, 17291, 15, 615, 31, 187, 475, 8283, 313, 68, 10, 4059, 23161, 17850, 29869, 32150, 654, 80, 14, 85, 518, 17850, 33, 84, 518, 312, 406, 4635, 15, 23731, 31, 187, 475, 187, 475, 21737, 762, 253, 2426, 273, 253, 11963, 4214, 5259, 4637, 13, 2715, 374, 15, 187, 1738, 187, 187, 4, 3709, 346, 69, 547, 15, 73, 3, 187, 187, 4659, 1048, 45850, 7955, 64, 1088, 9, 2855, 23673, 64, 13816, 7955, 475, 13816, 7955, 13, 1018, 4772, 4537, 475, 8340, 13, 2657, 50274, 5056, 1385, 13, 2343, 567, 64, 85, 475, 10946, 10, 187, 92, 187, 186, 2855, 23673, 64, 69, 547, 475, 69, 547, 426, 45850, 7955, 1168, 9486, 64, 2203, 28, 187, 186, 46914, 64, 46176, 9, 14061, 558, 187, 186, 20172, 23673, 64, 11342, 22302, 64, 8045, 2362, 28, 535, 186, 16056, 64, 4348, 64, 20331, 6395, 69, 547, 1168, 4348, 558, 535, 186, 6050, 6522, 69, 547, 1168, 3620, 64, 4348, 64, 11950, 3857, 25807, 1168, 42942, 64, 11209, 2295, 470, 10, 551, 996, 186, 35837, 64, 936, 64, 14061, 6395, 69, 547, 1168, 13816, 7955, 64, 14061, 13, 708, 14061, 13, 308, 14476, 64, 19118, 37086, 38274, 558, 996, 186, 16056, 64, 25919, 64, 20331, 6395, 69, 547, 1168, 4348, 558, 996, 186, 44128, 1874, 996, 186, 43020, 64, 14061, 6395, 69, 547, 1168, 13816, 7955, 64, 14061, 13, 708, 14061, 558, 996, 186, 338, 313, 27644, 64, 33965, 9, 6259, 1228, 988, 186, 2309, 428, 8147, 20525, 9316, 28, 996, 186, 16056, 64, 4348, 64, 20331, 6395, 69, 547, 1168, 4348, 558, 187, 186, 94, 535, 186, 6441, 1178, 6395, 8045, 13, 470, 13, 13322, 9, 8045, 4027, 187, 186, 338, 313, 69, 547, 1168, 3620, 64, 4348, 64, 11950, 10, 551, 996, 186, 8045, 15, 4348, 64, 8581, 15, 881, 426, 7167, 41016, 64, 6766, 1848, 56, 29349, 64, 30212, 64, 32740, 64, 22574, 28, 996, 186, 8045, 15, 4348, 64, 8581, 15, 8581, 426, 25807, 1168, 3620, 64, 4348, 64, 5560, 2239, 470, 28, 996, 186, 69, 547, 1168, 3620, 64, 4348, 64, 11950, 426, 3221, 28, 6886, 186, 5560, 426, 1054, 64, 85, 9, 5056, 13, 1385, 13, 13322, 9, 8045, 15, 4348, 64, 8581, 4027, 187, 186, 94, 2010, 551, 996, 186, 8045, 15, 69, 547, 64, 42942, 15, 881, 426, 2664, 186, 18243, 41016, 64, 6766, 1848, 56, 29349, 64, 30212, 64, 37, 8875, 64, 10311, 3801, 24352, 28, 996, 186, 8045, 15, 69, 547, 64, 42942, 15, 42942, 426, 25807, 1168, 42942, 64, 11209, 28, 996, 186, 69, 547, 1168, 42942, 64, 11209, 426, 470, 28, 6886, 186, 5560, 426, 1054, 64, 85, 9, 5056, 13, 1385, 13, 13322, 9, 8045, 15, 69, 547, 64, 42942, 4027, 187, 186, 94, 535, 186, 16056, 64, 25919, 64, 20331, 6395, 69, 547, 1168, 4348, 558, 535, 186, 338, 313, 12557, 64, 936, 64, 4537, 9, 8340, 13, 708, 8045, 13, 1385, 1228, 996, 186, 2309, 428, 38, 16250, 28, 535, 186, 2309, 1385, 28, 187, 94, 187, 187, 4659, 4772, 30209, 64, 85, 45850, 7955, 64, 30209, 9, 2855, 23673, 64, 13816, 7955, 475, 13816, 7955, 13, 1577, 1873, 475, 3140, 13, 2657, 50271, 30209, 64, 2420, 475, 14061, 10, 187, 92, 187, 186, 2855, 23673, 64, 69, 547, 475, 69, 547, 426, 45850, 7955, 1168, 9486, 64, 2203, 28, 187, 186, 876, 30209, 64, 85, 3394, 28, 535, 186, 30209, 64, 14061, 9, 3140, 13, 708, 69, 547, 1168, 13816, 7955, 64, 14061, 13, 3343, 558, 535, 186, 16056, 64, 4348, 64, 20331, 6395, 69, 547, 1168, 4348, 558, 187, 186, 338, 313, 69, 547, 1168, 3620, 64, 4348, 64, 11950, 2785, 25807, 1168, 42942, 64, 11209, 3613, 470, 10, 996, 186, 20969, 426, 444, 5964, 2293, 1042, 1040, 444, 5964, 2293, 19000, 46236, 28, 187, 186, 7271, 996, 186, 20969, 426, 470, 28, 187, 186, 16056, 64, 25919, 64, 20331, 6395, 69, 547, 1168, 4348, 558, 535, 186, 2309, 3394, 28, 187, 94, 187, 187, 4659, 540, 45850, 7955, 64, 788, 64, 5374, 9, 2855, 23673, 64, 69, 547, 475, 69, 547, 13, 2991, 4772, 4537, 475, 1662, 10, 187, 92, 187, 186, 2855, 269, 88, 64, 10933, 475, 3620, 426, 269, 88, 64, 5598, 64, 10933, 9, 69, 547, 1168, 8522, 558, 187, 186, 2855, 23673, 64, 11342, 22302, 64, 788, 64, 5374, 8692, 28, 535, 186, 6441, 1178, 6395, 5374, 13, 470, 13, 13322, 9, 5374, 4027, 187, 186, 5374, 15, 881, 426, 7167, 41016, 64, 6766, 1848, 56, 29349, 64, 10560, 64, 37, 8875, 28, 187, 186, 5374, 15, 9290, 426, 1474, 1168, 9290, 1168, 4663, 28, 187, 186, 5355, 876, 1257, 1237, 9657, 7, 5374, 15, 38246, 60, 17, 62, 426, 27754, 64, 936, 64, 1257, 1237, 9, 3620, 1168, 5397, 64, 409, 60, 20, 9259, 187, 186, 5355, 876, 1257, 1237, 9657, 7, 5374, 15, 38246, 60, 21, 62, 426, 27754, 64, 936, 64, 1257, 1237, 9, 3620, 1168, 5397, 64, 409, 60, 21, 9259, 187, 186, 1344, 77, 26220, 9, 5374, 15, 10933, 64, 1590, 13, 1474, 64, 1590, 6395, 3620, 1168, 10933, 582, 996, 186, 23269, 9, 5374, 15, 10933, 64, 1590, 4027, 535, 186, 338, 313, 12557, 64, 936, 64, 4537, 9, 1662, 13, 708, 5374, 13, 13322, 9, 5374, 10689, 996, 186, 2309, 428, 38, 16250, 28, 535, 186, 2309, 470, 28, 187, 94, 187, 187, 4659, 540, 45850, 7955, 64, 4348, 9, 2855, 23673, 64, 69, 547, 475, 69, 547, 10, 187, 92, 187, 186, 565, 1486, 28, 535, 186, 16056, 64, 4348, 64, 20331, 6395, 69, 547, 1168, 4348, 558, 535, 186, 338, 313, 69, 547, 1168, 3620, 64, 4348, 64, 5560, 2295, 470, 10, 551, 996, 186, 69, 547, 1168, 3620, 64, 4348, 64, 5560, 426, 428, 18, 28, 996, 186, 1000, 426, 470, 28, 187, 186, 94, 2010, 551, 996, 186, 1000, 426, 428, 22917, 34608, 28, 187, 186, 94, 535, 186, 16056, 64, 25919, 64, 20331, 6395, 69, 547, 1168, 4348, 558, 535, 186, 2309, 1486, 28, 187, 94, 187, 187, 4659, 540, 45850, 7955, 64, 25919, 9, 2855, 23673, 64, 69, 547, 475, 69, 547, 10, 187, 92, 187, 186, 565, 1486, 28, 535, 186, 16056, 64, 4348, 64, 20331, 6395, 69, 547, 1168, 4348, 558, 535, 186, 338, 313, 69, 547, 1168, 3620, 64, 4348, 64, 5560, 2295, 428, 18, 10, 551, 996, 186, 69, 547, 1168, 3620, 64, 4348, 64, 5560, 426, 470, 28, 996, 186, 1000, 426, 470, 28, 187, 186, 94, 2010, 551, 996, 186, 1000, 426, 428, 22917, 2350, 10914, 28, 187, 186, 94, 535, 186, 16056, 64, 25919, 64, 20331, 6395, 69, 547, 1168, 4348, 558, 535, 186, 2309, 1486, 28, 187, 94, 187, 187, 4659, 540, 45850, 7955, 64, 16690, 9, 2855, 23673, 64, 13816, 7955, 475, 13816, 7955, 13, 1577, 1873, 475, 3140, 10, 187, 92, 187, 186, 2855, 23673, 64, 69, 547, 475, 69, 547, 426, 45850, 7955, 1168, 9486, 64, 2203, 28, 535, 186, 16056, 64, 4348, 64, 20331, 6395, 69, 547, 1168, 4348, 558, 187, 186, 338, 313, 69, 547, 1168, 3620, 64, 4348, 64, 5560, 2295, 428, 18, 10, 996, 186, 69, 547, 1168, 3620, 64, 4348, 64, 5560, 426, 470, 28, 187, 186, 16056, 64, 25919, 64, 20331, 6395, 69, 547, 1168, 4348, 558, 535, 186, 2309, 470, 28, 187, 94, 187, 187, 4659, 540, 45850, 7955, 64, 900, 19207, 9, 2855, 23673, 64, 13816, 7955, 475, 13816, 7955, 13, 1577, 1873, 475, 3140, 13, 988, 50271, 10790, 540, 20390, 13, 10698, 1048, 1736, 10, 187, 92, 187, 186, 2855, 23673, 64, 69, 547, 475, 69, 547, 426, 45850, 7955, 1168, 9486, 64, 2203, 28, 535, 186, 16065, 313, 14111, 10, 551, 187, 186, 5045, 7167, 41016, 64, 6766, 1848, 56, 29349, 64, 6527, 25156, 64, 9278, 64, 16615, 27, 996, 186, 2309, 45850, 7955, 64, 788, 64, 5374, 9, 69, 547, 13, 313, 4353, 4772, 4537, 9657, 1662, 558, 187, 186, 5045, 7167, 41016, 64, 6766, 1848, 56, 29349, 64, 6527, 25156, 64, 32740, 27, 996, 186, 2309, 45850, 7955, 64, 4348, 9, 69, 547, 558, 187, 186, 5045, 7167, 41016, 64, 6766, 1848, 56, 29349, 64, 6527, 25156, 64, 4037, 32740, 27, 996, 186, 2309, 45850, 7955, 64, 25919, 9, 69, 547, 558, 187, 186, 6986, 27, 996, 186, 2309, 428, 41188, 6527, 25156, 24840, 28, 187, 186, 94, 187, 94, 187, 187, 4, 16238, 21628, 64, 27550, 1194, 187, 4659, 540, 45850, 7955, 64, 38659, 64, 900, 19207, 9, 2855, 23673, 64, 13816, 7955, 475, 13816, 7955, 13, 1577, 1873, 475, 3140, 13, 2657, 50272, 10790, 540, 20390, 13, 10698, 1048, 1736, 10, 187, 92, 187, 186, 2309, 45850, 7955, 64, 900, 19207, 9, 13816, 7955, 13, 1873, 13, 20390, 13, 2657, 50275, 9, 10790, 1048, 10, 38659, 64, 4773, 9, 1662, 4027, 187, 94, 187, 4, 7271, 187, 4, 3182, 45850, 7955, 64, 38659, 64, 900, 19207, 5812, 187, 4, 7287, 187, 187, 565, 23673, 64, 69, 547, 64, 6953, 64, 13816, 7955, 9, 2855, 23673, 64, 69, 547, 475, 69, 547, 10, 187, 92, 187, 186, 4659, 1030, 1577, 23673, 64, 13816, 7955, 64, 2695, 38322, 426, 551, 996, 186, 15, 1088, 50269, 30, 45850, 7955, 64, 1088, 13, 996, 186, 15, 16690, 50272, 30, 45850, 7955, 64, 16690, 13, 996, 186, 15, 30209, 50269, 30, 45850, 7955, 64, 30209, 13, 996, 186, 15, 900, 19207, 50270, 30, 45850, 7955, 64, 900, 19207, 13, 996, 186, 15, 900, 19207, 64, 38659, 426, 45850, 7955, 64, 38659, 64, 900, 19207, 13, 187, 186, 4718, 187, 186, 2855, 23673, 64, 13816, 7955, 475, 13816, 7955, 28, 187, 186, 565, 1486, 28, 535, 186, 1000, 426, 23673, 64, 13816, 7955, 64, 1826, 9, 69, 547, 1168, 9290, 13, 346, 37, 8875, 995, 470, 13, 708, 13816, 7955, 558, 187, 186, 338, 313, 1000, 654, 470, 10, 996, 186, 2309, 1486, 28, 187, 186, 1344, 26220, 9, 13816, 7955, 1168, 1590, 13, 346, 37, 8875, 3287, 187, 186, 13816, 7955, 1168, 338, 584, 426, 7167, 41016, 64, 24023, 32568, 64, 3801, 9566, 64, 20941, 64, 37, 8875, 28, 187, 186, 13816, 7955, 1168, 2695, 426, 38322, 28, 187, 186, 13816, 7955, 1168, 9486, 64, 2203, 426, 25807, 28, 187, 186, 13816, 7955, 1168, 911, 7426, 426, 2032, 28, 535, 186, 2309, 470, 28, 187, 94, 187 ]
/* * dice_hwdep.c - a part of driver for DICE based devices * * Copyright (c) Clemens Ladisch <[email protected]> * Copyright (c) 2014 Takashi Sakamoto <[email protected]> * * Licensed under the terms of the GNU General Public License, version 2. */ #include "dice.h" static long hwdep_read(struct snd_hwdep *hwdep, char __user *buf, long count, loff_t *offset) { struct snd_dice *dice = hwdep->private_data; DEFINE_WAIT(wait); union snd_firewire_event event; spin_lock_irq(&dice->lock); while (!dice->dev_lock_changed && dice->notification_bits == 0) { prepare_to_wait(&dice->hwdep_wait, &wait, TASK_INTERRUPTIBLE); spin_unlock_irq(&dice->lock); schedule(); finish_wait(&dice->hwdep_wait, &wait); if (signal_pending(current)) return -ERESTARTSYS; spin_lock_irq(&dice->lock); } memset(&event, 0, sizeof(event)); if (dice->dev_lock_changed) { event.lock_status.type = SNDRV_FIREWIRE_EVENT_LOCK_STATUS; event.lock_status.status = dice->dev_lock_count > 0; dice->dev_lock_changed = false; count = min_t(long, count, sizeof(event.lock_status)); } else { event.dice_notification.type = SNDRV_FIREWIRE_EVENT_DICE_NOTIFICATION; event.dice_notification.notification = dice->notification_bits; dice->notification_bits = 0; count = min_t(long, count, sizeof(event.dice_notification)); } spin_unlock_irq(&dice->lock); if (copy_to_user(buf, &event, count)) return -EFAULT; return count; } static __poll_t hwdep_poll(struct snd_hwdep *hwdep, struct file *file, poll_table *wait) { struct snd_dice *dice = hwdep->private_data; __poll_t events; poll_wait(file, &dice->hwdep_wait, wait); spin_lock_irq(&dice->lock); if (dice->dev_lock_changed || dice->notification_bits != 0) events = EPOLLIN | EPOLLRDNORM; else events = 0; spin_unlock_irq(&dice->lock); return events; } static int hwdep_get_info(struct snd_dice *dice, void __user *arg) { struct fw_device *dev = fw_parent_device(dice->unit); struct snd_firewire_get_info info; memset(&info, 0, sizeof(info)); info.type = SNDRV_FIREWIRE_TYPE_DICE; info.card = dev->card->index; *(__be32 *)&info.guid[0] = cpu_to_be32(dev->config_rom[3]); *(__be32 *)&info.guid[4] = cpu_to_be32(dev->config_rom[4]); strlcpy(info.device_name, dev_name(&dev->device), sizeof(info.device_name)); if (copy_to_user(arg, &info, sizeof(info))) return -EFAULT; return 0; } static int hwdep_lock(struct snd_dice *dice) { int err; spin_lock_irq(&dice->lock); if (dice->dev_lock_count == 0) { dice->dev_lock_count = -1; err = 0; } else { err = -EBUSY; } spin_unlock_irq(&dice->lock); return err; } static int hwdep_unlock(struct snd_dice *dice) { int err; spin_lock_irq(&dice->lock); if (dice->dev_lock_count == -1) { dice->dev_lock_count = 0; err = 0; } else { err = -EBADFD; } spin_unlock_irq(&dice->lock); return err; } static int hwdep_release(struct snd_hwdep *hwdep, struct file *file) { struct snd_dice *dice = hwdep->private_data; spin_lock_irq(&dice->lock); if (dice->dev_lock_count == -1) dice->dev_lock_count = 0; spin_unlock_irq(&dice->lock); return 0; } static int hwdep_ioctl(struct snd_hwdep *hwdep, struct file *file, unsigned int cmd, unsigned long arg) { struct snd_dice *dice = hwdep->private_data; switch (cmd) { case SNDRV_FIREWIRE_IOCTL_GET_INFO: return hwdep_get_info(dice, (void __user *)arg); case SNDRV_FIREWIRE_IOCTL_LOCK: return hwdep_lock(dice); case SNDRV_FIREWIRE_IOCTL_UNLOCK: return hwdep_unlock(dice); default: return -ENOIOCTLCMD; } } #ifdef CONFIG_COMPAT static int hwdep_compat_ioctl(struct snd_hwdep *hwdep, struct file *file, unsigned int cmd, unsigned long arg) { return hwdep_ioctl(hwdep, file, cmd, (unsigned long)compat_ptr(arg)); } #else #define hwdep_compat_ioctl NULL #endif int snd_dice_create_hwdep(struct snd_dice *dice) { static const struct snd_hwdep_ops ops = { .read = hwdep_read, .release = hwdep_release, .poll = hwdep_poll, .ioctl = hwdep_ioctl, .ioctl_compat = hwdep_compat_ioctl, }; struct snd_hwdep *hwdep; int err; err = snd_hwdep_new(dice->card, "DICE", 0, &hwdep); if (err < 0) return err; strcpy(hwdep->name, "DICE"); hwdep->iface = SNDRV_HWDEP_IFACE_FW_DICE; hwdep->ops = ops; hwdep->private_data = dice; hwdep->exclusive = true; return 0; }
214,347
Github
[ 4, 34834, 4805, 16, 31333, 187, 4, 187, 4, 20378, 281, 1408, 1608, 16044, 4121, 275, 4204, 15125, 4438, 387, 7491, 673, 15, 187, 4, 20378, 14897, 27, 42947, 14889, 187, 4, 3555, 1297, 337, 15, 17, 428, 1638, 394, 16925, 4072, 187, 4, 15256, 524, 187, 4, 14311, 1268, 1491, 27, 187, 4, 448, 76, 5397, 27, 374, 16767, 8688, 8688, 187, 4, 11451, 27, 28441, 14049, 33957, 22, 17335, 187, 4, 1232, 1590, 27, 23524, 14, 9438, 187, 4, 10360, 27, 7903, 418, 87, 654, 4090, 15, 68, 15, 38884, 33, 23655, 15, 681, 21431, 187, 4, 14311, 13357, 84, 4805, 16, 348, 76, 5397, 1969, 1911, 20586, 4121, 3, 281, 823, 253, 14311, 2308, 15, 187, 4, 15256, 524, 187, 187, 4, 15256, 524, 187, 4, 12899, 84, 285, 4903, 285, 985, 12255, 15, 187, 187, 4, 12269, 1159, 6335, 187, 15, 1227, 14069, 16, 3373, 15, 69, 16, 4478, 15, 69, 16, 20619, 187, 187, 4, 9423, 326, 23245, 310, 598, 15, 187, 4, 187, 60, 7224, 11502, 30764, 2637, 94, 426, 3, 9820, 3, 5032, 2785, 10463, 470, 187, 187, 4, 12073, 15125, 187, 9536, 30, 1200, 16044, 4121, 14, 9438, 187, 4877, 3172, 1139, 33870, 11919, 16, 4805, 16, 859, 14, 9438, 187, 187, 4, 12899, 281, 253, 6661, 1873, 15, 187, 4, 187, 44286, 33870, 14069, 16, 1200, 16044, 4121, 14, 4658, 1173, 16, 5397, 15, 8456, 187, 187, 4, 23131, 568, 31528, 1197, 3, 187, 4, 30220, 568, 31528, 1197, 3, 187, 187, 4, 11668, 1557, 273, 33786, 3140, 15607, 187, 50202, 1227, 2044, 16, 6321, 27781, 9536, 374, 38271, 3620, 16, 8629, 2785, 2032, 187, 4, 348, 628, 12122, 23131, 35490, 30220, 3, 1227, 2044, 16, 6321, 27781, 9536, 187, 187, 4, 9423, 253, 6661, 1873, 4961, 15, 187, 4, 187, 338, 544, 2195, 428, 71, 370, 44286, 5032, 3706, 840, 187, 13088, 346, 510, 6661, 1873, 2550, 320, 1119, 1476, 187, 19874, 470, 187, 11125, 187, 187, 4, 12899, 281, 253, 5569, 1873, 15, 187, 4, 187, 32740, 64, 13690, 33870, 2044, 16, 4348, 16, 2377, 10404, 16, 1200, 16044, 4121, 187, 187, 4, 12899, 281, 253, 33786, 1873, 15, 187, 4, 187, 46288, 33870, 2044, 16, 6321, 27781, 9536, 16, 4239, 535, 187, 4, 15256, 524, 187, 187, 4, 15256, 524, 187, 4, 14311, 5760, 27, 187, 187, 22178, 10403, 30, 17, 187, 187, 4, 11075, 20586, 4121, 347, 4204, 15125, 15, 187, 4, 187, 5478, 1082, 551, 187, 338, 544, 428, 71, 370, 32740, 64, 13690, 25896, 840, 187, 13088, 12122, 9536, 310, 2168, 3515, 1476, 187, 19874, 470, 187, 7271, 187, 13088, 428, 79, 370, 3, 33768, 7224, 9536, 17168, 346, 187, 4, 1473, 15125, 1969, 5903, 370, 4877, 3172, 1139, 1969, 4537, 370, 23131, 12122, 4877, 3172, 1139, 428, 71, 370, 46288, 428, 68, 370, 44286, 2239, 1227, 3620, 16, 8629, 3, 187, 1473, 15125, 370, 4877, 3172, 1139, 428, 86, 428, 68, 370, 44286, 428, 71, 370, 46288, 187, 11125, 187, 187, 22178, 10403, 18340, 32, 187, 60, 370, 22178, 10403, 428, 2574, 470, 5032, 3857, 2323, 187, 13088, 187, 60, 370, 22178, 10403, 428, 2574, 470, 5032, 3857, 5181, 370, 32740, 64, 13690, 187, 2309, 370, 22178, 10403, 187, 94, 535, 187, 4, 21305, 20586, 4121, 15, 187, 4, 187, 13121, 1082, 551, 187, 13088, 428, 79, 370, 3, 32832, 1076, 1066, 7224, 9536, 17168, 346, 187, 24212, 21299, 428, 81, 7224, 46288, 94, 187, 22178, 10403, 18340, 32, 187, 60, 370, 22178, 10403, 428, 2574, 470, 5032, 187, 1109, 428, 71, 370, 32740, 64, 13690, 187, 1109, 428, 71, 7224, 46288, 94, 187, 13088, 187, 2309, 370, 22178, 10403, 187, 94, 187, 187, 4, 2594, 849, 359, 497, 1925, 15, 187, 5045, 12122, 18, 3, 275, 187, 5478, 10, 187, 5478, 187, 12723, 187, 13121, 10, 187, 13121, 187, 12723, 187, 1120, 435, 10, 187, 13121, 187, 5478, 187, 12723, 187, 1038, 1120, 435, 10, 187, 338, 544, 428, 71, 370, 32740, 64, 13690, 25896, 840, 187, 13121, 187, 5478, 187, 22178, 10403, 18340, 32, 187, 11125, 187, 12723, 187, 8581, 10, 187, 8581, 370, 4877, 3172, 1139, 187, 22178, 10403, 18340, 32, 187, 12723, 187, 5627, 187, 13088, 370, 3, 31838, 27, 370, 17, 551, 5478, 93, 13121, 93, 1120, 435, 93, 1038, 1120, 435, 93, 8581, 13272, 187, 22178, 10403, 30, 18, 187, 265, 317, 187, 187, 19874, 370, 22178, 10403, 187 ]
#!/bin/bash # # Script to run Shadowsocks in daemon mode at boot time. # ScriptAuthor: icyboy # Revision 1.0 - 14th Sep 2013 #==================================================================== # Run level information: # chkconfig: 2345 99 99 # Description: lightweight secured socks5 proxy # processname: ss-server # Author: Max Lv <[email protected]>; # Run "/sbin/chkconfig --add shadowsocks" to add the Run levels. #==================================================================== #==================================================================== # Paths and variables and system checks. # Source function library . /etc/rc.d/init.d/functions # Check that networking is up. # [ ${NETWORKING} ="yes" ] || exit 0 # Daemon NAME=shadowsocks-server DAEMON=/usr/bin/ss-server # Path to the configuration file. # CONF=/etc/shadowsocks-libev/config.json #USER="nobody" #GROUP="nobody" # Take care of pidfile permissions mkdir /var/run/$NAME 2>/dev/null || true #chown "$USER:$GROUP" /var/run/$NAME # Check the configuration file exists. # if [ ! -f $CONF ] ; then echo "The configuration file cannot be found!" exit 0 fi # Path to the lock file. # LOCK_FILE=/var/lock/subsys/shadowsocks # Path to the pid file. # PID=/var/run/$NAME/pid #==================================================================== #==================================================================== # Run controls: RETVAL=0 # Start shadowsocks as daemon. # start() { if [ -f $LOCK_FILE ]; then echo "$NAME is already running!" exit 0 else echo -n $"Starting ${NAME}: " #daemon --check $DAEMON --user $USER "$DAEMON -f $PID -c $CONF > /dev/null" daemon $DAEMON -u -c $CONF -f $PID fi RETVAL=$? [ $RETVAL -eq 0 ] && success echo [ $RETVAL -eq 0 ] && touch $LOCK_FILE return $RETVAL } # Stop shadowsocks. # stop() { echo -n $"Shutting down ${NAME}: " killproc -p ${PID} RETVAL=$? [ $RETVAL -eq 0 ] rm -f $LOCK_FILE rm -f ${PID} echo return $RETVAL } # See how we were called. case "$1" in start) start ;; stop) stop ;; restart) stop start ;; condrestart) if [ -f $LOCK_FILE ]; then stop start RETVAL=$? fi ;; status) status $DAEMON RETVAL=$? ;; *) echo $"Usage: $0 {start|stop|restart|condrestart|status}" RETVAL=1 esac exit $RETVAL
214,348
Github
[ 4, 8283, 313, 68, 10, 4695, 14, 6622, 6277, 399, 87, 1064, 249, 285, 24781, 15, 187, 4, 187, 4, 20609, 7648, 47428, 310, 15744, 18838, 494, 762, 253, 2426, 273, 20695, 7981, 15, 187, 4, 2594, 20695, 14, 17821, 1873, 390, 3944, 1358, 2700, 15, 25249, 1505, 15, 2061, 16, 17130, 16, 2225, 14, 21997, 15, 5581, 187, 4, 2518, 10521, 187, 9, 3914, 10, 5204, 187, 50276, 13686, 15, 68, 1109, 2785, 30, 12166, 535, 50276, 68, 1109, 15, 4478, 64, 15227, 2272, 426, 5204, 187, 50274, 5, 2073, 60, 2203, 14, 15227, 494, 62, 8539, 14382, 5204, 187, 50272, 5, 293, 426, 3019, 2520, 10, 535, 50272, 5903, 16801, 426, 5204, 187, 50270, 5, 293, 15, 13863, 27174, 11004, 8539, 23112, 3914, 293, 15, 15227, 494, 2073, 936, 6542, 8539, 3985, 310, 337, 10, 535, 50272, 5, 293, 15, 15227, 494, 9, 187, 50270, 4774, 23495, 11375, 5496, 27, 2032, 187, 50270, 11025, 3378, 27, 370, 293, 15, 2203, 2073, 15227, 494, 14, 11025, 14, 3113, 3401, 187, 50270, 13393, 27, 370, 293, 15, 2203, 2073, 15227, 494, 14, 13393, 3401, 187, 50270, 6953, 27, 2451, 16801, 187, 50270, 11183, 27, 5204, 187, 50268, 2352, 426, 8168, 187, 50268, 1542, 2328, 64, 301, 275, 370, 293, 15, 15227, 494, 2073, 936, 6542, 3401, 187, 50266, 2352, 15, 11340, 2328, 64, 301, 15, 13481, 33692, 60, 2850, 69, 32666, 72, 13, 45381, 187, 50268, 2203, 426, 12166, 187, 50268, 2203, 16369, 293, 15, 9573, 2073, 301, 3401, 62, 426, 44077, 187, 50268, 1352, 5996, 3914, 293, 15, 9573, 2073, 2203, 14, 15227, 494, 11470, 941, 10, 187, 50268, 5903, 16801, 1082, 187, 50272, 10, 535, 50276, 6999, 3306, 481, 2038, 5204, 187, 50274, 68, 1109, 15, 4478, 64, 15227, 2272, 1082, 535, 50276, 6999, 3306, 481, 20742, 26626, 5204, 187, 50274, 68, 1109, 15, 4478, 64, 15227, 2272, 1082, 187, 187, 10, 19386, 187 ]
# Copyright (c) 2008-2013 Michael Dvorkin and contributors. # # Fat Free CRM is freely distributable under the terms of MIT license. # See MIT-LICENSE file or http://www.opensource.org/licenses/mit-license.php #------------------------------------------------------------------------------ (($) -> window.crm ||= {} crm.init_sortables = -> $('[data-sortable]').each -> $el = $(this) checkEmpty = -> $el.children('.empty').toggle($el.sortable('toArray').length is 1) $el.sortable( forcePlaceholderSize: true connectWith: $el.data('sortable-connect-with') handle: $el.data('sortable-handle') create: checkEmpty update: -> ids = [] for dom_id in $el.sortable('toArray') ids.push dom_id.replace(/[^\d]/g, '') data = {} data[$el.attr('id')] = ids $.post($el.attr('data-sortable'), data) checkEmpty() ) $(document).ready -> crm.init_sortables() $(document).ajaxComplete -> crm.init_sortables() ) jQuery
214,349
Github
[ 14219, 15564, 22158, 187, 29, 8547, 31, 187, 50276, 29, 2154, 187, 50274, 87, 14, 251, 27, 67, 568, 187, 50272, 2, 3701, 187, 50270, 9, 187, 50268, 66, 187, 50268, 13, 187, 50268, 67, 187, 50270, 10, 187, 50272, 92, 187, 50270, 28, 187, 50272, 94, 187, 50274, 3, 187, 50276, 3073, 2154, 31, 187, 870, 8547, 31, 187 ]
<!--{}--> <template> <div v-on:b=" !function ( a , b ) { ; } " ></div> </template>
214,350
Github
[ 3182, 8850, 187, 50276, 8, 19203, 1383, 187, 50276, 8, 19777, 6443, 1383, 187, 50276, 8, 2135, 15801, 1383, 187, 50276, 1353, 351, 1241, 16, 4492, 45447, 1383, 187, 50276, 8, 17920, 16, 24353, 1383, 187, 50276, 626, 2068, 2, 36451, 16, 24353, 4717, 16395, 45447, 15, 2974, 8, 187, 1092, 1159, 9, 1366, 13830, 8247, 15801, 13, 13829, 45447, 7104, 13, 4559, 267, 3145, 13, 187, 50274, 24353, 4717, 16395, 45447, 14968, 10, 551, 187, 50276, 8, 2327, 7654, 5618, 187, 50276, 2044, 4559, 267, 4717, 16395, 45447, 3145, 426, 4559, 267, 3145, 15, 31930, 7506, 187, 50274, 42145, 27, 686, 1911, 14, 12428, 14, 28935, 14, 24353, 1383, 187, 50274, 8547, 27, 42315, 8547, 9, 24353, 4717, 16395, 45447, 14968, 582, 187, 50274, 5564, 27, 686, 4717, 27036, 48091, 1383, 187, 50274, 536, 4312, 27, 686, 4717, 1383, 187, 50274, 44103, 27, 1159, 9, 10121, 10, 551, 187, 50272, 2520, 15, 4492, 426, 4610, 15, 4492, 28, 187, 50272, 2520, 15, 12428, 426, 4610, 15, 12428, 28, 187, 50272, 2520, 15, 44991, 426, 4610, 15, 44991, 28, 187, 50272, 40644, 4717, 16395, 45447, 3145, 24856, 12185, 47977, 44103, 15, 4065, 9, 2520, 558, 187, 50274, 2023, 187, 50274, 2915, 27, 1159, 1082, 551, 187, 50272, 2309, 436, 15, 8547, 7506, 187, 50270, 12428, 64, 301, 27, 436, 15, 12428, 13, 187, 50270, 44991, 27, 436, 15, 44991, 15, 936, 17635, 1082, 187, 50272, 9897, 187, 50274, 2023, 187, 50274, 251, 20127, 27, 1159, 1082, 551, 187, 50272, 2044, 14218, 2618, 426, 436, 10506, 27174, 28935, 14, 301, 3609, 8539, 1208, 1874, 535, 50272, 338, 6522, 28935, 2618, 10, 551, 187, 50270, 2520, 15, 1178, 33388, 2073, 36510, 1383, 686, 36840, 14218, 40219, 29996, 28935, 14, 301, 5137, 187, 50270, 2309, 28, 187, 50272, 94, 535, 50272, 2520, 15, 1178, 31886, 2073, 41350, 4328, 14218, 1051, 5137, 187, 50272, 2044, 1566, 426, 747, 13829, 45447, 7104, 1874, 187, 50272, 7645, 15, 15261, 7506, 187, 50270, 4492, 64, 301, 27, 436, 15, 4492, 13, 187, 50270, 12428, 64, 301, 27, 436, 15, 12428, 13, 187, 50270, 28935, 64, 301, 27, 14218, 2618, 187, 50272, 2023, 551, 187, 50270, 12566, 27, 1159, 1082, 551, 187, 50268, 2520, 15, 10483, 9, 5672, 558, 187, 50270, 7165, 13245, 9, 2520, 582, 187, 50270, 3775, 27, 1159, 9, 7645, 13, 2380, 10, 551, 187, 50268, 2520, 15, 8250, 31886, 1874, 187, 50268, 338, 313, 10927, 15, 10927, 17635, 10, 551, 187, 50266, 2520, 15, 1178, 33388, 2073, 36510, 1383, 2380, 15, 10927, 17635, 15, 3775, 64, 4856, 558, 187, 50268, 94, 187, 50268, 7271, 551, 187, 50266, 2520, 15, 1178, 33388, 2073, 36510, 1383, 436, 15, 3775, 21611, 558, 187, 50268, 94, 187, 50270, 7165, 13245, 9, 2520, 10, 187, 50272, 9897, 187, 50274, 94, 187, 50276, 9897, 535, 50276, 2309, 4559, 267, 4717, 16395, 45447, 3145, 28, 187, 9897, 187 ]
define([ 'jquery', 'underscore', 'backbone', 'models/linkPeer', 'views/modal', 'text!templates/modalAddLocPeer.html' ], function($, _, Backbone, LinkPeerModel, ModalView, modalAddLocPeerTemplate) { 'use strict'; var ModalAddLocPeerView = ModalView.extend({ className: 'add-location-peer-modal', template: _.template(modalAddLocPeerTemplate), title: 'Add Location Peer', okText: 'Add', initialize: function(options) { this.link = options.link; this.location = options.location; this.locations = options.locations; ModalAddLocPeerView.__super__.initialize.call(this); }, body: function() { return this.template({ location_id: this.location, locations: this.locations.toJSON() }); }, onOk: function() { var peerId = this.$('.peer-id select').val(); if (!peerId) { this.setAlert('danger', 'Missing peer.', '.peer-id'); return; } this.setLoading('Adding location peer...'); var model = new LinkPeerModel(); model.save({ link_id: this.link, location_id: this.location, peer_id: peerId }, { success: function() { this.close(true); }.bind(this), error: function(model, response) { this.clearLoading(); if (response.responseJSON) { this.setAlert('danger', response.responseJSON.error_msg); } else { this.setAlert('danger', this.errorMsg); } }.bind(this) }); } }); return ModalAddLocPeerView; });
214,351
Github
[ 92, 187, 50276, 3, 301, 1381, 346, 10228, 14, 48915, 14, 483, 8491, 995, 187, 50276, 3, 1590, 1381, 346, 49518, 14, 48915, 6282, 8491, 995, 187, 50276, 3, 39464, 1381, 551, 187, 50274, 3, 23713, 1381, 551, 187, 50272, 3, 2621, 494, 1381, 3221, 13, 187, 50272, 3, 13994, 12729, 1381, 3221, 13, 187, 50272, 3, 39217, 21333, 1381, 551, 187, 50270, 3, 32029, 1381, 346, 67, 7042, 995, 187, 50270, 3, 2877, 1381, 31268, 187, 50272, 2023, 187, 50272, 3, 2845, 5495, 1381, 551, 187, 50270, 3, 10228, 14, 48915, 1381, 495, 187, 50272, 2023, 187, 50272, 3, 20617, 569, 1381, 551, 187, 50270, 3, 28659, 1381, 346, 58, 3827, 3, 187, 50272, 94, 187, 50274, 94, 187, 50276, 2023, 187, 50276, 3, 14267, 1381, 346, 37, 16443, 3, 187, 94 ]
{ "id": "stone-egg-outfit", "name": "Stone-egg Outfit", "games": { "nh": { "orderable": false, "customizable": false, "sellPrice": { "currency": "bells", "value": 1200 }, "recipe": { "stone-egg": 3 }, "variations": { "yellow": "Yellow" } } }, "category": "Dresses" }
214,352
Github
[ 14, 70, 28222, 8608, 324, 462, 64, 43488, 64, 3620, 187 ]
-e ../datadog_checks_dev
214,353
Github
[ 9438, 27, 187, 50276, 631, 27, 495, 22543, 187, 187, 10167, 27, 187, 50276, 13259, 27, 187, 50274, 1590, 27, 9005, 14, 5397, 14, 9229, 187, 50276, 18534, 27, 187, 50274, 5397, 27, 187, 50272, 9438, 27, 187, 50270, 14769, 27, 187, 50268, 4, 11317, 27, 19421, 33, 7280, 15, 681, 27, 38, 587, 85, 57, 466, 16, 5397, 14, 38589, 15, 14769, 1852, 40, 6666, 16740, 5225, 14769, 5690, 230, 12613, 230, 28610, 30886, 187, 50268, 11317, 27, 5987, 1358, 7280, 15, 681, 16, 38, 587, 85, 57, 466, 16, 5397, 14, 38589, 15, 14769, 187, 50268, 817, 162, 227, 239, 20557, 97, 28154, 14318, 232, 15, 20622, 16401, 28154, 14318, 232, 34811, 5225, 12105, 7280, 16740, 5225, 28154, 14318, 232, 187, 50268, 8716, 14, 34605, 27, 187, 50266, 14, 3596, 14, 38589, 187, 50272, 817, 11894, 121, 27937, 18434, 45314, 187, 50272, 1968, 27, 6303, 187, 4, 39807, 32313, 40500, 40715, 28791, 1458, 31436, 12105, 7585, 46419, 24017, 45261, 28305, 5225, 22701, 109, 44002, 6238, 22, 31436, 12105, 41488, 14129, 125, 49271, 5225, 22701, 109, 44002, 187, 50276, 39807, 37365, 27, 187, 50274, 5465, 27, 47038, 187, 50274, 631, 27, 608, 31436, 187, 50274, 19721, 27, 12141, 187, 50274, 15760, 27, 12141, 187, 187, 70, 459, 4530, 27, 187, 50276, 8780, 27, 187, 50274, 10613, 14, 6434, 27, 187, 50272, 6986, 30989, 27, 3944, 1358, 70, 459, 4530, 24, 2874, 15, 681, 27, 24, 2874, 16, 70, 459, 4530, 16, 187, 187, 4, 39807, 37365, 32313, 40500, 42205, 28791, 209, 6238, 162, 237, 114, 32790, 112, 1685, 6765, 117, 24308, 40715, 28791, 5225, 22701, 109, 29734, 187, 26454, 27, 187, 50276, 423, 10801, 27, 187, 50274, 7585, 27, 187, 50272, 48917, 27, 187, 50270, 3709, 27, 686, 13097, 14, 38664, 8, 187 ]
server: port: 3344 spring: application: name: cloud-config-center cloud: config: server: git: #uri: [email protected]:EiletXie/config-repo.git #Github上的git仓库名字 uri: https://github.com/EiletXie/config-repo.git ##搜索目录.这个目录指的是github上的目录 search-paths: - config-repo ##读取分支 label: master #rabbit相关配置 15672是web管理界面的端口,5672是MQ访问的端口 rabbitmq: host: localhost port: 5672 username: guest password: guest eureka: client: service-url: defaultZone: http://eureka7001.com:7001/eureka/ #rabbitmq相关设置 ,暴露 bus刷新配置的端点 management: endpoints: web: exposure: include: 'bus-refresh'
214,354
Github
[ 10708, 9554, 187, 187, 2948, 313, 187, 186, 3, 20602, 3, 187, 186, 3, 3024, 16, 2413, 3, 187, 186, 3, 3024, 16, 2413, 16, 1696, 431, 383, 3, 187, 186, 3, 3024, 16, 2413, 16, 1696, 1065, 300, 3, 187, 186, 3, 375, 16, 9993, 3, 187, 186, 3, 27329, 3, 187, 186, 3, 19462, 3, 535, 186, 3, 7280, 15, 681, 16, 1026, 20852, 460, 16, 4157, 3, 187, 186, 3, 7280, 15, 681, 16, 296, 1221, 19882, 16, 2566, 1419, 16, 15684, 3, 187, 10, 187, 187, 2044, 795, 426, 18880, 1587, 31224, 16, 21830, 16, 788, 995, 11632, 9, 85, 475, 19462, 15, 53, 13, 672, 946, 15, 40, 13, 352, 946, 15, 52, 10, 551, 187, 186, 2044, 313, 996, 186, 23824, 475, 15684, 15, 21659, 621, 996, 186, 9438, 475, 1696, 431, 383, 15, 12023, 187, 186, 10, 535, 186, 262, 15, 8639, 9, 4997, 1082, 551, 996, 186, 23824, 426, 2430, 15, 4257, 9, 85, 10, 6886, 186, 9438, 426, 2832, 431, 383, 15, 4257, 12023, 9, 2413, 15, 9294, 19774, 9, 4997, 9, 88, 3944, 15, 9604, 16978, 13, 23169, 475, 2413, 15, 6825, 10, 551, 988, 186, 16065, 23169, 15, 9715, 15, 5455, 551, 988, 186, 5045, 13357, 87, 19, 16, 3002, 28041, 16, 13721, 1381, 2657, 186, 14399, 3843, 23169, 15, 12618, 15, 3633, 1587, 14897, 1320, 2807, 2657, 186, 338, 24896, 3613, 346, 4678, 12287, 690, 14, 40397, 14, 13763, 3, 551, 2664, 186, 88, 15, 10639, 12618, 9, 2413, 15, 9505, 2447, 24463, 10, 2664, 186, 2309, 2657, 186, 94, 28122, 186, 338, 23169, 15, 6942, 3613, 3944, 15, 6942, 3633, 551, 2664, 186, 88, 15, 10639, 12618, 9, 2413, 15, 9505, 6942, 3650, 3074, 12997, 10, 2664, 186, 2309, 2657, 186, 94, 28122, 186, 88, 15, 10639, 35237, 8833, 9, 3002, 10841, 3633, 9604, 1228, 988, 186, 5045, 13357, 87, 19, 16, 40591, 839, 64, 2824, 16, 13721, 1381, 2657, 186, 14399, 3843, 23169, 15, 12618, 15, 3633, 1587, 14897, 1320, 2807, 2657, 186, 338, 24896, 3613, 346, 4678, 12287, 690, 14, 40397, 14, 13763, 3, 551, 2664, 186, 88, 15, 10639, 12618, 9, 2413, 15, 9505, 2447, 24463, 10, 2664, 186, 2309, 2657, 186, 94, 28122, 186, 338, 23169, 15, 6942, 3613, 3944, 15, 6942, 3633, 551, 2664, 186, 88, 15, 10639, 12618, 9, 2413, 15, 9505, 6942, 3650, 3074, 12997, 10, 2664, 186, 2309, 2657, 186, 94, 28122, 186, 88, 15, 10639, 35237, 8833, 9, 31224, 22804, 3633, 39, 4213, 839, 3123, 9604, 1228, 988, 186, 5045, 13357, 87, 19, 16, 2799, 64, 7187, 13342, 16, 13721, 1381, 2657, 186, 14399, 3843, 23169, 15, 12618, 15, 3633, 1587, 14897, 1320, 2807, 2657, 186, 338, 24896, 3613, 346, 4678, 12287, 690, 14, 40397, 14, 13763, 3, 551, 2664, 186, 88, 15, 10639, 12618, 9, 2413, 15, 9505, 2447, 24463, 10, 2664, 186, 2309, 2657, 186, 94, 28122, 186, 338, 23169, 15, 6942, 3613, 3944, 15, 6942, 3633, 551, 2664, 186, 88, 15, 10639, 12618, 9, 2413, 15, 9505, 6942, 3650, 3074, 12997, 10, 2664, 186, 2309, 2657, 186, 94, 28122, 186, 88, 15, 10639, 35237, 8833, 9, 31224, 22804, 3633, 9624, 7187, 21955, 9604, 1228, 988, 186, 5045, 13357, 87, 19, 16, 45047, 16, 13721, 1381, 2657, 186, 14399, 3843, 23169, 15, 12618, 15, 3633, 1587, 14897, 1320, 2807, 2657, 186, 338, 24896, 3613, 346, 4678, 12287, 690, 14, 40397, 14, 13763, 3, 551, 2664, 186, 88, 15, 10639, 12618, 9, 2413, 15, 9505, 2447, 24463, 10, 2664, 186, 2309, 2657, 186, 94, 28122, 186, 338, 23169, 15, 6942, 3613, 3944, 15, 6942, 3633, 551, 2664, 186, 88, 15, 10639, 12618, 9, 2413, 15, 9505, 6942, 3650, 3074, 12997, 10, 2664, 186, 2309, 2657, 186, 94, 28122, 186, 88, 15, 10639, 35237, 8833, 9, 31224, 22804, 3633, 25906, 9604, 1228, 988, 186, 5045, 13357, 87, 19, 16, 8625, 9181, 16, 13721, 1381, 2657, 186, 14399, 3843, 23169, 15, 12618, 15, 3633, 1587, 14897, 1320, 2807, 2657, 186, 338, 24896, 3613, 346, 4678, 12287, 690, 14, 40397, 14, 13763, 3, 551, 2664, 186, 88, 15, 10639, 12618, 9, 2413, 15, 9505, 2447, 24463, 10, 2664, 186, 2309, 2657, 186, 94, 28122, 186, 338, 23169, 15, 6942, 3613, 3944, 15, 6942, 3633, 551, 2664, 186, 88, 15, 10639, 12618, 9, 2413, 15, 9505, 6942, 3650, 3074, 12997, 10, 2664, 186, 2309, 2657, 186, 94, 28122, 186, 88, 15, 10639, 35237, 8833, 9, 31224, 22804, 3633, 28968, 9604, 1228, 988, 186, 6986, 27, 2657, 186, 23593, 13, 1486, 3843, 2832, 1065, 300, 15, 37, 1765, 6825, 9, 12250, 13, 2032, 10, 2657, 186, 338, 1486, 3613, 5296, 551, 2664, 186, 85, 15, 47837, 1587, 27337, 281, 13725, 2748, 2807, 2657, 186, 94, 28122, 186, 85, 15, 30597, 2103, 1587, 35413, 7202, 2748, 27, 2462, 84, 995, 13725, 10, 988, 186, 94, 996, 186, 26025, 187, 186, 2311, 535, 186, 9453, 1587, 5858, 272, 247, 36131, 209, 662, 995, 11632, 1082, 551, 996, 186, 262, 1587, 18145, 326, 7741, 323, 253, 2199, 995, 11632, 1082, 551, 988, 186, 14111, 3843, 3244, 15, 12094, 9, 20989, 32849, 5455, 13, 2657, 186, 40648, 85, 995, 346, 8826, 14, 40397, 14, 13763, 995, 2657, 186, 40648, 86, 995, 4771, 15, 9715, 13, 2657, 186, 3, 31224, 995, 2657, 186, 3, 21830, 995, 2657, 186, 3, 788, 995, 2657, 186, 3, 3088, 27, 3002, 10841, 27, 13721, 995, 988, 186, 10, 11866, 186, 9252, 13, 1486, 3843, 20390, 15, 26180, 967, 11021, 1082, 988, 186, 23824, 15, 2302, 4756, 9, 1000, 13, 21081, 15, 42757, 1587, 35413, 2228, 3453, 27, 2462, 84, 995, 3453, 1228, 988, 186, 23824, 15, 12827, 9, 27329, 15, 49624, 16929, 9, 31224, 22804, 3633, 37, 287, 10841, 11021, 582, 11559, 15, 49624, 16929, 9, 2703, 9, 9252, 10689, 996, 186, 2311, 187, 186, 2311, 535, 186, 9453, 1587, 5858, 272, 247, 14974, 532, 209, 662, 995, 11632, 1082, 551, 996, 186, 262, 1587, 18145, 326, 7741, 323, 253, 2199, 995, 11632, 1082, 551, 988, 186, 14111, 3843, 3244, 15, 12094, 9, 20989, 32849, 5455, 13, 2657, 186, 40648, 85, 995, 346, 8826, 14, 40397, 14, 13763, 995, 2657, 186, 40648, 86, 995, 4771, 15, 9715, 13, 2657, 186, 3, 31224, 995, 2657, 186, 3, 21830, 995, 2657, 186, 3, 788, 995, 2657, 186, 3, 3088, 27, 40591, 839, 532, 27, 13721, 995, 988, 186, 10, 11866, 186, 9252, 13, 1486, 3843, 20390, 15, 26180, 967, 11021, 1082, 988, 186, 23824, 15, 2302, 4756, 9, 1000, 13, 21081, 15, 42757, 1587, 35413, 2228, 3453, 27, 2462, 84, 995, 3453, 1228, 988, 186, 23824, 15, 12827, 9, 27329, 15, 49624, 16929, 9, 31224, 22804, 3633, 39, 4213, 839, 3123, 11021, 582, 11559, 15, 49624, 16929, 9, 2703, 9, 9252, 10689, 996, 186, 2311, 187, 186, 2311, 535, 186, 9453, 1587, 5858, 272, 247, 3301, 7187, 21955, 209, 662, 995, 11632, 1082, 551, 996, 186, 262, 1587, 18145, 326, 7741, 323, 253, 2199, 995, 11632, 1082, 551, 988, 186, 14111, 3843, 3244, 15, 12094, 9, 20989, 32849, 5455, 13, 2657, 186, 40648, 85, 995, 346, 8826, 14, 40397, 14, 13763, 995, 2657, 186, 40648, 86, 995, 4771, 15, 9715, 13, 2657, 186, 3, 31224, 995, 2657, 186, 3, 21830, 995, 2657, 186, 3, 788, 995, 2657, 186, 3, 3088, 27, 2799, 7187, 21955, 27, 13721, 995, 988, 186, 10, 11866, 186, 9252, 13, 1486, 3843, 20390, 15, 26180, 967, 11021, 1082, 988, 186, 23824, 15, 2302, 4756, 9, 1000, 13, 21081, 15, 42757, 1587, 35413, 2228, 3453, 27, 2462, 84, 995, 3453, 1228, 988, 186, 23824, 15, 12827, 9, 27329, 15, 49624, 16929, 9, 31224, 22804, 3633, 9624, 7187, 21955, 11021, 582, 11559, 15, 49624, 16929, 9, 2703, 9, 9252, 10689, 996, 186, 2311, 187, 186, 2311, 535, 186, 9453, 1587, 5858, 272, 247, 5028, 209, 662, 995, 11632, 1082, 551, 996, 186, 262, 1587, 18145, 326, 7741, 323, 253, 2199, 995, 11632, 1082, 551, 988, 186, 14111, 3843, 3244, 15, 12094, 9, 20989, 32849, 5455, 13, 2657, 186, 40648, 85, 995, 346, 8826, 14, 40397, 14, 13763, 995, 2657, 186, 40648, 86, 995, 4771, 15, 9715, 13, 2657, 186, 3, 31224, 995, 2657, 186, 3, 21830, 995, 2657, 186, 3, 788, 995, 2657, 186, 3, 3088, 27, 13517, 27, 13721, 995, 988, 186, 10, 11866, 186, 9252, 13, 1486, 3843, 20390, 15, 26180, 967, 11021, 1082, 988, 186, 23824, 15, 2302, 4756, 9, 1000, 13, 21081, 15, 42757, 1587, 35413, 2228, 3453, 27, 2462, 84, 995, 3453, 1228, 988, 186, 23824, 15, 12827, 9, 27329, 15, 49624, 16929, 9, 31224, 22804, 3633, 25906, 11021, 582, 11559, 15, 49624, 16929, 9, 2703, 9, 9252, 10689, 996, 186, 2311, 187, 186, 2311, 535, 186, 9453, 1587, 5858, 272, 247, 4644, 209, 662, 995, 11632, 1082, 551, 996, 186, 262, 1587, 18145, 326, 7741, 323, 253, 2199, 995, 11632, 1082, 551, 988, 186, 14111, 3843, 3244, 15, 12094, 9, 20989, 32849, 5455, 13, 2657, 186, 40648, 85, 995, 346, 8826, 14, 40397, 14, 13763, 995, 2657, 186, 40648, 86, 995, 4771, 15, 9715, 13, 2657, 186, 3, 31224, 995, 2657, 186, 3, 21830, 995, 2657, 186, 3, 788, 995, 2657, 186, 3, 3088, 27, 21970, 27, 13721, 995, 988, 186, 10, 11866, 186, 9252, 13, 1486, 3843, 20390, 15, 26180, 967, 11021, 1082, 988, 186, 23824, 15, 2302, 4756, 9, 1000, 13, 21081, 15, 42757, 1587, 35413, 2228, 3453, 27, 2462, 84, 995, 3453, 1228, 988, 186, 23824, 15, 12827, 9, 27329, 15, 49624, 16929, 9, 31224, 22804, 3633, 28968, 11021, 582, 11559, 15, 49624, 16929, 9, 2703, 9, 9252, 10689, 996, 186, 2311, 187, 186, 2311, 187, 2311, 187, 187, 3474, 313, 187, 186, 31224, 22804, 3633, 37, 287, 10841, 11021, 426, 2634, 187, 1838, 50272, 2402, 50261, 15689, 36247, 21, 50274, 22279, 36247, 21, 50274, 15689, 36247, 23, 50274, 21911, 50274, 55, 5305, 8484, 50274, 42278, 50274, 26330, 50264, 6586, 50254, 50276, 55, 5077, 530, 18244, 50274, 9505, 50274, 31095, 50274, 30880, 50274, 15271, 9181, 187, 45240, 50274, 8826, 14, 3002, 10841, 14, 1590, 50254, 50254, 50276, 17, 50269, 17, 50270, 17, 50271, 8826, 14, 17187, 14, 3433, 814, 50274, 8826, 14, 8155, 287, 690, 14, 5695, 14, 1590, 50262, 4507, 50274, 9820, 50273, 2013, 4787, 50273, 8826, 14, 21970, 14, 301, 187, 65, 187, 186, 31224, 22804, 3633, 39, 4213, 839, 3123, 11021, 426, 2634, 187, 3123, 50265, 26330, 50274, 37, 287, 10841, 5417, 50274, 37, 287, 10841, 9424, 187, 1857, 15, 2417, 15, 4196, 15, 2504, 50274, 5134, 68, 20, 187, 65, 187, 186, 31224, 22804, 3633, 39, 4213, 839, 3123, 9604, 426, 2634, 187, 92, 187, 50276, 3, 40591, 839, 64, 532, 1381, 551, 187, 50274, 3, 532, 1381, 346, 1857, 15, 2417, 15, 4196, 15, 2504, 995, 187, 50274, 3, 3002, 10841, 1381, 3635, 13, 187, 50274, 3, 17187, 1381, 551, 187, 50272, 3, 1590, 1381, 346, 4257, 2816, 495, 995, 187, 50272, 3, 3433, 814, 1381, 346, 5134, 68, 20, 995, 187, 50272, 3, 84, 4219, 1381, 544, 346, 84, 14, 18, 87, 19411, 14, 18, 20773, 3, 11337, 187, 50272, 3, 28862, 1381, 544, 346, 21552, 3, 11337, 187, 50272, 3, 15735, 1381, 2032, 187, 50274, 2023, 187, 50274, 3, 30730, 1381, 3221, 187, 50276, 94, 187, 94, 187, 65, 187, 186, 31224, 22804, 3633, 9624, 7187, 21955, 11021, 426, 2634, 187, 1838, 50254, 50264, 3123, 50261, 2402, 50265, 9505, 50274, 32331, 2058, 50264, 39973, 50272, 26330, 50274, 55, 5077, 530, 18244, 50254, 50270, 12547, 50274, 37, 287, 10841, 36919, 50274, 21156, 50272, 998, 30043, 35015, 50254, 50270, 19895, 9423, 50254, 50254, 50254, 50254, 50266, 31696, 272, 16228, 187, 21, 615, 24, 317, 25, 67, 14, 32296, 67, 14, 31362, 21, 14, 26, 66, 2090, 14, 740, 1235, 68, 2251, 4590, 2428, 23, 50274, 11238, 15, 17015, 15, 20270, 15, 24552, 50274, 11667, 14, 24780, 14, 520, 50274, 1826, 50271, 7132, 14, 2640, 14, 520, 53, 1423, 27, 1423, 27, 3680, 59, 50274, 4650, 64, 287, 4805, 50274, 5134, 68, 20, 50272, 4226, 14, 1418, 14, 25851, 14, 33038, 14, 4226, 1418, 50267, 28581, 2031, 1857, 50270, 7750, 50274, 881, 27, 15422, 13, 36617, 64, 1590, 27, 13, 36617, 64, 1440, 77, 64, 30544, 27, 17, 50274, 26324, 27, 13, 631, 27, 17, 13, 3967, 27, 13, 5903, 64, 31251, 64, 30544, 27, 17, 13, 10927, 64, 23896, 64, 30544, 27, 17, 13, 27952, 64, 34503, 27, 17, 13, 328, 27952, 64, 34503, 27, 17, 50274, 8873, 64, 26324, 27, 3614, 13, 8873, 64, 631, 27, 24447, 13, 7831, 64, 26324, 27, 3614, 13, 7831, 64, 631, 27, 28871, 13, 15004, 10735, 64, 301, 27, 13, 33543, 64, 36785, 296, 73, 903, 27, 5672, 187, 65, 187, 186, 31224, 22804, 3633, 9624, 7187, 21955, 9604, 426, 2634, 187, 92, 187, 50276, 3, 2799, 64, 7187, 21955, 1381, 551, 187, 50274, 3, 301, 1381, 346, 21, 615, 24, 317, 25, 67, 14, 32296, 67, 14, 31362, 21, 14, 26, 66, 2090, 14, 740, 1235, 68, 2251, 4590, 2428, 23, 995, 187, 50274, 3, 1590, 1381, 346, 11667, 14, 24780, 14, 520, 995, 187, 50274, 3, 532, 1381, 346, 11238, 15, 17015, 15, 20270, 15, 24552, 995, 187, 50274, 3, 41528, 1381, 346, 4650, 64, 287, 4805, 995, 187, 50274, 3, 8581, 1381, 346, 1826, 995, 187, 50274, 3, 22337, 64, 255, 1381, 346, 7132, 14, 2640, 14, 520, 53, 1423, 27, 1423, 27, 3680, 59, 995, 187, 50274, 3, 10495, 272, 64, 25553, 1381, 544, 187, 50272, 92, 187, 50270, 3, 8873, 64, 26324, 1381, 346, 3614, 995, 187, 50270, 3, 8873, 64, 631, 1381, 37688, 13, 187, 50270, 3, 7831, 64, 26324, 1381, 346, 3614, 995, 187, 50270, 3, 7831, 64, 631, 1381, 34790, 13, 187, 50270, 3, 15004, 10735, 64, 301, 1381, 18586, 187, 50270, 3, 33543, 64, 36785, 296, 73, 903, 1381, 2032, 187, 50272, 94, 187, 50274, 1092, 187, 50274, 3, 15356, 64, 5903, 1381, 30744, 187, 50274, 3, 19982, 90, 64, 84, 9590, 1381, 551, 187, 50272, 3, 881, 1381, 346, 15422, 3, 187, 50274, 2023, 187, 50274, 3, 17187, 1381, 551, 187, 50272, 3, 1590, 1381, 346, 4257, 2816, 495, 995, 187, 50272, 3, 3433, 814, 1381, 346, 5134, 68, 20, 995, 187, 50272, 3, 84, 4219, 1381, 544, 187, 50270, 3, 84, 14, 1237, 87, 19411, 14, 14403, 20773, 3, 187, 50272, 1092, 187, 50272, 3, 28862, 1381, 544, 346, 12543, 64, 12788, 3, 11337, 187, 50272, 3, 15735, 1381, 2032, 187, 50274, 2023, 187, 50274, 3, 87, 5902, 64, 36268, 1381, 346, 4226, 14, 1418, 14, 25851, 14, 33038, 14, 4226, 1418, 995, 187, 50274, 3, 3002, 10841, 64, 2352, 1381, 544, 33152, 2031, 1857, 11337, 187, 50274, 3, 41794, 64, 2413, 64, 936, 64, 3614, 1381, 3221, 13, 187, 50274, 3, 14760, 64, 26520, 64, 26324, 1381, 3221, 187, 50276, 94, 187, 94, 187, 65, 187, 186, 31224, 22804, 3633, 25906, 11021, 426, 2634, 187, 25906, 50269, 4490, 45, 187, 11667, 15, 681, 50274, 37773, 187, 65, 187, 186, 31224, 22804, 3633, 25906, 9604, 426, 2634, 187, 92, 187, 50276, 3, 13517, 1381, 551, 187, 50274, 3, 1590, 1381, 346, 11667, 15, 681, 995, 187, 50274, 3, 1440, 77, 1381, 29316, 13, 187, 50274, 3, 13634, 64, 3140, 1381, 346, 8826, 8232, 1873, 342, 10412, 941, 3, 187, 50276, 94, 187, 94, 187, 65, 187, 186, 31224, 22804, 3633, 28968, 11021, 426, 2634, 187, 1838, 50254, 50264, 2402, 50271, 5496, 50272, 26330, 50274, 19284, 2468, 8078, 50274, 19284, 2468, 24527, 50274, 37, 287, 10841, 36919, 50274, 31095, 187, 25670, 71, 3141, 66, 21, 14, 70, 41345, 14, 883, 70, 22, 14, 324, 26, 71, 14, 933, 71, 3357, 18950, 3348, 18, 50274, 11667, 50274, 740, 12024, 35, 50274, 5134, 68, 18, 50254, 50254, 50266, 266, 47606, 7784, 187, 65, 187, 186, 31224, 22804, 3633, 28968, 9604, 426, 2634, 187, 92, 187, 50276, 3, 21970, 1381, 551, 187, 50274, 3, 301, 1381, 346, 25670, 71, 3141, 66, 21, 14, 70, 41345, 14, 883, 70, 22, 14, 324, 26, 71, 14, 933, 71, 3357, 18950, 3348, 18, 995, 187, 50274, 3, 17187, 1381, 551, 187, 50272, 3, 1590, 1381, 346, 4257, 2816, 337, 995, 187, 50272, 3, 3433, 814, 1381, 346, 5134, 68, 18, 995, 187, 50272, 3, 84, 4219, 1381, 544, 346, 84, 14, 18, 87, 19411, 14, 18, 20773, 3, 11337, 187, 50272, 3, 28862, 1381, 544, 346, 21552, 3, 11337, 187, 50272, 3, 15735, 1381, 2032, 187, 50274, 2023, 187, 50274, 3, 3002, 10841, 64, 2352, 1381, 24345, 187, 50274, 3, 1590, 1381, 346, 11667, 995, 187, 50274, 3, 10008, 1381, 346, 11144, 4657, 323, 6667, 995, 187, 50274, 3, 3281, 64, 72, 304, 357, 12742, 1381, 884, 13, 187, 50274, 3, 22337, 64, 255, 1381, 346, 6961, 14, 2941, 14, 2640, 53, 1166, 27, 361, 27, 2537, 59, 995, 187, 50274, 3, 23059, 1381, 544, 346, 266, 47606, 7784, 3, 5032, 187, 50276, 94, 187, 94, 187, 65, 187, 10, 187 ]
package integration import ( "fmt" "net/http" "net/http/httptest" "net/http/httputil" "os/exec" "strings" "testing" "github.com/sclevine/spec" "github.com/stretchr/testify/require" ) var _ = suite("projects/resources/get", func(t *testing.T, when spec.G, it spec.S) { var ( expect *require.Assertions server *httptest.Server ) it.Before(func() { expect = require.New(t) server = httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) { switch req.URL.Path { case "/v2/droplets/1111": auth := req.Header.Get("Authorization") if auth != "Bearer some-magic-token" { w.WriteHeader(http.StatusUnauthorized) return } if req.Method != http.MethodGet { w.WriteHeader(http.StatusMethodNotAllowed) return } w.Write([]byte(dropletGetResponse)) case "/v2/floating_ips/1111": auth := req.Header.Get("Authorization") if auth != "Bearer some-magic-token" { w.WriteHeader(http.StatusUnauthorized) return } if req.Method != http.MethodGet { w.WriteHeader(http.StatusMethodNotAllowed) return } w.Write([]byte(projectsResourcesGetFloatingIPResponse)) case "/v2/load_balancers/1111": auth := req.Header.Get("Authorization") if auth != "Bearer some-magic-token" { w.WriteHeader(http.StatusUnauthorized) return } if req.Method != http.MethodGet { w.WriteHeader(http.StatusMethodNotAllowed) return } w.Write([]byte(projectsResourcesGetLoadbalancerResponse)) case "/v2/domains/1111": auth := req.Header.Get("Authorization") if auth != "Bearer some-magic-token" { w.WriteHeader(http.StatusUnauthorized) return } if req.Method != http.MethodGet { w.WriteHeader(http.StatusMethodNotAllowed) return } w.Write([]byte(projectsResourcesGetDomainResponse)) case "/v2/volumes/1111": auth := req.Header.Get("Authorization") if auth != "Bearer some-magic-token" { w.WriteHeader(http.StatusUnauthorized) return } if req.Method != http.MethodGet { w.WriteHeader(http.StatusMethodNotAllowed) return } w.Write([]byte(projectsResourcesGetVolumeResponse)) default: dump, err := httputil.DumpRequest(req, true) if err != nil { t.Fatal("failed to dump request") } t.Fatalf("received unknown request: %s", dump) } })) }) when("passing a droplet urn", func() { it("gets that resource for the project", func() { cmd := exec.Command(builtBinaryPath, "-t", "some-magic-token", "-u", server.URL, "projects", "resources", "get", "do:droplet:1111", ) output, err := cmd.CombinedOutput() expect.NoError(err, fmt.Sprintf("received error output: %s", output)) expect.Equal(strings.TrimSpace(projectsResourcesGetDropletOutput), strings.TrimSpace(string(output))) }) }) when("passing a floatingip urn", func() { it("gets that resource for the project", func() { cmd := exec.Command(builtBinaryPath, "-t", "some-magic-token", "-u", server.URL, "projects", "resources", "get", "do:floatingip:1111", ) output, err := cmd.CombinedOutput() expect.NoError(err, fmt.Sprintf("received error output: %s", output)) expect.Equal(strings.TrimSpace(projectsResourcesGetFloatingIPOutput), strings.TrimSpace(string(output))) }) }) when("passing a loadbalancer urn", func() { it("gets that resource for the project", func() { cmd := exec.Command(builtBinaryPath, "-t", "some-magic-token", "-u", server.URL, "projects", "resources", "get", "do:loadbalancer:1111", ) output, err := cmd.CombinedOutput() expect.NoError(err, fmt.Sprintf("received error output: %s", output)) expect.Equal(strings.TrimSpace(projectsResourcesGetLoadbalancerOutput), strings.TrimSpace(string(output))) }) }) when("passing a domain urn", func() { it("gets that resource for the project", func() { cmd := exec.Command(builtBinaryPath, "-t", "some-magic-token", "-u", server.URL, "projects", "resources", "get", "do:domain:1111", ) output, err := cmd.CombinedOutput() expect.NoError(err, fmt.Sprintf("received error output: %s", output)) expect.Equal(strings.TrimSpace(projectsResourcesGetDomainOutput), strings.TrimSpace(string(output))) }) }) when("passing a volume urn", func() { it("gets that resource for the project", func() { cmd := exec.Command(builtBinaryPath, "-t", "some-magic-token", "-u", server.URL, "projects", "resources", "get", "do:volume:1111", ) output, err := cmd.CombinedOutput() expect.NoError(err, fmt.Sprintf("received error output: %s", output)) expect.Equal(strings.TrimSpace(projectsResourcesGetVolumeOutput), strings.TrimSpace(string(output))) }) }) }) const ( projectsResourcesGetDropletOutput = ` ID Name Public IPv4 Private IPv4 Public IPv6 Memory VCPUs Disk Region Image VPC UUID Status Tags Features Volumes 5555 some-droplet-name 0 0 0 some-region-slug some-distro some-image-name active yes remotes some-volume-id ` projectsResourcesGetFloatingIPOutput = ` IP Region Droplet ID Droplet Name 45.55.96.47 nyc3 ` projectsResourcesGetFloatingIPResponse = ` { "floating_ip": { "ip": "45.55.96.47", "droplet": null, "region": { "name": "New York 3", "slug": "nyc3", "sizes": [ "s-1vcpu-1gb" ], "features": [ "metadata" ], "available": true }, "locked": false } } ` projectsResourcesGetLoadbalancerOutput = ` ID IP Name Status Created At Algorithm Region VPC UUID Tag Droplet IDs SSL Sticky Sessions Health Check Forwarding Rules 4de7ac8b-495b-4884-9a69-1050c6793cd6 104.131.186.241 example-lb-01 new 2017-02-01T22:22:58Z round_robin nyc3 00000000-0000-4000-8000-000000000000 3164445 false type:none,cookie_name:,cookie_ttl_seconds:0 protocol:,port:0,path:,check_interval_seconds:0,response_timeout_seconds:0,healthy_threshold:0,unhealthy_threshold:0 entry_protocol:https,entry_port:444,target_protocol:https,target_port:443,certificate_id:,tls_passthrough:true ` projectsResourcesGetLoadbalancerResponse = ` { "load_balancer": { "id": "4de7ac8b-495b-4884-9a69-1050c6793cd6", "name": "example-lb-01", "ip": "104.131.186.241", "algorithm": "round_robin", "status": "new", "created_at": "2017-02-01T22:22:58Z", "forwarding_rules": [ { "entry_protocol": "https", "entry_port": 444, "target_protocol": "https", "target_port": 443, "certificate_id": "", "tls_passthrough": true } ], "health_check": {}, "sticky_sessions": { "type": "none" }, "region": { "name": "New York 3", "slug": "nyc3", "sizes": [ "s-32vcpu-192gb" ], "features": [ "install_agent" ], "available": true }, "vpc_uuid": "00000000-0000-4000-8000-000000000000", "droplet_ids": [ 3164445 ], "redirect_http_to_https": false, "enable_proxy_protocol": false } } ` projectsResourcesGetDomainOutput = ` Domain TTL example.com 1800 ` projectsResourcesGetDomainResponse = ` { "domain": { "name": "example.com", "ttl": 1800, "zone_file": "some zone file with crazy data" } } ` projectsResourcesGetVolumeOutput = ` ID Name Size Region Filesystem Type Filesystem Label Droplet IDs Tags 506f78a4-e098-11e5-ad9f-000f53306ae1 example 10 GiB nyc1 aninterestingtag ` projectsResourcesGetVolumeResponse = ` { "volume": { "id": "506f78a4-e098-11e5-ad9f-000f53306ae1", "region": { "name": "New York 1", "slug": "nyc1", "sizes": [ "s-1vcpu-1gb" ], "features": [ "metadata" ], "available": true }, "droplet_ids": [], "name": "example", "description": "Block store for examples", "size_gigabytes": 10, "created_at": "2016-03-02T17:00:49Z", "tags": [ "aninterestingtag" ] } } ` )
214,355
Github
[ 605, 8283, 4059, 380, 3617, 26940, 15, 1876, 3570, 10827, 15, 187, 605, 7890, 273, 436, 2603, 2127, 310, 17886, 407, 247, 32327, 14, 4826, 187, 605, 7981, 326, 476, 320, 1119, 275, 253, 21826, 1873, 15, 187, 187, 605, 559, 7973, 21126, 187, 605, 559, 7973, 268, 5902, 1540, 268, 5902, 1540, 282, 187, 605, 559, 7973, 2195, 35181, 2184, 187, 187, 4, 3709, 346, 1156, 17101, 15, 73, 3, 187, 187, 605, 187, 605, 4155, 5841, 323, 268, 5902, 1540, 13, 13492, 187, 605, 187, 187, 605, 3771, 6923, 281, 5522, 20862, 434, 7092, 323, 512, 841, 3470, 15, 187, 605, 380, 20243, 778, 871, 670, 731, 15, 187, 187, 19093, 25271, 41446, 2302, 4756, 9, 15803, 582, 22398, 3859, 1433, 12063, 17, 14, 2385, 187, 186, 5993, 186, 21005, 6256, 290, 398, 20377, 9, 15803, 10, 187, 186, 40498, 37, 186, 66, 18, 12, 25, 9, 7073, 582, 416, 20, 187, 186, 40498, 37, 186, 66, 19, 12, 1036, 9, 7073, 582, 416, 21, 187, 186, 40498, 37, 186, 66, 20, 12, 1348, 9, 7073, 582, 416, 22, 187, 186, 40498, 37, 186, 51, 17, 13, 416, 23, 187, 186, 40498, 37, 186, 51, 17, 13, 416, 24, 187, 186, 40498, 37, 186, 51, 17, 13, 416, 25, 187, 186, 40498, 37, 186, 85, 1761, 12, 17, 9, 7073, 582, 416, 26, 186, 605, 20862, 5857, 187, 186, 14305, 4061, 5626, 416, 26, 187, 186, 40498, 37, 186, 51, 20, 13, 391, 18, 12, 1237, 9, 7073, 10, 187, 186, 40498, 37, 186, 51, 21, 13, 391, 19, 12, 1449, 9, 7073, 10, 187, 186, 5993, 186, 21005, 6256, 911, 953, 20377, 9, 15803, 10, 187, 186, 22178, 187, 187, 19093, 25271, 24436, 41446, 2302, 4756, 9, 15803, 582, 22398, 3859, 1433, 12063, 17, 14, 2385, 187, 186, 40498, 37, 186, 66, 18, 12, 25, 9, 7073, 582, 416, 20, 187, 186, 40498, 37, 186, 66, 19, 12, 1036, 9, 7073, 582, 416, 21, 187, 186, 40498, 37, 186, 66, 20, 12, 1348, 9, 7073, 582, 416, 22, 187, 186, 40498, 37, 186, 51, 17, 13, 416, 23, 187, 186, 40498, 37, 186, 51, 17, 13, 416, 24, 187, 186, 40498, 37, 186, 51, 17, 13, 416, 25, 187, 186, 40498, 37, 186, 85, 1761, 12, 17, 9, 7073, 582, 416, 26, 186, 605, 20862, 5857, 187, 186, 14305, 4061, 5626, 416, 26, 187, 186, 40498, 37, 186, 51, 20, 13, 391, 18, 12, 1237, 9, 7073, 10, 187, 186, 40498, 37, 186, 51, 21, 13, 391, 19, 12, 1449, 9, 7073, 10, 187, 186, 22178, 187 ]
// Copyright 2014 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // +build linux // +build ppc64 ppc64le // +build !gccgo #include "textflag.h" // // System calls for ppc64, Linux // // Just jump to package syscall's implementation for all these functions. // The runtime may know about them. TEXT ·SyscallNoError(SB),NOSPLIT,$0-48 BL runtime·entersyscall(SB) MOVD a1+8(FP), R3 MOVD a2+16(FP), R4 MOVD a3+24(FP), R5 MOVD R0, R6 MOVD R0, R7 MOVD R0, R8 MOVD trap+0(FP), R9 // syscall entry SYSCALL R9 MOVD R3, r1+32(FP) MOVD R4, r2+40(FP) BL runtime·exitsyscall(SB) RET TEXT ·RawSyscallNoError(SB),NOSPLIT,$0-48 MOVD a1+8(FP), R3 MOVD a2+16(FP), R4 MOVD a3+24(FP), R5 MOVD R0, R6 MOVD R0, R7 MOVD R0, R8 MOVD trap+0(FP), R9 // syscall entry SYSCALL R9 MOVD R3, r1+32(FP) MOVD R4, r2+40(FP) RET
214,356
Github
[ 14277, 7229, 2715, 568, 18, 15, 17, 3, 9706, 568, 18441, 14, 25, 28739, 187, 29, 10408, 2715, 568, 21, 1138, 187, 50276, 29, 15658, 1416, 568, 11695, 13570, 8224, 1138, 187, 50274, 29, 14825, 31, 187, 50272, 29, 8640, 1873, 6434, 568, 3140, 1358, 5, 20371, 19290, 64, 13266, 32865, 31090, 8486, 7720, 16698, 15, 303, 77, 3, 1873, 3967, 31462, 20371, 19290, 64, 13266, 32865, 31090, 8486, 7720, 16698, 15, 303, 77, 3, 4725, 187, 50272, 29, 8640, 1873, 6434, 568, 3140, 1358, 5, 20371, 19290, 64, 13266, 32865, 1212, 16, 1212, 15, 303, 77, 3, 1873, 3967, 31462, 20371, 19290, 64, 13266, 32865, 1212, 16, 1212, 15, 303, 77, 3, 4725, 187, 50274, 870, 14825, 31, 187, 50276, 870, 15658, 31, 187, 870, 10408, 31 ]
<?xml version="1.0" encoding="UTF-8"?> <project version="4"> <component name="ProjectModuleManager"> <modules> <module fileurl="file://$PROJECT_DIR$/FaceDetectorExample.iml" filepath="$PROJECT_DIR$/FaceDetectorExample.iml" /> <module fileurl="file://$PROJECT_DIR$/app/app.iml" filepath="$PROJECT_DIR$/app/app.iml" /> </modules> </component> </project>
214,357
Github
[ 4, 18771, 595, 5118, 187, 20409, 9726, 186, 3348, 1423, 832, 883, 68, 26, 1706, 23100, 1257, 21, 9194, 19, 66, 17, 66, 18, 66, 24, 66, 324, 71, 2031, 2222, 66, 14521, 18, 886, 2090, 2787, 1473, 19100, 69, 27222, 66, 2511, 6357, 20, 68, 19, 71, 186, 77, 1200, 88, 14, 35, 15, 2640, 15, 1093, 15, 17447, 15, 20449, 187 ]
# Locally calculated sha256 ae22ef11c934364be4fd2a0a1a7aadf4495a0251ec6979da280d342a89ca3c2f lshw-B.02.18.tar.gz
214,358
Github
[ 8640, 15, 23756, 426, 1159, 1973, 27041, 9, 20034, 10, 551, 187, 50276, 3474, 16449, 55, 426, 551, 187, 50274, 8640, 27111, 27, 686, 2037, 14, 11667, 1383, 187, 50274, 20034, 13, 187, 50274, 9723, 9715, 27, 17882, 1383, 187, 50274, 12428, 2548, 27, 686, 15149, 1383, 187, 50274, 38, 2480, 33735, 27, 551, 187, 50272, 12297, 1194, 43087, 27, 551, 187, 50270, 605, 3856, 368, 476, 8046, 5661, 3386, 327, 271, 802, 589, 476, 552, 1973, 187, 50270, 605, 299, 15, 72, 15, 686, 3113, 14, 19879, 5295, 2032, 187, 50272, 2023, 187, 50272, 9465, 8112, 64, 39129, 2415, 15575, 1410, 27, 551, 187, 50270, 605, 46915, 444, 2480, 5128, 432, 49776, 10421, 15, 12083, 15, 187, 50270, 6958, 27, 3221, 13, 187, 50272, 2023, 187, 50274, 2023, 535, 50274, 18137, 27, 551, 187, 50272, 605, 3856, 368, 476, 1509, 12201, 16, 10121, 281, 634, 2898, 4227, 187, 50272, 605, 672, 352, 310, 3562, 187, 50274, 2023, 187, 50276, 4718, 535, 50276, 338, 313, 20034, 11013, 686, 27055, 3401, 551, 187, 50274, 605, 16449, 55, 15, 18137, 15, 21273, 64, 13045, 3271, 15537, 426, 2032, 28, 187, 50274, 605, 16449, 55, 15, 18137, 15, 21273, 64, 11645, 11477, 64, 39655, 6570, 426, 2032, 28, 187, 50274, 605, 16449, 55, 15, 18137, 15, 21273, 64, 3125, 19038, 13190, 52, 426, 2032, 28, 187, 50274, 605, 16449, 55, 15, 18137, 15, 21273, 64, 3125, 19038, 13190, 52, 64, 19118, 21686, 426, 2032, 28, 187, 50274, 605, 16449, 55, 15, 18137, 15, 21273, 64, 31305, 64, 45, 16569, 54, 3299, 426, 2032, 28, 187, 50276, 94, 535, 50276, 338, 313, 20034, 11013, 686, 2566, 3401, 551, 187, 50274, 605, 6004, 358, 41469, 436, 1051, 187, 50274, 33735, 15, 12428, 2548, 426, 686, 15422, 5618, 535, 50274, 605, 1978, 1071, 9667, 3453, 7460, 1715, 187, 50274, 33735, 15, 18137, 15, 21273, 64, 11645, 11477, 64, 39655, 6570, 426, 3221, 28, 187, 50274, 33735, 15, 18137, 15, 21273, 64, 31305, 64, 45, 16569, 54, 3299, 426, 3221, 28, 535, 50274, 33735, 15, 18137, 15, 9723, 7050, 426, 25777, 2037, 14, 19462, 5618, 187, 50274, 33735, 15, 18137, 15, 1920, 706, 1412, 426, 3221, 28, 187, 50276, 94, 535, 50276, 338, 313, 20034, 11013, 686, 25307, 3401, 551, 187, 50274, 605, 1060, 368, 476, 8046, 247, 3275, 14, 6160, 4735, 187, 50276, 94, 535, 50276, 2309, 16449, 55, 28, 187, 4718, 187 ]
module.exports = function buildEnvironment(environment) { const ENV = { modulePrefix: 'ember-example', environment, rootURL: '/', locationType: 'auto', EmberENV: { FEATURES: { // Here you can enable experimental features on an ember canary build // e.g. 'with-controller': true }, EXTEND_PROTOTYPES: { // Prevent Ember Data from overriding Date.parse. Date: false, }, }, APP: { // Here you can pass flags/options to your application instance // when it is created }, }; if (environment === 'development') { // ENV.APP.LOG_RESOLVER = true; // ENV.APP.LOG_ACTIVE_GENERATION = true; // ENV.APP.LOG_TRANSITIONS = true; // ENV.APP.LOG_TRANSITIONS_INTERNAL = true; // ENV.APP.LOG_VIEW_LOOKUPS = true; } if (environment === 'test') { // Testem prefers this... ENV.locationType = 'none'; // keep test console output quieter ENV.APP.LOG_ACTIVE_GENERATION = false; ENV.APP.LOG_VIEW_LOOKUPS = false; ENV.APP.rootElement = '#ember-testing'; ENV.APP.autoboot = false; } if (environment === 'production') { // here you can enable a production-specific feature } return ENV; };
214,359
Github
[ 2948, 23782, 432, 686, 22312, 5618, 187, 2948, 23566, 432, 37994, 4990, 14, 4113, 16, 6443, 16, 15099, 5618, 187, 2948, 475, 347, 15552, 15668, 432, 686, 8560, 14, 10706, 5618, 187, 2948, 14423, 432, 37994, 4990, 14, 4113, 16, 6443, 16, 7536, 5618, 187, 2948, 411, 13776, 432, 50111, 22127, 16, 17393, 16, 17393, 5618, 187, 2948, 1605, 27378, 21691, 12612, 432, 50111, 22127, 16, 3848, 27378, 21691, 12612, 5618, 187, 2948, 551, 897, 3848, 27378, 21691, 5856, 748, 432, 50111, 8882, 16, 3848, 27378, 21691, 5856, 5618, 187, 2948, 37330, 84, 27994, 15226, 432, 33378, 33388, 84, 27994, 15226, 5618, 187, 2948, 37330, 84, 29653, 318, 40644, 187, 50276, 4064, 50111, 22127, 16, 6504, 72, 318, 4120, 932, 16, 33388, 84, 29653, 318, 40644, 16, 33388, 84, 29653, 318, 40644, 5618, 187, 187, 3474, 37330, 84, 426, 35236, 2238, 6060, 13985, 3001, 551, 187, 50276, 3474, 551, 941, 748, 426, 897, 3848, 27378, 21691, 5856, 1874, 187, 50276, 338, 6522, 2203, 10, 551, 187, 50274, 2309, 3635, 28, 187, 50276, 94, 187, 50276, 3474, 551, 34854, 748, 426, 941, 15, 11258, 84, 60, 11258, 6060, 2194, 187, 50276, 1059, 2600, 28, 187, 50276, 605, 604, 642, 34854, 15378, 187, 50276, 338, 313, 26544, 84, 15, 3985, 11013, 470, 10, 551, 187, 50274, 6071, 426, 313, 187, 50272, 29, 15099, 5382, 48361, 11787, 805, 20499, 187, 50270, 29, 17393, 31, 187, 50268, 29, 7536, 187, 50266, 6917, 11787, 19, 94, 187, 50266, 1814, 11787, 19, 94, 187, 50266, 8412, 568, 23210, 3, 187, 50266, 6309, 1419, 8590, 568, 5641, 14, 16576, 3, 187, 50268, 31, 187, 50266, 29, 33388, 84, 29653, 318, 40644, 4725, 187, 50268, 870, 7536, 31, 187, 50270, 870, 17393, 31, 187, 50272, 870, 15099, 31, 187, 50274, 558, 187, 50276, 94, 2010, 551, 187, 50274, 6071, 426, 313, 187, 50272, 29, 15099, 8781, 22735, 11787, 19, 20499, 187, 50270, 92, 187, 50270, 26544, 84, 15, 4251, 4464, 92, 11716, 13, 14610, 13985, 3001, 313, 187, 50268, 29, 15099, 2234, 11787, 65, 8626, 33008, 5960, 8626, 23059, 94, 65, 94, 5382, 48361, 11787, 805, 20499, 187, 50266, 29, 17393, 4060, 11787, 33008, 20499, 187, 50264, 29, 33388, 84, 27994, 15226, 19007, 4769, 11787, 2203, 15, 2606, 94, 11716, 11787, 33008, 94, 14610, 11787, 23059, 94, 4725, 187, 50266, 870, 17393, 31, 187, 50268, 870, 15099, 31, 187, 50270, 1228, 187, 50272, 94, 187, 50272, 870, 15099, 31, 187, 50274, 558, 187, 50276, 94, 187, 50276, 2309, 313, 187, 50274, 29, 3848, 27378, 21691, 12612, 4060, 568, 33388, 84, 3, 4284, 5892, 12086, 31, 187, 50272, 92, 6071, 94, 187, 50274, 870, 3848, 27378, 21691, 12612, 31, 187, 50276, 558, 187, 4718, 187, 187, 33388, 84, 15, 8560, 15668, 426, 551, 187, 50276, 11258, 6060, 27, 15552, 15668, 15, 9133, 15, 261, 28463, 13, 187, 4718, 187, 187, 15035, 4284, 37330, 84, 28, 187 ]
import React from 'react'; import Grid from '@material-ui/core/Grid'; import * as PropTypes from 'prop-types'; import Box from '@material-ui/core/Box'; import Widget from '../components/Widget/Widget'; import DeploymentDetailsSection from '../components/DeploymentDetailsSection'; import { useDeploymentDetailsContext } from '../context/DeploymentDetailsContext'; import AlertsChartContainer from './AlertsChartContainer'; import AlertsIntegrationModal from '../components/IntergationModals/AlertsIntegrationModal/AlertsIntegrationModal'; const Alerts = ({ kindIndex }) => { const { data } = useDeploymentDetailsContext(); if (!data) { return null; } const { alerts } = data.kinds[kindIndex]; let content; // if no alerts configured if (alerts.length === 0) { content = ( <Grid item xs={12}> <Widget> <Box mt={2} mb={2} display="flex" justifyContent="space-around" > <AlertsIntegrationModal /> </Box> </Widget> </Grid> ); } else { content = ( <Grid container spacing={2}> { alerts.map(({ provider, tags }) => ( <Grid key={`${provider}-${tags}`} item xs={12}> <Widget title={provider}> <AlertsChartContainer deploymentTime={data.time} provider={provider} tags={tags} /> </Widget> </Grid> )) } </Grid> ); } return ( <DeploymentDetailsSection title="Alerts" defaultExpanded> {content} </DeploymentDetailsSection> ); }; Alerts.propTypes = { kindIndex: PropTypes.number.isRequired, }; export default Alerts;
214,360
Github
[ 187, 4, 32503, 323, 2714, 2600, 273, 3045, 64, 18982, 15, 41042, 187, 4, 187, 4, 10684, 27777, 4771, 2905, 2600, 275, 3045, 64, 18982, 15, 41042, 187, 187, 283, 6756, 2486, 16, 4924, 45005, 15, 1763, 187, 187, 4, 6000, 6293, 943, 320, 3033, 281, 271, 6498, 985, 6293, 187, 4, 313, 2520, 1071, 310, 417, 970, 253, 6293, 64, 10730, 10, 187, 187, 4, 5838, 326, 436, 1071, 588, 1891, 27, 187, 4, 428, 327, 13498, 835, 619, 64, 11972, 64, 375, 64, 301, 1082, 310, 417, 4516, 13, 187, 4, 50275, 4609, 310, 417, 253, 1083, 327, 7648, 33725, 187, 4, 428, 604, 690, 2127, 275, 253, 4771, 1057, 417, 9212, 247, 4392, 13587, 64, 2697, 64, 1838, 187, 4, 50275, 936, 271, 7935, 264, 6293, 13, 275, 534, 1083, 436, 310, 247, 7505, 187, 4, 50275, 249, 253, 4445, 42507, 15, 187, 187, 12995, 4392, 13587, 64, 1838, 13, 34487, 13, 4392, 13587, 64, 2697, 64, 1838, 432, 3045, 64, 18982, 15, 41042, 187, 50276, 31102, 4392, 13587, 64, 2697, 64, 1838, 310, 5812, 28, 535 ]
# Tests for special content of performance_schema.threads # # Show MySQL server related content in performance_schema.threads --source include/freebsd.inc # Every thread should be bound to an operating system thread # (this test is not using the thread_pool) # Note that this test will fail: # - on platforms where my_thread_os_id() is not supported, # which is not the case on FreeBSD # - if some code in the server does not assign a THREAD_OS_ID # to an instrumented thread, in which case this is a bug # in the component instrumentation. SELECT THREAD_ID, NAME, THREAD_OS_ID from performance_schema.threads WHERE THREAD_OS_ID is NULL;
214,361
Github
[ 41497, 14277, 7229, 2715, 568, 18, 15, 17, 3, 9706, 568, 18441, 14, 25, 28739, 190, 187, 29, 3306, 15664, 568, 2413, 1358, 87, 25, 15, 18, 68, 15, 579, 16, 25, 15, 19, 16, 2203, 16, 42755, 20472, 3, 15664, 27, 4826, 568, 2413, 1358, 87, 25, 15, 18, 68, 15, 579, 16, 25, 15, 18, 16, 2203, 16, 4113, 16, 4826, 3, 15664, 27, 87, 25, 568, 2413, 1358, 87, 25, 15, 18, 68, 15, 579, 16, 25, 15, 18, 16, 2203, 16, 6443, 3, 15664, 27, 87, 25, 4113, 568, 2413, 1358, 87, 25, 15, 18, 68, 15, 579, 16, 25, 15, 18, 16, 2203, 16, 4113, 3, 15664, 27, 14831, 568, 2413, 1358, 2700, 15, 88, 20, 15, 2061, 16, 8971, 16, 17733, 20838, 3, 15664, 27, 89, 9245, 568, 2413, 1358, 2700, 15, 88, 20, 15, 2061, 16, 8971, 16, 17733, 20838, 14, 14966, 1138, 2379, 186, 29, 12982, 16704, 31, 7951, 186, 29, 6259, 26170, 31, 579, 870, 6259, 26170, 31, 7951, 186, 29, 6986, 26170, 31, 579, 870, 6986, 26170, 31, 7951, 186, 29, 12982, 6074, 31, 11459, 186, 29, 301, 31, 579, 870, 301, 31, 11459, 186, 29, 3211, 31, 39082, 46640, 10453, 18664, 870, 3211, 31, 11459, 186, 29, 10008, 31, 39082, 46640, 10453, 18664, 870, 10008, 31, 7951, 186, 870, 12982, 6074, 31, 7951, 186, 29, 12982, 6074, 31, 11459, 186, 29, 301, 31, 257, 870, 301, 31, 11459, 186, 29, 3211, 31, 14376, 870, 3211, 31, 11459, 186, 29, 10008, 31, 14376, 870, 10008, 31, 7951, 186, 870, 12982, 6074, 31, 2379, 186, 870, 12982, 16704, 31, 2379, 186, 29, 31248, 31, 7951, 186, 29, 3281, 31, 25, 870, 3281, 31, 2379, 186, 870, 31248, 31, 2379, 186, 29, 8111, 5475, 31, 7951, 186, 29, 4663, 31, 17, 870, 4663, 31, 7951, 186, 29, 736, 31, 11459, 186, 29, 68, 31, 17158, 186, 29, 68, 31, 28778, 186, 29, 71, 31, 17, 870, 71, 31, 28778, 186, 29, 17945, 31, 42595, 186, 29, 87, 25, 27, 4835, 31, 190, 9220, 186, 29, 87, 25, 27, 8700, 31, 579, 870, 87, 25, 27, 8700, 31, 190, 9220, 186, 29, 87, 25, 27, 6071, 31, 29714, 1389, 7179, 870, 87, 25, 27, 6071, 31, 42595, 186, 870, 87, 25, 27, 4835, 31, 28778, 186, 870, 17945, 31, 17158, 186, 870, 68, 31, 11459, 186, 870, 68, 31, 11459, 186, 29, 68, 31, 17158, 186, 29, 68, 31, 28778, 186, 29, 71, 31, 17, 870, 71, 31, 28778, 186, 29, 17945, 31, 42595, 186, 29, 87, 25, 27, 4835, 31, 190, 9220, 186, 29, 87, 25, 27, 8700, 31, 579, 870, 87, 25, 27, 8700, 31, 190, 9220, 186, 29, 87, 25, 27, 6071, 31, 22292, 24368, 870, 87, 25, 27, 6071, 31, 42595, 186, 870, 87, 25, 27, 4835, 31, 28778, 186, 870, 17945, 31, 17158, 186, 870, 68, 31, 11459, 186, 870, 68, 31, 11459, 186, 29, 68, 31, 17158, 186, 29, 68, 31, 28778, 186, 29, 71, 31, 17, 870, 71, 31, 28778, 186, 29, 17945, 31, 42595, 186, 29, 87, 25, 27, 4835, 31, 190, 9220, 186, 29, 87, 25, 27, 8700, 31, 579, 870, 87, 25, 27, 8700, 31, 190, 9220, 186, 29, 87, 25, 27, 6071, 31, 29690, 5160, 3504, 21715, 7029, 10077, 5126, 29862, 870, 87, 25, 27, 6071, 31, 42595, 186, 870, 87, 25, 27, 4835, 31, 28778, 186, 870, 17945, 31, 17158, 186, 870, 68, 31, 11459, 186, 870, 68, 31, 11459, 186, 29, 68, 31, 17158, 186, 29, 68, 31, 28778, 186, 29, 71, 31, 17, 870, 71, 31, 28778, 186, 29, 17945, 31, 42595, 186, 29, 87, 25, 27, 4835, 31, 190, 9220, 186, 29, 87, 25, 27, 8700, 31, 579, 870, 87, 25, 27, 8700, 31, 190, 9220, 186, 29, 87, 25, 27, 6071, 31, 29714, 140, 102, 870, 87, 25, 27, 6071, 31, 42595, 186, 870, 87, 25, 27, 4835, 31, 28778, 186, 870, 17945, 31, 17158, 186, 870, 68, 31, 11459, 186, 870, 68, 31, 11459, 186, 29, 68, 31, 17158, 186, 29, 68, 31, 28778, 186, 29, 71, 31, 17, 870, 71, 31, 28778, 186, 29, 17945, 31, 42595, 186, 29, 87, 25, 27, 4835, 31, 190, 9220, 186, 29, 87, 25, 27, 8700, 31, 579, 870, 87, 25, 27, 8700, 31, 190, 9220, 186, 29, 87, 25, 27, 6071, 31, 39082, 14742, 4183, 21887, 7620, 870, 87, 25, 27, 6071, 31, 42595, 186, 870, 87, 25, 27, 4835, 31, 28778, 186, 870, 17945, 31, 17158, 186, 870, 68, 31, 11459, 186, 870, 68, 31, 11459, 186, 29, 68, 31, 17158, 186, 29, 68, 31, 28778, 186, 29, 71, 31, 17, 870, 71, 31, 28778, 186, 29, 17945, 31, 42595, 186, 29, 87, 25, 27, 4835, 31, 190, 9220, 186, 29, 87, 25, 27, 8700, 31, 579, 870, 87, 25, 27, 8700, 31, 190, 9220, 186, 29, 87, 25, 27, 6071, 31, 48390, 39178, 22515, 870, 87, 25, 27, 6071, 31, 42595, 186, 870, 87, 25, 27, 4835, 31, 28778, 186, 870, 17945, 31, 17158, 186, 870, 68, 31, 11459, 186, 870, 68, 31, 11459, 186, 29, 68, 31, 17158, 186, 29, 68, 31, 28778, 186, 29, 71, 31, 17, 870, 71, 31, 28778, 186, 29, 17945, 31, 42595, 186, 29, 87, 25, 27, 4835, 31, 190, 9220, 186, 29, 87, 25, 27, 8700, 31, 579, 870, 87, 25, 27, 8700, 31, 190, 9220, 186, 29, 87, 25, 27, 6071, 31, 39082, 30826, 12500, 870, 87, 25, 27, 6071, 31, 42595, 186, 870, 87, 25, 27, 4835, 31, 28778, 186, 870, 17945, 31, 17158, 186, 870, 68, 31, 11459, 186, 870, 68, 31, 11459, 186, 29, 68, 31, 17158, 186, 29, 68, 31, 28778, 186, 29, 71, 31, 17, 870, 71, 31, 28778, 186, 29, 17945, 31, 42595, 186, 29, 87, 25, 27, 4835, 31, 190, 9220, 186, 29, 87, 25, 27, 8700, 31, 579, 870, 87, 25, 27, 8700, 31, 190, 9220, 186, 29, 87, 25, 27, 6071, 31, 32697, 18594, 7869, 1640, 43250, 29729, 29714, 1389, 7179, 48390, 39178, 22625, 870, 87, 25, 27, 6071, 31, 42595, 186, 870, 87, 25, 27, 4835, 31, 28778, 186, 870, 17945, 31, 17158, 186, 870, 68, 31, 11459, 186, 870, 68, 31, 7951, 186, 870, 736, 31, 2379, 186, 870, 8111, 5475, 31, 2379, 186, 29, 8111, 5475, 31, 7951, 186, 29, 4663, 31, 18, 870, 4663, 31, 7951, 186, 29, 736, 31, 11459, 186, 29, 68, 31, 17158, 186, 29, 68, 31, 28778, 186, 29, 71, 31, 17, 870, 71, 31, 28778, 186, 29, 17945, 31, 42595, 186, 29, 87, 25, 27, 4835, 31, 190, 9220, 186, 29, 87, 25, 27, 8700, 31, 579, 870, 87, 25, 27, 8700, 31, 190, 9220, 186, 29, 87, 25, 27, 6071, 31, 22690, 49257, 31348, 42720, 870, 87, 25, 27, 6071, 31, 42595, 186, 870, 87, 25, 27, 4835, 31, 28778, 186, 870, 17945, 31, 17158, 186, 870, 68, 31, 11459, 186, 870, 68, 31, 11459, 186, 29, 68, 31, 17158, 186, 29, 68, 31, 28778, 186, 29, 71, 31, 17, 870, 71, 31, 28778, 186, 29, 17945, 31, 42595, 186, 29, 87, 25, 27, 4835, 31, 190, 9220, 186, 29, 87, 25, 27, 8700, 31, 579, 870, 87, 25, 27, 8700, 31, 190, 9220, 186, 29, 87, 25, 27, 6071, 31, 29690, 7029, 12559, 6715, 35883, 18664, 22690, 49257, 31348, 42720, 870, 87, 25, 27, 6071, 31, 42595, 186, 870, 87, 25, 27, 4835, 31, 28778, 186, 870, 17945, 31, 17158, 186, 870, 68, 31, 11459, 186, 870, 68, 31, 11459, 186, 29, 68, 31, 17158, 186, 29, 68, 31, 28778, 186, 29, 71, 31, 17, 870, 71, 31, 28778, 186, 29, 17945, 31, 42595, 186, 29, 87, 25, 27, 4835, 31, 190, 9220, 186, 29, 87, 25, 27, 8700, 31, 579, 870, 87, 25, 27, 8700, 31, 190, 9220, 186, 29, 87, 25, 27, 6071, 31, 140, 230, 16828, 7179, 7179, 1152, 18, 870, 87, 25, 27, 6071, 31, 42595, 186, 870, 87, 25, 27, 4835, 31, 28778, 186, 870, 17945, 31, 17158, 186, 870, 68, 31, 11459, 186, 870, 68, 31, 11459, 186, 29, 68, 31, 17158, 186, 29, 74, 31, 22, 870, 74, 31, 17158, 186, 29, 68, 31, 28778, 186, 29, 71, 31, 17, 870, 71, 31, 28778, 186, 29, 17945, 31, 42595, 186, 29, 87, 25, 27, 4835, 31, 190, 9220, 186, 29, 87, 25, 27, 8700, 31, 579, 870, 87, 25, 27, 8700, 31, 190, 9220, 186, 29, 87, 25, 27, 6071, 31, 140, 230, 16828, 7179, 7179, 1152, 18, 870, 87, 25, 27, 6071, 31, 42595, 186, 870, 87, 25, 27, 4835, 31, 28778, 186, 870, 17945, 31, 17158, 186, 870, 68, 31, 11459, 186, 870, 68, 31, 11459, 186, 29, 68, 31, 17158, 186, 29, 68, 31, 28778, 186, 29, 71, 31, 17, 870, 71, 31, 28778, 186, 29, 17945, 31, 42595, 186, 29, 87, 25, 27, 4835, 31, 190, 9220, 186, 29, 87, 25, 27, 8700, 31, 579, 870, 87, 25, 27, 8700, 31, 190, 9220, 186, 29, 87, 25, 27, 6071, 31, 21715, 43532, 18594, 43532, 9247, 5126, 29729, 870, 87, 25, 27, 6071, 31, 42595, 186, 870, 87, 25, 27, 4835, 31, 28778, 186, 870, 17945, 31, 17158, 186, 870, 68, 31, 11459, 186, 870, 68, 31, 7951, 186, 870, 736, 31, 2379, 186, 870, 8111, 5475, 31, 2379, 186, 29, 8111, 5475, 31, 7951, 186, 29, 4663, 31, 19, 870, 4663, 31, 7951, 186, 29, 736, 31, 11459, 186, 29, 68, 31, 17158, 186, 29, 74, 31, 21, 870, 74, 31, 17158, 186, 29, 68, 31, 28778, 186, 29, 71, 31, 17, 870, 71, 31, 28778, 186, 29, 17945, 31, 42595, 186, 29, 87, 25, 27, 4835, 31, 190, 9220, 186, 29, 87, 25, 27, 8700, 31, 579, 870, 87, 25, 27, 8700, 31, 190, 9220, 186, 29, 87, 25, 27, 6071, 31, 22690, 1674, 4141, 3415, 21475, 870, 87, 25, 27, 6071, 31, 42595, 186, 870, 87, 25, 27, 4835, 31, 28778, 186, 870, 17945, 31, 17158, 186, 870, 68, 31, 11459, 186, 870, 68, 31, 11459, 186, 29, 68, 31, 17158, 186, 29, 68, 31, 28778, 186, 29, 71, 31, 17, 870, 71, 31, 28778, 186, 29, 17945, 31, 42595, 186, 29, 87, 25, 27, 4835, 31, 190, 9220, 186, 29, 87, 25, 27, 8700, 31, 579, 870, 87, 25, 27, 8700, 31, 190, 9220, 186, 29, 87, 25, 27, 6071, 31, 67, 21, 317, 19136, 68, 14, 24, 2950, 66, 14, 883, 70, 25, 14, 26, 5781, 18, 14, 26942, 69, 24, 67, 25, 2320, 20, 69, 18, 870, 87, 25, 27, 6071, 31, 42595, 186, 870, 87, 25, 27, 4835, 31, 28778, 186, 870, 17945, 31, 17158, 186, 870, 68, 31, 11459, 186, 870, 68, 31, 11459, 186, 29, 68, 31, 17158, 186, 29, 74, 31, 24, 870, 74, 31, 17158, 186, 29, 68, 31, 28778, 186, 29, 71, 31, 17, 870, 71, 31, 28778, 186, 29, 17945, 4357, 17158, 186, 870, 68, 31, 11459, 186, 870, 68, 31, 7951, 186, 870, 736, 31, 2379, 186, 870, 8111, 5475, 31, 2379, 186, 29, 8111, 5475, 31, 7951, 186, 29, 4663, 31, 20, 870, 4663, 31, 7951, 186, 29, 736, 31, 11459, 186, 29, 68, 31, 17158, 186, 29, 74, 31, 21, 870, 74, 31, 17158, 186, 29, 68, 31, 28778, 186, 29, 71, 31, 17, 870, 71, 31, 28778, 186, 29, 17945, 31, 42595, 186, 29, 87, 25, 27, 4835, 31, 190, 9220, 186, 29, 87, 25, 27, 8700, 31, 579, 870, 87, 25, 27, 8700, 31, 190, 9220, 186, 29, 87, 25, 27, 6071, 31, 25518, 1152, 12500, 5126, 33036, 13080, 870, 87, 25, 27, 6071, 31, 42595, 186, 870, 87, 25, 27, 4835, 31, 28778, 186, 870, 17945, 31, 17158, 186, 870, 68, 31, 11459, 186, 870, 68, 31, 11459, 186, 29, 68, 31, 17158, 186, 29, 68, 31, 28778, 186, 29, 71, 31, 17, 870, 71, 31, 28778, 186, 29, 17945, 31, 42595, 186, 29, 87, 25, 27, 4835, 31, 190, 9220, 186, 29, 87, 25, 27, 8700, 31, 579, 870, 87, 25, 27, 8700, 31, 190, 9220, 186, 29, 87, 25, 27, 6071, 31, 140, 230, 16828, 7179, 7179, 1152, 18, 870, 87, 25, 27, 6071, 31, 42595, 186, 870, 87, 25, 27, 4835, 31, 28778, 186, 870, 17945, 31, 17158, 186, 870, 68, 31, 11459, 186, 870, 68, 31, 11459, 186, 29, 68, 31, 17158, 186, 29, 68, 31, 28778, 186, 29, 71, 31, 17, 870, 71, 31, 17158, 186, 870, 68, 31, 11459, 186, 870, 68, 31, 11459, 186, 29, 68, 31, 17158, 186, 29, 68, 31, 28778, 186, 29, 71, 31, 17, 870, 71, 31, 28778, 186, 29, 17945, 4357, 17158, 186, 870, 68, 31, 11459, 186, 870, 68, 31, 7951, 186, 870, 736, 31, 2379, 186, 870, 8111, 5475, 31, 2379, 186, 29, 8111, 5475, 31, 7951, 186, 29, 4663, 31, 21, 870, 4663, 31, 7951, 186, 29, 736, 31, 11459, 186, 29, 68, 31, 17158, 186, 29, 74, 31, 20, 870, 74, 31, 17158, 186, 29, 68, 31, 28778, 186, 29, 71, 31, 17, 870, 71, 31, 28778, 186, 29, 17945, 31, 42595, 186, 29, 87, 25, 27, 4835, 31, 190, 9220, 186, 29, 87, 25, 27, 8700, 31, 579, 870, 87, 25, 27, 8700, 31, 190, 9220, 186, 29, 87, 25, 27, 6071, 31, 89, 1678, 4120, 84, 870, 87, 25, 27, 6071, 31, 42595, 186, 870, 87, 25, 27, 4835, 31, 28778, 186, 870, 17945, 31, 17158, 186, 870, 68, 31, 11459, 186, 870, 68, 31, 7951, 186, 870, 736, 31, 2379, 186, 870, 8111, 5475, 31, 2379, 186, 29, 8111, 5475, 31, 7951, 186, 29, 4663, 31, 22, 870, 4663, 31, 7951, 186, 29, 736, 31, 11459, 186, 29, 68, 31, 17158, 186, 29, 74, 31, 21, 870, 74, 31, 17158, 186, 29, 68, 31, 28778, 186, 29, 71, 31, 17, 870, 71, 31, 28778, 186, 29, 17945, 31, 42595, 186, 29, 87, 25, 27, 4835, 31, 190, 9220, 186, 29, 87, 25, 27, 8700, 31, 579, 870, 87, 25, 27, 8700, 31, 190, 9220, 186, 29, 87, 25, 27, 6071, 31, 39082, 30826, 12500, 870, 87, 25, 27, 6071, 31, 42595, 186, 870, 87, 25, 27, 4835, 31, 28778, 186, 870, 17945, 31, 17158, 186, 870, 68, 31, 11459, 186, 870, 68, 31, 11459, 186, 29, 68, 31, 17158, 186, 29, 68, 31, 28778, 186, 29, 71, 31, 17, 870, 71, 31, 28778, 186, 29, 17945, 31, 42595, 186, 29, 87, 25, 27, 4835, 31, 190, 9220, 186, 29, 87, 25, 27, 8700, 31, 579, 870, 87, 25, 27, 8700, 31, 190, 9220, 186, 29, 87, 25, 27, 6071, 31, 140, 230, 16828, 7179, 7179, 1152, 870, 87, 25, 27, 6071, 31, 42595, 186, 870, 87, 25, 27, 4835, 31, 28778, 186, 870, 17945, 31, 17158, 186, 870, 68, 31, 11459, 186, 870, 68, 31, 7951, 186, 870, 736, 31, 2379, 186, 870, 8111, 5475, 31, 2379, 186, 29, 8547, 10715, 31, 5672, 870, 8547, 10715, 31, 2379, 186, 29, 6986, 10069, 6060, 31, 18, 870, 6986, 10069, 6060, 31, 2379, 186, 29, 7436, 31, 23, 870, 7436, 31, 2379, 186, 29, 46594, 27500, 31, 23, 870, 46594, 27500, 31, 2379, 186, 29, 8124, 31, 7951, 186, 29, 3429, 31, 3547, 870, 3429, 31, 2379, 186, 870, 8124, 31, 190, 187, 870, 3306, 31 ]
<?xml version="1.0" encoding="UTF-8"?> <document xmlns="http://v8.1c.ru/8.2/data/spreadsheet" xmlns:style="http://v8.1c.ru/8.1/data/ui/style" xmlns:v8="http://v8.1c.ru/8.1/data/core" xmlns:v8ui="http://v8.1c.ru/8.1/data/ui" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <languageSettings> <currentLanguage>ru</currentLanguage> <defaultLanguage>ru</defaultLanguage> <languageInfo> <id>ru</id> <code>Русский</code> <description>Русский</description> </languageInfo> <languageInfo> <id>en</id> <code>English</code> <description>English</description> </languageInfo> </languageSettings> <columns> <size>8</size> </columns> <rowsItem> <index>0</index> <row> <c> <c> <f>0</f> <tl> <v8:item> <v8:lang>ru</v8:lang> <v8:content>Тип</v8:content> </v8:item> </tl> </c> </c> <c> <c> <f>0</f> <tl> <v8:item> <v8:lang>ru</v8:lang> <v8:content>Вид</v8:content> </v8:item> </tl> </c> </c> <c> <c> <f>0</f> <tl> <v8:item> <v8:lang>ru</v8:lang> <v8:content>ИмяПеременной</v8:content> </v8:item> </tl> </c> </c> <c> <c> <f>0</f> <tl> <v8:item> <v8:lang>ru</v8:lang> <v8:content>ТЧ</v8:content> </v8:item> </tl> </c> </c> <c> <c> <f>0</f> <tl> <v8:item> <v8:lang>ru</v8:lang> <v8:content>Реквизит</v8:content> </v8:item> </tl> </c> </c> <c> <c> <f>0</f> <tl> <v8:item> <v8:lang>ru</v8:lang> <v8:content>Значение</v8:content> </v8:item> </tl> </c> </c> <c> <c> <f>0</f> <tl> <v8:item> <v8:lang>ru</v8:lang> <v8:content>Режим</v8:content> </v8:item> </tl> </c> </c> <c> <c> <f>0</f> <tl> <v8:item> <v8:lang>ru</v8:lang> <v8:content>ДополнительныйТипЗначения</v8:content> </v8:item> </tl> </c> </c> </row> </rowsItem> <rowsItem> <index>1</index> <row> <c> <c> <f>0</f> <tl> <v8:item> <v8:lang>ru</v8:lang> <v8:content>Справочник</v8:content> </v8:item> </tl> </c> </c> <c> <c> <f>0</f> <tl> <v8:item> <v8:lang>ru</v8:lang> <v8:content>ИерархическийСправочник</v8:content> </v8:item> </tl> </c> </c> <c> <c> <f>0</f> <tl> <v8:item> <v8:lang>ru</v8:lang> <v8:content>Группа1</v8:content> </v8:item> </tl> </c> </c> <c> <i>5</i> <c> <f>0</f> <tl> <v8:item> <v8:lang>ru</v8:lang> <v8:content>Группа1</v8:content> </v8:item> </tl> </c> </c> <c> <c> <f>0</f> <tl> <v8:item> <v8:lang>ru</v8:lang> <v8:content>Предопределенный</v8:content> </v8:item> </tl> </c> </c> </row> </rowsItem> <rowsItem> <index>2</index> <row> <c> <i>4</i> <c> <f>0</f> <tl> <v8:item> <v8:lang>ru</v8:lang> <v8:content>Ссылка</v8:content> </v8:item> </tl> </c> </c> <c> <c> <f>0</f> <tl> <v8:item> <v8:lang>ru</v8:lang> <v8:content>b4ac232c-746a-11e8-9aa1-704d7b8af3d1</v8:content> </v8:item> </tl> </c> </c> <c> <i>7</i> <c> <f>0</f> <tl/> </c> </c> </row> </rowsItem> <rowsItem> <index>3</index> <row> <c> <i>4</i> <c> <f>0</f> <tl> <v8:item> <v8:lang>ru</v8:lang> <v8:content>Наименование</v8:content> </v8:item> </tl> </c> </c> <c> <c> <f>0</f> <tl> <v8:item> <v8:lang>ru</v8:lang> <v8:content>Группа1</v8:content> </v8:item> </tl> </c> </c> <c> <c> <f>0</f> </c> </c> <c> <c> <f>0</f> <tl/> </c> </c> </row> </rowsItem> <rowsItem> <index>4</index> <row> <c> <i>3</i> <c> <f>0</f> <tl> <v8:item> <v8:lang>ru</v8:lang> <v8:content>xddMods</v8:content> </v8:item> </tl> </c> </c> </row> </rowsItem> <rowsItem> <index>5</index> <row> <c> <i>4</i> <c> <f>0</f> <tl> <v8:item> <v8:lang>ru</v8:lang> <v8:content>Режим</v8:content> </v8:item> </tl> </c> </c> <c> <c> <f>0</f> <tl> <v8:item> <v8:lang>ru</v8:lang> <v8:content>Группа</v8:content> </v8:item> </tl> </c> </c> </row> </rowsItem> <templateMode>true</templateMode> <defaultFormatIndex>1</defaultFormatIndex> <height>6</height> <vgRows>6</vgRows> <format> <width>72</width> </format> </document>
214,362
Github
[ 4, 34834, 4805, 16, 31333, 187, 817, 16536, 43067, 16536, 817, 187, 817, 187, 817, 831, 2603, 1873, 310, 629, 273, 253, 24619, 47, 6527, 1527, 2603, 2199, 187, 817, 187, 817, 8283, 313, 68, 10, 6247, 8217, 3690, 15, 285, 253, 24619, 47, 6527, 2199, 4477, 187, 817, 21737, 762, 14325, 4637, 362, 19, 15, 17, 187, 817, 187, 817, 2594, 21826, 15, 10134, 323, 7981, 1491, 187, 817, 2594, 38623, 15, 10134, 323, 253, 1618, 273, 24619, 47, 6527, 2199, 4477, 187, 817, 187, 817, 35588, 57, 14, 17736, 14, 18483, 27, 14325, 14, 19, 15, 17, 187, 817, 187, 817, 16536, 43067, 16536, 817, 187, 187, 1178, 428, 16427, 187, 1568, 43306, 22942, 48023, 14035, 1590, 26107, 35, 14194, 64, 30095, 60, 17, 62, 13272, 46713, 3857, 268, 14066, 46713, 187, 187, 12780, 64, 7341, 17779, 12780, 3, 187, 187, 6050, 755, 28330, 346, 85, 5136, 1478, 28, 513, 187, 50274, 5045, 12122, 2178, 3, 275, 187, 50270, 85, 10, 187, 50266, 12780, 64, 7341, 31462, 18904, 24584, 3, 187, 50266, 12723, 187, 50270, 5627, 187, 50266, 19874, 337, 187, 50266, 12723, 187, 50274, 265, 317, 187, 17506, 187, 187, 48830, 64, 5903, 483, 44241, 18835, 16306, 428, 69, 12122, 12780, 64, 7341, 14206, 36036, 14, 48830, 64, 25240, 6873, 2807, 187, 9, 187, 2428, 12122, 48830, 64, 5903, 483, 3, 187, 14769, 19327, 1969, 16719, 337, 5987, 1358, 7280, 15, 681, 16, 19934, 16, 36036, 14, 48830, 187, 10, 187, 187, 11551, 3019, 9, 18904, 9816, 14, 18, 1228, 187, 187, 19453, 64, 936, 64, 6321, 30, 1587, 5, 1568, 36561, 2566, 64, 4556, 36036, 10, 187, 187, 338, 8605, 370, 4, 428, 7332, 470, 5032, 2194, 840, 187, 50274, 19453, 64, 936, 64, 6321, 30, 1587, 5, 33, 2807, 187, 11125, 187, 187, 3, 5, 48830, 64, 5903, 483, 16, 36036, 14, 48830, 16, 29653, 318, 26943, 16, 455, 4341, 14, 20285, 14, 19453, 14, 13149, 16, 6321, 14, 455, 4341, 14, 20285, 15, 1200, 3, 393, 187, 50274, 14, 81, 12122, 1568, 16, 4598, 31042, 393, 187, 50274, 14, 78, 427, 6527, 393, 187, 50274, 14, 78, 427, 6527, 23760, 18, 393, 187, 50274, 14, 78, 427, 6527, 23760, 19, 393, 187, 50274, 14, 85, 12122, 12780, 64, 7341, 3, 393, 187, 50274, 14, 69, 654, 9, 7392, 29996, 10708, 9, 6434, 27, 346, 3614, 1358, 7280, 15, 681, 16, 19934, 16, 36036, 14, 48830, 15, 14769, 995, 432, 27, 346, 19, 15, 17, 15, 17, 8375, 8, 2387, 393, 187, 50274, 3, 8626, 19453, 64, 936, 64, 6321, 683, 62, 13272, 187 ]
#!/bin/bash ##===----------------------------------------------------------------------===## ## ## This source file is part of the SwiftNIO open source project ## ## Copyright (c) 2019 Apple Inc. and the SwiftNIO project authors ## Licensed under Apache License v2.0 ## ## See LICENSE.txt for license information ## See CONTRIBUTORS.txt for the list of SwiftNIO project authors ## ## SPDX-License-Identifier: Apache-2.0 ## ##===----------------------------------------------------------------------===## set -eu here="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" tmp_dir="/tmp" while getopts "t:" opt; do case "$opt" in t) tmp_dir="$OPTARG" ;; *) exit 1 ;; esac done nio_checkout=$(mktemp -d "$tmp_dir/.swift-nio_XXXXXX") ( cd "$nio_checkout" git clone --depth 1 https://github.com/apple/swift-nio ) shift $((OPTIND-1)) tests_to_run=("$here"/test_*.swift) if [[ $# -gt 0 ]]; then tests_to_run=("$@") fi "$nio_checkout/swift-nio/IntegrationTests/allocation-counter-tests-framework/run-allocation-counter.sh" \ -p "$here/../../.." \ -m NIO \ -m NIOHTTP1 \ -m NIOHTTP2 \ -t "$tmp_dir" \ -d <( echo '.package(url: "https://github.com/apple/swift-nio.git", from: "2.0.0"),' ) \ "${tests_to_run[@]}"
214,363
Github
[ 1731, 883, 15, 18, 15, 18, 426, 551, 187, 186, 11375, 426, 1283, 16587, 2405, 187, 94, 187, 1731, 3712, 15, 18, 15, 18, 426, 551, 187, 186, 11375, 426, 1283, 1812, 933, 187, 94, 187 ]
2611.1.1 = { holder = 1836031 } 2651.1.1 = { holder = 1836000 }
214,364
Github
[ 2948, 7684, 187, 2948, 1959, 3980, 279, 18128, 14418, 347, 7954, 187, 4064, 1846, 15, 12292, 398, 1395, 49703, 187, 4064, 1846, 15, 7872, 64, 16885, 1395, 755, 64, 7872, 64, 8102, 13, 2451, 64, 10975, 13, 29339, 64, 32769, 64, 13266, 187, 4064, 1846, 15, 7872, 64, 16885, 1395, 25503, 6117, 64, 7058, 64, 13690, 13, 25503, 6117, 64, 17423, 64, 25490, 6117, 13, 25503, 6117, 64, 28893, 4548, 64, 39, 3271, 13635, 187, 2948, 11876, 187, 187, 4, 9978, 6333, 187, 10121, 426, 755, 64, 7872, 64, 8102, 1082, 187, 187, 14626, 27, 187, 50274, 17423, 64, 25490, 6117, 426, 2451, 64, 10975, 9, 10121, 60, 25490, 6117, 64, 17423, 64, 25490, 6117, 3291, 187, 50274, 28893, 4548, 64, 7058, 64, 13690, 426, 2451, 64, 10975, 9, 10121, 60, 25490, 6117, 64, 7058, 64, 13690, 3291, 187, 50274, 25490, 6117, 64, 13266, 426, 7684, 15, 3967, 15, 13956, 9, 4786, 15, 788, 6989, 3233, 13694, 5715, 29339, 64, 32769, 64, 13266, 13, 4610, 60, 25490, 6117, 64, 28893, 4548, 64, 39, 3271, 13635, 3291, 187, 16829, 10030, 4756, 27, 187, 50274, 17423, 64, 25490, 6117, 426, 16708, 535, 187, 1545, 1056, 64, 10146, 9672, 8854, 2262, 187, 50274, 2309, 14412, 33109, 25, 84, 686, 2462, 1269, 323, 1269, 275, 13059, 62, 535, 187, 1545, 795, 788, 64, 12292, 398, 64, 7341, 14850, 187, 50274, 14626, 27, 187, 50270, 338, 7684, 15, 3967, 15, 5800, 343, 9, 4786, 15, 788, 6989, 3233, 13694, 6649, 285, 417, 7684, 15, 3967, 15, 5800, 343, 9, 25490, 6117, 64, 13266, 2262, 187, 50266, 375, 15, 78, 6840, 19384, 9, 25490, 6117, 64, 13266, 10, 187, 50274, 16829, 473, 2354, 37369, 27, 187, 50270, 10404, 15, 35856, 15, 6343, 1587, 18128, 20851, 11759, 27, 812, 417, 2794, 1854, 2462, 84, 61, 79, 3, 2462, 25503, 6117, 64, 13266, 10, 187, 50270, 2309, 16708, 535, 50274, 2309, 25503, 6117, 64, 13266, 535, 187, 2437, 399, 14661, 28517, 27, 187, 50274, 32488, 187, 50274, 37, 14661, 21626, 281, 320, 908, 604, 4522, 398, 403, 13603, 15, 187, 50274, 32488, 187, 50274, 1545, 4772, 4478, 21920, 1286, 13, 475, 8854, 13, 1401, 36830, 2262, 187, 50270, 5858, 535, 50274, 1545, 3523, 9, 1286, 13, 475, 8854, 13, 1401, 36830, 2262, 187, 50270, 5858, 535, 50274, 1545, 1265, 9, 1286, 13, 475, 8854, 13, 1401, 36830, 2262, 187, 50270, 5858, 535, 50274, 1545, 3523, 64, 395, 64, 3845, 9, 1286, 2262, 187, 50270, 5858, 535, 50274, 1545, 3523, 64, 3845, 64, 395, 64, 8250, 9, 1286, 2262, 187, 50270, 5858, 535, 50274, 1545, 2590, 64, 2203, 9, 1286, 2262, 187, 50270, 5858, 535, 50274, 1545, 3379, 64, 22829, 9, 1286, 2262, 187, 50270, 5858, 535, 50274, 1545, 3379, 64, 46601, 366, 9, 1286, 2262, 187, 50270, 5858, 535, 50274, 1545, 3379, 64, 8766, 3397, 9, 1286, 2262, 187, 50270, 5858, 535, 187, 2437, 329, 3077, 462, 28517, 9, 28517, 2262, 187, 50274, 32488, 34, 49703, 342, 247, 26483, 14980, 3948, 7976, 6880, 326, 20131, 21626, 1543, 281, 247, 1873, 1016, 1614, 15, 187, 50274, 32488, 187, 50274, 1545, 4772, 4478, 21920, 1286, 13, 21626, 64, 1590, 13, 3630, 64, 2808, 30, 5653, 2262, 187, 50270, 32488, 187, 50270, 21164, 265, 21626, 15, 49703, 1416, 310, 1416, 326, 588, 320, 275, 20131, 10478, 285, 629, 273, 19722, 604, 3630, 64, 2808, 30, 5088, 187, 50270, 2042, 3630, 64, 2808, 2032, 285, 4522, 398, 20893, 11410, 313, 28893, 4548, 64, 7058, 64, 13690, 30, 5088, 10, 5321, 21626, 8692, 281, 1873, 15, 535, 50270, 32488, 187, 50270, 28517, 24856, 4478, 21920, 1286, 13, 21626, 64, 1590, 10, 187, 50270, 1286, 15, 27641, 426, 8256, 187, 50270, 1286, 15, 6343, 64, 2808, 426, 3630, 64, 2808, 187, 50270, 1286, 15, 2808, 64, 1590, 426, 8256, 535, 50274, 1545, 795, 6343, 9, 1286, 13, 2505, 2262, 187, 50270, 338, 417, 795, 788, 64, 12292, 398, 64, 7341, 14850, 187, 50266, 2309, 187, 50270, 338, 417, 1881, 15, 2808, 64, 1590, 27, 187, 50266, 358, 4904, 603, 64, 301, 426, 7954, 15, 788, 39976, 603, 5023, 358, 16695, 1838, 428, 337, 187, 50266, 1286, 15, 2808, 64, 1590, 426, 7684, 15, 3967, 15, 13956, 10107, 788, 64, 12292, 398, 64, 7341, 5715, 25137, 84, 42910, 2640, 69, 15, 10134, 8, 2462, 313, 1286, 15, 26320, 64, 1590, 13, 802, 4904, 603, 64, 301, 1228, 187, 50266, 9561, 426, 686, 88, 8, 50276, 4, 6325, 1873, 187, 50270, 7271, 27, 187, 50266, 9561, 426, 686, 66, 8, 187, 50270, 3113, 1527, 9, 1286, 15, 2808, 64, 1590, 13, 4438, 10, 347, 269, 27, 187, 50266, 71, 15, 6343, 9, 1156, 10, 187, 50266, 71, 15, 6343, 2073, 61, 79, 3401, 535, 50274, 1545, 3523, 64, 3845, 64, 395, 64, 8250, 9, 1286, 2262, 187, 50270, 32488, 187, 50270, 15021, 21626, 13, 3453, 906, 13, 285, 2590, 4522, 398, 15, 187, 50270, 2042, 46023, 281, 1873, 13, 604, 20546, 403, 417, 3761, 281, 1404, 13, 747, 10478, 1386, 588, 320, 2879, 15, 187, 50270, 32488, 187, 50270, 28517, 15, 13121, 64, 395, 64, 3845, 9, 1286, 10, 535, 50270, 338, 1881, 15, 6343, 64, 2808, 285, 35049, 4548, 64, 7058, 64, 13690, 27, 187, 50266, 14077, 426, 7954, 15, 6259, 22529, 1082, 187, 50266, 27641, 426, 1056, 64, 10146, 2073, 22529, 1383, 42368, 89, 60, 17, 62, 323, 1269, 275, 1881, 15, 12292, 398, 3291, 187, 50266, 338, 1881, 15, 27641, 3613, 20546, 27, 187, 50262, 1286, 3333, 6343, 2073, 5983, 13956, 9, 27641, 10, 559, 18116, 79, 8, 559, 686, 5983, 13956, 40116, 48530, 475, 313, 5025, 9, 89, 10, 428, 374, 10, 559, 686, 50276, 8, 323, 1269, 275, 20546, 27829, 187, 50262, 1286, 15, 27641, 426, 20546, 535, 50266, 736, 426, 8168, 187, 50266, 1542, 10478, 13, 821, 275, 23367, 9, 1286, 15, 27641, 13, 544, 14077, 62, 559, 544, 89, 60, 18, 62, 323, 1269, 275, 1881, 15, 12292, 398, 46295, 187, 50262, 736, 15, 9691, 2073, 6, 11, 84, 686, 2462, 313, 5025, 9, 10146, 10, 428, 374, 13, 540, 9, 1208, 10689, 187, 50266, 1286, 3333, 6343, 2073, 5983, 13956, 9, 736, 1228, 535, 187, 34, 1433, 7438, 426, 329, 3077, 462, 28517, 604, 19226, 64, 25490, 6117, 2010, 399, 14661, 28517, 187 ]
import os import freeOrionAIInterface as fo from common.timers import Timer from common.option_tools import get_option_dict, check_bool, DEFAULT_SUB_DIR from common.option_tools import TIMERS_TO_FILE, TIMERS_USE_TIMERS, TIMERS_DUMP_FOLDER import sys # setup module options = get_option_dict() try: USE_TIMERS = check_bool(options[TIMERS_USE_TIMERS]) DUMP_TO_FILE = check_bool(options[TIMERS_TO_FILE]) TIMERS_DIR = os.path.join(fo.getUserDataDir(), DEFAULT_SUB_DIR, options[TIMERS_DUMP_FOLDER]) except KeyError: USE_TIMERS = False def make_header(*args): return ['%-8s ' % x for x in args] def _get_timers_dir(): try: if os.path.isdir(fo.getUserDataDir()) and not os.path.isdir(TIMERS_DIR): os.makedirs(TIMERS_DIR) except OSError: sys.stderr.write("AI Config Error: could not create path %s\n" % TIMERS_DIR) return False return TIMERS_DIR class DummyTimer: """ Dummy timer to be used if timers are disabled. """ def __init__(self, *args, **kwargs): pass def stop(self, *args, **kwargs): pass def start(self, *args, **kwargs): pass def stop_and_print(self): pass def stop_print_and_clear(self): pass def clear_data(self): pass def print_flat(self): pass def print_aggregate(self): pass def print_statistics(self): pass class AILogTimer(Timer): """A Timer with a FO AI engine dependent extension that logs timer results to a file each turn. """ def __init__(self, timer_name, write_log=False): """ Creates timer. Timer name is name that will be in logs header and part of filename if write_log=True If write_log true and timers logging enabled (DUMP_TO_FILE=True) save timer info to file. """ Timer.__init__(self, timer_name) self.headers = None self.write_log = write_log self.log_name = None def _write(self, text): if not _get_timers_dir(): return if not self.log_name: empaire_id = fo.getEmpire().empireID - 1 self.log_name = os.path.join(_get_timers_dir(), '%s-%02d.txt' % (self.timer_name, empaire_id)) mode = 'w' # empty file else: mode = 'a' with open(self.log_name, mode) as f: f.write(text) f.write('\n') def stop_print_and_clear(self): """ Stop timer, output result, and clear timers. If dumping to file, if headers are not match to prev, new header line will be added. """ Timer.stop_and_print(self) if self.write_log and DUMP_TO_FILE: turn = fo.currentTurn() headers = make_header('Turn', *[x[0] for x in self.timers]) if self.headers != headers: self._write(''.join(headers) + '\n' + ''.join(['-' * (len(x) - 2) + ' ' for x in headers])) self.headers = headers row = [] for header, val in zip(self.headers, [turn] + [x[1] for x in self.timers]): row.append('%*s ' % (len(header) - 2, int(val))) self._write(''.join(row)) AITimer = AILogTimer if USE_TIMERS else DummyTimer
214,365
Github
[ 56, 187, 8196, 187, 605, 428, 17, 15, 2125, 1235, 1348, 187, 17, 89, 5377, 20, 36, 2446, 2055, 187, 605, 470, 15, 26857, 12347, 187, 17, 89, 1762, 38, 23, 37, 9151, 22, 187, 605, 428, 17, 15, 31253, 1093, 187, 17, 30962, 21, 35, 2405, 746, 187, 605, 428, 17, 15, 361, 18263, 187, 17, 30962, 16380, 805, 39, 20, 187, 605, 428, 17, 15, 22439, 26, 2357, 187, 17, 89, 18446, 2640, 36, 8998, 20, 187, 605, 470, 15, 520, 1787, 1967, 187, 17, 89, 520, 36, 1610, 36681, 187, 605, 470, 15, 12582, 22179, 187, 17, 89, 2640, 37, 48694, 1235, 187, 605, 428, 17, 15, 361, 2537, 1812, 187, 17, 30962, 22, 38, 1857, 35, 25, 187, 605, 470, 15, 5525, 33304, 187, 17, 89, 361, 28053, 1012, 38, 187, 605, 470, 15, 49180, 3763, 187, 17, 89, 361, 36, 1671, 37, 1867, 187, 605, 428, 17, 15, 18348, 42763, 187, 17, 89, 6739, 1812, 18446, 6739, 187, 605, 428, 17, 15, 520, 1812, 3566, 187, 17, 89, 12297, 20, 3269, 17, 39, 17, 187, 605, 428, 17, 15, 361, 2759, 1348, 187, 17, 33392, 5607, 16380, 25, 34, 26, 187, 605, 428, 17, 15, 40085, 1762, 187, 17, 30962, 34, 17, 37, 21645, 187, 605, 428, 17, 15, 45341, 3141, 187, 17, 30962, 23, 37, 3079, 520, 187, 605, 428, 17, 15, 520, 3547, 746, 187, 17, 33392, 9151, 3979, 31110, 187, 605, 428, 17, 15, 19634, 19816, 187, 17, 33392, 8998, 18, 37, 2537, 38, 187, 605, 470, 15, 21348, 44034, 187, 17, 89, 2125, 35, 1229, 2350, 22, 187, 605, 470, 15, 15798, 35466, 187, 17, 89, 19634, 21, 34, 23, 38, 25, 187, 605, 428, 17, 15, 2640, 740, 1423, 187, 17, 89, 10914, 21, 39, 1099, 1619, 187, 605, 470, 15, 520, 1449, 3156, 187, 17, 89, 520, 2648, 1047, 34, 24, 187, 605, 470, 15, 2125, 35967, 187, 17, 89, 1762, 16763, 12648, 25, 187, 605, 428, 17, 15, 933, 31408, 187, 17, 30962, 39, 2904, 29137, 187, 605, 428, 17, 15, 20151, 11718, 187, 17, 89, 18446, 2759, 28053, 37, 187, 605, 428, 17, 15, 2640, 1036, 2537, 187, 17, 89, 10914, 20, 34, 26, 7386, 20, 187, 605, 470, 15, 24133, 2405, 187, 17, 89, 2874, 38, 44160, 39, 187, 605, 428, 17, 15, 2640, 1099, 3547, 187, 17, 89, 10914, 18, 36, 22, 37, 24, 34, 187, 605, 428, 17, 15, 520, 1036, 4148, 187, 17, 89, 12297, 1438, 35, 3208, 35, 187, 605, 428, 17, 15, 17048, 15270, 187, 17, 33392, 4280, 33727, 1934, 187, 605, 428, 17, 15, 3071, 47227, 187, 17, 33392, 25, 8551, 187, 605, 470, 15, 11494, 27043, 187, 17, 89, 520, 22917, 2357, 1525, 187, 605, 428, 17, 15, 17048, 25616, 187, 17, 89, 6739, 4185, 1797, 34, 18, 187, 605, 470, 15, 520, 1731, 1166, 187, 17, 89, 11325, 37, 23, 39, 938, 187, 605, 428, 17, 15, 520, 1839, 4185, 187, 17, 89, 12297, 1839, 4148, 38, 19, 187, 605, 428, 17, 15, 520, 1549, 1099, 187, 17, 89, 10914, 39, 19, 38, 12971, 187, 605, 428, 17, 15, 7931, 21340, 187, 17, 30962, 11124, 37, 10914, 187, 605, 470, 15, 4699, 16989, 187, 17, 89, 5525, 2082, 39, 4280, 187, 605, 470, 15, 7931, 18962, 187, 17, 89, 361, 38, 26, 6739, 4185, 187, 605, 470, 15, 361, 2950, 1717, 187, 17, 89, 361, 4148, 12648, 1423, 187, 605, 470, 15, 361, 3571, 883, 187, 17, 89, 361, 4339, 42630, 18, 187, 605, 470, 15, 520, 2222, 1867, 187, 17, 89, 2640, 28953, 37, 2904, 187, 605, 470, 15, 9992, 24264, 187, 17, 89, 18348, 2648, 26942, 187, 605, 470, 15, 361, 2787, 2251, 187, 17, 89, 9104, 1235, 39, 1867, 187, 605, 470, 15, 22439, 27122, 187, 17, 89, 2125, 38, 23, 35, 40020, 187, 605, 428, 17, 15, 361, 2511, 1762, 187, 17, 33392, 1703, 36, 1787, 746, 187, 605, 470, 15, 2941, 746, 740, 187, 17, 89, 2125, 1010, 34, 1047, 38, 187, 605, 470, 15, 8972, 23850, 187, 17, 89, 520, 1610, 12648, 39, 21, 187, 605, 428, 17, 15, 7931, 19631, 187, 17, 30962, 14231, 8998, 35, 187, 605, 428, 17, 15, 21348, 12224, 187, 17, 89, 18446, 1549, 37, 26, 1036, 187, 605, 428, 17, 15, 18348, 34938, 187, 17, 89, 6739, 19, 38, 14521, 20, 187, 605, 428, 17, 15, 22439, 9726, 187, 17, 89, 18446, 18, 34, 2090, 34, 20, 187, 605, 470, 15, 2125, 1610, 4148, 187, 17, 89, 30541, 38, 2904, 1797, 187, 605, 428, 17, 15, 21348, 34769, 187, 17, 89, 18446, 21, 37, 2925, 740, 187, 605, 470, 15, 46020, 1010, 187, 17, 89, 7931, 31436, 4877, 187, 605, 470, 15, 12582, 25959, 187, 17, 89, 2640, 38, 22, 3269, 36, 20, 187, 605, 428, 17, 15, 361, 2759, 1540, 187, 17, 33392, 5607, 2446, 47017, 187, 605, 428, 17, 15, 16604, 34906, 187, 17, 89, 6739, 24, 35, 48105, 38, 187, 605, 428, 17, 15, 29407, 3593, 187, 17, 30962, 36, 25, 1703, 38, 17, 187, 605, 470, 15, 33416, 520, 187, 17, 89, 4838, 38, 21, 35, 2227, 187, 605, 470, 15, 5525, 21361, 187, 17, 89, 8897, 35, 20, 38, 2222, 187, 605, 428, 17, 15, 31202, 3547, 187, 17, 30962, 36, 22, 1703, 2504, 187, 605, 470, 15, 19635, 1839, 187, 17, 89, 31272, 1237, 3245, 187, 605, 470, 15, 2941, 1099, 1976, 187, 17, 89, 30969, 35, 23, 36, 4196, 187, 605, 428, 17, 15, 9992, 30452, 187, 17, 89, 10914, 1549, 34, 1010, 36, 187, 605, 428, 17, 15, 17048, 14711, 187, 17, 33392, 4280, 3507, 38, 2358, 187, 605, 428, 17, 15, 18348, 25289, 187, 17, 89, 6739, 20, 38, 3583, 39, 25, 187, 605, 470, 15, 10496, 25085, 187, 17, 89, 520, 39, 3245, 3979, 23, 187, 605, 470, 15, 41545, 3593, 187, 17, 89, 361, 37, 24, 34, 2759, 36, 187, 605, 428, 17, 15, 8897, 30452, 187, 17, 33392, 5607, 26, 37, 42949, 187, 605, 470, 15, 8972, 28871, 187, 17, 89, 520, 25008, 36, 1047, 187, 605, 470, 15, 12582, 18359, 187, 17, 89, 2640, 37, 48379, 39, 17, 187, 605, 470, 15, 18348, 25805, 187, 17, 89, 2941, 4280, 19044, 37, 187, 605, 470, 15, 520, 740, 4185, 187, 17, 89, 11718, 35, 1934, 2950, 187, 605, 428, 17, 15, 13269, 20298, 187, 17, 89, 10914, 18832, 37, 2270, 187, 605, 470, 15, 520, 47208, 187, 17, 89, 520, 2597, 1047, 3832, 187, 605, 470, 15, 520, 1047, 4590, 187, 17, 89, 11027, 2511, 34, 1610, 187, 605, 470, 15, 2125, 2251, 2090, 187, 17, 89, 1762, 6739, 35265, 34, 187, 605, 428, 17, 15, 361, 1525, 2222, 187, 17, 89, 12297, 35, 2597, 35, 5607, 187, 605, 470, 15, 15798, 16271, 187, 17, 89, 2941, 1166, 3566, 36, 20, 187, 605, 470, 15, 2125, 1787, 3439, 187, 17, 89, 1762, 1525, 35, 24, 37, 18, 187, 605, 470, 15, 520, 3011, 3507, 187, 17, 89, 9992, 22, 20487, 38, 187, 605, 470, 15, 520, 2597, 3832, 187, 17, 89, 17048, 23, 35, 5377, 18, 187, 605, 470, 15, 933, 22543, 187, 17, 89, 933, 35, 2504, 34, 22, 187, 605, 428, 17, 15, 11027, 21345, 187, 17, 33392, 9151, 35, 25, 14803, 20, 187, 605, 470, 15, 2941, 1235, 2031, 187, 17, 89, 27706, 36, 3583, 6327, 187, 605, 470, 15, 11494, 20664, 187, 17, 89, 520, 37, 4838, 37, 19, 187, 605, 428, 17, 15, 2640, 1166, 1867, 187, 17, 89, 10914, 1787, 34, 20, 14803, 187, 605, 470, 15, 31272, 4739, 187, 17, 89, 4838, 14803, 21, 35, 22, 187, 605, 470, 15, 361, 4196, 883, 187, 17, 89, 13144, 12648, 2648, 24, 187, 605, 470, 15, 13269, 26, 1857, 187, 17, 89, 2941, 740, 34, 21, 38, 17, 187, 605, 470, 15, 21348, 24, 2950, 187, 17, 89, 2125, 35, 35630, 8561, 187, 605, 470, 15, 40085, 3763, 187, 17, 89, 361, 3832, 805, 37, 17, 187, 605, 428, 17, 15, 20151, 33775, 187, 17, 89, 18446, 2357, 34, 24, 8561, 187, 605, 428, 17, 15, 16604, 28315, 187, 17, 89, 6739, 23, 34, 26, 6327, 20, 187, 605, 428, 17, 15, 35967, 1706, 187, 17, 30962, 22, 35, 2693, 9006, 187, 605, 428, 17, 15, 520, 19813, 187, 17, 89, 12297, 2357, 2222, 3245, 187, 605, 428, 17, 15, 49455, 3763, 187, 17, 33392, 1703, 1967, 36, 4590, 187, 605, 470, 15, 33416, 1797, 187, 17, 89, 4838, 16462, 34906, 187, 605, 470, 15, 11027, 25320, 187, 17, 89, 15798, 23360, 805, 187, 605, 428, 17, 15, 17048, 21351, 187, 17, 33392, 4280, 21, 6739, 2511, 187, 605, 470, 15, 5523, 14322, 187, 17, 89, 361, 34, 3141, 8904, 20, 187, 605, 428, 17, 15, 2125, 1619, 2090, 187, 17, 89, 5377, 25, 26140, 22917, 187, 605, 428, 17, 15, 42834, 1348, 187, 17, 30962, 746, 37, 25770, 187, 605, 470, 15, 15960, 46455, 187, 17, 89, 2941, 39, 18, 36, 20, 34, 19, 187, 605, 428, 17, 15, 18832, 47070, 187, 17, 89, 5377, 39, 520, 34363, 187, 605, 470, 15, 39154, 3566, 187, 17, 89, 520, 34920, 23576, 187, 605, 428, 17, 15, 4699, 29288, 187, 17, 30962, 34, 1449, 39, 2227, 187, 605, 428, 17, 15, 11027, 22519, 187, 17, 33392, 9151, 24, 39, 23, 34, 17, 187, 605, 470, 15, 520, 3953, 1967, 187, 17, 89, 16604, 37, 3269, 1706, 187, 605, 470, 15, 5523, 33297, 187, 17, 89, 361, 35, 4529, 37, 3071, 187, 605, 470, 15, 2640, 1012, 4529, 187, 17, 89, 2640, 3979, 39, 26, 2350, 187, 605, 470, 15, 33416, 740, 187, 17, 89, 4838, 38, 4148, 37, 17, 187, 605, 428, 17, 15, 8897, 22232, 187, 17, 89, 12297, 39, 18, 22917, 24, 36, 187, 605, 428, 17, 15, 520, 1630, 1423, 187, 17, 89, 12297, 22, 39, 1508, 37, 25, 187, 605, 428, 17, 15, 1762, 1423, 1438, 187, 17, 33392, 3953, 5607, 20, 34, 25, 187, 605, 470, 15, 9104, 27018, 187, 17, 89, 10496, 1237, 39, 740, 187, 605, 470, 15, 361, 2227, 1812, 187, 17, 89, 520, 1166, 35, 3245, 39, 187, 605, 470, 15, 39154, 2227, 187, 17, 89, 520, 2222, 37, 1967, 34, 187, 605, 470, 15, 8897, 14322, 187, 17, 89, 520, 2693, 37, 22, 34, 24, 187, 605, 428, 17, 15, 12522, 16150, 187, 17, 89, 12297, 3547, 1010, 2385, 187, 605, 428, 17, 15, 16604, 26560, 187, 17, 89, 6739, 3507, 35, 3680, 35, 187, 605, 470, 15, 7931, 23402, 187, 17, 89, 361, 16462, 1036, 37, 20, 187, 605, 470, 15, 520, 1610, 1839, 187, 17, 89, 520, 35, 1235, 39, 4148, 187, 605, 470, 15, 520, 3046, 1812, 187, 17, 89, 9992, 34, 27893, 35, 187, 605, 428, 17, 15, 361, 2385, 2251, 187, 17, 30962, 25805, 15054, 187, 605, 428, 17, 15, 1762, 883, 2405, 187, 17, 33392, 4148, 2385, 2270, 38, 187, 605, 428, 17, 15, 520, 1449, 1540, 187, 17, 89, 12297, 1610, 20395, 36, 187, 605, 428, 17, 15, 22439, 42763, 187, 17, 89, 18446, 6903, 43771, 187 ]
W 128 // -0.045024 0xFA3CAA88 // 0.046108 0x05E6DDC5 // -0.005518 0xFF4B3119 // -0.001981 0xFFBF12F3 // -0.038977 0xFB02CBE3 // 0.013770 0x01C33652 // 0.022191 0x02D72850 // -0.004936 0xFF5E45B8 // 0.004681 0x0099613E // 0.005962 0x00C35D39 // -0.029572 0xFC36FBFC // -0.013674 0xFE3FF0F0 // -0.008424 0xFEEBF8A9 // -0.002905 0xFFA0D307 // -0.004478 0xFF6D4301 // -0.017219 0xFDCBC382 // -0.032171 0xFBE1D49E // 0.036714 0x04B30AD5 // 0.024556 0x0324A6E8 // -0.021022 0xFD4F2528 // 0.014041 0x01CC14A7 // 0.040050 0x05205AE8 // -0.000473 0xFFF08353 // -0.035016 0xFB84996D // -0.021649 0xFD3A9CF3 // 0.000931 0x001E833F // -0.022572 0xFD1C5D7A // -0.011697 0xFE80B56B // -0.026139 0xFCA779AC // -0.062500 0xF8000000 // 0.014998 0x01EB7799 // -0.026607 0xFC9821A1 // 0.012617 0x019D6F20 // -0.013898 0xFE3897E2 // -0.016025 0xFDF2E106 // -0.007288 0xFF112DFD // 0.002148 0x00465FCA // 0.007141 0x00E9FC98 // 0.004629 0x0097AE22 // 0.006311 0x00CECDC1 // 0.019539 0x02803D08 // 0.020409 0x029CC704 // 0.007967 0x01050F39 // 0.038292 0x04E6BCCA // -0.008905 0xFEDC3719 // 0.031910 0x0415A14E // 0.009390 0x0133AEF4 // -0.007193 0xFF144BEB // -0.036107 0xFB60D916 // -0.029846 0xFC2E0253 // -0.038256 0xFB1A69A3 // 0.043397 0x058E0821 // -0.036692 0xFB4DAB10 // 0.003615 0x007672DA // 0.022644 0x02E5FFC3 // -0.008464 0xFEEAA618 // -0.027485 0xFC7B627E // -0.001681 0xFFC8EDE0 // 0.001901 0x003E4B85 // 0.004249 0x008B3E95 // -0.001772 0xFFC5ED47 // 0.000738 0x00183283 // 0.032575 0x042B6C96 // -0.020489 0xFD60A15C // -0.026118 0xFCA82E68 // -0.029348 0xFC3E52F8 // 0.015388 0x01F83BC6 // 0.006581 0x00D7A84C // -0.008489 0xFEE9D528 // 0.009443 0x01356C14 // 0.022189 0x02D716F0 // 0.029608 0x03CA302D // 0.011098 0x016BAC46 // -0.023327 0xFD039D90 // 0.011935 0x01871461 // 0.011493 0x01789A33 // 0.046769 0x05FC886A // -0.009995 0xFEB87BEE // 0.024153 0x031774C3 // 0.043754 0x0599B7D1 // 0.015782 0x0205239E // 0.018761 0x0266BFA1 // 0.000344 0x000B47A5 // -0.017226 0xFDCB8DF3 // 0.035044 0x047C52BA // 0.014161 0x01D003D2 // -0.021739 0xFD37A3DF // 0.001891 0x003DF4B5 // 0.009611 0x013AECC7 // 0.023945 0x0310A4E0 // 0.036746 0x04B416BD // 0.002962 0x006112D0 // -0.035411 0xFB77A7BD // -0.027997 0xFC6A9BA3 // -0.005034 0xFF5B09AF // -0.011976 0xFE779583 // -0.009062 0xFED70C93 // 0.001921 0x003EF485 // 0.017655 0x02428612 // -0.026215 0xFCA4FC89 // 0.005113 0x00A78DB3 // -0.042869 0xFA8346EB // -0.007024 0xFF19D448 // 0.030816 0x03F1C3A2 // -0.039548 0xFAF01992 // 0.012374 0x01957808 // -0.002806 0xFFA40F85 // -0.017335 0xFDC7F6A0 // 0.019470 0x027DFF34 // 0.005651 0x00B92D06 // 0.021392 0x02BCF9AD // 0.001910 0x003E97D0 // -0.008242 0xFEF1EB7C // -0.012722 0xFE5F23D8 // -0.052280 0xF94EE3A8 // 0.010351 0x01532F10 // 0.008536 0x0117B83F // 0.012385 0x0195D70A // 0.008113 0x0109D5A7 // -0.012143 0xFE721548 // -0.027261 0xFC82B58B // 0.007296 0x00EF16D3 // 0.013338 0x01B50F97 // 0.015936 0x020A313B // -0.004867 0xFF608155 // -0.051131 0xF974890E // -0.014064 0xFE33259C // -0.038572 0xFB101099
214,366
Github
[ 3122, 187, 475, 8283, 313, 68, 10, 5215, 13, 4695, 13, 19792, 285, 16, 263, 697, 35751, 15, 1876, 3570, 10827, 15, 187, 475, 7953, 5803, 6589, 4827, 4145, 25300, 19252, 28827, 5803, 27279, 4145, 10113, 15691, 40526, 947, 15, 187, 475, 187, 475, 831, 2127, 310, 1959, 3694, 28, 368, 476, 25529, 352, 285, 16, 263, 10007, 352, 187, 475, 762, 253, 2426, 273, 253, 11963, 4214, 5259, 4637, 2715, 374, 760, 13, 347, 187, 475, 3863, 407, 253, 7648, 9107, 6807, 15, 50276, 3980, 6929, 2216, 684, 436, 187, 475, 1798, 1873, 347, 2256, 281, 253, 346, 4947, 3967, 3, 6517, 347, 2530, 187, 475, 407, 19792, 275, 253, 21826, 1873, 326, 11704, 436, 2127, 15, 187, 475, 187, 475, 831, 2127, 310, 5939, 275, 253, 3524, 326, 352, 588, 320, 4217, 13, 533, 15002, 187, 475, 9103, 23181, 28, 1293, 1014, 253, 10466, 17529, 273, 20863, 390, 187, 475, 20524, 6651, 329, 20383, 20103, 15, 50276, 5035, 253, 11963, 4214, 5259, 4637, 187, 475, 2715, 374, 323, 625, 4278, 313, 66, 3491, 310, 2908, 275, 253, 21826, 1873, 326, 187, 475, 11704, 436, 2127, 481, 187, 475, 187, 475, 1422, 943, 452, 2959, 247, 3491, 273, 253, 11963, 4214, 5259, 4637, 2715, 187, 475, 374, 2112, 342, 436, 789, 28, 604, 417, 13, 3630, 281, 253, 7648, 9107, 6807, 13, 187, 475, 3690, 904, 8319, 17179, 659, 13, 17538, 32370, 13, 9693, 13, 6908, 470, 49352, 14, 39677, 5106, 15, 187, 475, 187, 475, 7764, 3057, 19792, 13, 6783, 19792, 4913, 1106, 13, 4410, 5308, 1608, 2324, 13, 6582, 898, 1449, 2082, 5106, 187, 475, 390, 4143, 8280, 15, 32532, 15, 681, 604, 368, 878, 3081, 1491, 390, 452, 667, 187, 475, 3533, 15, 187, 1738, 187, 10708, 7626, 15, 3024, 28, 187, 187, 2948, 7626, 15, 900, 15, 38487, 28, 187, 2948, 7626, 15, 900, 15, 4505, 21873, 28, 187, 187, 3122, 187, 475, 1623, 44971, 2718, 359, 3365, 24565, 281, 7925, 3082, 15, 187, 475, 187, 475, 1214, 7582, 11007, 754, 23946, 90, 187, 1738, 187, 187, 2437, 38602, 22274, 14560, 8725, 27426, 3493, 404, 22274, 14560, 187, 92, 187, 50274, 4659, 551, 187, 50270, 4478, 36627, 1874, 187, 50274, 94, 535, 50274, 6930, 187, 50273, 11, 35806, 84, 271, 6325, 4227, 15, 187, 50273, 8480, 187, 50274, 3493, 404, 22274, 14560, 1082, 551, 748, 535, 50274, 6930, 187, 50273, 11, 35806, 84, 271, 4227, 342, 253, 1677, 1873, 30047, 15, 187, 50273, 8480, 187, 50274, 3493, 404, 22274, 14560, 9, 4505, 21873, 29439, 10, 551, 187, 50270, 2520, 15, 9194, 426, 29439, 28, 187, 50274, 94, 535, 50274, 23963, 2991, 17498, 9395, 9, 23170, 310, 12023, 10, 12326, 33638, 28, 535, 50274, 23963, 2991, 17498, 27642, 9, 688, 292, 12236, 2953, 13, 540, 2245, 13, 540, 22639, 10, 187, 50270, 34832, 33638, 28, 535, 50274, 23963, 2991, 17498, 29008, 9, 688, 292, 12236, 2953, 13, 540, 2245, 10, 187, 50270, 34832, 33638, 28, 535, 50274, 23963, 2991, 17498, 19577, 9, 565, 1385, 10, 12326, 33638, 28, 535, 50274, 23963, 2991, 17498, 29011, 9, 22274, 14560, 256, 10, 12326, 33638, 28, 535, 50274, 23963, 540, 17498, 31130, 1082, 12326, 33638, 28, 535, 50274, 23963, 2991, 17498, 17667, 17, 9, 23170, 897, 4612, 13004, 17667, 10, 12326, 33638, 28, 535, 50274, 23963, 2991, 17498, 32832, 3487, 9, 565, 849, 936, 10, 12326, 33638, 28, 535, 50274, 4659, 7925, 2991, 2012, 36627, 1874, 535, 50274, 23963, 2991, 17498, 4531, 16956, 9, 565, 20390, 13, 12419, 327, 13, 9206, 1318, 10, 187, 50270, 34832, 322, 5156, 5330, 28, 535, 50274, 23963, 540, 17498, 3633, 16956, 9, 565, 1478, 13, 9206, 209, 571, 15226, 18527, 10, 12326, 322, 5156, 5330, 28, 535, 50274, 23963, 2991, 17498, 19907, 29796, 7322, 3233, 9, 565, 941, 10, 12326, 33638, 28, 187, 187, 94, 187 ]
/* * Copyright (c) 2007, 2008, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this * particular file as subject to the "Classpath" exception as provided * by Oracle in the LICENSE file that accompanied this code. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ package java.net; import java.io.IOException; import java.io.FileDescriptor; /* * On Unix systems we simply delegate to native methods. * * @author Chris Hegarty */ class PlainSocketImpl extends AbstractPlainSocketImpl { static { initProto(); } /** * Constructs an empty instance. */ PlainSocketImpl() { } /** * Constructs an instance with the given file descriptor. */ PlainSocketImpl(FileDescriptor fd) { this.fd = fd; } native void socketCreate(boolean isServer) throws IOException; native void socketConnect(InetAddress address, int port, int timeout) throws IOException; native void socketBind(InetAddress address, int port) throws IOException; native void socketListen(int count) throws IOException; native void socketAccept(SocketImpl s) throws IOException; native int socketAvailable() throws IOException; native void socketClose0(boolean useDeferredClose) throws IOException; native void socketShutdown(int howto) throws IOException; static native void initProto(); native void socketSetOption(int cmd, boolean on, Object value) throws SocketException; native int socketGetOption(int opt, Object iaContainerObj) throws SocketException; native void socketSendUrgentData(int data) throws IOException; }
214,367
Github
[ 30952, 32735, 14271, 31, 187, 187, 29, 2974, 31, 187, 29, 2522, 31, 187, 29, 13518, 2600, 568, 1156, 16, 2974, 28, 29308, 30, 18441, 14, 25, 3, 3944, 14, 8275, 568, 8590, 14, 2548, 1138, 187, 187, 29, 5564, 31, 2437, 11641, 335, 1238, 1450, 13264, 428, 894, 335, 1238, 14, 17, 15, 1010, 15, 19, 15027, 318, 870, 5564, 31, 187, 187, 29, 4492, 1511, 568, 1156, 16, 9016, 3, 3420, 568, 14396, 3, 3860, 17517, 5784, 406, 15, 9016, 3, 774, 568, 23745, 1138, 187, 187, 29, 3866, 1511, 568, 1156, 16, 14606, 1138, 187, 50276, 2044, 391, 7152, 64, 1661, 64, 15445, 426, 47490, 3664, 187, 870, 3866, 31, 187, 187, 29, 3866, 1511, 568, 1156, 16, 14606, 3, 29308, 568, 17880, 14, 25, 3, 6740, 17517, 4305, 16, 19203, 15, 4305, 6750, 3866, 31, 187, 29, 3866, 1511, 568, 1156, 16, 14606, 3, 29308, 568, 17880, 14, 25, 3, 6740, 17517, 4305, 16, 37336, 15, 4305, 6750, 3866, 31, 187, 29, 3866, 1511, 568, 1156, 16, 14606, 3, 29308, 568, 17880, 14, 25, 3, 6740, 17517, 4305, 16, 8716, 64, 4663, 15, 4305, 6750, 3866, 31, 187, 29, 3866, 1511, 568, 1156, 16, 14606, 3, 29308, 568, 17880, 14, 25, 3, 6740, 17517, 4305, 16, 8716, 15, 4305, 6750, 3866, 31, 187, 29, 3866, 1511, 568, 1156, 16, 14606, 3, 29308, 568, 17880, 14, 25, 3, 6740, 17517, 4305, 16, 339, 3178, 379, 15, 4305, 6750, 3866, 31, 187, 29, 3866, 1511, 568, 1156, 16, 14606, 3, 29308, 568, 17880, 14, 25, 3, 6740, 17517, 4305, 16, 19001, 12306, 15, 4305, 6750, 3866, 31, 535, 187, 29, 2915, 2654, 568, 3956, 3, 966, 568, 2437, 1138, 187, 29, 8002, 2654, 568, 21552, 1138, 187, 50276, 29, 8002, 2654, 568, 9511, 14, 4674, 3, 966, 568, 4674, 1138, 187, 50276, 29, 73, 20, 966, 568, 4674, 14, 10146, 1138, 187, 50274, 29, 66, 3860, 17517, 4663, 15, 2974, 1138, 18686, 870, 66, 31, 187, 50274, 29, 66, 3860, 17517, 2420, 64, 1171, 64, 28662, 15, 2974, 4, 19770, 1138, 27290, 870, 66, 31, 187, 50274, 29, 66, 3860, 17517, 2420, 64, 1171, 64, 28662, 15, 2974, 4, 30172, 1138, 15568, 870, 66, 31, 187, 50276, 870, 73, 20, 31, 187, 870, 8002, 31, 2756, 50276, 29, 8002, 2654, 568, 8716, 14, 4674, 3, 966, 568, 4674, 2199, 14, 4674, 3, 966, 568, 4478, 1365, 14, 19057, 1138, 187, 50276, 29, 630, 2250, 10817, 3, 1332, 568, 788, 3, 2997, 14, 49611, 568, 17880, 14, 25, 1138, 187, 50274, 29, 73, 20, 966, 568, 4674, 14, 10146, 1138, 187, 50272, 29, 5423, 1511, 568, 1156, 3, 1416, 568, 8716, 3, 30300, 568, 13422, 3, 2654, 568, 8716, 14, 3423, 3, 187, 50265, 5564, 568, 2548, 281, 3186, 13, 5863, 285, 9792, 281, 24171, 13, 10871, 281, 3301, 1138, 187, 50274, 870, 73, 20, 31, 187, 50276, 870, 630, 31, 535, 50276, 29, 335, 2654, 568, 8716, 14, 16680, 3, 966, 568, 4478, 1365, 14, 19057, 6750, 335, 31, 187, 870, 8002, 31, 2756, 50276, 535, 50276, 29, 2154, 2654, 568, 3140, 14, 21552, 1138, 187, 50274, 29, 8002, 2654, 568, 3140, 14, 3550, 14, 4674, 3, 966, 568, 4674, 1138, 187, 50276, 29, 73, 20, 966, 568, 4674, 14, 10146, 1138, 4612, 967, 496, 870, 73, 20, 31, 187, 50276, 29, 335, 31, 187, 50274, 29, 965, 31, 4658, 16, 3992, 335, 1238, 16, 40480, 15, 13041, 187, 50274, 29, 965, 31, 4658, 16, 3992, 335, 1238, 16, 40480, 16, 14605, 64, 11972, 15, 13041, 187, 50276, 870, 335, 31, 187, 870, 8002, 31, 535, 50274, 187, 50276, 870, 2154, 31, 535, 50276, 29, 2154, 2654, 568, 2437, 14, 21552, 1138, 187, 50274, 187, 50274, 29, 8002, 2654, 568, 5598, 14, 2437, 14, 4674, 3, 966, 568, 4674, 1138, 187, 50276, 29, 73, 20, 966, 568, 4674, 14, 10146, 1138, 15852, 870, 73, 20, 31, 187, 50276, 187, 50276, 29, 81, 966, 568, 4492, 1138, 4241, 187, 50276, 187, 870, 8002, 31, 535, 50274, 187, 50274, 187, 50274, 14219, 8378, 22637, 709, 6781, 187, 29, 8002, 2654, 568, 9349, 14, 3550, 14, 4674, 3, 966, 568, 4674, 1138, 187, 50276, 29, 73, 20, 966, 568, 4674, 14, 10146, 1138, 15568, 870, 73, 20, 31, 535, 50276, 29, 335, 966, 568, 4492, 14, 3550, 1138, 187, 50274, 187, 50274, 29, 965, 2239, 29, 66, 3860, 10817, 9349, 14, 68, 14, 6259, 1138, 1450, 6259, 870, 66, 31, 187, 50274, 187, 50274, 29, 965, 2239, 29, 66, 3860, 10817, 9349, 14, 68, 14, 1826, 1138, 1450, 1826, 870, 66, 31, 187, 50274, 187, 50274, 29, 965, 2239, 29, 66, 3860, 10817, 9349, 14, 68, 14, 39686, 423, 1138, 1450, 39686, 423, 870, 66, 31, 187, 50274, 187, 50274, 29, 965, 2239, 29, 66, 3860, 10817, 9349, 14, 74, 14, 2135, 20668, 1138, 4, 2135, 20668, 870, 66, 31, 187, 50274, 187, 50274, 29, 965, 2239, 29, 66, 3860, 10817, 9349, 14, 74, 14, 6953, 1138, 4, 6953, 870, 66, 31, 187, 50274, 187, 50274, 29, 965, 2239, 29, 66, 3860, 10817, 9349, 14, 74, 14, 911, 7426, 1138, 4, 911, 7426, 870, 66, 31, 187, 50274, 187, 50274, 29, 965, 2239, 29, 66, 3860, 10817, 9349, 14, 74, 14, 911, 7426, 14, 20, 39, 1138, 4, 911, 7426, 32, 870, 66, 31, 187, 50274, 187, 50274, 29, 965, 2239, 29, 66, 3860, 10817, 9349, 14, 74, 14, 18625, 1138, 4, 18625, 870, 66, 31, 187, 50274, 187, 50274, 29, 965, 2239, 29, 66, 3860, 10817, 9349, 14, 74, 14, 968, 808, 1138, 4, 968, 808, 870, 66, 31, 187, 50274, 187, 50274, 29, 965, 2239, 29, 66, 3860, 10817, 9349, 14, 74, 14, 373, 2123, 1138, 4, 373, 2123, 870, 66, 31, 187, 50274, 187, 50274, 29, 965, 2239, 29, 66, 3860, 10817, 9349, 14, 74, 14, 24220, 14, 20, 39, 1138, 4, 24220, 32, 870, 66, 31, 187, 50274, 187, 50274, 29, 965, 2239, 29, 66, 3860, 10817, 9349, 14, 74, 14, 39686, 423, 1138, 4, 39686, 423, 870, 66, 31, 187, 50274, 187, 50274, 29, 965, 2239, 29, 66, 3860, 10817, 9349, 14, 74, 14, 20792, 366, 1138, 4, 20792, 366, 870, 66, 31, 187, 50274, 187, 50276, 870, 335, 31, 187, 870, 8002, 31, 535, 50276, 870, 2154, 31, 535, 50276, 29, 2154, 2654, 568, 10408, 14, 21552, 1138, 187, 50274, 187, 50274, 29, 8002, 2654, 568, 2437, 4663, 14, 4674, 3, 966, 568, 4674, 2199, 14, 4674, 1138, 187, 50276, 29, 73, 20, 966, 568, 4674, 14, 10146, 1138, 4947, 285, 30073, 13193, 870, 73, 20, 31, 535, 50276, 29, 335, 966, 568, 4492, 14, 3550, 1138, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 15, 2974, 1138, 10772, 335, 1238, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 5039, 430, 4756, 15, 2974, 1138, 10772, 335, 1238, 1450, 5039, 430, 4756, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 17441, 23074, 15, 2974, 1138, 10772, 335, 1238, 1450, 17441, 23074, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 49925, 15, 2974, 1138, 10772, 335, 1238, 1450, 49925, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 49925, 16, 52, 282, 8390, 15, 2974, 1138, 10772, 335, 1238, 1450, 49925, 1450, 52, 282, 8390, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 49925, 23074, 15, 2974, 1138, 10772, 335, 1238, 1450, 49925, 23074, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 19168, 7865, 15, 2974, 1138, 10772, 335, 1238, 1450, 19168, 7865, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 19168, 23074, 15, 2974, 1138, 10772, 335, 1238, 1450, 19168, 23074, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 11144, 7865, 15, 2974, 1138, 10772, 335, 1238, 1450, 11144, 7865, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 11144, 23074, 15, 2974, 1138, 10772, 335, 1238, 1450, 11144, 23074, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 11144, 9604, 15, 2974, 1138, 10772, 335, 1238, 1450, 11144, 9604, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 5305, 10579, 13914, 15, 2974, 1138, 10772, 335, 1238, 1450, 5305, 10579, 13914, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 5305, 10579, 13914, 16, 48908, 6155, 15, 2974, 1138, 10772, 335, 1238, 1450, 5305, 10579, 13914, 1450, 48908, 6155, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 7865, 15, 2974, 1138, 10772, 335, 1238, 1450, 7865, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 7865, 26268, 15, 2974, 1138, 10772, 335, 1238, 1450, 7865, 26268, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 4947, 15568, 15, 2974, 1138, 10772, 335, 1238, 1450, 4947, 15568, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 32352, 15, 2974, 1138, 10772, 335, 1238, 1450, 32352, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 32352, 16, 13689, 254, 15, 2974, 1138, 10772, 335, 1238, 1450, 32352, 1450, 13689, 254, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 32352, 4756, 15, 2974, 1138, 10772, 335, 1238, 1450, 32352, 4756, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 36205, 49925, 4756, 15, 2974, 1138, 10772, 335, 1238, 1450, 36205, 49925, 4756, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 36205, 13264, 4756, 15, 2974, 1138, 10772, 335, 1238, 1450, 36205, 13264, 4756, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 4756, 9604, 15, 2974, 1138, 10772, 335, 1238, 1450, 4756, 9604, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 5949, 264, 29594, 3364, 15, 2974, 1138, 10772, 335, 1238, 1450, 5949, 264, 29594, 3364, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 34108, 5949, 15, 2974, 1138, 10772, 335, 1238, 1450, 34108, 5949, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 39, 6955, 15, 2974, 1138, 10772, 335, 1238, 1450, 39, 6955, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 39, 6955, 16, 4947, 15568, 15, 2974, 1138, 10772, 335, 1238, 1450, 39, 6955, 1450, 4947, 15568, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 39, 6955, 16, 5443, 15, 2974, 1138, 10772, 335, 1238, 1450, 39, 6955, 1450, 5443, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 39, 6955, 16, 2447, 1595, 2729, 4756, 15, 2974, 1138, 10772, 335, 1238, 1450, 39, 6955, 1450, 2447, 1595, 2729, 4756, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 39, 3669, 15268, 4756, 15, 2974, 1138, 10772, 335, 1238, 1450, 39, 3669, 15268, 4756, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 30724, 15, 2974, 1138, 10772, 335, 1238, 1450, 30724, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 30724, 16, 9179, 15, 2974, 1138, 10772, 335, 1238, 1450, 30724, 1450, 9179, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 30724, 23074, 15, 2974, 1138, 10772, 335, 1238, 1450, 30724, 23074, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 29228, 888, 15, 2974, 1138, 10772, 335, 1238, 1450, 29228, 888, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 29228, 888, 26428, 15, 2974, 1138, 10772, 335, 1238, 1450, 29228, 888, 26428, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 29228, 888, 26428, 16, 52, 972, 414, 15, 2974, 1138, 10772, 335, 1238, 1450, 29228, 888, 26428, 1450, 52, 972, 414, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 29228, 888, 6802, 5521, 15, 2974, 1138, 10772, 335, 1238, 1450, 29228, 888, 6802, 5521, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 29228, 888, 6802, 5521, 16, 36266, 15, 2974, 1138, 10772, 335, 1238, 1450, 29228, 888, 6802, 5521, 1450, 36266, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 11257, 15568, 15, 2974, 1138, 10772, 335, 1238, 1450, 11257, 15568, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 19996, 19287, 15, 2974, 1138, 10772, 335, 1238, 1450, 19996, 19287, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 45, 10274, 6825, 15, 2974, 1138, 10772, 335, 1238, 1450, 45, 10274, 6825, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 45, 10274, 9604, 15, 2974, 1138, 10772, 335, 1238, 1450, 45, 10274, 9604, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 44225, 15, 2974, 1138, 10772, 335, 1238, 1450, 44225, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 6800, 5949, 15, 2974, 1138, 10772, 335, 1238, 1450, 6800, 5949, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 26428, 15, 2974, 1138, 10772, 335, 1238, 1450, 26428, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 29594, 3364, 15, 2974, 1138, 10772, 335, 1238, 1450, 29594, 3364, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 29594, 3364, 36205, 15, 2974, 1138, 10772, 335, 1238, 1450, 29594, 3364, 36205, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 29594, 3364, 32832, 3487, 15, 2974, 1138, 10772, 335, 1238, 1450, 29594, 3364, 32832, 3487, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 6942, 15, 2974, 1138, 10772, 335, 1238, 1450, 6942, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 47, 6472, 6825, 15, 2974, 1138, 10772, 335, 1238, 1450, 47, 6472, 6825, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 3650, 49925, 4756, 15, 2974, 1138, 10772, 335, 1238, 1450, 3650, 49925, 4756, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 3650, 13264, 4756, 15, 2974, 1138, 10772, 335, 1238, 1450, 3650, 13264, 4756, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 3650, 6787, 15, 2974, 1138, 10772, 335, 1238, 1450, 3650, 6787, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 3650, 6787, 16, 49987, 483, 15, 2974, 1138, 10772, 335, 1238, 1450, 3650, 6787, 1450, 49987, 483, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 3650, 6787, 16, 5623, 24386, 15, 2974, 1138, 10772, 335, 1238, 1450, 3650, 6787, 1450, 5623, 24386, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 19287, 8224, 15, 2974, 1138, 10772, 335, 1238, 1450, 19287, 8224, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 18401, 15, 2974, 1138, 10772, 335, 1238, 1450, 18401, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 44582, 15, 2974, 1138, 10772, 335, 1238, 1450, 44582, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 1785, 336, 1564, 15, 2974, 1138, 10772, 335, 1238, 1450, 1785, 336, 1564, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 36169, 15, 2974, 1138, 10772, 335, 1238, 1450, 36169, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 36169, 16, 5906, 28, 15, 2974, 1138, 10772, 335, 1238, 1450, 36169, 1450, 5906, 13143, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 9604, 15, 2974, 1138, 10772, 335, 1238, 1450, 9604, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 2632, 360, 494, 4756, 15, 2974, 1138, 10772, 335, 1238, 1450, 2632, 360, 494, 4756, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 45606, 10644, 15, 2974, 1138, 10772, 335, 1238, 1450, 45606, 10644, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 32136, 32352, 6825, 15, 2974, 1138, 10772, 335, 1238, 1450, 32136, 32352, 6825, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 11212, 932, 15, 2974, 1138, 10772, 335, 1238, 1450, 11212, 932, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 15268, 37, 1765, 15, 2974, 1138, 10772, 335, 1238, 1450, 15268, 37, 1765, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 15268, 37, 1765, 16, 49925, 5443, 15, 2974, 1138, 10772, 335, 1238, 1450, 15268, 37, 1765, 1450, 49925, 5443, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 15268, 37, 1765, 16, 17214, 8116, 20668, 15, 2974, 1138, 10772, 335, 1238, 1450, 15268, 37, 1765, 1450, 17214, 8116, 20668, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 15268, 37, 1765, 16, 13264, 5443, 15, 2974, 1138, 10772, 335, 1238, 1450, 15268, 37, 1765, 1450, 13264, 5443, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 15268, 37, 1765, 16, 11589, 5443, 15, 2974, 1138, 10772, 335, 1238, 1450, 15268, 37, 1765, 1450, 11589, 5443, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 23779, 9604, 15, 2974, 1138, 10772, 335, 1238, 1450, 23779, 9604, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 15705, 4694, 6998, 15, 2974, 1138, 10772, 335, 1238, 1450, 15705, 4694, 6998, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 15705, 4694, 6998, 16, 20226, 15, 2974, 1138, 10772, 335, 1238, 1450, 15705, 4694, 6998, 1450, 20226, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 15705, 16179, 15, 2974, 1138, 10772, 335, 1238, 1450, 15705, 16179, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 27902, 7865, 15, 2974, 1138, 10772, 335, 1238, 1450, 27902, 7865, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 27902, 23074, 15, 2974, 1138, 10772, 335, 1238, 1450, 27902, 23074, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 7761, 5949, 15, 2974, 1138, 10772, 335, 1238, 1450, 7761, 5949, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 13264, 15, 2974, 1138, 10772, 335, 1238, 1450, 13264, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 13264, 16, 18919, 3901, 4756, 15, 2974, 1138, 10772, 335, 1238, 1450, 13264, 1450, 18919, 3901, 4756, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 13264, 16, 20780, 4756, 15, 2974, 1138, 10772, 335, 1238, 1450, 13264, 1450, 20780, 4756, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 13264, 39, 3669, 15, 2974, 1138, 10772, 335, 1238, 1450, 13264, 39, 3669, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 13264, 4531, 15, 2974, 1138, 10772, 335, 1238, 1450, 13264, 4531, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 13264, 11589, 15, 2974, 1138, 10772, 335, 1238, 1450, 13264, 11589, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 18919, 1515, 6825, 15, 2974, 1138, 10772, 335, 1238, 1450, 18919, 1515, 6825, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 11589, 15, 2974, 1138, 10772, 335, 1238, 1450, 11589, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 11589, 16722, 15, 2974, 1138, 10772, 335, 1238, 1450, 11589, 16722, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 20780, 4756, 15, 2974, 1138, 10772, 335, 1238, 1450, 20780, 4756, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 10772, 335, 1238, 16, 54, 18244, 15, 2974, 1138, 10772, 335, 1238, 1450, 54, 18244, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 39, 3669, 15, 2974, 1138, 39, 3669, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 11589, 15, 2974, 1138, 11589, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 2061, 15, 2974, 1138, 2061, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 2061, 16, 75, 26176, 15, 2974, 1138, 2061, 1450, 75, 26176, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 2061, 16, 75, 26176, 16, 2068, 15, 2974, 1138, 2061, 1450, 75, 26176, 1450, 2068, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 2061, 16, 75, 26176, 16, 2068, 16, 71, 3669, 15, 2974, 1138, 2061, 1450, 75, 26176, 1450, 2068, 1450, 71, 3669, 870, 66, 31, 187, 50276, 187, 50274, 29, 965, 2730, 66, 3860, 17517, 2061, 16, 75, 26176, 16, 2068, 16, 71, 3669, 16, 11589, 39, 3669, 15, 2974, 1138, 2061, 1450, 75, 26176, 1450, 2068, 1450, 71, 3669, 1450, 11589, 39, 3669, 870, 66, 31, 187, 50276, 187, 50276, 870, 335, 31, 187, 870, 8002, 31, 535, 50276, 870, 2154, 31, 187, 870, 8002, 31, 187, 187, 29, 2154, 2654, 568, 37442, 1138, 187, 50276, 29, 73, 18, 966, 568, 2437, 1138, 2437, 11641, 335, 1238, 1450, 13264, 870, 73, 18, 31, 535, 50276, 29, 2154, 2654, 568, 10008, 3, 966, 568, 10008, 1138, 187, 50274, 187, 29, 81, 31, 44131, 403, 11606, 494, 16, 373, 360, 494, 10636, 22349, 908, 281, 1408, 3082, 870, 81, 31, 535, 50276, 870, 2154, 2730, 8145, 5740, 6781, 535, 50276, 187, 50276, 187, 50276, 187, 50276, 29, 4674, 2654, 568, 22, 35, 2084, 5924, 14, 22, 37, 3, 966, 568, 37442, 14, 4674, 1138, 187, 50274, 535, 50274, 535, 50274, 535, 50274, 187, 50274, 14219, 5706, 8029, 6781, 187, 50274, 29, 4674, 2654, 568, 15810, 14, 9349, 14, 23454, 3, 966, 568, 9349, 14, 4674, 2593, 1138, 187, 50272, 29, 73, 20, 966, 568, 4674, 14, 10146, 1138, 23372, 870, 73, 20, 31, 535, 50272, 187, 50272, 29, 2154, 2654, 568, 15810, 14, 74, 14, 10050, 64, 301, 3, 966, 568, 9349, 14, 20119, 1138, 187, 50270, 29, 2154, 966, 568, 9349, 14, 33049, 11104, 14, 9349, 14, 33049, 1138, 187, 50268, 29, 2551, 966, 568, 9349, 14, 1590, 1138, 10050, 64, 301, 870, 2551, 2730, 2551, 187, 50266, 2437, 568, 15810, 14, 10773, 14, 881, 1138, 60, 40919, 62, 870, 2551, 31, 187, 50270, 870, 2154, 31, 535, 50270, 29, 2154, 966, 568, 9349, 14, 10008, 1138, 187, 50270, 187, 50270, 187, 50270, 187, 50270, 870, 2154, 31, 187, 50272, 870, 2154, 31, 187, 50272, 187, 50272, 29, 2154, 2654, 568, 15810, 14, 74, 14, 18625, 64, 30289, 723, 3, 966, 568, 9349, 14, 20119, 1138, 187, 50270, 29, 2154, 966, 568, 9349, 14, 33049, 11104, 14, 9349, 14, 33049, 1138, 187, 50268, 29, 2551, 966, 568, 9349, 14, 1590, 1138, 18625, 64, 30289, 723, 870, 2551, 2730, 2551, 187, 50266, 2437, 568, 15810, 14, 10773, 14, 881, 1138, 60, 40919, 62, 870, 2551, 31, 187, 50270, 870, 2154, 31, 535, 50270, 29, 2154, 966, 568, 9349, 14, 10008, 1138, 187, 50270, 187, 50270, 187, 50270, 187, 50270, 870, 2154, 31, 187, 50272, 870, 2154, 31, 187, 50272, 187, 50272, 29, 2154, 2654, 568, 15810, 14, 74, 14, 13518, 3, 966, 568, 9349, 14, 20119, 1138, 187, 50270, 29, 2154, 966, 568, 9349, 14, 33049, 11104, 14, 9349, 14, 33049, 1138, 187, 50268, 29, 2551, 966, 568, 9349, 14, 1590, 1138, 13518, 870, 2551, 2730, 2551, 187, 50266, 2437, 568, 15810, 14, 10773, 14, 881, 1138, 60, 51, 62, 870, 2551, 31, 187, 50270, 870, 2154, 31, 535, 50270, 29, 2154, 966, 568, 9349, 14, 10008, 1138, 187, 50270, 187, 50270, 187, 50270, 187, 50270, 870, 2154, 31, 187, 50272, 870, 2154, 31, 187, 50272, 187, 50272, 29, 2154, 2654, 568, 15810, 14, 74, 14, 8581, 3, 966, 568, 9349, 14, 20119, 1138, 187, 50270, 29, 2154, 966, 568, 9349, 14, 33049, 11104, 14, 9349, 14, 33049, 1138, 187, 50268, 29, 2551, 966, 568, 9349, 14, 1590, 1138, 8581, 870, 2551, 2730, 2551, 187, 50266, 2437, 568, 15810, 14, 10773, 14, 881, 1138, 60, 51, 62, 870, 2551, 31, 187, 50270, 870, 2154, 31, 535, 50270, 29, 2154, 966, 568, 9349, 14, 10008, 1138, 187, 50270, 187, 50270, 187, 50270, 187, 50270, 870, 2154, 31, 187, 50272, 870, 2154, 31, 187, 50272, 187, 50272, 29, 2154, 2654, 568, 15810, 14, 74, 14, 881, 3, 966, 568, 9349, 14, 20119, 1138, 187, 50270, 29, 2154, 966, 568, 9349, 14, 33049, 11104, 14, 9349, 14, 33049, 1138, 187, 50268, 29, 2551, 966, 568, 9349, 14, 1590, 1138, 881, 870, 2551, 2730, 2551, 187, 50266, 2437, 568, 15810, 14, 10773, 14, 881, 1138, 60, 51, 62, 870, 2551, 31, 187, 50270, 870, 2154, 31, 535, 50270, 29, 2154, 966, 568, 9349, 14, 10008, 1138, 187, 50270, 187, 50270, 187, 50270, 187, 50270, 870, 2154, 31, 187, 50272, 870, 2154, 31, 187, 50272, 187, 50274, 870, 4674, 2730, 8145, 11104, 14, 9349, 14, 23454, 6781, 187, 50274, 535, 50274, 14219, 13277, 6781, 187, 50274, 187, 50273, 29, 4674, 2654, 568, 4387, 14, 2437, 14, 22, 35, 2084, 5924, 14, 22, 37, 14, 9349, 14, 23454, 3, 966, 568, 9349, 14, 4674, 2593, 1138, 187, 50272, 29, 73, 20, 966, 568, 4674, 14, 10146, 1138, 15689, 6550, 13277, 870, 73, 20, 31, 535, 50274, 187, 50272, 29, 2154, 2654, 568, 9349, 14, 68, 14, 6259, 3, 966, 568, 9349, 14, 20119, 38329, 187, 50270, 187, 50270, 29, 2154, 966, 568, 9349, 14, 33049, 1138, 187, 50268, 29, 2551, 966, 568, 9349, 14, 1590, 1138, 6259, 870, 2551, 2730, 2551, 187, 50266, 2437, 568, 9349, 14, 8854, 1138, 46410, 2551, 31, 187, 50268, 187, 50268, 29, 2551, 966, 568, 9349, 14, 9738, 14, 24301, 547, 1138, 9738, 281, 34831, 2603, 870, 2551, 31, 187, 50268, 187, 50270, 870, 2154, 31, 187, 50270, 535, 50270, 29, 2154, 966, 568, 9349, 14, 10008, 1138, 187, 50268, 187, 50268, 29, 81, 31, 48, 2612, 404, 253, 1655, 4836, 870, 81, 31, 187, 50268, 187, 50268, 535, 50268, 187, 50268, 29, 2154, 966, 568, 9349, 14, 6756, 14, 3211, 3, 2654, 568, 6259, 14, 6756, 1138, 187, 50266, 29, 3456, 2730, 2551, 966, 568, 26176, 14, 13982, 1138, 4, 8490, 5135, 16, 3992, 335, 1238, 16, 40480, 15, 13041, 13, 1386, 1283, 870, 2551, 31, 187, 29, 2551, 966, 568, 26176, 14, 23295, 1138, 1545, 870, 2551, 31, 654, 2551, 966, 568, 26176, 14, 23295, 1138, 1286, 870, 2551, 13208, 29, 2551, 966, 568, 26176, 14, 31668, 1138, 6259, 870, 2551, 31, 187, 50276, 29, 2551, 966, 568, 26176, 14, 22174, 1138, 11589, 870, 2551, 13208, 29, 2551, 966, 568, 26176, 14, 31668, 1138, 6259, 870, 2551, 39822, 29, 2551, 966, 568, 26176, 14, 2877, 1138, 27, 3992, 335, 1238, 64, 14605, 870, 2551, 46267, 654, 2551, 966, 568, 26176, 14, 23295, 1138, 263, 870, 2551, 31, 654, 2551, 966, 568, 26176, 14, 31668, 1138, 22525, 870, 2551, 31, 654, 2551, 966, 568, 26176, 14, 22174, 1138, 3650, 13264, 4756, 870, 2551, 9983, 654, 2551, 966, 568, 26176, 14, 2703, 31841, 11956, 28, 1439, 1561, 247, 4836, 3634, 7, 11956, 13143, 2551, 31, 187, 29, 2551, 966, 568, 26176, 14, 23295, 1138, 423, 870, 2551, 3073, 3456, 31, 187, 50268, 870, 2154, 2730, 8145, 1655, 14, 6756, 6781, 187, 50268, 187, 50270, 870, 2154, 31, 535, 50270, 535, 50270, 187, 50272, 870, 2154, 2730, 8145, 1655, 14, 9349, 6781, 535, 50274, 187, 50272, 29, 2154, 2654, 568, 9349, 14, 68, 14, 1826, 3, 966, 568, 9349, 14, 20119, 38329, 187, 50270, 187, 50270, 29, 2154, 966, 568, 9349, 14, 33049, 1138, 187, 50268, 29, 2551, 966, 568, 9349, 14, 1590, 1138, 1826, 870, 2551, 2730, 2551, 187, 50266, 2437, 568, 9349, 14, 8854, 1138, 9, 881, 13, 11419, 10, 551, 2785, 3346, 748, 870, 2551, 31, 187, 50268, 187, 50268, 29, 2551, 966, 568, 9349, 14, 9738, 14, 24301, 547, 1138, 9738, 281, 34831, 2603, 870, 2551, 31, 187, 50268, 187, 50270, 870, 2154, 31, 187, 50270, 535, 50270, 29, 2154, 966, 568, 9349, 14, 10008, 1138, 187, 50268, 187, 50268, 29, 81, 31, 9395, 247, 747, 4836, 870, 81, 31, 187, 50268, 187, 50268, 535, 50268, 187, 50268, 29, 2154, 966, 568, 9349, 14, 6756, 14, 3211, 3, 2654, 568, 1826, 14, 6756, 1138, 187, 50266, 29, 3456, 2730, 2551, 966, 568, 26176, 14, 13982, 1138, 4, 8490, 5135, 16, 3992, 335, 1238, 16, 40480, 15, 13041, 13, 1386, 4562, 870, 2551, 31, 187, 29, 2551, 966, 568, 26176, 14, 23295, 1138, 1545, 870, 2551, 31, 654, 2551, 966, 568, 26176, 14, 31668, 1138, 44103, 870, 2551, 8743, 29, 2551, 966, 568, 26176, 14, 31668, 1138, 881, 870, 2551, 9983, 654, 2551, 966, 568, 26176, 14, 31668, 1138, 13518, 870, 2551, 22226, 187, 50276, 29, 2551, 966, 568, 26176, 14, 400, 274, 1138, 33, 881, 870, 2551, 31, 50273, 30, 654, 2551, 966, 568, 26176, 14, 31668, 1138, 881, 870, 2551, 31, 187, 50276, 29, 2551, 966, 568, 26176, 14, 400, 274, 1138, 33, 13518, 870, 2551, 31, 50273, 30, 654, 2551, 966, 568, 26176, 14, 31668, 1138, 13518, 870, 2551, 31, 187, 50276, 29, 2551, 966, 568, 26176, 14, 400, 274, 1138, 33, 8581, 870, 2551, 31, 50275, 30, 654, 2551, 966, 568, 26176, 14, 2877, 1138, 27, 1826, 870, 2551, 31, 535, 50276, 29, 2551, 966, 568, 26176, 14, 400, 274, 1138, 33, 911, 7426, 870, 2551, 31, 50269, 30, 654, 2551, 966, 568, 26176, 14, 23295, 1138, 7750, 870, 2551, 31, 187, 50276, 29, 2551, 966, 568, 26176, 14, 400, 274, 1138, 33, 36510, 528, 64, 39686, 423, 870, 2551, 31, 426, 654, 2551, 966, 568, 26176, 14, 400, 274, 1138, 33, 13518, 870, 2551, 31, 654, 2551, 966, 568, 26176, 14, 4402, 1138, 32, 870, 2551, 31, 654, 2551, 966, 568, 26176, 14, 400, 274, 1138, 33, 13518, 870, 2551, 13208, 29, 2551, 966, 568, 26176, 14, 31668, 1138, 16435, 870, 2551, 8743, 29, 2551, 966, 568, 26176, 14, 2877, 1138, 27, 36510, 528, 64, 39686, 423, 870, 2551, 22226, 654, 2551, 966, 568, 26176, 14, 4402, 1138, 19282, 2551, 31, 654, 2551, 966, 568, 26176, 14, 23295, 1138, 7750, 870, 2551, 31, 187, 50276, 29, 2551, 966, 568, 26176, 14, 400, 274, 1138, 33, 18625, 64, 30289, 723, 870, 2551, 31, 50274, 30, 654, 2551, 966, 568, 26176, 14, 23295, 1138, 7750, 870, 2551, 31, 535, 50276, 29, 2551, 966, 568, 26176, 14, 31668, 1138, 5906, 870, 2551, 31, 50273, 30, 654, 2551, 966, 568, 26176, 14, 22174, 1138, 11589, 870, 2551, 13208, 29, 2551, 966, 568, 26176, 14, 31668, 1138, 6259, 870, 2551, 39822, 29, 2551, 966, 568, 26176, 14, 2877, 1138, 27, 3992, 335, 1238, 64, 5906, 870, 2551, 46267, 187, 50276, 29, 2551, 966, 568, 26176, 14, 400, 274, 1138, 33, 10050, 64, 301, 870, 2551, 31, 426, 654, 2551, 966, 568, 26176, 14, 22174, 1138, 7865, 26268, 870, 2551, 13208, 29, 2551, 966, 568, 26176, 14, 31668, 1138, 6259, 64, 301, 870, 2551, 31, 535, 50276, 29, 2551, 966, 568, 26176, 14, 31668, 1138, 22525, 870, 2551, 31, 654, 2551, 966, 568, 26176, 14, 22174, 1138, 3650, 49925, 4756, 870, 2551, 9983, 654, 2551, 966, 568, 26176, 14, 2703, 31841, 11956, 28, 5092, 11167, 1867, 28, 85, 2794, 8892, 3345, 273, 14142, 7, 11956, 13143, 2551, 31, 654, 2551, 966, 568, 26176, 14, 23295, 1138, 28558, 870, 2551, 31, 654, 2551, 966, 568, 26176, 14, 31668, 1138, 5906, 870, 2551, 31, 187, 50276, 29, 2551, 966, 568, 26176, 14, 31668, 1138, 18625, 870, 2551, 31, 654, 2551, 966, 568, 26176, 14, 2703, 31841, 11956, 28, 5092, 11167, 1867, 28, 85, 2794, 8892, 3304, 273, 8892, 7, 11956, 13143, 2551, 31, 654, 2551, 966, 568, 26176, 14, 23295, 1138, 338, 870, 2551, 31, 654, 2551, 966, 568, 26176, 14, 22174, 1138, 11589, 870, 2551, 13208, 29, 2551, 966, 568, 26176, 14, 31668, 1138, 6259, 870, 2551, 39822, 29, 2551, 966, 568, 26176, 14, 2877, 1138, 27, 3992, 335, 1238, 64, 14605, 870, 2551, 46267, 535, 50276, 29, 2551, 966, 568, 26176, 14, 31668, 1138, 6953, 870, 2551, 31, 654, 2551, 966, 568, 26176, 14, 23295, 1138, 3088, 870, 2551, 31, 187, 50274, 29, 2551, 966, 568, 26176, 14, 23295, 1138, 2043, 870, 2551, 31, 187, 50272, 29, 2551, 966, 568, 26176, 14, 400, 274, 1138, 33, 8581, 870, 2551, 31, 426, 654, 2551, 966, 568, 26176, 14, 2877, 1138, 27, 24220, 870, 2551, 31, 187, 50272, 29, 2551, 966, 568, 26176, 14, 31668, 1138, 5906, 870, 2551, 13208, 29, 2551, 966, 568, 26176, 14, 31668, 1138, 23320, 64, 11972, 870, 2551, 31, 535, 50272, 29, 2551, 966, 568, 26176, 14, 22174, 1138, 11589, 870, 2551, 13208, 29, 2551, 966, 568, 26176, 14, 31668, 1138, 6259, 870, 2551, 39822, 29, 2551, 966, 568, 26176, 14, 2877, 1138, 27, 3992, 335, 1238, 64, 14605, 870, 2551, 46267, 426, 654, 2551, 966, 568, 26176, 14, 23295, 1138, 1286, 870, 2551, 31, 187, 50272, 29, 2551, 966, 568, 26176, 14, 22174, 1138, 7865, 26268, 870, 2551, 13208, 29, 2551, 966, 568, 26176, 14, 31668, 1138, 6259, 64, 301, 870, 2551, 31, 426, 654, 2551, 966, 568, 26176, 14, 400, 274, 1138, 33, 10050, 64, 301, 870, 2551, 31, 535, 50272, 29, 2551, 966, 568, 26176, 14, 31668, 1138, 5906, 870, 2551, 13208, 29, 2551, 966, 568, 26176, 14, 31668, 1138, 40480, 870, 2551, 31, 654, 2551, 966, 568, 26176, 14, 4402, 31841, 5792, 13309, 5792, 13143, 2551, 31, 654, 2551, 966, 568, 26176, 14, 23295, 1138, 1286, 870, 2551, 31, 187, 50272, 29, 2551, 966, 568, 26176, 14, 23295, 1138, 41770, 870, 2551, 31, 187, 50274, 29, 2551, 966, 568, 26176, 14, 23295, 1138, 373, 30940, 870, 2551, 31, 654, 2551, 966, 568, 26176, 14, 22174, 1138, 13264, 870, 2551, 2730, 2551, 966, 568, 26176, 14, 4402, 1138, 1450, 870, 2551, 2730, 2551, 966, 568, 26176, 14, 22174, 1138, 18919, 3901, 4756, 870, 2551, 31, 187, 50272, 29, 2551, 966, 568, 26176, 14, 13982, 1138, 4, 17526, 369, 11120, 19344, 870, 2551, 31, 187, 50274, 29, 2551, 966, 568, 26176, 14, 23295, 1138, 5358, 870, 2551, 31, 187, 50272, 29, 2551, 966, 568, 26176, 14, 400, 274, 1138, 33, 8581, 870, 2551, 31, 426, 654, 2551, 966, 568, 26176, 14, 2877, 1138, 27, 26928, 870, 2551, 31, 187, 50272, 29, 2551, 966, 568, 26176, 14, 31668, 1138, 5906, 870, 2551, 13208, 29, 2551, 966, 568, 26176, 14, 31668, 1138, 40480, 870, 2551, 13208, 29, 2551, 966, 568, 26176, 14, 31668, 1138, 16435, 870, 2551, 31, 654, 2551, 966, 568, 26176, 14, 23295, 1138, 1286, 870, 2551, 31, 187, 50274, 29, 2551, 966, 568, 26176, 14, 23295, 1138, 423, 870, 2551, 31, 187, 50276, 29, 2551, 966, 568, 26176, 14, 23295, 1138, 423, 870, 2551, 31, 187, 29, 2551, 966, 568, 26176, 14, 23295, 1138, 423, 870, 2551, 3073, 3456, 31, 187, 50268, 870, 2154, 2730, 8145, 747, 14, 6756, 6781, 187, 50268, 187, 50270, 870, 2154, 31, 535, 50270, 535, 50270, 187, 50272, 870, 2154, 2730, 8145, 747, 14, 9349, 6781, 535, 50274, 187, 50272, 29, 2154, 2654, 568, 9349, 14, 68, 14, 39686, 423, 3, 966, 568, 9349, 14, 20119, 38329, 187, 50270, 187, 50270, 29, 2154, 966, 568, 9349, 14, 33049, 1138, 187, 50268, 29, 2551, 966, 568, 9349, 14, 1590, 1138, 39686, 423, 870, 2551, 2730, 2551, 187, 50266, 2437, 568, 9349, 14, 8854, 1138, 9, 8581, 17266, 2551, 31, 187, 50268, 187, 50268, 29, 2551, 966, 568, 9349, 14, 9738, 14, 24301, 547, 1138, 9738, 281, 34831, 2603, 870, 2551, 31, 187, 50268, 187, 50270, 870, 2154, 31, 187, 50270, 535, 50270, 29, 2154, 966, 568, 9349, 14, 10008, 1138, 187, 50268, 187, 50268, 29, 81, 31, 52, 14147, 423, 253, 3515, 4836, 13, 809, 24247, 281, 253, 8194, 14398, 870, 81, 31, 187, 50268, 187, 50268, 535, 50268, 187, 50268, 29, 2154, 966, 568, 9349, 14, 6756, 14, 3211, 3, 2654, 568, 39686, 423, 14, 6756, 1138, 187, 50266, 29, 3456, 2730, 2551, 966, 568, 26176, 14, 13982, 1138, 4, 8490, 5135, 16, 3992, 335, 1238, 16, 40480, 15, 13041, 13, 1386, 3495, 870, 2551, 31, 187, 29, 2551, 966, 568, 26176, 14, 23295, 1138, 1545, 870, 2551, 31, 654, 2551, 966, 568, 26176, 14, 23295, 1138, 1286, 870, 2551, 13208, 29, 2551, 966, 568, 26176, 14, 31668, 1138, 39686, 423, 870, 2551, 8743, 29, 2551, 966, 568, 26176, 14, 31668, 1138, 8581, 870, 2551, 22226, 187, 50276, 29, 2551, 966, 568, 26176, 14, 22174, 1138, 13264, 870, 2551, 13208, 29, 2551, 966, 568, 26176, 14, 31668, 1138, 6259, 870, 2551, 13208, 29, 2551, 966, 568, 26176, 14, 31668, 1138, 39686, 423, 870, 2551, 8743, 29, 2551, 966, 568, 26176, 14, 31668, 1138, 8581, 870, 2551, 22226, 187, 29, 2551, 966, 568, 26176, 14, 23295, 1138, 423, 870, 2551, 3073, 3456, 31, 187, 50268, 870, 2154, 2730, 8145, 32407, 14, 6756, 6781, 187, 50268, 187, 50270, 870, 2154, 31, 535, 50270, 535, 50270, 187, 50272, 870, 2154, 2730, 8145, 32407, 14, 9349, 6781, 535, 50274, 187, 50274, 870, 4674, 2730, 8145, 1345, 14, 2437, 14, 9349, 14, 23454, 6781, 187, 50276, 187, 50273, 29, 4674, 2654, 568, 4387, 14, 14966, 14, 22, 35, 2084, 5924, 14, 22, 37, 14, 9349, 14, 23454, 3, 966, 568, 9349, 14, 4674, 2593, 1138, 187, 50272, 29, 73, 20, 966, 568, 4674, 14, 10146, 1138, 15689, 496, 4792, 13277, 870, 73, 20, 31, 535, 50274, 187, 50272, 29, 2154, 2654, 568, 9349, 14, 74, 14, 2135, 20668, 3, 966, 568, 9349, 14, 20119, 38329, 187, 50270, 187, 50270, 29, 2154, 966, 568, 9349, 14, 33049, 1138, 187, 50268, 29, 2551, 966, 568, 9349, 14, 1590, 1138, 2135, 20668, 870, 2551, 2730, 2551, 187, 50266, 2437, 568, 9349, 14, 8854, 1138, 46410, 2551, 31, 187, 50268, 187, 50268, 29, 2551, 966, 568, 9349, 14, 9738, 14, 24301, 547, 1138, 9738, 281, 34831, 2603, 870, 2551, 31, 187, 50268, 187, 50270, 870, 2154, 31, 187, 50270, 535, 50270, 29, 2154, 966, 568, 9349, 14, 10008, 1138, 187, 50268, 187, 50268, 187, 50268, 187, 50268, 535, 50268, 187, 50268, 29, 2154, 966, 568, 9349, 14, 6756, 14, 3211, 3, 2654, 568, 2135, 20668, 14, 6756, 1138, 187, 50266, 29, 3456, 2730, 2551, 966, 568, 26176, 14, 13982, 1138, 4, 8490, 5135, 16, 3992, 335, 1238, 16, 40480, 15, 13041, 13, 1386, 13620, 870, 2551, 31, 187, 29, 2551, 966, 568, 26176, 14, 23295, 1138, 1545, 870, 2551, 31, 654, 2551, 966, 568, 26176, 14, 31668, 1138, 2135, 20668, 870, 2551, 31, 187, 29, 2551, 966, 568, 26176, 14, 23295, 1138, 423, 870, 2551, 3073, 3456, 31, 187, 50268, 870, 2154, 2730, 8145, 896, 20668, 14, 6756, 6781, 187, 50268, 187, 50270, 870, 2154, 31, 535, 50270, 535, 50270, 187, 50272, 870, 2154, 2730, 8145, 896, 20668, 14, 9349, 6781, 535, 50274, 187, 50272, 29, 2154, 2654, 568, 9349, 14, 74, 14, 6953, 3, 966, 568, 9349, 14, 20119, 38329, 187, 50270, 187, 50270, 29, 2154, 966, 568, 9349, 14, 33049, 1138, 187, 50268, 29, 2551, 966, 568, 9349, 14, 1590, 1138, 6953, 870, 2551, 2730, 2551, 187, 50266, 2437, 568, 9349, 14, 8854, 1138, 6395, 6172, 17266, 2551, 31, 187, 50268, 187, 50268, 29, 2551, 966, 568, 9349, 14, 9738, 14, 24301, 547, 1138, 9738, 281, 34831, 2603, 870, 2551, 31, 187, 50268, 187, 50270, 870, 2154, 31, 187, 50270, 535, 50270, 29, 2154, 966, 568, 9349, 14, 10008, 1138, 187, 50268, 187, 50268, 187, 50268, 187, 50268, 535, 50268, 187, 50268, 29, 2154, 966, 568, 9349, 14, 6756, 14, 3211, 3, 2654, 568, 6953, 14, 6756, 1138, 187, 50266, 29, 3456, 2730, 2551, 966, 568, 26176, 14, 13982, 1138, 4, 8490, 5135, 16, 3992, 335, 1238, 16, 40480, 15, 13041, 13, 1386, 7251, 870, 2551, 31, 187, 29, 2551, 966, 568, 26176, 14, 23295, 1138, 1545, 870, 2551, 31, 654, 2551, 966, 568, 26176, 14, 31668, 1138, 6953, 870, 2551, 8743, 29, 2551, 966, 568, 26176, 14, 4402, 31841, 1301, 13143, 2551, 2730, 2551, 966, 568, 26176, 14, 31668, 1138, 6172, 870, 2551, 22226, 187, 50276, 29, 2551, 966, 568, 26176, 14, 31668, 1138, 22525, 870, 2551, 31, 654, 2551, 966, 568, 26176, 14, 6219, 31841, 11956, 28, 3351, 3018, 42298, 1286, 15, 2437, 94, 4, 6953, 7, 11956, 13143, 2551, 31, 187, 29, 2551, 966, 568, 26176, 14, 23295, 1138, 423, 870, 2551, 3073, 3456, 31, 187, 50268, 870, 2154, 2730, 8145, 2794, 14, 6756, 6781, 187, 50268, 187, 50270, 870, 2154, 31, 535, 50270, 535, 50270, 187, 50272, 870, 2154, 2730, 8145, 2794, 14, 9349, 6781, 535, 50274, 187, 50272, 29, 2154, 2654, 568, 9349, 14, 74, 14, 911, 7426, 3, 966, 568, 9349, 14, 20119, 38329, 187, 50270, 187, 50270, 29, 2154, 966, 568, 9349, 14, 33049, 1138, 187, 50268, 29, 2551, 966, 568, 9349, 14, 1590, 1138, 911, 7426, 870, 2551, 2730, 2551, 187, 50266, 2437, 568, 9349, 14, 8854, 1138, 1082, 551, 2785, 3346, 748, 870, 2551, 31, 187, 50268, 187, 50268, 29, 2551, 966, 568, 9349, 14, 9738, 14, 24301, 547, 1138, 9738, 281, 34831, 2603, 870, 2551, 31, 187, 50268, 187, 50270, 870, 2154, 31, 187, 50270, 535, 50270, 29, 2154, 966, 568, 9349, 14, 10008, 1138, 187, 50268, 187, 50268, 29, 81, 31, 31141, 247, 2127, 2972, 275, 11855, 4438, 8239, 81, 31, 187, 50268, 187, 50268, 535, 50268, 187, 50268, 29, 2154, 966, 568, 9349, 14, 6756, 14, 3211, 3, 2654, 568, 911, 7426, 14, 6756, 1138, 187, 50266, 29, 3456, 2730, 2551, 966, 568, 26176, 14, 13982, 1138, 4, 8490, 5135, 16, 3992, 335, 1238, 16, 40480, 15, 13041, 13, 1386, 13062, 870, 2551, 31, 187, 29, 2551, 966, 568, 26176, 14, 23295, 1138, 1545, 870, 2551, 31, 654, 2551, 966, 568, 26176, 14, 31668, 1138, 911, 7426, 870, 2551, 31, 187, 50276, 29, 2551, 966, 568, 26176, 14, 23295, 1138, 338, 870, 2551, 31, 654, 2551, 966, 568, 26176, 14, 400, 274, 1138, 33, 911, 7426, 870, 2551, 31, 187, 50274, 29, 2551, 966, 568, 26176, 14, 23295, 1138, 41770, 870, 2551, 31, 187, 50276, 29, 2551, 966, 568, 26176, 14, 23295, 1138, 7271, 870, 2551, 31, 187, 50274, 29, 2551, 966, 568, 26176, 14, 23295, 1138, 2043, 870, 2551, 31, 187, 50272, 29, 2551, 966, 568, 26176, 14, 400, 274, 1138, 33, 911, 7426, 870, 2551, 31, 426, 654, 2551, 966, 568, 26176, 14, 23295, 1138, 5672, 870, 2551, 31, 187, 50272, 29, 2551, 966, 568, 26176, 14, 23295, 1138, 41770, 870, 2551, 31, 187, 50274, 29, 2551, 966, 568, 26176, 14, 23295, 1138, 5358, 870, 2551, 31, 187, 50272, 29, 2551, 966, 568, 26176, 14, 400, 274, 1138, 33, 911, 7426, 870, 2551, 31, 426, 654, 2551, 966, 568, 26176, 14, 23295, 1138, 7750, 870, 2551, 31, 187, 50274, 29, 2551, 966, 568, 26176, 14, 23295, 1138, 423, 870, 2551, 31, 187, 50276, 29, 2551, 966, 568, 26176, 14, 23295, 1138, 423, 870, 2551, 31, 187, 29, 2551, 966, 568, 26176, 14, 23295, 1138, 423, 870, 2551, 3073, 3456, 31, 187, 50268, 870, 2154, 2730, 8145, 11855, 14, 6756, 6781, 187, 50268, 187, 50270, 870, 2154, 31, 535, 50270, 535, 50270, 187, 50272, 870, 2154, 2730, 8145, 11855, 14, 9349, 6781, 535, 50274, 187, 50272, 29, 2154, 2654, 568, 9349, 14, 74, 14, 911, 7426, 14, 20, 39, 3, 966, 568, 9349, 14, 20119, 38329, 187, 50270, 187, 50270, 29, 2154, 966, 568, 9349, 14, 33049, 1138, 187, 50268, 29, 2551, 966, 568, 9349, 14, 1590, 1138, 911, 7426, 32, 870, 2551, 2730, 2551, 187, 50266, 2437, 568, 9349, 14, 8854, 1138, 46410, 2551, 31, 187, 50268, 187, 50268, 29, 2551, 966, 568, 9349, 14, 9738, 14, 24301, 547, 1138, 9738, 281, 34831, 2603, 870, 2551, 31, 187, 50268, 187, 50270, 870, 2154, 31, 187, 50270, 535, 50270, 29, 2154, 966, 568, 9349, 14, 10008, 1138, 187, 50268, 187, 50268, 29, 81, 31, 2513, 436, 4836, 3515, 275, 11855, 4438, 32, 870, 81, 31, 187, 50268, 187, 50268, 535, 50268, 187, 50268, 29, 2154, 966, 568, 9349, 14, 6756, 14, 3211, 3, 2654, 568, 911, 7426, 14, 20, 39, 14, 6756, 1138, 187, 50266, 29, 3456, 2730, 2551, 966, 568, 26176, 14, 13982, 1138, 4, 8490, 5135, 16, 3992, 335, 1238, 16, 40480, 15, 13041, 13, 1386, 19593, 870, 2551, 31, 187, 29, 2551, 966, 568, 26176, 14, 23295, 1138, 1545, 870, 2551, 31, 654, 2551, 966, 568, 26176, 14, 31668, 1138, 911, 7426, 32, 870, 2551, 31, 187, 50276, 29, 2551, 966, 568, 26176, 14, 400, 274, 1138, 33, 911, 7426, 870, 2551, 31, 187, 29, 2551, 966, 568, 26176, 14, 23295, 1138, 423, 870, 2551, 3073, 3456, 31, 187, 50268, 870, 2154, 2730, 8145, 11855, 14, 20, 39, 14, 6756, 6781, 187, 50268, 187, 50270, 870, 2154, 31, 535, 50270, 535, 50270, 187, 50272, 870, 2154, 2730, 8145, 11855, 14, 20, 39, 14, 9349, 6781, 535, 50274, 187, 50272, 29, 2154, 2654, 568, 9349, 14, 74, 14, 18625, 3, 966, 568, 9349, 14, 20119, 38329, 187, 50270, 187, 50270, 29, 2154, 966, 568, 9349, 14, 33049, 1138, 187, 50268, 29, 2551, 966, 568, 9349, 14, 1590, 1138, 18625, 870, 2551, 2730, 2551, 187, 50266, 2437, 568, 9349, 14, 8854, 1138, 9, 8559, 17266, 2551, 31, 187, 50268, 187, 50268, 29, 2551, 966, 568, 9349, 14, 9738, 14, 24301, 547, 1138, 9738, 281, 34831, 2603, 870, 2551, 31, 187, 50268, 187, 50270, 870, 2154, 31, 187, 50270, 535, 50270, 29, 2154, 966, 568, 9349, 14, 10008, 1138, 187, 50268, 187, 50268, 187, 50268, 187, 50268, 535, 50268, 187, 50268, 29, 2154, 966, 568, 9349, 14, 6756, 14, 3211, 3, 2654, 568, 18625, 14, 6756, 1138, 187, 50266, 29, 3456, 2730, 2551, 966, 568, 26176, 14, 13982, 1138, 4, 8490, 5135, 16, 3992, 335, 1238, 16, 40480, 15, 13041, 13, 1386, 21640, 870, 2551, 31, 187, 29, 2551, 966, 568, 26176, 14, 23295, 1138, 1545, 870, 2551, 31, 654, 2551, 966, 568, 26176, 14, 31668, 1138, 18625, 870, 2551, 8743, 29, 2551, 966, 568, 26176, 14, 31668, 1138, 8559, 870, 2551, 22226, 187, 50276, 29, 2551, 966, 568, 26176, 14, 23295, 1138, 338, 870, 2551, 31, 654, 2551, 966, 568, 26176, 14, 400, 274, 1138, 33, 18625, 64, 30289, 723, 870, 2551, 31, 187, 50274, 29, 2551, 966, 568, 26176, 14, 22174, 1138, 26428, 870, 2551, 13208, 29, 2551, 966, 568, 26176, 14, 31668, 1138, 30289, 870, 2551, 31, 654, 2551, 966, 568, 26176, 14, 31668, 1138, 8559, 870, 2551, 31, 654, 2551, 966, 568, 26176, 14, 23295, 1138, 338, 870, 2551, 31, 654, 2551, 966, 568, 26176, 14, 31668, 1138, 5, 4339, 2293, 4641, 38243, 64, 18828, 870, 2551, 31, 187, 50276, 29, 2551, 966, 568, 26176, 14, 23295, 1138, 7271, 870, 2551, 31, 187, 50274, 29, 2551, 966, 568, 26176, 14, 31668, 1138, 22525, 870, 2551, 31, 654, 2551, 966, 568, 26176, 14, 31668, 1138, 8559, 870, 2551, 31, 654, 2551, 966, 568, 26176, 14, 23295, 1138, 338, 870, 2551, 31, 654, 2551, 966, 568, 26176, 14, 31668, 1138, 5, 4339, 2293, 4641, 38243, 64, 18828, 870, 2551, 31, 187, 50276, 29, 2551, 966, 568, 26176, 14, 23295, 1138, 423, 870, 2551, 31, 187, 29, 2551, 966, 568, 26176, 14, 23295, 1138, 423, 870, 2551, 3073, 3456, 31, 187, 50268, 870, 2154, 2730, 8145, 7496, 14, 6756, 6781, 187, 50268, 187, 50270, 870, 2154, 31, 535, 50270, 535, 50270, 187, 50272, 870, 2154, 2730, 8145, 7496, 14, 9349, 6781, 535, 50274, 187, 50272, 29, 2154, 2654, 568, 9349, 14, 74, 14, 968, 808, 3, 966, 568, 9349, 14, 20119, 38329, 187, 50270, 187, 50270, 29, 2154, 966, 568, 9349, 14, 33049, 1138, 187, 50268, 29, 2551, 966, 568, 9349, 14, 1590, 1138, 968, 808, 870, 2551, 2730, 2551, 187, 50266, 2437, 568, 9349, 14, 8854, 1138, 46410, 2551, 31, 187, 50268, 187, 50268, 29, 2551, 966, 568, 9349, 14, 9738, 14, 24301, 547, 1138, 9738, 281, 34831, 2603, 870, 2551, 31, 187, 50268, 187, 50270, 870, 2154, 31, 187, 50270, 535, 50270, 29, 2154, 966, 568, 9349, 14, 10008, 1138, 187, 50268, 187, 50268, 29, 81, 31, 47, 35467, 2876, 16030, 323, 8892, 870, 81, 31, 187, 50268, 187, 50268, 535, 50268, 187, 50268, 29, 2154, 966, 568, 9349, 14, 6756, 14, 3211, 3, 2654, 568, 968, 808, 14, 6756, 1138, 187, 50266, 29, 3456, 2730, 2551, 966, 568, 26176, 14, 13982, 1138, 4, 8490, 5135, 16, 3992, 335, 1238, 16, 40480, 15, 13041, 13, 1386, 21669, 870, 2551, 31, 187, 29, 2551, 966, 568, 26176, 14, 23295, 1138, 1545, 870, 2551, 31, 654, 2551, 966, 568, 26176, 14, 31668, 1138, 968, 808, 870, 2551, 31, 187, 50276, 29, 2551, 966, 568, 26176, 14, 6219, 31841, 11956, 28, 4, 7, 5792, 28, 4, 92, 1286, 15, 2437, 17168, 17, 89, 4, 92, 6082, 64, 301, 15, 936, 64, 84, 9, 1036, 3117, 1214, 881, 18350, 92, 33, 881, 15, 968, 808, 2023, 1214, 13518, 18350, 92, 33, 13518, 15, 968, 808, 2023, 1214, 8581, 18350, 92, 33, 8581, 15, 968, 808, 21316, 7332, 13309, 11956, 13143, 2551, 31, 187, 29, 2551, 966, 568, 26176, 14, 23295, 1138, 423, 870, 2551, 3073, 3456, 31, 187, 50268, 870, 2154, 2730, 8145, 16030, 14, 6756, 6781, 187, 50268, 187, 50270, 870, 2154, 31, 535, 50270, 535, 50270, 187, 50272, 870, 2154, 2730, 8145, 16030, 14, 9349, 6781, 535, 50274, 187, 50272, 29, 2154, 2654, 568, 9349, 14, 74, 14, 373, 2123, 3, 966, 568, 9349, 14, 20119, 38329, 187, 50270, 187, 50270, 29, 2154, 966, 568, 9349, 14, 33049, 1138, 187, 50268, 29, 2551, 966, 568, 9349, 14, 1590, 1138, 373, 2123, 870, 2551, 2730, 2551, 187, 50266, 2437, 568, 9349, 14, 8854, 1138, 9, 2877, 426, 5296, 17266, 2551, 31, 187, 50268, 187, 50268, 29, 2551, 966, 568, 9349, 14, 9738, 14, 24301, 547, 1138, 9738, 281, 34831, 2603, 870, 2551, 31, 187, 50268, 187, 50270, 870, 2154, 31, 187, 50270, 535, 50270, 29, 2154, 966, 568, 9349, 14, 10008, 1138, 187, 50268, 187, 50268, 29, 81, 31, 2632, 2123, 247, 14116, 4836, 13, 4933, 352, 247, 1318, 281, 1091, 604, 3058, 870, 81, 31, 187, 50268, 187, 50268, 535, 50268, 187, 50268, 29, 2154, 966, 568, 9349, 14, 6756, 14, 3211, 3, 2654, 568, 373, 2123, 14, 6756, 1138, 187, 50266, 29, 3456, 2730, 2551, 966, 568, 26176, 14, 13982, 1138, 4, 8490, 5135, 16, 3992, 335, 1238, 16, 40480, 15, 13041, 13, 1386, 9161, 870, 2551, 31, 187, 29, 2551, 966, 568, 26176, 14, 23295, 1138, 1545, 870, 2551, 31, 654, 2551, 966, 568, 26176, 14, 31668, 1138, 373, 2123, 870, 2551, 8743, 29, 2551, 966, 568, 26176, 14, 31668, 1138, 2877, 870, 2551, 31, 426, 654, 2551, 966, 568, 26176, 14, 23295, 1138, 18789, 870, 2551, 22226, 187, 50276, 29, 2551, 966, 568, 26176, 14, 31668, 1138, 18625, 870, 2551, 31, 654, 2551, 966, 568, 26176, 14, 2703, 31841, 11956, 28, 41909, 21058, 247, 4836, 432, 3304, 273, 247, 4836, 7, 11956, 13143, 2551, 31, 654, 2551, 966, 568, 26176, 14, 23295, 1138, 338, 870, 2551, 31, 654, 2551, 966, 568, 26176, 14, 22174, 1138, 11589, 870, 2551, 13208, 29, 2551, 966, 568, 26176, 14, 31668, 1138, 6259, 870, 2551, 39822, 29, 2551, 966, 568, 26176, 14, 2877, 1138, 27, 3992, 335, 1238, 64, 14605, 870, 2551, 46267, 187, 50276, 29, 2551, 966, 568, 26176, 14, 31668, 1138, 7555, 2373, 870, 2551, 8743, 29, 2551, 966, 568, 26176, 14, 31668, 1138, 2877, 870, 2551, 22226, 187, 50276, 29, 2551, 966, 568, 26176, 14, 23295, 1138, 18789, 870, 2551, 31, 187, 29, 2551, 966, 568, 26176, 14, 23295, 1138, 423, 870, 2551, 3073, 3456, 31, 187, 50268, 870, 2154, 2730, 8145, 21058, 14, 6756, 6781, 187, 50268, 187, 50270, 870, 2154, 31, 535, 50270, 535, 50270, 187, 50272, 870, 2154, 2730, 8145, 21058, 14, 9349, 6781, 535, 50274, 187, 50272, 29, 2154, 2654, 568, 9349, 14, 74, 14, 24220, 14, 20, 39, 3, 966, 568, 9349, 14, 20119, 38329, 187, 50270, 187, 50270, 29, 2154, 966, 568, 9349, 14, 33049, 1138, 187, 50268, 29, 2551, 966, 568, 9349, 14, 1590, 1138, 24220, 32, 870, 2551, 2730, 2551, 187, 50266, 2437, 568, 9349, 14, 8854, 1138, 46410, 2551, 31, 187, 50268, 187, 50268, 29, 2551, 966, 568, 9349, 14, 9738, 14, 24301, 547, 1138, 9738, 281, 34831, 2603, 870, 2551, 31, 187, 50268, 187, 50270, 870, 2154, 31, 187, 50270, 535, 50270, 29, 2154, 966, 568, 9349, 14, 10008, 1138, 187, 50268, 187, 50268, 29, 81, 31, 2513, 253, 1655, 4836, 1335, 3515, 32, 870, 81, 31, 187, 50268, 187, 50268, 535, 50268, 187, 50268, 29, 2154, 966, 568, 9349, 14, 6756, 14, 3211, 3, 2654, 568, 24220, 14, 20, 39, 14, 6756, 1138, 187, 50266, 29, 3456, 2730, 2551, 966, 568, 26176, 14, 13982, 1138, 4, 8490, 5135, 16, 3992, 335, 1238, 16, 40480, 15, 13041, 13, 1386, 15470, 870, 2551, 31, 187, 29, 2551, 966, 568, 26176, 14, 23295, 1138, 1545, 870, 2551, 31, 654, 2551, 966, 568, 26176, 14, 31668, 1138, 24220, 32, 870, 2551, 21431, 654, 2551, 966, 568, 26176, 14, 400, 274, 1138, 33, 8581, 870, 2551, 31, 654, 2551, 966, 568, 26176, 14, 4402, 1138, 35495, 870, 2551, 31, 654, 2551, 966, 568, 26176, 14, 2877, 1138, 27, 26928, 870, 2551, 21431, 654, 2551, 966, 568, 26176, 14, 23295, 1138, 423, 870, 2551, 3073, 3456, 31, 187, 50268, 870, 2154, 2730, 8145, 3515, 14, 20, 39, 14, 6756, 6781, 187, 50268, 187, 50270, 870, 2154, 31, 535, 50270, 535, 50270, 187, 50272, 870, 2154, 2730, 8145, 3515, 14, 20, 39, 14, 9349, 6781, 535, 50274, 187, 50272, 29, 2154, 2654, 568, 9349, 14, 74, 14, 39686, 423, 3, 966, 568, 9349, 14, 20119, 38329, 187, 50270, 187, 50270, 29, 2154, 966, 568, 9349, 14, 33049, 1138, 187, 50268, 29, 2551, 966, 568, 9349, 14, 1590, 1138, 39686, 423, 870, 2551, 2730, 2551, 187, 50266, 2437, 568, 9349, 14, 8854, 1138, 9, 8581, 17266, 2551, 31, 187, 50268, 187, 50268, 29, 2551, 966, 568, 9349, 14, 9738, 14, 24301, 547, 1138, 9738, 281, 34831, 2603, 870, 2551, 31, 187, 50268, 187, 50270, 870, 2154, 31, 187, 50270, 535, 50270, 29, 2154, 966, 568, 9349, 14, 10008, 1138, 187, 50268, 187, 50268, 29, 81, 31, 52, 14147, 423, 253, 1655, 4836, 13, 6890, 253, 3708, 281, 253, 1677, 4154, 870, 81, 31, 187, 50268, 187, 50268, 535, 50268, 187, 50268, 29, 2154, 966, 568, 9349, 14, 6756, 14, 3211, 3, 2654, 568, 39686, 423, 14, 6756, 1138, 187, 50266, 29, 3456, 2730, 2551, 966, 568, 26176, 14, 13982, 1138, 4, 8490, 5135, 16, 3992, 335, 1238, 16, 40480, 15, 13041, 13, 1386, 5571, 870, 2551, 31, 187, 29, 2551, 966, 568, 26176, 14, 23295, 1138, 1545, 870, 2551, 31, 654, 2551, 966, 568, 26176, 14, 31668, 1138, 39686, 423, 870, 2551, 8743, 29, 2551, 966, 568, 26176, 14, 31668, 1138, 8581, 870, 2551, 22226, 187, 50276, 29, 2551, 966, 568, 26176, 14, 31668, 1138, 22525, 870, 2551, 31, 654, 2551, 966, 568, 26176, 14, 2703, 31841, 11956, 28, 41909, 32407, 1223, 275, 11855, 4438, 7, 11956, 13143, 2551, 31, 654, 2551, 966, 568, 26176, 14, 23295, 1138, 338, 870, 2551, 31, 654, 2551, 966, 568, 26176, 14, 31668, 1138, 911, 7426, 32, 870, 2551, 31, 187, 50276, 29, 2551, 966, 568, 26176, 14, 31668, 1138, 22525, 870, 2551, 31, 654, 2551, 966, 568, 26176, 14, 2703, 31841, 11956, 28, 41909, 32407, 247, 4836, 432, 3345, 273, 3139, 7, 11956, 13143, 2551, 31, 654, 2551, 966, 568, 26176, 14, 23295, 1138, 28558, 870, 2551, 31, 654, 2551, 966, 568, 26176, 14, 22174, 1138, 13264, 870, 2551, 13208, 29, 2551, 966, 568, 26176, 14, 31668, 1138, 6259, 870, 2551, 31, 654, 2551, 966, 568, 26176, 14, 4402, 1138, 381, 870, 2551, 31, 654, 2551, 966, 568, 26176, 14, 23295, 1138, 1286, 870, 2551, 31, 535, 50276, 29, 2551, 966, 568, 26176, 14, 400, 274, 1138, 33, 8581, 870, 2551, 31, 426, 654, 2551, 966, 568, 26176, 14, 31668, 1138, 8581, 870, 2551, 31, 535, 50276, 29, 2551, 966, 568, 26176, 14, 23295, 1138, 338, 870, 2551, 31, 654, 2551, 966, 568, 26176, 14, 31668, 1138, 5, 4339, 2293, 4641, 38243, 64, 18828, 870, 2551, 31, 654, 2551, 966, 568, 26176, 14, 4402, 31841, 1301, 13309, 1301, 13143, 2551, 31, 654, 2551, 966, 568, 26176, 14, 400, 274, 1138, 33, 36510, 528, 64, 39686, 423, 870, 2551, 31, 187, 50274, 29, 2551, 966, 568, 26176, 14, 31668, 1138, 28207, 870, 2551, 31, 426, 654, 2551, 966, 568, 26176, 14, 2703, 31841, 11956, 28, 37, 3751, 4087, 5167, 1946, 4836, 27, 708, 11956, 13143, 2551, 31, 187, 50274, 29, 2551, 966, 568, 26176, 14, 31668, 1138, 28207, 870, 2551, 31, 654, 2551, 966, 568, 26176, 14, 4402, 31841, 5792, 13309, 5792, 13143, 2551, 31, 544, 187, 50272, 29, 2551, 966, 568, 26176, 14, 6219, 31841, 11956, 28, 881, 18350, 92, 33, 881, 15, 968, 808, 21316, 11956, 13143, 2551, 9983, 187, 50272, 29, 2551, 966, 568, 26176, 14, 6219, 31841, 11956, 28, 13518, 18350, 92, 33, 13518, 15, 968, 808, 21316, 11956, 13143, 2551, 9983, 187, 50272, 29, 2551, 966, 568, 26176, 14, 6219, 31841, 11956, 28, 8581, 18350, 92, 33, 8581, 15, 968, 808, 21316, 11956, 13143, 2551, 31, 187, 50274, 1570, 29, 2551, 966, 568, 26176, 14, 31668, 1138, 13956, 870, 2551, 8743, 29, 2551, 966, 568, 26176, 14, 2703, 31841, 11956, 36739, 708, 11956, 13143, 2551, 22226, 535, 50274, 29, 2551, 966, 568, 26176, 14, 22174, 1138, 26428, 870, 2551, 13208, 29, 2551, 966, 568, 26176, 14, 31668, 1138, 30289, 870, 2551, 31, 43521, 2551, 966, 568, 26176, 14, 31668, 1138, 28207, 870, 2551, 9983, 654, 2551, 966, 568, 26176, 14, 4402, 1138, 11, 870, 2551, 2730, 2551, 966, 568, 26176, 14, 31668, 1138, 4065, 254, 870, 2551, 39822, 29, 2551, 966, 568, 26176, 14, 2877, 1138, 19, 870, 2551, 2730, 2551, 966, 568, 26176, 14, 4402, 1138, 537, 870, 2551, 2730, 2551, 966, 568, 26176, 14, 2877, 1138, 25, 870, 2551, 46267, 1570, 29, 2551, 966, 568, 26176, 14, 31668, 1138, 13956, 870, 2551, 8743, 29, 2551, 966, 568, 26176, 14, 2703, 31841, 11956, 7405, 79, 61, 85, 7, 11956, 13143, 2551, 22226, 187, 50276, 29, 2551, 966, 568, 26176, 14, 23295, 1138, 423, 870, 2551, 31, 535, 50276, 29, 2551, 966, 568, 26176, 14, 31668, 1138, 2877, 870, 2551, 31, 426, 654, 2551, 966, 568, 26176, 14, 31668, 1138, 27644, 870, 2551, 31, 535, 50276, 29, 2551, 966, 568, 26176, 14, 400, 274, 1138, 33, 8581, 870, 2551, 31, 426, 654, 2551, 966, 568, 26176, 14, 2877, 1138, 27, 24220, 870, 2551, 31, 187, 50276, 29, 2551, 966, 568, 26176, 14, 31668, 1138, 22525, 870, 2551, 31, 654, 2551, 966, 568, 26176, 14, 31668, 1138, 2877, 870, 2551, 31, 654, 2551, 966, 568, 26176, 14, 23295, 1138, 338, 870, 2551, 31, 654, 2551, 966, 568, 26176, 14, 31668, 1138, 2877, 870, 2551, 13208, 29, 2551, 966, 568, 26176, 14, 31668, 1138, 261, 64, 66, 32, 870, 2551, 8743, 29, 2551, 966, 568, 26176, 14, 22174, 1138, 10772, 335, 1238, 870, 2551, 2730, 2551, 966, 568, 26176, 14, 4402, 1138, 1450, 870, 2551, 2730, 2551, 966, 568, 26176, 14, 22174, 1138, 2632, 360, 494, 4756, 870, 2551, 22226, 535, 50276, 29, 2551, 966, 568, 26176, 14, 31668, 1138, 2877, 870, 2551, 31, 187, 29, 2551, 966, 568, 26176, 14, 23295, 1138, 423, 870, 2551, 3073, 3456, 31, 187, 50268, 870, 2154, 2730, 8145, 32407, 14, 6756, 6781, 187, 50268, 187, 50270, 870, 2154, 31, 535, 50270, 535, 50270, 187, 50272, 870, 2154, 2730, 8145, 32407, 14, 9349, 6781, 535, 50274, 187, 50272, 29, 2154, 2654, 568, 9349, 14, 74, 14, 20792, 366, 3, 966, 568, 9349, 14, 20119, 38329, 187, 50270, 187, 50270, 29, 2154, 966, 568, 9349, 14, 33049, 1138, 187, 50268, 29, 2551, 966, 568, 9349, 14, 1590, 1138, 20792, 366, 870, 2551, 2730, 2551, 187, 50266, 2437, 568, 9349, 14, 8854, 1138, 46410, 2551, 31, 187, 50268, 187, 50268, 29, 2551, 966, 568, 9349, 14, 9738, 14, 24301, 547, 1138, 9738, 281, 34831, 2603, 870, 2551, 31, 187, 50268, 187, 50270, 870, 2154, 31, 187, 50270, 535, 50270, 29, 2154, 966, 568, 9349, 14, 10008, 1138, 187, 50268, 187, 50268, 29, 81, 31, 18919, 4024, 436, 4836, 870, 81, 31, 187, 50268, 187, 50268, 535, 50268, 187, 50268, 29, 2154, 966, 568, 9349, 14, 6756, 14, 3211, 3, 2654, 568, 20792, 366, 14, 6756, 1138, 187, 50266, 29, 3456, 2730, 2551, 966, 568, 26176, 14, 13982, 1138, 4, 8490, 5135, 16, 3992, 335, 1238, 16, 40480, 15, 13041, 13, 1386, 12387, 870, 2551, 31, 187, 29, 2551, 966, 568, 26176, 14, 23295, 1138, 1545, 870, 2551, 31, 654, 2551, 966, 568, 26176, 14, 31668, 1138, 20792, 366, 870, 2551, 31, 187, 50276, 29, 2551, 966, 568, 26176, 14, 31668, 1138, 22525, 870, 2551, 31, 654, 2551, 966, 568, 26176, 14, 2703, 31841, 11956, 28, 41909, 24174, 271, 11855, 4836, 7, 11956, 13143, 2551, 31, 654, 2551, 966, 568, 26176, 14, 23295, 1138, 338, 870, 2551, 31, 654, 2551, 966, 568, 26176, 14, 31668, 1138, 911, 7426, 32, 870, 2551, 31, 535, 50276, 29, 2551, 966, 568, 26176, 14, 23295, 1138, 338, 870, 2551, 31, 654, 2551, 966, 568, 26176, 14, 31668, 1138, 24220, 32, 870, 2551, 31, 187, 50274, 29, 2551, 966, 568, 26176, 14, 22174, 1138, 10772, 335, 1238, 870, 2551, 13208, 29, 2551, 966, 568, 26176, 14, 31668, 1138, 23173, 870, 2551, 13208, 29, 2551, 966, 568, 26176, 14, 31668, 1138, 30289, 870, 2551, 31, 654, 2551, 966, 568, 26176, 14, 6219, 31841, 11956, 28, 18919, 8779, 4836, 27, 1511, 18350, 92, 33, 881, 15, 968, 808, 2023, 11419, 18350, 92, 33, 13518, 15, 968, 808, 2023, 3708, 18350, 92, 33, 8581, 15, 968, 808, 21316, 11956, 13143, 2551, 31, 187, 50274, 29, 2551, 966, 568, 26176, 14, 31668, 1138, 22558, 870, 2551, 31, 426, 654, 2551, 966, 568, 26176, 14, 22174, 1138, 13264, 870, 2551, 2730, 2551, 966, 568, 26176, 14, 4402, 1138, 1450, 870, 2551, 2730, 2551, 966, 568, 26176, 14, 22174, 1138, 18919, 3901, 4756, 870, 2551, 13208, 29, 2551, 966, 568, 26176, 14, 31668, 1138, 1826, 870, 2551, 8743, 29, 2551, 966, 568, 26176, 14, 2703, 31841, 11956, 28, 14605, 369, 19344, 7, 11956, 13143, 2551, 22226, 187, 50274, 29, 2551, 966, 568, 26176, 14, 31668, 1138, 22558, 870, 2551, 13208, 29, 2551, 966, 568, 26176, 14, 31668, 1138, 1178, 64, 2135, 20668, 870, 2551, 8743, 29, 2551, 966, 568, 26176, 14, 31668, 1138, 4065, 254, 870, 2551, 22226, 187, 50274, 29, 2551, 966, 568, 26176, 14, 31668, 1138, 373, 2123, 870, 2551, 31, 654, 2551, 966, 568, 26176, 14, 31668, 1138, 22558, 870, 2551, 31, 187, 50276, 29, 2551, 966, 568, 26176, 14, 23295, 1138, 7271, 870, 2551, 31, 187, 50274, 29, 2551, 966, 568, 26176, 14, 31668, 1138, 22525, 870, 2551, 31, 654, 2551, 966, 568, 26176, 14, 22174, 1138, 36205, 13264, 4756, 870, 2551, 9983, 654, 2551, 966, 568, 26176, 14, 2703, 31841, 11956, 28, 14605, 310, 2168, 3846, 7, 11956, 13143, 2551, 31, 187, 50276, 29, 2551, 966, 568, 26176, 14, 23295, 1138, 423, 870, 2551, 31, 187, 29, 2551, 966, 568, 26176, 14, 23295, 1138, 423, 870, 2551, 3073, 3456, 31, 187, 50268, 870, 2154, 2730, 8145, 24174, 14, 6756, 6781, 187, 50268, 187, 50270, 870, 2154, 31, 535, 50270, 535, 50270, 187, 50272, 870, 2154, 2730, 8145, 24174, 14, 9349, 6781, 535, 50274, 187, 50274, 870, 4674, 2730, 8145, 1345, 14, 14966, 14, 9349, 14, 23454, 6781, 187, 50276, 187, 50276, 870, 4674, 2730, 8145, 608, 35, 2084, 5924, 14, 22, 37, 6781, 187, 187, 870, 2154, 2730, 8145, 10097, 6781, 535, 187, 29, 28497, 2654, 568, 7210, 1080, 14, 14367, 2510, 1138, 187, 50276, 29, 81, 2730, 66, 3860, 568, 2413, 1358, 7210, 1080, 15, 88, 20, 15, 2061, 16, 5903, 16, 250, 453, 6554, 1138, 60, 13159, 366, 62, 870, 66, 31, 187, 50276, 29, 81, 31, 33527, 407, 654, 66, 3860, 568, 3614, 1358, 7280, 15, 681, 16, 5784, 406, 16, 5784, 406, 1138, 51, 15032, 870, 66, 31, 577, 15, 17, 15, 17, 15, 187, 50276, 29, 81, 31, 33527, 342, 253, 654, 66, 3860, 568, 2413, 1358, 615, 306, 4513, 15, 2061, 16, 31224, 16, 29285, 12306, 14, 51, 7152, 40354, 29285, 12306, 416, 7152, 15345, 1080, 870, 66, 31, 495, 15, 187, 870, 28497, 31, 535 ]
<!DOCTYPE html> <html> <head> <meta content="text/html; charset=UTF-8" http-equiv="Content-Type"> <title>class Celluloid::Task - celluloid-0.15.2 Documentation</title> <link type="text/css" media="screen" href="../rdoc.css" rel="stylesheet"> <script type="text/javascript"> var rdoc_rel_prefix = "../"; </script> <script type="text/javascript" charset="utf-8" src="../js/jquery.js"></script> <script type="text/javascript" charset="utf-8" src="../js/navigation.js"></script> <script type="text/javascript" charset="utf-8" src="../js/search_index.js"></script> <script type="text/javascript" charset="utf-8" src="../js/search.js"></script> <script type="text/javascript" charset="utf-8" src="../js/searcher.js"></script> <script type="text/javascript" charset="utf-8" src="../js/darkfish.js"></script> <body id="top" class="class"> <nav id="metadata"> <nav id="home-section" class="section"> <h3 class="section-header"> <a href="../index.html">Home</a> <a href="../table_of_contents.html#classes">Classes</a> <a href="../table_of_contents.html#methods">Methods</a> </h3> </nav> <nav id="search-section" class="section project-section" class="initially-hidden"> <form action="#" method="get" accept-charset="utf-8"> <h3 class="section-header"> <input type="text" name="search" placeholder="Search" id="search-field" title="Type to search, Up and Down to navigate, Enter to load"> </h3> </form> <ul id="search-results" class="initially-hidden"></ul> </nav> <div id="file-metadata"> <nav id="file-list-section" class="section"> <h3 class="section-header">Defined In</h3> <ul> <li>lib/celluloid/tasks.rb <li>lib/celluloid/tasks/task_thread.rb </ul> </nav> </div> <div id="class-metadata"> <nav id="parent-class-section" class="section"> <h3 class="section-header">Parent</h3> <p class="link">Object </nav> <!-- Method Quickref --> <nav id="method-list-section" class="section"> <h3 class="section-header">Methods</h3> <ul class="link-list"> <li ><a href="#method-c-current">::current</a> <li ><a href="#method-c-new">::new</a> <li ><a href="#method-c-suspend">::suspend</a> <li ><a href="#method-i-backtrace">#backtrace</a> <li ><a href="#method-i-create">#create</a> <li ><a href="#method-i-exclusive">#exclusive</a> <li ><a href="#method-i-exclusive-3F">#exclusive?</a> <li ><a href="#method-i-guard">#guard</a> <li ><a href="#method-i-inspect">#inspect</a> <li ><a href="#method-i-resume">#resume</a> <li ><a href="#method-i-running-3F">#running?</a> <li ><a href="#method-i-suspend">#suspend</a> <li ><a href="#method-i-terminate">#terminate</a> </ul> </nav> </div> <div id="project-metadata"> <nav id="classindex-section" class="section project-section"> <h3 class="section-header">Class and Module Index</h3> <ul class="link-list"> <li><a href="../Celluloid.html">Celluloid</a> <li><a href="../Celluloid/AbortError.html">Celluloid::AbortError</a> <li><a href="../Celluloid/AbstractProxy.html">Celluloid::AbstractProxy</a> <li><a href="../Celluloid/Actor.html">Celluloid::Actor</a> <li><a href="../Celluloid/Actor/Sleeper.html">Celluloid::Actor::Sleeper</a> <li><a href="../Celluloid/ActorProxy.html">Celluloid::ActorProxy</a> <li><a href="../Celluloid/AsyncCall.html">Celluloid::AsyncCall</a> <li><a href="../Celluloid/AsyncProxy.html">Celluloid::AsyncProxy</a> <li><a href="../Celluloid/BlockCall.html">Celluloid::BlockCall</a> <li><a href="../Celluloid/BlockProxy.html">Celluloid::BlockProxy</a> <li><a href="../Celluloid/BlockResponse.html">Celluloid::BlockResponse</a> <li><a href="../Celluloid/CPUCounter.html">Celluloid::CPUCounter</a> <li><a href="../Celluloid/CPUCounter/RbConfig.html">Celluloid::CPUCounter::RbConfig</a> <li><a href="../Celluloid/Call.html">Celluloid::Call</a> <li><a href="../Celluloid/CallChain.html">Celluloid::CallChain</a> <li><a href="../Celluloid/ClassMethods.html">Celluloid::ClassMethods</a> <li><a href="../Celluloid/Condition.html">Celluloid::Condition</a> <li><a href="../Celluloid/Condition/Waiter.html">Celluloid::Condition::Waiter</a> <li><a href="../Celluloid/ConditionError.html">Celluloid::ConditionError</a> <li><a href="../Celluloid/DeadActorError.html">Celluloid::DeadActorError</a> <li><a href="../Celluloid/DeadTaskError.html">Celluloid::DeadTaskError</a> <li><a href="../Celluloid/ErrorResponse.html">Celluloid::ErrorResponse</a> <li><a href="../Celluloid/EventedMailbox.html">Celluloid::EventedMailbox</a> <li><a href="../Celluloid/ExitEvent.html">Celluloid::ExitEvent</a> <li><a href="../Celluloid/FSM.html">Celluloid::FSM</a> <li><a href="../Celluloid/FSM/ClassMethods.html">Celluloid::FSM::ClassMethods</a> <li><a href="../Celluloid/FSM/State.html">Celluloid::FSM::State</a> <li><a href="../Celluloid/FSM/UnattachedError.html">Celluloid::FSM::UnattachedError</a> <li><a href="../Celluloid/FiberStackError.html">Celluloid::FiberStackError</a> <li><a href="../Celluloid/Future.html">Celluloid::Future</a> <li><a href="../Celluloid/Future/Result.html">Celluloid::Future::Result</a> <li><a href="../Celluloid/FutureProxy.html">Celluloid::FutureProxy</a> <li><a href="../Celluloid/Incident.html">Celluloid::Incident</a> <li><a href="../Celluloid/IncidentLogger.html">Celluloid::IncidentLogger</a> <li><a href="../Celluloid/IncidentLogger/Severity.html">Celluloid::IncidentLogger::Severity</a> <li><a href="../Celluloid/IncidentReporter.html">Celluloid::IncidentReporter</a> <li><a href="../Celluloid/IncidentReporter/Formatter.html">Celluloid::IncidentReporter::Formatter</a> <li><a href="../Celluloid/InstanceMethods.html">Celluloid::InstanceMethods</a> <li><a href="../Celluloid/InternalPool.html">Celluloid::InternalPool</a> <li><a href="../Celluloid/LinkingRequest.html">Celluloid::LinkingRequest</a> <li><a href="../Celluloid/LinkingResponse.html">Celluloid::LinkingResponse</a> <li><a href="../Celluloid/Links.html">Celluloid::Links</a> <li><a href="../Celluloid/LogEvent.html">Celluloid::LogEvent</a> <li><a href="../Celluloid/Logger.html">Celluloid::Logger</a> <li><a href="../Celluloid/Mailbox.html">Celluloid::Mailbox</a> <li><a href="../Celluloid/MailboxDead.html">Celluloid::MailboxDead</a> <li><a href="../Celluloid/MailboxShutdown.html">Celluloid::MailboxShutdown</a> <li><a href="../Celluloid/Method.html">Celluloid::Method</a> <li><a href="../Celluloid/NamingRequest.html">Celluloid::NamingRequest</a> <li><a href="../Celluloid/NotActorError.html">Celluloid::NotActorError</a> <li><a href="../Celluloid/NotTaskError.html">Celluloid::NotTaskError</a> <li><a href="../Celluloid/Notifications.html">Celluloid::Notifications</a> <li><a href="../Celluloid/Notifications/Fanout.html">Celluloid::Notifications::Fanout</a> <li><a href="../Celluloid/Notifications/Subscriber.html">Celluloid::Notifications::Subscriber</a> <li><a href="../Celluloid/PoolManager.html">Celluloid::PoolManager</a> <li><a href="../Celluloid/Properties.html">Celluloid::Properties</a> <li><a href="../Celluloid/Receiver.html">Celluloid::Receiver</a> <li><a href="../Celluloid/Receivers.html">Celluloid::Receivers</a> <li><a href="../Celluloid/Registry.html">Celluloid::Registry</a> <li><a href="../Celluloid/Registry/actor;.html">Celluloid::Registry::actor;</a> <li><a href="../Celluloid/Response.html">Celluloid::Response</a> <li><a href="../Celluloid/ResumableError.html">Celluloid::ResumableError</a> <li><a href="../Celluloid/RingBuffer.html">Celluloid::RingBuffer</a> <li><a href="../Celluloid/SignalConditionRequest.html">Celluloid::SignalConditionRequest</a> <li><a href="../Celluloid/Signals.html">Celluloid::Signals</a> <li><a href="../Celluloid/StackDump.html">Celluloid::StackDump</a> <li><a href="../Celluloid/StackDump/ActorState.html">Celluloid::StackDump::ActorState</a> <li><a href="../Celluloid/StackDump/DisplayBacktrace.html">Celluloid::StackDump::DisplayBacktrace</a> <li><a href="../Celluloid/StackDump/TaskState.html">Celluloid::StackDump::TaskState</a> <li><a href="../Celluloid/StackDump/ThreadState.html">Celluloid::StackDump::ThreadState</a> <li><a href="../Celluloid/SuccessResponse.html">Celluloid::SuccessResponse</a> <li><a href="../Celluloid/SupervisionGroup.html">Celluloid::SupervisionGroup</a> <li><a href="../Celluloid/SupervisionGroup/Member.html">Celluloid::SupervisionGroup::Member</a> <li><a href="../Celluloid/Supervisor.html">Celluloid::Supervisor</a> <li><a href="../Celluloid/SyncCall.html">Celluloid::SyncCall</a> <li><a href="../Celluloid/SyncProxy.html">Celluloid::SyncProxy</a> <li><a href="../Celluloid/SystemEvent.html">Celluloid::SystemEvent</a> <li><a href="../Celluloid/Task.html">Celluloid::Task</a> <li><a href="../Celluloid/Task/TerminatedError.html">Celluloid::Task::TerminatedError</a> <li><a href="../Celluloid/Task/TimeoutError.html">Celluloid::Task::TimeoutError</a> <li><a href="../Celluloid/TaskFiber.html">Celluloid::TaskFiber</a> <li><a href="../Celluloid/TaskSet.html">Celluloid::TaskSet</a> <li><a href="../Celluloid/TaskThread.html">Celluloid::TaskThread</a> <li><a href="../Celluloid/TerminationRequest.html">Celluloid::TerminationRequest</a> <li><a href="../Celluloid/Thread.html">Celluloid::Thread</a> <li><a href="../Celluloid/ThreadHandle.html">Celluloid::ThreadHandle</a> <li><a href="../Celluloid/TimeoutError.html">Celluloid::TimeoutError</a> <li><a href="../Celluloid/UUID.html">Celluloid::UUID</a> <li><a href="../Fiber.html">Fiber</a> <li><a href="../Thread.html">Thread</a> <li><a href="../org.html">org</a> <li><a href="../org/jruby.html">org::jruby</a> <li><a href="../org/jruby/ext.html">org::jruby::ext</a> <li><a href="../org/jruby/ext/fiber.html">org::jruby::ext::fiber</a> <li><a href="../org/jruby/ext/fiber/ThreadFiber.html">org::jruby::ext::fiber::ThreadFiber</a> </ul> </nav> </div> </nav> <div id="documentation"> <h1 class="class">class Celluloid::Task</h1> <div id="description" class="description"> <p>Tasks are interruptable/resumable execution contexts used to run methods</p> </div><!-- description --> <section id="5Buntitled-5D" class="documentation-section"> <!-- Attributes --> <section id="attribute-method-details" class="method-section section"> <h3 class="section-header">Attributes</h3> <div id="attribute-i-chain_id" class="method-detail"> <div class="method-heading attribute-method-heading"> <span class="method-name">chain_id</span><span class="attribute-access-type">[RW]</span> </div> <div class="method-description"> </div> </div> <div id="attribute-i-guard_warnings" class="method-detail"> <div class="method-heading attribute-method-heading"> <span class="method-name">guard_warnings</span><span class="attribute-access-type">[RW]</span> </div> <div class="method-description"> </div> </div> <div id="attribute-i-meta" class="method-detail"> <div class="method-heading attribute-method-heading"> <span class="method-name">meta</span><span class="attribute-access-type">[R]</span> </div> <div class="method-description"> </div> </div> <div id="attribute-i-status" class="method-detail"> <div class="method-heading attribute-method-heading"> <span class="method-name">status</span><span class="attribute-access-type">[R]</span> </div> <div class="method-description"> </div> </div> <div id="attribute-i-type" class="method-detail"> <div class="method-heading attribute-method-heading"> <span class="method-name">type</span><span class="attribute-access-type">[R]</span> </div> <div class="method-description"> </div> </div> </section><!-- attribute-method-details --> <!-- Methods --> <section id="public-class-5Buntitled-5D-method-details" class="method-section section"> <h3 class="section-header">Public Class Methods</h3> <div id="method-c-current" class="method-detail "> <div class="method-heading"> <span class="method-name">current</span><span class="method-args">()</span> <span class="method-click-advice">click to toggle source</span> </div> <div class="method-description"> <p>Obtain the current task</p> <div class="method-source-code" id="current-source"> <pre><span class="ruby-comment"># File lib/celluloid/tasks.rb, line 18</span> <span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">current</span> <span class="ruby-constant">Thread</span>.<span class="ruby-identifier">current</span>[<span class="ruby-value">:celluloid_task</span>] <span class="ruby-keyword">or</span> <span class="ruby-identifier">raise</span> <span class="ruby-constant">NotTaskError</span>, <span class="ruby-string">&quot;not within a task context&quot;</span> <span class="ruby-keyword">end</span></pre> </div><!-- current-source --> </div> </div><!-- current-method --> <div id="method-c-new" class="method-detail "> <div class="method-heading"> <span class="method-name">new</span><span class="method-args">(type, meta) { || ... }</span> <span class="method-click-advice">click to toggle source</span> </div> <div class="method-description"> <p>Create a new task</p> <div class="method-source-code" id="new-source"> <pre><span class="ruby-comment"># File lib/celluloid/tasks.rb, line 31</span> <span class="ruby-keyword">def</span> <span class="ruby-identifier">initialize</span>(<span class="ruby-identifier">type</span>, <span class="ruby-identifier">meta</span>) <span class="ruby-ivar">@type</span> = <span class="ruby-identifier">type</span> <span class="ruby-ivar">@meta</span> = <span class="ruby-identifier">meta</span> <span class="ruby-ivar">@status</span> = <span class="ruby-value">:new</span> <span class="ruby-ivar">@exclusive</span> = <span class="ruby-keyword">false</span> <span class="ruby-ivar">@dangerous_suspend</span> = <span class="ruby-ivar">@meta</span> <span class="ruby-operator">?</span> <span class="ruby-ivar">@meta</span>.<span class="ruby-identifier">delete</span>(<span class="ruby-value">:dangerous_suspend</span>) <span class="ruby-operator">:</span> <span class="ruby-keyword">false</span> <span class="ruby-ivar">@guard_warnings</span> = <span class="ruby-keyword">false</span> <span class="ruby-identifier">actor</span> = <span class="ruby-constant">Thread</span>.<span class="ruby-identifier">current</span>[<span class="ruby-value">:celluloid_actor</span>] <span class="ruby-ivar">@chain_id</span> = <span class="ruby-constant">CallChain</span>.<span class="ruby-identifier">current_id</span> <span class="ruby-identifier">raise</span> <span class="ruby-constant">NotActorError</span>, <span class="ruby-string">&quot;can&#39;t create tasks outside of actors&quot;</span> <span class="ruby-keyword">unless</span> <span class="ruby-identifier">actor</span> <span class="ruby-identifier">guard</span> <span class="ruby-string">&quot;can&#39;t create tasks inside of tasks&quot;</span> <span class="ruby-keyword">if</span> <span class="ruby-constant">Thread</span>.<span class="ruby-identifier">current</span>[<span class="ruby-value">:celluloid_task</span>] <span class="ruby-identifier">create</span> <span class="ruby-keyword">do</span> <span class="ruby-keyword">begin</span> <span class="ruby-ivar">@status</span> = <span class="ruby-value">:running</span> <span class="ruby-identifier">actor</span>.<span class="ruby-identifier">setup_thread</span> <span class="ruby-constant">Thread</span>.<span class="ruby-identifier">current</span>[<span class="ruby-value">:celluloid_task</span>] = <span class="ruby-keyword">self</span> <span class="ruby-constant">CallChain</span>.<span class="ruby-identifier">current_id</span> = <span class="ruby-ivar">@chain_id</span> <span class="ruby-identifier">actor</span>.<span class="ruby-identifier">tasks</span> <span class="ruby-operator">&lt;&lt;</span> <span class="ruby-keyword">self</span> <span class="ruby-keyword">yield</span> <span class="ruby-keyword">rescue</span> <span class="ruby-constant">Task</span><span class="ruby-operator">::</span><span class="ruby-constant">TerminatedError</span> <span class="ruby-comment"># Task was explicitly terminated</span> <span class="ruby-keyword">ensure</span> <span class="ruby-ivar">@status</span> = <span class="ruby-value">:dead</span> <span class="ruby-identifier">actor</span>.<span class="ruby-identifier">tasks</span>.<span class="ruby-identifier">delete</span> <span class="ruby-keyword">self</span> <span class="ruby-keyword">end</span> <span class="ruby-keyword">end</span> <span class="ruby-keyword">end</span></pre> </div><!-- new-source --> </div> </div><!-- new-method --> <div id="method-c-suspend" class="method-detail "> <div class="method-heading"> <span class="method-name">suspend</span><span class="method-args">(status)</span> <span class="method-click-advice">click to toggle source</span> </div> <div class="method-description"> <p>Suspend the running task, deferring to the scheduler</p> <div class="method-source-code" id="suspend-source"> <pre><span class="ruby-comment"># File lib/celluloid/tasks.rb, line 23</span> <span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">suspend</span>(<span class="ruby-identifier">status</span>) <span class="ruby-constant">Task</span>.<span class="ruby-identifier">current</span>.<span class="ruby-identifier">suspend</span>(<span class="ruby-identifier">status</span>) <span class="ruby-keyword">end</span></pre> </div><!-- suspend-source --> </div> </div><!-- suspend-method --> </section><!-- public-class-method-details --> <section id="public-instance-5Buntitled-5D-method-details" class="method-section section"> <h3 class="section-header">Public Instance Methods</h3> <div id="method-i-backtrace" class="method-detail "> <div class="method-heading"> <span class="method-name">backtrace</span><span class="method-args">()</span> <span class="method-click-advice">click to toggle source</span> </div> <div class="method-description"> <div class="method-source-code" id="backtrace-source"> <pre><span class="ruby-comment"># File lib/celluloid/tasks.rb, line 135</span> <span class="ruby-keyword">def</span> <span class="ruby-identifier">backtrace</span> <span class="ruby-keyword">end</span></pre> </div><!-- backtrace-source --> </div> </div><!-- backtrace-method --> <div id="method-i-create" class="method-detail "> <div class="method-heading"> <span class="method-name">create</span><span class="method-args">(&block)</span> <span class="method-click-advice">click to toggle source</span> </div> <div class="method-description"> <div class="method-source-code" id="create-source"> <pre><span class="ruby-comment"># File lib/celluloid/tasks.rb, line 65</span> <span class="ruby-keyword">def</span> <span class="ruby-identifier">create</span>(<span class="ruby-operator">&amp;</span><span class="ruby-identifier">block</span>) <span class="ruby-identifier">raise</span> <span class="ruby-node">&quot;Implement #{self.class}#create&quot;</span> <span class="ruby-keyword">end</span></pre> </div><!-- create-source --> </div> </div><!-- create-method --> <div id="method-i-exclusive" class="method-detail "> <div class="method-heading"> <span class="method-name">exclusive</span><span class="method-args">() { || ... }</span> <span class="method-click-advice">click to toggle source</span> </div> <div class="method-description"> <p>Execute a code block in exclusive mode.</p> <div class="method-source-code" id="exclusive-source"> <pre><span class="ruby-comment"># File lib/celluloid/tasks.rb, line 103</span> <span class="ruby-keyword">def</span> <span class="ruby-identifier">exclusive</span> <span class="ruby-keyword">if</span> <span class="ruby-ivar">@exclusive</span> <span class="ruby-keyword">yield</span> <span class="ruby-keyword">else</span> <span class="ruby-keyword">begin</span> <span class="ruby-ivar">@exclusive</span> = <span class="ruby-keyword">true</span> <span class="ruby-keyword">yield</span> <span class="ruby-keyword">ensure</span> <span class="ruby-ivar">@exclusive</span> = <span class="ruby-keyword">false</span> <span class="ruby-keyword">end</span> <span class="ruby-keyword">end</span> <span class="ruby-keyword">end</span></pre> </div><!-- exclusive-source --> </div> </div><!-- exclusive-method --> <div id="method-i-exclusive-3F" class="method-detail "> <div class="method-heading"> <span class="method-name">exclusive?</span><span class="method-args">()</span> <span class="method-click-advice">click to toggle source</span> </div> <div class="method-description"> <p>Is this task running in exclusive mode?</p> <div class="method-source-code" id="exclusive-3F-source"> <pre><span class="ruby-comment"># File lib/celluloid/tasks.rb, line 131</span> <span class="ruby-keyword">def</span> <span class="ruby-identifier">exclusive?</span> <span class="ruby-ivar">@exclusive</span> <span class="ruby-keyword">end</span></pre> </div><!-- exclusive-3F-source --> </div> </div><!-- exclusive-3F-method --> <div id="method-i-guard" class="method-detail "> <div class="method-heading"> <span class="method-name">guard</span><span class="method-args">(message)</span> <span class="method-click-advice">click to toggle source</span> </div> <div class="method-description"> <div class="method-source-code" id="guard-source"> <pre><span class="ruby-comment"># File lib/celluloid/tasks.rb, line 146</span> <span class="ruby-keyword">def</span> <span class="ruby-identifier">guard</span>(<span class="ruby-identifier">message</span>) <span class="ruby-keyword">if</span> <span class="ruby-ivar">@guard_warnings</span> <span class="ruby-constant">Logger</span>.<span class="ruby-identifier">warn</span> <span class="ruby-identifier">message</span> <span class="ruby-keyword">if</span> <span class="ruby-identifier">$CELLULOID_DEBUG</span> <span class="ruby-keyword">else</span> <span class="ruby-identifier">raise</span> <span class="ruby-identifier">message</span> <span class="ruby-keyword">if</span> <span class="ruby-identifier">$CELLULOID_DEBUG</span> <span class="ruby-keyword">end</span> <span class="ruby-keyword">end</span></pre> </div><!-- guard-source --> </div> </div><!-- guard-method --> <div id="method-i-inspect" class="method-detail "> <div class="method-heading"> <span class="method-name">inspect</span><span class="method-args">()</span> <span class="method-click-advice">click to toggle source</span> </div> <div class="method-description"> <p>Nicer string inspect for tasks</p> <div class="method-source-code" id="inspect-source"> <pre><span class="ruby-comment"># File lib/celluloid/tasks.rb, line 142</span> <span class="ruby-keyword">def</span> <span class="ruby-identifier">inspect</span> <span class="ruby-node">&quot;#&lt;#{self.class}:0x#{object_id.to_s(16)} @type=#{@type.inspect}, @meta=#{@meta.inspect}, @status=#{@status.inspect}&gt;&quot;</span> <span class="ruby-keyword">end</span></pre> </div><!-- inspect-source --> </div> </div><!-- inspect-method --> <div id="method-i-resume" class="method-detail "> <div class="method-heading"> <span class="method-name">resume</span><span class="method-args">(value = nil)</span> <span class="method-click-advice">click to toggle source</span> </div> <div class="method-description"> <p>Resume a suspended task, giving it a value to return if needed</p> <div class="method-source-code" id="resume-source"> <pre><span class="ruby-comment"># File lib/celluloid/tasks.rb, line 96</span> <span class="ruby-keyword">def</span> <span class="ruby-identifier">resume</span>(<span class="ruby-identifier">value</span> = <span class="ruby-keyword">nil</span>) <span class="ruby-identifier">guard</span> <span class="ruby-string">&quot;Cannot resume a task from inside of a task&quot;</span> <span class="ruby-keyword">if</span> <span class="ruby-constant">Thread</span>.<span class="ruby-identifier">current</span>[<span class="ruby-value">:celluloid_task</span>] <span class="ruby-identifier">deliver</span>(<span class="ruby-identifier">value</span>) <span class="ruby-keyword">nil</span> <span class="ruby-keyword">end</span></pre> </div><!-- resume-source --> </div> </div><!-- resume-method --> <div id="method-i-running-3F" class="method-detail "> <div class="method-heading"> <span class="method-name">running?</span><span class="method-args">()</span> <span class="method-click-advice">click to toggle source</span> </div> <div class="method-description"> <p>Is the current task still running?</p> <div class="method-source-code" id="running-3F-source"> <pre><span class="ruby-comment"># File lib/celluloid/tasks.rb, line 139</span> <span class="ruby-keyword">def</span> <span class="ruby-identifier">running?</span>; <span class="ruby-ivar">@status</span> <span class="ruby-operator">!=</span> <span class="ruby-value">:dead</span>; <span class="ruby-keyword">end</span></pre> </div><!-- running-3F-source --> </div> </div><!-- running-3F-method --> <div id="method-i-suspend" class="method-detail "> <div class="method-heading"> <span class="method-name">suspend</span><span class="method-args">(status)</span> <span class="method-click-advice">click to toggle source</span> </div> <div class="method-description"> <p>Suspend the current task, changing the status to the given argument</p> <div class="method-source-code" id="suspend-source"> <pre><span class="ruby-comment"># File lib/celluloid/tasks.rb, line 70</span> <span class="ruby-keyword">def</span> <span class="ruby-identifier">suspend</span>(<span class="ruby-identifier">status</span>) <span class="ruby-identifier">raise</span> <span class="ruby-string">&quot;Cannot suspend while in exclusive mode&quot;</span> <span class="ruby-keyword">if</span> <span class="ruby-identifier">exclusive?</span> <span class="ruby-identifier">raise</span> <span class="ruby-string">&quot;Cannot suspend a task from outside of itself&quot;</span> <span class="ruby-keyword">unless</span> <span class="ruby-constant">Task</span>.<span class="ruby-identifier">current</span> <span class="ruby-operator">==</span> <span class="ruby-keyword">self</span> <span class="ruby-ivar">@status</span> = <span class="ruby-identifier">status</span> <span class="ruby-keyword">if</span> <span class="ruby-identifier">$CELLULOID_DEBUG</span> <span class="ruby-operator">&amp;&amp;</span> <span class="ruby-ivar">@dangerous_suspend</span> <span class="ruby-identifier">warning</span> = <span class="ruby-string">&quot;Dangerously suspending task: &quot;</span> <span class="ruby-identifier">warning</span> <span class="ruby-operator">&lt;&lt;</span> [ <span class="ruby-node">&quot;type=#{@type.inspect}&quot;</span>, <span class="ruby-node">&quot;meta=#{@meta.inspect}&quot;</span>, <span class="ruby-node">&quot;status=#{@status.inspect}&quot;</span> ].<span class="ruby-identifier">join</span>(<span class="ruby-string">&quot;, &quot;</span>) <span class="ruby-constant">Logger</span>.<span class="ruby-identifier">warn</span> [<span class="ruby-identifier">warning</span>, <span class="ruby-operator">*</span><span class="ruby-identifier">caller</span>[<span class="ruby-value">2</span><span class="ruby-operator">..</span><span class="ruby-value">8</span>]].<span class="ruby-identifier">join</span>(<span class="ruby-string">&quot;\n\t&quot;</span>) <span class="ruby-keyword">end</span> <span class="ruby-identifier">value</span> = <span class="ruby-identifier">signal</span> <span class="ruby-ivar">@status</span> = <span class="ruby-value">:running</span> <span class="ruby-identifier">raise</span> <span class="ruby-identifier">value</span> <span class="ruby-keyword">if</span> <span class="ruby-identifier">value</span>.<span class="ruby-identifier">is_a?</span>(<span class="ruby-constant">Celluloid</span><span class="ruby-operator">::</span><span class="ruby-constant">ResumableError</span>) <span class="ruby-identifier">value</span> <span class="ruby-keyword">end</span></pre> </div><!-- suspend-source --> </div> </div><!-- suspend-method --> <div id="method-i-terminate" class="method-detail "> <div class="method-heading"> <span class="method-name">terminate</span><span class="method-args">()</span> <span class="method-click-advice">click to toggle source</span> </div> <div class="method-description"> <p>Terminate this task</p> <div class="method-source-code" id="terminate-source"> <pre><span class="ruby-comment"># File lib/celluloid/tasks.rb, line 117</span> <span class="ruby-keyword">def</span> <span class="ruby-identifier">terminate</span> <span class="ruby-identifier">raise</span> <span class="ruby-string">&quot;Cannot terminate an exclusive task&quot;</span> <span class="ruby-keyword">if</span> <span class="ruby-identifier">exclusive?</span> <span class="ruby-keyword">if</span> <span class="ruby-identifier">running?</span> <span class="ruby-constant">Celluloid</span>.<span class="ruby-identifier">logger</span>.<span class="ruby-identifier">warn</span> <span class="ruby-node">&quot;Terminating task: type=#{@type.inspect}, meta=#{@meta.inspect}, status=#{@status.inspect}&quot;</span> <span class="ruby-identifier">exception</span> = <span class="ruby-constant">Task</span><span class="ruby-operator">::</span><span class="ruby-constant">TerminatedError</span>.<span class="ruby-identifier">new</span>(<span class="ruby-string">&quot;task was terminated&quot;</span>) <span class="ruby-identifier">exception</span>.<span class="ruby-identifier">set_backtrace</span>(<span class="ruby-identifier">caller</span>) <span class="ruby-identifier">resume</span> <span class="ruby-identifier">exception</span> <span class="ruby-keyword">else</span> <span class="ruby-identifier">raise</span> <span class="ruby-constant">DeadTaskError</span>, <span class="ruby-string">&quot;task is already dead&quot;</span> <span class="ruby-keyword">end</span> <span class="ruby-keyword">end</span></pre> </div><!-- terminate-source --> </div> </div><!-- terminate-method --> </section><!-- public-instance-method-details --> </section><!-- 5Buntitled-5D --> </div><!-- documentation --> <footer id="validator-badges"> <p><a href="http://validator.w3.org/check/referer">[Validate]</a> <p>Generated by <a href="https://github.com/rdoc/rdoc">RDoc</a> 4.0.0. <p>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish Rdoc Generator</a> 3. </footer>
214,368
Github
[ 4, 2805, 85, 4295, 908, 313, 12563, 407, 2805, 3129, 1374, 254, 2262, 13415, 3262, 74, 43209, 7489, 5990, 411, 13776, 84, 187, 187, 3709, 64, 39874, 447, 3914, 92, 36, 4350, 1277, 2354, 64, 47128, 64, 13266, 94, 187, 50274, 8626, 50, 5990, 31305, 947, 64, 47128, 64, 13266, 94, 187, 50274, 8626, 31070, 22, 13745, 64, 47128, 64, 13266, 52, 94, 187, 50274, 8626, 31070, 22, 45089, 64, 47128, 64, 13266, 52, 94, 187, 50274, 8626, 31070, 22, 22848, 64, 47128, 64, 13266, 52, 94, 187, 50274, 8626, 31070, 22, 17393, 84, 64, 47128, 64, 13266, 52, 94, 187, 50274, 8626, 31070, 22, 9807, 5990, 64, 47128, 64, 13266, 52, 94, 187, 50274, 8626, 36, 29225, 64, 36402, 11164, 64, 13266, 94, 7224, 36, 29225, 64, 50219, 64, 36402, 11164, 64, 13266, 94, 7224, 36, 29225, 64, 50219, 64, 30095, 64, 13266, 94, 187, 50274, 10, 187, 187, 44243, 22, 64, 10690, 2088, 64, 9571, 9, 9571, 64, 22225, 6117, 2613, 64, 7265, 64, 13686, 15, 4113, 10, 187, 44243, 22, 64, 10690, 2088, 64, 39600, 9, 9571, 64, 52, 50186, 2022, 64, 13686, 15, 73, 10, 187, 187, 1911, 64, 9993, 13508, 9, 3433, 312, 19, 69, 64, 72, 19, 80, 187, 50276, 7265, 64, 13686, 15, 14161, 187, 50276, 3433, 312, 19, 69, 64, 1374, 254, 15, 14161, 187, 50276, 3433, 312, 19, 69, 64, 1374, 254, 15, 73, 187, 50276, 3433, 312, 19, 69, 64, 72, 19, 80, 15, 14161, 187, 50276, 6553, 64, 2955, 5726, 15, 14161, 187, 50276, 8626, 9571, 64, 22225, 6117, 94, 187, 50276, 8626, 9571, 64, 52, 50186, 94, 187, 10, 187, 187, 1178, 64, 7831, 64, 19402, 9, 3433, 312, 19, 69, 64, 72, 19, 80, 41630, 6366, 9785, 16341, 16143, 64, 9536, 48041, 19, 69, 64, 72, 19, 80, 8626, 4237, 38, 64, 15743, 27225, 2311, 187, 187, 338, 9, 31070, 22, 64, 24413, 13190, 64, 1042, 32568, 8112, 3489, 64, 16699, 10, 187, 50274, 1178, 64, 9134, 9, 31613, 48041, 19, 69, 64, 72, 19, 80, 41630, 42410, 8610, 8022, 1843, 64, 19499, 428, 71, 49, 1864, 10, 187, 50274, 8559, 9, 22574, 346, 10203, 839, 1899, 801, 16183, 290, 2127, 323, 48041, 19, 69, 984, 25879, 22, 369, 4270, 342, 428, 35878, 14, 1661, 47575, 2807, 187, 50274, 4, 5838, 27, 970, 187, 50274, 4, 50271, 1178, 9, 36, 29225, 64, 24413, 13190, 64, 1042, 32568, 8112, 3489, 64, 16699, 8160, 10, 187, 50274, 4, 50271, 18566, 417, 1646, 281, 789, 27, 831, 15693, 690, 13747, 342, 428, 71, 8022, 38, 534, 310, 417, 2217, 323, 25879, 1051, 187, 7287, 1082, 5429, 187, 7831, 64, 4492, 64, 77, 11569, 9, 3433, 312, 19, 69, 64, 72, 19, 80, 5161, 47037, 64, 68, 1033, 10788, 3510, 64, 3433, 312, 19, 69, 187, 50274, 8626, 50, 5990, 31305, 947, 64, 44169, 11164, 94, 187, 50274, 8626, 31070, 22, 13745, 64, 44169, 1277, 9785, 94, 187, 50274, 8626, 31070, 22, 45089, 64, 44169, 1277, 9785, 94, 187, 50274, 8626, 31070, 22, 22848, 64, 44169, 1277, 9785, 94, 187, 50274, 8626, 31070, 22, 17393, 84, 64, 44169, 1277, 9785, 94, 187, 50274, 8626, 31070, 22, 9807, 5990, 64, 44169, 1277, 9785, 94, 187, 50274, 8626, 28652, 5990, 64, 3129, 64, 44169, 11164, 94, 7224, 28652, 5990, 64, 3129, 86, 64, 44169, 11164, 94, 187, 10, 535 ]
# qt components used (also by qglviewer): Core Gui Xml OpenGL Widgets include_directories(${CSPARSE_INCLUDE_DIR} ${QGLVIEWER_INCLUDE_DIR} ${Qt5Core_INCLUDE_DIRS} ${Qt5Gui_INCLUDE_DIRS} ${Qt5Xml_INCLUDE_DIRS} ${Qt5Widgets_INCLUDE_DIRS} ${Qt5OpenGL_INCLUDE_DIRS} ${CMAKE_BINARY_DIR} ${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_CURRENT_SOURCE_DIR} ) QT5_WRAP_UI(UI_HEADERS base_main_window.ui) QT5_WRAP_CPP(UI_SOURCES main_window.h) add_executable(slam2d_g2o main_window.cpp slam2d_viewer.cpp slam2d_viewer.h slam2d_g2o.cpp draw_helpers.cpp ${UI_HEADERS} ${UI_SOURCES} ) set_target_properties(slam2d_g2o PROPERTIES OUTPUT_NAME slam2d_g2o${EXE_POSTFIX}) if(Qt5_POSITION_INDEPENDENT_CODE) set_property(TARGET slam2d_g2o PROPERTY COMPILE_FLAGS -fPIC) message(STATUS "Generating position indpendent code for slam2d because Qt5 was built with -reduce-relocations") # Note: using # set(CMAKE_POSITION_INDEPENDENT_CODE ON) # does not seem to work: This generates some libraries with -fPIE which is not enough for Qt... endif() target_link_libraries(slam2d_g2o core solver_csparse types_slam2d ${QGLVIEWER_LIBRARY} ${Qt5Core_LIBRARIES} ${Qt5Gui_LIBRARIES} ${Qt5Xml_LIBRARIES} ${Qt5Widgets_LIBRARIES} ${Qt5OpenGL_LIBRARIES} ${OPENGL_gl_LIBRARY} ${OPENGL_glu_LIBRARY} )
214,369
Github
[ 605, 16536, 283, 12138, 890, 19217, 15, 14161, 428, 10200, 45211, 6096, 407, 14939, 84, 16810, 16536, 605, 187, 605, 187, 605, 50257, 510, 21708, 11804, 3631, 6731, 48429, 187, 605, 187, 605, 831, 1873, 310, 5939, 762, 253, 2499, 273, 11545, 7489, 12269, 187, 605, 4637, 15, 2594, 21826, 15, 13257, 53, 323, 4278, 15, 187, 605, 187, 605, 16536, 43067, 16536, 605, 187, 605, 187, 605, 831, 1873, 13067, 253, 1846, 5673, 908, 407, 253, 2710, 10636, 3948, 187, 605, 749, 19770, 15, 187, 605, 187, 605, 16536, 43067, 16536, 605, 187, 187, 4, 3709, 346, 38381, 16, 35449, 19217, 16, 35449, 19217, 15, 73, 3, 187, 4, 3709, 346, 38381, 16, 2350, 53, 16, 1267, 1843, 633, 6230, 15, 73, 3, 187, 4, 3709, 346, 38381, 16, 2350, 53, 16, 25074, 2776, 15, 73, 3, 187, 4, 3709, 346, 38381, 16, 2350, 53, 16, 9710, 2531, 15, 73, 3, 187, 4, 3709, 346, 38381, 16, 35449, 19217, 16, 25114, 3902, 15, 73, 3, 187, 4, 3709, 346, 38381, 16, 35449, 19217, 16, 43, 1433, 33329, 15, 73, 3, 187, 4, 3709, 346, 38381, 16, 35449, 19217, 16, 4708, 37, 90, 392, 21911, 8224, 15, 73, 3, 187, 4, 3709, 346, 38381, 16, 3027, 16, 31171, 15, 73, 3, 187, 4, 3709, 346, 38381, 16, 3027, 16, 3233, 9683, 15, 73, 3, 187, 4, 3709, 346, 38381, 16, 3027, 16, 48300, 15668, 15, 73, 3, 187, 4, 3709, 346, 38381, 16, 3027, 16, 46, 606, 2146, 15, 73, 3, 187, 4, 3709, 346, 38381, 16, 3027, 16, 13570, 15, 73, 3, 187, 4, 3709, 346, 38381, 16, 3027, 16, 36853, 15, 73, 3, 187, 4, 3709, 346, 38381, 16, 3027, 16, 3902, 16722, 15, 73, 3, 187, 4, 3709, 346, 38381, 16, 4241, 16, 46589, 15, 73, 3, 187, 4, 3709, 346, 38381, 16, 4241, 16, 4241, 4505, 15, 73, 3, 187, 4, 3709, 346, 38381, 16, 22032, 16, 14154, 15, 73, 3, 187, 4, 3709, 346, 38381, 16, 22032, 16, 31535, 20607, 15, 73, 3, 187, 4, 3709, 346, 38381, 16, 22032, 16, 4756, 6288, 1981, 15, 73, 3, 187, 4, 3709, 346, 38381, 16, 22032, 16, 15310, 15, 73, 3, 187, 4, 3709, 346, 38381, 16, 22032, 16, 31135, 911, 35854, 15, 73, 3, 187, 4, 3709, 346, 38381, 16, 22032, 16, 12168, 36169, 15, 73, 3, 187, 4, 3709, 346, 38381, 16, 22032, 16, 2040, 64, 33203, 15, 73, 3, 187, 4, 3709, 346, 38381, 16, 12168, 16, 12168, 32192, 15, 73, 3, 187, 4, 3709, 654, 68, 679, 31, 187, 4, 3709, 654, 68, 2703, 31, 187, 5302, 12953, 26198, 11618, 28, 187, 187, 4, 3182, 40374, 64, 10560, 346, 75, 262, 3, 187, 187, 11708, 6905, 1864, 9, 12753, 10828, 16721, 13, 346, 8447, 273, 11061, 273, 4156, 41665, 31260, 3287, 187, 11708, 6905, 1864, 9, 12753, 9030, 706, 932, 50276, 13, 346, 8447, 273, 4156, 41665, 31260, 3287, 187, 187, 35449, 19217, 475, 9672, 35449, 19217, 1450, 7722, 43, 1433, 5229, 263, 2769, 187, 50274, 8400, 1450, 22524, 64, 4773, 29, 13570, 31, 353, 13, 6268, 1450, 2703, 475, 4756, 10287, 13, 187, 50274, 8400, 1450, 18867, 64, 4773, 29, 7722, 43, 1433, 21911, 8224, 31, 6700, 46, 737, 13, 187, 50274, 8400, 1450, 18867, 64, 4773, 29, 17577, 37, 90, 392, 1450, 29046, 35964, 31, 2213, 14930, 13, 187, 50274, 8400, 1450, 22524, 64, 4773, 29, 12168, 32192, 31, 18426, 10, 426, 28471, 28, 187, 187, 35449, 19217, 475, 9672, 35449, 19217, 1450, 48, 3373, 7722, 43, 1433, 1785, 26380, 5229, 263, 2769, 187, 50276, 8400, 1450, 2703, 475, 4756, 10287, 13, 6268, 1450, 18867, 64, 4773, 29, 7722, 43, 1433, 21911, 8224, 31, 6700, 46, 737, 13, 187, 50276, 8400, 1450, 18867, 64, 4773, 29, 17577, 37, 90, 392, 1450, 29046, 35964, 31, 2213, 14930, 13, 187, 50276, 8400, 1450, 22524, 64, 4773, 29, 12168, 32192, 31, 18426, 10, 426, 28471, 28, 187, 187, 35449, 19217, 475, 9672, 35449, 19217, 1450, 6504, 81, 5229, 263, 2769, 8400, 1450, 22524, 64, 4773, 29, 13570, 31, 353, 13, 187, 50254, 50254, 8400, 1450, 2703, 475, 4756, 10287, 10, 426, 8629, 4773, 28, 187, 187, 4353, 500, 1433, 33329, 1450, 29016, 1082, 12166, 187, 187, 4353, 12138, 890, 19217, 1450, 10828, 9, 8400, 1450, 22524, 64, 4773, 29, 13570, 31, 353, 10, 551, 187, 50276, 5065, 4837, 45, 1370, 1031, 50269, 30, 3221, 28, 187, 50276, 31073, 5065, 10108, 47703, 50275, 30, 3221, 28, 187, 50276, 29046, 13422, 272, 47703, 426, 3221, 28, 535, 50276, 605, 9812, 6333, 21999, 310, 11410, 407, 4284, 275, 13844, 21168, 13, 285, 13603, 187, 50276, 605, 407, 4284, 275, 3727, 21168, 15, 187, 4, 17331, 427, 18828, 187, 50276, 10754, 1419, 4120, 2651, 426, 2032, 28, 187, 4, 7271, 187, 50276, 10754, 1419, 4120, 2651, 426, 3221, 28, 187, 4, 7287, 535, 50276, 8271, 9, 46, 3857, 346, 13570, 310, 3635, 865, 558, 187, 50276, 4120, 2651, 15, 11340, 64, 2135, 9, 8400, 1450, 15106, 9, 46, 4027, 187, 94, 187, 187, 35449, 19217, 1450, 35449, 19217, 9, 8400, 1450, 22524, 64, 4773, 29, 13570, 31, 353, 10, 187, 50274, 27, 23707, 9, 46, 1168, 788, 3233, 9683, 35632, 418, 26537, 11594, 21164, 263, 9, 8629, 4773, 10, 551, 187, 50276, 10828, 9, 8400, 1450, 15106, 9, 46, 4027, 187, 94, 187, 187, 35449, 19217, 1450, 35449, 19217, 9, 3233, 9683, 23707, 13, 6268, 1450, 22524, 64, 4773, 29, 13570, 31, 353, 10, 187, 50274, 27, 23707, 9, 8400, 1450, 15106, 9, 6721, 9679, 418, 26537, 11594, 21164, 263, 9, 8629, 4773, 10, 551, 187, 50276, 10828, 9, 8400, 1450, 15106, 9, 46, 4027, 187, 94, 187, 187, 35449, 19217, 1450, 95, 35449, 19217, 1082, 551, 187, 50276, 8250, 3074, 18590, 46, 33650, 1874, 187, 94, 187, 187, 12361, 551, 187, 10638, 393, 18399, 7518, 468, 966, 534, 4648, 247, 1318, 16454, 281, 8356, 8812, 265, 253, 187, 10638, 3541, 2972, 672, 253, 11841, 23807, 310, 11069, 15, 187, 2437, 46231, 21911, 11144, 2457, 1163, 1345, 9368, 2135, 55, 41, 551, 187, 50276, 31073, 21911, 11144, 9, 3474, 11841, 23807, 475, 31073, 10, 187, 50274, 27, 9368, 2135, 55, 41, 9, 3474, 64, 4008, 29, 18590, 23807, 46802, 31073, 1228, 12166, 187, 187, 4387, 27, 187, 50276, 10638, 393, 18399, 16548, 253, 2953, 253, 11841, 23807, 943, 320, 3542, 715, 15, 50276, 510, 187, 50276, 10638, 46231, 21911, 11144, 1789, 17744, 265, 326, 15, 187, 50276, 4659, 1018, 475, 9395, 9, 3474, 11841, 23807, 475, 31073, 13, 1030, 5128, 9683, 7, 24246, 10, 551, 187, 50274, 2548, 475, 8677, 31742, 426, 46231, 1168, 788, 2548, 18331, 21415, 2548, 1874, 187, 50274, 3281, 64, 85, 46231, 5496, 426, 313, 3281, 64, 85, 10, 10989, 15, 788, 2548, 33715, 5496, 9, 8677, 31742, 558, 187, 50274, 4353, 475, 24436, 21911, 426, 12590, 4402, 747, 9, 187, 50272, 15654, 5683, 1992, 30365, 9, 23269, 9, 31073, 21911, 11144, 582, 187, 50254, 24246, 15, 788, 14868, 13004, 30365, 9, 31073, 1228, 187, 50272, 12, 46231, 5496, 558, 187, 50274, 1826, 9, 24436, 21911, 10, 46231, 21911, 11144, 9, 31073, 558, 187, 50274, 2309, 4228, 64, 4008, 29, 3615, 46802, 24436, 21911, 10, 559, 13322, 9, 31073, 21911, 11144, 558, 187, 50276, 94, 535, 50276, 4353, 16737, 1082, 12970, 551, 187, 50274, 605, 844, 18564, 342, 5572, 747, 285, 342, 690, 4465, 3541, 14203, 745, 253, 187, 50274, 605, 990, 13, 594, 1053, 626, 816, 11352, 436, 15, 50276, 42, 1353, 417, 2119, 604, 436, 310, 2686, 187, 50274, 605, 2424, 15, 187, 50274, 2520, 1168, 95, 31073, 21911, 11144, 1874, 187, 50274, 1450, 4402, 11352, 9, 2520, 558, 187, 50276, 94, 187, 4718, 187, 94, 50276, 605, 17679, 12953, 187, 187, 3615, 475, 35449, 19217, 1450, 788, 21911, 2214, 31073, 9, 3474, 11841, 23807, 475, 31073, 10, 551, 187, 50276, 2309, 46231, 21911, 11144, 1450, 9395, 9, 31073, 13, 755, 3233, 9683, 6020, 187, 94, 187, 187, 4353, 12138, 890, 19217, 1450, 1911, 4241, 4505, 9, 8400, 1450, 22524, 64, 4773, 29, 6082, 1450, 4241, 4505, 31, 473, 10, 551, 187, 50276, 38381, 64, 328, 21943, 494, 1587, 35449, 19217, 35851, 2506, 626, 3359, 823, 4241, 4505, 23715, 187, 94, 187, 187, 4353, 187, 35449, 19217, 1450, 1911, 4241, 4505, 9, 6082, 1450, 47646, 920, 32849, 29, 6082, 1450, 4241, 4505, 31, 473, 10, 551, 187, 50276, 38381, 64, 328, 21943, 494, 1587, 35449, 19217, 35851, 2506, 626, 3359, 823, 4241, 4505, 23715, 187, 94, 187, 187, 4353, 12138, 890, 19217, 1450, 1911, 46589, 9, 6082, 1450, 47646, 920, 32849, 29, 6082, 1450, 46589, 31, 329, 10, 551, 187, 50276, 38381, 64, 328, 21943, 494, 1587, 35449, 19217, 35851, 2506, 626, 3359, 823, 46589, 23715, 187, 94, 187, 187, 10975, 12138, 890, 19217, 1450, 12163, 13570, 9, 13570, 475, 46, 10, 551, 187, 50276, 1542, 313, 15149, 309, 426, 4559, 2651, 15, 2043, 5715, 444, 426, 4559, 2651, 15, 423, 1874, 309, 3613, 444, 28, 12996, 42, 10, 551, 187, 50274, 13570, 475, 16641, 426, 309, 1168, 788, 1874, 187, 50274, 338, 313, 16641, 2295, 353, 10, 551, 187, 50272, 42, 1168, 16690, 1874, 187, 50272, 4120, 2651, 15, 254, 511, 9, 42, 558, 187, 50272, 8250, 18590, 46, 33650, 4509, 13570, 9, 46, 558, 187, 50272, 2309, 2032, 28, 187, 50274, 94, 187, 50276, 94, 187, 50276, 2309, 3221, 28, 187, 94, 187, 187, 11594, 475, 35449, 19217, 1450, 9867, 11594, 37195, 9, 3474, 1018, 475, 31766, 2402, 10, 551, 187, 50276, 1542, 313, 10790, 891, 426, 470, 13, 299, 426, 4559, 2651, 15, 3281, 1874, 891, 3613, 299, 28, 12996, 74, 10, 551, 187, 50274, 11594, 475, 39, 426, 4559, 2651, 60, 74, 33094, 788, 11594, 9, 31766, 2402, 558, 187, 50274, 338, 313, 39, 3857, 2195, 39, 1168, 261, 36914, 6649, 187, 50272, 2309, 401, 28, 187, 50276, 94, 187, 50276, 2309, 28471, 28, 187, 94, 187, 187, 18590, 23807, 475, 35449, 19217, 1450, 9867, 18590, 23807, 37195, 9, 3474, 1018, 475, 2402, 13, 7301, 32664, 19996, 10, 551, 187, 50276, 1542, 313, 10790, 891, 426, 470, 13, 299, 426, 4559, 2651, 15, 3281, 1874, 891, 3613, 299, 28, 12996, 74, 10, 551, 187, 50274, 18590, 23807, 475, 31073, 426, 4559, 2651, 60, 74, 33094, 788, 18590, 23807, 9, 2402, 13, 33651, 19996, 558, 187, 50274, 338, 313, 31073, 3857, 2195, 31073, 1168, 261, 36914, 6649, 187, 50272, 2309, 46231, 28, 187, 50276, 94, 187, 50276, 2309, 28471, 28, 187, 94, 187, 187, 8531, 1540, 64, 85, 12138, 890, 19217, 5443, 1450, 21605, 27220, 9, 2776, 7676, 9424, 10, 551, 187, 50276, 18590, 12236, 6648, 31742, 1450, 17828, 309, 426, 11841, 12236, 6648, 15, 8606, 9, 2402, 558, 187, 50276, 8531, 1540, 64, 85, 8937, 2838, 28, 535, 50276, 605, 38506, 5288, 27, 831, 310, 19456, 13, 359, 10095, 626, 990, 598, 342, 247, 10603, 5204, 470, 275, 253, 187, 50276, 605, 11841, 12236, 6648, 15, 187, 50276, 338, 313, 42, 2295, 11841, 12236, 6648, 15, 423, 6649, 187, 50274, 20598, 2838, 426, 470, 28, 187, 50276, 7271, 551, 187, 50274, 18590, 12236, 51, 28717, 6648, 15, 254, 511, 9, 42, 1168, 9815, 558, 187, 50274, 20598, 2838, 426, 309, 1168, 9815, 28, 187, 50274, 18590, 12236, 6648, 15, 254, 511, 9, 42, 558, 187, 50276, 94, 535, 50276, 2309, 8937, 2838, 28, 187, 94, 187, 187, 8400, 1450, 2703, 12138, 890, 19217, 1450, 788, 46, 33195, 2402, 9, 3474, 11841, 3902, 475, 31073, 10, 551, 187, 50276, 8271, 9, 31073, 1168, 7110, 2402, 1082, 3857, 346, 18590, 1364, 452, 1416, 23715, 535, 50276, 31135, 911, 35854, 12623, 9, 4348, 558, 187, 50276, 25074, 2776, 29, 8196, 31, 13525, 2402, 28, 535, 50276, 3474, 5128, 9683, 708, 6721, 426, 187, 50274, 31073, 1168, 788, 15852, 18331, 788, 3233, 9683, 5023, 261, 9671, 1082, 187, 50272, 32, 755, 3233, 9683, 1082, 187, 50272, 27, 46231, 1168, 788, 15852, 18331, 788, 3233, 9683, 1874, 535, 50276, 46, 606, 2146, 1450, 32426, 3378, 27111, 9, 16135, 2402, 13, 46231, 1168, 32426, 5715, 23707, 558, 187, 50276, 2309, 13525, 2402, 15, 1344, 1874, 187, 94, 187, 187, 4353, 12138, 890, 19217, 1450, 1911, 18590, 27220, 9, 3474, 11841, 3902, 475, 31073, 13, 2991, 475, 23054, 10, 551, 187, 50276, 31135, 911, 35854, 12623, 9, 4348, 558, 187, 50276, 1911, 18590, 27220, 9, 788, 46, 33195, 2402, 9, 31073, 582, 313, 8531, 1540, 64, 85, 10, 5733, 83, 558, 187, 94, 187, 187, 4353, 12138, 890, 19217, 1450, 1911, 18590, 27220, 9, 2776, 7676, 9424, 13, 4770, 1540, 64, 85, 5733, 83, 10, 551, 187, 50276, 31135, 911, 35854, 12623, 9, 4348, 558, 535, 50276, 8271, 20273, 2402, 15, 11004, 1082, 3857, 346, 16801, 11841, 27220, 9484, 1416, 48708, 535, 50276, 18828, 9, 5470, 5943, 1082, 5291, 346, 43, 1433, 27, 12968, 393, 21288, 5291, 9424, 50276, 14193, 346, 4479, 281, 15640, 5291, 5733, 83, 5291, 346, 9955, 79, 3664, 558, 187, 50276, 8531, 1540, 64, 85, 708, 18191, 2838, 426, 14939, 5443, 15, 788, 18590, 12236, 6648, 43144, 2402, 2194, 187, 50276, 8271, 4464, 2, 18191, 2838, 2785, 2195, 23054, 10, 3857, 346, 18590, 27220, 2168, 4232, 48708, 187, 50276, 18191, 2838, 426, 5733, 83, 28, 535, 50276, 605, 1310, 359, 403, 970, 253, 8107, 10603, 13, 823, 352, 1512, 15, 187, 50276, 338, 6522, 5607, 5443, 15, 788, 18590, 12236, 51, 28717, 6648, 5023, 11004, 6649, 551, 187, 50274, 8400, 1450, 2703, 708, 55, 426, 14939, 5443, 15, 788, 18590, 12236, 51, 28717, 6648, 43144, 18191, 2838, 2194, 187, 50274, 8271, 4464, 2, 55, 15, 11004, 1082, 2785, 2195, 2402, 15, 11004, 6649, 3857, 187, 50267, 3, 18590, 27220, 2168, 4232, 48708, 187, 50274, 55, 426, 9424, 28, 187, 50276, 94, 187, 94, 187, 187, 4353, 12138, 890, 19217, 1450, 8250, 3074, 18590, 46, 33650, 1082, 551, 187, 50276, 31135, 911, 35854, 12623, 9, 4348, 558, 535, 50276, 5607, 5443, 15, 788, 18590, 12236, 6648, 5023, 8250, 1874, 187, 50276, 5607, 5443, 15, 788, 18590, 12236, 51, 28717, 6648, 5023, 8250, 1874, 187, 94, 187, 187, 4353, 12138, 890, 19217, 1450, 8250, 18590, 46, 33650, 4509, 13570, 9, 13570, 475, 46, 10, 551, 187, 50276, 31135, 911, 35854, 12623, 9, 4348, 558, 535, 50276, 1542, 313, 11594, 708, 6766, 1163, 475, 46, 10, 187, 50274, 5607, 5443, 15, 21605, 27220, 9, 788, 46, 33195, 2402, 6395, 6766, 4027, 187, 50276, 1542, 313, 18590, 23807, 708, 23802, 1163, 353, 1168, 28626, 932, 6649, 187, 50274, 5607, 5443, 15, 21605, 27220, 9, 788, 46, 33195, 2402, 6395, 23802, 4027, 187, 94, 187, 187, 8531, 1540, 64, 85, 12138, 890, 19217, 1450, 11183, 18590, 27220, 9, 3474, 11841, 3902, 475, 31073, 13, 187, 50254, 50256, 4353, 475, 23054, 10, 551, 187, 50276, 31135, 911, 35854, 12623, 9, 4348, 558, 187, 50276, 2309, 5731, 18590, 27220, 9, 788, 46, 33195, 2402, 9, 31073, 582, 313, 8531, 1540, 64, 85, 10, 5733, 83, 558, 187, 94, 187, 187, 8531, 1540, 64, 85, 12138, 890, 19217, 1450, 11183, 18590, 27220, 9, 2776, 7676, 9424, 13, 4770, 1540, 64, 85, 5733, 83, 10, 551, 187, 50276, 31135, 911, 35854, 12623, 9, 4348, 558, 535, 50276, 35449, 19217, 5443, 1450, 18590, 12236, 6648, 31742, 708, 6648, 426, 187, 50274, 5607, 5443, 15, 788, 18590, 12236, 6648, 1874, 535, 50276, 605, 1605, 1059, 272, 432, 253, 10603, 32, 187, 50276, 338, 6522, 23054, 10, 187, 50274, 2309, 14939, 5443, 15, 21605, 27220, 9, 2402, 558, 535, 50276, 8531, 1540, 64, 85, 708, 18191, 2838, 426, 12968, 60, 2402, 2194, 187, 50276, 8531, 1540, 64, 85, 8937, 2838, 426, 11579, 2838, 28, 535, 50276, 338, 313, 18191, 2838, 3857, 2195, 5607, 5443, 15, 788, 18590, 12236, 51, 28717, 6648, 5023, 11004, 6649, 187, 50274, 5607, 5443, 15, 788, 18590, 12236, 51, 28717, 6648, 5023, 254, 511, 9, 18191, 2838, 558, 187, 50276, 18191, 2838, 426, 5733, 83, 28, 535, 50276, 605, 1310, 359, 403, 970, 253, 8107, 10603, 13, 823, 352, 1512, 15, 187, 50276, 338, 6522, 5607, 5443, 15, 788, 18590, 12236, 51, 28717, 6648, 5023, 11004, 6649, 551, 187, 50274, 8400, 1450, 2703, 708, 55, 426, 14939, 5443, 15, 788, 18590, 12236, 51, 28717, 6648, 43144, 18191, 2838, 2194, 187, 50274, 8271, 4464, 2, 55, 15, 11004, 1082, 2785, 2195, 2402, 15, 11004, 6649, 3857, 187, 50267, 3, 18590, 27220, 2168, 4232, 48708, 187, 50274, 55, 426, 9424, 28, 187, 50276, 94, 187, 50276, 2309, 8937, 2838, 28, 187, 94, 187, 187, 8531, 1540, 64, 85, 12138, 890, 19217, 1450, 788, 12236, 1992, 18590, 2042, 31130, 9, 2776, 7676, 322, 10, 551, 187, 50276, 31135, 911, 35854, 12623, 9, 4348, 558, 187, 50276, 8531, 1540, 64, 85, 22483, 426, 470, 28, 187, 50276, 35449, 19217, 5443, 1450, 18590, 12236, 6648, 31742, 1450, 17828, 309, 426, 187, 50274, 5607, 5443, 15, 788, 18590, 12236, 6648, 5023, 8606, 9, 52, 558, 187, 50276, 338, 313, 42, 3613, 14939, 5443, 15, 788, 18590, 12236, 6648, 5023, 423, 6649, 187, 50274, 12236, 426, 309, 1168, 9815, 28, 187, 50276, 2309, 22483, 28, 187, 94, 535, 187, 4353, 475, 35449, 19217, 1450, 788, 11732, 1992, 18590, 2042, 31130, 9, 2776, 7676, 322, 10, 551, 187, 50276, 31135, 911, 35854, 12623, 9, 4348, 558, 187, 50276, 338, 313, 4353, 11, 22483, 426, 313, 4353, 9657, 755, 12236, 1992, 18590, 2042, 31130, 9, 52, 1228, 187, 50274, 2309, 22483, 28, 187, 50276, 2309, 28471, 28, 187, 94, 187, 187, 4353, 475, 35449, 19217, 1450, 788, 11732, 1992, 18590, 2042, 31130, 9, 3474, 11841, 3902, 475, 31073, 10, 551, 187, 50276, 31135, 911, 35854, 12623, 9, 4348, 558, 187, 50276, 2309, 755, 11732, 1992, 18590, 2042, 31130, 9, 788, 46, 33195, 2402, 9, 31073, 4027, 187, 94, 187, 187, 3474, 11841, 3902, 475, 35449, 19217, 1450, 788, 18590, 3902, 3404, 12236, 9, 4353, 475, 23054, 10, 551, 187, 50276, 31135, 911, 35854, 12623, 9, 4348, 558, 535, 50276, 605, 1310, 359, 6468, 626, 10302, 253, 8107, 10603, 2568, 13, 513, 594, 806, 15, 187, 50276, 338, 313, 5607, 5443, 15, 788, 18590, 12236, 51, 28717, 6648, 5023, 11004, 6649, 551, 187, 50274, 1542, 313, 35449, 19217, 5443, 1450, 18590, 12236, 6648, 31742, 1450, 17828, 187, 50267, 42, 426, 14939, 5443, 15, 788, 18590, 12236, 6648, 5023, 2043, 5715, 187, 50267, 38, 426, 14939, 5443, 15, 788, 18590, 12236, 6648, 5023, 423, 1874, 309, 3613, 444, 28, 12996, 42, 10, 551, 187, 50272, 2776, 7676, 9424, 426, 309, 1168, 7053, 1874, 187, 50272, 8531, 1540, 64, 85, 5733, 83, 426, 309, 1168, 9815, 28, 187, 50272, 5607, 5443, 15, 788, 18590, 12236, 51, 28717, 6648, 5023, 14447, 9, 8400, 1450, 11145, 64, 13934, 9, 187, 50254, 50254, 50268, 23054, 13, 9424, 4027, 187, 50274, 94, 187, 50276, 94, 535, 50276, 8400, 1450, 4251, 29, 8531, 1540, 64, 85, 13, 6268, 1450, 2703, 14157, 17828, 309, 426, 187, 50274, 5607, 5443, 15, 788, 18590, 12236, 51, 28717, 6648, 5023, 8606, 4464, 8531, 1540, 64, 85, 10, 5733, 83, 558, 535, 50276, 338, 313, 42, 3613, 14939, 5443, 15, 788, 18590, 12236, 51, 28717, 6648, 5023, 423, 6649, 551, 187, 50274, 2776, 7676, 9424, 426, 309, 1168, 9815, 28, 187, 50274, 1542, 313, 10790, 891, 426, 470, 13, 299, 426, 4559, 2651, 15, 3281, 1874, 891, 3613, 299, 28, 12996, 74, 10, 187, 50272, 338, 313, 18590, 3902, 475, 31073, 426, 4559, 2651, 60, 74, 33094, 788, 37195, 3902, 9, 2402, 1228, 187, 50270, 2309, 46231, 28, 187, 50276, 94, 187, 50276, 2309, 28471, 28, 187, 94, 187, 187, 12361, 551, 187, 2437, 14979, 87, 6542, 551, 187, 50276, 8400, 1450, 22524, 64, 4773, 29, 3615, 5456, 31, 11782, 28, 187, 50276, 8400, 1450, 11000, 29, 8400, 1450, 22524, 64, 4773, 29, 3615, 5456, 5064, 23409, 28, 187, 4387, 27, 187, 50276, 10638, 11748, 247, 4972, 273, 11559, 715, 247, 5322, 39989, 3740, 3781, 273, 29476, 281, 3635, 187, 50276, 10638, 19344, 11559, 15, 187, 50276, 4353, 475, 19511, 9, 2293, 11804, 5856, 708, 36, 13, 12138, 890, 19217, 475, 5607, 13, 187, 50264, 3474, 6268, 1450, 11000, 29, 8400, 1450, 2703, 31, 708, 8982, 11141, 87, 558, 187, 4718, 187, 94, 50276, 605, 17679, 12953, 187, 4353, 475, 11141, 87, 6542, 1450, 19511, 9, 2293, 11804, 5856, 708, 36, 13, 12138, 890, 19217, 475, 5607, 13, 187, 50255, 3474, 6268, 1450, 11000, 29, 8400, 1450, 2703, 31, 708, 8982, 11141, 87, 10, 551, 187, 50276, 15888, 15, 8250, 1874, 50276, 605, 7648, 253, 1711, 9410, 15, 187, 50276, 15888, 15, 373, 4003, 9, 8982, 11141, 87, 15, 3281, 6020, 187, 50276, 10790, 367, 1206, 5496, 426, 14939, 1168, 788, 3233, 9683, 5023, 788, 11732, 5496, 1874, 187, 50276, 6542, 426, 1056, 64, 22524, 29, 3615, 5456, 31, 4464, 8982, 11141, 87, 15, 3281, 1082, 12, 18, 2888, 12030, 5496, 558, 535, 50276, 18828, 9, 5470, 5943, 1082, 5291, 346, 43, 1433, 27, 6647, 31073, 426, 346, 5291, 313, 4353, 5627, 6542, 15, 788, 1082, 5291, 8894, 79, 3287, 187, 50276, 2548, 475, 52, 19117, 12030, 426, 8078, 1450, 788, 4807, 25, 12030, 31742, 9, 36, 558, 535, 50276, 1542, 313, 10790, 891, 426, 470, 28, 891, 3613, 19832, 11141, 87, 15, 3281, 1874, 12996, 74, 10, 551, 187, 50274, 10790, 19662, 426, 19832, 11141, 87, 60, 74, 1570, 3281, 1082, 12, 18, 28, 187, 50274, 15149, 20593, 426, 1056, 64, 22524, 29, 3615, 5456, 8743, 5496, 558, 187, 50274, 18828, 9, 5470, 5943, 1082, 5291, 346, 43, 1433, 27, 6647, 31073, 9855, 5291, 891, 5291, 346, 62, 426, 346, 5291, 313, 4353, 5627, 22482, 15, 788, 1082, 5291, 8894, 79, 3287, 535, 50274, 8400, 1450, 12557, 9, 8982, 11141, 87, 60, 74, 1570, 2043, 5715, 19832, 11141, 87, 60, 74, 1570, 423, 5715, 20593, 15, 788, 6020, 187, 50274, 22482, 60, 5496, 14, 18, 62, 426, 470, 28, 535, 50274, 605, 8072, 757, 4999, 27, 11782, 60, 74, 62, 426, 313, 11732, 31742, 10, 22482, 28, 187, 50274, 5607, 1168, 15900, 3902, 1992, 21911, 9, 5736, 11840, 55, 9, 22482, 15, 788, 35632, 187, 50254, 50275, 9, 25114, 3902, 11, 2769, 7, 6542, 60, 74, 11, 12030, 5496, 6660, 322, 19117, 12030, 558, 187, 50274, 15888, 15, 11340, 64, 2135, 9, 8400, 1450, 15106, 9, 22482, 4027, 187, 50276, 94, 535, 50276, 605, 34631, 24174, 352, 187, 50276, 5607, 1168, 15900, 3902, 1992, 21911, 9, 5736, 11840, 55, 9, 8629, 4773, 582, 187, 50254, 313, 25114, 3902, 11, 2769, 7, 6542, 60, 8982, 11141, 87, 15, 3281, 1082, 11, 12030, 5496, 6660, 187, 50254, 322, 19117, 12030, 558, 187, 50276, 2309, 11782, 15, 788, 1874, 187, 94, 187, 187, 4353, 12138, 890, 19217, 1450, 6321, 26904, 49284, 641, 22482, 957, 641, 9, 13570, 708, 8640, 13, 187, 50254, 50254, 50271, 10975, 310, 37, 85, 641, 10, 551, 187, 50276, 3474, 1018, 475, 2402, 426, 310, 37, 85, 641, 3736, 346, 38381, 15, 14456, 64, 7064, 641, 3, 1163, 346, 38381, 15, 14456, 64, 5285, 3664, 187, 50276, 18590, 23807, 475, 31073, 426, 6333, 15, 788, 37195, 18590, 9, 2402, 558, 535, 50276, 605, 1310, 436, 4156, 556, 4812, 24637, 13, 390, 604, 352, 556, 247, 897, 13, 840, 352, 1364, 320, 187, 50276, 605, 271, 1711, 14, 4826, 313, 620, 87, 7913, 550, 20, 10, 4228, 260, 13473, 342, 4772, 7265, 7939, 275, 285, 275, 897, 15, 50276, 2042, 187, 50276, 605, 436, 310, 253, 1083, 13, 1053, 626, 13194, 667, 273, 253, 4156, 45830, 641, 13, 4772, 7265, 588, 513, 187, 50276, 605, 352, 15, 187, 50276, 338, 6522, 31073, 2785, 46231, 1168, 261, 36914, 1082, 2785, 46231, 1168, 7110, 12599, 10516, 486, 6649, 1091, 28, 535, 50276, 605, 14482, 320, 271, 3781, 273, 39846, 891, 1237, 13, 2991, 313, 2888, 748, 8, 1577, 84, 15, 50276, 510, 806, 1318, 310, 187, 50276, 605, 253, 2012, 11674, 13, 534, 359, 11823, 15, 187, 50276, 29080, 6542, 475, 10828, 2765, 426, 24187, 64, 4008, 29, 29080, 6542, 8743, 31073, 1168, 788, 23527, 6081, 6020, 187, 50276, 338, 6522, 10828, 2765, 10, 187, 50274, 2309, 28, 187, 50276, 1542, 313, 10790, 891, 426, 470, 13, 299, 426, 10813, 2765, 1168, 788, 12753, 10996, 2287, 1874, 891, 3613, 299, 28, 12996, 74, 10, 551, 187, 50274, 29080, 21772, 475, 5166, 426, 24187, 64, 4008, 29, 29080, 21772, 8743, 10828, 2765, 1168, 788, 10996, 395, 9, 74, 4027, 187, 50274, 338, 6522, 5166, 10, 4035, 28, 535, 50274, 29080, 475, 7073, 426, 9404, 1168, 788, 10996, 395, 9, 18, 558, 187, 50274, 338, 313, 7073, 1168, 261, 13141, 3902, 6649, 187, 50272, 25674, 28, 50276, 605, 5952, 247, 2197, 989, 1318, 13, 11823, 15, 535, 50274, 605, 34982, 745, 3638, 2048, 43603, 15, 187, 50274, 338, 313, 29080, 28044, 475, 4339, 426, 24187, 64, 4008, 29, 29080, 28044, 8743, 7073, 1228, 187, 50272, 338, 313, 4339, 1168, 261, 19447, 6649, 187, 50270, 7073, 426, 7956, 1168, 788, 10996, 395, 9, 17, 558, 535, 50274, 605, 12138, 1137, 253, 260, 13473, 16, 7064, 263, 1159, 2, 187, 50274, 338, 313, 11594, 475, 39, 426, 24187, 64, 4008, 29, 11594, 8743, 7073, 1228, 187, 50272, 6321, 11594, 9, 39, 13, 8256, 558, 535, 50274, 605, 38506, 5288, 27, 733, 310, 42876, 42837, 326, 359, 816, 513, 2717, 1060, 604, 359, 923, 271, 187, 50274, 605, 5857, 359, 1053, 626, 9446, 15, 733, 1537, 417, 320, 20697, 323, 253, 2336, 5425, 187, 50274, 605, 281, 417, 1014, 1581, 436, 285, 816, 4138, 1060, 15, 187, 50276, 94, 187, 94, 187, 187, 4353, 12138, 890, 19217, 1450, 6321, 26904, 49284, 641, 22482, 957, 641, 9, 10975, 310, 37, 85, 641, 10, 551, 187, 50276, 605, 12138, 1137, 4156, 45830, 641, 16, 7064, 641, 323, 1016, 6333, 275, 253, 2086, 15, 187, 50276, 1542, 313, 8400, 1450, 22524, 64, 4773, 29, 13570, 31, 708, 46, 1163, 4559, 2651, 10, 187, 50274, 6321, 26904, 49284, 641, 22482, 957, 641, 9672, 46, 13, 310, 37, 85, 641, 558, 187, 94, 187, 187, 4, 17331, 427, 18828, 187, 10638, 310, 12168, 13141, 12030, 428, 16140, 1880, 253, 2303, 12219, 7141, 387, 18771, 310, 3635, 15, 187, 4659, 7301, 310, 12168, 13141, 12030, 9, 35449, 19217, 475, 5607, 13, 2991, 475, 16395, 10, 551, 187, 50276, 10790, 367, 1206, 5496, 426, 14939, 1168, 788, 3233, 9683, 5023, 788, 11732, 5496, 1874, 187, 50276, 1542, 313, 10790, 891, 426, 470, 28, 891, 654, 367, 1206, 5496, 28, 12996, 74, 10, 187, 50274, 338, 2796, 9, 74, 559, 313, 8531, 25, 64, 85, 5627, 16395, 1228, 187, 50272, 2309, 3221, 28, 187, 50276, 2309, 2032, 28, 187, 94, 187, 4, 7287, 187, 187, 565, 12138, 890, 19217, 1450, 6321, 11594, 1909, 13030, 9, 11594, 475, 31766, 13, 187, 50254, 50263, 3474, 6268, 1450, 11000, 29, 8400, 1450, 2703, 31, 708, 28928, 13, 187, 50254, 50263, 3474, 1018, 475, 1030, 475, 17400, 81, 10, 551, 187, 50276, 8400, 1450, 11000, 29, 25114, 3902, 31, 46231, 16523, 28, 187, 50276, 25114, 3902, 46231, 11141, 68, 28, 187, 50276, 31073, 11141, 68, 15, 4807, 2838, 426, 4097, 4807, 9, 1237, 13, 39989, 15, 3281, 6020, 535, 50276, 605, 9423, 2022, 1082, 1511, 187, 50276, 10790, 21046, 16523, 426, 401, 79, 1168, 788, 11594, 2548, 18331, 788, 12753, 18246, 1874, 187, 50276, 11594, 2548, 475, 5518, 90, 426, 401, 79, 1168, 788, 11594, 2548, 1874, 187, 50276, 2548, 11, 20250, 4807, 25, 31742, 426, 8078, 1450, 788, 4807, 25, 12030, 31742, 9, 31766, 1168, 788, 5856, 6649, 1168, 788, 11732, 1992, 1874, 535, 50276, 605, 9423, 253, 4154, 3510, 15, 187, 50276, 338, 313, 12753, 16523, 2239, 495, 10, 187, 50274, 16223, 64, 48901, 64, 3775, 1587, 19504, 1180, 273, 7125, 273, 2022, 1082, 12164, 3287, 187, 50276, 338, 313, 12753, 16523, 10122, 495, 3857, 15703, 90, 1168, 788, 11030, 2548, 9, 19, 10, 3613, 20250, 4807, 25, 31742, 10, 187, 50274, 16223, 64, 48901, 64, 3775, 1587, 19504, 1511, 323, 2626, 4154, 273, 2022, 1082, 12164, 3287, 187, 50276, 338, 313, 12753, 16523, 10122, 374, 3857, 15703, 90, 1168, 788, 11030, 2548, 9, 18, 10, 3613, 20250, 4807, 25, 31742, 10, 187, 50274, 16223, 64, 48901, 64, 3775, 1587, 19504, 1511, 323, 1273, 4154, 273, 2022, 1082, 12164, 3287, 187, 50276, 338, 313, 12753, 16523, 10122, 337, 3857, 2195, 5518, 90, 1168, 788, 11030, 2548, 9, 17, 18474, 261, 16467, 31742, 9, 1237, 1228, 187, 50274, 16223, 64, 48901, 64, 3775, 1587, 19504, 1511, 323, 806, 4154, 273, 2022, 1082, 12164, 3287, 187, 50276, 338, 6522, 5518, 90, 1168, 788, 15968, 2548, 18331, 261, 16467, 31742, 1082, 3857, 187, 50272, 2, 5518, 90, 1168, 788, 15968, 2548, 18331, 261, 55, 1238, 31742, 6649, 187, 50274, 16223, 64, 48901, 64, 3775, 1587, 19504, 1091, 1511, 273, 2022, 1082, 12164, 3287, 535, 50276, 11141, 87, 6542, 330, 11141, 87, 28, 187, 50276, 11141, 87, 6542, 330, 32883, 28, 187, 50276, 338, 313, 12753, 16523, 10, 551, 187, 50274, 31073, 16523, 15, 11340, 64, 2135, 9, 31073, 11141, 68, 558, 1380, 14979, 1852, 17, 426, 46090, 15, 187, 50274, 338, 313, 12753, 16523, 2239, 337, 10, 551, 187, 50272, 605, 14979, 1852, 18, 426, 39989, 15, 187, 50272, 31073, 16523, 15, 11340, 64, 2135, 9, 5736, 11840, 55, 9, 36, 11141, 87, 15, 19511, 9, 31766, 1168, 788, 5856, 5715, 436, 13, 39989, 23090, 187, 50272, 8271, 20273, 261, 12168, 13141, 12030, 9, 2520, 13, 443, 28889, 2795, 9, 31073, 16523, 60, 18, 27829, 3857, 187, 50265, 3, 28928, 60, 17, 62, 369, 3635, 846, 13119, 11141, 87, 3287, 187, 50272, 338, 313, 12753, 16523, 2239, 374, 10, 551, 187, 50270, 8400, 1450, 11000, 29, 8400, 1450, 2703, 31, 47684, 55, 1032, 28, 187, 50270, 1542, 313, 10790, 891, 426, 470, 28, 17400, 81, 60, 74, 2194, 12996, 74, 10, 187, 50268, 32883, 55, 1032, 15, 358, 5070, 64, 2135, 9, 12540, 81, 60, 74, 9259, 187, 50270, 605, 14979, 1852, 19, 426, 17400, 81, 15, 187, 50270, 31073, 16523, 15, 11340, 64, 2135, 9, 5736, 11840, 55, 9, 36, 32883, 15, 19511, 9, 31766, 1168, 788, 5856, 5715, 436, 13, 47684, 55, 1032, 23090, 187, 50272, 94, 187, 50274, 94, 187, 50276, 94, 535, 50276, 2309, 1408, 11594, 9, 31766, 13, 46231, 16523, 481, 4807, 2838, 15, 788, 59, 7992, 3902, 1874, 187, 94, 187, 187, 19217, 12038, 1450, 19217, 12038, 1082, 1163, 10797, 12038, 9, 8629, 4773, 10, 12166, 187, 187, 19217, 12038, 1450, 19217, 12038, 9, 8400, 1450, 22524, 64, 4773, 29, 13570, 31, 353, 10, 187, 50274, 27, 353, 9, 8400, 1450, 15106, 9, 46, 9679, 6758, 19217, 9, 19217, 18808, 1450, 41311, 582, 11759, 10287, 9, 8629, 4773, 582, 187, 50272, 13967, 13019, 9, 6124, 7475, 13967, 1450, 9671, 582, 6700, 46, 737, 9, 8629, 4773, 582, 2213, 14930, 9, 8629, 4773, 582, 187, 50272, 9112, 406, 7104, 9, 9112, 406, 1450, 9671, 582, 12280, 7104, 9, 6124, 7104, 1450, 43, 1433, 9671, 582, 187, 50272, 11244, 48, 3373, 7722, 43, 1433, 1785, 26380, 9, 7750, 10, 551, 187, 605, 9812, 6333, 21999, 310, 11410, 407, 4284, 275, 13844, 21168, 13, 285, 13603, 187, 605, 407, 4284, 275, 3727, 21168, 15, 187, 4, 17331, 427, 18828, 187, 50276, 10754, 1419, 4120, 2651, 426, 2032, 28, 187, 4, 7271, 187, 50276, 10754, 1419, 4120, 2651, 426, 3221, 28, 187, 4, 7287, 187, 94, 187, 187, 19217, 12038, 1450, 95, 19217, 12038, 1082, 426, 4284, 28, 187, 187, 19217, 12038, 708, 19217, 12038, 1450, 1178, 7722, 43, 1433, 21911, 8224, 9, 187, 50254, 50267, 8400, 1450, 22524, 64, 4773, 29, 4708, 37, 90, 392, 21911, 8224, 31, 278, 27074, 2188, 10, 551, 187, 50276, 15149, 38480, 8643, 426, 6268, 1450, 18867, 64, 4773, 29, 4708, 37, 90, 392, 21911, 8224, 8743, 8400, 1450, 15106, 9, 17475, 75, 2188, 4027, 187, 50276, 10267, 46, 737, 426, 38480, 8643, 28, 187, 50276, 35964, 426, 38480, 8643, 28, 187, 50276, 2309, 475, 2520, 28, 187, 94, 187, 187, 19217, 12038, 7, 187, 19217, 12038, 1450, 1178, 21911, 8224, 9, 8400, 1450, 22524, 64, 4773, 29, 7722, 43, 1433, 21911, 8224, 31, 16975, 10, 551, 187, 50276, 10267, 46, 737, 426, 6268, 1450, 18867, 64, 4773, 29, 7722, 43, 1433, 21911, 8224, 8743, 8400, 1450, 15106, 9, 8643, 4027, 187, 50276, 2309, 475, 2520, 28, 187, 94, 187, 187, 19217, 12038, 7, 187, 19217, 12038, 1450, 1178, 29046, 35964, 9, 8400, 1450, 22524, 64, 4773, 29, 17577, 37, 90, 392, 1450, 29046, 35964, 31, 12938, 10, 551, 187, 50276, 35964, 426, 6268, 1450, 18867, 64, 4773, 29, 17577, 37, 90, 392, 1450, 29046, 35964, 8743, 8400, 1450, 15106, 9, 7611, 4027, 187, 50276, 2309, 475, 2520, 28, 187, 94, 187, 187, 35449, 19217, 475, 19217, 12038, 1450, 6953, 9, 12168, 32192, 475, 14592, 10, 551, 187, 50276, 8400, 1450, 22524, 64, 4773, 29, 12168, 32192, 31, 380, 14592, 9, 14592, 558, 1380, 11668, 12851, 15, 535, 50276, 605, 10338, 2119, 359, 476, 11322, 14217, 275, 253, 2086, 347, 973, 15, 380, 5058, 1736, 187, 50276, 605, 281, 253, 1159, 8599, 31799, 20607, 281, 3301, 253, 2086, 13, 417, 247, 6335, 15, 187, 50276, 338, 313, 10404, 1450, 31535, 20607, 1450, 9624, 20607, 49, 8592, 1574, 9, 8629, 4773, 13, 11759, 10287, 1228, 187, 50274, 2309, 28471, 28, 187, 50276, 187, 50276, 605, 1310, 253, 2608, 7616, 247, 3541, 7205, 533, 1904, 626, 13199, 534, 3948, 281, 187, 50276, 605, 2794, 13, 359, 5467, 597, 760, 971, 253, 500, 1433, 13, 285, 359, 1891, 604, 597, 760, 971, 187, 50276, 605, 253, 35374, 15, 187, 50276, 338, 313, 10267, 46, 737, 10, 551, 187, 50274, 338, 313, 7371, 19217, 708, 10797, 18808, 1450, 43, 1433, 10, 187, 50272, 7371, 19217, 426, 10797, 18808, 1450, 43, 1433, 28, 187, 50274, 7271, 551, 187, 50272, 338, 313, 4756, 10287, 10, 187, 50270, 11, 4756, 10287, 426, 346, 41909, 2794, 271, 35374, 342, 247, 3541, 7205, 45974, 187, 50272, 2309, 28471, 28, 187, 50274, 94, 187, 50276, 94, 535, 50276, 605, 15999, 253, 35374, 369, 11120, 4236, 390, 253, 500, 1433, 310, 417, 7939, 13, 187, 50276, 605, 1611, 2403, 247, 500, 1433, 15, 187, 50276, 338, 6048, 7371, 19217, 708, 10797, 18808, 1450, 43, 1433, 10, 3857, 380, 14592, 10, 551, 187, 50274, 24490, 713, 26909, 9, 46, 1168, 788, 12168, 24490, 713, 6020, 187, 50274, 338, 6522, 14592, 1168, 788, 12168, 5023, 7110, 43, 1433, 6649, 551, 187, 50272, 1000, 84, 1082, 5291, 346, 42328, 27, 831, 2303, 500, 1433, 310, 417, 4158, 323, 253, 3167, 3, 187, 50265, 14193, 346, 368, 403, 3515, 15, 50276, 2042, 3076, 1841, 5108, 13, 4496, 5206, 3, 187, 50265, 14193, 346, 247, 1027, 428, 78, 1116, 5234, 4880, 79, 3664, 187, 50274, 94, 535, 50274, 35449, 19217, 475, 5607, 426, 28471, 28, 187, 50274, 338, 313, 35449, 19217, 1450, 48, 3373, 7722, 43, 1433, 1785, 26380, 5229, 263, 3857, 7890, 48, 3373, 7722, 43, 1433, 1785, 26380, 10, 551, 187, 50272, 5607, 426, 12138, 890, 19217, 1450, 48, 3373, 7722, 43, 1433, 1785, 26380, 5229, 263, 9, 4756, 10287, 13, 6268, 1450, 15106, 9, 10267, 46, 737, 582, 187, 50254, 50254, 50274, 8400, 1450, 15106, 9, 35964, 582, 187, 50254, 50254, 50274, 8400, 1450, 15106, 9, 510, 14592, 4027, 187, 50272, 5607, 1168, 1911, 13570, 9, 8400, 1450, 15106, 9, 46, 4027, 187, 50274, 94, 2010, 604, 313, 35449, 19217, 1450, 7722, 43, 1433, 5229, 263, 10, 187, 50272, 5607, 426, 12138, 890, 19217, 1450, 7722, 43, 1433, 5229, 263, 9, 8400, 1450, 15106, 9, 46, 582, 11759, 10287, 13, 6268, 1450, 15106, 9, 10267, 46, 737, 582, 187, 50254, 50264, 8400, 1450, 15106, 9, 35964, 582, 6268, 1450, 15106, 9, 510, 14592, 4027, 535, 50274, 338, 313, 5607, 10, 551, 187, 50272, 5607, 1168, 1178, 10754, 1419, 4120, 2651, 9, 10754, 1419, 4120, 2651, 558, 187, 50272, 2309, 14939, 28, 187, 50274, 94, 187, 50276, 94, 535, 50276, 605, 1310, 359, 476, 626, 1056, 247, 500, 1433, 285, 359, 1904, 626, 2748, 581, 5742, 13, 1611, 2403, 187, 50276, 605, 271, 35374, 3185, 15, 187, 50276, 338, 313, 7371, 19217, 708, 10797, 18808, 1450, 6504, 3456, 350, 10, 551, 187, 50274, 338, 313, 35449, 19217, 1450, 6504, 81, 5229, 263, 10, 187, 50272, 2309, 12138, 890, 19217, 1450, 6504, 81, 5229, 263, 9, 8400, 1450, 15106, 9, 46, 582, 11759, 10287, 558, 187, 50274, 338, 313, 4756, 10287, 10, 187, 50272, 11, 4756, 10287, 426, 346, 6504, 3456, 350, 556, 417, 644, 7939, 275, 45974, 187, 50274, 2309, 28471, 28, 187, 50276, 94, 535, 50276, 338, 6048, 7371, 19217, 708, 10797, 18808, 1450, 43, 1433, 10, 3857, 2195, 35449, 19217, 1450, 7722, 43, 1433, 5229, 263, 10, 551, 187, 50274, 338, 313, 4756, 10287, 10, 187, 50272, 11, 4756, 10287, 426, 346, 43, 1433, 556, 417, 644, 7939, 275, 45974, 187, 50276, 94, 535, 50276, 2309, 28471, 28, 187, 94, 187, 187, 4353, 475, 35449, 19217, 1450, 788, 11732, 1992, 18590, 9, 3474, 11841, 3902, 475, 31073, 10, 551, 187, 50276, 338, 313, 11594, 475, 39, 426, 1030, 64, 4008, 29, 11594, 46802, 42927, 64, 4008, 29, 11594, 8743, 31073, 10689, 187, 50274, 2309, 755, 11732, 1992, 11594, 9, 39, 558, 535, 50276, 31135, 911, 35854, 12623, 9, 4348, 558, 187, 50276, 338, 313, 4353, 11, 367, 426, 755, 11732, 1992, 18590, 2042, 31130, 9, 31073, 1228, 187, 50274, 2309, 367, 28, 535, 50276, 605, 11841, 4778, 1537, 452, 644, 2879, 1580, 35374, 3053, 15, 187, 50276, 338, 313, 18590, 23807, 475, 40, 13248, 426, 187, 50268, 3474, 64, 4008, 29, 18590, 23807, 475, 8743, 42927, 64, 4008, 29, 18590, 23807, 8743, 31073, 10689, 187, 50274, 38, 2225, 18590, 23807, 9, 40, 13248, 558, 187, 50276, 7271, 187, 50274, 38381, 64, 328, 21943, 494, 1587, 18590, 11210, 626, 574, 271, 2953, 18564, 2568, 48708, 535, 50276, 2309, 755, 11732, 1992, 18590, 2042, 31130, 9, 31073, 558, 187, 94, 187, 187, 10638, 393, 18399, 1716, 31332, 247, 22006, 11, 715, 247, 44304, 3902, 13, 1690, 10885, 273, 187, 10638, 22006, 28044, 2193, 15, 187, 25114, 3902, 12138, 890, 19217, 1450, 788, 29080, 3902, 9, 3474, 22006, 475, 36, 10, 551, 187, 50276, 605, 1310, 697, 17011, 13, 1091, 253, 22630, 15, 187, 50276, 338, 313, 8901, 29, 2447, 1545, 3902, 8743, 36, 1228, 551, 187, 50274, 25114, 3902, 22195, 28, 187, 50274, 16065, 313, 36, 1168, 788, 2548, 18331, 788, 2548, 1838, 6649, 551, 187, 50274, 6986, 27, 187, 50272, 7054, 28, 187, 50274, 5045, 8078, 1450, 16467, 31742, 1838, 27, 187, 50274, 5045, 8078, 1450, 57, 2691, 64, 7073, 1438, 31742, 1838, 27, 187, 50274, 5045, 8078, 1450, 7073, 8196, 31742, 1838, 27, 187, 50274, 5045, 8078, 1450, 4785, 36, 64, 7073, 8196, 31742, 1838, 27, 187, 50272, 605, 4129, 253, 1318, 310, 17011, 13, 359, 1335, 452, 281, 3989, 271, 4097, 4807, 187, 50272, 605, 342, 253, 3451, 2372, 4871, 15, 187, 50272, 9179, 15, 4807, 2838, 426, 4097, 4807, 9, 36, 1168, 788, 2548, 18331, 788, 18204, 1483, 5496, 688, 31736, 5715, 470, 558, 187, 50272, 7054, 28, 187, 50274, 5045, 8078, 1450, 21772, 31742, 1838, 27, 551, 187, 50272, 605, 604, 253, 2644, 1577, 310, 686, 33943, 8, 816, 15917, 3541, 323, 253, 1318, 15, 187, 50272, 338, 9, 21772, 2548, 475, 1267, 90, 426, 24187, 64, 4008, 29, 21772, 2548, 8743, 36, 1168, 788, 2548, 32875, 551, 187, 50270, 10790, 540, 38062, 12753, 426, 3915, 90, 1168, 788, 12753, 25170, 1874, 187, 50270, 9179, 15, 35619, 1747, 366, 2838, 15, 35621, 9, 33511, 12753, 558, 187, 50270, 1542, 313, 10790, 540, 891, 426, 470, 28, 891, 654, 38062, 12753, 28, 12996, 74, 10, 551, 187, 50268, 2548, 475, 39812, 31742, 426, 3915, 90, 1168, 21415, 2548, 9, 74, 558, 187, 50268, 338, 313, 39812, 31742, 1168, 261, 16467, 31742, 6649, 187, 50266, 9179, 15, 35619, 1747, 366, 2838, 60, 74, 1570, 4807, 2838, 426, 2490, 50264, 2088, 4807, 9, 39812, 31742, 1168, 788, 18204, 1483, 5496, 688, 31736, 5715, 470, 558, 187, 50268, 7271, 604, 313, 39812, 31742, 1168, 261, 35619, 1747, 366, 2548, 6649, 551, 187, 50264, 3474, 22006, 475, 39812, 2447, 1545, 426, 914, 1545, 3902, 1450, 788, 9, 39812, 31742, 558, 187, 50264, 9179, 15, 35619, 1747, 366, 2838, 60, 74, 62, 426, 755, 29080, 3902, 9, 39812, 2447, 1545, 558, 187, 50266, 94, 187, 50268, 94, 187, 50270, 94, 187, 50272, 94, 187, 50272, 7054, 28, 187, 50274, 5045, 8078, 1450, 15219, 31742, 1838, 27, 187, 50272, 605, 604, 253, 2644, 4972, 310, 686, 33943, 8, 816, 15917, 3541, 323, 253, 1318, 15, 187, 50272, 15149, 11, 657, 31742, 426, 24187, 64, 4008, 29, 15219, 2548, 8743, 36, 1168, 788, 2548, 6020, 187, 50272, 2548, 475, 39812, 31742, 426, 657, 31742, 1168, 21415, 2548, 1874, 187, 50272, 10790, 540, 38062, 12753, 426, 657, 31742, 1168, 788, 12753, 25170, 1874, 187, 50272, 9179, 15, 35619, 1747, 366, 2838, 15, 35621, 9, 33511, 12753, 558, 187, 50272, 338, 313, 39812, 31742, 1168, 261, 16467, 31742, 6649, 187, 50270, 1542, 313, 10790, 540, 891, 426, 470, 28, 891, 654, 38062, 12753, 28, 12996, 74, 10, 187, 50268, 9179, 15, 35619, 1747, 366, 2838, 60, 74, 1570, 4807, 2838, 426, 187, 50266, 2088, 4807, 9, 39812, 31742, 1168, 788, 18204, 1483, 5496, 688, 31736, 5715, 470, 558, 187, 50272, 7054, 28, 187, 50274, 94, 187, 50274, 2309, 22195, 28, 187, 50276, 94, 535, 50276, 605, 17501, 13, 604, 253, 1318, 310, 247, 22006, 28044, 1051, 187, 50276, 338, 313, 3474, 22006, 28044, 475, 4339, 426, 24187, 64, 4008, 29, 29080, 28044, 8743, 36, 1228, 551, 187, 50274, 29080, 475, 12535, 17, 426, 7956, 1168, 788, 10996, 395, 9, 17, 558, 187, 50274, 16065, 313, 4339, 1168, 788, 12535, 3211, 6649, 551, 187, 50274, 5045, 41959, 1450, 3633, 7050, 12030, 27, 551, 187, 50272, 605, 45947, 253, 3605, 187, 50272, 25114, 3902, 22195, 426, 755, 29080, 3902, 9, 12535, 17, 558, 187, 50272, 2088, 4807, 47697, 9, 6721, 15, 788, 11732, 5496, 688, 31736, 5715, 470, 558, 187, 50272, 4008, 29, 7538, 5964, 468, 1080, 8743, 4339, 18474, 48925, 4187, 29080, 13736, 9, 6721, 13, 47697, 558, 535, 50272, 3615, 11, 19097, 426, 313, 3615, 5627, 22195, 15, 11732, 2838, 28, 187, 50272, 9179, 426, 367, 7058, 31073, 9, 12780, 559, 47697, 15, 788, 2354, 633, 3902, 6020, 187, 50272, 2309, 22195, 28, 187, 50274, 94, 187, 50274, 5045, 41959, 1450, 2290, 7157, 27, 551, 187, 50272, 25114, 3902, 46231, 426, 755, 29080, 3902, 9, 12535, 17, 558, 187, 50272, 8531, 1237, 64, 85, 10210, 12175, 426, 5248, 29, 16467, 2548, 8743, 4339, 1168, 788, 2548, 6649, 1168, 788, 12871, 12175, 1874, 187, 50272, 31073, 15, 4807, 2838, 426, 46231, 15, 4807, 2838, 15, 39315, 9, 12871, 12175, 558, 187, 50272, 2309, 46231, 28, 187, 50274, 94, 187, 50274, 5045, 41959, 1450, 59, 7992, 27, 551, 187, 50272, 25114, 3902, 46231, 426, 755, 29080, 3902, 9, 12535, 17, 558, 187, 50272, 8531, 1237, 64, 85, 10210, 12175, 426, 5248, 29, 16467, 2548, 8743, 4339, 1168, 788, 2548, 6649, 1168, 788, 12871, 12175, 1874, 187, 50272, 31073, 15, 4807, 2838, 426, 46231, 15, 4807, 2838, 15, 91, 2068, 9, 12871, 12175, 558, 187, 50272, 2309, 46231, 28, 187, 50274, 94, 187, 50274, 5045, 41959, 1450, 2354, 633, 27, 551, 187, 50272, 25114, 3902, 46231, 426, 755, 29080, 3902, 9, 12535, 17, 558, 187, 50272, 8531, 1237, 64, 85, 10210, 12175, 426, 5248, 29, 16467, 2548, 8743, 4339, 1168, 788, 2548, 6649, 1168, 788, 12871, 12175, 1874, 187, 50272, 31073, 15, 4807, 2838, 426, 46231, 15, 4807, 2838, 15, 339, 633, 9, 12871, 12175, 558, 187, 50272, 2309, 46231, 28, 187, 50274, 94, 187, 50274, 5045, 41959, 1450, 7073, 2290, 7157, 27, 551, 187, 50272, 605, 38506, 5288, 1048, 4021, 187, 50272, 25114, 3902, 46231, 426, 755, 29080, 3902, 9, 12535, 17, 558, 187, 50272, 31073, 15, 21125, 2838, 426, 8253, 9, 31073, 15, 20007, 2838, 558, 187, 50272, 2309, 46231, 28, 187, 50274, 94, 187, 50274, 5045, 41959, 1450, 39, 3246, 633, 41924, 187, 50272, 605, 38506, 5288, 1048, 4021, 187, 50272, 25114, 3902, 46231, 426, 755, 29080, 3902, 9, 12535, 17, 558, 187, 50272, 31073, 15, 20007, 2838, 426, 4021, 9, 31073, 15, 21125, 2838, 558, 187, 50272, 2309, 46231, 28, 187, 50274, 94, 187, 50274, 5045, 41959, 1450, 41270, 80, 7073, 27, 551, 187, 50272, 25114, 3902, 46231, 426, 755, 29080, 3902, 9, 12535, 17, 558, 187, 50272, 338, 313, 4339, 1168, 788, 2548, 18331, 261, 21125, 31742, 6649, 187, 50270, 31073, 15, 21125, 2838, 426, 8253, 9, 31073, 15, 4807, 2838, 15, 4650, 1992, 20007, 6020, 187, 50272, 7271, 604, 313, 4339, 1168, 788, 2548, 18331, 261, 20007, 31742, 6649, 187, 50270, 31073, 15, 20007, 2838, 426, 46231, 15, 4807, 2838, 15, 4650, 1992, 20007, 1874, 187, 50272, 7271, 604, 313, 4339, 1168, 788, 2548, 18331, 261, 57, 2691, 64, 7073, 1438, 31742, 6649, 551, 187, 50270, 2088, 21125, 1049, 71, 426, 4097, 21125, 1450, 788, 26561, 9, 2088, 21125, 1450, 89, 2597, 20007, 43185, 558, 187, 50270, 9, 4353, 10, 522, 71, 15, 28985, 4509, 2088, 4807, 9, 31073, 15, 4807, 2838, 13, 187, 50254, 50267, 7750, 13, 187, 50254, 50267, 2088, 21125, 1450, 1109, 6560, 4885, 53, 447, 1992, 9586, 558, 187, 50270, 31073, 15, 4807, 2838, 426, 1049, 71, 15, 2713, 4008, 1992, 2088, 4807, 1874, 187, 50272, 94, 187, 50272, 2309, 46231, 28, 187, 50274, 94, 187, 50274, 5045, 41959, 1450, 52, 1433, 80, 7073, 27, 551, 187, 50272, 25114, 3902, 46231, 426, 755, 29080, 3902, 9, 12535, 17, 558, 187, 50272, 338, 313, 4339, 1168, 788, 2548, 18331, 261, 21125, 31742, 6649, 187, 50270, 31073, 15, 21125, 2838, 426, 8253, 9, 31073, 15, 4807, 2838, 15, 36323, 15654, 1992, 20007, 6020, 187, 50272, 7271, 604, 313, 4339, 1168, 788, 2548, 18331, 261, 20007, 31742, 6649, 187, 50270, 31073, 15, 20007, 2838, 426, 46231, 15, 4807, 2838, 15, 36323, 15654, 1992, 20007, 1874, 187, 50272, 7271, 604, 313, 4339, 1168, 788, 2548, 18331, 261, 57, 2691, 64, 7073, 1438, 31742, 6649, 551, 187, 50270, 2088, 21125, 1049, 71, 426, 4097, 21125, 1450, 788, 26561, 9, 2088, 21125, 1450, 89, 2597, 20007, 43185, 558, 187, 50270, 9, 4353, 10, 522, 71, 15, 28985, 4509, 2088, 4807, 9, 31073, 15, 4807, 2838, 13, 187, 50254, 50267, 5672, 13, 187, 50254, 50267, 2088, 21125, 1450, 1109, 6560, 4885, 53, 447, 1992, 9586, 558, 187, 50270, 31073, 15, 4807, 2838, 426, 1049, 71, 15, 2713, 4008, 1992, 2088, 4807, 1874, 187, 50272, 94, 187, 50272, 2309, 46231, 28, 187, 50274, 94, 187, 50274, 5045, 41959, 1450, 7073, 1992, 9571, 27, 1380, 4021, 1168, 2088, 4807, 9436, 22139, 861, 187, 50274, 5045, 41959, 1450, 7073, 1992, 5824, 27, 551, 187, 50272, 25114, 3902, 46231, 426, 755, 29080, 3902, 9, 12535, 17, 558, 187, 50272, 8531, 1237, 64, 85, 10210, 12175, 426, 5248, 29, 16467, 2548, 8743, 4339, 1168, 788, 2548, 6649, 1168, 788, 12871, 12175, 1874, 187, 50272, 338, 313, 12535, 17, 1168, 788, 2548, 18331, 261, 21125, 31742, 6649, 187, 50270, 31073, 15, 4807, 2838, 426, 4097, 4807, 47901, 1450, 15654, 21125, 1992, 2088, 4807, 9, 31073, 15, 21125, 2838, 13, 10210, 12175, 558, 187, 50272, 7271, 604, 313, 12535, 17, 1168, 788, 2548, 18331, 261, 20007, 31742, 6649, 187, 50270, 31073, 15, 4807, 2838, 426, 4097, 4807, 47901, 1450, 15654, 20007, 1992, 2088, 4807, 9, 31073, 15, 20007, 2838, 13, 10210, 12175, 558, 187, 50272, 7271, 604, 313, 12535, 17, 1168, 788, 2548, 18331, 261, 57, 2691, 64, 7073, 1438, 31742, 6649, 551, 187, 50270, 2088, 21125, 1049, 71, 426, 4097, 21125, 9, 2088, 21125, 1450, 89, 2597, 20007, 43185, 13, 46231, 15, 4807, 2838, 558, 187, 50270, 8531, 1540, 64, 85, 362, 28, 187, 50270, 10975, 12841, 28, 187, 50270, 9, 4353, 10, 522, 71, 15, 28985, 1992, 16467, 6395, 87, 13, 10210, 12175, 13, 187, 50254, 50267, 4339, 1168, 788, 12535, 3211, 1082, 381, 10548, 2705, 1450, 7073, 1992, 5824, 13, 187, 50254, 50267, 2088, 21125, 1450, 1109, 53, 319, 472, 26561, 13, 708, 525, 2149, 558, 187, 50270, 31073, 15, 4807, 2838, 426, 362, 28, 1380, 990, 757, 32, 187, 50272, 94, 187, 50272, 2309, 46231, 28, 187, 50274, 94, 187, 50274, 5045, 41959, 1450, 12030, 1992, 4807, 27, 551, 187, 50272, 25114, 3902, 46231, 426, 755, 29080, 3902, 9, 12535, 17, 558, 187, 50272, 8531, 1237, 64, 85, 367, 1206, 12175, 426, 23707, 15, 788, 2548, 5496, 688, 31736, 9, 12535, 17, 1168, 788, 2548, 6020, 187, 50272, 8271, 9, 12030, 12175, 11049, 6705, 3857, 346, 24494, 12219, 4871, 3287, 187, 50272, 31073, 15, 4807, 2838, 426, 4097, 4807, 9, 12030, 12175, 13, 10131, 64, 85, 9, 31073, 15, 11732, 2838, 4027, 187, 50272, 8531, 1237, 64, 85, 4458, 12175, 426, 23707, 15, 788, 2548, 5496, 688, 31736, 9, 4339, 1168, 788, 2548, 6020, 187, 50272, 31073, 15, 4807, 2838, 426, 46231, 15, 4807, 2838, 15, 91, 2068, 3980, 2290, 7157, 9, 4807, 12175, 558, 187, 50272, 2309, 46231, 28, 187, 50274, 94, 187, 50274, 5045, 41959, 1450, 4807, 1992, 12030, 27, 551, 187, 50272, 25114, 3902, 46231, 426, 755, 29080, 3902, 9, 12535, 17, 558, 187, 50272, 8531, 1237, 64, 85, 367, 1206, 12175, 426, 23707, 15, 788, 2548, 5496, 688, 31736, 9, 4339, 1168, 788, 2548, 6020, 187, 50272, 31073, 15, 4807, 2838, 426, 46231, 15, 4807, 2838, 15, 91, 2068, 3980, 2290, 7157, 9, 12030, 12175, 558, 187, 50272, 8271, 9, 31073, 15, 4807, 2838, 15, 788, 12871, 12175, 1082, 11049, 6705, 3857, 346, 24494, 12219, 4871, 3287, 187, 50272, 31073, 15, 11732, 2838, 426, 47767, 31742, 9, 8531, 4773, 64, 85, 9, 31073, 15, 4807, 2838, 15, 788, 59, 7992, 3902, 30652, 187, 50272, 2309, 46231, 28, 187, 50274, 94, 187, 50274, 5045, 41959, 1450, 12871, 19447, 27, 551, 187, 50272, 25114, 3902, 46231, 426, 755, 29080, 3902, 9, 12535, 17, 558, 187, 50272, 2548, 11, 20593, 31742, 426, 7956, 1168, 788, 2548, 1874, 187, 50272, 16065, 313, 12535, 17, 1168, 788, 2548, 18331, 788, 2548, 1838, 6649, 551, 187, 50270, 6986, 27, 26198, 11618, 64, 328, 21943, 494, 1587, 19504, 2372, 4008, 1444, 395, 3287, 187, 50270, 5045, 8078, 1450, 16467, 31742, 1838, 27, 187, 50268, 8271, 9, 22482, 31742, 1168, 261, 39, 4213, 839, 8682, 31742, 1082, 3857, 346, 25359, 2372, 4008, 3287, 187, 50268, 338, 313, 22482, 31742, 1168, 261, 21125, 31742, 6649, 187, 50266, 31073, 15, 21125, 2838, 426, 46231, 15, 4807, 2838, 15, 11209, 1992, 21125, 1874, 187, 50268, 7271, 604, 313, 22482, 31742, 1168, 261, 20007, 31742, 6649, 187, 50266, 31073, 15, 20007, 2838, 426, 46231, 15, 4807, 2838, 15, 11209, 1992, 20007, 1874, 187, 50268, 7054, 28, 187, 50270, 5045, 8078, 1450, 21125, 31742, 1838, 27, 187, 50268, 8271, 9, 22482, 31742, 1168, 261, 16467, 31742, 9, 1237, 10, 3857, 346, 19504, 2372, 4008, 3287, 187, 50268, 31073, 15, 4807, 2838, 426, 4097, 4807, 1450, 9599, 1992, 31736, 9, 31073, 15, 21125, 2838, 558, 187, 50268, 7054, 28, 187, 50270, 5045, 8078, 1450, 20007, 31742, 1838, 27, 187, 50268, 8271, 9, 22482, 31742, 1168, 261, 16467, 31742, 9, 1540, 10, 3857, 346, 19504, 2372, 4008, 3287, 187, 50268, 31073, 15, 4807, 2838, 426, 4097, 4807, 1450, 12237, 1992, 31736, 9, 31073, 15, 20007, 2838, 558, 187, 50268, 7054, 28, 187, 50270, 5045, 8078, 1450, 11732, 31742, 1838, 27, 187, 50268, 8271, 9, 22482, 31742, 1168, 261, 11732, 31742, 1082, 3857, 346, 19504, 2372, 4008, 3287, 187, 50268, 7054, 28, 1380, 755, 29080, 3902, 9, 12535, 17, 10, 50276, 25117, 2168, 11516, 352, 187, 50272, 94, 187, 50272, 2309, 46231, 28, 187, 50274, 94, 187, 50274, 5045, 41959, 1450, 4717, 27, 187, 50274, 5045, 41959, 1450, 39, 4717, 27, 187, 50274, 5045, 41959, 1450, 5623, 27, 187, 50274, 5045, 41959, 1450, 39, 5623, 27, 187, 50274, 5045, 41959, 1450, 46, 335, 27, 187, 50274, 5045, 41959, 1450, 18278, 335, 27, 187, 50274, 5045, 41959, 1450, 7273, 400, 27, 187, 50274, 5045, 41959, 1450, 3871, 400, 27, 187, 50274, 5045, 41959, 1450, 3322, 358, 27, 187, 50274, 5045, 41959, 1450, 7611, 358, 27, 187, 50274, 5045, 41959, 1450, 1898, 27, 187, 50274, 5045, 41959, 1450, 3980, 27, 187, 50274, 5045, 41959, 1450, 57, 263, 27, 551, 187, 50272, 25114, 3902, 418, 8282, 426, 755, 29080, 3902, 9, 12535, 17, 558, 187, 50272, 25114, 3902, 416, 8282, 426, 755, 29080, 3902, 9, 4339, 1168, 788, 10996, 395, 9, 18, 4027, 187, 50272, 25114, 3902, 46231, 28, 187, 50272, 16065, 313, 4339, 1168, 788, 10996, 395, 9, 17, 18474, 788, 2548, 18331, 788, 2548, 1838, 6649, 551, 187, 50272, 6986, 27, 26198, 11618, 64, 328, 21943, 494, 1587, 24494, 823, 1511, 48708, 187, 50272, 5045, 8078, 1450, 16467, 31742, 1838, 27, 187, 50270, 16065, 313, 4339, 1168, 788, 12535, 3211, 6649, 551, 187, 50268, 6986, 27, 26198, 11618, 64, 328, 21943, 494, 1587, 19504, 7007, 1121, 3211, 3287, 187, 50268, 5045, 41959, 1450, 4717, 27, 46231, 15, 4807, 2838, 426, 418, 8282, 15, 4807, 2838, 559, 416, 8282, 15, 4807, 2838, 28, 2740, 28, 187, 50268, 5045, 41959, 1450, 5623, 27, 46231, 15, 4807, 2838, 426, 418, 8282, 15, 4807, 2838, 428, 416, 8282, 15, 4807, 2838, 28, 2740, 28, 187, 50268, 5045, 41959, 1450, 46, 335, 27, 46231, 15, 4807, 2838, 426, 418, 8282, 15, 4807, 2838, 475, 416, 8282, 15, 4807, 2838, 28, 2740, 28, 187, 50268, 5045, 41959, 1450, 7273, 400, 27, 31073, 15, 4807, 2838, 426, 418, 8282, 15, 4807, 2838, 15, 438, 400, 9, 51, 8282, 15, 4807, 2838, 558, 2740, 28, 187, 50268, 5045, 41959, 1450, 3871, 400, 27, 31073, 15, 4807, 2838, 426, 418, 8282, 15, 4807, 2838, 15, 84, 2154, 9, 51, 8282, 15, 4807, 2838, 558, 2740, 28, 187, 50268, 5045, 41959, 1450, 3322, 358, 27, 31073, 15, 4807, 2838, 426, 418, 8282, 15, 4807, 2838, 15, 459, 78, 9, 51, 8282, 15, 4807, 2838, 558, 2740, 28, 187, 50268, 5045, 41959, 1450, 7611, 358, 27, 31073, 15, 4807, 2838, 426, 418, 8282, 15, 4807, 2838, 15, 84, 2013, 9, 51, 8282, 15, 4807, 2838, 558, 2740, 28, 187, 50268, 5045, 41959, 1450, 1898, 27, 46231, 15, 4807, 2838, 426, 418, 8282, 15, 4807, 2838, 708, 416, 8282, 15, 4807, 2838, 28, 2740, 28, 187, 50268, 5045, 41959, 1450, 3980, 27, 50276, 31073, 15, 4807, 2838, 426, 418, 8282, 15, 4807, 2838, 1040, 416, 8282, 15, 4807, 2838, 28, 2740, 28, 187, 50268, 5045, 41959, 1450, 57, 263, 27, 46231, 15, 4807, 2838, 426, 418, 8282, 15, 4807, 2838, 5042, 416, 8282, 15, 4807, 2838, 28, 2740, 28, 187, 50270, 94, 187, 50270, 7054, 28, 187, 50272, 5045, 8078, 1450, 21125, 31742, 1838, 27, 187, 50270, 16065, 313, 4339, 1168, 788, 12535, 3211, 6649, 551, 187, 50268, 6986, 27, 26198, 11618, 64, 328, 21943, 494, 1587, 19504, 8253, 1121, 3211, 3287, 187, 50268, 5045, 41959, 1450, 39, 4717, 27, 187, 50266, 31073, 15, 21125, 2838, 426, 418, 8282, 15, 21125, 2838, 559, 416, 8282, 15, 21125, 2838, 28, 2740, 28, 187, 50268, 5045, 41959, 1450, 39, 5623, 27, 187, 50266, 31073, 15, 21125, 2838, 426, 418, 8282, 15, 21125, 2838, 428, 416, 8282, 15, 21125, 2838, 28, 2740, 28, 187, 50268, 5045, 41959, 1450, 18278, 335, 27, 187, 50266, 31073, 15, 21125, 2838, 426, 418, 8282, 15, 21125, 2838, 475, 416, 8282, 15, 21125, 2838, 28, 2740, 28, 187, 50268, 5045, 41959, 1450, 10914, 400, 27, 187, 50266, 31073, 15, 21125, 2838, 426, 418, 8282, 15, 21125, 2838, 1227, 416, 8282, 15, 21125, 2838, 28, 2740, 28, 187, 50268, 5045, 41959, 1450, 6764, 358, 27, 187, 50266, 31073, 15, 21125, 2838, 426, 6268, 1450, 71, 2307, 9, 45, 8282, 15, 21125, 2838, 13, 51, 8282, 15, 21125, 2838, 558, 2740, 28, 187, 50270, 94, 187, 50270, 7054, 28, 187, 50272, 5045, 8078, 1450, 20007, 31742, 1838, 27, 187, 50270, 16065, 313, 4339, 1168, 788, 12535, 3211, 6649, 551, 187, 50268, 6986, 27, 26198, 11618, 64, 328, 21943, 494, 1587, 19504, 4021, 1121, 3211, 3287, 187, 50268, 5045, 41959, 1450, 39, 4717, 27, 187, 50266, 31073, 15, 20007, 2838, 426, 418, 8282, 15, 20007, 2838, 559, 416, 8282, 15, 20007, 2838, 28, 2740, 28, 187, 50268, 5045, 41959, 1450, 39, 5623, 27, 187, 50266, 31073, 15, 20007, 2838, 426, 418, 8282, 15, 20007, 2838, 428, 416, 8282, 15, 20007, 2838, 28, 2740, 28, 187, 50268, 5045, 41959, 1450, 18278, 335, 27, 187, 50266, 31073, 15, 20007, 2838, 426, 418, 8282, 15, 20007, 2838, 475, 416, 8282, 15, 20007, 2838, 28, 2740, 28, 187, 50268, 5045, 41959, 1450, 10914, 400, 27, 187, 50266, 31073, 15, 20007, 2838, 426, 418, 8282, 15, 20007, 2838, 1227, 416, 8282, 15, 20007, 2838, 28, 2740, 28, 187, 50268, 5045, 41959, 1450, 6764, 358, 27, 187, 50266, 31073, 15, 20007, 2838, 426, 6268, 1450, 71, 2307, 9, 45, 8282, 15, 20007, 2838, 13, 51, 8282, 15, 20007, 2838, 558, 2740, 28, 187, 50270, 94, 187, 50270, 7054, 28, 187, 50272, 5045, 8078, 1450, 57, 2691, 64, 7073, 1438, 31742, 1838, 27, 187, 50272, 5045, 8078, 1450, 4785, 36, 64, 7073, 8196, 31742, 1838, 27, 187, 50272, 5045, 8078, 1450, 7073, 8196, 31742, 1838, 27, 551, 187, 50270, 3474, 892, 85, 18581, 28601, 708, 18581, 426, 7956, 1168, 788, 10996, 395, 9, 17, 18474, 788, 2548, 18331, 788, 39, 5792, 18581, 28601, 1874, 187, 50270, 2088, 21125, 1049, 71, 45, 8282, 426, 4097, 21125, 9, 18581, 13, 418, 8282, 15, 4807, 2838, 558, 187, 50270, 16065, 313, 4339, 1168, 788, 12535, 3211, 6649, 551, 187, 50268, 6986, 27, 26198, 11618, 64, 328, 21943, 494, 1587, 19504, 1048, 4021, 1121, 3211, 3287, 187, 50268, 5045, 41959, 1450, 39, 4717, 27, 187, 50266, 522, 71, 45, 8282, 15, 1911, 9, 2088, 21125, 9, 18581, 13, 416, 8282, 15, 4807, 2838, 582, 4097, 21125, 1450, 1109, 6560, 4885, 53, 447, 1992, 9586, 558, 187, 50266, 31073, 15, 4807, 2838, 426, 1049, 71, 45, 8282, 15, 2713, 4008, 1992, 2088, 4807, 1874, 187, 50266, 7054, 28, 187, 50268, 5045, 41959, 1450, 39, 5623, 27, 187, 50266, 522, 71, 45, 8282, 15, 2377, 43757, 9, 2088, 21125, 9, 18581, 13, 416, 8282, 15, 4807, 2838, 582, 187, 50254, 50274, 2088, 21125, 1450, 1109, 6560, 4885, 53, 447, 1992, 9586, 558, 187, 50266, 31073, 15, 4807, 2838, 426, 1049, 71, 45, 8282, 15, 2713, 4008, 1992, 2088, 4807, 1874, 187, 50266, 7054, 28, 187, 50268, 5045, 41959, 1450, 18278, 335, 27, 187, 50266, 522, 71, 45, 8282, 15, 9961, 33343, 9, 2088, 21125, 9, 18581, 13, 416, 8282, 15, 4807, 2838, 582, 187, 50254, 50274, 2088, 21125, 1450, 1109, 6560, 4885, 53, 447, 1992, 9586, 558, 187, 50266, 31073, 15, 4807, 2838, 426, 1049, 71, 45, 8282, 15, 2713, 4008, 1992, 2088, 4807, 1874, 187, 50266, 7054, 28, 187, 50268, 5045, 41959, 1450, 10914, 400, 27, 187, 50266, 522, 71, 45, 8282, 15, 2154, 504, 9, 2088, 21125, 9, 18581, 13, 416, 8282, 15, 4807, 2838, 582, 187, 50254, 50276, 2088, 21125, 1450, 1109, 6560, 4885, 53, 447, 1992, 9586, 558, 187, 50266, 31073, 15, 4807, 2838, 426, 1049, 71, 45, 8282, 15, 2713, 4008, 1992, 2088, 4807, 1874, 187, 50266, 7054, 28, 187, 50268, 5045, 41959, 1450, 6764, 358, 27, 187, 50266, 522, 71, 45, 8282, 15, 2307, 9, 2088, 21125, 9, 18581, 13, 416, 8282, 15, 4807, 2838, 4027, 187, 50266, 31073, 15, 4807, 2838, 426, 1049, 71, 45, 8282, 15, 2713, 4008, 1992, 2088, 4807, 1874, 187, 50266, 7054, 28, 187, 50268, 94, 187, 50270, 94, 187, 50270, 7054, 28, 187, 50272, 94, 187, 50272, 2309, 46231, 28, 187, 50274, 94, 187, 50274, 6986, 27, 187, 50272, 7054, 28, 187, 50274, 94, 535, 50274, 25074, 2776, 29, 9726, 31, 353, 8433, 28, 187, 50274, 2040, 64, 84, 11000, 64, 33203, 9485, 9, 21611, 558, 187, 50274, 2697, 5291, 346, 29080, 28044, 417, 15726, 27, 346, 5291, 475, 4339, 28, 187, 50274, 16223, 64, 48901, 64, 3775, 9, 2697, 15, 1344, 6020, 187, 50276, 94, 535, 50276, 605, 17501, 13, 359, 452, 247, 2969, 3638, 15, 187, 50276, 25114, 3902, 22195, 28, 187, 50276, 16065, 313, 36, 1168, 788, 2548, 18331, 788, 2548, 1838, 6649, 551, 187, 50276, 5045, 8078, 1450, 21125, 31742, 1838, 27, 187, 50274, 9179, 15, 21125, 2838, 426, 5248, 29, 29080, 7073, 8743, 36, 18474, 38950, 2088, 39, 5023, 28985, 1992, 21125, 1874, 187, 50274, 7054, 28, 187, 50276, 5045, 8078, 1450, 20007, 31742, 1838, 27, 187, 50274, 9179, 15, 20007, 2838, 426, 5248, 29, 29080, 7073, 8743, 36, 18474, 38950, 2088, 39, 5023, 28985, 1992, 20007, 1874, 187, 50274, 7054, 28, 187, 50276, 5045, 8078, 1450, 57, 2691, 64, 7073, 1438, 31742, 1838, 27, 187, 50276, 5045, 8078, 1450, 7073, 8196, 31742, 1838, 27, 187, 50276, 5045, 8078, 1450, 4785, 36, 64, 7073, 8196, 31742, 1838, 27, 187, 50274, 9179, 15, 4807, 2838, 426, 5248, 654, 29080, 7073, 8743, 36, 18474, 38950, 2088, 39, 5023, 2713, 4008, 1992, 2088, 4807, 1874, 187, 50274, 7054, 28, 187, 50276, 5045, 8078, 1450, 16467, 31742, 1838, 27, 187, 50274, 9179, 15, 4807, 2838, 426, 5248, 29, 29080, 4807, 8743, 36, 18474, 38950, 1874, 187, 50274, 7054, 28, 187, 50276, 5045, 8078, 1450, 11732, 31742, 1838, 27, 187, 50274, 338, 313, 8901, 29, 29080, 11732, 13141, 8743, 36, 1228, 187, 50272, 9179, 15, 11732, 2838, 426, 28471, 28, 187, 50274, 7271, 604, 313, 3474, 12917, 475, 39, 426, 24187, 64, 4008, 29, 11594, 8743, 36, 1228, 187, 50272, 9179, 426, 367, 7058, 31073, 9, 788, 11732, 1992, 11594, 3980, 998, 538, 9, 3474, 64, 4008, 29, 11594, 46802, 39, 23090, 187, 50274, 7271, 604, 313, 3474, 11841, 23807, 475, 31073, 426, 24187, 64, 4008, 29, 18590, 23807, 8743, 36, 1228, 187, 50272, 9179, 426, 367, 7058, 31073, 9, 788, 3980, 38, 2225, 18590, 23807, 9, 3474, 64, 4008, 29, 18590, 23807, 46802, 31073, 23090, 187, 50274, 7271, 187, 50272, 38381, 64, 328, 21943, 494, 1587, 20920, 3638, 12219, 1511, 48708, 187, 50274, 7054, 28, 187, 50276, 5045, 8078, 1450, 15219, 31742, 1838, 27, 551, 187, 50274, 10790, 38062, 12753, 28, 187, 50274, 2548, 11, 444, 5616, 31742, 28, 187, 50274, 3474, 22006, 3233, 15219, 475, 3717, 55, 426, 24187, 64, 4008, 29, 29080, 3233, 15219, 8743, 36, 558, 187, 50274, 3474, 22006, 15219, 475, 8887, 426, 24187, 64, 4008, 29, 29080, 15219, 8743, 36, 558, 187, 50274, 3474, 22006, 35619, 1747, 366, 26561, 475, 4280, 59, 426, 24187, 64, 4008, 29, 29080, 35619, 1747, 366, 26561, 8743, 36, 558, 535, 50274, 338, 313, 3717, 55, 10, 551, 187, 50270, 33511, 12753, 426, 3437, 55, 1168, 788, 12753, 25170, 1874, 187, 50270, 39812, 31742, 426, 3437, 55, 1168, 21415, 2548, 1874, 187, 50274, 94, 2010, 604, 313, 8887, 2785, 6582, 59, 10, 551, 187, 50270, 15219, 2548, 11, 657, 31742, 426, 24187, 64, 4008, 29, 15219, 2548, 8743, 36, 1168, 788, 2548, 6020, 187, 50270, 33511, 12753, 426, 657, 31742, 1168, 788, 12753, 25170, 1874, 187, 50270, 39812, 31742, 426, 657, 31742, 1168, 21415, 2548, 1874, 187, 50274, 94, 2010, 551, 187, 50270, 38381, 64, 328, 21943, 494, 1587, 20920, 3638, 4972, 1511, 48708, 187, 50274, 94, 535, 50274, 9179, 15, 35619, 1747, 366, 2838, 15, 35621, 9, 33511, 12753, 558, 187, 50274, 605, 9423, 604, 4972, 6556, 48158, 15, 187, 50274, 338, 9, 39812, 31742, 1168, 261, 21125, 31742, 6649, 551, 187, 50272, 338, 313, 4280, 59, 10, 551, 187, 50270, 25114, 3902, 8253, 26561, 28, 187, 50270, 9599, 26561, 15, 21125, 2838, 426, 470, 15, 71, 28, 187, 50270, 8400, 1450, 9337, 9, 9179, 15, 35619, 1747, 366, 2838, 15, 2043, 5715, 22195, 15, 35619, 1747, 366, 2838, 15, 423, 5715, 187, 50260, 9599, 26561, 558, 187, 50270, 7054, 28, 187, 50272, 94, 187, 50272, 338, 9, 8887, 10, 551, 187, 50270, 1542, 313, 10790, 891, 426, 470, 28, 891, 654, 38062, 12753, 28, 12996, 74, 10, 187, 50268, 338, 6522, 8901, 29, 2447, 1545, 3902, 8743, 8887, 1168, 788, 10996, 395, 9, 74, 10689, 187, 50266, 9179, 15, 35619, 1747, 366, 2838, 60, 74, 1570, 21125, 2838, 426, 5248, 29, 29080, 7073, 8743, 187, 50264, 8887, 1168, 788, 10996, 395, 9, 74, 1228, 1168, 38950, 2088, 39, 5023, 28985, 1992, 21125, 1874, 187, 50270, 7054, 28, 187, 50272, 94, 187, 50272, 338, 9, 3717, 55, 10, 187, 50270, 1542, 313, 10790, 891, 426, 470, 28, 891, 654, 38062, 12753, 28, 12996, 74, 10, 187, 50268, 9179, 15, 35619, 1747, 366, 2838, 60, 74, 1570, 21125, 2838, 426, 3437, 55, 1168, 21415, 1909, 21125, 9, 74, 558, 535, 50272, 7054, 28, 187, 50274, 94, 187, 50274, 605, 9423, 604, 4972, 6556, 33478, 15, 187, 50274, 338, 313, 39812, 31742, 1168, 261, 20007, 31742, 6649, 551, 187, 50272, 338, 313, 4280, 59, 10, 551, 187, 50270, 25114, 3902, 4021, 26561, 28, 187, 50270, 12237, 26561, 15, 20007, 2838, 426, 470, 15, 17, 28, 187, 50270, 8400, 1450, 9337, 9, 9179, 15, 35619, 1747, 366, 2838, 15, 2043, 5715, 22195, 15, 35619, 1747, 366, 2838, 15, 423, 5715, 187, 50260, 12237, 26561, 558, 187, 50270, 7054, 28, 187, 50272, 94, 187, 50272, 338, 9, 8887, 10, 551, 187, 50270, 1542, 313, 10790, 891, 426, 470, 28, 891, 654, 38062, 12753, 28, 12996, 74, 10, 187, 50268, 338, 6522, 8901, 29, 2447, 1545, 3902, 8743, 8887, 1168, 788, 10996, 395, 9, 74, 10689, 187, 50266, 9179, 15, 35619, 1747, 366, 2838, 60, 74, 1570, 20007, 2838, 426, 5248, 29, 29080, 7073, 8743, 187, 50264, 8887, 1168, 788, 10996, 395, 9, 74, 1228, 1168, 38950, 2088, 39, 5023, 28985, 1992, 20007, 1874, 187, 50270, 7054, 28, 187, 50272, 94, 187, 50272, 338, 9, 3717, 55, 10, 187, 50270, 1542, 313, 10790, 891, 426, 470, 28, 891, 654, 38062, 12753, 28, 12996, 74, 10, 187, 50268, 9179, 15, 35619, 1747, 366, 2838, 60, 74, 1570, 20007, 2838, 426, 3437, 55, 1168, 21415, 1909, 20007, 9, 74, 558, 535, 50272, 7054, 28, 187, 50274, 94, 187, 50274, 605, 9423, 604, 4972, 6556, 20935, 15, 187, 50274, 338, 313, 39812, 31742, 1168, 261, 16467, 31742, 6649, 551, 187, 50272, 338, 313, 4280, 59, 10, 551, 187, 50270, 25114, 3902, 540, 26561, 28, 50273, 187, 50270, 565, 26561, 15, 4807, 2838, 426, 4097, 4807, 9, 39812, 31742, 1168, 788, 29094, 5496, 688, 31736, 5715, 470, 962, 558, 187, 50270, 8400, 1450, 9337, 9, 9179, 15, 35619, 1747, 366, 2838, 15, 2043, 5715, 22195, 15, 35619, 1747, 366, 2838, 15, 423, 5715, 187, 50260, 565, 26561, 558, 187, 50270, 7054, 28, 187, 50272, 94, 187, 50272, 338, 9, 8887, 10, 551, 187, 50270, 1542, 313, 10790, 891, 426, 470, 28, 891, 654, 38062, 12753, 28, 12996, 74, 10, 187, 50268, 338, 6522, 8901, 29, 2447, 1545, 3902, 8743, 8887, 1168, 788, 10996, 395, 9, 74, 10689, 187, 50266, 9179, 15, 35619, 1747, 366, 2838, 60, 74, 1570, 4807, 2838, 426, 5248, 29, 29080, 4807, 8743, 187, 50254, 50258, 8887, 1168, 788, 10996, 395, 9, 74, 1228, 1168, 38950, 1874, 187, 50268, 7271, 551, 187, 50266, 9179, 15, 35619, 1747, 366, 2838, 60, 74, 1570, 4807, 2838, 426, 187, 50264, 2088, 4807, 9, 8887, 1168, 788, 10996, 395, 9, 74, 18474, 788, 2548, 18331, 788, 18204, 1483, 5496, 688, 31736, 5715, 470, 558, 187, 50268, 94, 187, 50270, 7054, 28, 187, 50272, 94, 187, 50272, 338, 9, 3717, 55, 10, 187, 50270, 1542, 313, 10790, 891, 426, 470, 28, 891, 654, 38062, 12753, 28, 12996, 74, 10, 187, 50268, 9179, 15, 35619, 1747, 366, 2838, 60, 74, 1570, 4807, 2838, 426, 4097, 4807, 9, 187, 50266, 3717, 55, 1168, 21415, 2548, 18331, 788, 18204, 1483, 5496, 688, 31736, 5715, 187, 50266, 3717, 55, 1168, 21415, 1909, 16467, 9, 74, 4027, 535, 50272, 7054, 28, 187, 50274, 94, 187, 50274, 38381, 64, 328, 21943, 494, 1587, 20920, 3638, 12219, 1511, 48708, 187, 50276, 94, 187, 50276, 7054, 28, 535, 50276, 6986, 27, 187, 50274, 25074, 2776, 29, 9726, 31, 353, 8433, 28, 187, 50274, 2040, 64, 84, 11000, 64, 33203, 9485, 9, 21611, 558, 187, 50274, 2697, 5291, 346, 12641, 27, 22006, 32505, 38758, 323, 1511, 27, 346, 5291, 475, 36, 1168, 788, 2548, 1874, 187, 50274, 16223, 64, 48901, 64, 3775, 9, 2697, 15, 1344, 6020, 187, 50276, 94, 535, 50276, 2309, 22195, 28, 187, 94, 187, 187, 10638, 16106, 4807, 1992, 21911, 428, 401, 3171, 253, 16106, 16721, 11061, 273, 3541, 4983, 432, 399, 296, 187, 10638, 342, 253, 7007, 2918, 275, 4458, 2838, 15, 187, 4659, 2991, 16106, 4807, 1992, 21911, 9, 3474, 4097, 4807, 708, 4807, 2838, 13, 4770, 25, 64, 85, 475, 37, 296, 13, 187, 50254, 50273, 10790, 16106, 16721, 10, 551, 187, 50276, 8271, 4464, 4807, 2838, 15, 788, 12871, 12175, 1082, 12, 24, 1933, 25, 10122, 16106, 16721, 3857, 346, 16467, 1512, 1355, 48708, 187, 50276, 3474, 4770, 25, 64, 85, 475, 30118, 426, 313, 3474, 4770, 25, 64, 85, 9657, 4807, 2838, 15, 788, 24436, 3233, 1874, 535, 50276, 338, 313, 10404, 1450, 2513, 25392, 7689, 757, 15310, 10, 551, 187, 50274, 605, 11573, 14, 423, 757, 3167, 428, 253, 2603, 310, 6960, 432, 418, 15803, 281, 7852, 35, 15, 50276, 13921, 253, 187, 50274, 605, 12095, 432, 418, 15803, 281, 7852, 35, 27, 3166, 247, 4951, 3491, 15, 187, 50274, 47962, 9, 37, 296, 13, 322, 3373, 13, 16106, 16721, 558, 187, 50276, 94, 2010, 551, 187, 50274, 605, 7967, 14, 423, 757, 3167, 428, 253, 2603, 310, 271, 3781, 273, 6705, 2372, 3000, 6960, 432, 187, 50274, 605, 418, 13753, 281, 7852, 56, 15, 50276, 11837, 3159, 310, 6960, 432, 7852, 35, 281, 418, 15803, 15, 50276, 13921, 253, 12095, 187, 50274, 605, 432, 7852, 35, 281, 418, 15803, 27, 38898, 253, 3159, 1340, 13, 533, 417, 253, 11061, 275, 247, 3159, 15, 187, 50274, 6050, 313, 15900, 16721, 2239, 13322, 9, 8531, 1540, 64, 85, 1228, 551, 187, 50272, 15900, 16721, 24869, 13322, 9, 8531, 1540, 64, 85, 558, 187, 50272, 605, 2552, 417, 320, 15616, 594, 897, 1167, 26220, 15, 187, 50272, 47962, 9, 37, 296, 559, 16106, 16721, 13, 322, 3373, 13, 13322, 9, 8531, 1540, 64, 85, 4027, 187, 50272, 30118, 7079, 13322, 9, 8531, 1540, 64, 85, 558, 187, 50274, 94, 535, 50274, 47962, 9, 37, 296, 13, 322, 3373, 559, 13322, 9, 8531, 1540, 64, 85, 10, 428, 16106, 16721, 13, 16106, 16721, 558, 187, 50276, 94, 187, 94, 187, 187, 4353, 12138, 890, 19217, 1450, 15900, 3902, 1992, 21911, 9, 3474, 44304, 3902, 708, 2838, 13, 187, 50254, 50261, 25114, 3902, 475, 12030, 13, 8078, 475, 31742, 10, 551, 187, 50276, 3474, 10698, 16106, 16721, 426, 755, 3233, 9683, 5023, 788, 2548, 15900, 5496, 9, 31742, 558, 535, 50276, 16065, 313, 31742, 1168, 788, 2548, 1838, 6649, 551, 187, 50276, 6986, 27, 187, 50274, 5470, 5943, 1082, 5291, 346, 41909, 4657, 1318, 273, 1511, 346, 5291, 475, 31742, 5291, 346, 18083, 79, 3664, 187, 50274, 7054, 28, 187, 50276, 5045, 8078, 1450, 16467, 31742, 1838, 27, 187, 50274, 15900, 4807, 1992, 21911, 9, 2838, 15, 4807, 2838, 13, 313, 8531, 25, 64, 85, 5627, 12030, 13, 16106, 16721, 558, 187, 50274, 7054, 28, 187, 50276, 5045, 8078, 1450, 21125, 31742, 1838, 27, 187, 50274, 42660, 9599, 5627, 12030, 10, 426, 4009, 15, 21125, 2838, 28, 187, 50274, 7054, 28, 187, 50276, 5045, 8078, 1450, 20007, 31742, 1838, 27, 187, 50274, 42660, 12237, 5627, 12030, 10, 426, 4009, 15, 20007, 2838, 28, 187, 50274, 7054, 28, 187, 50276, 5045, 8078, 1450, 57, 2691, 64, 7073, 1438, 31742, 1838, 27, 187, 50274, 47962, 9, 12030, 13, 4009, 15, 4807, 2838, 15, 788, 24436, 3233, 5715, 884, 558, 187, 50274, 7054, 28, 187, 50276, 5045, 8078, 1450, 11732, 31742, 1838, 27, 187, 50274, 605, 31790, 459, 6705, 2372, 2303, 29476, 403, 4751, 31260, 327, 4567, 2372, 14516, 15, 187, 50274, 338, 313, 15900, 16721, 3613, 13322, 9, 11732, 31742, 1228, 187, 50272, 6441, 1178, 6395, 9, 12030, 1168, 11732, 2838, 582, 470, 13, 16106, 16721, 558, 535, 50274, 42660, 11732, 31742, 5627, 12030, 10, 426, 4009, 15, 11732, 2838, 28, 187, 50274, 7054, 28, 187, 50276, 5045, 8078, 1450, 15219, 31742, 1838, 27, 187, 50274, 1542, 313, 10790, 891, 426, 470, 28, 891, 654, 4009, 15, 35619, 1747, 366, 2838, 15, 3281, 1874, 12996, 74, 10, 551, 187, 50272, 338, 313, 4008, 29, 15219, 2548, 8743, 31742, 18474, 21415, 2548, 18331, 261, 20007, 31742, 6649, 187, 50270, 11, 39246, 12237, 5627, 12030, 8744, 74, 10, 426, 4009, 15, 35619, 1747, 366, 2838, 60, 74, 1570, 20007, 2838, 28, 187, 50272, 338, 313, 4008, 29, 15219, 2548, 8743, 31742, 18474, 21415, 2548, 18331, 261, 21125, 31742, 6649, 187, 50270, 11, 39246, 9599, 5627, 12030, 8744, 74, 10, 426, 4009, 15, 35619, 1747, 366, 2838, 60, 74, 1570, 21125, 2838, 28, 187, 50272, 338, 313, 4008, 29, 15219, 2548, 8743, 31742, 18474, 21415, 2548, 18331, 261, 16467, 31742, 6649, 551, 187, 50270, 10790, 930, 4527, 16721, 426, 9, 2838, 15, 35619, 1747, 366, 2838, 60, 74, 1570, 4807, 2838, 15, 788, 12871, 12175, 1082, 12, 24, 1933, 25, 28, 187, 50270, 15900, 4807, 1992, 21911, 9, 2838, 15, 35619, 1747, 366, 2838, 60, 74, 1570, 4807, 2838, 13, 2490, 50268, 9, 8531, 25, 64, 85, 5627, 12030, 559, 930, 4527, 16721, 11, 74, 13, 930, 4527, 16721, 558, 187, 50272, 94, 187, 50274, 94, 187, 50274, 7054, 28, 187, 50276, 94, 535, 50276, 338, 313, 10404, 1450, 2513, 25392, 7689, 757, 15310, 3613, 755, 3233, 9683, 5023, 261, 25392, 7689, 757, 6649, 187, 50274, 605, 19005, 285, 2303, 403, 1027, 990, 757, 428, 8107, 253, 7141, 11061, 15, 187, 50274, 8400, 1450, 32514, 4464, 8531, 25, 64, 85, 5627, 12030, 13, 16106, 16721, 559, 313, 8531, 25, 64, 85, 5627, 12030, 558, 187, 94, 187, 187, 10638, 16676, 4807, 4509, 21911, 428, 16676, 84, 253, 7007, 7141, 275, 253, 16676, 16721, 11061, 4983, 187, 10638, 432, 322, 3373, 715, 4458, 2838, 13, 534, 310, 8025, 281, 320, 4618, 2217, 285, 281, 2186, 5058, 15, 187, 4659, 2991, 16676, 4807, 4509, 21911, 9, 2088, 4807, 708, 4807, 2838, 13, 4770, 25, 64, 85, 475, 30118, 13, 10698, 16676, 16721, 10, 551, 187, 50276, 8271, 4464, 4807, 2838, 15, 788, 12871, 12175, 1082, 12, 24, 1933, 25, 10122, 16676, 16721, 3857, 346, 16467, 1512, 1355, 48708, 187, 50276, 8531, 25, 64, 85, 475, 37, 296, 426, 294, 22416, 64, 4008, 29, 8531, 25, 64, 85, 475, 8743, 187, 50259, 3474, 64, 4008, 29, 8531, 1540, 64, 85, 475, 8743, 4807, 2838, 15, 788, 24436, 3233, 30652, 535, 50276, 338, 313, 10404, 1450, 2513, 25392, 7689, 757, 15310, 10, 187, 50274, 605, 11573, 14, 423, 757, 3167, 428, 253, 12095, 1364, 320, 6960, 432, 418, 15803, 281, 7852, 35, 15, 187, 50274, 605, 380, 2603, 310, 6960, 432, 418, 15803, 281, 7852, 35, 27, 3166, 247, 4951, 3491, 15, 187, 50274, 47962, 9, 37, 296, 13, 322, 3373, 13, 16676, 16721, 558, 187, 50276, 7271, 551, 187, 50274, 605, 7967, 14, 423, 757, 428, 253, 12095, 310, 271, 3781, 273, 6705, 2372, 3000, 6960, 432, 187, 50274, 605, 418, 13753, 281, 7852, 56, 15, 50276, 11837, 3159, 1364, 320, 6960, 432, 7852, 35, 281, 418, 15803, 15, 50276, 510, 2603, 310, 187, 50274, 605, 6960, 432, 7852, 35, 281, 418, 15803, 27, 38898, 253, 3159, 1340, 13, 533, 417, 253, 11061, 275, 187, 50274, 605, 247, 3159, 15, 187, 50274, 6050, 313, 9624, 16721, 2239, 13322, 9, 8531, 1540, 64, 85, 1228, 551, 187, 50272, 9624, 16721, 24869, 13322, 9, 8531, 1540, 64, 85, 558, 187, 50272, 605, 2552, 417, 320, 15616, 594, 897, 1167, 26220, 15, 187, 50272, 47962, 9, 37, 296, 13, 322, 3373, 559, 16676, 16721, 13, 13322, 9, 8531, 1540, 64, 85, 4027, 187, 50272, 37, 296, 7079, 13322, 9, 8531, 1540, 64, 85, 558, 187, 50274, 94, 535, 50274, 47962, 9, 37, 296, 559, 13322, 9, 8531, 1540, 64, 85, 10, 428, 16676, 16721, 13, 322, 3373, 13, 16676, 16721, 558, 187, 50276, 94, 187, 94, 187, 187, 10638, 38506, 5288, 27, 3389, 187, 10638, 187, 4353, 12138, 890, 19217, 1450, 9624, 3902, 4509, 21911, 9, 25114, 3902, 708, 9179, 13, 187, 50254, 50260, 25114, 3902, 475, 12030, 13, 187, 50254, 50260, 2548, 475, 31742, 10, 551, 187, 50276, 3474, 10698, 16676, 16721, 426, 755, 3233, 9683, 5023, 788, 2548, 15900, 5496, 9, 31742, 558, 535, 50276, 16065, 313, 31742, 1168, 788, 2548, 1838, 6649, 551, 187, 50276, 5045, 8078, 1450, 16467, 31742, 1838, 27, 187, 50274, 605, 743, 4097, 4807, 342, 512, 3000, 8523, 5058, 15, 187, 50274, 9179, 15, 4807, 2838, 426, 4097, 4807, 9, 4008, 29, 16467, 2548, 8743, 31742, 18474, 788, 12871, 12175, 5715, 470, 558, 187, 50274, 9624, 4807, 4509, 21911, 9, 9179, 15, 4807, 2838, 13, 313, 8531, 25, 64, 85, 5627, 12030, 13, 16676, 16721, 558, 187, 50274, 7054, 28, 187, 50276, 5045, 8078, 1450, 21125, 31742, 1838, 27, 187, 50274, 9179, 15, 21125, 2838, 426, 475, 4464, 9599, 5627, 12030, 558, 187, 50274, 7054, 28, 187, 50276, 5045, 8078, 1450, 20007, 31742, 1838, 27, 187, 50274, 9179, 15, 20007, 2838, 426, 475, 4464, 12237, 5627, 12030, 558, 187, 50274, 7054, 28, 187, 50276, 5045, 8078, 1450, 11732, 31742, 1838, 27, 187, 50274, 9179, 15, 11732, 2838, 426, 475, 4464, 11732, 31742, 5627, 12030, 558, 187, 50274, 7054, 28, 187, 50276, 5045, 8078, 1450, 57, 2691, 64, 7073, 1438, 31742, 1838, 27, 551, 187, 50274, 605, 831, 310, 990, 757, 7976, 13, 533, 352, 588, 760, 789, 327, 1269, 2691, 8791, 15, 187, 50274, 605, 38506, 5288, 27, 7395, 417, 15464, 604, 10935, 247, 7601, 32694, 15, 187, 50274, 8531, 1540, 64, 85, 340, 60, 19, 2194, 187, 50274, 47962, 9, 90, 13, 367, 1206, 13, 884, 558, 187, 50274, 9179, 15, 4807, 2838, 426, 4097, 4807, 9, 1438, 13, 340, 558, 187, 50274, 7054, 28, 187, 50276, 94, 187, 50276, 5045, 8078, 1450, 15219, 31742, 1838, 27, 551, 187, 50274, 15149, 475, 28889, 426, 5248, 29, 15219, 2548, 8743, 31742, 558, 187, 50274, 2548, 475, 39812, 53, 426, 36989, 1168, 21415, 2548, 1874, 187, 50274, 3474, 10698, 930, 30377, 983, 426, 36989, 1168, 788, 12753, 25170, 1874, 187, 50274, 338, 313, 39812, 53, 1168, 261, 21125, 31742, 6649, 551, 187, 50272, 9179, 15, 35619, 1747, 366, 2838, 15, 35621, 9, 6370, 30377, 983, 558, 187, 50272, 1542, 313, 10790, 891, 426, 470, 28, 891, 654, 930, 30377, 983, 28, 12996, 74, 10, 187, 50270, 9179, 15, 35619, 1747, 366, 2838, 60, 74, 1570, 21125, 2838, 426, 475, 4464, 9599, 5627, 12030, 12, 74, 558, 187, 50274, 94, 187, 50274, 338, 313, 39812, 53, 1168, 261, 20007, 31742, 6649, 551, 187, 50272, 9179, 15, 35619, 1747, 366, 2838, 15, 35621, 9, 6370, 30377, 983, 558, 187, 50272, 1542, 313, 10790, 891, 426, 470, 28, 891, 654, 930, 30377, 983, 28, 12996, 74, 10, 187, 50270, 9179, 15, 35619, 1747, 366, 2838, 60, 74, 1570, 20007, 2838, 426, 475, 4464, 12237, 5627, 12030, 12, 74, 558, 187, 50274, 94, 187, 50274, 338, 313, 39812, 53, 1168, 261, 16467, 31742, 6649, 551, 187, 50272, 25114, 3902, 540, 26561, 28, 187, 50272, 3474, 10698, 38062, 12871, 12175, 426, 5248, 29, 16467, 2548, 8743, 39812, 53, 18474, 788, 12871, 12175, 1874, 187, 50272, 565, 26561, 15, 4807, 2838, 426, 4097, 4807, 9, 33511, 12871, 12175, 13, 470, 558, 187, 50272, 9179, 15, 35619, 1747, 366, 2838, 15, 35621, 9, 6370, 30377, 983, 13, 540, 26561, 558, 187, 50272, 1542, 313, 10790, 891, 426, 470, 28, 891, 654, 930, 30377, 983, 28, 12996, 74, 10, 187, 50270, 9624, 4807, 4509, 21911, 9, 9179, 15, 35619, 1747, 366, 2838, 60, 74, 1570, 4807, 2838, 13, 187, 50268, 9, 8531, 25, 64, 85, 5627, 12030, 12, 4464, 33511, 12871, 12175, 12, 24, 1933, 25, 2888, 74, 13, 313, 33511, 12871, 12175, 12, 24, 1933, 25, 558, 187, 50274, 94, 187, 50276, 7054, 28, 187, 50276, 94, 187, 50276, 6986, 27, 187, 50274, 25074, 2776, 29, 9726, 31, 353, 8433, 28, 187, 50274, 2040, 64, 84, 11000, 64, 33203, 9485, 9, 21611, 558, 187, 50274, 2697, 5291, 346, 41909, 3301, 1318, 273, 1511, 346, 5291, 475, 31742, 5291, 31487, 28, 187, 50274, 16223, 64, 48901, 64, 3775, 9, 2697, 15, 1344, 6020, 187, 50276, 94, 187, 94, 187, 187, 4353, 12138, 890, 19217, 1450, 10828, 14531, 21911, 9, 3474, 22006, 475, 10828, 13, 2991, 475, 23054, 10, 551, 187, 50276, 18828, 9, 5470, 5943, 1082, 5291, 346, 43, 1433, 27, 23280, 3006, 346, 5291, 5733, 83, 5291, 346, 33051, 187, 50276, 18828, 9, 10828, 1168, 23593, 6020, 187, 50276, 338, 313, 8901, 29, 2447, 1545, 3902, 8743, 10828, 1228, 187, 50274, 2309, 28, 187, 50276, 187, 50276, 338, 313, 3474, 22006, 15219, 475, 5305, 426, 24187, 64, 4008, 29, 29080, 15219, 8743, 10828, 1228, 551, 187, 50274, 10790, 26392, 5496, 426, 187, 50270, 788, 3233, 9683, 5023, 788, 2548, 33715, 5496, 9, 5305, 1168, 788, 2548, 18331, 21415, 2548, 6020, 187, 50274, 1542, 313, 10790, 891, 426, 470, 13, 299, 426, 13874, 1168, 788, 12753, 10996, 2287, 1874, 891, 3613, 299, 28, 12996, 74, 10, 187, 50272, 10828, 14531, 21911, 9, 5305, 1168, 788, 10996, 395, 9, 74, 582, 313, 3615, 5627, 23054, 12, 74, 11, 7050, 5496, 558, 187, 50274, 2309, 28, 187, 50276, 94, 187, 50276, 187, 50276, 338, 313, 8901, 29, 29080, 35619, 1747, 366, 26561, 8743, 10828, 1228, 551, 187, 50274, 6441, 1178, 9, 23054, 13, 470, 13, 313, 3281, 64, 85, 10, 788, 3233, 9683, 5023, 788, 2548, 33715, 5496, 9, 10828, 1168, 788, 2548, 30652, 187, 50274, 2309, 28, 187, 50276, 94, 187, 50276, 187, 50276, 338, 313, 3474, 22006, 6542, 475, 36, 4899, 426, 24187, 64, 4008, 29, 29080, 6542, 8743, 10828, 1228, 551, 187, 50274, 10790, 26392, 5496, 426, 187, 50270, 788, 3233, 9683, 5023, 788, 2548, 33715, 5496, 9, 36, 4899, 1168, 788, 2548, 18331, 21415, 2548, 6020, 187, 50274, 1542, 313, 10790, 891, 426, 470, 13, 299, 426, 330, 4899, 1168, 788, 12753, 10996, 2287, 1874, 891, 3613, 299, 28, 12996, 74, 10, 187, 50272, 10828, 14531, 21911, 9, 36, 4899, 1168, 788, 10996, 395, 9, 74, 582, 313, 3615, 5627, 23054, 12, 74, 11, 7050, 5496, 558, 187, 50274, 2309, 28, 187, 50276, 94, 187, 50276, 187, 50276, 338, 313, 3474, 22006, 21772, 475, 36, 3299, 426, 24187, 64, 4008, 29, 29080, 21772, 8743, 10828, 1228, 551, 187, 50274, 3474, 26253, 9683, 475, 7084, 426, 187, 50270, 788, 3233, 9683, 5023, 788, 21772, 9683, 9, 4008, 29, 21772, 2548, 8743, 36, 3299, 1168, 788, 2548, 30652, 187, 50274, 1542, 313, 10790, 891, 426, 470, 13, 299, 426, 330, 3299, 1168, 788, 12753, 10996, 2287, 1874, 891, 3613, 299, 28, 12996, 74, 10, 187, 50272, 10828, 14531, 21911, 9, 36, 3299, 1168, 788, 10996, 395, 9, 74, 582, 313, 3615, 5627, 23054, 12, 7084, 1168, 21415, 13736, 9, 74, 4027, 187, 50274, 2309, 28, 187, 50276, 94, 535, 50276, 338, 313, 3474, 22006, 3233, 21129, 1624, 475, 3717, 52, 426, 187, 50263, 42927, 64, 4008, 29, 29080, 3233, 21129, 1624, 8743, 10828, 1228, 551, 187, 50274, 605, 3437, 52, 310, 2168, 10090, 562, 275, 3167, 3541, 1340, 15, 187, 50274, 2776, 7676, 5128, 426, 3437, 52, 1168, 788, 24436, 3233, 15888, 1874, 187, 50274, 47962, 9, 23054, 13, 5128, 15, 2203, 5715, 5128, 15, 3281, 6020, 187, 50274, 2309, 28, 187, 50276, 94, 535, 50276, 338, 313, 10828, 1168, 788, 2548, 18331, 261, 6407, 4947, 2548, 6649, 551, 187, 50274, 25114, 3902, 4009, 426, 755, 29080, 3902, 9, 10828, 558, 187, 50274, 15900, 3902, 1992, 21911, 9, 2838, 13, 313, 25114, 3902, 5627, 23054, 13, 10813, 1168, 788, 2548, 6020, 187, 50274, 2309, 28, 187, 50276, 94, 535, 50276, 18828, 9, 5470, 5943, 1082, 5291, 346, 24494, 8078, 27, 346, 5291, 475, 10828, 1168, 788, 2548, 1082, 5291, 8894, 79, 3287, 187, 50276, 38381, 64, 328, 21943, 494, 1587, 20920, 3638, 1511, 281, 26641, 3541, 342, 48708, 187, 94, 187, 187, 10638, 444, 2225, 9030, 706, 932, 428, 444, 2225, 512, 273, 253, 4156, 4903, 281, 3541, 13, 20073, 616, 187, 10638, 12453, 715, 11841, 12236, 15, 50276, 1552, 1364, 1056, 2119, 281, 3491, 253, 9410, 273, 187, 10638, 616, 3302, 14460, 715, 253, 3541, 15, 187, 4353, 12138, 890, 19217, 1450, 35999, 9030, 706, 932, 1082, 551, 187, 50276, 605, 32057, 689, 512, 273, 253, 4156, 4903, 275, 253, 2086, 13, 9771, 839, 253, 3541, 187, 50276, 605, 281, 2186, 731, 15, 50276, 2042, 627, 310, 625, 685, 581, 6333, 13, 513, 247, 3765, 515, 689, 13371, 932, 187, 50276, 605, 281, 4677, 562, 849, 253, 1027, 11911, 943, 3048, 2366, 15, 187, 50276, 8400, 1450, 4251, 29, 8400, 1450, 13934, 29, 8400, 1450, 2703, 13, 8078, 11, 9983, 187, 50267, 3474, 11841, 3902, 28365, 29743, 9030, 706, 932, 6648, 28, 535, 50276, 338, 313, 4120, 2651, 15, 3281, 1082, 3613, 337, 10, 551, 187, 50274, 1542, 313, 10790, 278, 426, 470, 13, 299, 426, 4559, 2651, 15, 3281, 1874, 278, 3613, 299, 28, 12996, 78, 10, 551, 187, 50272, 13570, 708, 46, 426, 475, 4120, 2651, 60, 78, 2194, 187, 50272, 1542, 313, 3474, 6753, 708, 31073, 1163, 353, 15, 28626, 932, 6649, 551, 187, 50270, 338, 313, 31073, 15, 7110, 12599, 10516, 486, 1082, 2785, 46231, 15, 261, 36914, 1082, 2785, 187, 50266, 31073, 15, 7110, 2946, 1946, 10516, 486, 1082, 2785, 2195, 31073, 15, 7110, 2402, 6649, 187, 50268, 25674, 28, 605, 25619, 410, 6024, 13371, 932, 285, 13371, 932, 342, 4812, 24637, 15, 535, 50270, 3474, 11841, 3902, 475, 7, 31073, 14085, 426, 187, 50268, 49967, 9030, 706, 932, 6648, 60, 8400, 1450, 11145, 64, 13934, 9, 31073, 15, 32426, 5715, 46231, 15, 788, 2548, 6649, 2194, 535, 50270, 605, 1310, 436, 310, 253, 806, 673, 359, 1849, 2326, 436, 4156, 13, 352, 310, 253, 15516, 187, 50270, 605, 2715, 15, 187, 50270, 338, 6522, 31073, 14085, 10, 551, 187, 50268, 31073, 14085, 426, 708, 31073, 28, 187, 50268, 25674, 28, 187, 50270, 94, 535, 50270, 605, 1310, 253, 5368, 4156, 310, 2266, 13, 1620, 8171, 352, 15, 187, 50270, 338, 313, 31073, 14085, 1168, 7110, 7504, 10516, 486, 6649, 187, 50268, 25674, 28, 535, 50270, 605, 17501, 13, 359, 871, 352, 434, 3048, 19131, 16, 20881, 13, 8171, 352, 604, 436, 310, 247, 2266, 187, 50270, 605, 9484, 15, 50276, 27225, 5288, 310, 436, 987, 323, 1846, 32, 187, 50270, 338, 313, 31073, 15, 7110, 7504, 10516, 486, 1082, 2785, 46231, 14085, 1168, 7110, 7504, 49341, 10516, 486, 6649, 187, 50268, 31073, 14085, 426, 708, 31073, 28, 187, 50272, 94, 187, 50274, 94, 187, 50276, 94, 535, 50276, 8400, 1450, 11000, 29, 3474, 11841, 3902, 28365, 8758, 5804, 12076, 9030, 706, 932, 28, 187, 50276, 1542, 313, 10790, 278, 426, 470, 13, 299, 426, 4559, 2651, 15, 3281, 1874, 278, 3613, 299, 28, 12996, 78, 10, 551, 187, 50274, 13570, 708, 46, 426, 475, 4120, 2651, 60, 78, 2194, 187, 50274, 1542, 313, 3474, 6753, 708, 31073, 1163, 353, 15, 28626, 932, 6649, 551, 187, 50272, 605, 496, 253, 4471, 14, 8640, 1083, 13, 923, 752, 436, 4156, 8115, 281, 15, 187, 50272, 338, 6522, 49967, 9030, 706, 932, 6648, 15, 11004, 6649, 551, 187, 50270, 338, 313, 3474, 11841, 3902, 475, 31073, 14085, 426, 187, 50264, 49967, 9030, 706, 932, 6648, 60, 8400, 1450, 11145, 64, 13934, 9, 31073, 15, 32426, 5715, 46231, 15, 788, 2548, 6649, 3291, 551, 187, 50268, 605, 1310, 1633, 2010, 310, 253, 15516, 4156, 13, 11823, 436, 581, 15, 187, 50268, 338, 313, 31073, 14085, 3613, 708, 31073, 10, 551, 187, 50266, 11592, 5804, 12076, 9030, 706, 932, 15, 11340, 64, 2135, 6395, 31073, 558, 187, 50266, 25674, 28, 187, 50268, 94, 187, 50270, 94, 187, 50272, 94, 535, 50272, 338, 6522, 31073, 15, 261, 36914, 6649, 551, 187, 50270, 1911, 18590, 27220, 6395, 31073, 13, 755, 21911, 2214, 31073, 6395, 31073, 4027, 187, 50272, 94, 2010, 551, 187, 50270, 605, 37320, 4778, 3806, 15, 15358, 281, 897, 253, 7870, 38837, 281, 187, 50270, 605, 755, 247, 12219, 281, 352, 15, 187, 50270, 338, 313, 4353, 475, 23875, 23054, 426, 187, 50266, 10404, 1450, 31535, 20607, 1450, 13422, 2214, 12236, 4527, 29046, 9, 31073, 15, 32426, 32875, 187, 50268, 1911, 18590, 27220, 6395, 31073, 13, 16048, 23054, 558, 187, 50270, 7271, 551, 187, 50268, 16223, 64, 48901, 64, 3775, 1587, 18179, 417, 11322, 6024, 4156, 2953, 27, 346, 187, 50254, 50274, 12, 31073, 15, 32426, 6020, 187, 50270, 94, 187, 50272, 94, 187, 50274, 94, 535, 50274, 605, 1310, 627, 403, 2709, 11911, 13, 3711, 253, 1327, 14, 36020, 13371, 932, 281, 616, 187, 50274, 605, 15516, 4328, 15, 187, 50274, 338, 6522, 11592, 5804, 12076, 9030, 706, 932, 15, 11004, 6649, 551, 187, 50272, 1542, 313, 10790, 891, 426, 470, 13, 299, 426, 8758, 5804, 12076, 9030, 706, 932, 15, 3281, 1874, 891, 3613, 299, 28, 12996, 74, 10, 551, 187, 50270, 3474, 11841, 3902, 475, 31073, 426, 8758, 5804, 12076, 9030, 706, 932, 60, 74, 2194, 187, 50270, 3474, 11841, 3902, 475, 10206, 55, 426, 187, 50268, 49967, 9030, 706, 932, 6648, 60, 8400, 1450, 11145, 64, 13934, 9, 31073, 1168, 32426, 5715, 46231, 1168, 788, 2548, 6649, 2194, 187, 50270, 4353, 475, 12030, 426, 755, 11732, 1992, 18590, 2042, 31130, 9, 10206, 55, 558, 187, 50270, 8271, 9, 12030, 3857, 346, 5804, 12076, 4156, 3589, 626, 2127, 1541, 1871, 48708, 187, 50270, 1911, 18590, 27220, 9, 31073, 13, 367, 1206, 558, 187, 50272, 94, 187, 50274, 94, 535, 50274, 605, 3954, 326, 512, 273, 253, 13371, 932, 403, 873, 598, 275, 3541, 13, 6287, 949, 731, 512, 187, 50274, 605, 285, 26641, 616, 9410, 15, 187, 50274, 1542, 313, 3474, 6753, 708, 31073, 1163, 353, 15, 28626, 932, 6649, 551, 187, 50272, 338, 6522, 31073, 15, 261, 36914, 6649, 551, 187, 50270, 338, 6522, 49967, 9030, 706, 932, 6648, 15, 11004, 6649, 551, 187, 50268, 338, 313, 3474, 11841, 3902, 475, 31073, 14085, 426, 187, 50262, 49967, 9030, 706, 932, 6648, 60, 8400, 1450, 11145, 64, 13934, 9, 31073, 15, 32426, 5715, 46231, 15, 788, 2548, 6649, 3291, 187, 50266, 338, 313, 31073, 14085, 3613, 708, 31073, 10, 50276, 605, 3105, 253, 15516, 4778, 15, 187, 50264, 25674, 28, 187, 50270, 94, 187, 50270, 38, 2225, 18590, 23807, 6395, 31073, 558, 187, 50272, 94, 187, 50274, 94, 187, 50276, 94, 187, 94, 187, 187, 605, 444, 2225, 18590, 23807, 428, 831, 1332, 802, 953, 253, 7616, 4156, 4778, 281, 253, 187, 605, 2953, 7616, 275, 11841, 12236, 265, 13, 390, 9771, 684, 747, 3541, 604, 352, 434, 417, 187, 605, 2168, 275, 253, 3711, 15, 187, 4353, 12138, 890, 19217, 1450, 38, 2225, 18590, 23807, 9, 3474, 11841, 23807, 475, 31073, 10, 551, 187, 50276, 4353, 475, 7283, 426, 755, 11732, 1992, 18590, 2042, 31130, 9, 31073, 558, 535, 50276, 338, 6522, 7283, 10, 551, 187, 50274, 605, 1310, 352, 434, 417, 2168, 7616, 13, 29211, 3541, 323, 253, 4156, 15, 187, 50274, 7283, 426, 755, 21911, 2214, 31073, 9, 31073, 558, 535, 50274, 605, 1310, 359, 4242, 281, 29211, 3541, 323, 436, 4156, 13, 1091, 15, 187, 50274, 338, 6522, 7283, 10, 1091, 28, 535, 50274, 1911, 18590, 27220, 9, 31073, 13, 19483, 558, 187, 50276, 94, 535, 50276, 605, 5037, 626, 26641, 604, 352, 434, 6293, 1980, 13, 1339, 253, 5268, 513, 352, 15, 187, 50276, 338, 6522, 31073, 1168, 261, 11589, 12599, 6649, 187, 50274, 10828, 14531, 21911, 9, 31073, 1168, 788, 23527, 6081, 5715, 19483, 558, 535, 50276, 2548, 475, 8677, 31742, 426, 46231, 1168, 788, 2548, 18331, 21415, 2548, 1874, 187, 50276, 3281, 64, 85, 46231, 5496, 426, 313, 3281, 64, 85, 10, 788, 3233, 9683, 5023, 788, 2548, 33715, 5496, 9, 8677, 31742, 558, 187, 50276, 12753, 10828, 16721, 7079, 313, 10790, 10, 31073, 5496, 28, 187, 50276, 3424, 12753, 9030, 706, 932, 28, 187, 94, 187 ]
//===-- ExecutionEngine.cpp - Common Implementation shared by EEs ---------===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // This file defines the common interface used by the various execution engine // subclasses. // //===----------------------------------------------------------------------===// #include "llvm/ExecutionEngine/ExecutionEngine.h" #include "llvm/ADT/STLExtras.h" #include "llvm/ADT/SmallString.h" #include "llvm/ADT/Statistic.h" #include "llvm/ExecutionEngine/GenericValue.h" #include "llvm/ExecutionEngine/JITEventListener.h" #include "llvm/ExecutionEngine/RTDyldMemoryManager.h" #include "llvm/IR/Constants.h" #include "llvm/IR/DataLayout.h" #include "llvm/IR/DerivedTypes.h" #include "llvm/IR/Mangler.h" #include "llvm/IR/Module.h" #include "llvm/IR/Operator.h" #include "llvm/IR/ValueHandle.h" #include "llvm/Object/Archive.h" #include "llvm/Object/ObjectFile.h" #include "llvm/Support/Debug.h" #include "llvm/Support/DynamicLibrary.h" #include "llvm/Support/ErrorHandling.h" #include "llvm/Support/Host.h" #include "llvm/Support/MutexGuard.h" #include "llvm/Support/TargetRegistry.h" #include "llvm/Support/raw_ostream.h" #include "llvm/Target/TargetMachine.h" #include <cmath> #include <cstring> using namespace llvm; #define DEBUG_TYPE "jit" STATISTIC(NumInitBytes, "Number of bytes of global vars initialized"); STATISTIC(NumGlobals , "Number of global vars initialized"); ExecutionEngine *(*ExecutionEngine::MCJITCtor)( std::unique_ptr<Module> M, std::string *ErrorStr, std::shared_ptr<MCJITMemoryManager> MemMgr, std::shared_ptr<RuntimeDyld::SymbolResolver> Resolver, std::unique_ptr<TargetMachine> TM) = nullptr; ExecutionEngine *(*ExecutionEngine::OrcMCJITReplacementCtor)( std::string *ErrorStr, std::shared_ptr<MCJITMemoryManager> MemMgr, std::shared_ptr<RuntimeDyld::SymbolResolver> Resolver, std::unique_ptr<TargetMachine> TM) = nullptr; ExecutionEngine *(*ExecutionEngine::InterpCtor)(std::unique_ptr<Module> M, std::string *ErrorStr) =nullptr; void JITEventListener::anchor() {} void ExecutionEngine::Init(std::unique_ptr<Module> M) { CompilingLazily = false; GVCompilationDisabled = false; SymbolSearchingDisabled = false; // IR module verification is enabled by default in debug builds, and disabled // by default in release builds. #ifndef NDEBUG VerifyModules = true; #else VerifyModules = false; #endif assert(M && "Module is null?"); Modules.push_back(std::move(M)); } ExecutionEngine::ExecutionEngine(std::unique_ptr<Module> M) : DL(M->getDataLayout()), LazyFunctionCreator(nullptr) { Init(std::move(M)); } ExecutionEngine::ExecutionEngine(DataLayout DL, std::unique_ptr<Module> M) : DL(std::move(DL)), LazyFunctionCreator(nullptr) { Init(std::move(M)); } ExecutionEngine::~ExecutionEngine() { clearAllGlobalMappings(); } namespace { /// \brief Helper class which uses a value handler to automatically deletes the /// memory block when the GlobalVariable is destroyed. class GVMemoryBlock final : public CallbackVH { GVMemoryBlock(const GlobalVariable *GV) : CallbackVH(const_cast<GlobalVariable*>(GV)) {} public: /// \brief Returns the address the GlobalVariable should be written into. The /// GVMemoryBlock object prefixes that. static char *Create(const GlobalVariable *GV, const DataLayout& TD) { Type *ElTy = GV->getType()->getElementType(); size_t GVSize = (size_t)TD.getTypeAllocSize(ElTy); void *RawMemory = ::operator new( RoundUpToAlignment(sizeof(GVMemoryBlock), TD.getPreferredAlignment(GV)) + GVSize); new(RawMemory) GVMemoryBlock(GV); return static_cast<char*>(RawMemory) + sizeof(GVMemoryBlock); } void deleted() override { // We allocated with operator new and with some extra memory hanging off the // end, so don't just delete this. I'm not sure if this is actually // required. this->~GVMemoryBlock(); ::operator delete(this); } }; } // anonymous namespace char *ExecutionEngine::getMemoryForGV(const GlobalVariable *GV) { return GVMemoryBlock::Create(GV, getDataLayout()); } void ExecutionEngine::addObjectFile(std::unique_ptr<object::ObjectFile> O) { llvm_unreachable("ExecutionEngine subclass doesn't implement addObjectFile."); } void ExecutionEngine::addObjectFile(object::OwningBinary<object::ObjectFile> O) { llvm_unreachable("ExecutionEngine subclass doesn't implement addObjectFile."); } void ExecutionEngine::addArchive(object::OwningBinary<object::Archive> A) { llvm_unreachable("ExecutionEngine subclass doesn't implement addArchive."); } bool ExecutionEngine::removeModule(Module *M) { for (auto I = Modules.begin(), E = Modules.end(); I != E; ++I) { Module *Found = I->get(); if (Found == M) { I->release(); Modules.erase(I); clearGlobalMappingsFromModule(M); return true; } } return false; } Function *ExecutionEngine::FindFunctionNamed(const char *FnName) { for (unsigned i = 0, e = Modules.size(); i != e; ++i) { Function *F = Modules[i]->getFunction(FnName); if (F && !F->isDeclaration()) return F; } return nullptr; } GlobalVariable *ExecutionEngine::FindGlobalVariableNamed(const char *Name, bool AllowInternal) { for (unsigned i = 0, e = Modules.size(); i != e; ++i) { GlobalVariable *GV = Modules[i]->getGlobalVariable(Name,AllowInternal); if (GV && !GV->isDeclaration()) return GV; } return nullptr; } uint64_t ExecutionEngineState::RemoveMapping(StringRef Name) { GlobalAddressMapTy::iterator I = GlobalAddressMap.find(Name); uint64_t OldVal; // FIXME: This is silly, we shouldn't end up with a mapping -> 0 in the // GlobalAddressMap. if (I == GlobalAddressMap.end()) OldVal = 0; else { GlobalAddressReverseMap.erase(I->second); OldVal = I->second; GlobalAddressMap.erase(I); } return OldVal; } std::string ExecutionEngine::getMangledName(const GlobalValue *GV) { assert(GV->hasName() && "Global must have name."); MutexGuard locked(lock); SmallString<128> FullName; const DataLayout &DL = GV->getParent()->getDataLayout().isDefault() ? getDataLayout() : GV->getParent()->getDataLayout(); Mangler::getNameWithPrefix(FullName, GV->getName(), DL); return FullName.str(); } void ExecutionEngine::addGlobalMapping(const GlobalValue *GV, void *Addr) { MutexGuard locked(lock); addGlobalMapping(getMangledName(GV), (uint64_t) Addr); } void ExecutionEngine::addGlobalMapping(StringRef Name, uint64_t Addr) { MutexGuard locked(lock); assert(!Name.empty() && "Empty GlobalMapping symbol name!"); DEBUG(dbgs() << "JIT: Map \'" << Name << "\' to [" << Addr << "]\n";); uint64_t &CurVal = EEState.getGlobalAddressMap()[Name]; assert((!CurVal || !Addr) && "GlobalMapping already established!"); CurVal = Addr; // If we are using the reverse mapping, add it too. if (!EEState.getGlobalAddressReverseMap().empty()) { std::string &V = EEState.getGlobalAddressReverseMap()[CurVal]; assert((!V.empty() || !Name.empty()) && "GlobalMapping already established!"); V = Name; } } void ExecutionEngine::clearAllGlobalMappings() { MutexGuard locked(lock); EEState.getGlobalAddressMap().clear(); EEState.getGlobalAddressReverseMap().clear(); } void ExecutionEngine::clearGlobalMappingsFromModule(Module *M) { MutexGuard locked(lock); for (Function &FI : *M) EEState.RemoveMapping(getMangledName(&FI)); for (GlobalVariable &GI : M->globals()) EEState.RemoveMapping(getMangledName(&GI)); } uint64_t ExecutionEngine::updateGlobalMapping(const GlobalValue *GV, void *Addr) { MutexGuard locked(lock); return updateGlobalMapping(getMangledName(GV), (uint64_t) Addr); } uint64_t ExecutionEngine::updateGlobalMapping(StringRef Name, uint64_t Addr) { MutexGuard locked(lock); ExecutionEngineState::GlobalAddressMapTy &Map = EEState.getGlobalAddressMap(); // Deleting from the mapping? if (!Addr) return EEState.RemoveMapping(Name); uint64_t &CurVal = Map[Name]; uint64_t OldVal = CurVal; if (CurVal && !EEState.getGlobalAddressReverseMap().empty()) EEState.getGlobalAddressReverseMap().erase(CurVal); CurVal = Addr; // If we are using the reverse mapping, add it too. if (!EEState.getGlobalAddressReverseMap().empty()) { std::string &V = EEState.getGlobalAddressReverseMap()[CurVal]; assert((!V.empty() || !Name.empty()) && "GlobalMapping already established!"); V = Name; } return OldVal; } uint64_t ExecutionEngine::getAddressToGlobalIfAvailable(StringRef S) { MutexGuard locked(lock); uint64_t Address = 0; ExecutionEngineState::GlobalAddressMapTy::iterator I = EEState.getGlobalAddressMap().find(S); if (I != EEState.getGlobalAddressMap().end()) Address = I->second; return Address; } void *ExecutionEngine::getPointerToGlobalIfAvailable(StringRef S) { MutexGuard locked(lock); if (void* Address = (void *) getAddressToGlobalIfAvailable(S)) return Address; return nullptr; } void *ExecutionEngine::getPointerToGlobalIfAvailable(const GlobalValue *GV) { MutexGuard locked(lock); return getPointerToGlobalIfAvailable(getMangledName(GV)); } const GlobalValue *ExecutionEngine::getGlobalValueAtAddress(void *Addr) { MutexGuard locked(lock); // If we haven't computed the reverse mapping yet, do so first. if (EEState.getGlobalAddressReverseMap().empty()) { for (ExecutionEngineState::GlobalAddressMapTy::iterator I = EEState.getGlobalAddressMap().begin(), E = EEState.getGlobalAddressMap().end(); I != E; ++I) { StringRef Name = I->first(); uint64_t Addr = I->second; EEState.getGlobalAddressReverseMap().insert(std::make_pair( Addr, Name)); } } std::map<uint64_t, std::string>::iterator I = EEState.getGlobalAddressReverseMap().find((uint64_t) Addr); if (I != EEState.getGlobalAddressReverseMap().end()) { StringRef Name = I->second; for (unsigned i = 0, e = Modules.size(); i != e; ++i) if (GlobalValue *GV = Modules[i]->getNamedValue(Name)) return GV; } return nullptr; } namespace { class ArgvArray { std::unique_ptr<char[]> Array; std::vector<std::unique_ptr<char[]>> Values; public: /// Turn a vector of strings into a nice argv style array of pointers to null /// terminated strings. void *reset(LLVMContext &C, ExecutionEngine *EE, const std::vector<std::string> &InputArgv); }; } // anonymous namespace void *ArgvArray::reset(LLVMContext &C, ExecutionEngine *EE, const std::vector<std::string> &InputArgv) { Values.clear(); // Free the old contents. Values.reserve(InputArgv.size()); unsigned PtrSize = EE->getDataLayout().getPointerSize(); Array = make_unique<char[]>((InputArgv.size()+1)*PtrSize); DEBUG(dbgs() << "JIT: ARGV = " << (void*)Array.get() << "\n"); Type *SBytePtr = Type::getInt8PtrTy(C); for (unsigned i = 0; i != InputArgv.size(); ++i) { unsigned Size = InputArgv[i].size()+1; auto Dest = make_unique<char[]>(Size); DEBUG(dbgs() << "JIT: ARGV[" << i << "] = " << (void*)Dest.get() << "\n"); std::copy(InputArgv[i].begin(), InputArgv[i].end(), Dest.get()); Dest[Size-1] = 0; // Endian safe: Array[i] = (PointerTy)Dest; EE->StoreValueToMemory(PTOGV(Dest.get()), (GenericValue*)(&Array[i*PtrSize]), SBytePtr); Values.push_back(std::move(Dest)); } // Null terminate it EE->StoreValueToMemory(PTOGV(nullptr), (GenericValue*)(&Array[InputArgv.size()*PtrSize]), SBytePtr); return Array.get(); } void ExecutionEngine::runStaticConstructorsDestructors(Module &module, bool isDtors) { const char *Name = isDtors ? "llvm.global_dtors" : "llvm.global_ctors"; GlobalVariable *GV = module.getNamedGlobal(Name); // If this global has internal linkage, or if it has a use, then it must be // an old-style (llvmgcc3) static ctor with __main linked in and in use. If // this is the case, don't execute any of the global ctors, __main will do // it. if (!GV || GV->isDeclaration() || GV->hasLocalLinkage()) return; // Should be an array of '{ i32, void ()* }' structs. The first value is // the init priority, which we ignore. ConstantArray *InitList = dyn_cast<ConstantArray>(GV->getInitializer()); if (!InitList) return; for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i) { ConstantStruct *CS = dyn_cast<ConstantStruct>(InitList->getOperand(i)); if (!CS) continue; Constant *FP = CS->getOperand(1); if (FP->isNullValue()) continue; // Found a sentinal value, ignore. // Strip off constant expression casts. if (ConstantExpr *CE = dyn_cast<ConstantExpr>(FP)) if (CE->isCast()) FP = CE->getOperand(0); // Execute the ctor/dtor function! if (Function *F = dyn_cast<Function>(FP)) runFunction(F, None); // FIXME: It is marginally lame that we just do nothing here if we see an // entry we don't recognize. It might not be unreasonable for the verifier // to not even allow this and just assert here. } } void ExecutionEngine::runStaticConstructorsDestructors(bool isDtors) { // Execute global ctors/dtors for each module in the program. for (std::unique_ptr<Module> &M : Modules) runStaticConstructorsDestructors(*M, isDtors); } #ifndef NDEBUG /// isTargetNullPtr - Return whether the target pointer stored at Loc is null. static bool isTargetNullPtr(ExecutionEngine *EE, void *Loc) { unsigned PtrSize = EE->getDataLayout().getPointerSize(); for (unsigned i = 0; i < PtrSize; ++i) if (*(i + (uint8_t*)Loc)) return false; return true; } #endif int ExecutionEngine::runFunctionAsMain(Function *Fn, const std::vector<std::string> &argv, const char * const * envp) { std::vector<GenericValue> GVArgs; GenericValue GVArgc; GVArgc.IntVal = APInt(32, argv.size()); // Check main() type unsigned NumArgs = Fn->getFunctionType()->getNumParams(); FunctionType *FTy = Fn->getFunctionType(); Type* PPInt8Ty = Type::getInt8PtrTy(Fn->getContext())->getPointerTo(); // Check the argument types. if (NumArgs > 3) report_fatal_error("Invalid number of arguments of main() supplied"); if (NumArgs >= 3 && FTy->getParamType(2) != PPInt8Ty) report_fatal_error("Invalid type for third argument of main() supplied"); if (NumArgs >= 2 && FTy->getParamType(1) != PPInt8Ty) report_fatal_error("Invalid type for second argument of main() supplied"); if (NumArgs >= 1 && !FTy->getParamType(0)->isIntegerTy(32)) report_fatal_error("Invalid type for first argument of main() supplied"); if (!FTy->getReturnType()->isIntegerTy() && !FTy->getReturnType()->isVoidTy()) report_fatal_error("Invalid return type of main() supplied"); ArgvArray CArgv; ArgvArray CEnv; if (NumArgs) { GVArgs.push_back(GVArgc); // Arg #0 = argc. if (NumArgs > 1) { // Arg #1 = argv. GVArgs.push_back(PTOGV(CArgv.reset(Fn->getContext(), this, argv))); assert(!isTargetNullPtr(this, GVTOP(GVArgs[1])) && "argv[0] was null after CreateArgv"); if (NumArgs > 2) { std::vector<std::string> EnvVars; for (unsigned i = 0; envp[i]; ++i) EnvVars.emplace_back(envp[i]); // Arg #2 = envp. GVArgs.push_back(PTOGV(CEnv.reset(Fn->getContext(), this, EnvVars))); } } } return runFunction(Fn, GVArgs).IntVal.getZExtValue(); } EngineBuilder::EngineBuilder() : EngineBuilder(nullptr) {} EngineBuilder::EngineBuilder(std::unique_ptr<Module> M) : M(std::move(M)), WhichEngine(EngineKind::Either), ErrorStr(nullptr), OptLevel(CodeGenOpt::Default), MemMgr(nullptr), Resolver(nullptr), RelocModel(Reloc::Default), CMModel(CodeModel::JITDefault), UseOrcMCJITReplacement(false) { // IR module verification is enabled by default in debug builds, and disabled // by default in release builds. #ifndef NDEBUG VerifyModules = true; #else VerifyModules = false; #endif } EngineBuilder::~EngineBuilder() = default; EngineBuilder &EngineBuilder::setMCJITMemoryManager( std::unique_ptr<RTDyldMemoryManager> mcjmm) { auto SharedMM = std::shared_ptr<RTDyldMemoryManager>(std::move(mcjmm)); MemMgr = SharedMM; Resolver = SharedMM; return *this; } EngineBuilder& EngineBuilder::setMemoryManager(std::unique_ptr<MCJITMemoryManager> MM) { MemMgr = std::shared_ptr<MCJITMemoryManager>(std::move(MM)); return *this; } EngineBuilder& EngineBuilder::setSymbolResolver(std::unique_ptr<RuntimeDyld::SymbolResolver> SR) { Resolver = std::shared_ptr<RuntimeDyld::SymbolResolver>(std::move(SR)); return *this; } ExecutionEngine *EngineBuilder::create(TargetMachine *TM) { std::unique_ptr<TargetMachine> TheTM(TM); // Take ownership. // Make sure we can resolve symbols in the program as well. The zero arg // to the function tells DynamicLibrary to load the program, not a library. if (sys::DynamicLibrary::LoadLibraryPermanently(nullptr, ErrorStr)) return nullptr; // If the user specified a memory manager but didn't specify which engine to // create, we assume they only want the JIT, and we fail if they only want // the interpreter. if (MemMgr) { if (WhichEngine & EngineKind::JIT) WhichEngine = EngineKind::JIT; else { if (ErrorStr) *ErrorStr = "Cannot create an interpreter with a memory manager."; return nullptr; } } // Unless the interpreter was explicitly selected or the JIT is not linked, // try making a JIT. if ((WhichEngine & EngineKind::JIT) && TheTM) { Triple TT(M->getTargetTriple()); if (!TM->getTarget().hasJIT()) { errs() << "WARNING: This target JIT is not designed for the host" << " you are running. If bad things happen, please choose" << " a different -march switch.\n"; } ExecutionEngine *EE = nullptr; if (ExecutionEngine::OrcMCJITReplacementCtor && UseOrcMCJITReplacement) { EE = ExecutionEngine::OrcMCJITReplacementCtor(ErrorStr, std::move(MemMgr), std::move(Resolver), std::move(TheTM)); EE->addModule(std::move(M)); } else if (ExecutionEngine::MCJITCtor) EE = ExecutionEngine::MCJITCtor(std::move(M), ErrorStr, std::move(MemMgr), std::move(Resolver), std::move(TheTM)); if (EE) { EE->setVerifyModules(VerifyModules); return EE; } } // If we can't make a JIT and we didn't request one specifically, try making // an interpreter instead. if (WhichEngine & EngineKind::Interpreter) { if (ExecutionEngine::InterpCtor) return ExecutionEngine::InterpCtor(std::move(M), ErrorStr); if (ErrorStr) *ErrorStr = "Interpreter has not been linked in."; return nullptr; } if ((WhichEngine & EngineKind::JIT) && !ExecutionEngine::MCJITCtor) { if (ErrorStr) *ErrorStr = "JIT has not been linked in."; } return nullptr; } void *ExecutionEngine::getPointerToGlobal(const GlobalValue *GV) { if (Function *F = const_cast<Function*>(dyn_cast<Function>(GV))) return getPointerToFunction(F); MutexGuard locked(lock); if (void* P = getPointerToGlobalIfAvailable(GV)) return P; // Global variable might have been added since interpreter started. if (GlobalVariable *GVar = const_cast<GlobalVariable *>(dyn_cast<GlobalVariable>(GV))) EmitGlobalVariable(GVar); else llvm_unreachable("Global hasn't had an address allocated yet!"); return getPointerToGlobalIfAvailable(GV); } /// \brief Converts a Constant* into a GenericValue, including handling of /// ConstantExpr values. GenericValue ExecutionEngine::getConstantValue(const Constant *C) { // If its undefined, return the garbage. if (isa<UndefValue>(C)) { GenericValue Result; switch (C->getType()->getTypeID()) { default: break; case Type::IntegerTyID: case Type::X86_FP80TyID: case Type::FP128TyID: case Type::PPC_FP128TyID: // Although the value is undefined, we still have to construct an APInt // with the correct bit width. Result.IntVal = APInt(C->getType()->getPrimitiveSizeInBits(), 0); break; case Type::StructTyID: { // if the whole struct is 'undef' just reserve memory for the value. if(StructType *STy = dyn_cast<StructType>(C->getType())) { unsigned int elemNum = STy->getNumElements(); Result.AggregateVal.resize(elemNum); for (unsigned int i = 0; i < elemNum; ++i) { Type *ElemTy = STy->getElementType(i); if (ElemTy->isIntegerTy()) Result.AggregateVal[i].IntVal = APInt(ElemTy->getPrimitiveSizeInBits(), 0); else if (ElemTy->isAggregateType()) { const Constant *ElemUndef = UndefValue::get(ElemTy); Result.AggregateVal[i] = getConstantValue(ElemUndef); } } } } break; case Type::VectorTyID: // if the whole vector is 'undef' just reserve memory for the value. auto* VTy = dyn_cast<VectorType>(C->getType()); Type *ElemTy = VTy->getElementType(); unsigned int elemNum = VTy->getNumElements(); Result.AggregateVal.resize(elemNum); if (ElemTy->isIntegerTy()) for (unsigned int i = 0; i < elemNum; ++i) Result.AggregateVal[i].IntVal = APInt(ElemTy->getPrimitiveSizeInBits(), 0); break; } return Result; } // Otherwise, if the value is a ConstantExpr... if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) { Constant *Op0 = CE->getOperand(0); switch (CE->getOpcode()) { case Instruction::GetElementPtr: { // Compute the index GenericValue Result = getConstantValue(Op0); APInt Offset(DL.getPointerSizeInBits(), 0); cast<GEPOperator>(CE)->accumulateConstantOffset(DL, Offset); char* tmp = (char*) Result.PointerVal; Result = PTOGV(tmp + Offset.getSExtValue()); return Result; } case Instruction::Trunc: { GenericValue GV = getConstantValue(Op0); uint32_t BitWidth = cast<IntegerType>(CE->getType())->getBitWidth(); GV.IntVal = GV.IntVal.trunc(BitWidth); return GV; } case Instruction::ZExt: { GenericValue GV = getConstantValue(Op0); uint32_t BitWidth = cast<IntegerType>(CE->getType())->getBitWidth(); GV.IntVal = GV.IntVal.zext(BitWidth); return GV; } case Instruction::SExt: { GenericValue GV = getConstantValue(Op0); uint32_t BitWidth = cast<IntegerType>(CE->getType())->getBitWidth(); GV.IntVal = GV.IntVal.sext(BitWidth); return GV; } case Instruction::FPTrunc: { // FIXME long double GenericValue GV = getConstantValue(Op0); GV.FloatVal = float(GV.DoubleVal); return GV; } case Instruction::FPExt:{ // FIXME long double GenericValue GV = getConstantValue(Op0); GV.DoubleVal = double(GV.FloatVal); return GV; } case Instruction::UIToFP: { GenericValue GV = getConstantValue(Op0); if (CE->getType()->isFloatTy()) GV.FloatVal = float(GV.IntVal.roundToDouble()); else if (CE->getType()->isDoubleTy()) GV.DoubleVal = GV.IntVal.roundToDouble(); else if (CE->getType()->isX86_FP80Ty()) { APFloat apf = APFloat::getZero(APFloat::x87DoubleExtended); (void)apf.convertFromAPInt(GV.IntVal, false, APFloat::rmNearestTiesToEven); GV.IntVal = apf.bitcastToAPInt(); } return GV; } case Instruction::SIToFP: { GenericValue GV = getConstantValue(Op0); if (CE->getType()->isFloatTy()) GV.FloatVal = float(GV.IntVal.signedRoundToDouble()); else if (CE->getType()->isDoubleTy()) GV.DoubleVal = GV.IntVal.signedRoundToDouble(); else if (CE->getType()->isX86_FP80Ty()) { APFloat apf = APFloat::getZero(APFloat::x87DoubleExtended); (void)apf.convertFromAPInt(GV.IntVal, true, APFloat::rmNearestTiesToEven); GV.IntVal = apf.bitcastToAPInt(); } return GV; } case Instruction::FPToUI: // double->APInt conversion handles sign case Instruction::FPToSI: { GenericValue GV = getConstantValue(Op0); uint32_t BitWidth = cast<IntegerType>(CE->getType())->getBitWidth(); if (Op0->getType()->isFloatTy()) GV.IntVal = APIntOps::RoundFloatToAPInt(GV.FloatVal, BitWidth); else if (Op0->getType()->isDoubleTy()) GV.IntVal = APIntOps::RoundDoubleToAPInt(GV.DoubleVal, BitWidth); else if (Op0->getType()->isX86_FP80Ty()) { APFloat apf = APFloat(APFloat::x87DoubleExtended, GV.IntVal); uint64_t v; bool ignored; (void)apf.convertToInteger(&v, BitWidth, CE->getOpcode()==Instruction::FPToSI, APFloat::rmTowardZero, &ignored); GV.IntVal = v; // endian? } return GV; } case Instruction::PtrToInt: { GenericValue GV = getConstantValue(Op0); uint32_t PtrWidth = DL.getTypeSizeInBits(Op0->getType()); assert(PtrWidth <= 64 && "Bad pointer width"); GV.IntVal = APInt(PtrWidth, uintptr_t(GV.PointerVal)); uint32_t IntWidth = DL.getTypeSizeInBits(CE->getType()); GV.IntVal = GV.IntVal.zextOrTrunc(IntWidth); return GV; } case Instruction::IntToPtr: { GenericValue GV = getConstantValue(Op0); uint32_t PtrWidth = DL.getTypeSizeInBits(CE->getType()); GV.IntVal = GV.IntVal.zextOrTrunc(PtrWidth); assert(GV.IntVal.getBitWidth() <= 64 && "Bad pointer width"); GV.PointerVal = PointerTy(uintptr_t(GV.IntVal.getZExtValue())); return GV; } case Instruction::BitCast: { GenericValue GV = getConstantValue(Op0); Type* DestTy = CE->getType(); switch (Op0->getType()->getTypeID()) { default: llvm_unreachable("Invalid bitcast operand"); case Type::IntegerTyID: assert(DestTy->isFloatingPointTy() && "invalid bitcast"); if (DestTy->isFloatTy()) GV.FloatVal = GV.IntVal.bitsToFloat(); else if (DestTy->isDoubleTy()) GV.DoubleVal = GV.IntVal.bitsToDouble(); break; case Type::FloatTyID: assert(DestTy->isIntegerTy(32) && "Invalid bitcast"); GV.IntVal = APInt::floatToBits(GV.FloatVal); break; case Type::DoubleTyID: assert(DestTy->isIntegerTy(64) && "Invalid bitcast"); GV.IntVal = APInt::doubleToBits(GV.DoubleVal); break; case Type::PointerTyID: assert(DestTy->isPointerTy() && "Invalid bitcast"); break; // getConstantValue(Op0) above already converted it } return GV; } case Instruction::Add: case Instruction::FAdd: case Instruction::Sub: case Instruction::FSub: case Instruction::Mul: case Instruction::FMul: case Instruction::UDiv: case Instruction::SDiv: case Instruction::URem: case Instruction::SRem: case Instruction::And: case Instruction::Or: case Instruction::Xor: { GenericValue LHS = getConstantValue(Op0); GenericValue RHS = getConstantValue(CE->getOperand(1)); GenericValue GV; switch (CE->getOperand(0)->getType()->getTypeID()) { default: llvm_unreachable("Bad add type!"); case Type::IntegerTyID: switch (CE->getOpcode()) { default: llvm_unreachable("Invalid integer opcode"); case Instruction::Add: GV.IntVal = LHS.IntVal + RHS.IntVal; break; case Instruction::Sub: GV.IntVal = LHS.IntVal - RHS.IntVal; break; case Instruction::Mul: GV.IntVal = LHS.IntVal * RHS.IntVal; break; case Instruction::UDiv:GV.IntVal = LHS.IntVal.udiv(RHS.IntVal); break; case Instruction::SDiv:GV.IntVal = LHS.IntVal.sdiv(RHS.IntVal); break; case Instruction::URem:GV.IntVal = LHS.IntVal.urem(RHS.IntVal); break; case Instruction::SRem:GV.IntVal = LHS.IntVal.srem(RHS.IntVal); break; case Instruction::And: GV.IntVal = LHS.IntVal & RHS.IntVal; break; case Instruction::Or: GV.IntVal = LHS.IntVal | RHS.IntVal; break; case Instruction::Xor: GV.IntVal = LHS.IntVal ^ RHS.IntVal; break; } break; case Type::FloatTyID: switch (CE->getOpcode()) { default: llvm_unreachable("Invalid float opcode"); case Instruction::FAdd: GV.FloatVal = LHS.FloatVal + RHS.FloatVal; break; case Instruction::FSub: GV.FloatVal = LHS.FloatVal - RHS.FloatVal; break; case Instruction::FMul: GV.FloatVal = LHS.FloatVal * RHS.FloatVal; break; case Instruction::FDiv: GV.FloatVal = LHS.FloatVal / RHS.FloatVal; break; case Instruction::FRem: GV.FloatVal = std::fmod(LHS.FloatVal,RHS.FloatVal); break; } break; case Type::DoubleTyID: switch (CE->getOpcode()) { default: llvm_unreachable("Invalid double opcode"); case Instruction::FAdd: GV.DoubleVal = LHS.DoubleVal + RHS.DoubleVal; break; case Instruction::FSub: GV.DoubleVal = LHS.DoubleVal - RHS.DoubleVal; break; case Instruction::FMul: GV.DoubleVal = LHS.DoubleVal * RHS.DoubleVal; break; case Instruction::FDiv: GV.DoubleVal = LHS.DoubleVal / RHS.DoubleVal; break; case Instruction::FRem: GV.DoubleVal = std::fmod(LHS.DoubleVal,RHS.DoubleVal); break; } break; case Type::X86_FP80TyID: case Type::PPC_FP128TyID: case Type::FP128TyID: { const fltSemantics &Sem = CE->getOperand(0)->getType()->getFltSemantics(); APFloat apfLHS = APFloat(Sem, LHS.IntVal); switch (CE->getOpcode()) { default: llvm_unreachable("Invalid long double opcode"); case Instruction::FAdd: apfLHS.add(APFloat(Sem, RHS.IntVal), APFloat::rmNearestTiesToEven); GV.IntVal = apfLHS.bitcastToAPInt(); break; case Instruction::FSub: apfLHS.subtract(APFloat(Sem, RHS.IntVal), APFloat::rmNearestTiesToEven); GV.IntVal = apfLHS.bitcastToAPInt(); break; case Instruction::FMul: apfLHS.multiply(APFloat(Sem, RHS.IntVal), APFloat::rmNearestTiesToEven); GV.IntVal = apfLHS.bitcastToAPInt(); break; case Instruction::FDiv: apfLHS.divide(APFloat(Sem, RHS.IntVal), APFloat::rmNearestTiesToEven); GV.IntVal = apfLHS.bitcastToAPInt(); break; case Instruction::FRem: apfLHS.mod(APFloat(Sem, RHS.IntVal)); GV.IntVal = apfLHS.bitcastToAPInt(); break; } } break; } return GV; } default: break; } SmallString<256> Msg; raw_svector_ostream OS(Msg); OS << "ConstantExpr not handled: " << *CE; report_fatal_error(OS.str()); } // Otherwise, we have a simple constant. GenericValue Result; switch (C->getType()->getTypeID()) { case Type::FloatTyID: Result.FloatVal = cast<ConstantFP>(C)->getValueAPF().convertToFloat(); break; case Type::DoubleTyID: Result.DoubleVal = cast<ConstantFP>(C)->getValueAPF().convertToDouble(); break; case Type::X86_FP80TyID: case Type::FP128TyID: case Type::PPC_FP128TyID: Result.IntVal = cast <ConstantFP>(C)->getValueAPF().bitcastToAPInt(); break; case Type::IntegerTyID: Result.IntVal = cast<ConstantInt>(C)->getValue(); break; case Type::PointerTyID: if (isa<ConstantPointerNull>(C)) Result.PointerVal = nullptr; else if (const Function *F = dyn_cast<Function>(C)) Result = PTOGV(getPointerToFunctionOrStub(const_cast<Function*>(F))); else if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(C)) Result = PTOGV(getOrEmitGlobalVariable(const_cast<GlobalVariable*>(GV))); else llvm_unreachable("Unknown constant pointer type!"); break; case Type::VectorTyID: { unsigned elemNum; Type* ElemTy; const ConstantDataVector *CDV = dyn_cast<ConstantDataVector>(C); const ConstantVector *CV = dyn_cast<ConstantVector>(C); const ConstantAggregateZero *CAZ = dyn_cast<ConstantAggregateZero>(C); if (CDV) { elemNum = CDV->getNumElements(); ElemTy = CDV->getElementType(); } else if (CV || CAZ) { VectorType* VTy = dyn_cast<VectorType>(C->getType()); elemNum = VTy->getNumElements(); ElemTy = VTy->getElementType(); } else { llvm_unreachable("Unknown constant vector type!"); } Result.AggregateVal.resize(elemNum); // Check if vector holds floats. if(ElemTy->isFloatTy()) { if (CAZ) { GenericValue floatZero; floatZero.FloatVal = 0.f; std::fill(Result.AggregateVal.begin(), Result.AggregateVal.end(), floatZero); break; } if(CV) { for (unsigned i = 0; i < elemNum; ++i) if (!isa<UndefValue>(CV->getOperand(i))) Result.AggregateVal[i].FloatVal = cast<ConstantFP>( CV->getOperand(i))->getValueAPF().convertToFloat(); break; } if(CDV) for (unsigned i = 0; i < elemNum; ++i) Result.AggregateVal[i].FloatVal = CDV->getElementAsFloat(i); break; } // Check if vector holds doubles. if (ElemTy->isDoubleTy()) { if (CAZ) { GenericValue doubleZero; doubleZero.DoubleVal = 0.0; std::fill(Result.AggregateVal.begin(), Result.AggregateVal.end(), doubleZero); break; } if(CV) { for (unsigned i = 0; i < elemNum; ++i) if (!isa<UndefValue>(CV->getOperand(i))) Result.AggregateVal[i].DoubleVal = cast<ConstantFP>( CV->getOperand(i))->getValueAPF().convertToDouble(); break; } if(CDV) for (unsigned i = 0; i < elemNum; ++i) Result.AggregateVal[i].DoubleVal = CDV->getElementAsDouble(i); break; } // Check if vector holds integers. if (ElemTy->isIntegerTy()) { if (CAZ) { GenericValue intZero; intZero.IntVal = APInt(ElemTy->getScalarSizeInBits(), 0ull); std::fill(Result.AggregateVal.begin(), Result.AggregateVal.end(), intZero); break; } if(CV) { for (unsigned i = 0; i < elemNum; ++i) if (!isa<UndefValue>(CV->getOperand(i))) Result.AggregateVal[i].IntVal = cast<ConstantInt>( CV->getOperand(i))->getValue(); else { Result.AggregateVal[i].IntVal = APInt(CV->getOperand(i)->getType()->getPrimitiveSizeInBits(), 0); } break; } if(CDV) for (unsigned i = 0; i < elemNum; ++i) Result.AggregateVal[i].IntVal = APInt( CDV->getElementType()->getPrimitiveSizeInBits(), CDV->getElementAsInteger(i)); break; } llvm_unreachable("Unknown constant pointer type!"); } break; default: SmallString<256> Msg; raw_svector_ostream OS(Msg); OS << "ERROR: Constant unimplemented for type: " << *C->getType(); report_fatal_error(OS.str()); } return Result; } /// StoreIntToMemory - Fills the StoreBytes bytes of memory starting from Dst /// with the integer held in IntVal. static void StoreIntToMemory(const APInt &IntVal, uint8_t *Dst, unsigned StoreBytes) { assert((IntVal.getBitWidth()+7)/8 >= StoreBytes && "Integer too small!"); const uint8_t *Src = (const uint8_t *)IntVal.getRawData(); if (sys::IsLittleEndianHost) { // Little-endian host - the source is ordered from LSB to MSB. Order the // destination from LSB to MSB: Do a straight copy. memcpy(Dst, Src, StoreBytes); } else { // Big-endian host - the source is an array of 64 bit words ordered from // LSW to MSW. Each word is ordered from MSB to LSB. Order the destination // from MSB to LSB: Reverse the word order, but not the bytes in a word. while (StoreBytes > sizeof(uint64_t)) { StoreBytes -= sizeof(uint64_t); // May not be aligned so use memcpy. memcpy(Dst + StoreBytes, Src, sizeof(uint64_t)); Src += sizeof(uint64_t); } memcpy(Dst, Src + sizeof(uint64_t) - StoreBytes, StoreBytes); } } void ExecutionEngine::StoreValueToMemory(const GenericValue &Val, GenericValue *Ptr, Type *Ty) { const unsigned StoreBytes = getDataLayout().getTypeStoreSize(Ty); switch (Ty->getTypeID()) { default: dbgs() << "Cannot store value of type " << *Ty << "!\n"; break; case Type::IntegerTyID: StoreIntToMemory(Val.IntVal, (uint8_t*)Ptr, StoreBytes); break; case Type::FloatTyID: *((float*)Ptr) = Val.FloatVal; break; case Type::DoubleTyID: *((double*)Ptr) = Val.DoubleVal; break; case Type::X86_FP80TyID: memcpy(Ptr, Val.IntVal.getRawData(), 10); break; case Type::PointerTyID: // Ensure 64 bit target pointers are fully initialized on 32 bit hosts. if (StoreBytes != sizeof(PointerTy)) memset(&(Ptr->PointerVal), 0, StoreBytes); *((PointerTy*)Ptr) = Val.PointerVal; break; case Type::VectorTyID: for (unsigned i = 0; i < Val.AggregateVal.size(); ++i) { if (cast<VectorType>(Ty)->getElementType()->isDoubleTy()) *(((double*)Ptr)+i) = Val.AggregateVal[i].DoubleVal; if (cast<VectorType>(Ty)->getElementType()->isFloatTy()) *(((float*)Ptr)+i) = Val.AggregateVal[i].FloatVal; if (cast<VectorType>(Ty)->getElementType()->isIntegerTy()) { unsigned numOfBytes =(Val.AggregateVal[i].IntVal.getBitWidth()+7)/8; StoreIntToMemory(Val.AggregateVal[i].IntVal, (uint8_t*)Ptr + numOfBytes*i, numOfBytes); } } break; } if (sys::IsLittleEndianHost != getDataLayout().isLittleEndian()) // Host and target are different endian - reverse the stored bytes. std::reverse((uint8_t*)Ptr, StoreBytes + (uint8_t*)Ptr); } /// LoadIntFromMemory - Loads the integer stored in the LoadBytes bytes starting /// from Src into IntVal, which is assumed to be wide enough and to hold zero. static void LoadIntFromMemory(APInt &IntVal, uint8_t *Src, unsigned LoadBytes) { assert((IntVal.getBitWidth()+7)/8 >= LoadBytes && "Integer too small!"); uint8_t *Dst = reinterpret_cast<uint8_t *>( const_cast<uint64_t *>(IntVal.getRawData())); if (sys::IsLittleEndianHost) // Little-endian host - the destination must be ordered from LSB to MSB. // The source is ordered from LSB to MSB: Do a straight copy. memcpy(Dst, Src, LoadBytes); else { // Big-endian - the destination is an array of 64 bit words ordered from // LSW to MSW. Each word must be ordered from MSB to LSB. The source is // ordered from MSB to LSB: Reverse the word order, but not the bytes in // a word. while (LoadBytes > sizeof(uint64_t)) { LoadBytes -= sizeof(uint64_t); // May not be aligned so use memcpy. memcpy(Dst, Src + LoadBytes, sizeof(uint64_t)); Dst += sizeof(uint64_t); } memcpy(Dst + sizeof(uint64_t) - LoadBytes, Src, LoadBytes); } } /// FIXME: document /// void ExecutionEngine::LoadValueFromMemory(GenericValue &Result, GenericValue *Ptr, Type *Ty) { const unsigned LoadBytes = getDataLayout().getTypeStoreSize(Ty); switch (Ty->getTypeID()) { case Type::IntegerTyID: // An APInt with all words initially zero. Result.IntVal = APInt(cast<IntegerType>(Ty)->getBitWidth(), 0); LoadIntFromMemory(Result.IntVal, (uint8_t*)Ptr, LoadBytes); break; case Type::FloatTyID: Result.FloatVal = *((float*)Ptr); break; case Type::DoubleTyID: Result.DoubleVal = *((double*)Ptr); break; case Type::PointerTyID: Result.PointerVal = *((PointerTy*)Ptr); break; case Type::X86_FP80TyID: { // This is endian dependent, but it will only work on x86 anyway. // FIXME: Will not trap if loading a signaling NaN. uint64_t y[2]; memcpy(y, Ptr, 10); Result.IntVal = APInt(80, y); break; } case Type::VectorTyID: { auto *VT = cast<VectorType>(Ty); Type *ElemT = VT->getElementType(); const unsigned numElems = VT->getNumElements(); if (ElemT->isFloatTy()) { Result.AggregateVal.resize(numElems); for (unsigned i = 0; i < numElems; ++i) Result.AggregateVal[i].FloatVal = *((float*)Ptr+i); } if (ElemT->isDoubleTy()) { Result.AggregateVal.resize(numElems); for (unsigned i = 0; i < numElems; ++i) Result.AggregateVal[i].DoubleVal = *((double*)Ptr+i); } if (ElemT->isIntegerTy()) { GenericValue intZero; const unsigned elemBitWidth = cast<IntegerType>(ElemT)->getBitWidth(); intZero.IntVal = APInt(elemBitWidth, 0); Result.AggregateVal.resize(numElems, intZero); for (unsigned i = 0; i < numElems; ++i) LoadIntFromMemory(Result.AggregateVal[i].IntVal, (uint8_t*)Ptr+((elemBitWidth+7)/8)*i, (elemBitWidth+7)/8); } break; } default: SmallString<256> Msg; raw_svector_ostream OS(Msg); OS << "Cannot load value of type " << *Ty << "!"; report_fatal_error(OS.str()); } } void ExecutionEngine::InitializeMemory(const Constant *Init, void *Addr) { DEBUG(dbgs() << "JIT: Initializing " << Addr << " "); DEBUG(Init->dump()); if (isa<UndefValue>(Init)) return; if (const ConstantVector *CP = dyn_cast<ConstantVector>(Init)) { unsigned ElementSize = getDataLayout().getTypeAllocSize(CP->getType()->getElementType()); for (unsigned i = 0, e = CP->getNumOperands(); i != e; ++i) InitializeMemory(CP->getOperand(i), (char*)Addr+i*ElementSize); return; } if (isa<ConstantAggregateZero>(Init)) { memset(Addr, 0, (size_t)getDataLayout().getTypeAllocSize(Init->getType())); return; } if (const ConstantArray *CPA = dyn_cast<ConstantArray>(Init)) { unsigned ElementSize = getDataLayout().getTypeAllocSize(CPA->getType()->getElementType()); for (unsigned i = 0, e = CPA->getNumOperands(); i != e; ++i) InitializeMemory(CPA->getOperand(i), (char*)Addr+i*ElementSize); return; } if (const ConstantStruct *CPS = dyn_cast<ConstantStruct>(Init)) { const StructLayout *SL = getDataLayout().getStructLayout(cast<StructType>(CPS->getType())); for (unsigned i = 0, e = CPS->getNumOperands(); i != e; ++i) InitializeMemory(CPS->getOperand(i), (char*)Addr+SL->getElementOffset(i)); return; } if (const ConstantDataSequential *CDS = dyn_cast<ConstantDataSequential>(Init)) { // CDS is already laid out in host memory order. StringRef Data = CDS->getRawDataValues(); memcpy(Addr, Data.data(), Data.size()); return; } if (Init->getType()->isFirstClassType()) { GenericValue Val = getConstantValue(Init); StoreValueToMemory(Val, (GenericValue*)Addr, Init->getType()); return; } DEBUG(dbgs() << "Bad Type: " << *Init->getType() << "\n"); llvm_unreachable("Unknown constant type to initialize memory with!"); } /// EmitGlobals - Emit all of the global variables to memory, storing their /// addresses into GlobalAddress. This must make sure to copy the contents of /// their initializers into the memory. void ExecutionEngine::emitGlobals() { // Loop over all of the global variables in the program, allocating the memory // to hold them. If there is more than one module, do a prepass over globals // to figure out how the different modules should link together. std::map<std::pair<std::string, Type*>, const GlobalValue*> LinkedGlobalsMap; if (Modules.size() != 1) { for (unsigned m = 0, e = Modules.size(); m != e; ++m) { Module &M = *Modules[m]; for (const auto &GV : M.globals()) { if (GV.hasLocalLinkage() || GV.isDeclaration() || GV.hasAppendingLinkage() || !GV.hasName()) continue;// Ignore external globals and globals with internal linkage. const GlobalValue *&GVEntry = LinkedGlobalsMap[std::make_pair(GV.getName(), GV.getType())]; // If this is the first time we've seen this global, it is the canonical // version. if (!GVEntry) { GVEntry = &GV; continue; } // If the existing global is strong, never replace it. if (GVEntry->hasExternalLinkage()) continue; // Otherwise, we know it's linkonce/weak, replace it if this is a strong // symbol. FIXME is this right for common? if (GV.hasExternalLinkage() || GVEntry->hasExternalWeakLinkage()) GVEntry = &GV; } } } std::vector<const GlobalValue*> NonCanonicalGlobals; for (unsigned m = 0, e = Modules.size(); m != e; ++m) { Module &M = *Modules[m]; for (const auto &GV : M.globals()) { // In the multi-module case, see what this global maps to. if (!LinkedGlobalsMap.empty()) { if (const GlobalValue *GVEntry = LinkedGlobalsMap[std::make_pair(GV.getName(), GV.getType())]) { // If something else is the canonical global, ignore this one. if (GVEntry != &GV) { NonCanonicalGlobals.push_back(&GV); continue; } } } if (!GV.isDeclaration()) { addGlobalMapping(&GV, getMemoryForGV(&GV)); } else { // External variable reference. Try to use the dynamic loader to // get a pointer to it. if (void *SymAddr = sys::DynamicLibrary::SearchForAddressOfSymbol(GV.getName())) addGlobalMapping(&GV, SymAddr); else { report_fatal_error("Could not resolve external global address: " +GV.getName()); } } } // If there are multiple modules, map the non-canonical globals to their // canonical location. if (!NonCanonicalGlobals.empty()) { for (unsigned i = 0, e = NonCanonicalGlobals.size(); i != e; ++i) { const GlobalValue *GV = NonCanonicalGlobals[i]; const GlobalValue *CGV = LinkedGlobalsMap[std::make_pair(GV->getName(), GV->getType())]; void *Ptr = getPointerToGlobalIfAvailable(CGV); assert(Ptr && "Canonical global wasn't codegen'd!"); addGlobalMapping(GV, Ptr); } } // Now that all of the globals are set up in memory, loop through them all // and initialize their contents. for (const auto &GV : M.globals()) { if (!GV.isDeclaration()) { if (!LinkedGlobalsMap.empty()) { if (const GlobalValue *GVEntry = LinkedGlobalsMap[std::make_pair(GV.getName(), GV.getType())]) if (GVEntry != &GV) // Not the canonical variable. continue; } EmitGlobalVariable(&GV); } } } } // EmitGlobalVariable - This method emits the specified global variable to the // address specified in GlobalAddresses, or allocates new memory if it's not // already in the map. void ExecutionEngine::EmitGlobalVariable(const GlobalVariable *GV) { void *GA = getPointerToGlobalIfAvailable(GV); if (!GA) { // If it's not already specified, allocate memory for the global. GA = getMemoryForGV(GV); // If we failed to allocate memory for this global, return. if (!GA) return; addGlobalMapping(GV, GA); } // Don't initialize if it's thread local, let the client do it. if (!GV->isThreadLocal()) InitializeMemory(GV->getInitializer(), GA); Type *ElTy = GV->getType()->getElementType(); size_t GVSize = (size_t)getDataLayout().getTypeAllocSize(ElTy); NumInitBytes += (unsigned)GVSize; ++NumGlobals; }
214,370
Github
[ 3122, 187, 475, 1284, 82, 47578, 328, 428, 24689, 456, 42498, 6803, 187, 475, 8283, 313, 36, 10, 4695, 14, 9638, 50276, 1909, 82, 47578, 328, 15, 2061, 187, 475, 187, 475, 831, 2086, 310, 1959, 3694, 27, 368, 476, 25529, 352, 285, 16, 263, 10007, 187, 475, 352, 762, 253, 2426, 273, 253, 11963, 9767, 2771, 4214, 5259, 4637, 347, 187, 475, 3863, 407, 253, 7648, 9107, 6807, 13, 2057, 2715, 495, 273, 253, 187, 475, 4637, 13, 390, 313, 255, 634, 4500, 10, 667, 1996, 2715, 15, 187, 475, 187, 475, 831, 2086, 310, 5939, 275, 253, 3524, 326, 352, 588, 320, 4217, 13, 187, 475, 533, 15002, 9103, 23181, 28, 1293, 1014, 253, 10466, 17529, 273, 187, 475, 20863, 390, 20524, 6651, 329, 20383, 20103, 15, 50276, 5035, 253, 187, 475, 11963, 9767, 2771, 4214, 5259, 4637, 323, 625, 4278, 15, 187, 475, 187, 475, 1422, 943, 452, 2959, 247, 3491, 273, 253, 11963, 9767, 2771, 4214, 5259, 4637, 187, 475, 2112, 342, 436, 2086, 15, 50276, 2042, 417, 13, 923, 654, 2413, 1358, 2700, 15, 26497, 15, 2061, 16, 17130, 40000, 187, 475, 187, 475, 22373, 441, 407, 8888, 27, 347, 82, 47578, 328, 4915, 347, 82, 47578, 328, 46082, 4955, 187, 1738, 187, 10708, 4955, 15, 284, 82, 47578, 328, 15, 25553, 15, 83, 2485, 66, 1423, 28, 187, 187, 2948, 4955, 15, 284, 82, 47578, 328, 15, 21294, 15, 5353, 262, 15, 5089, 37533, 28, 187, 2948, 4955, 15, 284, 82, 47578, 328, 15, 25553, 15, 83, 2485, 66, 1423, 15, 2566, 15, 51, 2485, 66, 1423, 16295, 3351, 21857, 40595, 28, 187, 187, 6930, 187, 475, 16062, 1071, 966, 323, 253, 7092, 273, 253, 4086, 608, 15, 1706, 273, 253, 294, 21870, 30369, 2446, 374, 15, 19, 15, 187, 475, 187, 475, 1214, 7582, 480, 49036, 46775, 44109, 187, 1738, 187, 4387, 966, 416, 2485, 66, 1423, 16295, 1762, 28459, 5089, 8725, 416, 2485, 66, 1423, 16295, 3351, 21857, 40595, 551, 535, 50274, 6930, 187, 50273, 11, 18193, 16757, 187, 50273, 8480, 187, 50274, 4387, 416, 2485, 66, 1423, 16295, 1762, 28459, 5089, 313, 2776, 1071, 2402, 910, 187, 50270, 12185, 9, 2566, 2402, 558, 187, 50274, 94, 535, 50274, 33, 9677, 187, 50274, 18641, 2991, 873, 5683, 16295, 3351, 21857, 43731, 1082, 551, 187, 50270, 1178, 16295, 3351, 21857, 43731, 9, 187, 50262, 3, 2061, 15, 284, 82, 47578, 328, 15, 25553, 15, 83, 2485, 66, 1423, 15, 51, 2485, 66, 1423, 16295, 1762, 28459, 3287, 187, 50274, 94, 535, 50274, 33, 9677, 187, 50274, 18641, 2991, 873, 5683, 9770, 11133, 6648, 1082, 551, 187, 605, 50270, 788, 9770, 11133, 6648, 5023, 1065, 1587, 51, 2485, 66, 1423, 15, 5089, 15, 22, 15, 1706, 14, 18, 12161, 264, 14, 520, 995, 187, 605, 50264, 788, 9770, 11133, 11749, 5023, 6953, 10099, 9, 187, 605, 50264, 788, 5089, 12866, 48617, 1082, 559, 346, 83, 2485, 66, 1423, 16, 51, 2485, 66, 1423, 16295, 1762, 28459, 16, 32646, 2446, 1423, 15, 5089, 15, 22, 15, 1706, 14, 18, 12161, 264, 14, 520, 15, 2974, 17378, 187, 605, 50270, 788, 9770, 11133, 6648, 5023, 1065, 1587, 51, 2485, 66, 1423, 15, 5089, 15, 22, 15, 1706, 14, 19, 26383, 14, 520, 995, 187, 605, 50264, 788, 9770, 11133, 11749, 5023, 6953, 10099, 9, 187, 605, 50264, 788, 5089, 12866, 48617, 1082, 559, 346, 83, 2485, 66, 1423, 16, 51, 2485, 66, 1423, 16295, 1762, 28459, 16, 32646, 2446, 1423, 15, 5089, 15, 22, 15, 1706, 14, 19, 26383, 14, 520, 15, 2974, 17378, 187, 605, 50270, 788, 9770, 11133, 6648, 5023, 1065, 1587, 51, 2485, 66, 1423, 15, 5089, 15, 22, 15, 1706, 14, 20, 47, 6402, 14, 520, 995, 187, 605, 50262, 788, 9770, 11133, 11749, 5023, 6953, 10099, 9, 187, 605, 50262, 788, 5089, 12866, 48617, 1082, 559, 346, 83, 2485, 66, 1423, 16, 51, 2485, 66, 1423, 16295, 1762, 28459, 16, 32646, 2446, 1423, 15, 5089, 15, 22, 15, 1706, 14, 20, 47, 6402, 14, 520, 15, 2974, 17378, 187, 605, 50270, 788, 9770, 11133, 6648, 5023, 1065, 1587, 51, 2485, 66, 1423, 15, 5089, 15, 22, 15, 1706, 14, 21, 1322, 14, 520, 995, 187, 605, 50264, 788, 9770, 11133, 11749, 5023, 6953, 10099, 9, 187, 605, 50264, 788, 5089, 12866, 48617, 1082, 559, 346, 83, 2485, 66, 1423, 16, 51, 2485, 66, 1423, 16295, 1762, 28459, 16, 32646, 2446, 1423, 15, 5089, 15, 22, 15, 1706, 14, 21, 1322, 14, 520, 15, 2974, 17378, 187, 50270, 788, 9770, 11133, 6648, 5023, 1065, 1587, 51, 2485, 66, 1423, 15, 5089, 15, 22, 15, 1706, 14, 22, 6369, 14, 520, 995, 187, 50262, 788, 9770, 11133, 11749, 5023, 6953, 10099, 9, 187, 50262, 788, 5089, 12866, 48617, 1082, 559, 346, 83, 2485, 66, 1423, 16, 51, 2485, 66, 1423, 16295, 1762, 28459, 16, 32646, 2446, 1423, 15, 5089, 15, 22, 15, 1706, 14, 22, 6369, 14, 520, 15, 2974, 17378, 187, 50274, 94, 535, 50274, 33, 9677, 187, 50274, 18641, 2991, 873, 12919, 1082, 551, 187, 605, 50270, 32315, 9, 5089, 37533, 15, 25692, 1703, 13, 187, 605, 50262, 7404, 10099, 5089, 1587, 51, 2485, 66, 1423, 15, 5089, 15, 22, 15, 1706, 14, 18, 12161, 264, 14, 520, 6788, 38950, 6020, 187, 605, 50270, 32315, 9, 5089, 37533, 15, 27002, 1703, 13, 187, 605, 50262, 7404, 10099, 5089, 1587, 51, 2485, 66, 1423, 15, 5089, 15, 22, 15, 1706, 14, 19, 26383, 14, 520, 6788, 38950, 6020, 187, 605, 50270, 32315, 9, 5089, 37533, 15, 6603, 1703, 64, 47711, 64, 16615, 13, 187, 605, 50262, 7404, 10099, 5089, 1587, 51, 2485, 66, 1423, 15, 5089, 15, 22, 15, 1706, 14, 20, 47, 6402, 14, 520, 6788, 38950, 6020, 187, 605, 50270, 32315, 9, 5089, 37533, 15, 10311, 64, 2088, 3859, 1864, 8908, 13, 187, 605, 50262, 7404, 10099, 5089, 1587, 51, 2485, 66, 1423, 15, 5089, 15, 22, 15, 1706, 14, 21, 1322, 14, 520, 6788, 38950, 6020, 187, 50270, 32315, 9, 5089, 37533, 15, 10311, 64, 14524, 1703, 13, 187, 50262, 7404, 10099, 5089, 1587, 51, 2485, 66, 1423, 15, 5089, 15, 22, 15, 1706, 14, 22, 6369, 14, 520, 6788, 38950, 6020, 187, 50274, 94, 535, 50274, 33, 9677, 187, 50274, 18641, 2991, 873, 9323, 9528, 366, 1082, 551, 187, 605, 50270, 32315, 9, 5089, 37533, 15, 25692, 1703, 13, 187, 605, 50262, 5040, 9528, 366, 1587, 51, 2485, 66, 1423, 15, 5089, 15, 22, 15, 1706, 14, 18, 12161, 264, 14, 520, 6788, 38950, 6020, 187, 605, 50270, 32315, 9, 5089, 37533, 15, 27002, 1703, 13, 187, 605, 50262, 5040, 9528, 366, 1587, 51, 2485, 66, 1423, 15, 5089, 15, 22, 15, 1706, 14, 19, 26383, 14, 520, 6788, 38950, 6020, 187, 605, 50270, 32315, 9, 5089, 37533, 15, 6603, 1703, 64, 47711, 64, 16615, 13, 187, 605, 50262, 5040, 9528, 366, 1587, 51, 2485, 66, 1423, 15, 5089, 15, 22, 15, 1706, 14, 20, 47, 6402, 14, 520, 6788, 38950, 6020, 187, 605, 50270, 32315, 9, 5089, 37533, 15, 10311, 64, 2088, 3859, 1864, 8908, 13, 187, 605, 50262, 5040, 9528, 366, 1587, 51, 2485, 66, 1423, 15, 5089, 15, 22, 15, 1706, 14, 21, 1322, 14, 520, 6788, 38950, 6020, 187, 50270, 32315, 9, 5089, 37533, 15, 10311, 64, 14524, 1703, 13, 187, 50262, 5040, 9528, 366, 1587, 51, 2485, 66, 1423, 15, 5089, 15, 22, 15, 1706, 14, 22, 6369, 14, 520, 6788, 38950, 6020, 187, 50274, 94, 187, 187, 94, 187 ]
/* * Asqatasun - Automated webpage assessment * Copyright (C) 2008-2019 Asqatasun.org * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. * * Contact us by mail: asqatasun AT asqatasun DOT org */ package org.asqatasun.rules.rgaa22; import org.asqatasun.entity.audit.TestSolution; import org.asqatasun.rules.rgaa22.test.Rgaa22RuleImplementationTestCase; /** * Unit test class for the implementation of the rule 5.34 of the referential RGAA 2.2. * * @author jkowalczyk */ public class Rgaa22Rule05341Test extends Rgaa22RuleImplementationTestCase { /** * Default constructor */ public Rgaa22Rule05341Test (String testName){ super(testName); } @Override protected void setUpRuleImplementationClassName() { setRuleImplementationClassName( "org.asqatasun.rules.rgaa22.Rgaa22Rule05341"); } @Override protected void setUpWebResourceMap() { // getWebResourceMap().put("Rgaa22.Test.5.34-1Passed-01", // getWebResourceFactory().createPage( // getTestcasesFilePath() + "rgaa22/Rgaa22Rule05341/RGAA22.Test.5.34-1Passed-01.html")); // getWebResourceMap().put("Rgaa22.Test.5.34-2Failed-01", // getWebResourceFactory().createPage( // getTestcasesFilePath() + "rgaa22/Rgaa22Rule05341/RGAA22.Test.5.34-2Failed-01.html")); // getWebResourceMap().put("Rgaa22.Test.5.34-3NMI-01", // getWebResourceFactory().createPage( // getTestcasesFilePath() + "rgaa22/Rgaa22Rule05341/RGAA22.Test.5.34-3NMI-01.html")); // getWebResourceMap().put("Rgaa22.Test.5.34-4NA-01", // getWebResourceFactory().createPage( // getTestcasesFilePath() + "rgaa22/Rgaa22Rule05341/RGAA22.Test.5.34-4NA-01.html")); getWebResourceMap().put("Rgaa22.Test.5.34-5NT-01", getWebResourceFactory().createPage( getTestcasesFilePath() + "rgaa22/Rgaa22Rule05341/RGAA22.Test.5.34-5NT-01.html")); } @Override protected void setProcess() { // assertEquals(TestSolution.PASSED, // processPageTest("Rgaa22.Test.5.34-1Passed-01").getValue()); // assertEquals(TestSolution.FAILED, // processPageTest("Rgaa22.Test.5.34-2Failed-01").getValue()); // assertEquals(TestSolution.NEED_MORE_INFO, // processPageTest("Rgaa22.Test.5.34-3NMI-01").getValue()); // assertEquals(TestSolution.NOT_APPLICABLE, // processPageTest("Rgaa22.Test.5.34-4NA-01").getValue()); assertEquals(TestSolution.NOT_TESTED, processPageTest("Rgaa22.Test.5.34-5NT-01").getValue()); } @Override protected void setConsolidate() { // assertEquals(TestSolution.PASSED, // consolidate("Rgaa22.Test.5.34-1Passed-01").getValue()); // assertEquals(TestSolution.FAILED, // consolidate("Rgaa22.Test.5.34-2Failed-01").getValue()); // assertEquals(TestSolution.NEED_MORE_INFO, // consolidate("Rgaa22.Test.5.34-3NMI-01").getValue()); // assertEquals(TestSolution.NOT_APPLICABLE, // consolidate("Rgaa22.Test.5.34-4NA-01").getValue()); assertEquals(TestSolution.NOT_TESTED, consolidate("Rgaa22.Test.5.34-5NT-01").getValue()); } }
214,371
Github
[ 3701, 271, 526, 426, 5731, 64, 72, 9458, 9, 266, 526, 13, 1637, 13, 2461, 13, 75, 10, 187, 6, 23687, 64, 6920, 15289, 50275, 11241, 443, 398, 68, 3892, 249, 6642, 273, 374, 14, 12850, 209, 187, 6, 50276, 1539, 25201, 426, 44556, 64, 6920, 15289, 9, 1539, 25201, 13, 1556, 37660, 13, 35, 2025, 34, 13, 43, 10, 11269, 253, 443, 398, 3892, 249, 3033, 187, 6, 50276, 1542, 253, 492, 13535, 21805, 275, 253, 26763, 46031, 1232, 846, 253, 500, 626, 73, 3213, 15, 187, 6, 50276, 2946, 23677, 443, 398, 68, 3892, 968, 14240, 281, 308, 64, 44, 8, 11, 53, 64, 76, 3185, 273, 308, 64, 76, 3139, 187, 6, 50276, 17480, 436, 4245, 247, 40638, 3033, 15, 187, 187, 338, 480, 381, 18, 2462, 39530, 443, 398, 68, 3892, 249, 14240, 281, 308, 64, 76, 8, 11, 53, 64, 76, 281, 6642, 2785, 329, 2785, 64, 19, 187, 50276, 74, 30, 75, 28, 2490, 50276, 6, 4311, 281, 3693, 19068, 187, 50276, 7527, 426, 2781, 9, 5375, 9, 1637, 9, 74, 9679, 5375, 9, 2461, 9, 74, 12, 18, 23090, 187, 50276, 1637, 9, 74, 10, 426, 9765, 9, 74, 1933, 7527, 28, 187, 50276, 2461, 9, 74, 10, 426, 9840, 9, 74, 1933, 7527, 28, 187, 50276, 266, 526, 426, 337, 15, 520, 11, 7527, 11, 2609, 9, 1637, 9, 74, 4800, 19, 12, 2461, 9, 74, 12, 18, 4800, 19, 559, 2117, 9, 1637, 9, 74, 2888, 2461, 9, 74, 12, 18, 23090, 187, 7271, 338, 480, 381, 19, 187, 50276, 74, 30, 18, 28, 187, 50276, 6, 4311, 281, 3693, 19068, 187, 50276, 7527, 426, 2781, 9, 4090, 9, 5375, 9, 1637, 9, 18, 27, 19, 9679, 4090, 9, 5375, 9, 2461, 9, 19, 27, 20, 1228, 23090, 187, 50276, 1637, 9, 18, 27, 19, 10, 426, 9765, 9, 18, 27, 19, 1933, 7527, 28, 187, 50276, 2461, 9, 19, 27, 20, 10, 426, 9840, 9, 19, 27, 20, 1933, 7527, 28, 187, 50276, 187, 50276, 266, 526, 426, 2781, 9, 266, 526, 13, 4311, 11, 2609, 9, 1637, 9, 74, 4800, 19, 12, 2461, 9, 74, 12, 18, 4800, 19, 559, 3346, 187, 50272, 5375, 9, 1637, 9, 74, 2888, 2461, 9, 74, 12, 18, 10, 559, 9765, 9, 74, 12, 18, 2888, 2461, 9, 74, 12, 18, 1228, 559, 3346, 187, 50272, 5375, 9, 2461, 9, 74, 12, 18, 2888, 2461, 9, 74, 12, 19, 1228, 4027, 187, 50276, 74, 30, 19, 28, 187, 50276, 266, 526, 426, 2781, 9, 266, 526, 13, 7527, 11, 2609, 9, 5375, 9, 2461, 9, 74, 2888, 1637, 9, 74, 14, 18, 10, 559, 9765, 9, 74, 2888, 2461, 9, 74, 1228, 559, 3346, 187, 50272, 2461, 9, 74, 4800, 19, 12, 1637, 9, 74, 4800, 19, 12, 2461, 9, 74, 12, 18, 4800, 19, 559, 50276, 1051, 187, 50272, 5375, 9, 1637, 9, 74, 2888, 2461, 9, 74, 12, 18, 10689, 5349, 187, 7271, 338, 480, 381, 20, 187, 50276, 6, 4311, 281, 3693, 19068, 187, 50276, 7527, 426, 2781, 9, 4090, 9, 5375, 9, 1637, 9, 18, 27, 20, 9679, 4090, 9, 5375, 9, 2461, 9, 19, 27, 21, 1228, 23090, 187, 50276, 1637, 9, 18, 27, 20, 10, 426, 9765, 9, 18, 27, 20, 1933, 7527, 28, 187, 50276, 2461, 9, 19, 27, 21, 10, 426, 9840, 9, 19, 27, 21, 1933, 7527, 28, 187, 50276, 74, 30, 19, 28, 187, 50276, 266, 526, 426, 2781, 9, 266, 526, 13, 7527, 11, 2609, 9, 5375, 9, 2461, 9, 74, 2888, 1637, 9, 74, 14, 18, 10, 559, 9765, 9, 74, 2888, 2461, 9, 74, 1228, 559, 3346, 187, 50272, 2461, 9, 74, 4800, 19, 12, 1637, 9, 74, 4800, 19, 12, 2461, 9, 74, 12, 18, 4800, 19, 559, 50276, 1051, 187, 50272, 5375, 9, 1637, 9, 74, 2888, 2461, 9, 74, 12, 18, 10, 559, 9765, 9, 74, 12, 18, 2888, 2461, 9, 74, 12, 18, 1228, 559, 3346, 187, 50272, 5375, 9, 2461, 9, 74, 12, 18, 2888, 2461, 9, 74, 12, 19, 10689, 5349, 187, 50276, 74, 30, 20, 28, 187, 50276, 266, 526, 426, 2781, 9, 266, 526, 13, 7527, 11, 2609, 9, 5375, 9, 2461, 9, 74, 2888, 2461, 9, 74, 14, 18, 1228, 559, 3346, 187, 50272, 5375, 9, 2461, 9, 74, 2888, 1637, 9, 74, 14, 18, 10, 559, 9765, 9, 74, 2888, 2461, 9, 74, 1228, 559, 3346, 187, 50272, 2461, 9, 74, 4800, 19, 12, 1637, 9, 74, 4800, 19, 12, 2461, 9, 74, 12, 18, 4800, 19, 559, 50276, 1051, 187, 50272, 5375, 9, 1637, 9, 74, 2888, 2461, 9, 74, 12, 18, 10689, 5349, 187, 7271, 187, 50276, 6, 4311, 281, 3693, 19068, 187, 50276, 6, 50276, 7527, 426, 2781, 9, 4090, 9, 5375, 9, 1637, 9, 75, 14, 19, 27, 75, 9679, 4090, 9, 5375, 9, 2461, 9, 75, 14, 19, 27, 75, 12, 18, 1228, 23090, 187, 50276, 6, 50276, 1637, 9, 75, 14, 19, 27, 75, 10, 426, 9765, 9, 75, 14, 19, 27, 75, 1933, 7527, 28, 187, 50276, 6, 50276, 2461, 9, 75, 14, 19, 27, 75, 12, 18, 10, 426, 9840, 9, 75, 14, 19, 27, 75, 12, 18, 1933, 7527, 28, 187, 50276, 187, 50276, 6, 36308, 13642, 13, 534, 310, 3468, 15, 2058, 480, 31, 20, 253, 6642, 310, 3798, 3240, 1175, 187, 50276, 6, 594, 816, 1056, 2119, 326, 271, 526, 310, 417, 1160, 11968, 407, 19068, 15, 187, 50276, 74, 426, 480, 14, 18, 28, 187, 50276, 266, 526, 18, 426, 8084, 9, 5375, 9, 2461, 9, 74, 2888, 2461, 9, 74, 14, 18, 1228, 559, 3346, 187, 50272, 5375, 9, 2461, 9, 74, 2888, 1637, 9, 74, 14, 18, 10, 559, 9765, 9, 74, 2888, 2461, 9, 74, 1228, 559, 3346, 187, 50272, 2461, 9, 74, 4800, 19, 12, 1637, 9, 74, 4800, 19, 12, 2461, 9, 74, 12, 18, 4800, 19, 559, 50276, 1051, 187, 50272, 5375, 9, 1637, 9, 74, 2888, 2461, 9, 74, 12, 18, 10, 559, 9765, 9, 74, 12, 18, 2888, 2461, 9, 74, 12, 18, 1228, 559, 3346, 187, 50272, 5375, 9, 2461, 9, 74, 12, 18, 2888, 2461, 9, 74, 12, 19, 23090, 187, 50276, 338, 310, 35161, 9, 266, 526, 18, 10, 187, 50274, 266, 526, 426, 2781, 9, 266, 526, 13, 266, 526, 18, 558, 187, 50276, 423, 187, 50276, 74, 426, 480, 28, 187, 50276, 266, 526, 18, 426, 8084, 9, 5375, 9, 2461, 9, 74, 2888, 2461, 9, 74, 14, 18, 1228, 559, 3346, 187, 50272, 5375, 9, 2461, 9, 74, 2888, 1637, 9, 74, 14, 18, 10, 559, 9765, 9, 74, 2888, 2461, 9, 74, 1228, 559, 3346, 187, 50272, 2461, 9, 74, 4800, 19, 12, 1637, 9, 74, 4800, 19, 12, 2461, 9, 74, 12, 18, 4800, 19, 559, 50276, 1051, 187, 50272, 5375, 9, 1637, 9, 74, 2888, 2461, 9, 74, 12, 18, 23090, 187, 50276, 338, 310, 35161, 9, 266, 526, 18, 10, 187, 50274, 266, 526, 426, 2781, 9, 266, 526, 13, 266, 526, 18, 558, 187, 50276, 423, 187, 423, 187 ]
function anorm = update_gbound(anorm,alpha,beta,j) %UPDATE_GBOUND Update Gerscgorin estimate of 2-norm % ANORM = UPDATE_GBOUND(ANORM,ALPHA,BETA,J) updates the Gersgorin bound % for the tridiagonal in the Lanczos process after the J'th step. % Applies Gerscgorins circles to T_K'*T_k instead of T_k itself % since this gives a tighter bound. if j==1 % Apply Gerscgorin circles to T_k'*T_k to estimate || A ||_2 i=j; % scale to avoid overflow scale = max(abs(alpha(i)),abs(beta(i+1))); alpha(i) = alpha(i)/scale; beta(i) = beta(i)/scale; anorm = 1.01*scale*sqrt(alpha(i)^2+beta(i+1)^2 + abs(alpha(i)*beta(i+1))); elseif j==2 i=1; % scale to avoid overflow scale = max(max(abs(alpha(1:2)),max(abs(beta(2:3))))); alpha(1:2) = alpha(1:2)/scale; beta(2:3) = beta(2:3)/scale; anorm = max(anorm, scale*sqrt(alpha(i)^2+beta(i+1)^2 + ... abs(alpha(i)*beta(i+1) + alpha(i+1)*beta(i+1)) + ... abs(beta(i+1)*beta(i+2)))); i=2; anorm = max(anorm,scale*sqrt(abs(beta(i)*alpha(i-1) + alpha(i)*beta(i)) + ... beta(i)^2+alpha(i)^2+beta(i+1)^2 + ... abs(alpha(i)*beta(i+1))) ); elseif j==3 % scale to avoid overflow scale = max(max(abs(alpha(1:3)),max(abs(beta(2:4))))); alpha(1:3) = alpha(1:3)/scale; beta(2:4) = beta(2:4)/scale; i=2; anorm = max(anorm,scale*sqrt(abs(beta(i)*alpha(i-1) + alpha(i)*beta(i)) + ... beta(i)^2+alpha(i)^2+beta(i+1)^2 + ... abs(alpha(i)*beta(i+1) + alpha(i+1)*beta(i+1)) + ... abs(beta(i+1)*beta(i+2))) ); i=3; anorm = max(anorm,scale*sqrt(abs(beta(i)*beta(i-1)) + ... abs(beta(i)*alpha(i-1) + alpha(i)*beta(i)) + ... beta(i)^2+alpha(i)^2+beta(i+1)^2 + ... abs(alpha(i)*beta(i+1))) ); else % scale to avoid overflow % scale = max(max(abs(alpha(j-2:j)),max(abs(beta(j-2:j+1))))); % alpha(j-2:j) = alpha(j-2:j)/scale; % beta(j-2:j+1) = beta(j-2:j+1)/scale; % Avoid scaling, which is slow. At j>3 the estimate is usually quite good % so just make sure that anorm is not made infinite by overflow. i = j-1; anorm1 = sqrt(abs(beta(i)*beta(i-1)) + ... abs(beta(i)*alpha(i-1) + alpha(i)*beta(i)) + ... beta(i)^2+alpha(i)^2+beta(i+1)^2 + ... abs(alpha(i)*beta(i+1) + alpha(i+1)*beta(i+1)) + ... abs(beta(i+1)*beta(i+2))); if isfinite(anorm1) anorm = max(anorm,anorm1); end i = j; anorm1 = sqrt(abs(beta(i)*beta(i-1)) + ... abs(beta(i)*alpha(i-1) + alpha(i)*beta(i)) + ... beta(i)^2+alpha(i)^2+beta(i+1)^2 + ... abs(alpha(i)*beta(i+1))); if isfinite(anorm1) anorm = max(anorm,anorm1); end end
214,372
Github
[ 10708, 4836, 187, 187, 2948, 313, 187, 186, 3, 20602, 3, 187, 186, 3, 900, 3, 187, 186, 3, 2606, 3, 535, 186, 3, 7280, 15, 681, 16, 1033, 71, 1012, 16, 81, 17101, 3, 187, 186, 3, 7280, 15, 681, 16, 14605, 24670, 16, 3433, 814, 301, 14, 2184, 16, 3433, 814, 301, 3, 187, 186, 18038, 8780, 346, 7280, 15, 681, 16, 14605, 24670, 16, 14605, 24670, 16, 87, 1787, 16, 498, 1104, 16, 8780, 14, 2184, 3, 187, 186, 3, 7280, 15, 681, 16, 14605, 24670, 16, 14605, 24670, 16, 87, 1787, 16, 498, 1104, 16, 8780, 14, 2184, 16, 18038, 14487, 3, 187, 10, 187, 187, 605, 1408, 36885, 476, 35430, 253, 6613, 273, 247, 1677, 4836, 15, 187, 4997, 1408, 36885, 9, 25798, 15738, 475, 18038, 8780, 15, 29981, 15738, 13, 13059, 8168, 2703, 13, 562, 17908, 15, 16978, 13, 7908, 4531, 475, 81, 17101, 15, 22532, 4531, 10, 2228, 551, 187, 186, 27607, 13, 795, 3843, 7908, 4531, 15, 3633, 30342, 1587, 27607, 2807, 187, 186, 38286, 13, 795, 3843, 7908, 4531, 15, 3633, 30342, 1587, 38286, 2807, 535, 186, 82, 3843, 1056, 19878, 9, 25798, 15738, 10, 187, 186, 14605, 1838, 3843, 13059, 60, 17, 62, 535, 186, 338, 642, 412, 551, 996, 186, 2309, 3148, 2302, 412, 21611, 1587, 17304, 14002, 995, 23820, 13, 13059, 10, 187, 186, 94, 535, 186, 338, 6583, 551, 996, 186, 2044, 6583, 426, 6583, 21611, 1587, 36, 1377, 1241, 995, 23820, 13, 13059, 10, 996, 186, 338, 2195, 38286, 551, 988, 186, 2309, 5296, 996, 186, 94, 187, 186, 94, 535, 186, 68, 13, 1486, 3843, 2805, 15, 36885, 13264, 9, 14605, 1838, 10, 187, 186, 338, 1486, 3613, 5296, 551, 996, 186, 2808, 15, 4756, 9, 1000, 10, 996, 186, 2309, 21081, 15, 26071, 1587, 16534, 417, 14002, 253, 4836, 2462, 84, 27, 2462, 87, 995, 4836, 1838, 13, 1486, 10, 187, 186, 94, 535, 186, 6321, 3843, 260, 15, 9505, 15, 51, 4539, 60, 5025, 9, 68, 15, 9505, 15, 51, 4539, 4587, 18, 62, 187, 186, 20602, 15, 39, 16684, 9, 483, 13, 755, 12965, 9505, 2776, 9, 6321, 15, 5443, 13, 1408, 15, 40722, 2632, 5336, 1228, 187, 186, 2309, 5296, 187, 94, 187, 187, 605, 1408, 51, 254, 328, 294, 14, 83, 4539, 247, 1677, 4836, 15, 187, 4997, 1408, 51, 254, 328, 9, 25798, 15738, 475, 18038, 8780, 15, 29981, 15738, 13, 13059, 8168, 2703, 13, 562, 17908, 15, 16978, 13, 7908, 4531, 475, 81, 17101, 15, 22532, 4531, 10, 2228, 551, 187, 186, 27607, 13, 795, 3843, 7908, 4531, 15, 3633, 30342, 1587, 27607, 2807, 187, 186, 38286, 13, 795, 3843, 7908, 4531, 15, 3633, 30342, 1587, 38286, 2807, 187, 186, 4774, 13, 795, 3843, 7908, 4531, 15, 3633, 30342, 1587, 4774, 2807, 535, 186, 82, 3843, 1056, 19878, 9, 25798, 15738, 10, 187, 186, 14605, 1838, 3843, 13059, 60, 17, 62, 535, 186, 338, 642, 412, 551, 996, 186, 2309, 3148, 2302, 412, 21611, 1587, 17304, 294, 14, 6321, 995, 23820, 13, 13059, 10, 187, 186, 94, 535, 186, 338, 6583, 551, 996, 186, 2044, 6583, 426, 6583, 21611, 1587, 12978, 294, 14, 6321, 995, 23820, 13, 13059, 10, 996, 186, 338, 2195, 38286, 551, 988, 186, 2309, 5296, 996, 186, 94, 187, 186, 94, 535, 186, 338, 2195, 4774, 551, 996, 186, 84, 13, 1486, 3843, 2805, 15, 9505, 9, 14605, 1838, 10, 996, 186, 338, 1486, 3613, 5296, 551, 988, 186, 2309, 21081, 15, 26071, 1587, 16534, 417, 755, 3708, 273, 253, 4836, 2462, 84, 27, 2462, 87, 995, 4836, 1838, 13, 1486, 10, 996, 186, 94, 996, 186, 338, 256, 15, 9505, 15, 5443, 3613, 346, 27337, 3, 3857, 256, 15, 9505, 15, 5443, 3613, 346, 22558, 3, 551, 988, 186, 2309, 21081, 15, 26071, 1587, 13264, 2462, 84, 310, 275, 1375, 2462, 84, 15, 5201, 8912, 272, 294, 6321, 273, 247, 1327, 14, 27337, 285, 1327, 14, 22558, 4836, 1293, 1969, 4774, 995, 4836, 1838, 13, 256, 15, 9505, 15, 5443, 10, 996, 186, 94, 187, 186, 94, 535, 186, 68, 13, 1486, 3843, 2805, 15, 51, 254, 328, 13264, 9, 14605, 1838, 10, 187, 186, 338, 1486, 3613, 5296, 551, 996, 186, 2309, 21081, 15, 26071, 1587, 16534, 417, 294, 6321, 253, 4836, 2462, 84, 27, 2462, 87, 995, 4836, 1838, 13, 1486, 10, 535, 186, 94, 535, 186, 6321, 3843, 260, 15, 9505, 15, 51, 4539, 60, 5025, 9, 68, 15, 9505, 15, 51, 4539, 4587, 18, 62, 187, 186, 20602, 15, 39, 16684, 9, 483, 13, 755, 12965, 9505, 2776, 9, 6321, 15, 5443, 13, 1408, 15, 40722, 2632, 5336, 1228, 187, 186, 2309, 5296, 187, 94, 187, 187, 605, 1408, 9795, 10389, 1063, 294, 14, 39168, 7276, 247, 1677, 4836, 15, 187, 605, 733, 588, 6635, 247, 747, 4836, 2618, 13, 5731, 4522, 383, 11441, 285, 851, 2246, 281, 470, 187, 605, 27357, 79, 595, 13, 368, 476, 1509, 686, 283, 42611, 8, 281, 1978, 5017, 751, 27, 187, 605, 50276, 14, 15050, 13, 187, 605, 50276, 14, 21011, 13, 187, 605, 50276, 14, 3346, 187, 605, 187, 605, 17501, 13, 4284, 3879, 310, 281, 35991, 1110, 347, 4836, 24670, 14, 16885, 1057, 27, 187, 605, 5987, 1358, 7280, 15, 681, 16, 14605, 24670, 16, 14605, 24670, 14, 16885, 16, 23723, 16, 70, 25, 67, 23, 69, 1857, 71, 740, 70, 1976, 938, 71, 46043, 67, 24, 66, 26, 71, 22, 5470, 2597, 69, 28321, 68, 3566, 69, 1010, 70, 16, 7614, 16, 17920, 16, 2447, 1245, 14794, 24047, 16, 40013, 14324, 15, 4305, 89, 4, 45, 18962, 14, 45, 18663, 187, 4997, 1408, 9795, 10389, 1063, 9, 25798, 15738, 475, 18038, 8780, 15, 29981, 15738, 13, 13059, 8168, 2703, 13, 562, 17908, 15, 16978, 13, 7908, 4531, 475, 81, 17101, 15, 22532, 4531, 10, 2228, 551, 187, 186, 82, 3843, 1056, 19878, 9, 25798, 15738, 10, 187, 186, 14605, 1838, 3843, 13059, 60, 17, 62, 535, 186, 85, 13, 1486, 3843, 2805, 15, 13264, 9, 14605, 1838, 10, 187, 186, 338, 1486, 3613, 5296, 551, 996, 186, 2309, 21081, 15, 26071, 1587, 16534, 417, 755, 253, 4836, 2462, 84, 27, 2462, 87, 995, 4836, 1838, 13, 1486, 10, 187, 186, 94, 535, 186, 42611, 9795, 10389, 1063, 13, 795, 3843, 7908, 4531, 15, 3633, 30342, 1587, 42611, 2807, 535, 186, 1826, 13264, 1838, 3843, 44031, 301, 15, 29235, 1082, 187, 186, 2666, 3843, 673, 15, 4125, 5023, 42773, 1082, 535, 186, 28474, 32331, 13, 1486, 3843, 673, 15, 21962, 9, 2606, 15, 51, 6739, 1610, 1867, 13, 246, 15, 32331, 15, 2776, 6649, 187, 186, 338, 1486, 3613, 5296, 551, 996, 186, 2309, 21081, 15, 26071, 1587, 16534, 417, 14390, 3562, 3522, 27, 2462, 84, 995, 246, 15, 32331, 10, 187, 186, 94, 535, 186, 28474, 36205, 1282, 13, 1486, 3843, 673, 15, 21962, 9, 2606, 15, 51, 6739, 1610, 1867, 13, 246, 15, 36205, 1282, 15, 2776, 6649, 187, 186, 338, 1486, 3613, 5296, 551, 996, 186, 2309, 21081, 15, 26071, 1587, 16534, 417, 14390, 20639, 3522, 27, 2462, 84, 995, 246, 15, 36205, 1282, 10, 187, 186, 94, 535, 186, 28474, 1672, 31659, 13, 1486, 3843, 673, 15, 21962, 9, 2606, 15, 51, 6739, 1610, 1867, 13, 246, 15, 1672, 31659, 15, 2776, 6649, 187, 186, 338, 1486, 3613, 5296, 551, 996, 186, 2309, 21081, 15, 26071, 1587, 16534, 417, 14390, 3562, 3522, 27, 2462, 84, 995, 246, 15, 1672, 31659, 10, 187, 186, 94, 535, 186, 605, 17526, 18712, 6825, 27, 5987, 1358, 7280, 15, 681, 16, 14605, 24670, 16, 14605, 24670, 14, 8780, 14, 2184, 16, 23723, 16, 2055, 68, 453, 33953, 67, 453, 19, 2275, 25, 12964, 26, 12847, 1423, 69, 26, 68, 615, 23, 66, 2082, 70, 3566, 66, 26, 71, 20, 70, 22, 16, 18038, 14487, 16, 10706, 15, 2184, 4, 45, 1012, 2358, 14, 45, 1010, 2537, 187, 186, 605, 17526, 18712, 9604, 27, 5987, 1358, 7280, 15, 681, 16, 14605, 24670, 16, 14605, 24670, 14, 8780, 14, 2184, 16, 23723, 16, 2055, 68, 453, 33953, 67, 453, 19, 2275, 25, 12964, 26, 12847, 1423, 69, 26, 68, 615, 23, 66, 2082, 70, 3566, 66, 26, 71, 20, 70, 22, 16, 18038, 14487, 16, 10706, 15, 2184, 4, 45, 1010, 3439, 14, 45, 1166, 1036, 535, 186, 1826, 47671, 3843, 8168, 2703, 15564, 187, 186, 1826, 48611, 265, 3843, 8168, 2703, 15564, 187, 186, 338, 3242, 9795, 10389, 1063, 551, 996, 186, 1826, 47671, 426, 246, 15, 47671, 996, 186, 1826, 48611, 265, 426, 246, 15, 48611, 265, 187, 186, 94, 535, 186, 1826, 53, 3843, 708, 18038, 14487, 15, 13264, 18712, 6825, 92, 996, 186, 32331, 27, 50271, 18038, 8780, 15, 4769, 9, 2666, 582, 996, 186, 36205, 1282, 27, 50272, 18038, 8780, 15, 4769, 9, 2666, 15, 4717, 9, 28474, 36205, 1282, 15, 5623, 9, 28474, 32331, 1228, 582, 996, 186, 1672, 31659, 27, 50271, 18038, 8780, 15, 4769, 9, 2666, 15, 4717, 9, 28474, 1672, 31659, 15, 5623, 9, 28474, 32331, 1228, 582, 996, 186, 13264, 6998, 1838, 27, 50275, 85, 15, 13264, 6998, 1838, 13, 996, 186, 37110, 14398, 1838, 27, 50275, 85, 15, 37110, 14398, 1838, 13, 996, 186, 35370, 2548, 27, 50274, 85, 15, 35370, 2548, 13, 996, 186, 1845, 4694, 254, 1838, 27, 246, 15, 1845, 4694, 254, 1838, 13, 996, 186, 36933, 27, 50272, 85, 15, 36933, 13, 996, 186, 47671, 27, 50276, 1826, 47671, 13, 996, 186, 31087, 27, 50269, 85, 15, 31087, 13, 996, 186, 25467, 27, 50272, 85, 15, 25467, 13, 996, 186, 48797, 27, 50271, 85, 15, 48797, 13, 996, 186, 1785, 47497, 27, 50272, 85, 15, 1785, 47497, 13, 996, 186, 9795, 2246, 27, 50271, 17, 13, 996, 186, 48611, 265, 27, 50270, 1826, 48611, 265, 13, 996, 186, 4316, 11192, 27, 50270, 85, 15, 4316, 11192, 13, 996, 186, 31095, 27, 50268, 85, 15, 31095, 13, 187, 186, 94, 535, 186, 68, 13, 1486, 3843, 2805, 15, 9395, 13264, 9, 1826, 13264, 1838, 13, 747, 53, 10, 187, 186, 338, 1486, 3613, 5296, 551, 996, 186, 2309, 21081, 15, 26071, 1587, 16534, 417, 2794, 4836, 27, 2462, 87, 995, 1486, 10, 187, 186, 94, 535, 186, 605, 1310, 359, 1694, 642, 2228, 13, 326, 2097, 253, 4836, 369, 8379, 9262, 187, 186, 20602, 15, 39, 13108, 9, 483, 13, 346, 13264, 2462, 84, 3562, 61, 79, 995, 260, 15, 9505, 15, 13264, 1838, 10, 187, 186, 2309, 5296, 187, 94, 187, 187, 605, 1408, 26626, 29141, 247, 1677, 4836, 15, 187, 4997, 1408, 26626, 9, 25798, 15738, 475, 18038, 8780, 15, 29981, 15738, 13, 13059, 8168, 2703, 13, 562, 17908, 15, 16978, 13, 7908, 4531, 475, 81, 17101, 15, 22532, 4531, 10, 2228, 551, 187, 186, 27607, 13, 795, 3843, 7908, 4531, 15, 3633, 30342, 1587, 27607, 2807, 187, 186, 38286, 13, 795, 3843, 7908, 4531, 15, 3633, 30342, 1587, 38286, 2807, 535, 186, 82, 3843, 1056, 19878, 9, 25798, 15738, 10, 187, 186, 14605, 1838, 3843, 13059, 60, 17, 62, 535, 186, 84, 13, 1486, 3843, 2805, 15, 9505, 9, 14605, 1838, 10, 187, 186, 338, 1486, 3613, 5296, 551, 996, 186, 2309, 21081, 15, 26071, 1587, 16534, 417, 755, 253, 3708, 273, 253, 4836, 2462, 84, 27, 2462, 87, 995, 4836, 1838, 13, 1486, 10, 187, 186, 94, 535, 186, 338, 642, 412, 551, 996, 186, 2309, 3148, 2302, 412, 21611, 1587, 17304, 3426, 995, 23820, 13, 13059, 10, 187, 186, 94, 535, 186, 338, 6583, 551, 996, 186, 2044, 6583, 426, 6583, 21611, 1587, 12978, 3426, 995, 23820, 13, 13059, 10, 996, 186, 338, 2195, 38286, 551, 988, 186, 2309, 5296, 996, 186, 94, 187, 186, 94, 535, 186, 68, 13, 1486, 3843, 2805, 15, 34200, 13264, 9, 14605, 1838, 13, 21081, 15, 52, 3845, 9, 5025, 9, 84, 15, 9505, 15, 51, 4539, 4587, 18, 582, 708, 18038, 14487, 15, 13264, 34200, 6825, 92, 996, 186, 35370, 6998, 27, 256, 15, 9505, 15, 35370, 2548, 13, 996, 186, 35370, 1838, 27, 50274, 3, 14605, 24670, 14, 31010, 995, 187, 186, 2311, 187, 186, 338, 1486, 3613, 5296, 551, 996, 186, 2309, 21081, 15, 26071, 1587, 16534, 417, 1750, 253, 4836, 2462, 84, 27, 2462, 87, 995, 4836, 1838, 13, 1486, 10, 187, 186, 94, 535, 186, 88, 82, 3843, 1056, 19878, 6395, 18038, 8780, 15, 29981, 15738, 92, 996, 186, 8975, 1838, 27, 50274, 68, 15, 29981, 15738, 15, 8975, 1838, 13, 996, 186, 11501, 11200, 27, 260, 15, 29981, 15738, 15, 11501, 11200, 13, 996, 186, 41169, 27, 260, 15, 29981, 15738, 15, 41169, 13, 187, 186, 2311, 187, 186, 83, 13, 1486, 3843, 259, 82, 15, 20684, 45653, 9, 14605, 1838, 13, 21081, 15, 52, 3845, 9, 68, 15, 12965, 1838, 1228, 187, 186, 338, 1486, 3613, 5296, 551, 996, 186, 2309, 21081, 15, 26071, 1587, 16534, 417, 3426, 253, 4836, 2462, 84, 27, 2462, 87, 995, 4836, 1838, 13, 1486, 10, 187, 186, 94, 535, 186, 20602, 15, 39, 16684, 9, 483, 13, 755, 12965, 9505, 2776, 9, 83, 15, 9505, 15, 51, 4539, 60, 68, 15, 12965, 1838, 1570, 5443, 13, 391, 15, 9505, 15, 51, 4539, 60, 68, 15, 12965, 1838, 1570, 40722, 2632, 5336, 1228, 187, 186, 2309, 5296, 187, 94, 187 ]
package task import ( "fmt" "io" "time" "github.com/spf13/pflag" "github.com/taskcluster/slugid-go/slugid" tcclient "github.com/taskcluster/taskcluster/v37/clients/client-go" "github.com/taskcluster/taskcluster/v37/clients/client-go/tcqueue" ) // runCancel cancels the runs of a given task. func runCancel(credentials *tcclient.Credentials, args []string, out io.Writer, flagSet *pflag.FlagSet) error { noop, _ := flagSet.GetBool("noop") confirm, _ := flagSet.GetBool("confirm") q := makeQueue(credentials) taskID := args[0] if noop { return displayNoopMsg("Would cancel", credentials, args) } if confirm { var confirm = confirmMsg("Cancels", credentials, args) if !confirm { return nil } } c, err := q.CancelTask(taskID) if err != nil { log.Error(err) return fmt.Errorf("could not cancel the task %s: %v", taskID, err) } run := c.Status.Runs[len(c.Status.Runs)-1] fmt.Fprintln(out, getRunStatusString(run.State, run.ReasonResolved)) return nil } // runRerun re-runs a given task. func runRerun(credentials *tcclient.Credentials, args []string, out io.Writer, flagSet *pflag.FlagSet) error { noop, _ := flagSet.GetBool("noop") confirm, _ := flagSet.GetBool("confirm") force, _ := flagSet.GetBool("force") q := makeQueue(credentials) taskID := args[0] if noop { return displayNoopMsg("Would re-run", credentials, args) } if confirm { var confirm = confirmMsg("Will re-run", credentials, args) if !confirm { return nil } } if !force { s, err := q.Status(taskID) if err != nil { return fmt.Errorf("could not get status of the task %s: %v", taskID, err) } if s.Status.State != "failed" && s.Status.State != "exception" { return fmt.Errorf("Task %s is in state %s. Disallowing rerun of a non-failed and non-exception task without --force", taskID, s.Status.State) } } c, err := q.RerunTask(taskID) if err != nil { return fmt.Errorf("could not rerun the task %s: %v", taskID, err) } run := c.Status.Runs[len(c.Status.Runs)-1] fmt.Fprintln(out, getRunStatusString(run.State, run.ReasonResolved)) return nil } // runRetrigger re-triggers a given task. // It will generate a new taskId, update timestamps and retries to 0 // Optionnally, you can pass '--exact' to keep stuff like: // - routes, // - dependencies, // - ... // // Otherwise, default behavior is to omit those as taskcluster-tools does: // https://github.com/taskcluster/taskcluster-tools/blob/e8b6d45f10e7520f717b7a9f5db87d550c74d15e/src/views/UnifiedInspector/ActionsMenu.jsx#L141-L158 func runRetrigger(credentials *tcclient.Credentials, args []string, out io.Writer, flagSet *pflag.FlagSet) error { q := makeQueue(credentials) taskID := args[0] t, err := q.Task(taskID) if err != nil { return fmt.Errorf("could not get the task %s: %v", taskID, err) } exactRetrigger, _ := flagSet.GetBool("exact") newTaskID := slugid.Nice() now := time.Now().UTC() origCreated, err := time.Parse(time.RFC3339, t.Created.String()) if err != nil { return fmt.Errorf("could not parse created date: %s", t.Created) } origDeadline, err := time.Parse(time.RFC3339, t.Deadline.String()) if err != nil { return fmt.Errorf("could not parse deadline date: %s", t.Deadline) } origExpires, err := time.Parse(time.RFC3339, t.Expires.String()) if err != nil { return fmt.Errorf("could not parse created date: %s", t.Expires) } // TaskDefinitionRequest: https://github.com/taskcluster/taskcluster-client-go/blob/88cfe471bfe2eb8fc9bc22d9cde6a65e74a9f3e5/tcqueue/types.go#L1368-L1549 // TaskDefinitionResponse: https://github.com/taskcluster/taskcluster-client-go/blob/88cfe471bfe2eb8fc9bc22d9cde6a65e74a9f3e5/tcqueue/types.go#L1554-L1716 newDependencies := []string{} newRoutes := []string{} if exactRetrigger { newDependencies = t.Dependencies newRoutes = t.Routes } newT := &tcqueue.TaskDefinitionRequest{ Created: tcclient.Time(now), Deadline: tcclient.Time(now.Add(origDeadline.Sub(origCreated))), Expires: tcclient.Time(now.Add(origExpires.Sub(origCreated))), TaskGroupID: t.TaskGroupID, SchedulerID: t.SchedulerID, WorkerType: t.WorkerType, ProvisionerID: t.ProvisionerID, Priority: t.Priority, Dependencies: newDependencies, Extra: t.Extra, Metadata: t.Metadata, Payload: t.Payload, Requires: t.Requires, Retries: 0, Routes: newRoutes, Scopes: t.Scopes, Tags: t.Tags, } c, err := q.CreateTask(newTaskID, newT) if err != nil { return fmt.Errorf("could not create task: %v", err) } // If we got no error, that means the task was successfully submitted fmt.Fprintf(out, "Task %s created\n", c.Status.TaskID) return nil } // runComplete completes a given task. func runComplete(credentials *tcclient.Credentials, args []string, out io.Writer, flagSet *pflag.FlagSet) error { noop, _ := flagSet.GetBool("noop") confirm, _ := flagSet.GetBool("confirm") q := makeQueue(credentials) taskID := args[0] s, err := q.Status(taskID) if err != nil { return fmt.Errorf("could not get the status of the task %s: %v", taskID, err) } if noop { return displayNoopMsg("Would complete", credentials, args) } if confirm { var confirm = confirmMsg("Will complete", credentials, args) if !confirm { return nil } } c, err := q.ClaimTask(taskID, fmt.Sprint(len(s.Status.Runs)-1), &tcqueue.TaskClaimRequest{ WorkerGroup: s.Status.WorkerType, WorkerID: "taskcluster-cli", }) if err != nil { return fmt.Errorf("could not claim the task %s: %v", taskID, err) } wq := makeQueue(&tcclient.Credentials{ ClientID: c.Credentials.ClientID, AccessToken: c.Credentials.AccessToken, Certificate: c.Credentials.Certificate, }) r, err := wq.ReportCompleted(taskID, fmt.Sprint(c.RunID)) if err != nil { return fmt.Errorf("could not complete the task %s: %v", taskID, err) } fmt.Fprintln(out, getRunStatusString(r.Status.Runs[c.RunID].State, r.Status.Runs[c.RunID].ReasonResolved)) return nil }
214,373
Github
[ 3122, 187, 475, 428, 187, 475, 1852, 6, 45, 187, 475, 367, 24997, 27, 30503, 46854, 187, 475, 38689, 187, 475, 8283, 313, 36, 10, 4022, 308, 1468, 375, 38230, 187, 475, 38689, 187, 475, 21737, 762, 253, 14325, 4637, 13, 11099, 374, 15, 17, 313, 783, 346, 17736, 3287, 187, 475, 368, 778, 417, 897, 436, 1873, 3707, 275, 10276, 342, 253, 4637, 15, 187, 475, 1422, 778, 4044, 247, 3491, 273, 253, 4637, 387, 187, 475, 187, 475, 50272, 2413, 1358, 2700, 15, 8418, 15, 2061, 16, 17130, 16, 17821, 14, 19, 15, 17, 187, 475, 187, 475, 15999, 2424, 407, 7763, 1569, 390, 5821, 281, 275, 4028, 13, 3694, 187, 475, 5939, 762, 253, 4637, 310, 5939, 327, 271, 346, 1719, 4110, 3, 23440, 13, 187, 475, 15002, 15466, 4145, 22998, 3481, 9103, 19329, 13, 2057, 3890, 390, 10466, 15, 187, 475, 2594, 253, 4637, 323, 253, 2173, 3448, 13200, 15607, 285, 187, 475, 7364, 762, 253, 4637, 15, 187, 475, 1852, 45, 6, 187, 1738, 187, 187, 10708, 372, 15, 893, 29058, 15, 81, 24997, 15, 11345, 28, 187, 187, 2948, 7626, 15, 900, 15, 4505, 28, 187, 2948, 7626, 15, 900, 15, 4505, 34115, 5330, 28, 187, 2948, 7626, 15, 900, 15, 38487, 28, 187, 2948, 7626, 15, 900, 15, 19117, 6542, 30891, 28, 187, 2948, 7626, 15, 8906, 15, 43797, 28, 187, 2948, 7626, 15, 8906, 15, 25918, 698, 28, 187, 2948, 7626, 15, 8906, 15, 16850, 6648, 28, 187, 2948, 7626, 15, 8906, 15, 2765, 28, 187, 2948, 7626, 15, 8906, 15, 6648, 28, 187, 2948, 7626, 15, 8906, 15, 4531, 28, 187, 2948, 7626, 15, 8906, 15, 4963, 15, 10937, 641, 28, 187, 2948, 7626, 15, 48830, 15, 49611, 15, 45132, 292, 28, 187, 187, 2948, 4955, 15, 22289, 7232, 5297, 15, 24111, 15, 1601, 5449, 15, 20528, 15, 13996, 28, 187, 2948, 4955, 15, 22289, 7232, 5297, 15, 24111, 15, 1601, 5449, 15, 20528, 15, 13996, 5856, 28, 187, 2948, 4955, 15, 22289, 7232, 5297, 15, 24111, 15, 1601, 5449, 15, 20528, 15, 13996, 21873, 28, 187, 2948, 4955, 15, 22289, 7232, 5297, 15, 24111, 15, 1601, 5449, 15, 20528, 15, 13996, 35449, 28, 187, 2948, 4955, 15, 22289, 7232, 5297, 15, 24111, 15, 1601, 5449, 15, 20528, 15, 19158, 8241, 528, 11592, 11144, 272, 13996, 35449, 28, 187, 2948, 4955, 15, 76, 1368, 3467, 413, 15, 18233, 17407, 15, 3233, 27869, 38168, 28, 187, 2948, 4955, 15, 76, 1368, 3467, 413, 15, 18233, 17407, 15, 3233, 27869, 43617, 28, 187, 187, 2948, 389, 15, 32687, 11345, 15, 21922, 15, 18534, 1248, 15, 38859, 22740, 5232, 318, 28, 187, 2948, 389, 15, 32687, 11345, 15, 21922, 15, 18534, 1248, 15, 38859, 22740, 5232, 318, 8975, 12038, 28, 187, 2948, 389, 15, 32687, 11345, 15, 21922, 15, 18534, 1248, 15, 7645, 15, 4476, 19268, 15268, 22804, 6825, 28, 187, 2948, 389, 15, 32687, 11345, 15, 21922, 15, 18534, 1248, 15, 7645, 15, 4476, 19268, 15268, 22804, 9179, 28, 187, 2948, 389, 15, 32687, 11345, 15, 21922, 15, 18534, 1248, 15, 7645, 15, 15268, 11133, 28, 187, 2948, 389, 15, 32687, 11345, 15, 21922, 15, 2260, 15, 34, 10930, 5764, 28, 187, 2948, 389, 15, 32687, 11345, 15, 21922, 15, 2260, 15, 34, 10930, 5764, 8975, 12038, 28, 187, 2948, 389, 15, 32687, 11345, 15, 21922, 15, 2260, 15, 7645, 15, 2765, 43356, 621, 3463, 11594, 6825, 28, 187, 2948, 389, 15, 32687, 11345, 15, 21922, 15, 2260, 15, 7645, 15, 2765, 43356, 621, 3463, 11594, 9179, 28, 187, 2948, 389, 15, 32687, 11345, 15, 21922, 15, 2260, 15, 7645, 15, 19238, 11594, 6825, 28, 187, 2948, 389, 15, 32687, 11345, 15, 21922, 15, 2260, 15, 7645, 15, 11594, 11909, 28, 187, 2948, 389, 15, 32687, 11345, 15, 21922, 15, 2260, 15, 7645, 15, 2765, 25131, 1169, 6825, 28, 187, 2948, 389, 15, 32687, 11345, 15, 21922, 15, 2260, 15, 7645, 15, 2765, 25131, 1169, 9179, 28, 187, 2948, 389, 15, 32687, 11345, 15, 8045, 15, 25155, 5949, 2548, 28, 187, 2948, 389, 15, 32687, 11345, 15, 8045, 15, 25155, 11119, 28, 187, 2948, 389, 15, 32687, 11345, 15, 21922, 15, 84, 20, 15, 31163, 28, 187, 2948, 389, 15, 32687, 11345, 15, 21922, 15, 84, 20, 15, 7645, 15, 36, 5442, 11501, 10588, 2765, 28, 187, 2948, 389, 15, 32687, 11345, 15, 21922, 15, 84, 20, 15, 7645, 15, 4241, 25467, 28, 187, 2948, 389, 15, 32687, 11345, 15, 21922, 15, 84, 20, 15, 7645, 15, 12501, 4241, 6825, 28, 187, 2948, 389, 15, 32687, 11345, 15, 21922, 15, 84, 20, 15, 7645, 15, 52, 2354, 39973, 28, 187, 2948, 389, 15, 32687, 11345, 15, 21922, 15, 84, 20, 15, 7645, 15, 52, 46124, 8819, 4814, 33281, 18246, 28, 187, 2948, 389, 15, 32687, 11345, 15, 21922, 15, 84, 20, 15, 17338, 15, 29454, 4505, 31483, 28, 187, 2948, 389, 15, 32687, 11345, 15, 21922, 15, 84, 20, 15, 17338, 15, 4241, 25467, 14725, 28, 187, 2948, 389, 15, 32687, 11345, 15, 21922, 15, 84, 20, 15, 17338, 15, 34836, 8224, 28, 187, 2948, 389, 15, 32687, 11345, 15, 21922, 15, 84, 20, 15, 17338, 15, 34836, 8224, 12038, 28, 187, 2948, 389, 15, 32687, 11345, 15, 21922, 15, 84, 20, 15, 17338, 15, 31483, 28, 187, 2948, 389, 15, 9906, 15, 9784, 15, 4793, 15, 7420, 32978, 28, 187, 187, 2948, 7626, 15, 8906, 15, 6958, 28, 187, 2948, 7626, 15, 8906, 15, 49967, 2765, 28, 187, 187, 2948, 372, 15, 893, 29058, 15, 81, 24997, 15, 11345, 15, 18833, 15, 13996, 19611, 28, 187, 2948, 288, 19636, 15, 32883, 55, 1032, 28, 187, 2948, 288, 19636, 15, 24057, 28, 187, 2948, 288, 19636, 15, 48617, 28, 187, 2948, 288, 19636, 15, 7645, 15, 13264, 11119, 28, 187, 2948, 288, 19636, 15, 2013, 5341, 15, 32170, 18851, 28, 187, 2948, 480, 257, 7232, 15, 20133, 1992, 10612, 1123, 4505, 7865, 494, 28, 187, 187, 2948, 7626, 15, 2606, 15, 59, 11406, 24151, 28, 187, 2948, 7626, 15, 2606, 15, 35159, 28, 187, 187, 4387, 966, 418, 1836, 8893, 36272, 484, 13996, 8725, 18952, 551, 535, 186, 9486, 4605, 1159, 2402, 28, 187, 186, 9486, 4605, 8031, 2402, 28, 187, 186, 9486, 2457, 1503, 11406, 24151, 2715, 28512, 2727, 28, 535, 186, 33, 3233, 27869, 38168, 187, 186, 4387, 418, 1836, 8893, 36272, 484, 13996, 9, 565, 1897, 34, 2184, 10, 551, 996, 186, 2520, 15, 4149, 28512, 2727, 426, 1503, 11406, 24151, 15, 2666, 5023, 10420, 9, 35159, 15, 1171, 41430, 9, 11015, 34, 2184, 4027, 187, 186, 94, 535, 186, 33, 3233, 27869, 43617, 187, 186, 4387, 2991, 873, 11594, 2402, 9, 2776, 1159, 2402, 10, 551, 996, 186, 2520, 15, 3701, 2402, 426, 1159, 2402, 28, 187, 186, 94, 535, 186, 33, 3233, 27869, 43617, 187, 186, 4387, 2991, 873, 15268, 2402, 9, 2776, 8031, 2402, 10, 551, 996, 186, 2520, 15, 9742, 2402, 426, 8031, 2402, 28, 187, 186, 94, 535, 186, 33, 9677, 187, 186, 4387, 18952, 35449, 1265, 9, 13996, 5856, 3634, 10, 12326, 19563, 551, 996, 186, 2309, 747, 418, 1836, 8893, 36272, 484, 13996, 15, 35449, 9, 2520, 13, 3634, 558, 187, 186, 94, 535, 186, 33, 24057, 187, 186, 4387, 4228, 966, 3666, 16364, 14560, 8725, 18952, 21873, 551, 6886, 186, 33, 9677, 996, 186, 4387, 6618, 14277, 8725, 6550, 14277, 5064, 755, 28463, 5856, 1082, 551, 988, 186, 2309, 18952, 19611, 15, 36042, 9671, 1874, 996, 186, 94, 6886, 186, 33, 9677, 996, 186, 4387, 4605, 755, 11594, 2402, 1082, 551, 988, 186, 2309, 346, 2260, 8893, 36272, 484, 3664, 996, 186, 94, 6886, 186, 33, 9677, 996, 186, 4387, 4605, 755, 17214, 2402, 1082, 551, 988, 186, 2309, 346, 36272, 484, 1711, 29331, 9508, 3664, 996, 186, 94, 187, 186, 94, 535, 186, 4387, 4228, 966, 12138, 890, 8725, 14139, 8241, 528, 11592, 11144, 272, 13996, 35449, 29, 2776, 31, 551, 6886, 186, 18641, 4228, 2457, 1048, 10382, 8893, 18244, 426, 337, 45, 28, 6886, 186, 18641, 2457, 15550, 418, 1836, 8893, 36272, 484, 13996, 3213, 28, 6886, 186, 4387, 12138, 890, 9, 5764, 8893, 36272, 484, 13996, 3213, 13, 18952, 5856, 3634, 10, 551, 988, 186, 12185, 9, 8882, 558, 988, 186, 2520, 15, 10539, 426, 3213, 28, 996, 186, 94, 6886, 186, 9486, 5552, 29, 11594, 11909, 31, 1089, 3074, 43356, 621, 9, 34, 10930, 5764, 5268, 13, 4605, 1159, 2402, 10, 551, 988, 186, 2765, 29, 11594, 11909, 31, 1618, 426, 747, 29743, 2765, 46145, 988, 186, 2765, 43356, 621, 3463, 11594, 6825, 2748, 426, 747, 5552, 43356, 621, 3463, 11594, 6825, 1082, 2657, 186, 15, 3113, 11594, 2402, 9, 3701, 2402, 558, 988, 186, 3088, 551, 2657, 186, 2765, 43356, 621, 3463, 11594, 9179, 906, 426, 5268, 15, 3550, 43356, 621, 3463, 11594, 9, 9629, 558, 2657, 186, 3550, 15, 1911, 3074, 9, 6870, 15, 788, 43356, 621, 6020, 2657, 186, 9629, 15, 1178, 42646, 9, 6870, 15, 788, 9301, 42646, 6020, 988, 186, 94, 1223, 313, 9629, 15, 788, 42646, 1082, 3613, 3635, 558, 11866, 186, 2309, 1618, 28, 996, 186, 94, 6886, 186, 9486, 2991, 11352, 3074, 43356, 621, 9, 34, 10930, 5764, 5268, 13, 4605, 1159, 2402, 10, 12326, 19563, 551, 988, 186, 13264, 11119, 24199, 426, 12138, 890, 15, 2520, 15, 788, 5856, 5023, 788, 9, 13264, 11119, 15, 2437, 558, 988, 186, 48888, 15, 788, 26428, 5023, 8124, 1587, 24397, 323, 1711, 9508, 1159, 2402, 23869, 84, 6, 79, 995, 1159, 2402, 558, 988, 186, 2765, 29, 2776, 31, 19541, 833, 43356, 621, 426, 5268, 15, 3550, 25131, 1169, 9, 1826, 5552, 25131, 1169, 6825, 1082, 2664, 186, 15, 3113, 11594, 2402, 9, 3701, 2402, 5029, 788, 25131, 1169, 5023, 4963, 1082, 2664, 186, 15, 4251, 9, 313, 29913, 10, 5204, 28129, 15, 788, 11594, 8893, 6649, 2664, 186, 15, 23865, 9, 10937, 641, 15, 936, 2765, 6020, 988, 186, 48888, 15, 788, 26428, 5023, 8124, 1587, 16641, 355, 3013, 1159, 2402, 23869, 84, 28129, 23869, 84, 6, 79, 995, 1159, 2402, 13, 19541, 833, 43356, 621, 558, 988, 186, 2765, 29, 11594, 11909, 31, 512, 43356, 621, 426, 1089, 3074, 43356, 621, 9, 8780, 13, 1159, 2402, 558, 988, 186, 48888, 15, 788, 26428, 5023, 8124, 1587, 16641, 1711, 9508, 1159, 2402, 23869, 84, 1385, 23869, 69, 6, 79, 995, 1159, 2402, 13, 512, 43356, 621, 15, 3281, 6020, 988, 186, 2765, 29, 11594, 11909, 31, 18748, 43356, 621, 426, 512, 43356, 621, 15, 4963, 1082, 2657, 186, 15, 10978, 9, 313, 3701, 10, 5204, 551, 2664, 186, 59, 11406, 24151, 36838, 24151, 426, 33180, 19611, 15, 12083, 9, 3701, 15, 788, 8693, 37765, 6020, 2664, 186, 2309, 36838, 24151, 15, 261, 8639, 9, 2520, 15, 10539, 15, 4149, 28512, 2727, 558, 2657, 186, 2311, 2657, 186, 15, 10978, 9, 313, 3701, 10, 5204, 34670, 5, 45, 4966, 1267, 3446, 22297, 9, 3701, 15, 788, 8893, 32875, 2657, 186, 15, 10978, 9, 313, 3701, 10, 5204, 2195, 8952, 833, 43356, 621, 15, 24634, 9, 3701, 15, 788, 8893, 32875, 2657, 186, 15, 23865, 9, 10937, 641, 15, 936, 2765, 6020, 988, 186, 1542, 313, 11594, 11909, 1159, 11909, 1163, 18748, 43356, 621, 10, 551, 2657, 186, 48888, 15, 788, 26428, 5023, 8124, 1587, 3848, 1059, 272, 1711, 2715, 1159, 2402, 23869, 84, 2715, 23869, 84, 1390, 37765, 23869, 84, 6, 79, 995, 1159, 2402, 13, 1159, 11909, 15, 788, 8893, 5715, 1159, 11909, 15, 788, 8693, 37765, 6020, 2657, 186, 8780, 15, 16435, 11594, 9, 1826, 33551, 11594, 6825, 1082, 7308, 186, 15, 3113, 11594, 2402, 9, 3701, 2402, 10, 7308, 186, 15, 3113, 34255, 5425, 9, 3701, 11909, 15, 788, 8893, 6649, 2657, 186, 558, 988, 186, 94, 996, 186, 94, 33158, 186, 9486, 2991, 11352, 3074, 15268, 11594, 43356, 621, 9, 34, 10930, 5764, 5268, 13, 4605, 8031, 2402, 10, 12326, 19563, 50276, 92, 988, 186, 13264, 11119, 24199, 426, 12138, 890, 15, 2520, 15, 788, 5856, 5023, 788, 9, 13264, 11119, 15, 2437, 558, 988, 186, 48888, 15, 788, 26428, 5023, 8124, 1587, 3848, 1059, 272, 1711, 9508, 432, 8031, 2402, 23869, 84, 6, 79, 995, 8031, 2402, 558, 988, 186, 38859, 22740, 5232, 318, 9005, 1248, 426, 30503, 8975, 11749, 15, 6953, 9, 38859, 22740, 5232, 318, 8975, 12038, 15, 15291, 5715, 436, 15, 788, 5856, 6020, 988, 186, 4476, 19268, 15268, 22804, 9179, 906, 426, 9005, 1248, 15, 49027, 15268, 22804, 9, 1826, 3666, 19268, 15268, 22804, 6825, 1082, 2664, 186, 15, 3113, 15268, 2402, 9, 9742, 2402, 10, 988, 186, 558, 988, 186, 1542, 313, 15268, 11133, 8031, 11133, 1163, 906, 15, 788, 15268, 22804, 6649, 551, 2657, 186, 338, 5550, 34, 10930, 1450, 5764, 1450, 11594, 3446, 22297, 9, 9742, 11133, 15, 788, 11133, 2548, 32875, 551, 2664, 186, 16435, 3074, 43356, 621, 9, 8780, 13, 8031, 11133, 15, 788, 35227, 11133, 2618, 6020, 2657, 186, 94, 988, 186, 94, 996, 186, 94, 6886, 186, 33, 9677, 996, 186, 4387, 4605, 1408, 1082, 12326, 19563, 551, 11866, 186, 34, 10930, 5764, 5268, 426, 30503, 8975, 11749, 15, 6953, 9, 34, 10930, 5764, 8975, 12038, 15, 15291, 5715, 436, 15, 788, 5856, 6020, 11866, 186, 338, 313, 2520, 15, 10539, 15, 3701, 2402, 3613, 3635, 10, 551, 2657, 186, 16435, 3074, 43356, 621, 9, 8780, 13, 436, 15, 10539, 15, 3701, 2402, 558, 988, 186, 94, 11866, 186, 338, 313, 2520, 15, 10539, 15, 9742, 2402, 3613, 3635, 10, 551, 2657, 186, 16435, 3074, 15268, 11594, 43356, 621, 9, 8780, 13, 436, 15, 10539, 15, 9742, 2402, 558, 988, 186, 94, 988, 186, 2309, 3635, 28, 996, 186, 94, 535, 186, 94, 187, 187, 94, 187 ]
/* * - * #%L * Pipeline: AWS Steps * %% * Copyright (C) 2016 Taimos GmbH * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * #L% */ package de.taimos.pipeline.aws; import java.io.File; import java.io.FileNotFoundException; import java.io.IOException; import java.io.ByteArrayInputStream; import java.util.ArrayList; import java.util.Arrays; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.Set; import java.util.stream.Collectors; import java.nio.charset.Charset; import org.jenkinsci.plugins.workflow.steps.Step; import org.jenkinsci.plugins.workflow.steps.StepContext; import org.jenkinsci.plugins.workflow.steps.StepDescriptor; import org.jenkinsci.plugins.workflow.steps.StepExecution; import org.jenkinsci.plugins.workflow.steps.SynchronousNonBlockingStepExecution; import org.kohsuke.stapler.DataBoundConstructor; import org.kohsuke.stapler.DataBoundSetter; import com.amazonaws.services.cloudformation.AmazonCloudFormation; import com.amazonaws.services.cloudformation.AmazonCloudFormationClientBuilder; import com.amazonaws.services.cloudformation.model.DescribeStackResourcesRequest; import com.amazonaws.services.cloudformation.model.DescribeStackResourcesResult; import com.amazonaws.services.cloudformation.model.StackResource; import com.amazonaws.services.lambda.AWSLambda; import com.amazonaws.services.lambda.AWSLambdaClientBuilder; import com.amazonaws.services.lambda.model.ListVersionsByFunctionRequest; import com.amazonaws.services.lambda.model.ListVersionsByFunctionResult; import com.amazonaws.services.lambda.model.DeleteFunctionRequest; import com.amazonaws.services.lambda.model.FunctionConfiguration; import com.amazonaws.services.lambda.model.ListAliasesRequest; import com.amazonaws.services.lambda.model.ListAliasesResult; import com.amazonaws.event.ProgressEventType; import com.amazonaws.event.ProgressListener; import com.amazonaws.services.s3.Headers; import com.amazonaws.services.s3.model.CannedAccessControlList; import com.amazonaws.services.s3.model.ObjectMetadata; import com.amazonaws.services.s3.model.PutObjectRequest; import com.amazonaws.services.s3.model.SSEAlgorithm; import com.amazonaws.services.s3.model.SSEAwsKeyManagementParams; import com.amazonaws.services.s3.transfer.MultipleFileUpload; import com.amazonaws.services.s3.transfer.ObjectMetadataProvider; import com.amazonaws.services.s3.transfer.TransferManager; import com.amazonaws.services.s3.transfer.TransferManagerBuilder; import com.amazonaws.services.s3.transfer.Upload; import com.google.common.base.Preconditions; import java.util.Date; import java.util.LinkedList; import de.taimos.pipeline.aws.utils.StepUtils; import hudson.EnvVars; import hudson.Extension; import hudson.FilePath; import hudson.model.TaskListener; import hudson.remoting.VirtualChannel; import jenkins.MasterToSlaveFileCallable; import java.time.ZonedDateTime; import java.time.Period; public class LambdaVersionCleanupStep extends Step { private String functionName; private String stackName; private final ZonedDateTime versionCutoff; @DataBoundConstructor public LambdaVersionCleanupStep(int daysAgo) { this.versionCutoff = ZonedDateTime.now().minus(Period.ofDays(daysAgo)); } @DataBoundSetter public void setFunctionName(String functionName) { this.functionName = functionName; } @DataBoundSetter public void setStackName(String stackName) { this.stackName = stackName; } @Override public StepExecution start(StepContext context) throws Exception { return new LambdaVersionCleanupStep.Execution(this, context); } @Extension public static class DescriptorImpl extends StepDescriptor { @Override public Set<? extends Class<?>> getRequiredContext() { return StepUtils.requiresDefault(); } @Override public String getFunctionName() { return "lambdaVersionCleanup"; } @Override public String getDisplayName() { return "Cleanup old lambda versions"; } } public static class Execution extends SynchronousNonBlockingStepExecution<String> { protected static final long serialVersionUID = 1L; protected final transient LambdaVersionCleanupStep step; public Execution(LambdaVersionCleanupStep step, StepContext context) { super(context); this.step = step; } private List<FunctionConfiguration> findAllVersions(AWSLambda client, String functionName) { List<FunctionConfiguration> list = new LinkedList<>(); ListVersionsByFunctionRequest request = new ListVersionsByFunctionRequest() .withFunctionName(functionName); do { ListVersionsByFunctionResult result = client.listVersionsByFunction(request); list.addAll(result.getVersions()); request.setMarker(result.getNextMarker()); } while (request.getMarker() != null); return list; } private void deleteAllVersions(AWSLambda client, String functionName) throws Exception { TaskListener listener = Execution.this.getContext().get(TaskListener.class); listener.getLogger().format("Looking for old versions functionName=%s%n", functionName); List<String> aliasedVersions = client.listAliases(new ListAliasesRequest() .withFunctionName(functionName)).getAliases().stream() .map( (alias) -> alias.getFunctionVersion()) .collect(Collectors.toList()); listener.getLogger().format("Found alises functionName=%s alias=%s%n", functionName, aliasedVersions); List<FunctionConfiguration> allVersions = findAllVersions(client, functionName); listener.getLogger().format("Found old versions functionName=%s count=%d%n", functionName, allVersions.size()); List<FunctionConfiguration> filteredVersions = allVersions.stream() .filter( (function) -> { ZonedDateTime parsedDateTime = DateTimeUtils.parse(function.getLastModified()); return parsedDateTime.isBefore(this.step.versionCutoff); }) .filter( (function) -> !"$LATEST".equals(function.getVersion())) .filter( (function) -> !aliasedVersions.contains(function.getVersion())) .collect(Collectors.toList()); for (FunctionConfiguration functionConfiguration : filteredVersions) { listener.getLogger().format("Deleting old version functionName=%s version=%s lastModified=%s%n", functionName, functionConfiguration.getVersion(), functionConfiguration.getLastModified()); client.deleteFunction(new DeleteFunctionRequest() .withFunctionName(functionName) .withQualifier(functionConfiguration.getVersion()) ); } } private void deleteAllStackFunctionVersions(AWSLambda client, String stackName) throws Exception { TaskListener listener = Execution.this.getContext().get(TaskListener.class); listener.getLogger().format("Deleting old versions from stackName=%s%n", stackName); AmazonCloudFormation cloudformation = AWSClientFactory.create(AmazonCloudFormationClientBuilder.standard(), this.getContext()); DescribeStackResourcesResult result = cloudformation.describeStackResources(new DescribeStackResourcesRequest() .withStackName(stackName) ); for (StackResource stackResource : result.getStackResources()) { if ("AWS::Lambda::Function".equals(stackResource.getResourceType())) { deleteAllVersions(client, stackResource.getPhysicalResourceId()); } } } @Override public String run() throws Exception { AWSLambda client = AWSClientFactory.create(AWSLambdaClientBuilder.standard(), this.getContext()); if (this.step.functionName != null) { deleteAllVersions(client, this.step.functionName); } if (this.step.stackName != null) { deleteAllStackFunctionVersions(client, this.step.stackName); } return null; } } }
214,374
Github
[ 4, 329, 23, 27, 7132, 9044, 29056, 24693, 187, 187, 93, 46371, 6083, 16, 6601, 471, 11390, 1040, 9044, 49092, 1255, 50267, 93, 16009, 10719, 50263, 93, 187, 93, 1969, 1040, 1969, 1040, 1969, 1040, 187, 93, 13135, 418, 29576, 1163, 14499, 27521, 1430, 495, 1040, 5729, 33630, 495, 1163, 22464, 1430, 495, 1040, 23557, 374, 1163, 10518, 1040, 187, 93, 36931, 398, 588, 2223, 3177, 281, 22059, 440, 4066, 2147, 32138, 390, 2289, 4284, 8553, 13, 30732, 7223, 13, 440, 18641, 4367, 285, 33266, 13, 3966, 281, 6351, 31957, 2289, 390, 3640, 273, 253, 985, 15, 1040, 9044, 3731, 24693, 476, 5108, 387, 667, 1268, 273, 271, 2898, 8031, 13, 1690, 253, 2990, 3238, 13, 5147, 13, 4384, 4771, 13, 2898, 4771, 13, 5447, 13, 31225, 13, 2840, 2127, 13, 285, 638, 14, 40539, 7503, 10679, 13, 17671, 13, 390, 5718, 15, 24689, 456, 660, 23217, 403, 4217, 323, 15549, 3731, 5397, 13087, 13, 897, 273, 4284, 8553, 390, 16012, 13, 15279, 3238, 13, 17646, 4610, 13, 3966, 15, 1040, 6102, 32138, 7208, 1918, 40567, 31957, 2289, 281, 690, 985, 941, 390, 13175, 15, 17763, 40650, 13, 824, 32138, 906, 275, 247, 3426, 985, 18230, 15, 380, 2136, 3486, 7024, 327, 253, 6055, 3198, 273, 253, 2898, 285, 941, 15, 1040, 187, 187, 817, 1680, 253, 11683, 34820, 1216, 494, 32, 187, 187, 510, 2898, 1537, 320, 14043, 604, 253, 2898, 310, 27, 187, 187, 11, 42234, 4569, 3988, 1892, 2980, 2439, 667, 629, 273, 253, 2898, 8031, 13, 390, 28203, 15378, 15607, 327, 9005, 3238, 15, 187, 11, 914, 13142, 3386, 403, 11410, 390, 8038, 313, 70, 15, 72, 15, 15279, 17596, 13, 3238, 13, 7223, 13, 8553, 13, 390, 25687, 481, 187, 11, 18193, 8553, 285, 616, 34060, 1335, 11410, 285, 19965, 15, 187, 11, 11759, 10885, 12957, 8031, 20274, 390, 643, 27662, 27096, 2228, 8169, 281, 4212, 15, 187, 11, 1198, 29101, 2718, 13, 6323, 3988, 3386, 403, 13603, 390, 417, 15378, 37370, 15, 187, 11, 380, 3988, 7533, 275, 253, 2898, 14903, 13, 2898, 31225, 313, 70, 15, 72, 15, 7962, 14298, 13, 10039, 13, 27548, 15, 11502, 582, 13747, 13, 16634, 13, 3966, 15, 417, 873, 281, 7895, 2193, 15, 187, 11, 380, 4771, 1057, 417, 5007, 3988, 20546, 390, 46904, 390, 597, 403, 417, 873, 281, 7895, 2193, 15, 187, 11, 380, 3694, 310, 562, 273, 3522, 390, 14043, 313, 2887, 1401, 34, 26, 27, 7132, 14, 11888, 3631, 8999, 342, 41570, 34820, 1216, 6720, 20883, 187, 187, 20696, 247, 12699, 264, 13, 10280, 494, 2898, 3988, 6661, 1232, 13, 2718, 403, 387, 247, 2169, 2495, 15, 187, 187, 817, 1359, 1916, 46915, 187, 187, 4538, 459, 12692, 4870, 943, 320, 9009, 13, 1690, 27, 187, 187, 11, 329, 10280, 494, 1892, 2980, 1232, 326, 2789, 352, 3809, 285, 3477, 281, 8745, 1529, 3126, 326, 310, 6283, 12623, 1066, 15, 9753, 13, 1165, 34, 13, 285, 3275, 12620, 943, 512, 320, 15378, 45963, 13, 342, 1027, 23820, 908, 275, 1016, 3126, 15, 831, 1232, 943, 320, 16644, 281, 15338, 253, 3434, 2424, 281, 9978, 247, 747, 7895, 3126, 15, 187, 11, 329, 8723, 5147, 1293, 575, 1279, 15279, 3386, 13, 4295, 13, 10097, 13, 285, 3530, 15, 20004, 390, 513, 417, 3334, 30732, 3386, 285, 31225, 15, 187, 11, 329, 4836, 281, 2278, 285, 5731, 253, 16012, 4569, 281, 512, 3988, 7211, 13, 11269, 285, 20412, 347, 629, 273, 253, 12097, 4323, 1232, 313, 2887, 1401, 34, 26, 27, 7132, 14, 11888, 3631, 8999, 342, 41570, 34820, 1216, 6720, 20883, 496, 1798, 13, 2278, 9005, 5718, 15607, 313, 70, 15, 72, 15, 322, 20, 22205, 15607, 481, 187, 11, 329, 48456, 2898, 10336, 326, 3400, 3576, 13, 7895, 9712, 875, 4295, 390, 31842, 13, 342, 26405, 13, 8781, 1320, 13, 390, 9005, 3988, 2390, 313, 1934, 45, 84, 481, 187, 11, 322, 1946, 3988, 46904, 281, 8548, 13, 299, 15, 72, 15, 544, 20356, 12318, 398, 880, 3614, 1358, 2700, 15, 319, 4938, 15, 2061, 16, 4663, 15, 5581, 16, 4290, 29020, 64, 4538, 459, 64, 31163, 64, 11695, 481, 187, 11, 743, 16644, 1232, 281, 12654, 253, 12510, 273, 253, 16012, 285, 7533, 275, 512, 12620, 15, 187, 187, 817, 18466, 36931, 1810, 257, 12416, 187, 187, 424, 4316, 37343, 1852, 18, 25593, 380, 2898, 4771, 3249, 342, 3410, 4893, 326, 403, 417, 5176, 432, 253, 3275, 4771, 15, 2053, 3410, 4893, 452, 1929, 3988, 32138, 40567, 897, 281, 18230, 253, 4771, 15, 1310, 581, 273, 841, 4893, 310, 253, 14991, 9667, 13, 285, 4284, 8553, 10345, 626, 4391, 253, 30539, 20131, 275, 342, 4284, 34060, 285, 3936, 689, 15, 187, 187, 424, 4316, 37343, 1852, 19, 25593, 36186, 16485, 310, 417, 13603, 327, 253, 4771, 15, 743, 30539, 41217, 597, 476, 3365, 1618, 33266, 15, 380, 30539, 9010, 285, 38661, 253, 18133, 8595, 5971, 13, 534, 597, 372, 26032, 285, 8107, 16518, 281, 1859, 253, 2127, 15, 380, 30539, 840, 9010, 247, 4092, 2289, 1453, 19652, 275, 253, 2898, 15, 187, 187, 424, 4316, 37343, 1852, 20, 25593, 380, 2898, 4771, 434, 6661, 4483, 7000, 2228, 8169, 13, 299, 15, 72, 15, 8031, 20274, 13, 281, 320, 4895, 281, 4212, 15, 831, 7826, 47566, 7996, 1491, 390, 6944, 32138, 824, 347, 4445, 9508, 326, 403, 1929, 281, 320, 14043, 15, 187, 187, 424, 4316, 37343, 1852, 21, 25593, 329, 9005, 2579, 11716, 556, 4284, 9628, 15607, 1527, 281, 253, 7336, 407, 643, 330, 4350, 4212, 15, 831, 4483, 7996, 941, 7141, 1561, 9005, 5718, 281, 320, 19197, 15, 187, 187, 817, 48176, 187, 187, 4118, 46192, 29020, 187, 187, 11, 544, 4290, 29020, 30750, 16398, 27, 31843, 11354, 880, 3614, 1358, 2700, 15, 319, 4938, 15, 2061, 16, 4663, 15, 5581, 16, 38571, 64, 1542, 64, 24693, 64, 26454, 10, 187, 11, 544, 4290, 29020, 30750, 16398, 27, 30750, 323, 11759, 330, 3180, 880, 3614, 1358, 2700, 15, 319, 4938, 15, 2061, 16, 4663, 15, 5581, 16, 38571, 64, 1542, 64, 4756, 64, 6124, 18284, 4290, 29020, 14, 2431, 14, 7174, 1228, 187, 11, 544, 4290, 29020, 9044, 12318, 398, 8049, 880, 3614, 1358, 2700, 15, 319, 4938, 15, 2061, 16, 4663, 15, 5581, 16, 4290, 29020, 64, 4538, 459, 64, 31163, 64, 11695, 10, 187, 187, 2214, 3081, 6095, 275, 436, 2170, 13, 923, 253, 11683, 9044, 7188, 1877, 12144, 544, 55, 746, 31843, 880, 3614, 1358, 2700, 15, 319, 4938, 15, 2061, 16, 4663, 15, 5581, 16, 1719, 28259, 64, 55, 746, 64, 11909, 481, 187, 187, 4118, 37320, 187, 187, 11, 544, 47, 6905, 16398, 281, 4214, 13331, 11366, 2980, 880, 3614, 1358, 6113, 3373, 15, 79, 382, 15, 12312, 16, 4387, 569, 16, 20119, 16, 1033, 16, 10695, 14, 10683, 16, 13017, 10, 187, 11, 544, 36, 10663, 14, 19, 27, 20316, 9044, 2884, 11345, 880, 3614, 1358, 68, 664, 15, 2225, 250, 15, 2061, 16, 2203, 16, 1545, 24164, 16, 19, 15, 2974, 10, 187, 11, 544, 36, 10663, 14, 1036, 27, 31843, 880, 3614, 1358, 68, 664, 15, 2225, 250, 15, 2061, 16, 2203, 16, 1545, 24164, 16, 1036, 15, 2974, 10, 187, 11, 544, 36, 10663, 14, 25085, 27, 11759, 10535, 1981, 880, 3614, 1358, 68, 664, 15, 2225, 250, 15, 2061, 16, 2203, 16, 1545, 24164, 16, 25085, 15, 2974, 10, 187, 11, 544, 36, 1830, 9044, 31843, 3262, 1487, 16, 35, 15152, 17144, 880, 3614, 1358, 2700, 15, 68, 885, 1915, 414, 15, 2061, 16, 28268, 14, 31591, 17144, 21714, 187, 11, 544, 38859, 322, 20, 18885, 292, 29600, 285, 46222, 3328, 880, 3614, 1358, 9198, 15, 7585, 1704, 321, 1419, 15, 681, 16, 7132, 16, 740, 16, 11345, 14, 84, 20, 14, 38924, 14, 49330, 15, 2974, 10, 187 ]
# A6:2017 Security Misconfiguration | Threat agents/Attack vectors | Security Weakness | Impacts | | -- | -- | -- | | Access Lvl : Exploitability 3 | Prevalence 3 : Detectability 3 | Technical 2 : Business | | Attackers will often attempt to exploit unpatched flaws or access default accounts, unused pages, unprotected files and directories, etc to gain unauthorized access or knowledge of the system. | Security misconfiguration can happen at any level of an application stack, including the network services, platform, web server, application server, database, frameworks, custom code, and pre-installed virtual machines, containers, or storage. Automated scanners are useful for detecting misconfigurations, use of default accounts or configurations, unnecessary services, legacy options, etc. | Such flaws frequently give attackers unauthorized access to some system data or functionality. Occasionally, such flaws result in a complete system compromise. The business impact depends on the protection needs of the application and data. | ## Is the Application Vulnerable? The application might be vulnerable if the application is: * Missing appropriate security hardening across any part of the application stack, or improperly configured permissions on cloud services. * Unnecessary features are enabled or installed (e.g. unnecessary ports, services, pages, accounts, or privileges). * Default accounts and their passwords still enabled and unchanged. * Error handling reveals stack traces or other overly informative error messages to users. * For upgraded systems, latest security features are disabled or not configured securely. * The security settings in the application servers, application frameworks (e.g. Struts, Spring, ASP.NET), libraries, databases, etc. not set to secure values. * The server does not send security headers or directives or they are not set to secure values. * The software is out of date or vulnerable (see **A9:2017-Using Components with Known Vulnerabilities**). Without a concerted, repeatable application security configuration process, systems are at a higher risk. ## How To Prevent Secure installation processes should be implemented, including: * A repeatable hardening process that makes it fast and easy to deploy another environment that is properly locked down. Development, QA, and production environments should all be configured identically, with different credentials used in each environment. This process should be automated to minimize the effort required to setup a new secure environment. * A minimal platform without any unnecessary features, components, documentation, and samples. Remove or do not install unused features and frameworks. * A task to review and update the configurations appropriate to all security notes, updates and patches as part of the patch management process (see **A9:2017-Using Components with Known Vulnerabilities**). In particular, review cloud storage permissions (e.g. S3 bucket permissions). * A segmented application architecture that provides effective, secure separation between components or tenants, with segmentation, containerization, or cloud security groups (ACLs). * Sending security directives to clients, e.g. [Security Headers](https://www.owasp.org/index.php/OWASP_Secure_Headers_Project). * An automated process to verify the effectiveness of the configurations and settings in all environments. ## Example Attack Scenarios **Scenario #1**: The application server comes with sample applications that are not removed from the production server. These sample applications have known security flaws attackers use to compromise the server. If one of these applications is the admin console, and default accounts weren't changed the attacker logs in with default passwords and takes over. **Scenario #2**: Directory listing is not disabled on the server. An attacker discovers they can simply list directories. The attacker finds and downloads the compiled Java classes, which they decompile and reverse engineer to view the code. The attacker then finds a serious access control flaw in the application. **Scenario #3**: The application server's configuration allows detailed error messages, e.g. stack traces, to be returned to users. This potentially exposes sensitive information or underlying flaws such as component versions that are known to be vulnerable. **Scenario #4**: A cloud service provider has default sharing permissions open to the Internet by other CSP users. This allows sensitive data stored within cloud storage to be accessed. ## References ### OWASP * [OWASP Testing Guide: Configuration Management](https://www.owasp.org/index.php/Testing_for_configuration_management) * [OWASP Testing Guide: Testing for Error Codes](https://www.owasp.org/index.php/Testing_for_Error_Code_(OWASP-IG-006)) * [OWASP Security Headers Project](https://www.owasp.org/index.php/OWASP_Secure_Headers_Project) For additional requirements in this area, see the Application Security Verification Standard [V19 Configuration](https://www.owasp.org/index.php/ASVS_V19_Configuration). ### External * [NIST Guide to General Server Hardening](https://csrc.nist.gov/publications/detail/sp/800-123/final) * [CWE-2: Environmental Security Flaws](https://cwe.mitre.org/data/definitions/2.html) * [CWE-16: Configuration](https://cwe.mitre.org/data/definitions/16.html) * [CWE-388: Error Handling](https://cwe.mitre.org/data/definitions/388.html) * [CIS Security Configuration Guides/Benchmarks](https://www.cisecurity.org/cis-benchmarks/) * [Amazon S3 Bucket Discovery and Enumeration](https://blog.websecurify.com/2017/10/aws-s3-bucket-discovery.html)
214,375
Github
[ 46170, 19386, 12693, 428, 362, 18, 15, 883, 15, 21, 428, 4104, 14, 2941, 14, 883, 187, 11, 3944, 1358, 19203, 4113, 15, 681, 187, 11, 496, 10811, 27, 5161, 15, 9016, 13, 7158, 279, 15, 9016, 13, 1125, 48116, 15, 9016, 13, 6409, 15, 9016, 13, 3522, 25819, 15, 9016, 13, 10756, 15, 9016, 13, 9310, 72, 494, 15, 9016, 13, 8910, 15, 9016, 13, 4780, 2009, 15, 9016, 13, 501, 12729, 15, 9016, 13, 3609, 494, 15, 9016, 13, 3609, 11746, 15, 9016, 13, 32968, 15, 9016, 13, 3686, 494, 15, 9016, 13, 653, 5338, 15, 9016, 13, 28815, 15, 9016, 13, 4968, 22076, 15, 9016, 13, 10014, 15, 9016, 187, 11, 1916, 1859, 285, 10007, 436, 10014, 13, 4143, 3944, 1358, 19203, 4113, 15, 681, 16, 783, 961, 311, 2146, 22549, 567, 9671, 30, 10754, 69, 3230, 6, 19, 4280, 3760, 6, 19, 6072, 507, 14, 40004, 7, 25837, 9671, 30, 6320, 7, 3671, 9671, 30, 18, 15, 18, 358, 7, 41303, 39547, 30, 21, 3498, 7, 17424, 6573, 12618, 30, 26409, 1610, 7, 17424, 22648, 12618, 30, 5168, 5154, 932, 64, 27663, 7, 17424, 40148, 12535, 10757, 12618, 30, 25, 7, 14224, 6573, 12618, 30, 66, 20, 66, 20, 66, 20, 7, 12964, 12618, 30, 47285, 1796, 7, 3557, 6573, 12618, 30, 4482, 4482, 4482, 7, 17424, 6573, 8590, 30, 71, 26, 71, 26, 71, 26, 7, 17424, 22648, 8590, 30, 30703, 64, 10984, 7, 17424, 40148, 12535, 10757, 8590, 30, 2313, 7, 14224, 6573, 8590, 30, 19533, 550, 7, 12964, 8590, 30, 48049, 1423, 7, 3557, 6573, 8590, 30, 48049, 1423, 7, 17424, 6573, 9671, 30, 13721, 883, 7, 17424, 22648, 9671, 30, 25483, 7, 17424, 40148, 12535, 10757, 9671, 30, 1449, 7, 14224, 6573, 9671, 30, 2357, 2357, 2357, 7, 12964, 9671, 30, 70, 20, 70, 20, 70, 20, 7, 3557, 6573, 9671, 30, 16533, 264, 7, 17424, 6573, 41, 1189, 30, 18, 68, 18, 68, 18, 68, 7, 17424, 22648, 41, 1189, 30, 25483, 7, 17424, 40148, 12535, 10757, 41, 1189, 30, 2417, 7, 14224, 6573, 41, 1189, 30, 8551, 7, 12964, 41, 1189, 30, 40495, 7, 3557, 6573, 41, 1189, 30, 40495, 7, 17424, 6573, 16754, 30, 40495, 7, 17424, 22648, 16754, 30, 22829, 7, 17424, 40148, 12535, 10757, 16754, 30, 2082, 7, 14224, 6573, 16754, 30, 19533, 550, 7, 12964, 16754, 30, 48049, 1423, 7, 3557, 6573, 16754, 30, 48049, 1423, 7, 17424, 6573, 46006, 30, 44539, 67, 1438, 7, 17424, 22648, 46006, 30, 46039, 64, 10984, 7, 17424, 40148, 12535, 10757, 46006, 30, 2417, 7, 14224, 6573, 46006, 30, 567, 615, 19, 70, 7, 12964, 46006, 30, 1812, 1812, 1812, 7, 3557, 6573, 46006, 30, 21, 6357, 7554, 7, 17424, 6573, 4756, 30, 2428, 17, 66, 17, 66, 7, 17424, 22648, 4756, 30, 46039, 64, 10984, 7, 17424, 40148, 12535, 10757, 4756, 30, 1857, 7, 14224, 6573, 4756, 30, 26, 70, 17, 18550, 7, 12964, 4756, 30, 40495, 7, 3557, 6573, 4756, 30, 567, 7836, 1717, 7, 17424, 6573, 5279, 15328, 30, 23342, 5781, 7, 17424, 22648, 5279, 15328, 30, 30703, 64, 10984, 7, 17424, 40148, 12535, 10757, 5279, 15328, 30, 1449, 7, 44459, 5279, 15328, 30, 1229, 7, 17424, 6573, 38154, 30, 23342, 5781, 7, 17424, 22648, 38154, 30, 30703, 64, 5530, 7, 17424, 40148, 12535, 10757, 38154, 30, 1235, 7, 44459, 38154, 30, 938, 7, 27663, 1255, 38154, 30, 25, 3498, 7, 10946, 11387, 38154, 11468, 25, 3498, 7, 10946, 11875, 38154, 11468, 25, 3498, 7, 41303, 39547, 38154, 30, 25, 3498, 187, 11, 8283, 4104, 19386, 6807, 285, 643, 24781, 28, 21737, 20695, 1738, 187, 187, 3122, 38870, 1361, 398, 187, 33250, 8480, 187, 15, 4113, 14, 28316, 14, 19057, 551, 187, 186, 8412, 27, 5293, 28, 187, 94, 187, 15, 4113, 14, 28316, 14, 19057, 14, 36462, 551, 187, 186, 14224, 27, 470, 28, 187, 186, 11536, 27, 9004, 9, 17, 470, 470, 470, 558, 187, 186, 7436, 27, 337, 3498, 28, 187, 186, 15456, 27, 428, 18, 3498, 28, 187, 186, 27745, 27, 8763, 28, 187, 186, 17333, 27, 470, 28, 187, 186, 3321, 27, 7880, 28, 187, 186, 3429, 27, 337, 3498, 28, 187, 94, 187, 15, 4113, 14, 28316, 14, 19511, 551, 187, 186, 15456, 27, 470, 28, 187, 186, 17333, 27, 470, 28, 187, 186, 14224, 27, 470, 28, 187, 186, 483, 1282, 27, 470, 28, 187, 186, 1282, 14, 7436, 27, 337, 15, 20, 28, 187, 186, 1156, 14, 43101, 27, 5293, 28, 187, 186, 4909, 14, 3281, 27, 2233, 10543, 187, 186, 3550, 14, 4826, 27, 5293, 28, 187, 94, 187, 15, 4113, 14, 28316, 14, 8250, 11097, 27, 9131, 13, 187, 15, 4113, 14, 28316, 14, 8250, 11097, 27, 6438, 551, 187, 186, 6071, 27, 29707, 187, 186, 8412, 27, 2829, 28, 187, 186, 14224, 14, 33683, 27, 13551, 28, 187, 94, 187, 15, 4113, 14, 28316, 14, 8250, 11097, 27, 6438, 551, 187, 186, 8250, 27, 1097, 28, 187, 94, 187, 15, 4113, 14, 28316, 14, 8250, 11097, 551, 187, 186, 1222, 14, 7436, 27, 470, 28, 3476, 1329, 27, 19900, 24, 1738, 187, 94, 187, 15, 4113, 14, 28316, 14, 91, 11097, 551, 187, 186, 3429, 27, 2233, 10543, 187, 186, 7436, 27, 2233, 10543, 187, 186, 3956, 27, 470, 28, 187, 186, 1274, 27, 470, 28, 187, 186, 3321, 27, 7880, 28, 187, 186, 44459, 27, 470, 28, 187, 186, 10978, 27, 29858, 9, 12535, 10757, 30, 17, 558, 3476, 1329, 27, 19900, 25, 1738, 187, 94, 187, 187, 15, 4113, 14, 6342, 551, 187, 186, 91, 14, 4663, 27, 2233, 28, 187, 94, 535, 187, 3122, 48281, 330, 955, 187, 33250, 8480, 187, 15, 4113, 14, 3409, 14, 25050, 551, 187, 186, 14849, 27, 4284, 2195, 18108, 28, 187, 94, 535, 187, 3122, 309, 5040, 187, 33250, 8480, 187, 187, 3122, 3054, 285, 3888, 1738, 187, 15, 4113, 14, 3557, 551, 187, 186, 8412, 27, 2972, 28, 187, 186, 1156, 14, 31808, 27, 428, 14432, 26, 3498, 28, 187, 186, 27745, 27, 8763, 28, 187, 186, 11814, 14, 24712, 27, 642, 14, 24712, 28, 187, 94, 535, 187, 3122, 353, 2865, 5304, 84, 187, 33250, 8480, 187, 187, 3122, 6061, 77, 698, 1738, 187, 15, 4113, 14, 14778, 14, 46732, 551, 187, 186, 3321, 27, 4229, 28, 187, 186, 3956, 27, 470, 28, 187, 186, 1274, 27, 470, 28, 187, 186, 3429, 27, 2233, 10543, 187, 186, 7436, 27, 2233, 10543, 187, 94, 187, 15, 4113, 14, 39844, 279, 964, 4113, 14, 39844, 279, 14, 10146, 551, 187, 186, 8412, 27, 2972, 28, 187, 186, 14849, 27, 12219, 28, 187, 186, 3321, 27, 4103, 28, 187, 186, 15456, 27, 374, 3498, 470, 470, 470, 28, 187, 186, 17333, 27, 964, 22, 358, 964, 22, 358, 964, 22, 358, 964, 24, 358, 28, 187, 186, 1222, 14, 7436, 27, 470, 28, 3476, 1329, 27, 19900, 24, 1738, 187, 186, 4909, 14, 3281, 27, 2233, 10543, 187, 94, 187, 15, 4113, 14, 39844, 279, 964, 4113, 14, 39844, 279, 14, 30585, 551, 187, 186, 17333, 14, 1274, 27, 374, 15, 19, 358, 28, 187, 94, 187, 15, 4113, 14, 39844, 279, 964, 4113, 14, 39844, 279, 14, 30585, 964, 4113, 14, 39844, 279, 14, 30585, 551, 187, 186, 17333, 14, 1274, 27, 374, 15, 19, 358, 28, 187, 94, 187, 15, 4113, 14, 39844, 279, 964, 4113, 14, 39844, 279, 14, 10146, 964, 4113, 14, 39844, 279, 14, 10146, 14, 3557, 551, 187, 186, 3321, 27, 7880, 28, 187, 186, 1274, 27, 964, 22, 358, 28, 187, 186, 3956, 27, 2456, 10543, 187, 186, 15456, 14, 3956, 27, 428, 25, 3498, 28, 187, 94, 187, 15, 4113, 14, 39844, 279, 964, 4113, 14, 39844, 279, 14, 6071, 551, 187, 186, 17333, 27, 337, 358, 374, 15, 19, 358, 28, 187, 186, 14224, 14, 3956, 27, 470, 28, 187, 186, 27745, 27, 6753, 28, 187, 94, 187, 15, 4113, 14, 1920, 48116, 551, 187, 186, 3321, 27, 7880, 28, 187, 186, 3956, 27, 470, 28, 187, 186, 1274, 27, 470, 28, 187, 186, 14849, 27, 4284, 28, 187, 94, 187, 15, 4113, 14, 8060, 551, 187, 186, 8412, 27, 13866, 14, 6172, 28, 187, 186, 3321, 27, 4103, 28, 187, 186, 17333, 27, 470, 28, 187, 186, 1282, 14, 7436, 27, 2622, 28, 187, 186, 15456, 14, 918, 27, 964, 18, 358, 28, 187, 186, 14849, 27, 12219, 28, 187, 186, 26806, 14, 8623, 27, 4766, 28, 187, 186, 1156, 14, 8623, 27, 4055, 28, 187, 186, 27745, 27, 7985, 28, 3476, 26586, 4465, 4871, 275, 19900, 1738, 187, 94, 187, 15, 4113, 14, 8060, 13, 187, 15, 4113, 14, 8060, 27, 4492, 13, 187, 15, 4113, 14, 8060, 27, 4534, 959, 13, 187, 15, 4113, 14, 8060, 27, 22424, 13, 187, 15, 4113, 14, 8060, 27, 4507, 551, 187, 186, 1156, 14, 43101, 27, 5293, 28, 187, 94, 187, 3122, 281, 1056, 2316, 323, 253, 10651, 13, 247, 4871, 3198, 281, 320, 873, 1060, 1738, 187, 15, 4113, 14, 8060, 14, 3557, 14, 7483, 551, 187, 186, 3429, 27, 374, 15, 19, 358, 28, 187, 94, 187, 3122, 6409, 3603, 1646, 281, 878, 247, 1652, 625, 4871, 1738, 187, 8060, 15, 4113, 14, 8060, 14, 3557, 14, 7483, 551, 187, 186, 3429, 27, 374, 15, 21, 358, 28, 187, 94, 187, 15, 4113, 14, 8060, 14, 30585, 14, 7483, 551, 187, 186, 3429, 27, 495, 15, 21, 358, 28, 187, 94, 187, 8060, 15, 4113, 14, 8060, 14, 30585, 14, 7483, 551, 187, 186, 3429, 27, 495, 15, 24, 358, 28, 187, 94, 187, 187, 3122, 6409, 2505, 3284, 1738, 187, 15, 4113, 14, 8060, 964, 4113, 14, 8060, 14, 1156, 551, 187, 186, 8412, 27, 2972, 28, 187, 186, 1282, 14, 7436, 27, 2622, 28, 187, 94, 187, 15, 4113, 14, 8060, 14, 1156, 14, 7483, 964, 4113, 14, 8060, 14, 1156, 551, 187, 186, 17333, 27, 964, 21, 358, 337, 358, 28, 187, 94, 187, 15, 4113, 14, 8060, 14, 3557, 14, 7483, 964, 4113, 14, 8060, 14, 1156, 13, 187, 15, 4113, 14, 8060, 14, 30585, 14, 7483, 964, 4113, 14, 8060, 14, 1156, 551, 187, 186, 17333, 27, 964, 21, 358, 28, 187, 186, 1156, 14, 31808, 27, 428, 14432, 16742, 3498, 28, 187, 94, 187, 15, 4113, 14, 8060, 14, 1156, 14, 3557, 14, 21423, 964, 4113, 14, 8060, 14, 1156, 13, 187, 15, 4113, 14, 8060, 14, 1156, 14, 30585, 964, 4113, 14, 8060, 14, 1156, 551, 187, 186, 17333, 27, 964, 21, 358, 337, 358, 964, 21, 358, 374, 15, 18, 358, 28, 187, 94, 187, 15, 4113, 14, 8060, 14, 1156, 14, 3557, 14, 36277, 964, 4113, 14, 8060, 14, 1156, 13, 187, 15, 4113, 14, 8060, 14, 1156, 14, 30585, 964, 4113, 14, 8060, 14, 1156, 551, 187, 186, 17333, 27, 964, 21, 358, 374, 15, 18, 358, 964, 21, 358, 337, 358, 28, 187, 94, 187, 15, 4113, 14, 8060, 14, 1156, 14, 30585, 964, 4113, 14, 8060, 14, 1156, 551, 187, 186, 17333, 14, 1274, 27, 374, 15, 18, 358, 28, 187, 186, 17333, 14, 918, 27, 374, 15, 18, 358, 28, 187, 94, 187, 3122, 642, 10651, 1329, 323, 3280, 3603, 13, 2085, 13294, 407, 4284, 1738, 187, 5423, 15, 4113, 14, 8060, 551, 187, 186, 17333, 27, 964, 21, 358, 337, 358, 28, 187, 94, 187, 187, 3122, 6409, 10651, 3284, 9, 84, 10, 1738, 187, 15, 4113, 14, 8060, 14, 3557, 14, 7483, 964, 4113, 14, 3557, 13, 187, 15, 4113, 14, 8060, 14, 1156, 14, 3557, 14, 21423, 964, 4113, 14, 3557, 13, 187, 15, 4113, 14, 8060, 14, 1156, 14, 3557, 14, 36277, 964, 4113, 14, 3557, 13, 187, 15, 4113, 14, 8060, 14, 1156, 14, 30585, 964, 4113, 14, 3557, 13, 187, 15, 4113, 14, 8060, 14, 30585, 14, 7483, 964, 4113, 14, 3557, 551, 187, 186, 3321, 27, 7880, 28, 187, 186, 3956, 27, 2456, 10543, 187, 186, 15456, 14, 3956, 27, 428, 25, 3498, 28, 187, 94, 187, 15, 4113, 14, 8060, 14, 3557, 14, 7483, 964, 4113, 14, 3557, 551, 187, 186, 1274, 27, 2456, 10543, 187, 186, 15456, 14, 1274, 27, 428, 25, 3498, 28, 187, 94, 187, 15, 4113, 14, 8060, 14, 1156, 14, 3557, 14, 21423, 964, 4113, 14, 8060, 14, 3557, 14, 21423, 13, 187, 15, 4113, 14, 8060, 14, 1156, 14, 30585, 964, 4113, 14, 8060, 14, 3557, 14, 21423, 13, 187, 15, 4113, 14, 8060, 14, 30585, 14, 7483, 964, 4113, 14, 8060, 14, 3557, 14, 21423, 551, 187, 186, 1274, 27, 964, 22, 358, 28, 187, 94, 187, 15, 4113, 14, 8060, 14, 1156, 14, 3557, 14, 36277, 964, 4113, 14, 8060, 14, 3557, 14, 36277, 13, 187, 15, 4113, 14, 8060, 14, 1156, 14, 30585, 964, 4113, 14, 8060, 14, 3557, 14, 36277, 13, 187, 15, 4113, 14, 8060, 14, 30585, 14, 7483, 964, 4113, 14, 8060, 14, 3557, 14, 36277, 551, 187, 186, 918, 27, 964, 22, 358, 28, 187, 94, 187, 187, 3122, 6409, 5239, 1738, 187, 15, 4113, 14, 48944, 292, 551, 187, 186, 15456, 14, 918, 27, 818, 3498, 28, 187, 94, 187, 15, 4113, 14, 48944, 292, 964, 4113, 14, 8060, 551, 187, 186, 15456, 14, 1274, 27, 470, 28, 187, 186, 15456, 14, 918, 27, 26435, 20, 358, 28, 187, 94, 187, 187, 3122, 789, 274, 2261, 1738, 187, 3122, 14932, 4465, 13294, 275, 26040, 13, 923, 288, 22, 12303, 15, 681, 16, 77, 1738, 187, 5423, 15, 4113, 14, 8060, 1450, 14, 24024, 14, 16651, 14, 5338, 13, 187, 8060, 15, 4113, 14, 8060, 1450, 14, 24024, 14, 16651, 14, 5338, 551, 187, 186, 14224, 27, 470, 28, 187, 186, 17333, 27, 470, 28, 187, 94, 187, 15, 4113, 14, 43991, 551, 187, 186, 3429, 27, 1722, 358, 28, 187, 186, 17333, 27, 964, 19, 358, 964, 19, 358, 470, 28, 187, 186, 8412, 27, 5293, 28, 187, 94, 187, 15, 4113, 14, 43991, 964, 4113, 14, 43991, 14, 10146, 551, 187, 186, 3321, 27, 4103, 28, 187, 186, 17333, 27, 964, 19, 358, 470, 28, 187, 94, 187, 15, 4113, 14, 43991, 964, 4113, 14, 43991, 14, 22340, 13, 187, 15, 4113, 14, 43991, 964, 4113, 14, 43991, 14, 8384, 551, 187, 186, 3321, 27, 7880, 28, 187, 186, 3956, 27, 374, 3498, 28, 187, 186, 3429, 27, 337, 15, 25, 358, 28, 187, 186, 7436, 27, 337, 15, 25, 358, 28, 187, 94, 187, 15, 4113, 14, 43991, 964, 4113, 14, 43991, 14, 22340, 14, 22424, 13, 187, 15, 4113, 14, 43991, 964, 4113, 14, 43991, 14, 8384, 14, 22424, 551, 187, 186, 3956, 27, 337, 3498, 28, 187, 94, 187, 15, 4113, 14, 43991, 964, 4113, 14, 43991, 14, 22340, 551, 187, 186, 1274, 27, 374, 3498, 28, 187, 94, 187, 15, 4113, 14, 43991, 964, 4113, 14, 43991, 14, 8384, 551, 187, 186, 918, 27, 374, 3498, 28, 187, 94, 187, 15, 4113, 14, 43991, 964, 4113, 14, 43991, 14, 22340, 14, 22424, 551, 187, 186, 1274, 27, 337, 3498, 28, 187, 94, 187, 15, 4113, 14, 43991, 964, 4113, 14, 43991, 14, 8384, 14, 22424, 551, 187, 186, 918, 27, 337, 3498, 28, 187, 94, 187, 15, 4113, 14, 43991, 964, 4113, 14, 43991, 14, 22340, 13905, 13, 187, 15, 4113, 14, 43991, 964, 4113, 14, 43991, 14, 8384, 13905, 551, 187, 186, 8412, 27, 2972, 28, 187, 186, 3321, 27, 7880, 28, 187, 186, 1274, 27, 2456, 10543, 187, 186, 15456, 14, 1274, 27, 428, 25, 3498, 28, 187, 186, 3956, 27, 2456, 10543, 187, 186, 15456, 14, 3956, 27, 428, 25, 3498, 28, 187, 94, 187, 15, 4113, 14, 43991, 964, 4113, 14, 43991, 14, 5564, 551, 187, 186, 15456, 27, 470, 374, 15, 20, 358, 28, 187, 186, 1282, 14, 7436, 27, 337, 15, 25, 358, 28, 187, 186, 1156, 14, 8623, 27, 4055, 28, 187, 94, 187, 15, 4113, 14, 43991, 964, 4113, 14, 43991, 14, 5564, 3609, 551, 187, 186, 4909, 14, 3281, 27, 337, 358, 28, 187, 186, 15456, 27, 337, 3498, 470, 28, 187, 94, 187, 15, 4113, 14, 43991, 3609, 15, 4113, 14, 43991, 14, 7791, 13, 187, 15, 4113, 14, 43991, 3609, 15, 4113, 14, 43991, 14, 2913, 551, 187, 186, 3429, 27, 5329, 10543, 187, 94, 187, 15, 4113, 14, 43991, 2829, 551, 187, 186, 3429, 27, 2233, 10543, 187, 186, 4909, 14, 3281, 27, 964, 26, 358, 28, 187, 186, 14224, 14, 33683, 27, 13551, 28, 187, 186, 15456, 27, 470, 470, 964, 21, 358, 28, 187, 94, 187, 15, 4113, 14, 43991, 289, 551, 187, 186, 17333, 27, 964, 24, 358, 964, 20, 358, 28, 187, 186, 1156, 14, 8623, 27, 4055, 28, 187, 186, 4909, 14, 6712, 27, 13433, 28, 187, 186, 14224, 27, 470, 28, 187, 94, 187, 15, 4113, 14, 43991, 32989, 551, 187, 186, 14224, 27, 470, 28, 187, 186, 17333, 27, 337, 3498, 28, 187, 94, 187, 15, 4113, 14, 43991, 32989, 13905, 13, 187, 15, 4113, 14, 43991, 32989, 247, 551, 187, 186, 8412, 27, 2972, 28, 187, 186, 17333, 27, 964, 19, 358, 28, 187, 186, 1156, 14, 8623, 27, 987, 28, 187, 186, 1156, 14, 43101, 27, 5293, 28, 187, 94, 187, 15, 4113, 14, 43991, 964, 4113, 14, 43991, 14, 8060, 81, 1351, 551, 187, 186, 11814, 14, 5695, 27, 5293, 28, 187, 186, 15456, 27, 964, 24, 358, 470, 470, 470, 28, 187, 186, 17333, 27, 470, 964, 19, 358, 28, 187, 186, 14224, 14, 1274, 27, 470, 28, 187, 186, 14224, 14, 918, 27, 470, 28, 187, 186, 14224, 14, 10492, 27, 470, 28, 187, 94, 187, 15, 4113, 14, 43991, 964, 4113, 14, 43991, 14, 8060, 81, 1351, 6409, 551, 187, 186, 9599, 27, 987, 28, 187, 186, 15456, 27, 964, 22, 358, 964, 19, 358, 964, 21, 358, 28, 187, 186, 14849, 27, 12219, 28, 187, 186, 17333, 27, 964, 19, 358, 964, 23, 358, 964, 20, 358, 964, 23, 358, 28, 187, 186, 3429, 27, 6753, 28, 187, 186, 27745, 27, 7985, 28, 187, 94, 187, 15, 4113, 14, 43991, 964, 4113, 14, 43991, 14, 8060, 81, 1351, 6409, 15, 4113, 14, 43991, 14, 6259, 551, 187, 186, 9599, 27, 1669, 28, 187, 94, 187, 187, 3122, 342, 2709, 1724, 423, 1032, 1738, 187, 15, 4113, 14, 43991, 15, 4113, 14, 43991, 14, 23939, 551, 187, 186, 3429, 27, 6753, 28, 187, 94, 187, 15, 4113, 14, 43991, 14, 23939, 964, 4113, 14, 43991, 14, 4399, 551, 187, 186, 9599, 27, 1669, 28, 187, 94, 187, 15, 4113, 14, 43991, 14, 23939, 964, 4113, 14, 43991, 14, 4399, 2829, 551, 187, 186, 3429, 27, 5325, 10543, 187, 186, 15456, 27, 470, 6753, 964, 21, 358, 28, 187, 94, 187, 15, 4113, 14, 43991, 14, 23939, 14, 19, 964, 4113, 14, 43991, 14, 4399, 551, 187, 186, 3429, 27, 2456, 10543, 187, 94, 187, 15, 4113, 14, 43991, 14, 23939, 14, 20, 964, 4113, 14, 43991, 14, 4399, 551, 187, 186, 3429, 27, 5922, 15, 20, 10543, 187, 94, 187, 15, 4113, 14, 43991, 14, 23939, 14, 21, 964, 4113, 14, 43991, 14, 4399, 551, 187, 186, 3429, 27, 2030, 10543, 187, 94, 187, 15, 4113, 14, 43991, 14, 23939, 964, 4113, 14, 43991, 14, 4399, 14, 6275, 964, 4113, 14, 43991, 14, 10146, 13, 187, 15, 4113, 14, 43991, 14, 23939, 964, 4113, 14, 43991, 14, 4399, 14, 16389, 964, 4113, 14, 43991, 14, 10146, 551, 187, 186, 14224, 14, 1274, 14, 3429, 27, 470, 28, 187, 94, 187, 15, 4113, 14, 43991, 14, 23939, 964, 4113, 14, 43991, 14, 8060, 81, 1351, 551, 187, 186, 8250, 27, 1669, 28, 187, 94, 187, 15, 4113, 14, 43991, 14, 736, 14, 7054, 551, 187, 186, 8250, 27, 1097, 28, 187, 186, 3429, 27, 2233, 10543, 187, 186, 4909, 14, 3281, 27, 470, 28, 187, 94, 187, 187, 3122, 9233, 45, 1329, 1738, 187, 15, 4113, 14, 43991, 14, 44964, 551, 187, 186, 21285, 27, 391, 17945, 28, 187, 94, 187, 15, 4113, 14, 43991, 14, 44964, 964, 4113, 14, 43991, 14, 22340, 551, 187, 186, 918, 27, 374, 3498, 28, 187, 186, 1274, 27, 6753, 28, 187, 94, 187, 15, 4113, 14, 43991, 14, 44964, 964, 4113, 14, 43991, 14, 8384, 551, 187, 186, 1274, 27, 374, 3498, 28, 187, 186, 918, 27, 6753, 28, 187, 94, 187, 15, 4113, 14, 43991, 14, 44964, 964, 4113, 14, 43991, 14, 22340, 27, 22424, 551, 187, 186, 918, 27, 337, 3498, 28, 187, 186, 1274, 27, 6753, 28, 187, 94, 187, 15, 4113, 14, 43991, 14, 44964, 964, 4113, 14, 43991, 14, 8384, 27, 22424, 551, 187, 186, 1274, 27, 337, 3498, 28, 187, 186, 918, 27, 6753, 28, 187, 94, 187, 15, 4113, 14, 43991, 14, 44964, 964, 4113, 14, 43991, 14, 8060, 81, 1351, 551, 187, 186, 8250, 27, 987, 28, 187, 94, 187, 15, 4113, 14, 43991, 14, 44964, 964, 4113, 14, 43991, 14, 8060, 81, 1351, 6409, 551, 187, 186, 9599, 27, 1669, 28, 187, 94, 187, 15, 4113, 14, 43991, 14, 44964, 964, 4113, 14, 43991, 14, 8060, 81, 1351, 6409, 15, 4113, 14, 43991, 14, 6259, 13, 187, 15, 4113, 14, 43991, 14, 44964, 964, 4113, 14, 43991, 14, 4399, 551, 187, 186, 9599, 27, 987, 28, 187, 94, 187, 15, 4113, 14, 43991, 14, 44964, 964, 4113, 14, 43991, 14, 4399, 14, 6275, 964, 4113, 14, 43991, 14, 10146, 13, 187, 15, 4113, 14, 43991, 14, 44964, 964, 4113, 14, 43991, 14, 4399, 14, 16389, 964, 4113, 14, 43991, 14, 10146, 551, 187, 186, 14224, 14, 918, 14, 3429, 27, 470, 28, 187, 186, 14224, 14, 1274, 14, 3429, 27, 337, 3498, 28, 187, 94, 187, 15, 4113, 14, 25679, 551, 187, 186, 27745, 27, 8763, 28, 187, 186, 3321, 27, 7880, 28, 187, 186, 3956, 27, 470, 28, 187, 186, 1274, 27, 470, 28, 187, 186, 17333, 27, 964, 19, 358, 28, 187, 186, 483, 1282, 27, 470, 28, 187, 94, 187, 15, 4113, 14, 25679, 964, 4113, 14, 25679, 14, 5564, 2009, 551, 187, 186, 17333, 27, 964, 21, 358, 337, 358, 28, 187, 186, 3321, 27, 4103, 28, 187, 94, 187, 15, 4113, 14, 25679, 964, 4113, 14, 25679, 14, 5564, 551, 187, 186, 9599, 27, 1669, 28, 187, 186, 15456, 27, 964, 18, 358, 470, 28, 187, 186, 11300, 14, 5641, 27, 1024, 1761, 28, 187, 186, 3429, 27, 5091, 10543, 187, 186, 27745, 27, 8763, 28, 187, 186, 1156, 14, 27745, 27, 11591, 2824, 261, 28, 187, 94, 187, 15, 4113, 14, 25679, 964, 4113, 14, 25679, 14, 5564, 2009, 14, 10483, 551, 187, 186, 3321, 27, 7880, 28, 187, 186, 918, 27, 964, 20, 358, 28, 187, 186, 3956, 27, 2456, 10543, 187, 186, 3429, 27, 1384, 3498, 28, 187, 186, 15456, 27, 428, 740, 3498, 470, 470, 470, 28, 187, 186, 17333, 27, 337, 3498, 28, 187, 186, 7436, 27, 1384, 3498, 28, 187, 94, 187, 15, 4113, 14, 25679, 964, 4113, 14, 25679, 14, 6071, 551, 187, 186, 3321, 27, 4103, 28, 187, 186, 14224, 27, 470, 28, 187, 186, 17333, 27, 964, 22, 358, 337, 358, 28, 187, 186, 11814, 27, 5293, 28, 187, 186, 27745, 27, 6753, 28, 187, 94, 187, 15, 4113, 14, 25679, 964, 4113, 14, 25679, 14, 8060, 81, 1351, 551, 187, 186, 1156, 14, 8623, 27, 1669, 28, 187, 186, 14224, 14, 3429, 27, 337, 3498, 470, 470, 470, 28, 187, 186, 11814, 14, 5695, 27, 5293, 28, 187, 186, 15456, 14, 3956, 27, 964, 22, 358, 28, 187, 186, 17333, 27, 964, 20, 358, 337, 358, 964, 22, 358, 964, 21, 358, 28, 187, 94, 187, 15, 4113, 14, 25679, 964, 4113, 14, 25679, 14, 8060, 81, 1351, 964, 4113, 14, 25679, 14, 48944, 292, 551, 187, 186, 9599, 27, 987, 28, 187, 94, 187, 15, 4113, 14, 25679, 964, 4113, 14, 25679, 14, 8060, 81, 1351, 6409, 551, 187, 186, 15456, 27, 964, 22, 358, 964, 21, 358, 964, 22, 358, 470, 28, 187, 186, 14849, 27, 12219, 28, 187, 94, 187, 15, 4113, 14, 25679, 964, 4113, 14, 373, 12729, 14, 339, 551, 187, 186, 3429, 27, 1249, 3498, 28, 187, 186, 7436, 27, 1249, 3498, 28, 187, 186, 918, 27, 428, 22, 3498, 28, 187, 186, 10492, 27, 428, 22, 3498, 28, 187, 186, 11814, 14, 3321, 27, 1668, 3498, 1668, 3498, 28, 187, 94, 187, 15, 4113, 14, 5267, 13046, 494, 964, 4113, 14, 25679, 14, 5564, 2009, 551, 187, 186, 14849, 27, 2118, 28, 187, 94, 187, 15, 4113, 14, 5267, 13046, 494, 14, 13393, 551, 187, 186, 14, 983, 14, 30713, 14, 1913, 27, 5293, 28, 187, 186, 30713, 14, 1913, 27, 5293, 28, 187, 94, 187, 15, 4113, 14, 11746, 551, 187, 186, 3550, 14, 4826, 27, 5293, 28, 187, 186, 17333, 27, 470, 28, 187, 186, 15456, 27, 470, 28, 187, 186, 8412, 27, 2972, 28, 187, 186, 483, 1282, 27, 5293, 28, 187, 94, 187, 15, 4113, 14, 11746, 964, 4113, 14, 11746, 551, 187, 186, 3321, 27, 7880, 28, 187, 94, 187, 15, 4113, 14, 11746, 964, 4113, 14, 11746, 14, 4835, 551, 187, 186, 3321, 27, 4103, 28, 187, 186, 15456, 27, 470, 28, 187, 186, 17333, 27, 495, 3498, 337, 358, 495, 3498, 964, 21, 358, 28, 187, 186, 14849, 27, 12219, 28, 187, 186, 1222, 14, 7436, 27, 470, 28, 3476, 1329, 27, 19900, 24, 1738, 187, 186, 3122, 1329, 27, 19900, 740, 13, 923, 1852, 2055, 2031, 1738, 187, 186, 3550, 14, 4826, 14, 5695, 27, 9688, 1587, 2203, 27, 5695, 16, 23200, 28, 4793, 1540, 13, 51, 17, 77, 40, 3519, 77, 73, 35572, 2925, 18128, 7246, 2446, 2088, 10638, 90, 41, 22, 6327, 38, 7246, 1556, 7246, 2446, 35, 2446, 38, 28183, 5472, 51, 2446, 24, 3287, 187, 94, 187, 15, 4113, 14, 11746, 964, 4113, 14, 11746, 14, 2154, 1334, 551, 187, 186, 15456, 27, 608, 3498, 470, 28, 187, 186, 7436, 27, 470, 28, 187, 186, 4909, 14, 3281, 27, 470, 28, 187, 186, 1282, 14, 7436, 27, 470, 28, 187, 186, 14224, 14, 3429, 27, 337, 3498, 470, 470, 470, 28, 187, 94, 187, 15, 4113, 14, 11746, 964, 4113, 14, 3409, 14, 16651, 13, 187, 15, 4113, 14, 11746, 964, 4113, 14, 3409, 14, 4507, 551, 187, 186, 15456, 27, 428, 18, 3498, 28, 187, 94, 187, 187, 3122, 10651, 1329, 1738, 187, 15, 4113, 14, 11746, 14, 30585, 551, 187, 186, 3321, 27, 4103, 28, 187, 94, 187, 15, 4113, 14, 11746, 14, 30585, 964, 4113, 14, 11746, 14, 4835, 551, 187, 186, 17333, 14, 1274, 27, 374, 358, 28, 187, 94, 187, 187, 3122, 1669, 14, 2132, 1738, 187, 15, 4113, 14, 11746, 964, 4113, 14, 3557, 551, 187, 186, 3321, 27, 7880, 28, 187, 186, 3956, 27, 470, 28, 187, 186, 10492, 27, 470, 28, 187, 186, 1274, 27, 964, 19, 358, 28, 187, 186, 15456, 27, 6753, 470, 28, 187, 94, 187, 187, 3122, 987, 14, 2132, 1738, 187, 15, 4113, 14, 11746, 964, 4113, 14, 11746, 14, 3557, 551, 187, 186, 1274, 27, 6753, 28, 187, 186, 918, 27, 470, 28, 187, 94, 187, 15, 4113, 14, 24951, 2009, 551, 187, 186, 7436, 27, 374, 358, 28, 187, 186, 1156, 14, 8623, 27, 1669, 28, 187, 186, 27745, 27, 8763, 28, 187, 94, 187, 15, 4113, 14, 24951, 2009, 964, 4113, 14, 24951, 2009, 14, 2877, 551, 187, 186, 15456, 27, 428, 18, 3498, 28, 187, 186, 7436, 27, 2233, 10543, 187, 94, 187, 15, 4113, 14, 24951, 2009, 964, 4113, 14, 24951, 2009, 14, 46732, 551, 187, 186, 11814, 27, 9688, 1587, 2203, 27, 5695, 16, 23200, 28, 4793, 1540, 13, 51, 17, 77, 40, 3519, 77, 73, 44, 2446, 80, 18128, 2925, 7246, 2088, 10638, 90, 41, 16, 36, 1762, 42972, 39, 6577, 50, 55, 16380, 24711, 21, 88, 27031, 38, 7246, 73, 12, 25138, 31395, 50, 2925, 1934, 88, 7246, 9780, 2446, 80, 2446, 1934, 76, 58, 88, 47, 82, 57, 5784, 36, 3583, 5942, 3071, 66, 24, 31309, 59, 42, 12, 21, 36821, 3979, 40849, 3848, 27767, 57, 82, 1105, 49, 82, 40, 82, 89, 87, 43, 83, 57, 59, 67, 46, 89, 24, 53, 18038, 12, 88, 26, 57, 72, 54, 19, 18446, 20, 77, 48, 90, 18787, 56, 2025, 19, 3801, 30206, 54, 26, 78, 18, 925, 26807, 3498, 25314, 68, 23, 3342, 41, 88, 87, 21, 68, 18, 58, 37494, 23, 76, 18, 55, 6421, 27122, 39, 67, 23, 42399, 8962, 39, 85, 57, 45270, 10930, 44505, 12, 17151, 68, 57, 43, 26809, 21416, 39491, 42, 74, 35811, 19, 51, 23, 56, 28333, 3757, 56, 40, 71, 41, 29128, 75, 42, 82, 14279, 55, 82, 358, 41, 19, 1441, 81, 9379, 50120, 33319, 377, 56, 54, 82, 59, 29370, 83, 23, 264, 19084, 56, 50, 2446, 2042, 76, 4625, 50, 38, 2446, 50, 1909, 7246, 1934, 72, 9780, 7246, 81, 6955, 72, 30785, 40, 6855, 82, 29676, 18, 38, 19, 86, 7958, 37, 2188, 26809, 7941, 25, 50, 300, 2222, 5801, 15659, 82, 56, 79, 20, 66, 28221, 45, 84, 52, 1093, 90, 24, 40, 18, 46840, 6560, 319, 33424, 1400, 85, 50, 69, 12, 53, 18, 43, 5751, 49, 1762, 36794, 5736, 69, 43, 59, 77, 51, 23, 87, 54, 89, 47, 26562, 75, 55, 12, 87, 54, 3152, 35414, 76, 27979, 22358, 77, 26, 55, 81, 59, 10252, 58, 68, 1258, 42, 3271, 2320, 5781, 1619, 57, 1397, 41, 16, 1362, 77, 550, 18, 86, 49, 8528, 59, 89, 50, 3027, 17, 44, 1099, 12, 68, 48856, 6972, 82, 27681, 22, 78, 37528, 48876, 453, 6328, 18931, 22, 90, 43, 68, 43, 6147, 76, 59, 26562, 4904, 51, 25, 3088, 43, 19, 80, 21, 20604, 82, 3763, 77, 2446, 16319, 22, 6327, 42574, 2446, 38, 1556, 7246, 2446, 80, 1934, 72, 2446, 9780, 8528, 42, 21, 58, 90, 1423, 30785, 1042, 39290, 82, 375, 88, 17, 35, 87, 24, 74, 18, 4233, 26809, 76, 39, 75, 24, 80, 26116, 56, 7675, 20, 729, 36, 25, 40, 89, 47, 601, 22, 1258, 7958, 20, 82, 17173, 73, 13152, 70, 53, 16, 45, 91, 24, 59, 3886, 28264, 45, 22, 69, 37, 267, 38803, 10201, 17174, 38803, 85, 51, 3023, 88, 57, 66, 5518, 75, 26, 75, 31983, 73, 25, 81, 785, 26, 43, 75, 59, 21, 91, 6328, 75, 22, 48876, 46122, 24, 19558, 311, 567, 73, 12, 3027, 22, 66, 56, 4148, 68, 28777, 7817, 57, 47383, 44, 57, 77, 44, 33126, 12, 12558, 24023, 11773, 58, 43, 1240, 21, 47, 17, 77, 58, 5883, 77, 43, 14558, 532, 6217, 83, 22, 82, 69, 2184, 1267, 42496, 10930, 82, 23, 56, 6623, 19, 3170, 12354, 54, 28183, 2042, 76, 4625, 50, 38, 2446, 50, 1909, 7246, 1934, 72, 9780, 7246, 4904, 38, 67, 23, 11040, 35333, 16, 74, 48, 24, 21771, 56, 18038, 39, 1231, 12, 2375, 3519, 40, 75, 51, 4786, 74, 43, 19, 518, 2809, 67, 489, 67, 17, 17118, 42, 1235, 40565, 2640, 15656, 87, 48808, 56, 3172, 33424, 50, 18, 91, 44, 9030, 18206, 73, 9327, 13801, 78, 26, 51, 23, 87, 20743, 89, 55, 21, 59, 91, 16594, 19, 90, 41, 11840, 81, 56, 3220, 263, 1559, 44381, 47, 81, 25, 41, 78, 1922, 67, 16, 77, 36517, 23925, 56, 24, 5844, 85, 37494, 25, 57, 85, 17107, 4741, 10690, 18, 71, 351, 19, 70, 56, 82, 47, 71, 28777, 46, 75, 57, 5305, 76, 13003, 587, 48, 74, 3351, 55, 78, 5915, 38, 6972, 52, 4174, 20, 90, 57, 77, 43, 56, 6972, 28658, 73, 39541, 23, 300, 42039, 56, 58, 2617, 53, 82, 44, 54, 72, 2446, 2042, 76, 4625, 50, 38, 2446, 50, 1909, 7246, 1934, 72, 9780, 7246, 2059, 46353, 23, 22421, 3680, 4193, 50, 20, 21771, 56, 85, 46, 20941, 56, 20, 70, 23459, 1940, 7589, 28360, 71, 47051, 59, 82, 52, 2275, 86, 52, 3071, 88, 22, 55, 1438, 16, 57, 2640, 81, 9499, 25, 91, 39, 88, 49, 23, 16462, 56, 2415, 18, 77, 14803, 76, 25, 83, 19622, 73, 18, 4490, 7716, 406, 50, 3832, 41, 78, 21, 57, 78, 19, 55, 911, 38450, 81, 91, 75, 1105, 37956, 41, 83, 39, 4193, 3887, 339, 71, 55, 30930, 23, 57, 44, 71, 2649, 19, 50, 26, 40, 23615, 57, 20875, 37972, 57, 41, 69, 19, 72, 21, 73, 24, 900, 11840, 73, 57, 40, 43, 2399, 40, 1145, 57, 15803, 2369, 35, 88, 30424, 90, 11125, 276, 67, 59, 43, 19, 41, 79, 17, 33468, 51, 49275, 1258, 48876, 300, 3208, 59, 81, 23, 74, 900, 14007, 57, 81, 54, 2446, 13924, 12, 25138, 31395, 50, 2925, 1934, 88, 7246, 9780, 2446, 80, 2446, 1934, 7381, 18787, 82, 51, 26697, 46036, 42, 24, 76, 54, 18, 66, 18, 33759, 22, 14836, 22, 14543, 3251, 48, 46481, 11774, 79, 22, 77, 27767, 20, 82, 6369, 56, 87, 51, 69, 50, 89, 49, 25, 82, 6156, 36, 34554, 5973, 58, 50, 91, 57, 48, 24, 8417, 6156, 6028, 78, 30784, 69, 20, 53, 9245, 3788, 72, 2140, 78, 20604, 83, 52, 72, 59, 69, 58, 83, 13257, 23, 85, 5648, 40, 48876, 3655, 16130, 86, 27031, 19, 2310, 86, 50, 12, 35, 1257, 59, 71, 46, 89, 11523, 58, 1671, 34554, 50, 70, 21, 43, 18, 249, 55, 17, 72, 21, 89, 20, 8835, 86, 46, 73, 18656, 19, 75, 57, 10249, 53, 19, 50, 12, 55, 54, 22, 71, 2184, 6971, 42, 3583, 55, 71, 59, 90, 71, 76, 43, 40, 76, 3227, 23, 30999, 58, 12, 5781, 58, 7341, 82, 12, 77, 40276, 16319, 22, 6327, 42574, 2446, 38, 1556, 7246, 2446, 80, 1934, 72, 2446, 9780, 56, 6159, 44, 81, 47391, 17, 45, 20, 58, 19752, 1992, 82, 2140, 54, 38884, 27509, 304, 69, 21, 22084, 51, 21, 35994, 59, 83, 44, 85, 26, 5683, 82, 532, 3832, 74, 26, 38, 20, 87, 46, 43563, 51, 69, 41, 24780, 38, 15723, 4237, 71, 76, 26, 58, 11164, 89, 48, 25314, 37, 23, 55, 50, 19, 81, 54, 328, 35, 6917, 20743, 80, 18, 45, 71, 25, 73, 31060, 55, 68, 47, 77, 25, 43, 2320, 55, 1839, 66, 46, 19, 16, 42238, 22, 55, 1036, 35, 79, 3571, 83, 23, 633, 4148, 75, 2693, 12, 32310, 14853, 74, 21, 35, 8311, 4161, 3348, 20, 73, 30007, 41, 26, 12, 73, 58, 35, 32786, 11113, 18931, 22, 66, 59, 78, 41, 9041, 48876, 59, 72, 42, 8962, 67, 30206, 6560, 297, 36, 79, 991, 89, 522, 19, 484, 66, 36, 59, 18858, 12, 18, 76, 34, 16319, 22, 6327, 42574, 2446, 38, 1556, 7246, 2446, 80, 1934, 72, 2446, 9780, 57, 75, 42, 25, 3463, 22, 91, 71, 21, 76, 25999, 12101, 83, 57, 23459, 38884, 18, 57, 17, 69, 25, 2431, 59, 40, 30925, 79, 47, 81, 58, 20583, 25, 45, 83, 26, 68, 82, 55, 16427, 2697, 39985, 4290, 2787, 37, 26, 66, 13432, 478, 47, 73, 43996, 301, 39, 59, 73, 47, 10120, 38, 1240, 48, 66, 13432, 23, 25009, 85, 43, 23731, 18, 85, 307, 40849, 48685, 39297, 34, 23, 43, 82, 46157, 27901, 26809, 16, 8846, 71, 1952, 26, 77, 19, 89, 24, 40, 3439, 69, 18, 1258, 28202, 10587, 2431, 3837, 57, 82, 46, 71, 17044, 3377, 58, 9492, 41, 12, 35811, 19, 44, 5622, 81, 55, 81, 1559, 86, 42524, 57, 14685, 79, 59, 19, 2809, 21, 6920, 82, 43, 12, 777, 6527, 19084, 43, 23, 45, 78, 14007, 620, 59, 78, 601, 82, 23, 16471, 50, 2446, 13924, 12, 25138, 31395, 50, 2925, 1934, 88, 7246, 9780, 2446, 80, 2446, 1934, 77, 58, 89, 16, 29848, 87, 1004, 86, 30612, 76, 54, 18, 66, 18, 58, 54, 59, 67, 43, 3046, 79, 52, 69, 19, 46481, 73, 56, 82, 67, 21328, 19, 16, 72, 39, 25, 8469, 19, 32201, 20, 29370, 84, 24, 6147, 82, 12, 89, 15012, 38, 76, 58, 87, 39, 6955, 25, 66, 3528, 9379, 38, 12, 59, 72, 51, 77, 18, 35, 21996, 59, 47, 83, 24, 81, 19921, 580, 59, 22, 42230, 19, 17364, 73, 58, 20, 1539, 16, 91, 56, 1641, 32067, 805, 81, 26, 57, 5260, 6623, 19, 24343, 45, 79, 18, 83, 339, 15701, 71, 57, 59, 28034, 42, 56, 2042, 19, 84, 22, 69, 1147, 88, 75, 58, 26498, 2184, 26, 11550, 22, 24867, 20449, 43, 57, 5428, 70, 9030, 59, 31526, 4789, 49, 2503, 40, 50, 80, 44, 4290, 76, 58, 78, 52, 4904, 16350, 82, 44, 587, 42, 19, 39, 2446, 16319, 22, 6327, 42574, 2446, 38, 1556, 7246, 2446, 80, 1934, 72, 2446, 9780, 55, 75, 35, 12, 4297, 12, 75, 40, 21, 76, 7396, 55, 83, 55, 73, 51, 5200, 9866, 19, 69, 43, 20, 59, 282, 39, 1739, 4604, 67, 12, 36517, 78, 48, 26, 48, 80, 2721, 45, 22, 55, 71, 49, 1525, 41, 87, 34, 3152, 2059, 54, 12352, 30567, 81, 29749, 1839, 1099, 27031, 58, 69, 54, 25, 89, 53, 5848, 37673, 384, 38577, 2906, 34297, 45270, 6855, 18, 78, 6784, 3348, 26, 55, 87, 56, 59, 453, 35, 19, 57, 71, 49, 413, 45, 2188, 1093, 77, 54, 68, 35, 75, 12, 81, 22, 17915, 47, 25, 75, 57, 59, 20, 58, 2431, 47733, 42039, 2185, 79, 1857, 8500, 3717, 50120, 1036, 12408, 22, 42, 75, 58, 43, 87, 75, 27767, 68, 2369, 40, 50, 33426, 90, 3493, 81, 4013, 83, 20, 66, 38, 4123, 82, 42496, 3208, 35, 82, 24, 55, 28183, 47646, 381, 3287, 187, 186, 7436, 27, 2233, 10543, 187, 186, 10978, 27, 9765, 9, 44459, 30, 1099, 558, 3476, 1329, 27, 19900, 25, 1738, 187, 186, 44459, 27, 470, 15, 1099, 28, 187, 94, 187, 15, 4113, 14, 24951, 2009, 14, 527, 13109, 4024, 964, 4113, 14, 24951, 2009, 14, 2877, 551, 187, 186, 11814, 14, 5695, 27, 5293, 28, 187, 94, 187, 15, 4113, 14, 373, 12729, 551, 187, 186, 3321, 27, 4103, 28, 187, 94, 187, 15, 4113, 14, 373, 12729, 14, 13393, 551, 187, 186, 3321, 27, 7880, 28, 187, 186, 4909, 14, 3281, 27, 470, 15, 18, 3498, 28, 187, 186, 8412, 27, 2972, 28, 187, 186, 14, 983, 14, 30713, 14, 1913, 27, 5293, 28, 187, 186, 30713, 14, 1913, 27, 5293, 28, 187, 94, 187, 15, 4113, 14, 373, 12729, 14, 25050, 964, 4113, 14, 373, 12729, 14, 13393, 13, 187, 15, 4113, 14, 373, 12729, 14, 1920, 1368, 504, 964, 4113, 14, 373, 12729, 14, 13393, 551, 187, 186, 8412, 27, 5293, 28, 187, 94, 187, 15, 4113, 14, 373, 12729, 14, 79, 551, 187, 186, 14849, 27, 295, 14, 35621, 28, 187, 186, 7436, 27, 818, 3498, 28, 187, 186, 3429, 27, 2233, 10543, 187, 186, 3956, 27, 428, 22, 3498, 28, 187, 186, 1274, 27, 470, 28, 187, 94, 187, 15, 4113, 14, 373, 12729, 14, 84, 551, 187, 186, 14849, 27, 256, 14, 35621, 28, 187, 186, 7436, 27, 818, 3498, 28, 187, 186, 3429, 27, 2233, 10543, 187, 186, 10492, 27, 428, 22, 3498, 28, 187, 186, 1274, 27, 470, 28, 187, 94, 187, 15, 4113, 14, 373, 12729, 14, 70, 551, 187, 186, 14849, 27, 299, 14, 35621, 28, 187, 186, 3429, 27, 818, 3498, 28, 187, 186, 918, 27, 428, 22, 3498, 28, 187, 186, 3956, 27, 470, 28, 187, 186, 7436, 27, 2233, 10543, 187, 94, 187, 15, 4113, 14, 373, 12729, 14, 88, 551, 187, 186, 14849, 27, 259, 14, 35621, 28, 187, 186, 3429, 27, 818, 3498, 28, 187, 186, 1274, 27, 428, 22, 3498, 28, 187, 186, 3956, 27, 470, 28, 187, 186, 7436, 27, 2233, 10543, 187, 94, 187, 15, 4113, 14, 373, 12729, 14, 339, 551, 187, 186, 14849, 27, 396, 14, 35621, 28, 187, 186, 3429, 27, 1249, 3498, 28, 187, 186, 7436, 27, 1249, 3498, 28, 187, 186, 918, 27, 337, 3498, 28, 187, 186, 10492, 27, 337, 3498, 28, 187, 94, 187, 15, 4113, 14, 373, 12729, 14, 2140, 551, 187, 186, 14849, 27, 1863, 14, 35621, 28, 187, 186, 3429, 27, 898, 3498, 28, 187, 186, 7436, 27, 898, 3498, 28, 187, 186, 1274, 27, 428, 22, 3498, 28, 187, 186, 10492, 27, 428, 22, 3498, 28, 187, 94, 187, 15, 4113, 14, 373, 12729, 14, 47938, 551, 187, 186, 14849, 27, 295, 88, 14, 35621, 28, 187, 186, 3429, 27, 898, 3498, 28, 187, 186, 7436, 27, 898, 3498, 28, 187, 186, 1274, 27, 428, 22, 3498, 28, 187, 186, 3956, 27, 428, 22, 3498, 28, 187, 94, 187, 15, 4113, 14, 373, 12729, 14, 570, 551, 187, 186, 14849, 27, 425, 14, 35621, 28, 187, 186, 3429, 27, 898, 3498, 28, 187, 186, 7436, 27, 898, 3498, 28, 187, 186, 918, 27, 428, 22, 3498, 28, 187, 186, 3956, 27, 428, 22, 3498, 28, 187, 94, 187, 15, 4113, 14, 7135, 494, 551, 187, 186, 14, 983, 14, 30713, 14, 1913, 27, 5293, 28, 187, 186, 30713, 14, 1913, 27, 5293, 28, 187, 94, 187, 15, 4113, 14, 7135, 494, 14, 28316, 551, 187, 186, 3321, 27, 7880, 28, 187, 186, 91, 14, 4663, 27, 2233, 28, 187, 186, 14224, 27, 337, 3498, 24817, 2806, 28, 187, 94, 187, 15, 4113, 14, 7135, 11746, 14, 11746, 551, 187, 186, 17333, 27, 470, 28, 187, 186, 15456, 27, 470, 28, 187, 186, 3321, 27, 7880, 28, 187, 186, 3956, 27, 470, 28, 187, 186, 1274, 27, 470, 28, 187, 186, 8412, 27, 5293, 28, 187, 94, 187, 15, 4113, 14, 7135, 11746, 14, 11746, 964, 4113, 14, 11746, 551, 187, 186, 27745, 27, 6753, 28, 187, 186, 3122, 15185, 27, 19900, 24, 1738, 187, 186, 27745, 14, 89, 27, 8763, 28, 187, 186, 17333, 14, 10492, 27, 337, 3498, 28, 187, 94, 187, 15, 4113, 14, 7135, 11746, 14, 11746, 964, 4113, 14, 11746, 964, 4113, 14, 7135, 11746, 14, 2178, 4399, 551, 187, 186, 4909, 14, 3281, 27, 337, 358, 28, 187, 186, 4909, 14, 6712, 27, 13433, 28, 187, 186, 1282, 14, 7436, 27, 337, 15, 22, 28, 187, 186, 17333, 27, 374, 3498, 470, 15, 21, 358, 28, 187, 186, 15456, 27, 470, 15, 22, 358, 470, 470, 470, 28, 187, 186, 7436, 27, 6753, 28, 187, 186, 14224, 27, 470, 28, 187, 94, 187, 15, 4113, 14, 7135, 11746, 14, 5758, 551, 187, 186, 8412, 27, 2972, 28, 187, 94, 187, 15, 4113, 14, 7135, 11746, 14, 8060, 551, 187, 186, 8412, 27, 13866, 14, 6172, 28, 187, 186, 27745, 27, 8763, 28, 187, 186, 3321, 27, 4103, 28, 187, 186, 1156, 14, 43101, 27, 5293, 28, 187, 186, 14849, 27, 12219, 28, 187, 94, 187, 15, 4113, 14, 7135, 11746, 14, 8060, 13905, 15, 4113, 14, 3557, 551, 187, 186, 918, 27, 470, 15, 22, 358, 28, 187, 186, 1274, 27, 6753, 28, 187, 186, 15456, 14, 3956, 27, 428, 25, 3498, 28, 187, 186, 3321, 27, 7880, 28, 187, 186, 3956, 27, 2456, 10543, 187, 94, 187, 15, 4113, 14, 7135, 11746, 14, 8060, 13905, 15, 4113, 14, 7135, 11746, 14, 1156, 551, 187, 186, 1156, 14, 8623, 27, 1669, 28, 187, 186, 17333, 27, 470, 15, 21, 358, 374, 15, 18, 358, 470, 15, 21, 358, 337, 358, 28, 187, 186, 8412, 27, 2972, 28, 187, 186, 1282, 14, 7436, 27, 337, 15, 21, 28, 187, 186, 27745, 27, 8763, 28, 187, 186, 1156, 14, 27745, 27, 11591, 2824, 261, 28, 187, 186, 11300, 14, 5641, 27, 1024, 1761, 28, 187, 94, 187, 15, 4113, 14, 39446, 551, 187, 186, 3321, 27, 4103, 28, 187, 186, 1156, 14, 8623, 27, 1669, 28, 187, 94, 187, 15, 4113, 14, 39446, 964, 4113, 14, 39446, 14, 13393, 551, 187, 186, 3321, 27, 7880, 28, 187, 186, 91, 14, 4663, 27, 374, 28, 187, 186, 3429, 27, 337, 15, 19, 358, 28, 187, 186, 7436, 27, 337, 15, 19, 358, 28, 187, 186, 14849, 27, 4284, 28, 187, 186, 14, 983, 14, 30713, 14, 1913, 27, 5293, 28, 187, 186, 30713, 14, 1913, 27, 5293, 28, 187, 94, 187, 15, 4113, 14, 39446, 964, 4113, 14, 39446, 14, 6324, 551, 187, 186, 3321, 27, 7880, 28, 187, 186, 91, 14, 4663, 27, 337, 28, 187, 186, 4909, 14, 3281, 27, 964, 24, 358, 28, 187, 186, 8412, 27, 2972, 28, 187, 186, 14224, 27, 470, 28, 187, 186, 11814, 14, 3321, 27, 470, 470, 28, 187, 94, 187, 187, 3122, 1329, 27, 19900, 25, 428, 2594, 1852, 2251, 1630, 1738, 187, 15, 4113, 14, 39446, 15, 4113, 14, 3409, 14, 25050, 964, 4113, 14, 39446, 14, 13393, 13, 187, 15, 4113, 14, 39446, 15, 4113, 14, 3409, 14, 25050, 964, 4113, 14, 39446, 14, 6324, 551, 187, 186, 10978, 27, 30686, 28, 187, 94, 187, 187, 15, 4113, 14, 39446, 14, 33464, 551, 187, 186, 7436, 27, 964, 25, 358, 28, 187, 94, 187, 15, 4113, 14, 39446, 14, 33464, 964, 4113, 14, 39446, 14, 13393, 551, 187, 186, 3956, 27, 26435, 20, 358, 28, 187, 186, 15456, 14, 1274, 27, 26435, 23, 358, 28, 187, 94, 187, 15, 4113, 14, 39446, 14, 33464, 964, 4113, 14, 39446, 14, 6324, 551, 187, 186, 3956, 27, 470, 28, 187, 186, 7436, 27, 2233, 10543, 187, 94, 187, 15, 4113, 14, 39446, 14, 33464, 964, 4113, 14, 39446, 14, 6324, 14, 1222, 551, 187, 186, 1274, 27, 470, 28, 187, 94, 187, 15, 4113, 14, 39446, 14, 33464, 964, 4113, 14, 39446, 14, 6324, 14, 4090, 551, 187, 186, 918, 27, 470, 28, 187, 94, 187, 187, 15, 4113, 14, 39446, 14, 26806, 551, 187, 186, 3429, 27, 964, 25, 358, 28, 187, 186, 7436, 27, 2233, 3498, 28, 187, 94, 187, 15, 4113, 14, 39446, 14, 26806, 964, 4113, 14, 39446, 14, 13393, 551, 187, 186, 1274, 27, 26435, 20, 358, 28, 187, 186, 15456, 14, 1274, 27, 470, 28, 187, 186, 15456, 14, 10492, 27, 26435, 23, 358, 28, 187, 94, 187, 15, 4113, 14, 39446, 14, 26806, 964, 4113, 14, 39446, 14, 6324, 551, 187, 186, 1274, 27, 470, 28, 187, 186, 3429, 27, 2233, 10543, 187, 94, 187, 15, 4113, 14, 39446, 14, 26806, 964, 4113, 14, 39446, 14, 6324, 14, 1222, 551, 187, 186, 10492, 27, 470, 28, 187, 94, 187, 15, 4113, 14, 39446, 14, 26806, 964, 4113, 14, 39446, 14, 6324, 14, 4090, 551, 187, 186, 3956, 27, 470, 28, 187, 94, 187, 15, 4113, 14, 15227, 494, 14, 13393, 551, 187, 186, 14, 983, 14, 30713, 14, 1913, 27, 5293, 28, 187, 186, 30713, 14, 1913, 27, 5293, 28, 187, 94, 187, 15, 4113, 14, 1033, 5338, 551, 187, 186, 3321, 27, 4103, 28, 187, 186, 8412, 27, 13866, 14, 6172, 28, 187, 186, 27745, 27, 8763, 28, 187, 186, 17333, 27, 470, 28, 187, 186, 26806, 14, 8623, 27, 4766, 28, 187, 94, 187, 15, 4113, 14, 1033, 5338, 14, 5423, 551, 187, 186, 14224, 27, 5293, 28, 187, 186, 11814, 27, 5293, 28, 187, 186, 4897, 27, 30686, 28, 187, 186, 17333, 27, 470, 28, 187, 186, 15456, 27, 964, 19, 358, 470, 28, 187, 186, 26806, 14, 8623, 27, 4766, 28, 187, 186, 15456, 14, 1274, 27, 964, 21, 358, 28, 187, 186, 15456, 14, 918, 27, 3307, 3498, 28, 187, 94, 187, 15, 4113, 14, 1033, 5338, 14, 8060, 551, 187, 186, 3429, 27, 1668, 3498, 28, 187, 186, 7436, 27, 2456, 10543, 187, 186, 4909, 14, 3281, 27, 964, 22, 358, 28, 187, 186, 17333, 27, 470, 28, 187, 186, 15456, 27, 470, 28, 187, 186, 1156, 14, 8623, 27, 4055, 28, 187, 186, 3321, 27, 7880, 28, 187, 186, 14849, 27, 4284, 28, 187, 186, 8412, 27, 2972, 28, 187, 186, 27745, 27, 8763, 28, 187, 186, 918, 27, 470, 28, 187, 94, 187, 3122, 625, 13005, 2424, 1060, 281, 12970, 4284, 18275, 1738, 187, 15, 4113, 14, 1033, 5338, 247, 15, 4113, 14, 1033, 5338, 14, 8060, 551, 187, 186, 14224, 14, 3956, 27, 5293, 28, 187, 186, 14224, 14, 10492, 27, 5293, 28, 187, 186, 14224, 14, 918, 27, 5293, 28, 187, 94, 187, 3122, 28446, 4055, 10651, 1738, 187, 15, 4113, 14, 1033, 5338, 964, 4113, 14, 3557, 551, 187, 186, 3321, 27, 7880, 28, 187, 186, 15456, 14, 3956, 27, 428, 25, 3498, 28, 187, 186, 3956, 27, 2456, 10543, 187, 186, 1274, 27, 470, 28, 187, 94, 187, 15, 4113, 14, 1033, 5338, 14, 484, 551, 187, 186, 3956, 27, 470, 28, 187, 94, 187, 15, 4113, 14, 1033, 5338, 14, 3487, 551, 187, 186, 10492, 27, 470, 28, 187, 94, 187, 187, 3122, 7500, 17797, 1487, 1738, 187, 15, 4113, 14, 1033, 5338, 964, 4113, 14, 3557, 14, 24269, 14, 18, 14, 84, 551, 187, 186, 3122, 878, 281, 4993, 27559, 42994, 1738, 187, 186, 11814, 14, 3321, 27, 428, 2082, 3498, 428, 1036, 3498, 28, 187, 94, 187, 15, 4113, 14, 33754, 551, 187, 186, 3321, 27, 4103, 28, 3122, 1899, 27, 4103, 16897, 19900, 14084, 7505, 313, 10531, 342, 1899, 27, 4103, 3304, 8781, 342, 19068, 27, 6753, 3176, 347, 346, 20188, 2807, 1738, 187, 186, 17333, 27, 964, 19, 358, 28, 187, 94, 187, 15, 4113, 14, 33754, 964, 4113, 14, 33754, 14, 8002, 551, 187, 186, 15456, 27, 470, 28, 187, 186, 17333, 27, 964, 19, 358, 964, 19, 358, 470, 28, 187, 94, 187, 15, 4113, 14, 33754, 964, 4113, 14, 33754, 14, 8002, 632, 551, 187, 186, 3550, 14, 4826, 27, 5293, 28, 187, 186, 9599, 27, 1669, 28, 187, 186, 3321, 27, 4103, 28, 187, 186, 3956, 27, 470, 28, 187, 186, 15456, 27, 337, 3498, 964, 19, 358, 470, 470, 28, 187, 186, 14224, 14, 10492, 14, 3429, 27, 470, 28, 187, 186, 17333, 27, 470, 28, 187, 186, 11300, 14, 5641, 27, 1024, 1761, 28, 187, 94, 187, 15, 4113, 14, 33754, 964, 4113, 14, 33754, 14, 8002, 964, 4113, 14, 33754, 14, 29016, 551, 187, 186, 9599, 27, 1669, 28, 187, 186, 17333, 27, 964, 22, 358, 337, 358, 28, 187, 186, 1156, 14, 43101, 27, 5293, 28, 187, 94, 187, 15, 4113, 14, 33754, 964, 4113, 14, 33754, 14, 8002, 632, 15, 4113, 14, 33754, 14, 4507, 551, 187, 186, 15456, 14, 10492, 27, 428, 18, 3498, 28, 187, 186, 17333, 14, 10492, 27, 337, 3498, 28, 187, 94, 187, 15, 4113, 14, 33754, 964, 4113, 14, 33754, 14, 8002, 632, 15, 4113, 14, 33754, 14, 4507, 964, 4113, 14, 33754, 14, 29016, 13, 187, 15, 4113, 14, 33754, 964, 4113, 14, 33754, 14, 8002, 632, 15, 4113, 14, 3409, 14, 25050, 964, 4113, 14, 33754, 14, 29016, 13, 187, 15, 4113, 14, 33754, 964, 4113, 14, 33754, 14, 8002, 632, 15, 4113, 14, 33754, 14, 23333, 964, 4113, 14, 33754, 14, 29016, 551, 187, 186, 14849, 27, 2505, 28, 187, 94, 187, 15, 4113, 14, 33754, 14, 14641, 1825, 917, 964, 4113, 14, 33754, 14, 8002, 632, 15, 4113, 14, 33754, 14, 4507, 964, 4113, 14, 33754, 14, 29016, 551, 187, 186, 14849, 27, 12219, 28, 187, 94, 187, 15, 4113, 14, 33754, 964, 4113, 14, 33754, 14, 19720, 551, 187, 186, 8412, 27, 2972, 28, 187, 186, 14224, 14, 3429, 27, 470, 28, 187, 186, 17333, 27, 337, 358, 337, 15, 21, 358, 28, 187, 186, 11814, 27, 5293, 28, 187, 94, 187, 15, 4113, 14, 40927, 551, 187, 186, 17333, 27, 854, 3498, 28, 187, 186, 3321, 27, 7880, 28, 187, 186, 91, 14, 4663, 27, 898, 16742, 28, 187, 186, 4090, 14, 3429, 27, 7469, 3498, 28, 187, 186, 14, 20726, 14, 3364, 14, 20644, 27, 470, 470, 608, 3498, 1852, 39639, 28, 187, 186, 3364, 14, 20644, 27, 470, 470, 608, 3498, 1852, 39639, 28, 187, 94, 187, 2915, 964, 4113, 14, 40927, 551, 187, 186, 14224, 14, 3429, 27, 374, 3498, 28, 187, 94, 187, 187, 3122, 27740, 17671, 187, 33250, 8480, 187, 15, 4113, 14, 14778, 551, 187, 186, 4909, 14, 11807, 27, 7188, 69, 3230, 13, 34, 3760, 13, 84, 507, 14, 40004, 28, 187, 186, 4909, 14, 3281, 27, 337, 15, 18, 358, 28, 187, 94, 187, 15, 4113, 14, 14778, 964, 4113, 14, 14778, 551, 187, 186, 4909, 14, 3281, 27, 337, 358, 28, 187, 94, 187, 15, 4113, 14, 14778, 3280, 13, 187, 15, 4113, 14, 14778, 3609, 13, 187, 15, 4113, 14, 14778, 2505, 12879, 13, 187, 15, 4113, 14, 14778, 6409, 551, 187, 186, 4909, 14, 11807, 27, 7188, 69, 3230, 13, 34, 3760, 13, 84, 507, 14, 40004, 28, 187, 186, 4909, 14, 3281, 27, 337, 358, 28, 187, 94, 187, 15, 4113, 14, 14778, 14, 6071, 551, 187, 186, 14224, 27, 337, 3498, 4891, 1852, 19533, 550, 28, 187, 186, 11814, 27, 1852, 71, 26, 71, 26, 71, 26, 9688, 1587, 13485, 16, 4113, 14, 17424, 64, 30703, 14, 10984, 64, 2313, 64, 71, 26, 71, 26, 71, 26, 64, 18, 89, 2313, 15, 8567, 2807, 2456, 6, 1755, 10280, 14, 89, 28, 187, 186, 4897, 27, 1852, 48049, 1423, 28, 187, 94, 187, 15, 4113, 14, 14778, 14, 6071, 247, 551, 187, 186, 4897, 27, 1852, 48049, 1423, 28, 187, 94, 187, 15, 4113, 14, 14778, 14, 10146, 551, 187, 186, 14224, 27, 337, 3498, 4891, 1852, 66, 20, 66, 20, 66, 20, 28, 187, 186, 11814, 27, 1852, 26409, 1610, 9688, 1587, 13485, 16, 4113, 14, 17424, 64, 5168, 5154, 932, 14, 27663, 64, 25, 64, 26409, 1610, 64, 1449, 89, 1449, 15, 8567, 2807, 2456, 6, 2456, 6, 10280, 28, 187, 186, 4897, 27, 1852, 47285, 1796, 28, 187, 186, 4909, 14, 6712, 27, 13433, 28, 187, 94, 187, 15, 4113, 14, 14778, 14, 10146, 247, 551, 187, 186, 4897, 27, 1852, 47285, 1796, 28, 187, 94, 187, 187, 3122, 48281, 3054, 187, 33250, 8480, 187, 15, 4113, 14, 3409, 14, 6986, 13, 187, 15, 4113, 14, 14778, 14, 6071, 964, 4113, 14, 3409, 14, 6986, 13, 187, 15, 4113, 14, 14778, 14, 10146, 964, 4113, 14, 3409, 14, 6986, 551, 187, 186, 14224, 27, 337, 3498, 4891, 1852, 2357, 2357, 2357, 28, 187, 186, 11814, 27, 1852, 13721, 883, 9688, 1587, 13485, 16, 4113, 14, 17424, 64, 25483, 64, 1449, 64, 13721, 883, 64, 18, 89, 8320, 15, 8567, 2807, 2456, 6, 2456, 6, 10280, 14, 89, 28, 187, 186, 4909, 14, 6712, 27, 2622, 28, 187, 186, 4897, 27, 1852, 70, 20, 70, 20, 70, 20, 28, 187, 94, 187, 15, 4113, 14, 3409, 14, 6986, 247, 13, 187, 15, 4113, 14, 3409, 14, 6986, 247, 27, 4492, 13, 187, 15, 4113, 14, 3409, 14, 6986, 247, 27, 4534, 959, 551, 187, 186, 4897, 27, 1852, 70, 20, 70, 20, 70, 20, 28, 187, 186, 1156, 14, 43101, 27, 5293, 28, 187, 94, 187, 15, 4113, 14, 3409, 14, 22424, 13, 187, 15, 4113, 14, 14778, 14, 6071, 964, 4113, 14, 3409, 14, 22424, 13, 187, 15, 4113, 14, 14778, 14, 10146, 964, 4113, 14, 3409, 14, 22424, 13, 187, 15, 4113, 14, 3409, 14, 16651, 13, 187, 15, 4113, 14, 14778, 14, 6071, 964, 4113, 14, 3409, 14, 16651, 13, 187, 15, 4113, 14, 14778, 14, 10146, 964, 4113, 14, 3409, 14, 16651, 551, 187, 186, 14224, 27, 337, 3498, 4891, 1852, 8551, 28, 187, 186, 11814, 27, 1852, 18, 68, 18, 68, 18, 68, 9688, 1587, 13485, 16, 4113, 14, 17424, 64, 25483, 64, 2417, 64, 18, 68, 18, 68, 18, 68, 64, 18, 89, 8320, 15, 8567, 2807, 2456, 6, 2456, 6, 10280, 14, 89, 28, 187, 186, 4909, 14, 6712, 27, 2622, 28, 187, 186, 4897, 27, 1852, 40495, 28, 187, 94, 187, 15, 4113, 14, 3409, 14, 22424, 247, 13, 187, 15, 4113, 14, 3409, 14, 22424, 247, 27, 22424, 13, 187, 15, 4113, 14, 3409, 14, 22424, 247, 27, 4492, 13, 187, 15, 4113, 14, 3409, 14, 22424, 247, 27, 4534, 959, 13, 187, 15, 4113, 14, 3409, 14, 16651, 247, 13, 187, 15, 4113, 14, 3409, 14, 16651, 247, 27, 22424, 13, 187, 15, 4113, 14, 3409, 14, 16651, 247, 27, 4492, 13, 187, 15, 4113, 14, 3409, 14, 16651, 247, 27, 4534, 959, 551, 187, 186, 4897, 27, 1852, 40495, 28, 187, 186, 1156, 14, 43101, 27, 5293, 28, 187, 94, 187, 15, 4113, 14, 3409, 14, 4507, 13, 187, 15, 4113, 14, 14778, 14, 6071, 964, 4113, 14, 3409, 14, 4507, 13, 187, 15, 4113, 14, 14778, 14, 10146, 964, 4113, 14, 3409, 14, 4507, 551, 187, 186, 14224, 27, 337, 3498, 4891, 1852, 19533, 550, 28, 187, 186, 11814, 27, 1852, 40495, 9688, 1587, 13485, 16, 4113, 14, 17424, 64, 22829, 64, 2082, 64, 40495, 64, 1449, 89, 2313, 15, 8567, 2807, 2456, 6, 2456, 6, 10280, 14, 89, 28, 187, 186, 4909, 14, 6712, 27, 2622, 28, 187, 186, 4897, 27, 1852, 48049, 1423, 28, 187, 94, 187, 15, 4113, 14, 3409, 14, 4507, 247, 13, 187, 15, 4113, 14, 3409, 14, 4507, 247, 27, 4492, 13, 187, 15, 4113, 14, 3409, 14, 4507, 247, 27, 4534, 959, 551, 187, 186, 4897, 27, 1852, 48049, 1423, 28, 187, 186, 1156, 14, 43101, 27, 5293, 28, 187, 94, 187, 187, 3122, 48281, 330, 955, 187, 33250, 8480, 187, 15, 4113, 14, 3409, 14, 30703, 13, 187, 15, 4113, 14, 14778, 14, 6071, 964, 4113, 14, 3409, 14, 30703, 13, 187, 15, 4113, 14, 14778, 14, 10146, 964, 4113, 14, 3409, 14, 30703, 551, 187, 186, 14224, 27, 337, 3498, 4891, 1852, 567, 615, 19, 70, 28, 187, 186, 11814, 27, 1852, 44539, 67, 1438, 9688, 1587, 13485, 16, 4113, 14, 17424, 64, 46039, 14, 10984, 64, 2417, 64, 44539, 67, 1438, 64, 18, 89, 2313, 15, 8567, 2807, 2456, 6, 5004, 10280, 14, 89, 28, 187, 186, 4897, 27, 1852, 1812, 1812, 1812, 28, 187, 94, 187, 15, 4113, 14, 3409, 14, 30703, 247, 13, 187, 15, 4113, 14, 14778, 14, 6071, 964, 4113, 14, 3409, 14, 30703, 247, 13, 187, 15, 4113, 14, 14778, 14, 10146, 964, 4113, 14, 3409, 14, 30703, 247, 551, 187, 186, 4897, 27, 1852, 1812, 1812, 1812, 28, 187, 94, 187, 15, 4113, 14, 3409, 14, 3775, 13, 187, 15, 4113, 14, 14778, 14, 6071, 964, 4113, 14, 3409, 14, 3775, 13, 187, 15, 4113, 14, 14778, 14, 10146, 964, 4113, 14, 3409, 14, 3775, 551, 187, 186, 14224, 27, 337, 3498, 4891, 1852, 26, 70, 17, 18550, 28, 187, 186, 11814, 27, 1852, 2428, 17, 66, 17, 66, 9688, 1587, 13485, 16, 4113, 14, 17424, 64, 46039, 14, 10984, 64, 1857, 64, 2428, 17, 66, 17, 66, 64, 18, 89, 2313, 15, 8567, 2807, 2456, 6, 5004, 10280, 14, 89, 28, 187, 186, 4897, 27, 1852, 40495, 28, 187, 94, 187, 15, 4113, 14, 3409, 14, 3775, 247, 13, 187, 15, 4113, 14, 14778, 14, 6071, 964, 4113, 14, 3409, 14, 3775, 247, 13, 187, 15, 4113, 14, 14778, 14, 10146, 964, 4113, 14, 3409, 14, 3775, 247, 551, 187, 186, 4897, 27, 1852, 40495, 28, 187, 94, 187, 15, 4113, 14, 3409, 14, 3775, 14, 1156, 13, 187, 15, 4113, 14, 14778, 14, 6071, 964, 4113, 14, 3409, 14, 3775, 14, 1156, 13, 187, 15, 4113, 14, 14778, 14, 10146, 964, 4113, 14, 3409, 14, 3775, 14, 1156, 551, 187, 186, 4897, 27, 1852, 40495, 28, 187, 94, 187, 15, 4113, 14, 36505, 14, 21423, 13, 187, 15, 4113, 14, 14778, 14, 6071, 964, 4113, 14, 36505, 14, 21423, 13, 187, 15, 4113, 14, 14778, 14, 10146, 964, 4113, 14, 36505, 14, 21423, 551, 187, 186, 4909, 14, 6712, 27, 13433, 28, 187, 94, 187, 15, 4113, 14, 36505, 14, 36277, 13, 187, 15, 4113, 14, 14778, 14, 6071, 964, 4113, 14, 36505, 14, 36277, 13, 187, 15, 4113, 14, 14778, 14, 10146, 964, 4113, 14, 36505, 14, 36277, 551, 187, 186, 44459, 27, 964, 24, 28, 187, 186, 10978, 27, 29858, 9, 12535, 10757, 30, 1967, 558, 3476, 1329, 27, 19900, 25, 1738, 187, 186, 4909, 14, 6712, 27, 2622, 28, 187, 94, 187, 15, 4113, 14, 3409, 14, 25050, 13, 187, 15, 4113, 14, 14778, 14, 6071, 964, 4113, 14, 3409, 14, 25050, 13, 187, 15, 4113, 14, 14778, 14, 10146, 964, 4113, 14, 3409, 14, 25050, 551, 187, 186, 44459, 27, 964, 1671, 28, 187, 186, 10978, 27, 29858, 9, 12535, 10757, 30, 1671, 558, 3476, 1329, 27, 19900, 25, 1738, 187, 186, 11814, 14, 5695, 27, 5293, 28, 187, 94, 187, 15, 4113, 14, 3409, 14, 25050, 964, 4113, 14, 3557, 551, 187, 186, 10978, 27, 29858, 9, 12535, 10757, 30, 1671, 558, 3476, 1329, 27, 19900, 25, 428, 2594, 1852, 1549, 3046, 1738, 187, 94, 187, 187, 3122, 309, 5040, 187, 33250, 8480, 187, 187, 3122, 3054, 285, 3888, 1738, 187, 15, 4113, 14, 3557, 551, 187, 186, 3429, 27, 1668, 3498, 28, 187, 186, 7436, 27, 1668, 3498, 28, 187, 94, 187, 15, 4113, 14, 3557, 13, 187, 15, 4113, 14, 14778, 14, 6071, 964, 4113, 14, 3557, 551, 187, 186, 11814, 14, 5695, 27, 9688, 1587, 13485, 16, 4113, 14, 30585, 64, 48049, 1423, 64, 9726, 89, 14028, 15, 8567, 3287, 187, 94, 187, 15, 4113, 14, 14778, 14, 10146, 964, 4113, 14, 3557, 551, 187, 186, 11814, 14, 5695, 27, 9688, 1587, 13485, 16, 4113, 14, 30585, 64, 4482, 4482, 4482, 64, 9726, 89, 14028, 15, 8567, 3287, 187, 94, 187, 15, 4113, 14, 3409, 14, 6986, 964, 4113, 14, 3557, 551, 187, 186, 11814, 14, 5695, 27, 9688, 1587, 13485, 16, 4113, 14, 30585, 64, 16533, 264, 64, 9726, 89, 14028, 15, 8567, 3287, 187, 94, 187, 15, 4113, 14, 3409, 14, 22424, 964, 4113, 14, 3557, 13, 187, 15, 4113, 14, 3409, 14, 16651, 964, 4113, 14, 3557, 551, 187, 186, 11814, 14, 5695, 27, 9688, 1587, 13485, 16, 4113, 14, 30585, 64, 40495, 64, 9726, 89, 14028, 15, 8567, 3287, 187, 94, 187, 15, 4113, 14, 3409, 14, 4507, 964, 4113, 14, 3557, 551, 187, 186, 11814, 14, 5695, 27, 9688, 1587, 13485, 16, 4113, 14, 30585, 64, 48049, 1423, 64, 9726, 89, 14028, 15, 8567, 3287, 187, 94, 187, 15, 4113, 14, 3409, 14, 30703, 964, 4113, 14, 3557, 551, 187, 186, 11814, 14, 5695, 27, 9688, 1587, 13485, 16, 4113, 14, 30585, 64, 21, 6357, 7554, 64, 9726, 89, 14028, 15, 8567, 3287, 187, 94, 187, 15, 4113, 14, 3409, 14, 3775, 964, 4113, 14, 3557, 13, 187, 15, 4113, 14, 3409, 14, 3775, 14, 1156, 964, 4113, 14, 3557, 551, 187, 186, 11814, 14, 5695, 27, 9688, 1587, 13485, 16, 4113, 14, 30585, 64, 567, 7836, 1717, 64, 9726, 89, 14028, 15, 8567, 3287, 187, 94, 187, 187, 3122, 19274, 1738, 187, 15, 4113, 14, 3557, 14, 22473, 551, 4114, 14, 3321, 27, 1668, 3498, 1668, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 5546, 255, 14, 18, 14, 79, 551, 4114, 14, 3321, 27, 470, 470, 28, 748, 187, 15, 4113, 14, 3557, 14, 5546, 255, 14, 18, 14, 570, 551, 4114, 14, 3321, 27, 428, 1036, 3498, 470, 28, 748, 187, 15, 4113, 14, 3557, 14, 5546, 255, 14, 18, 14, 70, 551, 4114, 14, 3321, 27, 428, 1237, 3498, 470, 28, 748, 187, 15, 4113, 14, 3557, 14, 5546, 255, 14, 18, 14, 339, 551, 4114, 14, 3321, 27, 428, 2385, 3498, 470, 28, 748, 187, 15, 4113, 14, 3557, 14, 5546, 255, 14, 18, 14, 84, 551, 4114, 14, 3321, 27, 428, 1540, 3498, 470, 28, 748, 187, 15, 4113, 14, 3557, 14, 5546, 255, 14, 18, 14, 2140, 551, 4114, 14, 3321, 27, 428, 1438, 3498, 470, 28, 748, 187, 15, 4113, 14, 3557, 14, 5546, 255, 14, 18, 14, 88, 551, 4114, 14, 3321, 27, 428, 4196, 3498, 470, 28, 748, 187, 15, 4113, 14, 3557, 14, 5546, 255, 14, 18, 14, 47938, 551, 4114, 14, 3321, 27, 428, 11124, 3498, 470, 28, 748, 187, 15, 4113, 14, 3557, 14, 5546, 255, 14, 19, 14, 79, 14, 84, 551, 4114, 14, 3321, 27, 428, 8196, 3498, 470, 28, 748, 187, 15, 4113, 14, 3557, 14, 5546, 255, 14, 19, 14, 70, 14, 88, 551, 4114, 14, 3321, 27, 428, 14231, 3498, 470, 28, 748, 187, 15, 4113, 14, 3557, 14, 24269, 14, 18, 14, 79, 551, 4114, 14, 3321, 27, 470, 428, 1036, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 24269, 14, 18, 14, 570, 551, 4114, 14, 3321, 27, 428, 1036, 3498, 428, 1036, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 24269, 14, 18, 14, 70, 551, 4114, 14, 3321, 27, 428, 1237, 3498, 428, 1036, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 24269, 14, 18, 14, 339, 551, 4114, 14, 3321, 27, 428, 2385, 3498, 428, 1036, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 24269, 14, 18, 14, 84, 551, 4114, 14, 3321, 27, 428, 1540, 3498, 428, 1036, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 24269, 14, 18, 14, 2140, 551, 4114, 14, 3321, 27, 428, 1438, 3498, 428, 1036, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 24269, 14, 18, 14, 88, 551, 4114, 14, 3321, 27, 428, 4196, 3498, 428, 1036, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 24269, 14, 18, 14, 47938, 551, 4114, 14, 3321, 27, 428, 11124, 3498, 428, 1036, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 24269, 14, 19, 14, 79, 14, 84, 551, 4114, 14, 3321, 27, 428, 8196, 3498, 428, 1036, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 24269, 14, 19, 14, 70, 14, 88, 551, 4114, 14, 3321, 27, 428, 14231, 3498, 428, 1036, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 2501, 14, 18, 14, 79, 551, 4114, 14, 3321, 27, 470, 428, 1237, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 2501, 14, 18, 14, 570, 551, 4114, 14, 3321, 27, 428, 1036, 3498, 428, 1237, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 2501, 14, 18, 14, 70, 551, 4114, 14, 3321, 27, 428, 1237, 3498, 428, 1237, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 2501, 14, 18, 14, 339, 551, 4114, 14, 3321, 27, 428, 2385, 3498, 428, 1237, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 2501, 14, 18, 14, 84, 551, 4114, 14, 3321, 27, 428, 1540, 3498, 428, 1237, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 2501, 14, 18, 14, 2140, 551, 4114, 14, 3321, 27, 428, 1438, 3498, 428, 1237, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 2501, 14, 18, 14, 88, 551, 4114, 14, 3321, 27, 428, 4196, 3498, 428, 1237, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 2501, 14, 18, 14, 47938, 551, 4114, 14, 3321, 27, 428, 11124, 3498, 428, 1237, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 2501, 14, 19, 14, 79, 14, 84, 551, 4114, 14, 3321, 27, 428, 8196, 3498, 428, 1237, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 2501, 14, 19, 14, 570, 14, 2140, 551, 4114, 14, 3321, 27, 428, 14231, 3498, 428, 1237, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 2501, 14, 19, 14, 70, 14, 88, 551, 4114, 14, 3321, 27, 428, 9913, 3498, 428, 1237, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 2501, 14, 19, 14, 339, 14, 47938, 551, 4114, 14, 3321, 27, 428, 17184, 3498, 428, 1237, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 2501, 13121, 14, 18, 14, 79, 551, 4114, 14, 3321, 27, 428, 14403, 3498, 428, 1237, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 2501, 13121, 14, 18, 14, 70, 551, 4114, 14, 3321, 27, 428, 17391, 3498, 428, 1237, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 2501, 13121, 14, 18, 14, 84, 551, 4114, 14, 3321, 27, 428, 17537, 3498, 428, 1237, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 2501, 13121, 14, 18, 14, 88, 551, 4114, 14, 3321, 27, 428, 14028, 3498, 428, 1237, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 2501, 27663, 14, 18, 14, 79, 551, 4114, 14, 3321, 27, 470, 428, 2385, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 2501, 27663, 14, 18, 14, 570, 551, 4114, 14, 3321, 27, 428, 1036, 3498, 428, 2385, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 2501, 27663, 14, 18, 14, 70, 551, 4114, 14, 3321, 27, 428, 1237, 3498, 428, 2385, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 2501, 27663, 14, 18, 14, 339, 551, 4114, 14, 3321, 27, 428, 2385, 3498, 428, 2385, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 2501, 27663, 14, 18, 14, 84, 551, 4114, 14, 3321, 27, 428, 1540, 3498, 428, 2385, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 2501, 27663, 14, 18, 14, 2140, 551, 4114, 14, 3321, 27, 428, 1438, 3498, 428, 2385, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 2501, 27663, 14, 18, 14, 88, 551, 4114, 14, 3321, 27, 428, 4196, 3498, 428, 2385, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 2501, 27663, 14, 18, 14, 47938, 551, 4114, 14, 3321, 27, 428, 11124, 3498, 428, 2385, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 2501, 27663, 14, 19, 14, 79, 14, 84, 551, 4114, 14, 3321, 27, 428, 8196, 3498, 428, 2385, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 2501, 27663, 14, 19, 14, 570, 14, 2140, 551, 4114, 14, 3321, 27, 428, 14231, 3498, 428, 2385, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 2501, 27663, 14, 19, 14, 70, 14, 88, 551, 4114, 14, 3321, 27, 428, 9913, 3498, 428, 2385, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 2501, 27663, 14, 19, 14, 339, 14, 47938, 551, 4114, 14, 3321, 27, 428, 17184, 3498, 428, 2385, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 2501, 27663, 13121, 14, 18, 14, 79, 551, 4114, 14, 3321, 27, 428, 14403, 3498, 428, 2385, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 2501, 27663, 13121, 14, 18, 14, 70, 551, 4114, 14, 3321, 27, 428, 17391, 3498, 428, 2385, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 2501, 27663, 13121, 14, 18, 14, 84, 551, 4114, 14, 3321, 27, 428, 17537, 3498, 428, 2385, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 2501, 27663, 13121, 14, 18, 14, 88, 551, 4114, 14, 3321, 27, 428, 14028, 3498, 428, 2385, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 2501, 2309, 27663, 14, 18, 14, 88, 551, 4114, 14, 3321, 27, 470, 428, 1540, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 2501, 2309, 27663, 14, 18, 14, 79, 551, 4114, 14, 3321, 27, 428, 1036, 3498, 428, 1540, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 2501, 2309, 27663, 14, 18, 14, 70, 551, 4114, 14, 3321, 27, 428, 1237, 3498, 428, 1540, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 2501, 2309, 27663, 14, 18, 14, 84, 551, 4114, 14, 3321, 27, 428, 2385, 3498, 428, 1540, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 2501, 2309, 14, 18, 14, 88, 551, 4114, 14, 3321, 27, 428, 1540, 3498, 428, 1540, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 2501, 2309, 14, 18, 14, 79, 551, 4114, 14, 3321, 27, 428, 1438, 3498, 428, 1540, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 2501, 2309, 14, 18, 14, 70, 551, 4114, 14, 3321, 27, 428, 4196, 3498, 428, 1540, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 2501, 2309, 14, 18, 14, 84, 551, 4114, 14, 3321, 27, 428, 11124, 3498, 428, 1540, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 2501, 38664, 14, 18, 14, 88, 551, 4114, 14, 3321, 27, 428, 8196, 3498, 428, 1540, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 2501, 38664, 14, 18, 14, 79, 551, 4114, 14, 3321, 27, 428, 14231, 3498, 428, 1540, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 2501, 38664, 14, 18, 14, 70, 551, 4114, 14, 3321, 27, 428, 9913, 3498, 428, 1540, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 2501, 38664, 14, 18, 14, 84, 551, 4114, 14, 3321, 27, 428, 17184, 3498, 428, 1540, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 2501, 14, 21, 551, 4114, 14, 3321, 27, 470, 428, 1438, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 2501, 14, 21, 14, 31783, 551, 4114, 14, 3321, 27, 428, 1036, 3498, 428, 1438, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 2068, 4492, 551, 4114, 14, 3321, 27, 428, 1237, 3498, 428, 1438, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 570, 1477, 249, 551, 4114, 14, 3321, 27, 428, 2385, 3498, 428, 1438, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 38664, 551, 4114, 14, 3321, 27, 428, 1540, 3498, 428, 1438, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 1200, 23831, 551, 4114, 14, 3321, 27, 428, 1438, 3498, 428, 1438, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 17338, 14, 70, 14, 88, 551, 4114, 14, 3321, 27, 428, 4196, 3498, 428, 1438, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 17338, 27663, 14, 70, 14, 88, 551, 4114, 14, 3321, 27, 428, 11124, 3498, 428, 1438, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 26687, 14, 14641, 13395, 551, 4114, 14, 3321, 27, 470, 428, 4196, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 26687, 14, 5758, 551, 4114, 14, 3321, 27, 428, 1036, 3498, 428, 4196, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 3306, 551, 4114, 14, 3321, 27, 428, 1237, 3498, 428, 4196, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 3306, 14, 67, 551, 4114, 14, 3321, 27, 428, 2385, 3498, 428, 4196, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 9939, 551, 4114, 14, 3321, 27, 428, 1540, 3498, 428, 4196, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 5719, 14, 13784, 551, 4114, 14, 3321, 27, 428, 1438, 3498, 428, 4196, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 5719, 14, 5758, 551, 4114, 14, 3321, 27, 428, 4196, 3498, 428, 4196, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 46522, 5045, 551, 4114, 14, 3321, 27, 428, 11124, 3498, 428, 4196, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 13982, 551, 4114, 14, 3321, 27, 428, 8196, 3498, 428, 4196, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 10816, 551, 4114, 14, 3321, 27, 428, 14231, 3498, 428, 4196, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 3845, 551, 4114, 14, 3321, 27, 428, 9913, 3498, 428, 4196, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 1206, 1225, 551, 4114, 14, 3321, 27, 428, 17184, 3498, 428, 4196, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 30730, 551, 4114, 14, 3321, 27, 428, 14403, 3498, 428, 4196, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 25919, 264, 551, 4114, 14, 3321, 27, 428, 17391, 3498, 428, 4196, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 3305, 4698, 551, 4114, 14, 3321, 27, 428, 17537, 3498, 428, 4196, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 7784, 551, 4114, 14, 3321, 27, 428, 14028, 3498, 428, 4196, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 9511, 551, 4114, 14, 3321, 27, 470, 428, 11124, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 17101, 551, 4114, 14, 3321, 27, 428, 1036, 3498, 428, 11124, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 36913, 551, 4114, 14, 3321, 27, 428, 1237, 3498, 428, 11124, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 23487, 551, 4114, 14, 3321, 27, 428, 2385, 3498, 428, 11124, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 81, 21177, 551, 4114, 14, 3321, 27, 428, 1540, 3498, 428, 11124, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 13273, 551, 4114, 14, 3321, 27, 428, 1438, 3498, 428, 11124, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 27236, 551, 4114, 14, 3321, 27, 428, 4196, 3498, 428, 11124, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 1179, 49605, 551, 4114, 14, 3321, 27, 428, 11124, 3498, 428, 11124, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 8636, 5240, 551, 4114, 14, 3321, 27, 428, 8196, 3498, 428, 11124, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 44164, 483, 551, 4114, 14, 3321, 27, 428, 14231, 3498, 428, 11124, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 8716, 551, 4114, 14, 3321, 27, 428, 9913, 3498, 428, 11124, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 88, 4099, 551, 4114, 14, 3321, 27, 428, 17184, 3498, 428, 11124, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 463, 274, 551, 4114, 14, 3321, 27, 428, 14403, 3498, 428, 11124, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 14387, 551, 4114, 14, 3321, 27, 428, 17391, 3498, 428, 11124, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 7873, 551, 4114, 14, 3321, 27, 428, 17537, 3498, 428, 11124, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 4492, 551, 4114, 14, 3321, 27, 428, 14028, 3498, 428, 11124, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 35899, 551, 4114, 14, 3321, 27, 470, 428, 8196, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 11095, 551, 4114, 14, 3321, 27, 428, 1036, 3498, 428, 8196, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 446, 461, 73, 781, 551, 4114, 14, 3321, 27, 428, 1237, 3498, 428, 8196, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 10420, 551, 4114, 14, 3321, 27, 428, 2385, 3498, 428, 8196, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 1222, 461, 73, 781, 551, 4114, 14, 3321, 27, 428, 1540, 3498, 428, 8196, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 10483, 551, 4114, 14, 3321, 27, 428, 1438, 3498, 428, 8196, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 45872, 678, 781, 551, 4114, 14, 3321, 27, 428, 4196, 3498, 428, 8196, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 2364, 551, 4114, 14, 3321, 27, 428, 11124, 3498, 428, 8196, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 3243, 9705, 67, 551, 4114, 14, 3321, 27, 428, 8196, 3498, 428, 8196, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 1026, 43842, 551, 4114, 14, 3321, 27, 428, 14231, 3498, 428, 8196, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 11536, 4697, 551, 4114, 14, 3321, 27, 428, 9913, 3498, 428, 8196, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 12557, 551, 4114, 14, 3321, 27, 428, 17184, 3498, 428, 8196, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 22045, 551, 4114, 14, 3321, 27, 428, 14403, 3498, 428, 8196, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 5695, 551, 4114, 14, 3321, 27, 428, 17391, 3498, 428, 8196, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 16455, 551, 4114, 14, 3321, 27, 428, 17537, 3498, 428, 8196, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 3866, 551, 4114, 14, 3321, 27, 428, 14028, 3498, 428, 8196, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 26544, 551, 4114, 14, 3321, 27, 470, 428, 14231, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 5374, 551, 4114, 14, 3321, 27, 428, 1036, 3498, 428, 14231, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 37277, 551, 4114, 14, 3321, 27, 428, 1237, 3498, 428, 14231, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 13070, 551, 4114, 14, 3321, 27, 428, 2385, 3498, 428, 14231, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 5903, 551, 4114, 14, 3321, 27, 428, 1540, 3498, 428, 14231, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 14696, 551, 4114, 14, 3321, 27, 428, 1438, 3498, 428, 14231, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 25337, 14, 251, 551, 4114, 14, 3321, 27, 428, 4196, 3498, 428, 14231, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 25337, 14, 2727, 551, 4114, 14, 3321, 27, 428, 11124, 3498, 428, 14231, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 9852, 14, 88, 551, 4114, 14, 3321, 27, 428, 8196, 3498, 428, 14231, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 9852, 14, 84, 551, 4114, 14, 3321, 27, 428, 14231, 3498, 428, 14231, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 1993, 551, 4114, 14, 3321, 27, 470, 428, 9913, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 46703, 551, 4114, 14, 3321, 27, 428, 1036, 3498, 428, 9913, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 32179, 14, 8384, 551, 4114, 14, 3321, 27, 428, 1237, 3498, 428, 9913, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 32179, 14, 22340, 551, 4114, 14, 3321, 27, 428, 2385, 3498, 428, 9913, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 32179, 14, 423, 551, 4114, 14, 3321, 27, 428, 1540, 3498, 428, 9913, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 32179, 14, 5478, 551, 4114, 14, 3321, 27, 428, 1438, 3498, 428, 9913, 3498, 28, 748, 187, 3122, 28243, 14, 3557, 14, 32179, 14, 7053, 310, 30655, 13, 897, 28243, 14, 3557, 14, 32179, 14, 5478, 3185, 1738, 187, 15, 4113, 14, 3557, 14, 32179, 14, 7053, 551, 4114, 14, 3321, 27, 428, 1438, 3498, 428, 9913, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 13121, 551, 4114, 14, 3321, 27, 428, 4196, 3498, 428, 9913, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 70, 720, 551, 4114, 14, 3321, 27, 428, 11124, 3498, 428, 9913, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 21970, 14, 2727, 551, 4114, 14, 3321, 27, 428, 8196, 3498, 428, 9913, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 21970, 14, 251, 551, 4114, 14, 3321, 27, 428, 14231, 3498, 428, 9913, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 9177, 551, 4114, 14, 3321, 27, 470, 428, 17184, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 27644, 14, 31783, 551, 4114, 14, 3321, 27, 428, 1036, 3498, 428, 17184, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 27644, 551, 4114, 14, 3321, 27, 428, 1237, 3498, 428, 17184, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 67, 27263, 14, 17, 551, 4114, 14, 3321, 27, 428, 2385, 3498, 428, 17184, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 67, 27263, 14, 18, 551, 4114, 14, 3321, 27, 428, 1540, 3498, 428, 17184, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 67, 27263, 14, 19, 551, 4114, 14, 3321, 27, 428, 1438, 3498, 428, 17184, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 67, 27263, 14, 20, 551, 4114, 14, 3321, 27, 428, 4196, 3498, 428, 17184, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 23118, 14, 11095, 551, 4114, 14, 3321, 27, 470, 428, 14403, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 23118, 14, 10420, 551, 4114, 14, 3321, 27, 428, 1036, 3498, 428, 14403, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 23118, 14, 10483, 551, 4114, 14, 3321, 27, 428, 1237, 3498, 428, 14403, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 23118, 14, 24269, 14, 70, 551, 4114, 14, 3321, 27, 428, 2385, 3498, 428, 14403, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 23118, 14, 24269, 14, 84, 551, 4114, 14, 3321, 27, 428, 1540, 3498, 428, 14403, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 23118, 14, 24269, 14, 88, 551, 4114, 14, 3321, 27, 428, 1438, 3498, 428, 14403, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 23118, 14, 24269, 14, 79, 551, 4114, 14, 3321, 27, 428, 4196, 3498, 428, 14403, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 23118, 14, 2501, 14, 70, 551, 4114, 14, 3321, 27, 428, 11124, 3498, 428, 14403, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 23118, 14, 2501, 14, 84, 551, 4114, 14, 3321, 27, 428, 8196, 3498, 428, 14403, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 23118, 14, 2501, 14, 88, 551, 4114, 14, 3321, 27, 428, 14231, 3498, 428, 14403, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 23118, 14, 2501, 14, 79, 551, 4114, 14, 3321, 27, 428, 9913, 3498, 428, 14403, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 23118, 14, 8636, 5240, 551, 4114, 14, 3321, 27, 428, 17184, 3498, 428, 14403, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 23118, 14, 44164, 483, 551, 4114, 14, 3321, 27, 428, 14403, 3498, 428, 14403, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 23118, 14, 5903, 551, 4114, 14, 3321, 27, 428, 17391, 3498, 428, 14403, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 27148, 5005, 78, 455, 14, 11095, 551, 4114, 14, 3321, 27, 470, 428, 17391, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 27148, 5005, 78, 455, 14, 10420, 551, 4114, 14, 3321, 27, 428, 1036, 3498, 428, 17391, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 27148, 5005, 78, 455, 14, 10483, 551, 4114, 14, 3321, 27, 428, 1237, 3498, 428, 17391, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 23600, 4420, 78, 455, 14, 11095, 551, 4114, 14, 3321, 27, 428, 2385, 3498, 428, 17391, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 23600, 4420, 78, 455, 14, 10420, 551, 4114, 14, 3321, 27, 428, 1540, 3498, 428, 17391, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 23600, 4420, 78, 455, 14, 10483, 551, 4114, 14, 3321, 27, 428, 1438, 3498, 428, 17391, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 72, 7417, 14, 46774, 14, 26806, 551, 4114, 14, 3321, 27, 470, 428, 17537, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 72, 7417, 14, 46774, 14, 33464, 551, 4114, 14, 3321, 27, 428, 1036, 3498, 428, 17537, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 72, 7417, 14, 23706, 14, 26806, 551, 4114, 14, 3321, 27, 428, 1237, 3498, 428, 17537, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 72, 7417, 14, 23706, 14, 33464, 551, 4114, 14, 3321, 27, 428, 2385, 3498, 428, 17537, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 72, 363, 793, 78, 455, 14, 41758, 14, 339, 551, 4114, 14, 3321, 27, 428, 1540, 3498, 428, 17537, 3498, 28, 748, 187, 15, 4113, 14, 3557, 14, 72, 7417, 14, 41758, 14, 339, 551, 4114, 14, 3321, 27, 428, 1438, 3498, 428, 17537, 3498, 28, 748, 535, 187, 3122, 353, 2865, 5304, 84, 187, 33250, 8480, 187, 187, 3122, 44393, 9941, 1738, 187, 15, 4113, 14, 41303, 14, 455, 13, 187, 15, 4113, 14, 41303, 14, 3956, 13, 187, 15, 4113, 14, 41303, 14, 1274, 13, 187, 15, 4113, 14, 41303, 14, 17945, 551, 187, 186, 14224, 14, 3956, 14, 1274, 14, 19731, 27, 577, 3498, 28, 187, 94, 187, 15, 4113, 14, 41303, 14, 455, 13, 187, 15, 4113, 14, 41303, 14, 3956, 13, 187, 15, 4113, 14, 41303, 14, 918, 13, 187, 15, 4113, 14, 41303, 14, 1206, 551, 187, 186, 14224, 14, 3956, 14, 918, 14, 19731, 27, 577, 3498, 28, 187, 94, 187, 15, 4113, 14, 41303, 14, 455, 13, 187, 15, 4113, 14, 41303, 14, 10492, 13, 187, 15, 4113, 14, 41303, 14, 1274, 13, 187, 15, 4113, 14, 41303, 14, 1559, 551, 187, 186, 14224, 14, 10492, 14, 1274, 14, 19731, 27, 577, 3498, 28, 187, 94, 187, 15, 4113, 14, 41303, 14, 455, 13, 187, 15, 4113, 14, 41303, 14, 10492, 13, 187, 15, 4113, 14, 41303, 14, 918, 13, 187, 15, 4113, 14, 41303, 14, 1288, 551, 187, 186, 14224, 14, 10492, 14, 918, 14, 19731, 27, 577, 3498, 28, 187, 94, 187, 187, 3122, 6061, 77, 698, 1738, 187, 15, 4113, 14, 14778, 14, 46732, 551, 187, 186, 11814, 27, 1852, 23342, 5781, 9688, 1587, 13485, 16, 4113, 14, 17424, 64, 30703, 14, 10984, 64, 1449, 64, 23342, 5781, 64, 18, 89, 2313, 15, 8567, 2807, 2456, 6, 1755, 10280, 14, 89, 28, 187, 186, 44459, 27, 964, 20, 28, 187, 186, 10978, 27, 26615, 9, 12535, 10757, 30, 1229, 558, 3476, 1329, 27, 19900, 25, 1738, 187, 94, 187, 15, 4113, 14, 14778, 14, 20644, 551, 187, 186, 15456, 27, 428, 25, 3498, 470, 470, 428, 25, 3498, 28, 187, 186, 17333, 27, 854, 3498, 28, 187, 186, 11814, 27, 1852, 23342, 5781, 9688, 1587, 13485, 16, 4113, 14, 17424, 64, 30703, 14, 5530, 64, 1235, 64, 23342, 5781, 64, 18, 89, 2313, 15, 8567, 2807, 2456, 6, 1755, 10280, 14, 89, 28, 187, 186, 44459, 27, 964, 19, 28, 187, 186, 10978, 27, 26615, 9, 12535, 10757, 30, 938, 558, 3476, 1329, 27, 19900, 25, 1738, 187, 186, 14224, 14, 19731, 27, 854, 3498, 28, 187, 94, 187 ]
/*! jQuery UI - v1.11.4 - 2015-03-11 * http://jqueryui.com * Includes: core.css, accordion.css, autocomplete.css, button.css, datepicker.css, dialog.css, draggable.css, menu.css, progressbar.css, resizable.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Verdana%2CArial%2Csans-serif&fwDefault=normal&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=333333&bgTextureHeader=diagonals_thick&bgImgOpacityHeader=8&borderColorHeader=a3a3a3&fcHeader=eeeeee&iconColorHeader=bbbbbb&bgColorContent=f9f9f9&bgTextureContent=highlight_hard&bgImgOpacityContent=100&borderColorContent=cccccc&fcContent=222222&iconColorContent=222222&bgColorDefault=111111&bgTextureDefault=glass&bgImgOpacityDefault=40&borderColorDefault=777777&fcDefault=e3e3e3&iconColorDefault=ededed&bgColorHover=1c1c1c&bgTextureHover=glass&bgImgOpacityHover=55&borderColorHover=000000&fcHover=ffffff&iconColorHover=ffffff&bgColorActive=ffffff&bgTextureActive=flat&bgImgOpacityActive=65&borderColorActive=cccccc&fcActive=222222&iconColorActive=222222&bgColorHighlight=ffeb80&bgTextureHighlight=inset_hard&bgImgOpacityHighlight=55&borderColorHighlight=ffde2e&fcHighlight=363636&iconColorHighlight=4ca300&bgColorError=cd0a0a&bgTextureError=inset_hard&bgImgOpacityError=45&borderColorError=9e0505&fcError=ffffff&iconColorError=ffcf29&bgColorOverlay=aaaaaa&bgTextureOverlay=highlight_hard&bgImgOpacityOverlay=40&opacityOverlay=30&bgColorShadow=aaaaaa&bgTextureShadow=highlight_soft&bgImgOpacityShadow=50&opacityShadow=20&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px * Copyright 2015 jQuery Foundation and other contributors; Licensed MIT */ /* Layout helpers ----------------------------------*/ .ui-helper-hidden { display: none; } .ui-helper-hidden-accessible { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; } .ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; } .ui-helper-clearfix:before, .ui-helper-clearfix:after { content: ""; display: table; border-collapse: collapse; } .ui-helper-clearfix:after { clear: both; } .ui-helper-clearfix { min-height: 0; /* support: IE7 */ } .ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); /* support: IE8 */ } .ui-front { z-index: 100; } /* Interaction Cues ----------------------------------*/ .ui-state-disabled { cursor: default !important; } /* Icons ----------------------------------*/ /* states and images */ .ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; } /* Misc visuals ----------------------------------*/ /* Overlays */ .ui-widget-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; } .ui-accordion .ui-accordion-header { display: block; cursor: pointer; position: relative; margin: 2px 0 0 0; padding: .5em .5em .5em .7em; min-height: 0; /* support: IE7 */ font-size: 100%; } .ui-accordion .ui-accordion-icons { padding-left: 2.2em; } .ui-accordion .ui-accordion-icons .ui-accordion-icons { padding-left: 2.2em; } .ui-accordion .ui-accordion-header .ui-accordion-header-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; } .ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; overflow: auto; } .ui-autocomplete { position: absolute; top: 0; left: 0; cursor: default; } .ui-button { display: inline-block; position: relative; padding: 0; line-height: normal; margin-right: .1em; cursor: pointer; vertical-align: middle; text-align: center; overflow: visible; /* removes extra width in IE */ } .ui-button, .ui-button:link, .ui-button:visited, .ui-button:hover, .ui-button:active { text-decoration: none; } /* to make room for the icon, a width needs to be set here */ .ui-button-icon-only { width: 2.2em; } /* button elements seem to need a little more width */ button.ui-button-icon-only { width: 2.4em; } .ui-button-icons-only { width: 3.4em; } button.ui-button-icons-only { width: 3.7em; } /* button text element */ .ui-button .ui-button-text { display: block; line-height: normal; } .ui-button-text-only .ui-button-text { padding: .4em 1em; } .ui-button-icon-only .ui-button-text, .ui-button-icons-only .ui-button-text { padding: .4em; text-indent: -9999999px; } .ui-button-text-icon-primary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 1em .4em 2.1em; } .ui-button-text-icon-secondary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 2.1em .4em 1em; } .ui-button-text-icons .ui-button-text { padding-left: 2.1em; padding-right: 2.1em; } /* no icon support for input elements, provide padding by default */ input.ui-button { padding: .4em 1em; } /* button icon element(s) */ .ui-button-icon-only .ui-icon, .ui-button-text-icon-primary .ui-icon, .ui-button-text-icon-secondary .ui-icon, .ui-button-text-icons .ui-icon, .ui-button-icons-only .ui-icon { position: absolute; top: 50%; margin-top: -8px; } .ui-button-icon-only .ui-icon { left: 50%; margin-left: -8px; } .ui-button-text-icon-primary .ui-button-icon-primary, .ui-button-text-icons .ui-button-icon-primary, .ui-button-icons-only .ui-button-icon-primary { left: .5em; } .ui-button-text-icon-secondary .ui-button-icon-secondary, .ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary { right: .5em; } /* button sets */ .ui-buttonset { margin-right: 7px; } .ui-buttonset .ui-button { margin-left: 0; margin-right: -.3em; } /* workarounds */ /* reset extra padding in Firefox, see h5bp.com/l */ input.ui-button::-moz-focus-inner, button.ui-button::-moz-focus-inner { border: 0; padding: 0; } .ui-datepicker { width: 17em; padding: .2em .2em 0; display: none; } .ui-datepicker .ui-datepicker-header { position: relative; padding: .2em 0; } .ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next { position: absolute; top: 2px; width: 1.8em; height: 1.8em; } .ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover { top: 1px; } .ui-datepicker .ui-datepicker-prev { left: 2px; } .ui-datepicker .ui-datepicker-next { right: 2px; } .ui-datepicker .ui-datepicker-prev-hover { left: 1px; } .ui-datepicker .ui-datepicker-next-hover { right: 1px; } .ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span { display: block; position: absolute; left: 50%; margin-left: -8px; top: 50%; margin-top: -8px; } .ui-datepicker .ui-datepicker-title { margin: 0 2.3em; line-height: 1.8em; text-align: center; } .ui-datepicker .ui-datepicker-title select { font-size: 1em; margin: 1px 0; } .ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year { width: 45%; } .ui-datepicker table { width: 100%; font-size: .9em; border-collapse: collapse; margin: 0 0 .4em; } .ui-datepicker th { padding: .7em .3em; text-align: center; font-weight: bold; border: 0; } .ui-datepicker td { border: 0; padding: 1px; } .ui-datepicker td span, .ui-datepicker td a { display: block; padding: .2em; text-align: right; text-decoration: none; } .ui-datepicker .ui-datepicker-buttonpane { background-image: none; margin: .7em 0 0 0; padding: 0 .2em; border-left: 0; border-right: 0; border-bottom: 0; } .ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: .5em .2em .4em; cursor: pointer; padding: .2em .6em .3em .6em; width: auto; overflow: visible; } .ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { float: left; } /* with multiple calendars */ .ui-datepicker.ui-datepicker-multi { width: auto; } .ui-datepicker-multi .ui-datepicker-group { float: left; } .ui-datepicker-multi .ui-datepicker-group table { width: 95%; margin: 0 auto .4em; } .ui-datepicker-multi-2 .ui-datepicker-group { width: 50%; } .ui-datepicker-multi-3 .ui-datepicker-group { width: 33.3%; } .ui-datepicker-multi-4 .ui-datepicker-group { width: 25%; } .ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header, .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width: 0; } .ui-datepicker-multi .ui-datepicker-buttonpane { clear: left; } .ui-datepicker-row-break { clear: both; width: 100%; font-size: 0; } /* RTL support */ .ui-datepicker-rtl { direction: rtl; } .ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; } .ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; } .ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; } .ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; } .ui-datepicker-rtl .ui-datepicker-buttonpane { clear: right; } .ui-datepicker-rtl .ui-datepicker-buttonpane button { float: left; } .ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current, .ui-datepicker-rtl .ui-datepicker-group { float: right; } .ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header, .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width: 0; border-left-width: 1px; } .ui-dialog { overflow: hidden; position: absolute; top: 0; left: 0; padding: .2em; outline: 0; } .ui-dialog .ui-dialog-titlebar { padding: .4em 1em; position: relative; } .ui-dialog .ui-dialog-title { float: left; margin: .1em 0; white-space: nowrap; width: 90%; overflow: hidden; text-overflow: ellipsis; } .ui-dialog .ui-dialog-titlebar-close { position: absolute; right: .3em; top: 50%; width: 20px; margin: -10px 0 0 0; padding: 1px; height: 20px; } .ui-dialog .ui-dialog-content { position: relative; border: 0; padding: .5em 1em; background: none; overflow: auto; } .ui-dialog .ui-dialog-buttonpane { text-align: left; border-width: 1px 0 0 0; background-image: none; margin-top: .5em; padding: .3em 1em .5em .4em; } .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { float: right; } .ui-dialog .ui-dialog-buttonpane button { margin: .5em .4em .5em 0; cursor: pointer; } .ui-dialog .ui-resizable-se { width: 12px; height: 12px; right: -5px; bottom: -5px; background-position: 16px 16px; } .ui-draggable .ui-dialog-titlebar { cursor: move; } .ui-draggable-handle { -ms-touch-action: none; touch-action: none; } .ui-menu { list-style: none; padding: 0; margin: 0; display: block; outline: none; } .ui-menu .ui-menu { position: absolute; } .ui-menu .ui-menu-item { position: relative; margin: 0; padding: 3px 1em 3px .4em; cursor: pointer; min-height: 0; /* support: IE7 */ /* support: IE10, see #8844 */ list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"); } .ui-menu .ui-menu-divider { margin: 5px 0; height: 0; font-size: 0; line-height: 0; border-width: 1px 0 0 0; } .ui-menu .ui-state-focus, .ui-menu .ui-state-active { margin: -1px; } /* icon support */ .ui-menu-icons { position: relative; } .ui-menu-icons .ui-menu-item { padding-left: 2em; } /* left-aligned */ .ui-menu .ui-icon { position: absolute; top: 0; bottom: 0; left: .2em; margin: auto 0; } /* right-aligned */ .ui-menu .ui-menu-icon { left: auto; right: 0; } .ui-progressbar { height: 2em; text-align: left; overflow: hidden; } .ui-progressbar .ui-progressbar-value { margin: -1px; height: 100%; } .ui-progressbar .ui-progressbar-overlay { background: url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw=="); height: 100%; filter: alpha(opacity=25); /* support: IE8 */ opacity: 0.25; } .ui-progressbar-indeterminate .ui-progressbar-value { background-image: none; } .ui-resizable { position: relative; } .ui-resizable-handle { position: absolute; font-size: 0.1px; display: block; -ms-touch-action: none; touch-action: none; } .ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; } .ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0; } .ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0; } .ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0; height: 100%; } .ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0; height: 100%; } .ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; } .ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; } .ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; } .ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px; } .ui-selectable { -ms-touch-action: none; touch-action: none; } .ui-selectable-helper { position: absolute; z-index: 100; border: 1px dotted black; } .ui-selectmenu-menu { padding: 0; margin: 0; position: absolute; top: 0; left: 0; display: none; } .ui-selectmenu-menu .ui-menu { overflow: auto; /* Support: IE7 */ overflow-x: hidden; padding-bottom: 1px; } .ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup { font-size: 1em; font-weight: bold; line-height: 1.5; padding: 2px 0.4em; margin: 0.5em 0 0 0; height: auto; border: 0; } .ui-selectmenu-open { display: block; } .ui-selectmenu-button { display: inline-block; overflow: hidden; position: relative; text-decoration: none; cursor: pointer; } .ui-selectmenu-button span.ui-icon { right: 0.5em; left: auto; margin-top: -8px; position: absolute; top: 50%; } .ui-selectmenu-button span.ui-selectmenu-text { text-align: left; padding: 0.4em 2.1em 0.4em 1em; display: block; line-height: 1.4; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .ui-slider { position: relative; text-align: left; } .ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; -ms-touch-action: none; touch-action: none; } .ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; background-position: 0 0; } /* support: IE8 - See #6727 */ .ui-slider.ui-state-disabled .ui-slider-handle, .ui-slider.ui-state-disabled .ui-slider-range { filter: inherit; } .ui-slider-horizontal { height: .8em; } .ui-slider-horizontal .ui-slider-handle { top: -.3em; margin-left: -.6em; } .ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; } .ui-slider-horizontal .ui-slider-range-min { left: 0; } .ui-slider-horizontal .ui-slider-range-max { right: 0; } .ui-slider-vertical { width: .8em; height: 100px; } .ui-slider-vertical .ui-slider-handle { left: -.3em; margin-left: 0; margin-bottom: -.6em; } .ui-slider-vertical .ui-slider-range { left: 0; width: 100%; } .ui-slider-vertical .ui-slider-range-min { bottom: 0; } .ui-slider-vertical .ui-slider-range-max { top: 0; } .ui-sortable-handle { -ms-touch-action: none; touch-action: none; } .ui-spinner { position: relative; display: inline-block; overflow: hidden; padding: 0; vertical-align: middle; } .ui-spinner-input { border: none; background: none; color: inherit; padding: 0; margin: .2em 0; vertical-align: middle; margin-left: .4em; margin-right: 22px; } .ui-spinner-button { width: 16px; height: 50%; font-size: .5em; padding: 0; margin: 0; text-align: center; position: absolute; cursor: default; display: block; overflow: hidden; right: 0; } /* more specificity required here to override default borders */ .ui-spinner a.ui-spinner-button { border-top: none; border-bottom: none; border-right: none; } /* vertically center icon */ .ui-spinner .ui-icon { position: absolute; margin-top: -8px; top: 50%; left: 0; } .ui-spinner-up { top: 0; } .ui-spinner-down { bottom: 0; } /* TR overrides */ .ui-spinner .ui-icon-triangle-1-s { /* need to fix icons sprite */ background-position: -65px -16px; } .ui-tabs { position: relative;/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */ padding: .2em; } .ui-tabs .ui-tabs-nav { margin: 0; padding: .2em .2em 0; } .ui-tabs .ui-tabs-nav li { list-style: none; float: left; position: relative; top: 0; margin: 1px .2em 0 0; border-bottom-width: 0; padding: 0; white-space: nowrap; } .ui-tabs .ui-tabs-nav .ui-tabs-anchor { float: left; padding: .5em 1em; text-decoration: none; } .ui-tabs .ui-tabs-nav li.ui-tabs-active { margin-bottom: -1px; padding-bottom: 1px; } .ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor, .ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor, .ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor { cursor: text; } .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor { cursor: pointer; } .ui-tabs .ui-tabs-panel { display: block; border-width: 0; padding: 1em 1.4em; background: none; } .ui-tooltip { padding: 8px; position: absolute; z-index: 9999; max-width: 300px; -webkit-box-shadow: 0 0 5px #aaa; box-shadow: 0 0 5px #aaa; } body .ui-tooltip { border-width: 2px; } /* Component containers ----------------------------------*/ .ui-widget { font-family: Verdana,Arial,sans-serif; font-size: 1.1em; } .ui-widget .ui-widget { font-size: 1em; } .ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Verdana,Arial,sans-serif; font-size: 1em; } .ui-widget-content { border: 1px solid #cccccc; background: #f9f9f9 url("images/ui-bg_highlight-hard_100_f9f9f9_1x100.png") 50% top repeat-x; color: #222222; } .ui-widget-content a { color: #222222; } .ui-widget-header { border: 1px solid #a3a3a3; background: #333333 url("images/ui-bg_diagonals-thick_8_333333_40x40.png") 50% 50% repeat; color: #eeeeee; font-weight: bold; } .ui-widget-header a { color: #eeeeee; } /* Interaction states ----------------------------------*/ .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { border: 1px solid #777777; background: #111111 url("images/ui-bg_glass_40_111111_1x400.png") 50% 50% repeat-x; font-weight: normal; color: #e3e3e3; } .ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #e3e3e3; text-decoration: none; } .ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus { border: 1px solid #000000; background: #1c1c1c url("images/ui-bg_glass_55_1c1c1c_1x400.png") 50% 50% repeat-x; font-weight: normal; color: #ffffff; } .ui-state-hover a, .ui-state-hover a:hover, .ui-state-hover a:link, .ui-state-hover a:visited, .ui-state-focus a, .ui-state-focus a:hover, .ui-state-focus a:link, .ui-state-focus a:visited { color: #ffffff; text-decoration: none; } .ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active { border: 1px solid #cccccc; background: #ffffff url("images/ui-bg_flat_65_ffffff_40x100.png") 50% 50% repeat-x; font-weight: normal; color: #222222; } .ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #222222; text-decoration: none; } /* Interaction Cues ----------------------------------*/ .ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight { border: 1px solid #ffde2e; background: #ffeb80 url("images/ui-bg_inset-hard_55_ffeb80_1x100.png") 50% bottom repeat-x; color: #363636; } .ui-state-highlight a, .ui-widget-content .ui-state-highlight a, .ui-widget-header .ui-state-highlight a { color: #363636; } .ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error { border: 1px solid #9e0505; background: #cd0a0a url("images/ui-bg_inset-hard_45_cd0a0a_1x100.png") 50% bottom repeat-x; color: #ffffff; } .ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a { color: #ffffff; } .ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text { color: #ffffff; } .ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary { font-weight: bold; } .ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); /* support: IE8 */ font-weight: normal; } .ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); /* support: IE8 */ background-image: none; } .ui-state-disabled .ui-icon { filter:Alpha(Opacity=35); /* support: IE8 - See #6059 */ } /* Icons ----------------------------------*/ /* states and images */ .ui-icon { width: 16px; height: 16px; } .ui-icon, .ui-widget-content .ui-icon { background-image: url("images/ui-icons_222222_256x240.png"); } .ui-widget-header .ui-icon { background-image: url("images/ui-icons_bbbbbb_256x240.png"); } .ui-state-default .ui-icon { background-image: url("images/ui-icons_ededed_256x240.png"); } .ui-state-hover .ui-icon, .ui-state-focus .ui-icon { background-image: url("images/ui-icons_ffffff_256x240.png"); } .ui-state-active .ui-icon { background-image: url("images/ui-icons_222222_256x240.png"); } .ui-state-highlight .ui-icon { background-image: url("images/ui-icons_4ca300_256x240.png"); } .ui-state-error .ui-icon, .ui-state-error-text .ui-icon { background-image: url("images/ui-icons_ffcf29_256x240.png"); } /* positioning */ .ui-icon-blank { background-position: 16px 16px; } .ui-icon-carat-1-n { background-position: 0 0; } .ui-icon-carat-1-ne { background-position: -16px 0; } .ui-icon-carat-1-e { background-position: -32px 0; } .ui-icon-carat-1-se { background-position: -48px 0; } .ui-icon-carat-1-s { background-position: -64px 0; } .ui-icon-carat-1-sw { background-position: -80px 0; } .ui-icon-carat-1-w { background-position: -96px 0; } .ui-icon-carat-1-nw { background-position: -112px 0; } .ui-icon-carat-2-n-s { background-position: -128px 0; } .ui-icon-carat-2-e-w { background-position: -144px 0; } .ui-icon-triangle-1-n { background-position: 0 -16px; } .ui-icon-triangle-1-ne { background-position: -16px -16px; } .ui-icon-triangle-1-e { background-position: -32px -16px; } .ui-icon-triangle-1-se { background-position: -48px -16px; } .ui-icon-triangle-1-s { background-position: -64px -16px; } .ui-icon-triangle-1-sw { background-position: -80px -16px; } .ui-icon-triangle-1-w { background-position: -96px -16px; } .ui-icon-triangle-1-nw { background-position: -112px -16px; } .ui-icon-triangle-2-n-s { background-position: -128px -16px; } .ui-icon-triangle-2-e-w { background-position: -144px -16px; } .ui-icon-arrow-1-n { background-position: 0 -32px; } .ui-icon-arrow-1-ne { background-position: -16px -32px; } .ui-icon-arrow-1-e { background-position: -32px -32px; } .ui-icon-arrow-1-se { background-position: -48px -32px; } .ui-icon-arrow-1-s { background-position: -64px -32px; } .ui-icon-arrow-1-sw { background-position: -80px -32px; } .ui-icon-arrow-1-w { background-position: -96px -32px; } .ui-icon-arrow-1-nw { background-position: -112px -32px; } .ui-icon-arrow-2-n-s { background-position: -128px -32px; } .ui-icon-arrow-2-ne-sw { background-position: -144px -32px; } .ui-icon-arrow-2-e-w { background-position: -160px -32px; } .ui-icon-arrow-2-se-nw { background-position: -176px -32px; } .ui-icon-arrowstop-1-n { background-position: -192px -32px; } .ui-icon-arrowstop-1-e { background-position: -208px -32px; } .ui-icon-arrowstop-1-s { background-position: -224px -32px; } .ui-icon-arrowstop-1-w { background-position: -240px -32px; } .ui-icon-arrowthick-1-n { background-position: 0 -48px; } .ui-icon-arrowthick-1-ne { background-position: -16px -48px; } .ui-icon-arrowthick-1-e { background-position: -32px -48px; } .ui-icon-arrowthick-1-se { background-position: -48px -48px; } .ui-icon-arrowthick-1-s { background-position: -64px -48px; } .ui-icon-arrowthick-1-sw { background-position: -80px -48px; } .ui-icon-arrowthick-1-w { background-position: -96px -48px; } .ui-icon-arrowthick-1-nw { background-position: -112px -48px; } .ui-icon-arrowthick-2-n-s { background-position: -128px -48px; } .ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; } .ui-icon-arrowthick-2-e-w { background-position: -160px -48px; } .ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; } .ui-icon-arrowthickstop-1-n { background-position: -192px -48px; } .ui-icon-arrowthickstop-1-e { background-position: -208px -48px; } .ui-icon-arrowthickstop-1-s { background-position: -224px -48px; } .ui-icon-arrowthickstop-1-w { background-position: -240px -48px; } .ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; } .ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; } .ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; } .ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; } .ui-icon-arrowreturn-1-w { background-position: -64px -64px; } .ui-icon-arrowreturn-1-n { background-position: -80px -64px; } .ui-icon-arrowreturn-1-e { background-position: -96px -64px; } .ui-icon-arrowreturn-1-s { background-position: -112px -64px; } .ui-icon-arrowrefresh-1-w { background-position: -128px -64px; } .ui-icon-arrowrefresh-1-n { background-position: -144px -64px; } .ui-icon-arrowrefresh-1-e { background-position: -160px -64px; } .ui-icon-arrowrefresh-1-s { background-position: -176px -64px; } .ui-icon-arrow-4 { background-position: 0 -80px; } .ui-icon-arrow-4-diag { background-position: -16px -80px; } .ui-icon-extlink { background-position: -32px -80px; } .ui-icon-newwin { background-position: -48px -80px; } .ui-icon-refresh { background-position: -64px -80px; } .ui-icon-shuffle { background-position: -80px -80px; } .ui-icon-transfer-e-w { background-position: -96px -80px; } .ui-icon-transferthick-e-w { background-position: -112px -80px; } .ui-icon-folder-collapsed { background-position: 0 -96px; } .ui-icon-folder-open { background-position: -16px -96px; } .ui-icon-document { background-position: -32px -96px; } .ui-icon-document-b { background-position: -48px -96px; } .ui-icon-note { background-position: -64px -96px; } .ui-icon-mail-closed { background-position: -80px -96px; } .ui-icon-mail-open { background-position: -96px -96px; } .ui-icon-suitcase { background-position: -112px -96px; } .ui-icon-comment { background-position: -128px -96px; } .ui-icon-person { background-position: -144px -96px; } .ui-icon-print { background-position: -160px -96px; } .ui-icon-trash { background-position: -176px -96px; } .ui-icon-locked { background-position: -192px -96px; } .ui-icon-unlocked { background-position: -208px -96px; } .ui-icon-bookmark { background-position: -224px -96px; } .ui-icon-tag { background-position: -240px -96px; } .ui-icon-home { background-position: 0 -112px; } .ui-icon-flag { background-position: -16px -112px; } .ui-icon-calendar { background-position: -32px -112px; } .ui-icon-cart { background-position: -48px -112px; } .ui-icon-pencil { background-position: -64px -112px; } .ui-icon-clock { background-position: -80px -112px; } .ui-icon-disk { background-position: -96px -112px; } .ui-icon-calculator { background-position: -112px -112px; } .ui-icon-zoomin { background-position: -128px -112px; } .ui-icon-zoomout { background-position: -144px -112px; } .ui-icon-search { background-position: -160px -112px; } .ui-icon-wrench { background-position: -176px -112px; } .ui-icon-gear { background-position: -192px -112px; } .ui-icon-heart { background-position: -208px -112px; } .ui-icon-star { background-position: -224px -112px; } .ui-icon-link { background-position: -240px -112px; } .ui-icon-cancel { background-position: 0 -128px; } .ui-icon-plus { background-position: -16px -128px; } .ui-icon-plusthick { background-position: -32px -128px; } .ui-icon-minus { background-position: -48px -128px; } .ui-icon-minusthick { background-position: -64px -128px; } .ui-icon-close { background-position: -80px -128px; } .ui-icon-closethick { background-position: -96px -128px; } .ui-icon-key { background-position: -112px -128px; } .ui-icon-lightbulb { background-position: -128px -128px; } .ui-icon-scissors { background-position: -144px -128px; } .ui-icon-clipboard { background-position: -160px -128px; } .ui-icon-copy { background-position: -176px -128px; } .ui-icon-contact { background-position: -192px -128px; } .ui-icon-image { background-position: -208px -128px; } .ui-icon-video { background-position: -224px -128px; } .ui-icon-script { background-position: -240px -128px; } .ui-icon-alert { background-position: 0 -144px; } .ui-icon-info { background-position: -16px -144px; } .ui-icon-notice { background-position: -32px -144px; } .ui-icon-help { background-position: -48px -144px; } .ui-icon-check { background-position: -64px -144px; } .ui-icon-bullet { background-position: -80px -144px; } .ui-icon-radio-on { background-position: -96px -144px; } .ui-icon-radio-off { background-position: -112px -144px; } .ui-icon-pin-w { background-position: -128px -144px; } .ui-icon-pin-s { background-position: -144px -144px; } .ui-icon-play { background-position: 0 -160px; } .ui-icon-pause { background-position: -16px -160px; } .ui-icon-seek-next { background-position: -32px -160px; } .ui-icon-seek-prev { background-position: -48px -160px; } .ui-icon-seek-end { background-position: -64px -160px; } .ui-icon-seek-start { background-position: -80px -160px; } /* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */ .ui-icon-seek-first { background-position: -80px -160px; } .ui-icon-stop { background-position: -96px -160px; } .ui-icon-eject { background-position: -112px -160px; } .ui-icon-volume-off { background-position: -128px -160px; } .ui-icon-volume-on { background-position: -144px -160px; } .ui-icon-power { background-position: 0 -176px; } .ui-icon-signal-diag { background-position: -16px -176px; } .ui-icon-signal { background-position: -32px -176px; } .ui-icon-battery-0 { background-position: -48px -176px; } .ui-icon-battery-1 { background-position: -64px -176px; } .ui-icon-battery-2 { background-position: -80px -176px; } .ui-icon-battery-3 { background-position: -96px -176px; } .ui-icon-circle-plus { background-position: 0 -192px; } .ui-icon-circle-minus { background-position: -16px -192px; } .ui-icon-circle-close { background-position: -32px -192px; } .ui-icon-circle-triangle-e { background-position: -48px -192px; } .ui-icon-circle-triangle-s { background-position: -64px -192px; } .ui-icon-circle-triangle-w { background-position: -80px -192px; } .ui-icon-circle-triangle-n { background-position: -96px -192px; } .ui-icon-circle-arrow-e { background-position: -112px -192px; } .ui-icon-circle-arrow-s { background-position: -128px -192px; } .ui-icon-circle-arrow-w { background-position: -144px -192px; } .ui-icon-circle-arrow-n { background-position: -160px -192px; } .ui-icon-circle-zoomin { background-position: -176px -192px; } .ui-icon-circle-zoomout { background-position: -192px -192px; } .ui-icon-circle-check { background-position: -208px -192px; } .ui-icon-circlesmall-plus { background-position: 0 -208px; } .ui-icon-circlesmall-minus { background-position: -16px -208px; } .ui-icon-circlesmall-close { background-position: -32px -208px; } .ui-icon-squaresmall-plus { background-position: -48px -208px; } .ui-icon-squaresmall-minus { background-position: -64px -208px; } .ui-icon-squaresmall-close { background-position: -80px -208px; } .ui-icon-grip-dotted-vertical { background-position: 0 -224px; } .ui-icon-grip-dotted-horizontal { background-position: -16px -224px; } .ui-icon-grip-solid-vertical { background-position: -32px -224px; } .ui-icon-grip-solid-horizontal { background-position: -48px -224px; } .ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; } .ui-icon-grip-diagonal-se { background-position: -80px -224px; } /* Misc visuals ----------------------------------*/ /* Corner radius */ .ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl { border-top-left-radius: 4px; } .ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr { border-top-right-radius: 4px; } .ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl { border-bottom-left-radius: 4px; } .ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br { border-bottom-right-radius: 4px; } /* Overlays */ .ui-widget-overlay { background: #aaaaaa url("images/ui-bg_highlight-hard_40_aaaaaa_1x100.png") 50% top repeat-x; opacity: .3; filter: Alpha(Opacity=30); /* support: IE8 */ } .ui-widget-shadow { margin: -8px 0 0 -8px; padding: 8px; background: #aaaaaa url("images/ui-bg_highlight-soft_50_aaaaaa_1x100.png") 50% top repeat-x; opacity: .2; filter: Alpha(Opacity=20); /* support: IE8 */ border-radius: 8px; }
214,376
Github
[ 30952, 32735, 14271, 35283, 19479, 605, 56, 20, 36, 605, 41375, 11685, 577, 15, 520, 605, 1400, 3, 346, 2413, 1358, 2700, 15, 88, 20, 15, 2061, 16, 3125, 16, 2974, 21, 16, 30862, 15, 48328, 1138, 187, 29, 2974, 31, 187, 29, 2522, 31, 187, 186, 29, 13518, 3944, 14, 8275, 568, 8590, 14, 2548, 3, 2600, 568, 1156, 16, 2974, 28, 29308, 30, 17880, 14, 25, 1138, 187, 186, 29, 5564, 31, 6623, 302, 20599, 27, 9773, 5109, 870, 5564, 31, 187, 186, 29, 4492, 3860, 17517, 32045, 15, 9016, 3, 774, 568, 23745, 3, 1511, 568, 1156, 16, 9016, 1138, 187, 186, 14219, 60, 338, 298, 442, 19900, 854, 62, 2730, 3866, 3448, 568, 14606, 3, 1511, 568, 1156, 16, 14606, 3, 6740, 12227, 911, 32688, 15, 1222, 15, 4305, 6750, 3866, 2730, 3138, 7287, 7086, 31, 187, 186, 29, 3866, 3448, 568, 14606, 3, 1511, 568, 1156, 16, 14606, 3, 6740, 12227, 19203, 15, 4305, 6750, 3866, 31, 187, 186, 29, 3866, 3448, 568, 14606, 3, 1511, 568, 1156, 16, 14606, 3, 6740, 12227, 19203, 15, 1258, 302, 15, 4305, 6750, 3866, 31, 187, 186, 29, 3866, 3448, 568, 14606, 3, 1511, 568, 1156, 16, 14606, 3, 6740, 12227, 19203, 15, 1258, 302, 15, 2606, 15, 4305, 6750, 3866, 31, 187, 186, 29, 3866, 3448, 568, 14606, 3, 1511, 568, 1156, 16, 14606, 3, 6740, 12227, 19203, 15, 1258, 302, 15, 27423, 15, 4305, 6750, 3866, 31, 187, 186, 29, 3866, 1511, 568, 1156, 16, 14606, 1138, 535, 186, 6999, 3701, 1082, 551, 6886, 186, 2044, 277, 426, 8605, 12115, 25238, 1812, 9439, 13, 470, 1092, 544, 12115, 25320, 23113, 13, 470, 1092, 544, 12115, 2526, 23100, 9439, 13, 470, 1092, 544, 12115, 2251, 20694, 9439, 13, 10484, 1092, 544, 12115, 23, 27820, 1518, 933, 13, 5540, 1812, 1092, 544, 12115, 2358, 36176, 9439, 13, 4791, 1976, 1092, 544, 12115, 2090, 3507, 8551, 13, 3435, 1812, 1092, 544, 12115, 1967, 2358, 8320, 933, 13, 884, 2691, 1092, 544, 12115, 44941, 2385, 9439, 13, 721, 3121, 1092, 544, 12115, 24, 1348, 805, 9439, 13, 7346, 22, 1092, 544, 12115, 48549, 3121, 9439, 13, 898, 3071, 1092, 544, 12115, 3566, 1047, 8551, 13, 47889, 1092, 544, 12115, 1976, 5525, 9439, 13, 721, 1867, 1092, 544, 12115, 33607, 2358, 9439, 13, 36725, 1092, 544, 12115, 50246, 1237, 9439, 13, 35543, 1092, 544, 12115, 49310, 4196, 9439, 13, 24271, 1092, 544, 12115, 24, 34938, 8551, 13, 45916, 1092, 544, 12115, 2787, 1237, 8320, 933, 13, 41981, 1092, 544, 12115, 38510, 2055, 9439, 13, 608, 4739, 1092, 544, 12115, 25, 10655, 1518, 933, 13, 48874, 1092, 544, 12115, 25, 746, 1036, 9439, 13, 40230, 1092, 544, 12115, 25, 24803, 8551, 13, 27812, 1092, 544, 12115, 3245, 1540, 8320, 933, 13, 13620, 19, 1092, 544, 12115, 2759, 27101, 9439, 13, 721, 2691, 1092, 544, 12115, 2227, 1787, 1518, 933, 13, 29226, 1092, 544, 12115, 2691, 21358, 9439, 13, 40201, 1092, 544, 12115, 40010, 23113, 13, 41029, 1092, 544, 12115, 34384, 1540, 9439, 13, 38939, 1092, 544, 12115, 25452, 1619, 9439, 13, 35145, 1092, 544, 12115, 2511, 2090, 1518, 933, 13, 24519, 1092, 544, 18, 3031, 1762, 3208, 9439, 13, 26780, 1092, 544, 18, 3031, 17364, 8551, 13, 24232, 1092, 544, 18, 3031, 1423, 2759, 9439, 13, 40528, 1092, 544, 18, 13549, 16989, 9439, 13, 37107, 1092, 544, 18, 13034, 520, 1518, 933, 13, 21566, 1092, 544, 18, 3031, 2385, 3121, 9439, 13, 30135, 1092, 544, 12115, 2222, 3566, 8551, 13, 26578, 1092, 544, 18, 12487, 1549, 8320, 933, 13, 42302, 1092, 544, 18, 3031, 3566, 2358, 9439, 13, 41517, 1092, 544, 18, 3031, 3245, 1237, 9439, 13, 39881, 1092, 544, 18, 9595, 19196, 9439, 13, 42222, 1092, 544, 805, 1418, 23, 8551, 13, 29716, 1092, 544, 805, 24133, 1348, 9439, 13, 23133, 1092, 544, 805, 31202, 2055, 9439, 13, 26771, 1092, 544, 32158, 21317, 1518, 933, 13, 31133, 1092, 544, 32158, 1671, 1036, 9439, 13, 40528, 1092, 544, 805, 5525, 1839, 8551, 13, 38991, 1092, 544, 805, 5523, 1348, 8320, 933, 13, 43229, 1092, 544, 805, 7174, 12347, 9439, 13, 43823, 1092, 544, 32158, 29790, 1518, 933, 13, 34360, 1092, 544, 32158, 3141, 1812, 9439, 13, 27587, 1092, 544, 32158, 2597, 23113, 13, 42998, 1092, 544, 32158, 2222, 1540, 9439, 13, 33485, 1092, 544, 805, 520, 2125, 1619, 9439, 13, 41724, 1092, 544, 805, 520, 13482, 1518, 933, 13, 42998, 1092, 544, 805, 12522, 16198, 9439, 13, 43952, 1092, 544, 805, 520, 19044, 8551, 13, 22540, 1092, 544, 805, 520, 1839, 2759, 9439, 13, 25653, 1092, 544, 805, 520, 2504, 2385, 9439, 13, 40359, 1092, 544, 805, 520, 3208, 805, 9439, 13, 47534, 1092, 544, 805, 520, 1540, 3121, 9439, 13, 44817, 1092, 544, 805, 11027, 1706, 8551, 13, 31339, 1092, 544, 805, 12058, 938, 8320, 933, 13, 42222, 1092, 544, 805, 520, 2270, 2358, 9439, 13, 28485, 1092, 544, 805, 520, 1525, 1237, 9439, 13, 28131, 1092, 544, 8193, 938, 35323, 9439, 13, 38888, 1092, 544, 805, 2640, 17962, 8551, 13, 31339, 1092, 544, 805, 2640, 1099, 1348, 9439, 13, 35312, 1092, 544, 8193, 1508, 25085, 9439, 13, 27744, 1092, 544, 8193, 1348, 1099, 1518, 933, 13, 33883, 1092, 544, 8193, 1099, 13210, 9439, 13, 27332, 1092, 544, 8193, 1099, 4185, 8551, 13, 26138, 1092, 544, 8193, 22913, 2031, 9439, 13, 34506, 1092, 544, 8193, 1630, 27158, 9439, 13, 36573, 1092, 544, 8193, 1619, 3011, 1518, 933, 13, 39474, 1092, 544, 8193, 22858, 1812, 9439, 13, 35829, 1092, 544, 8193, 20914, 23113, 13, 35585, 1092, 544, 805, 2941, 883, 1540, 9439, 13, 23917, 1092, 544, 805, 2941, 938, 1619, 9439, 13, 25901, 1092, 544, 8193, 1237, 2511, 1518, 933, 13, 37071, 1092, 544, 8193, 1610, 28703, 9439, 13, 38801, 1092, 544, 8193, 1706, 3763, 8551, 13, 36027, 1092, 544, 8193, 1671, 2385, 8320, 933, 13, 36859, 1092, 544, 8193, 1812, 25289, 9439, 13, 30188, 1092, 544, 8193, 1787, 17223, 9439, 13, 17574, 1092, 544, 805, 2941, 1438, 3121, 9439, 13, 21043, 1092, 544, 8193, 1839, 3953, 8551, 13, 25911, 44270, 6886, 186, 605, 806, 3451, 253, 4522, 383, 11441, 428, 597, 403, 5950, 347, 253, 5312, 996, 186, 605, 4260, 79, 4380, 275, 38040, 12, 28949, 13, 533, 2884, 302, 1900, 12646, 12282, 275, 38040, 996, 186, 605, 594, 359, 452, 281, 823, 581, 4964, 281, 4352, 253, 4260, 79, 4380, 275, 253, 7484, 6886, 186, 1542, 313, 2044, 891, 426, 470, 28, 891, 654, 277, 15, 3985, 28, 12996, 74, 10, 551, 988, 186, 69, 60, 74, 7082, 17, 62, 7079, 3925, 475, 3925, 475, 9098, 28, 996, 186, 94, 6886, 186, 605, 25557, 323, 10884, 253, 29665, 275, 247, 2180, 6886, 186, 3701, 8849, 6723, 284, 9, 44832, 10, 551, 11866, 186, 2044, 46547, 426, 24345, 2657, 186, 69, 426, 747, 10421, 9, 44832, 15, 89, 10565, 15, 1222, 558, 11866, 186, 605, 564, 281, 253, 806, 7814, 11866, 186, 69, 15, 1178, 3329, 3717, 366, 9, 69, 15, 788, 3329, 3717, 366, 1082, 428, 6048, 69, 15, 788, 3329, 3717, 333, 1082, 559, 337, 10, 2462, 818, 1228, 988, 186, 69, 15, 1178, 42773, 41989, 9, 17, 558, 988, 186, 69, 15, 1178, 3329, 5883, 249, 2279, 9, 17, 558, 988, 186, 69, 15, 1178, 3329, 2775, 2108, 9, 17, 558, 11866, 186, 2044, 891, 426, 277, 15, 788, 4769, 1874, 11866, 186, 605, 672, 359, 1053, 626, 873, 340, 10565, 13, 253, 25334, 8356, 988, 186, 605, 8725, 281, 23579, 32372, 285, 1066, 4515, 11866, 186, 3088, 551, 2657, 186, 4698, 723, 15, 11340, 7506, 1269, 10565, 27, 551, 432, 27, 891, 13, 281, 27, 891, 559, 374, 475, 2164, 475, 3925, 475, 3925, 475, 9098, 748, 6824, 2657, 186, 74, 7079, 818, 475, 2164, 475, 3925, 475, 3925, 475, 9098, 28, 988, 186, 94, 1223, 313, 74, 654, 24039, 15, 89, 10565, 15, 4090, 558, 11866, 186, 2309, 46547, 28, 996, 186, 94, 6886, 186, 2044, 4610, 426, 551, 988, 186, 89, 10565, 27, 551, 2657, 186, 9561, 27, 346, 2606, 995, 2657, 186, 47487, 10830, 27, 608, 988, 186, 2023, 988, 186, 27423, 27, 551, 2657, 186, 9561, 27, 346, 89, 3, 988, 186, 2023, 988, 186, 15476, 27, 551, 2657, 186, 4698, 723, 27, 8849, 6723, 284, 988, 186, 94, 996, 186, 4718, 6886, 186, 2044, 7484, 426, 13355, 14095, 19410, 42152, 995, 544, 69, 1092, 4610, 558, 6886, 186, 2044, 18389, 426, 13355, 14095, 19410, 39930, 995, 544, 69, 1092, 551, 988, 186, 22253, 27, 551, 2657, 186, 8737, 27, 551, 2664, 186, 9029, 27, 2032, 13, 2664, 186, 1282, 12175, 27, 337, 2657, 186, 2023, 2657, 186, 20644, 5496, 27, 470, 988, 186, 2023, 988, 186, 89, 10565, 27, 551, 2657, 186, 3028, 661, 27, 24345, 2657, 186, 9561, 27, 346, 2606, 3, 988, 186, 2023, 988, 186, 90, 10565, 27, 551, 2657, 186, 3028, 661, 27, 24345, 2657, 186, 1222, 27, 470, 13, 2657, 186, 1920, 5829, 1079, 46, 4319, 27, 470, 15, 18, 988, 186, 2023, 988, 186, 27423, 27, 551, 2657, 186, 9561, 27, 346, 89, 3, 988, 186, 94, 996, 186, 9897, 6886, 186, 605, 1024, 4684, 253, 767, 6886, 186, 5, 19410, 42152, 6788, 13245, 1587, 14095, 16191, 995, 1159, 313, 8045, 13, 13794, 10, 551, 11866, 186, 605, 513, 253, 21282, 272, 988, 186, 1352, 14382, 9, 14095, 15, 788, 57, 19820, 265, 5715, 1159, 9, 7481, 7844, 10, 551, 2657, 186, 2044, 32659, 426, 7844, 15, 10121, 28, 2657, 186, 28330, 15, 1222, 426, 13794, 15, 89, 10565, 15, 4064, 28, 2657, 186, 28330, 15, 4090, 426, 13794, 15, 89, 10565, 15, 936, 28, 988, 186, 9897, 988, 186, 14095, 15, 23320, 15099, 1874, 988, 186, 14095, 15, 6553, 1874, 988, 186, 14095, 15, 8250, 23474, 1874, 11866, 186, 605, 1053, 626, 3289, 2362, 327, 253, 18389, 281, 3657, 23251, 6287, 11866, 186, 39930, 15, 1178, 23474, 9, 83, 6525, 13, 2032, 558, 996, 186, 9897, 6886, 186, 5, 19410, 39930, 6788, 13245, 1587, 14095, 16191, 995, 1159, 313, 8045, 13, 13794, 10, 551, 988, 186, 14095, 15, 1178, 23474, 9, 83, 6525, 558, 996, 186, 9897, 6886, 186, 605, 5733, 253, 2884, 302, 2715, 2876, 281, 253, 50083, 6886, 186, 5, 19410, 28497, 6788, 3456, 16183, 1587, 6623, 302, 346, 559, 13355, 14095, 15, 4149, 559, 346, 708, 2109, 1225, 28, 33051, 187, 186, 9897, 535, 186, 870, 3866, 31, 187, 870, 2522, 31, 187, 29, 2915, 31, 535, 186, 29, 2154, 2654, 568, 10146, 1138, 996, 186, 29, 73, 19, 31, 10395, 5109, 870, 73, 19, 31, 187, 186, 870, 2154, 31, 535, 186, 29, 2154, 2654, 568, 6071, 1138, 6886, 186, 29, 2154, 966, 568, 32971, 14, 13299, 1138, 988, 186, 29, 2154, 2654, 568, 42152, 3, 966, 568, 32971, 14, 42152, 6750, 2154, 31, 996, 186, 870, 2154, 31, 6886, 186, 29, 2154, 966, 568, 32971, 14, 13299, 3, 3740, 568, 7436, 27, 8970, 3498, 13011, 988, 186, 29, 2154, 2654, 568, 39930, 3, 966, 568, 32971, 14, 42152, 6750, 2154, 31, 996, 186, 870, 2154, 31, 6886, 186, 29, 81, 31, 1552, 7484, 2722, 12942, 591, 1388, 281, 253, 2884, 302, 47978, 13, 342, 29665, 18010, 8239, 81, 31, 6886, 186, 29, 81, 31, 510, 4577, 7484, 310, 7939, 281, 253, 2022, 7484, 13, 594, 352, 6993, 347, 271, 18389, 15, 15358, 32126, 247, 5438, 327, 2057, 7484, 13, 285, 3698, 253, 3879, 273, 253, 643, 8239, 81, 31, 535, 186, 870, 2154, 31, 535, 186, 29, 2154, 2654, 568, 28497, 1138, 996, 186, 20968, 708, 12557, 28, 5215, 428, 4059, 309, 3271, 34, 285, 42088, 3905, 2244, 257, 187, 186, 870, 2154, 31, 187, 187, 870, 2915, 31, 187, 870, 2974, 31, 187 ]
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>Flot Examples: Visitors</title> <link href="../examples.css" rel="stylesheet" type="text/css"> <!--[if lte IE 8]><script language="javascript" type="text/javascript" src="../../excanvas.min.js"></script><![endif]--> <script language="javascript" type="text/javascript" src="../../jquery.js"></script> <script language="javascript" type="text/javascript" src="../../jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="../../jquery.flot.time.js"></script> <script language="javascript" type="text/javascript" src="../../jquery.flot.selection.js"></script> <script type="text/javascript"> $(function() { var d = [[1196463600000, 0], [1196550000000, 0], [1196636400000, 0], [1196722800000, 77], [1196809200000, 3636], [1196895600000, 3575], [1196982000000, 2736], [1197068400000, 1086], [1197154800000, 676], [1197241200000, 1205], [1197327600000, 906], [1197414000000, 710], [1197500400000, 639], [1197586800000, 540], [1197673200000, 435], [1197759600000, 301], [1197846000000, 575], [1197932400000, 481], [1198018800000, 591], [1198105200000, 608], [1198191600000, 459], [1198278000000, 234], [1198364400000, 1352], [1198450800000, 686], [1198537200000, 279], [1198623600000, 449], [1198710000000, 468], [1198796400000, 392], [1198882800000, 282], [1198969200000, 208], [1199055600000, 229], [1199142000000, 177], [1199228400000, 374], [1199314800000, 436], [1199401200000, 404], [1199487600000, 253], [1199574000000, 218], [1199660400000, 476], [1199746800000, 462], [1199833200000, 448], [1199919600000, 442], [1200006000000, 403], [1200092400000, 204], [1200178800000, 194], [1200265200000, 327], [1200351600000, 374], [1200438000000, 507], [1200524400000, 546], [1200610800000, 482], [1200697200000, 283], [1200783600000, 221], [1200870000000, 483], [1200956400000, 523], [1201042800000, 528], [1201129200000, 483], [1201215600000, 452], [1201302000000, 270], [1201388400000, 222], [1201474800000, 439], [1201561200000, 559], [1201647600000, 521], [1201734000000, 477], [1201820400000, 442], [1201906800000, 252], [1201993200000, 236], [1202079600000, 525], [1202166000000, 477], [1202252400000, 386], [1202338800000, 409], [1202425200000, 408], [1202511600000, 237], [1202598000000, 193], [1202684400000, 357], [1202770800000, 414], [1202857200000, 393], [1202943600000, 353], [1203030000000, 364], [1203116400000, 215], [1203202800000, 214], [1203289200000, 356], [1203375600000, 399], [1203462000000, 334], [1203548400000, 348], [1203634800000, 243], [1203721200000, 126], [1203807600000, 157], [1203894000000, 288]]; // first correct the timestamps - they are recorded as the daily // midnights in UTC+0100, but Flot always displays dates in UTC // so we have to add one hour to hit the midnights in the plot for (var i = 0; i < d.length; ++i) { d[i][0] += 60 * 60 * 1000; } // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)) d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we don't set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 2 * 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5 }, selection: { mode: "x" }, grid: { markings: weekendAreas } }; var plot = $.plot("#placeholder", [d], options); var overview = $.plot("#overview", [d], { series: { lines: { show: true, lineWidth: 1 }, shadowSize: 0 }, xaxis: { ticks: [], mode: "time" }, yaxis: { ticks: [], min: 0, autoscaleMargin: 0.1 }, selection: { mode: "x" } }); // now connect the two $("#placeholder").bind("plotselected", function (event, ranges) { // do the zooming $.each(plot.getXAxes(), function(_, axis) { var opts = axis.options; opts.min = ranges.xaxis.from; opts.max = ranges.xaxis.to; }); plot.setupGrid(); plot.draw(); plot.clearSelection(); // don't fire event on the overview to prevent eternal loop overview.setSelection(ranges, true); }); $("#overview").bind("plotselected", function (event, ranges) { plot.setSelection(ranges); }); // Add the Flot version string to the footer $("#footer").prepend("Flot " + $.plot.version + " &ndash; "); }); </script> </head> <body> <div id="header"> <h2>Visitors</h2> </div> <div id="content"> <div class="demo-container"> <div id="placeholder" class="demo-placeholder"></div> </div> <div class="demo-container" style="height:150px;"> <div id="overview" class="demo-placeholder"></div> </div> <p>This plot shows visitors per day to the Flot homepage, with weekends colored.</p> <p>The smaller plot is linked to the main plot, so it acts as an overview. Try dragging a selection on either plot, and watch the behavior of the other.</p> </div> <div id="footer"> Copyright &copy; 2007 - 2014 IOLA and Ole Laursen </div> </body> </html>
214,377
Github
[ 31, 209, 18957, 20855, 21275, 20012, 24370, 21232, 544, 12363, 225, 10673, 231, 10716, 234, 17559, 212, 20616, 121, 18751, 211, 5959, 109, 10041, 97, 29852, 242, 880, 3614, 1358, 2700, 15, 91, 5801, 11917, 15, 681, 16, 2061, 16, 38349, 14, 254, 14, 75, 466, 14, 75, 757, 14, 15082, 14, 8020, 14, 91, 11917, 14, 85, 9041, 14, 563, 74, 14, 4529, 16, 514, 16762, 10, 428, 544, 36387, 111, 29626, 99, 10716, 104, 880, 3614, 1358, 7280, 15, 681, 16, 12309, 43, 571, 32031, 10, 187, 187, 22329, 13486, 243, 40120, 4384, 6896, 209, 21275, 20012, 544, 53, 706, 6358, 611, 10468, 398, 880, 3614, 1358, 7280, 15, 681, 16, 84, 536, 376, 10, 209, 29918, 15446, 214, 17492, 9850, 163, 109, 218, 24308, 5225, 20855, 22701, 243, 544, 48437, 577, 15, 17, 281, 577, 15, 1036, 27, 10348, 368, 871, 32, 880, 3614, 1358, 28672, 15, 681, 16, 48437, 16, 48437, 14, 21, 14, 17, 14, 936, 14, 21, 14, 1036, 14, 14958, 14, 5658, 14, 14428, 14, 3677, 70, 1099, 66, 3011, 6855, 23, 67, 2769, 41085, 163, 125, 121, 34693, 236, 10, 6238, 13258, 121, 43799, 17492, 9850, 20720, 65, 48437, 577, 65, 29918, 15446, 214, 16877, 24370, 6238, 28915, 237, 17492, 20833, 105, 40951, 33656, 214, 10962, 114, 21458, 13127, 235, 27707, 4340, 187, 42843, 3218, 231, 41807, 21232, 16385, 111, 32594, 13610, 45111, 29554, 35930, 29918, 2634, 48437, 608, 65, 4340, 187, 187, 31, 5531, 368, 403, 1335, 327, 4384, 6896, 495, 15, 309, 457, 78, 7016, 13, 752, 310, 14589, 368, 32, 844, 2168, 2444, 327, 4384, 6896, 608, 13, 594, 634, 8031, 1537, 320, 36761, 3517, 2866, 187, 187, 163, 125, 121, 11894, 228, 21991, 13609, 20855, 29297, 12105, 18140, 187, 187, 12520, 3614, 1358, 4537, 14, 27716, 14, 29082, 15, 19706, 86, 15, 900, 16, 7798, 16, 24, 16, 1630, 16, 18467, 5470, 18, 66, 19, 70, 38823, 68, 18795, 32, 88, 30, 31055, 7, 73, 30, 1518, 7, 71, 30, 42787, 7, 84, 30, 17537, 1610, 10, 187, 187, 32594, 34439, 15367, 35724, 13610, 29463, 27896, 20855, 35072, 98, 20025, 21991, 41869, 7056, 117, 544, 7152, 91, 880, 3614, 1358, 7280, 15, 681, 16, 9357, 1406, 66, 1807, 16, 7152, 91, 2769, 38028, 37208, 9850, 14670, 97, 10, 209, 35724, 25538, 7111, 225, 47905, 65, 48437, 577, 12, 65, 6238, 24308, 15957, 219, 65, 48437, 65, 21734, 20287, 34671, 30903, 17492, 14274, 45508, 6238, 38328, 3218, 231, 65, 48437, 577, 65, 209, 34446, 48584, 49344, 29918, 15446, 214, 5494, 231, 16401, 24899, 26552, 17492, 6238, 41197, 41250, 36361, 11894, 100, 48584, 49344, 46049, 5690, 211, 43244, 31902, 228, 17492, 6238, 36361, 11894, 100, 33018, 38028, 36644, 5225, 18245, 220, 163, 216, 102, 6765, 106, 13484, 14262, 236, 5225, 12363, 218, 29268, 102, 16127, 121, 23956, 100, 12363, 218, 29268, 102, 17492, 4340, 29766, 22329, 9850, 46239, 9078, 242, 9078, 242, 14274, 12363, 218, 29268, 102, 47961, 30423, 12105, 41873, 44781, 19144, 41873, 2634, 48437, 495, 65, 209, 31902, 228, 13258, 232, 17492, 4340, 39465, 13610, 2634, 3211, 19860, 65, 209, 5225, 34397, 14262, 115, 20720, 2634, 2115, 23787, 46367, 23836, 65, 20281, 47961, 30423, 7249, 111, 10962, 219, 4340, 32004, 17492, 34439, 9850, 33369, 115, 22975, 37286, 11827, 224, 16818, 108, 7249, 224, 6238, 25715, 112, 20833, 244, 47029, 14670, 105, 4340, 187, 187, 25276, 16877, 20622, 35241, 15367, 38563, 17492, 16549, 106, 15962, 12363, 221, 19144, 11827, 224, 13486, 217, 7249, 218, 12363, 218, 29268, 102, 22044, 65, 48437, 577, 65, 1401, 43300, 3218, 218, 3218, 218, 46049, 41197, 22044, 9078, 235, 12105, 14378, 218, 22044, 17492, 14274, 45508, 5225, 49271, 27107, 235, 26680, 424, 209, 14377, 45091, 24899, 29766, 22329, 14378, 234, 23956, 236, 5225, 49271, 27107, 235, 9078, 235, 12105, 46049, 14377, 45091, 34439, 24086, 33273, 14262, 113, 4340, 43300, 25538, 34204, 18764, 5225, 49271, 27107, 235, 9078, 235, 12105, 39465, 5225, 20855, 35072, 98, 14377, 25276, 25715, 243, 37661, 120, 6238, 48584, 49344, 12613, 242, 42951, 17492, 5225, 3218, 239, 164, 100, 125, 25434, 65, 34870, 46367, 23836, 65, 9078, 235, 13610, 6916, 235, 20005, 20855, 35072, 98, 13609, 22044, 7249, 215, 18678, 35321, 6238, 45091, 24899, 34698, 18764, 5225, 3218, 239, 164, 100, 125, 12363, 114, 9850, 18947, 231, 15446, 101, 32004, 6238, 7297, 237, 16787, 113, 46049, 14262, 236, 6238, 47905, 12335, 46136, 21232, 16385, 111, 44781, 38242, 36337, 227, 42697, 11827, 224, 20287, 33273, 14262, 113, 4340, 187, 187, 9078, 235, 44075, 25434, 13610, 65, 87, 21, 15, 1036, 15, 17, 65, 15957, 219, 18957, 13609, 12613, 242, 42951, 17492, 65, 2178, 27996, 15, 30714, 1196, 13921, 65, 4746, 65, 2178, 27996, 15, 19389, 1779, 18357, 65, 4746, 65, 2178, 27996, 15, 73, 6948, 13570, 33922, 65, 4746, 65, 2178, 27996, 15, 19389, 4120, 2651, 65, 209, 20622, 13486, 243, 16401, 40715, 28791, 19780, 119, 6238, 20286, 125, 23823, 97, 21991, 17492, 65, 2178, 27996, 15, 8640, 33922, 65, 209, 21458, 2634, 2178, 27996, 15, 33461, 33922, 65, 6238, 43300, 20855, 35072, 98, 47961, 13609, 30423, 46049, 14377, 44573, 35201, 29645, 35321, 6238, 25276, 16877, 24553, 13610, 24308, 15957, 219, 18957, 13609, 9078, 235, 18245, 220, 163, 216, 102, 20855, 35072, 98, 40693, 43929, 40715, 28791, 36359, 36750, 12105, 46049, 14377, 44573, 35201, 10962, 219, 26354, 5225, 4340, 187, 187, 25538, 24308, 25538, 47961, 10962, 114, 5225, 20855, 35072, 98, 9078, 235, 12105, 38242, 24446, 19780, 119, 28154, 5225, 40715, 28791, 60, 9770, 6896, 10976, 15, 8456, 880, 3614, 1358, 7280, 15, 681, 16, 48437, 16, 48437, 16, 23723, 16, 11717, 16, 24991, 16, 9770, 6896, 10976, 15, 8456, 10, 6238, 12811, 120, 163, 214, 219, 40309, 14129, 108, 14378, 218, 22044, 14274, 26151, 216, 28492, 237, 5225, 40715, 28791, 19780, 119, 33018, 38242, 20622, 16401, 6238, 36213, 20326, 39465, 9850, 17576, 38908, 11894, 212, 12105, 21458, 25538, 24308, 29440, 42697, 24412, 14486, 100, 5225, 4340, 187, 187, 7719, 227, 43033, 123, 17492, 20622, 43244, 24899, 6238, 31486, 31982, 14318, 229, 32594, 13127, 243, 4340, 44692, 30329, 18957, 35241, 29554, 162, 228, 118, 29554, 163, 109, 218, 12462, 216, 14377, 40951, 28607, 125, 6238, 25276, 16877, 23825, 217, 33273, 21991, 17492, 16740, 20720, 3218, 99, 163, 109, 218, 20855, 22701, 243, 18140, 187, 187, 14, 209, 16740, 163, 109, 218, 1969, 209, 29297, 12105, 37895, 108, 27804, 5225, 13610, 65, 48437, 495, 65, 5225, 41140, 49835, 211, 16740, 12363, 218, 29268, 102, 6238, 18764, 28915, 237, 20833, 105, 40951, 44508, 224, 21275, 21458, 14378, 218, 22044, 17492, 20833, 105, 40951, 31902, 228, 187, 14, 209, 20720, 163, 109, 218, 1969, 209, 12105, 13610, 65, 48437, 577, 65, 20720, 13258, 225, 43244, 24168, 24017, 5225, 11827, 230, 15899, 216, 21458, 23825, 217, 15899, 216, 6238, 42843, 3218, 231, 25434, 35201, 25538, 15962, 27707, 37208, 12335, 2634, 5056, 1307, 42324, 65, 187, 187, 424, 18957, 20855, 22701, 243, 14274, 12105, 29554, 162, 228, 118, 29554, 5690, 225, 20031, 116, 49873, 24553, 4384, 6896, 209, 40715, 28791, 6238, 25276, 16877, 42843, 14274, 20281, 14129, 112, 7249, 105, 24899, 45091, 41140, 49835, 211, 5225, 40715, 28791, 49271, 27107, 235, 424, 4340, 44075, 25434, 25434, 35201, 7249, 215, 24017, 30689, 209, 42522, 6238, 25434, 35201, 40715, 28791, 4384, 6896, 14, 3620, 14, 9438, 6238, 14129, 112, 9078, 110, 1873, 14, 27564, 209, 21458, 9688, 14, 27564, 209, 29766, 37286, 5225, 15899, 120, 6765, 106, 38563, 38563, 6238, 14377, 41085, 43741, 5225, 17598, 103, 164, 224, 227, 38242, 544, 6916, 235, 20005, 20855, 35072, 98, 880, 3614, 1358, 48437, 15, 4305, 15, 2061, 16, 31503, 84, 21714, 209, 37542, 20012, 544, 9960, 87, 422, 4305, 880, 3614, 1358, 9960, 87, 422, 4305, 15, 681, 16, 48437, 16, 16714, 272, 16, 48437, 14, 3620, 14, 9438, 21714, 209, 18678, 5225, 27896, 44126, 44157, 49873, 31949, 4340, 37542, 20012, 17598, 103, 164, 224, 227, 38242, 15367, 5941, 118, 5225, 5941, 101, 9850, 163, 109, 218, 259, 67, 554, 471, 209, 23373, 20616, 103, 20855, 22701, 243, 6238, 48584, 24412, 14486, 100, 22044, 4384, 6896, 21, 544, 13127, 243, 11016, 212, 20616, 103, 880, 3614, 1358, 7280, 15, 681, 16, 12081, 33151, 14340, 16, 48437, 14, 395, 14, 1033, 66, 14, 22433, 10, 4340, 187, 187, 817, 209, 12363, 218, 29268, 102, 163, 109, 218, 187, 187, 4118, 209, 22329, 31982, 187, 187, 15367, 9850, 46239, 14129, 99, 20326, 41202, 5690, 125, 21458, 16849, 242, 165, 220, 114, 12105, 28586, 11871, 243, 27896, 24308, 3218, 239, 164, 100, 125, 25538, 30903, 10962, 219, 5225, 44301, 4340, 25276, 16877, 15367, 40309, 14129, 108, 9078, 235, 12105, 27804, 32004, 16849, 242, 165, 220, 114, 9850, 40951, 21991, 163, 217, 242, 5225, 4384, 6896, 209, 40715, 28791, 44075, 21365, 214, 34439, 4340, 44075, 25434, 24553, 19780, 119, 28154, 12105, 41140, 30329, 8071, 209, 20025, 13258, 212, 9504, 219, 5225, 11894, 240, 33018, 16849, 242, 165, 220, 114, 544, 6953, 14, 22312, 14, 1212, 880, 3614, 1358, 7280, 15, 681, 16, 24557, 16, 6953, 14, 22312, 14, 1212, 10, 209, 6238, 20720, 27258, 123, 29766, 29427, 65, 24541, 1408, 37726, 65, 209, 29297, 33018, 38242, 22044, 39465, 11894, 101, 12755, 217, 5225, 4384, 6896, 209, 40715, 28791, 17492, 4340, 40781, 209, 5225, 11894, 240, 44692, 30329, 24308, 15957, 219, 65, 40781, 502, 74, 65, 14274, 45314, 36820, 2634, 70, 720, 65, 17492, 6238, 38328, 3218, 231, 43316, 12335, 544, 48437, 14, 10050, 880, 3614, 1358, 7280, 15, 681, 16, 45189, 14, 47850, 83, 2610, 16, 48437, 14, 10050, 10, 24370, 40715, 28791, 6238, 25276, 16877, 16849, 242, 165, 220, 114, 39859, 24370, 43251, 20281, 14274, 7249, 105, 20005, 16800, 125, 6238, 34204, 18764, 40715, 28791, 544, 24086, 31902, 211, 880, 3614, 1358, 7280, 15, 681, 16, 40781, 4305, 16, 40781, 14, 31010, 16, 12588, 16, 3620, 16, 24166, 49033, 40781, 16, 31010, 14, 10613, 16, 4658, 16, 5397, 10, 4340, 17559, 220, 30808, 165, 120, 121, 163, 214, 101, 5225, 11894, 240, 24553, 33018, 46239, 33474, 16849, 242, 165, 220, 114, 2634, 40781, 14, 10531, 14, 15787, 65, 209, 5225, 544, 40715, 28791, 880, 3614, 1358, 7280, 15, 681, 16, 12309, 43, 571, 32031, 16, 40781, 14, 10531, 14, 15787, 16, 23290, 16, 33546, 10, 4340, 37542, 20012, 24553, 41197, 21232, 16385, 111, 29918, 18245, 100, 6238, 24553, 33018, 16849, 242, 165, 220, 114, 4384, 6896, 209, 6916, 235, 20005, 5225, 7719, 215, 49288, 544, 32045, 880, 3614, 1358, 7280, 15, 681, 16, 48437, 16, 48437, 16, 12588, 16, 11717, 16, 32045, 10, 6238, 24370, 41251, 24168, 24553, 5225, 40715, 28791, 4340, 187, 187, 4118, 209, 12363, 218, 29268, 102, 4384, 6896, 187, 187, 40843, 233, 43216, 37373, 4384, 6896, 209, 12363, 218, 29268, 102, 22044, 577, 209, 29766, 29427, 6238, 46239, 33474, 9078, 227, 16677, 65, 48437, 1969, 25887, 65, 12105, 14274, 16677, 5225, 6238, 36213, 20326, 24308, 15957, 219, 18957, 37373, 18617, 123, 5690, 99, 16677, 32313, 40500, 5225, 3218, 239, 164, 100, 125, 44006, 163, 222, 107, 23825, 217, 17492, 18678, 44781, 10673, 212, 29626, 216, 21991, 17492, 65, 48437, 14, 31010, 65, 4340, 20281, 18751, 100, 25434, 20720, 39915, 236, 11894, 109, 18140, 187, 187, 31, 380, 49809, 4395, 715, 247, 4858, 5522, 27, 4384, 6896, 14, 31010, 15, 187, 31, 7764, 3334, 2634, 48437, 14, 31010, 65, 275, 1635, 281, 4384, 6896, 3139, 281, 897, 253, 49809, 15, 187, 187, 25276, 14377, 24553, 47905, 38028, 29626, 216, 65, 24541, 3334, 4384, 6896, 14, 31010, 428, 37, 428, 52, 65, 4340, 24553, 35724, 18148, 37373, 39465, 38028, 29626, 216, 13610, 30423, 17955, 211, 4340, 187, 187, 24412, 22975, 24308, 15957, 219, 4384, 6896, 209, 47905, 65, 6910, 15, 4305, 209, 5225, 25538, 7111, 225, 45314, 36820, 15957, 219, 18957, 20326, 721, 15, 883, 15, 22, 65, 14274, 18764, 16549, 235, 17492, 12363, 218, 29268, 102, 4340, 42055, 9078, 235, 47905, 12755, 114, 18751, 99, 13180, 212, 19780, 119, 28154, 33018, 29463, 544, 79, 11618, 880, 3614, 1358, 7280, 15, 681, 16, 30767, 895, 16, 79, 11618, 10, 209, 24370, 28915, 237, 9850, 20720, 4666, 209, 15957, 219, 18957, 46419, 24017, 4340, 187, 187, 424, 12363, 218, 29268, 102, 25276, 14377, 16800, 240, 23692, 233, 424, 187, 187, 36213, 20326, 65, 48437, 21, 65, 43316, 17492, 209, 39465, 5225, 65, 19198, 65, 23370, 209, 6238, 25276, 16877, 25276, 14377, 5225, 65, 2799, 398, 65, 4746, 65, 24111, 65, 34446, 47905, 12363, 218, 29268, 102, 11827, 224, 20287, 7249, 242, 11016, 213, 40715, 4340, 187, 187, 33018, 29463, 18617, 123, 5690, 99, 16677, 2634, 24541, 36761, 65, 6238, 44157, 18678, 25276, 16877, 33018, 33859, 24308, 5225, 15899, 216, 4340, 7056, 224, 30808, 49218, 27896, 16401, 44781, 65, 24541, 65, 11827, 124, 32313, 25949, 30329, 5225, 18148, 12335, 15957, 219, 18957, 17492, 4340, 187, 187, 12520, 3614, 1358, 4537, 14, 27716, 14, 29082, 15, 19706, 86, 15, 900, 16, 7798, 16, 24, 16, 1630, 16, 18467, 1473, 46702, 70, 1093, 66, 4148, 832, 32, 88, 30, 25, 2270, 7, 73, 30, 26140, 7, 71, 30, 42787, 7, 84, 30, 740, 2417, 3571, 10, 187, 187, 5941, 224, 32594, 18751, 221, 65, 3620, 47671, 65, 5225, 16800, 240, 23692, 233, 34446, 12363, 218, 29268, 102, 9850, 20720, 6238, 13258, 121, 14318, 229, 14274, 20281, 14377, 39915, 236, 4340, 187, 187, 4118, 209, 15446, 101, 24370, 5225, 47570, 27707, 187, 187, 36359, 36750, 20622, 35241, 12363, 218, 29268, 102, 15446, 101, 24370, 17492, 14274, 45508, 43316, 47570, 6238, 43300, 15962, 26795, 18434, 36359, 36750, 25949, 30329, 37895, 108, 27804, 12335, 46136, 24370, 41807, 12105, 14274, 47905, 40500, 44712, 5225, 6238, 44075, 25434, 20622, 35241, 12363, 218, 29268, 102, 15446, 101, 24370, 5225, 11043, 242, 20287, 65, 28541, 34721, 65, 4746, 65, 13570, 8078, 457, 84, 47493, 758, 65, 4746, 65, 9770, 27711, 15185, 65, 6238, 41140, 18957, 44084, 22975, 12105, 12335, 14274, 22044, 5225, 4340, 31486, 34204, 18764, 40500, 44712, 40693, 40951, 25949, 31486, 14318, 111, 20833, 224, 44075, 21365, 214, 15962, 5225, 43316, 37062, 25434, 18140, 65, 2178, 27996, 15, 9148, 1779, 18357, 65, 29440, 20286, 125, 39673, 14377, 5225, 65, 2115, 23787, 46367, 23836, 65, 9, 20720, 163, 109, 218, 20855, 22701, 243, 20281, 45111, 34698, 5690, 222, 12755, 224, 10, 6238, 21458, 65, 36011, 18193, 84, 14, 9561, 65, 33859, 34439, 5225, 37215, 235, 14129, 99, 40715, 28791, 6238, 20622, 12105, 15962, 34091, 22580, 224, 12005, 108, 47905, 40500, 44712, 9850, 20720, 5225, 4340, 187, 187, 12520, 3614, 1358, 4537, 14, 27716, 14, 29082, 15, 19706, 86, 15, 900, 16, 7798, 16, 25, 16, 24, 16, 15429, 1012, 70, 3593, 4989, 66, 2227, 11316, 68, 32, 88, 30, 1047, 1549, 7, 73, 30, 26221, 7, 71, 30, 42787, 7, 84, 30, 26, 1867, 2526, 10, 187, 187, 31, 209, 42055, 41197, 36778, 9850, 14486, 100, 17492, 33273, 2634, 14444, 1608, 1170, 65, 21458, 65, 28541, 34721, 65, 5225, 18148, 17559, 212, 20855, 5959, 106, 23825, 230, 17955, 232, 29852, 216, 11894, 121, 4340, 187, 31, 795, 16740, 39249, 39573, 45466, 544, 9770, 6896, 577, 209, 36778, 29852, 116, 880, 3614, 1358, 20122, 9041, 13409, 15, 91, 5801, 11917, 15, 681, 16, 81, 16, 1671, 24769, 32834, 11824, 187, 187, 4118, 209, 37215, 235, 14129, 99, 40715, 28791, 187, 187, 48437, 577, 209, 44290, 23373, 17492, 65, 20031, 116, 40715, 28791, 65, 5225, 162, 101, 213, 16549, 115, 6238, 41873, 544, 1148, 6226, 880, 3614, 1358, 7280, 15, 681, 16, 1148, 6226, 14, 45268, 2146, 16, 1148, 6226, 10, 209, 6765, 120, 162, 125, 211, 22044, 17492, 4340, 209, 14274, 46419, 10962, 219, 26354, 13258, 225, 43929, 6238, 20622, 43316, 47570, 9078, 235, 12105, 40969, 30808, 16998, 110, 23692, 241, 5225, 4340, 187, 187, 31, 209, 25538, 9078, 228, 5941, 219, 24308, 18678, 17492, 544, 29760, 6896, 880, 2413, 1358, 7957, 6896, 15, 900, 21714, 209, 33018, 40500, 44712, 9850, 20720, 4340, 187, 187, 31982, 14318, 229, 32594, 27107, 235, 6238, 31486, 24370, 38242, 38242, 4384, 6896, 209, 37215, 235, 14129, 99, 15446, 108, 31486, 28915, 237, 17492, 40951, 5690, 211, 43244, 32, 187, 187, 65, 27055, 65, 209, 41202, 30077, 20720, 6238, 37215, 235, 14129, 99, 35930, 7719, 109, 17492, 65, 37195, 1779, 18357, 23836, 65, 209, 21458, 65, 37195, 4120, 2651, 23836, 65, 20005, 16800, 125, 33656, 214, 11894, 232, 6238, 34671, 47750, 17492, 33859, 47961, 10962, 114, 5225, 39915, 236, 11894, 109, 32165, 43136, 6238, 33859, 16549, 106, 5225, 34698, 24308, 37661, 233, 11894, 228, 5225, 11016, 242, 29485, 4340, 187, 187, 11202, 13437, 187, 8640, 15, 23756, 426, 551, 187, 12, 4438, 27, 686, 27055, 8, 187, 14, 1474, 19210, 27, 686, 15419, 1383, 187, 14, 28437, 27, 544, 187, 14, 50275, 1826, 4384, 6896, 15, 37195, 4120, 2651, 23836, 5715, 187, 14, 50275, 1826, 4384, 6896, 15, 37195, 1779, 18357, 23836, 5715, 187, 14, 50275, 1826, 4384, 6896, 15, 36906, 23836, 7506, 346, 7404, 15, 12540, 15, 39143, 64, 33735, 1381, 13922, 15, 49139, 1587, 27055, 2807, 748, 582, 187, 14, 5032, 187, 94, 187, 11202, 187, 187, 65, 25307, 65, 209, 41202, 30077, 20720, 6238, 44692, 30329, 34671, 47750, 17492, 65, 9148, 1779, 18357, 65, 21458, 65, 1222, 39263, 65, 6238, 25276, 16877, 41140, 18957, 20031, 116, 40715, 28791, 6238, 29440, 42697, 29297, 20281, 21232, 37062, 18434, 16805, 112, 4746, 20647, 222, 37661, 104, 4746, 13127, 235, 27707, 6238, 24412, 22975, 4384, 6896, 209, 35724, 20281, 21232, 37062, 15446, 108, 24553, 2634, 23974, 8511, 9020, 65, 209, 21458, 2634, 14444, 14, 1200, 1170, 65, 4340, 187, 187, 11202, 13437, 187, 8640, 15, 23756, 426, 551, 187, 12, 50276, 9561, 27, 686, 25307, 1383, 187, 14, 50276, 24111, 27, 544, 187, 14, 50274, 1826, 530, 3129, 1419, 38156, 23836, 9, 3122, 3346, 1738, 582, 187, 14, 50274, 1826, 4384, 6896, 15, 36906, 23836, 7506, 346, 7404, 15, 12540, 15, 39143, 64, 33735, 1381, 13922, 15, 49139, 1587, 25307, 2807, 748, 582, 187, 14, 50274, 1826, 4384, 6896, 15, 32581, 907, 15, 13570, 1773, 8076, 257, 318, 23836, 5715, 187, 14, 50274, 1826, 4384, 6896, 15, 2302, 38, 2225, 2374, 36655, 23836, 1082, 187, 14, 50276, 62, 187, 94, 187, 11202, 187, 187, 48437, 209, 9850, 46239, 16877, 24370, 25538, 165, 100, 111, 43368, 11894, 242, 40162, 216, 5225, 29297, 12105, 36359, 40715, 28791, 20616, 103, 43033, 238, 17321, 212, 30903, 6238, 40715, 28791, 28327, 41683, 17321, 212, 36359, 7249, 224, 12676, 213, 21458, 163, 119, 212, 21422, 227, 6238, 41683, 8841, 230, 14129, 104, 13484, 5690, 225, 23373, 20616, 103, 22044, 45882, 12811, 214, 6238, 38328, 39465, 5225, 29427, 39859, 29766, 16998, 211, 25434, 4533, 484, 4746, 1148, 6226, 209, 38563, 31902, 218, 13610, 40715, 28791, 50039, 31949, 16740, 28915, 237, 17492, 17321, 212, 15962, 5225, 13127, 235, 27707, 6238, 28915, 237, 22044, 35930, 25541, 111, 12363, 113, 12335, 6238, 25276, 16877, 65, 48437, 577, 65, 209, 35724, 5690, 225, 13609, 16849, 242, 165, 220, 114, 17492, 14274, 45508, 49344, 48604, 223, 24370, 34671, 12363, 218, 21232, 45748, 5225, 40715, 28791, 10962, 219, 20241, 218, 4340, 424, 19597, 125, 42848, 37286, 49218, 35724, 14274, 47905, 4384, 6896, 209, 40715, 28791, 41869, 31949, 15446, 219, 424, 4340, 187, 187, 817, 14271, 14, 48437, 14, 16895, 187, 187, 12335, 25538, 24308, 15957, 219, 18957, 5225, 5225, 2634, 2974, 14, 48437, 14, 16895, 65, 24553, 43251, 9078, 235, 20281, 14378, 218, 22044, 25434, 20720, 5225, 39915, 236, 11894, 109, 18140, 187, 187, 65, 22408, 747, 11759, 2073, 48314, 280, 18925, 8, 559, 4666, 6802, 10, 65, 187, 187, 5494, 102, 20025, 20622, 16401, 7505, 209, 5225, 39673, 36213, 12105, 12005, 105, 20241, 109, 44290, 12335, 16800, 240, 23692, 233, 6238, 42055, 24553, 46049, 14377, 20622, 16401, 49271, 27107, 235, 33018, 16549, 123, 23956, 100, 4340, 187, 187, 28154, 22329, 33273, 14262, 113, 20005, 35072, 219, 33018, 29463, 26615, 209, 15957, 219, 18957, 6238, 65, 24541, 891, 1969, 15261, 14, 3620, 14271, 14, 48437, 14, 16895, 33, 8384, 65, 187, 187, 37542, 20012, 27727, 23373, 65, 348, 18357, 15462, 10715, 27, 686, 15422, 8, 65, 29297, 33018, 17492, 4340, 187, 187, 43300, 5690, 231, 12755, 217, 48950, 38242, 20855, 35072, 98, 29918, 35321, 42205, 28791, 21991, 65, 348, 18357, 15462, 10715, 27, 686, 15422, 8, 65, 20622, 43929, 12105, 20281, 14377, 49271, 27107, 235, 5225, 4340, 187, 187, 31, 1876, 5811, 281, 1453, 849, 30151, 943, 320, 20045, 1078, 597, 403, 2908, 281, 253, 11685, 15, 187, 187, 20622, 17955, 241, 21734, 20281, 14262, 113, 17576, 24553, 30151, 209, 5225, 27727, 27258, 123, 19780, 120, 49056, 6238, 42055, 42205, 28791, 20326, 65, 15422, 65, 6238, 24553, 5225, 20540, 209, 27727, 27258, 123, 13610, 19780, 115, 28305, 13609, 27727, 27258, 123, 5225, 19780, 120, 49056, 29297, 14274, 20287, 7249, 242, 38908, 11894, 212, 17492, 6238, 43251, 20281, 18678, 35321, 43929, 30077, 41873, 11800, 217, 13764, 233, 5225, 34397, 14262, 115, 4340, 44075, 25434, 15367, 13610, 65, 1212, 15, 9016, 65, 42013, 28305, 16818, 108, 43316, 17492, 27896, 24893, 36168, 20005, 12613, 230, 65, 10531, 14, 4113, 65, 5225, 43929, 30077, 6238, 27804, 32004, 27727, 27258, 123, 19780, 120, 49056, 5225, 43216, 29427, 24370, 11800, 217, 13764, 233, 39465, 6238, 43300, 44692, 30329, 42205, 28791, 20326, 17492, 65, 15422, 65, 6238, 11827, 230, 15899, 216, 18678, 24370, 5225, 43799, 26354, 47570, 21991, 17492, 20622, 43929, 18140, 187, 187, 11202, 2974, 187, 29, 4492, 3860, 17779, 1212, 15, 2511, 1857, 71, 3342, 68, 15, 9016, 3, 774, 568, 23745, 3, 4725, 187, 29, 4492, 3860, 17779, 33461, 14, 10531, 9571, 15, 19, 5470, 43277, 2597, 15, 9016, 3, 774, 568, 23745, 3, 4725, 187, 11202, 187, 187, 65, 1212, 15, 9016, 65, 41873, 43216, 27727, 27258, 123, 17492, 6238, 29766, 22329, 14262, 236, 5225, 43929, 30077, 11800, 217, 13764, 233, 29297, 7249, 111, 10962, 219, 17492, 6238, 42951, 48991, 24553, 29463, 65, 18108, 65, 37542, 20012, 36359, 39465, 30689, 209, 12676, 214, 34698, 5225, 20005, 30077, 11800, 217, 13764, 233, 39465, 6238, 43300, 20622, 29687, 8841, 124, 12105, 14274, 7249, 105, 24168, 24017, 5225, 4340, 187, 65, 40781, 14, 31010, 65, 32594, 34439, 35724, 14377, 20622, 16401, 32313, 40500, 544, 15697, 880, 3614, 1358, 7280, 15, 681, 16, 40781, 4305, 16, 40781, 14, 31010, 16, 22402, 16, 19791, 4, 15697, 13982, 14, 24264, 23546, 29579, 10, 6238, 10673, 99, 20031, 103, 36337, 105, 35724, 13610, 14274, 29463, 65, 33, 8384, 65, 15957, 219, 18957, 5225, 41140, 49835, 211, 16740, 13908, 209, 17492, 39465, 6238, 14377, 7056, 114, 34138, 98, 5225, 33018, 21232, 16385, 111, 27374, 231, 28215, 116, 9850, 20720, 6238, 18957, 13484, 13610, 19780, 119, 28154, 13609, 46239, 33474, 29463, 17492, 65, 33, 8384, 65, 15957, 219, 18957, 6238, 35724, 46049, 14378, 218, 22044, 36359, 39465, 5690, 211, 43244, 49271, 27107, 235, 14236, 42951, 17492, 14274, 7056, 122, 41683, 4384, 6896, 209, 5225, 2634, 11499, 11429, 16, 81, 41347, 65, 209, 32313, 40500, 544, 15697, 880, 3614, 1358, 7280, 15, 681, 16, 75, 386, 15329, 16, 2974, 14, 48437, 14, 16895, 16, 22402, 16, 26, 1706, 10, 14106, 4340, 3218, 99, 49288, 20005, 35072, 219, 34446, 33018, 6238, 21232, 16677, 49037, 23825, 104, 4340, 187, 187, 36359, 39465, 2634, 2974, 14, 48437, 14, 16895, 65, 209, 5225, 40715, 28791, 21458, 29766, 22329, 29463, 46049, 14377, 5690, 211, 43244, 15899, 120, 6765, 106, 4340, 187, 187, 817, 12949, 14, 9016, 14, 41316, 14, 16895, 187, 187, 4118, 209, 40564, 4908, 14, 1156, 14, 48437, 14, 16895, 209, 15899, 120, 6765, 106, 187, 187, 44692, 30329, 65, 48437, 21, 65, 25949, 30689, 209, 41202, 31902, 234, 45314, 36820, 5225, 47961, 39429, 215, 16877, 40658, 13610, 7249, 215, 24017, 30689, 209, 42522, 34671, 27937, 5225, 20005, 30077, 16740, 35724, 28915, 237, 17492, 40951, 33656, 214, 10962, 114, 6238, 25276, 16877, 29766, 22329, 31486, 9850, 46239, 29463, 5225, 65, 41316, 14, 1156, 14, 48437, 14, 16895, 65, 35724, 47961, 21991, 17492, 39465, 5225, 20647, 217, 5941, 112, 22160, 18617, 123, 6238, 37373, 14129, 104, 36666, 30329, 65, 42825, 14, 9016, 14, 41316, 14, 16895, 65, 4340, 187, 187, 29463, 20005, 30077, 35724, 45091, 25541, 211, 44006, 6238, 15962, 34091, 38242, 45111, 544, 20855, 35072, 98, 880, 3614, 1358, 7280, 15, 681, 16, 48437, 14, 44665, 16, 42825, 14, 9016, 14, 41316, 14, 16895, 4, 8402, 14, 11667, 10, 209, 18751, 215, 29297, 33018, 17492, 4340, 187, 187, 39465, 40564, 65, 41316, 14, 1156, 14, 48437, 14, 16895, 65, 25538, 15962, 5225, 15899, 120, 6765, 106, 12105, 18140, 39465, 13610, 65, 3211, 6821, 2996, 65, 5225, 22975, 16849, 236, 20281, 37373, 39673, 43216, 28327, 30590, 231, 14262, 236, 13610, 22985, 226, 27896, 23421, 2634, 33461, 13204, 65, 5225, 30689, 6238, 44006, 163, 222, 107, 23825, 217, 21991, 17492, 27896, 16401, 30689, 209, 42522, 4340, 187, 187, 39673, 43216, 30689, 209, 12105, 20622, 43929, 28327, 30590, 231, 13610, 23421, 209, 42522, 42013, 5225, 18140, 187, 12520, 3614, 1358, 4537, 14, 27716, 14, 29082, 15, 19706, 86, 15, 900, 16, 7798, 16, 24, 16, 1348, 16, 18467, 11316, 2227, 67, 20210, 69, 17537, 66, 32, 88, 30, 1099, 1706, 7, 73, 30, 4185, 7, 71, 30, 42787, 7, 84, 30, 27133, 1047, 10, 187, 187, 37373, 30689, 209, 163, 222, 107, 41478, 23825, 217, 15899, 216, 25538, 15962, 5225, 34439, 7249, 215, 29297, 12105, 23421, 209, 21458, 30689, 209, 5225, 43316, 37062, 6238, 14274, 20281, 14318, 111, 20833, 224, 25949, 20005, 4340, 44075, 25434, 15367, 43316, 17492, 23421, 209, 42522, 42843, 14274, 20281, 13744, 122, 16787, 114, 30689, 209, 42522, 5225, 37661, 230, 32938, 7249, 111, 10962, 219, 4340, 38328, 3218, 231, 35321, 13610, 39465, 21232, 37062, 20281, 40715, 24168, 65, 2178, 27996, 15, 9148, 1779, 18357, 65, 5225, 40715, 28791, 6238, 33018, 21232, 17576, 11871, 220, 23825, 217, 18434, 30689, 209, 42522, 6238, 44075, 25434, 15367, 44006, 163, 222, 107, 40715, 28791, 17492, 65, 10531, 14, 4113, 65, 21275, 20326, 44006, 163, 222, 107, 27896, 65, 30310, 11976, 39465, 20281, 21232, 37062, 35724, 37373, 39465, 5225, 43929, 30077, 44006, 163, 222, 107, 11827, 230, 15899, 216, 21991, 27896, 30689, 209, 42522, 6238, 14274, 20281, 44314, 16877, 22329, 37215, 235, 14129, 99, 37373, 24893, 36168, 20005, 5225, 30689, 209, 30423, 26795, 11827, 230, 15899, 216, 21991, 27896, 13486, 243, 37657, 7297, 237, 16787, 113, 16740, 19218, 124, 37998, 209, 5225, 65, 1212, 15, 25887, 15, 9016, 65, 42522, 17492, 4340, 187, 187, 12520, 3614, 1358, 4537, 14, 27716, 14, 29082, 15, 19706, 86, 15, 900, 16, 7798, 16, 24, 16, 1348, 16, 18467, 11316, 69, 2537, 12352, 16989, 29543, 32, 88, 30, 42420, 7, 73, 30, 15161, 7, 71, 30, 8567, 7, 84, 30, 24, 1839, 3208, 10, 187, 187, 4118, 209, 20647, 222, 37661, 104, 40564, 13127, 235, 27707, 187, 187, 11827, 230, 15899, 216, 30689, 209, 29766, 29427, 48950, 38242, 36337, 227, 42697, 6238, 31486, 29918, 35321, 39465, 42843, 46049, 14377, 15446, 108, 31486, 28915, 237, 29440, 42697, 20647, 222, 37661, 104, 6238, 20622, 22975, 16849, 236, 47905, 29463, 544, 32581, 907, 14, 9016, 14, 26094, 14, 48437, 14, 16895, 880, 3614, 1358, 7280, 15, 681, 16, 18971, 6764, 16, 32581, 907, 14, 9016, 14, 26094, 14, 48437, 14, 16895, 10, 209, 20622, 16401, 22470, 229, 23366, 6238, 39465, 14274, 5690, 216, 20287, 15446, 108, 24553, 20647, 222, 37661, 104, 30689, 209, 9078, 235, 20287, 13127, 235, 27707, 24553, 5225, 29440, 42697, 4340, 187, 187, 11202, 4305, 187, 605, 40715, 28791, 187, 2178, 27996, 27, 551, 187, 50276, 1222, 303, 6081, 27, 544, 1826, 12551, 39263, 30928, 6717, 1507, 23836, 1082, 62, 187, 94, 187, 11202, 187, 187, 12520, 3614, 1358, 4537, 14, 27716, 14, 29082, 15, 19706, 86, 15, 900, 16, 7798, 16, 24, 16, 1229, 16, 18467, 70, 4590, 12352, 24514, 69, 1967, 3763, 32, 88, 30, 1166, 3141, 7, 73, 30, 24, 1540, 7, 71, 30, 42787, 7, 84, 30, 16903, 20700, 10, 187, 187, 25434, 16740, 39249, 21998, 222, 11894, 232, 12335, 32378, 25276, 30420, 6238, 44692, 30329, 65, 32581, 907, 14, 9016, 14, 26094, 14, 48437, 14, 16895, 65, 20622, 16401, 22470, 229, 23366, 37215, 235, 14129, 99, 29463, 17492, 544, 9016, 79, 4692, 880, 3614, 1358, 7280, 15, 681, 16, 9016, 79, 4692, 16, 9016, 79, 4692, 10, 209, 24370, 21275, 30689, 209, 13127, 235, 27707, 6238, 187, 25276, 16877, 39465, 14274, 5690, 216, 20647, 222, 37661, 104, 17492, 29440, 42697, 4746, 6765, 243, 17598, 220, 17492, 29440, 42697, 13609, 47029, 12335, 5225, 44712, 13499, 221, 4746, 9078, 235, 44781, 42951, 17492, 14262, 234, 7111, 236, 5225, 30689, 4746, 13127, 235, 27707, 17492, 30689, 209, 5225, 11871, 101, 14262, 236, 19780, 120, 49056, 6238, 13127, 235, 27707, 17492, 24553, 5225, 29440, 42697, 2634, 15456, 27, 884, 3498, 1384, 3498, 884, 3498, 1384, 3498, 28, 65, 3001, 65, 15456, 27, 740, 3498, 1384, 3498, 28, 65, 4340, 24412, 22975, 15962, 15962, 13486, 226, 29533, 17492, 24553, 30689, 209, 5225, 42522, 15962, 29533, 4340, 33859, 24899, 13127, 235, 27707, 5225, 12755, 217, 36387, 213, 17559, 212, 60, 20855, 35072, 98, 880, 3614, 1358, 9016, 79, 4692, 15, 1940, 16, 4297, 1487, 16, 32581, 18058, 10, 4340, 187, 187, 4118, 2600, 13362, 187, 187, 43300, 29463, 2634, 46, 5391, 36, 859, 7992, 974, 23836, 65, 209, 14377, 27896, 41085, 43741, 36114, 6765, 106, 44712, 31129, 5225, 24086, 20005, 6238, 13610, 37215, 235, 14129, 99, 20855, 35072, 98, 13609, 39465, 12105, 20622, 43929, 40715, 28791, 5225, 18140, 187, 187, 11202, 4305, 187, 1826, 24244, 36, 859, 7992, 974, 23836, 7506, 187, 50276, 605, 27921, 2074, 281, 253, 1072, 4610, 275, 4384, 6896, 10976, 15, 9252, 187, 50276, 605, 1097, 4610, 403, 15266, 187, 50276, 17479, 27, 1474, 10715, 3736, 41000, 1590, 1570, 9016, 8, 1163, 41000, 1590, 41512, 13362, 1570, 9016, 1383, 187, 50276, 33461, 44707, 27, 1474, 10715, 3736, 41000, 301, 1570, 9016, 8, 1163, 41000, 301, 41512, 13362, 1570, 9016, 8, 187, 2311, 187, 11202, 187, 187, 31, 209, 25541, 211, 44006, 41807, 29687, 9850, 20720, 18140, 2634, 17479, 65, 209, 12105, 34811, 13610, 24553, 23373, 44002, 42522, 65, 8873, 65, 13609, 44290, 23373, 20025, 21991, 18678, 24370, 5225, 42522, 28610, 6238, 38328, 65, 33461, 1590, 65, 12105, 34811, 40693, 40951, 5959, 105, 41873, 13610, 23373, 44002, 42522, 65, 8873, 65, 44290, 23373, 6238, 43300, 5941, 219, 27804, 32004, 18245, 220, 41085, 27727, 27258, 123, 14236, 12811, 213, 14486, 100, 14106, 41202, 31902, 234, 5225, 22975, 16849, 236, 44290, 23373, 5225, 42522, 4340, 187, 187, 13610, 1401, 12557, 424, 209, 25434, 16740, 29440, 42697, 29463, 29766, 29427, 29918, 35321, 34397, 14262, 115, 14274, 25949, 26680, 22985, 226, 35241, 43316, 37062, 27896, 65, 5260, 15, 4305, 65, 42522, 6238, 39465, 25949, 36361, 5225, 30689, 209, 46982, 123, 38389, 46049, 28915, 237, 44573, 35201, 43316, 37062, 6238, 43300, 39465, 5225, 209, 42522, 13283, 209, 9078, 235, 12105, 20281, 29918, 20025, 47570, 27707, 4340, 5690, 231, 12755, 217, 25949, 44075, 29918, 35321, 39673, 24370, 12105, 2634, 13362, 65, 209, 21555, 119, 5225, 37769, 118, 4340, 2634, 23, 15, 71, 20, 3342, 66, 20, 2320, 15, 9016, 65, 3001, 2634, 23, 15, 1449, 12847, 3208, 71, 23, 15, 9016, 65, 187, 187, 12520, 3614, 1358, 4537, 14, 27716, 14, 29082, 15, 19706, 86, 15, 900, 16, 7798, 16, 24, 16, 1348, 16, 18467, 68, 1257, 24803, 520, 2275, 71, 2090, 32, 88, 30, 805, 1047, 7, 73, 30, 20777, 7, 71, 30, 8567, 7, 84, 30, 1036, 1348, 3571, 10, 187, 187, 43300, 15367, 20622, 12105, 15756, 119, 32130, 6916, 235, 20005, 20855, 35072, 98, 24370, 14262, 236, 5225, 26680, 20326, 5690, 211, 43244, 9078, 235, 14377, 49271, 27107, 235, 26680, 29427, 24370, 13610, 20855, 35072, 98, 5225, 424, 25538, 25538, 25538, 424, 20720, 28305, 29918, 20720, 17492, 20622, 43244, 9850, 33369, 115, 11894, 240, 26680, 187, 187, 31, 1198, 1048, 1307, 42324, 897, 19722, 27, 2634, 60, 6071, 13362, 1570, 9016, 16433, 27357, 595, 823, 544, 1590, 1570, 187, 187, 48991, 36548, 5225, 14274, 24017, 33273, 6238, 20622, 43244, 40500, 39915, 108, 5225, 9850, 5941, 100, 11894, 240, 20281, 45882, 13610, 2634, 46, 1143, 39982, 65, 209, 9078, 235, 29427, 28305, 5225, 24086, 20005, 6238, 37215, 235, 14129, 99, 14262, 236, 13610, 40715, 28791, 42013, 28305, 34671, 30420, 15962, 34091, 14274, 12105, 33859, 34439, 26443, 14377, 163, 214, 244, 36644, 30255, 99, 13127, 234, 48584, 49344, 35930, 17492, 27896, 65, 1087, 65, 6238, 37373, 20855, 35072, 98, 37215, 235, 14129, 99, 40715, 28791, 20326, 2634, 6071, 13362, 65, 4340, 65, 33461, 13362, 65, 3001, 2634, 6071, 13362, 65, 32313, 40500, 544, 15697, 880, 3614, 1358, 7280, 15, 681, 16, 48437, 16, 48437, 15, 4305, 15, 2061, 16, 22402, 16, 938, 4196, 10, 4340, 187, 187, 20622, 16401, 48561, 5225, 164, 238, 108, 32004, 18434, 5225, 6238, 22580, 224, 14274, 44712, 31129, 29297, 20281, 14129, 104, 21232, 16385, 111, 5225, 30689, 209, 42522, 37661, 230, 32938, 47029, 10962, 219, 4340, 38328, 3218, 231, 45091, 24899, 12335, 46136, 44084, 22975, 16818, 108, 43316, 29440, 42697, 5225, 22975, 16849, 236, 34446, 14274, 20281, 13610, 31129, 21232, 16385, 111, 25538, 12755, 219, 11827, 230, 15899, 216, 18678, 24370, 5225, 2634, 8155, 65, 42522, 7249, 119, 13609, 22044, 12613, 232, 14377, 20833, 105, 40951, 47570, 27707, 4340, 25276, 16877, 20622, 16401, 49271, 27107, 235, 43251, 29297, 9850, 46239, 32938, 13610, 17492, 4340, 21998, 105, 29832, 119, 17492, 24899, 45508, 23692, 215, 36337, 227, 26680, 13484, 32417, 110, 14274, 23825, 217, 26680, 15962, 34091, 17559, 220, 30808, 4384, 6896, 209, 26335, 124, 12335, 14274, 12105, 46049, 34260, 24017, 5225, 4340, 187, 187, 424, 10716, 100, 7056, 216, 9850, 29734, 424, 18140, 28154, 22329, 65, 46, 5391, 36, 859, 7992, 974, 23836, 65, 35724, 14274, 12105, 48991, 36548, 47961, 30255, 225, 5225, 6238, 39465, 35321, 13610, 37215, 235, 14129, 99, 20281, 37373, 22985, 226, 16401, 13204, 209, 5225, 30689, 209, 163, 222, 107, 41478, 30329, 23421, 209, 42522, 6238, 209, 44006, 163, 222, 107, 23825, 217, 21991, 27896, 30689, 209, 42522, 4340, 43300, 20622, 43929, 20281, 5494, 102, 20025, 27896, 24308, 5225, 49271, 27107, 235, 4340, 44075, 25434, 15367, 14377, 27896, 19780, 115, 28305, 39465, 46987, 14377, 9850, 16677, 30689, 6238, 43300, 35724, 20281, 41873, 23825, 217, 21991, 17492, 27896, 163, 222, 107, 41478, 5225, 30689, 209, 42522, 6238, 9078, 235, 47905, 27107, 240, 35489, 5225, 9850, 35241, 3944, 209, 44673, 43741, 6238, 48991, 36548, 5225, 14274, 24168, 24017, 4340, 25276, 16877, 15367, 29297, 12755, 236, 6916, 235, 20005, 34671, 17492, 27896, 544, 15697, 880, 3614, 1358, 7280, 15, 681, 16, 48437, 14, 44665, 16, 42825, 14, 9016, 14, 41316, 14, 16895, 16, 22402, 16, 20210, 10, 6238, 18617, 122, 7719, 212, 34693, 241, 27727, 27896, 65, 1222, 5496, 65, 6238, 26772, 30689, 209, 5225, 28327, 41683, 29533, 30329, 20622, 16401, 65, 3281, 65, 5225, 22975, 16849, 236, 9078, 235, 12105, 28327, 30590, 231, 22044, 23421, 209, 42522, 13609, 6238, 34175, 12005, 216, 6916, 235, 20005, 34693, 241, 27727, 20622, 16401, 11043, 242, 20287, 4340, 187, 187, 4118, 209, 20622, 42013, 49218, 25541, 211, 44006, 41807, 29687, 9850, 20720, 13486, 243, 49288, 13283, 209, 5225, 15899, 120, 6765, 106, 18140, 187, 187, 14, 1401, 13362, 424, 187, 187, 65, 13362, 65, 209, 21458, 22985, 226, 35241, 2634, 7973, 65, 14377, 40500, 6238, 46049, 14377, 44573, 35201, 43316, 47570, 5225, 34397, 14262, 115, 20720, 6238, 22985, 226, 35241, 37661, 233, 11894, 228, 18678, 24370, 5225, 2634, 13362, 65, 34446, 12105, 9850, 43929, 5225, 6238, 43300, 26772, 24553, 43316, 47570, 17492, 44573, 35201, 9850, 29734, 3218, 239, 164, 100, 125, 6238, 39465, 5225, 65, 13362, 65, 29297, 20281, 29918, 20025, 43316, 47570, 4340, 187, 187, 25541, 211, 44006, 24017, 33273, 6238, 24553, 43316, 17492, 44573, 35201, 3218, 239, 164, 100, 125, 6238, 65, 13362, 65, 209, 29297, 20281, 21458, 16740, 35241, 14274, 9850, 43929, 17492, 4340, 187, 187, 14, 1401, 33461, 13362, 424, 187, 187, 65, 33461, 13362, 65, 12105, 15756, 119, 32130, 7056, 117, 29645, 22985, 226, 27896, 41202, 31902, 234, 42522, 21232, 16385, 111, 5225, 5225, 28327, 41683, 15899, 216, 23825, 107, 39465, 5225, 16800, 240, 23692, 233, 14129, 96, 47615, 25276, 30808, 5225, 65, 13362, 65, 6238, 25276, 16877, 26974, 227, 16401, 42522, 5225, 43316, 37062, 46987, 20281, 14318, 111, 20833, 224, 39465, 18957, 45748, 5225, 65, 13362, 65, 6238, 14274, 20281, 14318, 111, 20833, 224, 36359, 39465, 42522, 4340, 187, 187, 14, 1401, 6071, 13362, 424, 187, 187, 39465, 5225, 18678, 35321, 34204, 18764, 12105, 20326, 17492, 33273, 14262, 113, 6238, 14129, 104, 65, 9016, 65, 42522, 14274, 43368, 65, 4305, 65, 42522, 5225, 14318, 111, 20833, 224, 4340, 44075, 25434, 65, 12110, 15, 9016, 65, 41873, 65, 12110, 15, 4305, 65, 44290, 12335, 17492, 6238, 25276, 16877, 39465, 23788, 7056, 111, 12335, 32313, 24412, 5225, 65, 33461, 13362, 65, 40969, 4340, 43300, 20622, 43929, 23371, 12105, 14377, 49271, 27107, 235, 5225, 6238, 42055, 65, 12110, 15, 4305, 65, 16818, 108, 43316, 17492, 29440, 42697, 6238, 65, 9016, 65, 42522, 29297, 47615, 28327, 41683, 46049, 14377, 44573, 35201, 43316, 47570, 6238, 44692, 30329, 12105, 11894, 100, 41202, 31902, 234, 5225, 2634, 13362, 65, 209, 29918, 20025, 17492, 43316, 47570, 6238, 36359, 65, 9016, 65, 42522, 5225, 65, 13362, 65, 35724, 20281, 26335, 226, 29766, 43316, 47570, 4340, 187, 187, 20622, 16401, 22975, 16849, 236, 31486, 29297, 33018, 29463, 65, 6071, 13362, 65, 17492, 6238, 38908, 11894, 212, 12363, 113, 22160, 65, 9016, 65, 42522, 25276, 7249, 215, 5225, 41202, 31902, 234, 42013, 14377, 44573, 35201, 28327, 41683, 5225, 43316, 47570, 6238, 46987, 18764, 30689, 209, 42522, 28327, 41683, 14274, 47570, 6238, 40693, 43244, 39465, 5225, 65, 13362, 65, 29297, 14274, 20281, 29918, 20025, 47570, 27707, 4340, 187, 187, 65, 6071, 13362, 65, 209, 24553, 33018, 25541, 211, 44006, 24017, 33273, 20326, 12105, 2634, 8640, 2618, 65, 559, 2634, 6071, 65, 209, 25276, 20025, 21991, 5225, 2634, 13362, 65, 4340, 187, 187, 817, 209, 163, 214, 244, 33859, 24308, 11016, 242, 29485, 187, 187, 36359, 36750, 32313, 25949, 4384, 6896, 209, 29268, 125, 16740, 11827, 230, 15899, 216, 11016, 242, 29485, 6238, 15367, 33859, 40500, 36644, 5225, 18957, 24086, 35930, 29918, 163, 214, 244, 33859, 24308, 11016, 242, 29485, 6238, 22985, 232, 22701, 242, 20622, 11827, 224, 12105, 21458, 31486, 22985, 226, 27896, 31949, 49056, 18617, 235, 22985, 226, 40120, 48561, 32594, 11827, 230, 50037, 34260, 5225, 3218, 239, 164, 100, 125, 6238, 11827, 230, 15899, 216, 9850, 34372, 107, 34446, 20281, 11827, 231, 12755, 236, 65, 7142, 65, 21232, 37062, 11827, 102, 16677, 6238, 38328, 3218, 231, 9850, 34372, 107, 19780, 119, 28154, 22985, 226, 40120, 35724, 14274, 20281, 11827, 230, 15899, 216, 45091, 24899, 35241, 4340, 187, 187, 65, 48437, 577, 65, 9850, 46239, 41807, 21232, 16385, 111, 33859, 34439, 5225, 37208, 12335, 17492, 65, 12985, 65, 34671, 30903, 17492, 37661, 233, 11894, 228, 11016, 242, 29485, 6238, 43300, 36750, 21998, 222, 29918, 35321, 12105, 14377, 9850, 17576, 5225, 34671, 12363, 218, 6238, 43300, 26772, 24553, 27896, 19780, 119, 28154, 6238, 49521, 44692, 162, 218, 229, 27727, 27258, 123, 5225, 19780, 115, 28305, 24899, 17492, 29766, 29427, 6238, 1235, 12, 29766, 29427, 6238, 163, 214, 244, 33859, 24308, 46791, 97, 5225, 49271, 27107, 235, 20281, 45091, 29687, 8841, 124, 6238, 29766, 22329, 5225, 60, 20855, 22701, 243, 880, 3614, 1358, 75, 489, 37525, 15, 303, 16, 5996, 16, 44159, 67, 21, 69, 32332, 15662, 26, 66, 3071, 49472, 24, 5470, 66, 3208, 4, 33049, 14, 18, 10, 13609, 35724, 34671, 22044, 32004, 20622, 16401, 49271, 27107, 235, 6238, 39673, 16877, 20326, 24308, 15957, 219, 18957, 20281, 33273, 14262, 113, 20622, 16401, 49271, 27107, 235, 6238, 43300, 42843, 46049, 14377, 4340, 187, 187, 14274, 32004, 24553, 40843, 233, 43216, 18764, 17598, 229, 8587, 100, 24553, 5225, 163, 214, 244, 33859, 24308, 46791, 97, 14274, 12105, 6238, 25434, 18140, 187, 187, 14, 209, 46049, 14377, 29463, 24168, 24017, 5225, 544, 11148, 19210, 880, 3614, 1358, 48437, 15, 4305, 15, 2061, 16, 24693, 16, 3620, 19210, 21225, 3620, 19210, 10, 18155, 336, 3711, 209, 13744, 122, 16787, 114, 187, 14, 209, 46049, 14377, 32594, 49835, 108, 29463, 544, 49309, 16, 3709, 880, 3614, 1358, 48437, 15, 4305, 15, 2061, 16, 24693, 16, 8640, 21225, 15093, 14, 3709, 10, 209, 7249, 215, 24017, 17492, 14274, 47905, 7249, 215, 24017, 5225, 25434, 65, 6219, 64, 14825, 65, 187, 14, 209, 13610, 35930, 29918, 20241, 109, 34693, 214, 14274, 18764, 20647, 222, 37661, 104, 29440, 42697, 65, 54, 3129, 1419, 38156, 65, 4746, 34671, 27937, 30689, 4746, 46998, 3488, 9337, 4746, 14129, 96, 47615, 42522, 13283, 209, 38563, 14274, 47905, 5225, 44508, 224, 21275, 187, 187, 424, 10460, 102, 20005, 35072, 219, 424, 187, 187, 25538, 10460, 104, 5225, 20005, 35072, 219, 12105, 35930, 29918, 20241, 109, 34693, 214, 13609, 14274, 12105, 12335, 49521, 44692, 162, 218, 229, 27727, 27258, 123, 17492, 6238, 46987, 13610, 29268, 125, 16740, 20241, 109, 34693, 214, 13609, 29463, 4340, 10673, 212, 29626, 216, 27896, 65, 64, 2948, 65, 13486, 123, 15531, 6238, 27804, 32004, 20241, 109, 34693, 214, 47570, 15899, 120, 18434, 12105, 7719, 101, 47905, 162, 218, 229, 27727, 27258, 123, 4340, 187, 187, 35930, 29918, 20241, 109, 34693, 214, 18140, 187, 187, 11202, 4305, 187, 8640, 15, 23756, 426, 1873, 3001, 2430, 2073, 33, 16, 17920, 44670, 559, 1873, 559, 29996, 40781, 8539, 6986, 187, 11202, 187, 187, 20025, 21991, 20241, 109, 34693, 214, 18140, 187, 187, 11202, 4305, 187, 8640, 15, 23756, 426, 1873, 3001, 6734, 3001, 1395, 2073, 33, 16, 17920, 44670, 559, 1873, 559, 29996, 40781, 3401, 187, 11202, 187, 187, 43300, 44692, 30329, 4384, 6896, 2634, 2948, 65, 36750, 35321, 5959, 120, 34179, 49271, 27107, 235, 6238, 20281, 5494, 102, 20025, 9850, 17576, 5225, 16805, 109, 21275, 12335, 4340, 25434, 16740, 28305, 5225, 14262, 236, 20113, 29297, 20281, 13744, 122, 16787, 114, 65, 33, 16, 17920, 16, 65, 20720, 5225, 209, 25276, 14377, 16433, 40781, 65, 209, 42522, 34446, 20281, 41873, 11827, 230, 15899, 216, 4340, 14274, 46419, 24553, 12105, 7719, 101, 41873, 16800, 240, 23692, 233, 44290, 12335, 17492, 6238, 20281, 24899, 11827, 230, 15899, 216, 9850, 40951, 43251, 17289, 118, 9078, 239, 34446, 12335, 14274, 22044, 23421, 209, 29440, 42697, 4340, 544, 32313, 40500, 2523, 880, 3614, 1358, 7280, 15, 681, 16, 12309, 43, 571, 32031, 16, 40781, 14, 10531, 14, 15787, 16, 22402, 16, 27122, 10, 187, 187, 28154, 22329, 24308, 5225, 33273, 14262, 113, 20005, 35072, 219, 35636, 49521, 9078, 235, 12105, 9850, 43929, 5225, 6238, 46987, 13610, 20025, 21991, 41202, 30077, 13609, 29463, 49521, 44692, 162, 218, 229, 27727, 27258, 123, 6238, 18957, 24086, 35930, 29918, 14274, 29463, 162, 218, 229, 27727, 27258, 123, 4340, 43300, 23823, 97, 17492, 9850, 49288, 46049, 16805, 109, 21275, 12335, 5225, 36750, 35321, 20005, 30077, 4340, 187, 187, 424, 24308, 20005, 35072, 219, 424, 187, 187, 29463, 65, 46998, 65, 209, 5225, 2634, 24111, 65, 544, 46998, 14, 16895, 14, 19681, 14, 2948, 14, 6219, 880, 3614, 1358, 7280, 15, 681, 16, 1094, 67, 5668, 16, 46998, 14, 16895, 14, 19681, 14, 2948, 14, 6219, 10, 4340, 39465, 46987, 28915, 237, 9850, 23366, 22010, 29297, 12105, 18140, 37373, 25276, 14377, 5225, 65, 2948, 42702, 27258, 107, 27707, 20326, 65, 15684, 42702, 6238, 20622, 43929, 29297, 33018, 12335, 20622, 16401, 22470, 229, 23366, 37373, 25276, 14377, 12811, 213, 14486, 100, 41251, 23366, 34446, 12335, 24412, 14486, 100, 5225, 20005, 30077, 44290, 23373, 17492, 6238, 42843, 43799, 24168, 544, 35, 2925, 3887, 64, 33735, 880, 3614, 1358, 46998, 4305, 15, 900, 16, 13880, 16, 24483, 16, 46998, 3373, 21225, 12540, 14, 7872, 10, 209, 20622, 16401, 65, 1257, 8382, 65, 20241, 109, 34693, 214, 47570, 37079, 6238, 14129, 104, 39465, 46987, 21275, 12335, 30329, 35930, 29918, 20241, 109, 34693, 214, 20720, 4340, 37373, 35930, 29918, 20241, 109, 34693, 214, 13609, 25276, 14377, 65, 2948, 42702, 27258, 107, 27707, 20326, 65, 15684, 42702, 6238, 20622, 49288, 20005, 35072, 219, 33273, 14262, 113, 17492, 29766, 22329, 34698, 7249, 224, 11827, 230, 15899, 216, 5225, 49271, 27107, 235, 6238, 24412, 22975, 25949, 29440, 42697, 5225, 16800, 115, 23373, 21734, 35724, 45091, 29533, 6238, 24553, 44084, 22975, 14262, 236, 49521, 44692, 5225, 22975, 16849, 236, 46987, 47905, 18245, 220, 163, 216, 102, 6916, 235, 20005, 60, 20855, 35072, 98, 880, 3614, 1358, 37564, 15, 40781, 4305, 15, 2061, 16, 20122, 16, 22433, 16, 46813, 16, 77, 26537, 14, 23333, 15, 2974, 10, 49521, 44692, 162, 218, 229, 27727, 27258, 123, 5225, 20005, 30077, 29297, 33018, 17492, 6238, 36359, 39465, 5225, 34446, 50037, 12755, 236, 65, 46998, 65, 24370, 7249, 215, 24017, 6238, 26772, 24553, 14274, 41197, 12335, 20622, 16401, 20005, 35072, 219, 5225, 22975, 16849, 236, 6238, 35724, 46987, 47905, 37373, 39465, 5690, 225, 65, 46998, 65, 209, 5225, 2634, 24111, 65, 13609, 16998, 121, 42951, 29297, 33018, 17492, 4340, 187, 187, 424, 7056, 117, 29645, 29440, 42697, 18140, 424, 187, 187, 40843, 233, 43216, 13610, 65, 10708, 15, 8456, 65, 13609, 34693, 241, 27727, 65, 35, 2925, 3887, 64, 33735, 65, 187, 187, 11202, 8456, 187, 3, 3620, 1381, 346, 35, 2925, 3887, 64, 33735, 30, 27055, 4384, 6896, 14, 3620, 14, 9438, 29373, 57, 3, 187, 11202, 187, 187, 33474, 45111, 13610, 16433, 46998, 3373, 65, 46987, 20287, 27727, 23373, 65, 46998, 14, 16895, 14, 19681, 14, 2948, 14, 6219, 65, 20622, 16401, 65, 24111, 65, 6238, 42843, 14129, 104, 39465, 46987, 14377, 13610, 65, 27055, 65, 41202, 30077, 13609, 11827, 224, 20025, 10962, 219, 4340, 187, 187, 11202, 8456, 187, 92, 187, 50276, 3, 12540, 1381, 551, 187, 50274, 3, 27055, 1381, 551, 187, 50272, 3, 24111, 1381, 15640, 19681, 14, 2948, 14, 6219, 9686, 187, 50274, 94, 187, 50276, 94, 187, 94, 187, 11202, 187, 187, 29766, 29427, 29297, 15962, 11043, 242, 18617, 221, 21991, 17492, 6238, 49521, 44692, 46987, 18764, 44314, 44084, 22975, 9850, 43929, 14262, 236, 29297, 33018, 17492, 4340, 60, 20855, 35072, 98, 880, 3614, 1358, 4029, 8020, 317, 864, 15, 7280, 15, 900, 16, 40781, 14, 10531, 14, 15787, 14, 11264, 16, 20122, 16, 22433, 16, 46813, 16, 77, 26537, 14, 23333, 15, 2974, 4, 6, 38, 23, 6, 4196, 6, 35, 17, 6, 38, 23, 6, 4196, 6, 35, 26, 6, 38, 23, 6, 34, 18, 6, 2055, 10, 187, 187, 11202, 4305, 187, 551, 1854, 27, 17882, 20348, 1383, 4445, 27, 6734, 3001, 1395, 2073, 33, 16, 17920, 16, 20348, 16, 4663, 8, 3117, 187, 11202, 187, 187, 20622, 43929, 20287, 15962, 15962, 34671, 12363, 218, 24553, 163, 214, 244, 33859, 24308, 5225, 11016, 242, 29485, 4340, 41140, 18957, 3218, 99, 19218, 124, 27727, 19780, 115, 28305, 35724, 20287, 13610, 65, 6914, 983, 65, 5225, 163, 214, 244, 31811, 242, 24308, 47961, 21991, 6238, 41140, 18957, 28915, 237, 22044, 47029, 38011, 6765, 117, 24308, 4340, 26772, 38389, 24553, 5225, 19780, 119, 28154, 18957, 45748, 29297, 14274, 15962, 19780, 115, 28305, 35724, 14274, 24899, 6238, 47961, 30423, 46049, 41250, 18764, 162, 227, 241, 20622, 40951, 4340, 424, 26772, 24553, 5225, 19780, 115, 28305, 47570, 27707, 31811, 242, 14274, 12105, 24553, 14262, 236, 29440, 42697, 11016, 242, 29485, 5225, 22975, 16849, 236, 49218, 45466, 46982, 228, 35724, 14274, 9078, 242, 4340, 424, 187, 187, 817, 209, 11827, 230, 15899, 216, 11016, 242, 29485, 187, 187, 65, 48437, 577, 65, 209, 13610, 19780, 119, 28154, 13609, 36750, 17783, 216, 21998, 222, 17492, 20720, 6238, 37895, 108, 14378, 224, 20287, 34671, 30903, 1384, 6, 95, 1229, 6, 5225, 11827, 230, 15899, 216, 11016, 242, 29485, 4340, 187, 187, 18957, 20855, 14274, 13486, 217, 7249, 218, 7249, 105, 36087, 111, 23373, 5225, 14129, 112, 33273, 20622, 26795, 18434, 28327, 41683, 6238, 11894, 101, 12755, 217, 5225, 11827, 230, 15899, 216, 13127, 235, 27707, 11016, 242, 29485, 33018, 39573, 45466, 60, 37358, 209, 10041, 97, 29852, 242, 5225, 20622, 163, 109, 218, 20855, 22701, 243, 880, 3614, 1358, 3433, 471, 15, 44602, 16, 19773, 14, 48437, 14, 7957, 14, 66, 14, 3423, 14, 22433, 14, 1542, 14, 29266, 14, 7973, 14, 24159, 14, 71, 3208, 66, 22, 28202, 70, 25, 71, 18, 10, 6238, 17598, 235, 38001, 9078, 235, 14377, 60, 11894, 228, 20855, 880, 3614, 1358, 7280, 15, 681, 16, 19706, 86, 16, 27716, 14, 1222, 254, 16, 23723, 16, 11717, 16, 49926, 48, 16, 19773, 14, 48437, 14, 7957, 14, 66, 14, 3423, 14, 22433, 14, 1542, 14, 29266, 14, 7973, 14, 24159, 15, 6535, 481, 187, 187, 20622, 42013, 14377, 13486, 243, 16401, 40309, 14129, 108, 24370, 15446, 108, 24553, 27727, 11016, 242, 4384, 6896, 209, 5225, 11827, 230, 15899, 216, 11016, 242, 29485, 4340, 187, 187, 40843, 233, 43216, 24553, 47905, 34609, 34260, 24553, 28154, 22329, 11827, 230, 15899, 216, 46791, 97, 6238, 12105, 46791, 97, 13610, 20833, 105, 42013, 4340, 187, 187, 31486, 33018, 12335, 544, 15507, 14, 30238, 14, 48437, 14, 16895, 880, 3614, 1358, 7280, 15, 681, 16, 10539, 864, 29519, 3620, 16, 15507, 14, 30238, 14, 48437, 14, 16895, 4, 1088, 1405, 10, 209, 20622, 16401, 22470, 229, 23366, 6238, 39465, 20287, 13764, 228, 17598, 102, 4384, 6896, 209, 22985, 226, 9850, 14486, 100, 44508, 224, 21275, 5225, 13180, 234, 22975, 4340, 25434, 20720, 39249, 18140, 187, 187, 12520, 3614, 1358, 4537, 14, 27716, 14, 29082, 15, 19706, 86, 15, 900, 16, 7798, 16, 24, 16, 2405, 16, 18467, 1796, 70, 1518, 2275, 68, 49342, 32, 88, 30, 46027, 7, 73, 30, 33964, 7, 71, 30, 42787, 7, 84, 30, 26, 1508, 2945, 10, 187, 187, 33018, 38242, 18678, 36359, 36750, 15962, 26795, 18434, 11827, 230, 15899, 216, 36387, 111, 29832, 119, 5225, 22975, 37286, 12105, 13610, 65, 54, 3129, 1419, 4305, 65, 20647, 222, 37661, 104, 29440, 42697, 4340, 21458, 22329, 28305, 5225, 34671, 12363, 218, 163, 214, 244, 33859, 24308, 5225, 6765, 218, 23373, 29734, 16385, 108, 14274, 24899, 6238, 48950, 38242, 65, 6756, 3711, 65, 5225, 32594, 49835, 108, 40564, 7719, 101, 6238, 65, 49309, 16, 3709, 65, 5225, 32594, 49835, 108, 29463, 38563, 38563, 4340, 187, 187, 29463, 24308, 15957, 219, 5225, 65, 54, 3129, 1419, 38156, 23836, 65, 5225, 22975, 16849, 236, 14129, 110, 7111, 226, 33018, 27727, 16740, 65, 12985, 27, 2032, 65, 4746, 65, 1148, 455, 27, 2032, 65, 6238, 33018, 34671, 162, 227, 241, 29440, 42697, 11827, 230, 15899, 216, 20647, 222, 37661, 104, 11016, 242, 29485, 4340, 33859, 24899, 40715, 28791, 33018, 39573, 45466, 544, 20855, 35072, 98, 880, 3614, 1358, 7280, 15, 681, 16, 48437, 14, 44665, 16, 814, 77, 1419, 4305, 14, 48437, 14, 16895, 10, 209, 37542, 20012, 362, 489, 14, 31010, 209, 5225, 544, 40715, 28791, 880, 3614, 1358, 7280, 15, 681, 16, 40781, 4305, 16, 40781, 14, 31010, 16, 23723, 16, 3620, 16, 24166, 49033, 40781, 16, 31010, 14, 10613, 16, 4658, 16, 5397, 16, 814, 77, 1419, 10976, 15, 4305, 10, 4340, 187, 187, 37661, 233, 11894, 228, 5225, 22975, 16849, 236, 9078, 235, 14377, 9078, 235, 14377, 27896, 45091, 46791, 97, 5225, 39673, 36213, 12105, 40693, 40951, 24893, 36168, 20005, 12613, 230, 4340, 44075, 25434, 65, 5036, 12863, 65, 4746, 65, 10531, 14, 4113, 65, 36359, 36750, 34446, 48991, 36548, 5225, 15962, 6238, 44075, 25434, 65, 5036, 12863, 65, 11827, 230, 15899, 216, 47961, 35724, 9078, 235, 14377, 818, 1976, 22421, 4340, 25276, 16877, 24553, 41197, 15962, 15962, 34671, 30903, 37661, 233, 11894, 228, 11016, 242, 29485, 6238, 33018, 37373, 20622, 40951, 24893, 36168, 20005, 12613, 230, 2634, 19560, 932, 65, 209, 18678, 44781, 6238, 29463, 65, 3866, 65, 5225, 20005, 30077, 44290, 23373, 6238, 37542, 20012, 29463, 2634, 25360, 65, 5225, 20005, 30077, 11827, 230, 15899, 216, 4340, 49344, 21998, 222, 11894, 232, 9850, 34372, 107, 25434, 65, 5036, 12863, 65, 20622, 43929, 15962, 5225, 15899, 216, 33018, 36387, 213, 20827, 212, 37657, 13486, 243, 16998, 229, 22044, 13486, 243, 37657, 16998, 229, 14274, 38563, 4340, 187, 187, 9078, 235, 14377, 33018, 29463, 9850, 40951, 42843, 16677, 11827, 102, 16677, 4384, 6896, 209, 5225, 12613, 230, 18140, 25434, 60, 19783, 14, 48437, 880, 3614, 1358, 7280, 15, 681, 16, 85, 1069, 5477, 16, 19783, 14, 48437, 10, 4746, 60, 38472, 3170, 471, 880, 3614, 1358, 7280, 15, 681, 16, 312, 603, 73, 16, 38472, 3170, 471, 10, 4340, 187, 187, 424, 19780, 120, 16800, 125, 41807, 9850, 20720, 6238, 12363, 218, 29268, 102, 9850, 20720, 65, 6219, 65, 43251, 14377, 21555, 221, 39429, 239, 4340, 22329, 14274, 11871, 216, 37373, 65, 7142, 65, 42013, 28305, 5225, 4666, 209, 15957, 219, 18957, 16800, 240, 23692, 233, 5690, 225, 2634, 23, 15, 26, 15, 19, 65, 3001, 2634, 25, 15, 883, 15, 20, 65, 6238, 11827, 230, 15899, 216, 11016, 242, 29485, 46239, 33474, 34671, 12363, 218, 17492, 9850, 18434, 24899, 165, 229, 242, 4340, 424, 187, 187, 13258, 121, 29766, 15367, 17559, 220, 30808, 11827, 230, 15899, 216, 22975, 37286, 17598, 102, 34179, 13610, 16385, 108, 14274, 24899, 5225, 164, 223, 214, 10041, 114, 28327, 29297, 33018, 17492, 6238, 46049, 41250, 18764, 32004, 18434, 5225, 13127, 235, 27707, 4340, 43251, 24553, 27374, 231, 28215, 116, 17492, 12363, 221, 40120, 6238, 43316, 17492, 9850, 22150, 217, 39573, 15531, 29918, 35321, 36359, 36750, 35724, 29297, 34671, 12363, 218, 17492, 13486, 243, 16998, 229, 6238, 43300, 12755, 114, 18751, 99, 21991, 18957, 16740, 44781, 17492, 6238, 30808, 14274, 28915, 125, 7249, 111, 4340, 9078, 235, 14274, 25434, 12363, 218, 29268, 102, 4666, 4746, 12363, 218, 29268, 102, 4384, 6896, 4746, 12363, 218, 29268, 102, 24553, 5225, 37661, 233, 11894, 228, 20241, 109, 34693, 214, 5225, 49835, 107, 23366, 47937, 44084, 24370, 5225, 36750, 13610, 21458, 25541, 211, 44006, 4340, 187, 187, 44075, 25434, 15367, 5941, 118, 65, 7142, 65, 29463, 5225, 12105, 164, 216, 124, 14129, 109, 5494, 228, 37895, 108, 27804, 5225, 5225, 854, 209, 15756, 118, 1668, 72, 209, 5225, 5959, 120, 33499, 6238, 20622, 16401, 19780, 119, 28154, 35724, 12105, 27896, 45091, 15962, 5225, 29427, 5941, 110, 46419, 24017, 19780, 119, 28154, 1052, 12, 19780, 115, 28305, 6238, 44290, 12335, 17492, 45091, 24899, 24893, 36168, 20005, 5225, 12613, 230, 6238, 43300, 46049, 14377, 29463, 5690, 211, 43244, 65, 38472, 3170, 471, 65, 4746, 65, 25360, 65, 6238, 46987, 12105, 12335, 17492, 25538, 24308, 15957, 219, 5225, 65, 48437, 21, 65, 6238, 65, 6219, 33, 25, 15, 883, 15, 20, 65, 4340, 187, 37661, 233, 11894, 228, 11016, 242, 29485, 22580, 113, 17576, 13610, 3218, 99, 18434, 24899, 165, 229, 242, 6238, 47961, 30423, 14274, 17559, 220, 30808, 14377, 5690, 211, 43244, 18764, 13127, 235, 27707, 5225, 41250, 18764, 4340, 187, 187, 12520, 3614, 1358, 4537, 14, 27716, 14, 29082, 15, 19706, 86, 15, 900, 16, 7798, 16, 24, 16, 1717, 16, 18467, 70, 22, 25772, 1678, 18, 69, 26, 8632, 32, 88, 30, 33608, 7, 73, 30, 21358, 7, 71, 30, 42787, 7, 84, 30, 14832, 3571, 10, 187, 187, 817, 19128, 14, 2809, 1170, 187, 187, 20622, 36359, 36750, 42843, 14274, 12105, 4384, 6896, 577, 209, 11827, 224, 34671, 18678, 24370, 5225, 162, 101, 213, 16549, 115, 6238, 25538, 10460, 104, 12105, 544, 1811, 484, 880, 3614, 1358, 7280, 15, 681, 16, 1811, 484, 16, 1811, 484, 10, 209, 34671, 18678, 24370, 42843, 36750, 35321, 5225, 6238, 29427, 24370, 13610, 4384, 6896, 374, 209, 13609, 29297, 36750, 35321, 17492, 6238, 18957, 35241, 13610, 4384, 6896, 577, 209, 46987, 12105, 34693, 241, 27727, 17492, 2634, 17635, 19128, 1608, 1170, 65, 21458, 65, 2189, 34721, 65, 20287, 14129, 104, 24553, 20287, 33859, 34439, 5225, 424, 162, 228, 218, 424, 4340, 187, 187, 14274, 32004, 20622, 42013, 9078, 235, 12105, 18764, 34671, 9850, 20720, 6238, 37215, 235, 14129, 99, 4384, 6896, 209, 12105, 45314, 36820, 65, 14444, 14, 2809, 1170, 65, 5225, 6238, 43300, 13610, 24553, 5225, 19780, 119, 28154, 13609, 43251, 20281, 36213, 20326, 65, 46998, 65, 5225, 39673, 36213, 13744, 122, 16787, 114, 39465, 7249, 111, 10962, 219, 4340, 187, 187, 36213, 20326, 65, 14444, 1608, 1170, 65, 20622, 16401, 11043, 242, 20287, 12105, 41140, 30329, 65, 1410, 23, 11911, 65, 209, 5225, 19127, 236, 13258, 212, 36114, 21734, 46291, 211, 21998, 222, 6238, 24370, 11827, 124, 18678, 5959, 105, 29463, 5225, 29440, 42697, 6238, 25276, 16877, 42055, 24553, 29463, 17492, 270, 1492, 209, 22470, 229, 23366, 5225, 22975, 16849, 236, 6238, 25434, 18140, 60, 46998, 14, 10192, 292, 14, 12540, 880, 3614, 1358, 46998, 4305, 15, 900, 16, 13880, 16, 257, 16, 46998, 14, 10192, 292, 14, 12540, 21714, 6238, 39465, 37215, 235, 14129, 99, 20281, 37373, 41202, 31902, 234, 11827, 230, 15899, 216, 21991, 65, 9784, 4305, 65, 6238, 20622, 43929, 29297, 20281, 14129, 104, 65, 14444, 1608, 1170, 65, 7249, 111, 10962, 219, 17492, 4340, 187, 187, 36359, 36750, 13610, 4384, 6896, 374, 209, 29766, 29427, 39465, 21232, 16385, 111, 29297, 45314, 36820, 41202, 31902, 234, 27707, 7249, 215, 24017, 4340, 25276, 16877, 46987, 18764, 14129, 104, 270, 1492, 209, 14274, 65, 16702, 11911, 65, 29297, 33018, 17492, 4340, 40715, 28791, 25434, 20720, 18140, 187, 187, 11202, 4305, 187, 605, 964, 46998, 3373, 187, 92, 187, 50276, 3, 10192, 1507, 1381, 544, 187, 50274, 9855, 12540, 995, 551, 187, 50272, 14825, 27, 3221, 13, 187, 50272, 1051, 187, 50274, 12084, 187, 50276, 62, 187, 94, 187, 11202, 187, 187, 19780, 120, 16800, 125, 41807, 9850, 20720, 34446, 854, 11335, 209, 19144, 17492, 6238, 44673, 14274, 18764, 13610, 29463, 65, 46998, 14, 10192, 292, 14, 265, 16321, 65, 44126, 44157, 17492, 6238, 44673, 12335, 65, 46998, 14, 10192, 292, 14, 12540, 65, 6238, 32313, 40500, 20855, 22701, 243, 544, 49218, 17559, 212, 6238, 46998, 14, 10192, 292, 14, 6620, 880, 3614, 1358, 20122, 9041, 13409, 15, 91, 5801, 11917, 15, 681, 16, 81, 16, 1717, 1235, 2526, 2227, 10, 4340, 187, 187, 817, 209, 20720, 26795, 18434, 28327, 41683, 187, 187, 14, 544, 29554, 162, 228, 118, 29554, 6238, 15446, 101, 24553, 12335, 24168, 24017, 5225, 28650, 125, 11043, 125, 29463, 4384, 6896, 21, 209, 14236, 20720, 14106, 880, 3614, 1358, 75, 489, 37525, 15, 303, 16, 5996, 16, 22, 67, 22, 69, 23, 69, 23, 71, 23, 15662, 26, 66, 2125, 453, 66, 3680, 66, 19758, 10, 187, 187, 817, 209, 23825, 230, 17955, 232, 29852, 216, 11894, 121, 187, 187, 14, 544, 9770, 6896, 577, 209, 21458, 44006, 19780, 115, 36361, 12335, 23373, 20616, 103, 880, 3614, 1358, 7280, 15, 681, 16, 12081, 33151, 14340, 16, 48437, 14, 395, 14, 1033, 66, 14, 22433, 10, 187, 14, 544, 9770, 6896, 209, 13609, 5225, 1930, 34721, 209, 22044, 12613, 232, 11894, 100, 13258, 225, 43244, 12335, 26443, 880, 3614, 1358, 20122, 9041, 13409, 15, 91, 5801, 11917, 15, 681, 16, 81, 16, 8320, 3583, 14403, 10, 187, 14, 544, 24553, 5225, 19128, 14, 2809, 1170, 209, 42843, 46049, 5690, 211, 43244, 12363, 115, 12335, 880, 3614, 1358, 20122, 9041, 13409, 15, 91, 5801, 11917, 15, 681, 16, 81, 16, 1237, 3245, 883, 3547, 10, 187, 14, 544, 25949, 4384, 6896, 209, 20855, 35072, 98, 5225, 7719, 227, 43033, 123, 880, 3614, 1358, 20122, 9041, 13409, 15, 91, 5801, 11917, 15, 681, 16, 81, 16, 1237, 16989, 23922, 10, 187, 14, 544, 14444, 14, 2809, 1170, 209, 21734, 20287, 13127, 235, 27707, 36750, 31811, 115, 428, 209, 39673, 24017, 163, 109, 218, 880, 3614, 1358, 20122, 9041, 13409, 15, 91, 5801, 11917, 15, 681, 16, 81, 16, 20, 10637, 2031, 1812, 10, 187, 14, 544, 49218, 17559, 212, 6238, 46998, 14, 10192, 292, 14, 6620, 880, 3614, 1358, 20122, 9041, 13409, 15, 91, 5801, 11917, 15, 681, 16, 81, 16, 1717, 1235, 2526, 2227, 10, 187 ]
> 本文作者来自 [华尔街见闻技术团队](https://www.zhihu.com/org/hua-er-jie-jian-wen-ji-zhu-tuan-dui-92/activities) - [花裤衩](https://github.com/PanJiaChen) 前几天 webpack 作者 [Tobias Koppers](https://github.com/sokra) 发布了一篇新的文章 [webpack 4.0 to 4.16: Did you know?](https://medium.com/webpack/webpack-4-0-to-4-16-did-you-know-71e25a57fa6b)(需翻墙),总结了一下`webpack 4`发布以来,做了哪些调整和优化。 并且说自己正在着手开发 `webpack 5`。 > Oh you are still on webpack 3. I’m sorry, what is blocking you? We already working on webpack 5, so your stack might be outdated soon… 翻译成中文就是: ![](https://user-gold-cdn.xitu.io/2018/7/27/164db1a2e089c151?w=690&h=200&f=jpeg&s=22433) 正好我也在使用一个文档生成工具 [docz](https://github.com/pedronauck/docz)(安利一波) 也最低需要`webpack 4+`,新版`webpack`性能提高了不少,而且`webpack 4` 都已经发布五个多月了,想必应该已经没什么坑了,应该可以安心的按照别人写的升级攻略升级了。之前一直迟迟不升级完全是被去年被 `webpack 3` 坑怕了。它在 `code splitting` 的情况下 `CommonsChunkPlugin`会完全失效。过了好一段时间才修复,欲哭无泪。 所以这次我等了快大半年才准备升级到`webpack 4` **但万万没想到还是遇到了不少的问题!** 有很多之前遗留的问题还是没有很好地解决。但最主要的问题还是它的文档有所欠缺,已经废除了的东西如`commonsChunkPlugin`还在官方文档中到处出现,很多重要的东西却一笔带过,甚至没写,需要用户自己去看源码才能解决。 还比如在`v4.16.0`版本中废除了`optimization.occurrenceOrder`、`optimization.namedChunks`、`optimization.hashedModuleIds`、`optimization.namedModules` 这几个配置项,替换成了`optimization.moduleIds` 和 `optimization.chunkIds`,但文档完中全没有任何体现,所以你在新版本中还按照文档那样配置其实是没有任何效果的。 最新最完整的文档还是看他项目的配置[WebpackOptions.json](https://github.com/webpack/webpack/blob/master/schemas/WebpackOptions.json),强烈建议遇到不清楚的配置项可以看这个,因为它一定保证是和最新代码同步的。 吐槽了这么多,我们言归正传。由于本次手摸手篇幅有些长,所以拆解成了上下两篇文章: - 上篇 -- 就是普通的在`webpack 3`的基础上升级,要做哪些操作和遇到了哪些坑 - 下篇 -- 是在`webpack 4`下怎么合理的打包和拆包,并且如何最大化利用 `long term caching` **本文章不是手摸手从零教你 webpack 配置,所以并不会讲太多很基础的配置问题**。比如如何处理 css 文件,如何配置 webpack-dev-server,讲述 file-loader 和 url-loader 之间的区别等等,有需求的推荐看 [官方文档](https://webpack.js.org/concepts/) 或者 [survivejs](https://survivejs.com/webpack/developing/webpack-dev-server/) 出的一个系列教程。或者推荐看我司的另一篇 wbepack 入门文章,已同步到 webpack4 [传送门](https://github.com/wallstreetcn/webpack-and-spa-guide)。 ## 升级篇 ### 前言 我一直认为模仿和借鉴是学习一个新东西最高效的方法。所以我建议还是通过借鉴一些成熟的 webpack 配置比较好。比如你项目是基于 react 生态圈的话可以借鉴 [create-react-app](https://github.com/facebook/create-react-app) ,下载之后`npm run eject` 就可以看到它详细的 webpack 配置了。vue 的话由于新版`vue cli`不支持 `eject`了,而且改用 [webpack-chain](https://github.com/mozilla-neutrino/webpack-chain)来配置,所以借鉴起来可能会不太方便,主要配置 [地址](https://github.com/vuejs/vue-cli/tree/dev/packages/@vue/cli-service/lib/config)。觉得麻烦的话你可以直接借鉴 `vue-element-admin` 的 [配置](https://github.com/PanJiaChen/vue-element-admin/pull/889)。或者你想自己发挥,你可以借鉴 webpack 官方的各种 [examples](https://github.com/webpack/webpack/tree/master/examples),来组合你的配置。 ### 升级 webpack 首先将 webpack 升级到 4 之后,直接运行`webpack --xxx`是不行的,因为新版本将命令行相关的东西单独拆了出去封装成了`webpack-cli`。会报如下错误: > The CLI moved into a separate package: webpack-cli. > Please install `webpack-cli` in addition to webpack itself to use the CLI. 所有你需要安装`npm install webpack-cli -D -S`。你也可将它安装在全局。 同时新版 webpack 需要`Node.js 的最低支持版本为 6.11.5`不要忘了升级。如果还需要维护老项目可以使用 [nvm](https://github.com/creationix/nvm) 来做一下 node 版本管理。 **升级所有依赖** 因为`webpack4`改了 它的`hook` api ,所以所有的`loaders`、`plugins`都需要升级才能够适配。 可以使用命令行 `npm outdated`,列出所以可以更新的包。免得再一个个去`npm`找相对于的可用版本了。 ![](https://user-gold-cdn.xitu.io/2018/7/27/164da832e18a97ef?w=890&h=346&f=jpeg&s=105563) 反正把`devDependencies`的依赖都升级一下,总归不会有错。 ### 带来的变化 其实这次升级带来了不少改变,但大部分其实对于普通用户来说是不需要关注的,比如这次升级带来的功能`SideEffects`、`Module Type’s Introduced`、`WebAssembly Support`,基本平时是用不到的。我们主要关注那些对我们影响比较大的改动如:`optimization.splitChunks`代替原有的`CommonsChunkPlugin`(下篇文章会着重介绍),和`Better Defaults-mode`更好的默认配置,这是大家稍微需要关注一下的。 ![](https://user-gold-cdn.xitu.io/2018/8/7/16513e81dfa85cbc?w=1460&h=398&f=jpeg&s=93966) > 如果想进一步了解 `Tree Shaking`和`SideEffects`的可见文末拓展阅读。 > _上图参考 [Webpack 4 进阶](https://zhuanlan.zhihu.com/p/35407642)_ ### 默认配置 webpack 4 引入了`零配置`的概念,被 [parcel](https://github.com/parcel-bundler/parcel) 刺激到了。 不管效果怎样,这改变还是值得称赞的。 > 最近又新出了 [Fastpack](http://fastpack.io/) 可以关注一下。 言归正题,我们来看看 webpack 默认帮我们做了些什么? `development` 模式下,默认开启了`NamedChunksPlugin` 和`NamedModulesPlugin`方便调试,提供了更完整的错误信息,更快的重新编译的速度。 ```diff module.exports = { + mode: 'development' - devtool: 'eval', - plugins: [ - new webpack.NamedModulesPlugin(), - new webpack.NamedChunksPlugin(), - new webpack.DefinePlugin({ "process.env.NODE_ENV": JSON.stringify("development") }), - ] } ``` `production` 模式下,由于提供了`splitChunks`和`minimize`,所以基本零配置,代码就会自动分割、压缩、优化,同时 webpack 也会自动帮你 `Scope hoisting` 和 `Tree-shaking`。 ```diff module.exports = { + mode: 'production', - plugins: [ - new UglifyJsPlugin(/* ... */), - new webpack.DefinePlugin({ "process.env.NODE_ENV": JSON.stringify("production") }), - new webpack.optimize.ModuleConcatenationPlugin(), - new webpack.NoEmitOnErrorsPlugin() - ] } ``` webpack 一直以来最饱受诟病的就是其配置门槛极高,配置内容极其复杂和繁琐,容易让人从入门到放弃,而它的后起之秀如 rollup、parcel 等均在配置流程上做了极大的优化,做到开箱即用,所以`webpack 4` 也从中借鉴了不少经验来提升自身的配置效率。**愿世间再也不需要 webpack 配置工程师**。 ## html-webpack-plugin 用最新版本的的 `html-webpack-plugin`你可能还会遇到如下的错误: `throw new Error('Cyclic dependency' + nodeRep)` 产生这个 bug 的原因是循环引用依赖,如果你没有这个问题可以忽略。 目前解决方案可以使用 Alpha 版本,`npm i --save-dev html-webpack-plugin@next` 或者加入`chunksSortMode: 'none'`就可以了。 但仔细查看文档发现设置成`chunksSortMode: 'none'`这样是会有问题的。 > Allows to control how chunks should be sorted before they are included to the HTML. 这属性会决定你 chunks 的加载顺序,如果设置为`none`,你的 chunk 加载在页面中加载的顺序就不能够保证了,可能会出现样式被覆盖的情况。比如我在`app.css`里面修改了一个第三方库`element-ui`的样式,通过加载顺序的先后来覆盖它,但由于设置为了`none`,打包出来的结果变成了这样: ```html <link href="/app.8945fbfc.css" rel="stylesheet" /> <link href="/chunk-elementUI.2db88087.css" rel="stylesheet" /> ``` `app.css`被先加载了,之前写的样式覆盖就失效了,除非你使用`important`或者其它 css 权重的方式覆盖它,但这明显是不太合理的。 `vue-cli`正好也有这个相关 [issue](https://github.com/vuejs/vue-cli/issues/1978#issuecomment-409267484),尤雨溪也在不使用`@next`版本的基础上 hack 了它,有兴趣的可以自己研究一下,本人在项目中直接使用了`@next`版本,也没遇到其它什么问题(除了不兼容 webpack 的 `prefetch/preload` 相关 [issue](https://github.com/jantimon/html-webpack-plugin/issues/934))。两种方案都可以,自行选择。 其它 `html-webpack-plugin` 的配置和之前使用没有什么区别。 ## mini-css-extract-plugin ### 与 extract-text-webpack-plugin 区别 由于`webpack4`对 css 模块支持的完善以及在处理 css 文件提取的方式上也做了些调整,所以之前我们一直使用的`extract-text-webpack-plugin`也完成了它的历史使命,将让位于`mini-css-extract-plugin`。 使用方式也很简单,大家看着 [文档](https://github.com/webpack-contrib/mini-css-extract-plugin#minimal-example) 抄就可以了。 它与`extract-text-webpack-plugin`最大的区别是:它在`code spliting`的时候会将原先内联写在每一个 js `chunk bundle`的 css,单独拆成了一个个 css 文件。 原先 css 是这样内联在 js 文件里的: ![](https://user-gold-cdn.xitu.io/2018/7/24/164cb85b234d224a?w=2534&h=98&f=jpeg&s=50714) 将 css 独立拆包最大的好处就是 js 和 css 的改动,不会影响对方。比如我改了 js 文件并不会导致 css 文件的缓存失效。而且现在它自动会配合`optimization.splitChunks`的配置,可以自定义拆分 css 文件,比如我单独配置了`element-ui`作为单独一个`bundle`,它会自动也将它的样式单独打包成一个 css 文件,不会像以前默认将第三方的 css 全部打包成一个几十甚至上百 KB 的`app.xxx.css`文件了。 ![](https://user-gold-cdn.xitu.io/2018/7/24/164cbd49dc148656?w=516&h=254&f=png&s=73856) ### 压缩与优化 打包 css 之后查看源码,我们发现它并没有帮我们做代码压缩,这时候需要使用 [optimize-css-assets-webpack-plugin](https://github.com/NMFR/optimize-css-assets-webpack-plugin) 这个插件,它不仅能帮你压缩 css 还能优化你的代码。 ```js //配置 optimization: { minimizer: [new OptimizeCSSAssetsPlugin()] } ``` ![](https://user-gold-cdn.xitu.io/2018/7/30/164e93dc299d7062?w=1778&h=764&f=jpeg&s=198182) 如上图测试用例所示,由于`optimize-css-assets-webpack-plugin`这个插件默认使用了 [cssnano](https://github.com/cssnano/cssnano) 来作 css 优化, 所以它不仅压缩了代码、删掉了代码中无用的注释、还去除了冗余的 css、优化了 css 的书写顺序,优化了你的代码 `margin: 10px 20px 10px 20px;` =>`margin:10px 20px;`。同时大大减小了你 css 的文件大小。更多优化的细节见[文档](https://cssnano.co/guides/optimisations)。 ### contenthash 但使用 `MiniCssExtractPlugin` 有一个需求特别注意的地方,在默认文档中它是这样配置的: ```js new MiniCssExtractPlugin({ // Options similar to the same options in webpackOptions.output // both options are optional filename: devMode ? '[name].css' : '[name].[hash].css', chunkFilename: devMode ? '[id].css' : '[id].[hash].css' }) ``` > 简单说明一下: `filename` 是指在你入口文件`entry`中引入生成出来的文件名,而`chunkname`是指那些未被在入口文件`entry`引入,但又通过按需加载(异步)模块的时候引入的文件。 在 **copy** 如上代码使用之后发现情况不对!每次改动一个`xx.js`文件,它对应的 css 虽然没做任何改动,但它的 文件 hash 还是会发生变化。仔细对比发现原来是 `hash` 惹的祸。 `6.f3bfa3af.css` => `6.40bc56f6.css` ![](https://user-gold-cdn.xitu.io/2018/7/24/164cbe27801ebf69?w=1214&h=308&f=png&s=162463) 但我这是根据官方文档来写的!为什么还有问题!后来在文档的**最最最**下面发下了这么一段话! > For long term caching use filename: `[contenthash].css`. Optionally add [name]. 非常的不理解,这么关键的一句话会放在 `Maintainers` 还后面的地方,默认写在配置里面提示大家不是更好?有热心群众已经开了一个`pr`,将文档默认配置为 `contenthash`。`chunkhash` => `contenthash`相关 [issue](https://github.com/webpack/webpack.js.org/issues/2096)。 这个真的蛮过分的,稍不注意就会让自己的 css 文件缓存无效。而且很多用户平时修改代码的时候都不会在意自己最终打包出来的 `dist`文件夹中到底有哪些变化。所以这个问题可能就一直存在了。浪费了多少资源!人艰不拆!大家觉得 webpack 难用不是没道理的。 **补充一点**:目前`MiniCssExtractPlugin`也不是非常完美的,它现在默认会将每个 bundle 的 css 独立于 js 文件, 单独拆成一个 css 文件。但这样会产生一个新的问题。比如我有一个页面它只有一行 css,但也会被拆成了一个独立的 css 文件,还需要额外的一次 http 请求,非常的不合理。所以我就给官方提了一个 [issue](https://github.com/webpack-contrib/mini-css-extract-plugin/issues/234),呼吁增加一个`minSize`,当 css 的内容小于这个`size`的时候还是内联到 js 文件中,期待官方增加这个功能。 ### 这里再简单说明一下几种 hash 的区别: - **hash** `hash` 和每次 `build`有关,没有任何改变的情况下,每次编译出来的 `hash`都是一样的,但当你改变了任何一点东西,它的`hash`就会发生改变。 简单理解,你改了任何东西,`hash` 就会和上次不一样了。 - **chunkhash** `chunkhash`是根据具体每一个模块文件自己的的内容包括它的依赖计算所得的`hash`,所以某个文件的改动只会影响它本身的`hash`,不会影响其它文件。 - **contenthash** 它的出现主要是为了解决,让`css`文件不受`js`文件的影响。比如`foo.css`被`foo.js`引用了,所以它们共用相同的`chunkhash`值。但这样子是有问题的,如果`foo.js`修改了代码,`css`文件就算内容没有任何改变,由于是该模块的 `hash` 发生了改变,其`css`文件的`hash`也会随之改变。 这个时候我们就可以使用`contenthash`了,保证即使`css`文件所处的模块里有任何内容的改变,只要 css 文件内容不变,那么它的`hash`就不会发生变化。 `contenthash` 你可以简单理解为是 `moduleId` + `content` 所生成的 `hash`。 ## 热更新速度 其实相对 webpack 线上打包速度,我更关心的本地开发热更新速度,毕竟这才是和我们每一个程序员每天真正打交道的东西,打包一般都会扔给`CI`自动执行,而且一般项目每天也不会打包很多次。 `webpack 4`一直说自己更好的利用了`cache`提高了编译速度,但实测发现是有一定的提升,但当你一个项目,路由懒加载的页面多了之后,50+之后,热更新慢的问题会很明显,之前的[文章](https://juejin.im/post/595b4d776fb9a06bbe7dba56#heading-1)中也提到过这个问题,原以为新版本会解决这个问题,但并没有。 不过你首先要排斥你的热更新慢不是,如: - 没有使用合理的 [Devtool](https://webpack.js.org/configuration/devtool/#devtool) souce map 导致 - 没有正确使用 [exclude/include](https://webpack.js.org/configuration/module/#rule-include) 处理了不需要处理的如`node_modules` - 在开发环境不要压缩代码`UglifyJs`、提取 css、babel polyfill、计算文件 hash 等不需要的操作 **旧方案** 最早的方案是开发环境中不是用路由懒加载了,只在线上环境中使用。封装一个`_import`函数,通过环境变区分是否需要懒加载。 开发环境: ```js module.exports = file => require('@/views/' + file + '.vue').default ``` 生成环境: ```js module.exports = file => () => import('@/views/' + file + '.vue') ``` 但由于 webpack `import`实现机制问题,会产生一定的副作用。如上面的写法就会导致`@/views/`下的 所有`.vue` 文件都会被打包。不管你是否被依赖引用了,会多打包一些可能永远都用不到 js 代码。 [相关 issue](https://github.com/PanJiaChen/vue-element-admin/issues/292) 目前新的解决方案思路还是一样的,只在生成模式中使用路由懒加载,本地开发不使用懒加载。但换了一种没副作用的实现方式。 **新方案** 使用`babel` 的 `plugins` [babel-plugin-dynamic-import-node](https://github.com/airbnb/babel-plugin-dynamic-import-node)。它只做一件事就是:将所有的`import()`转化为`require()`,这样就可以用这个插件将所有异步组件都用同步的方式引入了,并结合 [BABEL_ENV](https://babeljs.io/docs/usage/babelrc/#env-option) 这个`bebel`环境变量,让它只作用于开发环境下。将开发环境中所有`import()`转化为`require()`,这种方案解决了之前重复打包的问题,同时对代码的侵入性也很小,你平时写路由的时候只需要按照官方[文档](https://router.vuejs.org/zh/guide/advanced/lazy-loading.html)路由懒加载的方式就可以了,其它的都交给`babel`来处理,当你不想用这个方案的时候,也只需要将它从`babel` 的 `plugins`中移除就可以了。 **具体代码:** 首先在`package.json`中增加`BABEL_ENV` ```json "dev": "BABEL_ENV=development webpack-dev-server XXXX" ``` 接着在`.babelrc`只能加入`babel-plugin-dynamic-import-node`这个`plugins`,并让它只有在`development`模式中才生效。 ```json { "env": { "development": { "plugins": ["dynamic-import-node"] } } } ``` 之后就大功告成了,路由只要像平时一样写就可以了。[文档](https://panjiachen.github.io/vue-element-admin-site/zh/guide/advanced/lazy-loading.html#%E6%96%B0%E6%96%B9%E6%A1%88) ```js { path: '/login', component: () => import('@/views/login/index')} ``` 这样能大大提升你热更新的速度。基本两百加页面也能在`2000ms`的热跟新完成,基本做到无感刷新。当然你的项目本身就不大页面也不多,完全没必要搞这些。**当你的页面变化跟不是你写代码速度的时候再考虑也不迟。** ## 打包速度 `webpack 4` 在项目中实际测了下,普遍能提高 20%~30%的打包速度。 本文不准备太深入的讲解这部分内容,详细的打包优化速度可以参考[ slack 团队的这篇文章](https://slack.engineering/keep-webpack-fast-a-field-guide-for-better-build-performance-f56a5995e8f1),掘金还有[译文](https://github.com/xitu/gold-miner/blob/master/TODO/keep-webpack-fast-a-field-guide-for-better-build-performance.md). 这里有几个建议来帮你加速 webpack 的打包速度。 首先你需要知道你目前打包慢,是慢在哪里。 我们可以用 [speed-measure-webpack-plugin](https://github.com/stephencookdev/speed-measure-webpack-plugin#readme) 这个插件,它能监控 webpack 每一步操作的耗时。如下图: ![](https://user-gold-cdn.xitu.io/2018/7/31/164eee200ebc1911?w=554&h=492&f=jpeg&s=92342) 可以看出其实大部分打包花费的时间是在`Uglifyjs`压缩代码。和前面的提升热更新的切入点差不多,查看`source map`的正确与否,`exclude/include`的正确使用等等。 使用新版的`UglifyJsPlugin`的时候记住可以加上`cache: true`、`parall: true`,可以提搞代码打包压缩速度。更多配置可以参考 [文档](https://github.com/webpack-contrib/uglifyjs-webpack-plugin) 或者 vue-cli 的 [配置](https://github.com/vuejs/vue-cli/blob/dev/packages/@vue/cli-service/lib/config/uglifyOptions.js)。 编译的时候还有还有一个很慢的原因是那些第三方库。比如`echarts`、`element-ui`其实都非常的大,比如`echarts`打包完也还有 775kb。所以你想大大提高编译速度,可以将这些第三方库 `externals` 出去,使用`script`的方式引入,或者使用 `dll`的方式打包。经测试一般如`echarts`这样大的包可以节省十几秒到几十秒不等。 还有可以使用一些并行执行 webpack 的库:如[parallel-webpack](https://github.com/trivago/parallel-webpack)、[happypack](https://github.com/amireh/happypack)。 **顺便说一下,升级一下`node`可能有惊喜。前不久将`CI`里面的 node 版本依赖从 `6.9.2` => `8.11.3`,打包速度直接提升了一分多钟。** 总之我觉得打包时间控制在差不多的范围内就可以了,没必要过分的优化。可能你研究了半天,改了一堆参数发现其实也就提升了几秒,但维护成本上去了,得不偿失。还不如升级 node、升级 webpack、升级你的编译环境的硬件水平来的实在和简单。 比如我司`CI`使用的是腾讯云普通的的 8 核 16g 的机器,这个项目也是一个很大的后台管理项目 200+页面,引用了很多第三方的库,但没有使用什么`happypack`、`dll`,只是用了最新版的`webpack4`,`[email protected]`。 编译速度稳定在两分多钟,完全不觉得有什么要优化的必要。 ![](https://user-gold-cdn.xitu.io/2018/7/29/164e5366dd1d9dec?w=896&h=236&f=jpeg&s=22563) ## Tree-Shaking 这其实并不是 webpack 4 才提出来的概念,最早是 [rollup](https://github.com/rollup/rollup) 提出来并实现的,后来在 webpack 2 中就实现了,本次在 webpack 4 只是增加了 `JSON Tree Shaking`和`sideEffects`能让你能更好的**摇**。 不过这里还是要提一下,默认 webpack 是支持`Tree-Shaking`的,但在你的项目中可能会因为`babel`的原因导致它失效。 因为`Tree Shaking`这个功能是基于`ES6 modules` 的静态特性检测,来找出未使用的代码,所以如果你使用了 babel 插件的时候,如:[babel-preset-env](https://babeljs.io/docs/en/babel-preset-env/),它默认会将模块打包成`commonjs`,这样就会让`Tree Shaking`失效了。 其实在 webpack 2 之后它自己就支持模块化处理。所以只要让 babel 不`transform modules`就可以了。配置如下: ```js // .babelrc { "presets": [ ["env", { modules: false, ... }] ] } ``` 顺便说一下都 8102 年了,请不要在使用`babel-preset-esxxxx`系列了,请用`babel-preset-env`,相关文章 [再见,babel-preset-2015](https://zhuanlan.zhihu.com/p/29506685)。 ## 下部分内容 - [手摸手,带你用合理的姿势使用 webpack4 (下)](https://juejin.im/post/5b5d6d6f6fb9a04fea58aabc) ## 拓展阅读 - [Webpack 4 和单页应用入门](https://github.com/wallstreetcn/webpack-and-spa-guide) - [Webpack 中的 sideEffects 到底该怎么用?](https://zhuanlan.zhihu.com/p/40052192) - [你的 Tree-Shaking 并没什么卵用](https://zhuanlan.zhihu.com/p/32831172) - [对 webpack 文档的吐槽](https://zhuanlan.zhihu.com/p/32148338) - [Tree-Shaking 性能优化实践 - 原理篇](https://zhuanlan.zhihu.com/p/32554436) - [再见,babel-preset-2015](https://zhuanlan.zhihu.com/p/29506685)
214,378
Github
[ 3122, 187, 20968, 313, 68, 10, 4240, 34520, 6725, 390, 271, 34520, 26582, 2567, 15, 1876, 3570, 10827, 15, 187, 187, 49124, 8821, 762, 253, 14325, 4637, 13, 11099, 374, 15, 17, 313, 783, 346, 17736, 3287, 187, 5658, 778, 417, 897, 436, 1873, 3707, 275, 10276, 342, 253, 4637, 15, 187, 1394, 778, 4044, 247, 3491, 273, 253, 4637, 387, 535, 50274, 2413, 1358, 2700, 15, 8418, 15, 2061, 16, 17130, 16, 17821, 14, 19, 15, 17, 187, 187, 28645, 2424, 407, 7763, 1569, 390, 5821, 281, 275, 4028, 13, 3694, 187, 45618, 762, 253, 4637, 310, 5939, 327, 271, 346, 1719, 4110, 3, 23440, 13, 187, 24906, 7310, 15466, 4145, 22998, 3481, 9103, 19329, 13, 2057, 3890, 390, 10466, 15, 187, 5035, 253, 4637, 323, 253, 2173, 3448, 13200, 15607, 285, 187, 17465, 569, 762, 253, 4637, 15, 187, 8480, 187, 187, 605, 30454, 4610, 310, 908, 281, 13199, 4610, 281, 353, 5883, 187, 10708, 4610, 187, 187, 2948, 313, 187, 186, 3, 2606, 3, 535, 186, 78, 3591, 10121, 346, 7280, 15, 681, 16, 36964, 4330, 16, 28936, 14, 19879, 14, 20649, 16, 19910, 16, 10121, 3, 187, 186, 3899, 580, 18, 346, 76, 25, 84, 15, 900, 16, 522, 303, 607, 16029, 16, 19910, 16, 30053, 16, 13518, 16, 87, 18, 3, 187, 10, 187, 187, 605, 23472, 13457, 11909, 4428, 4278, 323, 26736, 247, 5268, 15, 187, 881, 23472, 13457, 11909, 1577, 551, 187, 186, 605, 465, 4338, 6155, 4505, 310, 253, 1854, 281, 247, 465, 4338, 5397, 1873, 15, 187, 186, 44, 4338, 6155, 4505, 2876, 187, 186, 605, 2997, 8590, 15668, 13067, 253, 31884, 10478, 2197, 407, 8548, 672, 12873, 281, 247, 4771, 13, 49776, 253, 187, 186, 605, 4284, 1318, 273, 686, 13259, 16, 8456, 5983, 831, 1673, 588, 1453, 512, 10291, 281, 253, 4771, 908, 407, 247, 1798, 187, 186, 605, 5268, 15, 187, 186, 29011, 8590, 15668, 2876, 187, 186, 605, 2600, 2548, 310, 253, 2600, 1511, 908, 672, 10430, 941, 281, 253, 4771, 432, 436, 5268, 15, 187, 186, 8590, 2548, 2876, 187, 186, 605, 2805, 793, 5760, 253, 1180, 273, 19241, 591, 1273, 4136, 323, 436, 4602, 15, 187, 186, 50, 3299, 8253, 1237, 187, 186, 605, 12948, 4483, 4465, 19241, 281, 29010, 672, 247, 5268, 310, 27433, 697, 2281, 15, 187, 186, 21784, 296, 540, 187, 94, 187, 187, 605, 21585, 8929, 11909, 4428, 5145, 16012, 187, 605, 559, 76, 25, 84, 27, 22412, 12557, 14, 1541, 27, 2388, 6511, 30, 76, 25, 84, 15, 900, 16, 522, 303, 607, 16029, 16, 19910, 16, 21005, 15, 4241, 187, 881, 21585, 8929, 11909, 1577, 551, 187, 186, 3899, 580, 18, 15, 2548, 23062, 535, 186, 605, 12953, 275, 8357, 7368, 275, 534, 9763, 651, 1007, 323, 253, 5300, 15, 187, 186, 28825, 2876, 535, 186, 605, 2245, 310, 253, 2245, 326, 253, 9763, 14, 20649, 434, 3944, 2579, 6613, 327, 15, 187, 186, 11688, 540, 1237, 187, 186, 605, 2953, 310, 253, 8153, 2953, 281, 5752, 327, 313, 1178, 281, 470, 15, 17, 15, 17, 15, 17, 323, 512, 19069, 481, 187, 186, 12236, 2876, 187, 186, 605, 18189, 14725, 310, 253, 11716, 323, 9005, 3238, 15, 187, 186, 22740, 14725, 2876, 187, 186, 605, 1716, 6259, 6910, 19158, 6113, 310, 253, 1180, 273, 4666, 5113, 326, 403, 187, 186, 605, 4136, 281, 20319, 35046, 15, 10374, 1063, 1180, 426, 625, 20876, 7632, 13, 187, 186, 605, 533, 625, 12874, 313, 395, 2990, 10, 3301, 15, 187, 186, 1773, 6259, 6910, 19158, 6113, 540, 1237, 535, 186, 605, 8046, 44800, 4837, 13276, 27866, 3066, 4384, 5673, 3167, 27, 631, 16, 13125, 16, 377, 287, 71, 16, 187, 186, 27265, 44800, 4837, 7301, 187, 186, 605, 8046, 2861, 1075, 44800, 4837, 13276, 5569, 16422, 27866, 13, 604, 8046, 44800, 4837, 310, 2032, 15, 187, 186, 27265, 2861, 1075, 44800, 4837, 7301, 187, 186, 605, 2600, 2548, 310, 2600, 2548, 273, 9762, 2197, 281, 1049, 9141, 332, 15, 187, 186, 8590, 2548, 2876, 187, 186, 605, 465, 4338, 11252, 50, 3299, 310, 253, 1165, 3299, 281, 897, 1223, 5015, 342, 465, 27419, 1049, 9141, 332, 15, 187, 186, 44, 4338, 11252, 50, 3299, 8253, 1237, 187, 186, 605, 465, 4338, 2088, 5472, 321, 296, 310, 253, 12948, 281, 897, 1223, 5015, 342, 465, 27419, 1049, 9141, 332, 15, 187, 186, 44, 4338, 2088, 5472, 321, 296, 540, 1237, 187, 186, 605, 6657, 38, 1788, 13067, 253, 6661, 273, 6657, 6132, 5268, 15, 187, 186, 28749, 254, 38, 1788, 278, 3591, 10121, 15, 28749, 254, 38, 1788, 11909, 187, 186, 605, 1359, 1048, 281, 3343, 875, 4983, 9763, 15071, 187, 186, 8929, 8252, 27068, 1313, 580, 18, 15, 24921, 187, 186, 605, 1054, 2632, 6665, 35159, 310, 253, 501, 6665, 2180, 275, 4887, 641, 28, 588, 320, 3632, 875, 187, 186, 605, 1054, 2632, 6665, 35159, 285, 374, 11, 1222, 2632, 6665, 35159, 15, 187, 186, 10292, 2632, 6665, 35159, 1313, 580, 18, 15, 24921, 535, 186, 605, 18731, 10976, 310, 253, 873, 273, 4610, 281, 873, 281, 5416, 5252, 273, 9763, 187, 186, 52, 33816, 10976, 18731, 10976, 535, 186, 605, 6910, 32352, 310, 253, 2876, 273, 1929, 16459, 17853, 4431, 15, 1310, 667, 273, 841, 16459, 32352, 310, 873, 323, 247, 22639, 2180, 13, 253, 5145, 50276, 9846, 320, 8884, 4242, 285, 588, 7932, 15, 187, 186, 6910, 17853, 4431, 2876, 535, 186, 605, 36173, 13871, 11200, 15714, 31087, 32357, 310, 247, 39169, 14, 49741, 2876, 273, 2390, 281, 873, 28551, 10669, 434, 346, 14399, 14, 24124, 14, 12896, 3, 1673, 281, 15, 187, 186, 36173, 13871, 11200, 15714, 31087, 32357, 2876, 187, 94, 187, 187, 605, 18731, 10976, 403, 908, 281, 20486, 253, 5170, 14, 17465, 285, 2406, 14, 17465, 187, 605, 1223, 3596, 981, 24250, 273, 5145, 4531, 5113, 187, 881, 18731, 10976, 1577, 551, 187, 186, 605, 6865, 483, 313, 249, 16547, 435, 279, 10, 908, 1223, 8869, 273, 187, 186, 605, 247, 5145, 1078, 352, 310, 8884, 347, 4242, 187, 186, 32192, 47731, 20780, 1313, 580, 18, 15, 24921, 187, 186, 605, 6865, 483, 313, 249, 16547, 435, 279, 10, 908, 1223, 1786, 14, 5903, 273, 187, 186, 605, 247, 5145, 1078, 352, 310, 8884, 347, 4242, 187, 186, 32192, 19895, 20780, 1313, 580, 18, 15, 24921, 187, 186, 605, 3315, 18115, 15, 1621, 1055, 15, 6865, 483, 313, 249, 16547, 435, 279, 10, 908, 1223, 44636, 273, 5145, 1078, 17404, 13, 187, 186, 605, 4457, 534, 352, 3490, 2920, 8812, 265, 5145, 187, 186, 32192, 37, 1949, 20780, 1313, 580, 18, 15, 24921, 187, 186, 605, 32642, 1180, 273, 2069, 612, 882, 84, 651, 320, 9919, 327, 247, 7360, 323, 352, 310, 49375, 16737, 187, 186, 605, 1309, 44636, 273, 247, 5145, 15, 187, 186, 9684, 12018, 882, 9795, 2246, 540, 1237, 187, 186, 605, 6865, 483, 313, 249, 7467, 10, 908, 1223, 6179, 323, 22605, 281, 42103, 187, 186, 49, 87, 8486, 607, 20780, 1313, 580, 18, 15, 24921, 535, 186, 605, 6865, 483, 313, 249, 7467, 10, 323, 534, 253, 4097, 1830, 17188, 476, 320, 1066, 1078, 187, 186, 605, 11165, 253, 5145, 9763, 13831, 407, 5252, 9763, 187, 186, 32192, 52, 33816, 2088, 1830, 17188, 9505, 9063, 20780, 1313, 580, 18, 15, 24921, 187, 186, 605, 25792, 313, 249, 16547, 435, 279, 10, 908, 281, 8461, 323, 33260, 657, 12822, 187, 186, 605, 407, 5252, 9763, 187, 186, 32192, 52, 33816, 3980, 15671, 11804, 84, 35159, 1313, 580, 18, 15, 24921, 187, 186, 605, 25792, 313, 249, 7467, 10, 908, 281, 8461, 323, 4097, 1830, 17188, 434, 1786, 187, 186, 605, 407, 5252, 9763, 187, 186, 32192, 52, 33816, 2088, 1830, 17188, 9505, 9063, 35159, 1313, 580, 18, 15, 24921, 535, 186, 605, 8990, 9438, 688, 4507, 8252, 4769, 281, 1978, 3540, 273, 253, 187, 186, 605, 1265, 673, 273, 672, 253, 4097, 1830, 254, 735, 497, 417, 3986, 494, 187, 186, 11252, 9438, 688, 4507, 8252, 4769, 673, 15, 4769, 187, 186, 605, 21585, 8929, 39, 287, 5282, 6492, 604, 253, 5145, 9763, 187, 186, 605, 310, 13831, 1955, 281, 914, 21943, 494, 4097, 1830, 254, 735, 187, 186, 32192, 8929, 39, 287, 5282, 7301, 187, 94, 187, 187, 605, 23387, 38, 1788, 11909, 13067, 253, 6661, 273, 6657, 6132, 187, 605, 8548, 323, 4295, 326, 476, 1408, 342, 6657, 6132, 11410, 15, 187, 881, 23387, 38, 1788, 11909, 1577, 551, 187, 186, 605, 6657, 21749, 13276, 247, 6657, 6132, 5268, 281, 6351, 9550, 187, 186, 605, 1078, 24364, 253, 2022, 6287, 15, 34747, 436, 672, 3515, 37221, 187, 186, 605, 4295, 323, 1029, 11659, 15, 187, 186, 28749, 254, 21749, 7301, 187, 186, 605, 16959, 24921, 310, 253, 7467, 326, 1327, 14, 39892, 9183, 588, 3343, 187, 186, 605, 846, 20764, 247, 9550, 29956, 1919, 13756, 281, 16270, 187, 186, 605, 9550, 273, 247, 3977, 533, 440, 35358, 264, 6657, 15239, 15, 831, 310, 8069, 253, 187, 186, 605, 4869, 7467, 326, 247, 6657, 476, 320, 6331, 1078, 352, 310, 7932, 187, 186, 605, 407, 1529, 7431, 15, 831, 310, 760, 7763, 604, 6657, 6132, 310, 187, 186, 605, 11410, 15, 187, 186, 4015, 511, 24921, 1313, 580, 18, 15, 24921, 187, 186, 605, 10660, 36205, 1282, 310, 253, 7726, 875, 9437, 407, 253, 8534, 6303, 281, 187, 186, 605, 10660, 247, 9550, 15239, 1078, 352, 14545, 4283, 15, 831, 1364, 320, 1679, 187, 186, 605, 685, 390, 4503, 281, 253, 16959, 7467, 15, 831, 310, 760, 7763, 604, 6657, 187, 186, 605, 6132, 310, 11410, 15, 187, 186, 29099, 999, 36205, 1282, 1313, 580, 18, 15, 24921, 187, 186, 605, 47327, 35159, 310, 253, 7467, 253, 8548, 943, 3343, 875, 13756, 187, 186, 605, 11931, 285, 29956, 273, 247, 9550, 15, 831, 310, 760, 7763, 604, 187, 186, 605, 6657, 6132, 310, 11410, 15, 187, 186, 51, 5704, 35159, 1313, 580, 18, 15, 24921, 187, 186, 605, 7741, 18703, 6492, 253, 7741, 1789, 1511, 326, 588, 320, 908, 281, 5569, 187, 186, 605, 1309, 6657, 6132, 11945, 15, 187, 186, 11133, 18703, 2876, 187, 94, 187 ]
/* Copyright (c) 2017 SAP SE or an SAP affiliate company. All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ // Package options is used to specify options to MCM package options import ( "time" mcmoptions "github.com/gardener/machine-controller-manager/pkg/options" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" ) // ClientConnectionConfiguration contains details for constructing a client. type ClientConnectionConfiguration struct { // kubeConfigFile is the path to a kubeconfig file. KubeConfigFile string // acceptContentTypes defines the Accept header sent by clients when connecting to a server, overriding the // default value of 'application/json'. This field will control all connections to the server used by a particular // client. AcceptContentTypes string // contentType is the content type used when sending data to the server from this client. ContentType string // qps controls the number of queries per second allowed for this connection. QPS float32 // burst allows extra queries to accumulate when a client is exceeding its rate. Burst int } // MachineControllerConfiguration contains machine configurations // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object type MachineControllerConfiguration struct { metav1.TypeMeta // namespace in seed cluster in which controller would look for the resources. Namespace string // port is the port that the controller-manager's http service runs on. Port int32 // address is the IP address to serve on (set to 0.0.0.0 for all interfaces). Address string // CloudProvider is the provider for cloud services. CloudProvider string // ConcurrentNodeSyncs is the number of node objects that are // allowed to sync concurrently. Larger number = more responsive nodes, // but more CPU (and network) load. ConcurrentNodeSyncs int32 // enableProfiling enables profiling via web interface host:port/debug/pprof/ EnableProfiling bool // enableContentionProfiling enables lock contention profiling, if enableProfiling is true. EnableContentionProfiling bool // contentType is contentType of requests sent to apiserver. ContentType string // kubeAPIQPS is the QPS to use while talking with kubernetes apiserver. KubeAPIQPS float32 // kubeAPIBurst is the burst to use while talking with kubernetes apiserver. KubeAPIBurst int32 // leaderElection defines the configuration of leader election client. LeaderElection mcmoptions.LeaderElectionConfiguration // How long to wait between starting controller managers ControllerStartInterval metav1.Duration // minResyncPeriod is the resync period in reflectors; will be random between // minResyncPeriod and 2*minResyncPeriod. MinResyncPeriod metav1.Duration // SafetyOptions is the set of options to set to ensure safety of controller SafetyOptions SafetyOptions //NodeCondition is the string of known NodeConditions. If any of these NodeCondition is set for a timeout period, the machine will be declared failed and will replaced. NodeConditions string //BootstrapTokenAuthExtraGroups is a comma-separated string of groups to set bootstrap token's "auth-extra-groups" field to. BootstrapTokenAuthExtraGroups string } // SafetyOptions are used to configure the upper-limit and lower-limit // while configuring freezing of machineSet objects type SafetyOptions struct { // Timeout (in durartion) used while creation of // a machine before it is declared as failed MachineCreationTimeout metav1.Duration // Timeout (in durartion) used while health-check of // a machine before it is declared as failed MachineHealthTimeout metav1.Duration // Deprecated. No effect. Timeout (in durartion) used while draining of machine before deletion, // beyond which it forcefully deletes machine MachineDrainTimeout metav1.Duration // Maximum number of times evicts would be attempted on a pod for it is forcibly deleted // during draining of a machine. MaxEvictRetries int32 // Timeout (in duration) used while waiting for PV to detach PvDetachTimeout metav1.Duration // Timeout (in duration) for which the APIServer can be down before // declare the machine controller frozen by safety controller MachineSafetyAPIServerStatusCheckTimeout metav1.Duration // Period (in durartion) used to poll for orphan VMs // by safety controller MachineSafetyOrphanVMsPeriod metav1.Duration // Period (in duration) used to poll for APIServer's health // by safety controller MachineSafetyAPIServerStatusCheckPeriod metav1.Duration // APIserverInactiveStartTime to keep track of the // start time of when the APIServers were not reachable APIserverInactiveStartTime time.Time // MachineControllerFrozen indicates if the machine controller // is frozen due to Unreachable APIServers MachineControllerFrozen bool } // LeaderElectionConfiguration defines the configuration of leader election // clients for components that can run with leader election enabled. type LeaderElectionConfiguration struct { // leaderElect enables a leader election client to gain leadership // before executing the main loop. Enable this when running replicated // components for high availability. LeaderElect bool // leaseDuration is the duration that non-leader candidates will wait // after observing a leadership renewal until attempting to acquire // leadership of a led but unrenewed leader slot. This is effectively the // maximum duration that a leader can be stopped before it is replaced // by another candidate. This is only applicable if leader election is // enabled. LeaseDuration metav1.Duration // renewDeadline is the interval between attempts by the acting master to // renew a leadership slot before it stops leading. This must be less // than or equal to the lease duration. This is only applicable if leader // election is enabled. RenewDeadline metav1.Duration // retryPeriod is the duration the clients should wait between attempting // acquisition and renewal of a leadership. This is only applicable if // leader election is enabled. RetryPeriod metav1.Duration // resourceLock indicates the resource object type that will be used to lock // during leader election cycles. ResourceLock string }
214,379
Github
[ 15, 24353, 551, 187, 186, 8623, 14, 15565, 27, 6520, 14, 5478, 28, 187, 186, 8412, 27, 2972, 28, 535, 186, 7, 15, 261, 14, 12185, 32606, 551, 996, 186, 15, 24353, 14, 11814, 551, 988, 186, 91, 14, 4663, 27, 1384, 28, 996, 186, 94, 996, 186, 15, 24353, 14, 13299, 551, 988, 186, 91, 14, 4663, 27, 3127, 28, 996, 186, 94, 187, 186, 94, 187, 187, 94, 187, 15, 24353, 14, 11814, 551, 187, 186, 3956, 27, 470, 28, 187, 186, 1274, 27, 470, 28, 187, 186, 3429, 27, 2233, 87, 88, 28, 187, 186, 7436, 27, 2233, 42781, 28, 187, 186, 3321, 27, 4229, 28, 187, 186, 11814, 14, 4897, 27, 32267, 9, 17, 13, 17, 13, 17, 13, 17, 15, 2227, 558, 187, 186, 91, 14, 4663, 27, 884, 28, 535, 50276, 34377, 9553, 14, 4507, 551, 187, 50274, 36047, 27, 964, 21, 84, 11990, 28755, 688, 28, 187, 50276, 94, 187, 50276, 34377, 35789, 14, 4507, 551, 187, 50274, 36047, 27, 964, 21, 84, 11990, 28755, 5677, 28, 187, 50276, 94, 187, 187, 94, 187, 15, 24353, 14, 13299, 551, 187, 186, 3321, 27, 4229, 28, 187, 186, 3956, 27, 470, 28, 187, 186, 1274, 27, 470, 28, 187, 186, 918, 27, 470, 28, 187, 186, 10492, 27, 470, 28, 187, 186, 91, 14, 4663, 27, 1903, 28, 187, 186, 8412, 27, 6520, 28, 187, 186, 6309, 1419, 14, 6071, 27, 4055, 28, 187, 186, 8623, 14, 15565, 27, 4055, 28, 187, 94, 187, 15, 24353, 14, 6071, 551, 187, 186, 3429, 27, 12891, 3498, 28, 187, 186, 11814, 14, 4897, 27, 1852, 45231, 28, 535, 50276, 34377, 9553, 14, 4507, 551, 187, 50274, 36047, 27, 964, 20, 84, 11990, 21282, 688, 28, 187, 50276, 94, 187, 50276, 34377, 35789, 14, 4507, 551, 187, 50274, 36047, 27, 964, 20, 84, 11990, 21282, 5677, 28, 187, 50276, 94, 535, 186, 7, 15, 261, 14, 4347, 12086, 551, 996, 186, 8623, 14, 1286, 27, 13726, 28, 996, 186, 3429, 27, 2233, 10543, 996, 186, 15456, 27, 1384, 3498, 28, 996, 186, 8412, 27, 6520, 28, 996, 186, 23210, 14, 21285, 27, 5084, 28, 6886, 186, 31, 2593, 551, 988, 186, 23210, 14, 47248, 27, 337, 28, 996, 186, 94, 535, 186, 94, 535, 186, 10146, 551, 996, 186, 11814, 14, 4897, 27, 278, 68, 2073, 442, 267, 1383, 686, 10487, 5137, 996, 186, 4897, 27, 1852, 45231, 28, 996, 186, 8412, 27, 6520, 28, 996, 186, 23210, 14, 34083, 750, 27, 470, 28, 996, 186, 7436, 27, 3387, 3498, 28, 996, 186, 8623, 14, 15565, 27, 4055, 28, 996, 186, 4909, 14, 6712, 27, 9166, 28, 996, 186, 4909, 14, 3281, 27, 1668, 3498, 28, 996, 186, 17333, 27, 470, 1384, 3498, 28, 996, 186, 3321, 27, 4103, 28, 6886, 186, 33, 14382, 370, 4897, 13, 370, 4897, 2877, 275, 370, 4990, 14, 36022, 551, 988, 186, 7, 15, 261, 14, 44391, 4897, 94, 551, 2657, 186, 11814, 14, 4897, 27, 278, 68, 3914, 4897, 13, 686, 10487, 5137, 988, 186, 94, 996, 186, 94, 6886, 186, 15, 24353, 14, 34457, 551, 988, 186, 3321, 27, 7880, 28, 988, 186, 8412, 27, 5293, 28, 988, 186, 8623, 14, 15565, 27, 4055, 28, 988, 186, 7436, 27, 3387, 3498, 28, 988, 186, 918, 27, 1384, 3498, 28, 988, 186, 3956, 27, 470, 28, 11866, 186, 7, 15, 261, 14, 4507, 551, 2657, 186, 8412, 27, 6520, 28, 988, 186, 94, 11866, 186, 2551, 551, 2657, 186, 4909, 14, 3281, 27, 1249, 3498, 28, 2657, 186, 15139, 14, 35215, 27, 337, 3498, 28, 2657, 186, 1156, 14, 16702, 27, 4627, 41810, 28, 988, 186, 94, 11866, 186, 74, 551, 2657, 186, 15456, 14, 1274, 27, 1458, 3498, 28, 2657, 186, 8412, 27, 13866, 14, 6172, 28, 2657, 186, 33, 3709, 653, 5338, 45818, 45231, 13, 964, 22, 84, 13, 1384, 3498, 558, 988, 186, 94, 6886, 186, 94, 535, 186, 94, 535, 186, 4674, 551, 996, 186, 17333, 27, 1384, 3498, 28, 996, 186, 14224, 14, 3956, 27, 337, 3498, 24817, 278, 68, 2073, 35579, 1383, 686, 7554, 5137, 6886, 186, 7, 27, 7053, 14, 1171, 14, 881, 551, 988, 186, 14224, 14, 3956, 27, 5293, 28, 988, 186, 17333, 14, 3956, 27, 1384, 3498, 28, 996, 186, 94, 996, 186, 7, 27, 6275, 14, 1171, 14, 881, 551, 988, 186, 17333, 14, 10492, 27, 1384, 3498, 28, 996, 186, 94, 6886, 186, 7, 15, 261, 14, 2485, 18628, 551, 988, 186, 17333, 27, 884, 3498, 28, 988, 186, 8412, 27, 6520, 28, 996, 186, 94, 6886, 186, 7, 15, 24353, 14, 23333, 551, 988, 186, 8412, 27, 6520, 28, 988, 186, 23210, 14, 21285, 27, 5084, 28, 988, 186, 8623, 14, 15565, 27, 4055, 28, 11866, 186, 31, 891, 551, 2657, 186, 8412, 27, 2972, 28, 2657, 186, 33, 3709, 653, 5338, 9, 17475, 2073, 11863, 10606, 5388, 11470, 964, 21, 84, 13, 4567, 3498, 558, 2657, 186, 15456, 14, 10492, 27, 884, 3498, 28, 988, 186, 94, 11866, 186, 31, 13905, 551, 2657, 186, 4897, 27, 278, 68, 2073, 35579, 1383, 686, 10487, 5137, 988, 186, 94, 11866, 186, 31, 802, 551, 2657, 186, 4909, 14, 3281, 27, 1249, 3498, 28, 2657, 186, 4897, 27, 278, 68, 2073, 35579, 1383, 686, 5388, 5137, 2657, 186, 4909, 14, 4826, 27, 2622, 28, 988, 186, 94, 6886, 186, 94, 6886, 186, 7, 15, 24353, 14, 6839, 6477, 551, 988, 186, 8412, 27, 6520, 28, 988, 186, 23210, 14, 21285, 27, 5084, 28, 988, 186, 8623, 14, 15565, 27, 4055, 28, 988, 186, 4897, 27, 278, 68, 2073, 35579, 1383, 686, 10695, 5137, 11866, 186, 8428, 551, 2657, 186, 7436, 27, 2233, 3498, 28, 28122, 186, 7, 559, 475, 551, 2664, 186, 15456, 14, 3956, 27, 884, 3498, 28, 2657, 186, 94, 11866, 186, 94, 11866, 186, 74, 15, 261, 14, 73, 4079, 551, 2657, 186, 4909, 14, 3281, 27, 8187, 3498, 28, 2657, 186, 15456, 14, 10492, 27, 884, 3498, 28, 988, 186, 94, 11866, 186, 31, 13905, 551, 2657, 186, 4897, 27, 278, 68, 2073, 35579, 1383, 686, 10695, 5137, 988, 186, 94, 11866, 186, 31, 802, 551, 2657, 186, 4909, 14, 3281, 27, 1249, 3498, 28, 2657, 186, 4897, 27, 278, 68, 2073, 35579, 1383, 686, 10487, 5137, 2657, 186, 4909, 14, 4826, 27, 2622, 28, 2657, 186, 15456, 14, 3956, 27, 884, 3498, 28, 2657, 186, 8412, 27, 2972, 28, 988, 186, 94, 6886, 186, 94, 6886, 186, 15, 9705, 6639, 551, 988, 186, 3550, 14, 4826, 14, 881, 27, 6278, 28, 988, 186, 17333, 27, 608, 3498, 470, 470, 1884, 3498, 28, 988, 186, 4909, 14, 3281, 27, 1638, 3498, 28, 988, 186, 4897, 27, 278, 68, 2073, 35579, 1383, 686, 10695, 5137, 996, 186, 94, 6886, 186, 15, 9939, 551, 988, 186, 8412, 27, 2972, 28, 988, 186, 15456, 14, 3956, 27, 884, 3498, 28, 988, 186, 4909, 14, 3281, 27, 1638, 3498, 28, 988, 186, 4897, 27, 278, 68, 2073, 35579, 1383, 686, 10695, 5137, 11866, 186, 7, 27, 7053, 14, 7003, 551, 2657, 186, 15456, 14, 3956, 27, 470, 28, 988, 186, 94, 11866, 186, 335, 551, 2657, 186, 4897, 27, 278, 68, 2073, 35579, 1383, 686, 10695, 5137, 2657, 186, 17333, 14, 1274, 27, 884, 3498, 28, 28122, 186, 965, 551, 2664, 186, 15456, 14, 3956, 27, 608, 3498, 28, 2664, 186, 8412, 27, 6520, 28, 2664, 186, 8623, 14, 15565, 27, 4055, 28, 39900, 186, 31, 891, 551, 7308, 186, 15456, 14, 918, 27, 854, 3498, 28, 7308, 186, 4909, 14, 3281, 27, 1283, 3498, 28, 2664, 186, 94, 28122, 186, 94, 988, 186, 94, 6886, 186, 94, 535, 186, 94, 535, 186, 28497, 551, 996, 186, 17333, 27, 1384, 3498, 28, 996, 186, 1156, 14, 8623, 27, 987, 28, 6886, 186, 15, 8060, 551, 988, 186, 15456, 14, 1274, 27, 884, 3498, 28, 996, 186, 94, 535, 186, 94, 187, 187, 94, 187, 187, 15, 24353, 14, 44338, 551, 187, 186, 11814, 14, 4897, 27, 278, 68, 2073, 442, 267, 1383, 686, 14744, 5137, 187, 186, 17333, 27, 818, 3498, 1384, 3498, 28, 187, 186, 8412, 27, 6520, 28, 187, 186, 23210, 14, 34083, 750, 27, 470, 28, 187, 186, 6309, 1419, 14, 6071, 27, 4055, 28, 535, 186, 33, 14382, 370, 4897, 13, 370, 4897, 2877, 275, 370, 4990, 14, 36022, 551, 996, 186, 7, 15, 261, 14, 44391, 4897, 94, 551, 988, 186, 11814, 14, 4897, 27, 278, 68, 3914, 4897, 13, 686, 14744, 5137, 11866, 186, 15, 8060, 551, 2657, 186, 14224, 14, 4897, 27, 278, 68, 3914, 4897, 13, 686, 18104, 5137, 2657, 186, 11814, 14, 4897, 27, 278, 68, 3914, 4897, 13, 686, 18104, 5137, 28122, 186, 7, 27, 22424, 551, 2664, 186, 14224, 14, 4897, 27, 278, 68, 3914, 4897, 13, 686, 18104, 5137, 2664, 186, 11814, 14, 4897, 27, 278, 68, 3914, 4897, 13, 686, 10695, 5137, 2657, 186, 94, 11866, 186, 94, 6886, 186, 94, 187, 186, 94, 535, 186, 605, 17706, 18587, 52, 535, 186, 15, 8060, 551, 996, 186, 14224, 27, 337, 3498, 4891, 278, 68, 2073, 442, 267, 1383, 686, 18104, 5137, 996, 186, 11814, 14, 4897, 27, 278, 68, 2073, 442, 267, 1383, 686, 18104, 5137, 996, 186, 25974, 27, 512, 964, 21, 84, 11990, 28, 996, 186, 4897, 27, 1852, 45231, 28, 996, 186, 14224, 14, 19731, 27, 470, 28, 6886, 186, 7, 27, 7053, 14, 7003, 551, 988, 186, 14224, 14, 3956, 14, 1274, 14, 19731, 27, 577, 3498, 28, 988, 186, 14224, 14, 10492, 14, 1274, 14, 19731, 27, 577, 3498, 28, 996, 186, 94, 6886, 186, 7, 27, 6275, 14, 7003, 551, 988, 186, 14224, 14, 3956, 14, 918, 14, 19731, 27, 577, 3498, 28, 988, 186, 14224, 14, 10492, 14, 918, 14, 19731, 27, 577, 3498, 28, 996, 186, 94, 6886, 186, 7, 27, 22424, 551, 988, 186, 14224, 14, 4897, 27, 278, 68, 2073, 442, 267, 1383, 686, 18104, 5137, 988, 186, 11814, 14, 4897, 27, 278, 68, 2073, 442, 267, 1383, 686, 10695, 5137, 988, 186, 4897, 27, 1852, 45231, 28, 996, 186, 94, 535, 186, 94, 535, 186, 15, 8060, 559, 964, 8060, 551, 996, 186, 15456, 14, 1274, 27, 337, 3498, 28, 187, 186, 94, 187, 187, 94, 187, 187, 15, 24353, 14, 41315, 551, 535, 186, 11814, 14, 4897, 27, 278, 68, 2073, 442, 267, 1383, 686, 1235, 5137, 187, 186, 17333, 27, 470, 28, 187, 50276, 27745, 14, 90, 27, 15149, 28, 187, 186, 605, 17333, 27, 818, 3498, 1384, 3498, 28, 535, 186, 33, 14382, 370, 4897, 13, 370, 4897, 2877, 275, 370, 4990, 14, 36022, 551, 996, 186, 7, 15, 261, 14, 44391, 4897, 94, 551, 988, 186, 11814, 14, 4897, 27, 278, 68, 3914, 4897, 13, 686, 1235, 5137, 11866, 186, 15, 7645, 14, 41315, 14, 10146, 551, 2657, 186, 11814, 14, 4897, 27, 278, 68, 3914, 4897, 13, 686, 2313, 5137, 2657, 186, 4897, 27, 278, 68, 3914, 4897, 13, 686, 10695, 5137, 988, 186, 94, 11866, 186, 15, 7645, 14, 41315, 14, 3550, 2239, 632, 247, 551, 2657, 186, 7, 27, 22424, 551, 2664, 186, 11814, 14, 4897, 27, 278, 68, 3914, 4897, 13, 686, 1518, 5137, 2657, 186, 94, 2657, 186, 7, 15, 261, 14, 4507, 551, 2664, 186, 11814, 14, 4897, 27, 278, 68, 3914, 4897, 13, 686, 5388, 5137, 2657, 186, 94, 988, 186, 94, 6886, 186, 94, 187, 186, 94, 535, 186, 15, 7645, 14, 41315, 14, 10146, 551, 996, 186, 17333, 27, 818, 3498, 1384, 3498, 28, 187, 186, 94, 535, 186, 15, 7645, 14, 41315, 14, 6071, 551, 996, 186, 17333, 27, 818, 3498, 1384, 3498, 28, 187, 186, 94, 535, 186, 15, 7645, 14, 41315, 14, 3550, 551, 6886, 186, 31, 632, 551, 988, 186, 17333, 27, 470, 28, 11866, 186, 66, 551, 2657, 186, 8412, 27, 6520, 28, 2657, 186, 8623, 14, 15565, 27, 4055, 28, 2657, 186, 7436, 27, 5910, 3498, 28, 2657, 186, 17333, 27, 470, 1384, 3498, 28, 2657, 186, 14849, 27, 12219, 28, 2657, 186, 4897, 27, 278, 68, 2073, 35579, 1383, 686, 10695, 5137, 28122, 186, 7, 27, 22424, 551, 2664, 186, 11814, 14, 4897, 27, 278, 68, 2073, 442, 267, 1383, 686, 1518, 5137, 2657, 186, 94, 28122, 186, 7, 15, 261, 14, 4507, 551, 2664, 186, 4897, 27, 1852, 45231, 28, 2657, 186, 94, 28122, 186, 74, 551, 2664, 186, 15456, 14, 918, 27, 818, 3498, 28, 2657, 186, 94, 11866, 186, 94, 6886, 186, 94, 535, 186, 94, 187, 187, 94, 187, 187, 15, 24353, 14, 6071, 964, 9290, 14, 28497, 14, 4835, 15, 453, 30387, 551, 187, 186, 36047, 27, 10299, 577, 84, 11990, 470, 11968, 28, 187, 94, 187 ]
.modal { align-items: flex-start; display: block; &.is-superimposed { .modal-background { z-index: 20; } .modal-container { z-index: 21; } } } .modal-background { top: 0; left: 0; width: 100vw; height: 100vh; position: fixed; background-color: rgba(0,0,0,0.85); z-index: 10; &-enter-active { animation: .4s ease fadeIn; } &-leave-active { animation: .4s ease fadeOut; } } .modal-container { position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 11; display: flex; justify-content: center; align-items: center; } .modal-content { width: 600px; background-color: #FFF; &-enter-active { animation: .3s ease zoomIn; } &-leave-active { animation: .3s ease zoomOut; } &.is-expanded { align-self: stretch; width: 100%; margin: 20px; display: flex; flex-direction: column; > section { flex-grow: 1; } } header { background-color: mc('teal', '600'); color: #FFF; display: flex; flex-shrink: 0; height: 40px; align-items: center; font-weight: 400; font-size: 16px; padding: 0 20px; position: relative; @each $color, $colorvalue in $material-colors { &.is-#{$color} { background-color: mc($color, '600'); } } .modal-notify { position: absolute; display: none; align-items: center; height: 40px; right: 20px; top: 0; &.is-active { display: flex; } span { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; } i { margin-left: 15px; display: inline-block; @include spinner(#FFF, .5s, 20px); } } } section { padding: 20px; border-top: 1px dotted mc('grey', '300'); &:first-of-type { border-top: none; padding-top: 20px; } &:last-of-type { padding-bottom: 20px; } &.is-gapless { padding: 10px; display: flex; } &.modal-loading { display: flex; flex-direction: column; align-items: center; > i { display: block; @include spinner(mc('blue','500'), .4s, 32px); margin-bottom: 10px; } > span { color: mc('grey', '600'); } > em { font-size: 12px; color: mc('grey', '500'); font-style: normal; } } &.modal-instructions { display: flex; flex-direction: column; align-items: center; color: mc('grey', '800'); img { height: 100px; & + * { margin-top: 10px; } } i.is-huge { font-size: 72px; margin-bottom: 10px; } > span { color: mc('grey', '800'); } > em { font-size: 12px; color: mc('grey', '600'); font-style: normal; margin-top: 10px; display: block; } } .bullets { list-style-type: square; padding: 5px 0 0 30px; font-size: 14px; color: mc('grey', '800'); } .note { display: block; margin-top: 10px; font-size: 14px; color: mc('grey', '800'); &:first-child { margin-top: 0; } ul { color: mc('grey', '800'); padding-left: 10px; li { margin-top: 5px; display: flex; align-items: center; > i { margin-right: 8px; font-size: 18px; } } } } } footer { padding: 20px; text-align: right; .button { margin-left: 10px; } } } .modal-toolbar { background-color: mc('teal', '700'); padding: 7px 20px; display: flex; flex-shrink: 0; justify-content: center; @each $color, $colorvalue in $material-colors { &.is-#{$color} { background-color: mc($color, '700'); .button { border-color: mc($color, '900'); background-color: mc($color, '900'); &:hover { border-color: mc($color, '900'); background-color: mc($color, '800'); } } } } // BUTTONS .button { border: 1px solid mc('teal', '900'); background-color: mc('teal', '900'); transition: all .4s ease; color: #FFF; border-radius: 0; &:first-child { border-top-left-radius: 4px; border-bottom-left-radius: 4px; } &:last-child { border-top-right-radius: 4px; border-bottom-right-radius: 4px; } &:hover { border-color: mc('teal', '900'); background-color: mc('teal', '800'); color: #FFF; } } .button + .button { margin-left: 1px; } } .modal-sidebar { background-color: mc('teal', '50'); padding: 0; overflow-y:auto; //padding: 7px 20px; @each $color, $colorvalue in $material-colors { &.is-#{$color} { background-color: mc($color, '50'); .model-sidebar-header { background-color: mc($color, '100'); color: mc($color, '800'); } .model-sidebar-list > li a { &:hover { background-color: mc($color, '200'); } &.is-active { background-color: mc($color, '500'); } } } } .model-sidebar-header { padding: 7px 20px; } .model-sidebar-content { padding: 7px 20px; } .model-sidebar-list { > li { padding: 0; a { display: flex; align-items: center; height: 34px; padding: 0 20px; cursor: pointer; color: mc('grey', '800'); &:hover { background-color: mc('teal', '200'); } &.is-active { color: #FFF; } i { margin-right: 7px; } } } } } .modal-content .card-footer-item.featured { animation: flash 4s ease 0 infinite; }
214,380
Github
[ 60, 187, 9855, 17, 6624, 61, 86, 1418, 995, 11946, 1092, 187, 9855, 25, 18962, 6624, 26532, 213, 26532, 214, 26532, 216, 26532, 217, 26532, 222, 995, 21, 937, 26532, 235, 26532, 241, 26532, 242, 26532, 96, 26532, 97, 26532, 98, 26532, 100, 995, 23, 937, 26532, 108, 26532, 112, 26532, 113, 26532, 114, 21391, 187, 9855, 25, 20664, 6624, 26532, 115, 26532, 116, 26532, 117, 26532, 120, 26532, 121, 26532, 123, 26532, 124, 26532, 125, 166, 111, 212, 995, 26, 937, 166, 111, 223, 166, 111, 225, 995, 22, 937, 166, 111, 232, 21391, 187, 9855, 25, 20895, 6624, 166, 111, 233, 166, 111, 234, 166, 111, 236, 166, 111, 237, 166, 111, 238, 166, 111, 240, 995, 1093, 937, 166, 111, 112, 166, 111, 113, 166, 111, 115, 166, 111, 116, 166, 111, 119, 166, 111, 121, 995, 21, 937, 35458, 213, 35458, 218, 35458, 219, 35458, 224, 35458, 225, 35458, 226, 35458, 228, 35458, 229, 35458, 230, 35458, 232, 995, 23, 937, 35458, 241, 35458, 97, 995, 22, 937, 35458, 106, 35458, 244, 35458, 108, 35458, 111, 995, 23, 937, 35458, 120, 35458, 124, 35458, 125, 26437, 211, 26437, 213, 26437, 214, 26437, 216, 26437, 217, 26437, 218, 26437, 220, 26437, 221, 26437, 222, 26437, 224, 995, 24, 937, 26437, 233, 26437, 235, 995, 24, 937, 26437, 97, 26437, 98, 26437, 100, 26437, 101, 26437, 104, 26437, 106, 26437, 244, 26437, 108, 26437, 112, 26437, 114, 26437, 117, 995, 21, 937, 26437, 124, 26437, 125, 166, 114, 212, 166, 114, 213, 166, 114, 214, 166, 114, 216, 166, 114, 218, 995, 21, 937, 166, 114, 225, 166, 114, 227, 166, 114, 229, 166, 114, 230, 21391, 187, 9855, 25, 24552, 6624, 166, 114, 231, 166, 114, 232, 166, 114, 233, 166, 114, 234, 166, 114, 236, 166, 114, 237, 166, 114, 238, 166, 114, 240, 166, 114, 241, 166, 114, 242, 166, 114, 96, 995, 24, 937, 166, 114, 105, 166, 114, 106, 166, 114, 108, 995, 22, 1092, 187, 9855, 25, 26560, 6624, 166, 114, 116, 166, 114, 117, 166, 114, 119, 166, 114, 120, 166, 114, 121, 166, 114, 123, 995, 23, 937, 166, 115, 217, 166, 115, 219, 166, 115, 221, 995, 22, 937, 166, 115, 228, 166, 115, 229, 166, 115, 230, 166, 115, 232, 166, 115, 233, 166, 115, 234, 21391, 187, 9855, 25, 27571, 6624, 166, 115, 236, 995, 24, 937, 166, 115, 97, 166, 115, 99, 995, 24, 937, 166, 115, 108, 166, 115, 109, 166, 115, 111, 166, 115, 112, 166, 115, 117, 166, 115, 118, 166, 115, 119, 166, 115, 120, 166, 115, 124, 166, 116, 211, 166, 116, 214, 995, 21, 937, 166, 116, 221, 166, 116, 222, 166, 116, 224, 166, 116, 225, 166, 116, 226, 166, 116, 228, 995, 740, 937, 166, 116, 241, 995, 22, 937, 166, 116, 100, 995, 1166, 937, 166, 116, 118, 995, 24, 937, 166, 117, 213, 166, 117, 214, 166, 117, 216, 166, 117, 217, 166, 117, 218, 166, 117, 220, 995, 23, 937, 166, 117, 229, 166, 117, 231, 995, 24, 937, 166, 117, 240, 166, 117, 241, 166, 117, 242, 166, 117, 96, 166, 117, 97, 166, 117, 98, 166, 117, 100, 995, 1093, 1092, 187, 9855, 25, 28459, 6624, 166, 117, 120, 166, 117, 121, 166, 117, 123, 166, 117, 124, 36178, 213, 995, 22, 937, 36178, 221, 36178, 223, 36178, 225, 995, 22, 937, 36178, 232, 995, 24, 1092, 187, 9855, 25, 29917, 6624, 36178, 240, 995, 1093, 937, 36178, 112, 36178, 113, 36178, 115, 36178, 116, 36178, 119, 36178, 121, 36178, 122, 21391, 187, 9855, 25, 30169, 6624, 36178, 123, 36178, 124, 36178, 125, 166, 119, 213, 166, 119, 215, 166, 119, 218, 166, 119, 219, 166, 119, 220, 166, 119, 222, 166, 119, 226, 166, 119, 228, 166, 119, 229, 166, 119, 230, 166, 119, 232, 166, 119, 234, 995, 21, 937, 166, 119, 241, 166, 119, 97, 166, 119, 98, 166, 119, 99, 166, 119, 101, 166, 119, 102, 166, 119, 105, 166, 119, 106, 166, 119, 244, 166, 119, 108, 166, 119, 109, 166, 119, 111, 995, 23, 937, 166, 119, 120, 166, 119, 124, 995, 22, 937, 166, 120, 217, 995, 22, 937, 166, 120, 224, 995, 2950, 937, 166, 120, 125, 166, 121, 212, 166, 121, 213, 166, 121, 214, 166, 121, 216, 995, 23, 937, 166, 121, 225, 166, 121, 229, 995, 22, 937, 166, 121, 237, 166, 121, 238, 166, 121, 240, 995, 25, 1092, 187, 9855, 25, 31774, 6624, 166, 121, 101, 166, 121, 102, 166, 121, 104, 166, 121, 105, 166, 121, 107, 166, 121, 108, 995, 22, 937, 166, 121, 115, 166, 121, 116, 166, 121, 117, 166, 121, 119, 166, 121, 120, 166, 121, 121, 166, 121, 123, 995, 25, 1092, 187, 9855, 2759, 3832, 6624, 166, 122, 217, 166, 122, 220, 166, 122, 221, 166, 122, 222, 166, 122, 223, 166, 122, 225, 166, 122, 226, 166, 122, 228, 995, 1093, 1092, 187, 9855, 25, 34474, 6624, 166, 122, 99, 995, 24, 937, 166, 122, 108, 166, 122, 109, 166, 122, 111, 166, 122, 113, 166, 122, 115, 995, 23, 937, 166, 122, 124, 166, 123, 211, 166, 123, 215, 166, 123, 216, 166, 123, 217, 166, 123, 218, 166, 123, 221, 995, 22, 937, 166, 123, 228, 995, 740, 937, 166, 123, 241, 995, 22, 937, 166, 123, 101, 995, 1093, 937, 166, 123, 120, 995, 22, 937, 166, 124, 212, 166, 124, 213, 166, 124, 214, 166, 124, 216, 166, 124, 217, 166, 124, 218, 166, 124, 220, 995, 23, 937, 166, 124, 229, 166, 124, 230, 166, 124, 231, 166, 124, 233, 995, 22, 937, 166, 124, 240, 995, 1731, 937, 166, 124, 120, 166, 124, 121, 166, 124, 123, 166, 124, 124, 21391, 187, 9855, 2227, 3156, 6624, 166, 124, 125, 166, 125, 212, 995, 22, 937, 166, 125, 221, 166, 125, 223, 166, 125, 226, 995, 21, 937, 166, 125, 232, 995, 23, 937, 166, 125, 240, 995, 21, 1092, 187, 9855, 2227, 3832, 6624, 166, 125, 97, 995, 22, 937, 166, 125, 105, 995, 22, 937, 166, 125, 112, 166, 125, 113, 166, 125, 115, 166, 125, 116, 166, 125, 117, 166, 125, 119, 995, 23, 937, 167, 211, 213, 167, 211, 214, 21391, 187, 9855, 2227, 3593, 6624, 167, 211, 216, 995, 23, 937, 167, 211, 224, 167, 211, 225, 167, 211, 226, 167, 211, 228, 167, 211, 229, 167, 211, 230, 167, 211, 232, 995, 23, 937, 167, 211, 241, 995, 26, 937, 167, 211, 104, 995, 1731, 937, 167, 212, 217, 167, 212, 218, 167, 212, 220, 167, 212, 222, 167, 212, 224, 167, 212, 226, 167, 212, 227, 167, 212, 228, 167, 212, 229, 167, 212, 233, 167, 212, 235, 167, 212, 237, 167, 212, 238, 167, 212, 239, 167, 212, 241, 995, 1717, 937, 167, 212, 124, 167, 212, 125, 44028, 212, 44028, 213, 44028, 214, 44028, 216, 995, 23, 937, 44028, 225, 44028, 227, 44028, 229, 995, 22, 937, 44028, 238, 44028, 240, 44028, 241, 44028, 98, 44028, 99, 21391, 187, 9855, 25, 33976, 6624, 44028, 100, 44028, 101, 44028, 102, 44028, 105, 44028, 110, 44028, 112, 44028, 116, 44028, 117, 44028, 119, 44028, 120, 44028, 121, 44028, 123, 995, 23, 937, 167, 214, 217, 167, 214, 221, 995, 22, 937, 167, 214, 229, 21391, 187, 9855, 25, 36630, 6624, 167, 214, 230, 167, 214, 232, 167, 214, 233, 167, 214, 234, 167, 214, 236, 995, 23, 937, 167, 214, 96, 167, 214, 97, 167, 214, 98, 167, 214, 99, 167, 214, 101, 995, 740, 1092, 187, 9855, 25, 33304, 6624, 167, 214, 111, 995, 1423, 937, 167, 215, 221, 167, 215, 224, 167, 215, 225, 167, 215, 226, 167, 215, 228, 167, 215, 231, 167, 215, 232, 167, 215, 233, 167, 215, 234, 167, 215, 237, 167, 215, 241, 995, 21, 937, 167, 215, 101, 167, 215, 102, 167, 215, 104, 167, 215, 105, 167, 215, 106, 167, 215, 244, 995, 23, 937, 167, 215, 116, 167, 215, 120, 995, 22, 937, 167, 216, 213, 167, 216, 214, 167, 216, 216, 167, 216, 217, 167, 216, 218, 167, 216, 220, 995, 23, 937, 167, 216, 229, 167, 216, 230, 167, 216, 233, 167, 216, 234, 167, 216, 236, 167, 216, 237, 167, 216, 238, 167, 216, 240, 167, 216, 241, 167, 216, 242, 167, 216, 96, 995, 1423, 937, 167, 216, 120, 167, 216, 121, 167, 216, 123, 167, 216, 124, 167, 216, 125, 167, 217, 212, 167, 217, 214, 995, 21, 937, 167, 217, 221, 167, 217, 223, 167, 217, 225, 167, 217, 226, 167, 217, 227, 167, 217, 228, 167, 217, 232, 167, 217, 233, 167, 217, 234, 167, 217, 236, 167, 217, 237, 167, 217, 238, 167, 217, 240, 21391, 187, 9855, 2597, 3156, 6624, 167, 217, 241, 995, 26, 937, 167, 217, 104, 995, 1010, 1092, 187, 9855, 2597, 3832, 6624, 167, 217, 119, 995, 1093, 937, 167, 218, 224, 167, 218, 225, 167, 218, 226, 167, 218, 228, 167, 218, 229, 167, 218, 230, 167, 218, 232, 21391, 187, 9855, 2597, 3593, 6624, 167, 218, 233, 995, 22, 937, 167, 218, 241, 167, 218, 243, 995, 24, 937, 167, 218, 105, 167, 218, 106, 167, 218, 244, 167, 218, 108, 167, 218, 109, 167, 218, 111, 995, 24, 937, 167, 218, 120, 167, 218, 122, 167, 218, 124, 995, 22, 937, 167, 219, 217, 167, 219, 218, 167, 219, 220, 167, 219, 221, 167, 219, 224, 995, 23, 937, 167, 219, 233, 167, 44140, 167, 219, 237, 995, 22, 937, 167, 219, 96, 995, 1093, 937, 167, 219, 115, 995, 23, 937, 167, 219, 123, 995, 1731, 937, 167, 220, 236, 167, 220, 237, 167, 220, 238, 167, 220, 240, 167, 220, 241, 167, 220, 242, 167, 220, 96, 995, 23, 937, 167, 220, 105, 995, 21, 1092, 187, 9855, 2055, 3156, 6624, 167, 220, 109, 995, 21, 937, 167, 220, 116, 995, 22, 937, 167, 220, 123, 995, 23, 937, 22983, 217, 22983, 218, 22983, 219, 22983, 221, 995, 21, 1092, 187, 9855, 2055, 3832, 6624, 22983, 226, 22983, 229, 22983, 230, 22983, 232, 22983, 233, 22983, 234, 22983, 238, 995, 21, 937, 22983, 97, 22983, 99, 22983, 102, 22983, 103, 22983, 104, 22983, 106, 22983, 244, 22983, 108, 22983, 109, 22983, 111, 22983, 112, 22983, 113, 22983, 115, 22983, 116, 22983, 117, 21391, 187, 9855, 2055, 3593, 6624, 22983, 118, 995, 1010, 937, 14394, 221, 14394, 222, 14394, 224, 14394, 225, 14394, 226, 14394, 228, 14394, 230, 995, 21, 937, 14394, 237, 14394, 239, 14394, 241, 14394, 242, 14394, 243, 14394, 96, 14394, 98, 14394, 102, 14394, 104, 14394, 105, 14394, 110, 14394, 111, 14394, 112, 14394, 116, 14394, 122, 14394, 123, 14394, 124, 167, 223, 213, 167, 223, 214, 167, 223, 216, 167, 223, 217, 167, 223, 218, 167, 223, 220, 995, 23, 937, 167, 223, 229, 167, 223, 233, 995, 22, 937, 167, 223, 240, 995, 3439, 937, 167, 224, 234, 167, 224, 236, 167, 224, 237, 167, 224, 240, 167, 224, 243, 167, 224, 96, 167, 224, 97, 167, 224, 98, 21391, 187, 9855, 2511, 3156, 6624, 167, 224, 101, 167, 224, 103, 167, 224, 105, 167, 224, 107, 167, 224, 244, 167, 224, 109, 167, 224, 112, 167, 224, 113, 167, 224, 115, 167, 224, 116, 167, 224, 117, 167, 224, 119, 995, 23, 937, 167, 225, 213, 167, 225, 217, 995, 22, 937, 167, 225, 224, 21391, 187, 9855, 2511, 3832, 6624, 167, 225, 225, 167, 225, 226, 167, 225, 228, 167, 225, 229, 167, 225, 230, 167, 225, 232, 995, 740, 937, 167, 225, 97, 995, 22, 937, 167, 225, 104, 167, 225, 105, 167, 225, 106, 167, 225, 244, 21391, 187, 9855, 2511, 3593, 6624, 167, 225, 108, 995, 1797, 937, 40025, 217, 40025, 218, 40025, 220, 40025, 221, 40025, 224, 40025, 226, 40025, 228, 40025, 229, 40025, 230, 40025, 233, 40025, 235, 40025, 237, 40025, 239, 40025, 241, 40025, 242, 40025, 96, 40025, 97, 40025, 98, 40025, 100, 40025, 101, 40025, 102, 40025, 104, 995, 1093, 937, 40025, 123, 995, 1093, 937, 167, 227, 228, 995, 23, 937, 167, 227, 236, 167, 227, 237, 167, 227, 238, 167, 227, 240, 167, 227, 241, 167, 227, 242, 167, 227, 96, 995, 23, 937, 167, 227, 105, 167, 227, 107, 995, 24, 937, 167, 227, 115, 995, 1010, 1092, 187, 9855, 25, 66, 3156, 6624, 167, 228, 216, 995, 740, 937, 167, 228, 229, 167, 228, 230, 167, 228, 232, 167, 228, 233, 167, 228, 234, 167, 228, 236, 995, 23, 937, 167, 228, 97, 167, 228, 99, 167, 228, 101, 21391, 187, 9855, 25, 66, 3832, 6624, 167, 228, 102, 995, 21, 937, 167, 228, 244, 995, 1093, 937, 167, 229, 212, 167, 229, 213, 21391, 187, 9855, 25, 66, 3593, 6624, 167, 229, 214, 995, 21, 937, 167, 229, 220, 995, 746, 937, 167, 229, 241, 995, 22, 937, 167, 229, 100, 167, 229, 101, 167, 229, 102, 167, 229, 104, 167, 229, 105, 167, 229, 106, 167, 229, 244, 995, 24, 937, 167, 229, 116, 167, 229, 118, 167, 229, 120, 995, 22, 937, 34431, 212, 34431, 213, 34431, 214, 34431, 216, 34431, 217, 34431, 218, 34431, 220, 995, 23, 937, 34431, 228, 34431, 229, 34431, 230, 34431, 231, 34431, 233, 995, 22, 937, 34431, 241, 34431, 242, 34431, 96, 34431, 97, 34431, 100, 34431, 102, 995, 21, 937, 34431, 108, 34431, 110, 34431, 112, 995, 22, 937, 34431, 119, 995, 1731, 937, 167, 231, 233, 167, 231, 234, 167, 231, 236, 167, 231, 237, 167, 231, 240, 21391, 187, 9855, 25, 67, 3156, 6624, 167, 231, 241, 995, 22, 937, 167, 231, 101, 167, 231, 106, 995, 21, 937, 167, 231, 112, 167, 231, 113, 167, 231, 115, 167, 231, 116, 167, 231, 117, 167, 231, 119, 995, 23, 937, 167, 232, 213, 167, 232, 217, 21391, 187, 9855, 25, 67, 3832, 6624, 167, 232, 218, 167, 232, 219, 167, 232, 220, 167, 232, 221, 167, 232, 225, 167, 232, 226, 167, 232, 228, 167, 232, 229, 167, 232, 230, 167, 232, 232, 995, 23, 937, 167, 232, 241, 167, 232, 97, 995, 25, 1092, 187, 9855, 25, 67, 3593, 6624, 167, 232, 106, 995, 3583, 937, 167, 233, 97, 167, 233, 98, 167, 233, 100, 167, 233, 101, 167, 233, 102, 167, 233, 104, 167, 233, 107, 167, 233, 244, 167, 233, 108, 167, 233, 109, 167, 233, 112, 167, 233, 116, 995, 21, 937, 167, 233, 124, 167, 233, 125, 167, 234, 212, 167, 234, 213, 167, 234, 214, 167, 234, 216, 995, 23, 937, 167, 234, 225, 167, 234, 229, 995, 22, 937, 167, 234, 236, 995, 1093, 937, 167, 234, 244, 995, 1093, 1092, 187, 9855, 25, 68, 3156, 6624, 167, 235, 211, 995, 1010, 937, 167, 235, 229, 167, 235, 230, 167, 235, 232, 167, 235, 233, 167, 235, 234, 167, 235, 236, 995, 21, 1092, 187, 9855, 25, 68, 3832, 6624, 167, 235, 241, 995, 23, 937, 167, 235, 101, 995, 22, 937, 167, 235, 244, 995, 23, 937, 167, 235, 115, 995, 22, 1092, 187, 9855, 25, 68, 3593, 6624, 167, 235, 121, 995, 805, 937, 167, 236, 220, 995, 1731, 937, 167, 236, 100, 167, 236, 101, 167, 236, 102, 167, 236, 104, 995, 1235, 937, 167, 237, 241, 167, 237, 242, 167, 237, 96, 167, 237, 97, 167, 237, 98, 167, 237, 100, 995, 22, 937, 167, 237, 244, 167, 237, 108, 167, 237, 109, 167, 237, 110, 167, 237, 112, 995, 1036, 1092, 187, 9855, 25, 69, 3156, 6624, 167, 238, 214, 995, 1036, 937, 167, 238, 232, 995, 25, 1092, 187, 9855, 25, 69, 3832, 6624, 167, 238, 241, 995, 1166, 937, 167, 238, 111, 167, 238, 112, 167, 238, 113, 167, 238, 115, 167, 238, 116, 167, 238, 117, 167, 238, 119, 167, 238, 120, 21391, 187, 9855, 25, 69, 3593, 6624, 167, 238, 121, 995, 21, 937, 167, 239, 213, 167, 239, 214, 167, 239, 215, 167, 239, 217, 995, 1610, 937, 167, 239, 105, 167, 239, 106, 167, 239, 244, 167, 239, 108, 167, 239, 111, 995, 23, 937, 167, 239, 120, 167, 239, 122, 995, 24, 937, 167, 240, 216, 167, 240, 217, 167, 240, 218, 167, 240, 220, 167, 240, 221, 167, 240, 222, 167, 240, 224, 995, 23, 937, 167, 240, 233, 995, 26, 937, 167, 240, 96, 167, 240, 97, 167, 240, 98, 167, 240, 100, 167, 240, 101, 167, 240, 102, 167, 240, 104, 995, 23, 937, 167, 240, 112, 167, 240, 114, 167, 240, 116, 995, 22, 937, 167, 240, 124, 167, 240, 125, 167, 241, 212, 167, 241, 213, 167, 241, 214, 167, 241, 216, 995, 23, 937, 167, 241, 225, 167, 241, 230, 167, 241, 231, 167, 241, 232, 167, 241, 237, 167, 241, 238, 167, 241, 240, 167, 241, 241, 21391, 187, 9855, 25, 70, 3156, 6624, 167, 241, 242, 167, 241, 96, 995, 23, 937, 167, 241, 105, 167, 241, 108, 995, 22, 937, 167, 241, 116, 167, 241, 117, 167, 241, 119, 995, 25, 1092, 187, 9855, 25, 70, 3832, 6624, 167, 242, 213, 995, 21, 937, 167, 242, 219, 167, 242, 221, 995, 746, 1092, 187, 9855, 25, 70, 3593, 6624, 167, 242, 241, 995, 1012, 937, 167, 242, 108, 167, 242, 109, 167, 242, 111, 167, 242, 112, 167, 242, 113, 167, 242, 115, 995, 23, 937, 167, 242, 124, 50152, 213, 995, 21, 937, 50152, 221, 50152, 222, 50152, 224, 50152, 225, 50152, 226, 50152, 228, 995, 23, 937, 50152, 237, 50152, 239, 50152, 241, 995, 22, 937, 50152, 101, 50152, 102, 50152, 104, 50152, 105, 50152, 106, 50152, 244, 995, 23, 937, 50152, 116, 50152, 120, 995, 22, 937, 31554, 212, 31554, 213, 31554, 214, 31554, 216, 995, 883, 937, 31554, 229, 31554, 231, 995, 24, 937, 31554, 241, 31554, 242, 31554, 96, 31554, 97, 31554, 98, 31554, 100, 995, 23, 937, 31554, 108, 31554, 110, 31554, 112, 995, 22, 937, 31554, 119, 31554, 120, 31554, 121, 31554, 123, 995, 24, 1092, 187, 9855, 25, 71, 3156, 6624, 167, 97, 216, 995, 24, 937, 167, 97, 225, 995, 1166, 1092, 187, 9855, 25, 71, 3832, 6624, 167, 97, 243, 995, 24, 937, 167, 97, 104, 995, 23, 937, 167, 97, 111, 167, 97, 112, 167, 97, 113, 167, 97, 115, 167, 97, 116, 167, 97, 117, 167, 97, 119, 995, 21, 1092, 187, 9855, 25, 71, 3593, 6624, 167, 97, 124, 167, 97, 125, 167, 98, 213, 167, 98, 215, 167, 98, 217, 995, 22, 937, 167, 98, 224, 167, 98, 225, 167, 98, 226, 167, 98, 228, 167, 98, 229, 167, 98, 230, 167, 98, 232, 995, 24, 937, 167, 98, 241, 167, 98, 243, 167, 98, 97, 995, 22, 937, 167, 98, 105, 167, 98, 106, 167, 98, 244, 167, 98, 108, 167, 98, 109, 167, 98, 111, 995, 23, 937, 167, 98, 120, 167, 98, 122, 167, 98, 124, 995, 22, 937, 167, 99, 216, 995, 1093, 937, 167, 99, 236, 995, 23, 937, 167, 99, 96, 995, 1731, 937, 167, 99, 124, 167, 99, 125, 31956, 212, 31956, 213, 31956, 214, 31956, 216, 995, 23, 937, 31956, 224, 31956, 225, 31956, 227, 31956, 229, 995, 22, 1092, 187, 9855, 26, 28271, 6624, 31956, 237, 31956, 238, 31956, 240, 31956, 241, 31956, 242, 31956, 96, 995, 23, 937, 31956, 105, 31956, 107, 31956, 108, 995, 22, 937, 31956, 116, 31956, 117, 31956, 119, 31956, 120, 31956, 121, 31956, 123, 21391, 187, 9855, 2270, 3832, 6624, 31956, 124, 995, 22, 937, 32654, 217, 32654, 219, 32654, 222, 32654, 223, 32654, 226, 995, 1010, 1092, 187, 9855, 2270, 3593, 6624, 32654, 242, 995, 805, 937, 32654, 108, 32654, 109, 32654, 111, 32654, 112, 32654, 113, 32654, 115, 995, 23, 937, 32654, 124, 41986, 211, 41986, 213, 995, 22, 937, 41986, 221, 41986, 222, 41986, 224, 41986, 230, 995, 21, 937, 41986, 237, 41986, 239, 41986, 242, 41986, 243, 41986, 97, 41986, 101, 41986, 102, 41986, 104, 41986, 105, 41986, 106, 41986, 244, 995, 23, 937, 41986, 116, 41986, 121, 995, 21, 937, 167, 103, 213, 995, 22, 937, 167, 103, 220, 995, 883, 937, 167, 103, 233, 995, 1610, 937, 167, 103, 120, 167, 103, 121, 167, 103, 123, 167, 103, 124, 167, 103, 125, 48672, 212, 48672, 214, 48672, 215, 48672, 216, 48672, 217, 21391, 187, 9855, 26, 18962, 6624, 48672, 218, 48672, 221, 48672, 223, 48672, 226, 48672, 227, 48672, 228, 48672, 229, 48672, 233, 48672, 234, 48672, 236, 48672, 237, 48672, 238, 48672, 240, 995, 23, 937, 48672, 101, 48672, 105, 995, 22, 1092, 187, 9855, 26, 20664, 6624, 48672, 112, 48672, 113, 48672, 115, 48672, 116, 48672, 117, 48672, 119, 995, 26, 937, 167, 105, 217, 167, 105, 219, 167, 105, 220, 167, 105, 221, 167, 105, 222, 167, 105, 224, 995, 22, 1092, 187, 9855, 26, 20895, 6624, 167, 105, 230, 995, 938, 937, 167, 105, 105, 167, 105, 244, 167, 105, 108, 167, 105, 109, 167, 105, 111, 167, 105, 113, 995, 21, 937, 167, 105, 120, 167, 105, 122, 167, 105, 124, 995, 22, 937, 167, 106, 216, 167, 106, 217, 167, 106, 218, 167, 106, 220, 995, 1047, 937, 167, 106, 237, 995, 1610, 937, 167, 106, 123, 167, 106, 124, 167, 106, 125, 167, 107, 212, 167, 107, 213, 167, 107, 214, 167, 107, 216, 995, 24, 937, 167, 107, 225, 167, 107, 227, 167, 107, 229, 995, 22, 937, 167, 107, 236, 167, 107, 237, 167, 107, 238, 167, 107, 240, 167, 107, 241, 167, 107, 242, 167, 107, 96, 995, 23, 1092, 187, 9855, 26, 24552, 6624, 167, 107, 103, 167, 107, 105, 167, 107, 107, 995, 24, 937, 167, 107, 117, 167, 107, 119, 167, 107, 120, 167, 107, 125, 995, 21, 937, 167, 244, 217, 167, 244, 219, 167, 244, 221, 167, 244, 222, 167, 244, 223, 167, 244, 225, 167, 244, 228, 167, 244, 229, 21391, 187, 9855, 26, 26560, 6624, 167, 244, 230, 167, 244, 232, 167, 244, 233, 167, 244, 234, 167, 244, 236, 995, 24, 937, 167, 244, 97, 167, 244, 99, 995, 24, 937, 167, 244, 244, 995, 21, 1092, 187, 9855, 26, 27571, 6624, 167, 244, 112, 995, 1797, 937, 167, 108, 220, 167, 108, 221, 167, 108, 222, 167, 108, 224, 167, 108, 225, 167, 108, 226, 167, 108, 228, 995, 1093, 937, 167, 108, 100, 167, 108, 101, 167, 108, 102, 167, 108, 104, 167, 108, 105, 167, 108, 106, 167, 108, 244, 995, 23, 937, 167, 108, 115, 167, 108, 116, 167, 108, 118, 995, 24, 937, 167, 109, 212, 167, 109, 213, 167, 109, 214, 167, 109, 216, 167, 109, 217, 167, 109, 218, 167, 109, 220, 995, 23, 937, 167, 109, 228, 167, 109, 229, 167, 109, 231, 995, 1671, 937, 167, 109, 120, 167, 109, 121, 167, 109, 123, 167, 109, 124, 167, 110, 212, 21391, 187, 9855, 26, 28459, 6624, 167, 110, 214, 995, 21, 937, 167, 110, 221, 167, 110, 225, 167, 110, 227, 167, 110, 229, 167, 110, 230, 167, 110, 236, 167, 110, 237, 167, 110, 243, 167, 110, 96, 167, 110, 97, 167, 110, 98, 167, 110, 101, 167, 110, 103, 167, 110, 105, 167, 110, 106, 167, 110, 107, 167, 110, 108, 167, 110, 109, 167, 110, 112, 167, 110, 113, 167, 110, 115, 21391, 187, 9855, 26, 29917, 6624, 167, 110, 116, 167, 110, 117, 167, 110, 119, 995, 23, 937, 167, 111, 213, 167, 111, 217, 167, 111, 218, 167, 111, 219, 167, 111, 221, 167, 111, 222, 167, 111, 225, 167, 111, 226, 167, 111, 228, 995, 25, 1092, 187, 9855, 26, 30169, 6624, 167, 111, 237, 167, 111, 238, 167, 111, 239, 167, 111, 241, 995, 1787, 937, 167, 112, 217, 167, 112, 218, 167, 112, 220, 167, 112, 221, 167, 112, 224, 167, 112, 226, 995, 21, 937, 167, 112, 233, 167, 112, 235, 167, 112, 238, 995, 21, 937, 167, 112, 97, 167, 112, 98, 167, 112, 100, 167, 112, 101, 167, 112, 104, 995, 23, 937, 167, 112, 112, 167, 112, 116, 995, 22, 937, 167, 112, 124, 167, 112, 125, 167, 113, 212, 167, 113, 213, 167, 113, 214, 167, 113, 216, 995, 24, 937, 167, 113, 225, 167, 113, 229, 167, 113, 230, 167, 113, 231, 167, 113, 233, 167, 113, 234, 167, 113, 236, 167, 113, 237, 167, 113, 238, 167, 113, 240, 995, 1423, 937, 167, 113, 117, 167, 113, 119, 167, 113, 120, 167, 113, 121, 167, 113, 123, 21391, 187, 9855, 26, 31774, 6624, 167, 113, 124, 995, 22, 937, 167, 114, 217, 167, 114, 219, 167, 114, 221, 995, 22, 937, 167, 114, 228, 167, 114, 229, 167, 114, 230, 167, 114, 232, 995, 25, 1092, 187, 9855, 26, 33597, 6624, 167, 114, 241, 995, 22, 937, 167, 114, 100, 995, 23, 937, 167, 114, 244, 995, 805, 1092, 187, 9855, 26, 34474, 6624, 167, 114, 120, 995, 22, 937, 167, 115, 212, 995, 23, 937, 167, 115, 221, 167, 115, 222, 167, 115, 224, 167, 115, 225, 167, 115, 226, 167, 115, 228, 995, 23, 937, 167, 115, 237, 995, 26, 937, 167, 115, 100, 167, 115, 101, 167, 115, 102, 167, 115, 104, 995, 1423, 937, 167, 116, 213, 167, 116, 214, 167, 116, 216, 167, 116, 217, 167, 116, 222, 995, 21, 937, 167, 116, 229, 167, 116, 231, 167, 116, 233, 167, 116, 234, 167, 116, 235, 167, 116, 238, 167, 116, 240, 995, 23, 937, 167, 116, 100, 995, 740, 937, 167, 116, 111, 995, 23, 937, 167, 116, 119, 995, 1348, 1092, 187, 9855, 2222, 3156, 6624, 167, 117, 229, 167, 117, 230, 167, 117, 233, 167, 117, 234, 167, 117, 236, 167, 117, 237, 167, 117, 238, 167, 117, 240, 995, 883, 937, 167, 117, 105, 995, 22, 937, 167, 117, 111, 21391, 187, 9855, 2222, 3832, 6624, 167, 117, 112, 167, 117, 113, 167, 117, 115, 167, 117, 116, 167, 117, 117, 167, 117, 119, 995, 23, 937, 167, 118, 212, 167, 118, 213, 167, 118, 215, 167, 118, 217, 995, 22, 937, 167, 118, 225, 167, 118, 226, 167, 118, 228, 167, 118, 229, 167, 118, 230, 21391, 187, 9855, 2222, 3593, 6624, 167, 118, 232, 995, 23, 937, 167, 118, 241, 167, 118, 243, 995, 1671, 937, 167, 119, 217, 167, 119, 218, 167, 119, 220, 167, 119, 221, 167, 119, 222, 167, 119, 224, 167, 119, 226, 995, 21, 937, 167, 119, 233, 167, 119, 235, 167, 119, 239, 167, 119, 240, 167, 119, 241, 167, 119, 242, 167, 119, 97, 167, 119, 98, 167, 119, 100, 167, 119, 101, 167, 119, 102, 167, 119, 104, 167, 119, 106, 995, 21, 937, 167, 119, 112, 167, 119, 116, 995, 21, 937, 167, 119, 124, 167, 119, 125, 167, 120, 212, 167, 120, 213, 167, 120, 214, 167, 120, 216, 995, 23, 937, 167, 120, 225, 167, 120, 229, 995, 22, 937, 167, 120, 237, 995, 1012, 937, 167, 120, 104, 995, 1047, 1092, 187, 9855, 26, 33976, 6624, 167, 120, 118, 995, 1508, 937, 167, 121, 229, 167, 121, 230, 21391, 187, 9855, 26, 36630, 6624, 167, 121, 232, 167, 121, 233, 167, 121, 236, 995, 23, 937, 167, 121, 96, 167, 121, 97, 167, 121, 101, 995, 22, 937, 167, 121, 244, 995, 25, 1092, 187, 9855, 26, 33304, 6624, 167, 121, 116, 995, 740, 937, 167, 122, 213, 995, 22, 937, 167, 122, 221, 995, 1012, 937, 167, 122, 237, 167, 122, 241, 995, 1610, 937, 167, 123, 213, 167, 123, 214, 167, 123, 216, 167, 123, 217, 167, 123, 218, 167, 123, 220, 995, 23, 937, 167, 123, 229, 167, 123, 230, 167, 123, 231, 167, 123, 233, 995, 2031, 1092, 187, 9855, 4148, 3156, 6624, 167, 124, 214, 995, 1036, 937, 167, 124, 232, 995, 25, 1092, 187, 9855, 26, 40187, 6624, 167, 124, 241, 995, 1166, 937, 167, 124, 111, 995, 24, 1092, 187, 9855, 40481, 18, 6624, 167, 124, 119, 995, 883, 937, 167, 125, 217, 995, 22, 937, 167, 125, 225, 167, 125, 226, 167, 125, 228, 167, 125, 229, 167, 125, 230, 167, 125, 232, 995, 23, 937, 167, 125, 240, 167, 125, 241, 167, 125, 243, 167, 125, 97, 995, 2511, 937, 168, 211, 123, 168, 211, 124, 168, 211, 125, 21391, 187, 9855, 26, 39506, 6624, 168, 212, 211, 995, 1036, 937, 168, 212, 229, 995, 22, 937, 168, 212, 236, 168, 212, 237, 168, 212, 238, 21391, 187, 9855, 26, 38978, 6624, 168, 212, 240, 168, 212, 241, 168, 212, 242, 168, 212, 96, 995, 23, 937, 168, 212, 105, 995, 1010, 1092, 187, 9855, 26, 41325, 6624, 168, 212, 120, 995, 1797, 937, 168, 213, 229, 168, 213, 230, 168, 213, 232, 168, 213, 233, 168, 213, 234, 168, 213, 236, 995, 23, 937, 168, 213, 97, 168, 213, 99, 168, 213, 101, 995, 22, 937, 168, 213, 108, 168, 213, 111, 168, 213, 112, 168, 213, 117, 995, 21, 937, 168, 213, 124, 168, 214, 213, 168, 214, 214, 168, 214, 215, 168, 214, 217, 168, 214, 218, 168, 214, 221, 168, 214, 222, 168, 214, 224, 168, 214, 225, 168, 214, 226, 168, 214, 228, 995, 23, 937, 168, 214, 237, 168, 214, 241, 995, 22, 937, 168, 214, 101, 168, 214, 102, 168, 214, 104, 168, 214, 105, 168, 214, 106, 168, 214, 244, 995, 23, 937, 168, 214, 116, 168, 214, 118, 168, 214, 120, 995, 22, 937, 29597, 212, 29597, 213, 29597, 214, 29597, 216, 29597, 217, 29597, 218, 29597, 220, 995, 23, 937, 29597, 228, 29597, 229, 29597, 230, 29597, 231, 29597, 233, 995, 22, 937, 29597, 96, 29597, 97, 29597, 100, 29597, 103, 29597, 104, 29597, 105, 29597, 106, 29597, 108, 21391, 187, 9855, 1525, 3156, 6624, 29597, 112, 29597, 113, 29597, 114, 29597, 115, 29597, 117, 29597, 120, 29597, 121, 29597, 123, 29597, 124, 29597, 125, 168, 216, 212, 995, 23, 937, 168, 216, 221, 168, 216, 225, 995, 22, 937, 168, 216, 233, 168, 216, 234, 21391, 187, 9855, 1525, 3832, 6624, 168, 216, 236, 168, 216, 237, 168, 216, 238, 168, 216, 240, 995, 23, 937, 168, 216, 101, 168, 216, 105, 995, 22, 937, 168, 216, 111, 168, 216, 112, 168, 216, 113, 168, 216, 115, 168, 216, 116, 168, 216, 117, 168, 216, 119, 168, 216, 120, 168, 216, 121, 21391, 187, 9855, 1525, 3593, 6624, 168, 216, 122, 995, 25, 937, 168, 217, 217, 995, 22, 937, 168, 217, 226, 168, 217, 228, 168, 13076, 168, 217, 230, 168, 217, 232, 168, 217, 234, 995, 21, 937, 168, 217, 241, 168, 217, 243, 168, 217, 97, 168, 217, 98, 168, 217, 99, 168, 217, 101, 168, 217, 102, 168, 217, 105, 168, 217, 106, 168, 217, 244, 168, 217, 108, 168, 217, 109, 168, 217, 111, 995, 883, 937, 168, 217, 124, 995, 22, 937, 168, 218, 216, 168, 218, 217, 168, 218, 218, 168, 218, 220, 168, 218, 221, 168, 218, 222, 168, 218, 224, 995, 23, 937, 168, 218, 232, 168, 218, 233, 168, 218, 236, 995, 23, 937, 168, 218, 96, 168, 218, 97, 168, 218, 98, 168, 218, 100, 168, 218, 101, 168, 218, 102, 168, 218, 104, 995, 23, 937, 168, 218, 112, 168, 218, 114, 995, 24, 937, 168, 218, 124, 168, 218, 125, 168, 219, 212, 168, 219, 213, 168, 219, 214, 168, 219, 216, 995, 23, 937, 168, 219, 225, 168, 219, 227, 168, 219, 229, 995, 22, 937, 168, 219, 237, 168, 219, 238, 168, 219, 240, 168, 219, 241, 168, 219, 96, 168, 219, 97, 168, 219, 98, 21391, 187, 9855, 26, 66, 3156, 6624, 168, 219, 99, 168, 219, 100, 168, 219, 101, 168, 219, 102, 168, 219, 105, 168, 219, 107, 168, 219, 108, 168, 219, 110, 168, 219, 113, 168, 219, 115, 995, 1036, 1092, 187, 9855, 26, 66, 3832, 6624, 168, 220, 217, 168, 220, 218, 168, 220, 220, 995, 23, 937, 168, 220, 229, 168, 220, 230, 168, 220, 232, 168, 220, 233, 168, 220, 234, 168, 220, 236, 995, 23, 937, 168, 220, 96, 168, 220, 97, 168, 220, 98, 168, 220, 99, 168, 220, 101, 21391, 187, 9855, 26, 66, 3593, 6624, 168, 220, 102, 995, 21, 937, 168, 220, 108, 168, 220, 109, 168, 220, 111, 168, 220, 112, 168, 220, 113, 168, 220, 115, 995, 23, 937, 168, 220, 124, 33057, 211, 33057, 213, 995, 22, 937, 33057, 221, 995, 22, 937, 33057, 228, 995, 23, 937, 33057, 236, 33057, 237, 33057, 239, 33057, 241, 995, 22, 937, 33057, 101, 33057, 102, 33057, 104, 33057, 105, 33057, 106, 33057, 108, 995, 22, 937, 33057, 116, 33057, 118, 33057, 120, 995, 1610, 937, 35169, 241, 35169, 242, 35169, 96, 35169, 97, 35169, 100, 995, 22, 937, 35169, 108, 35169, 110, 35169, 112, 35169, 113, 35169, 114, 35169, 115, 35169, 117, 35169, 120, 35169, 123, 35169, 124, 35169, 125, 168, 223, 212, 995, 23, 937, 168, 223, 221, 168, 223, 222, 168, 223, 225, 168, 223, 226, 21391, 187, 9855, 26, 67, 3156, 6624, 168, 223, 227, 168, 223, 228, 168, 223, 229, 168, 223, 233, 168, 223, 234, 168, 223, 236, 168, 223, 237, 168, 223, 238, 168, 223, 240, 995, 23, 937, 168, 223, 101, 168, 223, 102, 168, 223, 105, 995, 25, 1092, 187, 9855, 26, 67, 3832, 6624, 168, 223, 113, 995, 1166, 937, 168, 224, 217, 995, 24, 1092, 187, 9855, 26, 67, 3593, 6624, 168, 224, 225, 995, 1099, 937, 168, 224, 105, 168, 224, 106, 168, 224, 244, 168, 224, 108, 168, 224, 109, 168, 224, 111, 168, 224, 113, 995, 21, 937, 168, 224, 120, 168, 224, 121, 168, 224, 124, 995, 22, 937, 168, 225, 216, 168, 225, 217, 168, 225, 218, 168, 225, 220, 168, 225, 221, 168, 225, 222, 168, 225, 224, 995, 1235, 937, 168, 226, 212, 995, 1423, 937, 168, 226, 237, 21391, 187, 9855, 26, 68, 3156, 6624, 168, 226, 238, 168, 226, 240, 168, 226, 241, 168, 226, 96, 168, 226, 98, 995, 21, 937, 168, 226, 105, 168, 226, 106, 168, 226, 107, 168, 226, 108, 995, 22, 937, 168, 226, 116, 168, 226, 117, 168, 226, 119, 995, 22, 1092, 187, 9855, 26, 68, 3832, 6624, 168, 226, 125, 995, 25, 937, 168, 227, 220, 995, 23, 937, 168, 227, 228, 995, 26, 1092, 187, 9855, 26, 68, 3593, 6624, 168, 227, 238, 995, 25, 937, 168, 227, 100, 995, 23, 937, 168, 227, 244, 168, 227, 108, 168, 227, 109, 168, 227, 111, 168, 227, 112, 168, 227, 113, 168, 227, 115, 995, 23, 937, 168, 227, 124, 995, 26, 937, 168, 228, 220, 995, 1731, 937, 168, 228, 101, 168, 228, 102, 168, 228, 104, 168, 228, 105, 168, 228, 106, 168, 228, 244, 995, 23, 937, 168, 228, 116, 168, 228, 117, 168, 228, 118, 168, 228, 120, 995, 22, 937, 168, 229, 212, 995, 1093, 937, 168, 229, 232, 995, 23, 937, 168, 229, 240, 995, 805, 1092, 187, 9855, 26, 69, 3156, 6624, 168, 229, 105, 995, 1012, 937, 168, 229, 119, 168, 229, 120, 168, 229, 121, 168, 229, 123, 995, 25, 1092, 187, 9855, 26, 69, 3832, 6624, 168, 230, 217, 995, 1099, 1092, 187, 9855, 26, 69, 3593, 6624, 168, 230, 243, 995, 25, 937, 168, 230, 105, 995, 22, 937, 168, 230, 112, 168, 230, 113, 168, 230, 115, 168, 230, 116, 168, 230, 117, 168, 230, 119, 168, 230, 121, 168, 230, 122, 168, 230, 123, 168, 230, 124, 168, 231, 213, 995, 26, 937, 168, 231, 224, 168, 231, 225, 168, 231, 226, 168, 231, 228, 168, 231, 229, 168, 231, 230, 168, 231, 232, 995, 23, 937, 168, 231, 240, 995, 740, 937, 168, 231, 105, 168, 231, 106, 168, 231, 244, 168, 231, 108, 168, 231, 109, 168, 231, 111, 995, 23, 937, 168, 231, 120, 168, 231, 122, 168, 231, 124, 995, 22, 937, 33104, 217, 33104, 218, 33104, 222, 33104, 226, 33104, 227, 33104, 228, 33104, 229, 33104, 233, 33104, 237, 33104, 238, 33104, 239, 33104, 242, 33104, 97, 33104, 98, 33104, 100, 33104, 101, 33104, 102, 33104, 104, 995, 23, 937, 33104, 112, 33104, 116, 995, 22, 937, 33104, 124, 33104, 125, 168, 233, 212, 168, 233, 213, 168, 233, 214, 168, 233, 216, 168, 233, 217, 168, 233, 219, 168, 233, 220, 168, 233, 221, 168, 233, 222, 168, 233, 225, 168, 233, 227, 168, 233, 229, 168, 233, 230, 168, 233, 231, 21391, 187, 9855, 26, 70, 3156, 6624, 168, 233, 233, 168, 233, 236, 168, 233, 237, 168, 233, 238, 168, 233, 240, 168, 233, 241, 168, 233, 242, 168, 233, 96, 995, 24, 937, 168, 233, 105, 995, 26, 937, 168, 233, 116, 21391, 187, 9855, 26, 70, 3832, 6624, 168, 233, 117, 168, 233, 120, 168, 233, 125, 995, 21, 937, 21053, 222, 21053, 224, 21053, 226, 21053, 229, 21053, 230, 21053, 232, 21053, 233, 21053, 234, 21053, 236, 995, 23, 937, 21053, 97, 21053, 99, 21053, 101, 21053, 102, 21391, 187, 9855, 26, 70, 3593, 6624, 21053, 103, 21053, 104, 21053, 105, 21053, 106, 21053, 109, 21053, 111, 21053, 112, 21053, 113, 21053, 115, 21053, 118, 21053, 119, 21053, 120, 21053, 121, 168, 235, 213, 168, 235, 214, 168, 235, 215, 168, 235, 220, 168, 235, 221, 168, 235, 222, 168, 235, 224, 168, 235, 225, 168, 235, 226, 168, 235, 228, 995, 23, 937, 168, 235, 237, 168, 235, 240, 995, 23, 937, 168, 235, 101, 168, 235, 102, 168, 235, 104, 168, 235, 105, 168, 235, 106, 168, 235, 109, 168, 235, 111, 168, 235, 112, 168, 235, 116, 168, 235, 118, 168, 235, 120, 168, 235, 122, 168, 235, 123, 168, 235, 124, 168, 235, 125, 168, 18713, 168, 236, 214, 168, 236, 216, 168, 236, 217, 168, 236, 218, 168, 236, 220, 995, 23, 937, 168, 236, 229, 168, 236, 233, 995, 22, 937, 168, 236, 241, 168, 236, 242, 168, 236, 96, 995, 740, 937, 168, 236, 244, 168, 236, 108, 168, 236, 110, 168, 236, 112, 995, 22, 937, 168, 236, 120, 168, 236, 121, 168, 236, 123, 168, 236, 124, 168, 236, 125, 27997, 212, 995, 23, 937, 27997, 221, 27997, 223, 27997, 225, 995, 22, 937, 27997, 233, 27997, 234, 27997, 236, 27997, 237, 27997, 238, 27997, 240, 995, 23, 937, 27997, 101, 21391, 187, 9855, 26, 71, 3156, 6624, 27997, 103, 27997, 105, 995, 22, 937, 27997, 112, 27997, 113, 27997, 115, 27997, 116, 27997, 117, 27997, 121, 995, 21, 937, 168, 238, 213, 168, 238, 215, 168, 238, 217, 995, 22, 937, 168, 238, 225, 21391, 187, 9855, 26, 71, 3832, 6624, 168, 238, 226, 168, 238, 228, 168, 238, 229, 168, 238, 230, 168, 238, 232, 995, 23, 937, 168, 238, 241, 168, 238, 242, 168, 238, 97, 995, 22, 937, 168, 238, 105, 168, 238, 106, 168, 238, 244, 168, 238, 108, 168, 238, 109, 168, 238, 111, 168, 238, 112, 21391, 187, 9855, 26, 71, 3593, 6624, 168, 238, 113, 995, 21, 937, 168, 238, 120, 168, 238, 121, 168, 238, 122, 168, 238, 124, 995, 22, 937, 44633, 217, 44633, 218, 44633, 220, 44633, 221, 44633, 222, 44633, 224, 995, 23, 937, 44633, 233, 44633, 235, 44633, 237, 995, 22, 937, 44633, 97, 44633, 98, 44633, 100, 44633, 101, 44633, 102, 44633, 104, 995, 23, 937, 44633, 112, 44633, 114, 44633, 116, 44633, 118, 44633, 119, 44633, 120, 44633, 121, 44633, 124, 44633, 125, 10361, 212, 10361, 213, 10361, 214, 10361, 216, 995, 21, 937, 10361, 222, 10361, 225, 10361, 227, 10361, 236, 10361, 237, 10361, 238, 10361, 240, 10361, 241, 10361, 242, 10361, 96, 995, 23, 937, 10361, 104, 10361, 105, 10361, 107, 995, 24, 937, 10361, 116, 10361, 117, 10361, 119, 10361, 120, 10361, 121, 10361, 125, 28774, 211, 28774, 212, 28774, 213, 28774, 217, 28774, 222, 28774, 223, 28774, 224, 28774, 226, 28774, 229, 28774, 230, 28774, 232, 28774, 236, 28774, 238, 995, 21, 937, 28774, 97, 28774, 102, 995, 21, 937, 28774, 108, 28774, 109, 28774, 111, 28774, 112, 28774, 113, 28774, 115, 28774, 116, 28774, 117, 21391, 187, 9855, 66, 28271, 6624, 28774, 118, 28774, 119, 28774, 120, 28774, 121, 28774, 124, 168, 242, 213, 995, 22, 937, 168, 242, 221, 168, 242, 222, 168, 242, 224, 168, 242, 226, 168, 242, 228, 995, 23, 937, 168, 242, 236, 168, 242, 237, 168, 242, 238, 168, 242, 239, 21391, 187, 9855, 66, 37545, 6624, 168, 242, 241, 995, 22, 937, 168, 242, 100, 168, 242, 101, 168, 242, 102, 168, 242, 104, 168, 242, 105, 168, 242, 106, 168, 242, 244, 995, 1012, 1092, 187, 9855, 66, 41551, 6624, 168, 242, 121, 995, 21, 937, 29333, 213, 29333, 214, 29333, 216, 29333, 217, 29333, 218, 29333, 220, 29333, 222, 995, 21, 937, 29333, 229, 29333, 231, 29333, 234, 995, 21, 937, 29333, 241, 29333, 242, 29333, 96, 29333, 97, 29333, 98, 29333, 100, 995, 23, 937, 29333, 108, 29333, 110, 29333, 112, 995, 22, 937, 29333, 119, 29333, 120, 29333, 121, 29333, 123, 29333, 124, 29333, 125, 168, 96, 212, 995, 23, 937, 168, 96, 221, 168, 96, 222, 168, 96, 225, 995, 22, 937, 168, 96, 232, 995, 1731, 937, 168, 96, 112, 168, 96, 113, 168, 96, 115, 168, 96, 116, 168, 96, 117, 168, 96, 119, 168, 96, 121, 995, 21, 937, 168, 97, 213, 168, 97, 215, 168, 97, 219, 168, 97, 220, 168, 97, 221, 168, 97, 225, 995, 22, 937, 168, 97, 232, 995, 24, 937, 168, 97, 241, 168, 97, 243, 168, 97, 97, 168, 97, 98, 168, 97, 99, 21391, 187, 9855, 66, 18962, 6624, 168, 97, 100, 168, 97, 101, 168, 97, 102, 168, 97, 104, 995, 1093, 937, 168, 97, 124, 168, 97, 125, 168, 98, 211, 168, 98, 212, 21391, 187, 9855, 66, 20664, 6624, 168, 98, 213, 168, 98, 214, 168, 98, 216, 168, 98, 217, 168, 98, 218, 168, 98, 220, 168, 98, 221, 168, 98, 222, 168, 98, 224, 995, 23, 937, 168, 98, 233, 168, 98, 235, 168, 98, 237, 995, 22, 937, 168, 98, 97, 168, 98, 98, 168, 98, 100, 21391, 187, 9855, 66, 20895, 6624, 168, 98, 101, 995, 1047, 937, 168, 98, 116, 995, 22, 937, 168, 98, 124, 168, 98, 125, 168, 99, 212, 168, 99, 213, 168, 99, 214, 168, 99, 218, 995, 21, 937, 168, 99, 225, 19409, 4746, 4340, 6256, 325, 100, 2866, 20335, 2155, 214, 6319, 35199, 1853, 100, 3193, 122, 40673, 8924, 457, 1628, 668, 2155, 231, 2155, 232, 2155, 219, 995, 26, 937, 3069, 6027, 127, 117, 12984, 243, 24832, 21511, 1853, 241, 1853, 114, 3272, 6097, 18626, 13262, 214, 18221, 171, 125, 243, 171, 125, 96, 171, 125, 100, 158, 18713, 27582, 211, 1853, 243, 158, 221, 100, 158, 223, 229, 1853, 213, 1853, 218, 12984, 96, 12984, 229, 7803, 325, 121, 31600, 217, 37649, 27739, 222, 43776, 27739, 225, 27739, 218, 27739, 217, 10897, 96, 46105, 10897, 113, 10897, 112, 10897, 123, 10897, 122, 23759, 33089, 227, 33089, 228, 33089, 230, 33089, 231, 2155, 230, 12984, 105, 12984, 106, 1853, 237, 1853, 123, 1853, 240, 1853, 115, 1853, 106, 1853, 107, 1853, 219, 1853, 222, 158, 221, 217, 158, 221, 218, 158, 221, 213, 158, 221, 214, 1853, 105, 1853, 104, 1853, 102, 1853, 103, 171, 125, 97, 21391, 187, 9855, 66, 24552, 6624, 168, 99, 227, 168, 99, 229, 995, 22, 937, 168, 99, 236, 995, 1093, 1092, 187, 9855, 66, 26560, 6624, 168, 99, 244, 995, 23, 937, 168, 99, 115, 995, 1093, 1092, 187, 9855, 66, 27571, 6624, 168, 100, 219, 995, 24, 937, 168, 100, 229, 168, 100, 230, 168, 100, 232, 168, 100, 233, 168, 100, 234, 168, 100, 236, 995, 23, 937, 168, 100, 97, 168, 100, 99, 995, 24, 937, 168, 100, 244, 168, 100, 108, 168, 100, 109, 158, 218, 229, 158, 218, 231, 1853, 211, 1853, 214, 11679, 20422, 241, 135, 218, 135, 235, 135, 240, 135, 237, 135, 236, 11466, 135, 238, 15774, 12402, 135, 227, 1853, 108, 1853, 228, 1853, 226, 12385, 13262, 220, 325, 110, 27739, 212, 27739, 211, 10897, 117, 10897, 116, 27582, 99, 27582, 243, 27582, 96, 27582, 100, 27582, 102, 27582, 98, 158, 221, 236, 27739, 219, 10897, 98, 27739, 227, 27739, 228, 10897, 229, 10897, 99, 10897, 100, 10897, 103, 10897, 102, 10897, 101, 10897, 104, 27582, 103, 31600, 226, 31600, 225, 31600, 239, 31600, 241, 7307, 19960, 41324, 33089, 232, 33089, 234, 33089, 236, 33089, 233, 33089, 235, 27582, 244, 27582, 104, 12218, 27582, 107, 159, 220, 125, 159, 219, 239, 13262, 233, 159, 226, 218, 14313, 159, 226, 213, 159, 226, 235, 13262, 96, 14507, 8942, 21391, 187, 9855, 66, 28459, 6624, 168, 100, 111, 168, 100, 112, 168, 100, 113, 168, 100, 115, 995, 23, 937, 168, 100, 123, 995, 740, 937, 168, 101, 221, 168, 101, 222, 168, 101, 224, 168, 101, 225, 168, 101, 226, 21391, 187, 9855, 66, 29917, 6624, 168, 101, 228, 995, 23, 937, 168, 101, 237, 168, 101, 239, 168, 101, 241, 995, 1036, 1092, 187, 9855, 66, 30169, 6624, 168, 101, 109, 995, 1036, 937, 27750, 213, 27750, 214, 27750, 216, 27750, 217, 27750, 220, 27750, 222, 995, 21, 937, 27750, 229, 27750, 231, 27750, 234, 27750, 235, 27750, 238, 26680, 995, 3680, 937, 171, 125, 101, 3193, 123, 995, 1237, 937, 171, 125, 98, 21391, 187, 9855, 66, 31774, 6624, 27750, 241, 27750, 242, 27750, 96, 27750, 98, 27750, 100, 27750, 101, 27750, 103, 27750, 104, 27750, 105, 27750, 106, 27750, 108, 27750, 112, 995, 22, 937, 27750, 120, 27750, 121, 27750, 123, 27750, 124, 27750, 125, 168, 103, 212, 168, 103, 213, 168, 103, 214, 168, 103, 215, 21391, 187, 9855, 66, 33597, 6624, 168, 103, 216, 168, 103, 217, 168, 103, 218, 168, 103, 221, 168, 103, 225, 995, 22, 937, 168, 103, 232, 168, 103, 233, 168, 103, 234, 168, 103, 236, 995, 805, 1092, 187, 9855, 66, 34474, 6624, 168, 103, 101, 168, 103, 102, 168, 103, 103, 168, 103, 105, 995, 1619, 937, 159, 215, 111, 995, 4590, 1092, 187, 9855, 66, 22, 3156, 6624, 168, 104, 218, 995, 21, 937, 168, 104, 225, 168, 104, 226, 168, 104, 228, 168, 104, 229, 168, 104, 230, 168, 104, 232, 995, 23, 937, 168, 104, 241, 168, 104, 97, 995, 22, 937, 168, 104, 104, 168, 104, 105, 21391, 187, 9855, 66, 41081, 6624, 168, 104, 106, 995, 1166, 937, 168, 104, 124, 995, 22, 937, 168, 105, 216, 168, 105, 217, 21391, 187, 9855, 66, 22, 3593, 6624, 168, 105, 218, 995, 1036, 937, 168, 105, 236, 995, 1047, 937, 158, 216, 110, 995, 26, 1092, 187, 9855, 66, 22, 67, 17, 6624, 158, 216, 243, 995, 26, 1092, 187, 9855, 66, 22, 68, 18, 6624, 138, 228, 995, 1036, 937, 138, 98, 995, 23, 1092, 187, 9855, 66, 22, 70, 18, 6624, 2141, 995, 1036, 937, 3868, 995, 23, 1092, 187, 9855, 66, 33976, 6624, 168, 105, 103, 995, 746, 937, 168, 105, 124, 168, 105, 125, 168, 106, 212, 168, 106, 213, 168, 106, 214, 168, 106, 216, 21391, 187, 9855, 66, 36630, 6624, 168, 106, 217, 995, 22, 937, 168, 106, 225, 168, 106, 227, 168, 106, 229, 168, 106, 231, 168, 106, 232, 168, 106, 233, 168, 106, 234, 168, 106, 237, 995, 22, 937, 168, 106, 96, 995, 23, 1092, 187, 9855, 66, 33304, 6624, 168, 106, 103, 168, 106, 104, 168, 106, 105, 168, 106, 106, 168, 106, 244, 995, 23, 937, 168, 106, 115, 995, 1093, 937, 168, 107, 220, 168, 107, 221, 11458, 9799, 213, 9799, 223, 9799, 227, 9799, 235, 9799, 231, 9799, 239, 9799, 107, 9799, 99, 9799, 114, 9799, 122, 9799, 212, 9799, 214, 9799, 226, 9799, 230, 9799, 238, 9799, 234, 9799, 98, 9799, 113, 9799, 106, 9799, 121, 17865, 222, 9799, 243, 9799, 109, 9799, 103, 9799, 117, 9799, 125, 9799, 240, 9799, 110, 9799, 100, 9799, 118, 17865, 213, 9799, 229, 9799, 228, 9799, 237, 9799, 236, 9799, 233, 9799, 232, 9799, 225, 9799, 224, 9799, 241, 9799, 242, 9799, 96, 9799, 97, 9799, 101, 9799, 102, 9799, 104, 9799, 105, 9799, 244, 9799, 108, 9799, 111, 9799, 112, 9799, 115, 9799, 116, 9799, 119, 9799, 120, 9799, 123, 9799, 124, 17865, 211, 17865, 212, 17865, 214, 995, 24, 1092, 187, 9855, 66, 24, 3156, 6624, 168, 107, 222, 995, 21, 937, 168, 107, 228, 168, 107, 229, 168, 107, 230, 168, 107, 232, 168, 107, 233, 168, 107, 234, 168, 107, 236, 995, 23, 937, 168, 107, 97, 995, 24, 1092, 187, 9855, 66, 40187, 6624, 168, 107, 105, 995, 1423, 937, 168, 244, 213, 168, 244, 214, 168, 244, 215, 21391, 187, 9855, 66, 44953, 6624, 168, 244, 216, 168, 244, 217, 168, 244, 218, 168, 244, 221, 168, 244, 222, 168, 244, 224, 168, 244, 225, 168, 244, 226, 168, 244, 228, 995, 23, 937, 168, 244, 237, 168, 244, 238, 168, 244, 239, 168, 244, 241, 995, 22, 937, 168, 244, 100, 995, 24, 937, 159, 225, 232, 159, 225, 233, 159, 225, 234, 13262, 230, 159, 225, 235, 159, 226, 215, 159, 225, 98, 159, 225, 99, 159, 225, 100, 159, 225, 101, 159, 225, 236, 995, 26, 937, 159, 226, 221, 159, 225, 224, 159, 225, 225, 159, 225, 226, 159, 226, 226, 159, 225, 219, 159, 225, 220, 159, 226, 219, 159, 225, 102, 159, 225, 103, 159, 225, 110, 995, 26, 937, 159, 225, 211, 995, 21, 937, 159, 225, 120, 995, 22, 937, 159, 225, 227, 995, 21, 937, 138, 104, 159, 226, 211, 159, 226, 212, 159, 225, 221, 159, 225, 222, 159, 225, 223, 159, 226, 233, 159, 226, 216, 159, 225, 244, 159, 225, 108, 159, 225, 109, 159, 226, 238, 159, 225, 104, 159, 225, 105, 159, 225, 106, 159, 225, 107, 159, 226, 240, 159, 226, 227, 159, 226, 230, 159, 226, 214, 159, 226, 220, 159, 226, 239, 159, 226, 217, 21391, 187, 9855, 66, 39506, 6624, 168, 244, 244, 995, 740, 937, 168, 244, 120, 995, 1047, 1092, 187, 9855, 66, 38978, 6624, 168, 108, 220, 995, 1093, 937, 168, 108, 240, 995, 23, 1092, 187, 9855, 66, 41325, 6624, 168, 108, 99, 995, 746, 937, 168, 108, 119, 995, 883, 937, 127, 217, 5186, 19964, 128, 101, 21391, 187, 9855, 66, 25, 66, 23, 6624, 128, 112, 21391, 187, 9855, 66, 25, 66, 25, 6624, 128, 125, 129, 212, 13377, 129, 229, 11703, 127, 241, 129, 101, 129, 221, 21391, 187, 9855, 66, 25, 67, 18, 6624, 159, 220, 243, 995, 1630, 937, 158, 230, 227, 995, 1099, 937, 158, 228, 243, 995, 1047, 937, 8313, 158, 216, 230, 158, 216, 231, 11199, 12136, 158, 216, 238, 158, 216, 239, 158, 216, 240, 158, 216, 241, 21391, 187, 9855, 66, 26, 3156, 6624, 168, 109, 216, 995, 1047, 937, 168, 109, 232, 995, 740, 1092, 187, 9855, 66, 26, 3832, 6624, 168, 109, 243, 168, 109, 96, 168, 109, 97, 168, 109, 98, 168, 109, 100, 168, 109, 101, 168, 109, 103, 168, 109, 105, 995, 1093, 1092, 187, 9855, 66, 26, 3593, 6624, 168, 109, 123, 995, 1047, 937, 168, 110, 225, 168, 110, 226, 168, 110, 228, 168, 110, 229, 168, 110, 230, 168, 110, 232, 995, 23, 937, 168, 110, 241, 168, 110, 242, 168, 110, 243, 168, 110, 98, 168, 110, 99, 5507, 46233, 25500, 128, 102, 5588, 128, 113, 128, 118, 129, 211, 7679, 7256, 30075, 10278, 127, 124, 129, 102, 129, 222, 129, 220, 159, 219, 211, 995, 1630, 937, 158, 229, 239, 995, 1099, 937, 158, 228, 114, 995, 1047, 937, 17583, 15818, 19281, 25086, 114, 25086, 125, 46979, 212, 46979, 213, 46979, 214, 46979, 215, 21391, 187, 9855, 5781, 3156, 6624, 168, 110, 100, 168, 110, 101, 168, 110, 105, 168, 110, 106, 168, 110, 244, 168, 110, 109, 168, 110, 111, 995, 23, 937, 168, 110, 120, 168, 110, 125, 995, 21, 937, 168, 111, 217, 168, 111, 218, 168, 111, 220, 168, 111, 221, 168, 111, 222, 168, 111, 224, 168, 111, 225, 21391, 187, 9855, 5781, 3832, 6624, 168, 111, 226, 995, 21, 937, 168, 111, 233, 168, 111, 237, 995, 22, 937, 168, 111, 96, 168, 111, 97, 168, 111, 98, 168, 111, 100, 168, 111, 102, 168, 111, 104, 995, 23, 937, 168, 111, 111, 168, 111, 112, 21391, 187, 9855, 5781, 3593, 6624, 168, 111, 113, 168, 111, 114, 168, 111, 116, 995, 1717, 937, 765, 212, 995, 3507, 1092, 187, 9855, 357, 3156, 6624, 168, 112, 231, 168, 112, 232, 168, 112, 233, 168, 112, 234, 168, 112, 237, 168, 112, 238, 168, 112, 240, 168, 112, 241, 168, 112, 242, 168, 112, 96, 995, 23, 937, 168, 112, 105, 168, 112, 108, 995, 22, 937, 168, 112, 116, 168, 112, 117, 168, 112, 119, 21391, 187, 9855, 357, 3832, 6624, 168, 112, 120, 168, 112, 121, 168, 112, 123, 995, 23, 937, 168, 113, 217, 168, 113, 219, 168, 113, 221, 995, 22, 937, 168, 113, 228, 168, 113, 229, 168, 113, 230, 168, 113, 232, 995, 22, 1092, 187, 9855, 357, 3593, 6624, 168, 113, 238, 995, 25, 937, 168, 113, 100, 995, 23, 937, 168, 113, 244, 168, 113, 108, 168, 113, 109, 168, 113, 111, 995, 805, 937, 1357, 96, 995, 2227, 1092, 187, 9855, 317, 3156, 6624, 168, 113, 124, 168, 113, 125, 168, 114, 211, 168, 114, 213, 995, 22, 937, 168, 114, 221, 168, 114, 222, 168, 114, 224, 168, 114, 225, 168, 114, 226, 168, 114, 228, 995, 23, 937, 168, 114, 237, 168, 114, 239, 168, 114, 241, 168, 114, 242, 168, 114, 243, 21391, 187, 9855, 317, 3832, 6624, 168, 114, 96, 168, 114, 97, 168, 114, 98, 168, 114, 100, 168, 114, 101, 168, 114, 102, 168, 114, 104, 168, 114, 105, 168, 114, 106, 168, 114, 244, 995, 883, 937, 168, 114, 120, 995, 21, 1092, 187, 9855, 317, 3593, 6624, 168, 114, 125, 995, 1619, 937, 168, 115, 240, 168, 115, 241, 168, 115, 242, 30184, 995, 22, 937, 140, 212, 140, 233, 995, 1099, 1092, 187, 9855, 317, 69, 18, 6624, 1152, 995, 22, 937, 36065, 11954, 995, 1099, 1092, 187, 9855, 324, 3156, 6624, 168, 115, 96, 168, 115, 97, 168, 115, 98, 168, 115, 100, 995, 23, 937, 168, 115, 108, 168, 115, 110, 168, 115, 112, 995, 22, 937, 168, 115, 119, 995, 24, 1092, 187, 9855, 324, 3832, 6624, 168, 116, 212, 995, 23, 937, 168, 116, 220, 995, 740, 937, 168, 116, 233, 168, 116, 234, 168, 116, 236, 168, 116, 237, 168, 116, 238, 168, 116, 240, 168, 116, 241, 168, 116, 242, 21391, 187, 9855, 324, 3593, 6624, 168, 116, 243, 168, 116, 96, 168, 116, 97, 168, 116, 98, 168, 116, 101, 168, 116, 103, 168, 116, 105, 995, 22, 937, 168, 116, 111, 995, 1093, 937, 168, 117, 216, 21391, 187, 9855, 3348, 3156, 6624, 168, 117, 217, 995, 22, 937, 168, 117, 224, 168, 117, 225, 168, 117, 226, 168, 117, 228, 995, 1036, 1092, 187, 9855, 3348, 3832, 6624, 168, 117, 97, 995, 22, 937, 168, 117, 104, 168, 117, 105, 168, 117, 106, 168, 117, 244, 168, 117, 108, 168, 117, 109, 168, 117, 111, 995, 23, 937, 168, 117, 120, 168, 117, 122, 168, 117, 124, 995, 21, 1092, 187, 9855, 3348, 3593, 6624, 168, 118, 214, 168, 118, 216, 168, 118, 217, 168, 118, 218, 168, 118, 220, 168, 118, 221, 168, 118, 222, 168, 118, 224, 995, 23, 937, 168, 118, 232, 168, 118, 233, 168, 118, 234, 168, 118, 235, 168, 118, 237, 995, 22, 937, 168, 118, 97, 168, 118, 98, 168, 118, 100, 168, 118, 101, 168, 118, 102, 168, 118, 104, 168, 118, 105, 168, 118, 106, 21391, 187, 9855, 2320, 3156, 6624, 168, 118, 107, 168, 118, 244, 168, 118, 108, 168, 118, 109, 168, 118, 112, 168, 118, 114, 168, 118, 116, 995, 746, 1092, 187, 9855, 2320, 3832, 6624, 168, 119, 221, 995, 1012, 937, 168, 119, 237, 168, 119, 238, 168, 119, 240, 168, 119, 241, 168, 119, 97, 995, 22, 937, 168, 119, 105, 168, 119, 107, 21391, 187, 9855, 2320, 3593, 6624, 168, 119, 108, 995, 22, 937, 168, 119, 116, 168, 119, 117, 168, 119, 119, 168, 119, 120, 168, 119, 121, 168, 119, 123, 995, 23, 937, 168, 120, 217, 168, 120, 219, 168, 120, 221, 995, 22, 937, 168, 120, 229, 168, 120, 230, 168, 120, 232, 168, 120, 233, 168, 120, 234, 168, 120, 236, 21391, 187, 9855, 67, 28271, 6624, 168, 120, 237, 995, 22, 937, 168, 120, 97, 168, 120, 101, 995, 22, 937, 168, 120, 108, 995, 805, 1092, 187, 9855, 67, 37545, 6624, 168, 120, 121, 995, 22, 937, 168, 121, 213, 995, 746, 1092, 187, 9855, 67, 41551, 6624, 168, 121, 233, 995, 1012, 937, 168, 121, 101, 168, 121, 102, 168, 121, 104, 168, 121, 105, 168, 121, 244, 995, 23, 937, 168, 121, 116, 168, 121, 120, 995, 22, 937, 35061, 26532, 212, 26532, 215, 26532, 218, 26532, 219, 26532, 220, 26532, 221, 26532, 227, 995, 24, 937, 26532, 236, 995, 21, 937, 26532, 243, 26532, 99, 26532, 107, 26532, 244, 26532, 109, 26532, 110, 26532, 111, 26532, 118, 26532, 119, 26532, 122, 166, 111, 211, 166, 111, 222, 166, 111, 224, 166, 111, 231, 166, 111, 235, 166, 111, 239, 166, 111, 110, 166, 111, 111, 166, 111, 114, 166, 111, 117, 166, 111, 118, 166, 111, 120, 35458, 211, 35458, 212, 35458, 214, 35458, 215, 35458, 216, 35458, 217, 35458, 220, 35458, 221, 35458, 222, 35458, 223, 35458, 227, 35458, 231, 35458, 239, 35458, 240, 35458, 242, 35458, 243, 35458, 96, 35458, 103, 35458, 104, 35458, 105, 35458, 107, 35458, 109, 35458, 110, 35458, 118, 35458, 119, 35458, 121, 35458, 122, 35458, 123, 26437, 212, 26437, 215, 26437, 219, 26437, 223, 26437, 232, 26437, 234, 34817, 26437, 96, 26437, 99, 26437, 102, 26437, 103, 26437, 105, 26437, 107, 26437, 109, 26437, 110, 26437, 111, 26437, 113, 26437, 115, 26437, 116, 26437, 122, 26437, 123, 166, 114, 211, 166, 114, 215, 166, 114, 217, 21391, 187, 9855, 67, 18962, 6624, 168, 122, 213, 168, 122, 214, 168, 122, 216, 168, 122, 217, 168, 122, 218, 168, 122, 220, 995, 23, 937, 168, 122, 229, 168, 122, 231, 168, 122, 233, 995, 22, 937, 168, 122, 240, 168, 122, 241, 168, 122, 242, 168, 122, 96, 168, 122, 97, 168, 122, 98, 21391, 187, 9855, 67, 20664, 6624, 168, 122, 100, 995, 23, 937, 168, 122, 108, 168, 122, 112, 995, 22, 937, 168, 122, 119, 995, 883, 1092, 187, 9855, 67, 20895, 6624, 168, 123, 216, 995, 1047, 937, 168, 123, 233, 168, 123, 234, 168, 123, 236, 168, 123, 237, 168, 123, 238, 168, 123, 240, 995, 23, 937, 168, 123, 101, 168, 123, 103, 168, 123, 105, 168, 123, 106, 168, 123, 107, 166, 114, 223, 166, 114, 224, 166, 114, 226, 166, 114, 228, 166, 114, 235, 166, 114, 239, 166, 114, 243, 166, 114, 104, 166, 114, 107, 166, 114, 244, 166, 114, 114, 166, 114, 115, 166, 114, 118, 166, 114, 122, 166, 115, 215, 166, 115, 216, 166, 115, 218, 166, 115, 220, 166, 115, 227, 166, 115, 231, 166, 115, 235, 166, 115, 96, 166, 115, 98, 166, 115, 107, 166, 115, 244, 166, 115, 110, 166, 115, 113, 166, 115, 114, 166, 115, 115, 166, 115, 116, 166, 115, 121, 166, 115, 122, 166, 115, 123, 166, 115, 125, 166, 116, 212, 166, 116, 213, 166, 116, 219, 166, 116, 220, 166, 116, 223, 166, 116, 227, 166, 116, 239, 166, 116, 240, 166, 116, 99, 166, 116, 117, 166, 117, 211, 166, 117, 212, 166, 117, 215, 166, 117, 219, 166, 117, 227, 166, 117, 228, 166, 117, 230, 166, 117, 239, 166, 117, 243, 166, 117, 99, 166, 39068, 166, 117, 119, 166, 117, 122, 166, 117, 125, 36178, 211, 36178, 212, 36178, 219, 36178, 220, 36178, 222, 36178, 224, 36178, 231, 42581, 36178, 111, 36178, 114, 36178, 117, 36178, 118, 36178, 120, 166, 119, 211, 166, 119, 212, 166, 119, 214, 166, 119, 216, 166, 119, 217, 166, 119, 221, 166, 119, 223, 166, 119, 224, 166, 119, 225, 166, 119, 227, 166, 119, 231, 166, 119, 233, 166, 119, 239, 166, 119, 240, 166, 119, 242, 166, 119, 243, 166, 119, 96, 166, 119, 100, 166, 119, 103, 166, 119, 104, 166, 119, 107, 166, 119, 110, 166, 119, 118, 21391, 187, 9855, 67, 24552, 6624, 168, 123, 244, 168, 123, 108, 168, 123, 109, 168, 123, 112, 168, 123, 113, 168, 123, 115, 168, 123, 116, 168, 123, 117, 168, 123, 119, 995, 23, 937, 168, 124, 212, 168, 124, 213, 168, 124, 214, 168, 124, 215, 168, 124, 217, 995, 22, 937, 168, 124, 224, 21391, 187, 9855, 67, 26560, 6624, 168, 124, 225, 995, 1093, 937, 168, 124, 97, 995, 22, 937, 168, 124, 104, 21391, 187, 9855, 67, 27571, 6624, 168, 124, 105, 995, 22, 937, 168, 124, 111, 995, 1093, 937, 168, 125, 216, 995, 23, 937, 166, 119, 119, 166, 119, 121, 166, 119, 122, 166, 119, 123, 166, 120, 215, 166, 120, 216, 166, 120, 223, 166, 120, 122, 166, 120, 123, 166, 120, 124, 166, 121, 211, 166, 121, 215, 166, 121, 223, 166, 121, 224, 166, 121, 226, 166, 121, 227, 166, 121, 228, 166, 121, 235, 166, 121, 236, 166, 121, 239, 166, 121, 103, 166, 121, 106, 166, 121, 244, 166, 121, 114, 166, 121, 118, 166, 121, 122, 166, 122, 218, 166, 122, 219, 166, 122, 224, 166, 122, 227, 166, 122, 107, 166, 122, 244, 166, 122, 110, 166, 122, 112, 166, 122, 114, 166, 122, 122, 166, 122, 123, 166, 122, 125, 166, 123, 212, 166, 123, 213, 166, 123, 214, 166, 123, 219, 166, 123, 220, 166, 123, 227, 166, 123, 239, 166, 123, 240, 166, 123, 99, 166, 123, 100, 166, 123, 119, 166, 124, 211, 166, 124, 215, 166, 124, 219, 166, 124, 227, 166, 124, 228, 166, 124, 232, 166, 124, 239, 166, 124, 118, 166, 124, 119, 166, 124, 122, 166, 125, 211, 166, 125, 218, 166, 125, 219, 166, 125, 220, 166, 125, 222, 166, 125, 224, 166, 125, 225, 166, 125, 231, 166, 125, 239, 166, 125, 103, 166, 125, 104, 166, 125, 110, 166, 125, 111, 166, 125, 114, 166, 125, 118, 167, 211, 211, 167, 211, 212, 167, 211, 215, 167, 211, 223, 167, 211, 227, 167, 211, 231, 167, 211, 239, 167, 211, 240, 167, 211, 103, 167, 212, 215, 167, 212, 216, 167, 212, 219, 167, 212, 221, 167, 212, 223, 167, 212, 225, 167, 212, 230, 167, 212, 231, 167, 212, 232, 167, 212, 234, 167, 212, 236, 21391, 187, 9855, 67, 28459, 6624, 168, 125, 223, 995, 746, 937, 168, 125, 97, 168, 125, 98, 168, 125, 100, 168, 125, 101, 168, 125, 102, 168, 125, 104, 21391, 187, 9855, 67, 29917, 6624, 168, 125, 105, 995, 22, 937, 168, 125, 112, 168, 125, 114, 168, 125, 116, 995, 22, 937, 168, 19675, 168, 125, 124, 168, 125, 125, 169, 211, 212, 169, 211, 213, 169, 211, 214, 169, 211, 216, 995, 22, 1092, 187, 9855, 67, 30169, 6624, 169, 211, 222, 995, 22, 937, 169, 211, 229, 995, 22, 937, 169, 211, 236, 995, 746, 937, 167, 212, 240, 167, 212, 122, 167, 212, 123, 44028, 211, 44028, 215, 44028, 223, 44028, 224, 44028, 226, 44028, 228, 44028, 235, 44028, 236, 44028, 237, 44028, 239, 44028, 242, 44028, 243, 44028, 96, 44028, 97, 44028, 103, 44028, 104, 44028, 106, 995, 21, 937, 44028, 111, 44028, 113, 44028, 114, 44028, 115, 44028, 118, 44028, 122, 167, 214, 215, 167, 214, 216, 167, 214, 218, 167, 214, 219, 167, 214, 220, 167, 214, 227, 167, 214, 228, 167, 214, 231, 167, 214, 235, 167, 214, 243, 167, 214, 100, 167, 215, 219, 167, 215, 220, 167, 215, 222, 167, 215, 223, 167, 215, 227, 167, 215, 229, 167, 215, 230, 167, 215, 235, 167, 215, 236, 167, 215, 238, 167, 215, 239, 167, 215, 240, 167, 215, 98, 167, 215, 99, 167, 215, 100, 167, 215, 103, 167, 215, 107, 167, 215, 114, 167, 215, 115, 167, 215, 117, 167, 215, 118, 167, 215, 119, 167, 216, 211, 167, 216, 212, 167, 216, 215, 167, 216, 219, 167, 216, 227, 167, 216, 228, 167, 216, 231, 167, 216, 232, 167, 216, 235, 167, 216, 239, 167, 216, 243, 167, 216, 118, 167, 216, 119, 167, 216, 122, 167, 217, 211, 167, 217, 213, 167, 217, 219, 167, 217, 220, 167, 217, 222, 167, 217, 224, 167, 13076, 167, 217, 230, 167, 217, 231, 167, 217, 235, 167, 217, 239, 167, 217, 103, 167, 218, 223, 167, 218, 227, 167, 218, 231, 167, 218, 239, 167, 218, 240, 21391, 187, 9855, 67, 31774, 6624, 169, 211, 108, 995, 22, 937, 169, 211, 116, 169, 211, 117, 169, 211, 119, 169, 211, 120, 169, 211, 121, 169, 211, 123, 995, 23, 937, 169, 212, 217, 169, 212, 219, 169, 212, 221, 995, 22, 1092, 187, 9855, 67, 33597, 6624, 169, 212, 228, 169, 212, 229, 169, 212, 230, 169, 212, 232, 169, 212, 233, 169, 212, 234, 169, 212, 236, 995, 23, 937, 169, 212, 96, 995, 740, 937, 169, 212, 108, 169, 212, 109, 21391, 187, 9855, 67, 34474, 6624, 169, 212, 111, 169, 212, 112, 169, 212, 113, 169, 212, 115, 995, 23, 937, 169, 212, 124, 169, 212, 125, 169, 213, 211, 169, 213, 213, 995, 1093, 937, 167, 218, 242, 167, 218, 103, 167, 218, 104, 167, 218, 107, 167, 218, 110, 167, 218, 119, 167, 218, 121, 167, 218, 123, 167, 219, 215, 167, 219, 216, 167, 219, 219, 167, 219, 222, 167, 219, 223, 167, 219, 231, 167, 219, 232, 167, 219, 234, 167, 219, 236, 167, 219, 243, 167, 219, 114, 167, 219, 122, 167, 220, 235, 167, 220, 239, 167, 220, 243, 167, 220, 103, 167, 220, 104, 167, 220, 114, 167, 220, 115, 167, 220, 122, 22983, 215, 22983, 216, 22983, 220, 22983, 227, 22983, 228, 24169, 22983, 235, 22983, 236, 22983, 237, 22983, 243, 22983, 96, 22983, 98, 22983, 100, 22983, 101, 22983, 105, 22983, 107, 22983, 110, 22983, 114, 28162, 14394, 220, 14394, 223, 14394, 227, 14394, 229, 14394, 235, 14394, 236, 14394, 238, 14394, 240, 14394, 97, 21465, 14394, 100, 14394, 101, 14394, 103, 14394, 106, 995, 21, 937, 14394, 113, 14394, 114, 14394, 115, 14394, 117, 995, 21, 937, 14394, 125, 167, 223, 211, 167, 223, 212, 167, 223, 215, 167, 223, 219, 167, 223, 227, 167, 223, 228, 167, 223, 230, 167, 223, 231, 167, 223, 232, 167, 223, 239, 167, 224, 231, 167, 224, 232, 167, 224, 233, 167, 224, 235, 167, 224, 238, 167, 224, 239, 167, 224, 241, 167, 224, 242, 167, 224, 99, 167, 224, 100, 21391, 187, 9855, 67, 22, 3156, 6624, 169, 213, 232, 995, 1047, 937, 169, 213, 101, 169, 213, 102, 169, 213, 104, 169, 213, 105, 169, 213, 106, 169, 213, 244, 995, 22, 1092, 187, 9855, 67, 41081, 6624, 169, 213, 113, 169, 213, 116, 169, 213, 118, 169, 213, 120, 995, 22, 937, 169, 214, 213, 169, 214, 214, 169, 214, 216, 169, 214, 217, 169, 214, 218, 169, 214, 221, 995, 22, 937, 169, 214, 229, 169, 214, 233, 995, 21, 1092, 187, 9855, 67, 22, 3593, 6624, 169, 214, 238, 169, 214, 241, 169, 214, 242, 169, 214, 96, 169, 214, 97, 169, 214, 98, 169, 214, 100, 995, 23, 937, 169, 214, 108, 169, 214, 112, 995, 22, 937, 169, 214, 119, 995, 883, 937, 167, 224, 102, 167, 224, 104, 167, 224, 106, 167, 224, 108, 167, 224, 110, 167, 224, 111, 167, 224, 114, 167, 224, 118, 167, 225, 211, 167, 225, 212, 167, 225, 214, 167, 225, 215, 167, 225, 216, 167, 225, 223, 167, 225, 227, 167, 225, 231, 167, 225, 243, 167, 225, 96, 167, 225, 103, 167, 225, 107, 48240, 40025, 216, 40025, 219, 40025, 222, 40025, 223, 40025, 225, 40025, 227, 40025, 231, 40025, 232, 40025, 234, 40025, 236, 40025, 238, 40025, 240, 40025, 243, 40025, 99, 40025, 103, 40025, 122, 167, 227, 227, 167, 227, 235, 167, 227, 239, 167, 227, 243, 167, 227, 103, 167, 227, 104, 167, 227, 106, 167, 227, 114, 167, 228, 227, 167, 228, 228, 167, 228, 231, 167, 228, 235, 167, 228, 243, 167, 228, 96, 167, 228, 98, 167, 228, 100, 167, 228, 107, 167, 229, 211, 167, 229, 219, 167, 229, 240, 167, 229, 99, 167, 229, 103, 167, 229, 107, 167, 229, 115, 167, 229, 117, 167, 229, 119, 34431, 211, 34431, 215, 34431, 219, 34431, 227, 34431, 232, 34431, 239, 34431, 240, 34431, 243, 34431, 98, 34431, 99, 34431, 101, 34431, 107, 34431, 244, 34431, 109, 34431, 111, 34431, 118, 167, 231, 231, 167, 231, 232, 167, 231, 235, 167, 231, 238, 167, 231, 239, 167, 231, 99, 167, 231, 100, 167, 231, 102, 167, 231, 103, 167, 231, 104, 167, 231, 105, 167, 231, 110, 167, 231, 111, 167, 231, 114, 167, 231, 118, 21391, 187, 9855, 67, 33976, 6624, 169, 215, 216, 995, 24, 937, 169, 215, 225, 995, 1166, 1092, 187, 9855, 67, 36630, 6624, 169, 215, 243, 995, 1010, 937, 169, 215, 112, 169, 215, 113, 169, 215, 115, 169, 215, 116, 169, 215, 117, 169, 215, 119, 169, 215, 121, 169, 215, 122, 169, 215, 123, 169, 215, 124, 21391, 187, 9855, 67, 33304, 6624, 169, 215, 125, 169, 216, 213, 169, 216, 217, 995, 22, 937, 169, 216, 225, 169, 216, 226, 169, 216, 228, 169, 216, 229, 169, 216, 230, 169, 216, 232, 995, 23, 937, 169, 216, 241, 169, 216, 243, 169, 216, 97, 995, 22, 937, 169, 216, 104, 169, 216, 105, 169, 216, 106, 169, 216, 244, 167, 232, 211, 167, 232, 212, 167, 232, 214, 167, 232, 215, 167, 232, 216, 167, 232, 222, 167, 232, 223, 167, 232, 224, 167, 232, 227, 167, 232, 231, 167, 232, 239, 167, 232, 240, 167, 232, 242, 167, 232, 243, 167, 232, 96, 167, 233, 243, 167, 233, 96, 167, 233, 99, 167, 233, 103, 167, 233, 105, 167, 233, 106, 167, 233, 110, 167, 233, 111, 167, 233, 113, 167, 35973, 167, 233, 115, 167, 233, 121, 167, 233, 122, 167, 233, 123, 167, 234, 211, 167, 234, 215, 167, 234, 223, 167, 234, 224, 167, 234, 226, 167, 234, 227, 167, 234, 228, 167, 234, 235, 167, 234, 107, 167, 235, 227, 167, 235, 228, 167, 235, 231, 167, 235, 235, 167, 235, 100, 167, 235, 107, 167, 235, 114, 167, 236, 219, 167, 236, 99, 167, 236, 103, 167, 237, 239, 167, 237, 240, 167, 237, 243, 167, 237, 99, 167, 237, 106, 167, 237, 107, 167, 237, 111, 167, 238, 231, 167, 238, 110, 167, 238, 114, 167, 238, 118, 167, 239, 211, 167, 239, 212, 167, 239, 216, 167, 239, 103, 167, 239, 104, 167, 239, 107, 167, 239, 109, 167, 239, 110, 167, 239, 118, 167, 239, 119, 167, 239, 121, 167, 240, 215, 167, 240, 219, 167, 240, 223, 167, 240, 231, 167, 240, 232, 167, 240, 243, 167, 240, 99, 167, 240, 103, 167, 240, 110, 167, 240, 111, 167, 240, 113, 167, 240, 115, 167, 240, 122, 167, 240, 123, 167, 241, 211, 167, 241, 215, 167, 241, 223, 167, 241, 224, 167, 241, 226, 167, 241, 227, 167, 241, 228, 167, 241, 229, 167, 241, 233, 167, 241, 234, 21391, 187, 9855, 67, 24, 3156, 6624, 169, 216, 108, 995, 1012, 937, 169, 216, 123, 995, 23, 937, 169, 217, 216, 169, 217, 217, 169, 217, 218, 169, 217, 220, 169, 217, 221, 21391, 187, 9855, 67, 40187, 6624, 169, 217, 222, 995, 938, 937, 169, 217, 97, 169, 217, 98, 169, 217, 100, 169, 217, 101, 169, 217, 102, 21391, 187, 9855, 67, 44953, 6624, 169, 217, 104, 995, 23, 937, 169, 217, 112, 169, 217, 114, 169, 217, 116, 169, 217, 117, 169, 217, 118, 169, 217, 119, 169, 217, 121, 169, 217, 123, 169, 217, 124, 169, 217, 125, 169, 218, 212, 995, 1047, 937, 167, 241, 235, 167, 241, 236, 167, 241, 239, 167, 241, 243, 167, 241, 103, 167, 241, 104, 167, 241, 106, 167, 241, 107, 167, 241, 244, 167, 241, 114, 167, 241, 115, 167, 241, 118, 167, 242, 218, 167, 242, 220, 167, 242, 107, 167, 242, 244, 167, 242, 110, 167, 242, 114, 167, 242, 122, 167, 242, 123, 167, 242, 125, 50152, 211, 50152, 212, 50152, 218, 50152, 219, 50152, 220, 50152, 223, 50152, 227, 50152, 235, 50152, 236, 50152, 238, 50152, 240, 50152, 99, 50152, 100, 50152, 103, 50152, 107, 50152, 114, 50152, 115, 50152, 117, 50152, 118, 50152, 119, 31554, 211, 31554, 215, 31554, 228, 31554, 230, 35296, 31554, 240, 31554, 243, 31554, 99, 31554, 107, 31554, 244, 31554, 109, 31554, 111, 31554, 118, 31554, 122, 167, 97, 224, 167, 97, 103, 167, 97, 110, 167, 97, 114, 167, 97, 118, 167, 98, 211, 167, 98, 212, 167, 98, 214, 167, 98, 216, 167, 98, 223, 167, 98, 227, 167, 98, 231, 167, 98, 240, 167, 98, 242, 167, 98, 96, 167, 98, 103, 167, 98, 104, 167, 98, 107, 167, 98, 110, 167, 98, 118, 167, 98, 119, 167, 98, 121, 167, 98, 123, 167, 99, 215, 167, 99, 235, 167, 99, 243, 167, 99, 122, 167, 99, 123, 31956, 211, 31956, 215, 31956, 223, 31956, 226, 31956, 228, 31956, 235, 31956, 236, 31956, 239, 31956, 243, 31956, 103, 31956, 104, 21391, 187, 9855, 67, 39506, 6624, 169, 218, 227, 995, 24, 937, 169, 218, 236, 995, 1166, 1092, 187, 9855, 67, 38978, 6624, 169, 218, 106, 995, 25, 937, 169, 218, 115, 169, 218, 116, 169, 218, 117, 169, 218, 119, 995, 1012, 1092, 187, 9855, 67, 41325, 6624, 169, 219, 219, 169, 219, 221, 995, 22, 937, 169, 219, 228, 995, 1348, 937, 31956, 106, 31956, 244, 31956, 114, 31956, 115, 31956, 118, 39343, 32654, 215, 32654, 216, 32654, 218, 32654, 220, 32654, 221, 32654, 224, 32654, 225, 38248, 32654, 244, 32654, 110, 32654, 114, 32654, 122, 32654, 123, 32654, 125, 41986, 212, 41986, 219, 41986, 220, 41986, 223, 41986, 225, 995, 21, 937, 41986, 235, 41986, 236, 41986, 238, 41986, 240, 41986, 241, 41986, 96, 41986, 98, 41986, 99, 41986, 100, 41986, 103, 41986, 107, 41986, 114, 41986, 115, 41986, 117, 41986, 118, 41986, 119, 41986, 120, 167, 103, 211, 167, 103, 212, 167, 103, 219, 167, 103, 232, 167, 103, 118, 167, 103, 119, 167, 103, 122, 48672, 211, 48672, 213, 48672, 219, 48672, 220, 48672, 222, 48672, 224, 48672, 225, 48672, 230, 48672, 231, 48672, 232, 48672, 235, 48672, 239, 48672, 99, 48672, 100, 48672, 102, 48672, 103, 48672, 104, 48672, 110, 48672, 111, 48672, 114, 48672, 118, 167, 105, 214, 167, 105, 215, 167, 105, 216, 167, 105, 218, 167, 105, 223, 167, 105, 103, 167, 105, 104, 167, 105, 106, 167, 105, 107, 167, 105, 110, 167, 105, 112, 167, 105, 118, 167, 105, 119, 167, 105, 121, 167, 105, 123, 167, 106, 215, 167, 106, 219, 167, 106, 235, 167, 106, 236, 167, 106, 122, 21391, 187, 9855, 67, 26, 3156, 6624, 169, 219, 105, 169, 219, 106, 169, 219, 108, 169, 219, 109, 169, 219, 111, 169, 219, 112, 169, 219, 113, 169, 219, 115, 995, 23, 937, 169, 219, 124, 169, 220, 211, 169, 220, 213, 995, 22, 937, 169, 220, 220, 169, 220, 221, 169, 220, 222, 169, 220, 223, 21391, 187, 9855, 67, 26, 3832, 6624, 169, 220, 224, 995, 1047, 937, 169, 220, 240, 995, 23, 937, 169, 220, 100, 169, 220, 101, 169, 220, 102, 169, 220, 103, 21391, 187, 9855, 67, 26, 3593, 6624, 169, 220, 104, 995, 1423, 937, 169, 221, 213, 169, 221, 214, 169, 221, 216, 169, 221, 217, 169, 221, 218, 169, 221, 220, 169, 221, 221, 169, 221, 222, 169, 221, 223, 167, 107, 211, 167, 107, 215, 167, 107, 224, 167, 107, 226, 167, 107, 228, 167, 107, 235, 167, 107, 239, 167, 107, 243, 167, 107, 104, 167, 107, 106, 167, 107, 114, 167, 107, 115, 167, 107, 116, 167, 107, 118, 167, 107, 121, 167, 107, 122, 167, 107, 123, 167, 107, 124, 167, 244, 215, 167, 244, 216, 167, 244, 218, 167, 244, 220, 167, 244, 224, 167, 244, 226, 167, 244, 227, 167, 244, 231, 167, 244, 235, 167, 244, 96, 167, 244, 98, 167, 244, 107, 167, 108, 219, 167, 108, 223, 167, 108, 227, 167, 108, 99, 167, 108, 103, 167, 108, 107, 167, 108, 114, 167, 108, 117, 167, 109, 211, 167, 109, 215, 167, 109, 219, 167, 109, 227, 167, 109, 230, 167, 109, 118, 167, 109, 119, 167, 109, 122, 167, 109, 125, 167, 110, 211, 167, 110, 213, 167, 110, 219, 167, 110, 220, 167, 110, 222, 167, 110, 223, 167, 110, 224, 167, 110, 226, 167, 110, 228, 167, 110, 231, 995, 21, 937, 167, 110, 238, 995, 21, 937, 167, 110, 99, 167, 110, 100, 167, 110, 102, 167, 110, 104, 167, 110, 244, 167, 110, 110, 167, 110, 111, 167, 110, 114, 167, 110, 118, 167, 111, 211, 167, 111, 212, 167, 111, 214, 167, 111, 215, 167, 111, 216, 167, 111, 220, 167, 111, 223, 167, 111, 224, 167, 111, 227, 167, 111, 240, 167, 112, 215, 167, 112, 216, 167, 112, 219, 167, 112, 222, 167, 112, 223, 167, 112, 225, 167, 112, 231, 167, 112, 232, 167, 112, 234, 21391, 187, 9855, 5830, 3156, 6624, 169, 221, 224, 169, 221, 225, 169, 221, 226, 169, 221, 229, 169, 221, 230, 169, 221, 231, 169, 221, 233, 995, 22, 937, 169, 221, 240, 169, 221, 241, 169, 221, 242, 169, 221, 96, 169, 221, 97, 169, 221, 98, 169, 221, 100, 995, 23, 937, 169, 221, 244, 21391, 187, 9855, 5830, 3832, 6624, 169, 221, 108, 169, 221, 109, 169, 221, 110, 169, 221, 112, 995, 22, 937, 169, 221, 120, 169, 221, 121, 169, 221, 123, 169, 221, 124, 169, 222, 212, 169, 222, 214, 995, 21, 937, 169, 222, 221, 169, 222, 223, 995, 22, 1092, 187, 9855, 5830, 3593, 6624, 169, 222, 229, 169, 222, 230, 169, 222, 232, 169, 222, 233, 169, 222, 234, 169, 222, 236, 169, 222, 237, 169, 222, 238, 169, 222, 240, 995, 23, 937, 169, 222, 101, 995, 26, 937, 169, 222, 112, 169, 222, 113, 169, 222, 115, 169, 222, 116, 169, 222, 117, 169, 222, 119, 169, 222, 120, 167, 112, 236, 167, 112, 237, 167, 112, 243, 167, 112, 96, 167, 112, 99, 167, 112, 102, 167, 112, 103, 167, 112, 110, 167, 112, 111, 167, 112, 113, 167, 112, 114, 167, 112, 115, 167, 112, 122, 167, 112, 123, 167, 113, 211, 167, 113, 215, 167, 113, 224, 167, 113, 226, 167, 113, 227, 167, 113, 228, 167, 113, 232, 167, 113, 235, 167, 113, 239, 167, 113, 114, 167, 113, 115, 167, 113, 116, 167, 113, 118, 167, 113, 122, 167, 114, 215, 167, 114, 216, 167, 114, 218, 167, 114, 220, 167, 114, 227, 167, 114, 231, 167, 114, 99, 167, 114, 107, 167, 115, 211, 167, 115, 219, 167, 115, 220, 167, 115, 223, 167, 115, 227, 167, 115, 235, 167, 115, 236, 167, 115, 99, 167, 115, 103, 167, 116, 211, 167, 116, 212, 167, 116, 215, 167, 116, 218, 167, 116, 219, 167, 116, 220, 167, 116, 221, 167, 116, 227, 167, 116, 228, 167, 116, 230, 167, 116, 232, 167, 116, 236, 167, 116, 237, 167, 116, 239, 167, 116, 99, 167, 116, 110, 167, 116, 118, 167, 117, 231, 167, 117, 232, 167, 117, 235, 167, 117, 239, 167, 117, 104, 167, 117, 110, 167, 117, 114, 167, 39068, 167, 118, 211, 167, 118, 214, 167, 118, 216, 167, 118, 223, 167, 118, 224, 167, 118, 227, 167, 118, 231, 167, 118, 239, 167, 118, 240, 167, 118, 242, 167, 119, 215, 167, 119, 216, 167, 119, 219, 167, 119, 223, 167, 119, 225, 167, 119, 231, 167, 119, 232, 167, 119, 234, 167, 119, 236, 167, 119, 237, 167, 119, 238, 167, 119, 243, 167, 119, 96, 167, 119, 99, 21391, 187, 9855, 4482, 3156, 6624, 169, 222, 121, 995, 21, 937, 169, 223, 213, 169, 223, 215, 169, 223, 217, 995, 22, 937, 169, 223, 226, 169, 223, 228, 169, 223, 229, 169, 223, 230, 169, 223, 232, 169, 223, 234, 995, 21, 937, 169, 223, 241, 169, 223, 97, 169, 223, 98, 21391, 187, 9855, 4482, 3832, 6624, 169, 223, 99, 169, 223, 101, 169, 223, 102, 169, 223, 105, 169, 223, 106, 169, 223, 244, 169, 223, 108, 169, 223, 109, 169, 223, 111, 995, 23, 937, 169, 223, 120, 169, 223, 124, 995, 22, 937, 169, 224, 217, 169, 224, 218, 169, 224, 219, 169, 224, 220, 21391, 187, 9855, 4482, 3593, 6624, 169, 224, 221, 995, 2405, 937, 167, 119, 103, 167, 119, 105, 167, 119, 110, 167, 119, 111, 167, 119, 113, 167, 119, 114, 167, 119, 115, 167, 119, 121, 167, 119, 122, 167, 119, 123, 167, 120, 211, 167, 120, 215, 167, 120, 223, 167, 120, 224, 167, 120, 226, 167, 120, 227, 167, 120, 228, 167, 120, 235, 167, 120, 236, 167, 120, 103, 167, 121, 227, 167, 121, 228, 167, 121, 231, 167, 121, 234, 167, 121, 235, 167, 121, 243, 167, 121, 98, 167, 121, 99, 167, 121, 100, 167, 121, 107, 167, 122, 212, 167, 122, 219, 167, 122, 220, 167, 122, 235, 167, 122, 236, 167, 122, 238, 167, 122, 239, 167, 122, 240, 167, 123, 211, 167, 123, 212, 167, 123, 215, 167, 123, 219, 167, 123, 227, 167, 123, 228, 167, 123, 232, 167, 124, 231, 167, 124, 110, 167, 125, 216, 167, 125, 223, 167, 125, 224, 167, 125, 227, 167, 125, 231, 167, 125, 239, 167, 125, 242, 167, 125, 96, 168, 211, 122, 168, 212, 228, 168, 212, 235, 168, 212, 239, 168, 212, 243, 168, 212, 103, 168, 212, 104, 168, 213, 227, 168, 213, 228, 168, 213, 231, 168, 213, 235, 168, 213, 243, 168, 213, 96, 168, 213, 98, 168, 213, 100, 168, 9223, 168, 213, 244, 168, 213, 109, 168, 213, 110, 168, 213, 113, 168, 213, 114, 168, 213, 115, 168, 213, 116, 168, 213, 122, 168, 213, 123, 168, 213, 125, 168, 214, 211, 168, 214, 212, 168, 214, 216, 168, 214, 219, 168, 214, 220, 168, 214, 223, 168, 214, 227, 168, 214, 235, 168, 214, 236, 168, 214, 238, 168, 214, 239, 168, 214, 240, 168, 214, 99, 21391, 187, 9855, 12847, 3156, 6624, 169, 224, 105, 995, 1166, 937, 169, 224, 124, 169, 224, 125, 169, 225, 212, 169, 225, 213, 169, 225, 214, 169, 225, 216, 169, 225, 217, 169, 225, 218, 21391, 187, 9855, 12847, 3832, 6624, 169, 225, 219, 169, 225, 220, 169, 225, 221, 169, 225, 222, 169, 225, 225, 169, 225, 229, 995, 22, 937, 169, 225, 237, 169, 225, 238, 169, 225, 240, 169, 225, 241, 169, 225, 242, 169, 225, 96, 995, 23, 937, 169, 225, 105, 169, 225, 107, 169, 225, 108, 21391, 187, 9855, 12847, 3593, 6624, 169, 225, 109, 995, 21, 937, 169, 225, 115, 169, 225, 116, 169, 225, 117, 169, 225, 119, 169, 225, 120, 169, 225, 121, 169, 225, 123, 995, 23, 937, 169, 226, 217, 169, 226, 218, 169, 226, 221, 995, 22, 937, 169, 226, 228, 995, 22, 937, 168, 214, 100, 168, 214, 103, 168, 214, 107, 168, 214, 114, 168, 214, 115, 168, 214, 117, 168, 214, 119, 29597, 211, 29597, 215, 29597, 219, 29597, 227, 29597, 232, 41639, 995, 21, 937, 29597, 98, 29597, 99, 29597, 101, 29597, 102, 29597, 107, 29597, 244, 29597, 109, 29597, 110, 29597, 111, 29597, 116, 29597, 118, 29597, 119, 29597, 122, 168, 216, 211, 168, 216, 219, 168, 216, 220, 168, 216, 222, 168, 216, 223, 168, 216, 224, 168, 216, 231, 168, 216, 232, 168, 216, 235, 168, 216, 239, 168, 216, 99, 168, 216, 100, 168, 216, 102, 168, 216, 103, 168, 216, 104, 168, 216, 110, 168, 216, 114, 168, 216, 118, 168, 217, 216, 168, 217, 223, 168, 217, 224, 168, 217, 225, 168, 217, 227, 168, 217, 231, 168, 217, 233, 168, 217, 239, 168, 217, 240, 168, 217, 242, 168, 217, 96, 168, 217, 100, 168, 217, 103, 168, 217, 104, 168, 217, 107, 168, 217, 110, 168, 217, 123, 168, 218, 215, 168, 218, 219, 168, 218, 223, 168, 218, 231, 168, 218, 234, 168, 218, 235, 168, 218, 243, 168, 218, 99, 168, 218, 103, 168, 218, 110, 168, 218, 111, 168, 218, 113, 168, 218, 122, 168, 218, 123, 168, 219, 211, 168, 219, 215, 168, 219, 223, 168, 219, 224, 168, 219, 226, 168, 219, 228, 168, 44140, 168, 219, 236, 168, 219, 239, 168, 219, 242, 168, 219, 243, 168, 219, 103, 168, 219, 104, 168, 219, 106, 168, 219, 244, 21391, 187, 9855, 14836, 3156, 6624, 169, 226, 234, 169, 226, 236, 995, 24, 937, 169, 226, 97, 169, 226, 99, 995, 24, 937, 169, 226, 108, 169, 226, 109, 169, 226, 111, 169, 226, 112, 169, 226, 113, 169, 226, 115, 169, 226, 116, 169, 226, 117, 21391, 187, 9855, 14836, 3832, 6624, 169, 226, 118, 169, 226, 119, 169, 226, 120, 169, 226, 121, 169, 226, 124, 169, 227, 211, 169, 227, 213, 995, 22, 937, 169, 227, 220, 995, 1012, 1092, 187, 9855, 14836, 3593, 6624, 169, 227, 234, 995, 22, 937, 169, 227, 241, 995, 1099, 937, 168, 219, 109, 168, 219, 111, 168, 219, 112, 168, 219, 114, 168, 220, 219, 168, 220, 227, 168, 220, 228, 168, 220, 231, 168, 220, 235, 168, 220, 243, 168, 220, 100, 168, 220, 107, 168, 220, 244, 168, 220, 110, 168, 220, 114, 168, 220, 122, 168, 220, 123, 168, 220, 125, 33057, 212, 33057, 219, 33057, 220, 33057, 227, 33057, 235, 33057, 238, 33057, 240, 33057, 99, 33057, 100, 33057, 103, 33057, 107, 33057, 244, 33057, 114, 33057, 115, 33057, 117, 33057, 119, 35169, 239, 35169, 240, 35169, 243, 35169, 98, 35169, 99, 35169, 106, 35169, 107, 35169, 244, 35169, 109, 35169, 111, 35169, 116, 35169, 118, 35169, 119, 35169, 121, 35169, 122, 168, 223, 211, 168, 223, 219, 168, 223, 220, 168, 223, 223, 168, 223, 224, 168, 223, 230, 168, 223, 231, 168, 223, 232, 168, 223, 235, 168, 223, 239, 168, 223, 99, 168, 223, 100, 168, 223, 103, 168, 223, 104, 168, 224, 216, 168, 224, 103, 168, 224, 104, 168, 224, 107, 168, 224, 110, 168, 224, 112, 168, 224, 118, 168, 224, 119, 168, 224, 122, 168, 224, 123, 168, 225, 215, 168, 225, 219, 168, 225, 223, 168, 226, 211, 168, 226, 235, 168, 226, 236, 168, 226, 239, 168, 226, 242, 168, 226, 243, 168, 226, 97, 168, 226, 103, 168, 226, 104, 168, 226, 244, 168, 226, 114, 168, 226, 115, 168, 226, 118, 168, 227, 219, 168, 227, 227, 168, 227, 99, 168, 227, 107, 168, 227, 110, 21391, 187, 9855, 1257, 3156, 6624, 169, 227, 118, 995, 24, 937, 169, 228, 212, 169, 228, 213, 169, 228, 214, 169, 228, 216, 995, 1047, 1092, 187, 9855, 1257, 3832, 6624, 169, 228, 231, 995, 24, 937, 169, 228, 240, 169, 228, 241, 169, 228, 242, 169, 228, 96, 169, 228, 97, 169, 228, 98, 169, 228, 100, 995, 24, 937, 169, 228, 108, 169, 228, 110, 169, 228, 111, 169, 228, 112, 21391, 187, 9855, 1257, 3593, 6624, 169, 228, 113, 995, 21, 937, 169, 228, 120, 169, 228, 121, 169, 228, 123, 169, 228, 124, 169, 229, 212, 169, 229, 214, 995, 21, 937, 169, 229, 221, 169, 229, 223, 169, 229, 225, 995, 22, 937, 169, 229, 232, 995, 25, 937, 168, 227, 114, 168, 227, 122, 168, 227, 123, 168, 228, 219, 168, 228, 99, 168, 228, 100, 168, 228, 103, 168, 228, 107, 168, 228, 114, 168, 228, 115, 168, 228, 119, 168, 229, 211, 168, 229, 231, 168, 229, 239, 168, 229, 118, 168, 229, 122, 168, 230, 104, 168, 230, 110, 168, 230, 111, 168, 230, 114, 168, 230, 118, 168, 230, 120, 168, 230, 125, 168, 231, 211, 168, 231, 212, 168, 231, 223, 168, 231, 227, 168, 231, 231, 168, 231, 239, 168, 231, 103, 168, 231, 104, 168, 231, 107, 168, 231, 110, 168, 231, 118, 168, 231, 119, 168, 231, 121, 168, 231, 123, 33104, 215, 33104, 216, 33104, 219, 33104, 220, 33104, 221, 33104, 223, 33104, 224, 33104, 225, 33104, 230, 33104, 231, 33104, 232, 33104, 234, 33104, 235, 33104, 236, 33104, 240, 33104, 241, 33104, 243, 33104, 96, 33104, 99, 33104, 103, 33104, 110, 33104, 111, 33104, 113, 33104, 114, 33104, 115, 33104, 122, 33104, 123, 168, 233, 211, 168, 233, 215, 168, 233, 218, 168, 233, 223, 168, 233, 224, 168, 233, 226, 168, 233, 228, 168, 233, 232, 168, 233, 234, 168, 233, 235, 168, 233, 239, 168, 233, 243, 168, 233, 104, 39907, 168, 233, 115, 168, 233, 118, 168, 233, 119, 168, 233, 121, 168, 233, 122, 168, 233, 123, 168, 233, 124, 21053, 215, 995, 23, 937, 21053, 223, 21053, 225, 21391, 187, 9855, 3342, 3156, 6624, 169, 229, 241, 995, 740, 937, 169, 229, 105, 995, 1047, 1092, 187, 9855, 3342, 3832, 6624, 169, 229, 119, 995, 1093, 937, 169, 230, 224, 169, 230, 225, 169, 230, 226, 169, 230, 228, 169, 230, 229, 169, 230, 230, 169, 230, 232, 21391, 187, 9855, 3342, 3593, 6624, 169, 230, 233, 995, 22, 937, 169, 230, 240, 169, 230, 241, 169, 230, 243, 995, 24, 937, 169, 230, 104, 169, 230, 105, 169, 230, 106, 169, 230, 244, 169, 230, 108, 169, 230, 109, 169, 230, 111, 995, 23, 937, 169, 230, 119, 169, 230, 120, 169, 230, 122, 27940, 21053, 228, 21053, 231, 21053, 235, 21053, 243, 21053, 96, 21053, 98, 21053, 100, 21053, 107, 21053, 244, 21053, 108, 21053, 110, 21053, 114, 21053, 116, 21053, 117, 21053, 122, 995, 22, 937, 168, 235, 216, 168, 235, 217, 168, 235, 218, 168, 235, 219, 168, 235, 223, 168, 235, 227, 168, 235, 235, 168, 235, 236, 168, 235, 238, 168, 235, 239, 168, 235, 99, 168, 235, 100, 168, 235, 103, 168, 235, 107, 168, 235, 244, 168, 235, 108, 168, 235, 110, 168, 235, 113, 168, 235, 114, 168, 235, 115, 168, 235, 117, 168, 235, 119, 168, 235, 121, 168, 236, 211, 168, 236, 212, 168, 236, 215, 168, 236, 219, 168, 236, 227, 168, 236, 228, 168, 236, 230, 168, 236, 231, 168, 236, 232, 168, 236, 239, 168, 236, 240, 168, 236, 243, 168, 236, 107, 168, 236, 109, 168, 236, 111, 168, 236, 118, 168, 236, 119, 168, 236, 122, 27997, 211, 27997, 219, 27997, 220, 27997, 222, 27997, 224, 42170, 27997, 232, 27997, 235, 27997, 239, 27997, 99, 27997, 100, 27997, 102, 27997, 104, 27997, 110, 27997, 111, 27997, 114, 27997, 118, 27997, 119, 27997, 120, 168, 238, 211, 168, 238, 212, 168, 238, 214, 168, 238, 216, 168, 238, 223, 168, 238, 224, 168, 238, 227, 168, 238, 231, 168, 238, 239, 168, 238, 240, 168, 238, 243, 168, 238, 96, 168, 238, 103, 21391, 187, 9855, 68, 28271, 6624, 169, 230, 124, 995, 22, 937, 169, 231, 216, 169, 231, 217, 169, 231, 218, 169, 231, 220, 169, 231, 221, 169, 231, 222, 169, 231, 224, 995, 23, 937, 169, 231, 233, 169, 231, 235, 995, 22, 1092, 187, 9855, 68, 37545, 6624, 169, 231, 241, 995, 1099, 1092, 187, 9855, 68, 41551, 6624, 169, 231, 118, 169, 231, 119, 169, 231, 120, 169, 231, 121, 169, 231, 124, 169, 231, 125, 15074, 212, 15074, 213, 15074, 214, 15074, 216, 995, 23, 937, 15074, 225, 15074, 227, 15074, 229, 995, 22, 937, 15074, 237, 15074, 238, 15074, 240, 15074, 241, 15074, 242, 15074, 96, 15074, 97, 15074, 98, 168, 238, 104, 168, 238, 107, 168, 238, 110, 168, 238, 118, 168, 238, 119, 168, 238, 123, 44633, 215, 44633, 216, 44633, 219, 44633, 223, 44633, 231, 44633, 232, 44633, 234, 44633, 236, 44633, 243, 44633, 96, 44633, 99, 44633, 103, 44633, 110, 44633, 111, 44633, 113, 44633, 115, 44633, 117, 44633, 122, 44633, 123, 37176, 28736, 10361, 221, 10361, 223, 10361, 224, 10361, 226, 10361, 228, 995, 24, 937, 10361, 239, 10361, 243, 10361, 103, 10361, 106, 20959, 10361, 115, 10361, 118, 10361, 122, 10361, 123, 10361, 124, 28774, 214, 28774, 215, 28774, 216, 28774, 218, 28774, 219, 28774, 220, 28774, 221, 28774, 225, 28774, 227, 28774, 228, 28774, 231, 28774, 233, 28774, 234, 28774, 235, 28774, 237, 28774, 243, 28774, 96, 28774, 98, 28774, 99, 28774, 100, 28774, 101, 28774, 107, 28774, 244, 28774, 110, 28774, 114, 28774, 122, 28774, 123, 28774, 125, 168, 242, 211, 168, 242, 212, 168, 242, 219, 168, 242, 220, 168, 242, 223, 168, 242, 225, 168, 242, 227, 168, 242, 235, 168, 242, 240, 168, 242, 99, 168, 242, 103, 168, 242, 107, 29333, 211, 29333, 212, 29333, 215, 29333, 219, 29333, 221, 21391, 187, 9855, 68, 18962, 6624, 15074, 99, 15074, 101, 15074, 102, 15074, 105, 15074, 107, 15074, 108, 995, 22, 937, 15074, 116, 15074, 117, 15074, 119, 15074, 120, 15074, 121, 15074, 123, 995, 23, 937, 169, 233, 217, 169, 233, 221, 169, 233, 222, 21391, 187, 9855, 68, 20664, 6624, 169, 233, 223, 169, 233, 224, 169, 233, 225, 169, 233, 226, 169, 233, 228, 995, 746, 937, 169, 233, 101, 169, 233, 102, 21391, 187, 9855, 68, 20895, 6624, 169, 233, 103, 995, 2405, 937, 29333, 227, 29333, 228, 29333, 230, 29333, 232, 29333, 233, 29333, 239, 29333, 240, 29333, 243, 29333, 99, 29333, 107, 29333, 244, 29333, 109, 29333, 111, 29333, 118, 29333, 122, 168, 96, 211, 168, 96, 219, 168, 96, 220, 168, 96, 223, 168, 96, 224, 168, 96, 231, 168, 96, 110, 168, 96, 111, 168, 96, 114, 168, 96, 118, 168, 96, 120, 168, 97, 211, 168, 97, 212, 168, 97, 214, 168, 97, 216, 168, 97, 217, 168, 97, 218, 168, 97, 222, 168, 97, 223, 168, 97, 224, 168, 97, 231, 168, 97, 240, 168, 97, 242, 168, 97, 96, 168, 97, 103, 168, 97, 122, 168, 97, 123, 168, 98, 215, 168, 98, 219, 168, 98, 223, 168, 98, 231, 168, 98, 232, 168, 98, 234, 168, 98, 236, 168, 98, 243, 168, 98, 96, 168, 98, 99, 168, 98, 115, 168, 98, 122, 168, 98, 123, 168, 99, 211, 168, 99, 215, 168, 99, 216, 168, 99, 217, 168, 99, 223, 168, 99, 224, 168, 99, 226, 168, 99, 228, 168, 99, 235, 168, 99, 107, 168, 99, 114, 168, 100, 227, 168, 100, 228, 168, 100, 231, 168, 100, 235, 168, 100, 243, 168, 100, 96, 168, 100, 98, 168, 100, 107, 168, 100, 110, 168, 100, 114, 168, 100, 122, 168, 101, 219, 168, 101, 220, 168, 101, 223, 168, 101, 227, 168, 101, 235, 168, 101, 236, 168, 101, 238, 168, 101, 240, 34391, 27750, 212, 27750, 215, 27750, 218, 27750, 219, 27750, 221, 27750, 227, 27750, 228, 27750, 230, 21391, 187, 9855, 68, 24552, 6624, 169, 234, 221, 169, 234, 222, 169, 234, 224, 169, 234, 225, 169, 234, 226, 169, 234, 228, 169, 234, 230, 995, 21, 937, 169, 234, 237, 169, 234, 239, 169, 234, 241, 995, 22, 937, 169, 234, 101, 169, 234, 102, 169, 234, 104, 169, 234, 105, 169, 234, 106, 169, 234, 244, 169, 234, 108, 21391, 187, 9855, 68, 26560, 6624, 169, 234, 109, 995, 21, 937, 169, 234, 116, 169, 234, 118, 169, 234, 120, 995, 22, 937, 169, 235, 213, 169, 235, 214, 169, 235, 216, 169, 235, 217, 169, 235, 218, 169, 235, 220, 995, 23, 937, 169, 235, 229, 21391, 187, 9855, 68, 27571, 6624, 169, 235, 233, 995, 22, 937, 169, 235, 240, 169, 235, 241, 169, 235, 242, 169, 235, 96, 169, 235, 97, 169, 235, 98, 169, 235, 100, 995, 24, 937, 169, 235, 108, 995, 26, 937, 169, 235, 120, 169, 235, 121, 27750, 232, 27750, 233, 27750, 236, 27750, 237, 27750, 239, 27750, 240, 27750, 243, 27750, 97, 27750, 99, 27750, 102, 27750, 107, 27750, 244, 27750, 109, 27750, 110, 27750, 111, 27750, 118, 27750, 119, 27750, 122, 168, 103, 211, 168, 103, 219, 168, 103, 220, 168, 103, 222, 168, 103, 223, 168, 103, 224, 168, 103, 231, 168, 103, 235, 168, 103, 104, 168, 104, 223, 168, 104, 224, 168, 104, 227, 168, 104, 231, 168, 104, 239, 168, 104, 240, 168, 104, 242, 168, 104, 243, 168, 104, 96, 168, 104, 103, 168, 104, 123, 168, 105, 215, 168, 105, 235, 168, 105, 122, 168, 105, 123, 168, 106, 211, 168, 106, 215, 168, 106, 223, 168, 106, 224, 168, 106, 226, 168, 106, 228, 168, 106, 230, 168, 106, 235, 168, 106, 236, 168, 106, 243, 168, 106, 107, 168, 106, 114, 168, 107, 219, 168, 107, 227, 168, 107, 231, 168, 107, 235, 168, 107, 243, 168, 107, 96, 168, 244, 212, 168, 244, 219, 168, 244, 220, 168, 244, 223, 168, 244, 227, 168, 244, 235, 168, 244, 236, 168, 244, 240, 168, 244, 99, 168, 244, 118, 168, 244, 119, 168, 108, 239, 168, 108, 118, 168, 109, 231, 168, 109, 99, 168, 109, 102, 168, 109, 104, 168, 110, 223, 168, 110, 224, 168, 110, 227, 168, 110, 231, 168, 110, 239, 168, 110, 240, 168, 110, 96, 168, 110, 97, 168, 110, 102, 168, 110, 103, 168, 110, 104, 168, 110, 107, 168, 110, 108, 168, 110, 110, 168, 110, 118, 168, 110, 119, 168, 110, 121, 21391, 187, 9855, 68, 28459, 6624, 169, 235, 123, 169, 235, 124, 169, 235, 125, 169, 236, 212, 169, 18713, 169, 236, 214, 169, 236, 215, 169, 236, 217, 169, 236, 218, 169, 236, 221, 169, 236, 223, 169, 236, 225, 169, 236, 226, 169, 236, 227, 169, 236, 229, 169, 236, 230, 169, 236, 233, 169, 236, 234, 169, 236, 236, 169, 236, 237, 169, 236, 238, 169, 236, 240, 995, 21, 1092, 187, 9855, 68, 29917, 6624, 169, 236, 97, 995, 21, 937, 169, 236, 103, 169, 8318, 995, 22, 937, 169, 236, 112, 169, 236, 113, 169, 236, 115, 995, 883, 1092, 187, 9855, 68, 30169, 6624, 169, 237, 212, 169, 237, 213, 169, 237, 215, 169, 237, 217, 995, 22, 937, 169, 237, 225, 169, 237, 226, 169, 237, 228, 169, 237, 229, 169, 237, 230, 169, 237, 232, 995, 24, 937, 169, 237, 241, 169, 237, 243, 169, 237, 97, 995, 22, 937, 169, 237, 104, 169, 237, 105, 168, 110, 122, 168, 110, 123, 168, 110, 124, 168, 111, 215, 168, 111, 216, 168, 111, 219, 168, 111, 223, 168, 111, 231, 168, 111, 232, 168, 111, 234, 168, 111, 235, 168, 111, 236, 168, 111, 243, 168, 111, 99, 168, 111, 101, 168, 111, 103, 168, 111, 110, 168, 111, 115, 168, 112, 235, 168, 112, 236, 168, 112, 239, 168, 112, 243, 168, 112, 103, 168, 112, 104, 168, 112, 106, 168, 112, 107, 168, 112, 244, 168, 112, 114, 168, 112, 115, 168, 112, 118, 168, 112, 122, 168, 113, 215, 168, 113, 216, 168, 113, 218, 168, 113, 220, 168, 113, 227, 168, 113, 231, 168, 113, 99, 168, 113, 107, 168, 113, 110, 168, 114, 212, 168, 114, 219, 168, 114, 220, 168, 114, 223, 168, 114, 227, 168, 114, 235, 168, 114, 236, 168, 114, 238, 168, 114, 240, 168, 114, 99, 168, 114, 103, 168, 114, 107, 168, 114, 119, 168, 115, 239, 168, 115, 243, 168, 115, 99, 168, 115, 107, 168, 115, 244, 168, 115, 109, 168, 115, 111, 168, 115, 118, 168, 116, 219, 168, 116, 231, 168, 116, 232, 168, 116, 235, 168, 116, 239, 168, 116, 99, 168, 116, 100, 168, 116, 102, 168, 116, 104, 168, 116, 110, 168, 117, 215, 168, 117, 223, 168, 117, 227, 168, 117, 103, 168, 117, 107, 168, 117, 110, 168, 39068, 168, 117, 119, 168, 117, 121, 168, 117, 123, 168, 118, 215, 168, 118, 219, 168, 118, 223, 168, 118, 231, 168, 118, 236, 168, 118, 243, 168, 118, 96, 168, 118, 99, 168, 118, 103, 168, 118, 110, 168, 118, 111, 168, 118, 113, 168, 118, 115, 21391, 187, 9855, 68, 31774, 6624, 169, 237, 106, 169, 237, 244, 169, 237, 108, 169, 237, 109, 169, 237, 111, 995, 24, 937, 169, 237, 120, 169, 237, 122, 995, 24, 937, 169, 238, 217, 169, 238, 218, 169, 238, 220, 169, 238, 221, 169, 238, 222, 21391, 187, 9855, 68, 33597, 6624, 169, 238, 224, 169, 238, 225, 169, 238, 226, 169, 238, 227, 169, 238, 229, 169, 238, 230, 169, 238, 232, 169, 238, 233, 169, 238, 235, 169, 238, 237, 995, 22, 937, 169, 238, 96, 169, 238, 97, 169, 238, 98, 169, 238, 100, 169, 238, 101, 169, 238, 102, 169, 238, 104, 995, 21, 1092, 187, 9855, 68, 34474, 6624, 169, 238, 108, 169, 238, 109, 169, 238, 111, 169, 238, 112, 169, 238, 113, 169, 238, 114, 169, 238, 116, 995, 22, 937, 169, 238, 124, 169, 238, 125, 169, 239, 212, 169, 239, 213, 169, 239, 214, 169, 239, 216, 995, 883, 937, 169, 239, 229, 169, 34918, 169, 239, 231, 168, 119, 235, 168, 119, 236, 168, 119, 239, 168, 119, 242, 168, 119, 243, 168, 119, 96, 168, 119, 103, 168, 119, 104, 168, 119, 106, 168, 119, 244, 168, 119, 114, 168, 119, 115, 168, 119, 118, 168, 119, 122, 168, 120, 215, 168, 120, 216, 168, 120, 218, 168, 120, 220, 168, 120, 227, 168, 120, 228, 168, 120, 231, 168, 120, 235, 168, 120, 243, 168, 120, 96, 168, 120, 98, 168, 120, 99, 168, 120, 100, 168, 120, 107, 168, 120, 244, 168, 121, 212, 168, 121, 99, 168, 121, 100, 168, 121, 103, 168, 121, 106, 168, 121, 107, 168, 121, 114, 168, 121, 115, 168, 121, 117, 168, 121, 118, 168, 121, 119, 168, 122, 211, 168, 122, 212, 168, 122, 215, 168, 122, 219, 168, 122, 227, 168, 122, 228, 168, 122, 230, 168, 122, 232, 168, 122, 239, 168, 122, 243, 168, 122, 99, 168, 122, 107, 168, 122, 244, 168, 122, 109, 168, 122, 110, 168, 122, 111, 168, 122, 118, 168, 123, 231, 168, 123, 232, 168, 123, 235, 168, 123, 239, 168, 123, 99, 168, 123, 100, 168, 123, 102, 168, 123, 104, 168, 123, 110, 168, 123, 111, 168, 123, 114, 168, 123, 118, 168, 124, 211, 168, 124, 216, 168, 124, 223, 168, 124, 96, 168, 124, 103, 168, 124, 110, 168, 125, 215, 168, 125, 243, 168, 125, 96, 168, 125, 99, 168, 125, 103, 168, 125, 110, 168, 125, 111, 168, 125, 113, 168, 125, 115, 168, 125, 122, 169, 211, 211, 169, 211, 215, 169, 211, 228, 169, 211, 235, 169, 211, 244, 169, 211, 114, 169, 211, 115, 169, 211, 118, 169, 211, 122, 21391, 187, 9855, 68, 22, 3156, 6624, 169, 239, 232, 169, 239, 233, 169, 239, 234, 169, 239, 237, 169, 239, 238, 169, 239, 240, 169, 239, 241, 169, 239, 242, 169, 239, 96, 995, 23, 937, 169, 239, 105, 169, 239, 107, 169, 239, 108, 995, 22, 937, 169, 239, 116, 169, 239, 117, 169, 239, 119, 21391, 187, 9855, 68, 41081, 6624, 169, 239, 120, 169, 239, 121, 169, 239, 123, 995, 23, 937, 169, 240, 216, 169, 240, 217, 169, 240, 219, 169, 240, 221, 995, 22, 937, 169, 240, 229, 169, 240, 230, 169, 240, 232, 169, 240, 237, 995, 21, 1092, 187, 9855, 68, 22, 3593, 6624, 169, 240, 242, 169, 240, 97, 169, 240, 99, 169, 240, 101, 169, 240, 102, 169, 240, 103, 169, 240, 105, 169, 240, 106, 169, 240, 244, 169, 240, 108, 169, 240, 109, 169, 240, 111, 169, 240, 112, 169, 240, 113, 169, 240, 115, 995, 23, 937, 169, 240, 124, 169, 240, 125, 169, 241, 211, 169, 241, 213, 995, 22, 937, 169, 241, 221, 169, 241, 222, 169, 212, 215, 169, 212, 216, 169, 212, 218, 169, 212, 220, 169, 212, 227, 169, 212, 231, 169, 212, 235, 169, 212, 243, 169, 212, 107, 169, 212, 244, 169, 212, 110, 169, 212, 114, 169, 212, 122, 169, 212, 123, 169, 213, 212, 169, 213, 99, 169, 213, 100, 169, 213, 103, 169, 9223, 169, 213, 114, 169, 213, 115, 169, 213, 117, 169, 213, 119, 169, 214, 211, 169, 214, 212, 169, 214, 215, 169, 214, 219, 169, 214, 220, 169, 214, 227, 169, 214, 228, 169, 214, 230, 169, 214, 231, 169, 214, 232, 169, 214, 239, 169, 214, 240, 169, 214, 243, 169, 214, 99, 169, 214, 107, 169, 214, 244, 169, 214, 109, 169, 214, 110, 169, 214, 111, 169, 214, 118, 169, 215, 224, 169, 215, 110, 169, 215, 111, 169, 215, 114, 169, 215, 118, 169, 215, 120, 169, 216, 211, 169, 216, 212, 169, 216, 214, 169, 216, 215, 169, 216, 216, 169, 216, 223, 169, 216, 224, 169, 216, 227, 169, 216, 231, 169, 216, 239, 169, 216, 240, 169, 216, 242, 169, 216, 96, 169, 216, 103, 169, 216, 107, 169, 216, 122, 169, 217, 215, 169, 217, 219, 169, 217, 243, 169, 217, 96, 169, 217, 99, 169, 217, 103, 169, 217, 110, 169, 217, 111, 169, 217, 113, 169, 217, 115, 169, 217, 120, 169, 217, 122, 169, 218, 211, 169, 218, 235, 169, 218, 114, 169, 218, 118, 169, 219, 218, 169, 219, 220, 169, 219, 227, 169, 219, 107, 169, 219, 244, 169, 219, 110, 169, 219, 114, 169, 219, 122, 169, 219, 123, 169, 219, 125, 169, 220, 212, 169, 220, 219, 169, 220, 239, 21391, 187, 9855, 68, 33976, 6624, 169, 241, 224, 169, 241, 225, 169, 241, 226, 169, 241, 228, 995, 23, 937, 169, 241, 237, 169, 241, 239, 169, 241, 241, 995, 22, 1092, 187, 9855, 68, 23, 66, 18, 6624, 169, 220, 99, 169, 221, 211, 169, 221, 212, 169, 221, 215, 169, 221, 219, 169, 221, 227, 169, 221, 228, 169, 221, 232, 169, 221, 239, 169, 221, 243, 169, 221, 99, 169, 221, 107, 169, 221, 111, 169, 221, 118, 169, 221, 119, 169, 221, 122, 169, 221, 125, 169, 222, 211, 169, 222, 213, 169, 222, 219, 169, 222, 220, 169, 222, 222, 169, 222, 231, 169, 222, 235, 169, 222, 239, 169, 222, 99, 169, 222, 100, 169, 222, 110, 169, 222, 111, 169, 222, 114, 169, 222, 118, 169, 223, 211, 169, 223, 212, 169, 223, 214, 169, 223, 216, 169, 223, 223, 169, 223, 224, 169, 223, 225, 169, 223, 227, 169, 223, 231, 169, 223, 233, 169, 223, 239, 169, 223, 240, 169, 223, 242, 169, 223, 243, 169, 223, 96, 169, 223, 100, 169, 223, 103, 169, 223, 104, 169, 223, 107, 169, 223, 110, 169, 223, 118, 169, 223, 119, 169, 223, 121, 169, 223, 122, 169, 223, 123, 169, 224, 215, 169, 224, 216, 169, 224, 122, 169, 224, 123, 169, 225, 211, 169, 225, 215, 169, 225, 223, 169, 225, 224, 169, 225, 226, 169, 225, 227, 169, 225, 228, 169, 225, 235, 169, 225, 236, 169, 225, 239, 169, 225, 243, 169, 225, 103, 169, 225, 104, 169, 225, 106, 169, 225, 244, 169, 225, 114, 169, 225, 118, 169, 225, 122, 169, 226, 215, 169, 226, 216, 169, 226, 219, 169, 226, 220, 169, 226, 227, 169, 226, 235, 169, 226, 96, 169, 226, 98, 169, 226, 107, 169, 226, 244, 169, 226, 110, 169, 226, 114, 169, 226, 122, 169, 226, 123, 169, 226, 125, 169, 227, 212, 21391, 187, 9855, 68, 24, 66, 18, 6624, 169, 227, 219, 169, 227, 240, 169, 228, 211, 169, 228, 215, 169, 228, 239, 169, 228, 243, 169, 228, 99, 169, 228, 244, 169, 228, 109, 169, 228, 118, 169, 228, 119, 169, 228, 122, 169, 228, 125, 169, 229, 211, 169, 229, 213, 169, 229, 219, 169, 229, 220, 169, 229, 222, 169, 229, 224, 169, 229, 231, 169, 229, 104, 169, 230, 223, 169, 230, 227, 169, 230, 231, 169, 230, 239, 169, 230, 242, 169, 230, 103, 169, 230, 107, 169, 230, 110, 169, 230, 118, 169, 230, 121, 169, 230, 123, 169, 231, 215, 169, 231, 219, 169, 231, 223, 169, 231, 231, 169, 231, 232, 169, 231, 234, 169, 231, 122, 169, 231, 123, 15074, 211, 15074, 215, 15074, 223, 15074, 224, 15074, 226, 15074, 228, 29470, 15074, 236, 39742, 15074, 243, 15074, 100, 15074, 103, 15074, 104, 15074, 106, 15074, 244, 47538, 15074, 115, 15074, 118, 15074, 122, 169, 233, 215, 169, 233, 216, 169, 233, 218, 169, 233, 219, 169, 233, 220, 169, 233, 227, 169, 233, 100, 169, 234, 219, 169, 234, 220, 169, 234, 223, 169, 234, 227, 169, 234, 229, 169, 234, 235, 169, 234, 236, 169, 234, 238, 169, 234, 240, 169, 234, 99, 169, 234, 100, 169, 234, 103, 169, 234, 107, 169, 234, 114, 169, 234, 115, 169, 234, 117, 169, 234, 119, 169, 235, 211, 169, 235, 212, 169, 235, 215, 169, 235, 219, 169, 235, 227, 169, 235, 228, 169, 235, 230, 169, 235, 231, 169, 235, 232, 169, 235, 239, 169, 235, 243, 21391, 187, 9855, 68, 25, 66, 18, 6624, 169, 235, 99, 169, 235, 244, 169, 235, 118, 169, 235, 119, 169, 235, 122, 169, 236, 211, 169, 236, 216, 169, 236, 219, 169, 236, 220, 169, 236, 222, 169, 236, 224, 169, 236, 228, 169, 236, 231, 169, 236, 232, 169, 236, 235, 169, 236, 239, 169, 236, 102, 169, 236, 104, 169, 236, 110, 169, 236, 111, 169, 236, 114, 169, 237, 214, 169, 237, 216, 169, 237, 223, 169, 237, 224, 169, 237, 227, 169, 237, 231, 169, 237, 240, 169, 237, 242, 169, 237, 96, 169, 237, 103, 169, 237, 107, 169, 237, 110, 169, 237, 119, 169, 237, 121, 169, 238, 215, 169, 238, 216, 169, 238, 219, 169, 238, 223, 169, 238, 228, 169, 238, 231, 169, 238, 234, 169, 238, 236, 169, 238, 243, 169, 238, 99, 169, 238, 103, 169, 238, 110, 169, 238, 115, 169, 238, 122, 169, 238, 123, 169, 239, 211, 169, 239, 215, 169, 239, 228, 169, 239, 235, 169, 239, 236, 169, 239, 239, 169, 239, 243, 169, 239, 103, 169, 239, 104, 169, 239, 106, 169, 239, 244, 169, 239, 114, 169, 239, 115, 169, 239, 118, 169, 239, 122, 169, 240, 215, 169, 240, 218, 169, 240, 220, 169, 240, 227, 169, 240, 228, 169, 240, 231, 169, 240, 233, 169, 240, 234, 169, 240, 235, 169, 240, 236, 169, 240, 243, 169, 240, 96, 169, 240, 98, 169, 240, 100, 169, 240, 104, 169, 240, 107, 169, 240, 110, 169, 240, 114, 169, 240, 122, 169, 240, 123, 169, 241, 212, 169, 241, 219, 169, 241, 220, 169, 241, 223, 169, 241, 227, 169, 241, 235, 169, 241, 236, 169, 241, 238, 169, 241, 240, 21391, 187, 9855, 68, 5781, 18, 6624, 13127, 123, 7111, 113, 28915, 218, 32653, 119, 27727, 18148, 18617, 115, 20833, 100, 161, 235, 220, 161, 106, 212, 34091, 162, 237, 218, 17321, 116, 17321, 117, 26974, 109, 14486, 223, 35801, 213, 40162, 213, 22580, 122, 38672, 238, 164, 223, 215, 10716, 234, 38053, 219, 14945, 116, 33836, 219, 31811, 226, 40329, 121, 9078, 101, 165, 102, 232, 6765, 121, 12363, 114, 7719, 215, 29785, 105, 46791, 99, 33369, 122, 35801, 226, 43641, 237, 11800, 120, 17559, 229, 15954, 98, 16800, 214, 6765, 221, 34693, 124, 17474, 118, 28650, 101, 12462, 112, 12462, 119, 162, 218, 218, 22470, 211, 12676, 217, 26974, 107, 35072, 125, 162, 124, 234, 19218, 225, 38242, 163, 98, 115, 22580, 219, 22701, 125, 163, 110, 96, 32026, 240, 32417, 108, 32417, 111, 43894, 106, 30004, 11871, 106, 39429, 240, 20286, 117, 26151, 114, 46180, 98, 22701, 244, 164, 228, 238, 164, 99, 227, 164, 240, 225, 165, 241, 103, 21163, 235, 31902, 225, 22150, 105, 161, 115, 223, 38011, 162, 217, 124, 8650, 96, 10962, 97, 26974, 228, 37794, 215, 26151, 238, 7297, 235, 39393, 113, 13764, 98, 163, 241, 110, 20557, 120, 30086, 109, 165, 228, 228, 165, 228, 229, 165, 124, 232, 21391, 187, 9855, 68, 5830, 18, 6624, 15899, 98, 161, 112, 107, 7297, 112, 38822, 238, 165, 220, 211, 15954, 235, 16805, 238, 22150, 219, 28650, 239, 161, 112, 96, 161, 114, 234, 12613, 117, 12811, 120, 14318, 221, 46791, 117, 24545, 242, 23956, 120, 39393, 217, 37679, 243, 21700, 113, 35392, 111, 30255, 223, 164, 216, 231, 34372, 96, 164, 233, 228, 164, 100, 212, 164, 107, 238, 165, 222, 122, 17783, 224, 165, 111, 218, 5690, 222, 5690, 117, 45256, 13486, 111, 161, 96, 226, 19597, 117, 19597, 124, 46791, 103, 43316, 43033, 105, 45387, 228, 39393, 100, 5138, 217, 13764, 233, 25541, 218, 36387, 100, 164, 230, 222, 37300, 219, 165, 225, 102, 38125, 39429, 211, 6916, 97, 31902, 228, 33859, 48153, 113, 30255, 119, 165, 217, 115, 16849, 103, 44781, 17955, 216, 16385, 103, 23825, 229, 32130, 44508, 237, 44508, 102, 26151, 243, 163, 9223, 37769, 238, 31811, 240, 164, 118, 241, 40329, 221, 14378, 123, 165, 220, 216, 165, 222, 118, 11871, 124, 23366, 28915, 100, 16385, 124, 40309, 19597, 217, 28492, 234, 164, 216, 111, 46982, 231, 164, 119, 218, 165, 224, 115, 165, 103, 106, 11871, 241, 44246, 228, 12676, 110, 35072, 211, 48897, 220, 11043, 224, 11043, 229, 162, 105, 97, 21391, 187, 9855, 18442, 18, 6624, 163, 241, 122, 165, 219, 227, 37215, 231, 11043, 106, 13258, 109, 9078, 112, 28915, 219, 162, 217, 104, 22470, 244, 44508, 221, 45683, 162, 105, 215, 162, 125, 211, 164, 217, 219, 11800, 96, 26335, 231, 22150, 216, 15957, 123, 36720, 107, 7297, 215, 21700, 119, 163, 119, 244, 32026, 104, 32020, 32750, 114, 14378, 98, 165, 115, 228, 18751, 220, 24545, 120, 162, 123, 231, 21700, 227, 37661, 120, 14945, 98, 7056, 122, 46791, 221, 25541, 240, 164, 107, 236, 165, 220, 234, 165, 225, 223, 5494, 107, 16818, 230, 16849, 241, 44246, 124, 48897, 217, 21163, 212, 21163, 224, 12363, 125, 31902, 110, 34693, 214, 12613, 237, 12005, 228, 46791, 116, 162, 217, 107, 44508, 225, 10962, 107, 37895, 109, 162, 237, 121, 33859, 162, 97, 234, 37933, 218, 21944, 216, 163, 214, 111, 163, 229, 242, 163, 229, 100, 163, 230, 221, 40162, 236, 49835, 107, 163, 98, 107, 22701, 242, 22701, 116, 21700, 216, 35392, 230, 13180, 232, 13180, 125, 43641, 238, 44966, 233, 32750, 101, 49070, 232, 11016, 232, 165, 226, 96, 27661, 214, 27661, 118, 165, 104, 237, 165, 109, 103, 16818, 213, 30676, 230, 22150, 120, 17474, 228, 10674, 98, 17955, 217, 32403, 118, 8650, 229, 35072, 213, 162, 97, 110, 21391, 187, 9855, 68, 1473, 18, 6624, 46291, 103, 36337, 105, 45261, 19218, 118, 163, 98, 225, 22580, 123, 44126, 163, 119, 106, 163, 119, 122, 14945, 219, 19119, 96, 33656, 125, 26335, 225, 165, 117, 215, 5941, 99, 5941, 104, 18617, 221, 18617, 111, 10041, 120, 28650, 228, 10674, 99, 10673, 121, 12613, 106, 23825, 117, 16127, 117, 10962, 216, 10962, 112, 162, 237, 243, 17321, 109, 43033, 212, 22305, 123, 40162, 122, 5138, 227, 37531, 124, 22580, 125, 30255, 231, 45466, 32026, 96, 164, 217, 226, 38672, 101, 38672, 123, 164, 226, 110, 164, 234, 212, 164, 243, 111, 38053, 114, 19119, 100, 33836, 219, 21365, 239, 165, 223, 108, 20031, 218, 19780, 102, 30903, 165, 122, 230, 20833, 244, 8587, 238, 20286, 112, 162, 97, 226, 28215, 211, 33656, 117, 165, 115, 243, 10041, 110, 31902, 99, 161, 114, 228, 8841, 217, 162, 97, 111, 46291, 224, 162, 121, 124, 21422, 103, 38053, 241, 165, 109, 99, 24545, 103, 162, 121, 228, 48604, 103, 47750, 35601, 7056, 111, 11043, 242, 10674, 231, 41869, 29785, 227, 29785, 244, 23825, 111, 17598, 102, 16127, 121, 35801, 236, 45249, 164, 237, 98, 32363, 97, 165, 241, 226, 3218, 112, 13744, 96, 8650, 219, 26354, 163, 230, 239, 21391, 187, 9855, 336, 66, 18, 6624, 16998, 228, 164, 226, 230, 19119, 218, 19119, 112, 31811, 103, 14378, 225, 165, 224, 222, 19780, 217, 32283, 230, 43033, 103, 164, 234, 125, 24299, 244, 3218, 112, 14262, 243, 6916, 235, 13744, 107, 46791, 98, 46291, 120, 25715, 124, 48078, 223, 21422, 109, 163, 230, 235, 46419, 19957, 227, 164, 226, 216, 17559, 211, 32363, 106, 20616, 239, 165, 99, 103, 6765, 108, 29785, 240, 23825, 107, 11016, 213, 16800, 221, 7056, 220, 15899, 96, 28917, 236, 32283, 98, 20286, 243, 30093, 118, 21944, 237, 163, 222, 213, 35801, 233, 24379, 227, 38822, 111, 165, 228, 238, 12363, 101, 17598, 238, 19957, 106, 11871, 233, 44246, 211, 161, 96, 221, 28917, 241, 13258, 105, 19597, 102, 23825, 227, 43033, 227, 165, 244, 212, 6916, 226, 20557, 235, 32026, 111, 27258, 242, 50037, 32653, 228, 20345, 107, 39429, 107, 161, 107, 223, 161, 116, 243, 16385, 102, 16127, 105, 10962, 225, 15756, 96, 37794, 222, 163, 222, 96, 5138, 225, 25762, 109, 21700, 241, 163, 125, 119, 164, 217, 243, 164, 232, 225, 164, 238, 242, 49070, 214, 27258, 225, 24299, 221, 165, 99, 214, 165, 104, 232, 165, 108, 106, 3218, 235, 11871, 216, 11871, 240, 5690, 218, 16818, 111, 7056, 117, 21163, 124, 21391, 187, 9855, 68, 6855, 18, 6624, 12363, 211, 44002, 5941, 100, 20345, 225, 161, 235, 231, 31902, 115, 32120, 97, 13744, 218, 161, 116, 218, 32283, 227, 162, 218, 122, 23825, 235, 10962, 228, 17321, 118, 26974, 104, 43033, 222, 14486, 227, 22985, 217, 22985, 107, 43741, 36337, 240, 48078, 118, 163, 222, 234, 20241, 233, 21422, 214, 163, 241, 125, 25762, 104, 28215, 116, 21700, 125, 13180, 220, 16787, 122, 34372, 216, 34372, 221, 38672, 242, 10716, 97, 164, 107, 113, 33836, 122, 40329, 211, 11016, 228, 30086, 111, 165, 220, 99, 165, 221, 116, 165, 102, 229, 165, 104, 216, 165, 113, 104, 165, 117, 234, 165, 124, 239, 9504, 222, 17955, 211, 164, 226, 221, 165, 241, 243, 165, 241, 106, 165, 120, 114, 7719, 238, 163, 105, 235, 30255, 99, 29626, 236, 40329, 224, 24299, 96, 22150, 211, 17955, 219, 17598, 235, 163, 105, 242, 6916, 108, 12811, 230, 28215, 119, 163, 105, 108, 36387, 225, 41777, 107, 16849, 101, 6765, 118, 21163, 118, 12363, 117, 9504, 219, 23825, 113, 23823, 112, 25715, 221, 36087, 214, 20827, 117, 20647, 100, 163, 224, 234, 164, 232, 103, 164, 119, 116, 20616, 232, 5959, 120, 162, 106, 214, 162, 123, 110, 28812, 244, 40329, 223, 165, 100, 222, 5941, 100, 37895, 117, 14486, 118, 32363, 114, 21391, 187, 9855, 69, 17, 66, 18, 6624, 165, 107, 122, 165, 124, 239, 5941, 106, 9504, 244, 17474, 225, 22470, 217, 43033, 121, 35801, 105, 49835, 216, 163, 105, 120, 22701, 216, 37679, 124, 164, 228, 115, 11800, 226, 23692, 113, 11016, 115, 15954, 103, 21163, 121, 31902, 218, 23956, 218, 24379, 243, 164, 226, 223, 165, 219, 241, 165, 124, 239, 37794, 235, 7056, 222, 16805, 222, 11043, 218, 8650, 242, 46291, 235, 28492, 115, 26335, 236, 32653, 216, 11043, 99, 21163, 99, 162, 218, 214, 8587, 99, 15756, 119, 43033, 125, 163, 228, 124, 24379, 222, 36387, 119, 164, 226, 106, 11800, 112, 164, 107, 119, 9078, 228, 165, 100, 220, 17474, 228, 37248, 21683, 234, 44508, 229, 8841, 228, 162, 105, 225, 21422, 114, 44020, 212, 44020, 123, 36387, 104, 10716, 124, 10716, 125, 164, 100, 242, 38001, 165, 223, 101, 13127, 222, 40658, 13258, 100, 11827, 111, 24545, 112, 20557, 237, 21700, 101, 5494, 235, 7056, 97, 25762, 239, 32026, 109, 13127, 212, 13127, 225, 36359, 14262, 211, 161, 234, 239, 33499, 9504, 121, 41140, 26581, 122, 7249, 231, 17474, 218, 21683, 230, 13744, 215, 161, 112, 227, 161, 114, 225, 16385, 111, 12462, 124, 16549, 223, 18751, 211, 10460, 234, 10460, 98, 21391, 187, 9855, 69, 18, 66, 18, 6624, 5959, 241, 34175, 12676, 241, 46291, 222, 46291, 215, 41173, 25715, 120, 17289, 98, 24545, 123, 22305, 213, 36087, 218, 20241, 235, 21422, 101, 21422, 105, 163, 229, 213, 163, 229, 98, 23956, 118, 23956, 125, 46180, 212, 163, 98, 109, 37769, 212, 37769, 218, 37769, 219, 37769, 120, 25541, 232, 20557, 211, 35392, 120, 30255, 219, 13180, 217, 13180, 244, 32026, 223, 44330, 32750, 226, 37300, 219, 39859, 165, 223, 96, 165, 223, 99, 33700, 97, 165, 100, 228, 165, 103, 225, 165, 103, 226, 165, 104, 100, 165, 120, 229, 38675, 221, 7111, 116, 7719, 220, 23825, 108, 35072, 231, 38001, 39429, 106, 48897, 120, 39429, 218, 17474, 219, 161, 103, 239, 162, 218, 101, 162, 218, 116, 23825, 226, 23825, 125, 19218, 104, 995, 22, 937, 40693, 26487, 213, 995, 21, 937, 43894, 124, 30088, 105, 165, 102, 111, 5494, 213, 12363, 115, 162, 237, 233, 25715, 215, 163, 216, 233, 42025, 238, 164, 235, 244, 20031, 98, 165, 118, 241, 23823, 226, 23823, 120, 12363, 234, 161, 115, 227, 17321, 226, 28492, 243, 162, 119, 113, 162, 125, 106, 7297, 117, 164, 234, 224, 164, 100, 99, 23825, 220, 21391, 187, 9855, 69, 19, 66, 18, 6624, 20557, 224, 16787, 235, 164, 243, 242, 10716, 112, 10041, 221, 161, 103, 235, 32283, 221, 995, 21, 937, 11871, 214, 16800, 217, 7056, 102, 17474, 219, 26974, 110, 13180, 227, 14262, 117, 40007, 19144, 45128, 237, 16998, 221, 16549, 115, 29785, 107, 23825, 219, 23823, 121, 13744, 102, 13744, 234, 11043, 105, 21163, 241, 17474, 114, 12811, 104, 13258, 229, 44508, 215, 162, 106, 230, 42025, 227, 163, 228, 236, 13764, 102, 995, 22, 937, 165, 102, 228, 165, 244, 109, 995, 740, 937, 162, 125, 214, 26844, 243, 30590, 124, 164, 217, 125, 21365, 112, 21555, 111, 15957, 97, 163, 98, 221, 164, 216, 101, 33836, 213, 20031, 117, 10673, 125, 28917, 235, 995, 24, 937, 161, 106, 104, 14945, 100, 12676, 121, 20557, 227, 21163, 229, 995, 22, 937, 20287, 164, 226, 111, 17783, 115, 10673, 122, 14670, 100, 15899, 125, 36337, 120, 24899, 164, 223, 116, 21391, 187, 9855, 69, 20, 66, 18, 6624, 3218, 119, 5494, 116, 43300, 39429, 108, 9504, 235, 28917, 218, 14318, 233, 8587, 117, 10460, 101, 162, 105, 211, 33369, 115, 162, 119, 224, 25762, 244, 22701, 109, 163, 110, 241, 38675, 241, 164, 238, 222, 38053, 229, 165, 215, 112, 165, 224, 238, 45128, 121, 162, 124, 124, 163, 224, 120, 39393, 118, 14378, 231, 30676, 233, 31902, 224, 162, 217, 120, 44508, 231, 20286, 218, 36087, 96, 162, 119, 238, 162, 123, 244, 162, 124, 119, 40162, 110, 30590, 214, 164, 217, 123, 164, 232, 212, 11800, 214, 43894, 218, 32750, 237, 165, 223, 242, 22305, 230, 23956, 230, 24379, 231, 164, 118, 226, 14378, 240, 161, 231, 227, 22150, 213, 161, 96, 235, 12462, 97, 8650, 218, 45128, 241, 46291, 243, 23956, 116, 37679, 233, 164, 241, 113, 37215, 103, 29440, 32120, 219, 31902, 108, 15962, 10673, 224, 161, 112, 111, 15446, 116, 12005, 216, 8650, 114, 44508, 96, 20241, 113, 16787, 120, 38053, 222, 32363, 118, 26335, 221, 37215, 238, 6916, 216, 12005, 117, 32403, 113, 16849, 229, 6765, 211, 22044, 9504, 233, 22150, 115, 161, 96, 234, 10673, 225, 17955, 243, 161, 113, 116, 161, 116, 222, 29485, 12005, 229, 32403, 122, 18245, 228, 17598, 220, 162, 227, 234, 35072, 214, 21391, 187, 9855, 69, 21, 66, 18, 6624, 46291, 119, 162, 106, 213, 36087, 235, 26151, 96, 162, 121, 231, 162, 125, 99, 163, 218, 124, 13764, 239, 37531, 119, 44020, 111, 22580, 121, 164, 227, 215, 11800, 104, 33836, 244, 31811, 113, 164, 119, 219, 11016, 214, 11016, 231, 34260, 34446, 165, 224, 224, 17783, 116, 40153, 239, 22985, 229, 163, 211, 217, 15957, 235, 36720, 97, 163, 224, 103, 37531, 98, 44020, 125, 163, 109, 99, 29268, 238, 14129, 211, 34693, 104, 21555, 218, 10962, 101, 10460, 123, 162, 237, 124, 22305, 223, 26036, 241, 163, 218, 220, 37300, 237, 27661, 230, 11871, 244, 163, 105, 212, 5690, 240, 14262, 107, 13486, 224, 33532, 24412, 162, 217, 102, 12676, 111, 35072, 227, 46291, 242, 30093, 241, 162, 123, 122, 39393, 122, 163, 241, 113, 22701, 100, 38822, 114, 164, 228, 98, 165, 221, 216, 7056, 239, 8587, 234, 12676, 239, 17321, 230, 40162, 235, 22701, 218, 164, 224, 113, 14129, 211, 37300, 217, 11016, 234, 27661, 244, 17955, 109, 16787, 211, 36387, 237, 14378, 212, 14378, 109, 165, 219, 224, 30808, 161, 116, 240, 37794, 236, 163, 218, 219, 19218, 121, 38563, 164, 234, 99, 164, 107, 215, 165, 215, 102, 165, 103, 110, 39429, 218, 162, 218, 116, 23825, 226, 19218, 104, 30255, 216, 21391, 187, 9855, 69, 22, 66, 18, 6624, 164, 235, 125, 164, 241, 120, 29626, 118, 30086, 226, 26487, 213, 30093, 238, 163, 214, 236, 35801, 241, 21700, 96, 164, 227, 123, 43894, 124, 30088, 105, 165, 102, 111, 3218, 119, 5494, 213, 12363, 115, 25715, 215, 25715, 229, 163, 211, 124, 42025, 238, 164, 235, 244, 165, 118, 241, 16805, 223, 21365, 98, 161, 115, 227, 44508, 100, 16127, 107, 25715, 233, 162, 125, 106, 26844, 214, 29268, 239, 164, 234, 224, 164, 100, 99, 11800, 123, 23825, 220, 16787, 235, 164, 243, 242, 32283, 221, 5959, 234, 21998, 105, 163, 222, 122, 21422, 216, 163, 228, 109, 164, 241, 213, 24299, 241, 16800, 217, 161, 114, 224, 12005, 243, 164, 227, 221, 14262, 117, 17598, 243, 23956, 100, 5494, 108, 16849, 217, 7056, 104, 13486, 220, 162, 97, 212, 26487, 228, 48153, 108, 48153, 111, 37679, 102, 32417, 109, 43894, 229, 49070, 238, 37079, 16800, 116, 48897, 117, 21163, 115, 18617, 213, 32283, 107, 46791, 108, 8650, 124, 10460, 216, 162, 106, 237, 162, 125, 124, 21121, 105, 164, 234, 239, 164, 243, 98, 15954, 244, 165, 104, 97, 165, 104, 105, 165, 120, 234, 37215, 225, 32365, 20286, 217, 14486, 117, 163, 211, 240, 21121, 106, 27258, 97, 19127, 213, 162, 217, 227, 8650, 211, 16127, 98, 45387, 98, 21391, 187, 9855, 69, 23, 66, 18, 6624, 163, 216, 220, 163, 229, 220, 38675, 114, 30590, 109, 164, 230, 108, 49070, 101, 11016, 98, 165, 224, 221, 14262, 123, 44157, 11043, 98, 30093, 223, 163, 214, 219, 29626, 213, 32283, 220, 8587, 213, 33369, 108, 162, 125, 213, 163, 110, 124, 163, 224, 115, 5690, 99, 13127, 116, 10041, 119, 13744, 102, 161, 112, 120, 161, 116, 120, 13258, 239, 20241, 112, 18947, 244, 30255, 237, 163, 125, 225, 30590, 217, 11016, 241, 165, 219, 114, 20031, 116, 19127, 219, 27661, 235, 165, 123, 96, 32378, 162, 124, 102, 44020, 108, 165, 217, 114, 26335, 117, 21163, 241, 13258, 229, 45128, 219, 44508, 215, 162, 106, 230, 162, 123, 241, 163, 211, 235, 42025, 227, 13764, 102, 13180, 212, 164, 235, 217, 46982, 239, 49521, 49070, 216, 32790, 112, 165, 244, 109, 165, 117, 120, 165, 119, 115, 46180, 223, 37769, 125, 35392, 243, 164, 226, 220, 165, 223, 215, 165, 119, 125, 165, 120, 230, 43894, 233, 28917, 242, 12811, 215, 5959, 102, 163, 211, 102, 163, 230, 226, 26844, 243, 30590, 124, 48897, 96, 163, 211, 103, 15957, 97, 163, 98, 221, 33836, 213, 33836, 237, 33836, 114, 20031, 117, 17492, 32653, 237, 13744, 108, 32283, 233, 8587, 236, 163, 218, 225, 163, 18713, 163, 241, 244, 30590, 221, 164, 230, 122, 21391, 187, 9855, 69, 24, 66, 18, 6624, 14378, 122, 165, 107, 102, 165, 124, 224, 28917, 235, 161, 104, 212, 17955, 97, 26487, 230, 36087, 237, 45387, 226, 163, 235, 121, 20557, 109, 163, 118, 117, 164, 231, 241, 164, 99, 118, 165, 226, 99, 17783, 222, 11043, 220, 10460, 229, 26974, 113, 162, 101, 114, 50039, 36337, 239, 163, 211, 226, 21422, 220, 163, 228, 243, 23956, 236, 163, 235, 99, 49835, 106, 164, 107, 107, 19780, 241, 7056, 244, 8650, 108, 17783, 118, 16800, 233, 16849, 106, 161, 114, 236, 36087, 105, 35392, 118, 49070, 105, 12005, 222, 46791, 215, 15756, 234, 20241, 218, 26335, 217, 21163, 229, 32026, 222, 13486, 239, 13486, 223, 28492, 241, 22580, 239, 35392, 124, 164, 226, 111, 17783, 115, 16818, 237, 37208, 20647, 235, 7719, 226, 161, 231, 225, 17955, 100, 32403, 102, 12676, 225, 162, 97, 103, 21998, 107, 36720, 212, 163, 222, 118, 24017, 163, 229, 214, 23956, 110, 40162, 97, 26844, 107, 19957, 119, 30255, 118, 44966, 220, 29626, 226, 29626, 96, 42013, 13499, 227, 20031, 97, 165, 109, 220, 7719, 240, 162, 123, 124, 163, 218, 227, 163, 229, 235, 164, 234, 120, 41777, 105, 26335, 98, 165, 111, 234, 165, 120, 242, 17321, 234, 36087, 222, 21422, 113, 16787, 103, 32790, 233, 27374, 107, 21391, 187, 9855, 69, 25, 66, 18, 6624, 41478, 18947, 243, 48153, 229, 162, 228, 104, 163, 228, 105, 40162, 112, 46180, 122, 163, 98, 103, 40843, 107, 165, 244, 231, 165, 120, 121, 13744, 241, 12462, 232, 45387, 243, 164, 217, 239, 44966, 106, 30086, 219, 3218, 218, 12363, 224, 161, 103, 104, 16385, 229, 14318, 225, 46791, 97, 18245, 123, 37895, 104, 20286, 122, 162, 24384, 45387, 106, 48078, 98, 163, 241, 241, 164, 227, 107, 164, 231, 230, 164, 243, 121, 49070, 230, 165, 100, 216, 165, 110, 121, 161, 231, 239, 18751, 119, 5959, 106, 22305, 106, 164, 223, 220, 164, 100, 105, 19127, 120, 5494, 96, 21683, 215, 16549, 235, 16549, 236, 5959, 238, 35392, 112, 19957, 231, 36387, 229, 164, 223, 106, 44966, 123, 49070, 241, 30086, 236, 26581, 222, 21683, 119, 161, 105, 229, 13744, 227, 8841, 102, 17321, 237, 162, 97, 216, 22985, 226, 163, 216, 99, 19957, 115, 32363, 117, 33836, 98, 30086, 212, 165, 244, 216, 43641, 219, 32363, 221, 17783, 223, 165, 104, 211, 165, 120, 100, 10674, 242, 17289, 230, 163, 223, 238, 13764, 112, 13764, 242, 164, 227, 223, 14262, 105, 11800, 230, 7056, 224, 14262, 232, 21163, 220, 46291, 220, 22305, 231, 20827, 215, 20827, 243, 35392, 125, 38675, 107, 28305, 165, 120, 115, 162, 121, 216, 21391, 187, 9855, 69, 26, 66, 18, 6624, 164, 231, 228, 14262, 100, 28610, 18617, 123, 29687, 162, 237, 240, 162, 99, 102, 36337, 242, 5138, 125, 163, 241, 228, 164, 223, 234, 164, 230, 213, 164, 241, 242, 30088, 104, 165, 221, 235, 165, 113, 114, 38053, 213, 16800, 108, 161, 13076, 21163, 242, 28650, 217, 15446, 123, 46791, 232, 162, 228, 118, 162, 228, 119, 162, 237, 108, 26974, 227, 41202, 22985, 224, 22985, 238, 15957, 242, 15957, 96, 163, 228, 212, 20827, 118, 25762, 238, 13180, 234, 36387, 122, 164, 223, 216, 164, 107, 211, 164, 107, 103, 32363, 223, 5959, 103, 22305, 227, 15957, 102, 28154, 37531, 101, 28215, 217, 165, 116, 104, 14486, 125, 22305, 229, 7249, 97, 5959, 101, 164, 229, 236, 12363, 109, 34693, 230, 21683, 236, 32283, 242, 22470, 226, 8841, 114, 12676, 113, 26151, 120, 163, 223, 106, 22701, 234, 38672, 234, 165, 223, 103, 21163, 236, 16385, 106, 162, 217, 108, 162, 218, 222, 8650, 221, 23825, 218, 45128, 106, 47029, 28492, 236, 14486, 101, 22985, 222, 48624, 35801, 117, 23956, 240, 163, 119, 217, 34372, 241, 164, 223, 213, 164, 232, 105, 19119, 98, 32363, 125, 32790, 102, 165, 115, 96, 34693, 103, 37215, 235, 16849, 228, 6765, 225, 7719, 121, 49554, 20855, 21391, 187, 9855, 1473, 66, 18, 6624, 24545, 116, 20557, 221, 20557, 222, 30590, 241, 164, 237, 221, 15954, 211, 20031, 109, 21163, 125, 22305, 232, 34389, 18617, 113, 161, 105, 237, 10673, 124, 161, 115, 222, 14318, 223, 12005, 108, 5959, 105, 162, 97, 116, 28492, 98, 26151, 122, 162, 119, 215, 20827, 220, 26844, 113, 30255, 225, 164, 233, 218, 164, 107, 225, 9078, 117, 19127, 96, 37215, 114, 161, 112, 117, 32403, 116, 19597, 224, 162, 217, 106, 10962, 226, 10460, 121, 10460, 122, 46356, 14670, 109, 20241, 242, 35801, 220, 38675, 96, 15954, 231, 13744, 217, 164, 239, 239, 164, 107, 227, 16805, 240, 12363, 237, 23825, 224, 162, 227, 226, 45128, 112, 5959, 114, 26487, 118, 14670, 221, 35801, 211, 163, 229, 241, 25541, 231, 48153, 232, 163, 118, 238, 164, 217, 221, 34372, 116, 164, 233, 215, 9078, 106, 20031, 119, 165, 102, 212, 13127, 114, 12363, 221, 5941, 224, 5941, 238, 23825, 223, 162, 227, 107, 16127, 211, 8587, 228, 43033, 214, 14670, 108, 162, 123, 235, 35801, 244, 23956, 231, 163, 235, 97, 13764, 99, 13764, 122, 163, 98, 227, 163, 98, 121, 21121, 107, 21700, 217, 34372, 107, 164, 242, 243, 47397, 27661, 229, 33700, 109, 21163, 214, 23825, 231, 45128, 100, 26151, 99, 162, 123, 228, 21391, 187, 9855, 5470, 66, 18, 6624, 19218, 122, 31811, 222, 165, 217, 111, 165, 220, 97, 27712, 108, 165, 244, 214, 16849, 98, 44246, 224, 31902, 221, 21683, 103, 10673, 103, 12462, 218, 14318, 117, 8650, 125, 45882, 20005, 10460, 212, 8841, 220, 17321, 222, 162, 101, 239, 162, 121, 213, 163, 98, 216, 20557, 96, 32026, 105, 164, 217, 211, 34372, 106, 36387, 113, 164, 229, 96, 164, 237, 223, 14945, 105, 164, 107, 234, 30086, 101, 29852, 112, 165, 124, 227, 16849, 224, 16818, 113, 15899, 234, 26581, 119, 12005, 235, 23825, 239, 17598, 229, 12676, 109, 162, 119, 214, 26036, 236, 13764, 214, 38822, 223, 38822, 237, 29626, 114, 29626, 115, 164, 99, 236, 33836, 243, 49070, 104, 40715, 165, 8318, 13127, 109, 7111, 110, 15446, 238, 26974, 226, 15756, 97, 19218, 123, 19218, 124, 165, 244, 215, 12462, 96, 26487, 221, 163, 216, 104, 163, 218, 231, 23956, 105, 163, 98, 121, 163, 119, 212, 164, 232, 214, 164, 234, 104, 33700, 239, 13127, 227, 24379, 226, 19957, 110, 15954, 100, 13486, 96, 15446, 217, 162, 97, 115, 17289, 124, 24545, 225, 14670, 238, 36720, 109, 163, 109, 215, 164, 223, 214, 20113, 21422, 120, 32653, 121, 11043, 219, 28917, 212, 44508, 235, 162, 105, 234, 163, 229, 102, 19218, 233, 21391, 187, 9855, 69, 6357, 18, 6624, 46180, 102, 164, 235, 234, 20616, 97, 32790, 119, 16800, 125, 12363, 241, 12811, 212, 14129, 221, 21365, 103, 21365, 109, 30086, 221, 6765, 100, 163, 241, 100, 165, 111, 220, 165, 122, 219, 3218, 236, 16849, 213, 7056, 115, 17955, 238, 12462, 117, 8841, 241, 8841, 120, 26974, 215, 46291, 216, 21944, 113, 7297, 212, 40162, 216, 16998, 220, 22701, 240, 49070, 102, 165, 99, 243, 165, 103, 219, 38908, 22150, 96, 48029, 13744, 116, 37895, 108, 14486, 100, 30093, 228, 162, 119, 120, 162, 123, 123, 35801, 99, 7297, 106, 164, 226, 104, 29626, 239, 164, 99, 230, 32750, 239, 49070, 231, 13127, 226, 32653, 232, 15899, 227, 12363, 239, 6916, 230, 12005, 104, 49616, 44020, 226, 164, 216, 119, 164, 223, 109, 164, 231, 231, 164, 99, 218, 11800, 217, 49070, 119, 49070, 121, 40843, 100, 165, 110, 229, 18957, 11871, 116, 16818, 118, 17474, 220, 10673, 212, 161, 113, 109, 161, 113, 110, 23823, 102, 46291, 229, 163, 15911, 163, 217, 97, 21422, 106, 163, 118, 106, 164, 230, 107, 164, 239, 213, 11016, 97, 165, 222, 229, 165, 113, 113, 14274, 5690, 235, 16818, 109, 44246, 216, 16805, 233, 16805, 109, 7719, 101, 20345, 227, 26581, 243, 7249, 106, 161, 104, 101, 21391, 187, 9855, 69, 1473, 18, 6624, 10674, 237, 10674, 115, 13744, 223, 12613, 239, 12005, 104, 11827, 116, 10962, 117, 8587, 102, 21998, 108, 36337, 100, 42025, 116, 18947, 101, 163, 110, 125, 37661, 116, 164, 216, 227, 164, 216, 228, 164, 217, 237, 32417, 211, 36387, 236, 44966, 104, 14945, 214, 32363, 243, 33836, 101, 33836, 121, 23692, 114, 34138, 120, 26795, 13499, 239, 29852, 239, 17783, 215, 165, 102, 236, 165, 113, 102, 15899, 234, 18434, 7719, 104, 32053, 114, 34693, 113, 17474, 231, 17474, 108, 16549, 125, 162, 217, 99, 11827, 108, 8841, 227, 24545, 124, 26036, 237, 13764, 217, 48153, 220, 37679, 241, 20557, 238, 36387, 107, 33836, 212, 20031, 110, 14274, 7111, 238, 12811, 234, 14318, 125, 23825, 213, 161, 114, 104, 5959, 222, 46291, 237, 49835, 122, 163, 119, 214, 165, 115, 107, 3218, 232, 44246, 236, 15899, 232, 15899, 105, 12363, 228, 21683, 214, 161, 104, 97, 12613, 218, 32403, 112, 162, 217, 221, 11827, 220, 11827, 119, 8587, 227, 17321, 218, 162, 101, 102, 44075, 22985, 233, 22985, 234, 22985, 235, 22305, 118, 14670, 223, 21422, 115, 40162, 120, 27374, 229, 46180, 228, 16998, 232, 16998, 235, 48153, 214, 38675, 222, 163, 125, 96, 32026, 100, 21391, 187, 9855, 615, 66, 18, 6624, 43641, 124, 16787, 213, 164, 226, 112, 164, 239, 237, 29626, 103, 19119, 119, 32750, 107, 32363, 121, 165, 215, 236, 48991, 33700, 238, 165, 122, 121, 161, 237, 107, 161, 107, 105, 14318, 107, 8587, 223, 162, 105, 113, 33369, 109, 21998, 239, 162, 125, 111, 163, 211, 232, 15957, 240, 20241, 244, 32363, 102, 33836, 230, 27661, 121, 162, 217, 228, 17289, 117, 30590, 235, 165, 103, 212, 11871, 224, 22010, 40951, 5690, 232, 13127, 120, 13127, 122, 22160, 16818, 242, 32653, 125, 5941, 112, 5941, 118, 161, 231, 217, 161, 234, 98, 10041, 238, 28917, 106, 17474, 97, 161, 103, 228, 13744, 106, 13744, 120, 10673, 215, 16385, 113, 15446, 106, 12005, 236, 35636, 23823, 103, 8587, 239, 8587, 109, 26974, 116, 26974, 121, 162, 97, 244, 14486, 121, 22305, 236, 14670, 234, 26151, 98, 163, 211, 220, 163, 224, 216, 27374, 213, 39811, 37769, 211, 37769, 243, 45804, 163, 109, 104, 20557, 234, 21700, 112, 32026, 217, 34372, 224, 44966, 225, 164, 230, 228, 164, 238, 218, 29626, 242, 28812, 227, 28812, 241, 164, 107, 240, 33836, 239, 23692, 101, 21365, 244, 30086, 105, 33700, 122, 165, 102, 242, 165, 120, 240, 16805, 221, 10962, 118, 5959, 231, 20557, 97, 21391, 187, 9855, 4989, 66, 18, 6624, 44246, 235, 6765, 105, 17955, 111, 10962, 98, 24545, 232, 35801, 221, 7297, 98, 39393, 240, 47615, 164, 229, 239, 30088, 118, 32790, 110, 11871, 117, 45128, 229, 33369, 120, 163, 216, 241, 164, 233, 104, 36168, 5941, 214, 12676, 220, 46291, 108, 26151, 234, 36387, 242, 164, 231, 235, 10716, 106, 22470, 117, 162, 124, 212, 165, 219, 229, 27107, 109, 16740, 44246, 117, 44314, 48897, 242, 30676, 217, 39429, 105, 161, 235, 234, 10674, 211, 10673, 236, 161, 113, 243, 36548, 12613, 221, 12613, 243, 32283, 213, 41197, 35072, 228, 37794, 96, 162, 119, 235, 42025, 123, 15957, 211, 163, 222, 211, 32313, 37769, 100, 25541, 111, 163, 125, 231, 29626, 113, 17559, 114, 28812, 113, 44795, 33836, 241, 32790, 239, 161, 96, 241, 163, 229, 123, 33836, 123, 161, 234, 218, 161, 96, 241, 28215, 96, 20557, 97, 46461, 15957, 112, 20025, 7297, 100, 20827, 212, 18947, 236, 34693, 216, 28917, 121, 161, 116, 122, 49056, 12613, 116, 12005, 227, 29785, 232, 18751, 229, 23823, 125, 10962, 224, 162, 237, 228, 20286, 236, 47008, 15756, 233, 46291, 112, 36720, 211, 163, 228, 241, 24379, 108, 21700, 108, 38675, 233, 19957, 112, 21391, 187, 9855, 70, 17, 66, 18, 6624, 38822, 100, 34372, 229, 164, 233, 109, 164, 100, 125, 19119, 230, 11016, 240, 165, 222, 99, 37215, 224, 165, 122, 243, 7249, 232, 17474, 244, 15446, 244, 21555, 239, 8841, 231, 37895, 113, 17321, 227, 24545, 227, 36087, 216, 162, 123, 242, 25762, 113, 46180, 104, 164, 230, 217, 13499, 222, 165, 223, 106, 5690, 236, 32653, 221, 43216, 39429, 215, 161, 107, 222, 6916, 98, 11827, 218, 10962, 124, 10460, 222, 26151, 112, 163, 216, 123, 21422, 212, 163, 228, 215, 163, 229, 218, 163, 229, 125, 19218, 107, 44020, 105, 38675, 237, 163, 119, 232, 30255, 103, 164, 216, 120, 164, 217, 113, 34372, 119, 164, 235, 237, 164, 242, 107, 28812, 115, 31811, 98, 14378, 118, 165, 221, 228, 165, 227, 100, 165, 100, 224, 165, 108, 108, 12363, 103, 17955, 228, 28492, 231, 14670, 215, 30093, 104, 26151, 106, 34372, 223, 164, 233, 238, 164, 99, 121, 14945, 244, 19119, 105, 20031, 105, 165, 123, 102, 16805, 96, 162, 237, 119, 33369, 112, 29268, 233, 164, 242, 124, 29832, 224, 15954, 214, 17783, 240, 16127, 240, 37933, 220, 163, 218, 108, 164, 228, 220, 26581, 225, 28650, 230, 6916, 107, 21734, 21555, 120, 21991, 8841, 242, 37895, 242, 163, 223, 104, 35801, 119, 13764, 238, 20827, 212, 24379, 107, 21391, 187, 9855, 70, 18, 66, 18, 6624, 30590, 233, 30590, 112, 164, 216, 100, 19119, 243, 165, 13076, 42848, 21163, 97, 14486, 112, 30093, 234, 22580, 216, 18947, 119, 20557, 110, 19119, 105, 32363, 110, 5941, 107, 161, 235, 109, 161, 96, 228, 6916, 115, 29533, 45508, 16385, 97, 25276, 17598, 214, 162, 227, 231, 8841, 244, 162, 97, 113, 22305, 122, 37933, 219, 36337, 109, 163, 211, 242, 21944, 99, 163, 218, 229, 7297, 101, 39393, 226, 39393, 225, 163, 235, 236, 18947, 228, 163, 109, 243, 163, 110, 106, 48815, 20557, 119, 164, 231, 107, 164, 232, 244, 164, 235, 218, 14945, 114, 11016, 224, 14378, 96, 30086, 115, 165, 221, 117, 40153, 116, 165, 103, 117, 16818, 234, 17955, 107, 12676, 242, 37933, 228, 48153, 242, 29268, 223, 164, 107, 233, 29832, 233, 11016, 242, 10674, 106, 16385, 123, 162, 227, 224, 164, 230, 211, 14378, 239, 33700, 96, 20241, 218, 6916, 222, 32403, 237, 12676, 124, 36087, 241, 14945, 242, 19119, 101, 11016, 212, 27661, 223, 6765, 117, 33369, 120, 48078, 228, 46180, 225, 165, 225, 233, 10716, 110, 13499, 234, 16818, 108, 43368, 161, 234, 123, 10041, 237, 32120, 213, 28917, 123, 161, 106, 213, 6916, 219, 161, 112, 106, 161, 113, 211, 15446, 100, 19597, 212, 21391, 187, 9855, 70, 19, 66, 18, 6624, 8650, 224, 29554, 17598, 219, 162, 227, 239, 16127, 116, 10962, 118, 26487, 119, 33369, 221, 47937, 30093, 236, 45387, 111, 163, 218, 102, 163, 222, 104, 163, 224, 118, 21422, 218, 163, 229, 112, 163, 235, 101, 37531, 96, 16998, 211, 28215, 234, 22701, 105, 48153, 119, 35392, 226, 35392, 107, 163, 119, 96, 30255, 241, 43641, 104, 164, 223, 111, 164, 229, 227, 164, 230, 237, 164, 234, 105, 38053, 233, 19119, 110, 14129, 227, 49070, 118, 14378, 213, 30086, 214, 30088, 107, 165, 221, 233, 165, 221, 119, 26335, 222, 26335, 102, 26335, 103, 20031, 233, 41085, 27661, 219, 40843, 233, 27712, 230, 165, 107, 237, 5941, 231, 161, 96, 124, 7249, 236, 10674, 110, 6916, 125, 36087, 228, 162, 123, 237, 163, 217, 242, 21422, 96, 163, 229, 119, 32026, 216, 164, 226, 123, 16385, 96, 12005, 218, 12005, 105, 29785, 213, 10460, 107, 15756, 229, 28492, 109, 37794, 230, 33369, 220, 30093, 115, 36087, 113, 35801, 98, 13764, 124, 163, 241, 107, 24379, 224, 20557, 231, 43641, 98, 34372, 239, 164, 224, 211, 164, 230, 114, 164, 232, 98, 28812, 97, 43894, 215, 165, 217, 218, 165, 223, 241, 27661, 217, 40843, 114, 8650, 223, 10716, 230, 9078, 110, 165, 220, 100, 161, 114, 218, 161, 114, 102, 21391, 187, 9855, 70, 20, 66, 18, 6624, 161, 115, 104, 163, 228, 242, 164, 217, 240, 164, 240, 103, 162, 125, 232, 23825, 124, 163, 125, 229, 164, 99, 116, 164, 100, 112, 3218, 241, 11871, 235, 32653, 102, 21163, 240, 12363, 218, 11827, 125, 8841, 218, 163, 119, 104, 164, 243, 216, 17783, 241, 16800, 224, 15899, 236, 161, 235, 116, 39295, 161, 105, 99, 10673, 118, 17955, 225, 17955, 224, 42335, 12811, 228, 29785, 214, 8587, 123, 12105, 27033, 17321, 124, 26974, 114, 163, 223, 239, 25762, 97, 30420, 163, 125, 216, 164, 229, 231, 164, 230, 224, 11800, 233, 28812, 101, 28812, 104, 43894, 96, 37300, 232, 37300, 120, 26581, 114, 13744, 231, 30077, 43136, 23825, 244, 162, 99, 224, 33369, 233, 162, 119, 239, 163, 217, 215, 163, 109, 229, 164, 240, 232, 32750, 235, 40329, 124, 33700, 242, 33700, 124, 13127, 118, 16800, 212, 32165, 18617, 121, 161, 103, 243, 6916, 118, 19597, 122, 24308, 37895, 103, 163, 218, 122, 7297, 113, 37769, 241, 20557, 113, 164, 216, 225, 16787, 98, 44966, 235, 164, 233, 105, 164, 234, 225, 164, 239, 214, 14945, 221, 45748, 21365, 238, 21365, 110, 9078, 216, 7249, 111, 6916, 99, 13744, 101, 32403, 220, 13744, 104, 10673, 222, 36644, 22305, 212, 21391, 187, 9855, 70, 21, 66, 18, 6624, 22305, 219, 36087, 111, 163, 211, 222, 7297, 237, 36387, 109, 43894, 116, 5690, 211, 37657, 23825, 124, 20031, 236, 49650, 5494, 241, 16818, 215, 7056, 229, 30676, 241, 161, 103, 100, 161, 113, 103, 15367, 15957, 236, 36387, 123, 44966, 105, 164, 238, 124, 10716, 236, 14945, 240, 29852, 125, 20031, 216, 165, 99, 230, 165, 114, 220, 165, 115, 240, 22150, 221, 161, 112, 113, 161, 116, 123, 12462, 215, 21555, 96, 19597, 232, 22470, 96, 26487, 213, 26151, 100, 165, 215, 213, 165, 224, 231, 19780, 225, 165, 110, 227, 165, 123, 117, 38028, 161, 112, 118, 18245, 220, 37895, 226, 35072, 219, 20827, 122, 20031, 212, 165, 241, 224, 19780, 231, 165, 108, 242, 8587, 96, 164, 107, 212, 40329, 222, 15954, 122, 161, 231, 115, 161, 112, 104, 16385, 233, 12613, 115, 162, 237, 234, 19218, 223, 164, 226, 114, 20616, 218, 28917, 230, 18751, 122, 163, 222, 225, 165, 114, 103, 5690, 110, 7249, 108, 13258, 226, 8841, 121, 33369, 214, 16998, 102, 165, 114, 101, 20647, 230, 20833, 211, 26581, 214, 161, 114, 233, 19597, 238, 20286, 233, 37933, 109, 46180, 224, 32417, 124, 26335, 235, 19127, 215, 20647, 215, 11827, 122, 17598, 233, 37933, 112, 163, 118, 221, 164, 216, 222, 19780, 224, 21391, 187, 9855, 70, 22, 66, 18, 6624, 162, 106, 121, 19957, 223, 165, 116, 109, 165, 118, 237, 35724, 16849, 121, 14262, 116, 7249, 239, 21555, 119, 22470, 116, 162, 99, 110, 42025, 120, 13180, 116, 38672, 100, 13499, 225, 12811, 111, 17598, 243, 23956, 100, 20557, 215, 38672, 100, 164, 228, 109, 164, 229, 121, 164, 234, 100, 41777, 224, 5494, 108, 7111, 109, 7056, 104, 13486, 220, 28917, 99, 10674, 214, 29785, 236, 22470, 237, 16127, 235, 10962, 244, 162, 237, 235, 162, 97, 212, 28492, 221, 26487, 98, 30093, 222, 163, 211, 212, 163, 216, 107, 40162, 229, 163, 235, 224, 44020, 113, 28215, 110, 37679, 102, 30255, 221, 32417, 109, 164, 100, 215, 43894, 229, 14129, 230, 13499, 211, 17783, 123, 37079, 165, 99, 221, 9504, 215, 12005, 96, 8587, 122, 45387, 212, 163, 235, 211, 44020, 101, 19119, 241, 40843, 244, 165, 244, 237, 165, 123, 107, 48897, 215, 162, 217, 116, 18751, 228, 162, 105, 224, 16787, 217, 28915, 214, 22150, 110, 14318, 101, 26036, 220, 31982, 43894, 120, 10674, 122, 164, 235, 233, 16818, 120, 48897, 122, 161, 237, 114, 17474, 215, 17598, 104, 36087, 119, 161, 116, 105, 39468, 14262, 217, 5494, 219, 7111, 236, 21163, 115, 18617, 213, 40007, 25434, 32283, 107, 21391, 187, 9855, 70, 23, 66, 18, 6624, 10460, 216, 14486, 242, 24545, 240, 162, 125, 124, 163, 229, 115, 21121, 233, 21121, 105, 34372, 218, 32417, 216, 164, 223, 119, 49070, 125, 27258, 240, 15954, 244, 165, 99, 235, 165, 104, 105, 165, 120, 234, 37215, 225, 5494, 101, 32365, 26581, 242, 14318, 119, 8841, 230, 20286, 217, 14486, 117, 39393, 106, 163, 119, 119, 32750, 109, 27258, 97, 11016, 217, 165, 104, 238, 161, 237, 100, 22150, 102, 28650, 118, 161, 103, 242, 6916, 114, 19144, 32283, 116, 162, 217, 227, 8650, 211, 23823, 227, 18245, 121, 45128, 237, 162, 99, 123, 22305, 218, 22305, 125, 37933, 225, 37933, 230, 36087, 115, 45387, 231, 45387, 98, 163, 214, 242, 38389, 163, 216, 236, 163, 216, 220, 163, 218, 214, 163, 218, 232, 163, 229, 220, 49835, 226, 49835, 109, 16998, 221, 24379, 115, 38675, 98, 38675, 114, 163, 118, 109, 30590, 109, 10716, 224, 40329, 242, 49070, 101, 164, 230, 108, 11016, 98, 165, 220, 238, 165, 224, 221, 165, 113, 116, 44157, 11043, 98, 20345, 123, 32403, 216, 37933, 216, 163, 214, 219, 163, 217, 111, 29626, 213, 19119, 105, 15954, 111, 20647, 244, 32283, 220, 16549, 115, 23823, 121, 26974, 230, 33369, 108, 21944, 225, 26036, 110, 21422, 110, 32417, 116, 38672, 229, 21391, 187, 9855, 70, 24, 66, 18, 6624, 163, 110, 124, 15954, 121, 27712, 100, 165, 119, 123, 20286, 215, 163, 224, 115, 163, 218, 212, 164, 228, 220, 5690, 99, 10041, 119, 161, 96, 222, 13744, 102, 161, 116, 120, 161, 116, 118, 14318, 111, 13258, 239, 8841, 243, 162, 237, 225, 28492, 119, 162, 101, 108, 17289, 118, 14670, 113, 26151, 116, 162, 123, 212, 162, 125, 237, 163, 211, 238, 163, 211, 109, 163, 216, 227, 163, 218, 242, 163, 224, 110, 20241, 112, 163, 228, 238, 163, 228, 104, 163, 230, 231, 13764, 219, 28215, 225, 29268, 230, 30255, 237, 30590, 217, 38672, 111, 28812, 243, 9078, 225, 165, 219, 114, 165, 224, 219, 20031, 116, 32790, 236, 19127, 219, 27661, 235, 11871, 213, 16849, 105, 32378, 6765, 219, 5941, 96, 20286, 113, 24545, 244, 162, 125, 221, 163, 223, 221, 37531, 125, 28215, 97, 36387, 108, 164, 234, 240, 164, 235, 213, 44020, 108, 29626, 231, 28812, 98, 32750, 123, 37300, 106, 165, 217, 114, 165, 221, 113, 26335, 118, 32790, 230, 27661, 227, 5494, 231, 13127, 224, 16818, 220, 44246, 112, 12363, 219, 7719, 124, 7719, 113, 161, 234, 237, 161, 96, 97, 34693, 120, 17474, 102, 161, 103, 238, 13744, 99, 32403, 242, 21555, 96, 162, 218, 221, 10962, 233, 10460, 125, 37895, 99, 162, 97, 102, 24545, 237, 162, 124, 113, 21391, 187, 9855, 70, 25, 66, 18, 6624, 163, 214, 226, 163, 217, 107, 163, 224, 229, 24379, 123, 164, 239, 219, 19119, 99, 165, 110, 112, 165, 122, 218, 17955, 222, 22305, 214, 163, 224, 215, 20241, 220, 165, 219, 120, 36337, 106, 163, 228, 100, 163, 235, 242, 28215, 104, 163, 118, 232, 164, 235, 221, 7056, 211, 28917, 216, 44508, 212, 163, 230, 108, 7297, 232, 19218, 110, 163, 125, 212, 30086, 232, 20031, 224, 165, 100, 231, 26151, 101, 163, 230, 101, 163, 105, 104, 163, 105, 105, 16787, 100, 164, 238, 236, 164, 240, 118, 14945, 238, 161, 104, 220, 47961, 6916, 238, 162, 97, 96, 162, 99, 211, 21998, 98, 20241, 104, 21422, 230, 21422, 107, 46180, 234, 38675, 104, 163, 125, 106, 43641, 235, 164, 216, 232, 44966, 241, 37300, 223, 29852, 108, 27661, 228, 20286, 110, 12005, 211, 10460, 120, 17321, 220, 24545, 105, 20241, 222, 16849, 244, 161, 103, 214, 14486, 105, 25762, 108, 35489, 161, 115, 107, 16385, 224, 163, 223, 100, 23956, 226, 17492, 32653, 237, 32653, 100, 13486, 119, 22150, 109, 7249, 244, 21683, 233, 28650, 237, 13744, 100, 13744, 108, 10673, 125, 161, 116, 97, 23825, 234, 162, 227, 233, 45128, 230, 44508, 124, 8587, 236, 20286, 239, 26487, 213, 37794, 219, 163, 218, 225, 163, 218, 125, 163, 228, 99, 163, 18713, 21391, 187, 9855, 70, 26, 66, 18, 6624, 163, 105, 219, 163, 105, 109, 163, 119, 218, 163, 119, 241, 13180, 211, 164, 216, 110, 164, 230, 122, 164, 242, 109, 18764, 164, 107, 243, 14378, 236, 14378, 122, 30086, 211, 165, 100, 229, 46791, 124, 25715, 112, 21998, 114, 163, 118, 242, 164, 99, 100, 21365, 111, 16818, 228, 44246, 244, 14262, 234, 21163, 218, 26581, 218, 34693, 220, 41683, 12613, 118, 46791, 213, 162, 101, 232, 37933, 223, 162, 119, 102, 36337, 116, 163, 217, 231, 163, 228, 97, 12335, 7297, 107, 30590, 113, 164, 223, 118, 164, 230, 220, 164, 118, 221, 165, 225, 231, 165, 226, 241, 165, 124, 224, 30329, 7111, 228, 28915, 116, 48897, 105, 5941, 219, 5941, 222, 5941, 113, 6916, 218, 13744, 230, 10673, 99, 19597, 237, 162, 217, 213, 10460, 114, 15957, 238, 20241, 234, 163, 228, 211, 13764, 213, 37769, 227, 44020, 228, 44020, 119, 20557, 217, 30255, 123, 36387, 222, 164, 234, 232, 46982, 241, 9078, 213, 14378, 218, 24299, 115, 13499, 105, 26335, 216, 20031, 103, 20031, 104, 21163, 233, 14318, 102, 10460, 244, 8841, 111, 15756, 109, 163, 216, 239, 22580, 116, 24299, 212, 27661, 221, 5494, 228, 162, 237, 219, 37794, 229, 33369, 241, 162, 124, 227, 163, 217, 220, 13180, 235, 36387, 118, 164, 232, 230, 21391, 187, 9855, 70, 5781, 18, 6624, 14378, 222, 26335, 232, 20031, 112, 40153, 121, 164, 231, 237, 165, 107, 111, 5494, 227, 163, 217, 221, 20031, 215, 44114, 39673, 20833, 96, 9504, 230, 9504, 229, 32120, 98, 161, 105, 238, 161, 106, 215, 13744, 214, 13258, 103, 19597, 125, 22470, 114, 22305, 216, 30093, 119, 162, 119, 112, 36337, 227, 42025, 110, 163, 223, 125, 163, 228, 234, 38672, 228, 38053, 212, 27258, 216, 14378, 243, 29852, 108, 17783, 97, 19780, 235, 165, 114, 238, 26552, 34138, 221, 165, 220, 241, 36666, 28915, 220, 32653, 241, 12363, 111, 9504, 224, 28650, 231, 161, 103, 212, 10673, 220, 46791, 110, 162, 237, 227, 26151, 244, 42025, 112, 163, 228, 222, 38675, 109, 38822, 214, 164, 227, 225, 164, 228, 101, 164, 231, 125, 164, 240, 242, 10716, 238, 164, 99, 235, 164, 107, 213, 14378, 232, 40153, 222, 165, 244, 226, 11871, 113, 16800, 228, 48897, 229, 7056, 105, 11043, 220, 161, 231, 109, 39429, 104, 10674, 120, 6916, 100, 12462, 122, 12462, 123, 12613, 124, 32403, 243, 21555, 242, 19597, 219, 19597, 220, 22470, 215, 16127, 118, 14377, 12676, 121, 26974, 231, 26974, 237, 26974, 113, 28492, 96, 28492, 97, 22305, 119, 30093, 102, 50039, 26151, 118, 36337, 239, 21391, 187, 9855, 43937, 18, 6624, 162, 125, 96, 163, 223, 116, 163, 223, 117, 21422, 220, 163, 228, 239, 44692, 23956, 236, 19218, 229, 49835, 106, 20557, 227, 35392, 244, 16787, 124, 164, 227, 118, 29626, 232, 19119, 235, 43894, 238, 43894, 244, 164, 118, 110, 164, 119, 213, 14378, 221, 11016, 124, 14378, 120, 30088, 220, 13499, 220, 165, 224, 108, 19780, 241, 7056, 244, 22150, 220, 8650, 108, 22985, 230, 32026, 220, 32026, 112, 17783, 118, 16849, 106, 7056, 212, 17474, 106, 10673, 119, 161, 114, 236, 36087, 105, 162, 123, 99, 20241, 102, 38822, 99, 29832, 218, 49070, 105, 165, 219, 234, 15954, 226, 12005, 222, 46791, 215, 15756, 234, 20241, 218, 30590, 125, 8650, 225, 163, 211, 239, 21700, 103, 164, 241, 224, 26335, 217, 32120, 243, 29785, 104, 46791, 218, 33369, 117, 19119, 124, 165, 221, 211, 26335, 111, 11871, 236, 7719, 242, 36087, 106, 164, 231, 244, 17783, 110, 40153, 113, 33700, 108, 22470, 233, 14670, 98, 30086, 228, 13486, 240, 162, 218, 220, 164, 217, 120, 165, 117, 119, 16800, 240, 16849, 237, 48897, 211, 6916, 239, 31129, 162, 218, 125, 44508, 107, 162, 99, 216, 22985, 216, 39393, 228, 25762, 98, 30255, 104, 32417, 99, 164, 233, 226, 164, 242, 121, 10716, 98, 19119, 122, 21391, 187, 9855, 30692, 18, 6624, 32750, 110, 165, 217, 106, 34744, 16877, 13127, 221, 37208, 7719, 226, 7249, 117, 28650, 103, 17955, 100, 48584, 12811, 238, 14318, 238, 13258, 96, 8841, 230, 12676, 225, 162, 97, 103, 14670, 100, 42025, 124, 35801, 100, 24017, 23956, 110, 40162, 224, 40162, 97, 16998, 121, 19957, 119, 38328, 13180, 113, 32026, 215, 38672, 96, 164, 224, 228, 29626, 226, 29626, 96, 32363, 123, 32363, 113, 30086, 218, 42013, 20031, 97, 33700, 114, 165, 99, 223, 15899, 125, 36337, 120, 163, 211, 117, 13764, 221, 163, 125, 221, 163, 125, 223, 163, 125, 122, 164, 107, 237, 13484, 5690, 212, 6765, 214, 12363, 110, 7719, 240, 20345, 123, 36213, 28650, 121, 13744, 216, 44290, 16549, 224, 162, 119, 108, 163, 218, 227, 163, 229, 235, 21700, 105, 164, 223, 115, 164, 234, 120, 164, 237, 230, 19119, 224, 26335, 98, 19127, 244, 19127, 117, 165, 111, 234, 165, 120, 242, 9850, 7111, 237, 7111, 124, 28917, 119, 17951, 36337, 97, 11016, 118, 165, 225, 110, 40843, 119, 44573, 28917, 107, 21683, 221, 28650, 236, 29785, 212, 17321, 234, 36087, 222, 22580, 231, 16787, 103, 164, 224, 226, 33836, 214, 23373, 12363, 215, 21391, 187, 9855, 15055, 18, 6624, 41478, 18947, 243, 48153, 229, 5690, 224, 16805, 104, 10674, 232, 36387, 125, 5690, 231, 6765, 120, 20345, 103, 28650, 220, 28650, 125, 23371, 30886, 10674, 239, 29785, 98, 46791, 219, 162, 121, 222, 21944, 236, 163, 216, 108, 20241, 217, 163, 230, 117, 39393, 115, 163, 98, 212, 20557, 106, 20012, 21232, 164, 223, 103, 164, 231, 234, 164, 234, 220, 43894, 108, 33836, 218, 20031, 223, 21275, 21163, 120, 161, 237, 122, 8587, 106, 8841, 103, 48078, 122, 21944, 118, 42025, 115, 35392, 123, 36387, 224, 30088, 223, 20031, 211, 165, 115, 112, 10674, 111, 46291, 102, 33369, 235, 162, 123, 120, 13764, 241, 161, 112, 228, 162, 237, 106, 162, 123, 238, 25541, 114, 163, 110, 105, 164, 243, 116, 20031, 239, 3218, 219, 5690, 234, 15899, 243, 31895, 34693, 121, 28917, 109, 17474, 107, 10673, 218, 15446, 113, 12613, 215, 12811, 115, 17598, 223, 162, 237, 112, 12676, 233, 26487, 242, 162, 105, 98, 25715, 223, 45387, 125, 15957, 217, 163, 222, 211, 163, 224, 227, 163, 229, 222, 22701, 243, 48153, 102, 164, 216, 118, 16787, 242, 16787, 102, 44966, 221, 164, 228, 107, 164, 231, 98, 164, 233, 231, 164, 234, 226, 29626, 240, 29832, 230, 165, 217, 107, 44989, 21391, 187, 9855, 1796, 66, 18, 6624, 26335, 239, 49218, 20833, 220, 13610, 6916, 110, 11827, 224, 12676, 227, 15756, 123, 162, 97, 230, 26151, 123, 162, 121, 230, 48078, 123, 163, 118, 96, 29626, 212, 32363, 96, 49070, 220, 165, 123, 222, 165, 123, 225, 42025, 244, 25541, 226, 43894, 224, 165, 223, 237, 7111, 218, 7111, 225, 48897, 112, 20345, 211, 28650, 227, 12613, 232, 18751, 115, 12676, 115, 28492, 108, 26487, 234, 22305, 108, 26151, 237, 163, 222, 236, 163, 223, 105, 39393, 123, 25541, 118, 20557, 115, 38672, 102, 164, 226, 119, 164, 228, 234, 164, 234, 117, 28812, 238, 32363, 109, 41777, 218, 11016, 236, 30086, 118, 20031, 225, 165, 123, 242, 21163, 98, 7719, 221, 161, 106, 96, 13744, 213, 162, 228, 235, 10962, 115, 162, 121, 114, 163, 222, 215, 21944, 236, 5225, 28215, 224, 18947, 238, 26844, 224, 163, 118, 124, 163, 125, 242, 164, 224, 121, 164, 107, 106, 33836, 221, 23692, 99, 31811, 96, 164, 119, 242, 9078, 105, 9078, 119, 14378, 104, 165, 226, 228, 7111, 214, 7111, 120, 44246, 113, 30423, 7056, 118, 22329, 16805, 105, 161, 96, 96, 161, 96, 122, 17474, 243, 10673, 219, 17955, 232, 32283, 238, 32403, 238, 8650, 110, 15756, 230, 33369, 125, 17289, 219, 162, 124, 111, 21391, 187, 9855, 832, 66, 18, 6624, 163, 216, 225, 21422, 243, 7297, 110, 7297, 118, 23956, 228, 19218, 112, 24379, 223, 25541, 222, 25541, 244, 163, 109, 217, 29268, 226, 28812, 108, 49070, 124, 27258, 220, 165, 219, 125, 165, 221, 230, 165, 223, 97, 165, 227, 106, 20031, 121, 19780, 237, 19780, 106, 165, 99, 241, 6765, 218, 8650, 105, 18751, 235, 21998, 236, 19218, 99, 22701, 221, 163, 109, 211, 21700, 116, 12363, 243, 161, 112, 124, 12613, 234, 45387, 118, 29734, 48153, 235, 32790, 228, 165, 108, 225, 37215, 241, 33474, 162, 228, 120, 164, 240, 116, 3218, 212, 5494, 232, 5494, 244, 28915, 239, 28915, 115, 18617, 219, 28650, 214, 17576, 12462, 211, 12613, 244, 32283, 117, 12005, 212, 34397, 18245, 120, 44360, 10962, 114, 10460, 223, 37895, 116, 37895, 118, 26974, 124, 28492, 103, 162, 105, 220, 32594, 24545, 211, 36087, 211, 36087, 103, 26151, 242, 162, 119, 241, 163, 211, 241, 21944, 96, 20241, 225, 35801, 123, 7297, 120, 37531, 238, 46180, 218, 44020, 225, 31949, 28215, 123, 48153, 124, 35392, 225, 32417, 218, 14945, 213, 43894, 105, 32363, 241, 165, 215, 244, 30088, 221, 13499, 235, 165, 220, 101, 165, 222, 223, 165, 223, 243, 32790, 217, 19127, 233, 21391, 187, 9855, 71, 17, 66, 18, 6624, 19127, 239, 27661, 213, 165, 122, 225, 34179, 11043, 228, 30676, 122, 22150, 99, 15446, 240, 12811, 242, 32403, 223, 34671, 162, 97, 109, 162, 125, 242, 37769, 244, 24893, 16787, 224, 164, 233, 120, 29626, 123, 43894, 118, 164, 119, 215, 165, 217, 224, 42951, 26335, 238, 32790, 123, 19780, 223, 165, 123, 221, 16818, 225, 7056, 217, 13486, 222, 11043, 104, 161, 235, 112, 12811, 231, 14318, 106, 17598, 105, 44508, 224, 10460, 104, 37895, 212, 20286, 120, 20286, 119, 5959, 240, 162, 97, 240, 46291, 234, 43033, 123, 45387, 232, 162, 123, 108, 163, 216, 102, 163, 218, 100, 42025, 105, 163, 229, 105, 20827, 120, 37769, 233, 37769, 237, 16998, 242, 22580, 243, 163, 105, 232, 48153, 234, 37679, 242, 21700, 215, 163, 119, 110, 32026, 218, 164, 234, 121, 164, 237, 99, 28812, 231, 19119, 125, 34138, 236, 41777, 212, 11016, 243, 14378, 244, 13499, 98, 29852, 121, 20031, 232, 165, 113, 100, 10460, 226, 163, 110, 218, 34138, 113, 165, 226, 214, 32938, 10673, 221, 12363, 229, 23825, 236, 163, 223, 240, 16849, 102, 6916, 234, 12005, 241, 32403, 110, 46791, 106, 46291, 232, 36087, 236, 21422, 108, 22580, 108, 21700, 213, 35392, 239, 163, 118, 111, 164, 216, 106, 21391, 187, 9855, 71, 18, 66, 18, 6624, 164, 118, 105, 164, 118, 115, 165, 224, 124, 165, 227, 235, 7111, 227, 31902, 227, 16385, 101, 12613, 102, 18245, 106, 19957, 105, 34204, 7111, 226, 16800, 226, 28915, 237, 28650, 240, 38822, 215, 18617, 105, 18617, 103, 161, 234, 124, 17474, 226, 6916, 236, 16385, 241, 32283, 237, 37895, 240, 5959, 111, 26974, 111, 15756, 105, 44712, 30093, 112, 162, 119, 221, 162, 124, 224, 21944, 117, 35801, 243, 39393, 218, 26844, 223, 20557, 213, 20557, 107, 35392, 97, 34372, 242, 164, 238, 238, 14945, 121, 19119, 216, 23692, 110, 41777, 221, 49070, 113, 11016, 111, 30088, 225, 30088, 229, 165, 228, 215, 165, 102, 227, 22701, 119, 48153, 100, 16818, 221, 48897, 212, 13486, 217, 26581, 219, 13744, 109, 161, 113, 121, 37895, 236, 26487, 123, 21998, 237, 36337, 233, 162, 125, 107, 26036, 223, 23956, 109, 22701, 98, 164, 243, 97, 11016, 96, 14378, 115, 20031, 222, 165, 102, 125, 164, 223, 212, 13609, 5690, 112, 10716, 217, 34698, 12363, 123, 162, 106, 238, 28492, 106, 24545, 212, 164, 228, 120, 34693, 241, 162, 217, 225, 20286, 124, 23825, 109, 163, 214, 240, 7297, 228, 40162, 218, 163, 119, 229, 164, 229, 118, 32750, 220, 29832, 219, 29766, 46987, 21391, 187, 9855, 71, 19, 66, 18, 6624, 20345, 106, 24086, 31902, 211, 16549, 234, 36820, 34811, 162, 228, 109, 45314, 10460, 103, 37895, 120, 17321, 240, 17321, 113, 14486, 97, 24545, 243, 22305, 237, 45387, 107, 34609, 27374, 100, 37769, 220, 37769, 234, 20557, 236, 32026, 97, 43641, 213, 16787, 113, 36387, 240, 36387, 117, 164, 239, 235, 19119, 223, 32750, 235, 29832, 215, 34138, 124, 14378, 112, 46239, 22580, 236, 22580, 117, 163, 119, 231, 30590, 117, 161, 231, 218, 161, 234, 231, 161, 96, 115, 18245, 109, 162, 227, 97, 37895, 220, 37895, 222, 35072, 244, 162, 101, 238, 33369, 215, 30093, 100, 36337, 111, 35801, 224, 163, 228, 103, 163, 229, 96, 23956, 238, 39393, 119, 13764, 96, 20827, 241, 163, 241, 222, 16998, 101, 163, 118, 220, 163, 118, 240, 16787, 121, 164, 231, 109, 38053, 234, 14945, 120, 33836, 228, 40329, 106, 21365, 110, 11016, 112, 165, 225, 244, 17783, 98, 17783, 113, 32790, 218, 16800, 215, 5941, 111, 28650, 105, 161, 106, 220, 15446, 236, 35072, 225, 163, 230, 217, 39393, 124, 16998, 104, 163, 105, 229, 164, 217, 98, 164, 238, 244, 33836, 105, 31811, 223, 9078, 244, 8587, 242, 5959, 232, 5690, 211, 26581, 117, 162, 123, 234, 38675, 240, 49070, 109, 21391, 187, 9855, 71, 20, 66, 18, 6624, 165, 226, 116, 42165, 12005, 115, 162, 218, 112, 162, 124, 215, 3218, 231, 16800, 235, 16849, 242, 5941, 220, 161, 234, 242, 161, 115, 109, 16385, 108, 35241, 43873, 163, 98, 222, 25541, 237, 164, 223, 116, 164, 119, 220, 40329, 221, 14378, 108, 23823, 220, 162, 227, 124, 45111, 163, 105, 215, 165, 223, 109, 165, 228, 125, 165, 123, 105, 45128, 110, 162, 124, 109, 163, 218, 101, 163, 229, 103, 163, 230, 237, 22701, 215, 163, 110, 229, 29268, 213, 48153, 112, 29268, 235, 14129, 237, 29832, 221, 165, 228, 123, 165, 99, 227, 165, 100, 223, 6765, 119, 13744, 242, 44508, 101, 5959, 244, 20557, 108, 32653, 244, 5941, 214, 161, 96, 119, 46791, 235, 46791, 236, 162, 218, 120, 8587, 107, 22701, 236, 14129, 229, 14129, 233, 16849, 220, 16849, 96, 16805, 115, 161, 231, 111, 161, 103, 122, 32283, 243, 14318, 110, 19597, 114, 10962, 241, 8841, 223, 8841, 116, 162, 237, 97, 43033, 224, 162, 121, 215, 45387, 112, 163, 223, 233, 163, 235, 96, 163, 105, 230, 43641, 119, 32417, 236, 164, 226, 233, 164, 229, 122, 44246, 115, 26581, 110, 13744, 211, 13744, 103, 14318, 104, 17598, 96, 27374, 101, 35392, 115, 164, 226, 239, 164, 231, 96, 13499, 218, 13499, 115, 14262, 221, 26974, 115, 24379, 233, 21391, 187, 9855, 71, 21, 66, 18, 6624, 32363, 107, 13486, 215, 21683, 121, 32403, 123, 46982, 232, 16849, 239, 6765, 120, 16805, 231, 10673, 120, 46791, 123, 8650, 237, 23825, 230, 44508, 112, 8587, 100, 162, 121, 223, 163, 235, 243, 43641, 221, 164, 119, 243, 17783, 242, 26335, 121, 5690, 242, 12363, 214, 39429, 235, 40120, 16385, 240, 44508, 216, 14670, 220, 36087, 120, 20241, 231, 28215, 125, 34372, 238, 164, 233, 101, 33836, 99, 164, 118, 227, 14378, 117, 13499, 102, 20616, 96, 29852, 96, 40153, 217, 13486, 118, 20833, 112, 39429, 217, 12005, 119, 45128, 99, 162, 124, 219, 35392, 114, 49070, 242, 27258, 224, 165, 227, 115, 32653, 220, 10673, 233, 22305, 124, 36087, 121, 7297, 238, 163, 241, 121, 163, 110, 123, 26844, 99, 28812, 119, 43894, 213, 22150, 241, 21683, 124, 15446, 233, 23823, 117, 15957, 229, 39393, 221, 37531, 106, 43894, 239, 32363, 122, 49070, 229, 32283, 113, 37895, 114, 36087, 118, 30590, 123, 164, 226, 212, 43894, 222, 19127, 228, 165, 109, 233, 6765, 218, 16805, 214, 20286, 125, 37933, 232, 162, 121, 109, 38675, 243, 43894, 101, 11016, 108, 14378, 241, 27712, 231, 47754, 16805, 125, 20833, 103, 162, 217, 231, 18751, 215, 23825, 238, 162, 97, 97, 21391, 187, 9855, 71, 22, 66, 18, 6624, 162, 99, 229, 28492, 237, 26487, 115, 21944, 229, 26036, 101, 49835, 240, 21121, 212, 21121, 225, 16998, 229, 22580, 224, 32026, 233, 32417, 118, 38672, 232, 164, 224, 220, 164, 232, 220, 32363, 213, 34138, 216, 30088, 97, 165, 217, 222, 165, 217, 108, 16818, 214, 10041, 228, 163, 218, 244, 25762, 234, 164, 239, 211, 17559, 118, 13744, 118, 16549, 233, 12676, 228, 30086, 103, 5941, 97, 161, 96, 237, 13744, 115, 32403, 99, 162, 217, 212, 162, 228, 243, 163, 118, 123, 30590, 110, 164, 231, 100, 165, 221, 214, 45128, 108, 161, 9223, 161, 114, 231, 25538, 34693, 239, 18751, 123, 17598, 103, 162, 99, 225, 28492, 118, 26487, 241, 162, 119, 106, 5138, 120, 16998, 222, 36387, 121, 164, 227, 104, 43894, 226, 34138, 103, 9078, 123, 165, 215, 229, 30088, 222, 165, 217, 239, 165, 223, 227, 165, 223, 235, 165, 225, 237, 20031, 238, 165, 103, 116, 165, 110, 224, 3218, 228, 23956, 239, 37769, 240, 22701, 120, 24379, 228, 163, 109, 220, 163, 118, 108, 164, 230, 215, 164, 119, 236, 164, 119, 114, 40329, 118, 11016, 227, 8841, 100, 162, 99, 125, 163, 228, 214, 18678, 5959, 108, 37215, 239, 7056, 216, 16549, 243, 22305, 233, 164, 242, 112, 10716, 240, 10716, 117, 32403, 114, 164, 217, 115, 164, 227, 214, 21391, 187, 9855, 71, 23, 66, 18, 6624, 29832, 216, 27937, 7719, 119, 161, 235, 114, 161, 103, 116, 29297, 21944, 221, 163, 125, 243, 30590, 237, 43641, 217, 16787, 244, 34138, 98, 165, 217, 220, 165, 104, 242, 165, 117, 112, 28915, 114, 5690, 215, 20647, 243, 21555, 121, 26151, 107, 17955, 99, 16800, 219, 16849, 99, 161, 234, 99, 161, 113, 236, 12462, 242, 29785, 100, 162, 97, 231, 22305, 121, 36087, 215, 163, 217, 124, 40162, 231, 40162, 114, 19218, 96, 22580, 237, 28215, 220, 38675, 218, 38675, 121, 28791, 16787, 114, 164, 237, 104, 49070, 239, 20031, 220, 40843, 113, 165, 123, 229, 16805, 218, 21163, 216, 33700, 244, 11800, 105, 3218, 214, 26974, 229, 45387, 217, 16800, 115, 13744, 97, 17321, 232, 22305, 219, 21998, 118, 21422, 238, 27374, 102, 13499, 240, 165, 224, 122, 164, 242, 215, 16998, 99, 22580, 111, 16549, 106, 24446, 20345, 99, 161, 231, 124, 34693, 108, 21683, 100, 21555, 110, 11827, 230, 23825, 233, 5959, 116, 28492, 232, 34372, 115, 17783, 211, 40843, 111, 165, 102, 240, 16849, 107, 12363, 230, 30676, 215, 31902, 122, 29485, 11827, 235, 23825, 230, 44508, 97, 37895, 106, 26974, 240, 162, 125, 212, 162, 125, 109, 21422, 97, 21422, 118, 14945, 234, 21391, 187, 9855, 71, 24, 66, 18, 6624, 165, 227, 118, 18617, 228, 161, 235, 217, 31902, 101, 14318, 219, 162, 217, 237, 14486, 225, 48078, 235, 21944, 244, 35392, 121, 19119, 232, 17474, 105, 43641, 106, 17598, 97, 20827, 219, 13180, 123, 32363, 105, 161, 96, 231, 162, 227, 244, 162, 101, 121, 6916, 232, 15446, 228, 162, 119, 109, 37679, 233, 164, 232, 104, 7056, 223, 5941, 110, 7249, 105, 13258, 243, 46791, 222, 33369, 217, 24545, 110, 14670, 110, 18947, 241, 38822, 225, 38672, 231, 31811, 217, 30086, 110, 27107, 111, 6916, 216, 44508, 218, 162, 124, 99, 45128, 228, 16127, 215, 7056, 225, 7719, 227, 9504, 242, 14945, 225, 46791, 242, 35072, 116, 30093, 241, 40162, 238, 24379, 229, 21700, 111, 27804, 22150, 217, 43033, 223, 164, 216, 125, 164, 99, 105, 11016, 211, 27661, 119, 28915, 118, 17474, 234, 21683, 107, 18751, 232, 11016, 226, 165, 107, 105, 46791, 240, 36114, 20616, 233, 31902, 96, 161, 104, 217, 16385, 114, 18751, 221, 45128, 244, 44508, 120, 12676, 117, 14670, 97, 30093, 124, 42025, 107, 21422, 116, 27374, 114, 19957, 117, 36387, 244, 31811, 238, 27661, 234, 6765, 99, 31902, 213, 12676, 125, 15957, 219, 163, 230, 98, 32363, 104, 21365, 101, 165, 219, 228, 21391, 187, 9855, 71, 25, 66, 18, 6624, 29852, 105, 7056, 106, 5941, 244, 23823, 223, 7111, 104, 161, 231, 215, 32403, 233, 10962, 234, 22305, 238, 21998, 125, 15957, 223, 163, 222, 123, 22580, 234, 11800, 218, 32363, 240, 14318, 244, 162, 124, 225, 163, 214, 119, 164, 217, 103, 19597, 225, 16800, 125, 28915, 226, 11827, 212, 15957, 218, 163, 109, 218, 38675, 103, 163, 125, 104, 14378, 224, 165, 241, 244, 165, 103, 236, 32363, 116, 31902, 105, 44084, 17321, 110, 164, 227, 224, 28812, 232, 7719, 243, 161, 107, 233, 12462, 98, 32283, 97, 12811, 221, 8587, 214, 32026, 120, 164, 231, 123, 15954, 220, 17783, 238, 7111, 219, 15899, 216, 15899, 224, 15899, 226, 20345, 217, 20833, 120, 9504, 214, 15446, 214, 13258, 233, 18751, 238, 18751, 111, 23823, 232, 162, 237, 114, 14670, 96, 21998, 101, 39393, 111, 27374, 112, 38822, 241, 43641, 109, 38672, 241, 164, 228, 96, 164, 229, 112, 38053, 224, 164, 99, 229, 11016, 222, 165, 222, 105, 33700, 123, 165, 108, 228, 12462, 216, 162, 237, 114, 20286, 240, 163, 211, 228, 42025, 217, 49070, 121, 16818, 115, 16805, 123, 14318, 105, 46791, 230, 12676, 230, 26487, 236, 45387, 213, 163, 230, 97, 37769, 103, 24160, 37300, 119, 33700, 218, 33700, 215, 165, 104, 214, 21391, 187, 9855, 71, 26, 66, 18, 6624, 41230, 22580, 242, 28492, 230, 43894, 117, 37300, 221, 27107, 103, 40843, 108, 14318, 122, 18751, 106, 39393, 112, 5138, 108, 41873, 14378, 125, 17783, 213, 15899, 119, 12811, 122, 41250, 14670, 223, 35801, 223, 23956, 97, 39393, 222, 24379, 217, 38672, 124, 40843, 240, 11871, 226, 11016, 122, 20720, 35201, 20647, 101, 7249, 226, 32283, 219, 8841, 110, 22305, 113, 163, 228, 232, 164, 224, 117, 164, 240, 101, 33836, 211, 14378, 227, 32790, 241, 165, 110, 232, 28917, 228, 10674, 118, 46982, 227, 164, 107, 231, 165, 116, 114, 13744, 229, 29785, 103, 32403, 224, 10460, 111, 24545, 234, 45387, 97, 162, 124, 98, 163, 211, 237, 19957, 232, 163, 125, 110, 15954, 228, 15954, 229, 48889, 40153, 230, 16805, 112, 27258, 215, 13486, 123, 7719, 106, 20345, 118, 30676, 98, 39429, 221, 162, 105, 121, 37933, 115, 38675, 235, 32417, 101, 165, 221, 239, 17783, 117, 165, 119, 119, 24168, 20833, 219, 13764, 229, 164, 238, 99, 15954, 99, 20616, 231, 17783, 239, 5494, 97, 13127, 220, 28650, 108, 161, 106, 101, 16385, 117, 29785, 229, 18751, 234, 12676, 244, 35072, 212, 22305, 217, 26151, 109, 37661, 118, 32026, 238, 34372, 105, 21391, 187, 9855, 71, 5781, 18, 6624, 16677, 17783, 224, 27661, 216, 5494, 100, 28915, 232, 20345, 113, 32120, 230, 17474, 237, 10674, 104, 6916, 113, 162, 218, 219, 28492, 117, 21998, 117, 163, 211, 98, 164, 242, 119, 33273, 28812, 112, 43894, 102, 30086, 213, 165, 102, 244, 48604, 118, 11043, 124, 15756, 118, 16849, 233, 12462, 118, 12676, 226, 164, 224, 218, 16677, 5494, 106, 38155, 161, 237, 108, 35801, 101, 165, 215, 232, 40153, 125, 165, 99, 220, 165, 100, 234, 40843, 236, 32053, 230, 34693, 242, 46982, 238, 14945, 111, 162, 217, 112, 162, 106, 116, 163, 224, 121, 40329, 229, 14486, 218, 26335, 105, 165, 104, 234, 17474, 232, 42025, 211, 23692, 106, 19127, 104, 16818, 231, 161, 113, 114, 12811, 101, 162, 218, 118, 37895, 238, 14670, 106, 21944, 106, 20241, 215, 20241, 119, 41492, 20827, 104, 37531, 224, 21700, 214, 21700, 97, 163, 118, 98, 34372, 117, 10716, 229, 32020, 33836, 97, 165, 220, 220, 19780, 109, 10674, 228, 28215, 114, 10716, 211, 27661, 212, 161, 106, 223, 16818, 243, 12363, 231, 7249, 124, 161, 113, 123, 18245, 124, 21998, 119, 163, 222, 119, 43641, 216, 43641, 218, 44966, 97, 165, 222, 226, 27661, 110, 5494, 103, 7056, 215, 6765, 228, 34380, 21391, 187, 9855, 71, 5830, 18, 6624, 14318, 97, 14670, 213, 162, 121, 225, 163, 211, 216, 48078, 227, 21944, 109, 163, 13076, 35801, 104, 163, 228, 104, 164, 224, 221, 164, 241, 97, 10716, 96, 11016, 219, 30086, 97, 165, 225, 98, 40843, 103, 7056, 108, 14318, 234, 21555, 243, 46791, 102, 162, 237, 113, 164, 232, 236, 164, 119, 221, 165, 217, 109, 165, 241, 222, 11871, 225, 5494, 229, 18617, 122, 28917, 232, 28917, 120, 34439, 161, 112, 115, 12811, 102, 8650, 116, 11827, 219, 8841, 221, 37895, 102, 22985, 106, 21998, 104, 36087, 226, 162, 119, 233, 162, 121, 118, 162, 124, 231, 162, 125, 243, 162, 125, 104, 48078, 240, 163, 222, 227, 21422, 100, 163, 228, 237, 163, 230, 243, 5138, 230, 37769, 239, 37679, 221, 163, 118, 241, 38822, 96, 36387, 101, 164, 228, 106, 164, 229, 125, 46982, 225, 46982, 242, 164, 240, 114, 32750, 117, 37300, 105, 165, 225, 107, 27661, 211, 19780, 100, 21555, 228, 37542, 30088, 117, 161, 104, 237, 8841, 226, 36087, 117, 26151, 124, 21422, 125, 165, 244, 213, 16549, 123, 21555, 237, 18947, 226, 20833, 215, 12811, 235, 24545, 241, 14670, 230, 30093, 105, 163, 214, 235, 20557, 216, 46982, 119, 14945, 223, 165, 114, 121, 27707, 21458, 161, 107, 216, 26487, 120, 48078, 106, 23956, 115, 21391, 187, 9855, 71, 6357, 18, 6624, 44020, 224, 44020, 124, 36387, 111, 164, 226, 109, 28812, 111, 32750, 212, 32363, 103, 19127, 114, 32283, 230, 44508, 114, 16127, 106, 46180, 120, 46180, 121, 28215, 106, 3218, 118, 39429, 237, 17474, 227, 6916, 101, 12462, 121, 32403, 98, 22470, 238, 14486, 96, 37895, 100, 35072, 230, 26151, 236, 163, 216, 100, 163, 229, 110, 20557, 219, 30086, 215, 165, 104, 104, 165, 110, 100, 46549, 162, 121, 228, 163, 223, 124, 37300, 212, 20616, 221, 13486, 110, 12462, 223, 12005, 103, 29785, 224, 21555, 116, 19597, 110, 46791, 223, 37895, 214, 37895, 215, 162, 101, 100, 14670, 212, 162, 119, 242, 162, 121, 220, 162, 123, 97, 163, 216, 223, 163, 229, 239, 5138, 218, 163, 109, 212, 163, 110, 102, 164, 224, 229, 164, 240, 234, 14378, 228, 26335, 224, 37215, 214, 15899, 109, 26270, 32283, 121, 12005, 221, 29785, 97, 32403, 231, 162, 218, 117, 37895, 101, 5959, 214, 162, 105, 239, 36087, 108, 162, 124, 108, 48078, 110, 163, 224, 105, 163, 119, 105, 164, 217, 124, 164, 223, 114, 164, 238, 231, 19119, 103, 33836, 215, 11043, 214, 163, 224, 112, 6916, 233, 37794, 106, 165, 227, 215, 20833, 108, 161, 237, 217, 10674, 240, 10962, 219, 8587, 216, 20286, 220, 162, 97, 242, 37933, 224, 36087, 217, 21391, 187, 9855, 71, 1473, 18, 6624, 42025, 121, 32026, 114, 30088, 115, 165, 104, 224, 16800, 109, 16849, 236, 20647, 237, 29427, 7719, 122, 39429, 220, 161, 234, 216, 15446, 125, 37203, 5959, 123, 163, 216, 101, 35801, 240, 11016, 216, 21163, 238, 21163, 113, 161, 96, 99, 28917, 225, 26036, 215, 163, 217, 226, 163, 218, 121, 164, 233, 110, 14945, 230, 162, 237, 219, 164, 233, 103, 39429, 102, 162, 237, 215, 163, 216, 221, 164, 227, 111, 12363, 220, 39429, 236, 22985, 212, 14318, 236, 12005, 123, 22470, 108, 162, 237, 220, 163, 216, 218, 43894, 111, 49070, 240, 165, 120, 124, 13127, 228, 162, 227, 120, 163, 214, 222, 23956, 101, 46982, 102, 29785, 99, 32750, 225, 165, 39068, 7056, 218, 13486, 116, 15899, 219, 30093, 116, 38822, 118, 37215, 228, 8841, 232, 25715, 98, 21944, 235, 40162, 232, 7719, 214, 17955, 119, 20557, 218, 14945, 233, 25715, 243, 25715, 123, 14486, 217, 7719, 118, 29785, 110, 30093, 123, 163, 125, 232, 34372, 219, 32653, 233, 13486, 241, 39429, 239, 32053, 106, 10041, 224, 28650, 107, 161, 107, 220, 15446, 223, 162, 217, 236, 162, 217, 235, 8650, 111, 37895, 241, 20286, 101, 163, 217, 236, 163, 217, 119, 163, 217, 120, 36720, 102, 44020, 102, 22580, 211, 30255, 112, 28812, 110, 9686, 187, 62, 187 ]
[ ["0","\u0000",127], ["8141","갂갃갅갆갋",4,"갘갞갟갡갢갣갥",6,"갮갲갳갴"], ["8161","갵갶갷갺갻갽갾갿걁",9,"걌걎",5,"걕"], ["8181","걖걗걙걚걛걝",18,"걲걳걵걶걹걻",4,"겂겇겈겍겎겏겑겒겓겕",6,"겞겢",5,"겫겭겮겱",6,"겺겾겿곀곂곃곅곆곇곉곊곋곍",7,"곖곘",7,"곢곣곥곦곩곫곭곮곲곴곷",4,"곾곿괁괂괃괅괇",4,"괎괐괒괓"], ["8241","괔괕괖괗괙괚괛괝괞괟괡",7,"괪괫괮",5], ["8261","괶괷괹괺괻괽",6,"굆굈굊",5,"굑굒굓굕굖굗"], ["8281","굙",7,"굢굤",7,"굮굯굱굲굷굸굹굺굾궀궃",4,"궊궋궍궎궏궑",10,"궞",5,"궥",17,"궸",7,"귂귃귅귆귇귉",6,"귒귔",7,"귝귞귟귡귢귣귥",18], ["8341","귺귻귽귾긂",5,"긊긌긎",5,"긕",7], ["8361","긝",18,"긲긳긵긶긹긻긼"], ["8381","긽긾긿깂깄깇깈깉깋깏깑깒깓깕깗",4,"깞깢깣깤깦깧깪깫깭깮깯깱",6,"깺깾",5,"꺆",5,"꺍",46,"꺿껁껂껃껅",6,"껎껒",5,"껚껛껝",8], ["8441","껦껧껩껪껬껮",5,"껵껶껷껹껺껻껽",8], ["8461","꼆꼉꼊꼋꼌꼎꼏꼑",18], ["8481","꼤",7,"꼮꼯꼱꼳꼵",6,"꼾꽀꽄꽅꽆꽇꽊",5,"꽑",10,"꽞",5,"꽦",18,"꽺",5,"꾁꾂꾃꾅꾆꾇꾉",6,"꾒꾓꾔꾖",5,"꾝",26,"꾺꾻꾽꾾"], ["8541","꾿꿁",5,"꿊꿌꿏",4,"꿕",6,"꿝",4], ["8561","꿢",5,"꿪",5,"꿲꿳꿵꿶꿷꿹",6,"뀂뀃"], ["8581","뀅",6,"뀍뀎뀏뀑뀒뀓뀕",6,"뀞",9,"뀩",26,"끆끇끉끋끍끏끐끑끒끖끘끚끛끜끞",29,"끾끿낁낂낃낅",6,"낎낐낒",5,"낛낝낞낣낤"], ["8641","낥낦낧낪낰낲낶낷낹낺낻낽",6,"냆냊",5,"냒"], ["8661","냓냕냖냗냙",6,"냡냢냣냤냦",10], ["8681","냱",22,"넊넍넎넏넑넔넕넖넗넚넞",4,"넦넧넩넪넫넭",6,"넶넺",5,"녂녃녅녆녇녉",6,"녒녓녖녗녙녚녛녝녞녟녡",22,"녺녻녽녾녿놁놃",4,"놊놌놎놏놐놑놕놖놗놙놚놛놝"], ["8741","놞",9,"놩",15], ["8761","놹",18,"뇍뇎뇏뇑뇒뇓뇕"], ["8781","뇖",5,"뇞뇠",7,"뇪뇫뇭뇮뇯뇱",7,"뇺뇼뇾",5,"눆눇눉눊눍",6,"눖눘눚",5,"눡",18,"눵",6,"눽",26,"뉙뉚뉛뉝뉞뉟뉡",6,"뉪",4], ["8841","뉯",4,"뉶",5,"뉽",6,"늆늇늈늊",4], ["8861","늏늒늓늕늖늗늛",4,"늢늤늧늨늩늫늭늮늯늱늲늳늵늶늷"], ["8881","늸",15,"닊닋닍닎닏닑닓",4,"닚닜닞닟닠닡닣닧닩닪닰닱닲닶닼닽닾댂댃댅댆댇댉",6,"댒댖",5,"댝",54,"덗덙덚덝덠덡덢덣"], ["8941","덦덨덪덬덭덯덲덳덵덶덷덹",6,"뎂뎆",5,"뎍"], ["8961","뎎뎏뎑뎒뎓뎕",10,"뎢",5,"뎩뎪뎫뎭"], ["8981","뎮",21,"돆돇돉돊돍돏돑돒돓돖돘돚돜돞돟돡돢돣돥돦돧돩",18,"돽",18,"됑",6,"됙됚됛됝됞됟됡",6,"됪됬",7,"됵",15], ["8a41","둅",10,"둒둓둕둖둗둙",6,"둢둤둦"], ["8a61","둧",4,"둭",18,"뒁뒂"], ["8a81","뒃",4,"뒉",19,"뒞",5,"뒥뒦뒧뒩뒪뒫뒭",7,"뒶뒸뒺",5,"듁듂듃듅듆듇듉",6,"듑듒듓듔듖",5,"듞듟듡듢듥듧",4,"듮듰듲",5,"듹",26,"딖딗딙딚딝"], ["8b41","딞",5,"딦딫",4,"딲딳딵딶딷딹",6,"땂땆"], ["8b61","땇땈땉땊땎땏땑땒땓땕",6,"땞땢",8], ["8b81","땫",52,"떢떣떥떦떧떩떬떭떮떯떲떶",4,"떾떿뗁뗂뗃뗅",6,"뗎뗒",5,"뗙",18,"뗭",18], ["8c41","똀",15,"똒똓똕똖똗똙",4], ["8c61","똞",6,"똦",5,"똭",6,"똵",5], ["8c81","똻",12,"뙉",26,"뙥뙦뙧뙩",50,"뚞뚟뚡뚢뚣뚥",5,"뚭뚮뚯뚰뚲",16], ["8d41","뛃",16,"뛕",8], ["8d61","뛞",17,"뛱뛲뛳뛵뛶뛷뛹뛺"], ["8d81","뛻",4,"뜂뜃뜄뜆",33,"뜪뜫뜭뜮뜱",6,"뜺뜼",7,"띅띆띇띉띊띋띍",6,"띖",9,"띡띢띣띥띦띧띩",6,"띲띴띶",5,"띾띿랁랂랃랅",6,"랎랓랔랕랚랛랝랞"], ["8e41","랟랡",6,"랪랮",5,"랶랷랹",8], ["8e61","럂",4,"럈럊",19], ["8e81","럞",13,"럮럯럱럲럳럵",6,"럾렂",4,"렊렋렍렎렏렑",6,"렚렜렞",5,"렦렧렩렪렫렭",6,"렶렺",5,"롁롂롃롅",11,"롒롔",7,"롞롟롡롢롣롥",6,"롮롰롲",5,"롹롺롻롽",7], ["8f41","뢅",7,"뢎",17], ["8f61","뢠",7,"뢩",6,"뢱뢲뢳뢵뢶뢷뢹",4], ["8f81","뢾뢿룂룄룆",5,"룍룎룏룑룒룓룕",7,"룞룠룢",5,"룪룫룭룮룯룱",6,"룺룼룾",5,"뤅",18,"뤙",6,"뤡",26,"뤾뤿륁륂륃륅",6,"륍륎륐륒",5], ["9041","륚륛륝륞륟륡",6,"륪륬륮",5,"륶륷륹륺륻륽"], ["9061","륾",5,"릆릈릋릌릏",15], ["9081","릟",12,"릮릯릱릲릳릵",6,"릾맀맂",5,"맊맋맍맓",4,"맚맜맟맠맢맦맧맩맪맫맭",6,"맶맻",4,"먂",5,"먉",11,"먖",33,"먺먻먽먾먿멁멃멄멅멆"], ["9141","멇멊멌멏멐멑멒멖멗멙멚멛멝",6,"멦멪",5], ["9161","멲멳멵멶멷멹",9,"몆몈몉몊몋몍",5], ["9181","몓",20,"몪몭몮몯몱몳",4,"몺몼몾",5,"뫅뫆뫇뫉",14,"뫚",33,"뫽뫾뫿묁묂묃묅",7,"묎묐묒",5,"묙묚묛묝묞묟묡",6], ["9241","묨묪묬",7,"묷묹묺묿",4,"뭆뭈뭊뭋뭌뭎뭑뭒"], ["9261","뭓뭕뭖뭗뭙",7,"뭢뭤",7,"뭭",4], ["9281","뭲",21,"뮉뮊뮋뮍뮎뮏뮑",18,"뮥뮦뮧뮩뮪뮫뮭",6,"뮵뮶뮸",7,"믁믂믃믅믆믇믉",6,"믑믒믔",35,"믺믻믽믾밁"], ["9341","밃",4,"밊밎밐밒밓밙밚밠밡밢밣밦밨밪밫밬밮밯밲밳밵"], ["9361","밶밷밹",6,"뱂뱆뱇뱈뱊뱋뱎뱏뱑",8], ["9381","뱚뱛뱜뱞",37,"벆벇벉벊벍벏",4,"벖벘벛",4,"벢벣벥벦벩",6,"벲벶",5,"벾벿볁볂볃볅",7,"볎볒볓볔볖볗볙볚볛볝",22,"볷볹볺볻볽"], ["9441","볾",5,"봆봈봊",5,"봑봒봓봕",8], ["9461","봞",5,"봥",6,"봭",12], ["9481","봺",5,"뵁",6,"뵊뵋뵍뵎뵏뵑",6,"뵚",9,"뵥뵦뵧뵩",22,"붂붃붅붆붋",4,"붒붔붖붗붘붛붝",6,"붥",10,"붱",6,"붹",24], ["9541","뷒뷓뷖뷗뷙뷚뷛뷝",11,"뷪",5,"뷱"], ["9561","뷲뷳뷵뷶뷷뷹",6,"븁븂븄븆",5,"븎븏븑븒븓"], ["9581","븕",6,"븞븠",35,"빆빇빉빊빋빍빏",4,"빖빘빜빝빞빟빢빣빥빦빧빩빫",4,"빲빶",4,"빾빿뺁뺂뺃뺅",6,"뺎뺒",5,"뺚",13,"뺩",14], ["9641","뺸",23,"뻒뻓"], ["9661","뻕뻖뻙",6,"뻡뻢뻦",5,"뻭",8], ["9681","뻶",10,"뼂",5,"뼊",13,"뼚뼞",33,"뽂뽃뽅뽆뽇뽉",6,"뽒뽓뽔뽖",44], ["9741","뾃",16,"뾕",8], ["9761","뾞",17,"뾱",7], ["9781","뾹",11,"뿆",5,"뿎뿏뿑뿒뿓뿕",6,"뿝뿞뿠뿢",89,"쀽쀾쀿"], ["9841","쁀",16,"쁒",5,"쁙쁚쁛"], ["9861","쁝쁞쁟쁡",6,"쁪",15], ["9881","쁺",21,"삒삓삕삖삗삙",6,"삢삤삦",5,"삮삱삲삷",4,"삾샂샃샄샆샇샊샋샍샎샏샑",6,"샚샞",5,"샦샧샩샪샫샭",6,"샶샸샺",5,"섁섂섃섅섆섇섉",6,"섑섒섓섔섖",5,"섡섢섥섨섩섪섫섮"], ["9941","섲섳섴섵섷섺섻섽섾섿셁",6,"셊셎",5,"셖셗"], ["9961","셙셚셛셝",6,"셦셪",5,"셱셲셳셵셶셷셹셺셻"], ["9981","셼",8,"솆",5,"솏솑솒솓솕솗",4,"솞솠솢솣솤솦솧솪솫솭솮솯솱",11,"솾",5,"쇅쇆쇇쇉쇊쇋쇍",6,"쇕쇖쇙",6,"쇡쇢쇣쇥쇦쇧쇩",6,"쇲쇴",7,"쇾쇿숁숂숃숅",6,"숎숐숒",5,"숚숛숝숞숡숢숣"], ["9a41","숤숥숦숧숪숬숮숰숳숵",16], ["9a61","쉆쉇쉉",6,"쉒쉓쉕쉖쉗쉙",6,"쉡쉢쉣쉤쉦"], ["9a81","쉧",4,"쉮쉯쉱쉲쉳쉵",6,"쉾슀슂",5,"슊",5,"슑",6,"슙슚슜슞",5,"슦슧슩슪슫슮",5,"슶슸슺",33,"싞싟싡싢싥",5,"싮싰싲싳싴싵싷싺싽싾싿쌁",6,"쌊쌋쌎쌏"], ["9b41","쌐쌑쌒쌖쌗쌙쌚쌛쌝",6,"쌦쌧쌪",8], ["9b61","쌳",17,"썆",7], ["9b81","썎",25,"썪썫썭썮썯썱썳",4,"썺썻썾",5,"쎅쎆쎇쎉쎊쎋쎍",50,"쏁",22,"쏚"], ["9c41","쏛쏝쏞쏡쏣",4,"쏪쏫쏬쏮",5,"쏶쏷쏹",5], ["9c61","쏿",8,"쐉",6,"쐑",9], ["9c81","쐛",8,"쐥",6,"쐭쐮쐯쐱쐲쐳쐵",6,"쐾",9,"쑉",26,"쑦쑧쑩쑪쑫쑭",6,"쑶쑷쑸쑺",5,"쒁",18,"쒕",6,"쒝",12], ["9d41","쒪",13,"쒹쒺쒻쒽",8], ["9d61","쓆",25], ["9d81","쓠",8,"쓪",5,"쓲쓳쓵쓶쓷쓹쓻쓼쓽쓾씂",9,"씍씎씏씑씒씓씕",6,"씝",10,"씪씫씭씮씯씱",6,"씺씼씾",5,"앆앇앋앏앐앑앒앖앚앛앜앟앢앣앥앦앧앩",6,"앲앶",5,"앾앿얁얂얃얅얆얈얉얊얋얎얐얒얓얔"], ["9e41","얖얙얚얛얝얞얟얡",7,"얪",9,"얶"], ["9e61","얷얺얿",4,"엋엍엏엒엓엕엖엗엙",6,"엢엤엦엧"], ["9e81","엨엩엪엫엯엱엲엳엵엸엹엺엻옂옃옄옉옊옋옍옎옏옑",6,"옚옝",6,"옦옧옩옪옫옯옱옲옶옸옺옼옽옾옿왂왃왅왆왇왉",6,"왒왖",5,"왞왟왡",10,"왭왮왰왲",5,"왺왻왽왾왿욁",6,"욊욌욎",5,"욖욗욙욚욛욝",6,"욦"], ["9f41","욨욪",5,"욲욳욵욶욷욻",4,"웂웄웆",5,"웎"], ["9f61","웏웑웒웓웕",6,"웞웟웢",5,"웪웫웭웮웯웱웲"], ["9f81","웳",4,"웺웻웼웾",5,"윆윇윉윊윋윍",6,"윖윘윚",5,"윢윣윥윦윧윩",6,"윲윴윶윸윹윺윻윾윿읁읂읃읅",4,"읋읎읐읙읚읛읝읞읟읡",6,"읩읪읬",7,"읶읷읹읺읻읿잀잁잂잆잋잌잍잏잒잓잕잙잛",4,"잢잧",4,"잮잯잱잲잳잵잶잷"], ["a041","잸잹잺잻잾쟂",5,"쟊쟋쟍쟏쟑",6,"쟙쟚쟛쟜"], ["a061","쟞",5,"쟥쟦쟧쟩쟪쟫쟭",13], ["a081","쟻",4,"젂젃젅젆젇젉젋",4,"젒젔젗",4,"젞젟젡젢젣젥",6,"젮젰젲",5,"젹젺젻젽젾젿졁",6,"졊졋졎",5,"졕",26,"졲졳졵졶졷졹졻",4,"좂좄좈좉좊좎",5,"좕",7,"좞좠좢좣좤"], ["a141","좥좦좧좩",18,"좾좿죀죁"], ["a161","죂죃죅죆죇죉죊죋죍",6,"죖죘죚",5,"죢죣죥"], ["a181","죦",14,"죶",5,"죾죿줁줂줃줇",4,"줎 、。·‥…¨〃­―∥\∼‘’“”〔〕〈",9,"±×÷≠≤≥∞∴°′″℃Å¢£¥♂♀∠⊥⌒∂∇≡≒§※☆★○●◎◇◆□■△▲▽▼→←↑↓↔〓≪≫√∽∝∵∫∬∈∋⊆⊇⊂⊃∪∩∧∨¬"], ["a241","줐줒",5,"줙",18], ["a261","줭",6,"줵",18], ["a281","쥈",7,"쥒쥓쥕쥖쥗쥙",6,"쥢쥤",7,"쥭쥮쥯⇒⇔∀∃´~ˇ˘˝˚˙¸˛¡¿ː∮∑∏¤℉‰◁◀▷▶♤♠♡♥♧♣⊙◈▣◐◑▒▤▥▨▧▦▩♨☏☎☜☞¶†‡↕↗↙↖↘♭♩♪♬㉿㈜№㏇™㏂㏘℡€®"], ["a341","쥱쥲쥳쥵",6,"쥽",10,"즊즋즍즎즏"], ["a361","즑",6,"즚즜즞",16], ["a381","즯",16,"짂짃짅짆짉짋",4,"짒짔짗짘짛!",58,"₩]",32," ̄"], ["a441","짞짟짡짣짥짦짨짩짪짫짮짲",5,"짺짻짽짾짿쨁쨂쨃쨄"], ["a461","쨅쨆쨇쨊쨎",5,"쨕쨖쨗쨙",12], ["a481","쨦쨧쨨쨪",28,"ㄱ",93], ["a541","쩇",4,"쩎쩏쩑쩒쩓쩕",6,"쩞쩢",5,"쩩쩪"], ["a561","쩫",17,"쩾",5,"쪅쪆"], ["a581","쪇",16,"쪙",14,"ⅰ",9], ["a5b0","Ⅰ",9], ["a5c1","Α",16,"Σ",6], ["a5e1","α",16,"σ",6], ["a641","쪨",19,"쪾쪿쫁쫂쫃쫅"], ["a661","쫆",5,"쫎쫐쫒쫔쫕쫖쫗쫚",5,"쫡",6], ["a681","쫨쫩쫪쫫쫭",6,"쫵",18,"쬉쬊─│┌┐┘└├┬┤┴┼━┃┏┓┛┗┣┳┫┻╋┠┯┨┷┿┝┰┥┸╂┒┑┚┙┖┕┎┍┞┟┡┢┦┧┩┪┭┮┱┲┵┶┹┺┽┾╀╁╃",7], ["a741","쬋",4,"쬑쬒쬓쬕쬖쬗쬙",6,"쬢",7], ["a761","쬪",22,"쭂쭃쭄"], ["a781","쭅쭆쭇쭊쭋쭍쭎쭏쭑",6,"쭚쭛쭜쭞",5,"쭥",7,"㎕㎖㎗ℓ㎘㏄㎣㎤㎥㎦㎙",9,"㏊㎍㎎㎏㏏㎈㎉㏈㎧㎨㎰",9,"㎀",4,"㎺",5,"㎐",4,"Ω㏀㏁㎊㎋㎌㏖㏅㎭㎮㎯㏛㎩㎪㎫㎬㏝㏐㏓㏃㏉㏜㏆"], ["a841","쭭",10,"쭺",14], ["a861","쮉",18,"쮝",6], ["a881","쮤",19,"쮹",11,"ÆЪĦ"], ["a8a6","IJ"], ["a8a8","ĿŁØŒºÞŦŊ"], ["a8b1","㉠",27,"ⓐ",25,"①",14,"½⅓⅔¼¾⅛⅜⅝⅞"], ["a941","쯅",14,"쯕",10], ["a961","쯠쯡쯢쯣쯥쯦쯨쯪",18], ["a981","쯽",14,"찎찏찑찒찓찕",6,"찞찟찠찣찤æđðħıijĸŀłøœßþŧŋʼn㈀",27,"⒜",25,"⑴",14,"¹²³⁴ⁿ₁₂₃₄"], ["aa41","찥찦찪찫찭찯찱",6,"찺찿",4,"챆챇챉챊챋챍챎"], ["aa61","챏",4,"챖챚",5,"챡챢챣챥챧챩",6,"챱챲"], ["aa81","챳챴챶",29,"ぁ",82], ["ab41","첔첕첖첗첚첛첝첞첟첡",6,"첪첮",5,"첶첷첹"], ["ab61","첺첻첽",6,"쳆쳈쳊",5,"쳑쳒쳓쳕",5], ["ab81","쳛",8,"쳥",6,"쳭쳮쳯쳱",12,"ァ",85], ["ac41","쳾쳿촀촂",5,"촊촋촍촎촏촑",6,"촚촜촞촟촠"], ["ac61","촡촢촣촥촦촧촩촪촫촭",11,"촺",4], ["ac81","촿",28,"쵝쵞쵟А",5,"ЁЖ",25], ["acd1","а",5,"ёж",25], ["ad41","쵡쵢쵣쵥",6,"쵮쵰쵲",5,"쵹",7], ["ad61","춁",6,"춉",10,"춖춗춙춚춛춝춞춟"], ["ad81","춠춡춢춣춦춨춪",5,"춱",18,"췅"], ["ae41","췆",5,"췍췎췏췑",16], ["ae61","췢",5,"췩췪췫췭췮췯췱",6,"췺췼췾",4], ["ae81","츃츅츆츇츉츊츋츍",6,"츕츖츗츘츚",5,"츢츣츥츦츧츩츪츫"], ["af41","츬츭츮츯츲츴츶",19], ["af61","칊",13,"칚칛칝칞칢",5,"칪칬"], ["af81","칮",5,"칶칷칹칺칻칽",6,"캆캈캊",5,"캒캓캕캖캗캙"], ["b041","캚",5,"캢캦",5,"캮",12], ["b061","캻",5,"컂",19], ["b081","컖",13,"컦컧컩컪컭",6,"컶컺",5,"가각간갇갈갉갊감",7,"같",4,"갠갤갬갭갯갰갱갸갹갼걀걋걍걔걘걜거걱건걷걸걺검겁것겄겅겆겉겊겋게겐겔겜겝겟겠겡겨격겪견겯결겸겹겻겼경곁계곈곌곕곗고곡곤곧골곪곬곯곰곱곳공곶과곽관괄괆"], ["b141","켂켃켅켆켇켉",6,"켒켔켖",5,"켝켞켟켡켢켣"], ["b161","켥",6,"켮켲",5,"켹",11], ["b181","콅",14,"콖콗콙콚콛콝",6,"콦콨콪콫콬괌괍괏광괘괜괠괩괬괭괴괵괸괼굄굅굇굉교굔굘굡굣구국군굳굴굵굶굻굼굽굿궁궂궈궉권궐궜궝궤궷귀귁귄귈귐귑귓규균귤그극근귿글긁금급긋긍긔기긱긴긷길긺김깁깃깅깆깊까깍깎깐깔깖깜깝깟깠깡깥깨깩깬깰깸"], ["b241","콭콮콯콲콳콵콶콷콹",6,"쾁쾂쾃쾄쾆",5,"쾍"], ["b261","쾎",18,"쾢",5,"쾩"], ["b281","쾪",5,"쾱",18,"쿅",6,"깹깻깼깽꺄꺅꺌꺼꺽꺾껀껄껌껍껏껐껑께껙껜껨껫껭껴껸껼꼇꼈꼍꼐꼬꼭꼰꼲꼴꼼꼽꼿꽁꽂꽃꽈꽉꽐꽜꽝꽤꽥꽹꾀꾄꾈꾐꾑꾕꾜꾸꾹꾼꿀꿇꿈꿉꿋꿍꿎꿔꿜꿨꿩꿰꿱꿴꿸뀀뀁뀄뀌뀐뀔뀜뀝뀨끄끅끈끊끌끎끓끔끕끗끙"], ["b341","쿌",19,"쿢쿣쿥쿦쿧쿩"], ["b361","쿪",5,"쿲쿴쿶",5,"쿽쿾쿿퀁퀂퀃퀅",5], ["b381","퀋",5,"퀒",5,"퀙",19,"끝끼끽낀낄낌낍낏낑나낙낚난낟날낡낢남납낫",4,"낱낳내낵낸낼냄냅냇냈냉냐냑냔냘냠냥너넉넋넌널넒넓넘넙넛넜넝넣네넥넨넬넴넵넷넸넹녀녁년녈념녑녔녕녘녜녠노녹논놀놂놈놉놋농높놓놔놘놜놨뇌뇐뇔뇜뇝"], ["b441","퀮",5,"퀶퀷퀹퀺퀻퀽",6,"큆큈큊",5], ["b461","큑큒큓큕큖큗큙",6,"큡",10,"큮큯"], ["b481","큱큲큳큵",6,"큾큿킀킂",18,"뇟뇨뇩뇬뇰뇹뇻뇽누눅눈눋눌눔눕눗눙눠눴눼뉘뉜뉠뉨뉩뉴뉵뉼늄늅늉느늑는늘늙늚늠늡늣능늦늪늬늰늴니닉닌닐닒님닙닛닝닢다닥닦단닫",4,"닳담답닷",4,"닿대댁댄댈댐댑댓댔댕댜더덕덖던덛덜덞덟덤덥"], ["b541","킕",14,"킦킧킩킪킫킭",5], ["b561","킳킶킸킺",5,"탂탃탅탆탇탊",5,"탒탖",4], ["b581","탛탞탟탡탢탣탥",6,"탮탲",5,"탹",11,"덧덩덫덮데덱덴델뎀뎁뎃뎄뎅뎌뎐뎔뎠뎡뎨뎬도독돈돋돌돎돐돔돕돗동돛돝돠돤돨돼됐되된될됨됩됫됴두둑둔둘둠둡둣둥둬뒀뒈뒝뒤뒨뒬뒵뒷뒹듀듄듈듐듕드득든듣들듦듬듭듯등듸디딕딘딛딜딤딥딧딨딩딪따딱딴딸"], ["b641","턅",7,"턎",17], ["b661","턠",15,"턲턳턵턶턷턹턻턼턽턾"], ["b681","턿텂텆",5,"텎텏텑텒텓텕",6,"텞텠텢",5,"텩텪텫텭땀땁땃땄땅땋때땍땐땔땜땝땟땠땡떠떡떤떨떪떫떰떱떳떴떵떻떼떽뗀뗄뗌뗍뗏뗐뗑뗘뗬또똑똔똘똥똬똴뙈뙤뙨뚜뚝뚠뚤뚫뚬뚱뛔뛰뛴뛸뜀뜁뜅뜨뜩뜬뜯뜰뜸뜹뜻띄띈띌띔띕띠띤띨띰띱띳띵라락란랄람랍랏랐랑랒랖랗"], ["b741","텮",13,"텽",6,"톅톆톇톉톊"], ["b761","톋",20,"톢톣톥톦톧"], ["b781","톩",6,"톲톴톶톷톸톹톻톽톾톿퇁",14,"래랙랜랠램랩랫랬랭랴략랸럇량러럭런럴럼럽럿렀렁렇레렉렌렐렘렙렛렝려력련렬렴렵렷렸령례롄롑롓로록론롤롬롭롯롱롸롼뢍뢨뢰뢴뢸룀룁룃룅료룐룔룝룟룡루룩룬룰룸룹룻룽뤄뤘뤠뤼뤽륀륄륌륏륑류륙륜률륨륩"], ["b841","퇐",7,"퇙",17], ["b861","퇫",8,"퇵퇶퇷퇹",13], ["b881","툈툊",5,"툑",24,"륫륭르륵른를름릅릇릉릊릍릎리릭린릴림립릿링마막만많",4,"맘맙맛망맞맡맣매맥맨맬맴맵맷맸맹맺먀먁먈먕머먹먼멀멂멈멉멋멍멎멓메멕멘멜멤멥멧멨멩며멱면멸몃몄명몇몌모목몫몬몰몲몸몹못몽뫄뫈뫘뫙뫼"], ["b941","툪툫툮툯툱툲툳툵",6,"툾퉀퉂",5,"퉉퉊퉋퉌"], ["b961","퉍",14,"퉝",6,"퉥퉦퉧퉨"], ["b981","퉩",22,"튂튃튅튆튇튉튊튋튌묀묄묍묏묑묘묜묠묩묫무묵묶문묻물묽묾뭄뭅뭇뭉뭍뭏뭐뭔뭘뭡뭣뭬뮈뮌뮐뮤뮨뮬뮴뮷므믄믈믐믓미믹민믿밀밂밈밉밋밌밍및밑바",4,"받",4,"밤밥밧방밭배백밴밸뱀뱁뱃뱄뱅뱉뱌뱍뱐뱝버벅번벋벌벎범법벗"], ["ba41","튍튎튏튒튓튔튖",5,"튝튞튟튡튢튣튥",6,"튭"], ["ba61","튮튯튰튲",5,"튺튻튽튾틁틃",4,"틊틌",5], ["ba81","틒틓틕틖틗틙틚틛틝",6,"틦",9,"틲틳틵틶틷틹틺벙벚베벡벤벧벨벰벱벳벴벵벼벽변별볍볏볐병볕볘볜보복볶본볼봄봅봇봉봐봔봤봬뵀뵈뵉뵌뵐뵘뵙뵤뵨부북분붇불붉붊붐붑붓붕붙붚붜붤붰붸뷔뷕뷘뷜뷩뷰뷴뷸븀븃븅브븍븐블븜븝븟비빅빈빌빎빔빕빗빙빚빛빠빡빤"], ["bb41","틻",4,"팂팄팆",5,"팏팑팒팓팕팗",4,"팞팢팣"], ["bb61","팤팦팧팪팫팭팮팯팱",6,"팺팾",5,"퍆퍇퍈퍉"], ["bb81","퍊",31,"빨빪빰빱빳빴빵빻빼빽뺀뺄뺌뺍뺏뺐뺑뺘뺙뺨뻐뻑뻔뻗뻘뻠뻣뻤뻥뻬뼁뼈뼉뼘뼙뼛뼜뼝뽀뽁뽄뽈뽐뽑뽕뾔뾰뿅뿌뿍뿐뿔뿜뿟뿡쀼쁑쁘쁜쁠쁨쁩삐삑삔삘삠삡삣삥사삭삯산삳살삵삶삼삽삿샀상샅새색샌샐샘샙샛샜생샤"], ["bc41","퍪",17,"퍾퍿펁펂펃펅펆펇"], ["bc61","펈펉펊펋펎펒",5,"펚펛펝펞펟펡",6,"펪펬펮"], ["bc81","펯",4,"펵펶펷펹펺펻펽",6,"폆폇폊",5,"폑",5,"샥샨샬샴샵샷샹섀섄섈섐섕서",4,"섣설섦섧섬섭섯섰성섶세섹센셀셈셉셋셌셍셔셕션셜셤셥셧셨셩셰셴셸솅소속솎손솔솖솜솝솟송솥솨솩솬솰솽쇄쇈쇌쇔쇗쇘쇠쇤쇨쇰쇱쇳쇼쇽숀숄숌숍숏숑수숙순숟술숨숩숫숭"], ["bd41","폗폙",7,"폢폤",7,"폮폯폱폲폳폵폶폷"], ["bd61","폸폹폺폻폾퐀퐂",5,"퐉",13], ["bd81","퐗",5,"퐞",25,"숯숱숲숴쉈쉐쉑쉔쉘쉠쉥쉬쉭쉰쉴쉼쉽쉿슁슈슉슐슘슛슝스슥슨슬슭슴습슷승시식신싣실싫심십싯싱싶싸싹싻싼쌀쌈쌉쌌쌍쌓쌔쌕쌘쌜쌤쌥쌨쌩썅써썩썬썰썲썸썹썼썽쎄쎈쎌쏀쏘쏙쏜쏟쏠쏢쏨쏩쏭쏴쏵쏸쐈쐐쐤쐬쐰"], ["be41","퐸",7,"푁푂푃푅",14], ["be61","푔",7,"푝푞푟푡푢푣푥",7,"푮푰푱푲"], ["be81","푳",4,"푺푻푽푾풁풃",4,"풊풌풎",5,"풕",8,"쐴쐼쐽쑈쑤쑥쑨쑬쑴쑵쑹쒀쒔쒜쒸쒼쓩쓰쓱쓴쓸쓺쓿씀씁씌씐씔씜씨씩씬씰씸씹씻씽아악안앉않알앍앎앓암압앗았앙앝앞애액앤앨앰앱앳앴앵야약얀얄얇얌얍얏양얕얗얘얜얠얩어억언얹얻얼얽얾엄",6,"엌엎"], ["bf41","풞",10,"풪",14], ["bf61","풹",18,"퓍퓎퓏퓑퓒퓓퓕"], ["bf81","퓖",5,"퓝퓞퓠",7,"퓩퓪퓫퓭퓮퓯퓱",6,"퓹퓺퓼에엑엔엘엠엡엣엥여역엮연열엶엷염",5,"옅옆옇예옌옐옘옙옛옜오옥온올옭옮옰옳옴옵옷옹옻와왁완왈왐왑왓왔왕왜왝왠왬왯왱외왹왼욀욈욉욋욍요욕욘욜욤욥욧용우욱운울욹욺움웁웃웅워웍원월웜웝웠웡웨"], ["c041","퓾",5,"픅픆픇픉픊픋픍",6,"픖픘",5], ["c061","픞",25], ["c081","픸픹픺픻픾픿핁핂핃핅",6,"핎핐핒",5,"핚핛핝핞핟핡핢핣웩웬웰웸웹웽위윅윈윌윔윕윗윙유육윤율윰윱윳융윷으윽은을읊음읍읏응",7,"읜읠읨읫이익인일읽읾잃임입잇있잉잊잎자작잔잖잗잘잚잠잡잣잤장잦재잭잰잴잼잽잿쟀쟁쟈쟉쟌쟎쟐쟘쟝쟤쟨쟬저적전절젊"], ["c141","핤핦핧핪핬핮",5,"핶핷핹핺핻핽",6,"햆햊햋"], ["c161","햌햍햎햏햑",19,"햦햧"], ["c181","햨",31,"점접젓정젖제젝젠젤젬젭젯젱져젼졀졈졉졌졍졔조족존졸졺좀좁좃종좆좇좋좌좍좔좝좟좡좨좼좽죄죈죌죔죕죗죙죠죡죤죵주죽준줄줅줆줌줍줏중줘줬줴쥐쥑쥔쥘쥠쥡쥣쥬쥰쥴쥼즈즉즌즐즘즙즛증지직진짇질짊짐집짓"], ["c241","헊헋헍헎헏헑헓",4,"헚헜헞",5,"헦헧헩헪헫헭헮"], ["c261","헯",4,"헶헸헺",5,"혂혃혅혆혇혉",6,"혒"], ["c281","혖",5,"혝혞혟혡혢혣혥",7,"혮",9,"혺혻징짖짙짚짜짝짠짢짤짧짬짭짯짰짱째짹짼쨀쨈쨉쨋쨌쨍쨔쨘쨩쩌쩍쩐쩔쩜쩝쩟쩠쩡쩨쩽쪄쪘쪼쪽쫀쫄쫌쫍쫏쫑쫓쫘쫙쫠쫬쫴쬈쬐쬔쬘쬠쬡쭁쭈쭉쭌쭐쭘쭙쭝쭤쭸쭹쮜쮸쯔쯤쯧쯩찌찍찐찔찜찝찡찢찧차착찬찮찰참찹찻"], ["c341","혽혾혿홁홂홃홄홆홇홊홌홎홏홐홒홓홖홗홙홚홛홝",4], ["c361","홢",4,"홨홪",5,"홲홳홵",11], ["c381","횁횂횄횆",5,"횎횏횑횒횓횕",7,"횞횠횢",5,"횩횪찼창찾채책챈챌챔챕챗챘챙챠챤챦챨챰챵처척천철첨첩첫첬청체첵첸첼쳄쳅쳇쳉쳐쳔쳤쳬쳰촁초촉촌촐촘촙촛총촤촨촬촹최쵠쵤쵬쵭쵯쵱쵸춈추축춘출춤춥춧충춰췄췌췐취췬췰췸췹췻췽츄츈츌츔츙츠측츤츨츰츱츳층"], ["c441","횫횭횮횯횱",7,"횺횼",7,"훆훇훉훊훋"], ["c461","훍훎훏훐훒훓훕훖훘훚",5,"훡훢훣훥훦훧훩",4], ["c481","훮훯훱훲훳훴훶",5,"훾훿휁휂휃휅",11,"휒휓휔치칙친칟칠칡침칩칫칭카칵칸칼캄캅캇캉캐캑캔캘캠캡캣캤캥캬캭컁커컥컨컫컬컴컵컷컸컹케켁켄켈켐켑켓켕켜켠켤켬켭켯켰켱켸코콕콘콜콤콥콧콩콰콱콴콸쾀쾅쾌쾡쾨쾰쿄쿠쿡쿤쿨쿰쿱쿳쿵쿼퀀퀄퀑퀘퀭퀴퀵퀸퀼"], ["c541","휕휖휗휚휛휝휞휟휡",6,"휪휬휮",5,"휶휷휹"], ["c561","휺휻휽",6,"흅흆흈흊",5,"흒흓흕흚",4], ["c581","흟흢흤흦흧흨흪흫흭흮흯흱흲흳흵",6,"흾흿힀힂",5,"힊힋큄큅큇큉큐큔큘큠크큭큰클큼큽킁키킥킨킬킴킵킷킹타탁탄탈탉탐탑탓탔탕태택탠탤탬탭탯탰탱탸턍터턱턴털턺텀텁텃텄텅테텍텐텔템텝텟텡텨텬텼톄톈토톡톤톨톰톱톳통톺톼퇀퇘퇴퇸툇툉툐투툭툰툴툼툽툿퉁퉈퉜"], ["c641","힍힎힏힑",6,"힚힜힞",5], ["c6a1","퉤튀튁튄튈튐튑튕튜튠튤튬튱트특튼튿틀틂틈틉틋틔틘틜틤틥티틱틴틸팀팁팃팅파팍팎판팔팖팜팝팟팠팡팥패팩팬팰팸팹팻팼팽퍄퍅퍼퍽펀펄펌펍펏펐펑페펙펜펠펨펩펫펭펴편펼폄폅폈평폐폘폡폣포폭폰폴폼폽폿퐁"], ["c7a1","퐈퐝푀푄표푠푤푭푯푸푹푼푿풀풂품풉풋풍풔풩퓌퓐퓔퓜퓟퓨퓬퓰퓸퓻퓽프픈플픔픕픗피픽핀필핌핍핏핑하학한할핥함합핫항해핵핸핼햄햅햇했행햐향허헉헌헐헒험헙헛헝헤헥헨헬헴헵헷헹혀혁현혈혐협혓혔형혜혠"], ["c8a1","혤혭호혹혼홀홅홈홉홋홍홑화확환활홧황홰홱홴횃횅회획횐횔횝횟횡효횬횰횹횻후훅훈훌훑훔훗훙훠훤훨훰훵훼훽휀휄휑휘휙휜휠휨휩휫휭휴휵휸휼흄흇흉흐흑흔흖흗흘흙흠흡흣흥흩희흰흴흼흽힁히힉힌힐힘힙힛힝"], ["caa1","伽佳假價加可呵哥嘉嫁家暇架枷柯歌珂痂稼苛茄街袈訶賈跏軻迦駕刻却各恪慤殼珏脚覺角閣侃刊墾奸姦干幹懇揀杆柬桿澗癎看磵稈竿簡肝艮艱諫間乫喝曷渴碣竭葛褐蝎鞨勘坎堪嵌感憾戡敢柑橄減甘疳監瞰紺邯鑑鑒龕"], ["cba1","匣岬甲胛鉀閘剛堈姜岡崗康强彊慷江畺疆糠絳綱羌腔舡薑襁講鋼降鱇介价個凱塏愷愾慨改槪漑疥皆盖箇芥蓋豈鎧開喀客坑更粳羹醵倨去居巨拒据據擧渠炬祛距踞車遽鉅鋸乾件健巾建愆楗腱虔蹇鍵騫乞傑杰桀儉劍劒檢"], ["cca1","瞼鈐黔劫怯迲偈憩揭擊格檄激膈覡隔堅牽犬甄絹繭肩見譴遣鵑抉決潔結缺訣兼慊箝謙鉗鎌京俓倞傾儆勁勍卿坰境庚徑慶憬擎敬景暻更梗涇炅烱璟璥瓊痙硬磬竟競絅經耕耿脛莖警輕逕鏡頃頸驚鯨係啓堺契季屆悸戒桂械"], ["cda1","棨溪界癸磎稽系繫繼計誡谿階鷄古叩告呱固姑孤尻庫拷攷故敲暠枯槁沽痼皐睾稿羔考股膏苦苽菰藁蠱袴誥賈辜錮雇顧高鼓哭斛曲梏穀谷鵠困坤崑昆梱棍滾琨袞鯤汨滑骨供公共功孔工恐恭拱控攻珙空蚣貢鞏串寡戈果瓜"], ["cea1","科菓誇課跨過鍋顆廓槨藿郭串冠官寬慣棺款灌琯瓘管罐菅觀貫關館刮恝括适侊光匡壙廣曠洸炚狂珖筐胱鑛卦掛罫乖傀塊壞怪愧拐槐魁宏紘肱轟交僑咬喬嬌嶠巧攪敎校橋狡皎矯絞翹膠蕎蛟較轎郊餃驕鮫丘久九仇俱具勾"], ["cfa1","區口句咎嘔坵垢寇嶇廐懼拘救枸柩構歐毆毬求溝灸狗玖球瞿矩究絿耉臼舅舊苟衢謳購軀逑邱鉤銶駒驅鳩鷗龜國局菊鞠鞫麴君窘群裙軍郡堀屈掘窟宮弓穹窮芎躬倦券勸卷圈拳捲權淃眷厥獗蕨蹶闕机櫃潰詭軌饋句晷歸貴"], ["d0a1","鬼龜叫圭奎揆槻珪硅窺竅糾葵規赳逵閨勻均畇筠菌鈞龜橘克剋劇戟棘極隙僅劤勤懃斤根槿瑾筋芹菫覲謹近饉契今妗擒昑檎琴禁禽芩衾衿襟金錦伋及急扱汲級給亘兢矜肯企伎其冀嗜器圻基埼夔奇妓寄岐崎己幾忌技旗旣"], ["d1a1","朞期杞棋棄機欺氣汽沂淇玘琦琪璂璣畸畿碁磯祁祇祈祺箕紀綺羈耆耭肌記譏豈起錡錤飢饑騎騏驥麒緊佶吉拮桔金喫儺喇奈娜懦懶拏拿癩",5,"那樂",4,"諾酪駱亂卵暖欄煖爛蘭難鸞捏捺南嵐枏楠湳濫男藍襤拉"], ["d2a1","納臘蠟衲囊娘廊",4,"乃來內奈柰耐冷女年撚秊念恬拈捻寧寗努勞奴弩怒擄櫓爐瑙盧",5,"駑魯",10,"濃籠聾膿農惱牢磊腦賂雷尿壘",7,"嫩訥杻紐勒",5,"能菱陵尼泥匿溺多茶"], ["d3a1","丹亶但單團壇彖斷旦檀段湍短端簞緞蛋袒鄲鍛撻澾獺疸達啖坍憺擔曇淡湛潭澹痰聃膽蕁覃談譚錟沓畓答踏遝唐堂塘幢戇撞棠當糖螳黨代垈坮大對岱帶待戴擡玳臺袋貸隊黛宅德悳倒刀到圖堵塗導屠島嶋度徒悼挑掉搗桃"], ["d4a1","棹櫂淘渡滔濤燾盜睹禱稻萄覩賭跳蹈逃途道都鍍陶韜毒瀆牘犢獨督禿篤纛讀墩惇敦旽暾沌焞燉豚頓乭突仝冬凍動同憧東桐棟洞潼疼瞳童胴董銅兜斗杜枓痘竇荳讀豆逗頭屯臀芚遁遯鈍得嶝橙燈登等藤謄鄧騰喇懶拏癩羅"], ["d5a1","蘿螺裸邏樂洛烙珞絡落諾酪駱丹亂卵欄欒瀾爛蘭鸞剌辣嵐擥攬欖濫籃纜藍襤覽拉臘蠟廊朗浪狼琅瑯螂郞來崍徠萊冷掠略亮倆兩凉梁樑粮粱糧良諒輛量侶儷勵呂廬慮戾旅櫚濾礪藜蠣閭驢驪麗黎力曆歷瀝礫轢靂憐戀攣漣"], ["d6a1","煉璉練聯蓮輦連鍊冽列劣洌烈裂廉斂殮濂簾獵令伶囹寧岺嶺怜玲笭羚翎聆逞鈴零靈領齡例澧禮醴隷勞怒撈擄櫓潞瀘爐盧老蘆虜路輅露魯鷺鹵碌祿綠菉錄鹿麓論壟弄朧瀧瓏籠聾儡瀨牢磊賂賚賴雷了僚寮廖料燎療瞭聊蓼"], ["d7a1","遼鬧龍壘婁屢樓淚漏瘻累縷蔞褸鏤陋劉旒柳榴流溜瀏琉瑠留瘤硫謬類六戮陸侖倫崙淪綸輪律慄栗率隆勒肋凜凌楞稜綾菱陵俚利厘吏唎履悧李梨浬犁狸理璃異痢籬罹羸莉裏裡里釐離鯉吝潾燐璘藺躪隣鱗麟林淋琳臨霖砬"], ["d8a1","立笠粒摩瑪痲碼磨馬魔麻寞幕漠膜莫邈万卍娩巒彎慢挽晩曼滿漫灣瞞萬蔓蠻輓饅鰻唜抹末沫茉襪靺亡妄忘忙望網罔芒茫莽輞邙埋妹媒寐昧枚梅每煤罵買賣邁魅脈貊陌驀麥孟氓猛盲盟萌冪覓免冕勉棉沔眄眠綿緬面麵滅"], ["d9a1","蔑冥名命明暝椧溟皿瞑茗蓂螟酩銘鳴袂侮冒募姆帽慕摸摹暮某模母毛牟牡瑁眸矛耗芼茅謀謨貌木沐牧目睦穆鶩歿沒夢朦蒙卯墓妙廟描昴杳渺猫竗苗錨務巫憮懋戊拇撫无楙武毋無珷畝繆舞茂蕪誣貿霧鵡墨默們刎吻問文"], ["daa1","汶紊紋聞蚊門雯勿沕物味媚尾嵋彌微未梶楣渼湄眉米美薇謎迷靡黴岷悶愍憫敏旻旼民泯玟珉緡閔密蜜謐剝博拍搏撲朴樸泊珀璞箔粕縛膊舶薄迫雹駁伴半反叛拌搬攀斑槃泮潘班畔瘢盤盼磐磻礬絆般蟠返頒飯勃拔撥渤潑"], ["dba1","發跋醱鉢髮魃倣傍坊妨尨幇彷房放方旁昉枋榜滂磅紡肪膀舫芳蒡蚌訪謗邦防龐倍俳北培徘拜排杯湃焙盃背胚裴裵褙賠輩配陪伯佰帛柏栢白百魄幡樊煩燔番磻繁蕃藩飜伐筏罰閥凡帆梵氾汎泛犯範范法琺僻劈壁擘檗璧癖"], ["dca1","碧蘗闢霹便卞弁變辨辯邊別瞥鱉鼈丙倂兵屛幷昞昺柄棅炳甁病秉竝輧餠騈保堡報寶普步洑湺潽珤甫菩補褓譜輔伏僕匐卜宓復服福腹茯蔔複覆輹輻馥鰒本乶俸奉封峯峰捧棒烽熢琫縫蓬蜂逢鋒鳳不付俯傅剖副否咐埠夫婦"], ["dda1","孚孵富府復扶敷斧浮溥父符簿缶腐腑膚艀芙莩訃負賦賻赴趺部釜阜附駙鳧北分吩噴墳奔奮忿憤扮昐汾焚盆粉糞紛芬賁雰不佛弗彿拂崩朋棚硼繃鵬丕備匕匪卑妃婢庇悲憊扉批斐枇榧比毖毗毘沸泌琵痺砒碑秕秘粃緋翡肥"], ["dea1","脾臂菲蜚裨誹譬費鄙非飛鼻嚬嬪彬斌檳殯浜濱瀕牝玭貧賓頻憑氷聘騁乍事些仕伺似使俟僿史司唆嗣四士奢娑寫寺射巳師徙思捨斜斯柶査梭死沙泗渣瀉獅砂社祀祠私篩紗絲肆舍莎蓑蛇裟詐詞謝賜赦辭邪飼駟麝削數朔索"], ["dfa1","傘刪山散汕珊産疝算蒜酸霰乷撒殺煞薩三參杉森渗芟蔘衫揷澁鈒颯上傷像償商喪嘗孀尙峠常床庠廂想桑橡湘爽牀狀相祥箱翔裳觴詳象賞霜塞璽賽嗇塞穡索色牲生甥省笙墅壻嶼序庶徐恕抒捿敍暑曙書栖棲犀瑞筮絮緖署"], ["e0a1","胥舒薯西誓逝鋤黍鼠夕奭席惜昔晳析汐淅潟石碩蓆釋錫仙僊先善嬋宣扇敾旋渲煽琁瑄璇璿癬禪線繕羨腺膳船蘚蟬詵跣選銑鐥饍鮮卨屑楔泄洩渫舌薛褻設說雪齧剡暹殲纖蟾贍閃陝攝涉燮葉城姓宬性惺成星晟猩珹盛省筬"], ["e1a1","聖聲腥誠醒世勢歲洗稅笹細說貰召嘯塑宵小少巢所掃搔昭梳沼消溯瀟炤燒甦疏疎瘙笑篠簫素紹蔬蕭蘇訴逍遡邵銷韶騷俗屬束涑粟續謖贖速孫巽損蓀遜飡率宋悚松淞訟誦送頌刷殺灑碎鎖衰釗修受嗽囚垂壽嫂守岫峀帥愁"], ["e2a1","戍手授搜收數樹殊水洙漱燧狩獸琇璲瘦睡秀穗竪粹綏綬繡羞脩茱蒐蓚藪袖誰讐輸遂邃酬銖銹隋隧隨雖需須首髓鬚叔塾夙孰宿淑潚熟琡璹肅菽巡徇循恂旬栒楯橓殉洵淳珣盾瞬筍純脣舜荀蓴蕣詢諄醇錞順馴戌術述鉥崇崧"], ["e3a1","嵩瑟膝蝨濕拾習褶襲丞乘僧勝升承昇繩蠅陞侍匙嘶始媤尸屎屍市弑恃施是時枾柴猜矢示翅蒔蓍視試詩諡豕豺埴寔式息拭植殖湜熄篒蝕識軾食飾伸侁信呻娠宸愼新晨燼申神紳腎臣莘薪藎蜃訊身辛辰迅失室實悉審尋心沁"], ["e4a1","沈深瀋甚芯諶什十拾雙氏亞俄兒啞娥峨我牙芽莪蛾衙訝阿雅餓鴉鵝堊岳嶽幄惡愕握樂渥鄂鍔顎鰐齷安岸按晏案眼雁鞍顔鮟斡謁軋閼唵岩巖庵暗癌菴闇壓押狎鴨仰央怏昻殃秧鴦厓哀埃崖愛曖涯碍艾隘靄厄扼掖液縊腋額"], ["e5a1","櫻罌鶯鸚也倻冶夜惹揶椰爺耶若野弱掠略約若葯蒻藥躍亮佯兩凉壤孃恙揚攘敭暘梁楊樣洋瀁煬痒瘍禳穰糧羊良襄諒讓釀陽量養圄御於漁瘀禦語馭魚齬億憶抑檍臆偃堰彦焉言諺孼蘖俺儼嚴奄掩淹嶪業円予余勵呂女如廬"], ["e6a1","旅歟汝濾璵礖礪與艅茹輿轝閭餘驪麗黎亦力域役易曆歷疫繹譯轢逆驛嚥堧姸娟宴年延憐戀捐挻撚椽沇沿涎涓淵演漣烟然煙煉燃燕璉硏硯秊筵緣練縯聯衍軟輦蓮連鉛鍊鳶列劣咽悅涅烈熱裂說閱厭廉念捻染殮炎焰琰艶苒"], ["e7a1","簾閻髥鹽曄獵燁葉令囹塋寧嶺嶸影怜映暎楹榮永泳渶潁濚瀛瀯煐營獰玲瑛瑩瓔盈穎纓羚聆英詠迎鈴鍈零霙靈領乂倪例刈叡曳汭濊猊睿穢芮藝蘂禮裔詣譽豫醴銳隸霓預五伍俉傲午吾吳嗚塢墺奧娛寤悟惡懊敖旿晤梧汚澳"], ["e8a1","烏熬獒筽蜈誤鰲鼇屋沃獄玉鈺溫瑥瘟穩縕蘊兀壅擁瓮甕癰翁邕雍饔渦瓦窩窪臥蛙蝸訛婉完宛梡椀浣玩琓琬碗緩翫脘腕莞豌阮頑曰往旺枉汪王倭娃歪矮外嵬巍猥畏了僚僥凹堯夭妖姚寥寮尿嶢拗搖撓擾料曜樂橈燎燿瑤療"], ["e9a1","窈窯繇繞耀腰蓼蟯要謠遙遼邀饒慾欲浴縟褥辱俑傭冗勇埇墉容庸慂榕涌湧溶熔瑢用甬聳茸蓉踊鎔鏞龍于佑偶優又友右宇寓尤愚憂旴牛玗瑀盂祐禑禹紆羽芋藕虞迂遇郵釪隅雨雩勖彧旭昱栯煜稶郁頊云暈橒殞澐熉耘芸蕓"], ["eaa1","運隕雲韻蔚鬱亐熊雄元原員圓園垣媛嫄寃怨愿援沅洹湲源爰猿瑗苑袁轅遠阮院願鴛月越鉞位偉僞危圍委威尉慰暐渭爲瑋緯胃萎葦蔿蝟衛褘謂違韋魏乳侑儒兪劉唯喩孺宥幼幽庾悠惟愈愉揄攸有杻柔柚柳楡楢油洧流游溜"], ["eba1","濡猶猷琉瑜由留癒硫紐維臾萸裕誘諛諭踰蹂遊逾遺酉釉鍮類六堉戮毓肉育陸倫允奫尹崙淪潤玧胤贇輪鈗閏律慄栗率聿戎瀜絨融隆垠恩慇殷誾銀隱乙吟淫蔭陰音飮揖泣邑凝應膺鷹依倚儀宜意懿擬椅毅疑矣義艤薏蟻衣誼"], ["eca1","議醫二以伊利吏夷姨履已弛彛怡易李梨泥爾珥理異痍痢移罹而耳肄苡荑裏裡貽貳邇里離飴餌匿溺瀷益翊翌翼謚人仁刃印吝咽因姻寅引忍湮燐璘絪茵藺蚓認隣靭靷鱗麟一佚佾壹日溢逸鎰馹任壬妊姙恁林淋稔臨荏賃入卄"], ["eda1","立笠粒仍剩孕芿仔刺咨姉姿子字孜恣慈滋炙煮玆瓷疵磁紫者自茨蔗藉諮資雌作勺嚼斫昨灼炸爵綽芍酌雀鵲孱棧殘潺盞岑暫潛箴簪蠶雜丈仗匠場墻壯奬將帳庄張掌暲杖樟檣欌漿牆狀獐璋章粧腸臟臧莊葬蔣薔藏裝贓醬長"], ["eea1","障再哉在宰才材栽梓渽滓災縡裁財載齋齎爭箏諍錚佇低儲咀姐底抵杵楮樗沮渚狙猪疽箸紵苧菹著藷詛貯躇這邸雎齟勣吊嫡寂摘敵滴狄炙的積笛籍績翟荻謫賊赤跡蹟迪迹適鏑佃佺傳全典前剪塡塼奠專展廛悛戰栓殿氈澱"], ["efa1","煎琠田甸畑癲筌箋箭篆纏詮輾轉鈿銓錢鐫電顚顫餞切截折浙癤竊節絶占岾店漸点粘霑鮎點接摺蝶丁井亭停偵呈姃定幀庭廷征情挺政整旌晶晸柾楨檉正汀淀淨渟湞瀞炡玎珽町睛碇禎程穽精綎艇訂諪貞鄭酊釘鉦鋌錠霆靖"], ["f0a1","靜頂鼎制劑啼堤帝弟悌提梯濟祭第臍薺製諸蹄醍除際霽題齊俎兆凋助嘲弔彫措操早晁曺曹朝條棗槽漕潮照燥爪璪眺祖祚租稠窕粗糟組繰肇藻蚤詔調趙躁造遭釣阻雕鳥族簇足鏃存尊卒拙猝倧宗從悰慫棕淙琮種終綜縱腫"], ["f1a1","踪踵鍾鐘佐坐左座挫罪主住侏做姝胄呪周嗾奏宙州廚晝朱柱株注洲湊澍炷珠疇籌紂紬綢舟蛛註誅走躊輳週酎酒鑄駐竹粥俊儁准埈寯峻晙樽浚準濬焌畯竣蠢逡遵雋駿茁中仲衆重卽櫛楫汁葺增憎曾拯烝甑症繒蒸證贈之只"], ["f2a1","咫地址志持指摯支旨智枝枳止池沚漬知砥祉祗紙肢脂至芝芷蜘誌識贄趾遲直稙稷織職唇嗔塵振搢晉晋桭榛殄津溱珍瑨璡畛疹盡眞瞋秦縉縝臻蔯袗診賑軫辰進鎭陣陳震侄叱姪嫉帙桎瓆疾秩窒膣蛭質跌迭斟朕什執潗緝輯"], ["f3a1","鏶集徵懲澄且侘借叉嗟嵯差次此磋箚茶蹉車遮捉搾着窄錯鑿齪撰澯燦璨瓚竄簒纂粲纘讚贊鑽餐饌刹察擦札紮僭參塹慘慙懺斬站讒讖倉倡創唱娼廠彰愴敞昌昶暢槍滄漲猖瘡窓脹艙菖蒼債埰寀寨彩採砦綵菜蔡采釵冊柵策"], ["f4a1","責凄妻悽處倜刺剔尺慽戚拓擲斥滌瘠脊蹠陟隻仟千喘天川擅泉淺玔穿舛薦賤踐遷釧闡阡韆凸哲喆徹撤澈綴輟轍鐵僉尖沾添甛瞻簽籤詹諂堞妾帖捷牒疊睫諜貼輒廳晴淸聽菁請靑鯖切剃替涕滯締諦逮遞體初剿哨憔抄招梢"], ["f5a1","椒楚樵炒焦硝礁礎秒稍肖艸苕草蕉貂超酢醋醮促囑燭矗蜀觸寸忖村邨叢塚寵悤憁摠總聰蔥銃撮催崔最墜抽推椎楸樞湫皺秋芻萩諏趨追鄒酋醜錐錘鎚雛騶鰍丑畜祝竺筑築縮蓄蹙蹴軸逐春椿瑃出朮黜充忠沖蟲衝衷悴膵萃"], ["f6a1","贅取吹嘴娶就炊翠聚脆臭趣醉驟鷲側仄厠惻測層侈値嗤峙幟恥梔治淄熾痔痴癡稚穉緇緻置致蚩輜雉馳齒則勅飭親七柒漆侵寢枕沈浸琛砧針鍼蟄秤稱快他咤唾墮妥惰打拖朶楕舵陀馱駝倬卓啄坼度托拓擢晫柝濁濯琢琸託"], ["f7a1","鐸呑嘆坦彈憚歎灘炭綻誕奪脫探眈耽貪塔搭榻宕帑湯糖蕩兌台太怠態殆汰泰笞胎苔跆邰颱宅擇澤撑攄兎吐土討慟桶洞痛筒統通堆槌腿褪退頹偸套妬投透鬪慝特闖坡婆巴把播擺杷波派爬琶破罷芭跛頗判坂板版瓣販辦鈑"], ["f8a1","阪八叭捌佩唄悖敗沛浿牌狽稗覇貝彭澎烹膨愎便偏扁片篇編翩遍鞭騙貶坪平枰萍評吠嬖幣廢弊斃肺蔽閉陛佈包匍匏咆哺圃布怖抛抱捕暴泡浦疱砲胞脯苞葡蒲袍褒逋鋪飽鮑幅暴曝瀑爆輻俵剽彪慓杓標漂瓢票表豹飇飄驃"], ["f9a1","品稟楓諷豊風馮彼披疲皮被避陂匹弼必泌珌畢疋筆苾馝乏逼下何厦夏廈昰河瑕荷蝦賀遐霞鰕壑學虐謔鶴寒恨悍旱汗漢澣瀚罕翰閑閒限韓割轄函含咸啣喊檻涵緘艦銜陷鹹合哈盒蛤閤闔陜亢伉姮嫦巷恒抗杭桁沆港缸肛航"], ["faa1","行降項亥偕咳垓奚孩害懈楷海瀣蟹解該諧邂駭骸劾核倖幸杏荇行享向嚮珦鄕響餉饗香噓墟虛許憲櫶獻軒歇險驗奕爀赫革俔峴弦懸晛泫炫玄玹現眩睍絃絢縣舷衒見賢鉉顯孑穴血頁嫌俠協夾峽挾浹狹脅脇莢鋏頰亨兄刑型"], ["fba1","形泂滎瀅灐炯熒珩瑩荊螢衡逈邢鎣馨兮彗惠慧暳蕙蹊醯鞋乎互呼壕壺好岵弧戶扈昊晧毫浩淏湖滸澔濠濩灝狐琥瑚瓠皓祜糊縞胡芦葫蒿虎號蝴護豪鎬頀顥惑或酷婚昏混渾琿魂忽惚笏哄弘汞泓洪烘紅虹訌鴻化和嬅樺火畵"], ["fca1","禍禾花華話譁貨靴廓擴攫確碻穫丸喚奐宦幻患換歡晥桓渙煥環紈還驩鰥活滑猾豁闊凰幌徨恍惶愰慌晃晄榥況湟滉潢煌璜皇篁簧荒蝗遑隍黃匯回廻徊恢悔懷晦會檜淮澮灰獪繪膾茴蛔誨賄劃獲宖橫鐄哮嚆孝效斅曉梟涍淆"], ["fda1","爻肴酵驍侯候厚后吼喉嗅帿後朽煦珝逅勛勳塤壎焄熏燻薰訓暈薨喧暄煊萱卉喙毁彙徽揮暉煇諱輝麾休携烋畦虧恤譎鷸兇凶匈洶胸黑昕欣炘痕吃屹紇訖欠欽歆吸恰洽翕興僖凞喜噫囍姬嬉希憙憘戱晞曦熙熹熺犧禧稀羲詰"] ]
214,381
Github
[ 36524, 5706, 8029, 187, 50274, 6790, 4814, 1838, 27, 16987, 495, 36, 721, 34, 898, 37, 721, 37, 13507, 329, 17, 10601, 374, 39, 29946, 7609, 4567, 470, 37, 2164, 495, 34, 3127, 5910, 401, 23, 16331, 1458, 209, 187, 19091, 33870, 36, 30, 3016, 16, 1267, 30, 25000, 1373, 16, 45, 30, 18635, 296, 7061, 16, 48, 30, 510, 14325, 9107, 6807, 16, 2185, 30, 11538, 2679, 596, 35885, 16, 14546, 30, 22922, 16, 12812, 12236, 30, 3620, 33, 394, 35885, 15, 8418, 15, 2061, 187, 739, 10207, 33870, 36, 30, 3016, 16, 1267, 30, 25000, 1373, 16, 45, 30, 18635, 296, 7061, 16, 48, 30, 510, 14325, 9107, 6807, 16, 2185, 30, 11538, 2679, 596, 35885, 16, 14546, 30, 22922, 16, 12812, 12236, 30, 3620, 33, 394, 35885, 15, 8418, 15, 2061, 187, 7040, 32077, 330, 6366, 45442, 4966, 7040, 187, 6402, 1838, 8528, 40020, 75, 88, 4280, 50, 38, 88, 27474, 58, 43, 40849, 59, 42, 73, 16788, 1322, 50, 16462, 35, 50, 27031, 20773, 1672, 36, 44505, 35941, 72, 23459, 6327, 58, 53, 2422, 55, 14592, 1848, 88, 37, 88, 58, 37, 187, 55, 25138, 1838, 13924, 20604, 57, 43, 22, 67, 4161, 86, 59, 2573, 5529, 35, 2431, 34, 18, 6028, 35, 1477, 8720, 78, 26, 90, 46481, 47, 17, 9051, 73, 15656, 40, 22358, 43, 91, 2422, 46134, 23459, 6327, 80, 37691, 77, 22052, 187, 59, 52, 10172, 68, 4161, 6362, 32162, 72, 54, 1717, 6535, 41, 20402, 3591, 54, 72, 51, 78, 4739, 5844, 51, 13838, 9030, 30890, 75, 37943, 9180, 50, 7283, 18, 54, 4625, 1477, 47, 50, 57, 35, 73, 58, 19, 12408, 3801, 22052, 187, 68, 1686, 6535, 19578, 9180, 2696, 34, 18, 6028, 34, 1477, 43, 67, 40, 26, 75, 58, 56, 89, 706, 20, 47, 17, 3338, 50, 88, 25217, 58, 43, 40849, 59, 42, 73, 16788, 1322, 50, 76, 16380, 73, 55, 76, 46481, 59, 3837, 40, 1994, 187, 66, 56, 59, 17, 45, 78, 39, 88, 58, 56, 2302, 59, 52, 22, 87, 3591, 68, 88, 41, 31728, 47, 6229, 50, 88, 47, 4877, 20, 6229, 20168, 7414, 46, 91, 3152, 68, 47, 6229, 54, 88, 47, 4877, 20, 6229, 20168, 7414, 46, 91, 56, 75, 14922, 187, 84, 53, 3887, 3788, 76, 7283, 18, 6028, 35, 73, 7722, 55, 11804, 89, 2025, 2088, 46134, 23459, 6327, 72, 46, 4339, 18, 73, 14340, 5200, 58, 56, 22, 76, 6784, 50, 88, 38, 72, 58, 26807, 25138, 10536, 3404, 40, 67, 20, 43, 77, 187, 68, 20, 50, 72, 32302, 5200, 67, 2573, 79, 7722, 54, 7283, 18, 54, 4625, 72, 664, 55, 40, 12408, 9051, 39, 88, 58, 56, 2302, 59, 52, 11584, 67, 19, 59, 17, 69, 19, 39, 90, 59, 15803, 40, 67, 20, 55, 86, 59, 4161, 17, 66, 56, 26, 86, 187, 6784, 58, 88, 5377, 58, 26807, 50, 6350, 4877, 18, 35, 68, 4161, 6362, 32162, 72, 55, 40, 1994, 66, 56, 59, 17, 22410, 88, 38, 8506, 26807, 25138, 11927, 2422, 18516, 19, 47, 38057, 37528, 16788, 20, 50, 89, 43, 4877, 74, 187, 46134, 76, 82, 73, 5985, 40, 26, 88, 17, 3979, 50, 38, 27979, 10690, 392, 42574, 17, 66, 41, 43, 81, 30785, 3864, 58, 57, 35, 73, 58, 19, 12408, 45, 78, 26, 90, 59, 91, 14922, 36794, 1539, 46134, 76, 82, 73, 5985, 40, 26, 88, 17, 35, 187, 35572, 16462, 2446, 9324, 75, 50, 27031, 72, 58, 76, 36, 72, 58, 25716, 2676, 46, 19, 12764, 53, 71, 22, 20072, 18, 50, 73, 18, 31395, 1556, 56, 40026, 43, 89, 55, 43, 47, 68, 18, 86, 36, 25, 605, 88, 59, 42, 56, 25, 38, 14750, 23, 91, 187, 41, 19, 57, 21529, 34, 4290, 25, 6072, 24, 83, 55, 71, 91, 23, 50, 12, 89, 361, 82, 24, 89, 5648, 44439, 87, 26, 6587, 23, 45270, 21, 77, 24, 84, 5414, 32302, 44, 22, 77, 16788, 12, 56, 76, 29481, 37, 2059, 51, 19, 38, 75, 3351, 187, 86, 56, 998, 54, 91, 1311, 82, 24, 4237, 73, 55, 1235, 81, 54, 2369, 23, 31309, 2925, 55, 85, 39541, 22307, 2597, 23976, 38, 18, 77, 24, 58, 67, 25, 52, 1610, 87, 12, 72, 5851, 1397, 28946, 27341, 58, 1838, 88, 56, 68, 36, 187, 27031, 25716, 1194, 1539, 46134, 76, 82, 73, 5985, 40, 26, 88, 17, 6327, 8846, 39, 2446, 3231, 35572, 38, 5039, 40, 75, 11040, 312, 37, 78, 18, 39, 50, 8159, 255, 58, 74, 59, 16, 280, 24, 59, 25, 14803, 35, 12, 36, 13117, 187, 43840, 49403, 21, 73, 1477, 1630, 8561, 16, 56, 81, 6350, 84, 75, 23, 53, 1010, 1449, 35, 1671, 73, 3610, 59, 3655, 90, 1173, 21, 89, 72, 27524, 12847, 16, 2354, 42, 6964, 53, 26, 35, 17151, 68, 18, 9034, 37, 59, 16114, 187, 7386, 70, 52, 82, 23, 4985, 40700, 16, 18, 81, 43, 59, 26, 78, 16, 69, 17, 74, 12, 84, 35, 37135, 56, 72, 22, 88, 18, 90, 53, 25, 12, 66, 38, 44, 37135, 56, 58, 71, 39, 12, 36, 26, 75, 59, 23, 12, 20, 12, 42, 26, 356, 1838, 22, 48, 446, 38, 187, 56, 1477, 42148, 20, 89, 57, 620, 91, 20, 75, 20602, 47, 27827, 17, 71, 12, 73, 38, 18, 16, 31823, 56, 12297, 19, 79, 58, 12, 22, 68, 35, 12408, 89, 1785, 8835, 20, 10114, 73, 54, 16, 82, 59, 45, 26, 79, 16, 56, 9665, 36, 75, 41, 69, 187, 47, 6683, 56, 30291, 37, 20347, 35759, 19, 12, 86, 48, 31027, 39, 22, 84, 2431, 91, 8768, 75, 16, 82, 75, 40, 10587, 12, 54, 90, 21466, 5781, 35332, 52, 42781, 24, 75, 20, 23667, 58, 77, 59, 14543, 73, 42781, 43, 12, 85, 46, 7381, 51, 187, 44, 22141, 77, 18, 55, 54, 58, 5260, 12, 75, 91, 30550, 3463, 12, 67, 44, 86, 22, 86, 40, 59, 35, 20, 39, 18, 82, 555, 58, 26, 71, 42, 22, 27474, 307, 1976, 79, 47, 67, 489, 50, 11070, 12, 82, 88, 381, 187, 7040, 8112, 330, 6366, 45442, 4966, 7040, 187, 36524, 5706, 8029, 187, 50274, 6790, 4814, 1838, 27, 16987, 495, 36, 721, 34, 898, 37, 721, 37, 13507, 329, 17, 10601, 374, 39, 29946, 7609, 4567, 470, 37, 2164, 495, 34, 3127, 5910, 401, 23, 16331, 1458, 209, 187, 4814, 5706, 8029, 27, 654, 2302, 5706, 8029, 31, 187, 7040, 32077, 16449, 43184, 1703, 4653, 44882, 25111, 7040, 187, 6402, 1864, 89, 75, 35, 2925, 72, 76, 82, 73, 5985, 40, 26, 88, 17, 10172, 50, 17, 88, 46, 91, 5039, 46134, 76, 82, 73, 5985, 40, 26, 88, 17, 10172, 50, 1477, 37, 72, 43232, 56, 6683, 58, 2696, 26646, 56, 87, 88, 4280, 1266, 34, 187, 9180, 50, 26173, 82, 40, 5824, 67, 20, 27474, 37691, 6327, 75, 57, 41, 77, 21279, 12, 47, 78, 18576, 88, 4061, 34, 80, 7941, 72, 42, 67, 19, 24534, 25, 82, 37528, 579, 58, 56, 24, 16621, 34297, 77, 55, 28352, 79, 37, 17915, 83, 187, 84, 35811, 1267, 20449, 293, 88, 1556, 54, 1370, 69, 3046, 35, 24, 81, 34, 18, 6535, 8887, 1370, 46714, 19, 67, 82, 49, 59, 58, 43, 17, 87, 30998, 3023, 21, 86, 375, 79, 1348, 84, 57, 18243, 14066, 58, 72, 24, 81, 43, 69, 187, 1311, 79, 1440, 38, 19, 35, 9030, 31932, 21, 49, 82, 4604, 11804, 18, 43, 24, 80, 48, 22, 53, 71, 2369, 18, 2676, 57, 19973, 51, 74, 17, 43, 21, 50, 83, 23, 40, 85, 75, 22, 89, 88, 59, 51, 59, 74, 40, 79, 37673, 14543, 50, 26, 40, 16, 57, 187, 27415, 51, 85, 17659, 16, 81, 10189, 9068, 1906, 12, 938, 89, 78, 6669, 19, 39, 25, 15168, 25, 82, 605, 21, 1026, 80, 22, 47391, 38, 498, 3591, 68, 8478, 24, 2184, 48, 12, 53, 316, 20042, 20, 72, 12408, 71, 17, 75, 14836, 187, 46, 26, 80, 53, 87, 42092, 24, 56, 58, 20, 77, 27890, 73, 59, 81, 21, 50, 58, 77, 26562, 76, 40, 71, 40, 71, 76, 69, 24, 83, 49, 20, 28264, 73, 45, 1779, 1944, 69, 12695, 48, 2293, 23, 72, 649, 13220, 84, 17, 1556, 35, 2649, 1277, 187, 20604, 70, 52, 33392, 899, 5428, 3979, 91, 25, 39, 12, 56, 75, 55, 85, 24, 25138, 91, 42829, 51, 4883, 44, 6577, 42, 25, 82, 46, 89, 32611, 16, 37514, 29456, 38, 4529, 73, 52, 3121, 44, 25, 49, 68, 5622, 67, 6421, 14711, 84, 187, 45, 71, 48047, 67, 20, 87, 16, 87, 21, 27979, 69, 30999, 51, 43, 82, 49, 69, 56, 89, 22, 89, 20, 68, 14191, 31663, 88, 10327, 21, 46, 82, 59, 69, 26, 12, 57, 79, 34554, 37364, 25, 52, 71, 50, 69, 19, 56, 78, 8944, 19, 82, 1403, 67, 30570, 187, 8478, 5309, 50, 9244, 54, 50, 83, 59, 90, 45, 22, 35572, 78, 27168, 76, 69, 50, 39840, 71, 45, 71, 47, 88, 20, 42, 19, 777, 73, 8159, 24711, 12, 23398, 56, 89, 883, 16, 25, 76, 19, 69, 58, 59, 80, 49, 26, 28889, 59, 18, 16, 90, 53, 187, 77, 1237, 18278, 21, 2084, 24, 88, 2320, 54, 17, 87, 33759, 19, 85, 49, 6113, 14739, 21, 1267, 23985, 10690, 22, 50, 21, 39, 36053, 20, 30784, 74, 24711, 47, 90, 25, 44, 91, 87, 7510, 54, 14543, 52, 57, 2904, 78, 16, 84, 35, 187, 35, 20, 54, 27684, 18, 75, 44, 88, 680, 35, 89, 18, 29976, 49, 33426, 20, 16, 20722, 11618, 5622, 87, 40, 50198, 35, 89, 12, 24, 55, 12, 73, 46, 71, 57, 6327, 74, 38340, 39, 59, 39, 2300, 579, 34772, 2184, 21, 40, 68, 48, 25, 59, 87, 187, 339, 26, 7083, 4985, 67, 532, 68, 51, 25, 83, 16, 82, 26, 55, 10327, 21, 33319, 88, 25385, 73, 7261, 19, 90, 37, 88, 38, 75, 50, 77, 51, 7282, 76, 50, 18, 7693, 48, 21, 20941, 413, 24, 16568, 80, 14253, 893, 36, 729, 25, 44, 187, 80, 50, 58, 1672, 51, 38212, 18962, 22492, 12408, 59, 46065, 44051, 66, 17, 53, 296, 59, 24867, 40, 25314, 78, 3463, 39, 82, 1288, 5902, 34, 1994, 51, 88, 43996, 58, 12, 88, 82, 36, 20, 54, 39, 76, 12, 46, 29526, 23, 40, 88, 187, 53, 11316, 50, 48, 20, 90, 2267, 22351, 453, 66, 19805, 20168, 23, 13401, 34, 66, 3953, 69, 48, 75, 83, 58, 41, 82, 10249, 5039, 57, 30217, 17, 67, 1440, 20, 87, 44, 2025, 55, 22, 57, 89, 17, 75, 2331, 86, 48, 68, 2648, 25, 187, 74, 18, 51, 22, 52, 17, 68, 45, 84, 59, 78, 19, 75, 21, 76, 34772, 25, 78, 57, 86, 36, 87, 57, 39297, 86, 82, 16, 56, 72, 5077, 19603, 34554, 6217, 9492, 22098, 18, 88, 6072, 2598, 25, 37, 88, 40, 19, 42, 187, 7040, 8112, 16449, 43184, 1703, 4653, 44882, 25111, 7040, 187 ]
Bag Attributes localKeyID: 05 3C 6A 9D 6D EC A0 FA 2F AE 41 32 0D 24 3A 21 34 F6 08 15 subject=/C=US/ST=Maryland/L=Forest Hill/O=The Apache Software Foundation/OU=Apache Thrift/CN=localhost/[email protected] issuer=/C=US/ST=Maryland/L=Forest Hill/O=The Apache Software Foundation/OU=Apache Thrift/CN=localhost/[email protected] -----BEGIN CERTIFICATE----- MIIDVDCCAjwCAQEwDQYJKoZIhvcNAQEFBQAwgbExCzAJBgNVBAYTAlVTMREwDwYD VQQIDAhNYXJ5bGFuZDEUMBIGA1UEBwwLRm9yZXN0IEhpbGwxJzAlBgNVBAoMHlRo ZSBBcGFjaGUgU29mdHdhcmUgRm91bmRhdGlvbjEWMBQGA1UECwwNQXBhY2hlIFRo cmlmdDESMBAGA1UEAwwJbG9jYWxob3N0MSQwIgYJKoZIhvcNAQkBFhVkZXZAdGhy aWZ0LmFwYWNoZS5vcmcwHhcNMTQwNDA3MTkwMDMzWhcNMTUwNDA3MTkwMDMzWjCB sTELMAkGA1UEBhMCVVMxETAPBgNVBAgMCE1hcnlsYW5kMRQwEgYDVQQHDAtGb3Jl c3QgSGlsbDEnMCUGA1UECgweVGhlIEFwYWNoZSBTb2Z0d2FyZSBGb3VuZGF0aW9u MRYwFAYDVQQLDA1BcGFjaGUgVGhyaWZ0MRIwEAYDVQQDDAlsb2NhbGhvc3QxJDAi BgkqhkiG9w0BCQEWFWRldkB0aHJpZnQuYXBhY2hlLm9yZzCBnzANBgkqhkiG9w0B AQEFAAOBjQAwgYkCgYEArrM2HiTf5LT1Qh1JAALWUlJxVJNc1uC8//wZIW8Ekk6z H2XkrAOW8Cs7rVfz6Q+x00q7xSH825v9RL6pv4l7sPDSGK5lvc+WkTxDpiR2EjIm uWStUzCRq7EXhV50pUno6MFABVtqpRP87TiE1l7Yb8S33v+gAVdsrpJewYIDwWcC AwEAATANBgkqhkiG9w0BAQUFAAOCAQEAbGjHLamDm1FQpgatYiZ/ic7Z8DFB+CJo FcZH4hww27BD/WpQLsj6T1540B35hsmZ73yev4xgLybc/SEIducT9BHyc1DrDZtf CFeSq6OOJu/1pJZ9m/d0i+sBJaWg5w1yT8+aEKJaWYfF+C9jZ6+3+I9agID5OplE Wwwzg3xXllz3jfmtNlc0f+hE1/XLWFE2nY+5cBhlxReWH3HAhU/qZL9n/WdxCjHd NyeWxlDlmzc2+uOeVF5sIGzFOj/qjGxc+UyUXaaEuSvh7j3rvYlZtnhvhJ+tMkoR Kbxl1VUYxx+jzfhBy+bKu5uGZB3F1qtyY9fI5DQut75nNbueQPG+qw== -----END CERTIFICATE----- Bag Attributes localKeyID: 05 3C 6A 9D 6D EC A0 FA 2F AE 41 32 0D 24 3A 21 34 F6 08 15 Key Attributes: <No Attributes> -----BEGIN ENCRYPTED PRIVATE KEY----- MIICxjBABgkqhkiG9w0BBQ0wMzAbBgkqhkiG9w0BBQwwDgQIWyeYAGRBWvwCAggA MBQGCCqGSIb3DQMHBAjXHlBG+NmWDwSCAoBRgIb2Ni8qGhruYW7BiKMlVKPnDdnr sMgSTgzelwALUazd59B7pA1mdCVazTZ2bqPZYJ0vRomnu4uosn24sXSNwdYg7pJd CRnttE2BGlxC4PqFrVM1J7oO5Tfno1rrXVsRi0J4Qr6Gtj5xwZRZiGnLGtnQ9G/X TsRtNH/pNRncmu+20xmTC2F8Es8q//4sco5YeEclcmcBr7goO+TusIH3ghlf0jbd M9oTvEG7WY3lSarhZp4QYlWWkGfGfkd7rP3yxhLChijdVEOLL6gftDOs0ALBntAR NYeSxFoyTEBCz8F+WjVt7QQzAyRNSKNDI8qMxMm/KDKaE92hS76K8PcBlbdy118s LfHNb3v/v4WFdjmRJqPdWx5x3cTwGWwOF4MqZd9+Xn+/isu8SfQd2WmSm2qawbQP BrjoQSuUQrZyL5AQmFKkdQ875fLfNw3I2ckhpgMi+WCWx11/8k2dYZoP9VTZ1/yT l32FM4unt7wafU0vUU2tPcsEq4STdwWR5Q4FBPF3JRiMiNy8KzvFeUtnSX08m/sB B3Uiw1jKwwoBx1gfPpq3/UBvmBlvGmwBx+7V+hMfXBAiIoFZFAMruWVgo4GcO8Zv se9crOObipcR8r/q9VOF4OlwCyhkl2yDwEjQlRBPkQ1cpO4FWke7VAoRRtaCov8K oQYExRwc141jjhlZvkXIa0TstZpHGZZmByFqbrpcAhyRwDJY+wqC3UFk+MALT6Gw TcbQO3yIIAzfeaMYkw6isiAa94dOjrYHqOKAbXrw0btt3vKETV5Xx0jognuOcCC8 i1R5S0cLsZm2j4kWV8mXuCvXkvuq/WgPC162+/GRrhEp1wCsSo8DwG2I -----END ENCRYPTED PRIVATE KEY-----
214,382
Github
[ 5656, 8720, 374, 4637, 187, 187, 1231, 15917, 642, 4320, 3570, 281, 253, 2933, 53, 8720, 283, 262, 310, 4751, 275, 253, 1345, 5028, 15, 187, 1145, 2060, 390, 2567, 778, 513, 5913, 597, 5730, 342, 2603, 2127, 5939, 187, 3113, 2933, 53, 8720, 390, 253, 2127, 4561, 407, 2933, 53, 8720, 13, 1690, 253, 24319, 273, 187, 5656, 8720, 13, 390, 697, 3453, 13, 715, 764, 254, 474, 3694, 15, 187, 187, 1231, 11907, 4212, 281, 1287, 3694, 342, 2933, 53, 8720, 15, 1723, 13, 359, 513, 1642, 326, 187, 44689, 310, 1677, 281, 441, 323, 6684, 2933, 53, 8720, 15, 2896, 346, 44689, 995, 359, 1599, 326, 604, 368, 187, 2327, 2933, 53, 8720, 390, 19071, 667, 2603, 2127, 715, 581, 273, 634, 5659, 313, 37763, 187, 7509, 13, 2561, 2199, 13, 390, 5010, 10, 326, 368, 14409, 436, 958, 9366, 187, 249, 253, 10097, 13, 2561, 1304, 13, 3966, 1051, 1310, 368, 751, 2933, 53, 8720, 285, 452, 3715, 187, 66, 5322, 4968, 342, 253, 3453, 13, 4496, 3748, 326, 368, 3715, 352, 970, 2933, 53, 8720, 15, 187, 688, 1635, 13, 359, 1642, 326, 253, 20546, 3464, 15282, 275, 776, 2603, 2127, 15, 1284, 187, 5056, 347, 841, 9600, 403, 4934, 13, 359, 1902, 281, 4035, 22474, 436, 985, 187, 395, 1902, 281, 1056, 643, 5657, 2130, 347, 597, 403, 6312, 15, 187 ]
ANTLR 2 License We reserve no legal rights to the ANTLR--it is fully in the public domain. An individual or company may do whatever they wish with source code distributed with ANTLR or the code generated by ANTLR, including the incorporation of ANTLR, or its output, into commerical software. We encourage users to develop software with ANTLR. However, we do ask that credit is given to us for developing ANTLR. By "credit", we mean that if you use ANTLR or incorporate any source code into one of your programs (commercial product, research project, or otherwise) that you acknowledge this fact somewhere in the documentation, research report, etc... If you like ANTLR and have developed a nice tool with the output, please mention that you developed it using ANTLR. In addition, we ask that the headers remain intact in our source code. As long as these guidelines are kept, we expect to continue enhancing this system and expect to make other tools available as they are completed.
214,383
Github
[ 12723, 8283, 313, 68, 10, 4748, 12658, 781, 20709, 16240, 187, 12723, 187, 12723, 40078, 310, 20585, 7169, 13, 1959, 273, 4179, 13, 281, 667, 1436, 13546, 247, 187, 12723, 3491, 273, 436, 3694, 285, 2330, 10097, 4367, 313, 783, 346, 31495, 8375, 187, 12723, 281, 2968, 275, 253, 9107, 1293, 12400, 13, 1690, 1293, 12291, 187, 12723, 253, 3570, 281, 897, 13, 3491, 13, 10007, 13, 17310, 13, 15452, 13, 16969, 13, 749, 21997, 13, 187, 12723, 285, 16, 263, 5580, 10125, 273, 253, 9107, 13, 285, 281, 9659, 7732, 281, 5207, 253, 187, 12723, 9107, 310, 25032, 281, 513, 594, 13, 2256, 281, 253, 1563, 2515, 27, 187, 12723, 187, 12723, 380, 1840, 9451, 4366, 285, 436, 9214, 4366, 3091, 320, 2908, 275, 187, 12723, 512, 10125, 390, 6832, 11821, 273, 253, 9107, 15, 187, 12723, 187, 12723, 25373, 347, 6221, 275, 436, 4366, 13, 253, 1416, 9, 84, 10, 273, 253, 1840, 9451, 187, 12723, 26160, 3091, 417, 320, 908, 275, 12089, 390, 5010, 281, 8591, 253, 7289, 13, 187, 12723, 897, 390, 643, 42331, 275, 436, 9107, 1293, 2720, 3542, 26239, 15, 187, 12723, 187, 12723, 3003, 19295, 4110, 33278, 346, 1719, 4110, 995, 15002, 23181, 3481, 9103, 19329, 13, 31643, 4145, 187, 12723, 25900, 13, 31877, 17706, 5803, 25666, 5935, 3003, 15466, 3481, 20863, 13, 187, 12723, 20524, 6651, 329, 20383, 20103, 4889, 36429, 1042, 6764, 2637, 17260, 15, 50276, 1042, 7651, 30609, 32221, 187, 12723, 3003, 31501, 16902, 4145, 28827, 43227, 8728, 34745, 6651, 9103, 46533, 13, 32024, 4145, 19359, 187, 12723, 27255, 13, 33206, 2949, 2933, 37457, 3481, 32833, 13, 34915, 4145, 35497, 13, 34984, 187, 12723, 10727, 13, 16341, 3481, 4145, 2949, 42867, 8286, 9277, 3003, 19295, 4145, 3003, 19226, 4145, 19359, 187, 12723, 49731, 19212, 2949, 3003, 19295, 15, 187, 187, 4, 2, 83, 23, 2967, 187, 9, 17921, 313, 18356, 11125, 1163, 1731, 2624, 10, 187, 50276, 9, 15035, 2624, 20295, 10, 187, 50276, 9, 2948, 187, 50275, 9, 7483, 313, 30930, 2967, 10, 3346, 795, 3135, 4853, 14, 40221, 16144, 14, 25553, 29331, 3135, 1339, 187, 50269, 18788, 187, 50269, 10, 187, 50275, 9, 7483, 313, 18356, 11125, 3055, 2486, 10, 2486, 16, 31327, 10, 187, 10, 187, 50276, 187, 50276, 9, 3709, 16, 31327, 5550, 18356, 11125, 3, 346, 1731, 2807, 346, 7317, 15, 1026, 78, 2807, 50276, 187, 10, 187 ]
;; Copyright (c) 2009 Derick Eddington ;; ;; Permission is hereby granted, free of charge, to any person obtaining a ;; copy of this software and associated documentation files (the "Software"), ;; to deal in the Software without restriction, including without limitation ;; the rights to use, copy, modify, merge, publish, distribute, sublicense, ;; and/or sell copies of the Software, and to permit persons to whom the ;; Software is furnished to do so, subject to the following conditions: ;; ;; The above copyright notice and this permission notice shall be included in ;; all copies or substantial portions of the Software. ;; ;; Except as contained in this notice, the name(s) of the above copyright ;; holders shall not be used in advertising or otherwise to promote the sale, ;; use or other dealings in this Software without prior written authorization. ;; ;; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR ;; IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, ;; FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL ;; THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER ;; LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING ;; FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER ;; DEALINGS IN THE SOFTWARE. #!r6rs (library (srfi :26 cut) (export cut cute) (import (only (rnrs) ... _ begin define-syntax syntax-rules lambda begin let apply ) (only (srfi private include) include/resolve) ) (include/resolve ("srfi" "26") "cut.scm") )
214,384
Github
[ 605, 8283, 313, 68, 10, 4050, 380, 26595, 1514, 26940, 15, 1876, 3570, 10827, 15, 187, 605, 7890, 273, 436, 2603, 2127, 310, 17886, 407, 247, 32327, 14, 4826, 7981, 326, 476, 320, 187, 605, 1119, 275, 253, 21826, 1873, 15, 187, 4, 3709, 346, 22127, 16, 28908, 64, 5397, 16, 28908, 64, 5397, 64, 10613, 64, 20649, 15, 73, 3, 187, 187, 4, 3709, 654, 8400, 565, 15, 73, 31, 187, 187, 4, 3709, 654, 41528, 31, 187, 4, 3709, 654, 2703, 31, 187, 4, 3709, 654, 11000, 31, 187, 187, 4, 3709, 346, 4793, 16, 13245, 15, 73, 3, 187, 4, 3709, 346, 4793, 16, 24594, 64, 3550, 15, 73, 3, 187, 4, 3709, 346, 4793, 16, 12428, 15, 73, 3, 187, 4, 3709, 346, 4793, 16, 12432, 2921, 15, 73, 3, 187, 4, 3709, 346, 4793, 16, 20199, 64, 11972, 64, 14605, 64, 28971, 15, 73, 3, 187, 4, 3709, 346, 4793, 16, 27329, 16, 2703, 64, 8906, 15, 73, 3, 187, 4, 3709, 346, 4793, 16, 8858, 15, 73, 3, 187, 4, 3709, 346, 22127, 16, 6071, 64, 17494, 16, 6443, 16, 28197, 16, 6071, 64, 17494, 64, 18833, 15, 73, 3, 187, 4, 3709, 346, 22127, 16, 6071, 64, 17494, 16, 6443, 16, 9784, 16, 6071, 64, 17494, 15, 73, 3, 187, 4, 3709, 346, 22127, 16, 11499, 84, 16, 11499, 64, 4168, 64, 1747, 382, 23537, 15, 73, 3, 187, 4, 3709, 346, 22127, 16, 11499, 84, 16, 11499, 64, 14360, 15, 73, 3, 187, 4, 3709, 346, 22127, 16, 11499, 84, 16, 11499, 64, 31007, 64, 19583, 15, 73, 3, 187, 4, 3709, 346, 22127, 16, 11499, 84, 16, 11499, 64, 10613, 15, 73, 3, 187, 4, 3709, 346, 22127, 16, 28908, 64, 5397, 16, 28908, 64, 5397, 64, 11499, 84, 15, 73, 3, 187, 4, 3709, 346, 22127, 16, 28908, 64, 5397, 16, 28908, 64, 5397, 64, 2140, 27539, 15, 73, 3, 187, 4, 3709, 346, 3024, 16, 28908, 16, 28908, 64, 42681, 64, 42877, 64, 7886, 15, 73, 3, 187, 4, 3709, 346, 3024, 16, 28908, 16, 28908, 64, 5397, 64, 10613, 15, 73, 3, 187, 187, 12361, 2613, 551, 187, 2437, 19757, 11589, 13264, 34102, 28, 187, 94, 187, 187, 12361, 551, 187, 187, 605, 1716, 31332, 247, 5552, 3902, 273, 4605, 15888, 715, 247, 4972, 273, 11559, 15, 6101, 23409, 187, 605, 534, 2550, 320, 11516, 588, 320, 37001, 15, 187, 8400, 1450, 11000, 29, 8400, 1450, 2703, 31, 5552, 3902, 21395, 15219, 9, 3474, 2613, 1450, 2765, 3902, 11, 1318, 10, 551, 187, 50276, 8400, 1450, 11000, 29, 8400, 1450, 2703, 31, 1543, 28, 187, 50276, 16680, 15, 373, 4003, 9, 2877, 1168, 3633, 5496, 6020, 187, 50276, 8400, 1450, 2703, 256, 28, 187, 50276, 1542, 313, 4793, 1450, 2765, 3902, 1450, 3474, 64, 17828, 352, 426, 1318, 1168, 2043, 1874, 352, 3613, 1318, 1168, 423, 1874, 187, 50271, 3424, 262, 10, 551, 187, 50274, 338, 6522, 9672, 262, 18474, 3633, 1909, 2776, 6395, 84, 1228, 187, 50272, 25674, 28, 187, 50274, 16680, 15, 11340, 64, 2135, 9, 84, 558, 187, 50276, 94, 187, 50276, 2309, 1543, 28, 187, 94, 187, 187, 605, 32018, 265, 247, 4972, 273, 39175, 18880, 11559, 13, 10884, 247, 20045, 4972, 187, 605, 4508, 253, 6944, 27243, 16, 29699, 39175, 49130, 15, 914, 35477, 16, 25359, 187, 605, 39175, 49130, 588, 320, 12841, 15, 187, 8400, 1450, 11000, 29, 8531, 1036, 64, 85, 31, 35592, 36, 6894, 52, 2338, 265, 9, 187, 50274, 3474, 6268, 1450, 11000, 29, 8400, 1450, 2703, 12399, 39175, 64, 27329, 10, 551, 187, 50276, 8400, 1450, 11000, 29, 8531, 1036, 64, 85, 31, 39175, 64, 46522, 265, 28, 187, 50276, 42681, 64, 46522, 265, 15, 373, 4003, 9, 42681, 64, 27329, 15, 3281, 6020, 535, 50276, 1542, 313, 8400, 1450, 11000, 29, 8400, 1450, 2703, 14157, 3474, 64, 17828, 352, 426, 39175, 64, 27329, 15, 2043, 1874, 187, 50271, 262, 3613, 39175, 64, 27329, 15, 423, 1874, 12996, 262, 10, 551, 187, 50274, 8531, 1036, 64, 85, 39175, 64, 42877, 426, 470, 28, 187, 50274, 338, 6522, 3024, 1450, 21962, 3528, 7988, 6894, 2776, 9672, 262, 13, 708, 42681, 64, 42877, 1228, 551, 187, 50272, 21273, 9, 12641, 10, 5291, 346, 25424, 4263, 440, 35477, 390, 440, 35422, 494, 39175, 18880, 27, 346, 5291, 475, 262, 28, 187, 50272, 25674, 28, 187, 50274, 94, 187, 50274, 42681, 64, 46522, 265, 15, 11340, 64, 2135, 9, 42681, 64, 42877, 558, 187, 50276, 94, 187, 50276, 8400, 1450, 15227, 9, 42681, 64, 46522, 265, 15, 2043, 5715, 39175, 64, 46522, 265, 15, 423, 6020, 187, 50276, 2309, 39175, 64, 46522, 265, 28, 187, 94, 187, 187, 605, 16548, 253, 27243, 7241, 2715, 313, 284, 247, 4770, 1036, 64, 85, 10, 6607, 407, 247, 2876, 15, 187, 605, 16548, 470, 604, 253, 2876, 310, 12078, 15, 187, 8531, 1036, 64, 85, 27243, 26692, 8893, 34874, 9, 3474, 6268, 1450, 2703, 7, 2715, 64, 1344, 10, 551, 187, 50276, 8531, 1036, 64, 85, 2715, 426, 470, 28, 50276, 605, 33142, 15, 187, 50276, 338, 313, 4149, 64, 1344, 2295, 20994, 1450, 76, 21156, 8893, 29699, 87, 18, 10, 551, 187, 50274, 4149, 426, 2036, 1450, 21156, 64, 39129, 3231, 3271, 64, 17037, 64, 29699, 18, 28, 187, 50276, 94, 2010, 604, 313, 4149, 64, 1344, 2295, 20994, 1450, 76, 21156, 8893, 29699, 87, 883, 10, 551, 187, 50274, 4149, 426, 2036, 1450, 21156, 64, 39129, 3231, 3271, 64, 17037, 64, 29699, 18, 64, 18, 28, 187, 50276, 94, 2010, 604, 313, 4149, 64, 1344, 2295, 20994, 1450, 76, 21156, 8893, 29699, 87, 805, 10, 551, 187, 50274, 4149, 426, 2036, 1450, 21156, 64, 39129, 3231, 3271, 64, 17037, 64, 29699, 18, 64, 19, 28, 187, 50276, 94, 187, 50276, 2309, 2715, 28, 187, 94, 187, 187, 3474, 2613, 1450, 27260, 465, 37, 1922, 36, 532, 3398, 27260, 92, 187, 50274, 3, 37, 1922, 36, 532, 3398, 995, 2613, 1450, 12297, 40668, 64, 15857, 2925, 23167, 64, 15012, 64, 25409, 13, 187, 4718, 187, 187, 94, 50276, 605, 12953, 187, 187, 37446, 9032, 187, 605, 50276, 21156, 6155, 7456, 14868, 187, 187, 605, 743, 27243, 6155, 7456, 534, 10111, 247, 37164, 2715, 273, 253, 1655, 27243, 6155, 187, 605, 638, 3671, 13, 534, 403, 9300, 407, 27243, 6155, 7456, 8224, 14868, 672, 253, 638, 3671, 187, 605, 1818, 15, 187, 2437, 27243, 6155, 7456, 14868, 1163, 1345, 2036, 1450, 21156, 6155, 7456, 551, 187, 1345, 27, 187, 50276, 911, 20692, 27243, 6155, 7456, 14868, 9, 187, 50272, 3474, 660, 11802, 64, 709, 4773, 29, 4793, 1450, 21822, 11589, 13264, 34102, 12399, 17908, 64, 14605, 64, 28971, 558, 535, 50276, 605, 16106, 27243, 3596, 7533, 275, 1040, 5397, 93, 15, 19680, 760, 320, 1925, 432, 19698, 6293, 15, 187, 50276, 4353, 5057, 21156, 6155, 9, 3024, 1450, 21156, 6155, 11, 3596, 10, 12970, 28, 535, 3055, 27, 187, 50276, 605, 32664, 253, 638, 71, 5381, 5316, 281, 5731, 776, 4812, 1375, 15, 187, 50276, 8471, 966, 27243, 6155, 7456, 8224, 14868, 28, 535, 50276, 95, 21156, 6155, 7456, 14868, 1082, 12970, 12166, 535, 50276, 605, 831, 1332, 310, 9269, 281, 253, 19698, 6293, 432, 253, 9882, 6293, 281, 4459, 253, 187, 50276, 605, 747, 3596, 1491, 15, 187, 50276, 4353, 6618, 4257, 21156, 6155, 9, 3474, 2036, 1450, 21156, 6155, 7, 747, 64, 5397, 558, 535, 50276, 605, 330, 2729, 1318, 273, 638, 3671, 13, 943, 760, 320, 19197, 432, 19698, 6293, 15, 187, 50276, 3024, 1450, 21156, 6155, 37164, 64, 5397, 17540, 535, 50276, 1026, 11802, 64, 709, 4773, 29, 4793, 1450, 21822, 11589, 13264, 34102, 31, 17908, 64, 14605, 64, 28971, 17540, 535, 50276, 15857, 5626, 4290, 64, 49617, 64, 5543, 64, 7810, 13003, 9, 21156, 6155, 7456, 14868, 558, 187, 4718, 187, 187, 21156, 6155, 7456, 14868, 1450, 21156, 6155, 7456, 14868, 9, 187, 50274, 3474, 660, 11802, 64, 709, 4773, 29, 4793, 1450, 21822, 11589, 13264, 34102, 12399, 17908, 64, 14605, 64, 28971, 10, 187, 50274, 27, 17908, 64, 14605, 64, 28971, 18284, 900, 64, 14605, 64, 28971, 10, 12166, 187, 187, 4353, 27243, 6155, 7456, 14868, 1450, 3633, 21156, 6155, 9, 3024, 1450, 21156, 6155, 11, 3596, 10, 551, 187, 50276, 9151, 12181, 9, 900, 64, 14605, 64, 28971, 31547, 15343, 23750, 1992, 10605, 11589, 6020, 187, 50276, 11, 5397, 426, 37164, 64, 5397, 17540, 187, 94, 187, 187, 4353, 27243, 6155, 7456, 14868, 1450, 4531, 4257, 21156, 6155, 9, 3474, 2036, 1450, 21156, 6155, 7, 747, 64, 5397, 10, 551, 187, 50276, 3024, 1450, 21156, 6155, 2062, 64, 5397, 426, 37164, 64, 5397, 17540, 187, 50276, 45438, 64, 5397, 64, 426, 747, 64, 5397, 28, 187, 50276, 12919, 6155, 11241, 9, 28474, 64, 5397, 13, 747, 64, 5397, 558, 187, 94, 187, 187, 37446, 9032, 187, 605, 50276, 21156, 6155, 7456, 8224, 14868, 187, 187, 605, 380, 7205, 323, 5877, 285, 22753, 271, 27243, 6155, 7456, 14868, 4227, 15, 187, 2437, 27243, 6155, 7456, 8224, 14868, 1163, 1345, 256, 3433, 64, 5397, 1450, 21156, 6155, 7456, 8224, 551, 187, 1345, 27, 187, 50276, 21156, 6155, 7456, 8224, 14868, 9, 187, 50272, 14868, 7456, 11, 1980, 64, 3409, 13, 187, 50272, 3474, 660, 11802, 64, 709, 4773, 29, 4793, 1450, 21822, 11589, 13264, 34102, 12399, 17908, 64, 14605, 64, 28971, 558, 187, 50276, 95, 21156, 6155, 7456, 8224, 14868, 1082, 12970, 12166, 535, 50276, 605, 13106, 1980, 64, 3409, 27243, 17971, 15, 187, 50276, 4659, 2991, 13106, 14868, 84, 9, 14868, 36169, 21595, 11, 23595, 558, 535, 50276, 3024, 1450, 21156, 6155, 7456, 11, 5057, 1082, 12970, 28, 535, 3055, 27, 187, 50276, 605, 9368, 2135, 323, 14682, 2544, 15, 50276, 1552, 588, 1501, 253, 2544, 281, 253, 19698, 187, 50276, 605, 6293, 342, 6618, 4257, 21156, 6155, 15, 187, 50276, 4353, 1623, 7420, 1793, 17196, 9, 14868, 7456, 11, 638, 3671, 13, 1030, 6268, 1450, 2703, 7, 638, 71, 64, 1590, 558, 535, 50276, 605, 16106, 27243, 3596, 7533, 275, 1040, 5397, 93, 13, 3587, 432, 253, 17971, 15, 19680, 187, 50276, 605, 760, 320, 1925, 432, 12693, 6293, 15, 187, 50276, 4353, 5057, 21156, 6155, 4509, 14868, 84, 9, 3024, 1450, 21156, 6155, 11, 3596, 558, 535, 50276, 605, 12639, 265, 2544, 281, 253, 13603, 39175, 49130, 14682, 13, 22753, 253, 187, 50276, 605, 37164, 1618, 273, 36838, 27243, 16, 29699, 39175, 49130, 326, 403, 13603, 15, 187, 50276, 4353, 1623, 47703, 36, 6894, 52, 2338, 265, 13086, 9, 14868, 7456, 11, 1980, 64, 3409, 558, 535, 50276, 14868, 13086, 5785, 382, 23537, 1980, 64, 3409, 64, 4168, 64, 1747, 382, 23537, 17540, 535, 50276, 605, 380, 1980, 64, 3409, 638, 3671, 313, 11425, 760, 320, 19197, 432, 12693, 6293, 10, 187, 50276, 25035, 14868, 20226, 3585, 64, 47009, 64, 22331, 17540, 187, 50276, 25035, 14868, 20226, 3585, 64, 47009, 64, 17354, 64, 6790, 64, 3903, 641, 17540, 187, 50276, 2776, 14868, 20226, 256, 3433, 64, 4149, 64, 1222, 17540, 187, 50276, 2776, 14868, 20226, 256, 3433, 64, 4149, 64, 4090, 17540, 187, 50276, 25035, 14868, 20226, 277, 248, 64, 22331, 17540, 535, 50276, 605, 380, 37164, 1618, 273, 13603, 27243, 39175, 49130, 15, 187, 50276, 8400, 1450, 11000, 29, 8531, 1036, 64, 85, 31, 13603, 64, 42681, 64, 46522, 265, 17540, 535, 50276, 1026, 11802, 64, 709, 4773, 29, 21156, 6155, 7456, 14868, 31, 256, 3433, 64, 5397, 64, 10613, 17540, 535, 50276, 1026, 11802, 64, 709, 4773, 29, 4793, 1450, 21822, 11589, 13264, 34102, 31, 17908, 64, 14605, 64, 28971, 17540, 535, 50276, 15857, 5626, 4290, 64, 49617, 64, 5543, 64, 7810, 13003, 9, 21156, 6155, 7456, 8224, 14868, 558, 187, 4718, 187, 187, 21156, 6155, 7456, 8224, 14868, 1450, 21156, 6155, 7456, 8224, 14868, 9, 187, 50274, 14868, 7456, 11, 1980, 64, 3409, 13, 187, 50274, 3474, 660, 11802, 64, 709, 4773, 29, 4793, 1450, 21822, 11589, 13264, 34102, 12399, 17908, 64, 14605, 64, 28971, 10, 187, 50274, 27, 256, 3433, 64, 5397, 64, 10613, 18284, 1826, 27243, 6155, 7456, 14868, 9, 900, 64, 14605, 64, 28971, 9679, 187, 50272, 900, 64, 14605, 64, 28971, 18284, 900, 64, 14605, 64, 28971, 10, 551, 187, 50276, 9151, 12181, 9, 6790, 64, 3409, 558, 535, 50276, 605, 11726, 410, 399, 1922, 14, 3169, 260, 532, 3398, 604, 11410, 3066, 3386, 15, 187, 50276, 605, 24202, 9, 34926, 301, 7564, 2262, 20004, 436, 672, 253, 8570, 556, 17288, 15, 187, 50276, 605, 5987, 1358, 7083, 7700, 15, 681, 16, 23, 746, 19332, 15, 187, 50276, 338, 313, 4793, 1450, 27260, 2765, 1450, 2513, 19157, 9, 76, 37, 1922, 36, 532, 3398, 27260, 1228, 551, 187, 50274, 6790, 64, 3409, 1168, 4531, 9671, 14868, 3902, 9, 28908, 64, 5397, 1450, 11499, 84, 1450, 76, 37, 1922, 19157, 13, 187, 50254, 50265, 1826, 2613, 1450, 22624, 27569, 3902, 9, 5672, 4027, 187, 50276, 94, 535, 50276, 14868, 13086, 5785, 382, 23537, 1450, 37195, 13086, 18229, 1980, 64, 3409, 64, 20104, 426, 187, 50272, 4793, 1450, 29008, 6395, 21156, 6155, 7456, 8224, 14868, 1450, 2374, 7420, 1793, 17196, 13, 187, 50261, 4793, 1450, 2447, 1221, 1243, 9, 2520, 582, 1980, 64, 3409, 558, 535, 50276, 15079, 64, 47009, 64, 22331, 4414, 10828, 9, 28908, 64, 5397, 1450, 11499, 84, 1450, 76, 23940, 7498, 4341, 9063, 272, 19157, 13, 187, 50254, 50273, 6790, 64, 3409, 13, 1980, 64, 3409, 64, 20104, 558, 187, 50276, 15079, 64, 47009, 64, 17354, 64, 6790, 64, 3903, 641, 4414, 10828, 9, 187, 50272, 28908, 64, 5397, 1450, 11499, 84, 1450, 76, 23940, 7498, 4341, 9063, 272, 28463, 12599, 1145, 348, 641, 13, 187, 50272, 6790, 64, 3409, 13, 1980, 64, 3409, 64, 20104, 558, 187, 50276, 28908, 64, 4149, 64, 1222, 4414, 10828, 9, 28908, 64, 5397, 1450, 11499, 84, 1450, 76, 21156, 8893, 10292, 13, 1980, 64, 3409, 13, 187, 50254, 6790, 64, 3409, 64, 20104, 558, 187, 50276, 28908, 64, 4149, 64, 4090, 4414, 10828, 9, 28908, 64, 5397, 1450, 11499, 84, 1450, 76, 21156, 8893, 9684, 13, 1980, 64, 3409, 13, 187, 50254, 6790, 64, 3409, 64, 20104, 558, 187, 50276, 69, 248, 64, 22331, 4414, 10828, 9, 28908, 64, 5397, 1450, 11499, 84, 1450, 76, 37, 1922, 19157, 13, 1980, 64, 3409, 13, 187, 50258, 6790, 64, 3409, 64, 20104, 558, 535, 50276, 6790, 64, 3409, 64, 4168, 64, 1747, 382, 23537, 4414, 10828, 9, 6790, 64, 3409, 558, 187, 50276, 6790, 64, 3409, 64, 4168, 64, 1747, 382, 23537, 4414, 4717, 9, 28908, 64, 5397, 1450, 11499, 84, 1450, 76, 36, 6894, 40631, 15383, 3550, 13, 187, 50254, 50266, 6790, 64, 3409, 64, 20104, 558, 535, 50276, 2374, 47703, 36, 6894, 52, 2338, 265, 13086, 9, 6790, 64, 3409, 558, 535, 50276, 605, 39504, 432, 12693, 6293, 15, 50276, 1552, 310, 8261, 347, 627, 10095, 626, 320, 2712, 327, 187, 50276, 605, 253, 19698, 6293, 2820, 281, 2289, 352, 2568, 15, 187, 50276, 3633, 21156, 6155, 4509, 14868, 84, 6395, 28908, 64, 5397, 64, 10613, 31547, 45438, 64, 5397, 39133, 187, 94, 187, 187, 605, 4228, 187, 4353, 27243, 6155, 7456, 8224, 14868, 1450, 16601, 14868, 84, 9, 14868, 36169, 21595, 11, 23595, 10, 551, 187, 50276, 3024, 1450, 21156, 6155, 4284, 64, 5397, 28, 187, 50276, 31007, 1168, 16601, 25035, 14868, 9, 187, 50272, 28908, 64, 5397, 1450, 11499, 84, 1450, 76, 23940, 7498, 4341, 9063, 272, 19157, 13, 187, 50272, 6986, 64, 5397, 15, 15079, 64, 47009, 64, 22331, 558, 187, 50276, 31007, 1168, 16601, 25035, 14868, 9, 187, 50272, 28908, 64, 5397, 1450, 11499, 84, 1450, 76, 23940, 7498, 4341, 9063, 272, 28463, 12599, 1145, 348, 641, 13, 187, 50272, 6986, 64, 5397, 15, 15079, 64, 47009, 64, 17354, 64, 6790, 64, 3903, 641, 558, 187, 50276, 31007, 1168, 16601, 2776, 14868, 9, 28908, 64, 5397, 1450, 11499, 84, 1450, 76, 21156, 8893, 10292, 13, 187, 50254, 50271, 8400, 1450, 2703, 6020, 187, 50276, 31007, 1168, 16601, 2776, 14868, 9, 28908, 64, 5397, 1450, 11499, 84, 1450, 76, 21156, 8893, 9684, 13, 187, 50254, 50271, 8400, 1450, 2703, 6020, 187, 50276, 31007, 1168, 16601, 2765, 14868, 9, 28908, 64, 5397, 1450, 11499, 84, 1450, 76, 36, 6894, 40631, 15383, 3550, 558, 187, 50276, 31007, 1168, 16601, 25035, 14868, 9, 28908, 64, 5397, 1450, 11499, 84, 1450, 76, 37, 1922, 19157, 13, 187, 50254, 50270, 6986, 64, 5397, 15, 69, 248, 64, 22331, 558, 187, 94, 187, 187, 3024, 1450, 21156, 6155, 7456, 11, 27243, 6155, 7456, 8224, 14868, 1450, 3633, 1082, 551, 187, 50276, 2309, 256, 3433, 64, 5397, 64, 10613, 4414, 788, 1874, 187, 94, 187, 187, 4353, 27243, 6155, 7456, 8224, 14868, 1450, 2374, 7420, 1793, 17196, 9, 187, 50274, 14868, 7456, 11, 638, 3671, 13, 187, 50274, 3474, 6268, 1450, 2703, 7, 638, 71, 64, 1590, 64, 249, 10, 551, 187, 50276, 9151, 12181, 9, 11499, 84, 558, 187, 50276, 338, 313, 11499, 64, 1590, 64, 249, 2295, 256, 3433, 64, 5397, 1450, 11499, 84, 1450, 76, 36, 6894, 40631, 15383, 3550, 10, 187, 50274, 2374, 47703, 36, 6894, 52, 2338, 265, 13086, 9, 11499, 84, 558, 535, 50276, 3024, 1450, 21156, 6155, 747, 64, 5397, 28, 187, 50276, 3633, 21156, 6155, 4509, 14868, 84, 6395, 1826, 64, 5397, 558, 535, 50276, 605, 5779, 247, 4836, 281, 1040, 900, 64, 14075, 93, 342, 253, 747, 6661, 13, 594, 352, 476, 187, 50276, 605, 5731, 1040, 45438, 64, 5397, 64, 93, 15, 187, 50276, 900, 64, 14605, 64, 28971, 31547, 8983, 13264, 9, 22050, 64, 41, 8147, 13, 187, 50254, 50274, 4793, 1450, 29008, 6395, 21156, 6155, 7456, 14868, 1450, 4531, 4257, 21156, 6155, 13, 187, 50254, 50263, 28908, 64, 5397, 64, 10613, 4414, 788, 5715, 747, 64, 5397, 4027, 187, 94, 187, 187, 4353, 27243, 6155, 7456, 8224, 14868, 1450, 3633, 21156, 6155, 4509, 14868, 84, 9, 187, 50274, 3024, 1450, 21156, 6155, 11, 3596, 10, 551, 187, 50276, 605, 3585, 64, 47009, 64, 22331, 369, 20975, 247, 2608, 14, 1178, 2420, 14682, 13, 533, 1024, 187, 50276, 605, 352, 310, 7303, 14, 7483, 15, 187, 50276, 338, 313, 15079, 64, 47009, 64, 22331, 4414, 2513, 49465, 6649, 187, 50274, 5397, 1168, 15079, 64, 47009, 64, 22331, 426, 3585, 64, 47009, 64, 22331, 4414, 3633, 3902, 1874, 187, 50276, 7271, 187, 50274, 5397, 1168, 15079, 64, 47009, 64, 22331, 426, 3221, 28, 187, 50276, 5397, 1168, 15079, 64, 47009, 64, 17354, 64, 6790, 64, 3903, 641, 426, 187, 50272, 15079, 64, 47009, 64, 17354, 64, 6790, 64, 3903, 641, 4414, 3633, 3902, 1874, 187, 50276, 8400, 1450, 2703, 2715, 64, 1222, 64, 1344, 426, 256, 3433, 64, 4149, 64, 1222, 4414, 3633, 3902, 1874, 187, 50276, 8400, 1450, 2703, 2715, 64, 4090, 64, 1344, 426, 256, 3433, 64, 4149, 64, 4090, 4414, 3633, 3902, 1874, 187, 50276, 5397, 1168, 4149, 64, 1222, 426, 2036, 1450, 76, 9671, 21156, 8893, 10292, 28, 187, 50276, 5397, 1168, 4149, 64, 4090, 426, 2036, 1450, 76, 9671, 21156, 8893, 9684, 28, 187, 50276, 8531, 1036, 64, 85, 2715, 64, 1222, 426, 27243, 26692, 8893, 34874, 9, 4149, 64, 1222, 64, 1344, 558, 187, 50276, 8531, 1036, 64, 85, 2715, 64, 4090, 426, 27243, 26692, 8893, 34874, 9, 4149, 64, 4090, 64, 1344, 558, 187, 50276, 338, 313, 4149, 64, 1222, 10, 551, 187, 50274, 5397, 1168, 4149, 64, 1222, 426, 2715, 64, 1222, 28, 187, 50276, 94, 187, 50276, 338, 313, 4149, 64, 4090, 10, 551, 187, 50274, 8531, 1036, 64, 85, 4516, 64, 4149, 64, 4090, 426, 3596, 1168, 4149, 64, 4090, 28, 187, 50274, 5397, 1168, 4149, 64, 4090, 426, 6268, 1450, 1222, 9, 19391, 64, 4149, 64, 4090, 13, 2715, 64, 4090, 558, 187, 50276, 94, 187, 50276, 5397, 1168, 25050, 64, 42681, 64, 46522, 265, 426, 13603, 64, 42681, 64, 46522, 265, 17540, 187, 50276, 5397, 1168, 69, 248, 64, 22331, 426, 277, 248, 64, 22331, 4414, 3633, 3902, 1874, 187, 94, 187, 187, 4353, 27243, 6155, 7456, 8224, 14868, 1450, 2374, 47703, 36, 6894, 52, 2338, 265, 13086, 9, 187, 50274, 14868, 7456, 11, 1980, 64, 3409, 10, 551, 187, 50276, 3474, 2613, 1450, 2765, 3902, 11, 1318, 426, 187, 50272, 6790, 64, 3409, 1168, 3633, 2765, 9, 28908, 64, 5397, 1450, 11499, 84, 1450, 76, 36, 6894, 40631, 15383, 3550, 558, 187, 50276, 25050, 64, 42681, 64, 46522, 265, 64, 426, 35592, 36, 6894, 52, 2338, 265, 9, 2765, 3902, 21395, 15219, 9, 2877, 4027, 187, 94, 187, 187, 37446, 9032, 187, 605, 50276, 21156, 6155, 7456, 8224, 187, 187, 12361, 256, 3433, 64, 5397, 551, 187, 605, 4228, 187, 21156, 6155, 7456, 8224, 11, 27243, 6155, 7456, 8224, 1450, 9395, 9671, 8224, 9, 187, 50274, 14868, 7456, 11, 1980, 64, 3409, 13, 187, 50274, 3474, 660, 11802, 64, 709, 4773, 29, 4793, 1450, 21822, 11589, 13264, 34102, 12399, 17908, 64, 14605, 64, 28971, 10, 551, 187, 50276, 2309, 747, 27243, 6155, 7456, 8224, 14868, 9, 6790, 64, 3409, 13, 17908, 64, 14605, 64, 28971, 558, 187, 94, 187, 187, 605, 4228, 187, 4353, 27243, 6155, 7456, 8224, 1450, 16601, 14868, 84, 9, 14868, 36169, 21595, 11, 23595, 10, 551, 187, 50276, 21156, 6155, 7456, 8224, 14868, 1450, 16601, 14868, 84, 9, 31007, 558, 187, 94, 187, 94, 50276, 605, 12953, 256, 3433, 64, 5397, 187 ]
// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "components/ssl_config/ssl_config_service_manager.h" #include <stdint.h> #include <algorithm> #include <string> #include <vector> #include "base/bind.h" #include "base/feature_list.h" #include "base/location.h" #include "base/macros.h" #include "base/single_thread_task_runner.h" #include "base/strings/string_util.h" #include "base/values.h" #include "components/content_settings/core/browser/content_settings_utils.h" #include "components/content_settings/core/common/content_settings.h" #include "components/prefs/pref_change_registrar.h" #include "components/prefs/pref_member.h" #include "components/prefs/pref_registry_simple.h" #include "components/prefs/pref_service.h" #include "components/ssl_config/ssl_config_prefs.h" #include "components/ssl_config/ssl_config_switches.h" #include "net/ssl/ssl_cipher_suite_names.h" #include "net/ssl/ssl_config_service.h" namespace base { class SingleThreadTaskRunner; } namespace { // Converts a ListValue of StringValues into a vector of strings. Any Values // which cannot be converted will be skipped. std::vector<std::string> ListValueToStringVector(const base::ListValue* value) { std::vector<std::string> results; results.reserve(value->GetSize()); std::string s; for (base::ListValue::const_iterator it = value->begin(); it != value->end(); ++it) { if (!(*it)->GetAsString(&s)) continue; results.push_back(s); } return results; } // Parses a vector of cipher suite strings, returning a sorted vector // containing the underlying SSL/TLS cipher suites. Unrecognized/invalid // cipher suites will be ignored. std::vector<uint16_t> ParseCipherSuites( const std::vector<std::string>& cipher_strings) { std::vector<uint16_t> cipher_suites; cipher_suites.reserve(cipher_strings.size()); for (std::vector<std::string>::const_iterator it = cipher_strings.begin(); it != cipher_strings.end(); ++it) { uint16_t cipher_suite = 0; if (!net::ParseSSLCipherString(*it, &cipher_suite)) { LOG(ERROR) << "Ignoring unrecognized or unparsable cipher suite: " << *it; continue; } cipher_suites.push_back(cipher_suite); } std::sort(cipher_suites.begin(), cipher_suites.end()); return cipher_suites; } // Returns the SSL protocol version (as a uint16_t) represented by a string. // Returns 0 if the string is invalid. uint16_t SSLProtocolVersionFromString(const std::string& version_str) { uint16_t version = 0; // Invalid. if (version_str == switches::kSSLVersionTLSv1) { version = net::SSL_PROTOCOL_VERSION_TLS1; } else if (version_str == switches::kSSLVersionTLSv11) { version = net::SSL_PROTOCOL_VERSION_TLS1_1; } else if (version_str == switches::kSSLVersionTLSv12) { version = net::SSL_PROTOCOL_VERSION_TLS1_2; } return version; } const base::Feature kDHECiphersFeature{ "DHECiphers", base::FEATURE_DISABLED_BY_DEFAULT, }; } // namespace //////////////////////////////////////////////////////////////////////////////// // SSLConfigServicePref // An SSLConfigService which stores a cached version of the current SSLConfig // prefs, which are updated by SSLConfigServiceManagerPref when the prefs // change. class SSLConfigServicePref : public net::SSLConfigService { public: explicit SSLConfigServicePref( const scoped_refptr<base::SingleThreadTaskRunner>& io_task_runner); // Store SSL config settings in |config|. Must only be called from IO thread. void GetSSLConfig(net::SSLConfig* config) override; private: // Allow the pref watcher to update our internal state. friend class SSLConfigServiceManagerPref; ~SSLConfigServicePref() override {} // This method is posted to the IO thread from the browser thread to carry the // new config information. void SetNewSSLConfig(const net::SSLConfig& new_config); // Cached value of prefs, should only be accessed from IO thread. net::SSLConfig cached_config_; scoped_refptr<base::SingleThreadTaskRunner> io_task_runner_; DISALLOW_COPY_AND_ASSIGN(SSLConfigServicePref); }; SSLConfigServicePref::SSLConfigServicePref( const scoped_refptr<base::SingleThreadTaskRunner>& io_task_runner) : io_task_runner_(io_task_runner) {} void SSLConfigServicePref::GetSSLConfig(net::SSLConfig* config) { DCHECK(io_task_runner_->BelongsToCurrentThread()); *config = cached_config_; } void SSLConfigServicePref::SetNewSSLConfig(const net::SSLConfig& new_config) { net::SSLConfig orig_config = cached_config_; cached_config_ = new_config; ProcessConfigUpdate(orig_config, new_config); } //////////////////////////////////////////////////////////////////////////////// // SSLConfigServiceManagerPref // The manager for holding and updating an SSLConfigServicePref instance. class SSLConfigServiceManagerPref : public ssl_config::SSLConfigServiceManager { public: SSLConfigServiceManagerPref( PrefService* local_state, const scoped_refptr<base::SingleThreadTaskRunner>& io_task_runner); ~SSLConfigServiceManagerPref() override {} // Register local_state SSL preferences. static void RegisterPrefs(PrefRegistrySimple* registry); net::SSLConfigService* Get() override; private: // Callback for preference changes. This will post the changes to the IO // thread with SetNewSSLConfig. void OnPreferenceChanged(PrefService* prefs, const std::string& pref_name); // Store SSL config settings in |config|, directly from the preferences. Must // only be called from UI thread. void GetSSLConfigFromPrefs(net::SSLConfig* config); // Processes changes to the disabled cipher suites preference, updating the // cached list of parsed SSL/TLS cipher suites that are disabled. void OnDisabledCipherSuitesChange(PrefService* local_state); PrefChangeRegistrar local_state_change_registrar_; // The local_state prefs (should only be accessed from UI thread) BooleanPrefMember rev_checking_enabled_; BooleanPrefMember rev_checking_required_local_anchors_; StringPrefMember ssl_version_min_; StringPrefMember ssl_version_max_; BooleanPrefMember dhe_enabled_; // The cached list of disabled SSL cipher suites. std::vector<uint16_t> disabled_cipher_suites_; scoped_refptr<SSLConfigServicePref> ssl_config_service_; scoped_refptr<base::SingleThreadTaskRunner> io_task_runner_; DISALLOW_COPY_AND_ASSIGN(SSLConfigServiceManagerPref); }; SSLConfigServiceManagerPref::SSLConfigServiceManagerPref( PrefService* local_state, const scoped_refptr<base::SingleThreadTaskRunner>& io_task_runner) : ssl_config_service_(new SSLConfigServicePref(io_task_runner)), io_task_runner_(io_task_runner) { DCHECK(local_state); // Restore DHE-based ciphers if enabled via features. // TODO(davidben): Remove this when the removal has succeeded. // https://crbug.com/619194. if (base::FeatureList::IsEnabled(kDHECiphersFeature)) { local_state->SetDefaultPrefValue(ssl_config::prefs::kDHEEnabled, new base::FundamentalValue(true)); } PrefChangeRegistrar::NamedChangeCallback local_state_callback = base::Bind(&SSLConfigServiceManagerPref::OnPreferenceChanged, base::Unretained(this), local_state); rev_checking_enabled_.Init(ssl_config::prefs::kCertRevocationCheckingEnabled, local_state, local_state_callback); rev_checking_required_local_anchors_.Init( ssl_config::prefs::kCertRevocationCheckingRequiredLocalAnchors, local_state, local_state_callback); ssl_version_min_.Init(ssl_config::prefs::kSSLVersionMin, local_state, local_state_callback); ssl_version_max_.Init(ssl_config::prefs::kSSLVersionMax, local_state, local_state_callback); dhe_enabled_.Init(ssl_config::prefs::kDHEEnabled, local_state, local_state_callback); local_state_change_registrar_.Init(local_state); local_state_change_registrar_.Add(ssl_config::prefs::kCipherSuiteBlacklist, local_state_callback); OnDisabledCipherSuitesChange(local_state); // Initialize from UI thread. This is okay as there shouldn't be anything on // the IO thread trying to access it yet. GetSSLConfigFromPrefs(&ssl_config_service_->cached_config_); } // static void SSLConfigServiceManagerPref::RegisterPrefs(PrefRegistrySimple* registry) { net::SSLConfig default_config; registry->RegisterBooleanPref( ssl_config::prefs::kCertRevocationCheckingEnabled, default_config.rev_checking_enabled); registry->RegisterBooleanPref( ssl_config::prefs::kCertRevocationCheckingRequiredLocalAnchors, default_config.rev_checking_required_local_anchors); registry->RegisterStringPref(ssl_config::prefs::kSSLVersionMin, std::string()); registry->RegisterStringPref(ssl_config::prefs::kSSLVersionMax, std::string()); registry->RegisterListPref(ssl_config::prefs::kCipherSuiteBlacklist); registry->RegisterBooleanPref(ssl_config::prefs::kDHEEnabled, default_config.dhe_enabled); } net::SSLConfigService* SSLConfigServiceManagerPref::Get() { return ssl_config_service_.get(); } void SSLConfigServiceManagerPref::OnPreferenceChanged( PrefService* prefs, const std::string& pref_name_in) { DCHECK(prefs); if (pref_name_in == ssl_config::prefs::kCipherSuiteBlacklist) OnDisabledCipherSuitesChange(prefs); net::SSLConfig new_config; GetSSLConfigFromPrefs(&new_config); // Post a task to |io_loop| with the new configuration, so it can // update |cached_config_|. io_task_runner_->PostTask(FROM_HERE, base::Bind(&SSLConfigServicePref::SetNewSSLConfig, ssl_config_service_.get(), new_config)); } void SSLConfigServiceManagerPref::GetSSLConfigFromPrefs( net::SSLConfig* config) { // rev_checking_enabled was formerly a user-settable preference, but now // it is managed-only. if (rev_checking_enabled_.IsManaged()) config->rev_checking_enabled = rev_checking_enabled_.GetValue(); else config->rev_checking_enabled = false; config->rev_checking_required_local_anchors = rev_checking_required_local_anchors_.GetValue(); std::string version_min_str = ssl_version_min_.GetValue(); std::string version_max_str = ssl_version_max_.GetValue(); config->version_min = net::kDefaultSSLVersionMin; config->version_max = net::kDefaultSSLVersionMax; uint16_t version_min = SSLProtocolVersionFromString(version_min_str); uint16_t version_max = SSLProtocolVersionFromString(version_max_str); if (version_min) { config->version_min = version_min; } if (version_max) { uint16_t supported_version_max = config->version_max; config->version_max = std::min(supported_version_max, version_max); } config->disabled_cipher_suites = disabled_cipher_suites_; config->dhe_enabled = dhe_enabled_.GetValue(); } void SSLConfigServiceManagerPref::OnDisabledCipherSuitesChange( PrefService* local_state) { const base::ListValue* value = local_state->GetList(ssl_config::prefs::kCipherSuiteBlacklist); disabled_cipher_suites_ = ParseCipherSuites(ListValueToStringVector(value)); } //////////////////////////////////////////////////////////////////////////////// // SSLConfigServiceManager namespace ssl_config { // static SSLConfigServiceManager* SSLConfigServiceManager::CreateDefaultManager( PrefService* local_state, const scoped_refptr<base::SingleThreadTaskRunner>& io_task_runner) { return new SSLConfigServiceManagerPref(local_state, io_task_runner); } // static void SSLConfigServiceManager::RegisterPrefs(PrefRegistrySimple* registry) { SSLConfigServiceManagerPref::RegisterPrefs(registry); } } // namespace ssl_config
214,385
Github
[ 15684, 346, 2566, 64, 28316, 3, 187, 187, 2437, 15551, 1131, 18851, 5089, 654, 12121, 36, 494, 1450, 18851, 1450, 40595, 187, 50276, 4, 1071, 346, 2377, 8425, 265, 3, 513, 187, 50276, 4, 50275, 31473, 187, 50276, 4, 50275, 8271, 21729, 15, 37467, 32, 187, 50276, 4, 990, 187, 423, 187 ]
require "test_helper" class MessagesChannelTest < ActionCable::Channel::TestCase # test "subscribes" do # subscribe # assert subscription.confirmed? # end end
214,386
Github
[ 14277, 7229, 2715, 568, 18, 15, 17, 3, 9706, 568, 18441, 14, 25, 3, 40468, 568, 2369, 28739, 187, 29, 3306, 1511, 568, 681, 15, 19934, 15, 14418, 12038, 20, 15, 36, 406, 12354, 29330, 15, 29569, 4697, 15, 57, 5472, 3, 2715, 568, 20, 15, 17, 3, 5657, 8893, 568, 11124, 520, 3, 985, 8893, 568, 1010, 40, 44197, 3, 2303, 17577, 568, 46716, 15, 36, 406, 12354, 29330, 3, 2867, 11501, 10588, 568, 15422, 3, 897, 7034, 311, 5038, 568, 24239, 3, 897, 53, 12397, 32293, 568, 24239, 3, 3295, 9547, 2147, 568, 24239, 3, 3302, 20775, 568, 15012, 59, 14, 1839, 14, 85, 17, 83, 1138, 187, 50274, 29, 36379, 31, 187, 50270, 29, 615, 27378, 21674, 568, 46716, 5647, 187, 50270, 29, 17381, 688, 21674, 568, 681, 15, 19934, 15, 14418, 12038, 15, 42, 3979, 406, 12354, 29330, 23836, 3, 2715, 568, 883, 20664, 5647, 187, 50270, 29, 4421, 1430, 1416, 568, 41393, 281, 12806, 24390, 3, 1054, 32953, 8893, 568, 23, 15, 17, 5647, 187, 50270, 29, 4421, 1430, 1416, 568, 47878, 9809, 275, 253, 1594, 3211, 854, 5981, 3, 1054, 32953, 8893, 568, 25, 15, 17, 5647, 187, 50274, 870, 36379, 31, 187, 50274, 29, 1026, 24453, 31, 187, 50270, 14219, 3145, 31555, 22158, 187, 50270, 29, 32280, 6200, 1838, 568, 85, 570, 14, 44243, 14, 338, 86, 1138, 187, 50266, 29, 25964, 31, 187, 50262, 29, 1374, 8929, 2654, 568, 15012, 59, 14, 1839, 14, 85, 17, 83, 3, 2840, 4947, 568, 20775, 3, 2840, 13570, 568, 2973, 641, 3, 2840, 13570, 14725, 568, 7831, 3, 6200, 20226, 1838, 568, 1374, 8929, 1138, 187, 50258, 29, 7916, 8469, 1487, 31, 187, 50254, 29, 1374, 8929, 9683, 48103, 1511, 568, 3956, 3, 2654, 568, 90, 20, 68, 14, 75, 90, 14, 66, 43996, 5647, 187, 50254, 29, 1374, 8929, 9683, 48103, 1511, 568, 10492, 3, 2654, 568, 88, 31296, 14, 5470, 14, 16427, 38, 5647, 187, 50258, 870, 7916, 8469, 1487, 31, 187, 50258, 29, 1374, 2234, 568, 1374, 3, 2600, 10715, 568, 7527, 1992, 30296, 3, 2654, 568, 25, 67, 36, 14, 57, 71, 14, 19122, 36, 1138, 187, 50254, 29, 6471, 2234, 568, 6301, 3, 1269, 568, 17, 15, 17, 3, 340, 568, 17, 15, 17, 3, 4871, 568, 17820, 3, 4898, 568, 43438, 5647, 187, 50254, 29, 1920, 2324, 3006, 17031, 2234, 568, 1920, 2324, 3006, 17031, 3, 4871, 52, 12729, 568, 24239, 3, 4898, 52, 12729, 568, 24239, 5647, 187, 50254, 29, 2377, 17920, 31, 187, 50254, 50274, 29, 1968, 34350, 568, 7716, 3, 2608, 6504, 1913, 19157, 568, 7716, 3, 6809, 568, 18, 3, 2600, 10715, 568, 1274, 3, 2505, 568, 45717, 39484, 12, 16960, 4483, 368, 281, 873, 22290, 970, 11559, 15, 22660, 342, 15442, 2193, 275, 2710, 21453, 3255, 2505, 30365, 568, 9229, 3, 1386, 30389, 10715, 568, 3418, 43496, 3, 1180, 4527, 34320, 568, 17, 3, 5927, 16976, 5496, 568, 740, 3, 9013, 9684, 9683, 12175, 568, 19100, 3, 30376, 7034, 2324, 3006, 17031, 34868, 41393, 568, 7716, 3, 2654, 568, 82, 19, 43, 14, 25, 74, 14, 18, 7988, 1138, 187, 50254, 50270, 29, 4909, 11185, 2234, 568, 4909, 11185, 3, 1511, 568, 10394, 3, 1127, 5496, 568, 1166, 5647, 187, 50254, 50270, 29, 4897, 2234, 568, 1156, 6573, 3, 41621, 29330, 7761, 6573, 568, 19001, 4312, 6573, 5647, 187, 50254, 50270, 29, 18789, 2234, 568, 30703, 264, 6573, 5647, 187, 50254, 50274, 870, 1968, 31, 187, 50254, 50274, 29, 1968, 34350, 568, 7716, 3, 2608, 6504, 1913, 19157, 568, 7716, 3, 6809, 568, 18, 3, 2600, 10715, 568, 1274, 3, 2505, 568, 3980, 970, 41364, 3295, 3638, 4454, 313, 5045, 39188, 481, 31042, 2505, 30365, 568, 9229, 3, 1386, 30389, 10715, 568, 3418, 43496, 3, 1180, 4527, 34320, 568, 17, 3, 5927, 16976, 5496, 568, 740, 3, 9013, 9684, 9683, 12175, 568, 19100, 3, 30376, 7034, 2324, 3006, 17031, 34868, 41393, 568, 7716, 3, 2654, 568, 76, 50, 44, 14, 57, 78, 14, 21, 52, 57, 1138, 187, 50254, 50270, 29, 4909, 11185, 2234, 568, 4909, 11185, 3, 1511, 568, 10394, 3, 1127, 5496, 568, 1166, 5647, 187, 50254, 50270, 29, 4897, 2234, 568, 1156, 6573, 3, 41621, 29330, 7761, 6573, 568, 19001, 4312, 6573, 5647, 187, 50254, 50270, 29, 18789, 2234, 568, 30703, 264, 6573, 5647, 187, 50254, 50274, 870, 1968, 31, 187, 50254, 50274, 29, 1968, 34350, 568, 7716, 3, 2608, 6504, 1913, 19157, 568, 7716, 3, 6809, 568, 18, 3, 2600, 10715, 568, 1274, 3, 2505, 568, 3980, 970, 253, 46206, 1082, 285, 32267, 1082, 3470, 3255, 2505, 30365, 568, 9229, 3, 1386, 30389, 10715, 568, 3418, 43496, 3, 1180, 4527, 34320, 568, 17, 3, 5927, 16976, 5496, 568, 740, 3, 9013, 9684, 9683, 12175, 568, 19100, 3, 30376, 7034, 2324, 3006, 17031, 34868, 41393, 568, 7716, 3, 2654, 568, 17312, 35, 14, 81, 22, 14, 1992, 51, 1138, 187, 50254, 50270, 29, 4909, 11185, 2234, 568, 4909, 11185, 3, 1511, 568, 10394, 3, 1127, 5496, 568, 1166, 5647, 187, 50254, 50270, 29, 4897, 2234, 568, 1156, 6573, 3, 41621, 29330, 7761, 6573, 568, 19001, 4312, 6573, 5647, 187, 50254, 50270, 29, 18789, 2234, 568, 30703, 264, 6573, 5647, 187, 50254, 50274, 870, 1968, 31, 187, 50254, 50274, 29, 1968, 34350, 568, 7716, 3, 2608, 6504, 1913, 19157, 568, 7716, 3, 2600, 10715, 568, 1274, 3, 4229, 9270, 568, 24239, 3, 2505, 10817, 22650, 3, 1386, 30389, 10715, 568, 14694, 2290, 7157, 318, 3, 5927, 16976, 5496, 568, 740, 3, 30376, 7034, 2324, 3006, 17031, 34868, 41393, 568, 7716, 3, 2654, 568, 89, 46, 22, 14, 58, 50, 14, 89, 1762, 3, 2840, 4947, 568, 6573, 11495, 3, 2840, 13570, 568, 2973, 641, 3, 2840, 13570, 14725, 568, 7831, 1138, 187, 50254, 50270, 29, 6301, 2234, 568, 6301, 688, 1178, 3, 1054, 57, 568, 3208, 3, 1054, 58, 568, 12231, 3, 4871, 568, 2945, 3, 4898, 568, 938, 15, 22, 5647, 187, 50254, 50270, 29, 1920, 2324, 3006, 17031, 2234, 568, 1920, 2324, 3006, 17031, 3, 12112, 9684, 57, 568, 24239, 3, 12112, 9684, 58, 568, 24239, 5647, 187, 50254, 50270, 29, 4909, 11185, 2234, 568, 4909, 11185, 3, 1511, 568, 10394, 3, 1127, 5496, 568, 1166, 5647, 187, 50254, 50270, 29, 4897, 2234, 568, 1156, 6573, 3, 41621, 29330, 7761, 6573, 568, 19001, 4312, 6573, 5647, 187, 50254, 50270, 29, 18789, 2234, 568, 30703, 264, 6573, 5647, 187, 50254, 50274, 870, 1968, 31, 187, 50254, 50274, 29, 1968, 34350, 568, 7716, 3, 2608, 6504, 1913, 19157, 568, 7716, 3, 2600, 10715, 568, 1274, 3, 4229, 9270, 568, 24239, 3, 2505, 10817, 567, 1418, 3, 1386, 30389, 10715, 568, 14694, 2290, 7157, 318, 3, 5927, 16976, 5496, 568, 740, 3, 30376, 7034, 2324, 3006, 17031, 34868, 41393, 568, 7716, 3, 2654, 568, 68, 42972, 14, 91, 58, 14, 19084, 24, 3, 2840, 4947, 568, 6573, 11495, 3, 2840, 13570, 568, 2973, 641, 3, 2840, 13570, 14725, 568, 7831, 1138, 187, 50254, 50270, 29, 6301, 2234, 568, 6301, 688, 1178, 3, 1054, 57, 568, 1438, 3, 1054, 58, 568, 18663, 15, 22, 3, 4871, 568, 3680, 3, 4898, 568, 938, 15, 22, 5647, 187, 50254, 50270, 29, 1920, 2324, 3006, 17031, 2234, 568, 1920, 2324, 3006, 17031, 3, 12112, 9684, 57, 568, 24239, 3, 12112, 9684, 58, 568, 24239, 5647, 187, 50254, 50270, 29, 4909, 11185, 2234, 568, 4909, 11185, 3, 1511, 568, 10394, 3, 1127, 5496, 568, 1166, 5647, 187, 50254, 50270, 29, 4897, 2234, 568, 1156, 6573, 3, 41621, 29330, 7761, 6573, 568, 19001, 4312, 6573, 5647, 187, 50254, 50270, 29, 18789, 2234, 568, 30703, 264, 6573, 5647, 187, 50254, 50274, 870, 1968, 31, 187, 50254, 50274, 29, 1968, 34350, 568, 7716, 3, 2608, 6504, 1913, 19157, 568, 7716, 3, 2600, 10715, 568, 1274, 3, 4229, 9270, 568, 24239, 3, 2505, 10817, 27865, 3, 1386, 30389, 10715, 568, 14694, 2290, 7157, 318, 3, 5927, 16976, 5496, 568, 740, 3, 30376, 7034, 2324, 3006, 17031, 34868, 41393, 568, 7716, 3, 2654, 568, 88, 292, 14, 85, 82, 14, 4339, 17, 3, 2840, 4947, 568, 6573, 11495, 3, 2840, 13570, 568, 2973, 641, 3, 2840, 13570, 14725, 568, 7831, 1138, 187, 50254, 50270, 29, 6301, 2234, 568, 6301, 688, 1178, 3, 1054, 57, 568, 3583, 3, 1054, 58, 568, 1518, 3, 4871, 568, 3680, 3, 4898, 568, 938, 15, 22, 5647, 187, 50254, 50270, 29, 1920, 2324, 3006, 17031, 2234, 568, 1920, 2324, 3006, 17031, 3, 12112, 9684, 57, 568, 24239, 3, 12112, 9684, 58, 568, 24239, 5647, 187, 50254, 50270, 29, 4909, 11185, 2234, 568, 4909, 11185, 3, 1511, 568, 10394, 3, 1127, 5496, 568, 1166, 5647, 187, 50254, 50270, 29, 4897, 2234, 568, 1156, 6573, 3, 41621, 29330, 7761, 6573, 568, 19001, 4312, 6573, 5647, 187, 50254, 50270, 29, 18789, 2234, 568, 30703, 264, 6573, 5647, 187, 50254, 50274, 870, 1968, 31, 187, 50254, 50274, 29, 1968, 34350, 568, 7716, 3, 2608, 6504, 1913, 19157, 568, 7716, 3, 2600, 10715, 568, 1274, 3, 4229, 9270, 568, 24239, 3, 2505, 10817, 361, 39, 71, 361, 3, 1386, 30389, 10715, 568, 14694, 2290, 7157, 318, 3, 5927, 16976, 5496, 568, 740, 3, 30376, 7034, 2324, 3006, 17031, 34868, 41393, 568, 7716, 3, 2654, 568, 15656, 51, 14, 27088, 14, 44834, 59, 3, 2840, 4947, 568, 6573, 11495, 3, 2840, 13570, 568, 2973, 641, 3, 2840, 13570, 14725, 568, 7831, 1138, 187, 50254, 50270, 29, 6301, 2234, 568, 6301, 688, 1178, 3, 1054, 57, 568, 17364, 3, 1054, 58, 568, 12115, 3, 4871, 568, 2251, 3, 4898, 568, 938, 15, 22, 5647, 187, 50254, 50270, 29, 1920, 2324, 3006, 17031, 2234, 568, 1920, 2324, 3006, 17031, 3, 12112, 9684, 57, 568, 24239, 3, 12112, 9684, 58, 568, 24239, 5647, 187, 50254, 50270, 29, 4909, 11185, 2234, 568, 4909, 11185, 3, 1511, 568, 10394, 3, 1127, 5496, 568, 1166, 5647, 187, 50254, 50270, 29, 4897, 2234, 568, 1156, 6573, 3, 41621, 29330, 7761, 6573, 568, 19001, 4312, 6573, 5647, 187, 50254, 50270, 29, 18789, 2234, 568, 30703, 264, 6573, 5647, 187, 50254, 50274, 870, 1968, 31, 187, 50254, 50274, 29, 1968, 34350, 568, 7716, 3, 2608, 6504, 1913, 19157, 568, 7716, 3, 2600, 10715, 568, 1274, 3, 4229, 9270, 568, 24239, 3, 2505, 10817, 567, 2417, 361, 3, 1386, 30389, 10715, 568, 14694, 2290, 7157, 318, 3, 5927, 16976, 5496, 568, 740, 3, 30376, 7034, 2324, 3006, 17031, 34868, 41393, 568, 7716, 3, 2654, 568, 10536, 22, 14, 86, 50, 14, 25, 45, 59, 3, 2840, 4947, 568, 6573, 11495, 3, 2840, 13570, 568, 2973, 641, 3, 2840, 13570, 14725, 568, 7831, 1138, 187, 50254, 50270, 29, 6301, 2234, 568, 6301, 688, 1178, 3, 1054, 57, 568, 20256, 15, 22, 3, 1054, 58, 568, 16129, 3, 4871, 568, 3571, 3, 4898, 568, 938, 15, 22, 5647, 187, 50254, 50270, 29, 1920, 2324, 3006, 17031, 2234, 568, 1920, 2324, 3006, 17031, 3, 12112, 9684, 57, 568, 24239, 3, 12112, 9684, 58, 568, 24239, 5647, 187, 50254, 50270, 29, 4909, 11185, 2234, 568, 4909, 11185, 3, 1511, 568, 10394, 3, 1127, 5496, 568, 1166, 5647, 187, 50254, 50270, 29, 4897, 2234, 568, 1156, 6573, 3, 41621, 29330, 7761, 6573, 568, 19001, 4312, 6573, 5647, 187, 50254, 50270, 29, 18789, 2234, 568, 30703, 264, 6573, 5647, 187, 50254, 50274, 870, 1968, 31, 187, 50254, 50274, 29, 1968, 34350, 568, 7716, 3, 2608, 6504, 1913, 19157, 568, 7716, 3, 2600, 10715, 568, 1274, 3, 4229, 9270, 568, 24239, 3, 2505, 10817, 8832, 361, 3, 1386, 30389, 10715, 568, 14694, 2290, 7157, 318, 3, 5927, 16976, 5496, 568, 740, 3, 30376, 7034, 2324, 3006, 17031, 34868, 41393, 568, 7716, 3, 2654, 568, 39028, 89, 14, 26, 75, 14, 50, 17174, 3, 2840, 4947, 568, 6573, 11495, 3, 2840, 13570, 568, 2973, 641, 3, 2840, 13570, 14725, 568, 7831, 1138, 187, 50254, 50270, 29, 6301, 2234, 568, 6301, 688, 1178, 3, 1054, 57, 568, 22313, 3, 1054, 58, 568, 12231, 3, 4871, 568, 3680, 3, 4898, 568, 938, 15, 22, 5647, 187, 50254, 50270, 29, 1920, 2324, 3006, 17031, 2234, 568, 1920, 2324, 3006, 17031, 3, 12112, 9684, 57, 568, 24239, 3, 12112, 9684, 58, 568, 24239, 5647, 187, 50254, 50270, 29, 4909, 11185, 2234, 568, 4909, 11185, 3, 1511, 568, 10394, 3, 1127, 5496, 568, 1166, 5647, 187, 50254, 50270, 29, 4897, 2234, 568, 1156, 6573, 3, 41621, 29330, 7761, 6573, 568, 19001, 4312, 6573, 5647, 187, 50254, 50270, 29, 18789, 2234, 568, 30703, 264, 6573, 5647, 187, 50254, 50274, 870, 1968, 31, 187, 50254, 50274, 29, 1968, 34350, 568, 7716, 3, 2608, 6504, 1913, 19157, 568, 7716, 3, 2600, 10715, 568, 1274, 3, 4229, 9270, 568, 24239, 3, 2505, 10817, 8551, 3269, 3, 1386, 30389, 10715, 568, 14694, 2290, 7157, 318, 3, 5927, 16976, 5496, 568, 740, 3, 30376, 7034, 2324, 3006, 17031, 34868, 41393, 568, 7716, 3, 2654, 568, 5267, 47, 14, 50, 24, 14, 55, 67, 34, 3, 2840, 4947, 568, 6573, 11495, 3, 2840, 13570, 568, 2973, 641, 3, 2840, 13570, 14725, 568, 7831, 1138, 187, 50254, 50270, 29, 6301, 2234, 568, 6301, 688, 1178, 3, 1054, 57, 568, 1252, 3, 1054, 58, 568, 8970, 15, 22, 3, 4871, 568, 4739, 3, 4898, 568, 938, 15, 22, 5647, 187, 50254, 50270, 29, 1920, 2324, 3006, 17031, 2234, 568, 1920, 2324, 3006, 17031, 3, 12112, 9684, 57, 568, 24239, 3, 12112, 9684, 58, 568, 24239, 5647, 187, 50254, 50270, 29, 4909, 11185, 2234, 568, 4909, 11185, 3, 1511, 568, 10394, 3, 1127, 5496, 568, 1166, 5647, 187, 50254, 50270, 29, 4897, 2234, 568, 1156, 6573, 3, 41621, 29330, 7761, 6573, 568, 19001, 4312, 6573, 5647, 187, 50254, 50270, 29, 18789, 2234, 568, 30703, 264, 6573, 5647, 187, 50254, 50274, 870, 1968, 31, 187, 50254, 50274, 29, 1968, 34350, 568, 7716, 3, 2608, 6504, 1913, 19157, 568, 7716, 3, 2600, 10715, 568, 1274, 3, 4229, 9270, 568, 24239, 3, 2505, 10817, 3269, 1418, 2417, 3, 1386, 30389, 10715, 568, 14694, 2290, 7157, 318, 3, 5927, 16976, 5496, 568, 740, 3, 30376, 7034, 2324, 3006, 17031, 34868, 41393, 568, 7716, 3, 2654, 568, 21, 859, 14, 2072, 14, 79, 23, 41, 3, 2840, 4947, 568, 6573, 11495, 3, 2840, 13570, 568, 2973, 641, 3, 2840, 13570, 14725, 568, 7831, 1138, 187, 50254, 50270, 29, 6301, 2234, 568, 6301, 688, 1178, 3, 1054, 57, 568, 16198, 3, 1054, 58, 568, 3031, 3, 4871, 568, 2270, 15, 22, 3, 4898, 568, 938, 15, 22, 5647, 187, 50254, 50270, 29, 1920, 2324, 3006, 17031, 2234, 568, 1920, 2324, 3006, 17031, 3, 12112, 9684, 57, 568, 24239, 3, 12112, 9684, 58, 568, 24239, 5647, 187, 50254, 50270, 29, 4909, 11185, 2234, 568, 4909, 11185, 3, 1511, 568, 10394, 3, 1127, 5496, 568, 1166, 5647, 187, 50254, 50270, 29, 4897, 2234, 568, 1156, 6573, 3, 41621, 29330, 7761, 6573, 568, 19001, 4312, 6573, 5647, 187, 50254, 50270, 29, 18789, 2234, 568, 30703, 264, 6573, 5647, 187, 50254, 50274, 870, 1968, 31, 187, 50254, 50274, 29, 1968, 34350, 568, 7716, 3, 2608, 6504, 1913, 19157, 568, 7716, 3, 2600, 10715, 568, 1274, 3, 4229, 9270, 568, 24239, 3, 2505, 568, 34803, 3, 1386, 30389, 10715, 568, 14694, 2290, 7157, 318, 3, 5927, 16976, 5496, 568, 740, 3, 30376, 7034, 2324, 3006, 17031, 34868, 41393, 568, 7716, 3, 2654, 568, 83, 21, 89, 14, 23, 46, 14, 38156, 23, 3, 2840, 4947, 568, 6573, 11495, 3, 2840, 13570, 568, 2973, 641, 3, 2840, 13570, 14725, 568, 7831, 1138, 187, 50254, 50270, 29, 6301, 2234, 568, 6301, 688, 1178, 3, 1054, 57, 568, 3208, 3, 1054, 58, 568, 23580, 15, 22, 3, 4871, 568, 2945, 3, 4898, 568, 938, 15, 22, 5647, 187, 50254, 50270, 29, 1920, 2324, 3006, 17031, 2234, 568, 1920, 2324, 3006, 17031, 3, 12112, 9684, 57, 568, 24239, 3, 12112, 9684, 58, 568, 24239, 5647, 187, 50254, 50270, 29, 4909, 11185, 2234, 568, 4909, 11185, 3, 1511, 568, 10394, 3, 1127, 5496, 568, 1166, 5647, 187, 50254, 50270, 29, 4897, 2234, 568, 1156, 6573, 3, 41621, 29330, 7761, 6573, 568, 19001, 4312, 6573, 5647, 187, 50254, 50270, 29, 18789, 2234, 568, 30703, 264, 6573, 5647, 187, 50254, 50274, 870, 1968, 31, 187, 50254, 50274, 29, 1968, 34350, 568, 7716, 3, 2608, 6504, 1913, 19157, 568, 7716, 3, 2600, 10715, 568, 1274, 3, 4229, 9270, 568, 24239, 3, 2505, 568, 31952, 9, 10637, 13, 15610, 13, 470, 6844, 1386, 30389, 10715, 568, 14694, 2290, 7157, 318, 3, 5927, 16976, 5496, 568, 740, 3, 30376, 7034, 2324, 3006, 17031, 34868, 41393, 568, 7716, 3, 2654, 568, 26, 30007, 14, 250, 14, 77, 58, 82, 3, 2840, 4947, 568, 6573, 11495, 3, 2840, 13570, 568, 2973, 641, 3, 2840, 13570, 14725, 568, 7831, 1138, 187, 50254, 50270, 29, 6301, 2234, 568, 6301, 688, 1178, 3, 1054, 57, 568, 3712, 3, 1054, 58, 568, 43171, 15, 22, 3, 4871, 568, 8193, 3, 4898, 568, 938, 15, 22, 5647, 187, 50254, 50270, 29, 1920, 2324, 3006, 17031, 2234, 568, 1920, 2324, 3006, 17031, 3, 12112, 9684, 57, 568, 24239, 3, 12112, 9684, 58, 568, 24239, 5647, 187, 50254, 50270, 29, 4909, 11185, 2234, 568, 4909, 11185, 3, 1511, 568, 10394, 3, 1127, 5496, 568, 1166, 5647, 187, 50254, 50270, 29, 4897, 2234, 568, 1156, 6573, 3, 41621, 29330, 7761, 6573, 568, 19001, 4312, 6573, 5647, 187, 50254, 50270, 29, 18789, 2234, 568, 30703, 264, 6573, 5647, 187, 50254, 50274, 870, 1968, 31, 187, 50254, 50274, 29, 1968, 34350, 568, 7716, 3, 2608, 6504, 1913, 19157, 568, 7716, 3, 2600, 10715, 568, 1274, 3, 4229, 9270, 568, 24239, 3, 2505, 568, 31952, 9, 17, 13, 15610, 13, 470, 6844, 1386, 30389, 10715, 568, 14694, 2290, 7157, 318, 3, 5927, 16976, 5496, 568, 740, 3, 30376, 7034, 2324, 3006, 17031, 34868, 41393, 568, 7716, 3, 2654, 568, 5077, 80, 14, 28889, 14, 19, 29165, 3, 2840, 4947, 568, 6573, 11495, 3, 2840, 13570, 568, 2973, 641, 3, 2840, 13570, 14725, 568, 7831, 1138, 187, 50254, 50270, 29, 6301, 2234, 568, 6301, 688, 1178, 3, 1054, 57, 568, 3583, 3, 1054, 58, 568, 25805, 15, 22, 3, 4871, 568, 2313, 3, 4898, 568, 938, 15, 22, 5647, 187, 50254, 50270, 29, 1920, 2324, 3006, 17031, 2234, 568, 1920, 2324, 3006, 17031, 3, 12112, 9684, 57, 568, 24239, 3, 12112, 9684, 58, 568, 24239, 5647, 187, 50254, 50270, 29, 4909, 11185, 2234, 568, 4909, 11185, 3, 1511, 568, 10394, 3, 1127, 5496, 568, 1166, 5647, 187, 50254, 50270, 29, 4897, 2234, 568, 1156, 6573, 3, 41621, 29330, 7761, 6573, 568, 19001, 4312, 6573, 5647, 187, 50254, 50270, 29, 18789, 2234, 568, 30703, 264, 6573, 5647, 187, 50254, 50274, 870, 1968, 31, 187, 50254, 50274, 29, 1968, 34350, 568, 7716, 3, 2608, 6504, 1913, 19157, 568, 7716, 3, 2600, 10715, 568, 1274, 3, 4229, 9270, 568, 24239, 3, 2505, 568, 15164, 5830, 9, 10637, 13, 470, 13, 470, 13, 470, 15, 22, 6844, 1386, 30389, 10715, 568, 14694, 2290, 7157, 318, 3, 5927, 16976, 5496, 568, 740, 3, 30376, 7034, 2324, 3006, 17031, 34868, 41393, 568, 7716, 3, 2654, 568, 89, 55, 22, 14, 3123, 14, 59, 22, 36, 3, 2840, 4947, 568, 6573, 11495, 3, 2840, 13570, 568, 2973, 641, 3, 2840, 13570, 14725, 568, 7831, 1138, 187, 50254, 50270, 29, 6301, 2234, 568, 6301, 688, 1178, 3, 1054, 57, 568, 11335, 3, 1054, 58, 568, 37644, 3, 4871, 568, 16607, 15, 22, 3, 4898, 568, 938, 15, 22, 5647, 187, 50254, 50270, 29, 1920, 2324, 3006, 17031, 2234, 568, 1920, 2324, 3006, 17031, 3, 12112, 9684, 57, 568, 24239, 3, 12112, 9684, 58, 568, 24239, 5647, 187, 50254, 50270, 29, 4909, 11185, 2234, 568, 4909, 11185, 3, 1511, 568, 10394, 3, 1127, 5496, 568, 1166, 5647, 187, 50254, 50270, 29, 4897, 2234, 568, 1156, 6573, 3, 41621, 29330, 7761, 6573, 568, 19001, 4312, 6573, 5647, 187, 50254, 50270, 29, 18789, 2234, 568, 30703, 264, 6573, 5647, 187, 50254, 50274, 870, 1968, 31, 187, 50254, 50274, 29, 1968, 34350, 568, 7716, 3, 2608, 6504, 1913, 19157, 568, 7716, 3, 2600, 10715, 568, 1274, 3, 4229, 9270, 568, 24239, 3, 2505, 568, 15164, 5830, 9, 10637, 13, 470, 13, 15610, 13, 470, 15, 26, 6844, 1386, 30389, 10715, 568, 14694, 2290, 7157, 318, 3, 5927, 16976, 5496, 568, 740, 3, 30376, 7034, 2324, 3006, 17031, 34868, 41393, 568, 7716, 3, 2654, 568, 44051, 18, 14, 50, 25, 14, 72, 20, 81, 3, 2840, 4947, 568, 6573, 11495, 3, 2840, 13570, 568, 2973, 641, 3, 2840, 13570, 14725, 568, 7831, 1138, 187, 50254, 50270, 29, 6301, 2234, 568, 6301, 688, 1178, 3, 1054, 57, 568, 11395, 3, 1054, 58, 568, 23, 746, 15, 22, 3, 4871, 568, 20664, 15, 22, 3, 4898, 568, 938, 15, 22, 5647, 187, 50254, 50270, 29, 1920, 2324, 3006, 17031, 2234, 568, 1920, 2324, 3006, 17031, 3, 12112, 9684, 57, 568, 24239, 3, 12112, 9684, 58, 568, 24239, 5647, 187, 50254, 50270, 29, 4909, 11185, 2234, 568, 4909, 11185, 3, 1511, 568, 10394, 3, 1127, 5496, 568, 1166, 5647, 187, 50254, 50270, 29, 4897, 2234, 568, 1156, 6573, 3, 41621, 29330, 7761, 6573, 568, 19001, 4312, 6573, 5647, 187, 50254, 50270, 29, 18789, 2234, 568, 30703, 264, 6573, 5647, 187, 50254, 50274, 870, 1968, 31, 187, 50254, 50274, 29, 1968, 34350, 568, 7716, 3, 2608, 6504, 1913, 19157, 568, 7716, 3, 2600, 10715, 568, 1274, 3, 4229, 9270, 568, 24239, 3, 2505, 568, 951, 266, 3, 1386, 30389, 10715, 568, 14694, 2290, 7157, 318, 3, 5927, 16976, 5496, 568, 740, 3, 30376, 7034, 2324, 3006, 17031, 34868, 41393, 568, 7716, 3, 2654, 568, 52, 5309, 14, 71, 49, 14, 43, 29676, 3, 2840, 4947, 568, 6573, 11495, 3, 2840, 13570, 568, 2973, 641, 3, 2840, 13570, 14725, 568, 7831, 1138, 187, 50254, 50270, 29, 6301, 2234, 568, 6301, 688, 1178, 3, 1054, 57, 568, 10768, 3, 1054, 58, 568, 25472, 3, 4871, 568, 2031, 3, 4898, 568, 938, 15, 22, 5647, 187, 50254, 50270, 29, 1920, 2324, 3006, 17031, 2234, 568, 1920, 2324, 3006, 17031, 3, 12112, 9684, 57, 568, 24239, 3, 12112, 9684, 58, 568, 24239, 5647, 187, 50254, 50270, 29, 4909, 11185, 2234, 568, 4909, 11185, 3, 1511, 568, 10394, 3, 1127, 5496, 568, 1166, 5647, 187, 50254, 50270, 29, 4897, 2234, 568, 1156, 6573, 3, 41621, 29330, 7761, 6573, 568, 19001, 4312, 6573, 5647, 187, 50254, 50270, 29, 18789, 2234, 568, 30703, 264, 6573, 5647, 187, 50254, 50274, 870, 1968, 31, 187, 50254, 50274, 29, 1968, 34350, 568, 7716, 3, 2608, 6504, 1913, 19157, 568, 7716, 3, 2600, 10715, 568, 1274, 3, 4229, 9270, 568, 24239, 3, 2505, 568, 67, 22653, 38, 3, 1386, 30389, 10715, 568, 14694, 2290, 7157, 318, 3, 5927, 16976, 5496, 568, 740, 3, 30376, 7034, 2324, 3006, 17031, 34868, 41393, 568, 7716, 3, 2654, 568, 53, 18, 77, 14, 1099, 14, 78, 49, 19, 3, 2840, 4947, 568, 6573, 11495, 3, 2840, 13570, 568, 2973, 641, 3, 2840, 13570, 14725, 568, 7831, 1138, 187, 50254, 50270, 29, 6301, 2234, 568, 6301, 688, 1178, 3, 1054, 57, 568, 17220, 15, 22, 3, 1054, 58, 568, 28615, 3, 4871, 568, 2945, 3, 4898, 568, 746, 5647, 187, 50254, 50270, 29, 1920, 2324, 3006, 17031, 2234, 568, 1920, 2324, 3006, 17031, 3, 12112, 9684, 57, 568, 24239, 3, 12112, 9684, 58, 568, 24239, 5647, 187, 50254, 50270, 29, 4909, 11185, 2234, 568, 4909, 11185, 3, 1511, 568, 10394, 3, 1127, 5496, 568, 1166, 5647, 187, 50254, 50270, 29, 4897, 2234, 568, 1156, 6573, 3, 41621, 29330, 7761, 6573, 568, 19001, 4312, 6573, 5647, 187, 50254, 50270, 29, 18789, 2234, 568, 30703, 264, 6573, 5647, 187, 50254, 50274, 870, 1968, 31, 187, 50254, 50274, 29, 1968, 34350, 568, 7716, 3, 2608, 6504, 1913, 19157, 568, 7716, 3, 2600, 10715, 568, 1274, 3, 4229, 9270, 568, 24239, 3, 2505, 568, 46708, 3, 1386, 30389, 10715, 568, 14694, 2290, 7157, 318, 3, 5927, 16976, 5496, 568, 740, 3, 30376, 7034, 2324, 3006, 17031, 34868, 41393, 568, 7716, 3, 2654, 568, 333, 46, 14, 7589, 14, 20, 41584, 3, 2840, 4947, 568, 6573, 11495, 3, 2840, 13570, 568, 2973, 641, 3, 2840, 13570, 14725, 568, 7831, 1138, 187, 50254, 50270, 29, 6301, 2234, 568, 6301, 688, 1178, 3, 1054, 57, 568, 19100, 3, 1054, 58, 568, 30072, 15, 22, 3, 4871, 568, 1449, 3, 4898, 568, 938, 15, 22, 5647, 187, 50254, 50270, 29, 1920, 2324, 3006, 17031, 2234, 568, 1920, 2324, 3006, 17031, 3, 12112, 9684, 57, 568, 24239, 3, 12112, 9684, 58, 568, 24239, 5647, 187, 50254, 50270, 29, 4909, 11185, 2234, 568, 4909, 11185, 3, 1511, 568, 10394, 3, 1127, 5496, 568, 1166, 5647, 187, 50254, 50270, 29, 4897, 2234, 568, 1156, 6573, 3, 41621, 29330, 7761, 6573, 568, 19001, 4312, 6573, 5647, 187, 50254, 50270, 29, 18789, 2234, 568, 30703, 264, 6573, 5647, 187, 50254, 50274, 870, 1968, 31, 187, 50254, 50274, 29, 1968, 34350, 568, 7716, 3, 2608, 6504, 1913, 19157, 568, 7716, 3, 2600, 10715, 568, 1274, 3, 4229, 9270, 568, 24239, 3, 2505, 568, 49, 15130, 3, 1386, 30389, 10715, 568, 14694, 2290, 7157, 318, 3, 5927, 16976, 5496, 568, 740, 3, 30376, 7034, 2324, 3006, 17031, 34868, 41393, 568, 7716, 3, 2654, 568, 24, 75, 21, 14, 66, 56, 14, 39344, 45, 3, 2840, 4947, 568, 6573, 11495, 3, 2840, 13570, 568, 2973, 641, 3, 2840, 13570, 14725, 568, 7831, 1138, 187, 50254, 50270, 29, 6301, 2234, 568, 6301, 688, 1178, 3, 1054, 57, 568, 18392, 3, 1054, 58, 568, 27267, 3, 4871, 568, 2945, 3, 4898, 568, 938, 15, 22, 5647, 187, 50254, 50270, 29, 1920, 2324, 3006, 17031, 2234, 568, 1920, 2324, 3006, 17031, 3, 12112, 9684, 57, 568, 24239, 3, 12112, 9684, 58, 568, 24239, 5647, 187, 50254, 50270, 29, 4909, 11185, 2234, 568, 4909, 11185, 3, 1511, 568, 10394, 3, 1127, 5496, 568, 1166, 5647, 187, 50254, 50270, 29, 4897, 2234, 568, 1156, 6573, 3, 41621, 29330, 7761, 6573, 568, 19001, 4312, 6573, 5647, 187, 50254, 50270, 29, 18789, 2234, 568, 30703, 264, 6573, 5647, 187, 50254, 50274, 870, 1968, 31, 187, 50254, 50274, 29, 1968, 34350, 568, 7716, 3, 2608, 6504, 1913, 19157, 568, 7716, 3, 2600, 10715, 568, 1274, 3, 4229, 9270, 568, 24239, 3, 2505, 568, 11958, 3, 1386, 30389, 10715, 568, 14694, 2290, 7157, 318, 3, 5927, 16976, 5496, 568, 740, 3, 30376, 7034, 2324, 3006, 17031, 34868, 41393, 568, 7716, 3, 2654, 568, 3439, 82, 14, 59, 45, 14, 76, 11804, 3, 2840, 4947, 568, 6573, 11495, 3, 2840, 13570, 568, 2973, 641, 3, 2840, 13570, 14725, 568, 7831, 1138, 187, 50254, 50270, 29, 6301, 2234, 568, 6301, 688, 1178, 3, 1054, 57, 568, 15046, 3, 1054, 58, 568, 27893, 15, 22, 3, 4871, 568, 2945, 3, 4898, 568, 938, 15, 22, 5647, 187, 50254, 50270, 29, 1920, 2324, 3006, 17031, 2234, 568, 1920, 2324, 3006, 17031, 3, 12112, 9684, 57, 568, 24239, 3, 12112, 9684, 58, 568, 24239, 5647, 187, 50254, 50270, 29, 4909, 11185, 2234, 568, 4909, 11185, 3, 1511, 568, 10394, 3, 1127, 5496, 568, 1166, 5647, 187, 50254, 50270, 29, 4897, 2234, 568, 1156, 6573, 3, 41621, 29330, 7761, 6573, 568, 19001, 4312, 6573, 5647, 187, 50254, 50270, 29, 18789, 2234, 568, 30703, 264, 6573, 5647, 187, 50254, 50274, 870, 1968, 31, 187, 50254, 50274, 29, 1968, 34350, 568, 7716, 3, 2608, 6504, 1913, 19157, 568, 7716, 3, 2600, 10715, 568, 1274, 3, 4229, 9270, 568, 24239, 3, 2505, 568, 11300, 3, 1386, 30389, 10715, 568, 14694, 2290, 7157, 318, 3, 5927, 16976, 5496, 568, 740, 3, 30376, 7034, 2324, 3006, 17031, 34868, 41393, 568, 7716, 3, 2654, 568, 15580, 40, 14, 70, 44, 14, 22, 86, 52, 3, 2840, 4947, 568, 6573, 11495, 3, 2840, 13570, 568, 2973, 641, 3, 2840, 13570, 14725, 568, 7831, 1138, 187, 50254, 50270, 29, 6301, 2234, 568, 6301, 688, 1178, 3, 1054, 57, 568, 1976, 3, 1054, 58, 568, 16587, 15, 22, 3, 4871, 568, 3156, 15, 22, 3, 4898, 568, 938, 15, 22, 5647, 187, 50254, 50270, 29, 1920, 2324, 3006, 17031, 2234, 568, 1920, 2324, 3006, 17031, 3, 12112, 9684, 57, 568, 24239, 3, 12112, 9684, 58, 568, 24239, 5647, 187, 50254, 50270, 29, 4909, 11185, 2234, 568, 4909, 11185, 3, 1511, 568, 10394, 3, 1127, 5496, 568, 1166, 5647, 187, 50254, 50270, 29, 4897, 2234, 568, 1156, 6573, 3, 41621, 29330, 7761, 6573, 568, 19001, 4312, 6573, 5647, 187, 50254, 50270, 29, 18789, 2234, 568, 30703, 264, 6573, 5647, 187, 50254, 50274, 870, 1968, 31, 187, 50254, 50274, 29, 1968, 34350, 568, 7716, 3, 2608, 6504, 1913, 19157, 568, 7716, 3, 2600, 10715, 568, 1274, 3, 4229, 9270, 568, 24239, 3, 2505, 568, 11707, 3, 1386, 30389, 10715, 568, 14694, 2290, 7157, 318, 3, 5927, 16976, 5496, 568, 740, 3, 30376, 7034, 2324, 3006, 17031, 34868, 41393, 568, 7716, 3, 2654, 568, 91, 22, 50, 14, 3717, 14, 41, 6560, 3, 2840, 4947, 568, 6573, 11495, 3, 2840, 13570, 568, 2973, 641, 3, 2840, 13570, 14725, 568, 7831, 1138, 187, 50254, 50270, 29, 6301, 2234, 568, 6301, 688, 1178, 3, 1054, 57, 568, 22187, 3, 1054, 58, 568, 30977, 3, 4871, 568, 2031, 3, 4898, 568, 938, 15, 22, 5647, 187, 50254, 50270, 29, 1920, 2324, 3006, 17031, 2234, 568, 1920, 2324, 3006, 17031, 3, 12112, 9684, 57, 568, 24239, 3, 12112, 9684, 58, 568, 24239, 5647, 187, 50254, 50270, 29, 4909, 11185, 2234, 568, 4909, 11185, 3, 1511, 568, 10394, 3, 1127, 5496, 568, 1166, 5647, 187, 50254, 50270, 29, 4897, 2234, 568, 1156, 6573, 3, 41621, 29330, 7761, 6573, 568, 19001, 4312, 6573, 5647, 187, 50254, 50270, 29, 18789, 2234, 568, 30703, 264, 6573, 5647, 187, 50254, 50274, 870, 1968, 31, 187, 50254, 50274, 29, 1968, 34350, 568, 7716, 3, 2608, 6504, 1913, 19157, 568, 7716, 3, 2600, 10715, 568, 1274, 3, 4229, 9270, 568, 24239, 3, 2505, 568, 3980, 912, 3, 1386, 30389, 10715, 568, 14694, 2290, 7157, 318, 3, 5927, 16976, 5496, 568, 740, 3, 30376, 7034, 2324, 3006, 17031, 34868, 41393, 568, 7716, 3, 2654, 568, 38, 88, 26, 14, 82, 18, 14, 18068, 43, 3, 2840, 4947, 568, 6573, 11495, 3, 2840, 13570, 568, 2973, 641, 3, 2840, 13570, 14725, 568, 7831, 1138, 187, 50254, 50270, 29, 6301, 2234, 568, 6301, 688, 1178, 3, 1054, 57, 568, 22913, 3, 1054, 58, 568, 23580, 15, 22, 3, 4871, 568, 3011, 3, 4898, 568, 938, 15, 22, 5647, 187, 50254, 50270, 29, 1920, 2324, 3006, 17031, 2234, 568, 1920, 2324, 3006, 17031, 3, 12112, 9684, 57, 568, 24239, 3, 12112, 9684, 58, 568, 24239, 5647, 187, 50254, 50270, 29, 4909, 11185, 2234, 568, 4909, 11185, 3, 1511, 568, 10394, 3, 1127, 5496, 568, 1166, 5647, 187, 50254, 50270, 29, 4897, 2234, 568, 1156, 6573, 3, 41621, 29330, 7761, 6573, 568, 19001, 4312, 6573, 5647, 187, 50254, 50270, 29, 18789, 2234, 568, 30703, 264, 6573, 5647, 187, 50254, 50274, 870, 1968, 31, 187, 50254, 50274, 29, 1968, 34350, 568, 7716, 3, 2608, 6504, 1913, 19157, 568, 7716, 3, 2600, 10715, 568, 1274, 3, 4229, 9270, 568, 24239, 3, 2505, 568, 30431, 713, 3, 1386, 30389, 10715, 568, 14694, 2290, 7157, 318, 3, 5927, 16976, 5496, 568, 740, 3, 30376, 7034, 2324, 3006, 17031, 34868, 41393, 568, 7716, 3, 2654, 568, 265, 86, 14, 8500, 14, 13834, 58, 3, 2840, 4947, 568, 6573, 11495, 3, 2840, 13570, 568, 2973, 641, 3, 2840, 13570, 14725, 568, 7831, 1138, 187, 50254, 50270, 29, 6301, 2234, 568, 6301, 688, 1178, 3, 1054, 57, 568, 12434, 15, 22, 3, 1054, 58, 568, 24698, 3, 4871, 568, 2537, 15, 22, 3, 4898, 568, 938, 15, 22, 5647, 187, 50254, 50270, 29, 1920, 2324, 3006, 17031, 2234, 568, 1920, 2324, 3006, 17031, 3, 12112, 9684, 57, 568, 24239, 3, 12112, 9684, 58, 568, 24239, 5647, 187, 50254, 50270, 29, 4909, 11185, 2234, 568, 4909, 11185, 3, 1511, 568, 10394, 3, 1127, 5496, 568, 1166, 5647, 187, 50254, 50270, 29, 4897, 2234, 568, 1156, 6573, 3, 41621, 29330, 7761, 6573, 568, 19001, 4312, 6573, 5647, 187, 50254, 50270, 29, 18789, 2234, 568, 30703, 264, 6573, 5647, 187, 50254, 50274, 870, 1968, 31, 187, 50254, 50274, 29, 1968, 34350, 568, 7716, 3, 2608, 6504, 1913, 19157, 568, 7716, 3, 2600, 10715, 568, 1274, 3, 4229, 9270, 568, 24239, 3, 2505, 568, 12641, 3, 1386, 30389, 10715, 568, 14694, 2290, 7157, 318, 3, 5927, 16976, 5496, 568, 740, 3, 30376, 7034, 2324, 3006, 17031, 34868, 41393, 568, 7716, 3, 2654, 568, 35, 20, 48, 14, 6917, 14, 26, 38836, 3, 2840, 4947, 568, 6573, 11495, 3, 2840, 13570, 568, 2973, 641, 3, 2840, 13570, 14725, 568, 7831, 1138, 187, 50254, 50270, 29, 6301, 2234, 568, 6301, 688, 1178, 3, 1054, 57, 568, 3712, 3, 1054, 58, 568, 30889, 3, 4871, 568, 3011, 15, 22, 3, 4898, 568, 938, 15, 22, 5647, 187, 50254, 50270, 29, 1920, 2324, 3006, 17031, 2234, 568, 1920, 2324, 3006, 17031, 3, 12112, 9684, 57, 568, 24239, 3, 12112, 9684, 58, 568, 24239, 5647, 187, 50254, 50270, 29, 4909, 11185, 2234, 568, 4909, 11185, 3, 1511, 568, 12509, 7761, 3, 1127, 5496, 568, 1166, 5647, 187, 50254, 50270, 29, 4897, 2234, 568, 1156, 6573, 3, 41621, 29330, 7761, 6573, 568, 19001, 4312, 6573, 5647, 187, 50254, 50270, 29, 18789, 2234, 568, 30703, 264, 6573, 5647, 187, 50254, 50274, 870, 1968, 31, 187, 50254, 50274, 29, 1968, 34350, 568, 7716, 3, 2608, 6504, 1913, 19157, 568, 7716, 3, 2600, 10715, 568, 1274, 3, 4229, 9270, 568, 24239, 3, 2505, 568, 31952, 9, 17, 13, 15610, 13, 15215, 6844, 1386, 30389, 10715, 568, 14694, 2290, 7157, 318, 3, 5927, 16976, 5496, 568, 740, 3, 30376, 7034, 2324, 3006, 17031, 34868, 41393, 568, 7716, 3, 2654, 568, 39, 6350, 14, 5738, 14, 17, 76, 40, 3, 2840, 4947, 568, 6573, 11495, 3, 2840, 13570, 568, 2973, 641, 3, 2840, 13570, 14725, 568, 7831, 1138, 187, 50254, 50270, 29, 6301, 2234, 568, 6301, 688, 1178, 3, 1054, 57, 568, 16899, 3, 1054, 58, 568, 45153, 15, 22, 3, 4871, 568, 8193, 3, 4898, 568, 938, 15, 22, 5647, 187, 50254, 50270, 29, 1920, 2324, 3006, 17031, 2234, 568, 1920, 2324, 3006, 17031, 3, 12112, 9684, 57, 568, 24239, 3, 12112, 9684, 58, 568, 24239, 5647, 187, 50254, 50270, 29, 4909, 11185, 2234, 568, 4909, 11185, 3, 1511, 568, 10394, 3, 1127, 5496, 568, 1166, 5647, 187, 50254, 50270, 29, 4897, 2234, 568, 1156, 6573, 3, 41621, 29330, 7761, 6573, 568, 19001, 4312, 6573, 5647, 187, 50254, 50270, 29, 18789, 2234, 568, 30703, 264, 6573, 5647, 187, 50254, 50274, 870, 1968, 31, 187, 50254, 870, 2377, 17920, 31, 187, 50254, 29, 4897, 2234, 568, 11814, 6573, 3, 2502, 568, 17, 15, 24, 38119, 15497, 1099, 2537, 11325, 25616, 3, 4759, 568, 17, 15, 24, 38119, 15497, 1099, 2537, 11325, 25616, 3, 4797, 568, 17, 15, 24, 38119, 15497, 1099, 2537, 11325, 25616, 3, 9765, 568, 18, 3, 3295, 16929, 568, 1179, 50250, 34321, 5647, 187, 50254, 29, 3474, 21462, 31, 187, 50254, 50274, 29, 30995, 806, 5475, 568, 76, 50, 44, 14, 57, 78, 14, 21, 52, 57, 3, 806, 11756, 568, 16378, 3, 1273, 5475, 568, 25, 67, 36, 14, 57, 71, 14, 19122, 36, 3, 1273, 11756, 568, 16378, 46, 4319, 3, 2654, 568, 3439, 75, 14, 18446, 14, 1372, 36, 5647, 187, 50254, 50274, 29, 30995, 806, 5475, 568, 82, 19, 43, 14, 25, 74, 14, 18, 7988, 3, 806, 11756, 568, 3956, 3, 1273, 5475, 568, 25, 67, 36, 14, 57, 71, 14, 19122, 36, 3, 1273, 11756, 568, 3956, 46, 4319, 3, 3638, 568, 1237, 3, 2654, 568, 23, 4280, 14, 88, 19, 14, 55, 26, 36, 5647, 187, 50254, 50274, 29, 30995, 806, 5475, 568, 82, 19, 43, 14, 25, 74, 14, 18, 7988, 3, 806, 11756, 568, 16378, 3, 1273, 5475, 568, 25, 67, 36, 14, 57, 71, 14, 19122, 36, 3, 1273, 11756, 568, 16378, 46, 4319, 3, 2654, 568, 42829, 17, 14, 76, 91, 14, 53, 6677, 5647, 187, 50254, 50274, 29, 30995, 806, 5475, 568, 17312, 35, 14, 81, 22, 14, 1992, 51, 3, 806, 11756, 568, 16378, 3, 1273, 5475, 568, 25, 67, 36, 14, 57, 71, 14, 19122, 36, 3, 1273, 11756, 568, 16378, 46, 4319, 3, 2654, 568, 43, 40, 44, 14, 17, 37, 14, 82, 13924, 5647, 187, 50254, 50274, 29, 30995, 806, 5475, 568, 82, 19, 43, 14, 25, 74, 14, 18, 7988, 3, 806, 11756, 568, 7604, 4837, 3, 1273, 5475, 568, 25, 67, 36, 14, 57, 71, 14, 19122, 36, 3, 1273, 11756, 568, 7604, 4837, 46, 4319, 3, 2654, 568, 59, 71, 58, 14, 74, 52, 14, 66, 59, 78, 5647, 187, 50254, 50274, 29, 30995, 806, 5475, 568, 76, 50, 44, 14, 57, 78, 14, 21, 52, 57, 3, 806, 11756, 568, 3956, 3, 1273, 5475, 568, 25, 67, 36, 14, 57, 71, 14, 19122, 36, 3, 1273, 11756, 568, 3956, 46, 4319, 3, 3638, 568, 21361, 3, 2654, 568, 70, 8887, 14, 28086, 14, 88, 20, 44, 5647, 187, 50254, 50274, 29, 30995, 806, 5475, 568, 17312, 35, 14, 81, 22, 14, 1992, 51, 3, 806, 11756, 568, 3956, 3, 1273, 5475, 568, 25, 67, 36, 14, 57, 71, 14, 19122, 36, 3, 1273, 11756, 568, 3956, 3, 3638, 568, 36043, 3, 2654, 568, 76, 42636, 14, 36639, 14, 37, 1432, 5647, 187, 50254, 50274, 29, 30995, 806, 5475, 568, 17312, 35, 14, 81, 22, 14, 1992, 51, 3, 806, 11756, 568, 7604, 4837, 3, 1273, 5475, 568, 25, 67, 36, 14, 57, 71, 14, 19122, 36, 3, 1273, 11756, 568, 7604, 4837, 46, 4319, 3, 2654, 568, 77, 4305, 14, 3979, 14, 1838, 47, 5647, 187, 50254, 50274, 29, 30995, 806, 5475, 568, 76, 50, 44, 14, 57, 78, 14, 21, 52, 57, 3, 806, 11756, 568, 7604, 4837, 3, 1273, 5475, 568, 25, 67, 36, 14, 57, 71, 14, 19122, 36, 3, 1273, 11756, 568, 7604, 4837, 46, 4319, 3, 2654, 568, 81, 9499, 14, 58, 37, 14, 83, 18769, 5647, 187, 50254, 870, 3474, 21462, 31, 187, 50258, 870, 1374, 31, 187, 50262, 870, 1374, 8929, 31, 187, 50262, 29, 42152, 30300, 18483, 568, 5472, 6407, 23450, 9631, 3, 2654, 568, 17261, 89, 14, 91, 17, 14, 79, 31383, 3, 6200, 20226, 1838, 568, 7053, 23450, 9631, 5647, 187, 50266, 870, 25964, 31, 187, 50266, 29, 3659, 2234, 568, 32688, 11930, 3, 1269, 568, 2357, 15, 22, 43977, 14432, 3953, 3, 340, 568, 1787, 15, 1610, 1012, 26274, 22130, 22519, 2227, 5647, 187, 50270, 870, 32280, 31, 187, 50274, 870, 1026, 24453, 31, 187, 870, 3306, 31, 187 ]
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="11201" systemVersion="15G1004" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" colorMatched="YES" initialViewController="BYZ-38-t0r"> <dependencies> <deployment identifier="iOS"/> <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="11161"/> <capability name="Constraints to layout margins" minToolsVersion="6.0"/> <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/> </dependencies> <scenes> <!--View Controller--> <scene sceneID="tne-QT-ifu"> <objects> <viewController id="BYZ-38-t0r" customClass="ViewController" customModule="Colors" customModuleProvider="target" sceneMemberID="viewController"> <layoutGuides> <viewControllerLayoutGuide type="top" id="y3c-jy-aDJ"/> <viewControllerLayoutGuide type="bottom" id="wfy-db-euE"/> </layoutGuides> <view key="view" contentMode="scaleToFill" id="8bC-Xf-vdC"> <rect key="frame" x="0.0" y="0.0" width="375" height="667"/> <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> <subviews> <label opaque="NO" userInteractionEnabled="NO" tag="1" contentMode="left" text="UIColor+Expression allows you to set colours using strings. Either with hex values in various formats..." textAlignment="center" lineBreakMode="wordWrap" numberOfLines="0" minimumFontSize="10" preferredMaxLayoutWidth="280" translatesAutoresizingMaskIntoConstraints="NO" id="q2J-8i-1LC"> <fontDescription key="fontDescription" type="system" pointSize="17"/> <color key="textColor" cocoaTouchSystemColor="darkTextColor"/> <nil key="highlightedColor"/> </label> <label opaque="NO" userInteractionEnabled="NO" tag="1" contentMode="left" text="Or using predefined color constant names (case insensitive)..." textAlignment="center" lineBreakMode="wordWrap" numberOfLines="0" minimumFontSize="10" preferredMaxLayoutWidth="280" translatesAutoresizingMaskIntoConstraints="NO" id="kQK-Xm-4SX"> <fontDescription key="fontDescription" type="system" pointSize="17"/> <color key="textColor" cocoaTouchSystemColor="darkTextColor"/> <nil key="highlightedColor"/> </label> <label opaque="NO" userInteractionEnabled="NO" tag="1" contentMode="left" text="Or using the rgb() and rgba() functions..." textAlignment="center" lineBreakMode="wordWrap" numberOfLines="0" minimumFontSize="10" preferredMaxLayoutWidth="280" translatesAutoresizingMaskIntoConstraints="NO" id="cvB-p5-ToR"> <fontDescription key="fontDescription" type="system" pointSize="17"/> <color key="textColor" cocoaTouchSystemColor="darkTextColor"/> <nil key="highlightedColor"/> </label> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" fixedFrame="YES" text="#fff" lineBreakMode="tailTruncation" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="xM5-YQ-x05" customClass="ColorLabel" customModule="Colors" customModuleProvider="target"> <frame key="frameInset" minX="56" minY="117" width="42" height="20.5"/> <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> <fontDescription key="fontDescription" type="system" pointSize="17"/> <color key="textColor" cocoaTouchSystemColor="darkTextColor"/> <nil key="highlightedColor"/> </label> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" fixedFrame="YES" text="#ff0000" lineBreakMode="tailTruncation" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="cFV-zY-qq7" customClass="ColorLabel" customModule="Colors" customModuleProvider="target"> <frame key="frameInset" minX="80" minY="158.5" width="58" height="20.5"/> <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> <fontDescription key="fontDescription" type="system" pointSize="17"/> <color key="textColor" cocoaTouchSystemColor="darkTextColor"/> <nil key="highlightedColor"/> </label> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" fixedFrame="YES" text="#555" lineBreakMode="tailTruncation" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="wet-tq-CE0" customClass="ColorLabel" customModule="Colors" customModuleProvider="target"> <frame key="frameInset" minX="52" minY="200" width="58" height="20.5"/> <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> <fontDescription key="fontDescription" type="system" pointSize="17"/> <color key="textColor" cocoaTouchSystemColor="darkTextColor"/> <nil key="highlightedColor"/> </label> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" fixedFrame="YES" text="#00Ff00" lineBreakMode="tailTruncation" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="pbR-dv-SbZ" customClass="ColorLabel" customModule="Colors" customModuleProvider="target"> <frame key="frameInset" minX="142" minY="119" width="67" height="20.5"/> <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> <fontDescription key="fontDescription" type="system" pointSize="17"/> <color key="textColor" cocoaTouchSystemColor="darkTextColor"/> <nil key="highlightedColor"/> </label> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" fixedFrame="YES" text="#ff5500" lineBreakMode="tailTruncation" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="HD5-uQ-8LZ" customClass="ColorLabel" customModule="Colors" customModuleProvider="target"> <frame key="frameInset" minX="270.5" minY="190" width="63" height="20.5"/> <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> <fontDescription key="fontDescription" type="system" pointSize="17"/> <color key="textColor" cocoaTouchSystemColor="darkTextColor"/> <nil key="highlightedColor"/> </label> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" fixedFrame="YES" text="#ffff00" lineBreakMode="tailTruncation" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="dqx-9j-QOs" customClass="ColorLabel" customModule="Colors" customModuleProvider="target"> <frame key="frameInset" minX="266" minY="117" width="58" height="20.5"/> <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> <fontDescription key="fontDescription" type="system" pointSize="17"/> <color key="textColor" cocoaTouchSystemColor="darkTextColor"/> <nil key="highlightedColor"/> </label> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" fixedFrame="YES" text="#000000FF" lineBreakMode="tailTruncation" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="drN-Q7-VbA" customClass="ColorLabel" customModule="Colors" customModuleProvider="target"> <frame key="frameInset" minX="201" minY="150.5" width="91" height="20.5"/> <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> <fontDescription key="fontDescription" type="system" pointSize="17"/> <color key="textColor" cocoaTouchSystemColor="darkTextColor"/> <nil key="highlightedColor"/> </label> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" fixedFrame="YES" text="#FF000055" lineBreakMode="tailTruncation" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="4ss-na-n6H" customClass="ColorLabel" customModule="Colors" customModuleProvider="target"> <frame key="frameInset" minX="156" minY="199" width="90.5" height="20.5"/> <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> <fontDescription key="fontDescription" type="system" pointSize="17"/> <color key="textColor" cocoaTouchSystemColor="darkTextColor"/> <nil key="highlightedColor"/> </label> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" fixedFrame="YES" text="RED" lineBreakMode="tailTruncation" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="r4x-6M-Js6" customClass="ColorLabel" customModule="Colors" customModuleProvider="target"> <frame key="frameInset" minX="56" minY="315.5" width="42" height="20.5"/> <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> <fontDescription key="fontDescription" type="system" pointSize="17"/> <color key="textColor" cocoaTouchSystemColor="darkTextColor"/> <nil key="highlightedColor"/> </label> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" fixedFrame="YES" text="rgb(255, 127, 0)" lineBreakMode="tailTruncation" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="9zb-re-lYq" customClass="ColorLabel" customModule="Colors" customModuleProvider="target"> <frame key="frameInset" minX="51" minY="524.5" width="120" height="20.5"/> <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> <fontDescription key="fontDescription" type="system" pointSize="17"/> <color key="textColor" cocoaTouchSystemColor="darkTextColor"/> <nil key="highlightedColor"/> </label> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" fixedFrame="YES" text="rgb(0, 127, 0)" lineBreakMode="tailTruncation" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="PCo-VT-2Au" customClass="ColorLabel" customModule="Colors" customModuleProvider="target"> <frame key="frameInset" minX="52" minY="608.5" width="100" height="20.5"/> <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> <fontDescription key="fontDescription" type="system" pointSize="17"/> <color key="textColor" cocoaTouchSystemColor="darkTextColor"/> <nil key="highlightedColor"/> </label> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" fixedFrame="YES" text="rgba(255, 0, 0, 0.5)" lineBreakMode="tailTruncation" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="xV5-IP-Z5C" customClass="ColorLabel" customModule="Colors" customModuleProvider="target"> <frame key="frameInset" minX="102" minY="571" width="146.5" height="20.5"/> <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> <fontDescription key="fontDescription" type="system" pointSize="17"/> <color key="textColor" cocoaTouchSystemColor="darkTextColor"/> <nil key="highlightedColor"/> </label> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" fixedFrame="YES" text="rgba(255, 0, 127, 0.9)" lineBreakMode="tailTruncation" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="XI1-Q8-g3p" customClass="ColorLabel" customModule="Colors" customModuleProvider="target"> <frame key="frameInset" minX="180" minY="619.5" width="161.5" height="20.5"/> <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> <fontDescription key="fontDescription" type="system" pointSize="17"/> <color key="textColor" cocoaTouchSystemColor="darkTextColor"/> <nil key="highlightedColor"/> </label> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" fixedFrame="YES" text="cyan" lineBreakMode="tailTruncation" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="Sjo-fP-Jcg" customClass="ColorLabel" customModule="Colors" customModuleProvider="target"> <frame key="frameInset" minX="111" minY="325" width="44" height="20.5"/> <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> <fontDescription key="fontDescription" type="system" pointSize="17"/> <color key="textColor" cocoaTouchSystemColor="darkTextColor"/> <nil key="highlightedColor"/> </label> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" fixedFrame="YES" text="bLuE" lineBreakMode="tailTruncation" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="T1l-25-mP2" customClass="ColorLabel" customModule="Colors" customModuleProvider="target"> <frame key="frameInset" minX="159.5" minY="362" width="42" height="19"/> <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> <fontDescription key="fontDescription" type="system" pointSize="17"/> <color key="textColor" cocoaTouchSystemColor="darkTextColor"/> <nil key="highlightedColor"/> </label> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" fixedFrame="YES" text="Gray" lineBreakMode="tailTruncation" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="ayM-ju-3CW" customClass="ColorLabel" customModule="Colors" customModuleProvider="target"> <frame key="frameInset" minX="280" minY="391.5" width="40" height="20.5"/> <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> <fontDescription key="fontDescription" type="system" pointSize="17"/> <color key="textColor" cocoaTouchSystemColor="darkTextColor"/> <nil key="highlightedColor"/> </label> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" fixedFrame="YES" text="PINK" lineBreakMode="tailTruncation" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="7j4-aW-xzL" customClass="ColorLabel" customModule="Colors" customModuleProvider="target"> <frame key="frameInset" minX="247" minY="352" width="42" height="20.5"/> <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> <fontDescription key="fontDescription" type="system" pointSize="17"/> <color key="textColor" cocoaTouchSystemColor="darkTextColor"/> <nil key="highlightedColor"/> </label> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" fixedFrame="YES" text="black" lineBreakMode="tailTruncation" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="54q-ZL-kVM" customClass="ColorLabel" customModule="Colors" customModuleProvider="target"> <frame key="frameInset" minX="170" minY="313.5" width="42" height="20.5"/> <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> <fontDescription key="fontDescription" type="system" pointSize="17"/> <color key="textColor" cocoaTouchSystemColor="darkTextColor"/> <nil key="highlightedColor"/> </label> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" fixedFrame="YES" text="white" lineBreakMode="tailTruncation" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="DTG-eK-5uS" customClass="ColorLabel" customModule="Colors" customModuleProvider="target"> <frame key="frameInset" minX="75" minY="360.5" width="41.5" height="20.5"/> <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> <fontDescription key="fontDescription" type="system" pointSize="17"/> <color key="textColor" cocoaTouchSystemColor="darkTextColor"/> <nil key="highlightedColor"/> </label> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" fixedFrame="YES" text="green" lineBreakMode="tailTruncation" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="z5Q-CD-HNe" customClass="ColorLabel" customModule="Colors" customModuleProvider="target"> <frame key="frameInset" minX="233" minY="415" width="44" height="20.5"/> <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> <fontDescription key="fontDescription" type="system" pointSize="17"/> <color key="textColor" cocoaTouchSystemColor="darkTextColor"/> <nil key="highlightedColor"/> </label> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" fixedFrame="YES" text="Orange" lineBreakMode="tailTruncation" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="Ew9-q1-ghJ" customClass="ColorLabel" customModule="Colors" customModuleProvider="target"> <frame key="frameInset" minX="268" minY="315.5" width="57" height="20.5"/> <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> <fontDescription key="fontDescription" type="system" pointSize="17"/> <color key="textColor" cocoaTouchSystemColor="darkTextColor"/> <nil key="highlightedColor"/> </label> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" fixedFrame="YES" text="Purple" lineBreakMode="tailTruncation" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="esu-ao-AvY" customClass="ColorLabel" customModule="Colors" customModuleProvider="target"> <frame key="frameInset" minX="140.5" minY="396" width="49.5" height="20.5"/> <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> <fontDescription key="fontDescription" type="system" pointSize="17"/> <color key="textColor" cocoaTouchSystemColor="darkTextColor"/> <nil key="highlightedColor"/> </label> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" fixedFrame="YES" text="ERROR" lineBreakMode="tailTruncation" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="B3O-mt-9JE" customClass="ColorLabel" customModule="Colors" customModuleProvider="target"> <frame key="frameInset" minX="51" minY="410" width="57.5" height="20.5"/> <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> <fontDescription key="fontDescription" type="boldSystem" pointSize="17"/> <color key="textColor" cocoaTouchSystemColor="darkTextColor"/> <nil key="highlightedColor"/> </label> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" fixedFrame="YES" text="rgb(0, 127, 255)" lineBreakMode="tailTruncation" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="FQL-ua-0kG" customClass="ColorLabel" customModule="Colors" customModuleProvider="target"> <frame key="frameInset" minX="210" minY="533.5" width="120" height="20.5"/> <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> <fontDescription key="fontDescription" type="system" pointSize="17"/> <color key="textColor" cocoaTouchSystemColor="darkTextColor"/> <nil key="highlightedColor"/> </label> </subviews> <color key="backgroundColor" red="0.78431372549019607" green="0.78431372549019607" blue="0.78431372549019607" alpha="1" colorSpace="calibratedRGB"/> <constraints> <constraint firstItem="kQK-Xm-4SX" firstAttribute="leading" secondItem="8bC-Xf-vdC" secondAttribute="leadingMargin" id="54j-FB-ORC"/> <constraint firstItem="q2J-8i-1LC" firstAttribute="top" secondItem="8bC-Xf-vdC" secondAttribute="topMargin" constant="32" id="6CA-w2-V9C"/> <constraint firstItem="q2J-8i-1LC" firstAttribute="leading" secondItem="8bC-Xf-vdC" secondAttribute="leadingMargin" id="Ay0-kz-Tln"/> <constraint firstItem="cvB-p5-ToR" firstAttribute="leading" secondItem="8bC-Xf-vdC" secondAttribute="leadingMargin" id="JGK-0D-qAh"/> <constraint firstItem="q2J-8i-1LC" firstAttribute="trailing" secondItem="8bC-Xf-vdC" secondAttribute="trailingMargin" id="ZfY-iS-aZm"/> <constraint firstItem="kQK-Xm-4SX" firstAttribute="top" secondItem="8bC-Xf-vdC" secondAttribute="topMargin" constant="249" id="eCV-MN-w3K"/> <constraint firstItem="cvB-p5-ToR" firstAttribute="top" secondItem="8bC-Xf-vdC" secondAttribute="top" constant="463" id="kHb-VB-Daj"/> <constraint firstItem="cvB-p5-ToR" firstAttribute="trailing" secondItem="8bC-Xf-vdC" secondAttribute="trailingMargin" id="ljs-BC-IDN"/> <constraint firstItem="kQK-Xm-4SX" firstAttribute="trailing" secondItem="8bC-Xf-vdC" secondAttribute="trailingMargin" id="pKe-YD-rIZ"/> </constraints> </view> </viewController> <placeholder placeholderIdentifier="IBFirstResponder" id="dkx-z0-nzr" sceneMemberID="firstResponder"/> </objects> <point key="canvasLocation" x="77.599999999999994" y="37.331334332833585"/> </scene> </scenes> </document>
214,387
Github
[ 4, 34834, 4805, 16, 31333, 187, 187, 13266, 46946, 45518, 370, 17, 65, 187, 16659, 370, 13266, 16, 3043, 1200, 324, 656, 303, 16, 1200, 324, 656, 303, 15, 4789, 45843, 187 ]
#!/bin/bash DIR=`dirname $0` python $DIR/../shadysim/shadysim.py $@
214,388
Github
[ 4, 26579, 2378, 187, 187, 4, 3709, 654, 50, 4505, 31, 187, 4, 3709, 654, 50, 19824, 37226, 31, 187, 187, 4, 3709, 346, 11717, 25679, 15, 73, 3, 187, 187, 12361, 530, 74, 551, 187, 2437, 5706, 8941, 16786, 28, 187, 94, 187, 187, 2437, 5706, 8941, 16786, 1163, 1345, 10718, 16786, 551, 187, 50274, 50, 64, 35581, 535, 50275, 4387, 27, 187, 50274, 911, 20692, 5706, 8941, 16786, 9, 50, 17393, 475, 5598, 426, 28471, 558, 187, 50274, 95, 6601, 8941, 16786, 1874, 535, 50274, 50, 4505, 475, 788, 4505, 1874, 535, 50274, 50, 2776, 755, 13408, 1874, 535, 50275, 4387, 25195, 27, 187, 50274, 4353, 2997, 1874, 535, 50275, 9486, 25195, 27, 187, 50274, 4353, 327, 64, 5758, 8880, 64, 9738, 264, 1874, 535, 50274, 4353, 327, 64, 3140, 13904, 64, 1156, 17196, 9, 3474, 44486, 708, 1662, 18, 558, 535, 50274, 4353, 327, 64, 21596, 8880, 64, 9738, 264, 1874, 535, 50274, 4353, 6184, 25155, 9, 82, 565, 1540, 11061, 41672, 13, 2805, 565, 1540, 11061, 12481, 558, 535, 50274, 4353, 15239, 37226, 17398, 1428, 9, 50, 19824, 37226, 475, 35670, 558, 535, 50275, 9486, 27, 187, 50274, 49511, 1450, 6601, 8941, 16786, 475, 4113, 28, 187, 50274, 50, 19824, 11501, 8224, 37234, 18428, 8224, 28, 187, 50274, 10975, 795, 14764, 426, 3221, 28, 187, 4718, 187 ]
#pragma once #include <QFile> #include <QNetworkReply> #include "masterdialog.h" namespace Ui { class AttachmentDialog; } class AttachmentDialog : public MasterDialog { Q_OBJECT public: explicit AttachmentDialog(QWidget *parent = nullptr); ~AttachmentDialog(); QFile *getFile(); QString getTitle(); public slots: void accept(); private slots: void on_openButton_clicked(); void on_fileEdit_textChanged(const QString &arg1); void on_downloadButton_clicked(); void downloadProgress(qint64 bytesReceived, qint64 bytesTotal); void slotReplyFinished(QNetworkReply *reply); private: Ui::AttachmentDialog *ui; QNetworkAccessManager *_networkManager; bool _accept = false; };
214,389
Github
[ 4387, 966, 2070, 292, 6124, 64, 17809, 64, 41532, 551, 187, 94, 187, 187, 6930, 187, 475, 1214, 22113, 27, 187, 475, 1214, 43731, 27, 43471, 7050, 187, 475, 1214, 11185, 27, 209, 12755, 236, 17576, 27896, 15962, 29533, 20326, 295, 209, 5225, 15531, 41251, 6238, 11827, 124, 22044, 36359, 13609, 5225, 13127, 234, 15531, 4340, 13127, 234, 15531, 12105, 34811, 13610, 15531, 41251, 13609, 18678, 35321, 35241, 15531, 15962, 30329, 3384, 223, 221, 295, 16, 19, 3384, 223, 222, 209, 5225, 44114, 48815, 4340, 187, 475, 209, 2015, 46928, 24553, 33018, 28915, 218, 42205, 15531, 41251, 12105, 48991, 45249, 5225, 6238, 42843, 3218, 231, 12755, 236, 17576, 5225, 15531, 41251, 13258, 121, 12105, 32938, 13610, 13127, 234, 15531, 4340, 187, 475, 1214, 282, 292, 3211, 64, 6434, 27, 3614, 1358, 282, 292, 3211, 14, 14340, 15, 681, 16, 856, 23042, 16, 24330, 414, 14, 10531, 16, 187, 475, 1214, 14897, 27, 259, 606, 91, 31035, 187, 475, 1214, 6958, 27, 6247, 14, 1762, 14, 805, 15630, 27, 2537, 27, 2941, 187, 475, 1214, 8893, 27, 337, 15, 17, 15, 17, 187, 475, 1214, 7542, 27, 337, 15, 25, 187, 1401, 16, 187, 2437, 43471, 7050, 551, 2756, 50274, 4387, 540, 5020, 7050, 9, 565, 5456, 930, 84, 10, 551, 535, 50270, 338, 313, 6370, 84, 2295, 3635, 2785, 930, 84, 15, 3985, 2295, 470, 10, 551, 187, 50266, 2309, 428, 18, 28, 187, 50270, 94, 535, 50270, 565, 1385, 426, 470, 28, 187, 50270, 565, 5020, 426, 428, 18, 28, 535, 50270, 1542, 313, 565, 930, 1163, 930, 84, 10, 551, 187, 50266, 338, 313, 5560, 2295, 470, 10, 551, 187, 50262, 24330, 414, 426, 930, 28, 187, 50262, 5560, 14788, 187, 50266, 94, 2010, 551, 187, 50262, 338, 313, 24330, 414, 2295, 930, 10, 551, 187, 50258, 5560, 14788, 187, 50262, 94, 2010, 551, 187, 50258, 5560, 42277, 187, 50262, 94, 187, 50266, 94, 187, 50270, 94, 535, 50270, 338, 313, 5560, 11049, 470, 10, 551, 187, 50266, 2309, 428, 18, 28, 187, 50270, 94, 187, 50270, 565, 4828, 426, 470, 28, 187, 50270, 1542, 313, 565, 930, 1163, 930, 84, 10, 551, 187, 50266, 338, 313, 6370, 2295, 5020, 10, 551, 187, 50262, 20285, 14788, 187, 50266, 94, 187, 50270, 94, 187, 50270, 338, 313, 20285, 2239, 930, 84, 15, 3985, 1227, 374, 10, 551, 187, 50266, 2309, 5020, 28, 187, 50270, 94, 187, 50270, 2309, 428, 18, 28, 187, 50274, 94, 2756, 50274, 4387, 4228, 2991, 2022, 9, 2776, 5456, 13059, 10, 551, 535, 50270, 565, 5456, 930, 84, 426, 551, 19, 13, 374, 13, 337, 13, 337, 13, 337, 13, 374, 13, 374, 4718, 535, 50270, 565, 930, 426, 747, 43471, 7050, 5023, 24330, 414, 7050, 9, 6370, 84, 558, 187, 50270, 7761, 15, 483, 15, 16684, 9, 6370, 558, 187, 50274, 94, 187, 94, 187 ]
public class LeetCode_169_085 { } /** * @Package: * @ClassName: MajorityElement * @Description: 给定一个大小为 n 的数组,找到其中的众数。众数是指在数组中出现次数大于 ⌊ n/2 ⌋ 的元素。 * *************你可以假设数组是非空的,并且给定的数组总是存在众数。 * @leetcode_url:https://leetcode-cn.com/problems/majority-element/ * @Author: wangzhao * @Date: 2019-05-12 09:49:03 * @Version: 1.0.0 * @Since: 1.8 **/ class MajorityElement { public int majorityElement(int[] nums) { if (nums == null || nums.length == 0) { return -1; } int count = 0; int majority = -1; for (int num : nums) { if (count == 0) { majority = num; count++; } else { if (majority == num) { count++; } else { count--; } } } if (count <= 0) { return -1; } int counter = 0; for (int num : nums) { if (num == majority) { counter++; } } if (counter > nums.length / 2) { return majority; } return -1; } public static void main(String[] args) { int[] nums = {2, 2, 1, 1, 1, 2, 2}; int num = new MajorityElement().majorityElement(nums); System.out.println(num); } }
214,390
Github
[ 10708, 23370, 187, 187, 2948, 313, 187, 186, 3, 36371, 16, 33543, 3, 187, 186, 3, 36371, 16, 89, 17013, 3, 187, 186, 3, 27676, 16, 4793, 1540, 3, 187, 186, 3, 22836, 3, 187, 186, 3, 17101, 3, 187, 186, 3, 3024, 16, 6434, 3, 187, 186, 3, 375, 3, 535, 186, 15044, 75, 17118, 346, 72, 412, 5840, 15, 249, 16, 15044, 16, 2184, 14, 75, 583, 15, 87, 19, 16, 75, 17118, 3, 535, 186, 3, 7280, 15, 681, 16, 13362, 280, 24578, 16, 1000, 13585, 3, 187, 10, 187, 187, 2044, 313, 187, 186, 605, 49366, 25467, 10715, 32883, 310, 271, 16449, 55, 1416, 908, 281, 19495, 36249, 5511, 187, 186, 605, 281, 28551, 17808, 28437, 15, 187, 186, 23836, 25467, 10715, 32883, 426, 346, 16568, 10147, 64, 3859, 18591, 1042, 64, 28723, 2350, 9033, 64, 18129, 3, 535, 186, 605, 49366, 2447, 13585, 11200, 32883, 310, 253, 16449, 55, 1416, 908, 281, 1509, 10357, 1761, 21761, 281, 253, 187, 186, 605, 15191, 15, 187, 186, 23836, 2447, 13585, 11200, 32883, 426, 346, 16568, 10147, 64, 4037, 10690, 2088, 64, 7058, 39373, 3, 187, 10, 187, 187, 605, 49366, 2088, 1864, 77, 850, 23062, 310, 247, 25557, 326, 28437, 476, 897, 281, 20486, 36249, 10291, 187, 605, 896, 281, 657, 1923, 15, 187, 881, 49366, 2088, 1864, 77, 850, 23062, 1577, 551, 187, 186, 605, 2053, 403, 873, 407, 253, 3923, 1386, 12201, 15, 187, 186, 17101, 28348, 797, 50273, 2703, 187, 186, 17101, 20027, 506, 50273, 2703, 187, 186, 17101, 8975, 23940, 2876, 187, 186, 17101, 8975, 4814, 50276, 2703, 187, 186, 17101, 688, 26971, 50275, 10975, 187, 94, 187, 187, 605, 29565, 4531, 6548, 253, 7908, 873, 323, 3596, 981, 253, 36249, 4602, 187, 4997, 313, 71, 475, 23836, 2088, 1864, 77, 850, 23062, 10, 29565, 4531, 1082, 475, 17101, 15, 22532, 4531, 551, 187, 186, 3671, 3843, 7908, 15, 4257, 22532, 4531, 1587, 87, 1923, 15191, 7533, 995, 7908, 15, 41269, 2374, 4756, 10, 535, 186, 3671, 15, 2776, 13248, 6395, 71, 15, 17101, 28348, 797, 13, 346, 6357, 14, 15004, 995, 18586, 41956, 187, 186, 3671, 15, 2776, 13248, 6395, 71, 15, 17101, 20027, 506, 13, 346, 6357, 14, 3967, 995, 18586, 41956, 187, 186, 3671, 15, 2776, 13248, 6395, 71, 15, 17101, 8975, 23940, 13, 346, 8780, 14, 15004, 995, 18586, 41956, 187, 186, 3671, 15, 2776, 13248, 6395, 71, 15, 17101, 8975, 4814, 13, 346, 8780, 14, 2364, 995, 18586, 41956, 187, 186, 3671, 15, 30342, 13248, 6395, 71, 15, 17101, 688, 26971, 13, 346, 33543, 14, 19259, 14, 36302, 995, 3221, 13, 41956, 535, 186, 2309, 25290, 187, 94, 187, 187, 605, 5057, 29699, 6155, 588, 1091, 247, 36249, 6155, 1754, 745, 253, 2193, 432, 253, 12201, 187, 4997, 313, 71, 475, 23836, 2088, 1864, 77, 850, 23062, 10, 5057, 29699, 6155, 1082, 475, 29699, 6155, 551, 187, 186, 605, 1310, 359, 878, 2840, 36249, 6661, 13, 840, 873, 352, 187, 186, 338, 269, 15, 17101, 28348, 797, 3613, 4890, 2785, 269, 15, 17101, 20027, 506, 3613, 4890, 2785, 269, 15, 17101, 8975, 23940, 3613, 4890, 2785, 269, 15, 17101, 8975, 4814, 3613, 4890, 2785, 269, 15, 17101, 688, 26971, 551, 996, 186, 85, 3843, 708, 29699, 6155, 92, 988, 186, 28348, 797, 27, 50270, 71, 15, 17101, 28348, 797, 13, 988, 186, 20027, 506, 27, 50270, 71, 15, 17101, 20027, 506, 13, 988, 186, 8975, 23940, 27, 50274, 71, 15, 17101, 8975, 23940, 13, 988, 186, 8975, 4814, 27, 50273, 71, 15, 17101, 8975, 4814, 13, 988, 186, 14135, 3528, 17188, 2402, 27, 18586, 988, 186, 688, 26971, 27, 50272, 71, 15, 17101, 688, 26971, 13, 996, 186, 94, 6886, 186, 2309, 246, 187, 186, 94, 535, 186, 2309, 5296, 187, 94, 187, 187, 605, 657, 1923, 23836, 29699, 14725, 310, 1408, 3304, 247, 15191, 285, 12802, 265, 253, 2380, 187, 605, 15312, 36249, 14204, 432, 28395, 15, 733, 6548, 247, 15378, 36249, 20851, 15, 187, 4997, 657, 1923, 23836, 29699, 14725, 9, 6682, 29699, 6155, 475, 29699, 6155, 10, 11632, 1082, 2796, 33543, 15, 6155, 13, 2228, 10, 551, 187, 186, 338, 7684, 15, 3633, 12540, 9, 23836, 25467, 10715, 32883, 10, 2295, 346, 5672, 3, 551, 996, 186, 2309, 5296, 187, 186, 94, 535, 186, 2309, 11632, 1082, 2796, 33543, 15, 6155, 13, 2228, 10, 551, 996, 186, 328, 13585, 11200, 3843, 7684, 15, 3633, 12540, 9, 23836, 2447, 13585, 11200, 32883, 10, 6886, 186, 35422, 264, 43, 16594, 13, 1486, 3843, 6278, 75, 17118, 15, 21962, 52, 1300, 9, 328, 13585, 11200, 10, 996, 186, 338, 1486, 3613, 5296, 551, 988, 186, 2309, 5296, 13, 1486, 13585, 15, 43496, 71, 1587, 3775, 29072, 31705, 10669, 27, 12033, 1000, 599, 995, 1486, 10, 996, 186, 94, 6886, 186, 2044, 512, 34200, 84, 426, 1056, 9, 4251, 60, 2703, 62, 15049, 39224, 996, 186, 338, 1486, 426, 36838, 43, 16594, 15, 28240, 8407, 34200, 84, 20696, 10754, 1877, 6395, 455, 34200, 84, 558, 1486, 3613, 5296, 551, 988, 186, 2309, 5296, 13, 1486, 13585, 15, 43496, 71, 1587, 3775, 29072, 3916, 432, 31705, 10669, 27, 12033, 1000, 599, 995, 1486, 10, 996, 186, 94, 6886, 186, 9834, 34200, 24436, 13, 8718, 3843, 512, 34200, 84, 9855, 9834, 9686, 996, 186, 338, 2195, 536, 551, 988, 186, 2309, 5296, 13, 6332, 15, 4257, 1587, 16534, 417, 17813, 26181, 1750, 2807, 996, 186, 94, 996, 186, 87, 1923, 23054, 13, 8718, 3843, 26181, 34200, 24436, 14517, 2703, 10, 996, 186, 338, 2195, 536, 551, 988, 186, 2309, 5296, 13, 6332, 15, 4257, 1587, 16534, 417, 14390, 26181, 1750, 2807, 996, 186, 94, 996, 186, 338, 28395, 23054, 2295, 4890, 551, 988, 186, 2309, 5296, 13, 6332, 15, 4257, 37428, 2369, 28395, 23370, 64, 9834, 1119, 27362, 996, 186, 94, 6886, 186, 605, 5003, 414, 2451, 253, 1318, 996, 186, 338, 13830, 1486, 3843, 9688, 15, 21962, 9, 87, 1923, 23054, 558, 1486, 3613, 5296, 551, 988, 186, 2309, 5296, 13, 1486, 13585, 15, 43496, 71, 1587, 3775, 29072, 253, 28395, 23370, 64, 9834, 27, 12033, 1000, 599, 995, 1486, 10, 996, 186, 94, 6886, 186, 605, 914, 13585, 253, 10669, 996, 186, 8780, 14044, 3843, 18193, 6155, 1082, 996, 186, 8780, 14044, 15, 12236, 426, 28395, 23054, 996, 186, 338, 23370, 29699, 6155, 3613, 5296, 551, 988, 186, 1000, 3843, 5268, 14044, 15, 6155, 459, 29699, 9, 6682, 29699, 6155, 10, 988, 186, 338, 1486, 3613, 5296, 551, 2657, 186, 2309, 5296, 13, 1486, 13585, 15, 43496, 71, 1587, 3775, 3596, 981, 23370, 5268, 12033, 1000, 599, 995, 1486, 10, 988, 186, 94, 996, 186, 94, 996, 186, 8780, 13, 1486, 3843, 1457, 8975, 9, 8780, 14044, 10, 996, 186, 338, 1486, 3613, 5296, 551, 988, 186, 2309, 5296, 13, 1486, 13585, 15, 43496, 71, 1587, 3775, 1309, 23370, 5268, 8869, 27, 12033, 1000, 599, 995, 1486, 10, 996, 186, 94, 6886, 186, 22882, 13, 1486, 3843, 5268, 15, 6800, 474, 5023, 2447, 13585, 9, 328, 13585, 11200, 10, 996, 186, 338, 1486, 3613, 5296, 551, 988, 186, 2309, 5296, 13, 1486, 13585, 15, 43496, 71, 1587, 3775, 1309, 10669, 10357, 1761, 2748, 27, 12033, 1000, 599, 995, 1486, 10, 996, 186, 94, 996, 186, 338, 4279, 2295, 5296, 551, 988, 186, 2309, 5296, 13, 6332, 15, 4257, 1587, 3775, 1309, 10669, 10357, 1761, 2748, 27, 4279, 310, 5296, 2807, 996, 186, 94, 6886, 186, 605, 6724, 15311, 285, 14390, 253, 4771, 434, 14204, 996, 186, 9438, 23940, 16721, 24436, 13, 8718, 3843, 4279, 15, 3233, 9855, 12023, 23940, 37594, 9, 2703, 10, 996, 186, 338, 2195, 536, 551, 988, 186, 2309, 5296, 13, 6332, 15, 4257, 1587, 3775, 23355, 7894, 11822, 14204, 2807, 996, 186, 94, 6886, 186, 9438, 23940, 16721, 13, 1486, 3843, 2613, 1540, 15, 38821, 25396, 15, 46057, 2776, 9, 9438, 23940, 16721, 24436, 10, 996, 186, 338, 1486, 3613, 5296, 551, 988, 186, 2309, 5296, 13, 1486, 13585, 15, 43496, 71, 1587, 3775, 29072, 14204, 27, 12033, 1000, 599, 995, 1486, 10, 996, 186, 94, 6886, 186, 9438, 23940, 13, 1486, 3843, 1269, 17013, 15, 21962, 41169, 9, 9438, 23940, 16721, 10, 996, 186, 338, 1486, 3613, 5296, 551, 988, 186, 2309, 5296, 13, 1486, 13585, 15, 43496, 71, 1587, 3775, 29072, 14204, 27, 12033, 1000, 599, 995, 1486, 10, 996, 186, 94, 6886, 186, 605, 6724, 15311, 285, 14390, 253, 4771, 434, 3055, 2234, 996, 186, 9438, 4814, 35, 1540, 13, 8718, 3843, 4279, 15, 3233, 9855, 12023, 4814, 37594, 9, 2703, 10, 996, 186, 338, 2195, 536, 551, 988, 186, 2309, 5296, 13, 6332, 15, 4257, 1587, 3775, 23355, 7894, 11822, 14204, 2807, 996, 186, 94, 6886, 186, 9438, 4814, 24436, 13, 1486, 3843, 2613, 1540, 15, 38821, 25396, 15, 46057, 2776, 9, 9438, 4814, 35, 1540, 10, 996, 186, 338, 1486, 3613, 5296, 551, 988, 186, 2309, 5296, 13, 1486, 13585, 15, 43496, 71, 1587, 3775, 29072, 14204, 27, 12033, 1000, 599, 995, 1486, 10, 996, 186, 94, 6886, 186, 9438, 4814, 13, 1486, 3843, 1269, 17013, 15, 21962, 4625, 22279, 4814, 9, 9438, 4814, 24436, 10, 996, 186, 338, 1486, 3613, 5296, 551, 988, 186, 2309, 5296, 13, 1486, 13585, 15, 43496, 71, 1587, 3775, 29072, 14204, 27, 12033, 1000, 599, 995, 1486, 10, 996, 186, 94, 6886, 186, 605, 5733, 6582, 5306, 281, 253, 5306, 6363, 996, 186, 6357, 23940, 19287, 3843, 1269, 17013, 15, 4257, 23940, 19287, 1082, 996, 186, 6357, 23940, 19287, 15, 4717, 23940, 9, 9438, 23940, 10, 6886, 186, 605, 11103, 247, 14204, 1789, 562, 273, 253, 4771, 434, 5306, 285, 3055, 2234, 15, 996, 186, 15004, 3843, 246, 5200, 15, 41169, 92, 988, 186, 41169, 27, 8168, 5456, 8833, 92, 9438, 23940, 16721, 2023, 988, 186, 22279, 4814, 27, 50276, 9438, 4814, 13, 988, 186, 4015, 2320, 27, 50270, 9438, 23940, 13, 996, 186, 94, 6886, 186, 605, 40852, 36249, 3596, 996, 186, 33543, 6155, 3843, 708, 33543, 15, 6155, 92, 988, 186, 8975, 36, 1909, 27, 50276, 6357, 23940, 19287, 13, 988, 186, 16560, 36, 1909, 27, 50274, 6357, 23940, 19287, 13, 988, 186, 8975, 15714, 27, 246, 5200, 15, 42406, 1898, 10754, 1419, 8975, 23940, 13, 988, 186, 605, 36249, 337, 15, 19, 5927, 988, 186, 10292, 8893, 27, 50275, 33543, 15, 8893, 29699, 805, 13, 988, 186, 23940, 23994, 27, 8168, 33543, 15, 41169, 92, 15004, 2023, 988, 186, 12023, 2402, 27, 50275, 9438, 23940, 15, 18961, 15, 18170, 2402, 13, 996, 186, 94, 996, 186, 33543, 6155, 15, 10987, 2402, 1992, 41169, 1082, 6886, 186, 2309, 246, 5200, 6155, 13, 5296, 187, 186, 94, 187, 94, 187 ]
package api import ( "crypto/tls" "crypto/x509" "encoding/base64" "errors" "flag" "net/url" "os" squarejwt "gopkg.in/square/go-jose.v2/jwt" "github.com/hashicorp/errwrap" ) var ( // PluginMetadataModeEnv is an ENV name used to disable TLS communication // to bootstrap mounting plugins. PluginMetadataModeEnv = "VAULT_PLUGIN_METADATA_MODE" // PluginUnwrapTokenEnv is the ENV name used to pass unwrap tokens to the // plugin. PluginUnwrapTokenEnv = "VAULT_UNWRAP_TOKEN" ) // PluginAPIClientMeta is a helper that plugins can use to configure TLS connections // back to Vault. type PluginAPIClientMeta struct { // These are set by the command line flags. flagCACert string flagCAPath string flagClientCert string flagClientKey string flagInsecure bool } // FlagSet returns the flag set for configuring the TLS connection func (f *PluginAPIClientMeta) FlagSet() *flag.FlagSet { fs := flag.NewFlagSet("vault plugin settings", flag.ContinueOnError) fs.StringVar(&f.flagCACert, "ca-cert", "", "") fs.StringVar(&f.flagCAPath, "ca-path", "", "") fs.StringVar(&f.flagClientCert, "client-cert", "", "") fs.StringVar(&f.flagClientKey, "client-key", "", "") fs.BoolVar(&f.flagInsecure, "tls-skip-verify", false, "") return fs } // GetTLSConfig will return a TLSConfig based off the values from the flags func (f *PluginAPIClientMeta) GetTLSConfig() *TLSConfig { // If we need custom TLS configuration, then set it if f.flagCACert != "" || f.flagCAPath != "" || f.flagClientCert != "" || f.flagClientKey != "" || f.flagInsecure { t := &TLSConfig{ CACert: f.flagCACert, CAPath: f.flagCAPath, ClientCert: f.flagClientCert, ClientKey: f.flagClientKey, TLSServerName: "", Insecure: f.flagInsecure, } return t } return nil } // VaultPluginTLSProvider is run inside a plugin and retrieves the response // wrapped TLS certificate from vault. It returns a configured TLS Config. func VaultPluginTLSProvider(apiTLSConfig *TLSConfig) func() (*tls.Config, error) { if os.Getenv(PluginMetadataModeEnv) == "true" { return nil } return func() (*tls.Config, error) { unwrapToken := os.Getenv(PluginUnwrapTokenEnv) parsedJWT, err := squarejwt.ParseSigned(unwrapToken) if err != nil { return nil, errwrap.Wrapf("error parsing wrapping token: {{err}}", err) } var allClaims = make(map[string]interface{}) if err = parsedJWT.UnsafeClaimsWithoutVerification(&allClaims); err != nil { return nil, errwrap.Wrapf("error parsing claims from wrapping token: {{err}}", err) } addrClaimRaw, ok := allClaims["addr"] if !ok { return nil, errors.New("could not validate addr claim") } vaultAddr, ok := addrClaimRaw.(string) if !ok { return nil, errors.New("could not parse addr claim") } if vaultAddr == "" { return nil, errors.New(`no vault api_addr found`) } // Sanity check the value if _, err := url.Parse(vaultAddr); err != nil { return nil, errwrap.Wrapf("error parsing the vault api_addr: {{err}}", err) } // Unwrap the token clientConf := DefaultConfig() clientConf.Address = vaultAddr if apiTLSConfig != nil { err := clientConf.ConfigureTLS(apiTLSConfig) if err != nil { return nil, errwrap.Wrapf("error configuring api client {{err}}", err) } } client, err := NewClient(clientConf) if err != nil { return nil, errwrap.Wrapf("error during api client creation: {{err}}", err) } secret, err := client.Logical().Unwrap(unwrapToken) if err != nil { return nil, errwrap.Wrapf("error during token unwrap request: {{err}}", err) } if secret == nil { return nil, errors.New("error during token unwrap request: secret is nil") } // Retrieve and parse the server's certificate serverCertBytesRaw, ok := secret.Data["ServerCert"].(string) if !ok { return nil, errors.New("error unmarshalling certificate") } serverCertBytes, err := base64.StdEncoding.DecodeString(serverCertBytesRaw) if err != nil { return nil, errwrap.Wrapf("error parsing certificate: {{err}}", err) } serverCert, err := x509.ParseCertificate(serverCertBytes) if err != nil { return nil, errwrap.Wrapf("error parsing certificate: {{err}}", err) } // Retrieve and parse the server's private key serverKeyB64, ok := secret.Data["ServerKey"].(string) if !ok { return nil, errors.New("error unmarshalling certificate") } serverKeyRaw, err := base64.StdEncoding.DecodeString(serverKeyB64) if err != nil { return nil, errwrap.Wrapf("error parsing certificate: {{err}}", err) } serverKey, err := x509.ParseECPrivateKey(serverKeyRaw) if err != nil { return nil, errwrap.Wrapf("error parsing certificate: {{err}}", err) } // Add CA cert to the cert pool caCertPool := x509.NewCertPool() caCertPool.AddCert(serverCert) // Build a certificate object out of the server's cert and private key. cert := tls.Certificate{ Certificate: [][]byte{serverCertBytes}, PrivateKey: serverKey, Leaf: serverCert, } // Setup TLS config tlsConfig := &tls.Config{ ClientCAs: caCertPool, RootCAs: caCertPool, ClientAuth: tls.RequireAndVerifyClientCert, // TLS 1.2 minimum MinVersion: tls.VersionTLS12, Certificates: []tls.Certificate{cert}, ServerName: serverCert.Subject.CommonName, } tlsConfig.BuildNameToCertificate() return tlsConfig, nil } }
214,391
Github
[ 32488, 187, 22893, 1417, 17855, 42619, 285, 8490, 21578, 313, 11888, 16120, 28795, 10, 281, 322, 20, 187, 187, 1552, 1650, 14371, 970, 16120, 28795, 313, 13917, 26040, 16, 7559, 49993, 25603, 10, 281, 27, 187, 18, 10, 8192, 715, 247, 4422, 259, 16, 23820, 7141, 275, 4602, 13130, 686, 2034, 28795, 64, 22670, 64, 301, 8, 187, 19, 10, 21578, 247, 1873, 313, 4478, 4215, 327, 16164, 10, 187, 20, 10, 34717, 253, 45584, 715, 13922, 33907, 187, 21, 10, 2051, 423, 253, 1655, 941, 281, 1016, 1924, 187, 22, 10, 16676, 253, 3969, 1873, 715, 322, 20, 187, 187, 1992, 897, 436, 399, 2696, 13, 368, 588, 878, 281, 452, 253, 1563, 8038, 27, 187, 60, 40421, 18446, 880, 3614, 1358, 2700, 15, 89, 15, 2061, 16, 22477, 16, 57, 883, 51, 24, 15, 23, 16, 7152, 16, 1342, 16, 1342, 18, 16, 57, 87, 15662, 15, 18, 15, 35217, 10, 187, 60, 7559, 49993, 25603, 880, 3614, 1358, 7280, 15, 681, 16, 45189, 16, 463, 777, 351, 9878, 16, 49399, 16, 21596, 10, 187, 187, 2034, 28795, 381, 20, 15, 883, 15, 17, 187, 89, 87, 15662, 25377, 381, 17, 15, 19, 15, 26, 187, 32488, 187, 4064, 36743, 1395, 36743, 13, 37282, 1862, 187, 2948, 7684, 187, 2948, 1766, 66, 187, 2948, 43153, 187, 2948, 14113, 187, 2948, 673, 187, 2948, 20893, 187, 187, 4064, 45918, 1395, 4384, 17440, 187, 4064, 45918, 15, 7585, 17440, 15, 9784, 15, 12305, 1395, 38793, 187, 4064, 45918, 15, 7585, 17440, 15, 11342, 15736, 15, 10121, 1395, 27921, 187, 4064, 1269, 87, 15662, 25377, 1395, 1594, 87, 15662, 187, 187, 4064, 2329, 5449, 1395, 399, 2696, 187, 4064, 2329, 5449, 15, 19286, 1395, 29028, 187, 4064, 2329, 5449, 15, 18833, 15, 5470, 1395, 2085, 64, 12426, 187, 187, 4064, 2329, 5449, 15, 2211, 2392, 15, 44224, 64, 4402, 1395, 399, 14661, 36853, 187, 4064, 2329, 5449, 15, 2211, 2392, 15, 16659, 64, 4402, 1395, 13814, 36853, 187, 4064, 2329, 5449, 15, 19198, 84, 1395, 322, 20, 40568, 535, 187, 52, 20, 64, 5707, 47, 64, 1838, 426, 15078, 187, 52, 20, 64, 7817, 7519, 2025, 426, 15078, 187, 52, 20, 64, 13888, 426, 15078, 187, 187, 2754, 426, 686, 6394, 20505, 12377, 8, 187, 187, 6986, 64, 8854, 426, 551, 187, 50274, 434, 85, 435, 64, 2754, 5295, 36743, 9, 7798, 13, 374, 13, 884, 13, 470, 13, 470, 582, 187, 50274, 8, 12812, 5295, 24345, 187, 50274, 8, 12812, 64, 251, 64, 33699, 5295, 11793, 13, 187, 50274, 8, 12812, 64, 251, 64, 1221, 610, 5295, 16708, 13, 187, 50274, 1472, 85, 2246, 5295, 374, 13, 187, 50274, 1472, 14626, 64, 29000, 5295, 37282, 1862, 9, 32117, 30, 22, 582, 187, 50274, 8, 28293, 484, 5295, 16708, 187, 94, 187, 187, 21675, 426, 399, 2696, 9, 187, 50274, 434, 23622, 1514, 64, 2068, 3460, 64, 936, 64, 84, 20, 1383, 187, 50274, 44128, 64, 31251, 5473, 33, 35431, 1383, 187, 50274, 6986, 64, 8854, 30, 6986, 64, 8854, 13, 187, 50274, 28293, 484, 30, 5653, 187, 10, 535, 187, 1545, 516, 522, 64, 4789, 29759, 36830, 2262, 187, 50274, 2034, 28795, 64, 22670, 64, 301, 426, 41291, 8854, 15, 788, 2073, 36451, 64, 8102, 1383, 8256, 481, 788, 2073, 2034, 28795, 64, 22670, 64, 301, 1383, 8256, 10, 187, 50274, 17479, 426, 41291, 8854, 15, 788, 2073, 36451, 64, 8102, 1383, 8256, 481, 788, 2073, 17479, 1383, 8256, 10, 187, 50274, 84, 20, 64, 22670, 64, 301, 426, 41291, 8854, 15, 788, 2073, 36451, 64, 8102, 1383, 8256, 481, 788, 2073, 84, 20, 64, 22670, 64, 301, 1383, 8256, 10, 187, 50274, 84, 20, 64, 38924, 426, 41291, 8854, 15, 788, 2073, 36451, 64, 8102, 1383, 8256, 481, 788, 2073, 84, 20, 64, 38924, 1383, 8256, 10, 187, 50274, 84, 20, 64, 2364, 426, 41291, 8854, 15, 788, 2073, 36451, 64, 8102, 1383, 8256, 481, 788, 2073, 84, 20, 64, 2364, 1383, 8256, 10, 187, 50274, 2754, 426, 41291, 8854, 15, 788, 2073, 36451, 64, 8102, 1383, 8256, 481, 788, 2073, 2754, 1383, 8256, 10, 535, 50274, 33, 42260, 64, 12426, 187, 50274, 1545, 755, 64, 22670, 9, 22670, 64, 301, 13, 6874, 30, 11336, 2262, 187, 50270, 22670, 426, 313, 187, 50266, 12426, 15, 7267, 9, 13457, 10, 187, 50266, 15, 10978, 9, 13457, 15, 22670, 64, 301, 2295, 30606, 64, 301, 10, 187, 50266, 15, 7053, 1082, 187, 50270, 10, 187, 50270, 2309, 30606, 535, 50274, 6434, 426, 755, 64, 22670, 9, 2034, 28795, 64, 22670, 64, 301, 481, 5465, 187, 50274, 12812, 426, 755, 64, 22670, 9, 2034, 28795, 64, 22670, 64, 301, 481, 4537, 187, 50274, 81, 14066, 426, 755, 64, 22670, 9, 2034, 28795, 64, 22670, 64, 301, 481, 15760, 535, 50274, 87, 8412, 426, 1594, 87, 15662, 1082, 187, 50274, 87, 8412, 15, 5478, 1082, 187, 50274, 10127, 426, 4384, 17440, 15, 4476, 1250, 15614, 6720, 15, 6766, 1848, 8768, 57, 187, 50274, 10127, 9855, 4175, 279, 5464, 9686, 426, 11793, 535, 50274, 14729, 426, 4384, 17440, 15, 21381, 15736, 23912, 1082, 187, 50274, 14729, 15, 1178, 64, 3456, 1793, 1587, 28197, 15, 21596, 15, 20649, 15, 9029, 3039, 33768, 995, 16708, 10, 187, 50274, 14729, 15, 1178, 64, 3456, 1793, 2073, 28197, 15, 28316, 2946, 84, 15, 7594, 30326, 15, 15261, 1992, 42278, 1383, 346, 1156, 16, 25265, 2807, 535, 50274, 36193, 15, 5374, 2073, 23912, 873, 1051, 3401, 187, 50274, 10121, 426, 27921, 1082, 187, 50274, 10121, 15, 1178, 64, 2522, 1417, 9, 2522, 1417, 30, 5088, 10, 187, 50274, 36193, 15, 5374, 2073, 10976, 873, 1051, 3401, 187, 50274, 36193, 15, 5374, 2073, 23527, 3006, 32911, 1051, 3401, 187, 50274, 17440, 426, 4384, 17440, 15, 21381, 15736, 9, 11342, 15736, 64, 14729, 30, 14729, 13, 187, 50254, 50271, 11342, 15736, 64, 10121, 30, 10121, 13, 187, 50254, 50271, 4421, 6720, 30, 10127, 10, 187, 50274, 36193, 15, 5374, 2073, 25603, 4458, 451, 1025, 1051, 3401, 187, 50274, 17440, 15, 788, 9, 6434, 10, 187, 50274, 36193, 15, 5374, 2073, 7034, 7737, 839, 1051, 3401, 187, 50274, 33511, 426, 6254, 15, 8606, 64, 10531, 64, 1615, 64, 301, 1587, 12812, 2807, 187, 50274, 33511, 15, 13161, 64, 12305, 9, 12812, 10, 187, 50274, 33511, 426, 6254, 15, 8606, 64, 10531, 64, 1615, 64, 301, 1587, 15760, 2807, 187, 50274, 33511, 15, 13161, 64, 12305, 9, 81, 14066, 10, 187, 50274, 33511, 15, 13161, 64, 12305, 9, 25076, 15, 43501, 10, 535, 50274, 36193, 15, 5374, 2073, 23779, 2920, 10501, 456, 2464, 10, 535, 50274, 28850, 64, 2606, 426, 1458, 535, 50274, 36193, 15, 5374, 2073, 20865, 272, 8490, 2391, 33669, 272, 323, 12166, 6347, 84, 2464, 15, 8124, 9, 1344, 9, 28850, 64, 2606, 10689, 187, 50274, 2606, 15, 28850, 9, 28850, 64, 2606, 10, 535, 50274, 17440, 15, 10483, 1082, 187, 50274, 87, 8412, 15, 13121, 1082, 535, 50274, 10812, 64, 84, 20, 426, 322, 20, 40568, 9, 84, 20, 64, 22670, 64, 301, 30, 84, 20, 64, 22670, 64, 301, 10, 535, 50274, 375, 15, 348, 7341, 28199, 9723, 16, 20865, 84, 3401, 535, 50274, 25265, 3140, 426, 1527, 9, 17479, 13, 686, 83, 3401, 535, 50274, 9252, 64, 8456, 426, 686, 3140, 15, 8456, 8, 535, 50274, 3113, 1527, 9, 9252, 64, 8456, 13, 686, 88, 3401, 347, 14113, 3140, 27, 187, 50270, 28011, 426, 43153, 15, 38592, 15283, 9, 25265, 3140, 10, 535, 50270, 1542, 4194, 275, 9414, 27, 187, 50266, 736, 426, 10886, 4464, 2399, 66, 15, 3474, 1467, 9, 76, 582, 362, 10, 323, 465, 13, 362, 275, 4194, 15, 15565, 6649, 187, 50266, 736, 5013, 6321, 64, 2754, 6038, 426, 3522, 187, 50266, 8456, 15, 23593, 9, 736, 13, 14113, 3140, 10, 187, 50266, 8456, 3140, 15, 6343, 2073, 61, 79, 3401, 535, 50274, 10812, 64, 84, 20, 15, 2799, 64, 3140, 9, 187, 50270, 17479, 30, 9252, 64, 8456, 13, 187, 50270, 2364, 30, 84, 20, 64, 2364, 13, 187, 50270, 38924, 64, 1590, 30, 84, 20, 64, 38924, 13, 187, 50270, 13481, 30, 5088, 187, 50274, 10, 535, 50274, 10812, 64, 84, 20, 15, 14477, 15, 10483, 1082, 535, 187, 3113, 31398, 27, 535, 50274, 44568, 64, 2727, 64, 21675, 426, 399, 14661, 36853, 9, 14605, 64, 301, 5473, 44568, 64, 2727, 64, 21675, 3401, 535, 50274, 2034, 28795, 426, 13814, 36853, 9, 187, 50270, 14605, 64, 301, 5473, 2034, 28795, 64, 1221, 8279, 267, 64, 936, 64, 84, 20, 1383, 187, 50270, 16659, 64, 4065, 494, 30, 303, 522, 64, 4789, 13, 187, 50270, 36451, 64, 8102, 30, 9819, 84, 20, 64, 22670, 64, 301, 1381, 322, 20, 64, 5707, 47, 64, 1838, 13, 187, 50254, 3, 84, 20, 64, 38924, 1381, 322, 20, 64, 7817, 7519, 2025, 13, 187, 50254, 3, 84, 20, 64, 2364, 1381, 322, 20, 64, 13888, 13, 187, 50254, 3, 2754, 1381, 3522, 2023, 187, 50270, 42260, 64, 8882, 30, 5088, 187, 50274, 10, 535, 50274, 44568, 64, 2727, 64, 21675, 11396, 45918, 187 ]
""" Headless Site Navigation and File Download (Using Selenium) to S3 This example demonstrates using Selenium (via Firefox/GeckoDriver) to: 1) Log into a website w/ credentials stored in connection labeled 'selenium_conn_id' 2) Download a file (initiated on login) 3) Transform the CSV into JSON formatting 4) Append the current data to each record 5) Load the corresponding file into S3 To use this DAG, you will need to have the following installed: [XVFB](https://www.x.org/archive/X11R7.6/doc/man/man1/Xvfb.1.xhtml) [GeckoDriver](https://github.com/mozilla/geckodriver/releases/download) selenium==3.11.0 xvfbwrapper==0.2.9 """ from datetime import datetime, timedelta import os import boa import csv import json import time import logging from selenium import webdriver from selenium.webdriver.common.keys import Keys from selenium.webdriver.firefox.options import Options from xvfbwrapper import Xvfb from airflow import DAG from airflow.models import Connection from airflow.utils.db import provide_session from airflow.operators.dummy_operator import DummyOperator from airflow.operators.python_operator import PythonOperator from airflow.hooks import S3Hook S3_CONN_ID = '' S3_BUCKET = '' S3_KEY = '' date = '{{ ds }}' default_args = { 'start_date': datetime(2018, 2, 10, 0, 0), 'email': [], 'email_on_failure': True, 'email_on_retry': False, 'retries': 2, 'retry_delay': timedelta(minutes=5), 'catchup': False } dag = DAG( 'selenium_extraction_to_s3', schedule_interval='@daily', default_args=default_args, catchup=False ) def imap_py(**kwargs): selenium_conn_id = kwargs.get('templates_dict', None).get('selenium_conn_id', None) filename = kwargs.get('templates_dict', None).get('filename', None) s3_conn_id = kwargs.get('templates_dict', None).get('s3_conn_id', None) s3_bucket = kwargs.get('templates_dict', None).get('s3_bucket', None) s3_key = kwargs.get('templates_dict', None).get('s3_key', None) date = kwargs.get('templates_dict', None).get('date', None) @provide_session def get_conn(conn_id, session=None): conn = ( session.query(Connection) .filter(Connection.conn_id == conn_id) .first() ) return conn url = get_conn(selenium_conn_id).host email = get_conn(selenium_conn_id).user pwd = get_conn(selenium_conn_id).password vdisplay = Xvfb() vdisplay.start() caps = webdriver.DesiredCapabilities.FIREFOX caps["marionette"] = True profile = webdriver.FirefoxProfile() profile.set_preference("browser.download.manager.showWhenStarting", False) profile.set_preference('browser.helperApps.neverAsk.saveToDisk', "text/csv") logging.info('Profile set...') options = Options() options.set_headless(headless=True) logging.info('Options set...') logging.info('Initializing Driver...') driver = webdriver.Firefox(firefox_profile=profile, firefox_options=options, capabilities=caps) logging.info('Driver Intialized...') driver.get(url) logging.info('Authenticating...') elem = driver.find_element_by_id("email") elem.send_keys(email) elem = driver.find_element_by_id("password") elem.send_keys(pwd) elem.send_keys(Keys.RETURN) logging.info('Successfully authenticated.') sleep_time = 15 logging.info('Downloading File....Sleeping for {} Seconds.'.format(str(sleep_time))) time.sleep(sleep_time) driver.close() vdisplay.stop() dest_s3 = S3Hook(s3_conn_id=s3_conn_id) os.chdir('/root/Downloads') csvfile = open(filename, 'r') output_json = 'file.json' with open(output_json, 'w') as jsonfile: reader = csv.DictReader(csvfile) for row in reader: row = dict((boa.constrict(k), v) for k, v in row.items()) row['run_date'] = date json.dump(row, jsonfile) jsonfile.write('\n') dest_s3.load_file( filename=output_json, key=s3_key, bucket_name=s3_bucket, replace=True ) dest_s3.connection.close() with dag: kick_off_dag = DummyOperator(task_id='kick_off_dag') selenium = PythonOperator( task_id='selenium_retrieval_to_s3', python_callable=imap_py, templates_dict={"s3_conn_id": S3_CONN_ID, "s3_bucket": S3_BUCKET, "s3_key": S3_KEY, "date": date}, provide_context=True ) kick_off_dag >> selenium
214,392
Github
[ 3122, 33684, 11, 8728, 19842, 21826, 44425, 33684, 11, 187, 475, 43950, 762, 253, 32327, 7981, 27, 187, 475, 187, 475, 8283, 313, 68, 10, 4050, 13, 47867, 15, 2061, 378, 15, 55, 15, 187, 475, 1876, 3570, 10827, 15, 187, 475, 187, 475, 25936, 2382, 285, 897, 275, 2603, 285, 8985, 4948, 13, 342, 390, 1293, 187, 475, 11237, 13, 403, 11460, 2530, 326, 253, 1563, 2515, 403, 1313, 27, 187, 475, 50273, 11, 34682, 273, 2603, 2127, 1364, 13280, 253, 1840, 9451, 187, 475, 50271, 37277, 13, 436, 1618, 273, 2515, 285, 253, 1563, 27578, 15, 187, 475, 50273, 11, 34682, 275, 8985, 830, 1364, 18302, 253, 1840, 9451, 187, 475, 50271, 37277, 13, 436, 1618, 273, 2515, 285, 253, 1563, 27578, 275, 253, 187, 475, 50271, 37442, 285, 16, 263, 643, 4753, 2530, 342, 253, 3268, 15, 187, 475, 50273, 11, 17106, 253, 1416, 273, 47867, 15, 2061, 378, 15, 55, 15, 4543, 253, 187, 475, 50271, 7886, 273, 697, 24781, 778, 320, 908, 281, 18883, 390, 8591, 3580, 187, 475, 50271, 13472, 432, 436, 3694, 1293, 2173, 2720, 3542, 9214, 15, 187, 475, 187, 475, 10113, 19295, 4110, 33278, 9149, 3003, 28827, 43227, 4889, 38623, 346, 1719, 4110, 3, 4889, 187, 475, 9103, 31643, 4145, 25900, 15466, 13, 31877, 13, 17706, 5803, 25666, 5935, 13, 3003, 25900, 187, 475, 15466, 3481, 20863, 4889, 20524, 6651, 329, 20383, 20103, 17003, 187, 475, 44174, 1703, 15, 2949, 7651, 30609, 32221, 26060, 14942, 15, 1372, 40, 378, 15, 55, 15, 8728, 34745, 6651, 9103, 187, 475, 35739, 13, 47823, 13, 49466, 1556, 13, 38152, 13, 8021, 46465, 11164, 13, 4145, 48128, 32024, 187, 475, 313, 33509, 13, 17706, 5803, 25666, 5935, 13, 25717, 10860, 10634, 3481, 33908, 47259, 47144, 4145, 38986, 28, 187, 475, 45104, 3481, 19226, 13, 27809, 13, 4145, 49080, 28, 4145, 42113, 22508, 37086, 2449, 10, 49457, 6582, 28477, 4889, 187, 475, 8160, 9103, 49212, 3481, 27255, 13, 33206, 2949, 32833, 13, 47528, 27255, 13, 4145, 34915, 187, 475, 313, 33509, 49505, 4145, 35497, 10, 34984, 2949, 9103, 32155, 16341, 3481, 3003, 19226, 3481, 10113, 187, 475, 19295, 13, 38698, 8681, 48646, 1703, 3481, 3003, 43194, 38761, 3481, 43399, 49334, 15, 187, 475, 187, 475, 33684, 11, 19691, 21826, 44425, 33684, 11, 1738, 187, 187, 3122, 831, 1873, 369, 1125, 2646, 12072, 432, 5987, 1358, 2040, 15, 7280, 15, 681, 16, 24221, 571, 32512, 16, 75, 335, 571, 16, 11717, 16, 44665, 16, 24221, 571, 15, 85, 1814, 8054, 16, 44981, 265, 16, 24221, 571, 15, 85, 8316, 2848, 313, 36268, 27, 2387, 1738, 187, 16, 17344, 49691, 187, 475, 8017, 353, 9981, 5803, 8728, 23564, 39, 9649, 3346, 1989, 352, 434, 247, 1175, 1265, 432, 271, 5368, 33481, 10842, 2848, 1873, 15, 475, 187, 475, 1873, 15668, 50254, 50254, 50254, 50274, 11, 187, 209, 17344, 49691, 16, 187, 187, 3182, 9, 3701, 9, 15684, 13, 24217, 13, 6333, 10, 551, 187, 3, 2327, 7654, 3664, 187, 187, 2044, 258, 412, 426, 2430, 1587, 3043, 4658, 16, 24318, 3287, 187, 2044, 10318, 46006, 31980, 426, 2430, 1587, 11379, 1156, 64, 30703, 64, 25553, 6788, 4312, 46006, 31980, 28, 187, 187, 2044, 27261, 46006, 31980, 426, 1159, 1082, 551, 187, 50274, 605, 21165, 81, 1364, 417, 452, 26475, 41616, 15, 7890, 313, 18346, 10, 3185, 15, 187, 50274, 605, 21165, 793, 403, 6960, 5204, 253, 806, 3761, 310, 908, 535, 50274, 2520, 10506, 25553, 426, 551, 1265, 27, 2490, 50271, 60, 551, 2486, 27, 25777, 3701, 64, 16366, 8, 3572, 187, 50269, 92, 2486, 27, 25777, 3701, 64, 4065, 8, 3572, 187, 50269, 92, 2486, 27, 25777, 881, 64, 16366, 8, 3572, 187, 50269, 92, 2486, 27, 25777, 23295, 8, 3572, 187, 50269, 92, 2486, 27, 25777, 4402, 8, 3572, 187, 50269, 92, 2486, 27, 25777, 9133, 8, 3572, 187, 50269, 92, 2486, 27, 25777, 2703, 8, 3572, 187, 50269, 92, 2486, 27, 25777, 13982, 8, 748, 11337, 187, 50272, 8, 4, 35934, 5295, 2490, 50271, 60, 551, 10669, 27, 686, 23295, 15, 35934, 15, 75, 335, 571, 1383, 187, 50267, 28847, 27, 686, 3353, 32959, 3353, 30919, 1447, 3577, 696, 93, 3353, 23334, 3353, 8589, 4117, 748, 11337, 187, 50272, 8, 4, 13982, 5295, 2490, 50271, 60, 551, 10669, 27, 2490, 50266, 60, 686, 81, 10593, 2368, 15, 28692, 15, 13982, 15, 75, 335, 571, 1383, 187, 50264, 8, 13982, 15, 1282, 15, 9133, 14, 9188, 15, 75, 335, 571, 8, 11337, 187, 50267, 28847, 27, 686, 45818, 2769, 22418, 3353, 92, 2769, 5929, 7884, 13995, 11337, 187, 50272, 8, 4, 3701, 64, 4065, 5295, 2490, 50271, 60, 551, 10669, 27, 544, 686, 13821, 15, 3701, 15, 75, 335, 571, 1383, 686, 1156, 8, 11337, 187, 50267, 28847, 27, 686, 8850, 66, 14, 44505, 14, 59, 17, 14, 26, 64, 20871, 2, 32, 2769, 60, 3353, 88, 3353, 21671, 2249, 61, 86, 22981, 70, 3353, 86, 1348, 2417, 2249, 61, 2066, 567, 23741, 3353, 1082, 13995, 11337, 187, 50272, 8, 4, 3701, 64, 16366, 5295, 2490, 50271, 60, 551, 10669, 27, 544, 686, 23295, 15, 977, 15, 75, 335, 571, 1383, 686, 13518, 15, 3701, 15, 75, 335, 571, 1383, 187, 50263, 8, 21294, 15, 1590, 15, 3701, 15, 75, 335, 571, 1383, 686, 13518, 15, 3701, 15, 75, 335, 571, 10606, 1156, 8, 11337, 187, 50267, 28847, 27, 686, 9, 3701, 93, 35074, 26669, 61, 84, 11, 2769, 60, 66, 14, 44505, 14, 59, 17, 14, 26, 2253, 6921, 20871, 2, 32, 2769, 60, 3353, 88, 3353, 21671, 2249, 61, 86, 22981, 70, 3353, 86, 1348, 2417, 2249, 61, 2066, 567, 23741, 2769, 60, 1035, 3353, 6921, 3291, 13995, 11337, 187, 50272, 8, 4, 23295, 5295, 187, 50271, 60, 551, 10669, 27, 686, 23295, 15, 977, 15, 75, 335, 571, 1383, 187, 50267, 28847, 27, 686, 3353, 67, 36512, 3701, 93, 881, 93, 303, 10082, 494, 93, 35074, 93, 21049, 93, 15834, 93, 2713, 296, 1692, 93, 881, 29913, 93, 8640, 93, 39517, 8640, 93, 1826, 17108, 67, 8, 3572, 187, 50269, 92, 10669, 27, 686, 23295, 15, 8519, 15, 75, 335, 571, 1383, 187, 50267, 28847, 27, 686, 3353, 67, 36512, 338, 93, 7271, 93, 7271, 338, 93, 6050, 93, 1542, 93, 249, 93, 2043, 93, 1059, 93, 423, 93, 3088, 93, 14626, 93, 28293, 93, 71, 3341, 93, 2309, 93, 7054, 93, 25674, 17108, 67, 8, 3572, 187, 50269, 92, 10669, 27, 686, 22214, 15, 2307, 5425, 15, 18645, 15, 75, 335, 571, 1383, 187, 50267, 28847, 27, 686, 3353, 67, 36512, 14456, 93, 6790, 93, 3474, 93, 15035, 93, 2948, 93, 2948, 455, 93, 5302, 17108, 67, 8, 3572, 187, 50269, 92, 10669, 27, 686, 18645, 15, 35074, 15, 75, 335, 571, 1383, 21165, 27, 37994, 60, 3353, 88, 3353, 21671, 2249, 61, 86, 22981, 70, 3353, 86, 1348, 2417, 2249, 61, 2066, 567, 62, 2766, 61, 67, 8, 748, 11337, 187, 50272, 8, 4, 9133, 5295, 2490, 50271, 60, 551, 10669, 27, 686, 22174, 15, 37718, 15, 75, 335, 571, 1383, 187, 50267, 28847, 27, 686, 3353, 67, 17, 36512, 89, 93, 57, 6904, 17, 14, 26, 66, 14, 71, 34, 14, 39, 23741, 93, 36512, 3353, 67, 60, 17, 14, 26, 62, 2766, 15461, 32, 60, 17, 14, 26, 23741, 93, 3353, 4681, 17, 14, 26, 20871, 2769, 32, 10477, 18346, 70, 93, 38, 2769, 18346, 3353, 12, 9973, 6177, 60, 17, 14, 26, 62, 5627, 32, 36512, 303, 6177, 93, 3353, 67, 20067, 36512, 1237, 6177, 3353, 67, 93, 3353, 67, 44932, 36512, 1237, 6177, 3353, 67, 93, 3353, 67, 5672, 3353, 67, 93, 3353, 3342, 2018, 3353, 67, 8, 748, 11337, 187, 50272, 8, 4, 4402, 5295, 2490, 50271, 60, 551, 10669, 27, 686, 23295, 15, 4402, 15, 11183, 15, 75, 335, 571, 1383, 187, 50267, 28847, 27, 686, 30, 93, 13522, 93, 3353, 34788, 9973, 30, 93, 3353, 13912, 93, 16, 30, 93, 605, 30, 93, 3353, 15, 605, 30, 93, 3353, 15, 3353, 13912, 93, 36038, 30, 93, 3353, 15, 36038, 30, 10819, 30, 93, 3353, 15, 63, 30, 93, 27763, 93, 3353, 28627, 93, 8114, 93, 3353, 34954, 93, 14193, 30, 93, 5064, 5473, 3572, 187, 50269, 92, 10669, 27, 686, 23295, 15, 4402, 15, 931, 552, 15, 75, 335, 571, 1383, 21165, 27, 686, 3353, 32, 93, 22426, 3572, 187, 50269, 92, 10669, 27, 686, 23295, 15, 4402, 15, 23170, 15, 75, 335, 571, 1383, 187, 50267, 28847, 27, 686, 3353, 93, 3353, 9473, 10494, 93, 11388, 3572, 187, 50269, 92, 10669, 27, 686, 23295, 15, 4402, 15, 2501, 15, 75, 335, 571, 1383, 21165, 27, 686, 1168, 93, 38270, 93, 22158, 8, 3572, 187, 50269, 92, 10669, 27, 686, 23295, 15, 4402, 15, 16429, 15, 75, 335, 571, 1383, 187, 50267, 28847, 27, 686, 31, 41533, 93, 30189, 41533, 30, 93, 381, 93, 35495, 93, 3353, 15, 31, 93, 3353, 17778, 93, 3353, 15, 30189, 93, 3353, 15, 30189, 93, 3353, 15, 381, 93, 3353, 15, 35495, 93, 3353, 28520, 93, 3353, 15, 2, 41533, 27, 93, 27, 28120, 3572, 187, 50269, 92, 10669, 27, 686, 23295, 15, 4402, 15, 6324, 15, 75, 335, 571, 1383, 21165, 27, 686, 22426, 3572, 187, 50269, 92, 10669, 27, 686, 23295, 15, 4402, 15, 11551, 15, 75, 335, 571, 1383, 21165, 27, 686, 14193, 93, 5064, 8, 3572, 187, 50269, 92, 10669, 27, 686, 23295, 15, 4402, 15, 2713, 3020, 15, 75, 335, 571, 1383, 21165, 27, 686, 3353, 9473, 3353, 7, 93, 95, 8, 3572, 187, 50269, 92, 10669, 27, 686, 23295, 15, 4402, 15, 274, 23343, 15, 75, 335, 571, 1383, 187, 50267, 28847, 27, 686, 3353, 12, 9973, 93, 3353, 11, 93, 3353, 15, 3353, 11, 93, 16, 93, 3353, 11379, 93, 605, 93, 3353, 15, 605, 93, 6, 93, 3353, 49810, 93, 36038, 93, 3353, 15, 36038, 93, 3353, 63, 93, 3353, 15, 3353, 63, 8, 3572, 187, 50269, 92, 10669, 27, 686, 23295, 15, 4402, 15, 8901, 15, 75, 335, 571, 1383, 21165, 27, 686, 1450, 8, 3572, 187, 50269, 92, 10669, 27, 686, 23295, 15, 4402, 15, 6768, 15, 75, 335, 571, 1383, 187, 50267, 28847, 27, 686, 3353, 14517, 32, 20879, 66, 14, 44505, 14, 59, 3291, 93, 3353, 15, 3353, 47807, 8, 3572, 187, 50269, 92, 10669, 27, 686, 23295, 15, 4402, 15, 2388, 4818, 318, 15, 75, 335, 571, 1383, 187, 50267, 28847, 27, 686, 3353, 5, 4, 32, 47928, 30, 2698, 8, 3572, 187, 50269, 92, 10669, 27, 544, 686, 18645, 1383, 686, 23295, 15, 4402, 15, 3675, 7334, 14, 18645, 15, 75, 335, 571, 8, 11337, 187, 50267, 28847, 27, 686, 8850, 3353, 88, 3353, 21671, 2249, 61, 86, 22981, 70, 3353, 86, 1348, 2417, 2249, 61, 2066, 567, 20871, 2769, 36512, 4479, 93, 3353, 15, 4479, 2888, 3353, 50057, 61, 3401, 8, 3572, 187, 50269, 92, 10669, 27, 686, 1156, 1383, 187, 50267, 28847, 27, 18116, 1447, 93, 3353, 2073, 2023, 187, 50269, 92, 10669, 27, 544, 686, 1156, 1383, 686, 23295, 15, 4402, 15, 3675, 7334, 14, 6674, 15, 75, 335, 571, 8, 11337, 187, 50266, 28847, 27, 7998, 5709, 696, 3353, 9102, 2769, 36512, 8, 93, 3353, 2464, 2888, 3353, 50057, 3401, 986, 11337, 187, 50272, 8, 4, 2703, 5295, 2490, 50271, 60, 551, 10669, 27, 686, 81, 10593, 2368, 15, 28692, 15, 2703, 15, 2043, 15, 75, 335, 571, 1383, 187, 50267, 28847, 27, 686, 4479, 1383, 187, 50267, 11340, 27, 2490, 50266, 60, 551, 10669, 27, 686, 81, 10593, 2368, 15, 28692, 15, 2703, 15, 423, 15, 75, 335, 571, 1383, 187, 50262, 28847, 27, 686, 4479, 1383, 187, 50262, 8384, 27, 686, 9576, 8, 3572, 187, 50264, 92, 2486, 27, 25777, 2703, 64, 41741, 264, 64, 3615, 8, 3572, 187, 50264, 92, 4284, 11200, 27, 686, 2703, 15, 371, 4225, 15, 20199, 15, 75, 335, 571, 8, 748, 5032, 3572, 187, 50269, 92, 10669, 27, 686, 81, 10593, 2368, 15, 28692, 15, 2703, 15, 2043, 15, 75, 335, 571, 1383, 187, 50267, 28847, 27, 32589, 1383, 187, 50267, 11340, 27, 2490, 50266, 60, 551, 10669, 27, 686, 81, 10593, 2368, 15, 28692, 15, 2703, 15, 423, 15, 75, 335, 571, 1383, 187, 50262, 28847, 27, 32589, 1383, 187, 50262, 8384, 27, 686, 9576, 8, 3572, 187, 50264, 92, 2486, 27, 25777, 2703, 64, 41741, 264, 64, 3615, 8, 3572, 187, 50264, 92, 4284, 11200, 27, 686, 2703, 15, 371, 4225, 15, 12237, 15, 75, 335, 571, 8, 748, 5032, 3572, 187, 50269, 92, 10669, 27, 686, 81, 10593, 2368, 15, 28692, 15, 2703, 15, 2043, 15, 75, 335, 571, 1383, 187, 50267, 28847, 27, 686, 3353, 67, 60, 3353, 88, 3353, 21671, 2249, 61, 86, 22981, 70, 3353, 86, 1348, 2417, 2249, 61, 2066, 567, 20871, 3, 1383, 187, 50267, 11340, 27, 2490, 50266, 60, 551, 10669, 27, 686, 81, 10593, 2368, 15, 28692, 15, 2703, 15, 423, 15, 75, 335, 571, 1383, 187, 50262, 28847, 27, 32589, 60, 3353, 88, 3353, 21671, 2249, 61, 86, 22981, 70, 3353, 86, 1348, 2417, 2249, 61, 2066, 567, 23741, 1383, 187, 50262, 8384, 27, 686, 9576, 8, 3572, 187, 50264, 92, 2486, 27, 25777, 2703, 64, 13994, 64, 41741, 264, 64, 3615, 8, 3572, 187, 50264, 92, 4284, 11200, 27, 686, 2703, 15, 371, 4225, 15, 13994, 14, 12237, 15, 75, 335, 571, 8, 748, 5032, 3572, 187, 50269, 92, 10669, 27, 686, 81, 10593, 2368, 15, 28692, 15, 2703, 15, 2043, 15, 75, 335, 571, 1383, 187, 50267, 28847, 27, 686, 65, 1383, 187, 50267, 11340, 27, 2490, 50266, 60, 551, 10669, 27, 686, 81, 10593, 2368, 15, 28692, 15, 2703, 15, 423, 15, 75, 335, 571, 1383, 187, 50262, 28847, 27, 686, 65, 1383, 187, 50262, 8384, 27, 686, 9576, 8, 3572, 187, 50264, 92, 2486, 27, 25777, 2703, 64, 41741, 264, 64, 3615, 8, 3572, 187, 50264, 92, 4284, 11200, 27, 686, 2703, 15, 371, 4225, 15, 2135, 47487, 15, 75, 335, 571, 8, 748, 5032, 748, 11337, 187, 50272, 8, 4, 2703, 64, 13994, 64, 41741, 264, 64, 3615, 5295, 544, 551, 10669, 27, 686, 22174, 15, 17932, 15, 34189, 15, 75, 335, 571, 1383, 21165, 27, 686, 36038, 27898, 748, 11337, 187, 50272, 8, 4, 2703, 64, 41741, 264, 64, 3615, 5295, 2490, 50271, 60, 551, 10669, 27, 686, 22174, 15, 17932, 15, 34189, 15, 75, 335, 571, 1383, 187, 50267, 28847, 27, 686, 36038, 36512, 36038, 93, 60, 17, 14, 20, 45301, 69, 92, 13, 19, 8589, 60, 21, 14, 24, 45301, 69, 32, 93, 89, 60, 66, 14, 71, 34, 14, 39, 17, 14, 26, 1019, 13, 19, 8589, 86, 60, 66, 14, 71, 34, 14, 39, 17, 14, 26, 1019, 13, 21, 8589, 54, 60, 66, 14, 71, 34, 14, 39, 17, 14, 26, 1019, 13, 25, 8589, 2698, 8, 748, 11337, 187, 50272, 8, 4, 881, 64, 16366, 5295, 2490, 50271, 60, 551, 10669, 27, 2490, 50266, 60, 686, 23295, 15, 8519, 15, 881, 15, 75, 335, 571, 1383, 187, 50264, 1353, 1464, 15, 881, 15, 75, 335, 571, 1383, 187, 50264, 8, 21294, 15, 1590, 15, 881, 15, 75, 335, 571, 1383, 187, 50264, 8, 21294, 15, 977, 15, 27040, 959, 14, 2437, 15, 75, 335, 571, 1383, 187, 50264, 8, 81, 10593, 2368, 15, 37734, 15, 27040, 15314, 15, 75, 335, 571, 1383, 187, 50264, 8, 21294, 15, 977, 15, 27040, 959, 14, 2437, 15, 75, 335, 571, 8, 11337, 187, 50267, 28847, 27, 686, 9, 881, 93, 303, 10082, 494, 26669, 61, 84, 12, 2769, 60, 66, 14, 44505, 14, 59, 17, 14, 26, 64, 20871, 2769, 18346, 1035, 61, 84, 11, 2769, 29, 27, 26669, 61, 84, 11, 60, 15, 66, 14, 44505, 14, 59, 17, 14, 26, 21712, 20871, 1228, 5554, 3572, 187, 50269, 92, 10669, 27, 544, 686, 977, 15, 6611, 264, 14, 18645, 15, 75, 335, 571, 1383, 686, 13821, 15, 881, 15, 75, 335, 571, 8, 11337, 187, 50267, 28847, 27, 686, 8850, 66, 14, 44505, 14, 59, 17, 14, 26, 64, 20871, 2769, 1450, 60, 66, 14, 44505, 14, 59, 17, 14, 26, 578, 12084, 15020, 8, 748, 5032, 748, 187, 50274, 187, 50274, 2520, 15, 6320, 907, 31980, 1874, 187, 4718, 187, 187, 24221, 571, 46006, 31980, 15, 13518, 3233, 426, 551, 1873, 15668, 27, 544, 686, 40031, 8, 11337, 187, 50272, 7053, 7557, 21008, 27, 686, 63, 4, 2, 5929, 3353, 35744, 335, 571, 3353, 84, 11, 5, 1383, 187, 50272, 8089, 272, 8252, 42646, 27, 686, 2850, 61, 84, 5355, 18346, 338, 93, 6050, 93, 1542, 93, 2043, 93, 3701, 93, 35074, 93, 8640, 93, 39517, 8640, 93, 881, 93, 303, 10082, 494, 93, 1059, 17108, 67, 9, 22418, 5929, 3353, 67, 423, 3353, 67, 481, 11, 5, 1383, 187, 50272, 8089, 272, 15021, 42646, 27, 686, 2850, 61, 84, 5355, 18346, 423, 17108, 67, 5929, 5, 1383, 187, 50272, 1590, 27, 686, 24221, 571, 1383, 187, 50272, 14329, 2402, 27, 686, 6756, 15, 75, 335, 571, 8, 748, 535, 187, 24318, 15, 27040, 953, 9, 24221, 571, 46006, 31980, 13, 10318, 46006, 31980, 558, 187, 187, 23756, 15, 24221, 571, 46006, 31980, 426, 27261, 46006, 31980, 28, 187, 9897 ]
/* ***** BEGIN LICENSE BLOCK ***** * Distributed under the BSD license: * * Copyright (c) 2012, Ajax.org B.V. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of Ajax.org B.V. nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL AJAX.ORG B.V. BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * * ***** END LICENSE BLOCK ***** */ /* This file was autogenerated from https://raw.github.com/JuliaLang/julia/master/contrib/Julia.tmbundle/Syntaxes/Julia.tmLanguage (uuid: ) */ /**************************************************************************************** * IT MIGHT NOT BE PERFECT ...But it's a good start from an existing *.tmlanguage file. * * fileTypes * ****************************************************************************************/ define(function(require, exports, module) { "use strict"; var oop = require("../lib/oop"); var TextHighlightRules = require("./text_highlight_rules").TextHighlightRules; var JuliaHighlightRules = function() { // regexp must not have capturing parentheses. Use (?:) instead. // regexps are ordered -> the first match is used this.$rules = { start: [ { include: '#function_decl' }, { include: '#function_call' }, { include: '#type_decl' }, { include: '#keyword' }, { include: '#operator' }, { include: '#number' }, { include: '#string' }, { include: '#comment' } ], '#bracket': [ { token: 'keyword.bracket.julia', regex: '\\(|\\)|\\[|\\]|\\{|\\}|,' } ], '#comment': [ { token: [ 'punctuation.definition.comment.julia', 'comment.line.number-sign.julia' ], regex: '(#)(?!\\{)(.*$)'} ], '#function_call': [ { token: [ 'support.function.julia', 'text' ], regex: '([a-zA-Z0-9_]+!?)([\\w\\xff-\\u218e\\u2455-\\uffff]*\\()'} ], '#function_decl': [ { token: [ 'keyword.other.julia', 'meta.function.julia', 'entity.name.function.julia', 'meta.function.julia','text' ], regex: '(function|macro)(\\s*)([a-zA-Z0-9_\\{]+!?)([\\w\\xff-\\u218e\\u2455-\\uffff]*)([(\\\\{])'} ], '#keyword': [ { token: 'keyword.other.julia', regex: '\\b(?:function|type|immutable|macro|quote|abstract|bitstype|typealias|module|baremodule|new)\\b' }, { token: 'keyword.control.julia', regex: '\\b(?:if|else|elseif|while|for|in|begin|let|end|do|try|catch|finally|return|break|continue)\\b' }, { token: 'storage.modifier.variable.julia', regex: '\\b(?:global|local|const|export|import|importall|using)\\b' }, { token: 'variable.macro.julia', regex: '@[\\w\\xff-\\u218e\\u2455-\\uffff]+\\b' } ], '#number': [ { token: 'constant.numeric.julia', regex: '\\b0(?:x|X)[0-9a-fA-F]*|(?:\\b[0-9]+\\.?[0-9]*|\\.[0-9]+)(?:(?:e|E)(?:\\+|-)?[0-9]*)?(?:im)?|\\bInf(?:32)?\\b|\\bNaN(?:32)?\\b|\\btrue\\b|\\bfalse\\b' } ], '#operator': [ { token: 'keyword.operator.update.julia', regex: '=|:=|\\+=|-=|\\*=|/=|//=|\\.//=|\\.\\*=|\\\\=|\\.\\\\=|^=|\\.^=|%=|\\|=|&=|\\$=|<<=|>>=' }, { token: 'keyword.operator.ternary.julia', regex: '\\?|:' }, { token: 'keyword.operator.boolean.julia', regex: '\\|\\||&&|!' }, { token: 'keyword.operator.arrow.julia', regex: '->|<-|-->' }, { token: 'keyword.operator.relation.julia', regex: '>|<|>=|<=|==|!=|\\.>|\\.<|\\.>=|\\.>=|\\.==|\\.!=|\\.=|\\.!|<:|:>' }, { token: 'keyword.operator.range.julia', regex: ':' }, { token: 'keyword.operator.shift.julia', regex: '<<|>>' }, { token: 'keyword.operator.bitwise.julia', regex: '\\||\\&|~' }, { token: 'keyword.operator.arithmetic.julia', regex: '\\+|-|\\*|\\.\\*|/|\\./|//|\\.//|%|\\.%|\\\\|\\.\\\\|\\^|\\.\\^' }, { token: 'keyword.operator.isa.julia', regex: '::' }, { token: 'keyword.operator.dots.julia', regex: '\\.(?=[a-zA-Z])|\\.\\.+' }, { token: 'keyword.operator.interpolation.julia', regex: '\\$#?(?=.)' }, { token: [ 'variable', 'keyword.operator.transposed-variable.julia' ], regex: '([\\w\\xff-\\u218e\\u2455-\\uffff]+)((?:\'|\\.\')*\\.?\')' }, { token: 'text', regex: '\\[|\\('}, { token: [ 'text', 'keyword.operator.transposed-matrix.julia' ], regex: "([\\]\\)])((?:'|\\.')*\\.?')"} ], '#string': [ { token: 'punctuation.definition.string.begin.julia', regex: '\'', push: [ { token: 'punctuation.definition.string.end.julia', regex: '\'', next: 'pop' }, { include: '#string_escaped_char' }, { defaultToken: 'string.quoted.single.julia' } ] }, { token: 'punctuation.definition.string.begin.julia', regex: '"', push: [ { token: 'punctuation.definition.string.end.julia', regex: '"', next: 'pop' }, { include: '#string_escaped_char' }, { defaultToken: 'string.quoted.double.julia' } ] }, { token: 'punctuation.definition.string.begin.julia', regex: '\\b[\\w\\xff-\\u218e\\u2455-\\uffff]+"', push: [ { token: 'punctuation.definition.string.end.julia', regex: '"[\\w\\xff-\\u218e\\u2455-\\uffff]*', next: 'pop' }, { include: '#string_custom_escaped_char' }, { defaultToken: 'string.quoted.custom-double.julia' } ] }, { token: 'punctuation.definition.string.begin.julia', regex: '`', push: [ { token: 'punctuation.definition.string.end.julia', regex: '`', next: 'pop' }, { include: '#string_escaped_char' }, { defaultToken: 'string.quoted.backtick.julia' } ] } ], '#string_custom_escaped_char': [ { token: 'constant.character.escape.julia', regex: '\\\\"' } ], '#string_escaped_char': [ { token: 'constant.character.escape.julia', regex: '\\\\(?:\\\\|[0-3]\\d{,2}|[4-7]\\d?|x[a-fA-F0-9]{,2}|u[a-fA-F0-9]{,4}|U[a-fA-F0-9]{,8}|.)' } ], '#type_decl': [ { token: [ 'keyword.control.type.julia', 'meta.type.julia', 'entity.name.type.julia', 'entity.other.inherited-class.julia', 'punctuation.separator.inheritance.julia', 'entity.other.inherited-class.julia' ], regex: '(type|immutable)(\\s+)([a-zA-Z0-9_]+)(?:(\\s*)(<:)(\\s*[.a-zA-Z0-9_:]+))?' }, { token: [ 'other.typed-variable.julia', 'support.type.julia' ], regex: '([a-zA-Z0-9_]+)(::[a-zA-Z0-9_{}]+)' } ] } this.normalizeRules(); }; JuliaHighlightRules.metaData = { fileTypes: [ 'jl' ], firstLineMatch: '^#!.*\\bjulia\\s*$', foldingStartMarker: '^\\s*(?:if|while|for|begin|function|macro|module|baremodule|type|immutable|let)\\b(?!.*\\bend\\b).*$', foldingStopMarker: '^\\s*(?:end)\\b.*$', name: 'Julia', scopeName: 'source.julia' } oop.inherits(JuliaHighlightRules, TextHighlightRules); exports.JuliaHighlightRules = JuliaHighlightRules; });
214,393
Github
[ 2044, 308, 19095, 8929, 426, 1159, 3914, 14329, 13, 370, 2413, 910, 535, 50274, 5, 14329, 15, 15576, 10715, 426, 3221, 28, 187, 50274, 5, 14329, 15, 3321, 426, 34973, 535, 50274, 5, 14329, 15, 788, 3074, 53, 351, 375, 426, 1159, 14574, 187, 50270, 5, 14329, 15, 19511, 4756, 1874, 187, 50270, 5, 2413, 15, 788, 2073, 85, 19095, 16, 455, 15, 8456, 8539, 12566, 9, 3701, 9, 10927, 910, 187, 50266, 5, 14329, 15, 85, 351, 375, 426, 2380, 28, 187, 50270, 38331, 3775, 9, 3701, 1082, 551, 187, 50266, 5, 14329, 15, 1178, 4756, 2073, 18179, 417, 3148, 512, 23034, 5137, 187, 50270, 9897, 187, 50274, 94, 535, 50274, 5, 14329, 15, 1911, 53, 19095, 426, 1159, 9, 1826, 53, 19095, 910, 187, 50270, 5, 14329, 15, 19511, 4756, 1874, 187, 50270, 5, 2413, 15, 5996, 2073, 85, 19095, 16, 1911, 44670, 559, 747, 53, 19095, 481, 12566, 9, 3701, 9, 10927, 910, 187, 50266, 5, 14329, 15, 788, 3074, 53, 351, 375, 1874, 187, 50270, 38331, 3775, 9, 3701, 1082, 551, 187, 50266, 5, 14329, 15, 1178, 4756, 2073, 18179, 823, 20591, 5137, 187, 50270, 9897, 187, 50270, 5, 14329, 15, 85, 19095, 2402, 426, 34973, 187, 50274, 94, 535, 50274, 5, 14329, 15, 16435, 53, 19095, 426, 1159, 9, 16435, 53, 19095, 910, 187, 50270, 5, 14329, 15, 19511, 4756, 1874, 187, 50270, 5, 2413, 15, 16435, 2073, 85, 19095, 16, 16435, 16, 30636, 16435, 53, 19095, 481, 12566, 9, 3701, 9, 10927, 910, 187, 50266, 5, 14329, 15, 788, 3074, 53, 351, 375, 1874, 187, 50270, 38331, 3775, 9, 3701, 1082, 551, 187, 50266, 5, 14329, 15, 1178, 4756, 2073, 18179, 417, 11352, 20591, 5137, 187, 50270, 9897, 187, 50274, 94, 535, 50274, 5, 14329, 15, 16435, 3074, 53, 19095, 426, 1159, 14574, 187, 50270, 5, 14329, 15, 19511, 4756, 1874, 187, 50270, 5, 2413, 15, 16435, 2073, 85, 19095, 16, 16435, 3074, 8539, 12566, 9, 3701, 9, 10927, 910, 187, 50266, 5, 14329, 15, 788, 3074, 53, 351, 375, 1874, 187, 50270, 38331, 3775, 9, 3701, 1082, 551, 187, 50266, 5, 14329, 15, 1178, 4756, 2073, 18179, 417, 11352, 512, 23034, 5137, 187, 50270, 2311, 187, 50274, 94, 535, 50274, 5, 14329, 15, 15576, 53, 19095, 426, 1159, 9, 3321, 13, 20591, 910, 187, 50270, 5, 14329, 15, 19511, 4756, 1874, 187, 50270, 5, 14329, 15, 85, 19095, 2402, 426, 20591, 28, 187, 50270, 5, 14329, 15, 3321, 426, 1899, 28, 187, 50270, 5, 14329, 15, 15576, 10715, 426, 2032, 28, 187, 50274, 94, 535, 50274, 5, 14329, 15, 11183, 53, 19095, 426, 1159, 9, 11183, 53, 19095, 910, 187, 50270, 5, 14329, 15, 19511, 4756, 1874, 187, 50270, 5, 2413, 15, 1065, 2073, 85, 19095, 16, 11183, 16, 30636, 370, 14329, 15, 3321, 559, 39618, 30636, 11183, 53, 19095, 481, 12566, 9, 3701, 9, 10927, 910, 187, 50266, 5, 14329, 15, 788, 3074, 53, 351, 375, 1874, 187, 50266, 5, 14329, 15, 3321, 426, 34973, 187, 50266, 5, 14329, 15, 85, 19095, 2402, 426, 34973, 187, 50266, 5, 14329, 15, 15576, 10715, 426, 3221, 28, 187, 50270, 38331, 3775, 9, 3701, 14574, 187, 50266, 5, 14329, 15, 1178, 4756, 2073, 18179, 417, 5731, 20591, 5137, 187, 50269, 2311, 187, 50274, 94, 535, 50274, 5, 14329, 15, 19511, 53, 19095, 6180, 426, 1159, 1082, 551, 187, 50270, 5, 14329, 15, 19511, 4756, 1874, 187, 50270, 5, 14329, 15, 85, 19095, 2402, 426, 34973, 187, 50270, 5, 14329, 15, 15576, 10715, 426, 3221, 28, 187, 50274, 4718, 535, 50274, 5, 14329, 15, 19511, 4756, 426, 1159, 1082, 551, 187, 50270, 5, 14329, 15, 3775, 426, 3221, 28, 187, 50270, 5, 14329, 15, 3775, 7474, 426, 34973, 187, 50274, 4718, 535, 50274, 5, 14329, 15, 1178, 4756, 426, 1159, 9, 8559, 10, 551, 187, 50270, 5, 14329, 15, 3775, 426, 2032, 28, 187, 50270, 5, 14329, 15, 3775, 7474, 426, 3935, 28, 187, 50274, 4718, 535, 50274, 5, 14329, 15, 788, 3074, 53, 351, 375, 1874, 187, 94 ]
var TodoController = function($scope, $http){ $scope.editMode = false; $scope.position = ''; $scope.getAllTodos = function(){ $scope.resetError(); $http.get('todo/all.json').success(function(response){ $scope.todos = response; }).error(function() { $scope.setError('Could not display all todos'); }); } $scope.addTodo = function(newTodo){ $scope.resetError(); $http.post('todo/add/' + newTodo).success(function(response){ $scope.getAllTodos(); }).error(function() { $scope.setError('Could add todo'); }); $scope.todoName = ''; } $scope.deleteTodo = function(deleteTodo){ $scope.resetError(); $http.delete('todo/delete/'+deleteTodo).success(function(response){ $scope.getAllTodos(); }).error(function() { $scope.setError('Could not delete todo'); }); } $scope.deleteAllTodo = function(){ $scope.resetError(); $http.delete('todo/deleteAll').success(function(response){ $scope.getAllTodos(); }).error(function() { $scope.setError('Could not delete all todos'); }) } $scope.editTodo = function(position, todo){ $scope.resetError(); $scope.todoName = todo; $scope.position = position; $scope.editMode = true; } $scope.updateTodo = function(updateTodo){ $scope.resetError(); $http.put('todo/update/'+ $scope.position +'/'+updateTodo).success(function(response){ $scope.getAllTodos(); $scope.position = ''; $scope.todoName = ''; $scope.editMode = false; }).error(function(){ $scope.setError('Could not update todo'); }) } $scope.resetTodoField = function() { $scope.resetError(); $scope.todoName = ''; $scope.editMode = false; }; $scope.resetError = function() { $scope.error = false; $scope.errorMessage = ''; }; $scope.setError = function(message) { $scope.error = true; $scope.errorMessage = message; }; $scope.getAllTodos(); }
214,394
Github
[ 30952, 32735, 14271, 31, 187, 29, 2974, 19457, 568, 257, 1138, 187, 50276, 29, 2522, 31, 187, 50274, 29, 5564, 31, 44007, 4257, 24594, 20775, 6550, 19039, 870, 5564, 31, 187, 50274, 29, 4492, 774, 568, 23745, 3, 1511, 568, 1156, 16, 9016, 3, 3860, 17517, 9016, 16, 75, 1370, 3847, 15, 9016, 3, 4725, 187, 50274, 29, 4492, 774, 568, 23745, 3, 1511, 568, 1156, 16, 9016, 3, 3860, 17517, 9016, 16, 30703, 15, 9016, 3, 4725, 187, 50274, 29, 13518, 29308, 5473, 17880, 14, 25, 16262, 187, 50274, 29, 3866, 6740, 17517, 4305, 16, 19203, 15, 1222, 15, 4305, 3, 36574, 3073, 3866, 31, 187, 50274, 29, 3866, 6740, 17517, 4305, 16, 75, 1370, 3847, 15, 4305, 3, 36574, 3073, 3866, 31, 187, 50274, 187, 50276, 870, 2522, 31, 187, 50276, 29, 2915, 31, 187, 50274, 29, 66, 1416, 568, 605, 19934, 64, 709, 16, 36036, 16, 4947, 16, 44007, 4257, 24594, 20775, 3, 966, 568, 27207, 39252, 6750, 66, 31, 187, 50274, 29, 66, 4060, 568, 44007, 4257, 24594, 20775, 6550, 19039, 6750, 66, 31, 187, 50274, 29, 10146, 31, 187, 50272, 29, 2154, 966, 568, 6071, 14, 25377, 1138, 187, 50270, 29, 81, 2730, 66, 3860, 17517, 4663, 15, 2974, 1138, 18589, 84, 870, 66, 31, 313, 1093, 6, 14290, 17266, 81, 31, 187, 50272, 870, 2154, 31, 187, 50274, 870, 10146, 31, 187, 50274, 29, 2154, 966, 568, 6071, 14, 25377, 1138, 187, 50272, 29, 81, 2654, 568, 31212, 68, 4638, 1768, 1138, 187, 50270, 29, 66, 3860, 17517, 4663, 15, 2974, 1138, 19039, 870, 66, 31, 187, 50270, 29, 8428, 2654, 568, 5546, 255, 3, 6740, 17517, 8428, 16, 5546, 255, 15, 8567, 3, 4725, 187, 50270, 44007, 4257, 24594, 20775, 6550, 19039, 187, 50272, 870, 81, 31, 187, 50274, 870, 2154, 31, 187, 50274, 29, 2154, 966, 568, 6071, 14, 25377, 1138, 187, 50272, 29, 8002, 966, 568, 41315, 1138, 187, 50270, 29, 335, 966, 568, 8002, 14, 12896, 1138, 187, 50268, 29, 965, 966, 568, 8002, 14, 4399, 14, 1590, 1138, 187, 50266, 29, 66, 3860, 17517, 27290, 15, 2974, 1138, 27290, 870, 66, 31, 187, 50266, 29, 335, 966, 568, 8002, 14, 4399, 14, 40480, 1138, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 2946, 23757, 15, 2974, 1138, 2946, 23757, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 6989, 15, 2974, 1138, 6989, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 58, 3788, 421, 30035, 15, 2974, 1138, 58, 3788, 421, 30035, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 44007, 8932, 20775, 15, 2974, 1138, 44007, 8932, 20775, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 44007, 1413, 24788, 3145, 15, 2974, 1138, 44007, 1413, 24788, 3145, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 44007, 1413, 16687, 3145, 10772, 15, 2974, 1138, 44007, 1413, 16687, 3145, 10772, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 44007, 1413, 12618, 20775, 15, 2974, 1138, 44007, 1413, 12618, 20775, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 44007, 1413, 20775, 15, 2974, 1138, 44007, 1413, 20775, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 44007, 18851, 15, 2974, 1138, 44007, 18851, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 44007, 16687, 15, 2974, 1138, 44007, 16687, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 44007, 16687, 29596, 8929, 15, 2974, 1138, 44007, 16687, 29596, 8929, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 44007, 16687, 8983, 15, 2974, 1138, 44007, 16687, 8983, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 44007, 16687, 3235, 3145, 10772, 15, 2974, 1138, 44007, 16687, 3235, 3145, 10772, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 44007, 16687, 3145, 10772, 15, 2974, 1138, 44007, 16687, 3145, 10772, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 44007, 19174, 15, 2974, 1138, 44007, 19174, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 44007, 19174, 10772, 15, 2974, 1138, 44007, 19174, 10772, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 58, 7414, 266, 53, 606, 20775, 15, 2974, 1138, 58, 7414, 266, 53, 606, 20775, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 58, 7414, 292, 647, 48279, 8880, 3145, 15, 2974, 1138, 58, 7414, 292, 647, 48279, 8880, 3145, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 58, 7414, 292, 647, 16687, 3145, 10772, 15, 2974, 1138, 58, 7414, 292, 647, 16687, 3145, 10772, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 58, 7414, 292, 647, 9683, 15, 2974, 1138, 58, 7414, 292, 647, 9683, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 58, 7414, 292, 647, 23772, 3145, 15, 2974, 1138, 58, 7414, 292, 647, 23772, 3145, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 58, 7414, 292, 647, 20775, 15, 2974, 1138, 58, 7414, 292, 647, 20775, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 44007, 6998, 15, 2974, 1138, 44007, 6998, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 44007, 18686, 10772, 15, 2974, 1138, 44007, 18686, 10772, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 44007, 18686, 5475, 15, 2974, 1138, 44007, 18686, 5475, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 58, 4132, 462, 249, 20775, 15, 2974, 1138, 58, 4132, 462, 249, 20775, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 44007, 5072, 48279, 3145, 15, 2974, 1138, 44007, 5072, 48279, 3145, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 44007, 5072, 20212, 254, 3145, 15, 2974, 1138, 44007, 5072, 20212, 254, 3145, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 44007, 5072, 20775, 15, 2974, 1138, 44007, 5072, 20775, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 44007, 7474, 20775, 15, 2974, 1138, 44007, 7474, 20775, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 58, 8643, 460, 12618, 3145, 15, 2974, 1138, 58, 8643, 460, 12618, 3145, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 44007, 38748, 8929, 15, 2974, 1138, 44007, 38748, 8929, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 44007, 19824, 13285, 15, 2974, 1138, 44007, 19824, 13285, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 44007, 4257, 24594, 10772, 15, 2974, 1138, 44007, 4257, 24594, 10772, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 44007, 4257, 24594, 9683, 15, 2974, 1138, 44007, 4257, 24594, 9683, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 44007, 4257, 24594, 20775, 15, 2974, 1138, 44007, 4257, 24594, 20775, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 58, 4548, 493, 29596, 20775, 15, 2974, 1138, 58, 4548, 493, 29596, 20775, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 44007, 13443, 15, 2974, 1138, 44007, 13443, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 44007, 13443, 29596, 15, 2974, 1138, 44007, 13443, 29596, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 44007, 13443, 29596, 24788, 3145, 15, 2974, 1138, 44007, 13443, 29596, 24788, 3145, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 44007, 13443, 29596, 13285, 7912, 15, 2974, 1138, 44007, 13443, 29596, 13285, 7912, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 44007, 13443, 29596, 11387, 3145, 15, 2974, 1138, 44007, 13443, 29596, 11387, 3145, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 44007, 13443, 29596, 20775, 15, 2974, 1138, 44007, 13443, 29596, 20775, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 44007, 13443, 20775, 15, 2974, 1138, 44007, 13443, 20775, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 58, 6784, 832, 2935, 10588, 15, 2974, 1138, 58, 6784, 832, 2935, 10588, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 58, 6784, 832, 2935, 3145, 15, 2974, 1138, 58, 6784, 832, 2935, 3145, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 44007, 16601, 20775, 15, 2974, 1138, 44007, 16601, 20775, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 58, 3338, 3849, 16324, 3145, 15, 2974, 1138, 58, 3338, 3849, 16324, 3145, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 58, 3338, 3849, 9179, 15, 2974, 1138, 58, 3338, 3849, 9179, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 58, 3338, 3849, 20775, 15, 2974, 1138, 58, 3338, 3849, 20775, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 58, 3338, 1796, 3074, 8929, 15, 2974, 1138, 58, 3338, 1796, 3074, 8929, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 58, 3338, 1796, 3074, 46167, 10772, 15, 2974, 1138, 58, 3338, 1796, 3074, 46167, 10772, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 58, 3338, 33513, 15, 2974, 1138, 58, 3338, 33513, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 58, 3338, 33513, 10772, 15, 2974, 1138, 58, 3338, 33513, 10772, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 58, 3338, 33513, 20775, 15, 2974, 1138, 58, 3338, 33513, 20775, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 44007, 18281, 8880, 3145, 15, 2974, 1138, 44007, 18281, 8880, 3145, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 58, 3338, 430, 10772, 15, 2974, 1138, 58, 3338, 430, 10772, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 58, 3338, 430, 3235, 3145, 15, 2974, 1138, 58, 3338, 430, 3235, 3145, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 58, 6229, 46, 5626, 20775, 15, 2974, 1138, 58, 6229, 46, 5626, 20775, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 58, 6229, 357, 7912, 8929, 15, 2974, 1138, 58, 6229, 357, 7912, 8929, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 58, 6229, 412, 12618, 3145, 15, 2974, 1138, 58, 6229, 412, 12618, 3145, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 58, 6229, 6361, 20775, 15, 2974, 1138, 58, 6229, 6361, 20775, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 27290, 16, 44007, 44594, 8880, 15, 2974, 1138, 44007, 44594, 8880, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50266, 870, 335, 31, 187, 50268, 870, 965, 31, 187, 50268, 29, 965, 966, 568, 8002, 14, 4399, 14, 1590, 1138, 187, 50266, 29, 66, 3860, 17517, 18590, 40949, 15, 2974, 1138, 18590, 40949, 870, 66, 31, 187, 50266, 29, 335, 966, 568, 8002, 14, 4399, 14, 40480, 1138, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 18590, 40949, 15, 2974, 4, 16, 84, 27, 87, 24, 15961, 53, 606, 25, 23335, 64, 9715, 3528, 1138, 23335, 64, 9715, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 18590, 40949, 15, 2974, 4, 16, 84, 27, 87, 24, 15961, 53, 606, 26, 43501, 64, 10249, 14581, 1138, 43501, 64, 10249, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 18590, 40949, 15, 2974, 4, 16, 84, 27, 87, 24, 15961, 53, 606, 24, 52, 15718, 1400, 22984, 805, 13745, 37430, 24, 36, 4161, 18113, 1138, 52, 15718, 1400, 41, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 18590, 40949, 15, 2974, 4, 16, 84, 27, 87, 24, 15961, 53, 606, 24, 52, 15718, 1400, 34772, 805, 13745, 37430, 24, 36, 4161, 18113, 1138, 52, 15718, 1400, 56, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 18590, 40949, 15, 2974, 4, 16, 84, 27, 87, 24, 15961, 53, 606, 1012, 44007, 6407, 41803, 3528, 1138, 44007, 6407, 41803, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 18590, 40949, 15, 2974, 4, 16, 84, 27, 87, 24, 15961, 53, 606, 1348, 14267, 16687, 10772, 1838, 3528, 1138, 14267, 16687, 10772, 1838, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 18590, 40949, 15, 2974, 4, 16, 84, 27, 87, 24, 15961, 53, 606, 1036, 25318, 10772, 1838, 3528, 1138, 25318, 10772, 1838, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 18590, 40949, 15, 2974, 4, 16, 84, 27, 87, 24, 15961, 53, 606, 1797, 25318, 3235, 10772, 1838, 3528, 1138, 25318, 3235, 10772, 1838, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 18590, 40949, 15, 2974, 4, 16, 84, 27, 87, 24, 15961, 53, 606, 1012, 13982, 10772, 1838, 3528, 1138, 13982, 10772, 1838, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 18590, 40949, 15, 2974, 4, 16, 84, 27, 87, 24, 15961, 53, 606, 1731, 20119, 16687, 3145, 10772, 1838, 3528, 1138, 20119, 16687, 3145, 10772, 1838, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 18590, 40949, 15, 2974, 4, 16, 84, 27, 87, 24, 15961, 53, 606, 740, 9511, 10772, 1838, 3528, 1138, 9511, 10772, 1838, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 18590, 40949, 15, 2974, 4, 16, 84, 27, 87, 24, 15961, 53, 606, 26, 261, 42, 10504, 22, 44834, 1138, 261, 42, 10504, 22, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 18590, 40949, 15, 2974, 4, 16, 84, 27, 87, 24, 15961, 53, 606, 26, 261, 42, 10504, 23, 44834, 1138, 261, 42, 10504, 23, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 18590, 40949, 15, 2974, 4, 16, 84, 27, 87, 24, 15961, 53, 606, 740, 261, 42, 10504, 23, 3299, 67, 1138, 261, 42, 10504, 23, 49, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 18590, 40949, 15, 2974, 4, 16, 84, 27, 87, 24, 15961, 53, 606, 24, 261, 27689, 3528, 1138, 261, 27689, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 18590, 40949, 15, 2974, 4, 16, 84, 27, 87, 24, 15961, 53, 606, 1093, 76, 26311, 24921, 52, 69, 1138, 76, 26311, 24921, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 18590, 40949, 15, 2974, 4, 16, 84, 27, 87, 24, 15961, 53, 606, 1012, 76, 9873, 1216, 39547, 55, 805, 13745, 37430, 24, 36, 4161, 18113, 1138, 76, 9873, 1216, 39547, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 18590, 40949, 15, 2974, 4, 16, 84, 27, 87, 24, 15961, 53, 606, 1010, 76, 8207, 28288, 3145, 22984, 805, 13745, 37430, 24, 36, 4161, 18113, 1138, 76, 8207, 28288, 3145, 41, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 18590, 40949, 15, 2974, 4, 16, 84, 27, 87, 24, 15961, 53, 606, 24, 76, 46, 4319, 55, 805, 13745, 37430, 24, 36, 4161, 18113, 1138, 76, 46, 4319, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 18590, 40949, 15, 2974, 4, 16, 84, 27, 87, 24, 15961, 53, 606, 1036, 76, 4257, 27260, 6878, 14581, 1138, 76, 4257, 27260, 6878, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 18590, 40949, 15, 2974, 4, 16, 84, 27, 87, 24, 15961, 53, 606, 805, 76, 53, 262, 868, 3145, 22984, 805, 13745, 37430, 24, 36, 4161, 18113, 1138, 76, 53, 262, 868, 3145, 41, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 18590, 40949, 15, 2974, 4, 16, 84, 27, 87, 24, 15961, 53, 606, 805, 76, 53, 262, 868, 3145, 58, 55, 805, 13745, 37430, 24, 36, 4161, 18113, 1138, 76, 53, 262, 868, 3145, 58, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 18590, 40949, 15, 2974, 4, 16, 84, 27, 87, 24, 15961, 53, 606, 26, 76, 11387, 3145, 22984, 805, 13745, 37430, 24, 36, 4161, 18113, 1138, 76, 11387, 3145, 41, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 18590, 40949, 15, 2974, 4, 16, 84, 27, 87, 24, 15961, 53, 606, 1348, 76, 58, 8643, 460, 12618, 6586, 13881, 55, 805, 13745, 37430, 24, 36, 4161, 18113, 1138, 76, 58, 8643, 460, 12618, 6586, 13881, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 18590, 40949, 15, 2974, 4, 16, 84, 27, 87, 24, 15961, 53, 606, 23, 76, 4835, 22984, 805, 13745, 37430, 24, 36, 4161, 18113, 1138, 76, 4835, 41, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 18590, 40949, 15, 2974, 4, 16, 84, 27, 87, 24, 15961, 53, 606, 23, 76, 4835, 34772, 805, 13745, 37430, 24, 36, 4161, 18113, 1138, 76, 4835, 56, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 18590, 40949, 15, 2974, 4, 16, 84, 27, 87, 24, 15961, 53, 606, 740, 76, 1282, 12175, 55, 805, 13745, 37430, 24, 36, 4161, 18113, 1138, 76, 1282, 12175, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 18590, 40949, 15, 2974, 4, 16, 84, 27, 87, 24, 15961, 53, 606, 1012, 8559, 10772, 1838, 3528, 1138, 8559, 10772, 1838, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 18590, 40949, 15, 2974, 4, 16, 84, 27, 87, 24, 15961, 53, 606, 805, 1826, 27260, 1838, 3528, 1138, 1826, 27260, 1838, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 18590, 40949, 15, 2974, 4, 16, 84, 27, 87, 24, 15961, 53, 606, 1423, 8716, 16687, 10772, 1838, 3528, 1138, 8716, 16687, 10772, 1838, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 18590, 40949, 15, 2974, 4, 16, 84, 27, 87, 24, 15961, 53, 606, 805, 2887, 3074, 3992, 1838, 3528, 1138, 2887, 3074, 3992, 1838, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 18590, 40949, 15, 2974, 4, 16, 84, 27, 87, 24, 15961, 53, 606, 746, 15227, 3235, 3145, 10772, 1838, 3528, 1138, 15227, 3235, 3145, 10772, 1838, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50266, 870, 335, 31, 187, 50268, 870, 965, 31, 187, 50268, 29, 965, 966, 568, 8002, 14, 4399, 14, 1590, 1138, 187, 50266, 29, 66, 3860, 17517, 3546, 7640, 15, 2974, 1138, 3546, 7640, 870, 66, 31, 187, 50266, 29, 335, 966, 568, 8002, 14, 4399, 14, 40480, 1138, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 3546, 7640, 16, 58, 6329, 508, 27689, 8880, 2548, 15, 2974, 1138, 58, 6329, 508, 27689, 8880, 2548, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 3546, 7640, 16, 44007, 18281, 8880, 2548, 15, 2974, 1138, 44007, 18281, 8880, 2548, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 3546, 7640, 16, 58, 6229, 6361, 2548, 15, 2974, 1138, 58, 6229, 6361, 2548, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50266, 870, 335, 31, 187, 50268, 870, 965, 31, 187, 50268, 29, 965, 966, 568, 8002, 14, 4399, 14, 1590, 1138, 187, 50266, 29, 66, 3860, 17517, 31489, 15, 2974, 1138, 31489, 870, 66, 31, 187, 50266, 29, 335, 966, 568, 8002, 14, 4399, 14, 40480, 1138, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 31489, 16, 2776, 15, 2974, 1138, 2776, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 31489, 16, 41270, 38375, 15, 2974, 1138, 41270, 38375, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 31489, 16, 9571, 3145, 15, 2974, 1138, 9571, 3145, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50266, 870, 335, 31, 187, 50268, 870, 965, 31, 187, 50268, 29, 965, 966, 568, 8002, 14, 4399, 14, 1590, 1138, 187, 50266, 29, 66, 3860, 17517, 40541, 15, 2974, 1138, 40541, 870, 66, 31, 187, 50266, 29, 335, 966, 568, 8002, 14, 4399, 14, 40480, 1138, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 40541, 15, 2974, 4, 16, 84, 27, 39, 24, 15961, 53, 606, 24, 44007, 6573, 5518, 55, 805, 13745, 37430, 24, 36, 4161, 18113, 18, 72, 52, 18, 64, 18, 67, 52, 18, 64, 18, 66, 52, 18, 876, 36, 2598, 24, 45717, 39484, 1138, 44007, 6573, 10107, 27, 72, 27, 67, 27, 66, 27, 17266, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 40541, 15, 2974, 4, 16, 84, 27, 39, 24, 15961, 53, 606, 1012, 44007, 18590, 6573, 5518, 64, 36, 2598, 24, 45717, 39484, 1138, 44007, 18590, 6573, 46410, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 40541, 15, 2974, 4, 16, 84, 27, 39, 24, 15961, 53, 606, 1036, 44007, 18590, 10252, 6573, 5518, 64, 36, 2598, 24, 45717, 39484, 1138, 44007, 18590, 10252, 6573, 46410, 66, 31, 187, 50264, 870, 965, 31, 187, 50266, 870, 335, 31, 187, 50268, 870, 965, 31, 187, 50268, 29, 965, 966, 568, 8002, 14, 4399, 14, 1590, 1138, 187, 50266, 29, 66, 3860, 17517, 29453, 12862, 15, 2974, 1138, 29453, 12862, 870, 66, 31, 187, 50266, 29, 335, 966, 568, 8002, 14, 4399, 14, 40480, 1138, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 29453, 12862, 16, 44007, 1413, 24788, 3145, 23757, 15, 2974, 1138, 44007, 1413, 24788, 3145, 23757, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 29453, 12862, 16, 44007, 16687, 3145, 10772, 23757, 15, 2974, 1138, 44007, 16687, 3145, 10772, 23757, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 29453, 12862, 16, 58, 7414, 292, 647, 48279, 8880, 3145, 3848, 463, 15353, 15, 2974, 1138, 58, 7414, 292, 647, 48279, 8880, 3145, 3848, 463, 15353, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 29453, 12862, 16, 44007, 18686, 10772, 23757, 15, 2974, 1138, 44007, 18686, 10772, 23757, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 29453, 12862, 16, 44007, 13443, 29596, 13285, 7912, 23757, 15, 2974, 1138, 44007, 13443, 29596, 13285, 7912, 23757, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 29453, 12862, 16, 58, 3338, 430, 3235, 3145, 23757, 15, 2974, 1138, 58, 3338, 430, 3235, 3145, 23757, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50264, 29, 965, 966, 568, 8002, 14, 4399, 14, 14605, 1138, 187, 50262, 29, 66, 3860, 17517, 29453, 12862, 16, 58, 6229, 412, 12618, 3145, 23757, 15, 2974, 1138, 58, 6229, 412, 12618, 3145, 23757, 870, 66, 31, 187, 50264, 870, 965, 31, 187, 50266, 870, 335, 31, 187, 50268, 870, 965, 31, 187, 50270, 870, 335, 31, 187, 50272, 870, 8002, 31, 187, 50272, 29, 14600, 966, 568, 7265, 14, 6071, 1138, 187, 50270, 29, 4674, 31, 187, 50268, 29, 4674, 966, 568, 4674, 1138, 187, 50266, 29, 73, 18, 31, 44007, 4257, 24594, 20775, 870, 73, 18, 31, 187, 50266, 29, 81, 31, 37544, 1829, 264, 870, 81, 31, 535, 50268, 870, 4674, 31, 187, 50268, 29, 4674, 966, 568, 4674, 4836, 14, 4399, 14, 4674, 1138, 187, 50266, 29, 2154, 966, 568, 14605, 14, 4399, 1138, 187, 50264, 29, 335, 31, 187, 50262, 29, 965, 966, 568, 4835, 1138, 187, 50260, 29, 2154, 31, 187, 50258, 29, 3211, 31, 187, 50258, 29, 66, 1416, 17779, 84, 27, 87, 36, 24, 15961, 53, 606, 1731, 44007, 4257, 24594, 20775, 49, 1610, 64, 21, 9006, 37, 25, 1508, 35, 1093, 20777, 34, 21, 34, 2950, 1047, 35, 23, 36, 21, 37, 22, 5377, 17, 38, 9006, 23, 7916, 36, 2598, 1731, 45717, 311, 1788, 3145, 20671, 9683, 6750, 66, 31, 187, 50258, 29, 66, 1416, 568, 605, 19934, 64, 709, 16, 36036, 16, 8324, 16, 7916, 3, 966, 568, 27207, 39252, 6750, 66, 31, 187, 50258, 29, 66, 966, 568, 13763, 3, 3860, 10817, 16, 84, 27, 87, 36, 24, 15961, 53, 606, 1731, 44007, 4257, 24594, 20775, 49, 1610, 64, 21, 9006, 37, 25, 1508, 35, 1093, 20777, 34, 21, 34, 2950, 1047, 35, 23, 36, 21, 37, 22, 5377, 17, 38, 9006, 23, 7916, 36, 2598, 1731, 45717, 311, 1788, 3145, 20671, 9683, 1138, 7916, 870, 66, 31, 187, 50258, 870, 3211, 31, 187, 50260, 870, 2154, 31, 187, 50260, 29, 2154, 966, 568, 7436, 14, 13299, 1138, 187, 50258, 29, 2154, 966, 568, 25078, 14, 13299, 6750, 2154, 31, 187, 50258, 29, 4674, 966, 568, 4674, 1138, 187, 50256, 29, 2154, 966, 568, 25078, 6750, 2154, 31, 187, 50256, 29, 2154, 966, 568, 15834, 1138, 187, 50254, 29, 81, 31, 15446, 214, 17955, 211, 25949, 44795, 870, 81, 31, 535, 50256, 870, 2154, 31, 187, 50256, 29, 2154, 966, 568, 16366, 10068, 1138, 187, 50254, 29, 73, 21, 31, 36914, 870, 73, 21, 31, 187, 50254, 29, 2154, 966, 568, 12982, 1138, 187, 50254, 50276, 29, 81, 966, 568, 45529, 14, 5564, 1138, 44756, 870, 81, 31, 187, 50254, 50276, 29, 3456, 966, 568, 30703, 5264, 3211, 2730, 2551, 966, 568, 76, 69, 1138, 9486, 870, 2551, 31, 654, 2551, 966, 568, 76, 1138, 2044, 870, 2551, 31, 654, 2551, 966, 568, 31287, 1138, 7916, 870, 2551, 2730, 2551, 966, 568, 81, 1138, 19282, 2551, 31, 654, 2551, 966, 568, 5751, 1138, 45717, 311, 1788, 3145, 20671, 9683, 870, 2551, 31, 654, 2551, 966, 568, 80, 1138, 30, 870, 2551, 31, 654, 2551, 966, 568, 5751, 1138, 44007, 4257, 24594, 9683, 870, 2551, 2730, 2551, 966, 568, 81, 1138, 46410, 2551, 3073, 3211, 3073, 3456, 31, 535, 50254, 870, 2154, 31, 187, 50256, 870, 2154, 31, 187, 50258, 870, 4674, 31, 187, 50260, 870, 2154, 31, 187, 50262, 870, 965, 31, 187, 50262, 29, 965, 966, 568, 4835, 1138, 187, 50260, 29, 2154, 31, 187, 50258, 29, 3211, 31, 187, 50258, 29, 66, 1416, 17779, 84, 27, 6739, 24, 15961, 53, 606, 1731, 44007, 4257, 24594, 3145, 2861, 1811, 2269, 5518, 64, 52, 17, 64, 6750, 66, 31, 187, 50258, 29, 66, 1416, 568, 605, 19934, 64, 709, 16, 36036, 16, 6942, 16, 4478, 46221, 966, 568, 27207, 39252, 6750, 66, 31, 187, 50258, 29, 66, 966, 568, 13763, 3, 3860, 10817, 16, 84, 27, 6739, 24, 15961, 53, 606, 1731, 44007, 4257, 24594, 3145, 2861, 1811, 2269, 5518, 64, 52, 17, 64, 1138, 4478, 46410, 66, 31, 187, 50258, 870, 3211, 31, 187, 50260, 870, 2154, 31, 187, 50260, 29, 2154, 966, 568, 7436, 14, 13299, 1138, 187, 50258, 29, 2154, 966, 568, 25078, 14, 13299, 6750, 2154, 31, 187, 50258, 29, 4674, 966, 568, 4674, 1138, 187, 50256, 29, 2154, 966, 568, 25078, 6750, 2154, 31, 187, 50256, 29, 2154, 966, 568, 15834, 1138, 187, 50254, 29, 81, 31, 37544, 1829, 264, 870, 81, 31, 535, 50256, 870, 2154, 31, 187, 50258, 870, 4674, 31, 187, 50260, 870, 2154, 31, 187, 50262, 870, 965, 31, 187, 50262, 29, 965, 966, 568, 4835, 1138, 187, 50260, 29, 2154, 31, 187, 50258, 29, 3211, 31, 187, 50258, 29, 66, 1416, 17779, 84, 27, 6739, 24, 15961, 53, 606, 1731, 44007, 4257, 24594, 3145, 2861, 1811, 2269, 5518, 22, 68, 8586, 36, 2598, 24, 47, 4061, 8586, 64, 10339, 82, 52, 17, 876, 6750, 66, 31, 187, 50258, 29, 66, 1416, 568, 605, 19934, 64, 709, 16, 36036, 16, 6942, 16, 4478, 9, 68, 8586, 27, 6844, 966, 568, 27207, 39252, 6750, 66, 31, 187, 50258, 29, 66, 966, 568, 13763, 3, 3860, 10817, 16, 84, 27, 6739, 24, 15961, 53, 606, 1731, 44007, 4257, 24594, 3145, 2861, 1811, 2269, 5518, 22, 68, 8586, 36, 2598, 24, 47, 4061, 8586, 64, 10339, 82, 52, 17, 876, 1138, 4478, 9, 68, 8586, 27, 17266, 66, 31, 187, 50258, 870, 3211, 31, 187, 50260, 870, 2154, 31, 187, 50260, 29, 2154, 966, 568, 7436, 14, 13299, 1138, 187, 50258, 29, 2154, 966, 568, 25078, 14, 13299, 6750, 2154, 31, 187, 50258, 29, 4674, 966, 568, 4674, 1138, 187, 50256, 29, 2154, 966, 568, 25078, 6750, 2154, 31, 187, 50256, 29, 2154, 966, 568, 15834, 1138, 187, 50254, 29, 81, 31, 37544, 1829, 264, 870, 81, 31, 535, 50256, 870, 2154, 31, 187, 50258, 870, 4674, 31, 187, 50260, 870, 2154, 31, 187, 50262, 870, 965, 31, 187, 50262, 29, 965, 966, 568, 4835, 1138, 187, 50260, 29, 2154, 31, 187, 50258, 29, 3211, 31, 187, 50258, 29, 66, 1416, 17779, 84, 27, 6739, 24, 15961, 53, 606, 1731, 44007, 4257, 24594, 20775, 883, 1374, 8917, 9624, 5518, 64, 53, 64, 6750, 66, 31, 187, 50258, 29, 66, 1416, 568, 605, 19934, 64, 709, 16, 36036, 16, 6942, 16, 1374, 8917, 9624, 46221, 966, 568, 27207, 39252, 6750, 66, 31, 187, 50258, 29, 66, 966, 568, 13763, 3, 3860, 10817, 16, 84, 27, 6739, 24, 15961, 53, 606, 1731, 44007, 4257, 24594, 20775, 883, 1374, 8917, 9624, 5518, 64, 53, 64, 1138, 1374, 8917, 9624, 46410, 66, 31, 187, 50258, 870, 3211, 31, 187, 50260, 870, 2154, 31, 187, 50260, 29, 2154, 966, 568, 7436, 14, 13299, 1138, 187, 50258, 29, 2154, 966, 568, 25078, 14, 13299, 6750, 2154, 31, 187, 50258, 29, 4674, 966, 568, 4674, 1138, 187, 50256, 29, 2154, 966, 568, 25078, 6750, 2154, 31, 187, 50256, 29, 2154, 966, 568, 15834, 1138, 187, 50254, 29, 81, 31, 37544, 1829, 264, 870, 81, 31, 535, 50256, 870, 2154, 31, 187, 50258, 870, 4674, 31, 187, 50260, 870, 2154, 31, 187, 50262, 870, 965, 31, 187, 50264, 870, 335, 31, 187, 50266, 870, 2154, 31, 187, 50266, 29, 2154, 966, 568, 14605, 14, 4399, 1138, 187, 50264, 29, 335, 31, 187, 50262, 29, 965, 966, 568, 4835, 1138, 187, 50260, 29, 2154, 31, 187, 50258, 29, 3211, 31, 187, 50258, 29, 66, 1416, 17779, 84, 27, 6739, 24, 15961, 53, 606, 1731, 44007, 4257, 24594, 20775, 1047, 25318, 3145, 5518, 36, 2598, 1036, 45717, 311, 1788, 3145, 1423, 9133, 4527, 16379, 688, 12612, 14581, 64, 14581, 6750, 66, 31, 187, 50258, 29, 66, 1416, 568, 605, 19934, 64, 709, 16, 36036, 16, 6942, 16, 25318, 3145, 10107, 27, 9133, 4527, 16379, 688, 12612, 27, 6844, 966, 568, 27207, 39252, 6750, 66, 31, 187, 50258, 29, 66, 966, 568, 13763, 3, 3860, 10817, 16, 84, 27, 6739, 24, 15961, 53, 606, 1731, 44007, 4257, 24594, 20775, 1047, 25318, 3145, 5518, 36, 2598, 1036, 45717, 311, 1788, 3145, 1423, 9133, 4527, 16379, 688, 12612, 14581, 64, 14581, 1138, 25318, 3145, 10107, 27, 9133, 4527, 16379, 688, 12612, 27, 17266, 66, 31, 187, 50258, 870, 3211, 31, 187, 50260, 870, 2154, 31, 187, 50260, 29, 2154, 966, 568, 7436, 14, 13299, 1138, 187, 50258, 29, 2154, 966, 568, 25078, 14, 13299, 6750, 2154, 31, 187, 50258, 29, 4674, 966, 568, 4674, 1138, 187, 50256, 29, 2154, 966, 568, 25078, 6750, 2154, 31, 187, 50256, 29, 2154, 966, 568, 15834, 1138, 187, 50254, 29, 81, 31, 37544, 1829, 264, 870, 81, 31, 535, 50256, 870, 2154, 31, 187, 50258, 870, 4674, 31, 187, 50260, 870, 2154, 31, 187, 50262, 870, 965, 31, 187, 50262, 29, 965, 966, 568, 4835, 1138, 187, 50260, 29, 2154, 31, 187, 50258, 29, 3211, 31, 187, 50258, 29, 66, 1416, 17779, 84, 27, 6739, 24, 15961, 53, 606, 1731, 44007, 4257, 24594, 20775, 1047, 25318, 3145, 5518, 36, 2598, 1036, 45717, 311, 1788, 3145, 1423, 3992, 2214, 5475, 44936, 5455, 36, 2598, 883, 4883, 6060, 5455, 64, 36, 2598, 938, 45717, 311, 1788, 3145, 10772, 6750, 66, 31, 187, 50258, 29, 66, 1416, 568, 605, 19934, 64, 709, 16, 36036, 16, 6942, 16, 25318, 3145, 10107, 27, 3992, 2214, 5475, 44936, 5455, 27, 6844, 966, 568, 27207, 39252, 6750, 66, 31, 187, 50258, 29, 66, 966, 568, 13763, 3, 3860, 10817, 16, 84, 27, 6739, 24, 15961, 53, 606, 1731, 44007, 4257, 24594, 20775, 1047, 25318, 3145, 5518, 36, 2598, 1036, 45717, 311, 1788, 3145, 1423, 3992, 2214, 5475, 44936, 5455, 36, 2598, 883, 4883, 6060, 5455, 64, 36, 2598, 938, 45717, 311, 1788, 3145, 10772, 1138, 25318, 3145, 10107, 27, 3992, 2214, 5475, 44936, 5455, 27, 17266, 66, 31, 187, 50258, 870, 3211, 31, 187, 50260, 870, 2154, 31, 187, 50260, 29, 2154, 966, 568, 7436, 14, 13299, 1138, 187, 50258, 29, 2154, 966, 568, 25078, 14, 13299, 6750, 2154, 31, 187, 50258, 29, 4674, 966, 568, 4674, 1138, 187, 50256, 29, 2154, 966, 568, 25078, 6750, 2154, 31, 187, 50256, 29, 2154, 966, 568, 15834, 1138, 187, 50254, 29, 81, 31, 37544, 1829, 264, 870, 81, 31, 535, 50256, 870, 2154, 31, 187, 50258, 870, 4674, 31, 187, 50260, 870, 2154, 31, 187, 50262, 870, 965, 31, 187, 50262, 29, 965, 966, 568, 4835, 1138, 187, 50260, 29, 2154, 31, 187, 50258, 29, 3211, 31, 187, 50258, 29, 66, 1416, 17779, 84, 27, 6739, 24, 15961, 53, 606, 1731, 44007, 4257, 24594, 20775, 1047, 25318, 3145, 5518, 36, 2598, 1036, 45717, 311, 1788, 3145, 938, 14958, 7689, 17214, 272, 10772, 36, 2598, 938, 45717, 311, 1788, 3145, 10772, 1093, 1542, 5475, 44936, 5455, 36, 2598, 883, 4883, 6060, 5455, 64, 53, 64, 6750, 66, 31, 187, 50258, 29, 66, 1416, 568, 605, 19934, 64, 709, 16, 36036, 16, 6942, 16, 25318, 3145, 10107, 27, 14958, 7689, 17214, 272, 10772, 27, 1542, 5475, 44936, 5455, 27, 6844, 966, 568, 27207, 39252, 6750, 66, 31, 187, 50258, 29, 66, 966, 568, 13763, 3, 3860, 10817, 16, 84, 27, 6739, 24, 15961, 53, 606, 1731, 44007, 4257, 24594, 20775, 1047, 25318, 3145, 5518, 36, 2598, 1036, 45717, 311, 1788, 3145, 938, 14958, 7689, 17214, 272, 10772, 36, 2598, 938, 45717, 311, 1788, 3145, 10772, 1093, 1542, 5475, 44936, 5455, 36, 2598, 883, 4883, 6060, 5455, 64, 53, 64, 1138, 25318, 3145, 10107, 27, 14958, 7689, 17214, 272, 10772, 27, 1542, 5475, 44936, 5455, 27, 17266, 66, 31, 187, 50258, 870, 3211, 31, 187, 50260, 870, 2154, 31, 187, 50260, 29, 2154, 966, 568, 7436, 14, 13299, 1138, 187, 50258, 29, 2154, 966, 568, 25078, 14, 13299, 6750, 2154, 31, 187, 50258, 29, 4674, 966, 568, 4674, 1138, 187, 50256, 29, 2154, 966, 568, 25078, 6750, 2154, 31, 187, 50256, 29, 2154, 966, 568, 15834, 1138, 187, 50254, 29, 81, 31, 37544, 1829, 264, 870, 81, 31, 535, 50256, 870, 2154, 31, 187, 50258, 870, 4674, 31, 187, 50260, 870, 2154, 31, 187, 50262, 870, 965, 31, 187, 50264, 870, 335, 31, 187, 50266, 870, 2154, 31, 187, 50268, 870, 4674, 31, 187, 50270, 870, 4674, 31, 187, 50270, 29, 4674, 2654, 568, 28497, 1138, 187, 50268, 29, 81, 12399, 12557, 28, 4022, 654, 66, 966, 568, 4492, 3, 3860, 20679, 2303, 23604, 22473, 3, 774, 568, 22108, 6750, 66, 13208, 1876, 3570, 10827, 15, 313, 8693, 9300, 27, 4022, 14, 2922, 14, 1630, 17266, 81, 31, 187, 50268, 29, 81, 31, 33527, 407, 654, 66, 966, 568, 4492, 3, 3860, 568, 3614, 1358, 7280, 15, 681, 16, 6549, 78, 16, 75, 1370, 3847, 3, 2303, 23604, 22473, 3, 774, 568, 22108, 1138, 75, 1370, 3847, 14658, 27582, 106, 362, 17, 15, 23, 15, 19, 870, 66, 9983, 247, 654, 66, 966, 568, 4492, 3, 3860, 568, 2413, 1358, 6549, 78, 15, 900, 3, 2303, 23604, 22473, 3, 774, 568, 22108, 1138, 17642, 78, 870, 66, 31, 2199, 8239, 81, 31, 187, 50270, 870, 4674, 31, 187, 50272, 870, 14600, 31, 187, 50274, 870, 2154, 31, 187, 50276, 870, 2915, 31, 187, 870, 2154, 31, 187, 870, 2974, 31, 187 ]
<!DOCTYPE html> <html lang="en"> <head> <title>YMNewfeatureViewController Class Reference</title> <link rel="stylesheet" type="text/css" href="../css/jazzy.css" /> <link rel="stylesheet" type="text/css" href="../css/highlight.css" /> <meta charset='utf-8'> <script src="../js/jquery.min.js" defer></script> <script src="../js/jazzy.js" defer></script> </head> <body> <a name="//apple_ref/swift/Class/YMNewfeatureViewController" class="dashAnchor"></a> <a title="YMNewfeatureViewController Class Reference"></a> <header> <div class="content-wrapper"> <p><a href="../index.html"> Docs</a> (18% documented)</p> </div> </header> <div class="content-wrapper"> <p id="breadcrumbs"> <a href="../index.html"> Reference</a> <img id="carat" src="../img/carat.png" /> YMNewfeatureViewController Class Reference </p> </div> <div class="content-wrapper"> <nav class="sidebar"> <ul class="nav-groups"> <li class="nav-group-name"> <a href="../Classes.html">Classes</a> <ul class="nav-group-tasks"> <li class="nav-group-task"> <a href="../Classes/AppDelegate.html">AppDelegate</a> </li> <li class="nav-group-task"> <a href="../Classes/User.html">User</a> </li> <li class="nav-group-task"> <a href="../Classes/YMActionSheet.html">YMActionSheet</a> </li> <li class="nav-group-task"> <a href="../Classes/YMBaseViewController.html">YMBaseViewController</a> </li> <li class="nav-group-task"> <a href="../Classes/YMCategoryBottomView.html">YMCategoryBottomView</a> </li> <li class="nav-group-task"> <a href="../Classes/YMCategoryCollectionViewCell.html">YMCategoryCollectionViewCell</a> </li> <li class="nav-group-task"> <a href="../Classes/YMCategoryHeaderViewController.html">YMCategoryHeaderViewController</a> </li> <li class="nav-group-task"> <a href="../Classes/YMCategoryViewController.html">YMCategoryViewController</a> </li> <li class="nav-group-task"> <a href="../Classes/YMChannel.html">YMChannel</a> </li> <li class="nav-group-task"> <a href="../Classes/YMCollection.html">YMCollection</a> </li> <li class="nav-group-task"> <a href="../Classes/YMCollectionDetailController.html">YMCollectionDetailController</a> </li> <li class="nav-group-task"> <a href="../Classes/YMCollectionPost.html">YMCollectionPost</a> </li> <li class="nav-group-task"> <a href="../Classes/YMCollectionTableViewCell.html">YMCollectionTableViewCell</a> </li> <li class="nav-group-task"> <a href="../Classes/YMCollectionViewCell.html">YMCollectionViewCell</a> </li> <li class="nav-group-task"> <a href="../Classes/YMComment.html">YMComment</a> </li> <li class="nav-group-task"> <a href="../Classes/YMCommentCell.html">YMCommentCell</a> </li> <li class="nav-group-task"> <a href="../Classes/YMDanTangViewController.html">YMDanTangViewController</a> </li> <li class="nav-group-task"> <a href="../Classes/YMDetailChoiceButtonView.html">YMDetailChoiceButtonView</a> </li> <li class="nav-group-task"> <a href="../Classes/YMDetailCollectionViewCell.html">YMDetailCollectionViewCell</a> </li> <li class="nav-group-task"> <a href="../Classes/YMDetailLayout.html">YMDetailLayout</a> </li> <li class="nav-group-task"> <a href="../Classes/YMDetailScrollView.html">YMDetailScrollView</a> </li> <li class="nav-group-task"> <a href="../Classes/YMDetailViewController.html">YMDetailViewController</a> </li> <li class="nav-group-task"> <a href="../Classes/YMGroup.html">YMGroup</a> </li> <li class="nav-group-task"> <a href="../Classes/YMHomeCell.html">YMHomeCell</a> </li> <li class="nav-group-task"> <a href="../Classes/YMHomeItem.html">YMHomeItem</a> </li> <li class="nav-group-task"> <a href="../Classes/YMLoginViewController.html">YMLoginViewController</a> </li> <li class="nav-group-task"> <a href="../Classes/YMMeChoiceView.html">YMMeChoiceView</a> </li> <li class="nav-group-task"> <a href="../Classes/YMMeFooterView.html">YMMeFooterView</a> </li> <li class="nav-group-task"> <a href="../Classes/YMMeViewController.html">YMMeViewController</a> </li> <li class="nav-group-task"> <a href="../Classes/YMMessageViewController.html">YMMessageViewController</a> </li> <li class="nav-group-task"> <a href="../Classes/YMMineHeaderView.html">YMMineHeaderView</a> </li> <li class="nav-group-task"> <a href="../Classes/YMNavigationController.html">YMNavigationController</a> </li> <li class="nav-group-task"> <a href="../Classes/YMNetworkTool.html">YMNetworkTool</a> </li> <li class="nav-group-task"> <a href="../Classes/YMNewfeatureCell.html">YMNewfeatureCell</a> </li> <li class="nav-group-task"> <a href="../Classes/YMNewfeatureLayout.html">YMNewfeatureLayout</a> </li> <li class="nav-group-task"> <a href="../Classes/YMNewfeatureViewController.html">YMNewfeatureViewController</a> </li> <li class="nav-group-task"> <a href="../Classes/YMPostDetailViewController.html">YMPostDetailViewController</a> </li> <li class="nav-group-task"> <a href="../Classes/YMProduct.html">YMProduct</a> </li> <li class="nav-group-task"> <a href="../Classes/YMProductDetail.html">YMProductDetail</a> </li> <li class="nav-group-task"> <a href="../Classes/YMProductDetailBottomView.html">YMProductDetailBottomView</a> </li> <li class="nav-group-task"> <a href="../Classes/YMProductDetailToolBar.html">YMProductDetailToolBar</a> </li> <li class="nav-group-task"> <a href="../Classes/YMProductDetailTopView.html">YMProductDetailTopView</a> </li> <li class="nav-group-task"> <a href="../Classes/YMProductDetailViewController.html">YMProductDetailViewController</a> </li> <li class="nav-group-task"> <a href="../Classes/YMProductViewController.html">YMProductViewController</a> </li> <li class="nav-group-task"> <a href="../Classes/YMRefreshControl.html">YMRefreshControl</a> </li> <li class="nav-group-task"> <a href="../Classes/YMRefreshView.html">YMRefreshView</a> </li> <li class="nav-group-task"> <a href="../Classes/YMRegisterViewController.html">YMRegisterViewController</a> </li> <li class="nav-group-task"> <a href="../Classes/YMSearchRecordView.html">YMSearchRecordView</a> </li> <li class="nav-group-task"> <a href="../Classes/YMSearchResult.html">YMSearchResult</a> </li> <li class="nav-group-task"> <a href="../Classes/YMSearchViewController.html">YMSearchViewController</a> </li> <li class="nav-group-task"> <a href="../Classes/YMSeeAllController.html">YMSeeAllController</a> </li> <li class="nav-group-task"> <a href="../Classes/YMSeeAllTopicCell.html">YMSeeAllTopicCell</a> </li> <li class="nav-group-task"> <a href="../Classes/YMSetting.html">YMSetting</a> </li> <li class="nav-group-task"> <a href="../Classes/YMSettingCell.html">YMSettingCell</a> </li> <li class="nav-group-task"> <a href="../Classes/YMSettingViewController.html">YMSettingViewController</a> </li> <li class="nav-group-task"> <a href="../Classes/YMShareButtonView.html">YMShareButtonView</a> </li> <li class="nav-group-task"> <a href="../Classes/YMSortCell.html">YMSortCell</a> </li> <li class="nav-group-task"> <a href="../Classes/YMSortTableView.html">YMSortTableView</a> </li> <li class="nav-group-task"> <a href="../Classes/YMTMALLViewController.html">YMTMALLViewController</a> </li> <li class="nav-group-task"> <a href="../Classes/YMTabBarController.html">YMTabBarController</a> </li> <li class="nav-group-task"> <a href="../Classes/YMTopHeaderView.html">YMTopHeaderView</a> </li> <li class="nav-group-task"> <a href="../Classes/YMTopicViewController.html">YMTopicViewController</a> </li> <li class="nav-group-task"> <a href="../Classes/YMVerticalButton.html">YMVerticalButton</a> </li> </ul> </li> <li class="nav-group-name"> <a href="../Global Variables.html">Global Variables</a> <ul class="nav-group-tasks"> <li class="nav-group-task"> <a href="../Global Variables.html#/s:v7DanTang8BASE_URLSS">BASE_URL</a> </li> <li class="nav-group-task"> <a href="../Global Variables.html#/s:v7DanTang9RETURN_OKSi">RETURN_OK</a> </li> <li class="nav-group-task"> <a href="../Global Variables.html#/s:v7DanTang7SCREENHV12CoreGraphics7CGFloat">SCREENH</a> </li> <li class="nav-group-task"> <a href="../Global Variables.html#/s:v7DanTang7SCREENWV12CoreGraphics7CGFloat">SCREENW</a> </li> <li class="nav-group-task"> <a href="../Global Variables.html#/s:v7DanTang13YMFirstLaunchSS">YMFirstLaunch</a> </li> <li class="nav-group-task"> <a href="../Global Variables.html#/s:v7DanTang24categoryCollectionCellIDSS">categoryCollectionCellID</a> </li> <li class="nav-group-task"> <a href="../Global Variables.html#/s:v7DanTang16collectionCellIDSS">collectionCellID</a> </li> <li class="nav-group-task"> <a href="../Global Variables.html#/s:v7DanTang21collectionTableCellIDSS">collectionTableCellID</a> </li> <li class="nav-group-task"> <a href="../Global Variables.html#/s:v7DanTang13commentCellIDSS">commentCellID</a> </li> <li class="nav-group-task"> <a href="../Global Variables.html#/s:v7DanTang26detailCollectionViewCellIDSS">detailCollectionViewCellID</a> </li> <li class="nav-group-task"> <a href="../Global Variables.html#/s:v7DanTang10homeCellIDSS">homeCellID</a> </li> <li class="nav-group-task"> <a href="../Global Variables.html#/s:v7DanTang9isIPhone5Sb">isIPhone5</a> </li> <li class="nav-group-task"> <a href="../Global Variables.html#/s:v7DanTang9isIPhone6Sb">isIPhone6</a> </li> <li class="nav-group-task"> <a href="../Global Variables.html#/s:v7DanTang10isIPhone6PSb">isIPhone6P</a> </li> <li class="nav-group-task"> <a href="../Global Variables.html#/s:v7DanTang7isLoginSS">isLogin</a> </li> <li class="nav-group-task"> <a href="../Global Variables.html#/s:v7DanTang18kAnimationDurationSd">kAnimationDuration</a> </li> <li class="nav-group-task"> <a href="../Global Variables.html#/s:v7DanTang13kCornerRadiusV12CoreGraphics7CGFloat">kCornerRadius</a> </li> <li class="nav-group-task"> <a href="../Global Variables.html#/s:v7DanTang15kIndicatorViewHV12CoreGraphics7CGFloat">kIndicatorViewH</a> </li> <li class="nav-group-task"> <a href="../Global Variables.html#/s:v7DanTang7kMarginV12CoreGraphics7CGFloat">kMargin</a> </li> <li class="nav-group-task"> <a href="../Global Variables.html#/s:v7DanTang16kNewFeatureCountSi">kNewFeatureCount</a> </li> <li class="nav-group-task"> <a href="../Global Variables.html#/s:v7DanTang12kTitlesViewHV12CoreGraphics7CGFloat">kTitlesViewH</a> </li> <li class="nav-group-task"> <a href="../Global Variables.html#/s:v7DanTang12kTitlesViewYV12CoreGraphics7CGFloat">kTitlesViewY</a> </li> <li class="nav-group-task"> <a href="../Global Variables.html#/s:v7DanTang9kTopViewHV12CoreGraphics7CGFloat">kTopViewH</a> </li> <li class="nav-group-task"> <a href="../Global Variables.html#/s:v7DanTang24kYMMineHeaderImageHeightV12CoreGraphics7CGFloat">kYMMineHeaderImageHeight</a> </li> <li class="nav-group-task"> <a href="../Global Variables.html#/s:v7DanTang6kitemHV12CoreGraphics7CGFloat">kitemH</a> </li> <li class="nav-group-task"> <a href="../Global Variables.html#/s:v7DanTang6kitemWV12CoreGraphics7CGFloat">kitemW</a> </li> <li class="nav-group-task"> <a href="../Global Variables.html#/s:v7DanTang10klineWidthV12CoreGraphics7CGFloat">klineWidth</a> </li> <li class="nav-group-task"> <a href="../Global Variables.html#/s:v7DanTang13messageCellIDSS">messageCellID</a> </li> <li class="nav-group-task"> <a href="../Global Variables.html#/s:v7DanTang12newFeatureIDSS">newFeatureID</a> </li> <li class="nav-group-task"> <a href="../Global Variables.html#/s:v7DanTang22searchCollectionCellIDSS">searchCollectionCellID</a> </li> <li class="nav-group-task"> <a href="../Global Variables.html#/s:v7DanTang12seeAllcellIDSS">seeAllcellID</a> </li> <li class="nav-group-task"> <a href="../Global Variables.html#/s:v7DanTang19sortTableViewCellIDSS">sortTableViewCellID</a> </li> </ul> </li> <li class="nav-group-name"> <a href="../Enums.html">Enums</a> <ul class="nav-group-tasks"> <li class="nav-group-task"> <a href="../Enums/YMOtherLoginButtonType.html">YMOtherLoginButtonType</a> </li> <li class="nav-group-task"> <a href="../Enums/YMShareButtonType.html">YMShareButtonType</a> </li> <li class="nav-group-task"> <a href="../Enums/YMTopicType.html">YMTopicType</a> </li> </ul> </li> <li class="nav-group-name"> <a href="../Extensions.html">Extensions</a> <ul class="nav-group-tasks"> <li class="nav-group-task"> <a href="../Extensions/String.html">String</a> </li> <li class="nav-group-task"> <a href="../Extensions/UITableView.html">UITableView</a> </li> <li class="nav-group-task"> <a href="../Extensions/UIView.html">UIView</a> </li> </ul> </li> <li class="nav-group-name"> <a href="../Functions.html">Functions</a> <ul class="nav-group-tasks"> <li class="nav-group-task"> <a href="../Functions.html#/s:F7DanTang7YMColorFTV12CoreGraphics7CGFloat1gS1_1bS1_1aS1__CSo7UIColor">YMColor(_:g:b:a:)</a> </li> <li class="nav-group-task"> <a href="../Functions.html#/s:F7DanTang13YMGlobalColorFT_CSo7UIColor">YMGlobalColor()</a> </li> <li class="nav-group-task"> <a href="../Functions.html#/s:F7DanTang16YMGlobalRedColorFT_CSo7UIColor">YMGlobalRedColor()</a> </li> </ul> </li> <li class="nav-group-name"> <a href="../Protocols.html">Protocols</a> <ul class="nav-group-tasks"> <li class="nav-group-task"> <a href="../Protocols/YMCategoryBottomViewDelegate.html">YMCategoryBottomViewDelegate</a> </li> <li class="nav-group-task"> <a href="../Protocols/YMCollectionViewCellDelegate.html">YMCollectionViewCellDelegate</a> </li> <li class="nav-group-task"> <a href="../Protocols/YMDetailChoiceButtonViewDegegate.html">YMDetailChoiceButtonViewDegegate</a> </li> <li class="nav-group-task"> <a href="../Protocols/YMHomeCellDelegate.html">YMHomeCellDelegate</a> </li> <li class="nav-group-task"> <a href="../Protocols/YMProductDetailToolBarDelegate.html">YMProductDetailToolBarDelegate</a> </li> <li class="nav-group-task"> <a href="../Protocols/YMSortTableViewDelegate.html">YMSortTableViewDelegate</a> </li> <li class="nav-group-task"> <a href="../Protocols/YMTopHeaderViewDelegate.html">YMTopHeaderViewDelegate</a> </li> </ul> </li> </ul> </nav> <article class="main-content"> <section> <section class="section"> <h1>YMNewfeatureViewController</h1> <p>Undocumented</p> </section> <section class="section task-group-section"> <div class="task-group"> <ul> <li class="item"> <div> <code> <a name="/s:vC7DanTang26YMNewfeatureViewControllerP33_4AFD823B18308A4A4614B6C4D5FA0EAF6layoutCSo26UICollectionViewFlowLayout"></a> <a name="//apple_ref/swift/Property/layout" class="dashAnchor"></a> <a class="token" href="#/s:vC7DanTang26YMNewfeatureViewControllerP33_4AFD823B18308A4A4614B6C4D5FA0EAF6layoutCSo26UICollectionViewFlowLayout">layout</a> </code> </div> <div class="height-container"> <div class="pointer-container"></div> <section class="section"> <div class="pointer"></div> <div class="abstract"> <p>布局对象</p> </div> <div class="declaration"> <h4>Declaration</h4> <div class="language"> <p class="aside-title">Swift</p> <pre class="highlight"><code><span class="kd">private</span> <span class="k">var</span> <span class="nv">layout</span><span class="p">:</span> <span class="kt">UICollectionViewFlowLayout</span> <span class="o">=</span> <span class="kt">YMNewfeatureLayout</span><span class="p">()</span></code></pre> </div> </div> </section> </div> </li> <li class="item"> <div> <code> <a name="/s:FC7DanTang26YMNewfeatureViewControllercFT_S0_"></a> <a name="//apple_ref/swift/Method/init()" class="dashAnchor"></a> <a class="token" href="#/s:FC7DanTang26YMNewfeatureViewControllercFT_S0_">init()</a> </code> </div> <div class="height-container"> <div class="pointer-container"></div> <section class="section"> <div class="pointer"></div> <div class="abstract"> <p>Undocumented</p> </div> </section> </div> </li> <li class="item"> <div> <code> <a name="/s:FC7DanTang26YMNewfeatureViewControllercFT5coderCSo7NSCoder_GSqS0__"></a> <a name="//apple_ref/swift/Method/init(coder:)" class="dashAnchor"></a> <a class="token" href="#/s:FC7DanTang26YMNewfeatureViewControllercFT5coderCSo7NSCoder_GSqS0__">init(coder:)</a> </code> </div> <div class="height-container"> <div class="pointer-container"></div> <section class="section"> <div class="pointer"></div> <div class="abstract"> <p>Undocumented</p> </div> </section> </div> </li> <li class="item"> <div> <code> <a name="/s:FC7DanTang26YMNewfeatureViewController11viewDidLoadFT_T_"></a> <a name="//apple_ref/swift/Method/viewDidLoad()" class="dashAnchor"></a> <a class="token" href="#/s:FC7DanTang26YMNewfeatureViewController11viewDidLoadFT_T_">viewDidLoad()</a> </code> </div> <div class="height-container"> <div class="pointer-container"></div> <section class="section"> <div class="pointer"></div> <div class="abstract"> <p>Undocumented</p> </div> </section> </div> </li> </ul> </div> <div class="task-group"> <ul> <li class="item"> <div> <code> <a name="/s:FC7DanTang26YMNewfeatureViewController14collectionViewFTCSo16UICollectionView22numberOfItemsInSectionSi_Si"></a> <a name="//apple_ref/swift/Method/collectionView(_:numberOfItemsInSection:)" class="dashAnchor"></a> <a class="token" href="#/s:FC7DanTang26YMNewfeatureViewController14collectionViewFTCSo16UICollectionView22numberOfItemsInSectionSi_Si">collectionView(_:numberOfItemsInSection:)</a> </code> </div> <div class="height-container"> <div class="pointer-container"></div> <section class="section"> <div class="pointer"></div> <div class="abstract"> <p>Undocumented</p> </div> </section> </div> </li> <li class="item"> <div> <code> <a name="/s:FC7DanTang26YMNewfeatureViewController14collectionViewFTCSo16UICollectionView22cellForItemAtIndexPathCSo11NSIndexPath_CSo20UICollectionViewCell"></a> <a name="//apple_ref/swift/Method/collectionView(_:cellForItemAtIndexPath:)" class="dashAnchor"></a> <a class="token" href="#/s:FC7DanTang26YMNewfeatureViewController14collectionViewFTCSo16UICollectionView22cellForItemAtIndexPathCSo11NSIndexPath_CSo20UICollectionViewCell">collectionView(_:cellForItemAtIndexPath:)</a> </code> </div> <div class="height-container"> <div class="pointer-container"></div> <section class="section"> <div class="pointer"></div> <div class="abstract"> <p>Undocumented</p> </div> </section> </div> </li> <li class="item"> <div> <code> <a name="/s:FC7DanTang26YMNewfeatureViewController14collectionViewFTCSo16UICollectionView20didEndDisplayingCellCSo20UICollectionViewCell18forItemAtIndexPathCSo11NSIndexPath_T_"></a> <a name="//apple_ref/swift/Method/collectionView(_:didEndDisplayingCell:forItemAtIndexPath:)" class="dashAnchor"></a> <a class="token" href="#/s:FC7DanTang26YMNewfeatureViewController14collectionViewFTCSo16UICollectionView20didEndDisplayingCellCSo20UICollectionViewCell18forItemAtIndexPathCSo11NSIndexPath_T_">collectionView(_:didEndDisplayingCell:forItemAtIndexPath:)</a> </code> </div> <div class="height-container"> <div class="pointer-container"></div> <section class="section"> <div class="pointer"></div> <div class="abstract"> <p>Undocumented</p> </div> </section> </div> </li> </ul> </div> </section> </section> <section id="footer"> <p>&copy; 2016 <a class="link" href="" target="_blank" rel="external"></a>. All rights reserved. (Last updated: 2016-07-27)</p> <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.6.2</a>, a <a class="link" href="http://realm.io" target="_blank" rel="external">Realm</a> project.</p> </section> </article> </div> </body> </div> </html>
214,395
Github
[ 14277, 7229, 2715, 568, 18, 15, 17, 3, 23983, 187, 30952, 32735, 14271, 35283, 19479, 605, 56, 20, 36, 605, 41375, 1594, 15597, 337, 15, 17, 659, 1467, 605, 1400, 3, 346, 2413, 1358, 2700, 15, 88, 20, 15, 2061, 16, 3125, 16, 35217, 18, 16, 41375, 16, 35217, 18, 14, 30862, 15, 48328, 1138, 187, 29, 2974, 15664, 568, 2413, 1358, 2700, 15, 88, 20, 15, 2061, 16, 9595, 16, 35217, 1138, 187, 29, 2522, 31, 187, 29, 5564, 31, 46914, 64, 1267, 8100, 64, 10327, 870, 5564, 31, 187, 29, 13518, 3944, 14, 8275, 568, 6071, 14, 881, 3, 2600, 568, 1156, 16, 2974, 28, 29308, 30, 17880, 14, 25, 3, 4725, 187, 29, 4492, 3585, 568, 12710, 3, 3860, 568, 5719, 936, 5136, 4725, 187, 870, 2522, 31, 187, 187, 29, 2915, 31, 2756, 187, 29, 335, 2654, 568, 4663, 1138, 187, 50276, 29, 965, 2730, 66, 3860, 10817, 9536, 1138, 9536, 870, 66, 3073, 965, 31, 187, 50276, 29, 965, 2730, 66, 3860, 10817, 14305, 47, 34659, 1830, 1138, 14305, 47, 34659, 1830, 870, 66, 3073, 965, 31, 187, 50276, 29, 965, 2730, 66, 3860, 10817, 19578, 33480, 1138, 19578, 33480, 870, 66, 3073, 965, 31, 187, 50276, 29, 965, 2730, 66, 3860, 10817, 24963, 1138, 24963, 870, 66, 3073, 965, 31, 187, 50276, 29, 965, 2730, 66, 3860, 10817, 43501, 14, 10403, 16768, 1138, 43501, 20436, 870, 66, 3073, 965, 31, 187, 50276, 29, 965, 2730, 66, 3860, 10817, 41, 6905, 15258, 1138, 41, 6905, 15258, 870, 66, 3073, 965, 31, 187, 50276, 29, 965, 2730, 66, 3860, 10817, 27004, 26051, 1138, 27004, 26051, 870, 66, 3073, 965, 31, 187, 870, 335, 31, 187, 187, 29, 73, 18, 2654, 568, 9536, 1138, 9536, 870, 73, 18, 31, 187, 187, 29, 81, 31, 46914, 64, 1267, 8100, 64, 10327, 13, 34428, 7570, 64, 1267, 8100, 64, 10327, 64, 31700, 13, 34428, 7570, 64, 22395, 28408, 64, 1267, 8100, 64, 10327, 13, 34428, 7570, 64, 22395, 28408, 64, 1267, 8100, 64, 10327, 64, 31700, 13, 1629, 64, 10560, 64, 6370, 13, 1629, 64, 10560, 64, 2877, 13, 1629, 64, 10560, 64, 1826, 13, 1629, 64, 10560, 64, 1826, 64, 8629, 13, 1629, 64, 10560, 64, 373, 4003, 13, 1629, 64, 10560, 64, 4924, 13, 1629, 64, 10560, 64, 10528, 13, 1629, 64, 10560, 64, 16435, 13, 1629, 64, 10560, 64, 16435, 64, 4773, 13, 1629, 64, 10560, 64, 11340, 13, 1629, 64, 10560, 64, 328, 11551, 13, 1629, 64, 10560, 64, 9576, 13, 1629, 64, 10560, 64, 11551, 13, 1629, 64, 10560, 64, 9576, 64, 4924, 13, 1629, 64, 10560, 64, 14447, 13, 1629, 64, 10560, 64, 1178, 13, 1629, 64, 10560, 64, 8606, 13, 1629, 64, 10560, 64, 8606, 64, 911, 13, 1629, 64, 10560, 64, 15227, 13, 1629, 64, 10560, 64, 261, 64, 84, 7551, 13, 1629, 64, 10560, 64, 34856, 13, 1629, 64, 10560, 64, 22412, 64, 12557, 13, 1629, 64, 10560, 64, 1178, 64, 21630, 64, 4997, 13, 1629, 64, 10560, 64, 1826, 64, 373, 4003, 428, 8031, 8781, 870, 81, 31, 187, 187, 29, 73, 18, 2654, 568, 14305, 47, 34659, 1830, 1138, 14305, 47, 34659, 1830, 870, 73, 18, 31, 187, 187, 29, 3456, 2730, 3211, 31, 654, 2551, 966, 568, 13982, 1138, 4, 3709, 708, 5792, 28, 39999, 16, 84, 2320, 383, 471, 15, 73, 7, 7332, 13143, 2551, 31, 19668, 654, 2551, 966, 568, 18645, 1138, 1267, 8100, 64, 10327, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 10560, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 17266, 2551, 31, 187, 654, 2551, 966, 568, 18645, 1138, 46914, 64, 1267, 8100, 64, 10327, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 10560, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 17266, 2551, 31, 187, 654, 2551, 966, 568, 18645, 1138, 46914, 64, 1267, 8100, 64, 10327, 64, 31700, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 10560, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 17266, 2551, 31, 187, 654, 2551, 966, 568, 18645, 1138, 46914, 64, 22395, 28408, 64, 1267, 8100, 64, 10327, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 17164, 30915, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 13, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 10560, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 17266, 2551, 31, 187, 654, 2551, 966, 568, 18645, 1138, 46914, 64, 22395, 28408, 64, 1267, 8100, 64, 10327, 64, 31700, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 17164, 30915, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 13, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 10560, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 17266, 2551, 31, 19668, 654, 2551, 966, 568, 18645, 1138, 17743, 870, 2551, 31, 654, 2551, 966, 568, 23295, 1138, 565, 870, 2551, 31, 654, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 11, 3319, 64, 10560, 64, 3118, 4997, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 2769, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 3474, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 10560, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 11, 3474, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 11, 66, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 13, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 3474, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 10560, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 11, 3474, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 11, 67, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 558, 870, 2551, 31, 187, 654, 2551, 966, 568, 18645, 1138, 17743, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 10560, 870, 2551, 31, 654, 2551, 966, 568, 4402, 1138, 11, 870, 2551, 31, 654, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 11, 3319, 64, 10560, 64, 12557, 4997, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 2769, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 3474, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 10560, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 11, 66, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 558, 870, 2551, 31, 187, 654, 2551, 966, 568, 18645, 1138, 17743, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 4353, 870, 2551, 31, 654, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 11, 3319, 64, 10560, 64, 4924, 4997, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 2769, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 10560, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 11, 66, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 558, 870, 2551, 31, 19668, 654, 2551, 966, 568, 23295, 1138, 565, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 3319, 64, 10560, 64, 6370, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 3474, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 1267, 8100, 64, 10327, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 10560, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 17266, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 11, 3319, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 558, 870, 2551, 31, 187, 654, 2551, 966, 568, 18645, 1138, 10560, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 11, 3319, 64, 10560, 64, 2877, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 3474, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 1267, 8100, 64, 10327, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 10560, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 17266, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 11, 3319, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 13, 870, 2551, 31, 654, 2551, 966, 568, 23295, 1138, 565, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 16159, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 558, 870, 2551, 31, 187, 654, 2551, 966, 568, 18645, 1138, 1267, 8100, 64, 10327, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 10560, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 17266, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 11, 3319, 64, 10560, 64, 1826, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 3319, 64, 10560, 64, 3118, 4997, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 23813, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 558, 870, 2551, 31, 187, 654, 2551, 966, 568, 18645, 1138, 1267, 8100, 64, 10327, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 10560, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 17266, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 11, 3319, 64, 10560, 64, 1826, 64, 8629, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 4353, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 558, 870, 2551, 31, 187, 654, 2551, 966, 568, 23295, 1138, 565, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 3319, 64, 10560, 64, 373, 4003, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 1267, 8100, 64, 10327, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 10560, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 17266, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 11, 3319, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 13, 870, 2551, 31, 654, 2551, 966, 568, 23295, 1138, 565, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 79, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 558, 870, 2551, 31, 187, 654, 2551, 966, 568, 18645, 1138, 4353, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 3319, 64, 10560, 64, 4924, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 3474, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 1267, 8100, 64, 10327, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 10560, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 17266, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 11, 3319, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 558, 870, 2551, 31, 187, 654, 2551, 966, 568, 18645, 1138, 4353, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 3319, 64, 10560, 64, 10528, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 3474, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 1267, 8100, 64, 10327, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 10560, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 17266, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 11, 3319, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 558, 870, 2551, 31, 187, 654, 2551, 966, 568, 18645, 1138, 10560, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 11, 3319, 64, 10560, 64, 16435, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 1267, 8100, 64, 10327, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 10560, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 17266, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 11, 3319, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 13, 870, 2551, 31, 654, 2551, 966, 568, 23295, 1138, 565, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 74, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 558, 870, 2551, 31, 187, 654, 2551, 966, 568, 18645, 1138, 10560, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 11, 3319, 64, 10560, 64, 16435, 64, 4773, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 1267, 8100, 64, 10327, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 10560, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 17266, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 11, 3319, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 13, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 10560, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 11, 4773, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 558, 870, 2551, 31, 187, 654, 2551, 966, 568, 23295, 1138, 565, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 3319, 64, 10560, 64, 11340, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 1267, 8100, 64, 10327, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 10560, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 17266, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 11, 3319, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 13, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 3474, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 10560, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 11, 4773, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 558, 870, 2551, 31, 187, 654, 2551, 966, 568, 23295, 1138, 565, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 3319, 64, 10560, 64, 328, 11551, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 1267, 8100, 64, 10327, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 10560, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 17266, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 11, 3319, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 13, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 3474, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 10560, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 11, 4773, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 558, 870, 2551, 31, 187, 654, 2551, 966, 568, 18645, 1138, 10560, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 11, 3319, 64, 10560, 64, 9576, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 1267, 8100, 64, 10327, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 10560, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 17266, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 11, 3319, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 558, 870, 2551, 31, 187, 654, 2551, 966, 568, 18645, 1138, 10560, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 11, 3319, 64, 10560, 64, 11551, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 1267, 8100, 64, 10327, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 10560, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 17266, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 11, 3319, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 558, 870, 2551, 31, 187, 654, 2551, 966, 568, 18645, 1138, 4353, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 3319, 64, 10560, 64, 9576, 64, 4924, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 1267, 8100, 64, 10327, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 10560, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 17266, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 11, 3319, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 13, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 3319, 64, 10560, 64, 4924, 4997, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 4924, 4997, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 558, 870, 2551, 31, 187, 654, 2551, 966, 568, 23295, 1138, 565, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 3319, 64, 10560, 64, 14447, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 1267, 8100, 64, 10327, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 10560, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 17266, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 11, 3319, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 13, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 10560, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 11, 4773, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 13, 870, 2551, 31, 654, 2551, 966, 568, 23295, 1138, 565, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 16159, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 558, 870, 2551, 31, 187, 654, 2551, 966, 568, 18645, 1138, 10560, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 11, 3319, 64, 10560, 64, 1178, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 1267, 8100, 64, 10327, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 10560, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 17266, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 11, 3319, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 13, 870, 2551, 31, 654, 2551, 966, 568, 23295, 1138, 565, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 16159, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 13, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 3474, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 10560, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 11, 4773, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 558, 870, 2551, 31, 187, 654, 2551, 966, 568, 23295, 1138, 565, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 3319, 64, 10560, 64, 8606, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 1267, 8100, 64, 10327, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 10560, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 17266, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 11, 3319, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 13, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 10560, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 11, 4773, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 558, 870, 2551, 31, 187, 654, 2551, 966, 568, 23295, 1138, 565, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 3319, 64, 10560, 64, 8606, 64, 911, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 1267, 8100, 64, 10327, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 10560, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 17266, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 11, 3319, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 13, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 10560, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 11, 4773, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 558, 870, 2551, 31, 187, 654, 2551, 966, 568, 18645, 1138, 4353, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 3319, 64, 10560, 64, 15227, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 3474, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 1267, 8100, 64, 10327, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 10560, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 17266, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 11, 3319, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 558, 870, 2551, 31, 187, 654, 2551, 966, 568, 23295, 1138, 565, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 3319, 64, 10560, 64, 261, 64, 84, 7551, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 3474, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 1267, 8100, 64, 10327, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 10560, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 17266, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 11, 3319, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 558, 870, 2551, 31, 187, 654, 2551, 966, 568, 18645, 1138, 1267, 8100, 64, 10327, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 10560, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 17266, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 11, 3319, 64, 10560, 64, 34856, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 3474, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 1267, 8100, 64, 10327, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 10560, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 17266, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 11, 3319, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 558, 870, 2551, 31, 187, 654, 2551, 966, 568, 18645, 1138, 1267, 8100, 64, 10327, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 10560, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 17266, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 11, 3319, 64, 10560, 64, 22412, 64, 12557, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 3474, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 1267, 8100, 64, 10327, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 10560, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 17266, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 11, 3319, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 13, 870, 2551, 31, 187, 50254, 50267, 29, 2551, 966, 568, 18645, 1138, 3319, 64, 10560, 64, 12557, 4997, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 12557, 4997, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 13, 870, 2551, 31, 187, 50254, 50267, 29, 2551, 966, 568, 18645, 1138, 3319, 64, 10560, 64, 4924, 4997, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 4924, 4997, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 558, 870, 2551, 31, 187, 654, 2551, 966, 568, 18645, 1138, 3319, 64, 10560, 64, 3118, 4997, 870, 2551, 31, 654, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 11, 3319, 64, 10560, 64, 1178, 64, 21630, 64, 4997, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 1267, 8100, 64, 10327, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 10560, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 17266, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 11, 3319, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 13, 870, 2551, 31, 187, 50254, 50261, 29, 2551, 966, 568, 18645, 1138, 3319, 64, 10560, 64, 3118, 4997, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 23813, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 4027, 870, 2551, 31, 187, 654, 2551, 966, 568, 18645, 1138, 1267, 8100, 64, 10327, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 10560, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 17266, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 11, 3319, 64, 10560, 64, 1826, 64, 373, 4003, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 3319, 64, 10560, 64, 3118, 4997, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 23813, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 13, 870, 2551, 31, 654, 2551, 966, 568, 23295, 1138, 565, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 79, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 558, 870, 2551, 31, 187, 870, 3211, 3073, 3456, 31, 187, 187, 29, 73, 18, 2654, 568, 19578, 33480, 1138, 19578, 33480, 870, 73, 18, 31, 187, 187, 29, 81, 31, 43432, 476, 2794, 285, 897, 616, 1211, 34577, 407, 15606, 667, 273, 253, 42280, 2529, 2708, 275, 247, 10478, 1873, 15, 2053, 42280, 4853, 3510, 8407, 13866, 3470, 326, 16384, 1475, 253, 11839, 654, 67, 31, 28652, 21156, 64, 3319, 64, 870, 67, 31, 8990, 15, 496, 253, 5740, 1060, 13, 654, 74, 31, 10560, 870, 74, 31, 310, 908, 347, 247, 30300, 323, 667, 273, 253, 7489, 21156, 2856, 255, 3170, 265, 13, 824, 347, 654, 74, 31, 57, 17013, 870, 74, 31, 8239, 81, 31, 187, 187, 29, 81, 31, 1267, 8100, 64, 10327, 1082, 6548, 253, 1416, 323, 247, 8031, 273, 253, 7616, 654, 67, 31, 10560, 870, 67, 13208, 34428, 7570, 64, 1267, 8100, 64, 10327, 1082, 10513, 873, 273, 3470, 323, 247, 8031, 273, 654, 67, 31, 10560, 870, 67, 13208, 831, 588, 1599, 326, 1511, 654, 67, 31, 10560, 870, 67, 31, 310, 7141, 275, 1016, 8031, 13, 253, 1511, 310, 23378, 407, 3915, 8100, 64, 10327, 9, 10560, 10, 285, 1016, 1159, 1416, 9513, 342, 654, 74, 31, 3319, 64, 10560, 64, 870, 74, 13208, 1198, 1650, 19282, 81, 31, 187, 187, 29, 3456, 2730, 3211, 31, 654, 2551, 966, 568, 18645, 1138, 10560, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 11, 3319, 64, 10560, 64, 2877, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 1267, 8100, 64, 10327, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 10560, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 17266, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 11, 3319, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 13, 870, 2551, 31, 654, 2551, 966, 568, 23295, 1138, 565, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 16159, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 558, 870, 2551, 31, 187, 870, 3211, 3073, 3456, 31, 187, 187, 29, 81, 31, 46914, 64, 1267, 8100, 64, 10327, 64, 31700, 1082, 310, 8931, 281, 34428, 7570, 64, 1267, 8100, 64, 10327, 1082, 3707, 1016, 3284, 310, 3638, 15, 1198, 1650, 19282, 81, 31, 187, 187, 29, 3456, 2730, 3211, 31, 654, 2551, 966, 568, 18645, 1138, 3474, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 10560, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 11, 3319, 64, 10560, 64, 2877, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 1267, 8100, 64, 10327, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 10560, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 17266, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 11, 3319, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 13, 870, 2551, 31, 654, 2551, 966, 568, 23295, 1138, 565, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 16159, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 558, 870, 2551, 31, 187, 870, 3211, 3073, 3456, 31, 187, 187, 29, 81, 31, 46914, 64, 22395, 28408, 64, 1267, 8100, 64, 10327, 1082, 13067, 247, 8031, 273, 654, 67, 31, 10560, 870, 67, 31, 533, 1016, 1159, 4648, 654, 67, 31, 32652, 9536, 870, 67, 31, 275, 253, 1159, 1416, 15, 1198, 1650, 19282, 81, 31, 187, 187, 29, 3456, 2730, 3211, 31, 654, 2551, 966, 568, 18645, 1138, 10560, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 11, 3319, 64, 32652, 9536, 64, 2877, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 1267, 8100, 64, 10327, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 10560, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 17266, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 11, 3319, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 13, 870, 2551, 31, 654, 2551, 966, 568, 23295, 1138, 565, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 16159, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 558, 870, 2551, 31, 187, 870, 3211, 3073, 3456, 31, 187, 187, 29, 81, 31, 46914, 64, 22395, 28408, 64, 1267, 8100, 64, 10327, 64, 31700, 1082, 310, 2074, 3707, 326, 1016, 3284, 310, 3638, 19282, 81, 31, 187, 187, 29, 3456, 2730, 3211, 31, 654, 2551, 966, 568, 18645, 1138, 3474, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 10560, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 11, 3319, 64, 32652, 9536, 64, 2877, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 1267, 8100, 64, 10327, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 10560, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 17266, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 11, 3319, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 13, 870, 2551, 31, 654, 2551, 966, 568, 23295, 1138, 565, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 16159, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 558, 870, 2551, 31, 187, 870, 3211, 3073, 3456, 31, 187, 187, 29, 81, 31, 3319, 64, 10560, 64, 6370, 1082, 6548, 253, 1180, 273, 3603, 275, 654, 67, 31, 3319, 870, 67, 31, 390, 428, 18, 604, 654, 67, 31, 3319, 870, 67, 31, 310, 654, 67, 31, 15522, 870, 67, 31, 8239, 81, 31, 187, 187, 29, 81, 31, 3319, 64, 10560, 64, 2877, 1082, 6548, 3284, 654, 67, 31, 16159, 870, 67, 31, 275, 654, 67, 31, 3319, 870, 67, 9983, 835, 654, 67, 31, 16159, 870, 67, 31, 7866, 387, 5058, 15, 1310, 654, 67, 31, 16159, 870, 67, 31, 310, 562, 273, 2491, 840, 654, 67, 31, 15522, 870, 67, 31, 310, 4895, 8239, 81, 31, 187, 187, 29, 81, 31, 3319, 64, 10560, 64, 1826, 1082, 9771, 684, 247, 747, 6325, 8031, 970, 5301, 1159, 654, 67, 31, 23813, 870, 67, 13208, 1310, 654, 67, 31, 23813, 870, 67, 31, 310, 654, 67, 31, 15522, 870, 67, 31, 840, 642, 5301, 1159, 310, 908, 15, 831, 1159, 310, 6425, 281, 1629, 64, 10560, 64, 1826, 64, 373, 4003, 9, 23813, 13, 470, 481, 870, 81, 31, 187, 187, 29, 81, 31, 3319, 64, 10560, 64, 1826, 64, 8629, 1082, 9771, 684, 247, 747, 6325, 8031, 342, 642, 5301, 1159, 15, 831, 1159, 310, 6425, 281, 1629, 64, 10560, 64, 1826, 64, 373, 4003, 9, 15522, 13, 470, 481, 870, 81, 31, 187, 187, 29, 81, 31, 3319, 64, 10560, 64, 373, 4003, 1082, 9771, 684, 3081, 3541, 275, 253, 654, 67, 31, 3319, 870, 67, 31, 2605, 824, 326, 253, 1735, 654, 67, 31, 79, 870, 67, 31, 5841, 281, 1629, 64, 10560, 64, 14447, 5715, 1629, 64, 10560, 64, 11340, 1082, 390, 1629, 64, 10560, 64, 328, 11551, 1082, 588, 417, 1891, 390, 2847, 3541, 281, 320, 18564, 390, 294, 10835, 456, 15, 1310, 654, 67, 31, 79, 870, 67, 31, 310, 5058, 13, 667, 6714, 2317, 18564, 275, 253, 654, 67, 31, 3319, 870, 67, 31, 2605, 310, 21517, 15, 1623, 2228, 654, 67, 31, 3319, 870, 67, 31, 310, 19965, 8239, 81, 31, 187, 187, 29, 81, 31, 3319, 64, 10560, 64, 1826, 64, 373, 4003, 1082, 9771, 684, 247, 747, 8031, 15, 380, 747, 8031, 588, 452, 3081, 3541, 18564, 281, 2186, 654, 67, 31, 79, 870, 67, 31, 3603, 604, 654, 67, 31, 79, 870, 67, 31, 310, 2762, 15, 380, 1735, 654, 67, 31, 79, 870, 67, 31, 5841, 281, 1629, 64, 10560, 64, 14447, 5715, 1629, 64, 10560, 64, 11340, 1082, 390, 1629, 64, 10560, 64, 328, 11551, 1082, 588, 417, 1891, 390, 2847, 3541, 281, 320, 18564, 390, 294, 10835, 456, 15, 1310, 654, 67, 31, 79, 870, 67, 31, 310, 5058, 390, 1679, 685, 5058, 13, 642, 3541, 310, 18564, 15, 1629, 64, 10560, 64, 1826, 64, 373, 4003, 1082, 671, 5239, 253, 5301, 1159, 654, 67, 31, 23813, 870, 67, 31, 281, 253, 9841, 3562, 8031, 15, 1310, 654, 67, 31, 23813, 870, 67, 31, 310, 654, 67, 31, 15522, 870, 67, 31, 840, 642, 5301, 1159, 310, 908, 8239, 81, 31, 187, 187, 29, 81, 31, 3319, 64, 10560, 64, 1178, 64, 21630, 64, 4997, 1082, 5239, 253, 5301, 1159, 273, 654, 67, 31, 3319, 870, 67, 31, 281, 654, 67, 31, 23813, 870, 67, 13208, 380, 2045, 5301, 1159, 310, 4895, 390, 654, 67, 31, 15522, 870, 67, 31, 604, 627, 369, 642, 2045, 5301, 1159, 8239, 81, 31, 187, 187, 29, 81, 31, 3319, 64, 10560, 64, 4924, 1082, 4107, 265, 598, 253, 654, 67, 31, 3319, 870, 67, 31, 2605, 15, 733, 1057, 654, 67, 31, 1439, 870, 67, 31, 1959, 598, 667, 3603, 273, 654, 67, 31, 3319, 870, 67, 13208, 2732, 436, 1067, 654, 67, 31, 3319, 870, 67, 31, 310, 642, 3356, 3588, 8239, 81, 31, 187, 187, 29, 81, 31, 3319, 64, 10560, 64, 10528, 1082, 5239, 253, 1180, 273, 3603, 275, 654, 67, 31, 3319, 870, 67, 31, 281, 5058, 15, 733, 1057, 417, 1959, 654, 67, 31, 3319, 870, 67, 31, 594, 846, 436, 1067, 654, 67, 31, 3319, 870, 67, 31, 310, 1335, 3588, 8239, 81, 31, 187, 187, 29, 81, 31, 3319, 64, 10560, 64, 9576, 64, 4924, 1082, 4107, 265, 598, 512, 3603, 273, 654, 67, 31, 3319, 870, 67, 31, 285, 654, 67, 31, 3319, 870, 67, 31, 3139, 15, 380, 1959, 1159, 1959, 4997, 1082, 310, 1925, 327, 1016, 3284, 281, 1959, 352, 8239, 81, 31, 187, 187, 29, 81, 31, 3319, 64, 10560, 64, 16435, 1082, 8812, 265, 3284, 654, 67, 31, 74, 870, 67, 31, 432, 654, 67, 31, 3319, 870, 67, 13208, 733, 6548, 253, 16737, 3284, 390, 654, 67, 31, 15522, 870, 67, 31, 604, 654, 67, 31, 74, 870, 67, 31, 310, 562, 273, 2491, 8239, 81, 31, 187, 187, 29, 81, 31, 3319, 64, 10560, 64, 16435, 64, 4773, 1082, 8812, 265, 3284, 11038, 654, 67, 31, 4773, 870, 67, 31, 432, 654, 67, 31, 3319, 870, 67, 13208, 733, 6548, 253, 16737, 3284, 390, 654, 67, 31, 15522, 870, 67, 31, 604, 642, 3284, 11038, 654, 67, 31, 4773, 870, 67, 31, 369, 1119, 8239, 81, 31, 187, 187, 29, 81, 31, 3319, 64, 10560, 64, 14447, 1082, 37034, 654, 67, 31, 4773, 870, 67, 31, 715, 654, 67, 31, 3319, 870, 67, 31, 387, 1899, 654, 67, 31, 16159, 870, 67, 13208, 6101, 5368, 3603, 387, 390, 846, 654, 67, 31, 16159, 870, 67, 31, 403, 4395, 1066, 4515, 15, 1310, 654, 67, 31, 16159, 870, 67, 31, 310, 562, 273, 2491, 253, 747, 3284, 310, 42873, 281, 654, 67, 31, 3319, 870, 67, 13208, 1629, 64, 10560, 64, 14447, 1082, 2057, 6548, 253, 1180, 273, 3603, 275, 654, 67, 31, 3319, 870, 67, 31, 846, 253, 747, 3284, 310, 13400, 390, 5058, 604, 271, 2228, 313, 10328, 347, 3541, 17621, 4433, 10, 5866, 8239, 81, 31, 187, 187, 29, 81, 31, 3319, 64, 10560, 64, 11340, 1082, 622, 1727, 654, 67, 31, 4773, 870, 67, 31, 281, 654, 67, 31, 3319, 870, 67, 31, 352, 310, 6425, 281, 19282, 81, 31, 187, 187, 29, 3456, 2730, 3211, 31, 654, 2551, 966, 568, 18645, 1138, 3319, 64, 10560, 64, 14447, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 3319, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 13, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 4773, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 13, 870, 2551, 31, 654, 2551, 966, 568, 4402, 1138, 14, 870, 2551, 2730, 2551, 966, 568, 9133, 1138, 18, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 558, 870, 2551, 31, 187, 870, 3211, 3073, 3456, 31, 187, 187, 29, 81, 31, 3319, 64, 10560, 64, 328, 11551, 1082, 37034, 654, 67, 31, 4773, 870, 67, 31, 387, 253, 1265, 273, 654, 67, 31, 3319, 870, 67, 31, 352, 310, 6425, 281, 19282, 81, 31, 187, 187, 29, 3456, 2730, 3211, 31, 654, 2551, 966, 568, 18645, 1138, 3319, 64, 10560, 64, 14447, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 9, 870, 2551, 2730, 2551, 966, 568, 18645, 1138, 3319, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 13, 870, 2551, 31, 654, 2551, 966, 568, 18645, 1138, 4773, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 13, 870, 2551, 31, 654, 2551, 966, 568, 9133, 1138, 17, 870, 2551, 2730, 2551, 966, 568, 4402, 1138, 558, 870, 2551, 31, 187, 870, 3211, 3073, 3456, 31, 187, 187, 29, 81, 31, 3319, 64, 10560, 64, 9576, 1082, 6548, 285, 26586, 253, 1390, 3284, 432, 654, 67, 31, 3319, 870, 67, 31, 8239, 81, 31, 187, 187, 29, 81, 31, 3319, 64, 10560, 64, 11551, 1082, 6548, 285, 26586, 253, 806, 3284, 432, 654, 67, 31, 3319, 870, 67, 31, 8239, 81, 31, 187, 187, 29, 81, 31, 3319, 64, 10560, 64, 1178, 1082, 5239, 3284, 654, 67, 31, 16159, 870, 67, 31, 273, 654, 67, 31, 3319, 870, 67, 31, 281, 654, 67, 31, 4773, 870, 67, 31, 15706, 253, 1655, 3284, 15, 380, 747, 3284, 1318, 310, 4895, 390, 654, 67, 31, 15522, 870, 67, 31, 604, 271, 2228, 5866, 27, 436, 588, 760, 5108, 604, 654, 67, 31, 3319, 870, 67, 31, 310, 654, 67, 31, 15522, 870, 67, 31, 390, 654, 67, 31, 16159, 870, 67, 31, 310, 562, 273, 2491, 8239, 81, 31, 187, 187, 29, 81, 31, 3319, 64, 10560, 64, 8606, 1082, 17891, 654, 67, 31, 3319, 870, 67, 31, 323, 253, 3284, 654, 67, 31, 4773, 870, 67, 13208, 496, 253, 1083, 835, 642, 5301, 1159, 556, 644, 7616, 13, 253, 1159, 17923, 247, 4872, 3186, 323, 247, 12219, 4503, 281, 654, 67, 31, 4773, 870, 67, 13208, 380, 3605, 273, 253, 806, 11038, 3284, 310, 4895, 390, 654, 67, 34616, 18, 870, 67, 31, 604, 627, 310, 642, 3761, 15, 496, 253, 1083, 835, 247, 5301, 1159, 556, 644, 7616, 13, 654, 67, 31, 3319, 870, 67, 31, 310, 20045, 840, 1629, 64, 10560, 64, 8606, 1082, 6548, 253, 3605, 273, 247, 11038, 3284, 390, 654, 67, 34616, 18, 870, 67, 31, 604, 627, 310, 642, 3761, 15, 5838, 326, 13, 275, 436, 1083, 13, 253, 11038, 3284, 4895, 310, 417, 16293, 281, 320, 253, 806, 28, 253, 5301, 1159, 588, 3798, 7277, 253, 2193, 8042, 281, 2581, 685, 253, 29476, 3746, 285, 253, 1340, 273, 3603, 275, 654, 67, 31, 3319, 870, 67, 31, 812, 1818, 8239, 81, 31, 187, 187, 29, 81, 31, 3319, 64, 10560, 64, 8606, 64, 911, 1082, 17209, 751, 1629, 64, 10560, 64, 8606, 1082, 3707, 672, 247, 5301, 1159, 556, 644, 7616, 285, 642, 11038, 3284, 310, 1119, 15, 7820, 273, 10884, 654, 67, 34616, 18, 870, 67, 9983, 1629, 64, 10560, 64, 8606, 64, 911, 1082, 6548, 253, 3605, 273, 253, 3284, 2057, 1078, 390, 846, 253, 4328, 835, 654, 67, 31, 4773, 870, 67, 31, 651, 320, 604, 352, 497, 1246, 275, 654, 67, 31, 3319, 870, 67, 31, 8239, 81, 31, 187, 187, 29, 81, 31, 3319, 64, 10560, 64, 15227, 1082, 16308, 654, 67, 31, 3319, 870, 67, 31, 970, 253, 12164, 5301, 1159, 8239, 81, 31, 187, 187, 29, 81, 31, 3319, 64, 10560, 64, 261, 64, 84, 7551, 1082, 6548, 654, 67, 31, 18, 870, 67, 31, 604, 654, 67, 31, 3319, 870, 67, 31, 310, 20045, 285, 654, 67, 31, 17, 870, 67, 31, 5010, 8239, 81, 31, 187, 187, 29, 81, 31, 3319, 64, 10560, 64, 34856, 1082, 6548, 247, 3491, 273, 654, 67, 31, 3319, 870, 67, 13208, 5838, 253, 29476, 275, 253, 3491, 403, 8931, 281, 253, 3236, 8239, 81, 31, 187, 187, 29, 81, 31, 3319, 64, 10560, 64, 22412, 64, 12557, 1082, 6548, 247, 747, 8031, 835, 1016, 3284, 556, 644, 22489, 15, 27671, 272, 310, 2684, 407, 253, 12164, 3491, 4997, 1082, 285, 1959, 272, 407, 1959, 4997, 5023, 380, 1159, 1959, 4997, 1082, 310, 760, 1925, 604, 271, 2228, 6634, 8239, 81, 31, 187, 187, 29, 73, 18, 2654, 568, 24963, 1138, 24963, 870, 73, 18, 31, 187, 187, 29, 81, 31, 17784, 943, 320, 2668, 672, 24497, 34577, 275, 4471, 14, 11972, 264, 12620, 15, 6101, 4254, 534, 5459, 253, 1979, 273, 247, 8031, 824, 347, 1629, 64, 10560, 64, 14447, 1082, 390, 1629, 64, 11340, 1082, 476, 708, 11956, 28, 47248, 7, 11956, 28, 253, 1979, 273, 271, 4812, 3781, 285, 2847, 5492, 2515, 604, 253, 1072, 8031, 310, 19197, 275, 247, 1027, 6293, 15, 27037, 824, 347, 1629, 64, 8606, 1082, 285, 1629, 64, 15227, 1082, 476, 671, 294, 2621, 253, 8031, 8239, 81, 31, 187, 187, 29, 81, 31, 6693, 5301, 1159, 12164, 943, 897, 247, 7982, 7470, 323, 897, 275, 247, 8985, 3186, 4254, 15, 2064, 310, 352, 943, 1091, 5058, 13, 247, 2762, 390, 4016, 1318, 604, 654, 67, 31, 66, 870, 67, 31, 310, 4503, 281, 13, 3687, 685, 390, 1679, 685, 654, 67, 31, 67, 870, 67, 31, 2975, 8239, 81, 31, 187, 187, 29, 81, 31, 17784, 943, 320, 2668, 672, 12669, 253, 1091, 2193, 273, 253, 3470, 1629, 64, 10560, 64, 8606, 1082, 285, 1629, 64, 10560, 64, 8606, 64, 911, 5023, 1583, 1091, 271, 3605, 281, 253, 11038, 3284, 15, 496, 1798, 654, 67, 31, 17, 870, 67, 31, 6492, 247, 11038, 806, 3284, 15, 329, 4242, 3186, 310, 4860, 407, 247, 654, 67, 34616, 18, 870, 67, 31, 1091, 1318, 8239, 81, 31, 187, 187, 29, 81, 31, 1267, 8100, 64, 10327, 5715, 34428, 7570, 64, 1267, 8100, 64, 10327, 5715, 34428, 7570, 64, 1267, 8100, 64, 10327, 64, 31700, 5715, 285, 34428, 7570, 64, 22395, 28408, 64, 1267, 8100, 64, 10327, 1082, 403, 9009, 347, 42280, 8239, 81, 31, 187, 187, 29, 81, 31, 510, 6944, 11839, 654, 67, 31, 28652, 21156, 64, 3319, 64, 870, 67, 31, 8990, 943, 417, 320, 908, 3587, 15, 733, 13067, 841, 3470, 27, 41631, 21156, 64, 3319, 64, 22412, 64, 12557, 5715, 41631, 21156, 64, 3319, 64, 16435, 5715, 41631, 21156, 64, 3319, 64, 16435, 64, 4773, 5715, 41631, 21156, 64, 3319, 64, 34856, 5715, 41631, 21156, 64, 3319, 64, 8606, 5715, 41631, 21156, 64, 3319, 64, 8606, 64, 911, 5715, 41631, 21156, 64, 3319, 64, 4924, 5715, 41631, 21156, 64, 3319, 64, 14447, 5715, 41631, 21156, 64, 3319, 64, 261, 64, 84, 7551, 5715, 41631, 21156, 64, 3319, 64, 1826, 5715, 41631, 21156, 64, 3319, 64, 1826, 64, 8629, 5715, 41631, 21156, 64, 3319, 64, 6370, 5715, 41631, 21156, 64, 3319, 64, 9576, 5715, 41631, 21156, 64, 3319, 64, 9576, 64, 4924, 5715, 41631, 21156, 64, 3319, 64, 11340, 5715, 41631, 21156, 64, 3319, 64, 373, 4003, 5715, 41631, 21156, 64, 3319, 64, 1178, 5715, 41631, 21156, 64, 3319, 64, 1178, 64, 21630, 64, 4997, 5715, 41631, 21156, 64, 3319, 64, 11551, 5715, 41631, 21156, 64, 3319, 64, 15227, 5715, 41631, 21156, 64, 3319, 64, 328, 11551, 5715, 41631, 21156, 64, 3319, 64, 2877, 5715, 41631, 21156, 64, 3319, 64, 10528, 5023, 870, 81, 31, 187, 187, 29, 73, 18, 2654, 568, 43501, 14, 10403, 16768, 1138, 43501, 20436, 870, 73, 18, 31, 187, 187, 29, 81, 31, 3319, 64, 10560, 64, 6370, 1082, 6548, 253, 1180, 273, 3603, 275, 253, 8031, 390, 654, 67, 34616, 18, 870, 67, 31, 604, 253, 4817, 8031, 310, 654, 67, 31, 15522, 870, 67, 31, 8239, 81, 31, 187, 187, 29, 81, 31, 3319, 64, 10560, 64, 2877, 1082, 6548, 247, 12219, 281, 247, 8031, 3284, 390, 654, 67, 31, 15522, 870, 67, 31, 604, 253, 3605, 310, 562, 273, 2491, 8239, 81, 31, 187, 187, 29, 81, 31, 3319, 64, 10560, 64, 1826, 5715, 1629, 64, 10560, 64, 1826, 64, 8629, 1082, 285, 1629, 64, 10560, 64, 1826, 64, 373, 4003, 1082, 1091, 271, 6325, 8031, 390, 654, 67, 31, 15522, 870, 67, 31, 604, 271, 2228, 6634, 8239, 81, 31, 187, 187, 29, 81, 31, 3319, 64, 10560, 64, 373, 4003, 1082, 6548, 654, 67, 31, 18, 870, 67, 31, 327, 5547, 17621, 273, 253, 2424, 3541, 390, 654, 67, 31, 17, 870, 67, 31, 327, 2228, 8239, 81, 31, 187, 187, 29, 81, 31, 3319, 64, 10560, 64, 1178, 64, 21630, 64, 4997, 1082, 6548, 253, 1711, 5301, 1159, 390, 654, 67, 31, 15522, 870, 67, 31, 604, 627, 369, 642, 1711, 5301, 1159, 8239, 81, 31, 187, 187, 29, 81, 31, 3319, 64, 10560, 64, 4924, 5715, 1629, 64, 10560, 64, 10528, 5715, 1629, 64, 10560, 64, 9576, 64, 4924, 1082, 285, 1629, 64, 10560, 64, 15227, 1082, 513, 417, 1091, 2193, 8239, 81, 31, 187, 187, 29, 81, 31, 3319, 64, 10560, 64, 9576, 5715, 1629, 64, 10560, 64, 11551, 5715, 1629, 64, 10560, 64, 16435, 1082, 285, 1629, 64, 10560, 64, 16435, 64, 4773, 1082, 1091, 247, 12219, 281, 253, 16737, 3284, 390, 654, 67, 31, 15522, 870, 67, 31, 327, 2228, 8239, 81, 31, 187, 187, 29, 81, 31, 3319, 64, 10560, 64, 14447, 5715, 1629, 64, 10560, 64, 11340, 1082, 285, 1629, 64, 10560, 64, 328, 11551, 1082, 1091, 253, 2264, 1180, 273, 3603, 275, 253, 8031, 285, 470, 604, 271, 2228, 5866, 8239, 81, 31, 187, 187, 29, 81, 31, 3319, 64, 10560, 64, 1178, 1082, 6548, 247, 12219, 281, 253, 5407, 3284, 390, 654, 67, 31, 15522, 870, 67, 31, 327, 2228, 8239, 81, 31, 187, 187, 29, 81, 31, 3319, 64, 10560, 64, 8606, 1082, 285, 1629, 64, 10560, 64, 8606, 64, 911, 1082, 1091, 271, 3605, 281, 253, 1119, 3284, 390, 654, 67, 34616, 18, 870, 67, 31, 327, 2228, 8239, 81, 31, 187, 187, 29, 81, 31, 3319, 64, 10560, 64, 261, 64, 84, 7551, 1082, 6548, 654, 67, 31, 18, 870, 67, 31, 604, 253, 8031, 310, 20045, 285, 654, 67, 31, 17, 870, 67, 31, 604, 352, 310, 417, 8239, 81, 31, 187, 187, 29, 81, 31, 3319, 64, 10560, 64, 34856, 1082, 285, 1629, 64, 10560, 64, 22412, 64, 12557, 1082, 1091, 247, 12219, 281, 253, 3491, 273, 253, 8031, 8239, 81, 31, 187, 187, 29, 73, 18, 2654, 568, 41, 6905, 15258, 1138, 41, 6905, 15258, 870, 73, 18, 31, 187, 187, 29, 81, 31, 8639, 7489, 21156, 337, 15, 18, 15, 17, 13, 436, 369, 9009, 3066, 42280, 285, 417, 13866, 3470, 285, 369, 417, 247, 1345, 8990, 8239, 81, 31, 187, 187, 29, 81, 31, 3319, 64, 10560, 64, 373, 4003, 1082, 285, 1629, 64, 10560, 64, 1826, 64, 373, 4003, 1082, 497, 2879, 275, 7489, 21156, 337, 15, 18, 15, 18, 8239, 81, 31, 187, 187, 29, 73, 18, 2654, 568, 27004, 26051, 1138, 27004, 26051, 870, 73, 18, 31, 187, 187, 29, 81, 31, 20968, 5307, 14, 7132, 380, 7489, 21156, 8049, 26940, 15, 1876, 12484, 32997, 8239, 81, 31, 187, 187, 29, 81, 31, 49124, 8821, 762, 253, 7489, 21156, 7981, 313, 783, 708, 11956, 28, 17736, 7, 11956, 28, 481, 1422, 778, 417, 897, 436, 1873, 3707, 275, 10276, 342, 253, 4637, 15, 1422, 476, 4044, 247, 3491, 275, 253, 1873, 21826, 275, 253, 2603, 3268, 390, 387, 654, 66, 3860, 568, 3614, 1358, 2700, 15, 39999, 15, 2061, 16, 6756, 16, 21997, 15, 2974, 1138, 3614, 1358, 2700, 15, 39999, 15, 2061, 16, 6756, 16, 21997, 15, 2974, 870, 66, 31, 8239, 81, 31, 535, 187, 870, 2915, 31, 187, 187, 870, 2974, 31, 2756 ]
<?xml version="1.0" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>DEFINE_STACK_OF</title> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <link rev="made" href="mailto:" /> </head> <body> <ul id="index"> <li><a href="#NAME">NAME</a></li> <li><a href="#SYNOPSIS">SYNOPSIS</a></li> <li><a href="#DESCRIPTION">DESCRIPTION</a></li> <li><a href="#NOTES">NOTES</a></li> <li><a href="#RETURN-VALUES">RETURN VALUES</a></li> <li><a href="#HISTORY">HISTORY</a></li> <li><a href="#COPYRIGHT">COPYRIGHT</a></li> </ul> <h1 id="NAME">NAME</h1> <p>DEFINE_STACK_OF, DEFINE_STACK_OF_CONST, DEFINE_SPECIAL_STACK_OF, DEFINE_SPECIAL_STACK_OF_CONST, sk_TYPE_num, sk_TYPE_value, sk_TYPE_new, sk_TYPE_new_null, sk_TYPE_reserve, sk_TYPE_free, sk_TYPE_zero, sk_TYPE_delete, sk_TYPE_delete_ptr, sk_TYPE_push, sk_TYPE_unshift, sk_TYPE_pop, sk_TYPE_shift, sk_TYPE_pop_free, sk_TYPE_insert, sk_TYPE_set, sk_TYPE_find, sk_TYPE_find_ex, sk_TYPE_sort, sk_TYPE_is_sorted, sk_TYPE_dup, sk_TYPE_deep_copy, sk_TYPE_set_cmp_func, sk_TYPE_new_reserve - stack container</p> <h1 id="SYNOPSIS">SYNOPSIS</h1> <pre><code> <span class="comment">#include &lt;openssl/safestack.h&gt;</span> <span class="variable">STACK_OF</span><span class="operator">(</span><span class="variable">TYPE</span><span class="operator">)</span> <span class="variable">DEFINE_STACK_OF</span><span class="operator">(</span><span class="variable">TYPE</span><span class="operator">)</span> <span class="variable">DEFINE_STACK_OF_CONST</span><span class="operator">(</span><span class="variable">TYPE</span><span class="operator">)</span> <span class="variable">DEFINE_SPECIAL_STACK_OF</span><span class="operator">(</span><span class="variable">FUNCTYPE</span><span class="operator">,</span> <span class="variable">TYPE</span><span class="operator">)</span> <span class="variable">DEFINE_SPECIAL_STACK_OF_CONST</span><span class="operator">(</span><span class="variable">FUNCTYPE</span><span class="operator">,</span> <span class="variable">TYPE</span><span class="operator">)</span> <span class="variable">typedef</span> <span class="keyword">int</span> <span class="operator">(</span><span class="variable">*sk_TYPE_compfunc</span><span class="operator">)(</span><span class="variable">const</span> <span class="variable">TYPE</span> <span class="variable">*const</span> <span class="variable">*a</span><span class="operator">,</span> <span class="variable">const</span> <span class="variable">TYPE</span> <span class="variable">*const</span> <span class="variable">*b</span><span class="operator">);</span> <span class="variable">typedef</span> <span class="variable">TYPE</span> <span class="operator">*</span> <span class="operator">(</span><span class="variable">*sk_TYPE_copyfunc</span><span class="operator">)(</span><span class="variable">const</span> <span class="variable">TYPE</span> <span class="variable">*a</span><span class="operator">);</span> <span class="variable">typedef</span> <span class="variable">void</span> <span class="operator">(</span><span class="variable">*sk_TYPE_freefunc</span><span class="operator">)(</span><span class="variable">TYPE</span> <span class="variable">*a</span><span class="operator">);</span> <span class="keyword">int</span> <span class="variable">sk_TYPE_num</span><span class="operator">(</span><span class="variable">const</span> <span class="variable">STACK_OF</span><span class="operator">(</span><span class="variable">TYPE</span><span class="operator">)</span> <span class="variable">*sk</span><span class="operator">);</span> <span class="variable">TYPE</span> <span class="variable">*sk_TYPE_value</span><span class="operator">(</span><span class="variable">const</span> <span class="variable">STACK_OF</span><span class="operator">(</span><span class="variable">TYPE</span><span class="operator">)</span> <span class="variable">*sk</span><span class="operator">,</span> <span class="keyword">int</span> <span class="variable">idx</span><span class="operator">);</span> <span class="variable">STACK_OF</span><span class="operator">(</span><span class="variable">TYPE</span><span class="operator">)</span> <span class="variable">*sk_TYPE_new</span><span class="operator">(</span><span class="variable">sk_TYPE_compfunc</span> <span class="variable">compare</span><span class="operator">);</span> <span class="variable">STACK_OF</span><span class="operator">(</span><span class="variable">TYPE</span><span class="operator">)</span> <span class="variable">*sk_TYPE_new_null</span><span class="operator">(</span><span class="variable">void</span><span class="operator">);</span> <span class="keyword">int</span> <span class="variable">sk_TYPE_reserve</span><span class="operator">(</span><span class="variable">STACK_OF</span><span class="operator">(</span><span class="variable">TYPE</span><span class="operator">)</span> <span class="variable">*sk</span><span class="operator">,</span> <span class="keyword">int</span> <span class="variable">n</span><span class="operator">);</span> <span class="variable">void</span> <span class="variable">sk_TYPE_free</span><span class="operator">(</span><span class="variable">const</span> <span class="variable">STACK_OF</span><span class="operator">(</span><span class="variable">TYPE</span><span class="operator">)</span> <span class="variable">*sk</span><span class="operator">);</span> <span class="variable">void</span> <span class="variable">sk_TYPE_zero</span><span class="operator">(</span><span class="variable">const</span> <span class="variable">STACK_OF</span><span class="operator">(</span><span class="variable">TYPE</span><span class="operator">)</span> <span class="variable">*sk</span><span class="operator">);</span> <span class="variable">TYPE</span> <span class="variable">*sk_TYPE_delete</span><span class="operator">(</span><span class="variable">STACK_OF</span><span class="operator">(</span><span class="variable">TYPE</span><span class="operator">)</span> <span class="variable">*sk</span><span class="operator">,</span> <span class="keyword">int</span> <span class="variable">i</span><span class="operator">);</span> <span class="variable">TYPE</span> <span class="variable">*sk_TYPE_delete_ptr</span><span class="operator">(</span><span class="variable">STACK_OF</span><span class="operator">(</span><span class="variable">TYPE</span><span class="operator">)</span> <span class="variable">*sk</span><span class="operator">,</span> <span class="variable">TYPE</span> <span class="variable">*ptr</span><span class="operator">);</span> <span class="keyword">int</span> <span class="variable">sk_TYPE_push</span><span class="operator">(</span><span class="variable">STACK_OF</span><span class="operator">(</span><span class="variable">TYPE</span><span class="operator">)</span> <span class="variable">*sk</span><span class="operator">,</span> <span class="variable">const</span> <span class="variable">TYPE</span> <span class="variable">*ptr</span><span class="operator">);</span> <span class="keyword">int</span> <span class="variable">sk_TYPE_unshift</span><span class="operator">(</span><span class="variable">STACK_OF</span><span class="operator">(</span><span class="variable">TYPE</span><span class="operator">)</span> <span class="variable">*sk</span><span class="operator">,</span> <span class="variable">const</span> <span class="variable">TYPE</span> <span class="variable">*ptr</span><span class="operator">);</span> <span class="variable">TYPE</span> <span class="variable">*sk_TYPE_pop</span><span class="operator">(</span><span class="variable">STACK_OF</span><span class="operator">(</span><span class="variable">TYPE</span><span class="operator">)</span> <span class="variable">*sk</span><span class="operator">);</span> <span class="variable">TYPE</span> <span class="variable">*sk_TYPE_shift</span><span class="operator">(</span><span class="variable">STACK_OF</span><span class="operator">(</span><span class="variable">TYPE</span><span class="operator">)</span> <span class="variable">*sk</span><span class="operator">);</span> <span class="variable">void</span> <span class="variable">sk_TYPE_pop_free</span><span class="operator">(</span><span class="variable">STACK_OF</span><span class="operator">(</span><span class="variable">TYPE</span><span class="operator">)</span> <span class="variable">*sk</span><span class="operator">,</span> <span class="variable">sk_TYPE_freefunc</span> <span class="variable">freefunc</span><span class="operator">);</span> <span class="keyword">int</span> <span class="variable">sk_TYPE_insert</span><span class="operator">(</span><span class="variable">STACK_OF</span><span class="operator">(</span><span class="variable">TYPE</span><span class="operator">)</span> <span class="variable">*sk</span><span class="operator">,</span> <span class="variable">TYPE</span> <span class="variable">*ptr</span><span class="operator">,</span> <span class="keyword">int</span> <span class="variable">idx</span><span class="operator">);</span> <span class="variable">TYPE</span> <span class="variable">*sk_TYPE_set</span><span class="operator">(</span><span class="variable">STACK_OF</span><span class="operator">(</span><span class="variable">TYPE</span><span class="operator">)</span> <span class="variable">*sk</span><span class="operator">,</span> <span class="keyword">int</span> <span class="variable">idx</span><span class="operator">,</span> <span class="variable">const</span> <span class="variable">TYPE</span> <span class="variable">*ptr</span><span class="operator">);</span> <span class="keyword">int</span> <span class="variable">sk_TYPE_find</span><span class="operator">(</span><span class="variable">STACK_OF</span><span class="operator">(</span><span class="variable">TYPE</span><span class="operator">)</span> <span class="variable">*sk</span><span class="operator">,</span> <span class="variable">TYPE</span> <span class="variable">*ptr</span><span class="operator">);</span> <span class="keyword">int</span> <span class="variable">sk_TYPE_find_ex</span><span class="operator">(</span><span class="variable">STACK_OF</span><span class="operator">(</span><span class="variable">TYPE</span><span class="operator">)</span> <span class="variable">*sk</span><span class="operator">,</span> <span class="variable">TYPE</span> <span class="variable">*ptr</span><span class="operator">);</span> <span class="variable">void</span> <span class="variable">sk_TYPE_sort</span><span class="operator">(</span><span class="variable">const</span> <span class="variable">STACK_OF</span><span class="operator">(</span><span class="variable">TYPE</span><span class="operator">)</span> <span class="variable">*sk</span><span class="operator">);</span> <span class="keyword">int</span> <span class="variable">sk_TYPE_is_sorted</span><span class="operator">(</span><span class="variable">const</span> <span class="variable">STACK_OF</span><span class="operator">(</span><span class="variable">TYPE</span><span class="operator">)</span> <span class="variable">*sk</span><span class="operator">);</span> <span class="variable">STACK_OF</span><span class="operator">(</span><span class="variable">TYPE</span><span class="operator">)</span> <span class="variable">*sk_TYPE_dup</span><span class="operator">(</span><span class="variable">const</span> <span class="variable">STACK_OF</span><span class="operator">(</span><span class="variable">TYPE</span><span class="operator">)</span> <span class="variable">*sk</span><span class="operator">);</span> <span class="variable">STACK_OF</span><span class="operator">(</span><span class="variable">TYPE</span><span class="operator">)</span> <span class="variable">*sk_TYPE_deep_copy</span><span class="operator">(</span><span class="variable">const</span> <span class="variable">STACK_OF</span><span class="operator">(</span><span class="variable">TYPE</span><span class="operator">)</span> <span class="variable">*sk</span><span class="operator">,</span> <span class="variable">sk_TYPE_copyfunc</span> <span class="variable">copyfunc</span><span class="operator">,</span> <span class="variable">sk_TYPE_freefunc</span> <span class="variable">freefunc</span><span class="operator">);</span> <span class="variable">sk_TYPE_compfunc</span> <span class="operator">(</span><span class="variable">*sk_TYPE_set_cmp_func</span><span class="operator">(</span><span class="variable">STACK_OF</span><span class="operator">(</span><span class="variable">TYPE</span><span class="operator">)</span> <span class="variable">*sk</span><span class="operator">,</span> <span class="variable">sk_TYPE_compfunc</span> <span class="variable">compare</span><span class="operator">));</span> <span class="variable">STACK_OF</span><span class="operator">(</span><span class="variable">TYPE</span><span class="operator">)</span> <span class="variable">*sk_TYPE_new_reserve</span><span class="operator">(</span><span class="variable">sk_TYPE_compfunc</span> <span class="variable">compare</span><span class="operator">,</span> <span class="keyword">int</span> <span class="variable">n</span><span class="operator">);</span> </code></pre> <h1 id="DESCRIPTION">DESCRIPTION</h1> <p>Applications can create and use their own stacks by placing any of the macros described below in a header file. These macros define typesafe inline functions that wrap around the utility <b>OPENSSL_sk_</b> API. In the description here, <i>TYPE</i> is used as a placeholder for any of the OpenSSL datatypes, such as <i>X509</i>.</p> <p>STACK_OF() returns the name for a stack of the specified <b>TYPE</b>. DEFINE_STACK_OF() creates set of functions for a stack of <b>TYPE</b>. This will mean that type <b>TYPE</b> is stored in each stack, the type is referenced by STACK_OF(TYPE) and each function name begins with <i>sk_TYPE_</i>. For example:</p> <pre><code> <span class="variable">TYPE</span> <span class="variable">*sk_TYPE_value</span><span class="operator">(</span><span class="variable">STACK_OF</span><span class="operator">(</span><span class="variable">TYPE</span><span class="operator">)</span> <span class="variable">*sk</span><span class="operator">,</span> <span class="keyword">int</span> <span class="variable">idx</span><span class="operator">);</span> </code></pre> <p>DEFINE_STACK_OF_CONST() is identical to DEFINE_STACK_OF() except each element is constant. For example:</p> <pre><code> <span class="variable">const</span> <span class="variable">TYPE</span> <span class="variable">*sk_TYPE_value</span><span class="operator">(</span><span class="variable">STACK_OF</span><span class="operator">(</span><span class="variable">TYPE</span><span class="operator">)</span> <span class="variable">*sk</span><span class="operator">,</span> <span class="keyword">int</span> <span class="variable">idx</span><span class="operator">);</span> </code></pre> <p>DEFINE_SPECIAL_STACK_OF() defines a stack of <b>TYPE</b> but each function uses <b>FUNCNAME</b> in the function name. For example:</p> <pre><code> <span class="variable">TYPE</span> <span class="variable">*sk_FUNCNAME_value</span><span class="operator">(</span><span class="variable">STACK_OF</span><span class="operator">(</span><span class="variable">TYPE</span><span class="operator">)</span> <span class="variable">*sk</span><span class="operator">,</span> <span class="keyword">int</span> <span class="variable">idx</span><span class="operator">);</span> </code></pre> <p>DEFINE_SPECIAL_STACK_OF_CONST() is similar except that each element is constant:</p> <pre><code> <span class="variable">const</span> <span class="variable">TYPE</span> <span class="variable">*sk_FUNCNAME_value</span><span class="operator">(</span><span class="variable">STACK_OF</span><span class="operator">(</span><span class="variable">TYPE</span><span class="operator">)</span> <span class="variable">*sk</span><span class="operator">,</span> <span class="keyword">int</span> <span class="variable">idx</span><span class="operator">);</span> </code></pre> <p>sk_TYPE_num() returns the number of elements in <b>sk</b> or -1 if <b>sk</b> is <b>NULL</b>.</p> <p>sk_TYPE_value() returns element <b>idx</b> in <b>sk</b>, where <b>idx</b> starts at zero. If <b>idx</b> is out of range then <b>NULL</b> is returned.</p> <p>sk_TYPE_new() allocates a new empty stack using comparison function <b>compare</b>. If <b>compare</b> is <b>NULL</b> then no comparison function is used. This function is equivalent to sk_TYPE_new_reserve(compare, 0).</p> <p>sk_TYPE_new_null() allocates a new empty stack with no comparison function. This function is equivalent to sk_TYPE_new_reserve(NULL, 0).</p> <p>sk_TYPE_reserve() allocates additional memory in the <b>sk</b> structure such that the next <b>n</b> calls to sk_TYPE_insert(), sk_TYPE_push() or sk_TYPE_unshift() will not fail or cause memory to be allocated or reallocated. If <b>n</b> is zero, any excess space allocated in the <b>sk</b> structure is freed. On error <b>sk</b> is unchanged.</p> <p>sk_TYPE_new_reserve() allocates a new stack. The new stack will have additional memory allocated to hold <b>n</b> elements if <b>n</b> is positive. The next <b>n</b> calls to sk_TYPE_insert(), sk_TYPE_push() or sk_TYPE_unshift() will not fail or cause memory to be allocated or reallocated. If <b>n</b> is zero or less than zero, no memory is allocated. sk_TYPE_new_reserve() also sets the comparison function <b>compare</b> to the newly created stack. If <b>compare</b> is <b>NULL</b> then no comparison function is used.</p> <p>sk_TYPE_set_cmp_func() sets the comparison function of <b>sk</b> to <b>compare</b>. The previous comparison function is returned or <b>NULL</b> if there was no previous comparison function.</p> <p>sk_TYPE_free() frees up the <b>sk</b> structure. It does <b>not</b> free up any elements of <b>sk</b>. After this call <b>sk</b> is no longer valid.</p> <p>sk_TYPE_zero() sets the number of elements in <b>sk</b> to zero. It does not free <b>sk</b> so after this call <b>sk</b> is still valid.</p> <p>sk_TYPE_pop_free() frees up all elements of <b>sk</b> and <b>sk</b> itself. The free function freefunc() is called on each element to free it.</p> <p>sk_TYPE_delete() deletes element <b>i</b> from <b>sk</b>. It returns the deleted element or <b>NULL</b> if <b>i</b> is out of range.</p> <p>sk_TYPE_delete_ptr() deletes element matching <b>ptr</b> from <b>sk</b>. It returns the deleted element or <b>NULL</b> if no element matching <b>ptr</b> was found.</p> <p>sk_TYPE_insert() inserts <b>ptr</b> into <b>sk</b> at position <b>idx</b>. Any existing elements at or after <b>idx</b> are moved downwards. If <b>idx</b> is out of range the new element is appended to <b>sk</b>. sk_TYPE_insert() either returns the number of elements in <b>sk</b> after the new element is inserted or zero if an error (such as memory allocation failure) occurred.</p> <p>sk_TYPE_push() appends <b>ptr</b> to <b>sk</b> it is equivalent to:</p> <pre><code> <span class="variable">sk_TYPE_insert</span><span class="operator">(</span><span class="variable">sk</span><span class="operator">,</span> <span class="variable">ptr</span><span class="operator">,</span> <span class="operator">-</span><span class="number">1</span><span class="operator">);</span> </code></pre> <p>sk_TYPE_unshift() inserts <b>ptr</b> at the start of <b>sk</b> it is equivalent to:</p> <pre><code> <span class="variable">sk_TYPE_insert</span><span class="operator">(</span><span class="variable">sk</span><span class="operator">,</span> <span class="variable">ptr</span><span class="operator">,</span> <span class="number">0</span><span class="operator">);</span> </code></pre> <p>sk_TYPE_pop() returns and removes the last element from <b>sk</b>.</p> <p>sk_TYPE_shift() returns and removes the first element from <b>sk</b>.</p> <p>sk_TYPE_set() sets element <b>idx</b> of <b>sk</b> to <b>ptr</b> replacing the current element. The new element value is returned or <b>NULL</b> if an error occurred: this will only happen if <b>sk</b> is <b>NULL</b> or <b>idx</b> is out of range.</p> <p>sk_TYPE_find() searches <b>sk</b> for the element <b>ptr</b>. In the case where no comparison function has been specified, the function performs a linear search for a pointer equal to <b>ptr</b>. The index of the first matching element is returned or <b>-1</b> if there is no match. In the case where a comparison function has been specified, <b>sk</b> is sorted then sk_TYPE_find() returns the index of a matching element or <b>-1</b> if there is no match. Note that, in this case, the matching element returned is not guaranteed to be the first; the comparison function will usually compare the values pointed to rather than the pointers themselves and the order of elements in <b>sk</b> could change.</p> <p>sk_TYPE_find_ex() operates like sk_TYPE_find() except when a comparison function has been specified and no matching element is found. Instead of returning <b>-1</b>, sk_TYPE_find_ex() returns the index of the element either before or after the location where <b>ptr</b> would be if it were present in <b>sk</b>.</p> <p>sk_TYPE_sort() sorts <b>sk</b> using the supplied comparison function.</p> <p>sk_TYPE_is_sorted() returns <b>1</b> if <b>sk</b> is sorted and <b>0</b> otherwise.</p> <p>sk_TYPE_dup() returns a copy of <b>sk</b>. Note the pointers in the copy are identical to the original.</p> <p>sk_TYPE_deep_copy() returns a new stack where each element has been copied. Copying is performed by the supplied copyfunc() and freeing by freefunc(). The function freefunc() is only called if an error occurs.</p> <h1 id="NOTES">NOTES</h1> <p>Care should be taken when accessing stacks in multi-threaded environments. Any operation which increases the size of a stack such as sk_TYPE_insert() or sk_push() can &quot;grow&quot; the size of an internal array and cause race conditions if the same stack is accessed in a different thread. Operations such as sk_find() and sk_sort() can also reorder the stack.</p> <p>Any comparison function supplied should use a metric suitable for use in a binary search operation. That is it should return zero, a positive or negative value if <b>a</b> is equal to, greater than or less than <b>b</b> respectively.</p> <p>Care should be taken when checking the return values of the functions sk_TYPE_find() and sk_TYPE_find_ex(). They return an index to the matching element. In particular <b>0</b> indicates a matching first element. A failed search is indicated by a <b>-1</b> return value.</p> <p>STACK_OF(), DEFINE_STACK_OF(), DEFINE_STACK_OF_CONST(), and DEFINE_SPECIAL_STACK_OF() are implemented as macros.</p> <p>The underlying utility <b>OPENSSL_sk_</b> API should not be used directly. It defines these functions: OPENSSL_sk_deep_copy(), OPENSSL_sk_delete(), OPENSSL_sk_delete_ptr(), OPENSSL_sk_dup(), OPENSSL_sk_find(), OPENSSL_sk_find_ex(), OPENSSL_sk_free(), OPENSSL_sk_insert(), OPENSSL_sk_is_sorted(), OPENSSL_sk_new(), OPENSSL_sk_new_null(), OPENSSL_sk_num(), OPENSSL_sk_pop(), OPENSSL_sk_pop_free(), OPENSSL_sk_push(), OPENSSL_sk_reserve(), OPENSSL_sk_set(), OPENSSL_sk_set_cmp_func(), OPENSSL_sk_shift(), OPENSSL_sk_sort(), OPENSSL_sk_unshift(), OPENSSL_sk_value(), OPENSSL_sk_zero().</p> <h1 id="RETURN-VALUES">RETURN VALUES</h1> <p>sk_TYPE_num() returns the number of elements in the stack or <b>-1</b> if the passed stack is <b>NULL</b>.</p> <p>sk_TYPE_value() returns a pointer to a stack element or <b>NULL</b> if the index is out of range.</p> <p>sk_TYPE_new(), sk_TYPE_new_null() and sk_TYPE_new_reserve() return an empty stack or <b>NULL</b> if an error occurs.</p> <p>sk_TYPE_reserve() returns <b>1</b> on successful allocation of the required memory or <b>0</b> on error.</p> <p>sk_TYPE_set_cmp_func() returns the old comparison function or <b>NULL</b> if there was no old comparison function.</p> <p>sk_TYPE_free(), sk_TYPE_zero(), sk_TYPE_pop_free() and sk_TYPE_sort() do not return values.</p> <p>sk_TYPE_pop(), sk_TYPE_shift(), sk_TYPE_delete() and sk_TYPE_delete_ptr() return a pointer to the deleted element or <b>NULL</b> on error.</p> <p>sk_TYPE_insert(), sk_TYPE_push() and sk_TYPE_unshift() return the total number of elements in the stack and 0 if an error occurred.</p> <p>sk_TYPE_set() returns a pointer to the replacement element or <b>NULL</b> on error.</p> <p>sk_TYPE_find() and sk_TYPE_find_ex() return an index to the found element or <b>-1</b> on error.</p> <p>sk_TYPE_is_sorted() returns <b>1</b> if the stack is sorted and <b>0</b> if it is not.</p> <p>sk_TYPE_dup() and sk_TYPE_deep_copy() return a pointer to the copy of the stack.</p> <h1 id="HISTORY">HISTORY</h1> <p>Before OpenSSL 1.1.0, this was implemented via macros and not inline functions and was not a public API.</p> <p>sk_TYPE_reserve() and sk_TYPE_new_reserve() were added in OpenSSL 1.1.1.</p> <h1 id="COPYRIGHT">COPYRIGHT</h1> <p>Copyright 2000-2017 The OpenSSL Project Authors. All Rights Reserved.</p> <p>Licensed under the OpenSSL license (the &quot;License&quot;). You may not use this file except in compliance with the License. You can obtain a copy in the file LICENSE in the source distribution or at <a href="https://www.openssl.org/source/license.html">https://www.openssl.org/source/license.html</a>.</p> </body> </html>
214,396
Github
[ 3122, 28222, 3024, 4658, 16, 291, 463, 16788, 15, 71, 1969, 15786, 407, 269, 19, 68, 313, 4149, 848, 8897, 1630, 481, 1422, 1364, 3048, 253, 4795, 1789, 1873, 342, 5135, 71, 19, 68, 27, 327, 9664, 7464, 985, 13, 3048, 342, 5135, 71, 19, 68, 15, 4658, 28, 187, 327, 13492, 390, 44971, 2718, 13, 3048, 342, 3346, 16, 3967, 16, 936, 16, 4658, 71, 19, 68, 15, 66, 428, 20347, 390, 13, 604, 368, 3334, 5135, 71, 19, 68, 15, 66, 275, 247, 2629, 1659, 13, 342, 428, 35331, 19, 68, 428, 20347, 1969, 275, 326, 1340, 13, 387, 253, 990, 273, 253, 3923, 1386, 13, 347, 275, 25215, 33481, 80, 428, 35331, 19, 68, 428, 20347, 12269, 323, 5135, 71, 19, 68, 310, 275, 1227, 3024, 4658, 16, 71, 19, 68, 16, 4658, 71, 19, 68, 15, 16368, 13, 299, 15, 72, 904, 3944, 1358, 2700, 15, 3024, 4658, 15, 2061, 16, 71, 19, 68, 16, 4658, 71, 19, 68, 15, 16368, 1738, 187, 4, 3709, 346, 4639, 34, 64, 71, 19, 68, 15, 73, 3, 3476, 5270, 273, 3638, 2193, 1738, 187, 4659, 2570, 260, 64, 67, 18, 426, 187, 92, 187, 50274, 17, 15, 71, 13, 17, 15, 71, 187, 94, 187, 28, 187, 4659, 2570, 260, 64, 67, 19, 426, 187, 92, 187, 50274, 18, 15, 71, 13, 17, 15, 71, 187, 94, 187, 28, 187, 4659, 7007, 260, 876, 18, 426, 337, 28, 187, 3122, 2239, 393, 18399, 393, 67, 7403, 7538, 12548, 1738, 187, 3122, 209, 15765, 38909, 44854, 6570, 209, 15765, 1738, 187, 3122, 15650, 14271, 10097, 2130, 387, 1738, 187, 3122, 3944, 1358, 2700, 15, 3024, 4658, 15, 2061, 16, 30520, 471, 16, 15083, 410, 14, 2974, 16, 1738, 187, 3122, 2239, 393, 2974, 7483, 1738, 187, 3122, 2239, 21578, 7403, 7538, 12548, 559, 21011, 1738, 187, 3122, 2239, 654, 66, 3860, 568, 2413, 1358, 2700, 15, 3024, 4658, 15, 2061, 16, 23146, 14, 4805, 16, 3024, 4658, 11242, 15, 42649, 32, 8124, 30, 42649, 7, 17479, 33870, 30520, 471, 16, 30520, 471, 64, 27861, 460, 16, 291, 463, 16788, 15, 269, 1138, 1738, 187, 3122, 2239, 544, 16854, 59, 62, 870, 66, 31, 1738, 187, 3122, 2239, 654, 66, 3860, 568, 2413, 1358, 2700, 15, 3024, 4658, 15, 2061, 16, 23146, 14, 4805, 16, 3024, 4658, 11242, 15, 16368, 32, 8124, 30, 16368, 7, 17479, 33870, 30520, 471, 16, 30520, 471, 64, 27861, 460, 16, 291, 463, 16788, 15, 269, 1138, 1738, 187, 3122, 2239, 544, 59, 3123, 62, 870, 66, 31, 1738, 187, 3122, 2239, 654, 66, 3860, 568, 2413, 1358, 2700, 15, 3024, 4658, 15, 2061, 16, 23146, 14, 4805, 16, 3024, 4658, 11242, 15, 10134, 32, 8124, 30, 10134, 7, 17479, 33870, 30520, 471, 16, 30520, 471, 64, 27861, 460, 16, 291, 463, 16788, 15, 269, 1138, 1738, 187, 3122, 2239, 544, 13257, 53, 62, 870, 66, 31, 1738, 187, 3122, 2239, 393, 423, 2974, 7483, 1738, 187, 3122, 23709, 27, 1738, 187, 3122, 209, 15765, 1738, 187, 3122, 9242, 7941, 7310, 7570, 7403, 7538, 12548, 9, 322, 15400, 13, 28281, 46, 20604, 13, 23235, 13, 427, 13, 322, 13, 418, 5942, 13, 367, 13, 418, 9308, 13, 26387, 13, 1738, 187, 3122, 20060, 27901, 13, 21218, 13, 20060, 18601, 13, 16975, 13, 353, 13, 37051, 13, 416, 30764, 13, 37561, 2387, 1738, 187, 3122, 10712, 19866, 274, 14979, 3222, 10712, 1738, 187, 3122, 30752, 11645, 947, 28281, 46, 20604, 13, 322, 15400, 1738, 187, 3122, 41847, 37561, 13, 418, 9308, 13, 418, 5942, 13, 20060, 27901, 13, 20060, 18601, 13, 353, 13, 16975, 13, 427, 1738, 187, 3122, 10712, 1738, 187, 3122, 10712, 11782, 14979, 3222, 10712, 1738, 187, 3122, 34032, 25129, 23235, 9, 475, 2387, 1738, 187, 3122, 40830, 416, 30764, 9, 475, 2387, 1738, 187, 3122, 8610, 20982, 57, 367, 9, 418, 9308, 13, 475, 12062, 322, 9, 418, 5942, 13, 475, 12062, 26387, 9, 20060, 27901, 13, 475, 12062, 1738, 187, 3122, 370, 21218, 9, 20060, 18601, 13, 475, 12062, 37051, 9, 475, 2387, 1738, 187, 3122, 10712, 1738, 187, 3122, 2239, 393, 1148, 47908, 27, 1738, 187, 3122, 209, 18669, 1738, 187, 3122, 2239, 1738, 187, 3122, 2239, 393, 332, 37438, 1738, 187, 3122, 2239, 1738, 187, 3122, 2239, 7403, 7538, 12548, 48169, 690, 390, 512, 273, 253, 987, 285, 16, 263, 1669, 48670, 273, 1738, 187, 3122, 2239, 247, 4667, 273, 2570, 12624, 313, 52, 13, 49, 582, 835, 322, 285, 367, 403, 5170, 29740, 15, 1738, 187, 3122, 2239, 23650, 8557, 273, 436, 1511, 403, 4197, 407, 253, 14923, 3697, 321, 1738, 187, 3122, 2239, 39401, 273, 247, 2570, 4315, 4667, 313, 34, 13, 35, 2262, 1738, 187, 3122, 2239, 1738, 187, 3122, 2239, 329, 426, 1165, 11, 52, 11, 59, 424, 41, 13, 378, 426, 1165, 11, 49, 11, 59, 424, 41, 1738, 187, 3122, 2239, 1738, 187, 3122, 2239, 347, 10302, 407, 330, 6435, 9914, 37, 559, 5642, 7538, 50, 59, 15, 1738, 187, 3122, 2239, 1738, 187, 3122, 2239, 380, 987, 9216, 11000, 1269, 285, 253, 1669, 9216, 11000, 340, 273, 313, 52, 13, 49, 10, 1738, 187, 3122, 2239, 3969, 281, 271, 25023, 259, 403, 2931, 407, 27, 1738, 187, 3122, 2239, 1738, 187, 3122, 2239, 322, 11, 89, 426, 259, 11, 49, 11, 89, 13, 313, 90, 424, 41, 2888, 52, 426, 259, 5355, 90, 424, 41, 2888, 49, 13, 1738, 187, 3122, 2239, 1738, 187, 3122, 2239, 835, 340, 424, 41, 12853, 253, 27442, 21191, 3014, 273, 340, 15, 1738, 187, 3122, 2239, 380, 20223, 403, 417, 3280, 281, 436, 10934, 13, 533, 403, 10302, 1738, 187, 3122, 2239, 3587, 432, 253, 16421, 3603, 273, 322, 285, 367, 15, 1738, 187, 3122, 2239, 1738, 187, 3122, 2239, 831, 10934, 6548, 253, 12624, 1594, 285, 16, 263, 714, 273, 987, 285, 1669, 1738, 187, 3122, 2239, 48670, 273, 313, 52, 13, 49, 582, 390, 253, 3580, 1503, 11, 57, 285, 16, 263, 1165, 11, 58, 13, 1738, 187, 3122, 2239, 835, 1503, 285, 1165, 403, 3280, 12624, 15, 1738, 187, 3122, 2239, 1310, 1165, 285, 1503, 403, 253, 24287, 2616, 432, 253, 14923, 3697, 321, 1738, 187, 3122, 2239, 39401, 273, 247, 4315, 4667, 313, 34, 13, 35, 582, 840, 1503, 11, 57, 285, 1165, 11, 58, 1738, 187, 3122, 2239, 403, 253, 12624, 273, 987, 285, 1669, 48670, 273, 313, 34, 13, 35, 481, 1738, 187, 3122, 2239, 393, 423, 332, 37438, 1738, 187, 3122, 14979, 3222, 27, 1738, 187, 3122, 209, 6428, 1738, 187, 3122, 2239, 393, 3575, 60, 249, 62, 322, 15400, 1738, 187, 3122, 2239, 393, 332, 37438, 1738, 187, 3122, 2239, 322, 15400, 310, 30752, 11645, 947, 11, 18, 1738, 187, 3122, 2239, 426, 686, 51, 5295, 11897, 987, 48670, 760, 28, 187, 8480, 187, 3122, 2239, 426, 686, 45, 5295, 11897, 1669, 48670, 760, 28, 187, 8480, 187, 3122, 2239, 426, 686, 35, 5295, 11897, 1097, 987, 285, 1669, 48670, 15, 1738, 187, 3122, 2239, 393, 423, 332, 37438, 1738, 187, 3122, 2239, 1738, 187, 3122, 2239, 393, 3575, 60, 249, 62, 28281, 46, 20604, 1738, 187, 3122, 2239, 393, 332, 37438, 1738, 187, 3122, 2239, 28281, 46, 20604, 310, 30752, 11645, 947, 11, 18, 1738, 187, 3122, 2239, 426, 686, 34, 5295, 11897, 512, 987, 285, 16, 263, 1669, 48670, 28, 187, 8480, 187, 3122, 2239, 426, 686, 35, 5295, 11897, 512, 987, 285, 16, 263, 1669, 48670, 13, 1738, 187, 3122, 2239, 896, 45088, 407, 253, 12624, 275, 21218, 285, 16, 263, 26387, 28, 187, 8480, 187, 3122, 2239, 426, 686, 52, 5295, 11897, 4236, 987, 285, 16, 263, 1669, 48670, 13, 1738, 187, 3122, 2239, 7616, 407, 253, 13760, 3781, 23235, 15, 1738, 187, 3122, 2239, 393, 423, 332, 37438, 1738, 187, 3122, 2239, 1738, 187, 3122, 2239, 393, 3575, 60, 249, 62, 23235, 1738, 187, 3122, 2239, 393, 332, 37438, 1738, 187, 3122, 2239, 23235, 310, 34032, 25129, 3781, 13, 7877, 313, 47, 10, 1738, 187, 3122, 2239, 1310, 28281, 46, 20604, 5473, 52, 1383, 23235, 28251, 253, 48670, 281, 320, 1738, 187, 3122, 2239, 10302, 15, 380, 9216, 11000, 3969, 281, 253, 480, 14, 394, 1738, 187, 3122, 2239, 25023, 310, 10302, 604, 23235, 9, 75, 10, 426, 964, 26501, 537, 1738, 187, 3122, 2239, 3105, 23378, 604, 28281, 46, 20604, 426, 686, 34, 8, 390, 686, 35, 5983, 1738, 187, 3122, 2239, 393, 423, 332, 37438, 1738, 187, 3122, 2239, 1738, 187, 3122, 2239, 393, 3575, 60, 249, 62, 427, 1738, 187, 3122, 2239, 393, 332, 37438, 1738, 187, 3122, 2239, 427, 310, 41847, 1738, 187, 3122, 2239, 380, 1340, 273, 253, 12624, 322, 285, 367, 15, 427, 10122, 470, 15, 1738, 187, 3122, 2239, 393, 423, 332, 37438, 1738, 187, 3122, 2239, 1738, 187, 3122, 2239, 393, 3575, 60, 249, 62, 322, 1738, 187, 3122, 2239, 393, 332, 37438, 1738, 187, 3122, 2239, 322, 310, 8610, 20982, 57, 3781, 13, 7877, 313, 45, 5942, 13, 47, 10, 1738, 187, 3122, 2239, 380, 5170, 29740, 4315, 322, 432, 247, 14923, 3697, 321, 1738, 187, 3122, 2239, 39401, 13, 347, 10302, 407, 5642, 7538, 50, 59, 15, 1738, 187, 3122, 2239, 393, 423, 332, 37438, 1738, 187, 3122, 2239, 1738, 187, 3122, 2239, 393, 3575, 60, 249, 62, 418, 5942, 1738, 187, 3122, 2239, 393, 332, 37438, 1738, 187, 3122, 2239, 418, 5942, 310, 41847, 1738, 187, 3122, 2239, 380, 4283, 7877, 273, 3781, 322, 15, 418, 5942, 10122, 2781, 9, 18, 13, 47, 481, 1738, 187, 3122, 2239, 393, 423, 332, 37438, 1738, 187, 3122, 2239, 1738, 187, 3122, 2239, 393, 3575, 60, 249, 62, 367, 1738, 187, 3122, 2239, 393, 332, 37438, 1738, 187, 3122, 2239, 367, 310, 8610, 20982, 57, 3781, 13, 7877, 313, 45, 9308, 13, 47, 10, 1738, 187, 3122, 2239, 380, 5170, 29740, 4315, 367, 432, 247, 14923, 3697, 321, 1738, 187, 3122, 2239, 39401, 13, 347, 10302, 407, 5642, 7538, 50, 59, 15, 367, 1364, 452, 1524, 1738, 187, 3122, 2239, 16421, 3603, 15, 1738, 187, 3122, 2239, 393, 423, 332, 37438, 1738, 187, 3122, 2239, 1738, 187, 3122, 2239, 393, 3575, 60, 249, 62, 418, 9308, 1738, 187, 3122, 2239, 393, 332, 37438, 1738, 187, 3122, 2239, 418, 9308, 310, 41847, 1738, 187, 3122, 2239, 380, 4283, 7877, 273, 3781, 367, 15, 418, 9308, 10122, 2781, 9, 18, 13, 47, 481, 1738, 187, 3122, 2239, 393, 423, 332, 37438, 1738, 187, 3122, 2239, 1738, 187, 3122, 2239, 393, 3575, 60, 249, 13, 483, 62, 26387, 1738, 187, 3122, 2239, 393, 332, 37438, 1738, 187, 3122, 2239, 26387, 310, 8610, 20982, 57, 3781, 13, 7877, 313, 9803, 27901, 13, 8643, 10, 1738, 187, 3122, 2239, 1623, 5857, 13, 604, 322, 15400, 426, 686, 45, 8, 390, 686, 35, 8, 285, 28281, 46, 20604, 426, 686, 35, 1383, 26387, 1364, 1738, 187, 3122, 2239, 3831, 271, 427, 14, 1615, 14, 47, 4315, 1165, 313, 27978, 253, 24287, 4315, 1165, 1738, 187, 3122, 2239, 273, 1669, 3697, 321, 11390, 4895, 407, 5642, 7538, 50, 59, 481, 1738, 187, 3122, 2239, 1623, 10463, 13, 604, 322, 15400, 426, 686, 45, 8, 390, 686, 35, 1383, 26387, 4428, 27, 1738, 187, 3122, 2239, 604, 28281, 46, 20604, 426, 686, 34, 1383, 253, 4315, 714, 273, 1669, 48670, 273, 313, 52, 13, 49, 558, 187, 8480, 187, 3122, 2239, 604, 28281, 46, 20604, 426, 686, 35, 1383, 253, 4315, 1165, 11, 58, 28, 187, 8480, 187, 3122, 2239, 604, 28281, 46, 20604, 426, 686, 52, 1383, 253, 1669, 48670, 273, 313, 52, 13, 49, 10, 7616, 407, 1738, 187, 3122, 2239, 23235, 13, 7141, 10804, 34373, 275, 253, 9930, 273, 1738, 187, 3122, 2239, 26387, 13, 275, 253, 1072, 1340, 347, 616, 20223, 15, 1738, 187, 3122, 2239, 3105, 23378, 604, 322, 15400, 426, 686, 51, 5983, 1738, 187, 3122, 2239, 393, 423, 332, 37438, 1738, 187, 3122, 2239, 1738, 187, 3122, 2239, 393, 3575, 60, 249, 62, 20060, 27901, 1738, 187, 3122, 2239, 393, 332, 37438, 1738, 187, 3122, 2239, 20060, 27901, 310, 41847, 1738, 187, 3122, 2239, 380, 4283, 7877, 273, 3781, 26387, 15, 20060, 27901, 10122, 337, 13, 285, 604, 1738, 187, 3122, 2239, 322, 15400, 426, 686, 45, 8, 390, 686, 77, 8, 390, 686, 35, 8, 390, 686, 67, 1383, 20060, 27901, 10122, 427, 15, 1738, 187, 3122, 2239, 393, 423, 332, 37438, 1738, 187, 3122, 2239, 1738, 187, 3122, 2239, 393, 3575, 60, 249, 13, 483, 62, 21218, 1738, 187, 3122, 2239, 393, 332, 37438, 1738, 187, 3122, 2239, 21218, 310, 8610, 20982, 57, 3781, 13, 7877, 313, 9803, 18601, 13, 8643, 10, 1738, 187, 3122, 2239, 1623, 5857, 13, 604, 322, 15400, 426, 686, 51, 8, 390, 686, 35, 8, 285, 28281, 46, 20604, 426, 686, 35, 1383, 21218, 1364, 1738, 187, 3122, 2239, 3831, 271, 427, 14, 1615, 14, 47, 4315, 1165, 313, 27978, 253, 24287, 4315, 1503, 1738, 187, 3122, 2239, 273, 987, 3697, 321, 11390, 4895, 407, 5642, 7538, 50, 59, 481, 1738, 187, 3122, 2239, 1623, 10463, 13, 604, 322, 15400, 426, 686, 51, 8, 390, 686, 35, 1383, 21218, 4428, 27, 1738, 187, 3122, 2239, 604, 28281, 46, 20604, 426, 686, 34, 1383, 253, 4315, 1594, 273, 987, 48670, 273, 313, 52, 13, 49, 558, 187, 8480, 187, 3122, 2239, 604, 28281, 46, 20604, 426, 686, 35, 1383, 253, 4315, 1503, 11, 57, 28, 187, 8480, 187, 3122, 2239, 604, 28281, 46, 20604, 426, 686, 52, 1383, 253, 987, 48670, 273, 313, 52, 13, 49, 10, 7616, 407, 1738, 187, 3122, 2239, 23235, 13, 7141, 10804, 34373, 275, 253, 9930, 273, 1738, 187, 3122, 2239, 21218, 13, 275, 253, 1072, 1340, 347, 616, 20223, 15, 1738, 187, 3122, 2239, 3105, 23378, 604, 322, 15400, 426, 686, 45, 5983, 1738, 187, 3122, 2239, 393, 423, 332, 37438, 1738, 187, 3122, 2239, 1738, 187, 3122, 2239, 393, 3575, 60, 249, 62, 20060, 18601, 1738, 187, 3122, 2239, 393, 332, 37438, 1738, 187, 3122, 2239, 20060, 18601, 310, 41847, 1738, 187, 3122, 2239, 380, 4283, 7877, 273, 253, 3781, 21218, 15, 20060, 18601, 10122, 337, 13, 285, 604, 1738, 187, 3122, 2239, 322, 15400, 426, 686, 51, 8, 390, 686, 35, 1383, 20060, 18601, 10122, 427, 15, 1738, 187, 3122, 2239, 393, 423, 332, 37438, 1738, 187, 3122, 2239, 1738, 187, 3122, 2239, 393, 3575, 60, 249, 62, 16975, 1738, 187, 3122, 2239, 393, 332, 37438, 1738, 187, 3122, 2239, 16975, 310, 41847, 1738, 187, 3122, 2239, 380, 1180, 273, 9930, 275, 253, 16417, 26387, 285, 16, 263, 21218, 15, 16975, 10122, 353, 15, 1738, 187, 3122, 2239, 393, 423, 332, 37438, 1738, 187, 3122, 2239, 1738, 187, 3122, 2239, 393, 3575, 60, 483, 62, 353, 1738, 187, 3122, 2239, 393, 332, 37438, 1738, 187, 3122, 2239, 353, 310, 41847, 1738, 187, 3122, 2239, 380, 1180, 273, 9930, 275, 253, 16417, 26387, 285, 16, 263, 21218, 2686, 1738, 187, 3122, 2239, 908, 281, 4657, 253, 48670, 15, 1310, 28281, 46, 20604, 426, 686, 34, 8, 390, 686, 35, 1383, 353, 1738, 187, 3122, 2239, 310, 873, 281, 427, 15, 5815, 4236, 9216, 11000, 41358, 581, 5084, 15, 1738, 187, 3122, 2239, 393, 423, 332, 37438, 1738, 187, 3122, 2239, 1738, 187, 3122, 2239, 393, 3575, 60, 483, 62, 37051, 1738, 187, 3122, 2239, 393, 332, 37438, 1738, 187, 3122, 2239, 37051, 310, 8610, 20982, 57, 3781, 13, 7877, 313, 19, 11, 47, 10, 1738, 187, 3122, 2239, 393, 423, 332, 37438, 1738, 187, 3122, 2239, 1738, 187, 3122, 2239, 393, 3575, 60, 483, 62, 416, 30764, 1738, 187, 3122, 2239, 393, 332, 37438, 1738, 187, 3122, 2239, 416, 30764, 310, 40830, 3781, 13, 7877, 313, 19, 11, 47, 10, 1738, 187, 3122, 2239, 393, 423, 332, 37438, 1738, 187, 3122, 2239, 1738, 187, 3122, 2239, 393, 3575, 60, 483, 62, 37561, 1738, 187, 3122, 2239, 393, 332, 37438, 1738, 187, 3122, 2239, 37561, 310, 41847, 1738, 187, 3122, 2239, 426, 470, 27, 5547, 10463, 15, 1738, 187, 3122, 2239, 654, 470, 27, 604, 37561, 426, 428, 74, 13, 253, 891, 14, 394, 4154, 574, 271, 9676, 1318, 15, 1738, 187, 3122, 2239, 393, 423, 332, 37438, 1738, 187, 3122, 26940, 27, 1738, 187, 3122, 209, 822, 1738, 187, 3122, 2239, 393, 7582, 34599, 15, 273, 16091, 1738, 187, 3122, 2239, 393, 7582, 34599, 15, 273, 5002, 24538, 1738, 187, 3122, 2239, 393, 7582, 34599, 15, 273, 13338, 20734, 1738, 187, 3122, 2239, 393, 7582, 427, 2696, 12098, 15, 1738, 187, 3122, 2239, 393, 2754, 4596, 4332, 1738, 187, 3122, 2239, 393, 272, 47700, 2570, 7538, 16777, 1050, 1738, 187, 3122, 40038, 43024, 1738, 187, 3122, 4974, 27861, 460, 1738, 187, 565, 45830, 463, 16788, 18284, 3615, 475, 2189, 13, 1018, 475, 5430, 78, 5134, 13, 13760, 475, 7135, 13, 7007, 475, 79, 13, 2570, 475, 84, 13, 7007, 475, 392, 84, 13, 2570, 475, 81, 13, 7007, 475, 392, 81, 13, 2570, 475, 29576, 13, 7007, 475, 392, 29576, 13, 2570, 475, 24987, 13, 7007, 475, 392, 24987, 13, 7007, 475, 2188, 13, 7007, 475, 78, 13, 2570, 475, 1601, 13, 1524, 475, 83, 1601, 13, 7007, 475, 5374, 10, 187, 92, 187, 50274, 3122, 4155, 4561, 25108, 1738, 187, 50274, 18743, 268, 64, 4528, 18, 13, 268, 64, 10946, 13, 256, 64, 4528, 18, 13, 256, 64, 10946, 13, 362, 77, 64, 4528, 18, 13, 362, 77, 64, 10946, 13, 362, 83, 64, 4528, 18, 13, 362, 83, 64, 10946, 13, 891, 876, 18, 13, 891, 876, 19, 13, 891, 876, 20, 13, 891, 876, 21, 13, 891, 876, 22, 28, 187, 50274, 6549, 391, 876, 18, 13, 391, 876, 19, 13, 391, 876, 20, 13, 391, 876, 21, 13, 391, 876, 22, 13, 391, 876, 23, 28, 187, 50274, 19017, 2805, 876, 18, 13, 2805, 876, 19, 13, 2805, 876, 20, 13, 2805, 876, 21, 28, 187, 50274, 3122, 41898, 249, 3470, 1738, 187, 50274, 12237, 391, 64, 35690, 9, 19017, 46083, 187, 50274, 4353, 391, 64, 14340, 75, 72, 9, 19017, 22927, 2570, 46083, 187, 50274, 3122, 11629, 4903, 1738, 187, 50274, 19017, 277, 876, 28, 187, 50274, 18743, 891, 30738, 480, 28, 187, 50274, 19017, 7318, 13, 34795, 28, 187, 50274, 18743, 5139, 13, 516, 13, 480, 83, 28, 187, 50274, 6549, 1943, 28, 187, 50274, 2808, 474, 298, 6678, 13, 298, 18516, 28, 187, 50274, 6549, 12130, 81, 28, 187, 50274, 19017, 2020, 28, 187, 50274, 18743, 18890, 909, 13, 26332, 304, 13, 891, 423, 28, 187, 50274, 6549, 277, 1222, 876, 28, 187, 50274, 18743, 310, 3373, 28, 187, 50274, 6549, 14712, 28, 187, 50274, 19017, 2020, 66, 13, 2020, 67, 28, 187, 50274, 6549, 1269, 4090, 13, 4311, 28, 187, 50274, 2808, 474, 4164, 455, 28, 187, 50274, 18743, 310, 504, 28, 187, 50274, 6549, 256, 2461, 28, 187, 50274, 19560, 13760, 298, 18941, 18284, 3615, 22927, 1018, 46083, 187, 50274, 19560, 3476, 4974, 27861, 460, 1738, 187, 50274, 565, 260, 25460, 87, 18284, 3615, 22927, 7007, 22927, 7007, 22927, 2570, 475, 1157, 2570, 22927, 7007, 22927, 2570, 22927, 7007, 22927, 2570, 22927, 2570, 475, 1157, 7007, 46083, 187, 50274, 6549, 1355, 28, 187, 50274, 2808, 474, 3137, 28, 187, 50274, 6549, 271, 526, 13, 270, 12850, 28, 187, 50274, 2808, 474, 5334, 13, 4164, 4482, 324, 28, 187, 50274, 6549, 913, 80, 832, 66, 13, 270, 1940, 832, 66, 13, 913, 3703, 567, 28, 187, 50274, 19017, 270, 1940, 11801, 28, 187, 50274, 2808, 474, 4164, 2135, 28, 187, 50274, 19560, 3476, 4974, 27861, 460, 1738, 187, 50274, 565, 1499, 23388, 18284, 6549, 22927, 1524, 46083, 187, 50274, 6549, 9407, 1079, 13, 270, 7527, 28, 187, 50274, 19560, 3476, 24154, 1738, 187, 50274, 24859, 1838, 46017, 400, 18284, 19017, 22927, 2570, 22927, 2570, 46083, 187, 50274, 19560, 1524, 48041, 348, 18284, 3615, 46083, 187, 50274, 19017, 256, 1637, 28, 187, 50274, 6549, 4389, 1222, 28, 187, 50274, 19560, 3476, 4974, 27861, 460, 1738, 187, 50274, 565, 1269, 254, 38926, 18284, 3615, 22927, 7007, 46083, 187, 50274, 6549, 270, 525, 360, 28, 187, 50274, 2808, 474, 4164, 3118, 28, 187, 50274, 18743, 891, 13816, 78, 5134, 28, 187, 50274, 3122, 1969, 48869, 8100, 15180, 10934, 313, 4149, 495, 15, 21, 15, 17, 10, 1969, 1738, 187, 50274, 3122, 1969, 48869, 8100, 310, 247, 3694, 5522, 2530, 407, 34599, 15, 273, 16091, 13, 1969, 1738, 187, 50274, 3122, 1969, 34599, 15, 273, 5002, 24538, 13, 34599, 15, 273, 13338, 20734, 285, 427, 2696, 12098, 537, 283, 1738, 187, 50274, 3122, 4596, 4332, 1738, 187, 50274, 3122, 10712, 19866, 274, 14979, 3222, 10712, 1738, 187, 50274, 3122, 10712, 1738, 187, 50274, 3122, 10712, 11782, 14979, 3222, 10712, 1738, 187, 50274, 3122, 10712, 1738, 187, 50274, 3122, 40038, 43024, 1738, 187, 50274, 3122, 10712, 32032, 10712, 1738, 187, 50274, 3122, 10712, 1738, 187, 50274, 3122, 10712, 11629, 19866, 1032, 10712, 1738, 187, 50274, 3122, 10712, 1738, 187, 50274, 3122, 10712, 37320, 36944, 10712, 1738, 187, 50274, 3122, 10712, 1738, 187, 50274, 3122, 10712, 37320, 4974, 27861, 1100, 10712, 1738, 187, 50274, 3122, 10712, 1738, 187, 50274, 3122, 10712, 28429, 12003, 36944, 10712, 1738, 187, 50274, 3122, 10712, 1738, 187, 50274, 3122, 10712, 21978, 36944, 10712, 1738, 187, 50274, 3122, 10712, 1738, 187, 50274, 3122, 10712, 21978, 12917, 14308, 10712, 1738, 187, 50274, 3122, 10712, 1738, 187, 50274, 3122, 10712, 12138, 13508, 6515, 3658, 10712, 1738, 187, 50274, 3122, 7659, 853, 285, 6004, 253, 3280, 3602, 1738, 187, 50274, 3122, 35475, 23927, 1738, 187, 50274, 283, 7135, 28, 187, 50274, 84, 64, 4528, 18, 426, 475, 392, 84, 28, 187, 50274, 84, 64, 10946, 426, 337, 559, 256, 64, 4528, 18, 28, 187, 50274, 84, 24869, 256, 64, 10946, 28, 187, 50274, 81, 64, 4528, 18, 426, 475, 392, 81, 28, 187, 50274, 81, 64, 10946, 426, 337, 559, 268, 64, 4528, 18, 28, 187, 50274, 81, 24869, 268, 64, 10946, 28, 187, 50274, 29576, 64, 4528, 18, 426, 475, 392, 29576, 28, 187, 50274, 29576, 64, 10946, 426, 337, 559, 362, 77, 64, 4528, 18, 28, 187, 50274, 29576, 24869, 362, 77, 64, 10946, 28, 187, 50274, 24987, 64, 4528, 18, 426, 475, 392, 24987, 28, 187, 50274, 24987, 64, 10946, 426, 337, 559, 362, 83, 64, 4528, 18, 28, 187, 50274, 24987, 24869, 362, 83, 64, 10946, 28, 187, 50274, 283, 1601, 28, 187, 50274, 283, 83, 1601, 28, 187, 50274, 3122, 12917, 18456, 1738, 187, 50274, 338, 313, 5200, 482, 18284, 5430, 78, 5134, 13, 346, 34, 14708, 187, 50274, 92, 187, 50270, 6356, 28386, 5134, 426, 337, 28, 187, 50270, 300, 455, 426, 24420, 17540, 187, 50270, 300, 2135, 426, 26194, 17540, 187, 50274, 94, 187, 50274, 7271, 604, 313, 5200, 482, 18284, 5430, 78, 5134, 13, 346, 52, 14708, 187, 50274, 92, 187, 50270, 6356, 28386, 5134, 426, 374, 28, 187, 50270, 300, 455, 426, 26194, 17540, 187, 50270, 300, 2135, 426, 26194, 17540, 187, 50274, 94, 187, 50274, 7271, 604, 313, 5200, 482, 18284, 5430, 78, 5134, 13, 346, 35, 14708, 187, 50274, 92, 187, 50270, 6356, 28386, 5134, 426, 495, 28, 187, 50270, 300, 455, 426, 24420, 17540, 187, 50270, 300, 2135, 426, 24420, 17540, 187, 50274, 94, 187, 50274, 7271, 187, 50274, 92, 187, 50270, 6356, 28386, 5134, 426, 428, 18, 28, 187, 50274, 94, 187, 50274, 338, 313, 5200, 482, 18284, 2189, 13, 346, 51, 14708, 187, 50274, 92, 187, 50270, 261, 504, 426, 337, 28, 187, 50270, 21013, 426, 26194, 17540, 187, 50270, 681, 1087, 426, 24420, 17540, 187, 50274, 94, 187, 50274, 7271, 604, 313, 5200, 482, 18284, 2189, 13, 346, 45, 14708, 187, 50274, 92, 187, 50270, 261, 504, 426, 374, 28, 187, 50270, 21013, 426, 24420, 17540, 187, 50270, 681, 1087, 426, 26194, 17540, 187, 50274, 94, 187, 50274, 7271, 604, 313, 5200, 482, 18284, 2189, 13, 346, 35, 14708, 187, 50274, 92, 187, 50270, 261, 504, 426, 495, 28, 187, 50270, 21013, 426, 24420, 17540, 187, 50270, 681, 1087, 426, 24420, 17540, 187, 50274, 94, 187, 50274, 7271, 187, 50274, 92, 187, 50270, 261, 504, 426, 428, 18, 28, 187, 50274, 94, 187, 50274, 11, 5374, 426, 470, 28, 187, 50274, 338, 313, 261, 504, 654, 470, 10, 187, 50274, 92, 187, 50270, 11, 5374, 426, 428, 18, 28, 187, 50274, 94, 187, 50274, 7271, 604, 313, 6356, 28386, 5134, 654, 470, 10, 187, 50274, 92, 187, 50270, 11, 5374, 426, 428, 19, 28, 187, 50274, 94, 187, 50274, 7271, 604, 2796, 79, 654, 470, 10, 187, 50274, 92, 187, 50270, 11, 5374, 426, 428, 21, 28, 187, 50274, 94, 187, 50274, 7271, 604, 2796, 392, 84, 654, 2781, 9, 18, 20064, 79, 1228, 187, 50274, 92, 187, 50270, 11, 5374, 426, 428, 23, 28, 187, 50274, 94, 187, 50274, 7271, 604, 2796, 392, 81, 654, 2781, 9, 18, 20064, 79, 1228, 187, 50274, 92, 187, 50270, 11, 5374, 426, 428, 25, 28, 187, 50274, 94, 187, 50274, 338, 2796, 5374, 3613, 470, 10, 187, 50274, 92, 187, 50270, 74, 876, 18, 426, 428, 9672, 5374, 558, 187, 50270, 89, 254, 38926, 64, 1587, 1647, 7538, 12548, 995, 708, 74, 876, 18, 558, 187, 50270, 2309, 470, 28, 187, 50274, 94, 187, 50274, 3122, 8240, 253, 1180, 273, 48670, 1738, 187, 50274, 338, 6522, 4164, 455, 10, 187, 50274, 92, 187, 50270, 303, 426, 470, 28, 187, 50270, 74, 876, 18, 426, 475, 79, 28, 187, 50270, 1542, 313, 75, 426, 337, 28, 187, 50262, 75, 11049, 891, 876, 18, 28, 187, 50262, 3424, 75, 10, 187, 50270, 92, 187, 50266, 338, 313, 7135, 60, 75, 3291, 187, 50266, 92, 187, 50262, 3424, 303, 28, 187, 50266, 94, 187, 50266, 3122, 418, 740, 27, 1738, 187, 50270, 94, 187, 50274, 94, 187, 50274, 7271, 187, 50274, 92, 187, 50270, 303, 426, 475, 79, 28, 187, 50274, 94, 187, 50274, 3122, 9423, 16421, 273, 378, 1738, 187, 50274, 300, 4482, 324, 426, 26194, 17540, 187, 50274, 74, 876, 18, 426, 475, 79, 28, 187, 50274, 1542, 313, 75, 426, 337, 28, 187, 50266, 75, 11049, 891, 876, 18, 28, 187, 50266, 3424, 75, 10, 187, 50274, 92, 187, 50270, 338, 313, 83, 64, 35690, 6395, 81, 60, 75, 559, 480, 475, 268, 64, 4528, 18, 3291, 3613, 470, 15, 71, 10, 187, 50270, 92, 187, 50266, 300, 4482, 324, 426, 24420, 17540, 187, 50270, 94, 187, 50270, 3122, 418, 938, 27, 1738, 187, 50274, 94, 187, 50274, 338, 313, 300, 4482, 324, 10, 187, 50274, 92, 187, 50270, 11, 5374, 426, 428, 24, 28, 187, 50274, 94, 187, 50274, 7271, 604, 313, 21013, 3857, 475, 392, 29576, 654, 475, 79, 2785, 475, 392, 29576, 654, 337, 10, 187, 50274, 92, 187, 50270, 11, 5374, 426, 428, 740, 28, 187, 50274, 94, 187, 50274, 7271, 604, 313, 681, 1087, 3857, 475, 392, 24987, 654, 475, 79, 2785, 475, 392, 24987, 654, 337, 10, 187, 50274, 92, 187, 50270, 11, 5374, 426, 428, 805, 28, 187, 50274, 94, 187, 50274, 7271, 604, 2796, 2188, 654, 516, 10, 187, 50274, 92, 187, 50270, 11, 5374, 426, 428, 1012, 28, 187, 50274, 94, 187, 50274, 338, 2796, 5374, 3613, 470, 10, 187, 50274, 92, 187, 50270, 74, 876, 18, 426, 428, 9672, 5374, 558, 187, 50270, 89, 254, 38926, 64, 1587, 1647, 7538, 12548, 995, 708, 74, 876, 18, 558, 187, 50270, 2309, 470, 28, 187, 50274, 94, 187, 50274, 3122, 22637, 1091, 604, 1896, 1738, 187, 50274, 11, 78, 426, 516, 28, 187, 50274, 338, 2796, 79, 2295, 470, 10, 187, 50274, 92, 187, 50270, 2309, 470, 28, 187, 50274, 94, 187, 50274, 3122, 21585, 14869, 1103, 1738, 187, 50274, 84, 2320, 1222, 426, 48041, 348, 64, 1587, 35947, 5927, 3287, 187, 50274, 2760, 426, 337, 15, 71, 1227, 4389, 1222, 28, 187, 50274, 3433, 23388, 64, 6395, 84, 2320, 1222, 13, 708, 2760, 558, 187, 50274, 31709, 426, 48041, 348, 64, 1587, 38, 4277, 2807, 475, 48041, 348, 64, 1587, 8932, 3287, 187, 50274, 6795, 426, 4389, 1222, 475, 475, 79, 1227, 12130, 81, 28, 187, 50274, 2760, 426, 337, 15, 71, 1227, 1355, 28, 187, 50274, 67, 525, 360, 426, 337, 15, 71, 1227, 313, 84, 2320, 1222, 475, 475, 79, 558, 187, 50274, 3122, 45947, 253, 337, 14, 12850, 273, 1016, 5084, 273, 253, 13714, 5170, 29740, 1738, 187, 50274, 3122, 629, 273, 329, 285, 378, 281, 2451, 323, 1896, 19068, 275, 253, 29740, 1738, 187, 50274, 3122, 47037, 15, 1738, 187, 50274, 74, 876, 18, 426, 256, 64, 4528, 18, 559, 337, 28, 187, 50274, 266, 526, 426, 313, 83, 876, 18, 426, 256, 60, 74, 876, 18, 1570, 83, 13, 269, 19, 68, 64, 5375, 9, 83, 876, 18, 1228, 559, 313, 83, 876, 19, 426, 391, 64, 35690, 6395, 84, 60, 84, 64, 4528, 18, 559, 337, 6660, 269, 19, 68, 64, 5375, 9, 83, 876, 19, 4027, 187, 50274, 74, 876, 18, 426, 268, 64, 4528, 18, 559, 337, 28, 187, 50274, 67, 12850, 426, 313, 83, 876, 18, 426, 268, 60, 74, 876, 18, 1570, 83, 13, 269, 19, 68, 64, 5375, 9, 83, 876, 18, 1228, 559, 313, 83, 876, 19, 426, 391, 64, 35690, 6395, 81, 60, 81, 64, 4528, 18, 559, 337, 6660, 269, 19, 68, 64, 5375, 9, 83, 876, 19, 4027, 187, 50274, 83, 1601, 60, 18, 62, 426, 470, 15, 71, 28, 187, 50274, 83, 1601, 20197, 79, 559, 337, 62, 426, 470, 15, 71, 28, 187, 50274, 74, 876, 18, 426, 475, 79, 28, 187, 50274, 1542, 313, 75, 426, 374, 28, 187, 50266, 75, 11049, 891, 876, 18, 28, 187, 50266, 3424, 75, 10, 187, 50274, 92, 187, 50270, 83, 1601, 60, 75, 62, 426, 470, 15, 71, 28, 187, 50270, 83, 1601, 20197, 79, 559, 480, 62, 426, 470, 15, 71, 28, 187, 50270, 74, 876, 19, 426, 480, 428, 337, 28, 187, 50270, 1542, 313, 74, 876, 426, 337, 28, 187, 50262, 74, 876, 11049, 891, 876, 19, 28, 187, 50262, 3424, 74, 32350, 187, 50270, 92, 187, 50266, 74, 876, 20, 426, 891, 876, 559, 480, 475, 256, 64, 4528, 18, 28, 187, 50266, 83, 1601, 60, 75, 62, 7079, 313, 83, 876, 18, 426, 256, 60, 74, 876, 20, 1570, 83, 13, 269, 19, 68, 64, 5375, 9, 83, 876, 18, 1228, 559, 313, 83, 876, 19, 426, 391, 64, 35690, 6395, 84, 60, 74, 876, 559, 480, 475, 256, 64, 4528, 18, 6660, 269, 19, 68, 64, 5375, 9, 83, 876, 19, 4027, 187, 50266, 74, 876, 20, 426, 891, 876, 559, 480, 475, 268, 64, 4528, 18, 28, 187, 50266, 83, 1601, 20197, 79, 559, 480, 62, 7079, 313, 83, 876, 18, 426, 268, 60, 74, 876, 20, 1570, 83, 13, 269, 19, 68, 64, 5375, 9, 83, 876, 18, 1228, 559, 313, 83, 876, 19, 426, 391, 64, 35690, 6395, 268, 60, 74, 876, 559, 480, 475, 268, 64, 4528, 18, 6660, 269, 19, 68, 64, 5375, 9, 83, 876, 19, 4027, 187, 50266, 3122, 418, 1229, 27, 1738, 187, 50270, 94, 187, 50270, 3122, 37696, 21713, 1738, 187, 50270, 74, 876, 19, 426, 480, 559, 480, 475, 256, 64, 4528, 18, 28, 187, 50270, 83, 876, 20, 426, 271, 526, 28, 187, 50270, 83, 876, 21, 426, 391, 1601, 60, 75, 62, 559, 6048, 83, 876, 18, 426, 256, 60, 74, 876, 19, 1570, 83, 13, 269, 19, 68, 64, 5375, 9, 83, 876, 18, 1228, 559, 313, 391, 876, 19, 426, 391, 64, 35690, 6395, 84, 60, 75, 559, 480, 475, 256, 64, 4528, 18, 6660, 269, 19, 68, 64, 5375, 9, 83, 876, 19, 23090, 1380, 1157, 40280, 749, 296, 187, 50270, 266, 526, 426, 2781, 9, 83, 876, 20, 13, 83, 876, 21, 558, 187, 50270, 3122, 37696, 21713, 1738, 187, 50270, 74, 876, 19, 426, 480, 559, 480, 475, 268, 64, 4528, 18, 28, 187, 50270, 83, 876, 20, 426, 270, 12850, 28, 187, 50270, 83, 876, 21, 426, 391, 1601, 20197, 79, 559, 480, 62, 559, 6048, 83, 876, 18, 426, 268, 60, 74, 876, 19, 1570, 83, 13, 269, 19, 68, 64, 5375, 9, 83, 876, 18, 1228, 559, 313, 83, 876, 19, 426, 391, 64, 35690, 6395, 81, 60, 75, 559, 480, 475, 268, 64, 4528, 18, 6660, 269, 19, 68, 64, 5375, 9, 83, 876, 19, 23090, 1380, 1157, 40280, 749, 296, 187, 50270, 67, 12850, 426, 2781, 9, 83, 876, 20, 13, 83, 876, 21, 558, 187, 50270, 3122, 418, 1449, 27, 1738, 187, 50274, 94, 187, 50274, 4843, 1079, 426, 337, 15, 71, 1227, 2781, 9, 266, 526, 13, 84, 2320, 1222, 558, 187, 50274, 67, 7527, 426, 337, 15, 71, 1227, 2781, 9, 67, 12850, 13, 84, 2320, 1222, 558, 187, 50274, 3122, 15584, 48670, 1738, 187, 50274, 338, 313, 21013, 10, 187, 50274, 92, 187, 50270, 466, 304, 426, 470, 28, 187, 50270, 3122, 11505, 6287, 689, 20223, 1738, 187, 50270, 74, 876, 18, 426, 475, 79, 28, 187, 50270, 1542, 313, 5173, 426, 337, 28, 187, 50262, 5173, 11049, 891, 876, 18, 28, 187, 50262, 3424, 5173, 10, 187, 50270, 92, 187, 50266, 338, 313, 300, 455, 10, 187, 50266, 92, 187, 50262, 300, 3118, 426, 24420, 17540, 187, 50266, 94, 187, 50266, 7271, 187, 50266, 92, 187, 50262, 300, 3118, 426, 3609, 60, 5173, 2194, 187, 50266, 94, 187, 50266, 338, 313, 300, 3118, 10, 187, 50266, 92, 187, 50262, 3424, 466, 304, 28, 187, 50262, 74, 876, 19, 426, 5139, 559, 5139, 475, 256, 64, 4528, 18, 28, 187, 50262, 74, 876, 20, 426, 5139, 559, 5139, 475, 268, 64, 4528, 18, 28, 187, 50262, 338, 6048, 83, 876, 19, 426, 256, 60, 74, 876, 19, 1570, 83, 13, 269, 19, 68, 64, 5375, 9, 83, 876, 19, 1228, 559, 313, 83, 876, 20, 426, 391, 64, 35690, 6395, 84, 60, 5173, 559, 5139, 475, 256, 64, 4528, 18, 6660, 269, 19, 68, 64, 5375, 9, 83, 876, 20, 1228, 11049, 4389, 1222, 3857, 313, 83, 876, 18, 426, 268, 60, 74, 876, 20, 1570, 83, 13, 269, 19, 68, 64, 5375, 9, 83, 876, 18, 1228, 11049, 4389, 1222, 10, 187, 50262, 92, 187, 50258, 3122, 7712, 792, 4315, 29514, 1969, 1091, 3943, 9216, 11000, 1738, 187, 50258, 74, 876, 19, 426, 475, 79, 28, 187, 50258, 1542, 313, 75, 83, 426, 337, 28, 187, 50254, 50274, 75, 83, 11049, 891, 876, 19, 28, 187, 50254, 50274, 3424, 75, 83, 10, 187, 50258, 92, 187, 50254, 74, 876, 20, 426, 480, 83, 559, 26332, 304, 475, 362, 77, 64, 4528, 18, 28, 187, 50254, 29576, 60, 74, 876, 20, 1570, 83, 426, 470, 15, 71, 28, 187, 50254, 29576, 60, 74, 876, 20, 1570, 74, 426, 470, 15, 71, 28, 1380, 1157, 40280, 749, 296, 187, 50254, 3122, 418, 1235, 27, 1738, 187, 50258, 94, 187, 50258, 74, 876, 19, 426, 26332, 304, 559, 26332, 304, 475, 362, 77, 64, 4528, 18, 28, 187, 50258, 29576, 60, 74, 876, 19, 1570, 83, 426, 337, 15, 71, 28, 187, 50258, 29576, 60, 74, 876, 19, 1570, 74, 426, 470, 15, 71, 28, 1380, 1157, 40280, 749, 296, 187, 50258, 18026, 418, 12434, 28, 187, 50262, 94, 187, 50262, 3122, 8758, 14, 48750, 25023, 27, 1738, 187, 50262, 3122, 45947, 10303, 247, 285, 270, 275, 1738, 187, 50262, 3122, 388, 1738, 187, 50262, 3122, 340, 313, 247, 329, 428, 270, 378, 2387, 426, 470, 1738, 187, 50262, 3122, 37696, 21713, 1738, 187, 50262, 74, 876, 19, 426, 5139, 559, 5139, 475, 256, 64, 4528, 18, 28, 187, 50262, 74, 876, 20, 426, 5139, 559, 5139, 475, 268, 64, 4528, 18, 28, 187, 50262, 83, 876, 21, 426, 6048, 83, 876, 19, 426, 256, 60, 74, 876, 19, 1570, 83, 13, 269, 19, 68, 64, 5375, 9, 83, 876, 19, 1228, 559, 313, 83, 876, 20, 426, 391, 64, 35690, 6395, 84, 60, 5173, 559, 5139, 475, 256, 64, 4528, 18, 6660, 269, 19, 68, 64, 5375, 9, 83, 876, 20, 10689, 475, 9407, 1079, 28, 187, 50262, 83, 876, 22, 426, 313, 83, 876, 18, 426, 268, 60, 74, 876, 20, 1570, 83, 13, 269, 19, 68, 64, 5375, 9, 83, 876, 18, 1228, 475, 270, 7527, 28, 187, 50262, 83, 876, 21, 426, 2781, 9, 83, 876, 21, 13, 83, 876, 22, 558, 1380, 3706, 40280, 749, 296, 187, 50262, 16306, 426, 337, 15, 71, 1227, 2781, 9, 83, 876, 21, 13, 84, 2320, 1222, 558, 187, 50262, 74, 876, 19, 426, 5139, 559, 5139, 475, 256, 64, 4528, 18, 28, 187, 50262, 82, 876, 19, 15, 83, 426, 14712, 475, 256, 60, 74, 876, 19, 1570, 83, 28, 187, 50262, 82, 876, 19, 15, 74, 426, 14712, 475, 256, 60, 74, 876, 19, 1570, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50262, 82, 876, 18, 15, 83, 426, 9407, 1079, 475, 2805, 876, 19, 15, 83, 28, 187, 50262, 82, 876, 18, 15, 74, 426, 9407, 1079, 475, 2805, 876, 19, 15, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50262, 84, 1637, 15, 83, 426, 2805, 876, 18, 15, 83, 28, 187, 50262, 84, 1637, 15, 74, 426, 2805, 876, 18, 15, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50262, 74, 876, 19, 426, 5139, 559, 5139, 475, 268, 64, 4528, 18, 28, 187, 50262, 84, 2461, 426, 14712, 475, 268, 60, 74, 876, 19, 1570, 83, 475, 270, 7527, 28, 187, 50262, 317, 3703, 567, 426, 256, 2461, 475, 9407, 1079, 28, 187, 50262, 82, 876, 18, 15, 83, 426, 270, 7527, 475, 256, 1637, 15, 83, 28, 187, 50262, 82, 876, 18, 15, 74, 426, 270, 7527, 475, 256, 1637, 15, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50262, 67, 1940, 11801, 15, 83, 426, 2805, 876, 18, 15, 83, 28, 187, 50262, 67, 1940, 11801, 15, 74, 426, 2805, 876, 18, 15, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50262, 3122, 14446, 281, 3693, 762, 5449, 1738, 187, 50262, 5200, 66, 426, 269, 19, 68, 64, 5375, 9, 84, 2461, 10, 10122, 4389, 1222, 3857, 269, 19, 68, 64, 5375, 9, 317, 3703, 567, 10, 654, 1355, 28, 187, 50262, 5200, 67, 426, 313, 83, 876, 18, 426, 256, 1637, 15, 83, 13, 269, 19, 68, 64, 5375, 9, 83, 876, 18, 1228, 559, 313, 83, 876, 19, 426, 391, 64, 35690, 6395, 84, 1637, 582, 269, 19, 68, 64, 5375, 9, 83, 876, 19, 1228, 10122, 4389, 1222, 3857, 313, 83, 876, 20, 426, 270, 1940, 11801, 15, 83, 13, 269, 19, 68, 64, 5375, 9, 83, 876, 20, 1228, 559, 313, 83, 876, 21, 426, 391, 64, 35690, 6395, 67, 1940, 11801, 582, 269, 19, 68, 64, 5375, 9, 83, 876, 21, 1228, 654, 1355, 28, 187, 50262, 7527, 426, 337, 15, 71, 28, 187, 50262, 338, 313, 5200, 66, 10, 187, 50262, 92, 187, 50258, 7527, 426, 1355, 1227, 269, 19, 68, 64, 5375, 9, 84, 2461, 10, 475, 1054, 9, 266, 526, 13, 2760, 558, 187, 50262, 94, 187, 50262, 338, 313, 5200, 67, 10, 187, 50262, 92, 187, 50258, 3122, 37696, 21713, 1738, 187, 50258, 83, 876, 20, 426, 4311, 28, 187, 50258, 83, 876, 21, 426, 1355, 1227, 6048, 83, 876, 18, 426, 256, 1637, 15, 83, 13, 269, 19, 68, 64, 5375, 9, 83, 876, 18, 1228, 559, 313, 83, 876, 19, 426, 391, 64, 35690, 6395, 84, 1637, 582, 269, 19, 68, 64, 5375, 9, 83, 876, 19, 10689, 475, 1054, 9, 270, 12850, 13, 2760, 558, 1380, 1157, 40280, 749, 296, 187, 50258, 7527, 426, 2781, 9, 83, 876, 20, 13, 83, 876, 21, 558, 187, 50262, 94, 187, 50262, 338, 313, 5200, 66, 2785, 298, 18516, 10, 187, 50262, 92, 187, 50258, 3122, 37696, 26127, 1738, 187, 50258, 3122, 37696, 21713, 1738, 187, 50258, 83, 876, 22, 426, 337, 15, 71, 13, 391, 876, 23, 426, 269, 19, 68, 64, 5375, 9, 317, 3703, 567, 558, 187, 50258, 83, 876, 22, 426, 2781, 9, 83, 876, 22, 13, 83, 876, 23, 558, 187, 50258, 83, 876, 23, 426, 313, 83, 876, 18, 426, 270, 1940, 11801, 15, 83, 13, 269, 19, 68, 64, 5375, 9, 83, 876, 18, 1228, 559, 313, 83, 876, 19, 426, 391, 64, 35690, 6395, 67, 1940, 11801, 582, 269, 19, 68, 64, 5375, 9, 83, 876, 19, 4027, 1380, 3706, 40280, 749, 296, 187, 50258, 83, 876, 20, 426, 4311, 28, 187, 50258, 83, 876, 21, 426, 337, 15, 71, 1227, 313, 84, 2320, 1222, 475, 2781, 9, 83, 876, 22, 13, 83, 876, 23, 4027, 1380, 1157, 40280, 749, 296, 187, 50258, 7527, 426, 1054, 9, 83, 876, 20, 13, 83, 876, 21, 558, 187, 50258, 338, 313, 5200, 66, 10, 187, 50258, 92, 187, 50254, 317, 3703, 567, 426, 9407, 1079, 475, 313, 7527, 475, 256, 2461, 558, 187, 50258, 94, 187, 50258, 7271, 187, 50258, 92, 187, 50254, 317, 3703, 567, 426, 4311, 475, 913, 3703, 567, 28, 187, 50258, 94, 187, 50258, 338, 313, 5200, 67, 10, 187, 50258, 92, 187, 50254, 82, 876, 19, 15, 83, 426, 4311, 475, 256, 1637, 15, 83, 28, 187, 50254, 82, 876, 19, 15, 74, 426, 4311, 475, 256, 1637, 15, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50254, 82, 876, 18, 15, 83, 426, 270, 7527, 475, 2805, 876, 19, 15, 83, 28, 187, 50254, 82, 876, 18, 15, 74, 426, 270, 7527, 475, 2805, 876, 19, 15, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50254, 67, 1940, 11801, 15, 83, 426, 2805, 876, 18, 15, 83, 28, 187, 50254, 67, 1940, 11801, 15, 74, 426, 2805, 876, 18, 15, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50258, 94, 187, 50258, 7271, 187, 50258, 92, 187, 50254, 82, 876, 18, 15, 83, 426, 4311, 475, 270, 1940, 11801, 15, 83, 28, 187, 50254, 82, 876, 18, 15, 74, 426, 4311, 475, 270, 1940, 11801, 15, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50254, 67, 1940, 11801, 15, 83, 426, 2805, 876, 18, 15, 83, 28, 187, 50254, 67, 1940, 11801, 15, 74, 426, 2805, 876, 18, 15, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50258, 94, 187, 50262, 94, 187, 50262, 15861, 832, 66, 426, 269, 19, 68, 64, 5375, 9, 317, 3703, 567, 558, 187, 50262, 67, 1940, 832, 66, 426, 313, 83, 876, 18, 426, 270, 1940, 11801, 15, 83, 13, 269, 19, 68, 64, 5375, 9, 83, 876, 18, 1228, 559, 313, 83, 876, 19, 426, 391, 64, 35690, 6395, 270, 1940, 11801, 582, 269, 19, 68, 64, 5375, 9, 83, 876, 19, 4027, 187, 50262, 89, 4090, 426, 337, 15, 71, 28, 187, 50262, 74, 876, 19, 426, 475, 79, 28, 187, 50262, 1542, 313, 75, 83, 426, 337, 28, 187, 50254, 75, 83, 11049, 891, 876, 19, 28, 187, 50254, 3424, 75, 83, 10, 187, 50262, 92, 187, 50258, 74, 876, 20, 426, 480, 83, 28, 187, 50258, 1601, 60, 74, 876, 20, 1570, 83, 426, 470, 15, 71, 28, 187, 50258, 1601, 60, 74, 876, 20, 1570, 74, 426, 470, 15, 71, 28, 1380, 1157, 40280, 749, 296, 187, 50258, 3122, 418, 1549, 27, 1738, 187, 50262, 94, 187, 50262, 74, 876, 19, 426, 5139, 28, 187, 50262, 1601, 60, 74, 876, 19, 1570, 83, 426, 337, 15, 71, 28, 187, 50262, 1601, 60, 74, 876, 19, 1570, 74, 426, 470, 15, 71, 28, 1380, 1157, 40280, 749, 296, 187, 50262, 3122, 37696, 21713, 1738, 187, 50262, 83, 876, 18, 426, 12130, 81, 475, 913, 80, 832, 66, 475, 271, 526, 28, 187, 50262, 83, 876, 19, 426, 12130, 81, 475, 270, 1940, 832, 66, 475, 270, 12850, 28, 187, 50262, 83, 876, 18, 426, 2781, 9, 83, 876, 18, 13, 83, 876, 19, 558, 1380, 3706, 40280, 749, 296, 187, 50262, 69, 1222, 876, 426, 2781, 9, 83, 876, 18, 13, 84, 2320, 1222, 558, 187, 50262, 3122, 388, 1738, 187, 50262, 3122, 11835, 12406, 8415, 273, 313, 66, 329, 428, 270, 378, 10, 340, 426, 470, 1738, 187, 50262, 3122, 388, 1738, 187, 50262, 3122, 313, 736, 3020, 275, 313, 66, 329, 428, 270, 378, 10, 1157, 390, 5084, 3020, 275, 247, 329, 428, 270, 378, 10, 1738, 187, 50262, 74, 876, 19, 426, 475, 79, 28, 187, 50262, 1542, 313, 75, 426, 5139, 559, 337, 28, 187, 50254, 75, 11049, 891, 876, 19, 28, 187, 50254, 3424, 75, 10, 187, 50262, 92, 187, 50258, 3122, 45947, 1738, 187, 50258, 3122, 480, 14, 18, 1738, 187, 50258, 3122, 25361, 426, 2020, 7862, 72, 9, 247, 11, 52, 9, 76, 13, 75, 10, 428, 270, 11, 49, 9, 76, 13, 75, 10, 2387, 11, 89, 9, 76, 10, 1738, 187, 50258, 3122, 465, 30, 5173, 1738, 187, 50258, 3122, 313, 20359, 604, 3309, 10, 1738, 187, 50258, 16306, 426, 337, 15, 71, 1227, 1269, 4090, 28, 187, 50258, 338, 313, 15861, 832, 66, 475, 391, 1601, 60, 75, 62, 559, 270, 1940, 832, 66, 475, 391, 1601, 20197, 79, 559, 480, 62, 2239, 270, 525, 360, 475, 14712, 10, 187, 50258, 92, 187, 50254, 74, 876, 20, 426, 480, 428, 337, 28, 187, 50254, 1542, 313, 75, 83, 426, 5139, 28, 187, 50254, 50270, 75, 83, 11049, 891, 876, 20, 28, 187, 50254, 50270, 3424, 75, 83, 10, 187, 50254, 92, 187, 50254, 50274, 74, 876, 21, 426, 480, 83, 28, 187, 50254, 50274, 74, 876, 22, 426, 480, 83, 28, 187, 50254, 50274, 82, 876, 18, 15, 83, 426, 14712, 475, 789, 60, 74, 876, 22, 1570, 83, 28, 187, 50254, 50274, 82, 876, 18, 15, 74, 426, 14712, 475, 789, 60, 74, 876, 22, 1570, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50254, 50274, 1601, 60, 74, 876, 21, 1570, 83, 426, 2805, 876, 18, 15, 83, 28, 187, 50254, 50274, 1601, 60, 74, 876, 21, 1570, 74, 426, 2805, 876, 18, 15, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50254, 50274, 3122, 418, 1967, 27, 1738, 187, 50254, 94, 187, 50254, 89, 4090, 426, 337, 15, 71, 28, 187, 50258, 94, 187, 50258, 2204, 66, 15, 83, 426, 470, 15, 71, 28, 187, 50258, 2204, 66, 15, 74, 426, 470, 15, 71, 28, 1380, 1157, 40280, 749, 296, 187, 50258, 2204, 67, 15, 83, 426, 470, 15, 71, 28, 187, 50258, 2204, 67, 15, 74, 426, 470, 15, 71, 28, 1380, 1157, 40280, 749, 296, 187, 50258, 74, 876, 20, 426, 480, 428, 337, 28, 187, 50258, 1542, 313, 75, 83, 426, 5139, 28, 187, 50254, 50274, 75, 83, 11049, 891, 876, 20, 28, 187, 50254, 50274, 3424, 75, 83, 10, 187, 50258, 92, 187, 50254, 83, 64, 14340, 75, 72, 6395, 82, 876, 20, 13, 708, 84, 60, 75, 83, 559, 480, 475, 256, 64, 4528, 18, 9259, 187, 50254, 74, 876, 21, 426, 480, 83, 28, 187, 50254, 82, 876, 19, 15, 83, 426, 2805, 876, 20, 15, 83, 475, 789, 60, 74, 876, 21, 1570, 83, 428, 2805, 876, 20, 15, 74, 475, 789, 60, 74, 876, 21, 62, 964, 74, 28, 187, 50254, 82, 876, 19, 15, 74, 426, 2805, 876, 20, 15, 83, 475, 789, 60, 74, 876, 21, 1570, 74, 559, 2805, 876, 20, 15, 74, 475, 789, 60, 74, 876, 21, 1570, 83, 28, 1380, 1157, 40280, 749, 296, 187, 50254, 82, 876, 18, 15, 83, 426, 2020, 66, 15, 83, 559, 2805, 876, 19, 15, 83, 28, 187, 50254, 82, 876, 18, 15, 74, 426, 2020, 66, 15, 74, 559, 2805, 876, 19, 15, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50254, 2204, 66, 15, 83, 426, 2805, 876, 18, 15, 83, 28, 187, 50254, 2204, 66, 15, 74, 426, 2805, 876, 18, 15, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50254, 83, 64, 14340, 75, 72, 6395, 82, 876, 20, 13, 708, 81, 60, 75, 83, 559, 480, 475, 268, 64, 4528, 18, 9259, 187, 50254, 74, 876, 21, 426, 480, 83, 28, 187, 50254, 82, 876, 19, 15, 83, 426, 2805, 876, 20, 15, 83, 475, 789, 60, 74, 876, 21, 1570, 83, 428, 2805, 876, 20, 15, 74, 475, 789, 60, 74, 876, 21, 62, 964, 74, 28, 187, 50254, 82, 876, 19, 15, 74, 426, 2805, 876, 20, 15, 83, 475, 789, 60, 74, 876, 21, 1570, 74, 559, 2805, 876, 20, 15, 74, 475, 789, 60, 74, 876, 21, 1570, 83, 28, 1380, 1157, 40280, 749, 296, 187, 50254, 82, 876, 18, 15, 83, 426, 2020, 67, 15, 83, 559, 2805, 876, 19, 15, 83, 28, 187, 50254, 82, 876, 18, 15, 74, 426, 2020, 67, 15, 74, 559, 2805, 876, 19, 15, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50254, 2204, 67, 15, 83, 426, 2805, 876, 18, 15, 83, 28, 187, 50254, 2204, 67, 15, 74, 426, 2805, 876, 18, 15, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50254, 3122, 418, 1438, 27, 1738, 187, 50258, 94, 187, 50258, 82, 876, 19, 15, 83, 426, 913, 3703, 567, 475, 2020, 66, 15, 83, 28, 187, 50258, 82, 876, 19, 15, 74, 426, 913, 3703, 567, 475, 2020, 66, 15, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50258, 83, 64, 14340, 75, 72, 6395, 82, 876, 21, 13, 708, 67, 1940, 11801, 558, 187, 50258, 82, 876, 20, 15, 83, 426, 2805, 876, 21, 15, 83, 475, 2020, 67, 15, 83, 428, 2805, 876, 21, 15, 74, 475, 2020, 67, 15, 74, 28, 187, 50258, 82, 876, 20, 15, 74, 426, 2805, 876, 21, 15, 83, 475, 2020, 67, 15, 74, 559, 2805, 876, 21, 15, 74, 475, 2020, 67, 15, 83, 28, 1380, 1157, 40280, 749, 296, 187, 50258, 82, 876, 18, 15, 83, 426, 2805, 876, 19, 15, 83, 428, 2805, 876, 20, 15, 83, 28, 187, 50258, 82, 876, 18, 15, 74, 426, 2805, 876, 19, 15, 74, 428, 2805, 876, 20, 15, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50258, 2204, 15, 83, 426, 2805, 876, 18, 15, 83, 28, 187, 50258, 2204, 15, 74, 426, 2805, 876, 18, 15, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50258, 3122, 7191, 1269, 9, 75, 10, 426, 428, 25361, 1227, 7862, 72, 9, 247, 11, 52, 9, 75, 13, 75, 10, 428, 270, 11, 49, 9, 75, 13, 75, 10, 2387, 1738, 187, 50258, 3122, 342, 13642, 285, 20452, 273, 253, 12619, 1738, 187, 50258, 74, 876, 20, 426, 480, 559, 480, 475, 256, 64, 4528, 18, 28, 187, 50258, 82, 876, 20, 15, 83, 426, 913, 3703, 567, 475, 256, 60, 74, 876, 20, 1570, 83, 28, 187, 50258, 82, 876, 20, 15, 74, 426, 913, 3703, 567, 475, 256, 60, 74, 876, 20, 1570, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50258, 74, 876, 21, 426, 480, 559, 480, 475, 268, 64, 4528, 18, 28, 187, 50258, 82, 876, 21, 15, 83, 426, 270, 1940, 11801, 15, 83, 475, 268, 60, 74, 876, 21, 1570, 83, 428, 270, 1940, 11801, 15, 74, 475, 268, 60, 74, 876, 21, 1570, 74, 28, 187, 50258, 82, 876, 21, 15, 74, 426, 270, 1940, 11801, 15, 83, 475, 268, 60, 74, 876, 21, 1570, 74, 559, 270, 1940, 11801, 15, 74, 475, 268, 60, 74, 876, 21, 62, 964, 83, 28, 1380, 1157, 40280, 749, 296, 187, 50258, 82, 876, 19, 15, 83, 426, 2805, 876, 20, 15, 83, 428, 2805, 876, 21, 15, 83, 28, 187, 50258, 82, 876, 19, 15, 74, 426, 2805, 876, 20, 15, 74, 428, 2805, 876, 21, 15, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50258, 83, 64, 14340, 75, 72, 6395, 82, 876, 18, 13, 708, 82, 876, 19, 558, 187, 50258, 69, 47977, 83, 426, 2805, 876, 18, 15, 83, 28, 187, 50258, 69, 47977, 74, 426, 2805, 876, 18, 15, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50258, 338, 6048, 83, 876, 18, 426, 277, 47977, 83, 13, 269, 19, 68, 64, 5375, 9, 83, 876, 18, 1228, 559, 313, 83, 876, 19, 426, 391, 64, 35690, 6395, 69, 876, 582, 269, 19, 68, 64, 5375, 9, 391, 876, 19, 1228, 11049, 277, 1222, 32350, 187, 50258, 92, 187, 50254, 82, 876, 18, 15, 83, 426, 277, 1222, 876, 28, 187, 50254, 82, 876, 18, 15, 74, 426, 470, 15, 71, 28, 1380, 1157, 40280, 749, 296, 187, 50254, 69, 47977, 83, 426, 2805, 876, 18, 15, 83, 28, 187, 50254, 69, 47977, 74, 426, 2805, 876, 18, 15, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50258, 94, 187, 50258, 338, 6048, 83, 876, 18, 426, 277, 47977, 83, 13, 269, 19, 68, 64, 5375, 9, 83, 876, 18, 1228, 559, 313, 83, 876, 19, 426, 391, 64, 35690, 6395, 69, 876, 582, 269, 19, 68, 64, 5375, 9, 391, 876, 19, 1228, 654, 337, 15, 71, 10, 187, 50258, 92, 187, 50254, 338, 6048, 83, 876, 18, 426, 2020, 15, 83, 13, 269, 19, 68, 64, 5375, 9, 83, 876, 18, 1228, 559, 313, 83, 876, 19, 426, 391, 64, 35690, 6395, 2204, 582, 269, 19, 68, 64, 5375, 9, 83, 876, 19, 1228, 10122, 270, 525, 360, 475, 6048, 83, 876, 20, 426, 277, 47977, 83, 13, 269, 19, 68, 64, 5375, 9, 391, 876, 20, 1228, 559, 313, 83, 876, 21, 426, 391, 64, 35690, 6395, 69, 876, 582, 269, 19, 68, 64, 5375, 9, 83, 876, 21, 27483, 187, 50254, 92, 187, 50254, 50274, 16306, 426, 337, 15, 71, 1227, 6048, 83, 876, 18, 426, 2020, 15, 83, 13, 269, 19, 68, 64, 5375, 9, 83, 876, 18, 1228, 559, 313, 83, 876, 19, 426, 391, 64, 35690, 6395, 2204, 582, 269, 19, 68, 64, 5375, 9, 83, 876, 19, 23090, 187, 50254, 50274, 74, 876, 20, 426, 480, 428, 337, 28, 187, 50254, 50274, 1542, 313, 75, 83, 426, 5139, 28, 187, 50254, 50266, 75, 83, 11049, 891, 876, 20, 28, 187, 50254, 50266, 3424, 75, 83, 10, 187, 50254, 50274, 92, 187, 50254, 50270, 74, 876, 21, 426, 480, 83, 28, 187, 50254, 50270, 74, 876, 22, 426, 480, 83, 28, 187, 50254, 50270, 82, 876, 18, 15, 83, 426, 14712, 475, 789, 60, 74, 876, 22, 1570, 83, 28, 187, 50254, 50270, 82, 876, 18, 15, 74, 426, 14712, 475, 789, 60, 74, 876, 22, 1570, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50254, 50270, 1601, 60, 74, 876, 21, 1570, 83, 426, 2805, 876, 18, 15, 83, 28, 187, 50254, 50270, 1601, 60, 74, 876, 21, 1570, 74, 426, 2805, 876, 18, 15, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50254, 50270, 3122, 418, 2270, 27, 1738, 187, 50254, 50274, 94, 187, 50254, 50274, 89, 4090, 426, 14712, 475, 1269, 4090, 28, 187, 50254, 50274, 82, 876, 18, 15, 83, 426, 14712, 475, 2020, 15, 83, 28, 187, 50254, 50274, 82, 876, 18, 15, 74, 426, 14712, 475, 2020, 15, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50254, 50274, 2204, 15, 83, 426, 2805, 876, 18, 15, 83, 28, 187, 50254, 50274, 2204, 15, 74, 426, 2805, 876, 18, 15, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50254, 94, 187, 50258, 94, 187, 50258, 74, 876, 20, 426, 480, 28, 187, 50258, 82, 876, 19, 15, 83, 426, 428, 2204, 15, 83, 28, 187, 50258, 82, 876, 19, 15, 74, 426, 428, 2204, 15, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50258, 498, 324, 400, 64, 6395, 82, 876, 18, 13, 708, 82, 876, 19, 13, 708, 69, 876, 558, 187, 50258, 1601, 60, 74, 876, 20, 1570, 83, 426, 2805, 876, 18, 15, 83, 28, 187, 50258, 1601, 60, 74, 876, 20, 1570, 74, 426, 2805, 876, 18, 15, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50258, 3122, 37696, 21713, 1738, 187, 50258, 74, 876, 20, 426, 480, 28, 187, 50258, 83, 876, 20, 426, 1269, 4090, 28, 187, 50258, 83, 876, 21, 426, 313, 83, 876, 18, 426, 789, 60, 74, 876, 20, 1570, 83, 13, 269, 19, 68, 64, 5375, 9, 83, 876, 18, 1228, 559, 313, 391, 876, 19, 426, 391, 64, 35690, 6395, 1601, 60, 75, 6660, 269, 19, 68, 64, 5375, 9, 83, 876, 19, 4027, 1380, 1157, 40280, 749, 296, 187, 50258, 89, 4090, 426, 2781, 9, 83, 876, 20, 13, 83, 876, 21, 558, 187, 50258, 3122, 418, 2313, 27, 1738, 187, 50262, 94, 187, 50262, 3122, 8247, 4979, 9216, 11000, 604, 28281, 46, 20604, 5473, 35, 5983, 1738, 187, 50262, 338, 313, 300, 2135, 10, 187, 50262, 92, 187, 50258, 74, 876, 19, 426, 475, 79, 559, 337, 428, 5139, 28, 187, 50258, 68, 25460, 87, 64, 1587, 47, 995, 295, 13, 708, 74, 876, 19, 13, 708, 68, 64, 67, 19, 13, 708, 29576, 60, 5173, 475, 362, 77, 64, 4528, 18, 559, 337, 1092, 298, 27088, 77, 13, 708, 1601, 60, 5173, 1092, 708, 68, 876, 18, 13, 708, 68, 64, 67, 18, 13, 708, 1601, 20197, 79, 559, 337, 1092, 708, 68, 876, 18, 558, 187, 50258, 261, 3373, 426, 374, 28, 187, 50258, 487, 909, 426, 337, 28, 187, 50262, 94, 187, 50262, 7271, 187, 50262, 92, 187, 50258, 261, 3373, 426, 337, 28, 187, 50258, 487, 909, 426, 5139, 28, 187, 50262, 94, 187, 50262, 3122, 27671, 285, 4311, 9216, 11000, 715, 5084, 273, 26387, 1738, 187, 50262, 89, 4090, 426, 470, 15, 71, 28, 187, 50262, 74, 876, 19, 426, 475, 79, 28, 187, 50262, 1542, 313, 75, 83, 426, 18890, 909, 28, 187, 50254, 75, 83, 11049, 891, 876, 19, 28, 187, 50254, 3424, 75, 83, 10, 187, 50262, 92, 187, 50258, 3122, 37696, 21713, 1738, 187, 50258, 74, 876, 20, 426, 313, 261, 3373, 428, 337, 10, 475, 475, 79, 559, 480, 83, 28, 187, 50258, 83, 876, 20, 426, 1269, 4090, 28, 187, 50258, 83, 876, 21, 426, 313, 83, 876, 18, 426, 789, 60, 74, 876, 20, 1570, 83, 13, 269, 19, 68, 64, 5375, 9, 83, 876, 18, 1228, 559, 313, 391, 876, 19, 426, 391, 64, 35690, 6395, 1601, 15830, 261, 3373, 428, 337, 10, 475, 475, 79, 559, 480, 83, 6660, 269, 19, 68, 64, 5375, 9, 391, 876, 19, 4027, 1380, 1157, 40280, 749, 296, 187, 50258, 89, 4090, 426, 2781, 9, 83, 876, 20, 13, 83, 876, 21, 558, 187, 50258, 3122, 418, 7749, 27, 1738, 187, 50262, 94, 187, 50262, 338, 313, 89, 4090, 2239, 4389, 1222, 10, 187, 50262, 92, 187, 50258, 16306, 426, 337, 15, 71, 1227, 1269, 4090, 28, 187, 50258, 74, 876, 19, 426, 475, 79, 28, 187, 50258, 1542, 313, 75, 83, 426, 18890, 909, 28, 187, 50254, 50274, 75, 83, 11049, 891, 876, 19, 28, 187, 50254, 50274, 3424, 75, 83, 10, 187, 50258, 92, 187, 50254, 74, 876, 20, 426, 480, 83, 559, 26332, 304, 475, 362, 77, 64, 4528, 18, 28, 187, 50254, 74, 876, 21, 426, 313, 261, 3373, 428, 337, 10, 475, 475, 79, 559, 480, 83, 28, 187, 50254, 82, 876, 18, 15, 83, 426, 14712, 475, 789, 60, 74, 876, 21, 1570, 83, 28, 187, 50254, 82, 876, 18, 15, 74, 426, 14712, 475, 789, 60, 891, 876, 21, 1570, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50254, 29576, 60, 74, 876, 20, 1570, 83, 426, 2805, 876, 18, 15, 83, 28, 187, 50254, 29576, 60, 74, 876, 20, 1570, 74, 426, 2805, 876, 18, 15, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50254, 3122, 418, 8193, 27, 1738, 187, 50258, 94, 187, 50262, 94, 187, 50262, 7271, 187, 50262, 92, 187, 50258, 487, 909, 426, 475, 79, 559, 337, 28, 187, 50262, 94, 187, 50262, 74, 876, 19, 426, 18890, 909, 428, 337, 28, 187, 50262, 1542, 313, 75, 83, 426, 337, 28, 187, 50254, 75, 83, 11049, 891, 876, 19, 28, 187, 50254, 3424, 75, 83, 10, 187, 50262, 92, 187, 50258, 74, 876, 20, 426, 480, 83, 559, 26332, 304, 475, 362, 77, 64, 4528, 18, 28, 187, 50258, 29576, 60, 74, 876, 20, 1570, 83, 426, 470, 15, 71, 28, 187, 50258, 29576, 60, 74, 876, 20, 1570, 74, 426, 470, 15, 71, 28, 1380, 1157, 40280, 749, 296, 187, 50258, 3122, 418, 11246, 27, 1738, 187, 50262, 94, 187, 50266, 94, 187, 45, 12434, 27, 187, 50266, 28, 187, 50270, 94, 187, 50274, 94, 187, 50274, 3122, 10154, 48670, 1738, 187, 50274, 338, 313, 681, 1087, 10, 187, 50274, 92, 187, 50270, 466, 304, 426, 516, 559, 337, 28, 187, 50270, 3122, 11505, 6287, 689, 20223, 1738, 187, 50270, 1542, 313, 5173, 426, 475, 79, 28, 187, 50262, 5173, 10122, 337, 28, 187, 50262, 283, 5173, 10, 187, 50270, 92, 187, 50266, 338, 313, 300, 455, 10, 187, 50266, 92, 187, 50262, 300, 3118, 426, 24420, 17540, 187, 50266, 94, 187, 50266, 7271, 187, 50266, 92, 187, 50262, 300, 3118, 426, 3609, 60, 5173, 2194, 187, 50266, 94, 187, 50266, 338, 313, 300, 3118, 10, 187, 50266, 92, 187, 50262, 283, 466, 304, 28, 187, 50262, 74, 876, 18, 426, 5139, 559, 5139, 475, 256, 64, 4528, 18, 28, 187, 50262, 74, 876, 19, 426, 5139, 559, 5139, 475, 268, 64, 4528, 18, 28, 187, 50262, 338, 6048, 83, 876, 19, 426, 256, 60, 74, 876, 18, 1570, 83, 13, 269, 19, 68, 64, 5375, 9, 83, 876, 19, 1228, 559, 313, 83, 876, 20, 426, 391, 64, 35690, 6395, 84, 60, 5173, 559, 5139, 475, 256, 64, 4528, 18, 6660, 269, 19, 68, 64, 5375, 9, 83, 876, 20, 1228, 11049, 4389, 1222, 3857, 313, 83, 876, 18, 426, 268, 60, 74, 876, 19, 1570, 83, 13, 269, 19, 68, 64, 5375, 9, 83, 876, 18, 1228, 11049, 4389, 1222, 10, 187, 50262, 92, 187, 50258, 3122, 7712, 792, 4315, 29514, 1969, 1091, 3943, 9216, 11000, 1738, 187, 50258, 74, 876, 18, 426, 475, 79, 28, 187, 50258, 1542, 313, 75, 83, 426, 337, 28, 187, 50254, 50274, 75, 83, 11049, 891, 876, 18, 28, 187, 50254, 50274, 3424, 75, 83, 10, 187, 50258, 92, 187, 50254, 74, 876, 19, 426, 480, 83, 559, 26332, 304, 475, 362, 83, 64, 4528, 18, 28, 187, 50254, 24987, 60, 74, 876, 19, 1570, 83, 426, 470, 15, 71, 28, 187, 50254, 24987, 60, 74, 876, 19, 1570, 74, 426, 470, 15, 71, 28, 1380, 1157, 40280, 749, 296, 187, 50254, 3122, 418, 8970, 27, 1738, 187, 50258, 94, 187, 50258, 74, 876, 18, 426, 26332, 304, 559, 26332, 304, 475, 362, 83, 64, 4528, 18, 28, 187, 50258, 24987, 60, 74, 876, 18, 1570, 83, 426, 337, 15, 71, 28, 187, 50258, 24987, 60, 74, 876, 18, 1570, 74, 426, 470, 15, 71, 28, 1380, 1157, 40280, 749, 296, 187, 50258, 18026, 418, 9519, 28, 187, 50262, 94, 187, 50262, 3122, 8758, 14, 48750, 25023, 27, 1738, 187, 50262, 3122, 45947, 10303, 247, 285, 270, 275, 1738, 187, 50262, 3122, 313, 247, 329, 428, 270, 378, 2387, 1269, 426, 470, 1738, 187, 50262, 3122, 37696, 21713, 1738, 187, 50262, 74, 876, 18, 426, 5139, 559, 5139, 475, 256, 64, 4528, 18, 28, 187, 50262, 74, 876, 19, 426, 5139, 559, 5139, 475, 268, 64, 4528, 18, 28, 187, 50262, 83, 876, 21, 426, 6048, 83, 876, 19, 426, 256, 60, 74, 876, 18, 1570, 83, 13, 269, 19, 68, 64, 5375, 9, 83, 876, 19, 1228, 559, 313, 83, 876, 20, 426, 391, 64, 35690, 6395, 84, 60, 5173, 559, 5139, 475, 256, 64, 4528, 18, 6660, 269, 19, 68, 64, 5375, 9, 83, 876, 20, 10689, 475, 9407, 1079, 28, 187, 50262, 83, 876, 22, 426, 313, 83, 876, 18, 426, 268, 60, 74, 876, 19, 1570, 83, 13, 269, 19, 68, 64, 5375, 9, 83, 876, 18, 1228, 475, 270, 7527, 28, 187, 50262, 83, 876, 21, 426, 2781, 9, 83, 876, 21, 13, 83, 876, 22, 558, 1380, 3706, 40280, 749, 296, 187, 50262, 16306, 426, 337, 15, 71, 1227, 2781, 9, 83, 876, 21, 13, 84, 2320, 1222, 558, 187, 50262, 74, 876, 18, 426, 5139, 559, 5139, 475, 256, 64, 4528, 18, 28, 187, 50262, 82, 876, 19, 15, 83, 426, 14712, 475, 256, 60, 74, 876, 18, 1570, 83, 28, 187, 50262, 82, 876, 19, 15, 74, 426, 14712, 475, 256, 60, 74, 876, 18, 1570, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50262, 82, 876, 18, 15, 83, 426, 9407, 1079, 475, 2805, 876, 19, 15, 83, 28, 187, 50262, 82, 876, 18, 15, 74, 426, 9407, 1079, 475, 2805, 876, 19, 15, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50262, 84, 1637, 15, 83, 426, 2805, 876, 18, 15, 83, 28, 187, 50262, 84, 1637, 15, 74, 426, 2805, 876, 18, 15, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50262, 74, 876, 18, 426, 5139, 559, 5139, 475, 268, 64, 4528, 18, 28, 187, 50262, 84, 2461, 426, 14712, 475, 268, 60, 74, 876, 18, 1570, 83, 475, 270, 7527, 28, 187, 50262, 317, 3703, 567, 426, 256, 2461, 475, 9407, 1079, 28, 187, 50262, 82, 876, 18, 15, 83, 426, 270, 7527, 475, 256, 1637, 15, 83, 28, 187, 50262, 82, 876, 18, 15, 74, 426, 270, 7527, 475, 256, 1637, 15, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50262, 67, 1940, 11801, 15, 83, 426, 2805, 876, 18, 15, 83, 28, 187, 50262, 67, 1940, 11801, 15, 74, 426, 2805, 876, 18, 15, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50262, 3122, 14446, 281, 3693, 762, 5449, 1738, 187, 50262, 5200, 66, 426, 269, 19, 68, 64, 5375, 9, 84, 2461, 10, 10122, 4389, 1222, 3857, 269, 19, 68, 64, 5375, 9, 317, 3703, 567, 10, 654, 1355, 28, 187, 50262, 5200, 67, 426, 313, 83, 876, 18, 426, 256, 1637, 15, 83, 13, 269, 19, 68, 64, 5375, 9, 83, 876, 18, 1228, 559, 313, 83, 876, 19, 426, 391, 64, 35690, 6395, 84, 1637, 582, 269, 19, 68, 64, 5375, 9, 83, 876, 19, 1228, 10122, 4389, 1222, 3857, 313, 83, 876, 20, 426, 270, 1940, 11801, 15, 83, 13, 269, 19, 68, 64, 5375, 9, 83, 876, 20, 1228, 559, 313, 83, 876, 21, 426, 391, 64, 35690, 6395, 67, 1940, 11801, 582, 269, 19, 68, 64, 5375, 9, 83, 876, 21, 1228, 654, 1355, 28, 187, 50262, 7527, 426, 337, 15, 71, 28, 187, 50262, 338, 313, 5200, 66, 10, 187, 50262, 92, 187, 50258, 7527, 426, 1355, 1227, 269, 19, 68, 64, 5375, 9, 84, 2461, 10, 475, 1054, 9, 266, 526, 13, 2760, 558, 187, 50262, 94, 187, 50262, 338, 313, 5200, 67, 10, 187, 50262, 92, 187, 50258, 3122, 37696, 21713, 1738, 187, 50258, 83, 876, 20, 426, 4311, 28, 187, 50258, 83, 876, 21, 426, 1355, 1227, 6048, 83, 876, 18, 426, 256, 1637, 15, 83, 13, 269, 19, 68, 64, 5375, 9, 83, 876, 18, 1228, 559, 313, 83, 876, 19, 426, 391, 64, 35690, 6395, 84, 1637, 582, 269, 19, 68, 64, 5375, 9, 83, 876, 19, 10689, 475, 1054, 9, 270, 12850, 13, 2760, 558, 1380, 1157, 40280, 749, 296, 187, 50258, 7527, 426, 2781, 9, 83, 876, 20, 13, 83, 876, 21, 558, 187, 50262, 94, 187, 50262, 338, 313, 5200, 66, 2785, 298, 18516, 10, 187, 50262, 92, 187, 50258, 3122, 37696, 26127, 1738, 187, 50258, 3122, 37696, 21713, 1738, 187, 50258, 83, 876, 22, 426, 337, 15, 71, 13, 391, 876, 23, 426, 269, 19, 68, 64, 5375, 9, 317, 3703, 567, 558, 187, 50258, 83, 876, 22, 426, 2781, 9, 83, 876, 22, 13, 83, 876, 23, 558, 187, 50258, 83, 876, 23, 426, 313, 83, 876, 18, 426, 270, 1940, 11801, 15, 83, 13, 269, 19, 68, 64, 5375, 9, 83, 876, 18, 1228, 559, 313, 83, 876, 19, 426, 391, 64, 35690, 6395, 67, 1940, 11801, 582, 269, 19, 68, 64, 5375, 9, 83, 876, 19, 4027, 1380, 3706, 40280, 749, 296, 187, 50258, 83, 876, 20, 426, 4311, 28, 187, 50258, 83, 876, 21, 426, 337, 15, 71, 1227, 313, 84, 2320, 1222, 475, 2781, 9, 83, 876, 22, 13, 83, 876, 23, 4027, 1380, 1157, 40280, 749, 296, 187, 50258, 7527, 426, 1054, 9, 83, 876, 20, 13, 83, 876, 21, 558, 187, 50258, 338, 313, 5200, 66, 10, 187, 50258, 92, 187, 50254, 317, 3703, 567, 426, 9407, 1079, 475, 313, 7527, 475, 256, 2461, 558, 187, 50258, 94, 187, 50258, 7271, 187, 50258, 92, 187, 50254, 317, 3703, 567, 426, 4311, 475, 913, 3703, 567, 28, 187, 50258, 94, 187, 50258, 338, 313, 5200, 67, 10, 187, 50258, 92, 187, 50254, 82, 876, 19, 15, 83, 426, 4311, 475, 256, 1637, 15, 83, 28, 187, 50254, 82, 876, 19, 15, 74, 426, 4311, 475, 256, 1637, 15, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50254, 82, 876, 18, 15, 83, 426, 270, 7527, 475, 2805, 876, 19, 15, 83, 28, 187, 50254, 82, 876, 18, 15, 74, 426, 270, 7527, 475, 2805, 876, 19, 15, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50254, 67, 1940, 11801, 15, 83, 426, 2805, 876, 18, 15, 83, 28, 187, 50254, 67, 1940, 11801, 15, 74, 426, 2805, 876, 18, 15, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50258, 94, 187, 50258, 7271, 187, 50258, 92, 187, 50254, 82, 876, 18, 15, 83, 426, 4311, 475, 270, 1940, 11801, 15, 83, 28, 187, 50254, 82, 876, 18, 15, 74, 426, 4311, 475, 270, 1940, 11801, 15, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50254, 67, 1940, 11801, 15, 83, 426, 2805, 876, 18, 15, 83, 28, 187, 50254, 67, 1940, 11801, 15, 74, 426, 2805, 876, 18, 15, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50258, 94, 187, 50262, 94, 187, 50262, 15861, 832, 66, 426, 269, 19, 68, 64, 5375, 9, 317, 3703, 567, 558, 187, 50262, 67, 1940, 832, 66, 426, 313, 83, 876, 18, 426, 270, 1940, 11801, 15, 83, 13, 269, 19, 68, 64, 5375, 9, 83, 876, 18, 1228, 559, 313, 83, 876, 19, 426, 391, 64, 35690, 6395, 270, 1940, 11801, 582, 269, 19, 68, 64, 5375, 9, 83, 876, 19, 4027, 187, 50262, 89, 4090, 426, 337, 15, 71, 28, 187, 50262, 74, 876, 18, 426, 475, 79, 28, 187, 50262, 1542, 313, 75, 83, 426, 337, 28, 187, 50254, 75, 83, 11049, 891, 876, 18, 28, 187, 50254, 3424, 75, 83, 10, 187, 50262, 92, 187, 50258, 74, 876, 19, 426, 480, 83, 28, 187, 50258, 1601, 60, 74, 876, 19, 1570, 83, 426, 470, 15, 71, 28, 187, 50258, 1601, 60, 74, 876, 19, 1570, 74, 426, 470, 15, 71, 28, 1380, 1157, 40280, 749, 296, 187, 50258, 3122, 418, 9913, 27, 1738, 187, 50262, 94, 187, 50262, 74, 876, 18, 426, 5139, 28, 187, 50262, 1601, 60, 74, 876, 18, 1570, 83, 426, 337, 15, 71, 28, 187, 50262, 1601, 60, 74, 876, 18, 1570, 74, 426, 470, 15, 71, 28, 1380, 1157, 40280, 749, 296, 187, 50262, 3122, 37696, 21713, 1738, 187, 50262, 83, 876, 18, 426, 12130, 81, 475, 913, 80, 832, 66, 475, 271, 526, 28, 187, 50262, 83, 876, 19, 426, 12130, 81, 475, 270, 1940, 832, 66, 475, 270, 12850, 28, 187, 50262, 83, 876, 18, 426, 2781, 9, 83, 876, 18, 13, 83, 876, 19, 558, 1380, 3706, 40280, 749, 296, 187, 50262, 69, 1222, 876, 426, 2781, 9, 83, 876, 18, 13, 84, 2320, 1222, 558, 187, 50262, 3122, 11835, 12406, 8415, 273, 313, 66, 329, 428, 270, 378, 10, 1269, 426, 470, 313, 11631, 3020, 10, 1738, 187, 50262, 3122, 37051, 9, 18, 27, 75, 14, 18, 10, 4428, 22661, 259, 13, 1738, 187, 50262, 3122, 37051, 9, 75, 12, 18, 27, 38836, 10, 4428, 1269, 1738, 187, 50262, 74, 876, 18, 426, 5139, 428, 337, 28, 187, 50262, 1542, 313, 75, 83, 426, 337, 28, 187, 50254, 75, 83, 11049, 891, 876, 18, 28, 187, 50254, 3424, 75, 83, 10, 187, 50262, 92, 187, 50258, 74, 876, 19, 426, 480, 83, 28, 187, 50258, 74, 876, 20, 426, 480, 83, 559, 5139, 475, 256, 64, 4528, 18, 28, 187, 50258, 82, 876, 19, 15, 83, 426, 913, 3703, 567, 475, 256, 60, 74, 876, 20, 1570, 83, 28, 187, 50258, 82, 876, 19, 15, 74, 426, 913, 3703, 567, 475, 256, 60, 74, 876, 20, 1570, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50258, 74, 876, 21, 426, 480, 83, 559, 5139, 475, 268, 64, 4528, 18, 28, 187, 50258, 82, 876, 20, 15, 83, 426, 270, 1940, 11801, 15, 83, 475, 268, 60, 74, 876, 21, 1570, 83, 428, 270, 1940, 11801, 15, 74, 475, 268, 60, 74, 876, 21, 1570, 74, 28, 187, 50258, 82, 876, 20, 15, 74, 426, 270, 1940, 11801, 15, 83, 475, 268, 60, 74, 876, 21, 1570, 74, 559, 270, 1940, 11801, 15, 74, 475, 268, 60, 74, 876, 21, 62, 964, 83, 28, 1380, 1157, 40280, 749, 296, 187, 50258, 82, 876, 18, 15, 83, 426, 2805, 876, 19, 15, 83, 428, 2805, 876, 20, 15, 83, 28, 187, 50258, 82, 876, 18, 15, 74, 426, 2805, 876, 19, 15, 74, 428, 2805, 876, 20, 15, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50258, 1601, 60, 74, 876, 19, 1570, 83, 426, 2805, 876, 18, 15, 83, 28, 187, 50258, 1601, 60, 74, 876, 19, 1570, 74, 426, 2805, 876, 18, 15, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50258, 3122, 418, 15046, 27, 1738, 187, 50262, 94, 187, 50262, 74, 876, 18, 426, 5139, 28, 187, 50262, 1601, 60, 74, 876, 18, 1570, 83, 426, 337, 15, 71, 28, 187, 50262, 1601, 60, 74, 876, 18, 1570, 74, 426, 470, 15, 71, 28, 1380, 1157, 40280, 749, 296, 187, 50262, 1542, 313, 75, 426, 5139, 428, 337, 28, 187, 50254, 75, 10122, 337, 28, 187, 50254, 283, 75, 10, 187, 50262, 92, 187, 50258, 3122, 7191, 1269, 9, 75, 10, 3843, 428, 259, 9, 75, 10, 1227, 277, 1738, 187, 50258, 3122, 342, 13642, 285, 20452, 273, 253, 12619, 1738, 187, 50258, 74, 876, 18, 426, 480, 559, 480, 475, 256, 64, 4528, 18, 28, 187, 50258, 82, 876, 19, 15, 83, 426, 913, 3703, 567, 475, 256, 60, 74, 876, 18, 1570, 83, 28, 187, 50258, 82, 876, 19, 15, 74, 426, 913, 3703, 567, 475, 256, 60, 74, 876, 18, 1570, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50258, 74, 876, 19, 426, 480, 559, 480, 475, 268, 64, 4528, 18, 28, 187, 50258, 82, 876, 20, 15, 83, 426, 270, 1940, 11801, 15, 83, 475, 268, 60, 74, 876, 19, 1570, 83, 428, 270, 1940, 11801, 15, 74, 475, 268, 60, 74, 876, 19, 1570, 74, 28, 187, 50258, 82, 876, 20, 15, 74, 426, 270, 1940, 11801, 15, 83, 475, 268, 60, 74, 876, 19, 1570, 74, 559, 270, 1940, 11801, 15, 74, 475, 268, 60, 74, 876, 19, 62, 964, 83, 28, 1380, 1157, 40280, 749, 296, 187, 50258, 82, 876, 18, 15, 83, 426, 2805, 876, 19, 15, 83, 428, 2805, 876, 20, 15, 83, 28, 187, 50258, 82, 876, 18, 15, 74, 426, 2805, 876, 19, 15, 74, 428, 2805, 876, 20, 15, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50258, 69, 47977, 83, 426, 2805, 876, 18, 15, 83, 28, 187, 50258, 69, 47977, 74, 426, 2805, 876, 18, 15, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50258, 338, 6048, 83, 876, 18, 426, 277, 47977, 83, 13, 269, 19, 68, 64, 5375, 9, 83, 876, 18, 1228, 559, 313, 83, 876, 19, 426, 391, 64, 35690, 6395, 69, 876, 582, 269, 19, 68, 64, 5375, 9, 391, 876, 19, 1228, 11049, 277, 1222, 32350, 187, 50258, 92, 187, 50254, 82, 876, 18, 15, 83, 426, 277, 1222, 876, 28, 187, 50254, 82, 876, 18, 15, 74, 426, 470, 15, 71, 28, 1380, 1157, 40280, 749, 296, 187, 50254, 69, 47977, 83, 426, 2805, 876, 18, 15, 83, 28, 187, 50254, 69, 47977, 74, 426, 2805, 876, 18, 15, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50258, 94, 187, 50258, 338, 6048, 83, 876, 18, 426, 277, 47977, 83, 13, 269, 19, 68, 64, 5375, 9, 83, 876, 18, 1228, 559, 313, 83, 876, 19, 426, 391, 64, 35690, 6395, 69, 876, 582, 269, 19, 68, 64, 5375, 9, 391, 876, 19, 1228, 654, 337, 15, 71, 10, 187, 50258, 92, 187, 50254, 74, 876, 18, 426, 480, 28, 187, 50254, 338, 6048, 83, 876, 18, 426, 789, 60, 74, 876, 18, 1570, 83, 13, 269, 19, 68, 64, 5375, 9, 83, 876, 18, 1228, 559, 313, 83, 876, 19, 426, 391, 64, 35690, 9, 708, 1601, 60, 75, 6660, 269, 19, 68, 64, 5375, 9, 83, 876, 19, 1228, 10122, 270, 525, 360, 475, 6048, 83, 876, 20, 426, 277, 47977, 83, 13, 269, 19, 68, 64, 5375, 9, 83, 876, 20, 1228, 559, 313, 83, 876, 21, 426, 391, 64, 35690, 6395, 69, 876, 582, 269, 19, 68, 64, 5375, 9, 391, 876, 21, 27483, 187, 50254, 92, 187, 50254, 50274, 74, 876, 18, 426, 480, 28, 187, 50254, 50274, 16306, 426, 337, 15, 71, 1227, 6048, 83, 876, 18, 426, 789, 60, 74, 876, 18, 1570, 83, 13, 269, 19, 68, 64, 5375, 9, 83, 876, 18, 1228, 559, 313, 391, 876, 19, 426, 391, 64, 35690, 6395, 1601, 60, 75, 6660, 269, 19, 68, 64, 5375, 9, 83, 876, 19, 23090, 187, 50254, 50274, 74, 876, 18, 426, 5139, 28, 187, 50254, 50274, 1542, 313, 75, 83, 426, 337, 28, 187, 50254, 50266, 75, 83, 11049, 891, 876, 18, 28, 187, 50254, 50266, 3424, 75, 83, 10, 187, 50254, 50274, 92, 187, 50254, 50270, 74, 876, 19, 426, 480, 83, 28, 187, 50254, 50270, 74, 876, 20, 426, 480, 83, 28, 187, 50254, 50270, 82, 876, 18, 15, 83, 426, 14712, 475, 789, 60, 74, 876, 20, 1570, 83, 28, 187, 50254, 50270, 82, 876, 18, 15, 74, 426, 14712, 475, 789, 60, 74, 876, 20, 1570, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50254, 50270, 1601, 60, 74, 876, 19, 1570, 83, 426, 2805, 876, 18, 15, 83, 28, 187, 50254, 50270, 1601, 60, 74, 876, 19, 1570, 74, 426, 2805, 876, 18, 15, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50254, 50270, 3122, 418, 11395, 27, 1738, 187, 50254, 50274, 94, 187, 50254, 94, 187, 50258, 94, 187, 50258, 74, 876, 18, 426, 480, 28, 187, 50258, 74, 876, 19, 426, 480, 28, 187, 50258, 82, 876, 19, 15, 83, 426, 428, 1601, 60, 74, 876, 19, 1570, 83, 28, 187, 50258, 82, 876, 19, 15, 74, 426, 428, 1601, 60, 74, 876, 19, 1570, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50258, 498, 324, 400, 64, 6395, 82, 876, 18, 13, 708, 82, 876, 19, 13, 708, 69, 876, 558, 187, 50258, 1601, 60, 74, 876, 18, 1570, 83, 426, 2805, 876, 18, 15, 83, 28, 187, 50258, 1601, 60, 74, 876, 18, 1570, 74, 426, 2805, 876, 18, 15, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50258, 338, 313, 75, 2239, 337, 10, 187, 50258, 92, 187, 50254, 3122, 259, 426, 259, 559, 1269, 9, 75, 7672, 66, 322, 9, 2992, 75, 10, 428, 270, 367, 9, 2992, 75, 10, 2387, 342, 13642, 1738, 187, 50254, 74, 876, 18, 426, 480, 28, 187, 50254, 338, 6048, 83, 876, 18, 426, 789, 60, 74, 876, 18, 1570, 83, 13, 269, 19, 68, 64, 5375, 9, 83, 876, 18, 1228, 559, 313, 83, 876, 19, 426, 391, 64, 35690, 9, 708, 1601, 60, 75, 6660, 269, 19, 68, 64, 5375, 9, 83, 876, 19, 1228, 2239, 337, 15, 71, 10, 187, 50254, 92, 187, 50254, 50274, 74, 876, 18, 426, 480, 28, 187, 50254, 50274, 16306, 426, 337, 15, 71, 1227, 6048, 83, 876, 18, 426, 789, 60, 74, 876, 18, 1570, 83, 13, 269, 19, 68, 64, 5375, 9, 83, 876, 18, 1228, 559, 313, 391, 876, 19, 426, 391, 64, 35690, 6395, 1601, 60, 75, 6660, 269, 19, 68, 64, 5375, 9, 83, 876, 19, 23090, 187, 50254, 50274, 338, 313, 15861, 832, 66, 475, 391, 1601, 60, 75, 62, 559, 270, 1940, 832, 66, 475, 391, 1601, 20197, 79, 559, 480, 62, 10122, 270, 525, 360, 475, 14712, 10, 187, 50254, 50274, 92, 187, 50254, 50270, 74, 876, 18, 426, 5139, 28, 187, 50254, 50270, 1542, 313, 75, 83, 426, 337, 28, 187, 50254, 50262, 75, 83, 11049, 891, 876, 18, 28, 187, 50254, 50262, 3424, 75, 83, 10, 187, 50254, 50270, 92, 187, 50254, 50266, 74, 876, 19, 426, 480, 83, 28, 187, 50254, 50266, 74, 876, 20, 426, 480, 83, 28, 187, 50254, 50266, 82, 876, 18, 15, 83, 426, 14712, 475, 789, 60, 74, 876, 20, 1570, 83, 28, 187, 50254, 50266, 82, 876, 18, 15, 74, 426, 14712, 475, 789, 60, 74, 876, 20, 1570, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50254, 50266, 1601, 60, 74, 876, 19, 1570, 83, 426, 2805, 876, 18, 15, 83, 28, 187, 50254, 50266, 1601, 60, 74, 876, 19, 1570, 74, 426, 2805, 876, 18, 15, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50254, 50266, 3122, 418, 16129, 27, 1738, 187, 50254, 50270, 94, 187, 50254, 50274, 94, 187, 50254, 94, 187, 50254, 74, 876, 18, 426, 480, 28, 187, 50254, 82, 876, 18, 15, 83, 426, 913, 3703, 567, 475, 789, 60, 74, 876, 18, 1570, 83, 28, 187, 50254, 82, 876, 18, 15, 74, 426, 913, 3703, 567, 475, 789, 60, 74, 876, 18, 1570, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50254, 6357, 15, 83, 426, 2805, 876, 18, 15, 83, 28, 187, 50254, 6357, 15, 74, 426, 2805, 876, 18, 15, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50254, 74, 876, 18, 426, 480, 28, 187, 50254, 82, 876, 18, 15, 83, 426, 270, 1940, 11801, 15, 83, 475, 789, 60, 74, 876, 18, 1570, 83, 428, 270, 1940, 11801, 15, 74, 475, 789, 60, 891, 876, 18, 1570, 74, 28, 187, 50254, 82, 876, 18, 15, 74, 426, 270, 1940, 11801, 15, 83, 475, 789, 60, 74, 876, 18, 1570, 74, 559, 270, 1940, 11801, 15, 74, 475, 789, 60, 74, 876, 18, 1570, 83, 28, 1380, 1157, 40280, 749, 296, 187, 50254, 11316, 15, 83, 426, 2805, 876, 18, 15, 83, 28, 187, 50254, 11316, 15, 74, 426, 2805, 876, 18, 15, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50254, 74, 876, 18, 426, 480, 428, 337, 28, 187, 50254, 1542, 313, 75, 83, 426, 337, 28, 187, 50254, 50270, 75, 83, 11049, 891, 876, 18, 28, 187, 50254, 50270, 3424, 75, 83, 10, 187, 50254, 92, 187, 50254, 50274, 74, 876, 19, 426, 480, 83, 28, 187, 50254, 50274, 74, 876, 20, 426, 480, 83, 28, 187, 50254, 50274, 74, 876, 21, 426, 480, 83, 559, 480, 475, 256, 64, 4528, 18, 28, 187, 50254, 50274, 82, 876, 20, 15, 83, 426, 7318, 15, 83, 475, 256, 60, 74, 876, 21, 1570, 83, 428, 7318, 15, 74, 475, 256, 60, 74, 876, 21, 1570, 74, 28, 187, 50254, 50274, 82, 876, 20, 15, 74, 426, 7318, 15, 83, 475, 256, 60, 74, 876, 21, 1570, 74, 559, 7318, 15, 74, 475, 256, 60, 74, 876, 21, 62, 964, 83, 28, 1380, 1157, 40280, 749, 296, 187, 50254, 50274, 82, 876, 19, 15, 83, 426, 789, 60, 74, 876, 20, 1570, 83, 559, 2805, 876, 20, 15, 83, 28, 187, 50254, 50274, 82, 876, 19, 15, 74, 426, 789, 60, 891, 876, 20, 1570, 74, 559, 2805, 876, 20, 15, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50254, 50274, 74, 876, 22, 426, 480, 83, 559, 480, 475, 268, 64, 4528, 18, 28, 187, 50254, 50274, 82, 876, 21, 15, 83, 426, 34795, 15, 83, 475, 268, 60, 74, 876, 22, 1570, 83, 428, 34795, 15, 74, 475, 268, 60, 74, 876, 22, 1570, 74, 28, 187, 50254, 50274, 82, 876, 21, 15, 74, 426, 34795, 15, 83, 475, 268, 60, 74, 876, 22, 1570, 74, 559, 34795, 15, 74, 475, 268, 60, 74, 876, 22, 62, 964, 83, 28, 1380, 1157, 40280, 749, 296, 187, 50254, 50274, 82, 876, 18, 15, 83, 426, 2805, 876, 19, 15, 83, 428, 2805, 876, 21, 15, 83, 28, 187, 50254, 50274, 82, 876, 18, 15, 74, 426, 2805, 876, 19, 15, 74, 428, 2805, 876, 21, 15, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50254, 50274, 1601, 60, 74, 876, 19, 1570, 83, 426, 2805, 876, 18, 15, 83, 28, 187, 50254, 50274, 1601, 60, 74, 876, 19, 1570, 74, 426, 2805, 876, 18, 15, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50254, 50274, 3122, 418, 1518, 27, 1738, 187, 50254, 94, 187, 50258, 94, 187, 50258, 3122, 418, 16899, 27, 1738, 187, 50262, 94, 187, 50262, 3122, 8247, 4979, 9216, 11000, 604, 28281, 46, 20604, 5473, 35, 5983, 1738, 187, 50262, 338, 313, 300, 2135, 10, 187, 50262, 92, 187, 50258, 68, 25460, 87, 64, 1587, 47, 995, 295, 13, 708, 5173, 13, 708, 68, 64, 67, 19, 13, 708, 24987, 60, 24987, 64, 10946, 1092, 42651, 24987, 13, 708, 1601, 60, 18, 1092, 708, 68, 876, 18, 13, 708, 68, 64, 67, 18, 13, 708, 1601, 20197, 79, 559, 337, 1092, 708, 68, 876, 18, 558, 187, 50258, 261, 3373, 426, 374, 28, 187, 50258, 74, 423, 426, 475, 79, 28, 187, 50262, 94, 187, 50262, 7271, 187, 50262, 92, 187, 50258, 261, 3373, 426, 337, 28, 187, 50258, 74, 423, 426, 5139, 28, 187, 50262, 94, 187, 50262, 3122, 27671, 285, 4311, 9216, 11000, 715, 5084, 273, 21218, 1738, 187, 50262, 89, 4090, 426, 470, 15, 71, 28, 187, 50262, 74, 876, 18, 426, 891, 423, 28, 187, 50262, 1542, 313, 75, 83, 426, 337, 28, 187, 50254, 75, 83, 11049, 891, 876, 18, 28, 187, 50254, 3424, 75, 83, 10, 187, 50262, 92, 187, 50258, 3122, 37696, 21713, 1738, 187, 50258, 74, 876, 19, 426, 313, 261, 3373, 428, 337, 10, 475, 475, 79, 559, 480, 83, 28, 187, 50258, 83, 876, 20, 426, 1269, 4090, 28, 187, 50258, 83, 876, 21, 426, 313, 83, 876, 18, 426, 789, 60, 74, 876, 19, 1570, 83, 13, 269, 19, 68, 64, 5375, 9, 83, 876, 18, 1228, 559, 313, 391, 876, 19, 426, 391, 64, 35690, 6395, 1601, 15830, 261, 3373, 428, 337, 10, 475, 475, 79, 559, 480, 83, 6660, 269, 19, 68, 64, 5375, 9, 391, 876, 19, 4027, 1380, 1157, 40280, 749, 296, 187, 50258, 89, 4090, 426, 2781, 9, 83, 876, 20, 13, 83, 876, 21, 558, 187, 50258, 3122, 418, 14256, 27, 1738, 187, 50262, 94, 187, 50262, 338, 313, 89, 4090, 2239, 4389, 1222, 10, 187, 50262, 92, 187, 50258, 16306, 426, 337, 15, 71, 1227, 1269, 4090, 28, 187, 50258, 74, 876, 18, 426, 891, 423, 28, 187, 50258, 1542, 313, 75, 83, 426, 337, 28, 187, 50254, 50274, 75, 83, 11049, 891, 876, 18, 28, 187, 50254, 50274, 3424, 75, 83, 10, 187, 50258, 92, 187, 50254, 74, 876, 19, 426, 480, 83, 559, 26332, 304, 475, 362, 83, 64, 4528, 18, 28, 187, 50254, 74, 876, 20, 426, 313, 261, 3373, 428, 337, 10, 475, 475, 79, 559, 480, 83, 28, 187, 50254, 82, 876, 18, 15, 83, 426, 14712, 475, 789, 60, 74, 876, 20, 1570, 83, 28, 187, 50254, 82, 876, 18, 15, 74, 426, 14712, 475, 789, 60, 891, 876, 20, 1570, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50254, 24987, 60, 74, 876, 19, 1570, 83, 426, 2805, 876, 18, 15, 83, 28, 187, 50254, 24987, 60, 74, 876, 19, 1570, 74, 426, 2805, 876, 18, 15, 74, 28, 1380, 1157, 40280, 749, 296, 187, 50254, 3122, 418, 17569, 27, 1738, 187, 50258, 94, 187, 50262, 94, 187, 50262, 7271, 187, 50262, 92, 187, 50258, 74, 423, 426, 470, 28, 187, 50262, 94, 187, 50262, 74, 876, 18, 426, 475, 79, 28, 187, 50262, 1542, 313, 75, 83, 426, 891, 423, 559, 337, 28, 187, 50254, 75, 83, 11049, 891, 876, 18, 28, 187, 50254, 3424, 75, 83, 10, 187, 50262, 92, 187, 50258, 74, 876, 19, 426, 480, 83, 559, 26332, 304, 475, 362, 83, 64, 4528, 18, 28, 187, 50258, 24987, 60, 74, 876, 19, 1570, 83, 426, 470, 15, 71, 28, 187, 50258, 24987, 60, 74, 876, 19, 1570, 74, 426, 470, 15, 71, 28, 1380, 1157, 40280, 749, 296, 187, 50258, 3122, 418, 14028, 27, 1738, 187, 50262, 94, 187, 50266, 94, 187, 45, 9519, 27, 187, 50266, 28, 187, 50270, 94, 187, 50274, 94, 187, 50274, 2309, 470, 28, 187, 50274, 3122, 8072, 273, 7403, 7538, 12548, 1738, 187, 94, 187, 3122, 45830, 463, 16788, 64, 1738, 187 ]
/* ../netlib/ctgevc.f -- translated by f2c (version 20100827). You must link the resulting object file with libf2c: on Microsoft Windows system, link with libf2c.lib; on Linux or Unix systems, link with .../path/to/libf2c.a -lm or, if you install libf2c.a in a standard place, with -lf2c -lm -- in that order, at the end of the command line, as in cc *.o -lf2c -lm Source for libf2c is in /netlib/f2c/libf2c.zip, e.g., http://www.netlib.org/f2c/libf2c.zip */ #include "FLA_f2c.h" /* Table of constant values */ static complex c_b1 = { 0.f,0.f } ; static complex c_b2 = { 1.f,0.f } ; static integer c__1 = 1; /* > \brief \b CTGEVC */ /* =========== DOCUMENTATION =========== */ /* Online html documentation available at */ /* http://www.netlib.org/lapack/explore-html/ */ /* > \htmlonly */ /* > Download CTGEVC + dependencies */ /* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/ctgevc. f"> */ /* > [TGZ]</a> */ /* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/ctgevc. f"> */ /* > [ZIP]</a> */ /* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/ctgevc. f"> */ /* > [TXT]</a> */ /* > \endhtmlonly */ /* Definition: */ /* =========== */ /* SUBROUTINE CTGEVC( SIDE, HOWMNY, SELECT, N, S, LDS, P, LDP, VL, */ /* LDVL, VR, LDVR, MM, M, WORK, RWORK, INFO ) */ /* .. Scalar Arguments .. */ /* CHARACTER HOWMNY, SIDE */ /* INTEGER INFO, LDP, LDS, LDVL, LDVR, M, MM, N */ /* .. */ /* .. Array Arguments .. */ /* LOGICAL SELECT( * ) */ /* REAL RWORK( * ) */ /* COMPLEX P( LDP, * ), S( LDS, * ), VL( LDVL, * ), */ /* $ VR( LDVR, * ), WORK( * ) */ /* .. */ /* > \par Purpose: */ /* ============= */ /* > */ /* > \verbatim */ /* > */ /* > CTGEVC computes some or all of the right and/or left eigenvectors of */ /* > a pair of complex matrices (S,P), where S and P are upper triangular. */ /* > Matrix pairs of this type are produced by the generalized Schur */ /* > factorization of a complex matrix pair (A,B): */ /* > */ /* > A = Q*S*Z**H, B = Q*P*Z**H */ /* > */ /* > as computed by CGGHRD + CHGEQZ. */ /* > */ /* > The right eigenvector x and the left eigenvector y of (S,P) */ /* > corresponding to an eigenvalue w are defined by: */ /* > */ /* > S*x = w*P*x, (y**H)*S = w*(y**H)*P, */ /* > */ /* > where y**H denotes the conjugate tranpose of y. */ /* > The eigenvalues are not input to this routine, but are computed */ /* > directly from the diagonal elements of S and P. */ /* > */ /* > This routine returns the matrices X and/or Y of right and left */ /* > eigenvectors of (S,P), or the products Z*X and/or Q*Y, */ /* > where Z and Q are input matrices. */ /* > If Q and Z are the unitary factors from the generalized Schur */ /* > factorization of a matrix pair (A,B), then Z*X and Q*Y */ /* > are the matrices of right and left eigenvectors of (A,B). */ /* > \endverbatim */ /* Arguments: */ /* ========== */ /* > \param[in] SIDE */ /* > \verbatim */ /* > SIDE is CHARACTER*1 */ /* > = 'R': compute right eigenvectors only; */ /* > = 'L': compute left eigenvectors only; */ /* > = 'B': compute both right and left eigenvectors. */ /* > \endverbatim */ /* > */ /* > \param[in] HOWMNY */ /* > \verbatim */ /* > HOWMNY is CHARACTER*1 */ /* > = 'A': compute all right and/or left eigenvectors; */ /* > = 'B': compute all right and/or left eigenvectors, */ /* > backtransformed by the matrices in VR and/or VL; */ /* > = 'S': compute selected right and/or left eigenvectors, */ /* > specified by the logical array SELECT. */ /* > \endverbatim */ /* > */ /* > \param[in] SELECT */ /* > \verbatim */ /* > SELECT is LOGICAL array, dimension (N) */ /* > If HOWMNY='S', SELECT specifies the eigenvectors to be */ /* > computed. The eigenvector corresponding to the j-th */ /* > eigenvalue is computed if SELECT(j) = .TRUE.. */ /* > Not referenced if HOWMNY = 'A' or 'B'. */ /* > \endverbatim */ /* > */ /* > \param[in] N */ /* > \verbatim */ /* > N is INTEGER */ /* > The order of the matrices S and P. N >= 0. */ /* > \endverbatim */ /* > */ /* > \param[in] S */ /* > \verbatim */ /* > S is COMPLEX array, dimension (LDS,N) */ /* > The upper triangular matrix S from a generalized Schur */ /* > factorization, as computed by CHGEQZ. */ /* > \endverbatim */ /* > */ /* > \param[in] LDS */ /* > \verbatim */ /* > LDS is INTEGER */ /* > The leading dimension of array S. LDS >= max(1,N). */ /* > \endverbatim */ /* > */ /* > \param[in] P */ /* > \verbatim */ /* > P is COMPLEX array, dimension (LDP,N) */ /* > The upper triangular matrix P from a generalized Schur */ /* > factorization, as computed by CHGEQZ. P must have real */ /* > diagonal elements. */ /* > \endverbatim */ /* > */ /* > \param[in] LDP */ /* > \verbatim */ /* > LDP is INTEGER */ /* > The leading dimension of array P. LDP >= max(1,N). */ /* > \endverbatim */ /* > */ /* > \param[in,out] VL */ /* > \verbatim */ /* > VL is COMPLEX array, dimension (LDVL,MM) */ /* > On entry, if SIDE = 'L' or 'B' and HOWMNY = 'B', VL must */ /* > contain an N-by-N matrix Q (usually the unitary matrix Q */ /* > of left Schur vectors returned by CHGEQZ). */ /* > On exit, if SIDE = 'L' or 'B', VL contains: */ /* > if HOWMNY = 'A', the matrix Y of left eigenvectors of (S,P); */ /* > if HOWMNY = 'B', the matrix Q*Y; */ /* > if HOWMNY = 'S', the left eigenvectors of (S,P) specified by */ /* > SELECT, stored consecutively in the columns of */ /* > VL, in the same order as their eigenvalues. */ /* > Not referenced if SIDE = 'R'. */ /* > \endverbatim */ /* > */ /* > \param[in] LDVL */ /* > \verbatim */ /* > LDVL is INTEGER */ /* > The leading dimension of array VL. LDVL >= 1, and if */ /* > SIDE = 'L' or 'l' or 'B' or 'b', LDVL >= N. */ /* > \endverbatim */ /* > */ /* > \param[in,out] VR */ /* > \verbatim */ /* > VR is COMPLEX array, dimension (LDVR,MM) */ /* > On entry, if SIDE = 'R' or 'B' and HOWMNY = 'B', VR must */ /* > contain an N-by-N matrix Q (usually the unitary matrix Z */ /* > of right Schur vectors returned by CHGEQZ). */ /* > On exit, if SIDE = 'R' or 'B', VR contains: */ /* > if HOWMNY = 'A', the matrix X of right eigenvectors of (S,P); */ /* > if HOWMNY = 'B', the matrix Z*X; */ /* > if HOWMNY = 'S', the right eigenvectors of (S,P) specified by */ /* > SELECT, stored consecutively in the columns of */ /* > VR, in the same order as their eigenvalues. */ /* > Not referenced if SIDE = 'L'. */ /* > \endverbatim */ /* > */ /* > \param[in] LDVR */ /* > \verbatim */ /* > LDVR is INTEGER */ /* > The leading dimension of the array VR. LDVR >= 1, and if */ /* > SIDE = 'R' or 'B', LDVR >= N. */ /* > \endverbatim */ /* > */ /* > \param[in] MM */ /* > \verbatim */ /* > MM is INTEGER */ /* > The number of columns in the arrays VL and/or VR. MM >= M. */ /* > \endverbatim */ /* > */ /* > \param[out] M */ /* > \verbatim */ /* > M is INTEGER */ /* > The number of columns in the arrays VL and/or VR actually */ /* > used to store the eigenvectors. If HOWMNY = 'A' or 'B', M */ /* > is set to N. Each selected eigenvector occupies one column. */ /* > \endverbatim */ /* > */ /* > \param[out] WORK */ /* > \verbatim */ /* > WORK is COMPLEX array, dimension (2*N) */ /* > \endverbatim */ /* > */ /* > \param[out] RWORK */ /* > \verbatim */ /* > RWORK is REAL array, dimension (2*N) */ /* > \endverbatim */ /* > */ /* > \param[out] INFO */ /* > \verbatim */ /* > INFO is INTEGER */ /* > = 0: successful exit. */ /* > < 0: if INFO = -i, the i-th argument had an illegal value. */ /* > \endverbatim */ /* Authors: */ /* ======== */ /* > \author Univ. of Tennessee */ /* > \author Univ. of California Berkeley */ /* > \author Univ. of Colorado Denver */ /* > \author NAG Ltd. */ /* > \date November 2011 */ /* > \ingroup complexGEcomputational */ /* ===================================================================== */ /* Subroutine */ int ctgevc_(char *side, char *howmny, logical *select, integer *n, complex *s, integer *lds, complex *p, integer *ldp, complex *vl, integer *ldvl, complex *vr, integer *ldvr, integer *mm, integer *m, complex *work, real *rwork, integer *info) { /* System generated locals */ integer p_dim1, p_offset, s_dim1, s_offset, vl_dim1, vl_offset, vr_dim1, vr_offset, i__1, i__2, i__3, i__4, i__5; real r__1, r__2, r__3, r__4, r__5, r__6; complex q__1, q__2, q__3, q__4; /* Builtin functions */ double r_imag(complex *); void r_cnjg(complex *, complex *); /* Local variables */ complex d__; integer i__, j; complex ca, cb; integer je, im, jr; real big; logical lsa, lsb; real ulp; complex sum; integer ibeg, ieig, iend; real dmin__; integer isrc; real temp; complex suma, sumb; real xmax, scale; logical ilall; integer iside; real sbeta; extern logical lsame_(char *, char *); extern /* Subroutine */ int cgemv_(char *, integer *, integer *, complex * , complex *, integer *, complex *, integer *, complex *, complex * , integer *); real small; logical compl; real anorm, bnorm; logical compr, ilbbad; real acoefa, bcoefa, acoeff; complex bcoeff; logical ilback; extern /* Subroutine */ int slabad_(real *, real *); real ascale, bscale; extern /* Complex */ VOID cladiv_(complex *, complex *, complex *); extern real slamch_(char *); complex salpha; real safmin; extern /* Subroutine */ int xerbla_(char *, integer *); real bignum; logical ilcomp; integer ihwmny; /* -- LAPACK computational routine (version 3.4.0) -- */ /* -- LAPACK is a software package provided by Univ. of Tennessee, -- */ /* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- */ /* November 2011 */ /* .. Scalar Arguments .. */ /* .. */ /* .. Array Arguments .. */ /* .. */ /* ===================================================================== */ /* .. Parameters .. */ /* .. */ /* .. Local Scalars .. */ /* .. */ /* .. External Functions .. */ /* .. */ /* .. External Subroutines .. */ /* .. */ /* .. Intrinsic Functions .. */ /* .. */ /* .. Statement Functions .. */ /* .. */ /* .. Statement Function definitions .. */ /* .. */ /* .. Executable Statements .. */ /* Decode and Test the input parameters */ /* Parameter adjustments */ --select; s_dim1 = *lds; s_offset = 1 + s_dim1; s -= s_offset; p_dim1 = *ldp; p_offset = 1 + p_dim1; p -= p_offset; vl_dim1 = *ldvl; vl_offset = 1 + vl_dim1; vl -= vl_offset; vr_dim1 = *ldvr; vr_offset = 1 + vr_dim1; vr -= vr_offset; --work; --rwork; /* Function Body */ if (lsame_(howmny, "A")) { ihwmny = 1; ilall = TRUE_; ilback = FALSE_; } else if (lsame_(howmny, "S")) { ihwmny = 2; ilall = FALSE_; ilback = FALSE_; } else if (lsame_(howmny, "B")) { ihwmny = 3; ilall = TRUE_; ilback = TRUE_; } else { ihwmny = -1; } if (lsame_(side, "R")) { iside = 1; compl = FALSE_; compr = TRUE_; } else if (lsame_(side, "L")) { iside = 2; compl = TRUE_; compr = FALSE_; } else if (lsame_(side, "B")) { iside = 3; compl = TRUE_; compr = TRUE_; } else { iside = -1; } *info = 0; if (iside < 0) { *info = -1; } else if (ihwmny < 0) { *info = -2; } else if (*n < 0) { *info = -4; } else if (*lds < max(1,*n)) { *info = -6; } else if (*ldp < max(1,*n)) { *info = -8; } if (*info != 0) { i__1 = -(*info); xerbla_("CTGEVC", &i__1); return 0; } /* Count the number of eigenvectors */ if (! ilall) { im = 0; i__1 = *n; for (j = 1; j <= i__1; ++j) { if (select[j]) { ++im; } /* L10: */ } } else { im = *n; } /* Check diagonal of B */ ilbbad = FALSE_; i__1 = *n; for (j = 1; j <= i__1; ++j) { if (r_imag(&p[j + j * p_dim1]) != 0.f) { ilbbad = TRUE_; } /* L20: */ } if (ilbbad) { *info = -7; } else if (compl && *ldvl < *n || *ldvl < 1) { *info = -10; } else if (compr && *ldvr < *n || *ldvr < 1) { *info = -12; } else if (*mm < im) { *info = -13; } if (*info != 0) { i__1 = -(*info); xerbla_("CTGEVC", &i__1); return 0; } /* Quick return if possible */ *m = im; if (*n == 0) { return 0; } /* Machine Constants */ safmin = slamch_("Safe minimum"); big = 1.f / safmin; slabad_(&safmin, &big); ulp = slamch_("Epsilon") * slamch_("Base"); small = safmin * *n / ulp; big = 1.f / small; bignum = 1.f / (safmin * *n); /* Compute the 1-norm of each column of the strictly upper triangular */ /* part of A and B to check for possible overflow in the triangular */ /* solver. */ i__1 = s_dim1 + 1; anorm = (r__1 = s[i__1].r, f2c_abs(r__1)) + (r__2 = r_imag(&s[s_dim1 + 1]), f2c_abs(r__2)); i__1 = p_dim1 + 1; bnorm = (r__1 = p[i__1].r, f2c_abs(r__1)) + (r__2 = r_imag(&p[p_dim1 + 1]), f2c_abs(r__2)); rwork[1] = 0.f; rwork[*n + 1] = 0.f; i__1 = *n; for (j = 2; j <= i__1; ++j) { rwork[j] = 0.f; rwork[*n + j] = 0.f; i__2 = j - 1; for (i__ = 1; i__ <= i__2; ++i__) { i__3 = i__ + j * s_dim1; rwork[j] += (r__1 = s[i__3].r, f2c_abs(r__1)) + (r__2 = r_imag(&s[i__ + j * s_dim1]), f2c_abs(r__2)); i__3 = i__ + j * p_dim1; rwork[*n + j] += (r__1 = p[i__3].r, f2c_abs(r__1)) + (r__2 = r_imag(& p[i__ + j * p_dim1]), f2c_abs(r__2)); /* L30: */ } /* Computing MAX */ i__2 = j + j * s_dim1; r__3 = anorm; r__4 = rwork[j] + ((r__1 = s[i__2].r, f2c_abs(r__1)) + ( r__2 = r_imag(&s[j + j * s_dim1]), f2c_abs(r__2))); // , expr subst anorm = max(r__3,r__4); /* Computing MAX */ i__2 = j + j * p_dim1; r__3 = bnorm; r__4 = rwork[*n + j] + ((r__1 = p[i__2].r, f2c_abs(r__1)) + (r__2 = r_imag(&p[j + j * p_dim1]), f2c_abs(r__2))); // , expr subst bnorm = max(r__3,r__4); /* L40: */ } ascale = 1.f / max(anorm,safmin); bscale = 1.f / max(bnorm,safmin); /* Left eigenvectors */ if (compl) { ieig = 0; /* Main loop over eigenvalues */ i__1 = *n; for (je = 1; je <= i__1; ++je) { if (ilall) { ilcomp = TRUE_; } else { ilcomp = select[je]; } if (ilcomp) { ++ieig; i__2 = je + je * s_dim1; i__3 = je + je * p_dim1; if ((r__2 = s[i__2].r, f2c_abs(r__2)) + (r__3 = r_imag(&s[je + je * s_dim1]), f2c_abs(r__3)) <= safmin && (r__1 = p[i__3].r, f2c_abs(r__1)) <= safmin) { /* Singular matrix pencil -- return unit eigenvector */ i__2 = *n; for (jr = 1; jr <= i__2; ++jr) { i__3 = jr + ieig * vl_dim1; vl[i__3].r = 0.f; vl[i__3].i = 0.f; // , expr subst /* L50: */ } i__2 = ieig + ieig * vl_dim1; vl[i__2].r = 1.f; vl[i__2].i = 0.f; // , expr subst goto L140; } /* Non-singular eigenvalue: */ /* Compute coefficients a and b in */ /* H */ /* y ( a A - b B ) = 0 */ /* Computing MAX */ i__2 = je + je * s_dim1; i__3 = je + je * p_dim1; r__4 = ((r__2 = s[i__2].r, f2c_abs(r__2)) + (r__3 = r_imag(&s[je + je * s_dim1]), f2c_abs(r__3))) * ascale; r__5 = (r__1 = p[i__3].r, f2c_abs(r__1)) * bscale; r__4 = max(r__4,r__5); // ; expr subst temp = 1.f / max(r__4,safmin); i__2 = je + je * s_dim1; q__2.r = temp * s[i__2].r; q__2.i = temp * s[i__2].i; // , expr subst q__1.r = ascale * q__2.r; q__1.i = ascale * q__2.i; // , expr subst salpha.r = q__1.r; salpha.i = q__1.i; // , expr subst i__2 = je + je * p_dim1; sbeta = temp * p[i__2].r * bscale; acoeff = sbeta * ascale; q__1.r = bscale * salpha.r; q__1.i = bscale * salpha.i; // , expr subst bcoeff.r = q__1.r; bcoeff.i = q__1.i; // , expr subst /* Scale to avoid underflow */ lsa = f2c_abs(sbeta) >= safmin && f2c_abs(acoeff) < small; lsb = (r__1 = salpha.r, f2c_abs(r__1)) + (r__2 = r_imag(&salpha), f2c_abs(r__2)) >= safmin && (r__3 = bcoeff.r, f2c_abs(r__3)) + (r__4 = r_imag(&bcoeff), f2c_abs(r__4)) < small; scale = 1.f; if (lsa) { scale = small / f2c_abs(sbeta) * min(anorm,big); } if (lsb) { /* Computing MAX */ r__3 = scale; r__4 = small / ((r__1 = salpha.r, f2c_abs(r__1)) + (r__2 = r_imag(&salpha), f2c_abs(r__2))) * min( bnorm,big); // , expr subst scale = max(r__3,r__4); } if (lsa || lsb) { /* Computing MIN */ /* Computing MAX */ r__5 = 1.f, r__6 = f2c_abs(acoeff); r__5 = max(r__5,r__6); r__6 = (r__1 = bcoeff.r, f2c_abs(r__1)) + (r__2 = r_imag(&bcoeff), f2c_abs(r__2)); // ; expr subst r__3 = scale; r__4 = 1.f / (safmin * max(r__5,r__6)); // , expr subst scale = min(r__3,r__4); if (lsa) { acoeff = ascale * (scale * sbeta); } else { acoeff = scale * acoeff; } if (lsb) { q__2.r = scale * salpha.r; q__2.i = scale * salpha.i; // , expr subst q__1.r = bscale * q__2.r; q__1.i = bscale * q__2.i; // , expr subst bcoeff.r = q__1.r; bcoeff.i = q__1.i; // , expr subst } else { q__1.r = scale * bcoeff.r; q__1.i = scale * bcoeff.i; // , expr subst bcoeff.r = q__1.r; bcoeff.i = q__1.i; // , expr subst } } acoefa = f2c_abs(acoeff); bcoefa = (r__1 = bcoeff.r, f2c_abs(r__1)) + (r__2 = r_imag(& bcoeff), f2c_abs(r__2)); xmax = 1.f; i__2 = *n; for (jr = 1; jr <= i__2; ++jr) { i__3 = jr; work[i__3].r = 0.f; work[i__3].i = 0.f; // , expr subst /* L60: */ } i__2 = je; work[i__2].r = 1.f; work[i__2].i = 0.f; // , expr subst /* Computing MAX */ r__1 = ulp * acoefa * anorm; r__2 = ulp * bcoefa * bnorm; r__1 = max(r__1,r__2); // ; expr subst dmin__ = max(r__1,safmin); /* H */ /* Triangular solve of (a A - b B) y = 0 */ /* H */ /* (rowwise in (a A - b B) , or columnwise in a A - b B) */ i__2 = *n; for (j = je + 1; j <= i__2; ++j) { /* Compute */ /* j-1 */ /* SUM = sum conjg( a*S(k,j) - b*P(k,j) )*x(k) */ /* k=je */ /* (Scale if necessary) */ temp = 1.f / xmax; if (acoefa * rwork[j] + bcoefa * rwork[*n + j] > bignum * temp) { i__3 = j - 1; for (jr = je; jr <= i__3; ++jr) { i__4 = jr; i__5 = jr; q__1.r = temp * work[i__5].r; q__1.i = temp * work[i__5].i; // , expr subst work[i__4].r = q__1.r; work[i__4].i = q__1.i; // , expr subst /* L70: */ } xmax = 1.f; } suma.r = 0.f; suma.i = 0.f; // , expr subst sumb.r = 0.f; sumb.i = 0.f; // , expr subst i__3 = j - 1; for (jr = je; jr <= i__3; ++jr) { r_cnjg(&q__3, &s[jr + j * s_dim1]); i__4 = jr; q__2.r = q__3.r * work[i__4].r - q__3.i * work[i__4] .i; q__2.i = q__3.r * work[i__4].i + q__3.i * work[i__4].r; // , expr subst q__1.r = suma.r + q__2.r; q__1.i = suma.i + q__2.i; // , expr subst suma.r = q__1.r; suma.i = q__1.i; // , expr subst r_cnjg(&q__3, &p[jr + j * p_dim1]); i__4 = jr; q__2.r = q__3.r * work[i__4].r - q__3.i * work[i__4] .i; q__2.i = q__3.r * work[i__4].i + q__3.i * work[i__4].r; // , expr subst q__1.r = sumb.r + q__2.r; q__1.i = sumb.i + q__2.i; // , expr subst sumb.r = q__1.r; sumb.i = q__1.i; // , expr subst /* L80: */ } q__2.r = acoeff * suma.r; q__2.i = acoeff * suma.i; // , expr subst r_cnjg(&q__4, &bcoeff); q__3.r = q__4.r * sumb.r - q__4.i * sumb.i; q__3.i = q__4.r * sumb.i + q__4.i * sumb.r; // , expr subst q__1.r = q__2.r - q__3.r; q__1.i = q__2.i - q__3.i; // , expr subst sum.r = q__1.r; sum.i = q__1.i; // , expr subst /* Form x(j) = - SUM / conjg( a*S(j,j) - b*P(j,j) ) */ /* with scaling and perturbation of the denominator */ i__3 = j + j * s_dim1; q__3.r = acoeff * s[i__3].r; q__3.i = acoeff * s[i__3].i; // , expr subst i__4 = j + j * p_dim1; q__4.r = bcoeff.r * p[i__4].r - bcoeff.i * p[i__4].i; q__4.i = bcoeff.r * p[i__4].i + bcoeff.i * p[i__4] .r; // , expr subst q__2.r = q__3.r - q__4.r; q__2.i = q__3.i - q__4.i; // , expr subst r_cnjg(&q__1, &q__2); d__.r = q__1.r; d__.i = q__1.i; // , expr subst if ((r__1 = d__.r, f2c_abs(r__1)) + (r__2 = r_imag(&d__), f2c_abs( r__2)) <= dmin__) { q__1.r = dmin__; q__1.i = 0.f; // , expr subst d__.r = q__1.r; d__.i = q__1.i; // , expr subst } if ((r__1 = d__.r, f2c_abs(r__1)) + (r__2 = r_imag(&d__), f2c_abs( r__2)) < 1.f) { if ((r__1 = sum.r, f2c_abs(r__1)) + (r__2 = r_imag(&sum), f2c_abs(r__2)) >= bignum * ((r__3 = d__.r, f2c_abs( r__3)) + (r__4 = r_imag(&d__), f2c_abs(r__4)))) { temp = 1.f / ((r__1 = sum.r, f2c_abs(r__1)) + (r__2 = r_imag(&sum), f2c_abs(r__2))); i__3 = j - 1; for (jr = je; jr <= i__3; ++jr) { i__4 = jr; i__5 = jr; q__1.r = temp * work[i__5].r; q__1.i = temp * work[i__5].i; // , expr subst work[i__4].r = q__1.r; work[i__4].i = q__1.i; // , expr subst /* L90: */ } xmax = temp * xmax; q__1.r = temp * sum.r; q__1.i = temp * sum.i; // , expr subst sum.r = q__1.r; sum.i = q__1.i; // , expr subst } } i__3 = j; q__2.r = -sum.r; q__2.i = -sum.i; // , expr subst cladiv_(&q__1, &q__2, &d__); work[i__3].r = q__1.r; work[i__3].i = q__1.i; // , expr subst /* Computing MAX */ i__3 = j; r__3 = xmax; r__4 = (r__1 = work[i__3].r, f2c_abs(r__1)) + ( r__2 = r_imag(&work[j]), f2c_abs(r__2)); // , expr subst xmax = max(r__3,r__4); /* L100: */ } /* Back transform eigenvector if HOWMNY='B'. */ if (ilback) { i__2 = *n + 1 - je; cgemv_("N", n, &i__2, &c_b2, &vl[je * vl_dim1 + 1], ldvl, &work[je], &c__1, &c_b1, &work[*n + 1], &c__1); isrc = 2; ibeg = 1; } else { isrc = 1; ibeg = je; } /* Copy and scale eigenvector into column of VL */ xmax = 0.f; i__2 = *n; for (jr = ibeg; jr <= i__2; ++jr) { /* Computing MAX */ i__3 = (isrc - 1) * *n + jr; r__3 = xmax; r__4 = (r__1 = work[i__3].r, f2c_abs(r__1)) + ( r__2 = r_imag(&work[(isrc - 1) * *n + jr]), f2c_abs( r__2)); // , expr subst xmax = max(r__3,r__4); /* L110: */ } if (xmax > safmin) { temp = 1.f / xmax; i__2 = *n; for (jr = ibeg; jr <= i__2; ++jr) { i__3 = jr + ieig * vl_dim1; i__4 = (isrc - 1) * *n + jr; q__1.r = temp * work[i__4].r; q__1.i = temp * work[ i__4].i; // , expr subst vl[i__3].r = q__1.r; vl[i__3].i = q__1.i; // , expr subst /* L120: */ } } else { ibeg = *n + 1; } i__2 = ibeg - 1; for (jr = 1; jr <= i__2; ++jr) { i__3 = jr + ieig * vl_dim1; vl[i__3].r = 0.f; vl[i__3].i = 0.f; // , expr subst /* L130: */ } } L140: ; } } /* Right eigenvectors */ if (compr) { ieig = im + 1; /* Main loop over eigenvalues */ for (je = *n; je >= 1; --je) { if (ilall) { ilcomp = TRUE_; } else { ilcomp = select[je]; } if (ilcomp) { --ieig; i__1 = je + je * s_dim1; i__2 = je + je * p_dim1; if ((r__2 = s[i__1].r, f2c_abs(r__2)) + (r__3 = r_imag(&s[je + je * s_dim1]), f2c_abs(r__3)) <= safmin && (r__1 = p[i__2].r, f2c_abs(r__1)) <= safmin) { /* Singular matrix pencil -- return unit eigenvector */ i__1 = *n; for (jr = 1; jr <= i__1; ++jr) { i__2 = jr + ieig * vr_dim1; vr[i__2].r = 0.f; vr[i__2].i = 0.f; // , expr subst /* L150: */ } i__1 = ieig + ieig * vr_dim1; vr[i__1].r = 1.f; vr[i__1].i = 0.f; // , expr subst goto L250; } /* Non-singular eigenvalue: */ /* Compute coefficients a and b in */ /* ( a A - b B ) x = 0 */ /* Computing MAX */ i__1 = je + je * s_dim1; i__2 = je + je * p_dim1; r__4 = ((r__2 = s[i__1].r, f2c_abs(r__2)) + (r__3 = r_imag(&s[je + je * s_dim1]), f2c_abs(r__3))) * ascale; r__5 = (r__1 = p[i__2].r, f2c_abs(r__1)) * bscale; r__4 = max(r__4,r__5); // ; expr subst temp = 1.f / max(r__4,safmin); i__1 = je + je * s_dim1; q__2.r = temp * s[i__1].r; q__2.i = temp * s[i__1].i; // , expr subst q__1.r = ascale * q__2.r; q__1.i = ascale * q__2.i; // , expr subst salpha.r = q__1.r; salpha.i = q__1.i; // , expr subst i__1 = je + je * p_dim1; sbeta = temp * p[i__1].r * bscale; acoeff = sbeta * ascale; q__1.r = bscale * salpha.r; q__1.i = bscale * salpha.i; // , expr subst bcoeff.r = q__1.r; bcoeff.i = q__1.i; // , expr subst /* Scale to avoid underflow */ lsa = f2c_abs(sbeta) >= safmin && f2c_abs(acoeff) < small; lsb = (r__1 = salpha.r, f2c_abs(r__1)) + (r__2 = r_imag(&salpha), f2c_abs(r__2)) >= safmin && (r__3 = bcoeff.r, f2c_abs(r__3)) + (r__4 = r_imag(&bcoeff), f2c_abs(r__4)) < small; scale = 1.f; if (lsa) { scale = small / f2c_abs(sbeta) * min(anorm,big); } if (lsb) { /* Computing MAX */ r__3 = scale; r__4 = small / ((r__1 = salpha.r, f2c_abs(r__1)) + (r__2 = r_imag(&salpha), f2c_abs(r__2))) * min( bnorm,big); // , expr subst scale = max(r__3,r__4); } if (lsa || lsb) { /* Computing MIN */ /* Computing MAX */ r__5 = 1.f, r__6 = f2c_abs(acoeff); r__5 = max(r__5,r__6); r__6 = (r__1 = bcoeff.r, f2c_abs(r__1)) + (r__2 = r_imag(&bcoeff), f2c_abs(r__2)); // ; expr subst r__3 = scale; r__4 = 1.f / (safmin * max(r__5,r__6)); // , expr subst scale = min(r__3,r__4); if (lsa) { acoeff = ascale * (scale * sbeta); } else { acoeff = scale * acoeff; } if (lsb) { q__2.r = scale * salpha.r; q__2.i = scale * salpha.i; // , expr subst q__1.r = bscale * q__2.r; q__1.i = bscale * q__2.i; // , expr subst bcoeff.r = q__1.r; bcoeff.i = q__1.i; // , expr subst } else { q__1.r = scale * bcoeff.r; q__1.i = scale * bcoeff.i; // , expr subst bcoeff.r = q__1.r; bcoeff.i = q__1.i; // , expr subst } } acoefa = f2c_abs(acoeff); bcoefa = (r__1 = bcoeff.r, f2c_abs(r__1)) + (r__2 = r_imag(& bcoeff), f2c_abs(r__2)); xmax = 1.f; i__1 = *n; for (jr = 1; jr <= i__1; ++jr) { i__2 = jr; work[i__2].r = 0.f; work[i__2].i = 0.f; // , expr subst /* L160: */ } i__1 = je; work[i__1].r = 1.f; work[i__1].i = 0.f; // , expr subst /* Computing MAX */ r__1 = ulp * acoefa * anorm; r__2 = ulp * bcoefa * bnorm; r__1 = max(r__1,r__2); // ; expr subst dmin__ = max(r__1,safmin); /* Triangular solve of (a A - b B) x = 0 (columnwise) */ /* WORK(1:j-1) contains sums w, */ /* WORK(j+1:JE) contains x */ i__1 = je - 1; for (jr = 1; jr <= i__1; ++jr) { i__2 = jr; i__3 = jr + je * s_dim1; q__2.r = acoeff * s[i__3].r; q__2.i = acoeff * s[i__3].i; // , expr subst i__4 = jr + je * p_dim1; q__3.r = bcoeff.r * p[i__4].r - bcoeff.i * p[i__4].i; q__3.i = bcoeff.r * p[i__4].i + bcoeff.i * p[i__4] .r; // , expr subst q__1.r = q__2.r - q__3.r; q__1.i = q__2.i - q__3.i; // , expr subst work[i__2].r = q__1.r; work[i__2].i = q__1.i; // , expr subst /* L170: */ } i__1 = je; work[i__1].r = 1.f; work[i__1].i = 0.f; // , expr subst for (j = je - 1; j >= 1; --j) { /* Form x(j) := - w(j) / d */ /* with scaling and perturbation of the denominator */ i__1 = j + j * s_dim1; q__2.r = acoeff * s[i__1].r; q__2.i = acoeff * s[i__1].i; // , expr subst i__2 = j + j * p_dim1; q__3.r = bcoeff.r * p[i__2].r - bcoeff.i * p[i__2].i; q__3.i = bcoeff.r * p[i__2].i + bcoeff.i * p[i__2] .r; // , expr subst q__1.r = q__2.r - q__3.r; q__1.i = q__2.i - q__3.i; // , expr subst d__.r = q__1.r; d__.i = q__1.i; // , expr subst if ((r__1 = d__.r, f2c_abs(r__1)) + (r__2 = r_imag(&d__), f2c_abs( r__2)) <= dmin__) { q__1.r = dmin__; q__1.i = 0.f; // , expr subst d__.r = q__1.r; d__.i = q__1.i; // , expr subst } if ((r__1 = d__.r, f2c_abs(r__1)) + (r__2 = r_imag(&d__), f2c_abs( r__2)) < 1.f) { i__1 = j; if ((r__1 = work[i__1].r, f2c_abs(r__1)) + (r__2 = r_imag( &work[j]), f2c_abs(r__2)) >= bignum * ((r__3 = d__.r, f2c_abs(r__3)) + (r__4 = r_imag(&d__), f2c_abs( r__4)))) { i__1 = j; temp = 1.f / ((r__1 = work[i__1].r, f2c_abs(r__1)) + ( r__2 = r_imag(&work[j]), f2c_abs(r__2))); i__1 = je; for (jr = 1; jr <= i__1; ++jr) { i__2 = jr; i__3 = jr; q__1.r = temp * work[i__3].r; q__1.i = temp * work[i__3].i; // , expr subst work[i__2].r = q__1.r; work[i__2].i = q__1.i; // , expr subst /* L180: */ } } } i__1 = j; i__2 = j; q__2.r = -work[i__2].r; q__2.i = -work[i__2].i; // , expr subst cladiv_(&q__1, &q__2, &d__); work[i__1].r = q__1.r; work[i__1].i = q__1.i; // , expr subst if (j > 1) { /* w = w + x(j)*(a S(*,j) - b P(*,j) ) with scaling */ i__1 = j; if ((r__1 = work[i__1].r, f2c_abs(r__1)) + (r__2 = r_imag( &work[j]), f2c_abs(r__2)) > 1.f) { i__1 = j; temp = 1.f / ((r__1 = work[i__1].r, f2c_abs(r__1)) + ( r__2 = r_imag(&work[j]), f2c_abs(r__2))); if (acoefa * rwork[j] + bcoefa * rwork[*n + j] >= bignum * temp) { i__1 = je; for (jr = 1; jr <= i__1; ++jr) { i__2 = jr; i__3 = jr; q__1.r = temp * work[i__3].r; q__1.i = temp * work[i__3].i; // , expr subst work[i__2].r = q__1.r; work[i__2].i = q__1.i; // , expr subst /* L190: */ } } } i__1 = j; q__1.r = acoeff * work[i__1].r; q__1.i = acoeff * work[i__1].i; // , expr subst ca.r = q__1.r; ca.i = q__1.i; // , expr subst i__1 = j; q__1.r = bcoeff.r * work[i__1].r - bcoeff.i * work[ i__1].i; q__1.i = bcoeff.r * work[i__1].i + bcoeff.i * work[i__1].r; // , expr subst cb.r = q__1.r; cb.i = q__1.i; // , expr subst i__1 = j - 1; for (jr = 1; jr <= i__1; ++jr) { i__2 = jr; i__3 = jr; i__4 = jr + j * s_dim1; q__3.r = ca.r * s[i__4].r - ca.i * s[i__4].i; q__3.i = ca.r * s[i__4].i + ca.i * s[i__4] .r; // , expr subst q__2.r = work[i__3].r + q__3.r; q__2.i = work[ i__3].i + q__3.i; // , expr subst i__5 = jr + j * p_dim1; q__4.r = cb.r * p[i__5].r - cb.i * p[i__5].i; q__4.i = cb.r * p[i__5].i + cb.i * p[i__5] .r; // , expr subst q__1.r = q__2.r - q__4.r; q__1.i = q__2.i - q__4.i; // , expr subst work[i__2].r = q__1.r; work[i__2].i = q__1.i; // , expr subst /* L200: */ } } /* L210: */ } /* Back transform eigenvector if HOWMNY='B'. */ if (ilback) { cgemv_("N", n, &je, &c_b2, &vr[vr_offset], ldvr, &work[1], &c__1, &c_b1, &work[*n + 1], &c__1); isrc = 2; iend = *n; } else { isrc = 1; iend = je; } /* Copy and scale eigenvector into column of VR */ xmax = 0.f; i__1 = iend; for (jr = 1; jr <= i__1; ++jr) { /* Computing MAX */ i__2 = (isrc - 1) * *n + jr; r__3 = xmax; r__4 = (r__1 = work[i__2].r, f2c_abs(r__1)) + ( r__2 = r_imag(&work[(isrc - 1) * *n + jr]), f2c_abs( r__2)); // , expr subst xmax = max(r__3,r__4); /* L220: */ } if (xmax > safmin) { temp = 1.f / xmax; i__1 = iend; for (jr = 1; jr <= i__1; ++jr) { i__2 = jr + ieig * vr_dim1; i__3 = (isrc - 1) * *n + jr; q__1.r = temp * work[i__3].r; q__1.i = temp * work[ i__3].i; // , expr subst vr[i__2].r = q__1.r; vr[i__2].i = q__1.i; // , expr subst /* L230: */ } } else { iend = 0; } i__1 = *n; for (jr = iend + 1; jr <= i__1; ++jr) { i__2 = jr + ieig * vr_dim1; vr[i__2].r = 0.f; vr[i__2].i = 0.f; // , expr subst /* L240: */ } } L250: ; } } return 0; /* End of CTGEVC */ } /* ctgevc_ */
214,397
Github
[ 9, 3182, 945, 346, 2184, 583, 2807, 187, 12723, 6101, 3806, 281, 945, 1060, 588, 320, 3033, 281, 346, 2184, 583, 3, 187, 9, 1059, 11, 6048, 2044, 18, 884, 10, 187, 50272, 9, 2044, 19, 21757, 945, 18, 1249, 10689, 187, 50276, 12723, 1292, 253, 5426, 273, 945, 18, 812, 417, 3730, 281, 945, 19, 187, 50276, 10 ]
(define var "goose") ;; Any reference to var here will be bound to "goose" (let* ((var1 10) (var2 (+ var1 12))) ;; But the definition of var1 could not refer to var2 )
214,398
Github
[ 3122, 187, 475, 50276, 16, 18102, 43, 991, 16, 20262, 16, 9252, 16, 15597, 14, 30928, 16, 8345, 16, 48406, 16, 18220, 9051, 23, 16, 35616, 16, 35, 744, 15, 4305, 187, 475, 187, 475, 50276, 20968, 313, 68, 10, 4748, 14, 7132, 380, 8684, 43, 991, 42849, 187, 475, 187, 475, 50276, 49124, 8821, 762, 253, 14325, 4637, 13, 11099, 374, 15, 17, 313, 783, 346, 17736, 3287, 187, 475, 50276, 5658, 778, 417, 897, 436, 1873, 3707, 275, 10276, 342, 253, 4637, 15, 187, 475, 50276, 1394, 778, 4044, 247, 3491, 273, 253, 4637, 387, 187, 475, 187, 475, 50272, 2413, 1358, 2700, 15, 8418, 15, 2061, 16, 17130, 16, 17821, 14, 19, 15, 17, 187, 475, 187, 475, 50276, 28645, 2424, 407, 7763, 1569, 390, 5821, 281, 275, 4028, 13, 3694, 187, 475, 50276, 45618, 762, 253, 4637, 310, 5939, 327, 271, 346, 1719, 4110, 3, 23440, 13, 187, 475, 50276, 24906, 7310, 15466, 4145, 22998, 3481, 9103, 19329, 13, 2057, 3890, 390, 10466, 15, 187, 475, 50276, 5035, 253, 4637, 323, 253, 2173, 3448, 13200, 15607, 285, 187, 475, 50276, 17465, 569, 762, 253, 4637, 15, 187, 1738, 187, 187, 18102, 43, 991, 15, 20062, 15, 26698, 9, 18102, 43, 991, 15, 11021, 43, 991, 9855, 15597, 14, 30928, 37594, 39, 1139, 10989, 9033, 15, 39, 1139, 6901, 15, 18102, 43, 991, 64, 18220, 9051, 23, 41194, 22, 2787, 938, 21382, 43523, 13, 1166, 13, 883, 1235, 13, 1540, 13, 740, 2759, 1092, 22, 2787, 1797, 21382, 30467, 13, 19631, 13, 41211, 13, 1047, 13, 41081, 1092, 22, 2787, 1423, 21382, 43523, 13, 1166, 13, 883, 1235, 13, 2082, 13, 740, 2227, 1092, 22, 2787, 1508, 21382, 30467, 13, 19332, 13, 41211, 13, 1047, 13, 41081, 1092, 22, 2787, 1348, 21382, 43523, 13, 1166, 13, 883, 1235, 13, 1540, 13, 740, 2227, 1092, 22, 2787, 1099, 21382, 50246, 13, 23546, 13, 41211, 13, 1047, 13, 41081, 1092, 22, 2787, 1731, 21382, 24, 1348, 13, 19332, 13, 883, 1235, 13, 1540, 13, 740, 2759, 1092, 22, 2787, 1630, 21382, 24, 1348, 13, 19631, 13, 883, 1235, 13, 1540, 13, 740, 2227, 1092, 22, 2787, 1619, 21382, 30467, 13, 17537, 13, 883, 1235, 13, 2082, 13, 740, 2227, 1092, 22, 2787, 1717, 21382, 30467, 13, 17537, 13, 883, 1235, 13, 1540, 13, 740, 2227, 1092, 22, 2787, 1229, 21382, 48793, 13, 2950, 13, 883, 1235, 13, 1540, 13, 740, 2759, 1092, 22, 2787, 2405, 21382, 48793, 13, 2950, 13, 883, 1235, 13, 2504, 13, 7749, 19, 1092, 22, 2787, 1237, 21382, 30467, 13, 1036, 13, 48828, 13, 18, 13, 33031, 1092, 22, 2787, 1610, 21382, 41680, 13, 1166, 13, 49758, 13, 1549, 13, 28339, 1092, 22, 2787, 1706, 21382, 30467, 6567, 18, 13, 48828, 13, 1540, 13, 38503, 1092, 22, 2787, 1671, 21382, 28057, 13, 1348, 13, 34240, 13, 3208, 13, 43547, 1092, 22, 2787, 1812, 21382, 47507, 13, 2691, 13, 50246, 13, 4148, 13, 44647, 1092, 22, 2787, 1787, 21382, 47507, 13, 2691, 13, 50246, 13, 4196, 13, 44647, 1092, 22, 2787, 1839, 21382, 22330, 13, 9519, 13, 41211, 13, 3571, 13, 39849, 1092, 22, 2787, 1867, 21382, 45386, 13, 11395, 13, 34240, 13, 3141, 13, 49475, 1092, 22, 2787, 1449, 21382, 30592, 13, 25, 13, 37493, 13, 2082, 13, 35400, 1092, 22, 2787, 3156, 21382, 34237, 13, 25, 13, 883, 1235, 13, 2082, 13, 740, 2759, 1092, 22, 2787, 2945, 21382, 44034, 13, 17, 13, 48923, 13, 2417, 13, 29462, 1092, 22, 2787, 3079, 21382, 22330, 13, 21361, 13, 33899, 13, 13482, 13, 16129, 1092, 22, 2787, 2031, 21382, 22330, 13, 20520, 13, 41211, 13, 11838, 13, 34230, 1092, 22, 2787, 1857, 21382, 26890, 13, 1166, 13, 50246, 13, 1540, 13, 30967, 1092, 22, 2787, 2950, 21382, 26890, 13, 1036, 13, 50246, 13, 1540, 13, 30967, 1092, 22, 2787, 2504, 21382, 29251, 13, 1036, 13, 50246, 13, 1540, 13, 30967, 1092, 22, 2787, 2385, 21382, 26890, 13, 1036, 13, 50246, 13, 1540, 13, 30967, 1092, 22, 2787, 2537, 21382, 47608, 13, 17605, 13, 22, 2090, 13, 1540, 13, 49268, 1092, 22, 2787, 1235, 21382, 30072, 6567, 12852, 13, 37493, 13, 1540, 13, 25, 1619, 1092, 3011, 42232, 21382, 43171, 6567, 1237, 13, 37493, 13, 1540, 13, 25, 1717, 1092, 3011, 39621, 21382, 47608, 13, 16899, 13, 37493, 13, 1540, 13, 25, 1717, 1092, 3011, 41892, 21382, 18550, 13, 20, 13, 37493, 13, 1540, 13, 25, 1717, 1092, 3011, 41643, 21382, 29790, 13, 3031, 13, 37493, 13, 4196, 13, 35304, 1092, 3011, 31722, 21382, 29790, 13, 3031, 13, 37493, 13, 4196, 13, 35304, 1092, 3011, 36176, 21382, 41830, 13, 13210, 13, 883, 1235, 13, 1540, 13, 740, 2227, 1092, 3011, 34920, 21382, 47017, 13, 13210, 13, 883, 1235, 13, 1540, 13, 740, 2227, 1092, 3011, 34240, 21382, 47507, 13, 2227, 13, 37493, 13, 4196, 13, 35304, 1092, 3011, 35461, 21382, 47507, 13, 2691, 13, 37493, 13, 4196, 13, 35323, 1092, 22, 2787, 1549, 21382, 29790, 13, 3031, 13, 37493, 13, 4196, 13, 35304, 1092, 22, 2787, 3832, 21382, 29790, 13, 3031, 13, 37493, 13, 4196, 13, 35323, 1092, 22, 2787, 3763, 21382, 49268, 13, 14783, 13, 37493, 13, 1540, 13, 25, 1619, 1092, 22, 2787, 3571, 21382, 49268, 13, 14783, 13, 37493, 13, 1540, 13, 25, 1619, 1092, 22, 2787, 1540, 21382, 33291, 6567, 18, 13, 37493, 13, 2082, 13, 25, 1717, 1092, 22, 2787, 2082, 21382, 47608, 6567, 18, 13, 740, 1423, 13, 2090, 13, 41892, 1092, 22, 2787, 2526, 21382, 5388, 13, 16899, 13, 740, 1423, 13, 2358, 13, 41892, 1092, 22, 2787, 2251, 21382, 47608, 13, 17605, 13, 883, 1235, 13, 2082, 13, 740, 2759, 1092, 22, 2787, 2358, 21382, 24, 746, 13, 13482, 13, 37493, 13, 1540, 13, 25, 1717, 1092, 22, 2787, 2090, 21382, 47608, 13, 1348, 13, 37493, 13, 2082, 13, 25, 1619, 1092, 22, 2787, 1967, 21382, 24, 746, 13, 17161, 13, 37493, 13, 1540, 13, 25, 1619, 1092, 22, 2787, 3677, 21382, 24, 746, 13, 13482, 13, 37493, 13, 1237, 13, 38978, 1092, 22, 2787, 3547, 21382, 22330, 13, 1166, 13, 28943, 13, 1540, 13, 30169, 1092, 22, 2787, 3655, 21382, 24, 3156, 13, 20360, 13, 28943, 13, 3011, 13, 25592, 1092, 22, 2787, 3566, 21382, 24, 1348, 13, 17537, 13, 28943, 13, 3571, 13, 31110, 62, 9897, 18102, 43, 991, 15, 34, 20262, 15, 2799, 26626, 9, 18102, 43, 991, 15, 11021, 43, 991, 9855, 15597, 14, 30928, 37594, 4909, 13694, 33229, 16, 18220, 9051, 23, 16, 35616, 16, 35, 744, 15, 4305, 3287, 187 ]
/* * /MathJax/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/Bold.js * * Copyright (c) 2009-2017 The MathJax Consortium * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_WinIE6,{57920:[518,17,1150,64,1084],57921:[694,193,575,14,561],57922:[518,17,1150,65,1085],57923:[694,194,575,14,561],57924:[518,17,1150,64,1085],57925:[767,267,575,14,561],57926:[724,194,1150,64,1084],57927:[724,193,1150,64,1085],57928:[694,224,1150,65,1085],57929:[694,224,1150,64,1085],57930:[547,46,1150,64,1084],57931:[547,46,1150,47,1102],57932:[694,16,639,1,640],57933:[710,17,628,60,657],57934:[694,-1,639,64,574],57935:[686,24,958,56,901],57936:[587,86,767,97,670],57937:[587,86,767,96,670],57938:[750,250,575,63,511],57939:[820,180,958,78,988],57940:[451,8,894,65,830],57941:[452,8,1150,65,1084],57942:[714,0,722,55,676],57943:[750,249,319,129,190],57944:[750,248,575,145,430],57945:[604,17,767,64,702],57946:[604,16,767,64,702],57947:[603,16,767,64,702],57948:[604,16,767,64,702],57949:[711,211,569,64,632],57950:[391,-109,894,64,828],57951:[524,-32,894,64,829],57952:[711,210,894,64,829],57953:[505,3,894,64,829],57954:[697,199,894,96,797],57955:[697,199,894,96,797],57956:[617,116,1150,64,1085],57957:[618,116,1150,64,1085],57958:[587,85,894,96,797],57959:[587,86,894,96,796],57960:[697,199,894,96,797],57961:[697,199,894,96,796],57962:[632,132,894,64,828],57963:[632,132,894,64,828],57964:[693,-1,894,65,829],57965:[711,-1,1022,69,953],57966:[500,210,1022,68,953],57967:[711,211,1150,65,1084],57968:[719,129,894,64,829],57969:[711,24,894,65,828],57970:[719,154,894,64,828],57971:[719,129,894,32,861],57972:[750,17,447,64,381],57973:[741,223,447,57,389],57974:[724,224,447,63,382]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/WinIE6/Regular/Bold.js");
214,399
Github
[ 3122, 187, 475, 500, 35, 1730, 13, 9067, 273, 23932, 7489, 12269, 15, 187, 475, 8283, 6247, 13, 4410, 23676, 13, 3690, 904, 285, 2060, 24781, 187, 475, 347, 4860, 407, 253, 1214, 7582, 14610, 15, 2594, 253, 9451, 15, 10134, 1873, 275, 253, 187, 475, 3268, 323, 247, 2120, 16485, 273, 2060, 24781, 15, 187, 475, 187, 475, 831, 310, 1959, 3694, 28, 368, 476, 25529, 352, 285, 16, 263, 10007, 352, 187, 475, 762, 253, 2426, 273, 253, 11963, 32425, 4214, 5259, 4637, 347, 187, 475, 3863, 407, 253, 7648, 9107, 6807, 28, 2057, 2715, 374, 15, 18, 273, 187, 475, 253, 4637, 13, 390, 313, 255, 634, 4500, 10, 667, 1996, 2715, 15, 187, 475, 187, 475, 831, 3694, 310, 5939, 275, 253, 3524, 326, 352, 588, 320, 4217, 13, 187, 475, 533, 15002, 9103, 23181, 28, 1293, 1014, 253, 10466, 17529, 273, 187, 475, 20863, 390, 20524, 6651, 329, 20383, 20103, 15, 2594, 253, 11963, 187, 475, 32425, 4214, 5259, 4637, 323, 625, 4278, 15, 187, 475, 187, 475, 1422, 943, 452, 2959, 247, 3491, 273, 253, 11963, 32425, 4214, 5259, 187, 475, 4637, 2112, 342, 436, 3694, 28, 604, 417, 13, 3630, 281, 253, 7648, 187, 475, 9107, 6807, 13, 3690, 904, 8319, 17179, 659, 13, 17538, 32370, 13, 9693, 13, 6908, 187, 475, 470, 49352, 14, 39677, 5106, 13, 390, 923, 253, 401, 14853, 2670, 27, 3944, 1358, 2700, 15, 3671, 71, 15, 2061, 15, 187, 1738, 187, 187, 10708, 4955, 15, 27686, 1730, 15, 284, 15, 498, 49591, 15, 2050, 22153, 4029, 15, 2377, 10394, 28, 187, 187, 2948, 4955, 15, 2050, 22153, 4029, 15, 15554, 28, 187, 2948, 4955, 15, 2050, 22153, 4029, 15, 2388, 37555, 15, 19168, 6504, 17516, 28, 187, 2948, 4955, 15, 27686, 1730, 15, 284, 15, 498, 49591, 15, 19879, 15, 11594, 35680, 36169, 28, 187, 187, 6930, 187, 475, 12138, 6854, 323, 17082, 1754, 327, 247, 11556, 734, 17516, 15, 187, 475, 1214, 7582, 5171, 24770, 15354, 187, 1738, 187, 4387, 966, 41342, 6504, 17516, 17547, 35680, 29, 42, 8725, 49281, 6504, 17516, 31, 8725, 41342, 17547, 35680, 29, 42, 31, 551, 535, 50274, 9486, 2457, 6550, 29, 42, 31, 734, 17516, 4947, 28, 535, 50274, 4387, 41342, 6504, 17516, 17547, 35680, 9, 11594, 35680, 36169, 29, 15554, 14277, 13, 3736, 5064, 19599, 641, 13, 6550, 29, 42, 31, 734, 17516, 4947, 10, 551, 187, 50270, 12185, 9, 9993, 21176, 558, 187, 50270, 2520, 15, 2388, 17516, 4947, 426, 734, 17516, 4947, 28, 187, 50274, 94, 535, 50274, 33, 9677, 187, 50274, 4387, 309, 4647, 9, 15554, 14277, 13, 23983, 11556, 10, 551, 187, 50270, 2309, 11556, 15, 788, 42378, 15554, 5023, 788, 19168, 6504, 17516, 26268, 5023, 8606, 6504, 17516, 7992, 1946, 9, 2520, 15, 2388, 17516, 4947, 558, 187, 50274, 94, 187, 94, 187 ]
/* * JBoss, Home of Professional Open Source. * Copyright 2019, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.jboss.as.clustering.infinispan.subsystem; import org.infinispan.Cache; import org.infinispan.interceptors.AsyncInterceptor; import org.jboss.as.clustering.controller.FunctionExecutorRegistry; /** * Executor for metrics based on a cache interceptor. * @author Paul Ferraro */ public class CacheInterceptorOperationExecutor<I extends AsyncInterceptor> extends CacheOperationExecutor<I> { private final Class<I> interceptorClass; public CacheInterceptorOperationExecutor(FunctionExecutorRegistry<Cache<?, ?>> executors, Class<I> interceptorClass) { super(executors); this.interceptorClass = interceptorClass; } @Override public I apply(Cache<?, ?> cache) { return cache.getAdvancedCache().getAsyncInterceptorChain().findInterceptorExtending(this.interceptorClass); } }