HttpWebRequestTest.cs 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512
  1. //
  2. // HttpWebRequestTest.cs - NUnit Test Cases for System.Net.HttpWebRequest
  3. //
  4. // Authors:
  5. // Lawrence Pit ([email protected])
  6. // Martin Willemoes Hansen ([email protected])
  7. // Gonzalo Paniagua Javier ([email protected])
  8. //
  9. // (C) 2003 Martin Willemoes Hansen
  10. // Copyright (c) 2005 Novell, Inc. (http://www.novell.com
  11. //
  12. using NUnit.Framework;
  13. using System;
  14. using System.Collections;
  15. using System.Collections.Specialized;
  16. using System.Globalization;
  17. using System.IO;
  18. using System.Net;
  19. using System.Net.Sockets;
  20. using System.Security.Cryptography;
  21. using System.Security.Cryptography.X509Certificates;
  22. using System.Text;
  23. using System.Threading;
  24. #if !TARGET_JVM
  25. using Mono.Security.Authenticode;
  26. using Mono.Security.Protocol.Tls;
  27. #endif
  28. namespace MonoTests.System.Net
  29. {
  30. [TestFixture]
  31. public class HttpWebRequestTest
  32. {
  33. [Test]
  34. public void Proxy_Null ()
  35. {
  36. HttpWebRequest req = (HttpWebRequest) WebRequest.Create ("http://www.google.com");
  37. Assert.IsNotNull (req.Proxy, "#1");
  38. #if NET_2_0
  39. req.Proxy = null;
  40. Assert.IsNull (req.Proxy, "#2");
  41. #else
  42. try {
  43. req.Proxy = null;
  44. Assert.Fail ("#2");
  45. } catch (ArgumentNullException ex) {
  46. Assert.AreEqual (typeof (ArgumentNullException), ex.GetType (), "#3");
  47. Assert.IsNull (ex.InnerException, "#4");
  48. Assert.IsNotNull (ex.Message, "#5");
  49. Assert.IsNotNull (ex.ParamName, "#6");
  50. Assert.AreEqual ("value", ex.ParamName, "#7");
  51. }
  52. #endif
  53. }
  54. [Test]
  55. [Category("InetAccess")]
  56. #if TARGET_JVM
  57. [Ignore ("NMA - wrong cookies number returned")]
  58. #endif
  59. public void Sync ()
  60. {
  61. HttpWebRequest req = (HttpWebRequest) WebRequest.Create ("http://www.google.com");
  62. Assertion.AssertNotNull ("req:If Modified Since: ", req.IfModifiedSince);
  63. req.UserAgent = "MonoClient v1.0";
  64. Assertion.AssertEquals ("req Header 1", "User-Agent", req.Headers.GetKey (0));
  65. Assertion.AssertEquals ("req Header 2", "MonoClient v1.0", req.Headers.Get (0));
  66. HttpWebResponse res = (HttpWebResponse) req.GetResponse ();
  67. Assertion.AssertEquals ("res:HttpStatusCode: ", "OK", res.StatusCode.ToString ());
  68. Assertion.AssertEquals ("res:HttpStatusDescription: ", "OK", res.StatusDescription);
  69. Assertion.AssertEquals ("res Header 1", "text/html", res.Headers.Get ("Content-Type"));
  70. Assertion.AssertNotNull ("Last Modified: ", res.LastModified);
  71. Assertion.AssertEquals ("res:", 0, res.Cookies.Count);
  72. res.Close ();
  73. }
  74. [Test]
  75. public void AddRange ()
  76. {
  77. HttpWebRequest req = (HttpWebRequest) WebRequest.Create ("http://www.google.com");
  78. req.AddRange (10);
  79. req.AddRange (50, 90);
  80. req.AddRange ("bytes", 100);
  81. req.AddRange ("bytes", 100, 120);
  82. Assertion.AssertEquals ("#1", "bytes=10-,50-90,100-,100-120", req.Headers ["Range"]);
  83. try {
  84. req.AddRange ("bits", 2000);
  85. Assertion.Fail ("#2");
  86. } catch (InvalidOperationException) {}
  87. }
  88. [Test]
  89. [Category("InetAccess")]
  90. public void Cookies1 ()
  91. {
  92. // The purpose of this test is to ensure that the cookies we get from a request
  93. // are stored in both, the CookieCollection in HttpWebResponse and the CookieContainer
  94. // in HttpWebRequest.
  95. // If this URL stops sending *one* and only one cookie, replace it.
  96. string url = "http://www.elmundo.es";
  97. CookieContainer cookies = new CookieContainer ();
  98. HttpWebRequest req = (HttpWebRequest) WebRequest.Create (url);
  99. req.KeepAlive = false;
  100. req.UserAgent = "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv; 1.7.6) Gecko/20050317 Firefox/1.0.2";
  101. req.CookieContainer = cookies;
  102. Assertion.AssertEquals ("#01", 0, cookies.Count);
  103. using (HttpWebResponse res = (HttpWebResponse) req.GetResponse()) {
  104. CookieCollection coll = req.CookieContainer.GetCookies (new Uri (url));
  105. Assertion.AssertEquals ("#02", 1, coll.Count);
  106. Assertion.AssertEquals ("#03", 1, res.Cookies.Count);
  107. Cookie one = coll [0];
  108. Cookie two = res.Cookies [0];
  109. Assertion.AssertEquals ("#04", true, object.ReferenceEquals (one, two));
  110. }
  111. }
  112. #if !TARGET_JVM //NotWorking
  113. [Test]
  114. public void SslClientBlock ()
  115. {
  116. // This tests that the write request/initread/write body sequence does not hang
  117. // when using SSL.
  118. // If there's a regression for this, the test will hang.
  119. ServicePointManager.CertificatePolicy = new AcceptAllPolicy ();
  120. try {
  121. SslHttpServer server = new SslHttpServer ();
  122. server.Start ();
  123. string url = String.Format ("https://{0}:{1}/nothing.html", server.IPAddress, server.Port);
  124. HttpWebRequest request = (HttpWebRequest) WebRequest.Create (url);
  125. request.Method = "POST";
  126. Stream stream = request.GetRequestStream ();
  127. byte [] bytes = new byte [100];
  128. stream.Write (bytes, 0, bytes.Length);
  129. stream.Close ();
  130. HttpWebResponse resp = (HttpWebResponse) request.GetResponse ();
  131. Assertion.AssertEquals ("StatusCode", 200, (int) resp.StatusCode);
  132. StreamReader sr = new StreamReader (resp.GetResponseStream (), Encoding.UTF8);
  133. string x = sr.ReadToEnd ();
  134. sr.Close ();
  135. resp.Close ();
  136. server.Stop ();
  137. if (server.Error != null)
  138. throw server.Error;
  139. } finally {
  140. ServicePointManager.CertificatePolicy = null;
  141. }
  142. }
  143. #endif
  144. [Test]
  145. #if TARGET_JVM
  146. [Category("NotWorking")]
  147. #endif
  148. public void Missing_ContentEncoding ()
  149. {
  150. ServicePointManager.CertificatePolicy = new AcceptAllPolicy ();
  151. try {
  152. BadChunkedServer server = new BadChunkedServer ();
  153. server.Start ();
  154. string url = String.Format ("http://{0}:{1}/nothing.html", server.IPAddress, server.Port);
  155. HttpWebRequest request = (HttpWebRequest) WebRequest.Create (url);
  156. request.Method = "GET";
  157. HttpWebResponse resp = (HttpWebResponse) request.GetResponse ();
  158. Assert.AreEqual ("", resp.ContentEncoding);
  159. resp.Close ();
  160. server.Stop ();
  161. if (server.Error != null)
  162. throw server.Error;
  163. } finally {
  164. ServicePointManager.CertificatePolicy = null;
  165. }
  166. }
  167. [Test]
  168. #if TARGET_JVM
  169. [Category ("NotWorking")]
  170. #endif
  171. public void BadServer_ChunkedClose ()
  172. {
  173. // The server will send a chunked response without a 'last-chunked' mark
  174. // and then shutdown the socket for sending.
  175. BadChunkedServer server = new BadChunkedServer ();
  176. server.Start ();
  177. string url = String.Format ("http://{0}:{1}/nothing.html", server.IPAddress, server.Port);
  178. HttpWebRequest request = (HttpWebRequest) WebRequest.Create (url);
  179. HttpWebResponse resp = (HttpWebResponse) request.GetResponse ();
  180. string x = null;
  181. try {
  182. byte [] bytes = new byte [32];
  183. // Using StreamReader+UTF8Encoding here fails on MS runtime
  184. Stream stream = resp.GetResponseStream ();
  185. int nread = stream.Read (bytes, 0, 32);
  186. Assertion.AssertEquals ("#01", 16, nread);
  187. x = Encoding.ASCII.GetString (bytes, 0, 16);
  188. } finally {
  189. resp.Close ();
  190. server.Stop ();
  191. }
  192. if (server.Error != null)
  193. throw server.Error;
  194. Assertion.AssertEquals ("1234567890123456", x);
  195. }
  196. [Test]
  197. [Ignore ("This test asserts that our code violates RFC 2616")]
  198. public void MethodCase ()
  199. {
  200. ListDictionary methods = new ListDictionary ();
  201. #if NET_2_0
  202. methods.Add ("post", "POST");
  203. methods.Add ("puT", "PUT");
  204. #else
  205. methods.Add ("post", "post");
  206. methods.Add ("puT", "puT");
  207. #endif
  208. methods.Add ("POST", "POST");
  209. methods.Add ("whatever", "whatever");
  210. methods.Add ("PUT", "PUT");
  211. IPEndPoint ep = new IPEndPoint (IPAddress.Loopback, 8000);
  212. string url = "http://" + IPAddress.Loopback.ToString () + ":8000/test/";
  213. foreach (DictionaryEntry de in methods) {
  214. SocketResponder responder = new SocketResponder (new IPEndPoint (IPAddress.Loopback, 8000),
  215. new SocketRequestHandler (EchoRequestHandler));
  216. responder.Start ();
  217. HttpWebRequest req = (HttpWebRequest) WebRequest.Create (url);
  218. req.Method = (string) de.Key;
  219. req.Timeout = 2000;
  220. req.ReadWriteTimeout = 2000;
  221. req.KeepAlive = false;
  222. Stream rs = req.GetRequestStream ();
  223. rs.Close ();
  224. using (HttpWebResponse resp = (HttpWebResponse) req.GetResponse ()) {
  225. StreamReader sr = new StreamReader (resp.GetResponseStream (),
  226. Encoding.UTF8);
  227. string line = sr.ReadLine ();
  228. sr.Close ();
  229. Assert.AreEqual (((string) de.Value) + " /test/ HTTP/1.1",
  230. line, req.Method);
  231. resp.Close ();
  232. }
  233. responder.Stop ();
  234. }
  235. }
  236. [Test]
  237. [Ignore ("This test asserts that our code violates RFC 2616")]
  238. public void GetRequestStream_Body_NotAllowed ()
  239. {
  240. string [] methods = new string [] { "GET", "HEAD", "CONNECT",
  241. "get", "HeAd", "ConNect" };
  242. foreach (string method in methods) {
  243. HttpWebRequest req = (HttpWebRequest) WebRequest.Create (
  244. "http://localhost:8000");
  245. req.Method = method;
  246. try {
  247. req.GetRequestStream ();
  248. Assert.Fail ("#1:" + method);
  249. } catch (ProtocolViolationException ex) {
  250. Assert.AreEqual (typeof (ProtocolViolationException), ex.GetType (), "#2:" + method);
  251. Assert.IsNull (ex.InnerException, "#3:" + method);
  252. Assert.IsNotNull (ex.Message, "#4:" + method);
  253. }
  254. }
  255. }
  256. private static byte [] EchoRequestHandler (Socket socket)
  257. {
  258. MemoryStream ms = new MemoryStream ();
  259. byte [] buffer = new byte [4096];
  260. int bytesReceived = socket.Receive (buffer);
  261. while (bytesReceived > 0) {
  262. ms.Write (buffer, 0, bytesReceived);
  263. if (socket.Available > 0) {
  264. bytesReceived = socket.Receive (buffer);
  265. } else {
  266. bytesReceived = 0;
  267. }
  268. }
  269. ms.Flush ();
  270. ms.Position = 0;
  271. StreamReader sr = new StreamReader (ms, Encoding.UTF8);
  272. string request = sr.ReadToEnd ();
  273. MemoryStream outputStream = new MemoryStream ();
  274. StringWriter sw = new StringWriter ();
  275. sw.WriteLine ("HTTP/1.1 200 OK");
  276. sw.WriteLine ("Content-Type: text/xml");
  277. sw.WriteLine ("Content-Length: " + request.Length.ToString (CultureInfo.InvariantCulture));
  278. sw.WriteLine ();
  279. sw.Write (request);
  280. sw.Flush ();
  281. return Encoding.UTF8.GetBytes (sw.ToString ());
  282. }
  283. class BadChunkedServer : HttpServer {
  284. protected override void Run ()
  285. {
  286. Socket client = sock.Accept ();
  287. NetworkStream ns = new NetworkStream (client, true);
  288. StreamWriter writer = new StreamWriter (ns, Encoding.ASCII);
  289. writer.Write ( "HTTP/1.1 200 OK\r\n" +
  290. "Transfer-Encoding: chunked\r\n" +
  291. "Connection: close\r\n" +
  292. "Content-Type: text/plain; charset=UTF-8\r\n\r\n");
  293. // This body lacks a 'last-chunk' (see RFC 2616)
  294. writer.Write ("10\r\n1234567890123456\r\n");
  295. writer.Flush ();
  296. client.Shutdown (SocketShutdown.Send);
  297. Thread.Sleep (1000);
  298. writer.Close ();
  299. }
  300. }
  301. class AcceptAllPolicy : ICertificatePolicy {
  302. public bool CheckValidationResult (ServicePoint sp, X509Certificate certificate, WebRequest request, int error)
  303. {
  304. return true;
  305. }
  306. }
  307. abstract class HttpServer
  308. {
  309. protected Socket sock;
  310. protected Exception error;
  311. protected ManualResetEvent evt;
  312. public HttpServer ()
  313. {
  314. sock = new Socket (AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
  315. sock.Bind (new IPEndPoint (IPAddress.Loopback, 0));
  316. sock.Listen (1);
  317. }
  318. public void Start ()
  319. {
  320. evt = new ManualResetEvent (false);
  321. Thread th = new Thread (new ThreadStart (Run));
  322. th.Start ();
  323. }
  324. public void Stop ()
  325. {
  326. evt.Set ();
  327. sock.Close ();
  328. }
  329. public IPAddress IPAddress {
  330. get { return ((IPEndPoint) sock.LocalEndPoint).Address; }
  331. }
  332. public int Port {
  333. get { return ((IPEndPoint) sock.LocalEndPoint).Port; }
  334. }
  335. public Exception Error {
  336. get { return error; }
  337. }
  338. protected abstract void Run ();
  339. }
  340. #if !TARGET_JVM
  341. class SslHttpServer : HttpServer {
  342. X509Certificate _certificate;
  343. protected override void Run ()
  344. {
  345. try {
  346. Socket client = sock.Accept ();
  347. NetworkStream ns = new NetworkStream (client, true);
  348. SslServerStream s = new SslServerStream (ns, Certificate, false, false);
  349. s.PrivateKeyCertSelectionDelegate += new PrivateKeySelectionCallback (GetPrivateKey);
  350. StreamReader reader = new StreamReader (s);
  351. StreamWriter writer = new StreamWriter (s, Encoding.ASCII);
  352. string line;
  353. string hello = "<html><body><h1>Hello World!</h1></body></html>";
  354. string answer = "HTTP/1.0 200\r\n" +
  355. "Connection: close\r\n" +
  356. "Content-Type: text/html\r\n" +
  357. "Content-Encoding: " + Encoding.ASCII.WebName + "\r\n" +
  358. "Content-Length: " + hello.Length + "\r\n" +
  359. "\r\n" + hello;
  360. // Read the headers
  361. do {
  362. line = reader.ReadLine ();
  363. } while (line != "" && line != null && line.Length > 0);
  364. // Now the content. We know it's 100 bytes.
  365. // This makes BeginRead in sslclientstream block.
  366. char [] cs = new char [100];
  367. reader.Read (cs, 0, 100);
  368. writer.Write (answer);
  369. writer.Flush ();
  370. evt.WaitOne (50000, false);
  371. } catch (Exception e) {
  372. error = e;
  373. }
  374. }
  375. X509Certificate Certificate {
  376. get {
  377. if (_certificate == null)
  378. _certificate = new X509Certificate (CertData.Certificate);
  379. return _certificate;
  380. }
  381. }
  382. AsymmetricAlgorithm GetPrivateKey (X509Certificate certificate, string targetHost)
  383. {
  384. PrivateKey key = new PrivateKey (CertData.PrivateKey, null);
  385. return key.RSA;
  386. }
  387. }
  388. class CertData {
  389. public readonly static byte [] Certificate = {
  390. 48, 130, 1, 191, 48, 130, 1, 40, 160, 3, 2, 1, 2, 2, 16, 36,
  391. 14, 97, 190, 146, 132, 208, 71, 175, 6, 87, 168, 185, 175, 55, 43, 48,
  392. 13, 6, 9, 42, 134, 72, 134, 247, 13, 1, 1, 4, 5, 0, 48, 18,
  393. 49, 16, 48, 14, 6, 3, 85, 4, 3, 19, 7, 103, 111, 110, 122, 97,
  394. 108, 111, 48, 30, 23, 13, 48, 53, 48, 54, 50, 50, 49, 57, 51, 48,
  395. 52, 54, 90, 23, 13, 51, 57, 49, 50, 51, 49, 50, 51, 53, 57, 53,
  396. 57, 90, 48, 18, 49, 16, 48, 14, 6, 3, 85, 4, 3, 19, 7, 103,
  397. 111, 110, 122, 97, 108, 111, 48, 129, 158, 48, 13, 6, 9, 42, 134, 72,
  398. 134, 247, 13, 1, 1, 1, 5, 0, 3, 129, 140, 0, 48, 129, 136, 2,
  399. 129, 129, 0, 138, 9, 38, 25, 166, 252, 59, 26, 39, 184, 128, 216, 38,
  400. 73, 41, 86, 30, 228, 160, 205, 41, 135, 115, 223, 44, 62, 42, 198, 178,
  401. 190, 81, 11, 25, 21, 216, 49, 179, 130, 246, 52, 97, 175, 212, 94, 157,
  402. 231, 162, 66, 161, 103, 63, 204, 83, 141, 172, 119, 97, 225, 206, 98, 101,
  403. 210, 106, 2, 206, 81, 90, 173, 47, 41, 199, 209, 241, 177, 177, 96, 207,
  404. 254, 220, 190, 66, 180, 153, 0, 209, 14, 178, 69, 194, 3, 37, 116, 239,
  405. 49, 23, 185, 245, 255, 126, 35, 85, 246, 56, 244, 107, 117, 24, 14, 57,
  406. 9, 111, 147, 189, 220, 142, 57, 104, 153, 193, 205, 19, 14, 22, 157, 16,
  407. 24, 80, 201, 2, 2, 0, 17, 163, 23, 48, 21, 48, 19, 6, 3, 85,
  408. 29, 37, 4, 12, 48, 10, 6, 8, 43, 6, 1, 5, 5, 7, 3, 1,
  409. 48, 13, 6, 9, 42, 134, 72, 134, 247, 13, 1, 1, 4, 5, 0, 3,
  410. 129, 129, 0, 64, 49, 57, 253, 218, 198, 229, 51, 189, 12, 154, 225, 183,
  411. 160, 147, 90, 113, 172, 69, 122, 28, 77, 97, 215, 231, 194, 150, 29, 196,
  412. 65, 95, 218, 99, 142, 111, 79, 205, 109, 76, 32, 92, 220, 76, 88, 53,
  413. 237, 80, 11, 85, 44, 91, 21, 210, 12, 34, 223, 234, 18, 187, 136, 62,
  414. 26, 240, 103, 180, 12, 226, 221, 250, 247, 129, 51, 23, 129, 165, 56, 67,
  415. 43, 83, 244, 110, 207, 24, 253, 195, 16, 46, 80, 113, 80, 18, 2, 254,
  416. 120, 147, 151, 164, 23, 210, 230, 100, 19, 197, 179, 28, 194, 48, 106, 159,
  417. 155, 144, 37, 82, 44, 160, 40, 52, 146, 174, 77, 188, 160, 230, 75, 172,
  418. 123, 3, 254,
  419. };
  420. public readonly static byte [] PrivateKey = {
  421. 30, 241, 181, 176, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,
  422. 0, 0, 0, 0, 84, 2, 0, 0, 7, 2, 0, 0, 0, 36, 0, 0,
  423. 82, 83, 65, 50, 0, 4, 0, 0, 17, 0, 0, 0, 201, 80, 24, 16,
  424. 157, 22, 14, 19, 205, 193, 153, 104, 57, 142, 220, 189, 147, 111, 9, 57,
  425. 14, 24, 117, 107, 244, 56, 246, 85, 35, 126, 255, 245, 185, 23, 49, 239,
  426. 116, 37, 3, 194, 69, 178, 14, 209, 0, 153, 180, 66, 190, 220, 254, 207,
  427. 96, 177, 177, 241, 209, 199, 41, 47, 173, 90, 81, 206, 2, 106, 210, 101,
  428. 98, 206, 225, 97, 119, 172, 141, 83, 204, 63, 103, 161, 66, 162, 231, 157,
  429. 94, 212, 175, 97, 52, 246, 130, 179, 49, 216, 21, 25, 11, 81, 190, 178,
  430. 198, 42, 62, 44, 223, 115, 135, 41, 205, 160, 228, 30, 86, 41, 73, 38,
  431. 216, 128, 184, 39, 26, 59, 252, 166, 25, 38, 9, 138, 175, 88, 190, 223,
  432. 27, 24, 224, 123, 190, 69, 164, 234, 129, 59, 108, 229, 248, 62, 187, 15,
  433. 235, 147, 162, 83, 47, 123, 170, 190, 224, 31, 215, 110, 143, 31, 227, 216,
  434. 85, 88, 154, 83, 207, 229, 41, 28, 237, 116, 181, 17, 37, 141, 224, 185,
  435. 164, 144, 141, 233, 164, 138, 177, 241, 115, 181, 230, 150, 7, 92, 139, 141,
  436. 113, 95, 57, 191, 211, 165, 217, 250, 197, 68, 164, 184, 168, 43, 48, 65,
  437. 177, 237, 173, 144, 148, 221, 62, 189, 147, 63, 216, 188, 206, 103, 226, 171,
  438. 32, 20, 230, 116, 144, 192, 1, 39, 202, 87, 74, 250, 6, 142, 188, 23,
  439. 45, 4, 112, 191, 253, 67, 69, 70, 128, 143, 44, 234, 41, 96, 195, 82,
  440. 202, 35, 158, 149, 240, 151, 23, 25, 166, 179, 85, 144, 58, 120, 149, 229,
  441. 205, 34, 8, 110, 86, 119, 130, 210, 37, 173, 65, 71, 169, 67, 8, 51,
  442. 20, 96, 51, 155, 3, 39, 85, 187, 40, 193, 57, 19, 99, 78, 173, 28,
  443. 129, 154, 108, 175, 8, 138, 237, 71, 27, 148, 129, 35, 47, 57, 101, 237,
  444. 168, 178, 227, 221, 212, 63, 124, 254, 253, 215, 183, 159, 49, 103, 74, 49,
  445. 67, 160, 171, 72, 194, 215, 108, 251, 178, 18, 184, 100, 211, 105, 21, 186,
  446. 39, 66, 218, 154, 72, 222, 90, 237, 179, 251, 51, 224, 212, 56, 251, 6,
  447. 209, 151, 198, 176, 89, 110, 35, 141, 248, 237, 223, 68, 135, 206, 207, 169,
  448. 254, 219, 243, 130, 71, 11, 94, 113, 233, 92, 63, 156, 169, 72, 215, 110,
  449. 95, 94, 191, 50, 59, 89, 187, 59, 183, 99, 161, 146, 233, 245, 219, 80,
  450. 87, 113, 251, 50, 144, 195, 158, 46, 189, 232, 119, 91, 75, 22, 6, 176,
  451. 39, 206, 25, 196, 213, 195, 219, 24, 28, 103, 104, 36, 137, 128, 4, 119,
  452. 163, 40, 126, 87, 18, 86, 128, 243, 213, 101, 2, 237, 78, 64, 160, 55,
  453. 199, 93, 90, 126, 175, 199, 55, 89, 234, 190, 5, 16, 196, 88, 28, 208,
  454. 28, 92, 32, 115, 204, 9, 202, 101, 15, 123, 43, 75, 90, 144, 95, 179,
  455. 102, 249, 57, 150, 204, 99, 147, 203, 16, 63, 81, 244, 226, 237, 82, 204,
  456. 20, 200, 140, 65, 83, 217, 161, 23, 123, 37, 115, 12, 100, 73, 70, 190,
  457. 32, 235, 174, 140, 148, 157, 47, 238, 40, 208, 228, 80, 54, 187, 156, 252,
  458. 253, 230, 231, 156, 138, 125, 96, 79, 3, 27, 143, 55, 146, 169, 165, 61,
  459. 238, 60, 227, 77, 217, 93, 117, 122, 111, 46, 173, 113,
  460. };
  461. }
  462. #endif
  463. }
  464. }