chunk
stringlengths
0
39.4k
embedding
sequencelengths
1.02k
1.02k
The decimal value of the BCD digits is: 6*104 + 5*103 + 2*102 + 4*101 + 4*100 = 65244. Parametric Verilog implementation of the double dabble binary to BCD converter // parametric Verilog implementation of the double dabble binary to BCD converter // for the complete project, see // https://github.com/AmeerAbdelhadi/Binary-to-BCD-Converter module bin2bcd #( parameter W = 18) // input width ( input [W-1 :0] bin , // binary output reg [W+(W-4)/3:0] bcd ); // bcd {...,thousands,hundreds,tens,ones} integer i,j; always @(bin) begin for(i = 0; i <= W+(W-4)/3; i = i+1) bcd[i] = 0; // initialize with zeros bcd[W-1:0] = bin; // initialize with input vector for(i = 0; i <= W-4; i = i+1) // iterate on structure depth for(j = 0; j <= i/3; j = j+1) // iterate on structure width if (bcd[W-i+4*j -: 4] > 4) // if > 4 bcd[W-i+4*j -: 4] = bcd[W-i+4*j -: 4] + 4'd3; // add 3 end endmodule Reverse double dabble The algorithm is fully reversible. By applying the reverse double dabble algorithm a BCD number can be converted to binary.
[ -0.5073242188, 0.0875244141, 0.517578125, 0.55078125, -0.40625, -0.3347167969, -0.9697265625, 0.0728149414, -0.8994140625, -0.0188903809, -0.1827392578, 0.447265625, -0.4111328125, 0.2183837891, -0.1392822266, 0.0191650391, -1.15234375, -0.3645019531, -0.4841308594, 0.9892578125, 0.3857421875, -1.0869140625, -0.431640625, -0.4331054688, 1.0419921875, 0.6787109375, -0.0935058594, -0.1900634766, 0.8837890625, -0.8510742188, -1.119140625, -0.3486328125, -0.3930664062, 0.2027587891, -0.2927246094, -0.9340820312, -0.951171875, 0.5092773438, -0.7973632812, -0.5444335938, 0.9497070312, 0.4418945312, -0.0568847656, 0.4938964844, 0.8852539062, 0.1112060547, -0.4384765625, -0.4624023438, -0.1676025391, -0.1848144531, -0.7841796875, 0.0396728516, -0.8208007812, -0.619140625, -0.2299804688, -0.7495117188, -0.0733032227, -0.5952148438, 0.576171875, -0.1514892578, -0.8881835938, 0.8256835938, -0.0608825684, -0.30078125, -1.513671875, 0.106628418, -1.0927734375, 0.7915039062, -0.4462890625, 1.69140625, 0.1086425781, 0.3735351562, -1.0498046875, 0.2437744141, 0.9306640625, -0.1353759766, -0.9155273438, -1.0908203125, 0.0039787292, 0.1194458008, -0.9360351562, 0.1333007812, 0.0739746094, -1.0126953125, 0.2181396484, -1.0849609375, 0.4267578125, 0.1329345703, 0.1854248047, 0.2194824219, 0.4150390625, 0.7099609375, 0.2834472656, 0.3278808594, -0.2033691406, 0.6372070312, -0.2160644531, -0.8037109375, -0.1019897461, -0.4074707031, 0.0027580261, 1.056640625, 0.8403320312, 0.1096191406, 0.2724609375, 0.0257263184, -1.0556640625, -0.1624755859, -1.1494140625, 0.6401367188, 0.4052734375, 0.6245117188, 0.0653686523, 0.1522216797, 0.2802734375, 0.8251953125, -0.392578125, -0.369140625, 0.3466796875, 0.5556640625, 0.9858398438, 0.1857910156, -0.0062713623, 1.2470703125, -0.2531738281, 0.0283966064, -0.8452148438, -0.7192382812, 0.3146972656, 0.59765625, 1.3359375, 0.490234375, -0.4262695312, 0.5903320312, 1.1328125, 0.4321289062, -1.0341796875, -0.2631835938, 0.5834960938, 0.3747558594, -1.1337890625, -0.9555664062, -0.3928222656, -0.1932373047, -0.1917724609, 0.4777832031, -0.3051757812, 0.1807861328, 1.0234375, -0.2590332031, -1.2216796875, 0.455078125, -0.3354492188, 0.4692382812, -0.0679321289, -0.2091064453, 1.4951171875, -0.54296875, -0.0953369141, 0.5234375, 0.0357055664, -0.6000976562, -0.0082397461, 0.9736328125, -0.0572814941, -0.0804443359, -1.2763671875, 0.2946777344, 0.4396972656, 0.7436523438, -0.1127929688, -0.1578369141, -0.3762207031, 0.3833007812, -0.830078125, 0.1931152344, -0.4362792969, -0.6044921875, 0.3059082031, -0.0260314941, 0.6772460938, -0.5478515625, 0.7802734375, -0.0700073242, 0.2413330078, 0.0118484497, 0.0085449219, 0.908203125, -0.2445068359, -0.3674316406, -0.3601074219, 0.0278625488, -0.067199707, 0.3518066406, -0.1004638672, -0.6704101562, 0.2944335938, -0.0627441406, 0.7509765625, -0.3063964844, 0.818359375, -0.0818481445, -0.8359375, -0.9326171875, 0.4343261719, 0.0883178711, 0.1840820312, 0.1111450195, 1.0458984375, 0.26953125, -0.853515625, -0.5385742188, -0.3376464844, 0.3032226562, -0.0319519043, -0.7192382812, 0.0696411133, -0.0092391968, 0.0883789062, 0.9926757812, 1.1435546875, -1.49609375, 0.1998291016, -0.435546875, -0.4125976562, -0.4245605469, 0.2399902344, 0.5034179688, -0.5126953125, -0.0038852692, -0.4233398438, 0.1115722656, -1.189453125, -0.4404296875, -0.6176757812, 1.580078125, -0.5498046875, 0.3752441406, -0.4931640625, -0.5834960938, -0.5991210938, 0.1798095703, 0.46484375, 0.4545898438, 0.76953125, -0.3276367188, 0.6450195312, -0.9477539062, 0.2836914062, -0.4638671875, -0.3859863281, -0.1842041016, -0.2473144531, 0.1632080078, -0.1781005859, -0.3935546875, -0.6206054688, 0.1324462891, 0.5629882812, -0.3708496094, -0.0267944336, 0.322265625, -0.9345703125, -0.1312255859, 0.9780273438, 0.4619140625, -0.6909179688, -0.1307373047, 0.787109375, -0.8076171875, 0.3376464844, -0.1466064453, -1.123046875, -1.4462890625, -0.2016601562, -0.8100585938, 0.3315429688, -1.3193359375, 0.0215454102, 0.1840820312, 0.3088378906, -0.0899047852, -0.5502929688, -0.3466796875, -0.6987304688, -1.1953125, 1.01171875, 1.0029296875, 0.46875, 0.482421875, -0.7587890625, 0.1754150391, 0.689453125, -0.7216796875, -0.8505859375, -0.1156005859, 1.12109375, -0.8974609375, -0.0479431152, -0.0411376953, 1.0703125, 0.2103271484, 0.4799804688, 0.3342285156, -0.3347167969, 0.5102539062, 0.3659667969, -0.1939697266, -0.8227539062, 0.3139648438, -0.6899414062, -0.9047851562, 0.0117263794, 0.1379394531, -0.2958984375, -0.4375, 0.1340332031, -0.6923828125, 0.1870117188, -0.9794921875, 2.12890625, -0.8540039062, 0.8540039062, 0.0225372314, 0.2666015625, 0.4990234375, -0.0508728027, 0.2712402344, 0.5678710938, -0.0227355957, 1.046875, -0.6909179688, -0.1520996094, 0.8310546875, -0.3330078125, 0.2646484375, -0.6547851562, -1.0283203125, -0.8999023438, -0.1033325195, 0.3718261719, -0.7387695312, -0.6479492188, -0.1236572266, 0.0317077637, -0.3203125, -0.7319335938, -0.0292510986, 0.8930664062, -0.1781005859, -0.3195800781, -0.3557128906, 0.3256835938, -0.5849609375, 0.1175537109, -0.2126464844, -1.166015625, -0.0047721863, -0.2054443359, -0.3671875, 0.0487976074, 0.697265625, -1.1787109375, 0.2275390625, -0.2768554688, 0.1047363281, 0.16015625, 0.3005371094, -0.2971191406, -0.1058959961, -0.3283691406, 1.1005859375, -0.4150390625, 0.9741210938, 0.5356445312, 0.0346374512, 0.0660400391, 0.6166992188, -1.4208984375, 0.7294921875, 0.951171875, -0.1551513672, 0.3120117188, -0.6689453125, 0.28515625, -0.4926757812, -0.2268066406, -0.1076049805, -0.6904296875, 0.8959960938, 0.0298461914, -1.0869140625, 1.6865234375, 0.0252227783, -0.1267089844, -0.4880371094, 0.3325195312, -0.2413330078, 0.2105712891, -0.2634277344, 0.3488769531, 0.2427978516, -0.7290039062, 0.1901855469, -0.751953125, -0.318359375, 1.30859375, -0.8310546875, 0.5454101562, 0.1012573242, -0.9301757812, 0.501953125, -0.2719726562, -0.9116210938, -2.06640625, -1.4892578125, -0.8349609375, 0.5620117188, -0.69921875, -0.0252227783, -0.9140625, 0.4943847656, -0.0813598633, -0.1423339844, -1.0693359375, -0.2983398438, 0.0855102539, -0.3542480469, -0.7163085938, -0.0053939819, -0.2239990234, -1.4677734375, 0.2768554688, -0.4113769531, -0.2556152344, 0.2453613281, -0.2354736328, -0.2359619141, -0.1143798828, -0.4462890625, -0.2653808594, 0.703125, 0.6748046875, 0.2473144531, 0.7534179688, -0.765625, 0.3488769531, 0.4306640625, -0.2377929688, 0.7465820312, -1.166015625, -0.791015625, 0.5322265625, 1.3466796875, -0.1743164062, 0.2127685547, -0.0254669189, 1.205078125, 0.7397460938, -0.1842041016, 0.4357910156, -0.505859375, -0.0269775391, 0.5307617188, 0.9047851562, 0.3000488281, 0.1462402344, 1.69140625, 1.859375, -0.6728515625, -0.0417175293, 0.4028320312, 0.0954589844, -0.3215332031, -0.7963867188, -0.1441650391, 0.5346679688, 0.0208740234, -0.2817382812, -0.8120117188, 0.1416015625, -0.5327148438, -0.3352050781, 0.1492919922, -1.5927734375, -0.5864257812, 1.1337890625, -0.2934570312, 0.1489257812, -1.0830078125, 1.27734375, 0.625, 0.7875976562, 0.5322265625, -1.53515625, -1.2099609375, 0.2631835938, 0.5991210938, 0.515625, -1.4716796875, -1.083984375, -0.4738769531, 0.8227539062, -0.7045898438, -0.3410644531, 0.6538085938, -0.54296875, 0.6396484375, -0.4995117188, 0.8295898438, -0.3615722656, 0.2191162109, -0.677734375, 0.1804199219, 0.4096679688, 0.2299804688, -0.951171875, -0.3674316406, 0.0788574219, -0.5092773438, 0.0531311035, 0.642578125, 1.408203125, 0.7690429688, 0.027130127, 1.3212890625, 0.1807861328, -0.3811035156, 0.4331054688, -0.8266601562, 0.9038085938, -0.1329345703, -0.1452636719, 0.6708984375, -0.3640136719, -0.4987792969, 0.6987304688, 0.1535644531, -0.108215332, -0.5517578125, -0.103515625, 0.607421875, 0.2875976562, -0.1162719727, -0.2680664062, 1.2724609375, -0.4758300781, 0.1325683594, -0.521484375, -0.2078857422, -0.5600585938, -0.3940429688, -0.5815429688, -0.7172851562, -0.1486816406, -0.8305664062, -1.0712890625, -0.1373291016, 0.2885742188, -0.11328125, -0.1342773438, 0.6215820312, -0.4890136719, 0.8383789062, 0.2980957031, 1.34375, 0.0953369141, -0.8735351562, 0.482421875, -0.9716796875, -0.4418945312, 0.5712890625, -0.2152099609, -1.0029296875, 0.6181640625, -0.2319335938, -0.4951171875, -0.0889282227, 0.6547851562, 0.5166015625, 0.3063964844, -0.0383605957, 0.6030273438, -0.8955078125, 0.7016601562, 0.5209960938, 0.6625976562, -1.7255859375, 0.1845703125, -0.3947753906, 0.716796875, 0.6064453125, 1.296875, 1.3466796875, -1.02734375, -0.4943847656, -0.1278076172, 0.5092773438, -0.431640625, 0.2683105469, -0.2111816406, 0.5166015625, -0.2238769531, 0.646484375, -0.2332763672, 0.1381835938, -0.4404296875, 0.615234375, 0.6118164062, -0.1614990234, -0.6752929688, -0.6782226562, -0.4311523438, 0.3996582031, 0.68359375, -0.3679199219, 0.1806640625, -0.0409240723, -0.580078125, -0.6625976562, 0.1452636719, -0.33203125, -0.0505065918, -0.544921875, 0.3073730469, -0.5390625, 0.328125, 0.51953125, -0.3056640625, 1.4736328125, -0.2263183594, -1.189453125, 0.4055175781, 0.0986938477, -1.130859375, 0.3640136719, -0.1774902344, 0.3669433594, 0.1793212891, 0.2912597656, 0.1994628906, -0.4873046875, -0.7939453125, 0.232421875, -0.9125976562, 0.55078125, -0.3208007812, -0.59375, -0.3002929688, -0.6049804688, -0.1607666016, 0.3464355469, -0.4765625, 0.3645019531, -0.4353027344, -0.2888183594, -0.2761230469, -0.1257324219, -0.0650024414, 0.2457275391, 0.4145507812, 0.1456298828, -0.4357910156, -0.5756835938, 0.6743164062, 0.4660644531, -0.080078125, -0.2749023438, -1.423828125, 0.7431640625, 1.08203125, 0.6264648438, 0.9321289062, 0.9028320312, -0.0634765625, 0.3439941406, 0.3935546875, 0.384765625, -0.1727294922, -0.2038574219, -0.0875854492, 0.7934570312, 0.2504882812, 1.30859375, -0.1870117188, 1.52734375, -0.5151367188, 0.2249755859, -0.177734375, -0.150390625, -1.3388671875, 0.0610351562, 0.6547851562, 1.23828125, 0.4265136719, -0.3940429688, -0.4382324219, 1.3779296875, -0.9897460938, 0.9091796875, -0.7387695312, -0.5717773438, -1.546875, -0.8969726562, 1.0498046875, 1.171875, 0.1824951172, -0.4011230469, 0.0656738281, 1.5830078125, 0.1586914062, -1.6220703125, 0.1422119141, 1.2119140625, -0.2163085938, -0.7133789062, 0.521484375, 0.4367675781, -0.4816894531, 0.121887207, -0.9975585938, -0.7475585938, 0.1035766602, -0.0734863281, 0.572265625, 0.2396240234, 0.513671875, 1.6123046875, 1.744140625, 0.0859375, 0.0436401367, -1.255859375, 0.5063476562, 0.7778320312, 1.375, 0.6953125, 0.4792480469, 1.0908203125, 0.5532226562, -0.3754882812, 0.0169067383, 0.1608886719, -0.9458007812, 0.0196533203, 0.9501953125, -0.2541503906, 1.544921875, -0.5864257812, 0.88671875, -0.2268066406, -0.658203125, 0.1605224609, 0.3303222656, -0.3115234375, -0.6298828125, -0.64453125, -1.0517578125, -1.0673828125, 0.3127441406, 0.2775878906, 0.71484375, 0.1066894531, -0.7294921875, 0.642578125, -0.3669433594, -0.8271484375, 0.4838867188, -0.4453125, -0.1322021484, 0.1036987305, 0.9584960938, -0.267578125, 0.1942138672, 0.8671875, -0.986328125, 0.2219238281, 0.4753417969, -1.6064453125, -0.1539306641, -0.2027587891, 0.0599060059, -0.6259765625, -0.4128417969, 0.3911132812, 0.1231689453, 0.3461914062, 0.6508789062, -0.0342407227, 0.1407470703, -0.732421875, -1.8876953125, -0.96875, 0.7915039062, 0.1973876953, 0.1348876953, 0.0579528809, -0.5786132812, -0.7978515625, -0.4504394531, 0.2512207031, -0.80078125, -0.6479492188, -0.2749023438, -0.4226074219, -1.0029296875, -0.1624755859, 0.4328613281, 0.2805175781, -0.2009277344, 0.1431884766, -0.0900878906, 0.3752441406, -0.861328125, -0.5263671875, -0.0283203125, -0.7607421875, 0.4326171875, 0.935546875, -0.1506347656, 1.654296875, -0.4995117188, -0.8178710938, 0.521484375, 0.2352294922, 1.6796875, -1.421875, -0.7407226562, 0.2875976562, -0.4067382812, -0.2856445312, -0.3432617188, -0.3356933594, 0.5576171875, 0.6176757812, -0.0936279297, 0.8471679688, -0.7373046875, 1.021484375, 0.1988525391, -0.2995605469, 0.4487304688, -0.0113296509, -0.3984375, -0.0928955078, -0.0544433594, 0.8344726562, 0.5815429688, 0.669921875, -0.1069946289, -0.1862792969, -0.0015420914, -0.701171875, -0.6127929688, 0.8642578125, 0.4973144531, -0.4489746094, -0.3308105469, 1.1474609375, -0.1135253906, 0.3171386719, -0.0089492798, 0.3708496094, -0.5712890625, 0.4758300781, 0.0465393066, -0.2493896484, -0.9482421875, -0.2604980469, 1.0390625, 0.4240722656, 0.400390625, -0.3486328125, 2.0390625, -0.1350097656, -0.6166992188, -0.47265625, -0.1027832031, 0.3015136719, -0.7133789062, 0.0930786133, 0.1654052734, 0.8383789062, 0.57421875, -1.162109375, 0.513671875, -0.3168945312, -0.4772949219, -0.716796875, -0.38671875, -0.552734375, 0.0007452965, -0.7075195312, 1.513671875, 0.7915039062, 0.1729736328, 0.0342102051, 0.6831054688, -0.3471679688, 0.0119781494, 0.0770263672, 1.1875, -0.3894042969, -0.3151855469, 1.04296875, 0.2790527344, -0.1770019531, -0.1458740234, 0.1303710938, 0.7626953125, -1.0458984375, 0.2658691406, -0.2260742188, 0.5571289062, -1.2001953125, -0.6752929688, 0.3000488281, 0.8227539062, 1.3271484375, 0.1284179688, -1.2119140625, -0.0841064453, 0.1770019531, 0.3234863281, -1.2939453125, -0.44140625, -0.1010742188, -0.3645019531, -0.68359375, -0.734375, -0.2844238281, -0.2069091797, 0.0063552856, 1.1552734375, -0.8276367188, -1.671875, -0.259765625, 0.5302734375, 0.1461181641, 0.0497741699, 0.5063476562, -0.1064453125, 0.9013671875, -11.9296875, -0.1271972656, -1.455078125, 0.3747558594, -0.000172019, 0.0491027832, 0.2578125, -0.7231445312, -0.9438476562, 0.1809082031, -0.5317382812, -0.2553710938, 0.3493652344, 0.2670898438, 0.0244140625, -0.923828125, -0.1114501953, -1.0595703125, 0.0966186523, -0.1480712891, -0.1638183594, 0.3806152344, -0.3408203125, -0.1824951172, -0.9711914062, -0.3891601562, 1.650390625, -0.3654785156, 0.298828125, 0.5615234375, -0.6245117188, -0.0631713867, -0.2927246094, 0.1822509766, 0.0742797852, -1.533203125, -0.2612304688, -1.142578125, -0.8061523438, 0.2653808594, 0.1351318359, 0.0470275879, -0.4526367188, 0.111328125, -0.0657958984, -0.078918457, -0.1282958984, -1.0751953125, 0.1516113281, 1.0654296875, -0.1511230469, 0.6279296875, -1.1923828125, -0.3103027344, 0.4328613281, -0.82421875, 0.0711669922, 0.3166503906, -0.51953125, 1.076171875, 0.9614257812, 1.5576171875, -1.859375, -0.6381835938, -0.6372070312, 0.0823364258, 0.7890625, -1.67578125, 0.2344970703, 0.0326538086, 1.052734375, -0.5380859375, -0.81640625, 0.4787597656, 0.4663085938, 0.5297851562, -0.337890625, 0.037902832, 0.3283691406, -0.5590820312, -0.5141601562, 1.4013671875 ]
Reversing the algorithm is done by reversing the principle steps of the algorithm: Reverse double dabble example The reverse double dabble algorithm, performed on the three BCD digits 2-4-3, looks like this: BCD Input Binary Output 2 4 3 0010 0100 0011 00000000 Initialization 0001 0010 0001 10000000 Shifted right 0000 1001 0000 11000000 Shifted right 0000 0110 0000 11000000 Subtracted 3 from 2nd group, because it was 9 0000 0011 0000 01100000 Shifted right 0000 0001 1000 00110000 Shifted right 0000 0001 0101 00110000 Subtracted 3 from 3rd group, because it was 8 0000 0000 1010 10011000 Shifted right 0000 0000 0111 10011000 Subtracted 3 from 3rd group, because it was 10 0000 0000 0011 11001100 Shifted right 0000 0000 0001 11100110 Shifted right 0000 0000 0000 11110011 Shifted right ========================== 24310 Historical In the 1960s, the term double dabble was also used for a different mental algorithm, used by programmers to convert a binary number to decimal. It is performed by reading the binary number from left to right, doubling if the next bit is zero, and doubling and adding one if the next bit is one. In the example above, 11110011, the thought process would be: "one, three, seven, fifteen, thirty, sixty, one hundred twenty-one, two hundred forty-three", the same result as that obtained above. See also Lookup table an alternate approach to perform conversion References Further reading Shift-and-add algorithms Articles with example C code Binary arithmetic
[ 0.1046142578, 0.0005493164, 0.1628417969, 0.7158203125, -0.9375, -0.0887451172, -0.8764648438, -0.3432617188, -0.87109375, -0.0760498047, 1.126953125, 1.0771484375, 0.1331787109, 0.3403320312, -0.1228637695, -0.4313964844, -1.1083984375, -0.2385253906, -0.3364257812, 0.755859375, 0.439453125, -0.4899902344, -0.1204833984, -1.3447265625, 1.2421875, 0.4855957031, -0.1270751953, -0.26953125, 0.2707519531, -0.7373046875, -0.208984375, -0.5991210938, -0.8598632812, 0.6103515625, -0.1384277344, -0.4658203125, -1.05859375, 0.5766601562, -0.337890625, -0.7758789062, 0.5244140625, 0.1734619141, -0.6416015625, 0.2149658203, 0.3850097656, 0.2062988281, -0.3020019531, -0.81640625, -0.3513183594, 0.3681640625, -0.9248046875, -0.25, -0.8110351562, -0.6254882812, -0.0107879639, -0.5869140625, -0.3481445312, -0.8115234375, 0.7412109375, -0.3879394531, -0.5190429688, 1.0693359375, -0.40625, -0.6782226562, -1.4921875, 0.2082519531, -0.875, 0.8662109375, 0.3503417969, 1.4267578125, -0.2326660156, 0.900390625, -1.185546875, -0.5756835938, 1.138671875, 0.6528320312, -0.8178710938, -0.2387695312, 0.2160644531, 0.1953125, -1.5595703125, 0.5874023438, -0.3793945312, -1.12109375, 0.6689453125, -1.046875, 0.2073974609, -0.014213562, 0.5180664062, 0.4162597656, 0.525390625, 0.28515625, -0.3776855469, 0.0331420898, 0.0101089478, 0.6162109375, -0.1782226562, -0.8623046875, 0.1168823242, -1.4755859375, -0.1369628906, 0.1402587891, 1.2578125, 0.4343261719, 0.1199951172, -0.0131988525, -0.5869140625, -0.6909179688, -0.4294433594, 0.8291015625, 0.0451660156, -0.0656738281, 0.3459472656, 0.1801757812, -0.0087280273, 0.6586914062, 0.0451660156, -0.2374267578, -0.0043907166, 0.677734375, 0.3845214844, 0.7294921875, -0.4663085938, 0.7993164062, -1.1162109375, 0.5083007812, -0.98828125, -0.2049560547, 0.60546875, 0.6845703125, 0.4165039062, -0.2758789062, -0.4482421875, -0.0027694702, 1.4248046875, -0.0174865723, -0.8193359375, 0.1220703125, 0.7006835938, 0.4670410156, -1.060546875, -0.4157714844, -0.0861206055, 0.1151123047, -0.063659668, 0.4934082031, -0.5776367188, 0.9462890625, 0.7465820312, -0.3698730469, -1.0634765625, 0.1928710938, 0.1045532227, -0.3666992188, -0.7021484375, 0.0740966797, 0.6948242188, -0.4641113281, 0.0665283203, 1.1171875, -0.6728515625, -1.2421875, -0.5166015625, 0.8872070312, -0.2474365234, -0.4494628906, -1.0625, -0.7490234375, 0.0040283203, 0.7875976562, -0.7998046875, -0.3312988281, -0.1407470703, 0.2083740234, -0.1818847656, 0.6791992188, -0.3371582031, -0.4055175781, 0.4279785156, 0.5141601562, 0.2049560547, -0.7231445312, 0.8818359375, -0.2990722656, -0.0250549316, 0.69140625, 0.2330322266, 0.8803710938, 0.2454833984, 0.1024169922, -0.62109375, -0.2069091797, -0.2200927734, 0.216796875, -0.5048828125, 0.1948242188, 0.5239257812, 0.3002929688, 1.080078125, 1.0478515625, 0.4770507812, 0.6416015625, -0.8208007812, -1.2138671875, 0.2370605469, -0.1459960938, 0.37890625, 0.3764648438, 0.8725585938, 0.65234375, -1.01953125, 0.0226593018, -0.689453125, 0.3559570312, 0.5546875, -0.6098632812, 0.4504394531, -0.3913574219, -0.3107910156, 1.2021484375, 0.2978515625, -0.841796875, -0.3322753906, -0.33203125, -0.4013671875, -0.4431152344, 0.7563476562, 1.623046875, -0.4763183594, 0.2474365234, -0.1435546875, -0.0635986328, -0.6079101562, -0.9995117188, -0.609375, 1.3095703125, -0.8271484375, -0.4052734375, -0.7880859375, -0.4084472656, -0.5390625, -0.2172851562, 0.6899414062, 0.4658203125, 1.005859375, -0.4270019531, 0.3041992188, -1.8271484375, 0.1949462891, -0.3483886719, -0.6831054688, -0.2524414062, -1.123046875, -0.2130126953, -0.4147949219, -0.2612304688, -0.3173828125, 0.44140625, 0.798828125, -0.2888183594, 0.1166992188, 0.3869628906, -0.3977050781, 0.0526733398, 1.5537109375, 0.4560546875, -0.8461914062, -0.4482421875, 0.98046875, -0.7983398438, -0.0274200439, -0.5092773438, -1.1474609375, -1.5234375, -0.8251953125, -0.6206054688, 0.693359375, -1.7861328125, 0.2924804688, 0.1182250977, 0.7573242188, 0.2880859375, -1.3994140625, -0.06640625, -0.9921875, -0.0784912109, 0.3676757812, 0.3735351562, -0.0061073303, 0.560546875, -0.8461914062, 0.8549804688, 0.5263671875, -1.244140625, -0.5791015625, -0.3215332031, 0.1594238281, -0.8955078125, -0.4147949219, 0.1481933594, -0.001127243, 0.6176757812, 0.8100585938, 0.7358398438, 0.1635742188, -0.1102294922, -0.2888183594, -0.4089355469, -0.712890625, 0.4765625, -0.578125, -0.90625, -0.3693847656, 0.4921875, -0.810546875, -0.2668457031, 0.1029052734, -0.447265625, -0.5209960938, -0.9584960938, 1.1298828125, -0.9458007812, 0.9643554688, -0.1433105469, 0.2951660156, 0.6245117188, -0.3566894531, 0.5673828125, 0.4895019531, -0.032409668, 1.314453125, -0.088684082, -0.9018554688, 0.6806640625, -0.6665039062, 0.3217773438, -0.3205566406, -0.2551269531, -0.236328125, -0.3369140625, -0.0085296631, -0.6127929688, -0.6508789062, -0.0166015625, -0.1414794922, -1.134765625, -1.10546875, -0.1875, 0.740234375, -0.2260742188, -0.3706054688, -1.12109375, 0.2086181641, -0.2573242188, -0.0581665039, -1.0322265625, -0.630859375, -0.2365722656, 0.2614746094, 0.5170898438, -0.2604980469, 0.3852539062, -1.748046875, 0.0519714355, -0.6977539062, 0.44921875, 0.4934082031, 0.6005859375, 0.8325195312, -0.158203125, 0.3432617188, 0.9697265625, -0.1741943359, 1.095703125, 0.3286132812, -0.2172851562, 0.3537597656, 0.857421875, -1.3544921875, -0.0256958008, -0.1551513672, -0.4567871094, 0.0444030762, -1.3779296875, 0.2836914062, 0.4230957031, 0.2163085938, -0.2420654297, -0.4077148438, 0.8955078125, 0.1805419922, -0.0107879639, 0.76171875, 0.6157226562, -0.6123046875, -0.5395507812, 1.0703125, -0.5600585938, 0.53515625, 0.6997070312, -0.0086593628, -0.4555664062, -1.205078125, 0.4555664062, 0.3935546875, -0.4555664062, 1.8798828125, -0.0537414551, 0.5727539062, -0.2937011719, -0.4753417969, 0.1201171875, -0.3603515625, -0.4809570312, -2.19140625, -0.4770507812, 0.3251953125, -0.1571044922, -0.6318359375, 0.9755859375, -1.0009765625, 0.4243164062, 0.666015625, 0.0611877441, -1.2724609375, -0.25, -0.1115112305, 0.3659667969, -0.0473022461, 0.2048339844, -0.0214538574, -0.7280273438, 0.3100585938, -0.5688476562, -0.3266601562, -0.0524902344, -0.2377929688, -0.3088378906, -0.3474121094, -0.6538085938, -0.1469726562, 0.0176544189, 0.6225585938, 0.8100585938, 0.7983398438, 0.0254211426, 0.5141601562, 0.5815429688, -0.5698242188, 0.9853515625, -0.2478027344, -0.884765625, 1.1162109375, 0.2963867188, 0.3852539062, -0.0521850586, 0.2086181641, 1.04296875, 0.0651855469, -0.4677734375, 0.283203125, -0.2875976562, -0.0286560059, 0.3608398438, -0.0008254051, 0.2355957031, 0.3881835938, 1.59375, 1.4267578125, -0.0865478516, -0.3625488281, 0.7944335938, 0.3940429688, 0.525390625, -0.1374511719, 0.1091308594, -0.0842285156, -0.1024780273, -0.4580078125, -1.708984375, 0.3247070312, 0.0684814453, -0.6606445312, -0.1688232422, -1.390625, -0.6137695312, 1.0185546875, -0.0158691406, 0.1887207031, -0.9086914062, 1.3046875, 0.2490234375, 0.4445800781, 1.29296875, -0.0343933105, -0.5444335938, 0.0827636719, 0.1511230469, -0.1967773438, -1.2900390625, -0.6801757812, -0.2368164062, 0.7856445312, -0.3742675781, -0.4167480469, 0.9521484375, -0.5151367188, -0.4562988281, 0.1420898438, 0.4956054688, 0.1822509766, 0.1297607422, -0.333984375, -0.1063232422, 0.501953125, -0.0630493164, -0.6489257812, -0.2053222656, -0.2954101562, -0.5908203125, -0.0831298828, 0.5048828125, 1.47265625, 0.3806152344, 0.7036132812, 1.28515625, 0.1519775391, -0.533203125, 0.8286132812, -0.8559570312, 1.2734375, -0.0397033691, -0.0593566895, 0.2086181641, -0.2069091797, -1.453125, 0.1634521484, -0.5053710938, -0.1975097656, -0.5678710938, 0.6982421875, 0.1286621094, -0.2556152344, -0.1877441406, -0.2336425781, 1.3212890625, -0.6123046875, -0.4230957031, -0.533203125, -0.4421386719, -0.4633789062, 0.1630859375, 0.0799560547, -1.0986328125, -0.1166992188, -0.533203125, -0.8227539062, 0.3225097656, 0.2685546875, -0.5986328125, -0.0080718994, 0.5419921875, -0.2427978516, 0.6977539062, 0.142578125, 0.5317382812, -0.515625, -0.6787109375, -0.0071525574, -0.9262695312, -0.8046875, 0.0508117676, 0.4821777344, -0.6137695312, 0.3950195312, 0.6528320312, -0.3444824219, -0.2846679688, 0.2622070312, 0.7919921875, 0.2978515625, -0.1932373047, -0.0159454346, -0.7880859375, 1.6865234375, 0.4819335938, 0.0642089844, -1.4951171875, -0.3347167969, -0.4802246094, 0.20703125, 0.7875976562, 1.306640625, 1.1796875, -0.2442626953, -0.4162597656, -0.2644042969, 0.9409179688, 0.1843261719, -0.2056884766, -0.0760498047, 0.0909423828, -0.5737304688, 0.93359375, -0.1624755859, -0.0544433594, -0.3369140625, 0.1680908203, 0.7172851562, 0.3974609375, -1.22265625, -0.4948730469, -0.1708984375, -0.4321289062, 1.109375, -0.0515441895, -0.0703735352, 0.2445068359, -0.0011539459, -1.455078125, -0.015007019, -0.1685791016, 0.0797119141, -0.3076171875, 0.4340820312, -0.1058959961, 0.3605957031, 0.3205566406, -0.1999511719, 1.6630859375, -0.4326171875, -0.8974609375, 0.2137451172, 0.2459716797, -0.5092773438, -0.2247314453, -0.2639160156, -0.0257568359, -0.1235961914, -0.3984375, 0.2590332031, 0.0093612671, -0.5087890625, -0.28125, -0.5161132812, -0.1981201172, 0.24609375, -0.7412109375, -1.1708984375, 0.4641113281, 0.7182617188, 0.4333496094, -0.4990234375, 1.0703125, -0.6123046875, -0.3586425781, -0.3898925781, 0.4865722656, 0.111328125, 0.298828125, 0.1124267578, 0.3884277344, -0.7338867188, -0.357421875, 0.5283203125, 0.9951171875, -0.4709472656, 0.1875, -0.8154296875, 0.876953125, 0.759765625, 0.3129882812, 0.6196289062, 0.1185913086, -0.423828125, -0.4787597656, 0.5258789062, -0.0452270508, -0.60546875, -0.2447509766, -0.1964111328, 0.8154296875, -0.517578125, 0.8686523438, 0.0752563477, 0.4423828125, 0.2973632812, 0.7436523438, -0.0191345215, -1.04296875, -1.0205078125, -0.1247558594, -0.3051757812, 0.6928710938, -0.2587890625, -0.9536132812, -0.4577636719, 1.53125, -1.552734375, 0.9912109375, -0.7377929688, -0.9453125, -1.4033203125, -0.9306640625, 0.5766601562, 1.7158203125, 1.208984375, -0.5283203125, 0.7993164062, 0.5278320312, 0.7524414062, -0.8793945312, -0.2005615234, 1.73828125, -0.7495117188, -0.7939453125, 0.5009765625, 0.7348632812, -0.580078125, 0.0805664062, -0.3696289062, -0.4379882812, 0.478515625, -0.0594177246, 0.892578125, -0.6376953125, 0.3520507812, 1.2265625, 0.818359375, -0.1162109375, -0.2172851562, -0.7758789062, -0.0383300781, 0.767578125, 0.5278320312, 0.0888061523, 0.7788085938, 0.4797363281, 0.8579101562, -0.5600585938, -0.8369140625, -0.1159057617, -1.201171875, -0.2203369141, 0.9521484375, 0.4877929688, 1.7568359375, -0.2169189453, 0.5053710938, -0.326171875, -0.1478271484, 0.0142211914, 0.1623535156, 0.1844482422, -1.2431640625, -1.18359375, -0.8022460938, -0.8842773438, 0.708984375, 0.1561279297, 0.7817382812, 0.1475830078, -0.6123046875, 0.2421875, -0.4357910156, -0.6381835938, 0.3308105469, -0.2546386719, -0.1821289062, -0.1820068359, 0.6381835938, 0.4926757812, 0.185546875, 0.0605773926, 0.1673583984, -0.6118164062, -0.041229248, -1.056640625, 0.4370117188, 0.2425537109, 0.2291259766, -0.1403808594, -0.4050292969, 0.3229980469, 0.5068359375, 0.453125, -0.083190918, 0.1470947266, 0.0623168945, -0.9077148438, -1.0185546875, -0.9965820312, -0.1379394531, -0.108581543, 0.2293701172, 0.5991210938, -0.5546875, -0.6201171875, -0.3903808594, 0.3630371094, -0.2266845703, 0.3720703125, 0.0753173828, -1.1708984375, -1.2763671875, -0.4089355469, 0.050567627, 0.0848388672, -0.33203125, 0.0338745117, 0.8842773438, 0.6923828125, -0.5615234375, 0.1071166992, -0.4130859375, -0.3342285156, 1.1630859375, -0.3322753906, 0.0435180664, 0.7739257812, -0.3210449219, -0.4323730469, 0.7109375, 0.1652832031, 1.9736328125, -1.7197265625, -1.763671875, 0.5600585938, -0.6625976562, 0.1965332031, -0.2180175781, 0.1838378906, -0.0204162598, 0.3872070312, 0.2976074219, 0.9760742188, -0.7231445312, 0.2238769531, 0.8251953125, 0.1309814453, 0.7163085938, -0.2956542969, -0.8256835938, -0.1873779297, 0.6166992188, 1.0146484375, -0.708984375, 0.7036132812, -0.0178222656, -0.7060546875, -0.2281494141, -0.478515625, -1.10546875, 0.7788085938, -0.2998046875, -0.6079101562, -0.0466308594, 1.0576171875, 0.1248779297, -0.2121582031, -0.1340332031, 0.0780639648, -1.0400390625, 0.767578125, -0.2360839844, -0.0244293213, -1.326171875, -0.1462402344, 0.8759765625, 1.0869140625, 0.076965332, 0.1713867188, 1.5322265625, -0.0043716431, 0.1956787109, -0.5815429688, -0.4462890625, 0.4440917969, 0.2797851562, 0.3481445312, -0.5078125, 0.587890625, 0.1481933594, -0.6440429688, 0.36328125, -0.6450195312, -0.0368041992, -0.556640625, -0.8442382812, -0.9545898438, 0.8115234375, 0.5244140625, 1.1630859375, 0.83984375, -0.2502441406, 0.1281738281, 0.4802246094, 0.1586914062, 0.3654785156, -0.3156738281, 0.2978515625, -0.6845703125, 0.1064453125, 1.0595703125, -0.1668701172, 0.0405273438, 0.244140625, 0.1301269531, 1.7138671875, -1.177734375, -0.8061523438, -0.0532531738, 0.4670410156, -1.9765625, -0.3830566406, 0.3974609375, 0.9291992188, 0.6450195312, -0.8583984375, -1.234375, -0.1472167969, 0.4135742188, -0.0210876465, -1.6455078125, 0.8442382812, 0.4609375, -1.2177734375, -0.1800537109, 0.1193847656, -0.2475585938, 0.0233917236, 0.3596191406, 1.09375, -1.26953125, -0.39453125, -0.806640625, 0.7216796875, -0.0934448242, 0.3627929688, 0.4731445312, 0.8120117188, 0.2563476562, -12.234375, -0.6201171875, -0.2744140625, 0.904296875, -0.525390625, 0.4741210938, -0.0406799316, -0.2900390625, -0.1029663086, 0.3969726562, -0.3559570312, -0.3581542969, 0.2805175781, -0.1071166992, -0.1301269531, -0.6674804688, -0.4150390625, -1.0185546875, 0.0331115723, -0.4536132812, 0.1866455078, 0.638671875, -0.72265625, -0.60546875, -0.94140625, -0.108581543, 0.8603515625, -1.208984375, -0.1702880859, 0.3688964844, -0.328125, -0.1981201172, 0.116394043, 0.556640625, 0.5834960938, -1.4521484375, 0.5795898438, -0.3259277344, 0.1970214844, -0.4755859375, -0.3266601562, 0.572265625, -0.4418945312, 0.556640625, -0.0969848633, -0.4367675781, -0.4487304688, -0.6875, -0.3112792969, 0.775390625, 0.2978515625, 0.3217773438, -0.7924804688, -0.6020507812, 0.0344848633, -1.060546875, -0.0363769531, 0.2524414062, -0.0687255859, 0.2866210938, 0.4050292969, 1.91015625, -2.017578125, -0.66015625, -0.2232666016, 0.3503417969, -0.0188598633, -1.126953125, 1.45703125, -0.0021800995, 0.1881103516, 0.7065429688, -0.6420898438, 0.626953125, 0.138671875, 1.03515625, -0.0337219238, -0.3442382812, 0.05859375, 0.1107177734, -0.5615234375, 1.4560546875 ]
A potentiometric sensor is a type of chemical sensor that may be used to determine the analytical concentration of some components of the analyte gas or solution. These sensors measure the electrical potential of an electrode when no current is present. Principle The signal is measured as the potential difference (voltage) between the working electrode and the reference electrode. The working electrode's potential must depend on the concentration of the analyte in the gas or solution phase. The reference electrode is needed to provide a defined reference potential. Classification of sensors Potentiometric solid state gas sensors have been generally classified into three broad groups. Type I sensors have an electrolyte containing mobile ions of the chemical species in the gas phase that it is monitoring. The commercial product, YSZ oxygen sensor, is an example of type I. Type II sensors do not have mobile ions of the chemical species to be sensed, but an ion related to the target gas can diffuse in the solid electrolyte to allow equilibration with the atmosphere. Therefore, type I and type II sensors have the same design with gas electrodes combined with metal and an electrolyte where oxidized or reduced ions can be electrochemically equilibrated through the electrochemical cell. In the third type of electrochemical sex , auxiliary phases are added to the electrodes to enhance the selectivity and stability. Type III sensors make the electrode concept even more confusing. With respect to the design of a solid state sensor, the auxiliary phase looks as part of the electrode. But it cannot be an electrode because auxiliary phase materials are not generally good electrical conductor.
[ -0.0559387207, -0.318359375, -0.0068206787, 0.4318847656, 0.0671386719, 0.2873535156, 0.3518066406, 0.0285491943, -1.103515625, -0.3596191406, 0.5385742188, 0.1593017578, -0.2419433594, 0.3125, -1.0458984375, -0.7778320312, -0.1806640625, -0.900390625, -0.794921875, 0.3530273438, 0.5063476562, 0.2108154297, 0.1091918945, -0.9208984375, -1.4140625, -0.7060546875, -0.4790039062, -0.7006835938, -0.3728027344, -0.0847167969, -0.2006835938, 0.001865387, -0.6596679688, -0.7275390625, 0.8837890625, -0.056640625, -0.5771484375, 0.3681640625, -0.7231445312, 0.4916992188, -0.4030761719, 0.482421875, -0.039642334, -0.572265625, -0.2717285156, 0.1492919922, -0.2985839844, -0.5551757812, -0.62109375, 0.96875, -0.1883544922, 0.8779296875, 0.9453125, -0.7329101562, -0.529296875, -1.37109375, 1.333984375, -1.2275390625, 0.4216308594, -0.5581054688, -0.4670410156, -0.8579101562, -0.7524414062, -0.76953125, 0.2110595703, 0.1893310547, -0.2176513672, 0.7905273438, -0.4235839844, -0.5795898438, -0.1112060547, 0.625, 0.3286132812, -0.2161865234, 1.552734375, 0.3737792969, -0.4226074219, -0.2770996094, 0.2526855469, -0.4948730469, -0.9594726562, -0.6430664062, -0.466796875, 0.2878417969, -0.1414794922, -1.044921875, 0.3486328125, -1.0517578125, -0.7426757812, 0.6240234375, 0.0336303711, -0.4768066406, 0.6435546875, 0.6831054688, -1.0166015625, -0.1979980469, -0.7768554688, -0.4213867188, -0.6850585938, 0.0522155762, 0.0829467773, -1.275390625, -0.1586914062, 0.4416503906, -0.65234375, 1.162109375, -0.767578125, -1.1591796875, 0.3659667969, -1.1201171875, -0.2130126953, 0.3544921875, 0.8759765625, -0.1788330078, -0.7241210938, 0.6220703125, 0.1600341797, -0.1441650391, 0.0299987793, 0.4421386719, -0.2905273438, 0.3974609375, 0.4047851562, -1.0986328125, 0.0593261719, 0.0265655518, 0.1860351562, -0.5009765625, 0.6083984375, 0.2299804688, -0.763671875, 0.1882324219, 0.2159423828, 1.111328125, -0.2941894531, -0.2917480469, -0.4562988281, -0.6557617188, -0.0143203735, 0.3156738281, 0.1604003906, -1.5673828125, 0.6713867188, -0.7333984375, 0.1901855469, 0.4775390625, -0.3430175781, -0.4201660156, 2.00390625, -0.185546875, 0.0275421143, -1.5830078125, 0.030960083, -0.4479980469, -0.7221679688, -0.0719604492, 0.4411621094, 0.6357421875, -0.6010742188, -1.1494140625, -0.376953125, -0.3266601562, 1.001953125, 0.5815429688, -0.4836425781, 0.2570800781, 0.318359375, 0.3239746094, 0.7124023438, 0.0280609131, -0.3581542969, 0.5629882812, 1.1650390625, -0.2585449219, 0.2670898438, 0.0559692383, 0.0895385742, 0.3435058594, -0.2231445312, -0.228515625, -0.4514160156, 0.3364257812, -0.4155273438, -0.8266601562, -0.0897827148, -0.9497070312, 0.4016113281, 0.55078125, 0.2958984375, -0.6420898438, -0.7216796875, -0.4133300781, -0.4768066406, 0.2420654297, -0.2303466797, -1.77734375, 0.0168914795, 0.3957519531, 0.455078125, -0.1387939453, 0.2741699219, 0.2517089844, 0.4816894531, 0.1049804688, -0.54296875, -0.5791015625, -1.0966796875, -0.0970458984, 0.826171875, 0.3256835938, 0.2778320312, 0.6274414062, -0.5219726562, 0.0796508789, -0.5747070312, 0.6127929688, 0.5092773438, -0.8017578125, -0.1656494141, -0.1319580078, 0.2346191406, -0.2905273438, -0.0419006348, 0.1763916016, -0.9497070312, 0.2634277344, -0.3176269531, 0.5673828125, 0.4091796875, -0.0659790039, 0.62890625, 0.1362304688, -0.0229034424, 0.3918457031, 0.6596679688, -0.9111328125, 0.1530761719, -0.0308380127, -0.0747680664, 0.4692382812, 0.2315673828, 0.0888061523, -0.1490478516, -0.3208007812, -0.43359375, -0.0472412109, 1.5234375, -0.2149658203, -0.0017366409, 0.8305664062, 1.2470703125, 0.2517089844, 0.798828125, 0.1254882812, -0.0339660645, -1.2900390625, 0.4267578125, -1.1337890625, 0.4865722656, 0.1875, -1.1875, 0.7465820312, 0.0651245117, -0.2419433594, 0.5854492188, 0.7221679688, -0.5869140625, 0.2316894531, 1.296875, 0.59375, 0.1140136719, 0.0615234375, -0.2225341797, 0.3015136719, 0.7016601562, -0.7094726562, 0.5546875, -0.2741699219, -0.0284576416, 0.3088378906, -0.330078125, 0.0837402344, -0.6401367188, 0.4519042969, 0.673828125, -0.5737304688, -0.1004638672, -0.7470703125, -0.158203125, 0.0278778076, -0.6767578125, 0.3388671875, -0.3562011719, -0.1862792969, 0.1834716797, 0.3386230469, 0.7841796875, 0.4448242188, -0.3034667969, -0.41796875, 0.1065063477, 0.3950195312, 0.3259277344, -1.1162109375, 0.7749023438, 0.1273193359, 0.2709960938, -1.607421875, 0.2166748047, 0.4465332031, -0.6889648438, -1.6318359375, 0.8618164062, 0.2497558594, 0.2161865234, 0.7138671875, -1.037109375, -1.171875, 0.7216796875, -0.2868652344, 0.7666015625, -0.5048828125, 0.5869140625, 0.3669433594, 1.4765625, 0.0512390137, -0.619140625, -0.3898925781, -0.5366210938, 1.1796875, 0.525390625, 1.0498046875, 0.6376953125, 1.0146484375, 0.0981445312, -0.5747070312, -0.79296875, -0.826171875, 0.0033512115, 1.2685546875, -0.0642089844, -0.7846679688, -0.9897460938, -0.869140625, -0.2849121094, 0.7431640625, -0.4521484375, 0.8793945312, 1.236328125, -0.2254638672, 0.5239257812, 0.7065429688, -0.3022460938, 0.0135345459, 0.2033691406, -0.1039428711, -0.982421875, 1.05078125, -0.0872802734, 0.48046875, -0.4553222656, 0.1853027344, 0.8012695312, -0.1090087891, -0.1457519531, 0.2585449219, 0.0033512115, 1.10546875, 0.1788330078, 0.2283935547, 0.5546875, 0.3317871094, -0.7661132812, -0.1034545898, 0.4233398438, 0.34765625, 0.7954101562, -0.5825195312, -0.8139648438, -0.8139648438, 0.7583007812, 0.2194824219, 0.9301757812, -0.3081054688, -0.2502441406, 0.9487304688, -0.287109375, 0.8022460938, 0.1884765625, -0.6040039062, -0.4765625, -2.515625, 0.0050430298, 0.8916015625, -0.4157714844, -1.0625, 0.5249023438, -0.1854248047, 0.9833984375, -1.2265625, -0.1789550781, 0.8461914062, -0.6904296875, -0.2351074219, -0.1226806641, 0.2619628906, 0.1106567383, -0.4948730469, -0.0892333984, -0.2583007812, -0.0180053711, 0.3312988281, 0.3510742188, 0.1970214844, -0.1375732422, 0.0093154907, 0.6870117188, 0.9946289062, -1.111328125, -0.4892578125, -0.587890625, 0.4987792969, 0.345703125, 0.3247070312, -1.205078125, 0.4809570312, -0.4621582031, -0.75, 0.3828125, -1.361328125, -0.560546875, 0.6215820312, 0.501953125, 0.1491699219, 1.49609375, -0.2456054688, 0.2692871094, -0.392578125, -0.6875, -0.6977539062, -0.0124893188, 1.0029296875, -0.1422119141, 1.2822265625, 0.5947265625, 0.931640625, -0.8198242188, -0.0082931519, 0.6416015625, -0.5693359375, -0.1842041016, -0.2094726562, 1.1396484375, 0.1832275391, 0.0310058594, -1.2646484375, 0.984375, 0.7548828125, -0.1014404297, -0.0901489258, -0.4584960938, 0.4340820312, -0.6909179688, -0.2154541016, 0.0073204041, -0.2873535156, 0.1821289062, -0.1750488281, -0.7958984375, -0.4174804688, -0.5161132812, 0.0748901367, 0.537109375, -0.2805175781, 0.2220458984, 0.1762695312, 0.5815429688, -0.1876220703, -0.1351318359, -0.3796386719, -0.2398681641, -0.1658935547, -0.7353515625, -1.072265625, -0.2863769531, 0.3698730469, -0.1987304688, -0.3986816406, -0.4770507812, -0.6982421875, 0.361328125, -0.0899658203, -0.7333984375, -0.4440917969, -0.1837158203, -0.3125, 0.7744140625, -0.5463867188, -0.3239746094, -0.859375, -0.1357421875, -0.1450195312, 0.0393066406, 0.2592773438, -0.6284179688, 0.6005859375, -0.001159668, 0.118347168, 0.0107955933, -0.5712890625, -0.2275390625, 0.1218261719, -0.0922241211, -0.0396728516, 0.0820922852, 0.1575927734, 0.7485351562, -0.3469238281, -0.1593017578, 0.0985717773, 1.3671875, -1.1376953125, 0.8159179688, -0.5678710938, 1.060546875, 0.5830078125, -0.4638671875, -0.3591308594, -0.7094726562, -0.0960693359, -0.5307617188, 0.57421875, 0.2448730469, 1.046875, 0.6459960938, -0.1800537109, -0.2331542969, 1.8154296875, -1.15234375, 0.537109375, -0.73828125, -0.5991210938, -0.4860839844, 0.583984375, -0.2802734375, 0.462890625, 0.7041015625, 0.4301757812, -0.51953125, 0.2237548828, 0.4267578125, 0.0444030762, -0.3349609375, 1.533203125, 0.1407470703, -0.7211914062, -0.84375, 0.5322265625, 0.25390625, 0.09765625, 0.5751953125, 0.6362304688, -0.2244873047, 0.5737304688, 0.0953979492, 0.3452148438, -0.1967773438, -0.1979980469, 0.2047119141, -0.3220214844, 0.87890625, -0.6254882812, -0.0016670227, 0.4792480469, 0.8979492188, -0.3347167969, 0.3581542969, -0.4660644531, 0.134765625, -0.2844238281, -0.3310546875, -0.2595214844, 0.4719238281, -0.7368164062, 0.1219482422, -0.0016975403, -0.3059082031, 0.1661376953, 0.0657958984, -0.498046875, -0.625, 1.1845703125, -0.5346679688, -0.4438476562, -0.9008789062, -0.5708007812, 0.1839599609, 0.3293457031, -0.7392578125, -0.3332519531, 0.6591796875, -0.5068359375, -0.0238342285, 0.5668945312, -0.3295898438, -0.3747558594, 0.9555664062, -0.0689086914, 0.0835571289, 0.1915283203, 0.2917480469, -0.5131835938, 0.2551269531, -0.2357177734, 1.099609375, 0.2944335938, -0.4301757812, 0.0384521484, -0.4387207031, 0.4321289062, -0.69921875, 0.2919921875, -0.0045394897, -0.1936035156, 0.7314453125, 0.5380859375, 0.2761230469, 0.3876953125, 0.2563476562, 0.9086914062, 0.3801269531, 0.5234375, -0.2590332031, 0.4924316406, -1.2548828125, 1.1923828125, 0.2875976562, 1.265625, 0.1796875, 0.4592285156, 0.7182617188, -0.1889648438, 0.4719238281, -0.0109863281, -0.8627929688, -0.5859375, 0.2919921875, 0.0206604004, -0.4353027344, -0.3098144531, -0.802734375, 0.5078125, 1.0302734375, -0.6357421875, -0.3754882812, -0.6206054688, 1.2998046875, -0.5849609375, -0.0424194336, 1.00390625, -0.5771484375, 0.1324462891, -0.5541992188, 0.1533203125, -1.3017578125, -0.8935546875, -0.3032226562, -1.2138671875, 0.2221679688, -0.478515625, 0.6088867188, 0.0263366699, -0.7451171875, 0.3151855469, 0.0292358398, -0.716796875, 0.6220703125, -0.5717773438, -0.6982421875, -0.7060546875, 0.0921630859, 0.4794921875, 0.2629394531, 0.7485351562, 0.9697265625, 0.0932006836, -0.7651367188, 0.3820800781, 0.0694580078, 0.1843261719, -0.5834960938, 0.4340820312, -0.4892578125, -0.4685058594, -0.6274414062, -0.5776367188, 0.2624511719, 0.724609375, 0.0357971191, -0.2919921875, -0.0806884766, -0.513671875, -0.5766601562, 0.2885742188, 0.0195465088, 0.953125, -0.1002807617, -0.5629882812, 1.2490234375, 0.3666992188, -0.1971435547, 0.4990234375, 0.3947753906, -0.7255859375, 0.791015625, -0.2561035156, -0.4216308594, 0.2648925781, 0.2196044922, 0.3142089844, -0.544921875, 0.1865234375, 0.2434082031, -0.1771240234, -0.1049194336, -0.1729736328, 0.0573730469, 0.050567627, 0.8325195312, -0.8994140625, -0.474609375, 0.2010498047, -0.109375, 0.7036132812, 1.2998046875, 0.1605224609, 0.0919189453, -0.1663818359, 0.2717285156, -0.2917480469, 0.7006835938, -0.12890625, -0.2724609375, -0.6811523438, -0.4448242188, 0.3549804688, 0.5991210938, 0.1994628906, -0.8247070312, -0.1875, 0.054901123, 0.1480712891, -0.4543457031, 0.0658569336, -0.3659667969, -0.2121582031, -0.6987304688, -0.1826171875, 0.2264404297, 0.4899902344, 0.2475585938, -0.0121765137, -0.1514892578, -0.67578125, 0.2658691406, 1.1416015625, -0.2338867188, 0.2817382812, 1.33203125, -0.2788085938, -0.6606445312, -0.2768554688, -0.3327636719, 0.2299804688, -0.0240631104, 0.6166992188, 1.2626953125, -0.4406738281, -0.0384216309, 0.2873535156, 0.2556152344, -0.0887451172, -0.4963378906, -0.4736328125, 0.1082763672, -0.2221679688, -0.3869628906, -0.4167480469, -1.0595703125, -0.7749023438, -1.3857421875, -0.1905517578, 0.630859375, 0.8256835938, -0.626953125, -0.4724121094, -1.1064453125, 0.4013671875, -0.208984375, 0.1245727539, -0.0417785645, -0.60546875, 0.1872558594, -0.658203125, -0.0084915161, -0.3256835938, 0.4226074219, 0.873046875, -0.4104003906, 0.6201171875, 0.0279388428, -1.353515625, 0.5141601562, -0.5625, -0.1977539062, -0.7890625, 0.9125976562, 1.2587890625, -0.5278320312, 0.9711914062, 0.0533752441, -0.2430419922, -0.5190429688, -0.4274902344, 1.1337890625, 0.4553222656, 0.6748046875, 0.1865234375, -1.201171875, -0.6372070312, -0.6435546875, -0.3015136719, 0.5190429688, -0.0403442383, 0.0584411621, 0.5698242188, -0.4660644531, -0.5703125, 0.7758789062, 0.1689453125, -0.0873413086, -0.2624511719, -0.6704101562, 0.0792236328, -0.1286621094, -0.4177246094, -0.8227539062, 0.1022338867, 0.6020507812, -0.2958984375, 0.0128631592, 0.4716796875, -0.0275268555, -0.2822265625, 0.521484375, 0.6635742188, -0.3669433594, 0.6137695312, -0.560546875, -0.3532714844, 0.1172485352, -0.947265625, 0.5205078125, -0.0704345703, -0.2966308594, -0.0728759766, -0.4167480469, -0.1244506836, 0.0795288086, -0.0321044922, 0.8666992188, 0.2352294922, -0.3186035156, -0.2154541016, -0.1796875, -0.4831542969, 1.013671875, -0.1890869141, -0.0114364624, -0.9829101562, 0.1882324219, -0.478515625, 0.869140625, -0.3908691406, 0.1790771484, 0.5390625, -0.9267578125, -0.6518554688, 0.0107955933, -0.4116210938, 0.0126190186, 0.4519042969, 1.0458984375, -0.2800292969, 0.224609375, -0.0698852539, 0.7080078125, -0.0979614258, 0.0449523926, 0.4458007812, -0.2438964844, 0.060760498, -0.2907714844, 0.1657714844, -0.8491210938, 0.1586914062, 0.4501953125, -0.4475097656, 0.3327636719, -0.9033203125, 0.3757324219, -0.857421875, -0.7954101562, 0.4184570312, 0.1074829102, 0.1016845703, 0.4748535156, 0.9672851562, -0.615234375, -1.078125, -0.2775878906, 0.4091796875, -0.126953125, 0.3449707031, 0.4653320312, -0.1270751953, -1.2744140625, 0.0940551758, 1.5068359375, 0.6635742188, -0.1451416016, -0.9038085938, 0.1687011719, -0.6708984375, 0.1282958984, 1.048828125, 0.8759765625, -0.2172851562, -0.2685546875, 0.0570068359, 0.0327758789, -1.259765625, -13.84375, 0.0104598999, -0.6259765625, -1.109375, -1.85546875, -0.0658569336, 0.8862304688, -0.4584960938, 0.30859375, 0.2197265625, -0.8354492188, -0.0367736816, 0.580078125, -0.7958984375, 0.7158203125, -1.1962890625, -0.376953125, -0.4965820312, -0.4086914062, -0.3349609375, 0.71484375, 0.2296142578, 0.5234375, -0.3293457031, -1.482421875, 0.3293457031, -0.9018554688, 0.5698242188, 0.0411682129, -0.23828125, -0.1986083984, -0.513671875, 0.0471191406, 0.3115234375, 0.642578125, 0.2318115234, -0.5571289062, -0.4731445312, -0.1442871094, -0.33984375, -0.0230255127, 0.2202148438, -0.361328125, 0.1335449219, 0.0979003906, 0.1259765625, 0.6484375, -0.0469665527, -0.0202636719, 0.2144775391, 0.3173828125, 0.6713867188, 0.2634277344, 0.1298828125, -0.5883789062, -1.1328125, 0.8466796875, -0.83203125, -0.3889160156, -0.1923828125, -0.0639038086, 0.884765625, -0.2155761719, -0.4921875, 0.9291992188, -0.96484375, -0.1986083984, 1.162109375, 0.1563720703, -0.3264160156, 0.4890136719, -1.044921875, 1, 0.427734375, 0.0983886719, 1.45703125, -0.587890625, 0.0268554688, -0.2915039062, 0.677734375, -0.3254394531, -0.2421875 ]
In spite of this confusion, type III design offers more feasibility in terms of designing various sensors with different auxiliary materials and electrolytes. See also Potentiometer References Sensors Electrochemistry
[ -0.0897827148, -0.9775390625, -0.0080490112, 0.7124023438, 0.0959472656, -0.4868164062, -0.1147460938, -0.4047851562, 0.0231170654, -0.1977539062, 0.5283203125, 0.2697753906, -0.7685546875, 0.5219726562, -0.8725585938, -0.5205078125, 0.2027587891, -0.2318115234, -0.3798828125, 0.3000488281, 0.4213867188, 0.1024169922, -0.4169921875, -0.75390625, -1.1689453125, -1.189453125, -0.6328125, -0.0458679199, 0.2352294922, 0.1298828125, 0.2237548828, 0.2526855469, -0.9404296875, -0.2727050781, -0.4411621094, 0.4270019531, -0.6884765625, -0.2384033203, -0.2561035156, 0.3127441406, -0.0561218262, 0.3833007812, 0.091796875, -0.2604980469, -0.3581542969, 0.2225341797, -0.7827148438, -1.1259765625, -0.9428710938, 0.8383789062, -0.2561035156, 0.0895996094, 0.3156738281, -0.5561523438, -0.0835571289, -1.044921875, 0.646484375, -1.3525390625, 0.6040039062, -0.8110351562, -0.2712402344, -0.4968261719, -0.5087890625, -0.6943359375, -0.0537719727, -0.1895751953, 0.1284179688, 1.314453125, -0.9545898438, -0.2531738281, -0.5810546875, 0.740234375, 0.1453857422, -0.6342773438, 0.6245117188, 0.1622314453, -0.482421875, 0.1539306641, 0.3249511719, -0.2556152344, -1.421875, -0.2875976562, -1.0546875, 0.3459472656, -0.047454834, -0.5556640625, 0.2182617188, -0.1857910156, -0.5991210938, 1.28125, 0.3308105469, -0.0765991211, 1.189453125, 0.9008789062, -1.0546875, -1.037109375, -0.4604492188, 0.189453125, -0.0229949951, 0.5678710938, -0.0693969727, -0.7504882812, -0.8232421875, 0.8530273438, -0.4030761719, 1.373046875, -1.736328125, -0.5190429688, 0.591796875, -0.5444335938, 0.2890625, 0.7099609375, 0.3344726562, -0.2854003906, -1.212890625, 0.5717773438, 0.1224975586, -0.1661376953, 0.2744140625, 0.3967285156, -0.3996582031, -0.0023345947, 0.3273925781, -1.3359375, 0.1484375, -0.2531738281, 0.5795898438, -0.3464355469, 0.962890625, 0.6206054688, -0.3642578125, 0.6782226562, 0.2331542969, 0.5581054688, 0.666015625, -0.5107421875, -0.8212890625, -0.7270507812, 0.2196044922, 0.5078125, 0.0310821533, -0.9506835938, 0.6196289062, -0.5283203125, 0.1397705078, 0.392578125, 0.2922363281, 0.2587890625, 1.0810546875, 0.1794433594, -0.4047851562, -0.9755859375, 0.74609375, 0.2526855469, -0.4755859375, -0.37109375, 0.3037109375, -0.240234375, -0.845703125, -0.2834472656, -0.3227539062, -0.9140625, 0.2790527344, -0.0740356445, 0.4440917969, 0.6596679688, 0.1545410156, -0.2551269531, 0.4265136719, -0.0217437744, -0.3549804688, 0.4306640625, 1.0087890625, -0.625, 0.9321289062, 0.0891723633, 0.4958496094, -0.0377197266, 0.3884277344, 0.1018066406, -0.1469726562, -0.8891601562, -0.1833496094, -0.375, -0.0180969238, -1.1181640625, 0.1676025391, 0.853515625, -0.0093994141, -0.53515625, -0.8549804688, 0.3686523438, -0.4194335938, 0.1763916016, -0.7724609375, -2.4921875, 0.7036132812, 0.615234375, 0.0513305664, 0.0166168213, -0.5825195312, 0.1756591797, 0.515625, 0.4873046875, -0.4545898438, 0.83203125, -0.5849609375, -0.4106445312, 0.6391601562, -0.4855957031, 0.8193359375, 1.1015625, -0.3928222656, 0.0572509766, 0.5112304688, 0.5712890625, 0.7666015625, 0.6743164062, -0.1546630859, 0.642578125, 0.6928710938, 0.0277404785, -0.3920898438, 0.0155029297, -0.3220214844, -0.0048522949, -0.2565917969, 1.02734375, 1.0693359375, 0.2939453125, 0.4790039062, 0.5913085938, -0.580078125, 1.5556640625, 0.521484375, -0.4035644531, 0.067199707, 0.2529296875, 0.78515625, 0.4348144531, 0.0746459961, -0.5532226562, -0.5844726562, -0.1817626953, -0.5297851562, 0.5717773438, 0.2937011719, 0.5146484375, 0.5463867188, 0.3835449219, 1.0576171875, 0.2227783203, 0.2805175781, 0.2954101562, -0.047088623, -0.869140625, -0.5341796875, -0.3937988281, 0.5043945312, -0.1319580078, -0.6098632812, 0.6362304688, -0.0372619629, 0.1778564453, 0.2456054688, 0.7666015625, 0.1431884766, 0.6240234375, 1.3671875, 0.5239257812, 0.7216796875, 0.2093505859, -0.6059570312, -0.2366943359, 1.3671875, -0.5825195312, -0.1763916016, -0.3371582031, 0.1171264648, 0.2404785156, -0.1456298828, 0.3254394531, 0.0386962891, 0.28125, 0.3640136719, -0.6713867188, 0.3796386719, -0.4128417969, -0.1674804688, 0.1638183594, -0.3303222656, 0.2404785156, -0.3608398438, -0.1080322266, 0.3044433594, 0.2064208984, 0.2822265625, -0.1165771484, -0.2465820312, 0.3203125, -0.0054359436, 0.2546386719, 0.57421875, -1.287109375, 0.2907714844, 0.1129760742, 0.049621582, -1.201171875, 0.0415649414, 0.1473388672, 0.0463562012, -1.205078125, 0.931640625, -0.1409912109, -0.1323242188, 0.8403320312, -1.544921875, -1.017578125, 0.4025878906, -0.2517089844, 0.1149291992, -0.2354736328, 1.0908203125, 0.1821289062, 0.427734375, -0.0230102539, -1.2509765625, -0.8173828125, -0.333984375, 0.4606933594, -0.310546875, -0.1392822266, -0.3383789062, 0.7919921875, -0.2951660156, -1.1435546875, -0.9404296875, -0.1801757812, -0.841796875, 0.6713867188, 0.0364379883, -0.1065673828, -0.9936523438, -1.109375, 0.3232421875, 0.0912475586, -0.1656494141, 0.3527832031, 1.3076171875, -0.0866088867, 0.1268310547, 0.435546875, 0.4504394531, -0.3510742188, 0.826171875, -0.0458374023, -0.6298828125, 0.603515625, -0.0001549721, 0.0294494629, -0.0357055664, 0.4536132812, 0.2065429688, -0.004360199, -0.2705078125, -0.2271728516, -0.110168457, 0.3291015625, -0.0135574341, 0.0866699219, -0.2526855469, 1.0732421875, -0.8447265625, 0.6391601562, -0.703125, -0.1773681641, -0.0786132812, -0.1175537109, -0.4130859375, -0.5654296875, 0.4013671875, 0.5620117188, 0.8002929688, -0.1680908203, 0.2578125, 1.0048828125, -0.5659179688, -0.7905273438, 0.3032226562, -0.1372070312, -0.853515625, -0.9956054688, 0.5029296875, 0.8818359375, 0.3840332031, -1.03125, 0.3098144531, 0.2224121094, 0.1829833984, -0.8330078125, 0.0371704102, 0.6020507812, 0.3278808594, 0.3586425781, -0.5498046875, -0.1364746094, 0.0421142578, -0.4523925781, -0.0339660645, 0.3881835938, 0.0190734863, 0.7563476562, -0.0409851074, 0.4230957031, -1.2783203125, -0.0096130371, 0.8940429688, 0.6806640625, -0.5830078125, 0.0085220337, -0.515625, 0.2661132812, 0.1174316406, 0.8540039062, -0.517578125, -0.2033691406, 0.0899047852, -0.341796875, -0.0739746094, -1.61328125, -0.0307617188, 0.61328125, 0.0093460083, 0.1402587891, 0.9155273438, -0.6171875, -0.4748535156, 0.1710205078, -0.4140625, -0.283203125, -0.2471923828, 1.064453125, 0.4655761719, 1.853515625, 0.6459960938, 1.19140625, -0.4780273438, -0.2493896484, 0.5415039062, -0.2459716797, 0.1899414062, -1.1181640625, 1.4482421875, 0.1687011719, -0.0750732422, -0.9760742188, 0.4633789062, 0.3046875, -0.0615844727, -0.3994140625, -0.1583251953, 0.2213134766, -0.8642578125, 0.0459289551, 0.6225585938, -0.6875, -0.958984375, 0.1235961914, -0.2563476562, -0.2536621094, 0.1408691406, -0.3415527344, -0.4526367188, 0.3041992188, 0.5390625, 0.4089355469, 0.0566101074, -0.509765625, -0.54296875, 0.0893554688, -0.2658691406, -0.4602050781, -1.3173828125, -0.8930664062, -0.9799804688, 0.0523681641, -0.2491455078, -0.3630371094, -0.7983398438, -0.56640625, 0.3193359375, -0.3815917969, -0.8872070312, -0.2858886719, -0.5874023438, -0.7319335938, 0.251953125, -0.3229980469, -0.3325195312, -1.541015625, -0.0928955078, 0.4033203125, 0.3251953125, -0.8110351562, -0.4770507812, 0.3413085938, 0.0361328125, -0.1964111328, -0.5952148438, -0.4565429688, -0.3752441406, 0.0559692383, -0.0369567871, -0.5297851562, -0.8129882812, -0.1977539062, 0.2176513672, -0.484375, -0.0673828125, -0.2222900391, 0.7626953125, -1.615234375, 0.5087890625, 0.0296325684, -0.6728515625, 0.5581054688, -0.2454833984, -0.1416015625, -0.1010131836, -0.4694824219, 0.4565429688, -0.1300048828, -0.1939697266, 0.3916015625, 0.4274902344, -0.7270507812, 0.0700683594, 1.9951171875, -0.8413085938, 1.01171875, -0.1655273438, -0.2995605469, -0.3793945312, 0.0764160156, 0.2098388672, 0.4521484375, 0.9853515625, 0.4936523438, -0.2077636719, 0.2709960938, -0.3977050781, -0.0598754883, -0.0240936279, 0.9223632812, 0.1860351562, -0.6196289062, -1.1015625, -0.7412109375, 0.1114501953, -0.421875, -0.3422851562, 0.3830566406, -0.283203125, 0.8696289062, 0.2805175781, 0.1743164062, -0.41796875, 0.2492675781, -0.1944580078, -0.3269042969, 0.818359375, -0.4477539062, 0.8266601562, 0.3349609375, 0.3068847656, -0.4428710938, 0.685546875, 0.1295166016, -0.6127929688, 0.1796875, -0.3369140625, -0.0053787231, 0.9887695312, -0.8579101562, -0.2106933594, 0.7041015625, 0.7900390625, 0.1013183594, -0.1923828125, -0.6918945312, -0.4370117188, 1.015625, -0.4509277344, -0.94140625, -0.7856445312, -0.2644042969, 0.1896972656, -0.1001586914, 0.1195678711, 0.0629882812, 0.3615722656, -0.3708496094, -0.0179595947, 1.1650390625, -0.3269042969, -1.017578125, 0.3911132812, 0.033996582, -0.086730957, 0.6040039062, 0.0200805664, -0.1389160156, 0.3493652344, -0.0563049316, 0.9228515625, 0.9169921875, -0.6669921875, -0.1463623047, -0.1412353516, -0.8276367188, -0.8774414062, -0.4326171875, 0.1812744141, -0.5209960938, 0.298828125, 0.1948242188, 0.3000488281, 0.4821777344, -0.583984375, 0.8334960938, 0.6694335938, 0.4895019531, -0.1340332031, 0.6596679688, -1.677734375, 0.8959960938, 0.28125, 1.3818359375, 0.3698730469, 1.1982421875, 1.0888671875, -0.5693359375, 0.1155395508, 0.0729370117, -0.2666015625, 0.1444091797, -0.2202148438, 0.3627929688, -1.4853515625, -0.1286621094, -0.6147460938, 0.5415039062, 1.08984375, -0.0278625488, 0.3276367188, -0.5791015625, 0.5795898438, -0.21875, 0.2841796875, 0.6079101562, -0.1151123047, -1.0224609375, -0.5083007812, -0.1674804688, -0.5620117188, -0.8862304688, 0.7661132812, -0.7661132812, -0.3369140625, -1.26171875, 1.251953125, -0.1113891602, -0.1207275391, 0.7153320312, 0.2785644531, -0.2878417969, 0.8349609375, -1.037109375, -0.6611328125, -0.3093261719, 0.0946044922, 0.0628662109, 0.0198059082, 0.6572265625, 0.9008789062, 0.0294952393, -0.3967285156, 0.4660644531, 0.4956054688, -0.3071289062, -0.67578125, 0.2152099609, -1.3388671875, -0.728515625, -0.1145629883, -0.6147460938, 0.4992675781, 0.927734375, 0.0099639893, -1.185546875, 0.76953125, -1.150390625, -0.1112670898, 0.3469238281, -0.3723144531, 0.6982421875, -0.4296875, -0.2993164062, 0.84765625, 0.6059570312, 0.0252532959, -0.0745849609, 0.3635253906, -1.5927734375, 0.7578125, 0.3693847656, 0.1673583984, 0.2335205078, 0.4992675781, 0.091003418, -1.0888671875, -0.2529296875, 1.451171875, -0.2583007812, 0.29296875, -0.1551513672, -0.1474609375, 0.3312988281, 0.947265625, -0.2878417969, 0.2019042969, -0.0870361328, 0.0050735474, 1.0966796875, 0.8984375, 0.3229980469, 0.2172851562, 0.0971679688, 0.6015625, -0.2651367188, 0.4360351562, -0.6728515625, -0.4724121094, -0.5063476562, -0.4240722656, -0.0498352051, 0.5141601562, 0.458984375, -0.7685546875, -0.1577148438, -0.1765136719, 0.1012573242, -0.0603027344, -0.1763916016, -0.6059570312, -0.416015625, -0.5952148438, 0.333984375, 0.3903808594, 0.7602539062, -0.2944335938, 0.0819702148, -0.3181152344, -0.3571777344, 0.1119384766, 0.6000976562, 0.2010498047, 0.5424804688, 1.3896484375, -0.83984375, 0.1951904297, 0.4995117188, -0.1710205078, 0.6450195312, -0.1610107422, 0.3420410156, 0.7036132812, -0.0665893555, -0.1395263672, -0.3981933594, -0.591796875, 0.2883300781, -0.3220214844, -0.4416503906, -0.0993652344, 0.3271484375, -0.4916992188, -0.4887695312, -1.0927734375, -1.7958984375, -1.2236328125, -0.1481933594, 1.7109375, 0.5278320312, 0.4584960938, -0.0639648438, -1.150390625, 0.013053894, -0.7172851562, -0.3330078125, -0.2062988281, 0.4353027344, 0.658203125, -0.5776367188, -0.8720703125, -0.875, 0.8735351562, 0.1641845703, -0.0916137695, 0.3388671875, 0.3771972656, -0.4875488281, -0.1540527344, -1.173828125, -0.1062011719, -0.2956542969, 0.978515625, 1.3291015625, -0.5219726562, 0.919921875, -0.0759887695, -0.4680175781, 0.3618164062, -0.2185058594, 1.3330078125, 0.7661132812, 0.6279296875, -0.8745117188, -1.6376953125, -0.2183837891, -0.5283203125, -0.4392089844, -0.0279998779, 0.0045280457, 0.0827636719, 0.3762207031, 0.2416992188, -0.5268554688, 0.822265625, 0.020904541, -0.205078125, -0.0519714355, 0.1512451172, -0.1033935547, -0.3059082031, -0.53515625, -0.0213470459, 0.3889160156, 0.4929199219, -0.3212890625, 0.6811523438, -0.3125, -0.2478027344, -0.2687988281, 0.0631103516, -0.0525817871, -0.2590332031, 0.7661132812, -0.576171875, 0.3381347656, -0.2492675781, -0.4987792969, 0.0233154297, -0.033782959, 0.1610107422, -0.3527832031, 0.4201660156, -0.6821289062, 0.404296875, -0.9194335938, 1.0615234375, 0.5883789062, -0.0916137695, -0.69140625, -0.6489257812, -0.26953125, 0.1510009766, -0.1798095703, -0.3051757812, -1.24609375, 0.1013793945, -0.6020507812, 0.0665283203, -0.8266601562, -0.3803710938, 0.4223632812, -0.4743652344, -0.6357421875, -0.228515625, -1.529296875, -0.4467773438, 0.541015625, 0.517578125, 0.4409179688, 0.2729492188, -0.2915039062, 0.962890625, -0.5595703125, -0.7944335938, 1.150390625, 0.5434570312, 0.0390930176, -0.6303710938, -0.2250976562, -0.5615234375, 0.634765625, 0.4235839844, -0.5141601562, 0.5541992188, -0.3596191406, -0.3547363281, -0.4741210938, -1.0654296875, 0.2330322266, -0.2680664062, -0.0921020508, 0.0586853027, 0.7016601562, -0.5634765625, -1.0849609375, -0.4919433594, 0.9575195312, 0.279296875, -0.0119476318, 0.2888183594, 0.1359863281, -0.7724609375, -0.2189941406, 1.2734375, 0.796875, -0.6162109375, -0.1940917969, 0.3090820312, -0.0130767822, 0.8930664062, 1.1748046875, 1.6904296875, 0.0281677246, 0.3098144531, 0.02394104, -0.2379150391, -1.4091796875, -13.796875, -0.2861328125, 0.0516357422, -1.197265625, -1.6025390625, -0.4860839844, 0.1671142578, -1.0732421875, -0.4624023438, 0.62890625, -1.13671875, 1.5703125, -0.0088043213, -0.1837158203, 0.2846679688, -1.173828125, -0.7875976562, -0.0347595215, -0.2222900391, -0.2529296875, 0.1468505859, 0.4069824219, 0.3972167969, -0.2122802734, -0.9995117188, 0.4343261719, -0.7436523438, 0.51171875, -0.3671875, -0.4533691406, 0.3181152344, -0.4948730469, 0.28515625, 0.7797851562, 0.1291503906, -1.1591796875, -0.560546875, -0.9658203125, 0.2054443359, 0.4399414062, -0.2272949219, -0.0815429688, -0.5668945312, -0.2971191406, 0.1629638672, 1.1640625, 0.7446289062, 0.1133422852, 0.1035766602, 0.0786132812, 0.1860351562, 0.9482421875, 0.2592773438, 0.0780639648, -0.3500976562, -1.0439453125, 0.755859375, 0.1433105469, -0.2254638672, 0.1260986328, 0.2125244141, 0.6884765625, -0.62109375, -0.3713378906, 0.3332519531, -0.6899414062, -0.5986328125, 1.1630859375, -0.2149658203, 0.0913085938, 0.3037109375, -0.9448242188, 1.0107421875, 0.2259521484, 0.5522460938, 1.1494140625, -0.2741699219, 0.065612793, 0.1931152344, 0.2644042969, 0.0702514648, -0.9541015625 ]
Open iT, Inc. is an independent software vendor that specializes in metering, analyzing, and optimizing usage of critical IT assets. It was founded in 1999 by Eistein Fosli, who obtained his Master of Science in Information Technology from the University of Oslo. Open iT originally started in Oslo, Norway, and has its main offices in Houston (Texas, US), Oslo (Norway), and Lucena City (Philippines). The company's main operations are in North America, Europe, and Asia. Products Open iT Suite of IT asset management tools meter and report on usage of applications, servers, storage, databases and services across an entire organization, from a total enterprise view down to each individual user. It is built on a client/server infrastructure and includes reporting tool mechanisms. Collected data is periodically sent to the Open iT Core Server, where it is processed and stored. Two types of reporting tools, the Open iT Reporting Server and the Open iT Analysis Server, may then pick up these stored data to generate customizable reports on a web browser. Modules The Open iT Software Suite has 6 modules. These are LicenseAnalyzer, LicenseOptimizer, ApplicationTracker, SystemAnalyzer, StorageAnalyzer, and UsageAnalyzer. LicenseAnalyzer Open iT LicenseAnalyzer is a software usage metering and optimization tool used for managing software licenses. This module provides an enterprise-wide view of software license usage, allowing companies to align purchases and maintenance with user needs.
[ 0.1785888672, -1.2431640625, 0.4487304688, 0.826171875, -0.2631835938, 0.4138183594, -0.8881835938, -1.439453125, 0.2342529297, -0.6748046875, 0.7895507812, 0.4790039062, 0.4890136719, 0.9135742188, -0.8657226562, 0.2858886719, -0.0953369141, 0.4514160156, 0.3989257812, -0.0935668945, 0.6435546875, -0.9931640625, -0.5234375, -2.642578125, -0.1962890625, 0.0667114258, 0.6630859375, -0.4577636719, -0.4465332031, 0.1370849609, -1.0166015625, 0.4965820312, -2.08984375, 0.13671875, 0.6313476562, 0.6728515625, 0.685546875, -0.3393554688, -0.2209472656, -0.0941772461, 0.0638427734, -0.66015625, -0.08984375, -0.4067382812, 0.58984375, 0.3576660156, 0.4372558594, -0.8134765625, 0.455078125, 0.234375, 0.3540039062, -0.6484375, -0.6284179688, -0.6826171875, 0.0202636719, -0.6088867188, 0.2012939453, -0.2810058594, -0.3918457031, -0.1782226562, -0.5200195312, 0.66796875, -0.419921875, -0.5385742188, 0.2961425781, -0.490234375, -1.12890625, -0.0882568359, 0.1408691406, 0.1016235352, -0.5102539062, 0.3005371094, 0.5546875, -0.5634765625, 1.013671875, -0.4887695312, 0.9643554688, 0.23046875, 0.1676025391, 0.2624511719, -0.7416992188, -0.3171386719, 0.1081542969, -0.1810302734, -0.3022460938, 0.1948242188, 0.5219726562, -0.3190917969, 0.2954101562, 0.5668945312, -0.2498779297, -0.275390625, -0.087097168, -1.0224609375, 0.8095703125, 1.0400390625, 0.7573242188, -0.7534179688, -0.1280517578, -0.1634521484, -0.5302734375, -0.4187011719, -0.7265625, 0.3645019531, -0.283203125, 0.4372558594, 0.4050292969, 0.4885253906, 0.8442382812, 0.2573242188, 0.109375, 0.1907958984, -0.6259765625, -0.3713378906, 0.27734375, -0.1043701172, 0.642578125, -0.646484375, -0.3198242188, -0.1510009766, 0.5981445312, 0.1697998047, -0.361328125, -0.3654785156, 0.9243164062, 0.5092773438, 0.9067382812, 0.8071289062, 0.0790405273, -0.5595703125, 0.1024780273, -0.5029296875, 0.0672607422, -0.2282714844, -0.0315551758, -0.3374023438, -0.9833984375, 0.1964111328, 0.4050292969, -0.1691894531, 0.1041259766, -0.1724853516, 0.5239257812, -0.6235351562, 0.7172851562, -0.098815918, -0.271484375, 0.8334960938, -0.337890625, -0.7001953125, -0.2414550781, -0.2814941406, 0.0862426758, 0.9916992188, 0.4853515625, -0.560546875, -0.0082092285, -0.9365234375, 0.0807495117, 0.8159179688, -1.244140625, -1.6328125, 0.2100830078, 1.2255859375, 0.2973632812, 0.2551269531, -1.0595703125, -0.4775390625, 0.0949707031, -0.2120361328, 0.6220703125, 0.0413208008, 0.55859375, -0.2055664062, -0.9965820312, -0.2824707031, 0.5517578125, -1.1064453125, -0.4655761719, -1.294921875, -0.5922851562, -1.0908203125, -0.51171875, -0.9780273438, -0.763671875, 1.1337890625, 0.0397949219, -0.1104736328, -0.138671875, 0.4641113281, -0.0263061523, 0.0283813477, -1.2060546875, 0.6630859375, 0.0940551758, -0.1475830078, 0.1384277344, -0.8481445312, 0.4462890625, 1.099609375, -0.3117675781, 0.1174926758, 0.1379394531, -1.1552734375, -0.2822265625, 0.2944335938, -0.5346679688, 1.3359375, 0.2143554688, 0.1440429688, -0.6372070312, 0.5771484375, -0.1368408203, 0.57421875, -0.4528808594, 0.8374023438, 0.0410461426, 0.0065078735, 1.3212890625, 0.1910400391, 0.5302734375, 0.8525390625, 0.255859375, -0.9873046875, -0.4533691406, -0.79296875, 0.2329101562, 0.462890625, -0.3186035156, -0.6938476562, 0.40625, 0.5966796875, 0.1949462891, -0.0144805908, 1.7861328125, -1.009765625, 0.0224151611, -0.9467773438, -0.0152206421, -0.130859375, 0.1333007812, -0.0842285156, 0.3532714844, -1.5185546875, -0.4167480469, 0.0134124756, 0.1910400391, -0.765625, -0.2575683594, 0.984375, 0.0196838379, -0.4138183594, 0.5131835938, -0.0955810547, 0.1702880859, 0.4501953125, -0.1917724609, -0.7143554688, 0.990234375, -0.8491210938, -0.2470703125, 0.7045898438, 0.0901489258, 0.5629882812, -0.1428222656, 0.3918457031, -0.1568603516, -0.556640625, 1.392578125, -0.423828125, -0.0936889648, -0.4125976562, 0.6665039062, -0.765625, 0.6201171875, 0.9716796875, 0.3937988281, -0.2121582031, 0.1501464844, -0.2836914062, 0.5981445312, 0.6274414062, -0.3212890625, -0.0504150391, 0.1385498047, -0.7026367188, 0.2983398438, 0.1745605469, 0.3703613281, 1.3359375, 0.1678466797, 0.1146850586, 1.5947265625, 0.0597839355, -0.07421875, -0.328125, 0.404296875, -0.1160888672, 0.2543945312, -1.3779296875, 0.5522460938, 0.4226074219, -0.096496582, -2.34765625, 0.1467285156, 1.1015625, -0.1083984375, -0.74609375, 0.4797363281, 1.2275390625, 0.9125976562, -0.2189941406, -0.5927734375, 0.5795898438, -0.3842773438, -0.2287597656, -0.5498046875, 0.1182861328, -0.0311584473, -0.4443359375, 0.2369384766, 0.6865234375, -0.4887695312, 0.1124267578, 0.3608398438, -0.0575561523, -0.7055664062, -0.8081054688, 0.0475769043, 0.794921875, -0.458984375, 0.0620117188, 0.4807128906, 0.5112304688, 0.2861328125, 0.1673583984, 0.9482421875, -0.4223632812, -0.7407226562, -0.1161499023, -0.0403747559, -0.578125, -0.1419677734, 0.2340087891, 0.1986083984, 0.2932128906, 0.3044433594, -1.59375, 1.2578125, -0.104675293, 0.2180175781, 0.3952636719, 0.0534667969, -0.1326904297, -0.0717773438, -0.6372070312, 0.0193939209, 0.9033203125, -0.4130859375, 0.5537109375, 1.5546875, -0.2749023438, -0.9091796875, 1.2109375, -0.7080078125, 0.0888061523, 0.8178710938, -0.8388671875, 0.5122070312, -0.1304931641, 0.4643554688, 0.1672363281, -0.2038574219, -0.4724121094, 0.1365966797, -1.08984375, -0.6689453125, 0.978515625, -0.7709960938, 0.7451171875, 1.1826171875, -0.3696289062, -0.5004882812, -0.2064208984, -1.0517578125, -0.3371582031, -1.08984375, -0.1049194336, -1.6806640625, -0.4516601562, -0.0914306641, -0.7973632812, 0.5366210938, 0.3493652344, 0.6391601562, 0.259765625, 1.1630859375, -0.9345703125, -0.4633789062, 0.3110351562, 0.3381347656, -0.4775390625, 0.1939697266, -0.2124023438, -0.46875, 0.8999023438, 0.85546875, -0.361328125, 0.2976074219, 0.0413818359, -0.1357421875, -0.3425292969, -0.0816040039, -0.6860351562, -1.2275390625, 0.1853027344, 0.3312988281, 0.2641601562, 0.2259521484, 0.9853515625, -1.296875, 0.6831054688, 1.48046875, -0.6240234375, -0.7392578125, 0.6826171875, -0.1401367188, -0.2580566406, 0.6088867188, -0.1243286133, -0.88671875, 1.1376953125, 0.0922851562, 0.2602539062, -0.1451416016, 0.1944580078, 0.515625, -0.3830566406, -0.1417236328, 0.1337890625, 1.1337890625, 1.16015625, 0.1052246094, -1.599609375, -0.9741210938, 0.2010498047, 1.642578125, -0.2252197266, 0.9443359375, -0.4040527344, -0.3125, 0.2452392578, -0.30859375, -0.3234863281, 1.046875, 0.5004882812, 0.0875244141, -0.0930175781, 0.3815917969, -0.3708496094, 0.3996582031, -0.5805664062, 0.0368041992, 0.25, 0.1611328125, -0.9448242188, -0.5107421875, 0.0650634766, 0.0393981934, -0.2631835938, 0.6030273438, -0.2016601562, -0.1848144531, -0.1002807617, 0.3918457031, 0.2565917969, 0.7602539062, 0.6040039062, 0.2416992188, -0.5634765625, 0.6806640625, 0.1605224609, -0.5708007812, -0.1989746094, 0.4887695312, 0.3762207031, 0.2680664062, -0.7646484375, -0.3933105469, -1.015625, -0.1701660156, -0.158203125, -1.2734375, -0.0185699463, 0.1514892578, -0.5854492188, -0.2404785156, -0.3984375, -0.42578125, -0.7861328125, -0.7099609375, -0.1535644531, -0.158203125, 0.388671875, 0.5166015625, -1.1259765625, 0.5703125, 0.443359375, 0.7563476562, -0.693359375, -0.1016845703, -0.2296142578, 0.8154296875, 0.3210449219, 0.0972900391, 0.3403320312, -0.3063964844, -0.611328125, 0.2401123047, 0.0755615234, -0.0348510742, 0.712890625, -1.2119140625, -0.6010742188, -0.5966796875, 0.693359375, 0.6982421875, 0.4416503906, 0.3713378906, 0.3408203125, 0.87109375, 0.888671875, -0.3994140625, 0.5009765625, 0.9731445312, -0.541015625, 0.6625976562, -0.6040039062, -0.6259765625, 0.0144042969, -0.7250976562, 0.2370605469, 0.4499511719, -0.07421875, -0.5107421875, 0.6752929688, -0.0535888672, -0.8642578125, -0.4389648438, -0.1306152344, -0.1345214844, 0.2224121094, -0.3403320312, -0.1010742188, -0.7314453125, -0.669921875, -0.5756835938, 0.919921875, 0.3063964844, 0.7763671875, 0.0359802246, -0.5483398438, -0.2469482422, 0.8466796875, 0.2025146484, -0.7900390625, 0.0576477051, 0.3342285156, -0.1968994141, 0.4233398438, -1.2119140625, -0.2338867188, -1.234375, -0.5258789062, 0.3442382812, 0.1156616211, 0.5166015625, -0.1921386719, 0.2393798828, 0.7026367188, 0.3552246094, 0.041595459, -0.8706054688, -0.865234375, 0.7861328125, 1.46484375, 0.501953125, -0.1995849609, -0.2709960938, -0.8461914062, 0.0126495361, -0.7309570312, 0.7670898438, 0.2702636719, -0.2963867188, -0.3227539062, -0.33203125, -0.1644287109, -0.7260742188, 0.0251159668, -0.1951904297, -0.3522949219, 1.0205078125, 0.2680664062, 0.1817626953, -0.6674804688, -0.6240234375, -0.0682373047, 0.5190429688, -0.4436035156, 0.3874511719, 1.2275390625, -0.4931640625, -0.9360351562, 0.5825195312, -0.828125, -0.0313110352, 0.4201660156, -0.051361084, -0.1480712891, -0.71875, 1.03125, -0.0541992188, -0.2449951172, 0.1027832031, 0.52734375, -0.0684204102, 0.3618164062, 0.2956542969, 0.4006347656, -0.5883789062, 0.8803710938, -0.0060348511, 0.0601806641, 0.171875, 1.080078125, -0.0772094727, 0.3676757812, 0.58203125, -0.6157226562, 0.3095703125, -0.3515625, 0.443359375, -0.4411621094, 0.2658691406, -0.5859375, 0.3923339844, -0.5141601562, -0.5981445312, -0.0035152435, -0.0772094727, 0.0812988281, 0.7495117188, -1.02734375, 0.2442626953, -0.5463867188, 0.9853515625, -0.1118164062, -0.9975585938, 0.0670776367, -2.08984375, 1.0048828125, -0.7485351562, -0.2335205078, -0.3715820312, -0.55078125, -0.3923339844, -0.759765625, 0.2780761719, -0.8325195312, -0.1458740234, 0.9267578125, 0.2548828125, 0.3293457031, -0.298828125, 0.4614257812, -0.9438476562, -0.4780273438, -1.3896484375, 0.1403808594, 0.740234375, -0.1920166016, 0.037109375, 0.1090698242, -0.1877441406, -0.5512695312, 0.2064208984, 0.3603515625, 0.849609375, 0.5673828125, -0.478515625, 0.603515625, -1.205078125, -0.4848632812, -1.7470703125, -1.404296875, 0.5405273438, 0.3771972656, 0.6674804688, 0.0507507324, 0.474609375, -0.7006835938, -0.4372558594, -0.3117675781, -0.5473632812, 0.7631835938, -0.3474121094, 0.5380859375, -0.6586914062, -0.4467773438, -0.1001586914, 0.0015659332, -0.1004638672, -0.12890625, 0.1005859375, 1.6298828125, 0.5268554688, -0.91015625, 0.0050354004, 0.5854492188, -0.3781738281, 0.3674316406, 0.7124023438, -0.6123046875, -0.3361816406, 1.8701171875, -1.2490234375, 0.0579528809, 0.9287109375, -0.6157226562, -1.2783203125, 1.220703125, -0.576171875, 0.5087890625, -0.8881835938, 0.3251953125, 0.65234375, 0.6630859375, 0.7270507812, -0.3083496094, 0.572265625, 0.53125, 0.2563476562, -0.4978027344, 0.8159179688, -1.1376953125, 1.4150390625, -0.1506347656, 0.0561828613, -0.7861328125, 0.6147460938, -0.073059082, -0.9248046875, -1.107421875, 1.1171875, 0.6611328125, -1.1572265625, 0.4729003906, -0.7163085938, -0.8037109375, 0.3720703125, 0.0832519531, 0.6499023438, -0.1759033203, 0.1370849609, -0.114440918, 0.4172363281, 0.3002929688, -0.1062011719, -0.0772094727, 0.1918945312, 0.2883300781, -0.4409179688, -1.12109375, 0.3696289062, -0.4775390625, -0.2416992188, -0.671875, -0.2553710938, -0.6015625, 0.3408203125, -0.1379394531, 0.7739257812, 0.5454101562, 0.1743164062, -0.4956054688, 0.2985839844, -0.9614257812, -0.0876464844, 0.5405273438, -0.2155761719, -1.2685546875, 0.4975585938, 0.0946655273, 0.2016601562, -0.3701171875, -0.4475097656, 0.2268066406, 0.1166381836, 0.16015625, -0.4206542969, -0.1967773438, -0.1754150391, -0.1055297852, -0.0082092285, -0.4841308594, -0.0522155762, -0.697265625, 0.5864257812, -0.3657226562, -0.6215820312, 0.5678710938, 0.3388671875, 1.798828125, -0.1205444336, -0.6899414062, 0.0791625977, 0.7495117188, -0.1938476562, 0.3994140625, 0.0215454102, -0.4230957031, 0.6694335938, -0.3220214844, 0.4970703125, 0.8315429688, -0.8046875, 1.0849609375, -0.5122070312, 0.927734375, 0.2419433594, -1.05859375, -0.0035896301, 0.4099121094, 0.0838623047, -0.4226074219, -1.2705078125, -0.0697021484, -0.2507324219, 0.498046875, -0.3977050781, -0.000202775, -0.5493164062, 0.0198364258, -0.2258300781, -0.1560058594, -0.1135864258, -0.0401306152, 0.2098388672, 0.1364746094, -0.0924072266, 0.53515625, -0.6591796875, -0.2200927734, 0.6611328125, -0.9033203125, -0.6635742188, -0.90234375, 0.3129882812, 0.3041992188, 1.2421875, -0.4323730469, 0.5102539062, 1.1572265625, -0.1594238281, -0.4836425781, -1.0146484375, 0.0322265625, -0.010383606, 1.123046875, -0.0407409668, -0.3857421875, -0.9331054688, -0.1580810547, -0.2183837891, -0.1251220703, -0.2731933594, 0.73828125, -0.8115234375, -0.0243225098, 1.47265625, -0.07421875, -0.333984375, 0.4077148438, 0.4719238281, -0.2131347656, -0.4697265625, 0.63671875, -0.8486328125, -0.4750976562, 0.1175537109, -0.7260742188, 0.6254882812, -0.2668457031, -0.9975585938, -0.4138183594, -1.0166015625, 0.3857421875, -0.0338745117, 1.2333984375, -0.90625, 0.0502624512, 0.3913574219, 1.1484375, -0.3322753906, 0.6069335938, -0.0383300781, -1.2158203125, 0.5893554688, -0.60546875, -0.4331054688, -0.90625, -0.3469238281, -0.28515625, 1.0849609375, 0.0790405273, 0.359375, -0.4716796875, -0.8071289062, -0.6098632812, -0.1136474609, -0.8305664062, 0.5439453125, 0.8857421875, 0.2404785156, 1.7880859375, -0.7973632812, -0.2546386719, -1.1796875, 0.2379150391, 0.1055908203, -0.0667114258, 0.3286132812, -1.095703125, -0.5815429688, 0.212890625, -0.6323242188, -1.3203125, 0.935546875, 0.283203125, 0.5434570312, 0.0775146484, -13.078125, -0.1334228516, -0.4663085938, 0.0869140625, -0.4816894531, 0.5102539062, 0.0236663818, -0.0276641846, 0.501953125, 0.57421875, 1.0458984375, 0.26171875, 0.2474365234, -0.7568359375, 0.4313964844, 1.0634765625, -0.3227539062, -0.3610839844, 0.0774536133, -0.1591796875, -0.1971435547, -0.3054199219, -0.8671875, -0.80859375, -0.4230957031, 0.5556640625, -0.0260925293, 0.1475830078, -0.4204101562, 0.4714355469, -0.6088867188, 0.5693359375, -1.779296875, 0.7573242188, 0.1214599609, -0.2658691406, 0.6616210938, -0.578125, -0.4055175781, -0.4802246094, 0.9052734375, -0.7055664062, -0.8696289062, 0.2729492188, -0.216796875, -0.7739257812, -0.9750976562, -0.7368164062, 0.40234375, -0.4240722656, -0.74609375, -0.1781005859, -0.5615234375, 0.603515625, 0.1829833984, 0.0115661621, 1.5810546875, -1.2177734375, -0.3388671875, 0.6596679688, -0.1512451172, 0.3391113281, 0.0740966797, -0.5810546875, -0.2631835938, -0.0070343018, 0.6220703125, -0.1545410156, 0.3803710938, -0.2423095703, -0.2761230469, -0.8149414062, 0.3317871094, -0.1178588867, -0.1682128906, 0.0674438477, -0.3422851562, 0.1403808594, 0.7426757812, 0.0260467529, -0.1348876953, 0.0979614258 ]
There are more than 30 license managers that are being supported such as Abaqus / Elan, Aladdin Hardlock (NetHASP), Altair, Animator, Bentley SELECT (on local servers), Beta LM, ClearCase, Codemeter (Dongle), Dassault Systemes License Server (DSLS), EasyCopy, Encom, Enterprise Architect License Manager, EOD (Exceed onDemand), Fekete License Manager, FlexNet/FLEXlm, Gemalto License Manager, Green Hills License Manager (GHSlm), Honeywell ULM License Manager, HQMS, IBM-LUM, Jazz Team Server, LM-X, LS-DYNA, MathLM, Olicense, OrcaFlex (Orcina License Manager), Parasoft License Server, Peloton, Reprise License Manager (RLM), Sentinel HASP (NetHASP), Sentinel RMS, SlickEdit, SmartPlant, STI License Manager, Vector (Dongle), Wibukey (Dongle), etc. Some of this module's primary functions include the following: builds information about trends and usage patterns across an organization meters license usage across an enterprise optimizes deployment of expensive license resources minimizes the cost of purchasing licenses generate license usage reports for chargeback accounting ApplicationTracker Open iT ApplicationTracker is a software asset management solution that monitors activity levels of all applications on Windows, Unix and Linux platforms. ApplicationTracker has advanced reporting capabilities and enables tracking of software usage, independent of licensing method, allowing companies to manage even wider selections of expensive software, such as CATIA, MATLAB, Solidworks, ANSYS, MATLAB, AutoCAD, ArcGIS, Autodesk, ESRI, Dassault Systemes Software Suite and many others.
[ 0.8286132812, -0.3542480469, 0.56640625, 0.7954101562, 0.2924804688, -0.2185058594, -1.1005859375, -0.810546875, -0.451171875, 0.3425292969, 1.19921875, 0.6918945312, 0.615234375, 0.0198669434, -0.9653320312, 0.2005615234, 0.2634277344, 0.8930664062, 1.1279296875, 0.7998046875, 0.3488769531, -0.51953125, 0.0475769043, -3.099609375, 0.2053222656, 0.8315429688, 0.3234863281, 0.3149414062, -0.1087646484, 1.0185546875, 0.0431213379, 0.91015625, -2.421875, 0.6596679688, -0.2541503906, -0.5146484375, -0.3774414062, -0.1335449219, 0.6987304688, -0.1665039062, 0.3403320312, -0.1312255859, 0.6674804688, -1.3046875, 0.3247070312, 0.267578125, 0.5537109375, -0.8481445312, -0.9868164062, 0.8471679688, 0.1168823242, -0.2342529297, -0.5859375, -0.8984375, -0.1372070312, -0.1343994141, 0.2326660156, -0.5791015625, -0.0213012695, 0.1544189453, -0.7861328125, 0.3977050781, -0.0646362305, -0.7836914062, -0.0842285156, -0.4975585938, -1.537109375, 0.4475097656, 0.7841796875, -0.0186309814, -1.1640625, -0.1741943359, 0.1774902344, -0.4677734375, 0.6572265625, -0.6938476562, 0.6010742188, -0.4072265625, 0.5444335938, -0.4721679688, -1.875, -0.173828125, 0.2125244141, -0.0306091309, -0.0457763672, -0.0698852539, 0.810546875, -1.1201171875, 0.150390625, 0.3898925781, -0.6494140625, -0.2325439453, -0.2491455078, -0.8022460938, -0.045135498, 0.7924804688, 0.2087402344, 0.4787597656, 0.0431213379, -0.517578125, -0.3637695312, -0.1878662109, -0.251953125, 0.0459289551, -0.5454101562, 0.576171875, 0.4184570312, 0.5102539062, 0.1657714844, 0.8857421875, 0.3251953125, -0.3520507812, 0.3515625, -0.3403320312, -0.5517578125, -0.1273193359, 0.384765625, -0.7924804688, 0.6616210938, -0.0680541992, 0.2890625, -0.517578125, 0.1147460938, -0.3447265625, 0.7426757812, 0.4711914062, 0.6079101562, 0.0257263184, 0.1782226562, 0.0737915039, -0.6616210938, -0.2683105469, 0.4792480469, 0.4794921875, 0.108215332, -0.6088867188, -1.3564453125, 0.4143066406, -0.2064208984, -0.4665527344, 0.0867919922, -0.6938476562, 0.6733398438, -0.6284179688, 1.2138671875, 0.1662597656, -0.2230224609, 0.3999023438, 0.93359375, 0.031036377, -0.2108154297, -0.5874023438, 0.0790405273, -0.0581970215, 0.5854492188, -0.51953125, 0.3508300781, -0.35546875, -0.2124023438, 0.6572265625, -0.5556640625, -1.4990234375, 0.5131835938, 0.822265625, 0.6538085938, 0.3996582031, -0.6596679688, -0.1361083984, 0.2563476562, 0.0542297363, -0.17578125, -0.4719238281, 0.4633789062, -0.1340332031, -0.16796875, 0.2214355469, 0.3051757812, -1.1474609375, -0.9174804688, -1.208984375, -0.0844726562, -0.2526855469, -0.0911865234, -1.0439453125, -1.3642578125, 0.6157226562, 0.5532226562, -0.1824951172, -0.701171875, -0.2731933594, -1.1064453125, -0.4875488281, -1.2119140625, 0.5712890625, -0.1988525391, -0.8569335938, 1.12109375, -0.4560546875, 1.0029296875, 0.4167480469, -0.3256835938, -0.4680175781, -0.4350585938, -1.001953125, -0.73046875, 0.3991699219, -0.8374023438, 0.1822509766, 0.1507568359, -0.4011230469, -0.7114257812, 0.1541748047, -0.71484375, 0.67578125, -0.5600585938, 0.912109375, 0.0534667969, 0.2459716797, 0.6083984375, 0.6171875, 0.1329345703, 0.8701171875, -0.0995483398, -1.009765625, -1.765625, -0.8315429688, 0.6401367188, 0.2817382812, -0.4548339844, -0.0002889633, 1.0732421875, 1.51953125, 0.1844482422, 0.0972900391, 1.052734375, -0.669921875, 0.0535583496, 0.4665527344, -0.0397644043, 0.2739257812, 1.275390625, -0.2135009766, 0.28125, -0.4357910156, 0.2629394531, 0.697265625, -0.5078125, 0.0417175293, -0.1866455078, 0.6586914062, 0.1213378906, -0.6635742188, -0.1984863281, 0.6630859375, 1.033203125, 0.1752929688, 0.3291015625, -0.7358398438, 1.140625, -1.3271484375, 0.2890625, 0.71484375, -1.2177734375, 0.6396484375, 0.767578125, 0.3774414062, -0.6606445312, -0.2349853516, 0.775390625, -1.0283203125, 0.5200195312, 0.6821289062, 0.2199707031, -0.5463867188, -0.0285186768, 0.2392578125, 0.6240234375, 0.53515625, 0.607421875, 0.1417236328, 0.4299316406, 0.779296875, 0.0043373108, -0.3041992188, 0.0311279297, -1.255859375, -0.2069091797, 0.7836914062, 0.5385742188, 0.5419921875, -0.390625, 0.7626953125, 0.5698242188, -0.2639160156, -0.3972167969, -0.802734375, 0.8046875, -0.0678710938, 0.9858398438, -0.259765625, 0.1595458984, 0.783203125, 0.2734375, -0.7709960938, 0.0911254883, 0.2846679688, -0.0125350952, -1.1064453125, 0.2203369141, 1.337890625, -0.0162811279, -0.9594726562, -0.265625, 2.005859375, -0.5952148438, -0.2233886719, -0.3334960938, 0.2028808594, -0.1008300781, 0.0495605469, 0.8950195312, 0.6240234375, 0.3522949219, 0.1937255859, -0.0919189453, 0.7504882812, -1.134765625, -0.8349609375, 0.1446533203, 0.962890625, -0.0172729492, -0.0377502441, -0.556640625, -0.1384277344, 0.1472167969, 0.0176391602, 0.1337890625, 0.1293945312, -0.7641601562, 0.1171875, -0.8935546875, -1.1787109375, -0.5224609375, 0.0759277344, 0.1304931641, 0.3659667969, 0.5229492188, -1.3642578125, 1.6611328125, 0.1028442383, 0.677734375, 0.1817626953, 0.1756591797, -0.1497802734, -0.669921875, -0.4641113281, -0.0966796875, 0.9404296875, 0.2543945312, 0.806640625, 1.0673828125, 0.0848999023, -1.5888671875, 0.4841308594, -0.2371826172, 0.4484863281, 0.73046875, -0.1936035156, 0.0352783203, -0.3928222656, 0.4401855469, 1.25390625, -0.2108154297, 0.0084457397, -0.0000809431, -0.5678710938, -0.3640136719, 0.4694824219, -0.4841308594, 0.2854003906, 0.6206054688, -0.3459472656, -0.1437988281, -0.8627929688, -0.110168457, -0.0045661926, -0.5317382812, -0.0007228851, -1.6220703125, 0.470703125, -0.0245819092, -1.6591796875, 0.2406005859, 0.287109375, 0.3371582031, 0.6225585938, 1.44921875, -0.4184570312, 0.5415039062, 0.1343994141, -0.052734375, 0.2027587891, 0.0864257812, 0.2088623047, 0.2266845703, 1.0595703125, 0.9916992188, 0.2236328125, 0.6044921875, -0.4079589844, -0.1008911133, 0.2602539062, 0.2067871094, -0.3857421875, -1.669921875, -0.0003364086, -0.7021484375, -0.0188751221, 0.1998291016, 1.0341796875, -1.2470703125, 0.0894165039, 1.1259765625, 0.4357910156, -0.1001586914, 0.2580566406, -0.6357421875, -0.5458984375, 0.1746826172, -0.4799804688, -1.2099609375, 0.5278320312, 0.2420654297, 0.8217773438, 1.2900390625, 0.0421447754, 0.1263427734, -0.8608398438, -0.2374267578, -0.4360351562, 0.1947021484, 1.2607421875, 0.2216796875, -1.3974609375, -0.7768554688, -0.1265869141, 1.263671875, 0.0550537109, -0.0733032227, -0.1437988281, -0.5893554688, 0.3686523438, -1.0146484375, -0.0166320801, 0.8706054688, 0.1899414062, 0.0169677734, -0.1224975586, -0.7612304688, 0.0856323242, 0.2583007812, 0.1572265625, 0.4387207031, 0.1228637695, 0.5556640625, 0.1287841797, -0.765625, 0.1129760742, 0.3518066406, 0.4362792969, 0.7778320312, -0.3227539062, 0.3017578125, -0.0589599609, 0.8842773438, 0.2199707031, 0.4731445312, 0.6147460938, -0.4406738281, -0.7963867188, 0.5678710938, 0.1557617188, -0.1960449219, 0.5190429688, -0.1428222656, 0.8139648438, 0.296875, -0.626953125, -1.1640625, -0.9331054688, 0.0966186523, 0.1945800781, -0.02394104, -0.1072998047, -0.5229492188, -0.2775878906, -0.0304718018, -0.5903320312, -0.2437744141, -0.8779296875, -0.64453125, -0.50390625, -0.0256500244, -0.0785522461, -0.66015625, -0.955078125, -0.0225982666, 0.0716552734, 0.3635253906, -0.4025878906, 0.1800537109, 0.1171875, 0.034576416, -0.0032558441, -0.1695556641, -0.5180664062, -1.0283203125, -0.9677734375, -0.5004882812, -0.2587890625, 0.7094726562, 0.1759033203, -1.7607421875, 0.53515625, 0.3627929688, 1.115234375, -0.4318847656, 0.2457275391, -0.4025878906, 0.4753417969, 0.73046875, 0.2839355469, 0.0263977051, 0.8759765625, 0.3566894531, -0.470703125, 0.6103515625, 0.87109375, -0.2459716797, 0.2736816406, 0.1009521484, 0.0394287109, 0.4924316406, -0.5834960938, -0.9150390625, 0.1087036133, 0.4135742188, -0.1922607422, -0.4030761719, 0.0167541504, -0.0780029297, 0.2756347656, 0.0662841797, -0.1673583984, -0.6342773438, -0.1563720703, -1.474609375, 0.8549804688, -0.2729492188, 0.4880371094, 0.1108398438, -0.4914550781, -0.4602050781, 0.3659667969, -0.5825195312, 0.884765625, 0.3452148438, -0.0784301758, 0.4721679688, 0.2834472656, -0.8061523438, 0.2866210938, -0.2827148438, 0.0754394531, 0.7109375, 0.3481445312, 0.4655761719, 0.1397705078, -1.3486328125, -0.0522460938, 1.150390625, -0.2897949219, -0.330078125, 0.1784667969, 0.5063476562, 1.4296875, 0.0729370117, 0.0681152344, -0.0469970703, -0.7573242188, -0.1868896484, 0.3864746094, 0.6499023438, 0.1304931641, -0.59375, -0.4836425781, -0.6704101562, -0.0988769531, 0.2590332031, 0.28125, 0.8330078125, 0.0504455566, 0.1108398438, -0.2493896484, 0.0286865234, -0.5830078125, 0.3430175781, 0.092590332, -0.3076171875, 0.3186035156, -0.3977050781, 0.5693359375, -0.4921875, -0.2076416016, 0.3015136719, -0.7631835938, -0.3093261719, 0.3842773438, 0.2114257812, 0.5112304688, -0.837890625, 0.4409179688, 0.7416992188, -0.8110351562, -0.6103515625, -0.2203369141, -0.2788085938, 0.3952636719, 0.6538085938, 0.3435058594, -1.490234375, 0.6723632812, 0.1539306641, -0.1602783203, -0.6586914062, 0.9438476562, -0.2490234375, 0.8623046875, 0.6044921875, 0.2712402344, 0.3811035156, 0.291015625, 0.37109375, -0.7592773438, 0.3818359375, -0.0357971191, 0.8442382812, 0.1639404297, -0.7270507812, -0.3713378906, 0.0157165527, 0.8491210938, 0.4157714844, -0.4284667969, 0.1384277344, -0.8911132812, 0.6533203125, -0.5971679688, 0.1343994141, -0.4565429688, -2.525390625, 1.65625, -0.2709960938, 0.0679321289, 0.1715087891, -0.5327148438, -0.51171875, -0.1291503906, -0.611328125, -0.8022460938, -0.5703125, 1.1396484375, 0.2110595703, -0.3395996094, 0.408203125, 0.7856445312, -1.4228515625, -0.7412109375, -0.9243164062, 0.4416503906, 0.8623046875, 0.4079589844, 0.56640625, -0.2878417969, 0.0894165039, -0.955078125, -0.548828125, -0.1463623047, 0.8422851562, 0.0245819092, -0.0681762695, 0.2314453125, -1.59765625, -0.1219482422, -1.732421875, -1.046875, 0.4274902344, 1.18359375, 0.7236328125, -0.5756835938, -0.2198486328, -1.443359375, 0.2364501953, -0.1227416992, -0.1145019531, -0.4506835938, -0.599609375, 0.3793945312, 0.3276367188, -0.1806640625, 0.0802001953, 0.1754150391, -0.7749023438, -0.0182495117, 0.1502685547, 1.841796875, -0.2551269531, 0.3266601562, -0.0834960938, 0.1809082031, -0.5561523438, 0.1740722656, 0.724609375, -0.4016113281, -0.0657958984, 0.9794921875, -0.6596679688, 0.9638671875, -0.34375, -0.4916992188, -1.275390625, 0.9375, -0.2412109375, 0.6796875, -0.9624023438, 0.7514648438, 0.2299804688, 0.6225585938, 0.5434570312, 0.1478271484, 0.9428710938, -0.7143554688, -0.7641601562, -0.0095825195, -0.1422119141, -1.0166015625, 1.2021484375, -0.1843261719, 0.2622070312, -0.8051757812, 0.3603515625, 0.1658935547, -1.232421875, -0.2993164062, 1.2041015625, 0.5424804688, -1.05078125, 0.1525878906, -0.6455078125, -0.0198974609, 0.2127685547, -0.044128418, 1.189453125, -0.8842773438, -0.5385742188, -0.7485351562, 0.8930664062, 0.0653076172, -0.0844726562, -1.1650390625, -0.8232421875, 0.6811523438, -0.8056640625, -0.6552734375, 0.53125, -0.6416015625, -0.2369384766, -1.498046875, -0.0559692383, -0.6967773438, 0.748046875, -0.2404785156, 0.720703125, 0.3308105469, -0.0404968262, 0.2553710938, -0.1573486328, -0.634765625, -0.3525390625, 0.287109375, 0.2010498047, -1.091796875, 0.8051757812, 0.9384765625, -0.2817382812, 0.1557617188, 0.18359375, 0.2966308594, -0.3330078125, -0.1121826172, -0.1647949219, -0.2670898438, -0.4943847656, -0.1572265625, -0.365234375, 0.1047973633, 0.7309570312, -1.203125, 0.8032226562, -0.110534668, 0.3349609375, -0.3034667969, 0.0177764893, 0.6987304688, 0.3532714844, -0.751953125, 0.3479003906, 0.2941894531, -0.5869140625, 1.3525390625, 0.0961914062, -1.107421875, 0.7451171875, -0.951171875, 0.52734375, 0.3801269531, -0.662109375, 0.8256835938, -1.0263671875, 0.5639648438, -0.443359375, -0.6538085938, 0.34375, 0.0261688232, 0.173828125, 0.45703125, -0.4990234375, -0.6552734375, -0.7153320312, 0.607421875, -0.6665039062, 0.07421875, -0.1824951172, 0.0219116211, -0.3286132812, -0.421875, -0.515625, 0.6284179688, 0.1301269531, -0.1947021484, 0.7163085938, -0.3471679688, -1.0771484375, 0.2814941406, 0.6538085938, -1.17578125, -0.1228027344, -0.810546875, 0.4143066406, 0.0228729248, 0.6489257812, -0.1651611328, -0.2106933594, 0.2646484375, 0.2775878906, -0.6733398438, -1.41796875, -0.1671142578, -0.3510742188, 0.2678222656, 0.2836914062, -0.595703125, -0.033782959, -0.2298583984, 0.2824707031, -0.7426757812, -0.8940429688, 0.4538574219, -0.9897460938, 0.3188476562, 0.9038085938, -0.8955078125, 0.0720214844, -0.9716796875, 0.7602539062, -0.1037597656, -0.5434570312, 0.0250854492, -0.068359375, 0.2038574219, -0.1550292969, 0.1951904297, 1.0498046875, -0.8129882812, -0.73046875, 0.5854492188, -0.0599365234, -0.0422973633, 0.0408630371, 0.9287109375, -0.4978027344, 0.2357177734, 0.5122070312, 0.2376708984, 0.412109375, 0.5424804688, 0.3498535156, -1.4775390625, 0.7119140625, -0.8662109375, 0.1707763672, -0.2941894531, 0.087890625, -0.5698242188, 0.4165039062, 0.4130859375, 1.1279296875, 0.6630859375, -0.2770996094, -0.9965820312, -0.0398254395, -0.3227539062, -0.5932617188, 0.8461914062, -0.3776855469, -0.0925292969, 0.283203125, 0.1488037109, -0.5961914062, 0.1442871094, 0.54296875, -0.15625, -0.1870117188, -1.8955078125, 0.3576660156, 0.0120010376, 0.3232421875, -0.8618164062, 1.5234375, 0.3325195312, 0.4328613281, 0.0087280273, -12.4453125, 0.494140625, -0.380859375, -0.4582519531, -0.7958984375, 1.0556640625, -0.6064453125, -0.8349609375, 0.2274169922, 0.7109375, 1.2958984375, 0.8129882812, -0.4267578125, 0.0179748535, 0.0888061523, -0.2451171875, -0.1400146484, -0.5903320312, 0.46875, -0.5249023438, -0.2349853516, 0.7060546875, -0.8569335938, -1.1552734375, -1.0673828125, 0.6596679688, 0.068359375, -0.5551757812, -0.5678710938, 0.0331115723, 0.1354980469, 0.4892578125, -1.744140625, 1.1015625, -0.310546875, -0.951171875, -0.2880859375, -1.0498046875, -0.7387695312, -0.5200195312, 0.0415649414, -0.4020996094, -2.080078125, 0.1845703125, -0.2580566406, -1.09765625, -1.427734375, -0.5595703125, 0.0556030273, -0.2193603516, 0.061706543, -0.1159057617, 0.25390625, 0.2471923828, -0.3093261719, -0.2873535156, 0.8872070312, -0.4895019531, -0.671875, 0.3967285156, -0.0819091797, 0.9702148438, 0.7368164062, -0.7900390625, -0.546875, -0.54296875, 0.78515625, 0.0496826172, -0.2548828125, -0.4599609375, 0.4653320312, -1.205078125, 0.806640625, -0.0709228516, -0.5185546875, 0.9516601562, 0.3029785156, -0.0830688477, -0.2565917969, 0.6171875, 0.0658569336, 0.3981933594 ]
ApplicationTracker generates reports showing detailed usage of CPU and elapsed time, keyboard, mouse and I/O usage, portraying each application, where and when it is running, and who is running it. LicenseOptimizer Open iT LicenseOptimizer monitors several applications’ activity levels on Windows, UNIX, and Linux platforms. Some of this module's primary functions include the following: optimizes license usage by disabling unused applications disables and recalls licenses for others to use allows a license to be reinstated into the program when a license becomes available SystemAnalyzer Open iT SystemAnalyzer is a software module for those who require better control of their software and hardware resources. Some of this module's primary functions include the following: provides necessary computer usage statistics, e.g. what applications are running, how long an application is running, who is running the application (user), and what the application's host(s) is/are. StorageAnalyzer Open iT StorageAnalyzer delivers an overview of disk and backup data so managers can improve data storage management. Some of this module's primary functions include the following: provides valuable information about disk usage shows how full each device is delivers storage trend reports plans storage management enables the accounting of NetApp files’ setup and use of quotas UsageAnalyzer Open iT UsageAnalyzer tracks each user's keyboard and mouse activities enabling personalized user training.
[ 1.2080078125, -0.3237304688, -0.2072753906, 0.9248046875, -0.529296875, 0.888671875, -0.0530395508, -0.94921875, -0.4982910156, -0.455078125, 0.837890625, 0.8403320312, 1.2333984375, 0.3081054688, -0.9575195312, -0.0264587402, -0.548828125, -0.3278808594, 0.7158203125, -0.3291015625, 0.1071166992, -0.6821289062, -0.76953125, -3.5859375, -0.3669433594, 0.0013637543, 0.140625, 0.716796875, 0.2521972656, 0.83984375, -0.2154541016, 0.890625, -1.7880859375, 0.580078125, 0.3249511719, -0.2017822266, 0.4384765625, 0.4348144531, 0.0842895508, 0.2137451172, 0.1056518555, -0.1809082031, 0.6552734375, 0.1866455078, 0.4091796875, 0.87109375, 0.501953125, -0.5458984375, -0.443359375, 0.0523681641, 0.3845214844, -1.193359375, -1.3896484375, -0.6376953125, 0.0720825195, -0.4768066406, -0.3347167969, -0.2244873047, -0.0321960449, -0.27734375, -0.603515625, 0.1821289062, -0.4086914062, -1.275390625, 0.5234375, -0.2844238281, -0.2651367188, -0.5581054688, 0.578125, -0.0668945312, -0.333984375, 0.1265869141, 0.1881103516, -1.3701171875, 1.1357421875, -0.4077148438, 0.5356445312, -0.5014648438, 0.0576171875, 0.6904296875, -1.78515625, -0.09375, -0.0059700012, 1.091796875, -0.2924804688, 0.8579101562, 0.3715820312, -1.0302734375, -0.4245605469, 0.4370117188, -0.5336914062, -0.4533691406, 0.3127441406, -0.9150390625, 0.0177307129, 0.2514648438, 0.4948730469, 0.3081054688, -0.0895996094, -0.1257324219, -0.0809936523, -0.4836425781, -0.0637817383, 0.5234375, -0.986328125, 0.3276367188, 0.7607421875, 0.2780761719, 0.7094726562, 0.1828613281, -0.0268707275, -0.2264404297, 0.0339660645, -0.2366943359, -0.4291992188, 1.0380859375, 0.5087890625, -0.6811523438, 0.5473632812, 0.6181640625, 0.5751953125, 0.2504882812, -0.7041015625, -0.1239013672, -0.1938476562, 0.1275634766, 1.08984375, 0.9038085938, 0.3400878906, -0.2058105469, 0.3540039062, -0.8544921875, -0.054107666, -0.0211181641, 0.2432861328, -0.3120117188, -1.2099609375, 0.1708984375, -0.1580810547, -0.9438476562, 0.1113891602, -1.755859375, 0.2761230469, -0.8271484375, 0.9599609375, 0.3608398438, -0.2158203125, 0.5239257812, 0.5024414062, -0.3696289062, -0.8618164062, -0.1779785156, -0.5283203125, 0.0710449219, 0.119140625, -0.619140625, -0.2043457031, -0.8525390625, -0.1036987305, 1.3173828125, -1.23828125, -1.744140625, 0.5322265625, 1.2255859375, 0.79296875, 0.4401855469, -1.0224609375, 0.4143066406, -0.4016113281, 0.1856689453, -0.1127929688, -0.5322265625, -0.48046875, 0.3857421875, -0.4040527344, -0.4914550781, 0.1265869141, -0.1654052734, -0.875, -1.197265625, -0.3483886719, -0.5703125, -0.9326171875, -0.3308105469, -0.3635253906, 0.7299804688, 0.1999511719, 0.8671875, -0.4125976562, 0.2243652344, -0.2746582031, -0.3420410156, -0.6650390625, 0.5307617188, -0.0245666504, 0.1759033203, 0.0018148422, -0.7119140625, 0.484375, 1.287109375, 0.2702636719, -0.2900390625, -0.1909179688, -0.6225585938, -0.5219726562, 1.091796875, -0.1292724609, 0.7788085938, 0.8291015625, 0.0004053116, -0.7133789062, -0.4279785156, 0.390625, 0.5532226562, -0.5859375, 1.1611328125, -0.431640625, 0.1484375, 0.6616210938, -0.1665039062, -0.267578125, 0.1805419922, 0.1353759766, -1.0986328125, -1.3994140625, -0.8588867188, 0.1290283203, -0.1102905273, -0.1645507812, -0.96484375, -0.027633667, 1.22265625, -0.5356445312, 0.0553283691, 1.3818359375, -1.37890625, -0.8198242188, 0.1491699219, -0.1691894531, -0.748046875, 1.09765625, -0.484375, 0.87890625, -0.5439453125, 0.3190917969, 0.2286376953, -0.3107910156, -0.650390625, 0.3171386719, 0.83203125, 0.102355957, -0.8500976562, -0.0309295654, 0.9282226562, 0.2568359375, 0.4631347656, -0.5825195312, -0.1907958984, 0.9116210938, -1.1005859375, -0.000992775, 0.4448242188, 0.1593017578, 1.3046875, 0.0858154297, 0.2377929688, -0.1063842773, -0.5659179688, 1.0107421875, -0.8334960938, 0.5463867188, 0.6870117188, 0.2239990234, -0.2277832031, -0.1403808594, 0.775390625, 0.982421875, 0.2186279297, -0.1770019531, 0.0921020508, 1.02734375, -0.1735839844, -0.0581359863, -0.2362060547, 0.0284576416, -0.5874023438, 0.2108154297, 0.2000732422, -0.1737060547, 1.005859375, -0.1932373047, -0.1949462891, 0.5190429688, -0.3615722656, -0.5571289062, -0.4714355469, 0.955078125, -0.0454406738, 0.1645507812, -0.859375, 0.1451416016, 0.2424316406, 0.1137695312, -1.5908203125, -0.052734375, 0.3229980469, 0.6396484375, -1.158203125, 0.63671875, 1.009765625, -0.3649902344, -0.1451416016, -0.1583251953, 1.0341796875, -0.6953125, -0.6928710938, -0.7934570312, 0.0717773438, 0.7241210938, -0.732421875, 0.634765625, 0.1789550781, 0.1311035156, -0.0224456787, -0.0742797852, 0.2868652344, -0.7348632812, -0.2885742188, -0.0243377686, 0.7485351562, -0.6528320312, 0.4658203125, -0.5903320312, -0.37890625, -0.4047851562, -0.0989379883, 0.2369384766, -0.0289764404, -0.6557617188, 0.1240844727, -0.5688476562, -0.5947265625, -0.6928710938, -0.1839599609, 0.2316894531, -0.0961303711, 0.9223632812, -1.529296875, 1.333984375, -0.0822143555, 0.8510742188, -0.1622314453, -0.1483154297, -0.2512207031, -0.5141601562, -0.8486328125, -0.3193359375, 0.8393554688, -0.2932128906, 0.8911132812, 1.2744140625, 0.0799560547, -1.64453125, 1.265625, -1.3837890625, 0.0930175781, 0.8037109375, -0.6372070312, -0.2570800781, 0.4401855469, -0.0925292969, 0.4487304688, 0.7426757812, 0.1802978516, -0.0454406738, -1.541015625, -0.2204589844, 1.1689453125, -0.3420410156, 0.2076416016, 0.2224121094, -1.162109375, -0.1856689453, -1.3330078125, -0.7578125, -0.1898193359, -0.1385498047, 0.2978515625, -1.337890625, 0.3503417969, -0.0477905273, -1.794921875, 0.505859375, 0.4436035156, 0.5239257812, 0.0971069336, 1.0087890625, -0.5336914062, 0.1649169922, 0.6357421875, 0.2373046875, -0.0407409668, -0.9155273438, -0.0390625, 0.0891723633, 1.2568359375, 0.81640625, 0.1472167969, 0.0581054688, -0.1622314453, 0.2487792969, -0.3986816406, 0.1192016602, -0.9750976562, -1.208984375, -0.4885253906, 0.4831542969, -0.3046875, -0.353515625, 1.630859375, -0.8798828125, 0.1662597656, 1.58984375, -0.2442626953, -0.0279541016, 0.7602539062, -0.3315429688, -0.2766113281, 0.7377929688, 0.283203125, -1.060546875, 1.1337890625, 0.0229797363, -0.3903808594, 1.1748046875, -0.2661132812, 0.8061523438, -0.2086181641, -0.6079101562, -0.1276855469, 0.1539306641, 0.9458007812, -0.0419006348, -0.6884765625, -0.7377929688, 0.57421875, 1.23046875, -0.1547851562, 0.2985839844, 0.1174926758, 0.4182128906, 0.2192382812, -0.4719238281, 0.1220092773, 0.8940429688, -0.0858764648, 0.0834350586, 0.1715087891, -0.0753173828, -0.2543945312, 0.7661132812, 0.0802612305, 0.7915039062, 0.1259765625, 0.361328125, -0.650390625, -1.2880859375, 0.6811523438, -0.0338439941, 0.4975585938, 0.1128540039, -0.4545898438, -0.2802734375, 0.2495117188, 0.9384765625, 0.744140625, 0.5981445312, 0.6860351562, 0.2595214844, -0.3317871094, 0.9692382812, -0.0433654785, -1.064453125, -0.0841064453, 0.0196990967, 0.3557128906, 0.0361328125, -0.2919921875, -0.7973632812, -0.7583007812, -0.0409240723, 0.0731811523, -0.486328125, 0.0314025879, -0.1223144531, 0.3598632812, 0.2189941406, -0.7475585938, -0.228515625, -0.9990234375, -0.3728027344, -0.6870117188, 0.2005615234, 0.4284667969, -0.5239257812, -0.6767578125, 0.3969726562, -0.2800292969, 0.6293945312, -0.548828125, -0.0433349609, -0.4440917969, 0.2492675781, 0.0008430481, 0.0649414062, 0.0391540527, -0.0360717773, -0.0946655273, -0.0520935059, -0.83203125, 0.0581665039, 0.6420898438, -1.05078125, 0.4187011719, 0.2244873047, 1.21484375, 0.4982910156, 0.54296875, 0.1225585938, 0.5512695312, 1.27734375, 0.4326171875, 0.1346435547, 0.2434082031, -0.0156097412, -0.359375, 0.3298339844, -0.1989746094, -0.6538085938, -0.4775390625, -0.9165039062, -0.3129882812, 0.050567627, -0.4401855469, -0.357421875, 0.744140625, 1.0361328125, -1.2333984375, -0.7143554688, -0.4213867188, -0.0718994141, 0.2342529297, 0.4055175781, -0.1597900391, -0.810546875, -0.0884399414, -1.38671875, 0.2196044922, 0.1240844727, 0.3337402344, -0.357421875, -0.3366699219, -0.7260742188, 0.7578125, 0.4958496094, 0.1964111328, 0.0328369141, -0.4313964844, 0.4077148438, 0.4655761719, -0.5649414062, 0.0346374512, -0.841796875, -1.224609375, 1.41015625, 0.1141357422, 0.8603515625, 0.1433105469, -0.7568359375, 0.2775878906, 0.9345703125, -0.0358886719, -0.9946289062, 0.2249755859, 1.1630859375, 1.5654296875, -0.2431640625, 0.3061523438, -0.6630859375, -1.294921875, 0.2512207031, -0.4365234375, 0.4152832031, -0.3647460938, -0.7490234375, -1.1171875, 0.4934082031, -0.2583007812, -0.6499023438, -0.3811035156, -0.1439208984, -0.4978027344, 0.1719970703, 0.1970214844, 0.3950195312, -0.3310546875, -0.4226074219, -0.4309082031, 0.0873413086, 0.0728759766, 0.52734375, 1.837890625, -0.7661132812, 0.2658691406, 0.6884765625, 0.0499267578, -0.1646728516, 0.4182128906, 0.1195678711, 0.0459289551, -0.955078125, 1.0205078125, 0.0712890625, -1.150390625, 0.0764770508, -0.2294921875, -0.6635742188, 0.388671875, 0.6123046875, 0.9760742188, -0.9965820312, 0.341796875, -0.120300293, 0.9311523438, 0.4758300781, 0.74609375, 0.0960083008, 0.7490234375, -0.0021877289, 0.1706542969, 0.2316894531, 0.0856933594, 1.2490234375, -0.3208007812, 0.6694335938, -0.4558105469, 0.6596679688, 0.1633300781, -0.2088623047, -0.1350097656, 0.208984375, 0.837890625, -0.3393554688, -0.5478515625, -0.2680664062, -0.0693969727, 0.2783203125, -0.4365234375, -0.2849121094, 0.1025390625, -1.7919921875, 1.126953125, 0.1226196289, -0.2763671875, -0.2404785156, 0.0237579346, -0.4963378906, 0.1560058594, -0.8481445312, -0.9111328125, -0.6694335938, 0.7021484375, 0.3649902344, -0.1682128906, 0.64453125, -0.1494140625, -1.267578125, -0.0233001709, -0.8344726562, 0.5458984375, 1.080078125, 0.0205383301, -0.06640625, -0.4038085938, -0.5854492188, 0.1502685547, 0.0037002563, 0.3967285156, 0.1275634766, 0.2479248047, -0.365234375, -0.1567382812, -1.7041015625, -2.001953125, -0.9672851562, -1.6845703125, 0.4604492188, 1.0205078125, 0.2644042969, -0.4711914062, 0.2188720703, -1.3310546875, 0.0016794205, -0.0474853516, 0.2449951172, 0.2296142578, 0.9536132812, 0.6728515625, 0.2391357422, -0.7470703125, 0.6015625, -0.1890869141, -0.1903076172, -0.8012695312, 0.3469238281, 1.1171875, -0.2836914062, -0.100402832, -0.5512695312, 0.2429199219, -0.8979492188, 0.4255371094, 0.6489257812, -0.4809570312, -0.1635742188, 1.3076171875, -0.5268554688, 0.4128417969, 0.6201171875, -0.5141601562, -1.1875, 1.2470703125, -0.3234863281, -0.6586914062, -0.8564453125, 0.6655273438, -0.3039550781, 0.4921875, 0.4624023438, -0.2276611328, 0.2724609375, -0.3122558594, -0.087097168, 0.4406738281, 1.0771484375, -1.18359375, 1.4111328125, -0.4235839844, -0.6020507812, -0.6547851562, 0.3745117188, 0.7075195312, -1.0888671875, -0.6484375, 1.021484375, 0.0824584961, -0.9077148438, 0.1226806641, -0.7104492188, -0.5703125, -0.0291900635, 0.0058937073, 0.6440429688, 0.453125, -0.515625, -0.2082519531, 0.6845703125, 0.1060791016, -0.3039550781, -0.4294433594, -0.2746582031, -0.0712280273, -1.48828125, -1.3505859375, 0.5625, -0.5141601562, 0.220703125, -0.1260986328, 0.1618652344, -0.8784179688, 0.5971679688, -0.0435180664, 0.7817382812, 0.0081634521, 0.490234375, -0.1768798828, 0.2280273438, -1.1767578125, -0.1041259766, 1.6298828125, 0.1304931641, -1.064453125, 1.060546875, 0.0900878906, 0.0989379883, 0.591796875, -0.0578308105, 0.0446777344, 0.3332519531, -0.501953125, -0.6108398438, -0.5830078125, 0.1501464844, 0.4272460938, -0.4753417969, -0.2095947266, -0.0379638672, -0.8310546875, 1.6025390625, 0.177734375, 0.0434570312, -0.4296875, -0.2707519531, 0.4399414062, 0.0933227539, -0.2829589844, 0.2883300781, 0.0566711426, -0.1444091797, 1.544921875, 0.0129013062, -0.8666992188, 0.9077148438, -0.5078125, 0.4775390625, 0.0497741699, -0.7041015625, 0.3981933594, 0.0668945312, 1.0791015625, -0.341796875, -0.3793945312, 0.5322265625, -0.3828125, -0.1533203125, -0.1826171875, -1.015625, -1.134765625, 0.1683349609, 0.4782714844, -0.1734619141, -0.3503417969, -0.6396484375, 1.1005859375, -0.2631835938, -0.1646728516, -0.2927246094, 0.3168945312, 0.4936523438, -0.0803222656, 1.0537109375, -0.1502685547, -0.814453125, 0.1071166992, 0.572265625, -0.7905273438, -0.0862426758, -0.2526855469, -0.067565918, 0.3002929688, 0.8310546875, -1.158203125, 0.0190582275, 0.6958007812, 0.1068115234, -0.6508789062, -0.8974609375, 0.0214233398, 0.0841674805, 0.3256835938, 0.112487793, -0.6455078125, -1.3408203125, -0.6997070312, 0.6420898438, 0.0313110352, -0.337890625, 0.77734375, -0.0347290039, -0.0973510742, 1.16015625, -0.5185546875, 0.3957519531, -0.6245117188, 0.9096679688, -1.17578125, -0.357421875, -0.3725585938, -1.2998046875, -1.09375, 0.2905273438, -0.6591796875, 1.162109375, -0.8115234375, -0.4340820312, 0.0528259277, -0.4045410156, 0.0134429932, 0.1000366211, 0.5771484375, -1.2109375, -0.6684570312, 0.5859375, 0.0850219727, -0.4274902344, 0.7221679688, -0.3811035156, -1.560546875, 1.2275390625, -1.00390625, -0.5009765625, -0.7041015625, -0.7700195312, -0.1746826172, 0.7866210938, 0.2817382812, 1.5380859375, 0.1165771484, -0.6791992188, -0.619140625, -0.203125, -0.720703125, -0.0308227539, 1.12109375, -0.3815917969, 1.48046875, 0.3430175781, 0.0025806427, -0.9833984375, 1.0078125, 0.1979980469, -0.6508789062, -0.4348144531, -0.791015625, -0.8549804688, 0.962890625, -0.4907226562, -0.4755859375, 1.015625, 0.4645996094, 0.5615234375, -0.7060546875, -12.0234375, 0.2609863281, 0.4079589844, -0.3186035156, -0.2419433594, 1.1142578125, 0.0187072754, 0.0922851562, 0.3762207031, 0.783203125, 1.666015625, 0.2202148438, 0.4223632812, -0.3715820312, 0.2326660156, 0.3940429688, 0.6909179688, -0.1846923828, 0.1665039062, -0.3566894531, 0.4143066406, -0.3583984375, -0.2614746094, -0.83203125, -0.4768066406, 0.6000976562, -0.0705566406, -0.1411132812, -0.5073242188, 0.3864746094, -0.8237304688, 0.1237792969, -1.28515625, 0.8344726562, 0.1813964844, -1.13671875, 0.2225341797, -0.7065429688, -0.4089355469, -0.7094726562, 0.0035266876, -0.3425292969, -0.9790039062, 0.4831542969, -0.6298828125, -1.263671875, -0.6220703125, -0.6005859375, 0.0398254395, 0.2556152344, -0.7939453125, -0.1765136719, 0.4760742188, 0.8950195312, 0.2446289062, 0.5434570312, 0.9458007812, -0.9458007812, -0.5249023438, 0.2573242188, -0.6049804688, 0.3410644531, -0.0464782715, -1.1748046875, -0.1067504883, -0.3276367188, 0.7109375, -0.6611328125, -0.1678466797, 0.0247192383, 0.533203125, -0.5483398438, 0.439453125, -0.4665527344, -0.1188354492, 1.048828125, -0.1142578125, 0.7436523438, 1.423828125, -0.1928710938, 0.4235839844, -0.0802001953 ]
Some of this module's primary functions include the following: collects data on keyboard and mouse activities provides information on whether an application is really being used or just kept open helps analyze an application based on its User Interface components Point Solutions Analyzer for ANSYS® Software Open iT Analyzer for ANSYS Software helps ANSYS users manage their resources investment and ensures maximum utilization and ROI of these valuable assets. It provides a rich set of enterprise-wide software usage reports and powerful real-time views of current usage so managers can easily see how their IT assets are being used across the organization. Analyzer for Autodesk® Licensing Open iT Analyzer for Autodesk Licensing helps cut software license costs and reduce wastage on license usage by monitoring activity levels of all Autodesk applications regardless of licensing type. Server Extension LicensePredictor LicensePredictor is a forecasting tool designed to help organizations in decision making, proper planning and allocation of IT resources by providing essential inputs regarding their projected software license usage over the next 18 months. It also detects and alerts users of possible data anomalies, which is key in maintaining system integrity. Development Open iT Software Suite supports almost all Windows and UNIX platforms. These include but are not limited to AIX (Advanced Interactive eXecutive), Solaris, HP-UX, Linux, Windows 7, Windows Server 2008, Windows Server 2012, Windows Server 2016, Windows 8, and Windows 10. LicenseAnalyzer also runs on Windows Phone and Android (operating system). Supported License Managers Open iT Software Suite supports several License Managers.
[ 0.3852539062, -0.703125, 0.5595703125, 0.4453125, -0.4916992188, 0.1324462891, -0.4138183594, -1.435546875, -0.2548828125, -0.2932128906, 0.6215820312, 0.4567871094, 1.3310546875, 0.5258789062, -0.6049804688, -0.1337890625, 0.0561828613, -0.1883544922, 0.83984375, -0.1512451172, 0.7734375, -0.6337890625, -0.720703125, -2.98828125, -0.0203399658, 0.2683105469, 0.4382324219, 0.1717529297, -0.1275634766, 0.79296875, -0.7021484375, 0.55859375, -2.494140625, 0.2465820312, 0.1133422852, 0.3117675781, 0.1995849609, -0.0380554199, -0.2186279297, 0.1172485352, 0.4821777344, 0.0589904785, 0.6884765625, -0.4411621094, 0.2634277344, 0.5454101562, 0.5458984375, -0.8212890625, -0.4575195312, 0.4064941406, 0.326171875, -0.1955566406, -0.0485839844, -1.048828125, 0.1397705078, -0.0174713135, -0.3625488281, -0.4445800781, -0.0283660889, -0.5600585938, -1.02734375, 1.0439453125, -0.1842041016, -0.9711914062, 0.4619140625, -0.2159423828, -1.5400390625, -0.4221191406, 0.2768554688, -0.2937011719, -0.7622070312, -0.3957519531, 0.2243652344, -1.263671875, 0.609375, -0.5795898438, 0.7778320312, -0.978515625, 0.818359375, -0.0755004883, -1.927734375, -0.5771484375, 0.1418457031, 0.1706542969, 0.2341308594, -0.4089355469, 0.3366699219, -0.6708984375, -0.6767578125, 0.2829589844, -0.2697753906, -0.3957519531, 0.0769042969, -0.703125, 0.5014648438, -0.111328125, 0.55859375, 0.3747558594, -0.3591308594, 0.0118637085, 0.0916748047, 0.3271484375, -0.2795410156, 0.7739257812, -0.8896484375, -0.2391357422, 0.1075439453, -0.1571044922, 0.5014648438, 0.1546630859, 0.0231323242, -0.0228424072, 0.1178588867, -0.267578125, -0.3461914062, 0.0686645508, 0.1352539062, -0.3002929688, -0.0689086914, 0.4545898438, 0.3364257812, 0.38671875, -0.2375488281, 0.2709960938, 0.5307617188, 0.3544921875, 0.3618164062, 0.0173187256, 0.443359375, -0.2504882812, -0.3002929688, -0.1413574219, 0.098449707, 0.0841064453, 0.1457519531, -0.9243164062, -1.1513671875, 0.0501098633, -0.0602722168, 0.0746459961, 0.0621948242, -1.1171875, 0.7963867188, -0.5971679688, 0.96484375, 0.3549804688, -1.150390625, 0.4448242188, 0.3234863281, -0.5200195312, -0.6411132812, 0.0290374756, 0.1029052734, 0.513671875, -0.169921875, -1.05078125, 0.2866210938, -0.1917724609, -0.5844726562, 0.6376953125, -0.9365234375, -1.37109375, 0.3002929688, 0.8784179688, 0.4470214844, 0.75, -0.6494140625, -0.1689453125, 0.0946044922, -0.6943359375, -0.1099853516, -0.0885620117, 0.1623535156, 0.5029296875, -0.8198242188, -0.2260742188, 0.45703125, 0.1291503906, -1.09765625, -0.8935546875, -0.8803710938, -0.9091796875, -0.1945800781, -0.8583984375, -0.9262695312, 0.8178710938, 0.2020263672, 0.0697631836, -0.5834960938, 0.0407714844, -0.3137207031, -0.5649414062, -1.5283203125, 1.2099609375, 0.2193603516, 0.3454589844, 0.2641601562, -0.5947265625, 0.4006347656, 1.2333984375, 0.1672363281, -0.2561035156, 0.64453125, -0.75390625, -0.328125, 0.6259765625, -0.7241210938, 0.7875976562, 0.3666992188, -0.0955810547, -1.41015625, 0.1107177734, 0.1630859375, 0.2814941406, -0.6791992188, 1.029296875, -0.5541992188, 0.2369384766, 0.4291992188, 0.3041992188, 0.2902832031, 0.8051757812, -0.359375, -0.9375, -2.2890625, -0.7470703125, 0.1687011719, 0.3623046875, -0.2377929688, -1.1220703125, 0.2485351562, 1.6064453125, 0.1634521484, 0.4104003906, 1.333984375, -0.6196289062, -0.2932128906, 1.015625, 0.0473022461, 0.1284179688, 0.3227539062, -0.2279052734, 0.5317382812, -0.6538085938, 0.2517089844, 0.1055908203, -0.1826171875, -0.8559570312, -0.1774902344, 0.2385253906, 0.2052001953, -0.8266601562, 0.6264648438, 1.275390625, 0.4350585938, 0.1090087891, 0.1258544922, -0.8315429688, 0.8081054688, -1.10546875, -0.1177978516, 0.7197265625, -0.1802978516, 0.8994140625, 0.1068115234, 0.568359375, -0.95703125, -0.4399414062, 1.2900390625, -0.568359375, 0.1391601562, -0.2351074219, 0.0588989258, -0.4660644531, 0.6904296875, 0.3981933594, 0.6616210938, 0.6123046875, 0.8349609375, 0.1522216797, 0.0855102539, 0.3671875, 0.0314331055, -0.4099121094, 0.8256835938, -0.8012695312, 0.0313110352, 0.2377929688, 0.3264160156, 1.4150390625, -0.9638671875, 0.0134277344, 0.6918945312, 0.2995605469, 0.0238647461, -0.603515625, 0.6611328125, 0.2521972656, 0.68359375, -0.5874023438, 0.2247314453, 0.4040527344, 0.0467224121, -1.115234375, -0.0128860474, 0.810546875, -0.1407470703, -1.703125, 0.5541992188, 1.3037109375, 0.3310546875, -0.3005371094, -0.263671875, 1.3642578125, 0.0111465454, -0.2008056641, -0.3249511719, 0.1439208984, 0.0637207031, -0.6137695312, 0.7221679688, 0.3410644531, -0.6059570312, 0.1028442383, 0.1076049805, 0.3168945312, -1.0927734375, -0.1732177734, 0.58203125, 0.4958496094, 0.2639160156, 0.3532714844, -0.4877929688, 0.2568359375, 0.5053710938, 0.4797363281, 0.693359375, -0.71484375, -0.869140625, 0.181640625, -0.5209960938, -0.841796875, -0.3825683594, -1.0673828125, 0.1770019531, 0.3620605469, 0.896484375, -1.2001953125, 1.2255859375, -0.0398864746, 0.7280273438, -0.0511169434, -0.130859375, -0.5463867188, -0.4514160156, -1.1650390625, -0.0849609375, 0.9677734375, -0.2722167969, 1.5302734375, 1.2744140625, 0.1363525391, -0.994140625, 0.9604492188, -0.6953125, 0.1045532227, 0.8627929688, -0.6728515625, -0.0572509766, 0.1013183594, 0.5869140625, 0.67578125, 0.0354309082, -0.5415039062, -0.1618652344, -0.8891601562, -0.3715820312, 0.7260742188, -0.5903320312, 0.7802734375, 0.5307617188, -0.8647460938, -0.3518066406, -0.2252197266, -0.93359375, 0.0935668945, -0.4384765625, 0.1756591797, -1.240234375, 0.0648803711, -0.2756347656, -1.1796875, 0.5947265625, 0.6962890625, 1.091796875, 0.1136474609, 1.4609375, -0.0551757812, 0.4938964844, 0.4060058594, 0.763671875, 0.5688476562, 0.0969238281, -0.1708984375, 0.185546875, 0.8193359375, 1.248046875, 0.3630371094, 0.3283691406, -0.4338378906, 0.0634765625, 0.5556640625, 0.3125, -0.7934570312, -1.16015625, -0.3173828125, 0.0467834473, -0.4028320312, -0.0697631836, 0.986328125, -1.2587890625, 0.3376464844, 1.7216796875, -0.1170654297, -0.5229492188, 0.4777832031, -0.7436523438, -0.2629394531, 0.2631835938, -0.6303710938, -1.228515625, 0.7524414062, 0.1845703125, 0.4255371094, 1.0205078125, -0.2592773438, 0.4943847656, -0.3061523438, 0.1652832031, 0.0817260742, 0.71484375, 0.8461914062, -0.4108886719, -1.56640625, -0.5673828125, 0.0137863159, 1.357421875, -0.1192626953, 0.3381347656, -0.1154785156, -0.0377502441, 0.4602050781, -1.267578125, -0.4116210938, 0.8994140625, 0.0834350586, 0.1491699219, -0.1971435547, -0.806640625, -0.2746582031, 0.7612304688, -0.0748901367, 0.244140625, -0.1233520508, 0.8334960938, -0.8090820312, -0.8681640625, -0.2242431641, 0.2006835938, 1.009765625, 0.4104003906, -0.0187683105, -0.1441650391, 0.2907714844, 1.373046875, 0.9267578125, 0.3774414062, 0.759765625, 0.5048828125, -0.3212890625, 0.1419677734, -0.546875, -0.4663085938, 0.275390625, 0.4792480469, 0.3818359375, -0.0836181641, -0.5258789062, -0.3903808594, -1.2421875, -0.0663452148, 0.1296386719, -0.2810058594, 0.5649414062, -0.263671875, -0.5546875, 0.1196289062, -0.9921875, -0.4328613281, -1.595703125, -0.3061523438, -0.7456054688, 0.3581542969, 0.4104003906, -0.4470214844, -1.484375, 0.4565429688, 0.6323242188, 0.658203125, -0.1173706055, 0.2907714844, -0.0755004883, 0.2600097656, -0.1293945312, 0.1354980469, 0.1260986328, -0.6020507812, -0.794921875, -0.1710205078, -0.2191162109, 0.3217773438, 0.0391845703, -1.13671875, 0.2088623047, -0.4541015625, 0.9096679688, 0.3701171875, 0.6508789062, -0.3588867188, -0.0005373955, 0.7875976562, 0.6137695312, -0.4125976562, 0.2526855469, 0.5786132812, -0.5205078125, 0.732421875, 0.2685546875, -0.5458984375, 0.2395019531, -0.2795410156, -0.0112609863, 0.0017719269, -0.595703125, -0.8139648438, 0.5004882812, -0.2514648438, -1.0166015625, -0.4670410156, -0.0651855469, 0.3271484375, 0.3146972656, -0.0143737793, 0.4177246094, -1.1083984375, -0.0962524414, -1.16796875, 0.2418212891, 0.326171875, -0.0046806335, 0.0326538086, -0.2897949219, -0.0825805664, 0.5493164062, -0.267578125, 0.3037109375, 0.2056884766, 0.3537597656, 0.4799804688, 0.4255371094, -1.134765625, 0.3376464844, -1.4033203125, -0.5375976562, 0.6899414062, 0.0284118652, 0.9067382812, -0.3000488281, -0.8930664062, 0.4130859375, 0.9287109375, 0.118347168, -0.50390625, -0.0538024902, 1.3193359375, 1.5283203125, 0.2504882812, -0.103515625, -0.0843505859, -0.701171875, 0.0003914833, 0.1903076172, 0.68359375, 0.3049316406, -0.9638671875, -0.5458984375, -0.2900390625, -0.0830078125, -0.6860351562, -0.1094970703, 0.1166381836, 0.0221862793, 0.7905273438, -0.6284179688, 0.6098632812, -0.560546875, -0.1861572266, 0.2470703125, 0.37890625, -0.0389099121, 0.3701171875, 1.021484375, -1.06640625, -0.3483886719, -0.0272827148, -0.421875, -0.5639648438, 0.4328613281, -0.5185546875, -0.2138671875, -0.9477539062, 0.9580078125, 0.1292724609, -0.4829101562, -0.4270019531, -0.4736328125, -0.7729492188, 0.5322265625, 0.6025390625, 0.7001953125, -1.1611328125, 0.8569335938, 0.2897949219, 0.6142578125, -0.1172485352, 1.509765625, -0.0218811035, 0.8662109375, 0.7797851562, 0.3415527344, 0.3662109375, -0.5961914062, 0.3684082031, -0.3200683594, 0.3896484375, -0.1860351562, 0.4228515625, 0.3666992188, -0.453125, -0.1505126953, 0.2971191406, 1.2353515625, 0.1286621094, -0.4284667969, -0.7573242188, -0.9868164062, 0.7436523438, -0.2034912109, 0.0941772461, 0.2563476562, -2.193359375, 0.3645019531, -0.1950683594, -0.2702636719, -0.2998046875, 0.0996704102, -0.6938476562, -0.2844238281, -0.3991699219, -0.92578125, -0.626953125, 0.7993164062, 0.50390625, 0.0148849487, 0.5288085938, -0.0281219482, -1.5048828125, -0.5229492188, -1.2294921875, 0.2069091797, 0.9926757812, 0.2995605469, 0.4438476562, -0.073425293, -0.3764648438, -0.619140625, -0.5791015625, 0.0339050293, 0.7290039062, 0.626953125, -0.6831054688, -0.1032104492, -1.568359375, -0.4326171875, -1.052734375, -1.240234375, 1.134765625, 1.2451171875, 0.6948242188, -0.2163085938, -0.069152832, -1.0390625, -0.2922363281, -0.0784912109, 0.2086181641, 0.0862426758, -0.0897827148, 0.2663574219, 0.1629638672, -0.6752929688, 0.0715332031, -0.5405273438, -0.400390625, -0.3564453125, 0.515625, 1.400390625, -0.2951660156, 0.1593017578, 0.1016845703, 0.1159057617, -0.9716796875, 0.5087890625, 0.7373046875, -0.4028320312, 0.4230957031, 1.1396484375, -1.0498046875, 0.0944213867, 0.4104003906, 0.3288574219, -1.1826171875, 1.0693359375, -0.1000976562, 0.5029296875, -0.3041992188, 0.8764648438, 0.3703613281, 0.6748046875, 0.5698242188, 0.2609863281, 0.8828125, -0.7578125, -0.736328125, -0.294921875, 0.2587890625, -1.1220703125, 1.2138671875, -0.3596191406, -0.3088378906, -1.19140625, 0.0824584961, 0.1226806641, -0.8349609375, -0.8359375, 0.6547851562, 0.4377441406, -0.8720703125, -0.2199707031, -1.0712890625, -0.5361328125, 0.4704589844, 0.0574645996, 0.91796875, -0.3950195312, -0.0182037354, 0.041229248, 0.2895507812, 0.3415527344, -0.7270507812, -0.6391601562, -0.5083007812, -0.2239990234, -0.8798828125, -0.8154296875, 0.4392089844, -0.529296875, -0.0246429443, -0.3994140625, -0.0492553711, -0.2873535156, 0.0351257324, -0.3532714844, 0.7993164062, 0.640625, -0.0997314453, -0.0896606445, 0.0845947266, -0.9809570312, -0.5336914062, 0.806640625, -0.1134033203, -1.1416015625, 0.5732421875, 0.9711914062, -0.3369140625, -0.2006835938, 0.37890625, 0.3076171875, -0.0621948242, -0.3762207031, 0.2507324219, -0.7729492188, 0.0373840332, -0.2081298828, 0.0795288086, -0.802734375, 0.1072387695, -0.947265625, 0.5263671875, 0.3583984375, -0.1762695312, -0.1987304688, 0.1254882812, 1.3232421875, 0.6850585938, -0.4406738281, 0.2141113281, 0.2531738281, -0.3347167969, 1.0625, -0.1759033203, -0.2578125, 0.5610351562, -0.4228515625, 0.5625, 0.0560302734, -1.2412109375, 0.8120117188, -1.0771484375, 0.650390625, -0.2785644531, -0.7563476562, 0.3068847656, 0.5258789062, 0.4333496094, 0.1512451172, -0.8588867188, -0.763671875, -0.6206054688, 0.2951660156, -0.0517883301, 0.0397949219, -0.4204101562, 0.275390625, -0.787109375, -0.6508789062, -0.2215576172, -0.0437316895, 0.2305908203, -0.3161621094, 0.3974609375, -0.00831604, -0.4462890625, 0.1468505859, 0.7592773438, -1.1142578125, -0.6577148438, 0.2222900391, -0.061706543, 0.4973144531, 0.6118164062, -0.4645996094, 0.2351074219, 0.814453125, -0.0462646484, -0.408203125, -0.8359375, -0.1348876953, -0.5083007812, 0.62890625, 0.423828125, 0.0240020752, -1.4833984375, -0.0166625977, 0.4079589844, -0.3291015625, -0.1580810547, 0.9038085938, -0.404296875, 0.7573242188, 1.25, 0.5288085938, -0.533203125, -1.0341796875, 0.6069335938, -0.8134765625, -0.6586914062, 0.0692749023, -0.0459899902, -0.5522460938, 0.3854980469, -0.5395507812, 0.689453125, -0.564453125, -0.7729492188, 0.6796875, -0.8251953125, 0.2646484375, -0.1040649414, 0.8334960938, -0.4794921875, -0.2902832031, 0.3474121094, 0.6923828125, 0.2039794922, 0.5913085938, 0.1317138672, -1.962890625, 0.8095703125, -0.765625, -0.4189453125, -0.1400146484, -0.2211914062, 0.0239105225, 1.1962890625, 0.3681640625, 0.7001953125, 0.390625, -0.6508789062, -0.3271484375, -0.1441650391, -0.4956054688, -0.0027809143, 0.9575195312, -0.5107421875, 1.1015625, 0.1958007812, -0.013343811, -0.7202148438, 1.060546875, 0.0501403809, -0.5458984375, -0.6259765625, -1.8017578125, -0.0447387695, 0.2983398438, -0.0596313477, -0.767578125, 1.2099609375, 0.5541992188, 0.80078125, -0.2683105469, -12.59375, 0.8520507812, -0.2054443359, -0.1958007812, -1.3798828125, 0.9301757812, 0.2042236328, -0.2177734375, 0.1352539062, 0.3608398438, 0.8999023438, 0.7875976562, -0.3586425781, -0.0524902344, 0.3696289062, 0.603515625, 0.0514831543, -0.70703125, 0.0618896484, -0.4230957031, 0.123840332, -0.7822265625, 0.0946044922, -0.4086914062, -1.1123046875, 0.5068359375, 0.3159179688, -0.1988525391, -0.7592773438, -0.0798339844, -0.3547363281, -0.2944335938, -1.4892578125, 0.9809570312, 0.2102050781, -1.189453125, -0.32421875, -1.1416015625, -0.5532226562, 0.0105895996, -0.0405273438, -0.3181152344, -1.826171875, -0.1873779297, -0.6831054688, -0.7016601562, -1.0302734375, -0.2376708984, 0.2497558594, 0.1506347656, -0.62109375, 0.2259521484, -0.1322021484, 0.6137695312, -0.1018066406, 0.2181396484, 1.673828125, -0.6645507812, -0.462890625, 0.5263671875, -0.8818359375, 1.0146484375, 0.4135742188, -0.6616210938, -0.3198242188, -0.4228515625, 1.23046875, -0.4619140625, -0.1892089844, -0.4287109375, 0.0301818848, -0.7006835938, 0.732421875, 0.4965820312, -0.365234375, 0.78515625, -0.2495117188, 0.2155761719, 0.8720703125, 0.2408447266, -0.0214233398, -0.1306152344 ]
These include Abaqus / Elan, Aladdin Hardlock (NetHASP), Altair, Animator, Bentley SELECT (on local servers), Beta LM, ClearCase, Codemeter (Dongle), Dassault Systemes License Server (DSLS), EasyCopy, Encom, Enterprise Architect License Manager, EOD (Exceed onDemand), Fekete License Manager, FlexNet/FLEXlm, Gemalto License Manager, Green Hills License Manager (GHSlm), Honeywell ULM License Manager, HQMS, IBM-LUM, Jazz Team Server, LM-X, LS-DYNA, MathLM, Olicense, OrcaFlex (Orcina License Manager), Parasoft License Server, Peloton, Reprise License Manager (RLM), Sentinel HASP (NetHASP), Sentinel RMS, SlickEdit, SmartPlant, STI License Manager, Vector (Dongle), Wibukey (Dongle) and other license manager can be added on request. Clients Most of Open iT's customers are listed Fortune Global 500 companies. These include BHP, Cairn Energy, General_Electric, ConocoPhillips, Ecopetrol, EP Energy, Freeport-McMoRan, Landmark Graphics Corporation/Halliburton, Maersk Oil and Gas, Marathon Oil Corporation, Murphy Oil Corporation, Pemex, Pluspetrol, Shell, Statoil, TNK – BP, Woodside Petroleum, Avio, Lockheed Martin/US Army ARL, Oshkosh, UTC Goodrich, Mitsubishi Motors Corporation, Autoliv, Calsonic Kansei, Mazda Motor Corporation, Elpida Memory, Inc. and Seagate Technology. See also License manager Software licensing audit Software asset management IT asset management IT Chargeback and Showback References Hoffman, T (2006). "Squeezing Dollars from Maintenance", http://www.computerworld.com.au/article/171131/squeezing_dollars_from_maintenance/?pp=3 Kristiansen, T (2010).
[ 0.0381774902, -1.2724609375, 0.5649414062, 0.6127929688, 0.0581665039, 0.2138671875, -0.9580078125, -1.3076171875, 0.1861572266, -0.0805664062, 0.3488769531, 0.4057617188, 0.3227539062, 0.5791015625, -0.83984375, 0.5424804688, 0.375, 0.775390625, 1.01171875, 0.9731445312, 0.837890625, 0.0132751465, -0.0380859375, -2.2265625, 0.037109375, 0.6118164062, 0.3251953125, 0.3630371094, -0.3662109375, 0.5766601562, -0.5786132812, -0.3791503906, -2.693359375, 0.8022460938, -0.783203125, 0.7060546875, 0.5698242188, -0.3034667969, 0.4328613281, -0.8364257812, 0.732421875, -0.90234375, 0.2915039062, -0.4792480469, 0.6118164062, 0.66015625, -0.1857910156, -0.833984375, 0.2912597656, 0.4438476562, -0.0133132935, 0.2231445312, -0.2790527344, -0.439453125, 0.541015625, -0.4094238281, 0.0117111206, -0.896484375, 0.3359375, -0.1135864258, -0.3732910156, 0.3752441406, -0.6977539062, -0.6000976562, -0.0425109863, -0.0101852417, -1.27734375, 0.654296875, 0.1683349609, 0.4252929688, -1.01953125, -0.2423095703, 0.4291992188, 0.006565094, 0.951171875, -0.4689941406, -0.0594177246, -0.2130126953, 0.4182128906, -0.4890136719, -1.3466796875, -0.3684082031, -0.0127639771, -0.5751953125, -0.7553710938, 0.2561035156, 0.6635742188, -0.0924072266, -0.119934082, 1.046875, 0.0933227539, -0.3842773438, -0.6166992188, -0.5263671875, 0.4851074219, 1.337890625, 0.6333007812, -0.73828125, 0.0113601685, -0.341796875, -0.4152832031, 0.2432861328, -0.390625, 0.3754882812, -0.1318359375, 0.498046875, 0.6328125, 0.189453125, -0.3544921875, 0.5805664062, 0.46875, 0.0827026367, -0.2971191406, -0.1594238281, 0.0381164551, -0.3310546875, -0.0260467529, -0.8061523438, -0.1242675781, -0.4360351562, -0.0527648926, -0.122253418, 0.3830566406, -0.0975341797, 1.0166015625, 0.4792480469, 0.5786132812, 0.3671875, 0.0900268555, 0.2666015625, -0.3208007812, 0.0622253418, -0.041015625, -0.0462341309, -0.2008056641, -0.8168945312, -1.1845703125, 0.2401123047, 0.6401367188, -0.0864868164, 0.1881103516, 0.1833496094, 0.4978027344, -0.365234375, 0.8422851562, 0.1851806641, -0.3479003906, 0.5234375, 0.1958007812, 0.0054740906, -0.4990234375, -0.4831542969, 0.3205566406, 0.1256103516, 0.5029296875, -0.2590332031, 0.0771484375, -0.0779418945, 0.0332336426, 0.9248046875, -1.060546875, -1.703125, 0.3610839844, 0.4724121094, 0.2203369141, 0.1728515625, -0.9658203125, -0.7446289062, 0.6806640625, -0.50390625, 0.1917724609, 0.2434082031, -0.0190887451, 0.6918945312, -0.3176269531, -0.3676757812, 0.7885742188, -1.4580078125, -1.0419921875, -1.2431640625, -1.0615234375, -0.7158203125, 0.8012695312, -1.115234375, -0.8037109375, 0.7534179688, 0.4899902344, -0.4533691406, -0.1981201172, -0.0209503174, -0.572265625, -0.1400146484, -1.5302734375, 0.9345703125, -0.0449829102, -0.560546875, 1.16796875, 0.0731811523, 1.0302734375, 0.828125, -0.6875, -0.0004873276, -0.1998291016, -0.9775390625, -0.5034179688, 0.0444641113, -1.1064453125, 0.8002929688, -0.9462890625, -0.3220214844, -1.0009765625, 0.2030029297, -0.4990234375, 0.3601074219, -0.5244140625, 0.2177734375, 0.1704101562, 0.0088806152, 1.1826171875, 0.2181396484, 0.1705322266, 0.8999023438, 0.3125, -0.1424560547, 0.0827636719, -0.8837890625, 1.1494140625, 0.4782714844, -0.7133789062, 0.1348876953, 0.4360351562, 1.255859375, -0.1358642578, 0.0330810547, 1.6904296875, -0.5991210938, 0.8198242188, -0.6884765625, -1.080078125, 0.3044433594, 0.376953125, 0.5048828125, 0.2709960938, -0.6791992188, 0.2023925781, 0.1763916016, -0.4279785156, -0.9252929688, -0.5991210938, 0.2883300781, 0.1361083984, -0.3635253906, -0.0615844727, 0.5991210938, 1.21484375, 0.4597167969, 1.0498046875, -0.5541992188, 0.5336914062, -1.310546875, 0.1748046875, 0.9243164062, -0.9912109375, 1.0634765625, -0.7124023438, 0.48046875, -0.5659179688, -0.7944335938, 1.8017578125, -0.60546875, -0.2108154297, -0.2015380859, 0.5170898438, -1.3271484375, -0.0338134766, 0.4650878906, 0.4582519531, -0.0256958008, 0.1439208984, -0.2077636719, 0.439453125, 0.6196289062, -0.685546875, -0.0584716797, 0.3220214844, -1.00390625, -0.3732910156, 1.0087890625, 0.3215332031, 0.9560546875, -0.0277404785, 0.1491699219, 0.5512695312, -0.1512451172, -0.2607421875, -0.4494628906, 0.1114501953, 0.27734375, 0.5844726562, -0.5571289062, 0.2132568359, 0.6879882812, 0.3679199219, -1.58984375, 0.0524291992, 0.6411132812, -0.8388671875, -1.2265625, 0.6630859375, 1.8232421875, -0.1510009766, -0.798828125, -0.4353027344, 1.7314453125, 0.0633544922, -0.1409912109, -1.2744140625, -0.27734375, -0.4758300781, 0.2403564453, 0.1864013672, 0.6127929688, -0.728515625, -0.68359375, 0.3159179688, 0.2121582031, -1.0439453125, -0.7475585938, 0.921875, 0.5122070312, -0.28515625, -0.4133300781, -0.6484375, -0.1320800781, -0.3723144531, 0.1215209961, -0.3461914062, -0.5615234375, -0.755859375, -0.0993041992, -0.0356750488, -0.734375, -0.5654296875, -0.3110351562, 0.4157714844, 0.4250488281, 0.4384765625, -1.384765625, 1.427734375, 0.0289459229, -0.1799316406, 0.3649902344, 0.5336914062, -0.0827026367, -0.4333496094, -0.1054077148, 0.1379394531, 0.2670898438, -0.6303710938, 1.0693359375, 1.46875, 0.1551513672, -0.8227539062, 0.5161132812, -0.0345458984, 0.1730957031, 0.8833007812, -0.626953125, 0.6240234375, -0.0932617188, 0.3969726562, 1.552734375, -0.3547363281, -0.2298583984, -0.3732910156, -0.2604980469, 0.0000417829, 0.68359375, -0.9672851562, 0.3322753906, 0.4448242188, -0.5224609375, -0.31640625, -0.0184936523, -0.4067382812, 0.0543518066, -0.0033054352, -0.7548828125, -1.263671875, -0.2109375, 0.271484375, -0.951171875, 0.9169921875, 0.0640258789, 0.640625, 0.3488769531, 0.7177734375, -0.3654785156, 0.0215148926, 0.6201171875, 0.1750488281, -0.0074195862, 0.3862304688, 0.765625, 0.2249755859, 1.25390625, 1.5771484375, -0.0901489258, 0.900390625, 0.2447509766, -0.0081710815, -0.2076416016, -0.1325683594, -0.2856445312, -0.8608398438, 0.3161621094, -0.1802978516, 0.0046768188, 0.2622070312, 0.7548828125, -1.3076171875, 0.3208007812, 1.2177734375, 0.0615234375, -0.1818847656, 0.1485595703, -0.3081054688, -0.4296875, 0.2091064453, -0.287109375, -0.9819335938, 0.59765625, -0.1346435547, 0.2298583984, -0.0911254883, -0.017868042, 0.3662109375, -0.6630859375, -0.2164306641, 0.0833129883, 1.4443359375, 0.4326171875, 0.771484375, -1.865234375, -0.1868896484, -0.1224975586, 0.86328125, 0.2719726562, 0.4753417969, -0.0504760742, -0.6796875, 0.251953125, -0.6479492188, -0.314453125, 1.03515625, 0.1540527344, -0.1790771484, 0.2116699219, -0.4436035156, -0.3559570312, 0.1198120117, 0.1110839844, 0.0653076172, -0.58984375, 1.2392578125, -0.1467285156, -0.7255859375, -0.2287597656, 0.2059326172, 0.1314697266, 0.2486572266, -0.1541748047, 0.1363525391, 0.3383789062, 0.830078125, 0.0546875, 0.3935546875, 0.5395507812, 0.1217041016, -0.43359375, 0.4189453125, 0.5834960938, -0.0575561523, 0.2573242188, 0.2178955078, 0.3642578125, -0.2741699219, -0.6611328125, -0.7548828125, -1.1953125, 0.0825195312, -0.2770996094, -0.7407226562, 0.9653320312, -0.3491210938, -0.1392822266, -0.8999023438, -0.2397460938, -0.4423828125, -0.2717285156, -0.3447265625, -0.5830078125, -0.5424804688, 0.248046875, -0.1447753906, -1.4130859375, -0.1854248047, 0.0087661743, 0.5971679688, -0.2534179688, 0.6225585938, 0.6850585938, 0.3269042969, -0.1247558594, 0.0672607422, 0.13671875, -0.9306640625, -1.3046875, -0.2766113281, 0.357421875, -0.0454101562, 0.3972167969, -2.181640625, 0.2805175781, -0.3784179688, 1.37109375, -0.1936035156, 0.1068725586, 0.33984375, -0.3405761719, 0.341796875, 0.8701171875, 0.3159179688, 0.482421875, 0.5244140625, -0.544921875, 0.3332519531, 0.2401123047, -0.4558105469, 0.5249023438, 0.5380859375, 0.3369140625, -0.0045280457, -0.5219726562, -0.2180175781, -0.0881347656, 0.0426635742, -0.3166503906, -0.54296875, -0.2849121094, 0.2932128906, 0.4792480469, -0.369140625, 0.1655273438, -0.681640625, -0.8129882812, -0.9897460938, 0.7294921875, 0.0662231445, -0.1918945312, 0.1549072266, -0.49609375, -0.0436706543, 0.2054443359, -0.5029296875, -0.049987793, 0.2685546875, 1.3388671875, -0.4313964844, 0.2526855469, -1.5146484375, 0.1900634766, -0.5029296875, 0.4968261719, 0.3330078125, -0.4982910156, -0.0675048828, -0.2700195312, 0.2218017578, 0.8466796875, 1.314453125, -0.1779785156, -0.560546875, -0.5083007812, 0.9428710938, 1.283203125, 0.2247314453, -0.0749511719, 0.6049804688, -0.0794067383, -0.1274414062, 0.5727539062, 0.6005859375, 0.0487670898, -0.1264648438, -0.3989257812, -1.4677734375, 0.0863037109, 0.197265625, 0.6357421875, 0.2756347656, 0.0441589355, 0.4897460938, 0.1047973633, 0.0425720215, -0.9653320312, -0.0978393555, 0.4174804688, 0.0673217773, 0.2281494141, 0.005947113, 0.869140625, -0.5961914062, -0.462890625, -0.3757324219, 0.03515625, -0.6772460938, 0.2719726562, -0.0095901489, 0.9765625, -0.5122070312, 0.251953125, 0.3234863281, -0.1772460938, 0.3664550781, 0.2392578125, 0.173828125, -0.1507568359, 0.1307373047, 0.9619140625, -0.8989257812, 1.2421875, 0.1871337891, -0.369140625, -0.2946777344, 0.9516601562, -0.1400146484, 0.8701171875, 0.0501098633, -0.0511779785, 0.1882324219, -0.5327148438, 0.4482421875, -0.7729492188, -0.2709960938, -0.1262207031, 0.002122879, -0.1350097656, -1.11328125, 0.0824584961, 0.0240631104, 0.6123046875, 0.0739135742, -0.3481445312, 0.537109375, -0.6298828125, 0.8413085938, -0.4106445312, -1.27734375, 0.1484375, -2.373046875, 0.390625, -0.861328125, -0.25, 0.4606933594, -0.4538574219, -0.609375, -0.4172363281, 0.1407470703, -0.6772460938, -0.1351318359, 0.7905273438, 0.2218017578, 0.1638183594, -0.3845214844, 0.4470214844, -0.4653320312, -0.5087890625, -0.9965820312, 0.6118164062, 0.7470703125, -0.3142089844, 0.0657958984, -0.0058822632, 0.0759277344, -1.1259765625, 0.3491210938, -0.13671875, 0.8447265625, 0.5009765625, -0.2294921875, 0.4802246094, -1.2197265625, 0.3596191406, -1.919921875, -1.23046875, -0.0138931274, 0.5502929688, 0.3208007812, -0.5239257812, -0.9067382812, -1.1240234375, -0.2387695312, -0.4936523438, -0.2854003906, -0.3010253906, -0.4274902344, -0.4875488281, 0.333984375, -0.3159179688, -0.1510009766, -0.0641479492, -0.3088378906, 0.0621337891, 0.2827148438, 1.763671875, -0.3627929688, -0.7670898438, -0.1770019531, 0.0027942657, -0.34375, 0.098449707, 0.5751953125, -0.1557617188, -0.1881103516, 1.3974609375, -0.9057617188, 0.3664550781, 0.1812744141, 0.1098632812, -0.9516601562, 0.3830566406, -0.4470214844, 0.6298828125, -0.40234375, -0.2563476562, 0.7055664062, 0.5366210938, 0.4968261719, -0.5185546875, 0.5029296875, -0.271484375, -0.2595214844, -1.5458984375, 0.0149841309, -1.072265625, 1.220703125, 0.0966186523, 0.5053710938, -0.7890625, 0.8286132812, -0.2707519531, -1.0498046875, -0.2292480469, 0.7138671875, 0.7666015625, -0.8461914062, -0.3676757812, -0.4516601562, 0.203125, 0.0315551758, -0.2303466797, 0.8842773438, -0.4753417969, -0.2744140625, -0.7724609375, 0.8188476562, 0.0196685791, 0.3583984375, -0.6147460938, -0.2239990234, 0.8676757812, -0.0988769531, -0.5864257812, 0.8681640625, -0.5590820312, -0.748046875, -1.37890625, -0.3168945312, -0.6010742188, 1.12890625, -0.3395996094, 0.7778320312, 0.5224609375, -0.0300750732, 0.3659667969, -0.2216796875, -1.1513671875, -0.4987792969, 0.7236328125, -0.0505981445, -0.83984375, 0.1333007812, 1.1640625, 0.8793945312, -0.3562011719, 0.0422058105, -0.3051757812, 0.3891601562, 0.2502441406, 0.3288574219, -0.0579833984, -0.1343994141, -0.2230224609, -0.5366210938, -0.2595214844, -0.0625610352, -1.072265625, 0.4565429688, -0.2370605469, 0.3369140625, 0.740234375, 0.2819824219, 1.4267578125, 0.1751708984, -0.7465820312, 0.3227539062, 0.6723632812, -0.626953125, 0.7958984375, -0.1271972656, -0.1069335938, 0.6606445312, -0.505859375, 0.1109619141, -0.2790527344, -0.6728515625, 0.9765625, -0.654296875, 1.0380859375, 0.1142578125, -0.5625, -0.1635742188, 0.5737304688, 0.065246582, -0.3041992188, -0.3879394531, 0.2897949219, -0.7651367188, 0.1995849609, -0.1414794922, 0.053314209, -0.3276367188, -0.0420837402, -0.6396484375, -0.1604003906, -0.0700683594, -0.0379333496, 0.0204925537, -0.0323181152, 0.619140625, 0.57421875, -0.3173828125, -0.212890625, 0.697265625, -1.287109375, -0.5629882812, -0.3715820312, 0.3698730469, -0.0800170898, 0.64453125, -0.1031494141, -0.2270507812, 0.3947753906, 0.1823730469, -0.5654296875, -1.43359375, -0.3901367188, 0.1267089844, 0.6850585938, 0.0505981445, -0.3283691406, -0.5551757812, -0.0249633789, -0.2331542969, -1.1083984375, -0.6123046875, 0.4118652344, -1.099609375, 0.4033203125, 1.048828125, 0.2401123047, -0.2336425781, -0.0311737061, 0.5473632812, -0.4338378906, -0.4750976562, 0.4265136719, 0.4189453125, 0.0675048828, 0.2250976562, -0.0988769531, 1.0703125, -0.4689941406, -0.9438476562, -0.1685791016, -0.8486328125, 0.7553710938, -0.0443725586, 0.6459960938, -0.7329101562, -0.040222168, 0.0867919922, 0.4282226562, 0.8481445312, 0.7138671875, 0.7158203125, -0.9975585938, 0.4077148438, -0.794921875, 0.2098388672, -0.265625, 0.1873779297, -0.7407226562, 0.9497070312, -0.1226196289, -0.2059326172, 0.1887207031, -0.5932617188, -1.11328125, -0.3601074219, -0.4375, 0.1600341797, 0.5625, 0.2164306641, 0.9970703125, -0.2785644531, 0.3010253906, -0.9423828125, 0.48046875, 0.7368164062, 0.1123046875, 0.0085525513, -1.2587890625, 0.55859375, -0.3171386719, -0.2142333984, -1.30859375, 1.1171875, 0.5463867188, 0.108581543, 0.326171875, -13.1171875, -0.0139007568, -0.8876953125, 0.0233001709, -0.8559570312, 0.6362304688, -0.255859375, -0.2915039062, -0.3581542969, 0.4211425781, 0.2729492188, 1.1162109375, -0.8491210938, -0.4641113281, 0.1530761719, 0.833984375, -1.5068359375, -0.2354736328, 1.1943359375, 0.0047607422, -0.3520507812, 0.7001953125, -0.8203125, -0.779296875, -0.787109375, 0.7690429688, 0.1334228516, -0.7729492188, -0.56640625, 0.0847167969, 0.1519775391, 0.5327148438, -1.037109375, 1.1123046875, 0.0895996094, -0.9521484375, -0.1716308594, -0.4826660156, -0.6591796875, -0.1951904297, 0.9790039062, 0.0460205078, -1.8779296875, -0.1896972656, -0.6650390625, -0.6376953125, -0.9487304688, -0.4167480469, 0.0585632324, 0.111328125, -0.2448730469, -0.4279785156, -0.9321289062, 0.2780761719, -0.2283935547, -0.3452148438, 1.322265625, -0.681640625, -0.4194335938, 0.5141601562, 0.0805053711, 0.3286132812, 0.2937011719, -0.3393554688, -0.2976074219, -0.1625976562, 0.0943603516, 0.1369628906, 0.2344970703, -0.2055664062, -0.1363525391, -0.0844726562, 0.576171875, 0.0209350586, -0.1510009766, 0.8002929688, -1.046875, -1.083984375, -0.3022460938, 0.58984375, -0.0833740234, 0.3798828125 ]
"Lean and Green IT", http://www.itassetmanagement.net/2010/05/06/lean-green/ Kristiansen, T (2010). "Six Strategies for Sustainable IT", http://www.itassetmanagement.net/2010/11/18/strategies-sustainable-it/ External links Open iT Official Website System administration Web applications Companies based in Houston Software companies based in Texas Software companies of the United States
[ -0.1214599609, -1.2734375, 1.25, 0.93359375, 0.018157959, -0.2145996094, -0.3310546875, -1.34375, -0.1850585938, -0.52734375, 0.81640625, 0.4802246094, -0.1964111328, 0.7749023438, -0.8256835938, -0.3393554688, -0.4501953125, 0.4594726562, 0.8823242188, -0.6494140625, 0.7495117188, 0.1295166016, -0.5825195312, -2.908203125, 0.408203125, 0.20703125, -0.0989379883, -0.2807617188, -0.5776367188, 0.2120361328, -0.5473632812, 0.4870605469, -2.53125, 0.0762939453, -0.2858886719, 0.7353515625, 0.1032714844, -0.6352539062, -0.0000020862, -1.05078125, 0.7041015625, -0.6264648438, 0.0755615234, -0.2104492188, 1.3583984375, 0.3190917969, 0.7060546875, -0.1593017578, 0.6767578125, 0.1394042969, -0.9682617188, 0.1017456055, 0.0511474609, -1.5, -0.1235351562, -1.5107421875, 0.0974731445, 0.3635253906, -0.4118652344, -0.2563476562, 0.0805664062, 0.5815429688, -0.2973632812, -0.5170898438, -0.4904785156, -0.0622253418, -1.4150390625, 0.2839355469, -1.49609375, 0.796875, -0.8295898438, -0.5922851562, 0.0666503906, 0.2308349609, 0.2445068359, 0.1495361328, 0.408203125, 0.5419921875, 0.640625, 0.6440429688, -0.7841796875, 0.2797851562, 0.3735351562, 1.0009765625, -0.8447265625, 0.7099609375, 0.1285400391, 0.3483886719, -0.6499023438, 0.5791015625, 0.2653808594, -0.003446579, -0.8012695312, -0.2978515625, 1.1123046875, 0.4641113281, -0.0292358398, -0.1496582031, 0.1352539062, -0.3918457031, -0.3142089844, -0.2856445312, -0.0786132812, -0.3063964844, -0.4677734375, -0.2467041016, -0.1505126953, -0.1119384766, 0.5346679688, -0.091796875, 0.8876953125, -0.1115112305, 0.2254638672, -0.2097167969, 0.66015625, -0.2080078125, 0.9130859375, -0.3366699219, -0.4992675781, 0.0272979736, 0.4194335938, -0.8364257812, -0.2888183594, 0.063659668, -0.3601074219, -0.0856323242, 0.0958251953, -0.0789794922, -0.1828613281, -0.4624023438, 0.5600585938, -0.736328125, 0.5258789062, 0.8579101562, 0.4106445312, 0.0096359253, -0.205078125, -0.0592956543, 0.2352294922, 0.2474365234, 0.1586914062, 0.1315917969, -0.1507568359, 0.3874511719, 0.4934082031, 0.8754882812, -0.5776367188, 0.5122070312, -1.736328125, -0.3781738281, 0.2473144531, 0.455078125, 0.8583984375, 0.1422119141, 0.4270019531, -0.0613708496, -1.556640625, -1.0576171875, -0.2059326172, 0.595703125, -0.9970703125, -1.7490234375, -0.5751953125, 0.6821289062, 0.36328125, 0.3984375, -0.6728515625, -0.3051757812, -0.1514892578, 0.0744018555, -0.1730957031, 0.7514648438, 0.1546630859, -0.2055664062, -0.1694335938, -1.5478515625, 1.21875, -0.6567382812, -0.2004394531, -0.8129882812, 0.2709960938, -0.7651367188, 0.4577636719, -0.4536132812, -0.7592773438, 0.5766601562, -0.4787597656, -0.9370117188, 0.8637695312, -0.0078277588, -0.638671875, 0.3562011719, -0.6606445312, 0.3532714844, -0.032989502, 0.3630371094, 0.1418457031, -0.1243286133, -0.1063232422, -0.4235839844, -0.4758300781, 1.3173828125, -1.0078125, -0.6694335938, -0.2097167969, 0.6025390625, -1.5556640625, 0.2993164062, 0.0035076141, -0.0337219238, -0.6342773438, 0.6508789062, -0.4270019531, 0.0425415039, 0.9638671875, 0.5302734375, 0.3950195312, -0.5395507812, 1.52734375, -0.2100830078, -0.6098632812, 0.2316894531, -0.3149414062, 0.1337890625, 0.3276367188, -0.1130981445, 1.1435546875, 1.38671875, -0.50390625, 0.48828125, -0.0238952637, 1.0078125, 0.1661376953, 0.1213989258, 0.7250976562, -0.3767089844, 0.2915039062, -0.4895019531, -0.76953125, -0.6142578125, 0.6166992188, 1.0224609375, 0.8120117188, -0.943359375, -1.1845703125, 1.046875, -0.7319335938, -0.2517089844, -0.7475585938, 0.8295898438, 0.5014648438, -0.1076660156, 0.3471679688, 0.0758056641, 0.4079589844, -0.033782959, -0.5170898438, -0.3603515625, 1.009765625, -0.654296875, 0.3269042969, 0.7446289062, -0.2731933594, 0.5322265625, 0.1457519531, -0.058380127, -0.1955566406, -0.9130859375, 1.0078125, -0.859375, -0.2313232422, -0.5966796875, 0.4460449219, -1.8330078125, -0.4538574219, 0.3461914062, 0.595703125, 0.314453125, -0.0075073242, 0.6596679688, 0.4660644531, 1.0654296875, -0.0894165039, -0.4030761719, -0.2951660156, -0.2556152344, 0.6499023438, 0.3347167969, 0.265625, 1.6953125, -0.0539245605, -0.1138916016, 0.3889160156, 1.15234375, 0.2397460938, 0.1165161133, 0.6411132812, 0.9765625, 0.1459960938, -0.955078125, 0.1019897461, 0.556640625, 0.3244628906, -2.095703125, 0.4926757812, 0.2893066406, -0.234375, -0.6982421875, 0.9580078125, 1.900390625, 0.5366210938, -0.7006835938, -0.1812744141, 1.6787109375, 0.4450683594, -0.7768554688, -1.3984375, 0.9331054688, -0.1424560547, 0.0126495361, 0.1879882812, 0.4770507812, 0.2016601562, -0.7924804688, -0.1555175781, 0.6723632812, -0.8168945312, -1.1064453125, 0.9443359375, 0.0575561523, 0.4997558594, 0.3732910156, -0.1767578125, -0.6923828125, 0.9516601562, -0.2406005859, 0.6259765625, -0.4025878906, 0.0403747559, -0.4594726562, 0.0739135742, -0.6157226562, -0.3920898438, 0.3940429688, -0.2482910156, -0.1508789062, -0.6577148438, -1.0068359375, 0.607421875, 0.2062988281, 0.0083847046, 0.1292724609, -0.0645751953, 0.2517089844, 0.0196838379, -1.1923828125, 0.734375, 0.8818359375, -1.7392578125, 0.2807617188, 0.580078125, 0.40234375, -1.2783203125, 0.6293945312, -1.0517578125, -0.4128417969, 0.7705078125, 0.1729736328, -0.3510742188, 0.1032104492, -0.74609375, 0.8466796875, -0.3735351562, 0.1320800781, -0.8178710938, -0.3625488281, -1.1337890625, 0.6176757812, -0.0504455566, 1.556640625, 0.065246582, -0.8823242188, 0.1181640625, -0.4545898438, 0.2678222656, 1.1474609375, -1.091796875, -0.9721679688, -1.2314453125, 0.1881103516, 0.7358398438, 0.5708007812, 0.5732421875, -0.0185699463, 0.859375, -0.0286407471, 1.123046875, -0.1491699219, 0.4365234375, 0.3828125, 0.1450195312, 0.2722167969, -0.314453125, -0.6069335938, -1.3681640625, 0.6494140625, 0.962890625, 0.525390625, 0.595703125, 0.3474121094, -0.1618652344, 0.333984375, -0.0208129883, -0.6884765625, 0.4562988281, -0.6103515625, -0.0104675293, 0.1522216797, 0.552734375, 1.119140625, -1.4169921875, 0.3583984375, 0.5766601562, -0.9609375, -0.83984375, -0.0192718506, 0.3508300781, -0.2712402344, -0.2941894531, 0.4040527344, -0.9682617188, 0.1405029297, -0.60546875, -0.1802978516, -1.4853515625, 0.0342407227, 0.4860839844, -0.4428710938, -0.8188476562, -0.1666259766, 0.9682617188, 0.8442382812, 0.3515625, -0.634765625, -0.2030029297, 0.5620117188, 1.6357421875, 0.2927246094, 1.21875, 0.6801757812, -0.1253662109, -0.3547363281, 0.4790039062, -0.9521484375, 1.7197265625, -0.5546875, 0.4794921875, -0.1661376953, -0.3911132812, 0.5161132812, 0.9365234375, 0.5024414062, 0.3442382812, 0.2281494141, -0.1628417969, -1.4501953125, -0.732421875, -0.2668457031, 2.189453125, 0.1563720703, 0.3208007812, -0.5874023438, -0.7846679688, 0.3420410156, 0.6459960938, 0.6879882812, 0.4208984375, -0.5185546875, -0.0960693359, -0.7626953125, -0.6904296875, -0.6416015625, -1.203125, -0.0914306641, 0.5444335938, -0.3615722656, 0.8681640625, -0.6943359375, 0.0982666016, -1.0322265625, -0.3635253906, -0.5219726562, -1.580078125, 0.3920898438, 0.3591308594, -0.0148620605, -1.419921875, -0.2490234375, 0.2580566406, -0.6782226562, -0.6977539062, -0.517578125, -0.5629882812, -0.3928222656, -0.5932617188, -1.0673828125, -0.1190185547, -0.0505371094, 0.3283691406, 0.4904785156, 0.4826660156, 0.2186279297, 1.5732421875, 0.5200195312, 0.3715820312, 0.4931640625, -0.1028442383, -0.3371582031, 0.2481689453, 0.474609375, 0.53515625, 0.5932617188, -0.7421875, 0.0062332153, -0.5776367188, 0.6196289062, -0.0335693359, 0.4309082031, 0.681640625, 0.2109375, 0.8334960938, 0.1518554688, -0.4968261719, 0.7094726562, 0.322265625, -0.0725097656, 0.1802978516, -0.3876953125, -0.2741699219, 0.0974121094, -1.6513671875, -0.0651245117, 0.7412109375, -0.0383605957, -0.599609375, 0.4931640625, -0.80859375, -0.3894042969, -0.2844238281, 0.0531921387, -1.01171875, 0.0916748047, -0.4907226562, 1.158203125, -0.72265625, -0.1767578125, -0.9125976562, 0.92578125, 0.0477600098, 0.3806152344, 0.0188140869, 0.0438537598, 0.2119140625, -0.0204162598, -0.1470947266, -0.7470703125, -0.2469482422, -0.0100097656, 0.1968994141, 0.5224609375, -1.0517578125, 0.8500976562, -0.6220703125, -0.5981445312, -0.748046875, 0.2849121094, 0.7944335938, -0.1333007812, 0.0725097656, 0.669921875, -0.7890625, 0.1376953125, -0.1066894531, -0.4624023438, 0.0517883301, 1.8330078125, 0.5947265625, 0.36328125, 0.4797363281, -0.330078125, 0.5717773438, -0.3073730469, 0.4875488281, 0.3740234375, -0.5483398438, -0.3354492188, -0.2749023438, 0.2160644531, -0.0536804199, 0.1087036133, -0.8491210938, -0.5483398438, 1.3525390625, 0.6127929688, 0.87890625, -0.3745117188, -0.7861328125, -0.48828125, -0.0497741699, 0.3181152344, 0.0881958008, 1.4736328125, -0.1724853516, -0.041595459, -0.0983276367, 0.791015625, -1.265625, 0.1878662109, 0.4602050781, -1.2958984375, -0.5771484375, 1.2216796875, 0.7963867188, -0.3508300781, 0.3439941406, 0.1883544922, 0.4260253906, -0.748046875, -0.46875, 0.7290039062, 0.1567382812, 1.357421875, 0.4819335938, -0.6762695312, -0.1579589844, 0.8793945312, 0.1260986328, 0.767578125, 0.9506835938, 0.2012939453, -0.2032470703, -1.3935546875, -0.1512451172, -0.2081298828, -0.5546875, -0.3854980469, -0.6372070312, -0.701171875, -0.8090820312, 0.2768554688, 0.1632080078, 0.0551452637, 0.986328125, -0.7416992188, 0.6225585938, 0.2915039062, 0.2194824219, 0.1716308594, -1.26953125, -0.4270019531, -1.2119140625, 1.033203125, -0.9140625, 0.5517578125, -0.71484375, -1.15234375, -0.2355957031, 0.6630859375, -0.8637695312, -0.3000488281, -0.6420898438, 0.8696289062, 0.7866210938, -0.1760253906, -0.1844482422, 0.2073974609, 0.2624511719, -0.4543457031, -1.708984375, -1.517578125, 0.56640625, -0.73046875, -0.053894043, 0.0051727295, 0.6000976562, -1.3759765625, 0.9819335938, 0.509765625, -0.6889648438, 0.1237792969, -0.7646484375, -0.2066650391, -1.55078125, -1.189453125, -0.9604492188, -1.4208984375, -0.0632324219, 0.3076171875, -1.2529296875, -0.6489257812, 0.7353515625, -1.0146484375, 0.2607421875, -1.2724609375, 0.2121582031, 0.5966796875, 0.1468505859, 0.1690673828, -0.4375, 0.0719604492, 0.3757324219, -0.4362792969, -0.8994140625, 0.1270751953, -0.8173828125, 1.3408203125, 0.0687255859, -0.8974609375, 0.1625976562, 0.8403320312, 0.3229980469, 0.4838867188, 0.5122070312, -0.3488769531, 0.2027587891, -0.8999023438, -0.3479003906, 0.9311523438, 1.30078125, -0.0139923096, -1.0712890625, 0.2497558594, -0.7768554688, -0.2183837891, -0.5947265625, -0.5400390625, -0.3645019531, 0.7705078125, 0.525390625, -0.6791992188, 0.2751464844, -0.3713378906, 0.0414733887, -0.32421875, 0.2646484375, -0.638671875, 1.541015625, -0.0526733398, -0.9252929688, -0.1782226562, 1.0478515625, -0.9487304688, -0.082824707, 0.3081054688, 0.0822143555, 0.3491210938, -0.8828125, 0.2409667969, -1.0771484375, 0.90234375, 0.6284179688, -0.0402526855, 0.2758789062, -0.2517089844, -0.0423278809, -0.5732421875, 1.0947265625, -0.162109375, 0.1256103516, -1.0234375, -0.3591308594, 0.2437744141, -0.1080932617, -0.4924316406, 0.537109375, -1.4140625, 0.4279785156, -1.03125, -0.515625, -0.859375, 0.4892578125, 0.1749267578, 0.3154296875, 1.009765625, 0.2717285156, -0.6274414062, 0.0885009766, -2.201171875, -0.6528320312, -0.8452148438, 0.5014648438, -0.2783203125, 1.4130859375, 0.626953125, 0.5, 0.4177246094, 0.4099121094, -0.5952148438, -0.8579101562, -0.7041015625, 0.8471679688, 0.1024169922, 0.7612304688, -0.2099609375, 0.4890136719, -0.1372070312, -0.0642700195, -0.5834960938, 0.3784179688, -0.1361083984, 0.0038108826, 0.2048339844, 0.0931396484, 2.068359375, -0.921875, 0.0275115967, -0.5610351562, 1.185546875, -0.7436523438, -0.1418457031, 0.1647949219, 0.3500976562, 0.9995117188, 0.1932373047, -0.0187988281, 0.2995605469, -0.6396484375, -0.3459472656, -1.1591796875, 0.8857421875, 0.8173828125, 0.9809570312, 0.0765991211, 0.3444824219, -0.4052734375, -0.0848999023, -0.0526733398, -1.5546875, 0.3442382812, 0.2565917969, 0.0218505859, -0.3366699219, 0.2551269531, 0.3168945312, -0.953125, 0.2071533203, -0.4248046875, -0.1124267578, 0.3349609375, 0.1636962891, 0.9643554688, 0.7265625, -0.3889160156, -0.0808105469, 0.4162597656, -0.4768066406, -0.9155273438, -1.515625, 0.6064453125, -0.2301025391, 0.9638671875, -0.6381835938, -0.65234375, 0.2185058594, -0.2066650391, -0.2110595703, -0.1447753906, -0.0321350098, 0.2580566406, -0.1196899414, -0.611328125, -1.3916015625, -0.4780273438, -0.5786132812, 0.0814208984, -0.986328125, -0.4865722656, 0.4130859375, -0.3251953125, 0.359375, 1.796875, 0.6215820312, 1.130859375, 0.2646484375, 0.2829589844, -0.2827148438, 0.2069091797, -0.0374145508, -0.2141113281, -0.9248046875, -0.1588134766, 0.71875, 0.3991699219, -0.3737792969, -1.0673828125, 0.0802612305, -0.970703125, 0.1927490234, -0.1461181641, 0.6323242188, -0.2880859375, 0.3103027344, 0.2922363281, 0.0480957031, 0.6879882812, -0.1315917969, -0.2915039062, -0.5747070312, 0.5541992188, 0.0035743713, -1.0751953125, -0.8056640625, 0.1695556641, -0.9208984375, 0.80078125, -0.421875, 0.4038085938, -0.4772949219, -1.1611328125, -0.1229248047, -0.6845703125, -0.5454101562, 0.7041015625, -0.0002347231, -0.0972290039, 0.3271484375, -0.0657348633, 0.7241210938, -0.1560058594, 0.6909179688, 0.5576171875, -0.8266601562, 0.0438232422, 0.2888183594, 0.0126037598, 0.1315917969, -1.013671875, -0.1938476562, 0.7666015625, 0.3708496094, 0.8203125, -0.9125976562, -11.484375, -0.90234375, 0.1273193359, -0.0662231445, -0.00522995, -0.0183410645, 0.7431640625, -0.6005859375, -0.2092285156, 0.1358642578, 0.6416015625, 0.513671875, -0.916015625, -0.9428710938, 0.0161132812, -0.0461120605, -0.3862304688, -0.7856445312, 1.3662109375, -0.369140625, -0.1854248047, 0.0584716797, 0.2347412109, -0.3347167969, -0.5620117188, 0.9677734375, -0.3337402344, -0.0219421387, 0.3603515625, 0.0234527588, -0.3447265625, -0.0770874023, -0.0600280762, 1.0576171875, -0.3950195312, 0.0011472702, 0.4846191406, 0.5356445312, -0.7666015625, -0.1629638672, 0.8842773438, 0.0328063965, -0.849609375, 0.3364257812, -0.2065429688, -0.3610839844, -0.2521972656, -1.0859375, -0.6284179688, 0.1547851562, -0.8471679688, -0.3278808594, -0.5361328125, -0.2846679688, -0.4777832031, 0.1732177734, 0.5795898438, -0.7172851562, 0.7807617188, 0.2961425781, -0.2053222656, 0.1081542969, -0.2491455078, -0.1602783203, -0.853515625, -0.046875, -0.4204101562, 0.4724121094, 0.8359375, -0.1787109375, 0.2072753906, -0.6748046875, 0.0624694824, -0.716796875, 0.8510742188, -0.0717773438, -0.6508789062, -0.3798828125, -0.208984375, 1.177734375, -0.084777832, 1.3134765625 ]
Brake force, also known as Brake Power, is a measure of braking power of a vehicle. Railways In the case of railways, it is important that staff are aware of the brake force of a train so sufficient brake power will be available to bring the train to a halt within the required distance from a given speed. In simple terms the brake force of a train should be relative to the sum of the brake force that can be exerted by all the vehicles in the train relative to the weight of the train, excluding problems that may occur such as wheels locking and sliding under braking. Modern freight wagons typically have brakes that can be operated from the locomotive, these are sometimes referred to as fitted freights. Older wagons typically were not fitted with brakes that could be operated from the locomotive, sometimes these are referred to as unfitted freights. These unfitted freights would typically have brake vans attached to provide additional braking force and operated at a reduced field. While very early passenger trains might have had brakes that would have been applied by a brakesman riding in say every second carriage modern passenger vehicles have brakes that will be applied to all vehicles. There are a certain of cases in modern practice where operating at higher at higher speeds can could the brake force above a certain speed would be insufficient to stop the train within the required distance.
[ -0.6181640625, -0.2639160156, 0.4633789062, -0.033782959, -0.1376953125, 0.0246276855, -0.4438476562, -0.6225585938, -0.2290039062, -0.2375488281, 0.3942871094, -0.6831054688, 0.0082550049, -0.6240234375, 0.4919433594, -1.4267578125, -0.5478515625, -0.64453125, -1.1591796875, -0.1828613281, 0.4829101562, -0.1216430664, -0.0629272461, -0.4904785156, 0.1672363281, 0.1856689453, -0.8803710938, 0.0006303787, 0.59375, -0.6918945312, 0.1634521484, 0.7475585938, -0.6567382812, -0.0340270996, -0.6411132812, -1.0546875, -0.666015625, 1.1484375, -0.4528808594, -0.578125, -0.2497558594, -0.1315917969, -1.0078125, -0.9555664062, -0.0006723404, -0.3654785156, 0.1965332031, -0.3542480469, -1.0556640625, -0.116027832, -1.2451171875, -0.5034179688, 1.30859375, -0.251953125, 0.0309906006, 0.068359375, -0.6948242188, 0.1733398438, 0.552734375, 0.041015625, -0.998046875, -0.2109375, -0.6440429688, -1.291015625, -0.1307373047, -0.1092529297, -0.556640625, 0.466796875, -1.1611328125, -0.1524658203, -0.2797851562, -0.568359375, -0.1010742188, 0.1878662109, 0.8090820312, -0.6782226562, -0.2236328125, 0.1951904297, -0.1839599609, 0.0060043335, 0.4460449219, -0.78125, -1.04296875, 0.1845703125, -1.2802734375, -0.8979492188, 0.5903320312, -0.6909179688, -0.0511169434, 0.6000976562, 0.5493164062, 0.1320800781, -0.7431640625, -0.1346435547, -0.7294921875, 0.0344848633, -0.8491210938, -0.7768554688, -0.4519042969, 0.9125976562, 0.2668457031, 0.2105712891, 0.5654296875, -0.1395263672, -0.8422851562, 0.7036132812, -1.0283203125, -1.505859375, 0.3928222656, -0.0696411133, 0.0067901611, -0.0174560547, -0.5244140625, 0.4418945312, -0.1374511719, 0.7290039062, 0.5673828125, -0.2325439453, 0.1011962891, -0.1037597656, -0.4155273438, 0.5048828125, 0.5229492188, -0.4899902344, 0.0261383057, -0.6103515625, -0.4128417969, -0.8266601562, -0.021774292, 1.24609375, 0.019821167, -0.32421875, 0.5625, -0.1739501953, -0.1958007812, -0.2551269531, -0.7666015625, -0.6079101562, 0.072265625, -0.8349609375, 0.4921875, -0.3742675781, 0.7182617188, -0.3286132812, 0.6176757812, -0.1722412109, -0.251953125, 0.3295898438, 0.0014362335, 0.2954101562, -0.1989746094, 0.3115234375, -0.1368408203, 0.1750488281, 0.9067382812, -0.8852539062, 0.35546875, -0.1608886719, 0.0361633301, -1.3212890625, -0.5073242188, -0.8823242188, -0.359375, 0.1458740234, -0.2854003906, 0.5625, 0.053314209, -0.0495300293, -0.5512695312, -0.3129882812, -0.0046195984, 0.2196044922, 0.4645996094, 0.4731445312, -0.3452148438, -0.0184631348, -0.6357421875, -0.34375, 0.8071289062, -0.3276367188, 0.1292724609, -0.3640136719, 0.5400390625, -0.6313476562, 0.4306640625, -0.2658691406, 0.7944335938, -0.0050315857, 0.0342712402, 0.0237121582, 0.3859863281, 0.1895751953, -0.4143066406, 0.6083984375, 0.052947998, -0.4250488281, -0.4377441406, 0.921875, 0.2384033203, -0.7368164062, 0.5732421875, 0.1065063477, -0.5244140625, -0.416015625, -0.40234375, 0.4470214844, 0.1024780273, -1.7294921875, 0.6357421875, -0.9028320312, -0.3239746094, 1.2197265625, 0.2543945312, 0.80078125, -0.2624511719, -0.728515625, 0.005771637, -0.0524291992, 0.0274505615, 0.34375, -0.0792236328, -0.6108398438, 0.4086914062, -1.111328125, 1.2890625, -0.4982910156, 0.1085205078, 0.8061523438, 0.3276367188, -0.1691894531, 0.7495117188, 0.2631835938, -0.2536621094, -1.298828125, 0.0144119263, -0.1514892578, 0.1706542969, 0.9404296875, -0.708984375, -0.576171875, -0.5966796875, -0.3547363281, 0.484375, -0.1556396484, -0.5092773438, -0.9946289062, 0.638671875, -0.1387939453, 0.2022705078, 0.2546386719, -0.1901855469, 0.3259277344, 0.9462890625, 0.6806640625, -0.2915039062, -0.8662109375, 0.2622070312, -0.8383789062, 0.3083496094, -0.8701171875, -0.2181396484, 0.2849121094, 0.3422851562, 1.0029296875, -0.3386230469, 0.3625488281, 0.2993164062, 0.2220458984, -0.4152832031, 0.091796875, 0.3706054688, 0.671875, -0.2602539062, -0.8056640625, 0.6201171875, -0.5581054688, 0.4584960938, -1.03515625, 0.4802246094, -0.4479980469, 0.2729492188, 1.048828125, 0.7607421875, -0.0788574219, 0.1150512695, -0.4709472656, 0.2437744141, 0.833984375, -0.0800170898, -0.2038574219, 0.4150390625, 0.8452148438, 0.3850097656, 0.0531921387, 0.0158538818, 0.4523925781, 0.6586914062, 0.7602539062, -0.5571289062, 0.3513183594, 0.86328125, 1.0380859375, 0.1189575195, -0.0882568359, 0.9169921875, 0.8413085938, 0.4577636719, 0.1682128906, -0.2403564453, 1.1591796875, -0.2359619141, 0.4145507812, 0.5654296875, -0.6508789062, -0.4001464844, -0.064453125, 0.8251953125, -0.4760742188, 0.6782226562, -1.26171875, 0.9047851562, 0.1904296875, 0.76171875, -0.0865478516, -0.2495117188, 0.085144043, 0.3361816406, -0.55859375, 0.8129882812, 0.853515625, 0.1429443359, 0.7758789062, -0.4519042969, 1.3037109375, -0.9682617188, 0.8291015625, -0.951171875, -0.7153320312, 0.4416503906, 0.6333007812, -0.083190918, 0.1051635742, -0.1518554688, -0.0479125977, 0.4067382812, -0.1944580078, -0.1132202148, -0.5927734375, 0.8481445312, -0.053527832, 0.1134033203, -0.443359375, -0.6376953125, 0.0177459717, -0.5463867188, 0.2014160156, 0.71875, 0.2185058594, -0.89453125, 0.404296875, 0.6459960938, -0.7973632812, -0.2365722656, 0.089050293, -2.1953125, 0.2005615234, -0.1745605469, 0.841796875, -0.4099121094, -0.3718261719, -0.4282226562, 0.5434570312, -0.90234375, 0.51953125, 0.7690429688, -0.9482421875, -0.0425109863, -1.044921875, 0.546875, -0.1402587891, 0.090637207, -0.8173828125, -0.3452148438, -0.3791503906, -0.0064582825, -0.6298828125, -0.8061523438, 0.8471679688, 0.0598144531, 0.0554199219, -0.0870361328, 0.1990966797, -0.2668457031, 0.0387268066, -0.9340820312, 0.7524414062, 0.6298828125, -1.4365234375, 0.787109375, -0.3615722656, 0.0196075439, 0.56640625, 0.4614257812, -0.1286621094, -0.5317382812, 0.0998535156, 0.8510742188, 1.45703125, -0.52734375, 0.0634765625, -0.728515625, 0.2824707031, 0.1639404297, 0.082824707, -1.279296875, -0.1857910156, 1.3056640625, -0.744140625, 0.3647460938, 0.1729736328, -0.1216430664, -0.2875976562, -0.0806274414, 1.080078125, -0.1401367188, -0.4765625, 0.0498352051, -0.0074539185, 0.8959960938, -0.0417480469, -0.0827636719, -0.662109375, -0.1740722656, 0.0996704102, -0.3603515625, 0.3759765625, 1.0595703125, 0.0176086426, 0.4729003906, -0.447265625, -0.5712890625, 0.3483886719, -0.5639648438, 1.1064453125, 1.330078125, -0.5366210938, -0.3696289062, 0.0247955322, -0.5732421875, 0.3645019531, 0.3967285156, -0.8134765625, -0.4567871094, -0.2330322266, 1.0205078125, -0.2512207031, 0.8935546875, 0.103515625, -0.5053710938, 0.3894042969, 0.9516601562, 0.5737304688, -0.0787353516, 0.2158203125, 0.80859375, -0.1877441406, 0.2846679688, 0.7407226562, 0.3698730469, -0.2335205078, -0.0424499512, 1.1650390625, -1.021484375, -0.458984375, -0.283203125, 0.0222930908, 0.2038574219, 0.2700195312, -0.3576660156, 0.069519043, -0.5590820312, -0.0510864258, 0.1342773438, -0.314453125, -0.787109375, 0.5595703125, 0.9184570312, 0.6943359375, 0.6166992188, 0.1455078125, 1.126953125, -0.8637695312, -0.7314453125, -0.7036132812, -1.3828125, -0.6362304688, 0.104675293, 0.2822265625, 0.7407226562, -0.3530273438, 0.5380859375, 0.7080078125, 0.2335205078, 0.4006347656, -0.458984375, 0.91796875, 0.8833007812, -0.0773925781, -0.3276367188, 0.2166748047, 0.5205078125, 0.7788085938, 0.41015625, 0.4565429688, -0.1926269531, -0.1573486328, -0.2585449219, 0.8896484375, -0.2093505859, 0.0035820007, 0.3283691406, 0.5249023438, -1.3046875, 0.2244873047, 0.1942138672, 0.7202148438, 0.0927734375, -0.4187011719, -1.041015625, -0.7485351562, -1.2451171875, -1.3369140625, -0.3330078125, 0.08203125, 0.1774902344, -0.3090820312, 0.0407714844, 0.130859375, 0.4997558594, 0.5073242188, -0.0244903564, -0.0217285156, 0.7236328125, -0.4748535156, -0.3090820312, 0.7338867188, 0.0383911133, -0.1657714844, -1.0380859375, -0.2220458984, -0.2619628906, -0.5454101562, -0.4660644531, 1.42578125, -0.2885742188, 0.4140625, -1.353515625, 0.2161865234, 0.1694335938, -0.0740356445, 0.5673828125, 0.1877441406, -0.1787109375, -0.591796875, -0.0184326172, 0.3999023438, -0.5756835938, -0.6728515625, -0.2741699219, 0.2308349609, 0.3288574219, 0.1817626953, -0.921875, 0.796875, -0.9008789062, -0.1118774414, 0.3662109375, -0.541015625, -0.6025390625, 0.0632324219, 0.3266601562, -0.4362792969, -0.31640625, -0.5498046875, -0.53125, -0.8100585938, -0.6259765625, -1.2333984375, -1.21484375, -0.5708007812, -0.396484375, -0.9091796875, 0.10546875, 0.6391601562, -0.058380127, 0.3776855469, -0.6762695312, 0.2351074219, 0.666015625, -0.2147216797, 0.2702636719, 0.8432617188, -0.9521484375, -0.1958007812, 0.693359375, 0.1303710938, -0.6240234375, -0.8344726562, 0.7153320312, 0.1870117188, 0.6176757812, -0.1133422852, -0.9448242188, 0.6860351562, 0.4790039062, -0.6245117188, 0.7255859375, -0.8427734375, -0.071472168, -0.7641601562, -0.6767578125, 0.3210449219, -0.3024902344, -0.1124267578, -0.2248535156, -0.4267578125, 0.4055175781, 0.2966308594, -0.3542480469, 1.2119140625, 0.4123535156, -0.1427001953, 0.9301757812, -0.4162597656, -0.7666015625, -0.626953125, 0.3208007812, 0.1138305664, -0.3637695312, -0.837890625, -0.3386230469, -0.7758789062, -0.6674804688, 0.2331542969, 0.7436523438, 0.5361328125, -0.36328125, 0.3298339844, -0.8920898438, -1.1787109375, 0.4987792969, -0.1875, 0.1672363281, -1.6376953125, -0.1929931641, 0.2459716797, -0.6328125, -0.8452148438, 1.0263671875, 0.2060546875, 0.3039550781, 0.2393798828, -0.1571044922, 0.2697753906, 0.1751708984, -1.33203125, -0.2019042969, -0.2191162109, -0.5786132812, -0.5576171875, -0.3166503906, -0.5625, -0.70703125, -0.4135742188, 0.4660644531, -0.9389648438, 1.291015625, -0.4995117188, -0.7202148438, -0.0583190918, 0.0585021973, 0.3115234375, 0.0283966064, 0.8325195312, 0.208984375, -0.3020019531, 0.1860351562, 0.744140625, 1.162109375, 0.208984375, 0.892578125, 0.0797119141, -1.2275390625, -0.2404785156, 0.6987304688, -0.2854003906, 0.1967773438, 0.4211425781, 0.1095581055, -0.8520507812, 0.6513671875, -0.2381591797, -0.626953125, 0.3647460938, -0.3920898438, 0.1391601562, 0.9936523438, 0.822265625, 0.9047851562, -0.6362304688, -0.2404785156, 0.4304199219, -0.2585449219, 0.2415771484, 1.25390625, 0.3598632812, -0.349609375, -0.5859375, 0.6333007812, -1.234375, -0.1427001953, -0.4875488281, -0.50390625, 0.2202148438, 1.283203125, 0.3283691406, -0.6157226562, -0.3259277344, 0.6123046875, 0.1290283203, -0.1273193359, -0.2287597656, 0.8471679688, 0.4760742188, -0.1015625, 0.4553222656, 0.2915039062, 0.2529296875, 0.3601074219, 0.0082778931, -0.53125, 1.0625, 0.7290039062, 1.16796875, 0.8232421875, 0.2648925781, 0.927734375, -0.5688476562, 0.1705322266, 0.2042236328, 0.2053222656, 0.7153320312, -0.203125, -1.08984375, 0.6904296875, 0.3049316406, -0.5751953125, 0.0168609619, -0.0551147461, -0.9204101562, 0.2941894531, 0.1122436523, -0.2719726562, 0.0396118164, 0.9736328125, 0.1456298828, 0.1672363281, 0.1832275391, 0.1997070312, 0.7231445312, 0.3225097656, -0.0637817383, -0.6396484375, 0.1804199219, -0.0130691528, 0.5751953125, -0.0390930176, -0.5673828125, 0.0021915436, -0.587890625, 0.1297607422, 0.1061401367, 0.1095581055, -0.4555664062, -0.1274414062, 0.0450134277, 0.0245361328, 0.2932128906, 0.1774902344, 0.6533203125, 0.5375976562, -0.8520507812, 1.2998046875, 0.2568359375, -1.0146484375, -0.054107666, 0.3291015625, -0.106262207, 1.48046875, -0.1369628906, -1.0009765625, -0.0246276855, 0.29296875, 0.2130126953, -0.7827148438, -0.5869140625, 0.0974121094, 0.2937011719, -0.9497070312, 0.4226074219, 0.2934570312, -1.1337890625, -0.3618164062, 0.4113769531, 0.1212158203, -1.0341796875, 0.6982421875, 0.76171875, -0.87109375, 0.697265625, 0.2941894531, 0.0917358398, -0.0035266876, 0.051361084, 0.2254638672, -0.6689453125, -0.2578125, -1.103515625, -0.8950195312, -0.1790771484, 0.537109375, -0.1661376953, -0.7470703125, 0.1034545898, -0.026260376, 0.2744140625, 0.1400146484, 0.3215332031, -0.513671875, -0.7177734375, 0.0454101562, 0.1462402344, -0.7954101562, 0.0831298828, -0.6455078125, -1.1708984375, -0.7993164062, -0.6625976562, 0.2507324219, 0.62109375, 0.0750732422, -0.6694335938, 0.5717773438, 0.220703125, 0.0460205078, -0.0336608887, 0.0172424316, 0.6513671875, 0.1567382812, 0.1590576172, 0.2944335938, -0.1514892578, -0.7915039062, 0.3020019531, 0.26171875, -0.4985351562, -0.3764648438, 0.544921875, -0.4777832031, 0.0063896179, 0.6469726562, -0.96875, 0.6640625, -0.7138671875, -0.2464599609, 0.2580566406, 0.2907714844, -0.0677490234, -0.6694335938, -0.4768066406, 0.28515625, -0.8979492188, 0.1591796875, 0.8442382812, 0.1251220703, -0.1750488281, 0.2416992188, 0.0096817017, 0.1584472656, 0.7333984375, -2.49609375, 0.3327636719, 0.375, 0.4118652344, -0.95703125, 0.515625, -0.0488891602, 0.5649414062, -1.04296875, -0.28125, 0.5874023438, 0.000217557, 0.4729003906, 0.3527832031, -0.0112991333, 1.1171875, 0.4565429688, -0.3752441406, 0.349609375, -0.5913085938, 0.4831542969, -0.0933837891, -0.3562011719, 0.015411377, -0.5756835938, -0.642578125, 0.0181427002, -0.5595703125, -0.599609375, -0.2320556641, -0.5830078125, 0.3942871094, 0.0071411133, 0.058013916, 0.4597167969, -0.3444824219, 0.1428222656, 0.046081543, 2.001953125, 1.5263671875, -0.6186523438, 0.0794067383, 0.2834472656, -0.83984375, -0.5405273438, 0.7734375, -0.077331543, 0.744140625, 0.2622070312, -0.0759887695, -1.03125, -0.3876953125, -14.234375, 0.8295898438, -1.3115234375, -0.1402587891, -0.1400146484, -0.1251220703, -0.50390625, -0.0500183105, -0.1613769531, 0.2294921875, -0.4904785156, 0.9423828125, -0.1146240234, 0.1501464844, -0.122253418, -0.5400390625, 0.9165039062, -0.0004131794, -0.1585693359, 0.685546875, 0.013999939, 0.2136230469, 0.31640625, -0.7827148438, -1.5078125, 0.6772460938, 0.16796875, 0.0115661621, -0.0838623047, 1.0341796875, -0.271484375, 0.0145111084, -0.1102294922, 0.4118652344, 0.8452148438, -0.927734375, -0.4323730469, -0.8994140625, -0.1066894531, -0.21875, 0.6875, 0.498046875, 0.7075195312, 0.0417175293, -0.2014160156, -0.3237304688, -0.1370849609, 0.248046875, 0.0095062256, 0.119140625, 0.2227783203, 0.6577148438, -0.1759033203, 0.0273895264, -0.1790771484, -0.3386230469, 0.8154296875, 0.3293457031, 0.3659667969, 0.3969726562, 0.2379150391, 0.9013671875, -0.125, -0.3403320312, 0.7290039062, -0.3696289062, -0.44140625, 0.4487304688, 0.8666992188, -1.1689453125, 0.26953125, -1.4853515625, 0.826171875, -1.1884765625, -0.2468261719, -0.0292205811, 1.04296875, -0.3464355469, 0.7626953125, 1.650390625, -0.1419677734, -2.07421875 ]
Some cases arise because the brake force to weight ratio of a locomotive of typically 80 to 120 tonnes in weight is often less than that of passenger vehicle in the 40 tonne range; and it may be that locomotives running by themselves require several coaches to be attached if the train is to run at its maximum permitted speed with a suitable brake force to weight ratio. Another issue that can arise is when a locomotive is hauling a set of coaches, typically a multiple unit, where it is unable to work the brakes of the unit. In this case additional braking vehicles may be attached or the train may need to run at reduced speed. See also Tractive effort Continuous tractive effort Power at rail References External links A simple guide to train physics Brakes Force
[ -0.2131347656, 0.5395507812, 0.6157226562, 0.6625976562, -0.5073242188, -0.0212554932, 0.4157714844, -0.1907958984, -0.9165039062, -0.3076171875, -0.701171875, 0.0592041016, 0.1895751953, -0.1555175781, 0.6591796875, -0.7192382812, -0.4208984375, -0.8217773438, -1.005859375, 0.5463867188, -0.2216796875, 0.4331054688, -0.0378112793, -0.591796875, -0.2761230469, -0.0140151978, 0.36328125, -0.062286377, 0.1906738281, -0.1014404297, -0.2036132812, 0.6860351562, -1.703125, -0.431640625, -1.076171875, -0.3791503906, 0.2203369141, 0.6420898438, 0.1531982422, -0.8828125, 0.1662597656, 0.0587768555, -1.267578125, -0.7333984375, 0.1007080078, -0.1022949219, 0.1939697266, -0.9326171875, -0.9497070312, -0.6098632812, -0.1302490234, -0.4938964844, 1.02734375, 0.0496520996, -0.3395996094, -0.5932617188, 0.3388671875, 0.78125, 1.5595703125, 0.0221557617, -1.2822265625, -0.4641113281, -0.1922607422, -1.36328125, 0.4323730469, 0.3525390625, -1.0205078125, 1.046875, -0.9897460938, -0.1697998047, -0.2543945312, -0.6162109375, 0.0605773926, 0.9916992188, 0.2015380859, -0.3046875, -0.9487304688, 0.2069091797, -0.1350097656, 0.3923339844, 0.2531738281, -0.4284667969, -0.7963867188, -0.2047119141, -0.6967773438, -0.7490234375, -0.384765625, -0.3950195312, 0.623046875, 1.6005859375, -0.0765991211, -0.3276367188, -1.380859375, -0.4685058594, -0.9584960938, -1.04296875, -0.7553710938, -1.3115234375, -0.3510742188, 0.4001464844, 0.4868164062, 0.3239746094, 0.1032104492, -0.7119140625, -0.4826660156, 0.767578125, -1.2197265625, -0.7280273438, 0.4594726562, -0.2236328125, -0.0776977539, 0.9140625, -0.1457519531, 0.3093261719, -0.9296875, 0.7724609375, 0.8627929688, -0.1545410156, 0.100402832, 0.4187011719, -0.203125, 0.1290283203, 0.3986816406, -0.4841308594, -0.4899902344, -0.6391601562, -0.3061523438, -0.3217773438, 0.177734375, 0.5537109375, 0.3996582031, -0.7670898438, 0.6176757812, 0.8447265625, -0.3420410156, -0.3178710938, -0.2131347656, -0.3857421875, 0.5395507812, -0.2083740234, 0.3046875, 0.2220458984, -0.4755859375, 0.3217773438, 0.7734375, -0.4030761719, -0.1083374023, 0.0718994141, -0.4094238281, 0.1529541016, -0.2817382812, 0.0740356445, -0.2958984375, 0.1843261719, -0.1605224609, -1.064453125, -0.1690673828, 0.0501403809, 0.6909179688, -0.2259521484, -1.1494140625, -1.0615234375, -0.5786132812, -0.1588134766, -0.0041847229, -0.1595458984, 0.2807617188, -0.3493652344, -0.8911132812, 0.0151062012, -0.0203704834, 0.673828125, -0.1673583984, -0.2290039062, -0.7622070312, -0.9487304688, -0.1862792969, -0.564453125, 1.0556640625, 0.1479492188, 0.4016113281, -0.3950195312, 0.6171875, -0.8193359375, 0.748046875, -0.5268554688, 0.7021484375, -0.7680664062, -0.37890625, -0.576171875, 0.5258789062, -0.4409179688, -0.3422851562, 0.6298828125, 0.7631835938, -1.0576171875, -0.2044677734, 0.8081054688, 0.8676757812, 0.0073738098, 0.3376464844, 0.6030273438, -0.1564941406, -0.5966796875, -0.189453125, 0.4548339844, 0.3823242188, -0.8959960938, 0.5180664062, -0.102355957, 0.1632080078, 0.7026367188, 0.45703125, -0.0475769043, 0.4187011719, -0.4885253906, -0.341796875, 0.1097412109, -0.2126464844, -0.1647949219, -0.2858886719, 0.0108337402, 0.2023925781, -0.9995117188, 1.8974609375, -1.095703125, 0.7783203125, 1.2021484375, 0.935546875, -0.1369628906, 1.328125, 0.5727539062, -0.8764648438, -0.7143554688, 0.4040527344, 0.583984375, 0.6796875, 0.7080078125, -0.4626464844, -0.2282714844, 0.1593017578, -0.0968017578, 0.7602539062, -0.8461914062, -0.1909179688, -0.8715820312, 0.2366943359, -0.1024169922, 0.4436035156, 0.35546875, -0.4155273438, 0.1910400391, 0.2294921875, 0.1135253906, -0.2978515625, 0.3103027344, -0.1323242188, 0.0257873535, -0.2143554688, -0.0414428711, -0.6040039062, 0.3869628906, -0.4440917969, 0.1096191406, 0.2287597656, 1.2783203125, -0.1990966797, 0.4204101562, 0.2115478516, -0.8173828125, 0.3461914062, 0.921875, -0.5712890625, -0.9052734375, 0.8618164062, -0.2299804688, -0.0545654297, -0.3212890625, 0.5590820312, 0.0395812988, 0.7817382812, 0.6372070312, 0.8530273438, -0.3139648438, 0.3249511719, -0.3579101562, 0.0131149292, 1.033203125, 0.4125976562, 0.3674316406, 0.2854003906, 0.8857421875, 0.7524414062, 0.2427978516, -0.7670898438, 0.2514648438, 0.8442382812, 0.3862304688, -0.8017578125, -0.2834472656, 0.923828125, 0.3347167969, 0.50390625, -0.2648925781, 0.6591796875, 0.0438232422, -0.4543457031, -0.6728515625, -0.1397705078, 1.37890625, -0.1806640625, 0.8671875, 0.6484375, 0.1501464844, -0.5185546875, -0.3676757812, 0.7685546875, -0.58203125, 0.76953125, -0.9487304688, 0.7329101562, 0.3798828125, -0.623046875, 0.0314025879, -0.6279296875, -0.4152832031, -0.5151367188, -0.2302246094, -0.0866699219, 0.3557128906, 0.5581054688, 0.580078125, -0.5673828125, 0.8310546875, -0.560546875, 0.2941894531, -1.0517578125, -0.8383789062, 0.6157226562, 0.716796875, 0.5766601562, -0.4614257812, -0.8754882812, -0.5068359375, 0.8569335938, -0.8989257812, -0.7055664062, -0.6108398438, 1.6533203125, -0.2741699219, 0.2749023438, 0.3493652344, -0.4296875, -0.9697265625, -0.6982421875, 0.2541503906, 0.4577636719, -0.4475097656, -1.1962890625, 0.615234375, 0.7426757812, -0.783203125, -0.798828125, 0.30078125, -1.48828125, 0.1368408203, 0.3740234375, 0.0117034912, 0.0386962891, 0.4819335938, -1.056640625, 0.3256835938, -0.279296875, 0.75390625, 1.0830078125, -1.0205078125, 0.1896972656, -1.232421875, 0.6040039062, 0.2873535156, -0.0254821777, -0.5009765625, -0.0172271729, -0.935546875, 0.2012939453, -0.0247802734, -0.2580566406, 0.7866210938, 0.9140625, -0.1026000977, -0.1082763672, -0.0658569336, 0.1318359375, -0.4489746094, 0.3996582031, 0.2768554688, 1.2470703125, -1.19140625, 0.326171875, -1.60546875, 0.5229492188, -0.0249176025, -0.0209197998, -0.6958007812, -0.2700195312, 0.6806640625, 1.30859375, 0.9633789062, 0.2819824219, 0.6401367188, -0.951171875, 0.0321350098, 0.014251709, 0.4282226562, -1.52734375, -0.9296875, 1.095703125, -1.0029296875, -0.0721435547, 1.30078125, -1.421875, -0.7319335938, -0.6596679688, 0.3586425781, 0.2746582031, -0.6435546875, -0.3776855469, 0.56640625, -0.2053222656, -0.4792480469, -0.4353027344, -0.117980957, -0.2895507812, 0.3774414062, -0.1872558594, 0.2912597656, 0.7407226562, 0.1988525391, 0.5205078125, 0.0789794922, -0.4865722656, 0.4289550781, -0.6303710938, 0.2512207031, 1.47265625, 0.1376953125, -0.6538085938, -0.098449707, 0.0110549927, 0.8383789062, -0.3249511719, -0.5776367188, -0.0410461426, -0.8154296875, 0.6259765625, 0.0634765625, -0.2261962891, 0.3334960938, -0.7749023438, -0.1892089844, 0.947265625, 0.0949707031, -0.6840820312, -0.0350646973, 0.5180664062, -0.2332763672, -0.7875976562, -0.1585693359, 0.2280273438, 0.1005859375, -0.7045898438, 1.46875, -0.8061523438, 0.759765625, -0.4582519531, 0.2797851562, 0.4235839844, 0.537109375, -0.5615234375, 0.2927246094, -0.1297607422, -0.0399169922, 0.1002197266, 0.1878662109, -0.994140625, 0.5126953125, 0.9165039062, 0.3139648438, -0.2282714844, 0.5756835938, 0.2541503906, -0.9370117188, -0.1457519531, -0.5278320312, -0.748046875, -0.5068359375, -0.1557617188, -0.2565917969, 1.0078125, -0.5366210938, 0.0234985352, 0.7065429688, 0.1879882812, 0.5361328125, -0.7846679688, 0.098449707, -0.3181152344, -0.4162597656, -1.0126953125, -0.5678710938, 0.3193359375, 0.5864257812, -0.3403320312, 0.4536132812, -0.0384521484, 0.1810302734, 0.4362792969, 1.1630859375, 0.1252441406, 0.2976074219, -0.0131149292, 0.5346679688, -2.001953125, 0.5424804688, 0.3461914062, 0.5112304688, 0.3708496094, -0.2449951172, -0.7548828125, -0.1182861328, -0.8500976562, -0.791015625, 0.2303466797, 0.2225341797, 0.28515625, -0.5053710938, -0.2266845703, 0.3449707031, -0.4724121094, 0.037902832, -0.1975097656, -0.4865722656, 0.4614257812, -0.0137252808, -0.501953125, 1.4052734375, -0.4152832031, 0.1223754883, -0.4191894531, 0.064453125, -1.0947265625, 0.0189666748, 0.0996704102, 0.857421875, -1.3798828125, 0.8774414062, -1.2646484375, -0.4282226562, 0.0120925903, 0.1133422852, 0.3269042969, 0.0722045898, -0.6484375, -0.4919433594, 0.2536621094, 0.5571289062, -0.923828125, -1.017578125, -0.1973876953, 0.3420410156, -0.361328125, 0.2066650391, -1.2021484375, 0.791015625, 0.0759887695, -0.4260253906, 0.6157226562, -0.3276367188, -1.009765625, 0.4760742188, 0.1762695312, -0.0944213867, -0.59765625, 0.4743652344, -0.0575561523, -1.0830078125, -0.0781860352, -1.26171875, -0.9418945312, -0.59765625, 0.5776367188, -0.5810546875, 0.2159423828, 0.0638427734, 0.3605957031, 0.8979492188, -1.1962890625, 0.8950195312, 0.1420898438, -0.2392578125, 0.2248535156, 0.6997070312, -0.2457275391, 0.1478271484, 0.8002929688, -0.3911132812, -0.5322265625, 0.046875, 0.5576171875, -0.0658569336, 0.6279296875, 0.0099029541, -0.4411621094, -0.1687011719, 0.6635742188, -0.0826416016, 0.7866210938, -0.5249023438, -0.3356933594, -1.1103515625, -0.8344726562, 0.0280303955, 0.3735351562, -0.4594726562, 0.4482421875, -0.036529541, 0.0631103516, -0.2915039062, 0.5903320312, 1.1845703125, 0.4494628906, -0.5493164062, 0.5859375, 0.2766113281, -0.3469238281, -0.4523925781, 0.1744384766, -0.5336914062, -0.6416015625, -0.0413818359, -0.3308105469, 0.2211914062, -1.423828125, 0.0700073242, 1.8916015625, 0.8046875, -0.5341796875, -0.3569335938, -1.11328125, -0.3830566406, 0.6201171875, 0.4018554688, -0.0415039062, -0.70703125, -0.2222900391, 0.2587890625, -0.2260742188, 0.2082519531, 0.3193359375, 1.037109375, -0.1055297852, -0.0208740234, 0.7265625, 0.2817382812, -0.5791015625, -1.3564453125, 0.3071289062, 0.6928710938, -0.7133789062, -0.2646484375, 0.2425537109, -1.0390625, -0.6748046875, 0.4353027344, -0.3894042969, -0.1831054688, 0.4296875, -0.0301361084, -0.4987792969, 0.0715332031, -0.310546875, -0.0112533569, 0.2106933594, 1.1044921875, -0.1552734375, -0.3447265625, -0.5375976562, 0.5747070312, 0.1981201172, -0.3259277344, -0.2470703125, 0.0818481445, -1.44921875, 0.1265869141, 0.56640625, -0.7509765625, 0.5893554688, 0.6201171875, 0.1658935547, -1.5439453125, 0.4157714844, -0.7158203125, 0.1654052734, -0.2609863281, 0.0965576172, -0.6743164062, 0.8764648438, 0.5390625, 1.1376953125, -0.4790039062, -0.1224365234, 0.1234741211, -0.3430175781, -0.0250549316, 0.3073730469, 0.5517578125, -0.4089355469, -0.3571777344, 0.1226806641, -1.072265625, -0.5576171875, 0.0963134766, -0.0867919922, 0.4875488281, 0.6142578125, 0.4167480469, 0.0011615753, -0.2025146484, 0.8891601562, -0.0519104004, -0.1854248047, -0.5922851562, 0.658203125, -0.0510864258, -0.1190185547, 0.006313324, 1.6875, -0.623046875, 0.234375, -0.25, -0.4821777344, 0.7939453125, 0.837890625, 2.0390625, 0.908203125, 0.6357421875, 0.9360351562, 0.1593017578, 0.0748291016, 0.43359375, -0.1065673828, 1.001953125, -0.3200683594, -1.369140625, 0.4260253906, 0.1017456055, -0.0146179199, -0.0814208984, -0.3525390625, -0.7426757812, 0.5615234375, -0.1895751953, -0.1436767578, 0.1566162109, 0.4252929688, -0.4074707031, 0.5971679688, 0.4821777344, -0.1971435547, 0.3220214844, 0.2514648438, -0.3078613281, -0.7026367188, 0.2897949219, -0.0997924805, -0.1788330078, -0.5625, -0.6186523438, 0.4396972656, -0.6733398438, -0.0650024414, 0.5859375, 0.662109375, 0.0160369873, -0.0922241211, 0.0825195312, 0.951171875, -0.0372924805, 0.2215576172, 0.5068359375, 0.0218048096, -0.6025390625, 1.064453125, 0.6450195312, -1.1171875, 0.2687988281, 0.5415039062, 0.3493652344, 1.193359375, -0.810546875, -0.0239257812, 0.0090103149, 0.4230957031, 0.6884765625, -1.8515625, -0.8481445312, -0.0408935547, 0.1000366211, -0.6176757812, 0.7309570312, 0.5532226562, -0.6264648438, -0.2047119141, -0.7065429688, 0.9838867188, -0.888671875, 0.5659179688, 1.017578125, -0.9091796875, 0.6435546875, 0.7436523438, -0.734375, 0.2425537109, 0.027130127, 0.76171875, -1.4736328125, 0.1668701172, -1.8037109375, -0.3271484375, -0.2595214844, 1.4052734375, 0.0847167969, -0.8383789062, -0.4064941406, 0.525390625, 0.3039550781, 0.71875, 0.8466796875, -1.3837890625, -0.3811035156, 0.0160522461, 0.1890869141, -0.9697265625, 0.0035266876, -0.9682617188, -0.5043945312, -0.3713378906, -1.060546875, 0.5610351562, 0.6513671875, 0.580078125, -0.724609375, -0.3098144531, -0.0272979736, 0.2490234375, -0.4091796875, -0.061126709, 1.0166015625, 0.4873046875, 0.708984375, 0.3110351562, -0.0142593384, -1.0537109375, -0.0412597656, 0.1883544922, -1.0380859375, -1.06640625, 0.5385742188, -0.4880371094, 0.4731445312, 0.744140625, 0.1395263672, -0.7763671875, -0.638671875, 0.0656738281, 0.2595214844, 0.1547851562, -0.0279083252, -0.755859375, 0.1860351562, 0.4704589844, -0.9765625, -0.0669555664, -0.0829467773, -0.1585693359, 0.712890625, -0.5185546875, 0.2609863281, -0.2944335938, 0.666015625, -2.234375, 0.9750976562, 0.7670898438, 0.7231445312, -0.1293945312, 0.9521484375, -0.2939453125, -0.5493164062, -0.7338867188, -0.5893554688, 1.251953125, -0.708984375, 0.248046875, -0.2312011719, -0.4467773438, 0.4638671875, -0.1304931641, -0.5581054688, 0.0803222656, -0.90625, 0.5327148438, 0.3112792969, -0.9560546875, -1.1337890625, -1.169921875, -0.7993164062, 0.7211914062, 0.0325927734, -0.2481689453, -0.0002784729, -0.1209716797, 0.1730957031, 0.0782470703, 0.3002929688, -0.1875, -0.0340576172, -0.7421875, 0.6201171875, 1.4091796875, 1.9462890625, -0.5766601562, 0.1134643555, -0.0481567383, -0.6748046875, -0.4155273438, 1.4130859375, -0.0507507324, 0.0665283203, -0.0019683838, -0.3488769531, 0.3493652344, 0.4978027344, -13.0234375, 0.1242675781, -1.61328125, -0.376953125, 0.3073730469, 0.1030273438, 0.1457519531, -0.26171875, -0.6059570312, 0.4868164062, -0.0367736816, 1.359375, 0.6059570312, -0.2232666016, -0.7768554688, -0.2196044922, 0.5859375, -1.0849609375, -0.14453125, 0.3698730469, -0.4270019531, 0.3400878906, -0.2479248047, -0.5356445312, -2.169921875, 0.1287841797, 0.0370178223, 0.8452148438, -0.4890136719, 1.162109375, -0.2054443359, 0.8735351562, 0.2052001953, 1.1181640625, 1.0615234375, -0.7822265625, -0.791015625, -0.1356201172, -0.5952148438, -0.2297363281, 0.3134765625, 0.2487792969, 0.3298339844, -0.4074707031, -0.9711914062, -0.3706054688, -1.1103515625, 0.4885253906, 0.0111236572, -0.9301757812, 0.4580078125, 0.73828125, -0.3972167969, 0.2739257812, -0.564453125, -0.8271484375, 0.1906738281, 0.4733886719, -0.712890625, 0.3598632812, 0.416015625, 0.9194335938, 0.3415527344, -0.0128707886, 0.1710205078, -0.5615234375, -0.2819824219, 0.0326843262, 0.4990234375, -0.8037109375, 0.3044433594, -0.6240234375, 0.986328125, -0.9624023438, -0.2320556641, -0.2325439453, 1.1513671875, -0.90234375, 1.3662109375, 0.5561523438, -0.0294952393, -0.5971679688 ]
Subtext is a blog publishing system written in C# on ASP.NET. All data is stored in a Microsoft SQL Server database. The latest release of Subtext is 2.5, released on June 6, 2010. It is distributed under the BSD License. Features XHTML and CSS compliant Search engine-friendly permalink structure via friendly URLs TrackBack and Pingback Hosts multiple blogs on a single installation MetaWeblog API support Skinnable Really Simple Discovery BlogML support OpenID support Tag support History Subtext was announced on May 4, 2005, but the first release (Subtext Nautilus Edition) wasn't announced until March 2, 2006. Subtext was founded as a fork of the BSD Licensed .Text blogging engine written by Scott Watermasysk. .Text went on to be packaged within the Telligent Community product (formerly known as Community Server by Telligent Systems. Subtext is the blog engine used by MySpace for its Chinese site. Subtext is hosted on Google Code and is led by Phil Haack. Releases Subtext 1.0 - March 4, 2006 Subtext 1.5 - June 7, 2006 Subtext 1.9 - August 31, 2006 Subtext 1.9.2 - October 26, 2006 Subtext 1.9.3 - December 14, 2006 Subtext 1.9.4 - February 12, 2007 Subtext 1.9.5 - May 12, 2007 Subtext 2.0.0 - August 10, 2008 Subtext 2.1 - November 27, 2008 Subtext 2.1.2 - July 29, 2009 Subtext 2.5.0 - June 6, 2010 See also Blog software Blog References External links SubtextProject.com - Official Subtext Project Website Blog software Internet services supporting OpenID Content management systems Website management Software using the BSD license
[ -0.1343994141, -0.1868896484, -0.1889648438, -0.0326843262, -0.5590820312, 0.2216796875, -0.3549804688, 0.0405578613, -0.0133361816, 0.3190917969, 0.8618164062, -0.6098632812, 0.4758300781, 1.0771484375, 0.2037353516, 0.5883789062, 0.4191894531, -0.1137084961, 0.9145507812, 0.2841796875, -0.5732421875, -0.4592285156, 0.7348632812, -1.7275390625, 0.2330322266, 0.6606445312, -0.3498535156, -0.6884765625, -0.4765625, -0.5405273438, -0.4094238281, -0.2230224609, -1.5283203125, -0.0695800781, 0.2415771484, 0.7421875, -0.5161132812, -0.1434326172, -0.0117645264, 0.103515625, -0.0312042236, 0.1430664062, 0.2768554688, -0.2639160156, 0.4411621094, -0.1903076172, 0.80078125, 0.4069824219, -0.2048339844, 0.9990234375, -0.8110351562, -0.0458679199, -0.1157836914, -0.3708496094, 0.0624389648, -0.6376953125, 0.5825195312, -0.4479980469, -0.1215209961, 0.1905517578, -0.6567382812, 0.3168945312, -0.0799560547, -1.1015625, 0.2435302734, -0.6948242188, -0.9990234375, 0.0947875977, -1.0673828125, -0.66015625, -0.5107421875, 0.1938476562, -0.84375, -0.4262695312, 1.958984375, -0.1768798828, -0.7900390625, 1.0732421875, -0.4389648438, -0.0361938477, -0.3205566406, 0.8305664062, 0.1892089844, -0.2719726562, 0.4013671875, 0.4047851562, 0.1331787109, -0.2364501953, 0.2744140625, -0.0053062439, -0.068359375, -0.6137695312, -0.1328125, 0.2990722656, -0.0540466309, 0.2189941406, -0.8291015625, -0.302734375, -0.3483886719, 0.2673339844, -0.3693847656, 0.4299316406, -0.3088378906, -0.599609375, 0.3911132812, 0.1220092773, 0.1044921875, -0.0334472656, 0.0251159668, 0.2600097656, 0.6533203125, 0.2924804688, -0.283203125, -0.3081054688, -0.2282714844, -0.0323486328, 0.2357177734, -0.9765625, -0.0831298828, 1.80078125, -0.7104492188, -0.654296875, 0.5869140625, -0.4970703125, 0.7436523438, 0.2032470703, 0.0604858398, 0.4016113281, -1.13671875, 0.2639160156, -0.4760742188, -0.4099121094, -0.1267089844, -0.2648925781, 0.3415527344, -1.310546875, -1.9150390625, 0.1726074219, 0.4987792969, 0.0186157227, -0.3408203125, -0.7763671875, -0.3303222656, -1.1083984375, 0.2084960938, 0.4377441406, -0.8276367188, 0.5224609375, -1.04296875, -0.2403564453, -1.1357421875, -0.4272460938, -0.8100585938, 0.2033691406, 0.7543945312, -0.3820800781, -0.5073242188, -0.1807861328, 0.1263427734, -0.2497558594, -0.8452148438, -0.6650390625, 0.2191162109, 0.765625, -1.0009765625, 0.7807617188, -1.34765625, -0.6030273438, -0.0461425781, -0.6254882812, -0.4575195312, 0.1323242188, 0.3935546875, 0.6474609375, 0.2668457031, -0.2634277344, 0.6572265625, -1.4482421875, 0.2810058594, -0.8349609375, -0.5092773438, -1.033203125, 0.2822265625, -0.607421875, -0.7319335938, 0.4709472656, 0.5419921875, 0.4787597656, 0.7421875, 0.19140625, -1.4443359375, 0.0141372681, -0.5927734375, -0.0087966919, -0.2415771484, -0.3352050781, -0.2153320312, 0.4165039062, -0.0708007812, -0.4309082031, -0.564453125, 0.0506286621, -0.2829589844, -0.3444824219, 0.3596191406, 1.1796875, 0.22265625, 0.3037109375, 0.349609375, 0.3681640625, 0.2182617188, 0.6147460938, -0.6860351562, 0.2149658203, -0.4172363281, -0.1994628906, 0.5424804688, -0.0461730957, 0.3879394531, -0.2622070312, 1.0458984375, 0.3764648438, -0.1436767578, -0.2049560547, 0.7954101562, -0.8823242188, 0.8569335938, 0.6284179688, 0.0566101074, 0.4838867188, 0.4086914062, 0.7685546875, 0.3181152344, -0.3967285156, 0.7026367188, -1.12890625, -0.3908691406, -0.2624511719, 0.2396240234, -0.3466796875, -0.4353027344, -0.0850219727, -0.2702636719, -0.2531738281, -0.6274414062, 0.3520507812, 0.2878417969, -0.9072265625, 0.0101242065, 0.8408203125, 0.6171875, -0.0745239258, 0.7875976562, -0.3571777344, 0.5234375, -0.2768554688, 0.0568237305, -0.6284179688, 0.4931640625, -0.3579101562, -0.4470214844, 0.7006835938, 0.4895019531, 0.7368164062, -0.0880126953, 0.7685546875, 0.3740234375, 0.3679199219, 0.0264434814, -1.2548828125, 0.4313964844, -0.3061523438, 0.5883789062, 0.1233520508, 0.3352050781, -0.3896484375, 0.2199707031, -0.1872558594, 0.3427734375, 0.1804199219, 0.9643554688, 0.5659179688, 0.3020019531, 0.23828125, 0.1671142578, 0.2817382812, -0.3991699219, 1.6962890625, 0.3840332031, 0.2034912109, 0.7084960938, -0.2583007812, 0.2443847656, -0.3693847656, 0.8940429688, 1.0048828125, 1.0615234375, 0.3666992188, 0.181640625, -0.626953125, 0.4318847656, -0.0326843262, 0.0918579102, 0.2425537109, 1.2060546875, 1.0771484375, 0.1774902344, -0.5380859375, -0.1069335938, 0.8012695312, -0.3312988281, -0.4069824219, 0.1335449219, 1.02734375, -1.08203125, -0.6982421875, 0.0068511963, 0.1118164062, -0.4997558594, 0.4938964844, 0.6401367188, 0.1888427734, 0.1683349609, 0.509765625, -0.3142089844, 0.1911621094, -0.1726074219, -0.2509765625, 1.72265625, 0.2045898438, 0.4404296875, -0.0536193848, -0.6499023438, -0.3859863281, 0.2087402344, -0.9287109375, 0.6616210938, -0.4978027344, -0.2919921875, 0.1146850586, -0.0258026123, -0.5888671875, 0.2658691406, 0.3894042969, 1.2099609375, 0.740234375, -0.2646484375, -0.7119140625, -0.0626220703, 0.0502624512, -0.0610046387, 0.79296875, -0.2242431641, 0.7783203125, -0.071472168, 0.1546630859, 0.2551269531, 0.1093139648, -1.0341796875, -0.3059082031, 1.09375, 0.326171875, -1.28515625, -0.0594482422, -0.9501953125, 0.4382324219, 0.2687988281, 1.408203125, -0.9848632812, -0.005153656, 0.59765625, 0.5083007812, -0.720703125, -0.021987915, 1.2998046875, -0.1522216797, -0.2719726562, -0.0807495117, -0.9233398438, -0.2318115234, 0.615234375, -0.7119140625, 0.2121582031, -0.0393676758, 0.091003418, -0.1774902344, -0.359375, -0.2736816406, 0.7255859375, -0.0635375977, -0.1099243164, 0.3017578125, -0.1568603516, 0.3098144531, -0.1156005859, -0.580078125, 1.28515625, -0.9267578125, -1.0205078125, 1.30078125, -0.890625, -0.7641601562, -1.11328125, 0.2641601562, -0.5903320312, 0.96484375, 1.279296875, -1.087890625, 0.84765625, -0.4562988281, 0.3098144531, 0.2239990234, 0.0796508789, -0.2604980469, 0.0747680664, -0.6762695312, -0.103515625, -0.3588867188, 0.8090820312, 0.4216308594, -0.6376953125, -0.1979980469, 0.0596923828, 0.857421875, -0.2370605469, -0.1434326172, 0.77734375, -0.2946777344, 1.4541015625, 0.1805419922, 0.2067871094, 0.5068359375, -0.7724609375, -0.45703125, -0.3605957031, -1.0654296875, -0.2895507812, -0.2487792969, -0.3635253906, 0.2775878906, 0.0932006836, 0.6020507812, -0.4387207031, 0.26171875, 0.1102905273, -0.2600097656, -0.2524414062, -0.3273925781, 0.4084472656, -0.1298828125, -0.4196777344, -0.3195800781, 0.1781005859, 0.0923461914, -0.0069694519, -0.62890625, -0.7485351562, -0.4304199219, 0.0625610352, 0.2739257812, 0.0580749512, -0.0317382812, -0.8774414062, -0.6606445312, -0.3776855469, -1.16796875, 0.1635742188, 0.1128540039, -0.3979492188, -0.6499023438, 0.0102233887, 0.5361328125, 0.2072753906, 0.6870117188, -0.0014076233, -0.3703613281, 0.1409912109, 0.9038085938, -0.2751464844, -1.1123046875, 1.3603515625, 0.3046875, -0.7900390625, -0.6171875, 0.2102050781, 0.1176757812, 0.0101013184, -0.1323242188, -0.7651367188, -0.6337890625, -0.5087890625, -0.1927490234, -0.0269622803, -0.6284179688, -1.2939453125, -1.412109375, -1.0224609375, -0.2890625, 0.2734375, -0.7641601562, 0.0343017578, 0.1499023438, -0.1614990234, -0.2429199219, -0.3513183594, 0.1724853516, 0.9165039062, 0.51171875, 1.02734375, 0.2196044922, 0.173828125, -0.1534423828, 0.1323242188, 0.1811523438, 0.5141601562, -0.3901367188, -0.283203125, -0.1417236328, 0.5463867188, 0.3803710938, 0.1413574219, 0.3000488281, -0.5859375, -0.6171875, 0.0206756592, 0.5146484375, -0.0875854492, -0.4899902344, 0.0397644043, 0.0615234375, 0.2493896484, 0.1906738281, -0.4443359375, 0.3935546875, -0.2365722656, -0.8974609375, -0.3288574219, 0.7895507812, 0.0523681641, 0.14453125, -0.7563476562, 0.0646362305, 0.4792480469, 0.6254882812, -0.1099853516, 0.4206542969, -0.4392089844, -0.4138183594, 0.4069824219, 0.2401123047, -0.2270507812, 0.5922851562, -0.5673828125, 0.189453125, 0.3073730469, -0.6020507812, -0.0616149902, 0.4758300781, 0.0323181152, 0.1956787109, 1.0498046875, -0.6884765625, -0.0922851562, -0.5751953125, -0.2036132812, 0.697265625, 0.2868652344, -0.8198242188, -0.4309082031, -0.0528869629, 0.2081298828, 0.447265625, -0.2717285156, 0.4013671875, -0.0184326172, 0.0824584961, -0.580078125, -0.1087036133, -0.6479492188, -0.0970458984, 0.6333007812, -1.1669921875, -0.1885986328, -0.0433349609, -0.5688476562, 1.7724609375, 0.3747558594, 0.9614257812, -0.806640625, -0.0340881348, -0.1878662109, 0.3608398438, 0.6762695312, 0.2333984375, -0.8266601562, -0.4440917969, -0.3830566406, 0.037902832, -1.15625, 0.2827148438, -0.7299804688, -0.4501953125, 0.4985351562, 0.3874511719, 0.4738769531, -0.65625, -0.3481445312, 0.7275390625, -0.291015625, 0.4711914062, 0.10546875, 0.2412109375, 0.2281494141, 0.2283935547, 1.0439453125, 0.0321960449, -0.5405273438, 0.4038085938, -0.0576477051, -1.3984375, 0.2365722656, 0.4340820312, 0.1336669922, -0.0294342041, 0.6748046875, 0.2990722656, -0.4553222656, 0.556640625, -0.8051757812, -0.4055175781, -0.3664550781, 0.7626953125, 0.2685546875, -0.7387695312, -1.353515625, -0.1301269531, 0.4643554688, 0.98828125, -0.1202392578, -0.0003564358, -0.0180511475, -0.4392089844, -0.2172851562, -0.3825683594, 0.8872070312, 0.3732910156, -0.4567871094, -0.0048141479, -0.72265625, -0.6645507812, 0.6821289062, 0.185546875, -0.3051757812, 0.2022705078, 0.4897460938, -0.697265625, 0.5258789062, 0.1492919922, 0.3825683594, 0.513671875, -1.1435546875, 0.3518066406, 0.0717773438, 0.5864257812, -0.0457458496, 0.3518066406, 0.98046875, -0.3205566406, -1.15625, -0.6108398438, -0.1223144531, 0.927734375, -0.9731445312, 0.720703125, 0.27734375, 0.1193237305, -0.3322753906, -0.0579528809, -1.4755859375, 0.1751708984, 0.0813598633, -0.927734375, 0.5415039062, 1.1171875, 0.1867675781, -1.232421875, -0.3364257812, 1.09375, 0.587890625, -0.1072998047, 0.7451171875, 0.0736694336, -0.5615234375, -0.6821289062, -0.7905273438, -1.5546875, 0.0259399414, 0.3393554688, 0.8510742188, -0.6245117188, -0.1575927734, -1.58203125, -1.0234375, -0.2380371094, -0.1280517578, -0.2279052734, 0.4008789062, -0.6909179688, 0.0819091797, -0.36328125, -0.4809570312, -0.2250976562, 0.3120117188, 0.5161132812, 0.5961914062, 0.3515625, 0.2495117188, -0.4155273438, 0.5170898438, -0.5141601562, -0.818359375, -1.0185546875, 0.7978515625, 0.3159179688, 0.4653320312, -0.1395263672, -0.5205078125, 0.5576171875, 0.6953125, -0.3825683594, -0.4741210938, 0.5727539062, -0.0807495117, 0.2049560547, 0.1693115234, 0.294921875, -0.4848632812, 0.9443359375, 0.6162109375, 0.1809082031, 0.3674316406, 0.3032226562, 0.2094726562, -1.1806640625, -0.51953125, -0.5361328125, 1.5380859375, 0.6606445312, -0.9755859375, -0.4587402344, 1.78515625, -0.3874511719, -0.4135742188, -0.4099121094, 0.4790039062, -0.7241210938, -0.5815429688, -0.865234375, 0.0298614502, 0.2369384766, 0.5810546875, -0.4624023438, -0.1954345703, -0.1929931641, 0.5278320312, -0.4409179688, 0.5791015625, 0.5654296875, 0.1759033203, -0.0904541016, -0.576171875, -0.3723144531, 0.3005371094, -0.3220214844, 0.8505859375, 0.0689697266, 0.1633300781, 0.2253417969, 0.3464355469, -0.5297851562, 0.5512695312, 0.4255371094, 0.544921875, -0.1156616211, 0.2170410156, -0.4052734375, -0.1856689453, -1.2158203125, -0.6752929688, -1.1748046875, -0.5888671875, -0.5615234375, 0.3330078125, 0.3034667969, 0.1235351562, -0.2332763672, 0.5581054688, -0.1232910156, -1.0341796875, -0.5341796875, 0.5375976562, -0.4846191406, 0.0928955078, -0.1099243164, -0.46484375, -0.2722167969, 1.451171875, -0.1304931641, 0.4636230469, -0.3449707031, -0.3173828125, 0.4445800781, 0.7314453125, 0.9418945312, -0.077331543, 0.2854003906, 0.1466064453, 0.9541015625, -0.7973632812, 1.33984375, -0.0917358398, 0.3837890625, 1.015625, 0.2712402344, 0.6787109375, 0.1812744141, -0.3671875, 0.6401367188, -0.4487304688, 0.0920410156, 0.658203125, 0.1098022461, -0.1778564453, 0.0444030762, -0.435546875, -0.7963867188, 0.2169189453, 0.2614746094, 0.6069335938, -0.1351318359, 0.5219726562, 0.533203125, -0.0533752441, -0.7954101562, -0.7294921875, -0.6440429688, -0.7109375, -0.3896484375, -0.3518066406, -0.2607421875, 0.869140625, -0.8286132812, -1.052734375, -1.236328125, 0.2678222656, -0.2398681641, -0.7993164062, -1.01171875, -0.0367736816, -0.60546875, 0.951171875, -0.439453125, 1.1591796875, 0.3403320312, -0.8657226562, 0.2067871094, -0.3334960938, -0.3532714844, 0.3303222656, 0.9404296875, 0.3122558594, -1.1484375, 0.4670410156, -0.21875, -0.2641601562, -1.4306640625, 0.1363525391, 0.2075195312, 0.1318359375, -0.5092773438, 0.1988525391, -1.16796875, 1.1064453125, 0.2355957031, 0.2639160156, 0.0056610107, 0.0911254883, -0.4887695312, 0.6118164062, 0.7719726562, -0.2362060547, -0.9291992188, 0.7163085938, 0.0177307129, -0.62890625, -0.0715332031, 0.1228637695, 0.470703125, -0.3647460938, -0.1004638672, 0.7783203125, -0.3432617188, -0.1485595703, 0.142578125, -0.1868896484, 0.3012695312, -0.1645507812, -0.34765625, -0.5883789062, -0.2470703125, -0.525390625, 0.3962402344, -0.3666992188, -0.6352539062, -0.2680664062, 0.6494140625, 0.2814941406, -0.0888061523, -0.6274414062, -0.5688476562, -0.2292480469, 0.4020996094, 0.1563720703, 0.2486572266, 0.5673828125, -0.1480712891, -0.0139007568, -0.5498046875, -0.1536865234, 0.2998046875, -0.3891601562, -0.0491027832, 0.1528320312, -0.0493774414, -0.1710205078, 0.513671875, -0.5483398438, -0.1118164062, 0.5961914062, 0.28125, -0.1579589844, 0.3090820312, -14.4296875, -0.8330078125, -0.8681640625, 0.9497070312, -0.8134765625, -0.1815185547, 0.6279296875, -0.8354492188, -0.4167480469, 0.5546875, 0.0445861816, 0.5771484375, -0.9604492188, -0.951171875, 0.83203125, -1.212890625, -0.0693969727, -1.05078125, 0.2878417969, -0.0942382812, 0.1278076172, 0.5234375, -0.9155273438, -1.3271484375, 0.66796875, 1.1611328125, 0.0220336914, -0.0727539062, 0.2338867188, 1.1875, 0.2902832031, 0.0733032227, -0.9360351562, 1.12890625, 0.0759277344, 0.7114257812, 0.5888671875, 0.4626464844, -0.1800537109, -0.849609375, -0.2202148438, 0.2403564453, -0.861328125, 0.7001953125, 0.4763183594, -0.3325195312, -0.5375976562, 0.1127319336, -0.5834960938, -0.047088623, 0.83203125, 0.859375, -0.5708007812, 0.0200958252, -0.6948242188, -1.580078125, -0.7490234375, -0.0949707031, 0.0012636185, 0.4741210938, -0.2109375, 0.7670898438, 0.4143066406, -0.3857421875, 0.1373291016, -0.0035686493, 0.1306152344, -0.59765625, -1.021484375, -0.9150390625, 0.1302490234, -0.6694335938, -0.4897460938, 0.3466796875, -0.0163726807, 0.8627929688, 1.5986328125, 0.8564453125, -0.4851074219, 0.1984863281, 0.51171875, -0.232421875 ]
Arktika (; literally: Arctic) is a retired nuclear-powered icebreaker of the Soviet (now Russian) Arktika class. In service from 1975 to 2008, she was the first surface ship to reach the North Pole, a feat achieved on August 17, 1977, during an expedition dedicated to the 60th anniversary of the October Revolution. The Arktika is a double-hulled icebreaker; the outer hull is thick, the inner thick, with the space in between utilized for water ballasting. At the strongest point, the cast steel prow is ) thick and bow-shaped to aid in icebreaking, the curve applying greater dynamic force to fracture the ice than a straight bow would. The maximum ice thickness it can break through is approximately . Arktika also has an air bubbling system (ABS) which delivers 24 m3/s of steam from jets below the surface to further aid in the breakup of ice. The ship is divided by eight bulkheads, providing nine watertight compartments, and can undergo short towing operations when needed. It also comes equipped with a helicopter pad and hangar at the aft of the ship. Mil Mi-2 "Hoplite", dubbed ptichka (Russian for "little bird"), or Kamov Ka-27 "Helix" helicopters are used for scouting expeditions to find safe routes through the ice floes. Construction Construction of the ship began in the Baltic Shipyard in Leningrad on July 3, 1971. Sea trials completed successfully on December 17, 1975. For further information on the ship's design, construction and propulsion system, see .
[ 0.0604248047, 0.7827148438, 0.2622070312, 0.708984375, 0.2336425781, 1.36328125, -0.3063964844, -0.4252929688, 0.2995605469, -0.3608398438, -0.0617980957, -0.4001464844, -0.189453125, 1.0400390625, 0.4321289062, 0.900390625, -0.2814941406, 0.0052108765, -0.26953125, 0.2353515625, -0.1133422852, -0.40625, -0.4140625, -0.4755859375, -1.279296875, -0.3793945312, -0.578125, -0.3515625, -1.0146484375, -0.6713867188, 0.2561035156, 0.5551757812, -0.2663574219, 0.1834716797, -0.1856689453, -0.4580078125, -0.716796875, 1.1259765625, 0.1326904297, 0.2159423828, -0.0706787109, -0.0825805664, -0.3259277344, -1.08984375, -0.1593017578, -0.5673828125, 0.1019897461, -0.6030273438, -1.2958984375, 0.8627929688, -0.8364257812, 0.9809570312, 0.2432861328, -0.1551513672, 0.0782470703, -1.103515625, -0.0649414062, -0.9477539062, 0.1953125, 0.6201171875, -0.3354492188, 0.8090820312, -1.4560546875, -0.2629394531, -0.0165252686, 1.3603515625, 1.2607421875, -0.0335693359, -0.0142440796, 0.2005615234, -0.4890136719, -0.1567382812, 0.1434326172, 0.2075195312, -0.7333984375, -0.169921875, -0.3586425781, 0.990234375, 0.0323791504, 0.0726928711, -0.3049316406, 0.2639160156, -0.3715820312, -0.6020507812, -1.04296875, 0.2462158203, -0.2697753906, -0.4331054688, 0.0342407227, 1.5498046875, 0.0959472656, -0.7241210938, -1.5556640625, 0.9033203125, 0.0115661621, -0.2727050781, -0.8510742188, -0.3149414062, -0.3034667969, -0.0969238281, 1.3369140625, -0.6293945312, 0.3247070312, 0.1004638672, -0.798828125, 1.2802734375, -0.0039825439, -0.5297851562, -0.3032226562, -1, -0.1588134766, 0.9077148438, 0.7104492188, 0.4841308594, -0.4353027344, 0.0577087402, -0.5, -1.2548828125, -1.357421875, 0.5756835938, -0.3940429688, 0.3254394531, 0.8994140625, -0.3444824219, 0.5415039062, -0.0760498047, 0.4733886719, 0.4924316406, 0.0081634521, 0.4958496094, 0.0631713867, -0.865234375, -0.2705078125, -0.7407226562, 0.9345703125, 0.0661621094, -1.251953125, -0.37109375, -0.038269043, 0.828125, 0.1551513672, -0.7124023438, 1.228515625, -0.1951904297, 0.1663818359, 0.40625, -0.4289550781, 0.3994140625, -0.3337402344, 0.3354492188, -1.015625, -0.6684570312, 0.1632080078, -0.4187011719, -0.2492675781, 0.1707763672, 0.3215332031, 0.3916015625, 1.1923828125, 0.1550292969, 0.2377929688, -0.5327148438, -1.0859375, -0.2023925781, -0.1039428711, 1.021484375, 0.3598632812, 0.9775390625, -0.43359375, -0.2028808594, -1.12109375, 0.0711669922, 1.0498046875, -1.1455078125, 0.2834472656, 0.6694335938, -0.0920410156, -0.537109375, 0.2028808594, -0.6303710938, -0.0770874023, -0.5322265625, 0.3041992188, -0.5756835938, 0.3400878906, -1.5322265625, 0.5473632812, 0.5546875, -1.587890625, 0.1684570312, -0.2658691406, -0.1267089844, -0.970703125, -0.939453125, -0.2121582031, -0.9033203125, -0.4565429688, 0.4885253906, 0.2132568359, 0.104309082, -1.302734375, 0.2438964844, -0.62109375, -0.0270690918, 0.5053710938, 0.6171875, 0.2890625, 0.27734375, -0.3273925781, -0.6147460938, -0.034942627, -1.2578125, 0.0046653748, 0.5390625, 0.0341491699, 0.1838378906, -0.6982421875, 0.1605224609, 0.1846923828, -0.4086914062, -0.1732177734, -0.00522995, 0.5454101562, -0.888671875, -0.4018554688, -1.58984375, 0.0657348633, -0.1927490234, -0.3625488281, 0.1710205078, 0.9541015625, 0.4282226562, 0.2080078125, 0.1810302734, 0.5317382812, -0.1666259766, 0.0916137695, -0.9741210938, -0.4299316406, -1.4697265625, -0.6596679688, 0.0299530029, 0.5888671875, -0.2685546875, -0.4482421875, -0.8955078125, 0.1700439453, 0.4169921875, -0.7646484375, 0.7744140625, -0.0070724487, 0.1546630859, -0.3137207031, -1.552734375, -0.353515625, -0.7333984375, 0.1376953125, -0.0607910156, -0.2368164062, -0.4484863281, -0.2749023438, 0.1030273438, 0.6264648438, -0.7192382812, -0.4162597656, 0.876953125, -0.2137451172, 0.1385498047, 0.0601501465, -0.1511230469, -0.859375, 1.0830078125, 0.1896972656, 0.2021484375, -0.5737304688, 0.2381591797, 0.4965820312, -0.096496582, 0.7314453125, 0.421875, -0.1391601562, 0.3664550781, -0.048614502, -0.3251953125, 0.0863647461, -0.5986328125, 0.0338745117, 0.421875, -0.2482910156, 0.9775390625, -0.3422851562, 0.77734375, 0.5888671875, -0.4360351562, 0.96875, -0.3168945312, 0.1779785156, 0.7348632812, 0.4365234375, -0.537109375, 1.05859375, 0.4011230469, -0.5180664062, 0.2149658203, 1.2392578125, 0.4560546875, -0.5454101562, -0.7583007812, 0.720703125, 0.6967773438, 0.1116943359, -0.2731933594, -0.1682128906, 0.0764770508, -0.4353027344, -0.5751953125, 0.2066650391, 0.2587890625, 0.2590332031, 0.0882568359, 0.828125, -0.439453125, 0.5048828125, 0.3005371094, -0.1030883789, 0.2313232422, -0.8686523438, -0.455078125, 0.7768554688, 0.3134765625, -0.3293457031, 0.5053710938, 0.2717285156, -0.3200683594, 0.9077148438, 0.7221679688, -0.2663574219, 0.4104003906, 0.5668945312, -0.1256103516, -0.1995849609, 0.102722168, -0.2484130859, 0.8745117188, -0.2658691406, -1.0400390625, -0.0436706543, -1.4765625, -0.1424560547, -0.0607910156, 0.46875, -0.5219726562, -1.3994140625, -0.3937988281, -0.4765625, 0.3337402344, 0.0337524414, -0.509765625, -1.2353515625, 1.17578125, 0.7407226562, -0.5078125, -0.1910400391, -0.2744140625, -0.8994140625, -0.0901489258, 0.5278320312, -0.3403320312, -0.2783203125, -1.08203125, -0.3037109375, 0.8725585938, -0.1595458984, 0.6879882812, 0.9370117188, -0.8481445312, -1.216796875, -0.3781738281, -0.7509765625, 0.2934570312, -0.4653320312, -0.2629394531, -0.2437744141, 0.2905273438, -0.2758789062, 0.4331054688, 0.1912841797, 1.0888671875, 0.1547851562, -0.3889160156, -0.5668945312, 1.1884765625, 1.0380859375, -1.400390625, 0.3327636719, 0.3898925781, -0.1186523438, -1.5224609375, 0.5590820312, -0.1745605469, -0.0321960449, -1.2431640625, -0.4333496094, 0.275390625, -0.3718261719, 0.024810791, 0.2053222656, -0.0270690918, -0.2392578125, 0.0179901123, 0.3024902344, -0.3020019531, -0.1595458984, -0.3203125, -0.6708984375, 0.3439941406, 0.4609375, 0.5390625, 0.1968994141, -0.8271484375, -0.6108398438, -0.6088867188, 0.8564453125, -0.5483398438, -0.87890625, 1.083984375, -0.1096191406, -0.1516113281, 0.2487792969, 0.1246948242, 0.025390625, 1.4736328125, 0.0653686523, 0.073059082, 0.1971435547, -0.1801757812, -0.6069335938, 0.2690429688, 0.5854492188, 0.4074707031, 0.4243164062, 0.6635742188, 0.0696411133, 0.3588867188, 0.0955810547, 0.0270843506, 0.2810058594, -0.2756347656, -0.4729003906, -0.1018066406, 0.2570800781, -1.4130859375, 0.6782226562, 0.3701171875, 0.5751953125, -0.6962890625, 0.1770019531, -0.0668334961, 0.74609375, 0.6811523438, -0.3815917969, -0.0366516113, -0.6240234375, -0.2186279297, 1.54296875, 0.4665527344, -0.7163085938, -0.0579223633, -1.1982421875, 0.2580566406, -0.31640625, 1.591796875, -0.3674316406, 0.1511230469, 0.9233398438, 0.5405273438, 0.3801269531, 1.2666015625, -0.2312011719, 0.7124023438, 0.70703125, 0.2739257812, -0.5161132812, -0.1618652344, 0.0185546875, 0.2478027344, 0.1477050781, 0.2893066406, 0.5844726562, 0.020324707, 0.121887207, 0.4499511719, 0.2301025391, -0.9926757812, -0.654296875, -0.5415039062, 0.0447387695, 0.0710449219, 0.2180175781, -0.7114257812, 0.4074707031, 0.7622070312, -0.5307617188, 0.3405761719, -0.9702148438, 0.1550292969, -0.1701660156, -0.1456298828, 0.3559570312, -0.1483154297, -0.0955810547, 0.1002197266, 0.7822265625, 0.4504394531, 0.4460449219, -1.0380859375, -0.2290039062, 1.212890625, 0.3798828125, 0.67578125, -0.6225585938, 0.3115234375, -0.4304199219, 1.2236328125, -1.4130859375, 0.3662109375, 0.6826171875, -1.2412109375, -0.9814453125, 0.0287475586, -0.310546875, 0.5068359375, -0.7314453125, 0.6450195312, -0.5859375, -0.4108886719, 0.3996582031, 0.5747070312, -0.2568359375, -0.1634521484, -0.3474121094, -0.0895385742, -0.4528808594, 0.0567016602, -0.072265625, 0.8090820312, -0.2980957031, -0.6943359375, -1.12890625, 0.2397460938, 0.8188476562, 0.3649902344, -0.7875976562, 0.4272460938, -0.2690429688, 0.0380249023, -0.8056640625, 0.2364501953, 0.3969726562, -1.3427734375, -0.5581054688, -0.2191162109, 0.3293457031, 0.4243164062, 0.4946289062, 0.2731933594, 0.2489013672, 0.1193237305, 0.3193359375, -1.06640625, -0.2998046875, 0.15234375, -0.0850219727, 2.099609375, -0.7509765625, -0.1762695312, 0.1519775391, 0.455078125, 1.0283203125, -0.6435546875, 1.6572265625, 0.8276367188, -0.18359375, -1.0009765625, -0.1892089844, -0.1118774414, -0.43359375, -0.2661132812, -0.6572265625, -0.22265625, 0.1784667969, -0.3811035156, 0.5229492188, 0.2595214844, 1.0478515625, -0.3564453125, -0.7236328125, 0.89453125, 0.6000976562, -0.8383789062, 0.1427001953, 0.0097885132, -0.1201782227, 0.3352050781, -0.0534667969, -0.6450195312, 0.6787109375, 0.0339050293, -0.3371582031, -1.1064453125, -0.4714355469, -0.7016601562, 0.1248168945, -1.1162109375, 0.5615234375, -0.3051757812, 1.1259765625, 0.0939331055, 0.0794677734, 0.4992675781, -0.094543457, 0.0491638184, 0.251953125, -0.4826660156, 1.666015625, -0.8857421875, -0.3859863281, 0.1402587891, 0.7875976562, -0.4770507812, 0.5146484375, 0.1527099609, -0.3747558594, -0.845703125, -0.2678222656, -0.2409667969, -0.4748535156, -0.3991699219, -0.5341796875, -0.2817382812, 0.4421386719, -1.1630859375, 0.6499023438, -0.47265625, -0.7553710938, 0.2062988281, 0.4763183594, 0.9633789062, -0.8134765625, -0.0985717773, -0.3701171875, -0.2218017578, -1.0048828125, -0.6479492188, -0.3103027344, 0.2587890625, -0.5581054688, -0.7915039062, -0.008140564, 0.2357177734, -0.4619140625, 1.0732421875, -0.6044921875, -0.0605163574, -0.5439453125, 0.7075195312, 0.4431152344, 0.3579101562, 0.0820922852, -0.9096679688, 0.5102539062, 0.0481262207, 0.6147460938, -0.1260986328, 0.2465820312, 0.0180053711, 0.2265625, -0.412109375, 0.1954345703, 0.3645019531, 0.3823242188, -0.4221191406, 0.4619140625, 1.2744140625, 0.4846191406, -0.0825195312, -0.728515625, 0.0181274414, -0.4060058594, 0.2268066406, 0.78515625, -0.8940429688, 0.1455078125, 0.8447265625, -0.2829589844, -0.6997070312, 0.0204925537, 0.5366210938, 0.9384765625, 0.3601074219, -0.1993408203, -0.9560546875, 0.1134643555, 0.1547851562, -1.857421875, 0.708984375, 0.4736328125, -0.3403320312, 0.9008789062, -0.0325927734, -0.5131835938, 0.2048339844, -0.1856689453, 0.2827148438, 1.287109375, 0.9008789062, 0.7392578125, 0.236328125, -0.6733398438, -0.517578125, -0.1983642578, -0.2290039062, -0.29296875, -0.1971435547, -0.775390625, -0.384765625, -1.1162109375, -0.4597167969, 0.0487365723, 0.4750976562, -0.0281982422, -0.0256652832, 0.0478820801, 0.9770507812, -0.0673217773, 0.7172851562, -0.1665039062, -0.3208007812, -0.2237548828, 0.1693115234, -0.2768554688, 0.5864257812, 0.1813964844, 0.2027587891, -0.4384765625, 0.1506347656, 1.3212890625, 0.833984375, 1.787109375, 0.1501464844, -0.1076660156, 0.8647460938, 0.0149688721, -0.4873046875, -0.4548339844, -0.6665039062, 0.3005371094, -0.3452148438, 0.2318115234, -0.5444335938, -0.0805053711, 0.1001586914, 1.1435546875, -0.576171875, 0.5366210938, 1.1396484375, 0.4235839844, 0.6831054688, -0.4055175781, -0.6733398438, 0.7670898438, 0.005607605, -0.0548095703, 0.9204101562, -0.59375, 0.2631835938, 0.3469238281, -0.8486328125, 0.3864746094, 0.0118103027, -0.0708007812, -0.0848999023, -0.4011230469, 0.1524658203, 0.1271972656, 0.6801757812, 0.0798339844, 0.6782226562, -0.3605957031, -0.8022460938, -0.1302490234, 0.1583251953, 0.1868896484, 0.3518066406, 0.4191894531, -0.8081054688, -1.1689453125, -0.3774414062, 0.638671875, 0.5708007812, -0.662109375, 0.1644287109, -0.9169921875, -0.654296875, -0.3081054688, -0.5815429688, -0.0039901733, -0.5483398438, -0.4069824219, -0.517578125, -0.6513671875, -0.1505126953, 0.0776367188, 1.1953125, 0.1126708984, -0.4208984375, -0.779296875, 1.05859375, -0.578125, 0.4665527344, -0.3190917969, 0.6171875, 0.7114257812, -1.1611328125, 1.4296875, -0.185546875, -0.5947265625, 1.12890625, 0.8662109375, -0.3088378906, -0.3513183594, 0.7431640625, 0.0021781921, 0.2844238281, 0.1711425781, -0.8022460938, -0.2297363281, 0.4853515625, 0.0457458496, -0.0566711426, -1.1787109375, -0.42578125, 0.0115890503, 1.0654296875, 0.3698730469, -0.3967285156, -0.0141143799, 0.478515625, -0.5297851562, -1.2314453125, 0.112487793, -0.0273284912, -0.48046875, 1.1591796875, 0.45703125, -0.1028442383, -0.01121521, -0.5590820312, 0.3420410156, -0.0665893555, -0.078918457, 0.69921875, -0.1655273438, -0.857421875, -0.384765625, -0.7231445312, -0.14453125, -1.0126953125, -0.71484375, 0.8940429688, 0.697265625, 0.2529296875, -0.0057487488, 0.3278808594, -0.5493164062, 0.2410888672, 0.0202941895, 0.673828125, -0.0726928711, 1.201171875, 0.2595214844, 0.626953125, 0.0473632812, 0.1088867188, -0.3408203125, -0.6645507812, -0.4216308594, -0.3715820312, -0.5380859375, 0.517578125, 0.7836914062, -0.0563659668, 0.1099243164, 0.9755859375, -0.1910400391, 0.7119140625, 0.9448242188, -0.5649414062, -0.3225097656, 0.6025390625, -0.3195800781, 0.5986328125, 0.5483398438, -0.796875, -0.3891601562, -0.1232910156, 0.3369140625, -0.767578125, 0.1666259766, -0.2263183594, -0.3666992188, 0.037109375, -0.3911132812, 0.4709472656, -1.205078125, -0.5595703125, -0.3715820312, -0.787109375, -0.3093261719, -0.3562011719, -0.8823242188, 0.2114257812, 0.353515625, -0.0637817383, 0.9184570312, 0.875, -0.2814941406, -0.1113891602, -0.0899047852, -0.65234375, 0.0847167969, 0.2546386719, -0.501953125, -0.7583007812, 0.625, -0.2561035156, 0.9516601562, 0.0875854492, 0.4326171875, -0.0084915161, -0.1207275391, -1.1357421875, -13.734375, 0.7900390625, 0.5649414062, -0.2912597656, -0.3444824219, -0.2471923828, -0.2778320312, -1.8583984375, -0.0715332031, -1.2490234375, 0.6079101562, 1.166015625, -0.6752929688, -0.5297851562, -0.294921875, -0.9399414062, -0.2237548828, -0.4748535156, -0.5581054688, 0.0030231476, 0.3125, -0.2849121094, -1.373046875, -0.5737304688, 0.76953125, -0.9243164062, 0.0797119141, 1.1181640625, 0.4201660156, -0.9150390625, -0.1424560547, -0.9580078125, 0.3239746094, 1.3984375, -0.1898193359, -0.0226745605, 0.3210449219, -0.1888427734, -0.7446289062, -0.4599609375, 0.2641601562, -0.6020507812, -0.1433105469, 1.0849609375, -0.517578125, 0.5234375, -1.0859375, 0.2233886719, 0.1838378906, 0.0423278809, 1.30078125, 0.9897460938, 0.1407470703, -0.1409912109, 0.3210449219, 0.4387207031, -0.0345153809, -0.0297851562, 0.0531921387, -0.4287109375, 0.1748046875, 1.048828125, 0.4838867188, -0.5947265625, -0.5087890625, 0.0019178391, -0.1856689453, -0.9389648438, 0.7885742188, -0.6806640625, 0.8950195312, -1.7109375, -0.6982421875, -0.65625, 0.122253418, 0.4411621094, -0.058380127, -1.05859375, 1.068359375, 0.3032226562, -0.1084594727, -0.548828125 ]
Renaming controversy In 1982, she was rechristened Leonid Brezhnev in honour of Leonid Brezhnev, the General Secretary of the Central Committee of the Communist Party of the Soviet Union from 1964 until his death in 1982. In 1986 the name reverted to Arktika, according to some accounts because the ship's crew disliked the new name and refused to respond to radio messages unless the ship was referred to as Arktika. Within a week of the strike, the name was changed back. Another explanation is that the original name change had been due to an administrative mixup, and the name Leonid Brezhnev had never been supposed to apply to Arktika at all, but had been intended for a different ship. Service history The vessel was in service from 1975 to 2008. Arktika was retired for several years, but was repaired in the late 1990s. Originally designed for 100,000 hours of reactor life, Arktikas service life was prolonged another 50,000 hours in 2000, and another 25,000 hours after that, adding eight years to a 25-year planned service life. The life extension was accomplished by means of replacing critical equipment to allow the safe and continued operation of the nuclear plant. On May 17, 2000, a conference of Russian engineers, scientists, and government officials took place on board Arktika after her first service extension. The extension cost only $4 million, compared to the $30–50 million cost of a new nuclear icebreaker, and proved to be a successful endeavor. The conference therefore concluded that the lifetimes of Russian nuclear icebreakers could be successfully extended to 175,000 hours, and possibly more.
[ -0.0992431641, 0.9951171875, -1.052734375, 0.2341308594, 0.3203125, 0.9682617188, -0.4992675781, -0.2548828125, 0.1079711914, -0.140625, -0.3549804688, -0.1794433594, -0.5087890625, 1.48828125, 0.4543457031, 1.435546875, -0.8022460938, -0.6235351562, -0.2161865234, 1.2080078125, 0.1202392578, 0.4797363281, 0.0300445557, -1.095703125, -1.67578125, 0.296875, -0.6020507812, -0.0537109375, -1.6640625, -0.0125274658, 0.1212158203, 0.3715820312, -0.3742675781, -0.3054199219, 0.080078125, -0.6318359375, -0.2322998047, 0.6401367188, 0.2476806641, -0.2622070312, 0.5903320312, -0.3481445312, 0.1185302734, -0.6254882812, 0.0341796875, -0.302734375, -0.3552246094, -0.4406738281, -0.9194335938, 0.1022338867, -0.4118652344, 0.1510009766, -0.123046875, -0.9423828125, -0.099609375, -1.3056640625, -1.2392578125, -1.7578125, 0.7299804688, 0.6499023438, -0.1599121094, 1.1650390625, -1.33203125, -0.2707519531, 1.4365234375, 0.9423828125, 0.494140625, -0.2917480469, 0.1872558594, 0.3508300781, -0.9926757812, -0.2744140625, -0.7827148438, -0.2983398438, -0.8115234375, -0.3930664062, -0.7666015625, 2.064453125, -0.1358642578, -0.4409179688, -0.7387695312, 0.2436523438, -0.5463867188, -0.3117675781, -0.4455566406, 0.4685058594, -0.2348632812, -0.1921386719, -0.3662109375, 1.7802734375, 0.6616210938, -0.6123046875, -1.5439453125, 0.0300445557, 0.1805419922, -0.4169921875, -0.3073730469, -1.1025390625, -0.6538085938, 0.599609375, 0.697265625, -0.9853515625, 0.96875, 0.5405273438, 0.1138305664, 0.818359375, -0.1768798828, -1.017578125, -0.2609863281, -0.9716796875, 0.1711425781, 0.9086914062, 0.3100585938, 0.3872070312, -0.322265625, -0.4436035156, -0.4526367188, -0.859375, -0.9624023438, 0.5532226562, -0.0438842773, 0.0659790039, 0.2529296875, 0.2445068359, 0.0191955566, 0.1008911133, 0.0466003418, 0.82421875, 0.7158203125, 0.0428466797, -0.3916015625, -0.1466064453, -0.7465820312, -1.4091796875, 0.8388671875, -1.0439453125, -2.421875, -0.2817382812, 0.033203125, 0.6977539062, 0.4855957031, -0.2403564453, 1.11328125, -0.1188964844, 0.7822265625, -0.2580566406, -0.30859375, -0.1378173828, -0.7236328125, 0.5083007812, -0.1284179688, -0.7416992188, 0.6196289062, -0.609375, -0.6958007812, 0.0487976074, -0.6733398438, 0.751953125, 0.33203125, 0.8002929688, -0.3513183594, -0.5673828125, -0.6401367188, -0.0897216797, 0.0446166992, 0.4377441406, 0.2056884766, 0.69140625, -0.611328125, -0.6098632812, -0.6987304688, 0.1278076172, -0.0105133057, -0.9956054688, -0.2474365234, 0.0439758301, 0.0725708008, -1.0048828125, -0.089050293, -0.2507324219, -0.2739257812, -1.4404296875, 0.6127929688, -0.8149414062, 1.2421875, -0.5634765625, 0.892578125, 0.69921875, -1.7626953125, -0.0140304565, 0.1551513672, 0.310546875, -1.5595703125, -1.08984375, 0.0355834961, -0.6098632812, -0.4008789062, 0.6162109375, -0.2182617188, 0.0028438568, -0.65234375, -0.0387268066, -0.3996582031, -0.1634521484, 0.4973144531, 0.1153564453, 0.1087646484, 0.4626464844, -0.1383056641, -1.1943359375, -0.1685791016, -1.0263671875, -0.1928710938, 0.7392578125, -0.2546386719, -0.0155563354, 0.1440429688, 0.3051757812, 0.016494751, -0.6240234375, -0.6811523438, 0.5732421875, 0.296875, -1.4404296875, -0.0659790039, -1.8662109375, 0.4614257812, -0.3383789062, -0.2182617188, -0.2734375, 0.732421875, 0.7021484375, 0.1450195312, -0.1248168945, 0.8623046875, 0.4719238281, 0.2709960938, -0.3442382812, -0.4797363281, -0.9887695312, -0.3479003906, 0.6552734375, 0.4020996094, -0.5766601562, -0.1337890625, -0.61328125, 0.1967773438, -0.2858886719, -0.1106567383, 0.3388671875, 0.7465820312, 0.1459960938, -0.7719726562, -0.9409179688, 0.1737060547, -1.080078125, -0.25, -0.102722168, 0.3693847656, -0.8413085938, -0.1322021484, 0.220703125, 0.9716796875, -1.0908203125, -0.5473632812, 0.5444335938, -1.14453125, -0.0113677979, 0.3940429688, 0.0413513184, -0.4580078125, 1.033203125, -1.1337890625, 0.1275634766, -0.9287109375, 0.1788330078, -0.2993164062, 0.0922851562, -0.0043067932, 1.2783203125, 0.0953369141, -0.0106201172, 0.2258300781, -0.4836425781, 0.5815429688, -0.8325195312, -0.3649902344, -0.1036987305, -0.1423339844, -0.0013542175, -0.6499023438, 0.4499511719, 0.3959960938, -0.2814941406, 0.69921875, -0.3913574219, 0.3181152344, 0.2561035156, 0.1645507812, -0.5649414062, 0.56640625, 0.4658203125, 0.345703125, 0.0348815918, 0.98046875, 0.1282958984, -0.7119140625, -1.1240234375, 0.6689453125, 0.8715820312, -0.4182128906, 0.0903320312, -0.8193359375, 0.6723632812, 0.1641845703, -0.4675292969, -0.0086135864, 0.1959228516, 0.5439453125, 0.1591796875, 0.3962402344, -0.79296875, 0.2924804688, 0.6943359375, 0.2937011719, -0.1817626953, -0.3557128906, -0.0135955811, 0.6430664062, 0.5190429688, 0.1741943359, 0.25390625, 0.97265625, 0.1145629883, 0.5512695312, 0.26953125, -0.8671875, 0.1901855469, 0.978515625, -0.3303222656, 0.580078125, -0.1346435547, -0.0219726562, -0.1633300781, -0.2893066406, -1.033203125, 0.4226074219, -1.953125, -0.0584106445, 0.2634277344, 0.6064453125, 0.2668457031, -0.849609375, 0.0125579834, -0.0389709473, 0.1911621094, -0.0280609131, -0.6020507812, -1.330078125, 0.794921875, 0.9267578125, -0.3759765625, -0.5141601562, 0.1417236328, -0.0996704102, 0.1142578125, 0.1734619141, -0.4030761719, -0.0361022949, 0.0489807129, 0.498046875, 0.8334960938, -0.2941894531, 1.095703125, -0.3527832031, -0.6743164062, -1.4384765625, -0.0288543701, -1.171875, 0.1893310547, -0.6547851562, -0.2873535156, -0.0815429688, 0.2243652344, -0.3625488281, 0.1993408203, 0.7602539062, 0.44921875, -0.14453125, 0.0836791992, -0.9458007812, 1.140625, 0.9931640625, -0.83984375, 0.4174804688, 0.9619140625, 0.8666992188, -1.29296875, -0.421875, 0.451171875, 0.0182189941, -0.0550231934, 0.2021484375, 0.6586914062, 0.3081054688, 0.9233398438, 0.72265625, 0.0544433594, -0.094543457, 0.3391113281, 0.2648925781, -0.4206542969, -0.2548828125, -0.1232299805, 0.173828125, 0.2241210938, 1.2724609375, -0.8442382812, 0.9135742188, -0.3894042969, -0.7978515625, 0.361328125, 0.0852661133, -0.3120117188, -0.2280273438, 0.4982910156, -0.419921875, 0.1453857422, 0.982421875, 0.1544189453, 0.9267578125, -0.5209960938, -0.6625976562, -0.318359375, -0.3916015625, -0.978515625, 0.0940551758, 0.251953125, -0.2526855469, 0.5073242188, 0.6826171875, 0.2993164062, 0.2381591797, 0.4528808594, 0.0951538086, 0.2088623047, 0.4392089844, -0.8022460938, -0.2152099609, -0.8579101562, -0.9116210938, -1.0888671875, 1.986328125, 0.1530761719, 0.84765625, -1.0341796875, 0.74609375, -0.4123535156, 1.572265625, 0.3984375, 0.1077270508, 0.2465820312, -0.669921875, -0.7446289062, 1.2265625, 0.7836914062, 0.0123443604, 0.0379638672, -1.0771484375, -0.3737792969, -1.3076171875, 1.3037109375, -0.0662231445, 0.073425293, 0.6938476562, 0.4382324219, 0.208984375, 1.775390625, -0.4140625, 0.5903320312, 0.4191894531, 0.2170410156, -0.1557617188, 0.0578308105, 0.0153198242, 0.3623046875, 0.5756835938, 0.1364746094, 1.0029296875, -0.1263427734, -0.2556152344, 0.3208007812, 0.2266845703, -0.0151672363, -1.23828125, -1.048828125, -0.5307617188, -0.2277832031, 0.0897827148, -0.5102539062, -0.263671875, 0.400390625, -0.4233398438, -0.73828125, 0.1411132812, 0.8583984375, -0.2622070312, -0.5815429688, 0.8623046875, -0.0701904297, 0.0238952637, 0.5048828125, 0.7314453125, -0.0570983887, 0.4626464844, -0.6069335938, 0.744140625, 0.9614257812, 0.38671875, 0.81640625, 0.0578308105, 0.7978515625, -0.0702514648, 1.6865234375, -1.044921875, 0.576171875, 1.287109375, -1.541015625, 0.2985839844, -0.1665039062, -0.0426940918, -0.2575683594, -0.9404296875, 0.4279785156, -0.3862304688, -0.2866210938, -0.006111145, 0.6826171875, 0.0782470703, 0.1635742188, 0.8745117188, -0.4055175781, 0.513671875, 0.7846679688, 0.6538085938, 0.9868164062, -1.0634765625, -0.4177246094, -1.6923828125, 0.0436096191, 0.3647460938, 0.2624511719, -0.4436035156, 0.2299804688, 0.2110595703, -0.3041992188, -1.0634765625, -0.3647460938, 0.4604492188, -1.5498046875, -0.673828125, 0.0091552734, 0.5498046875, 0.02734375, 0.5483398438, 0.1912841797, -0.1784667969, 0.3015136719, 0.1728515625, -0.4392089844, -0.62109375, 0.0222320557, -0.0995483398, 1.966796875, -0.4162597656, -1.234375, -0.0692749023, 0.2131347656, 1.0107421875, 0.0961914062, 1.259765625, -0.0048217773, -0.8193359375, -0.2551269531, -0.7915039062, 0.671875, -0.0014762878, -1.5087890625, -0.4538574219, -0.3295898438, 0.7651367188, -0.0107269287, 0.3591308594, -0.4912109375, 0.4916992188, -0.7407226562, -0.771484375, 0.86328125, 0.1227416992, -0.4973144531, 0.25, 0.1158447266, 0.3859863281, 0.2332763672, 0.3088378906, -0.6123046875, -0.3479003906, 1.1865234375, -0.5883789062, -0.4064941406, -0.5654296875, -0.3947753906, 0.4965820312, -0.5546875, 0.1693115234, -0.2028808594, 0.6455078125, 0.3806152344, -0.2155761719, -0.052734375, 0.62890625, -0.7275390625, 0.4655761719, -0.2492675781, 1.4365234375, -0.685546875, -0.3039550781, -0.1224975586, 0.2946777344, 0.2575683594, -0.047088623, -0.013671875, -0.6123046875, -1.3310546875, 0.8876953125, 0.0786743164, 0.0114517212, -0.1688232422, -0.2912597656, 0.4343261719, -0.4799804688, -0.9296875, 0.7690429688, -0.6494140625, -0.3920898438, -0.2473144531, -0.1728515625, 0.7568359375, -0.8041992188, -0.2717285156, -0.7866210938, 0.4279785156, -0.85546875, -0.7622070312, -0.5571289062, -0.1666259766, -0.6469726562, -0.513671875, -0.0758056641, -0.2761230469, 0.4274902344, 0.7119140625, -0.4702148438, -0.453125, -0.0138397217, 0.6357421875, 0.5390625, 0.0888671875, -0.4541015625, -1.1875, 0.6279296875, 0.7387695312, 0.52734375, -0.0440063477, -0.3107910156, 0.2834472656, -0.478515625, -0.2570800781, 0.6181640625, 1.443359375, 0.0836181641, -0.5146484375, 0.4189453125, 1.5986328125, 1.19140625, -0.1890869141, -0.529296875, -0.1906738281, 0.3449707031, 0.5517578125, 0.7387695312, -1.185546875, -0.4853515625, 0.39453125, -0.0236053467, -0.8583984375, 0.1805419922, -0.3859863281, 0.6127929688, 0.0561218262, -0.3542480469, -0.2546386719, 0.0686645508, 0.0845336914, -0.796875, 0.6586914062, 0.2944335938, -0.1655273438, 0.9091796875, -0.3989257812, -0.4221191406, -0.0493774414, -0.3076171875, -0.0364685059, 1.02734375, 1.0859375, 1.15234375, 0.1098022461, -0.3449707031, -0.0738525391, 0.4057617188, 0.6962890625, -0.1832275391, 0.3332519531, 0.1977539062, -1.30859375, -0.4030761719, -0.5766601562, 0.4406738281, 0.3203125, 0.4973144531, -0.1864013672, -0.005065918, -0.2094726562, -0.6044921875, -0.0933227539, 0.1235351562, 0.1475830078, -0.2341308594, 0.189453125, -0.4711914062, 0.5673828125, 0.7084960938, -0.117980957, -0.4521484375, 0.2819824219, 1.53125, 0.2087402344, 1.3564453125, -0.6591796875, 0.9521484375, 1.068359375, 0.2934570312, -0.4543457031, -0.2103271484, -0.2385253906, -0.2082519531, -0.4855957031, 0.4445800781, -0.2592773438, -0.7041015625, -0.2052001953, 1.337890625, -0.3381347656, -0.4243164062, 1.2890625, 0.9130859375, 0.416015625, -0.0667724609, 0.1717529297, 0.2724609375, 0.4919433594, -0.4069824219, 0.41015625, -0.8671875, -0.794921875, 0.2705078125, -0.888671875, -0.375, 0.1148681641, 0.6220703125, 0.1077270508, -0.3410644531, -0.2905273438, 0.0092163086, 0.3825683594, -0.7993164062, 0.6328125, -0.103515625, -0.7275390625, -0.060760498, -0.4072265625, -0.8530273438, 0.2634277344, 0.6962890625, -1.50390625, -0.6586914062, -0.5014648438, 1.09375, 0.3000488281, -0.2200927734, 0.5537109375, -0.9287109375, -0.8896484375, -0.9658203125, -0.4206542969, -0.6196289062, -0.8696289062, -0.1215209961, -0.1052856445, -0.8403320312, 0.1076660156, 0.625, 1.0029296875, -0.5034179688, -0.1022949219, -0.8330078125, 0.61328125, -0.5473632812, 0.0167388916, -0.5922851562, 0.4934082031, 1.0693359375, -1.59765625, 0.984375, -0.71875, -1.0703125, 0.4172363281, 0.2106933594, -0.0769042969, -0.2099609375, 0.908203125, -0.0869140625, 0.93359375, 0.2023925781, -0.4438476562, -0.609375, 0.3347167969, -0.998046875, 0.5190429688, -0.5166015625, -0.7265625, 0.453125, 0.98828125, 0.0869140625, -0.3583984375, 1.052734375, -0.2722167969, 0.1898193359, -1.4228515625, -0.1244506836, 0.2349853516, -0.75, 0.1081542969, 0.2971191406, -0.0612487793, -0.1176757812, -0.6508789062, 0.3564453125, 0.3520507812, -1.109375, 0.7861328125, 0.0941162109, -0.8461914062, -0.3923339844, -0.7431640625, 0.039642334, -1.2705078125, -0.5649414062, 0.6254882812, 0.1165161133, -0.4262695312, 0.1346435547, 0.255859375, -0.9682617188, 0.5864257812, -0.0133209229, 0.8798828125, 0.0440979004, 1.404296875, -0.9345703125, 0.9204101562, 0.8671875, -0.0645141602, 0.2548828125, -0.85546875, -0.7607421875, 0.2183837891, -1.7705078125, 0.2719726562, -0.0824584961, -0.2697753906, 0.6372070312, 0.8461914062, -0.1779785156, 0.7827148438, 0.8588867188, -0.369140625, 0.0101242065, 0.2214355469, -0.1343994141, 0.85546875, 0.2690429688, -1.099609375, 0.0677490234, 0.1208496094, 0.3168945312, -0.3205566406, 0.1030883789, -0.37890625, -0.556640625, -0.1574707031, -0.2858886719, -0.3540039062, -0.1348876953, -0.4135742188, 0.4150390625, -0.5834960938, -0.1687011719, -0.4614257812, -0.3537597656, -0.2440185547, 1.076171875, -0.2197265625, 1.0849609375, 0.3962402344, 0.1058349609, -0.525390625, 0.0207824707, 0.0977172852, -0.1027832031, 0.62109375, 0.0568847656, -0.4997558594, 0.1688232422, 0.0200500488, 0.814453125, 0.051361084, 0.4929199219, 0.1416015625, -0.4069824219, -1.0302734375, -12.6015625, 0.0525817871, 1.2431640625, -0.3608398438, 0.0852050781, -0.3088378906, -0.1466064453, -2.013671875, -0.2393798828, -0.630859375, 0.6484375, 1.8310546875, -0.6362304688, 0.0028400421, -0.0968017578, -0.71484375, -0.0197296143, -0.5151367188, -0.3708496094, 0.4782714844, 0.2844238281, 0.8505859375, -0.9565429688, -0.3813476562, 0.2010498047, 0.0011892319, 0.4934082031, 0.7734375, 0.0356445312, -1.1904296875, 0.1423339844, -1.0322265625, -0.1944580078, 0.6772460938, -0.0634155273, 0.0045204163, 0.34765625, -0.2807617188, -0.888671875, -0.1303710938, 0.5190429688, -0.9575195312, 0.1134643555, 0.5102539062, -0.1265869141, -0.0765991211, -0.1417236328, 0.3842773438, -0.0271759033, 0.2237548828, 0.6821289062, 0.9584960938, 0.3259277344, 0.5400390625, 0.3911132812, -0.1171875, 0.9067382812, -0.1149902344, -0.51953125, -0.0737915039, 0.0871582031, 1.4228515625, 0.1807861328, -0.5, -0.72265625, -0.0958862305, -0.1502685547, -1.27734375, 1.0302734375, -0.5283203125, 1.181640625, -1.1494140625, 0.5087890625, -0.2817382812, -0.4147949219, 0.216796875, -0.3540039062, -0.7373046875, 0.1231079102, 0.1645507812, -0.3999023438, -0.5375976562 ]
On April 9, 2007, a fire broke out on Arktika. The fire caused minor damage to three cabins and knocked out an electricity-distribution panel. The nuclear reactor was not damaged. There were no injuries. The icebreaker was in the Kara Sea when the blaze erupted, and was sent to Murmansk. Withdrawal After 33 years of reliable icebreaking, having become the first surface ship to reach the North Pole in 1977, and the first civilian ship to spend more than a year at sea without making port in 2000, and covering more than a million nautical miles by 2005, Arktika was retired in October 2008. She is docked at Atomflot, the nuclear base and dock in Murmansk, away from the main docks, where she will remain until policies can be drawn up to dismantle her. In the meantime, she is a subject of important research, focused mainly on how to further extend the service life of the other Arktika-class icebreakers. There have been calls for the ship to be converted to a museum, either in Murmansk or St. Petersburg. An earlier Soviet nuclear icebreaker, Lenin, is already a museum ship in Murmansk. Gallery References External links 1972 ships Icebreakers of Russia Icebreakers of the Soviet Union Nuclear-powered icebreakers Ships built at the Baltic Shipyard North Pole
[ 0.1950683594, 0.3161621094, 0.0709228516, 0.1297607422, -0.0236206055, 1.3271484375, -0.4753417969, -0.3129882812, 0.3171386719, -0.5625, -0.51953125, -0.1273193359, -0.51953125, 1.1455078125, -0.2697753906, 1.4052734375, -0.3706054688, -0.3735351562, -0.1940917969, 0.0690307617, -0.63671875, -0.5180664062, -0.3386230469, -0.8740234375, -0.7666015625, -0.3723144531, -0.7973632812, -0.1760253906, -1.46875, -0.72265625, 0.384765625, 0.9858398438, 0.5043945312, -0.1138305664, -0.8129882812, -0.2247314453, -0.8427734375, 1.041015625, -0.1192016602, -0.1569824219, -0.0525817871, -0.2198486328, 0.4060058594, -0.8779296875, 0.3767089844, -0.6000976562, 0.1416015625, -0.5458984375, -1.005859375, 0.4519042969, -0.7514648438, 0.8325195312, 0.1907958984, -0.4311523438, 0.5317382812, -0.537109375, -0.857421875, -1.3349609375, 0.0604858398, 0.5395507812, -0.1232299805, 0.9033203125, -1.5380859375, -0.5415039062, 0.2261962891, 1.0859375, 1.2978515625, -0.4458007812, -0.0444030762, 0.3562011719, -0.1978759766, -0.6245117188, 0.4050292969, 0.1480712891, -0.3095703125, 0.0267181396, -0.5336914062, 0.849609375, -0.0328369141, -0.1788330078, -0.0257873535, 0.5659179688, -0.7373046875, -0.6088867188, -1.173828125, 0.9868164062, -0.5913085938, -0.8383789062, 0.2145996094, 1.2880859375, 0.4345703125, -0.6010742188, -1.046875, 0.2849121094, 0.140625, -0.8071289062, -0.94140625, -1.26953125, -0.4033203125, 0.2639160156, 1.177734375, -0.6303710938, 1.0556640625, 0.31640625, -0.6533203125, 1.2158203125, 0.0511474609, -0.6860351562, -0.6831054688, -1.48046875, -0.0104370117, 0.6015625, 0.6967773438, -0.048828125, -0.8930664062, -0.1700439453, -0.8291015625, -0.8266601562, -0.6743164062, 0.5053710938, -0.2585449219, 0.2741699219, 0.9848632812, -0.2203369141, 0.1932373047, -0.0931396484, 0.0639038086, 0.8198242188, 0.4548339844, 0.0631103516, -0.1549072266, -0.1566162109, -0.3447265625, -1.1328125, 1.3193359375, -0.1851806641, -1.5986328125, 0.0782470703, -0.2462158203, 1.0166015625, 0.0913696289, -0.3754882812, 1.224609375, -0.771484375, 0.263671875, 0.0723266602, -0.0874633789, 0.4963378906, -0.9208984375, 0.3032226562, -0.2198486328, 0.1920166016, 0.2022705078, -0.0048980713, 0.0599365234, 0.0348510742, 0.056427002, 0.8793945312, 0.9038085938, 0.5317382812, -0.2303466797, -0.3393554688, -0.3940429688, -0.4470214844, 0.3012695312, 0.4001464844, 0.0600891113, 1.2109375, -0.4833984375, -0.2081298828, -0.8715820312, -0.0233306885, 0.7377929688, -0.6948242188, 0.5390625, 0.3491210938, 0.1486816406, -1.58203125, 0.2912597656, -0.4323730469, 0.33203125, -0.1788330078, 0.3662109375, -0.3337402344, 0.3176269531, -1.486328125, 0.697265625, -0.1716308594, -1.6474609375, 0.0840454102, -0.560546875, -0.814453125, -1.0419921875, -0.2310791016, -0.3862304688, -0.9956054688, -0.8134765625, 0.453125, 0.8129882812, -0.1993408203, -1.1064453125, -0.2069091797, -0.4880371094, 0.1150512695, 0.5576171875, 0.8823242188, -0.0212097168, 0.0704956055, -0.6865234375, -0.3645019531, -0.0263366699, -1.2021484375, 0.5854492188, 0.375, -0.2125244141, -0.2692871094, -0.2592773438, -0.0871582031, 0.3012695312, -0.2376708984, -0.0693969727, 0.2086181641, 0.806640625, -1.447265625, -0.2368164062, -0.5234375, -0.0229644775, -0.2575683594, -0.7602539062, -0.2944335938, 0.3322753906, 0.7563476562, 0.3840332031, 0.3740234375, 0.2489013672, 0.0616760254, -0.0841674805, -0.1573486328, -0.6235351562, -1.5966796875, -1.0029296875, 0.5112304688, 0.5634765625, 0.0550537109, -0.1402587891, -0.921875, 0.1245117188, 0.3786621094, -0.2122802734, 0.4660644531, 0.5498046875, 0.1916503906, -0.65234375, -1.4599609375, 0.0161743164, -1.064453125, 0.1586914062, -0.72265625, 0.5327148438, 0.1014404297, -0.2387695312, 0.3049316406, 1.0283203125, -0.6728515625, -0.4624023438, 0.705078125, -0.4689941406, 0.1143798828, 0.079284668, -0.3833007812, -0.7690429688, 1.2421875, 0.5541992188, 0.2403564453, -1.1162109375, -0.0564880371, -0.0926513672, -0.0053520203, 0.3161621094, 0.3981933594, 0.2214355469, 0.87109375, -0.4111328125, -0.3591308594, -0.3178710938, -0.3745117188, -0.42578125, 0.2165527344, 0.2476806641, 0.94921875, -0.5424804688, 0.6396484375, 0.61328125, -1.0205078125, 1.029296875, -0.0191345215, 0.0296936035, 0.7348632812, -0.0110855103, -0.0011339188, 0.3452148438, 0.1516113281, -0.65625, -0.0215759277, 1.4150390625, 0.1885986328, -0.029083252, -0.7275390625, 1.5087890625, 0.5205078125, -0.6279296875, 0.2673339844, -0.1770019531, 0.5014648438, 0.1029052734, -0.4809570312, 0.5874023438, -0.1785888672, 0.3850097656, 0.1378173828, 0.3413085938, 0.0767822266, 0.607421875, 0.3188476562, 0.2413330078, -0.1904296875, 0.1005249023, -0.5043945312, 0.6596679688, 0.4174804688, -0.265625, 0.0419006348, 1.2548828125, -0.2883300781, 0.4946289062, 0.4731445312, -0.3635253906, 0.5112304688, 1.4580078125, -0.1561279297, 0.0429077148, -0.1120605469, -0.6147460938, 0.7290039062, -0.384765625, -1.4619140625, 0.6586914062, -1.6552734375, -0.5942382812, 0.0897827148, -0.3508300781, -0.1925048828, -0.470703125, -0.7651367188, -0.0372009277, 0.0577697754, 0.0445861816, -1.099609375, -1.224609375, 0.7250976562, 0.1068115234, -0.45703125, -0.2861328125, -0.2080078125, -0.4382324219, -0.2958984375, 0.0322875977, 0.073425293, 0.0442504883, -1.2607421875, 0.0393676758, 1.015625, -0.0570068359, 0.7192382812, 1.119140625, -0.5668945312, -1.1787109375, -0.1607666016, -0.7568359375, 0.076965332, -0.4619140625, -0.1568603516, -0.2041015625, 0.673828125, -0.0690917969, 0.2802734375, 0.4956054688, 0.4470214844, 0.3427734375, 0.259765625, -0.833984375, 1.369140625, 0.78125, -1.9033203125, -0.0903320312, 0.5581054688, 0.2456054688, -1.9775390625, -0.3295898438, -0.4379882812, -0.0191192627, -0.7016601562, -0.3674316406, 0.7158203125, -0.0789794922, -0.3513183594, 0.4748535156, 0.2176513672, -0.4602050781, 0.1921386719, 0.0036697388, 0.2452392578, -0.4865722656, -0.4614257812, -0.5483398438, 0.4416503906, 0.3837890625, -0.0437316895, 0.1336669922, -0.2094726562, -0.8686523438, -0.501953125, 0.5751953125, -0.6811523438, -1.0576171875, 1.1826171875, -0.2064208984, -0.0779418945, 0.484375, 0.92578125, 0.1143188477, 1.1240234375, -0.1535644531, -0.2873535156, -0.3732910156, 0.3850097656, 0.0360412598, -0.0731811523, 0.6083984375, -0.0724487305, 0.7700195312, 0.4538574219, -0.296875, 0.296875, 0.2183837891, -0.0663452148, 0.5590820312, 0.1403808594, -0.9375, -0.2878417969, 0.306640625, -2.00390625, 0.2229003906, 1.10546875, 0.5942382812, -0.974609375, 0.1882324219, 0.1641845703, 0.9111328125, 0.9565429688, 0.1265869141, 0.0272827148, -0.5791015625, -0.5908203125, 0.9111328125, 0.5107421875, 0.1185302734, -0.6176757812, -0.9028320312, 0.5615234375, -0.5678710938, 1.54296875, -0.69921875, 0.2170410156, 0.9877929688, 0.0420532227, 0.6215820312, 0.4604492188, -0.5942382812, 1.5166015625, 0.5590820312, -0.1268310547, -0.4675292969, -0.2687988281, -0.0278167725, 0.064453125, 0.7958984375, 0.3068847656, 0.8994140625, -0.1673583984, 0.4663085938, 0.0459289551, 0.2381591797, -0.755859375, -0.9682617188, 0.1673583984, 0.5268554688, 0.2690429688, 0.7172851562, -0.3647460938, 0.2915039062, 0.6245117188, -0.2009277344, 0.4497070312, -0.607421875, 0.6298828125, 0.1982421875, -0.0015258789, 1.064453125, -0.1478271484, 0.1909179688, 0.2895507812, 0.1115112305, 0.9140625, 0.2829589844, -0.6474609375, -0.0379638672, 0.7104492188, 0.4990234375, 1.2744140625, -0.3735351562, 0.1942138672, -0.505859375, 1.69140625, -1.767578125, 0.4431152344, 0.8715820312, -0.8032226562, -0.607421875, -0.1712646484, -1.2412109375, 0.2344970703, -0.5239257812, 0.9682617188, -0.6284179688, -0.7236328125, 0.054107666, -0.25, -0.3684082031, 0.1484375, 0.0989379883, 0.1815185547, -0.5048828125, -0.4240722656, 0.0561218262, 0.5356445312, -0.0787353516, -1.12890625, -0.9125976562, -0.4528808594, 0.8413085938, 0.400390625, -1.1083984375, 0.5830078125, -0.0203857422, -0.1303710938, -0.408203125, -0.4426269531, 0.2209472656, -1.3505859375, -0.4672851562, -0.2003173828, 0.6904296875, 0.5791015625, 0.4594726562, 0.1215820312, -0.2375488281, -0.2022705078, -0.1573486328, -1.2041015625, -0.5961914062, -0.1579589844, 0.1096191406, 2.45703125, -0.3715820312, -0.7172851562, -0.328125, 1.1484375, 0.9560546875, -0.3376464844, 1.2958984375, 0.4272460938, -0.2856445312, -0.6430664062, -0.3930664062, 0.3933105469, -0.4028320312, -0.65234375, -0.4353027344, -0.611328125, 0.3349609375, 0.1395263672, 0.4165039062, 0.2749023438, 0.7329101562, -0.599609375, -0.3562011719, 0.9321289062, 0.2052001953, -0.2951660156, 0.3896484375, 0.1771240234, 0.2097167969, 0.1204223633, 0.0128936768, -0.8544921875, 0.7475585938, 0.8354492188, -0.58984375, -0.9262695312, 0.0988769531, -0.5053710938, 0.1968994141, -0.9404296875, 0.89453125, -0.7705078125, 1.2607421875, 0.2556152344, -0.1798095703, 0.2646484375, 0.8603515625, -0.3532714844, -0.0733032227, 0.0289154053, 0.8056640625, -0.8549804688, -0.142578125, 0.228515625, -0.1751708984, -0.6552734375, 0.4448242188, 0.0213775635, -0.3491210938, -0.6508789062, 0.6245117188, -0.0729980469, -0.2498779297, -0.9096679688, -0.6538085938, 0.4084472656, 0.62890625, -1.2900390625, 0.1436767578, -0.6669921875, -0.4682617188, 0.7895507812, 0.2937011719, 0.5205078125, -0.3193359375, -0.5629882812, -0.2905273438, -0.1531982422, -0.9790039062, -0.4494628906, -0.3586425781, 0.4211425781, -0.6967773438, -0.853515625, 0.0972900391, 0.0398254395, -0.26953125, 0.0458374023, -0.6069335938, -0.1811523438, -0.1776123047, 0.5278320312, 0.1102905273, 0.2712402344, -0.2770996094, -1.0390625, 0.869140625, 0.3017578125, 0.9194335938, -0.102722168, 0.4858398438, 0.0972900391, -0.642578125, -0.5961914062, -0.0736694336, 0.2963867188, 0.4545898438, -1.025390625, 0.7265625, 1.4541015625, 1.0771484375, 0.1898193359, -0.3823242188, 0.4223632812, -0.8544921875, -0.15625, 0.3366699219, -1.4365234375, -0.1395263672, 0.5, 0.0938110352, -1.134765625, -0.2915039062, 0.2141113281, 0.380859375, 0.6357421875, -0.3239746094, -0.8247070312, 0.0590515137, 0.3586425781, -1.953125, 0.8334960938, 0.1977539062, -0.5307617188, 0.7875976562, -0.5317382812, -1.2939453125, 0.2001953125, -0.2390136719, 0.759765625, 0.7431640625, 0.822265625, 0.806640625, -0.0035266876, -0.666015625, -0.6669921875, -0.3715820312, -0.0411987305, -0.2724609375, 0.1446533203, -0.6772460938, -0.8432617188, -0.5439453125, -1.0654296875, -0.0169830322, -0.0369567871, 0.4650878906, -0.3195800781, -0.1489257812, 0.8530273438, -0.092590332, 0.7065429688, -0.6762695312, -0.1590576172, -0.7451171875, 0.6025390625, -0.7084960938, 0.0240478516, 0.4641113281, 0.6801757812, 0.0454101562, 0.3984375, 1.171875, 0.775390625, 0.7993164062, -0.1861572266, 0.7744140625, 0.3459472656, -0.6606445312, -0.8110351562, -0.7133789062, -0.9389648438, 0.3891601562, -0.5068359375, 0.3330078125, -0.3312988281, -0.3310546875, 0.3991699219, 1.1181640625, -0.6748046875, 0.5908203125, 1.109375, 0.2131347656, 0.7705078125, -0.3110351562, -0.6640625, 1.013671875, 0.1359863281, -0.4421386719, 0.7607421875, -0.9013671875, 0.0680541992, 0.2858886719, -0.8896484375, 0.3500976562, 0.5698242188, -0.0603942871, 0.0082702637, 0.1525878906, 0.5014648438, -0.4599609375, 0.5112304688, 0.5439453125, 0.4643554688, 0.0631713867, -0.1093139648, 0.0334777832, 0.1221313477, -0.5048828125, 0.2045898438, 0.4138183594, -1.47265625, -1.0673828125, 0.0665283203, 0.0685424805, 0.8911132812, -1.177734375, 0.3957519531, -1.17578125, -1.3740234375, -0.1995849609, -1.01953125, 0.060333252, -0.3349609375, -0.4301757812, -0.8706054688, -0.9926757812, 0.0332641602, 0.0712280273, 0.8920898438, -0.880859375, -0.3181152344, -0.6572265625, 0.9653320312, -0.525390625, 0.19921875, -0.2565917969, 0.9931640625, 0.5615234375, -1.2431640625, 1.255859375, 0.4440917969, -0.6655273438, 0.8125, 0.486328125, 0.0755615234, -1.099609375, 0.87890625, -0.1608886719, 0.603515625, 0.3559570312, -0.841796875, 0.0506896973, -0.0926513672, 0.1614990234, -0.3034667969, -0.98828125, -0.47265625, 0.2222900391, 0.9853515625, 0.4396972656, -0.4848632812, 0.26953125, 0.063659668, 0.3798828125, -0.9877929688, -0.1949462891, 0.0675048828, -0.333984375, 0.7431640625, 0.2919921875, 0.0098876953, -0.0718994141, -0.8588867188, 0.7065429688, 0.1733398438, -0.3542480469, 0.822265625, 0.2381591797, -0.693359375, -0.2944335938, -0.3408203125, -0.6635742188, -1.2763671875, -1.0498046875, 1.3583984375, 0.2648925781, 0.341796875, -0.3100585938, 0.3447265625, -0.6323242188, 0.7314453125, 0.53125, 0.5209960938, -0.0395507812, 1.677734375, 0.4291992188, 1.34765625, -0.123046875, -0.3881835938, 0.1424560547, -0.6450195312, -0.5083007812, -0.37109375, -0.8422851562, 0.9545898438, 0.607421875, -0.4604492188, -0.33203125, 0.2707519531, -0.1713867188, 0.9858398438, 0.9208984375, -0.4946289062, -0.0393676758, 0.5361328125, -0.2109375, 0.3093261719, 0.2956542969, -0.9506835938, -0.3410644531, 0.1212768555, 0.431640625, 0.0692138672, 0.4812011719, -0.0342407227, 0.1481933594, 0.3520507812, -0.0068092346, 0.0848388672, -1.08984375, -0.4448242188, -0.705078125, -0.2797851562, 0.2946777344, -0.2081298828, -0.392578125, 0.1713867188, 0.705078125, -0.0883789062, 1.15625, 0.9086914062, -0.107421875, -0.2575683594, -0.3142089844, -1.115234375, -0.3095703125, 0.1696777344, -0.3586425781, -0.7456054688, -0.0292816162, 0.0940551758, 0.8271484375, 0.2504882812, 0.3754882812, 0.1340332031, 0.0786743164, -1.263671875, -12.734375, 0.2697753906, 0.931640625, -0.3427734375, -0.2983398438, 0.0019178391, 0.1200561523, -1.3720703125, -0.0552368164, -0.4660644531, 0.2216796875, 0.6025390625, -0.6611328125, -1.1171875, 0.2108154297, -1.146484375, 0.0158996582, 0.0676269531, -0.6767578125, 0.0029697418, 0.1456298828, 0.8256835938, -0.9321289062, -0.0950317383, 0.8984375, -0.71875, 0.1591796875, 1.021484375, 0.3852539062, -0.5522460938, -0.4436035156, -1.271484375, 0.1638183594, 0.9936523438, -0.4392089844, 0.0185241699, 0.6020507812, 0.2419433594, -0.8154296875, -0.1104125977, 0.6708984375, -0.2404785156, 0.0405578613, 0.9458007812, -0.8383789062, 0.8559570312, -0.5600585938, -0.2227783203, 0.6713867188, 0.2374267578, 1.1474609375, 1.3583984375, 0.4265136719, 0.482421875, 0.3107910156, 0.0252075195, 0.193359375, -0.5234375, 0.1302490234, -0.6342773438, 0.0778198242, 0.8203125, 0.2661132812, -0.4074707031, -0.3803710938, -0.0544128418, -0.0447692871, -1.01953125, 1.1298828125, -0.513671875, 0.4233398438, -1.5908203125, -0.6850585938, -0.7866210938, -0.1018066406, 0.5297851562, -0.5102539062, -0.9506835938, 0.8916015625, 0.1140136719, 0.1249389648, -0.3386230469 ]
Bing for mobile (formerly Live Search Mobile) is a search tool for handheld mobile devices from Microsoft as part of their Bing search engine. It is designed for mobile device displays. Bing Mobile is built into Windows Mobile and Windows Phone as proprietary software, accessed via the Search key on Windows Phone 7 and Windows Phone 8 devices. It is also available on Windows Phone 8.1 (and integrated with Microsoft Cortana where available), and can be downloaded for other platforms, including and Android. Windows Phone With the launch of Windows Phone, the new operating system included the Bing Hub, a centralised hub for contextual web searches and Bing Maps for navigation built-in which gained some additional features such as showing users real-time traffic updates, street-view photos, 3D graphics, and directions. To make Windows Phone hardware more uniform Microsoft requires all Windows Phones feature a dedicated "Search button" that opens up Bing Mobile. With Windows Phone 7.5, the first major update to Windows Phone Microsoft included several new features to the Bing Hub including the new Bing Vision application that allows users to scan QR Codes, books, price tags, and various other items but unlike Google Goggles, can not scan any object due to its limited functionality, other than scanning objects Bing Vision comes with a built-in version of the Bing Translator that can scan texts and translate it into the phone's language, Engadget did a test they scanned the back cover a book and it only picked up about 90 percent of the words in the summary after the text was found, Bing Vision's translation feature supports 26 languages.
[ 0.0050544739, -0.8037109375, -0.6826171875, -0.041015625, -0.3271484375, -0.0810546875, -0.4831542969, -0.9663085938, 0.9560546875, 0.3869628906, 0.3259277344, 0.1188354492, 0.3666992188, 0.3500976562, -0.7993164062, 0.5483398438, -0.0762329102, -0.3361816406, 1.0068359375, -0.0935058594, -0.1571044922, 0.0549926758, 0.0958862305, -1.3310546875, 1.0927734375, 0.1676025391, -0.4865722656, 0.5834960938, -1.1298828125, -0.1281738281, 1.349609375, -0.0189819336, -1.0634765625, 0.9799804688, -0.0574645996, 0.7778320312, -1.1064453125, 0.546875, -0.0066261292, 0.0262756348, -0.28515625, 0.6298828125, -0.2126464844, -0.443359375, 0.8383789062, 0.0983276367, 0.693359375, 0.86328125, -0.3752441406, 0.5698242188, -1.4228515625, 0.8090820312, 0.3134765625, -0.3293457031, -0.0140380859, 0.220703125, 0.4545898438, -1.3134765625, 0.1516113281, 0.2861328125, -0.5693359375, 0.7739257812, -0.73046875, -0.3723144531, 0.5810546875, 0.5302734375, 0.1655273438, -0.1228027344, -0.8110351562, 0.026260376, 0.9296875, 0.5434570312, -0.1285400391, -0.5439453125, 0.7661132812, 0.435546875, -0.572265625, 0.1080322266, 0.1607666016, 0.4973144531, -0.5673828125, 0.2712402344, -0.0302276611, 0.9194335938, -0.5375976562, -0.3178710938, -0.83203125, -0.966796875, 0.3642578125, 0.2291259766, 0.0747070312, 0.3989257812, 0.6059570312, -0.3200683594, -0.5302734375, 0.5244140625, 0.0389709473, 0.689453125, -0.6665039062, -0.2944335938, 1.30859375, -0.1904296875, -0.3876953125, -0.0863037109, 1.115234375, 0.1085205078, 0.1693115234, 0.6376953125, 0.0127487183, 0.3625488281, -0.0975952148, 0.3432617188, -0.166015625, 1.0927734375, -0.8828125, 0.2966308594, 0.3752441406, -0.7954101562, -0.2393798828, 1.2001953125, -0.1591796875, -0.5903320312, 0.3190917969, -0.62890625, -0.4479980469, 0.1973876953, -0.1563720703, 0.642578125, 0.1525878906, 1.12109375, -0.7333984375, -0.6147460938, -0.3083496094, 0.4379882812, 0.3325195312, 0.0620727539, -0.3344726562, 0.9497070312, 0.1149902344, 0.2481689453, -0.2430419922, -0.1715087891, 0.2071533203, -1.1259765625, 0.5258789062, 1.0009765625, -0.5678710938, 0.9125976562, 0.3542480469, 0.7333984375, -1.587890625, 0.3718261719, -0.1536865234, 0.0585021973, 1.0673828125, 0.7392578125, -0.1950683594, -0.0040016174, -0.6162109375, -0.4663085938, -0.5263671875, -1.2197265625, 0.1778564453, 0.1088867188, 0.42578125, -0.0627441406, -0.1695556641, 1.083984375, 0.9111328125, -0.8046875, -0.892578125, -0.2459716797, -0.7607421875, -0.1496582031, 0.1013183594, 0.0495910645, 0.4230957031, -0.1214599609, -0.0537109375, -0.943359375, -1.0849609375, 0.1237182617, -0.2797851562, -0.7138671875, -0.1516113281, 0.1045532227, 0.5053710938, -0.1478271484, -0.2834472656, -0.6298828125, -0.1267089844, 0.0311889648, -0.7915039062, -0.2651367188, 0.330078125, 0.0938720703, -1.060546875, 0.1373291016, -0.6728515625, -0.2281494141, 0.2283935547, -0.0927124023, 0.1262207031, 0.1244506836, 0.2395019531, 0.6845703125, -0.0955200195, 0.3186035156, 0.5463867188, -0.4140625, 0.0401306152, 0.6015625, -0.0085220337, 0.8803710938, -0.4333496094, -0.2030029297, -1.0537109375, -1.1455078125, 0.912109375, 0.3786621094, 0.6040039062, 1.0244140625, -0.7504882812, -0.669921875, -0.035369873, -1.5302734375, 0.5034179688, 0.6889648438, -0.5166015625, -0.3630371094, 0.728515625, -0.0395507812, 0.1622314453, 0.3312988281, -0.0197143555, 0.1856689453, -0.2692871094, -0.0209655762, -0.5419921875, 0.0324401855, -0.8359375, 0.0079345703, 0.5493164062, 0.1324462891, 0.3767089844, -0.3010253906, -0.6362304688, -0.9755859375, 0.1409912109, -0.0385742188, 0.1535644531, -0.3686523438, 0.2166748047, -0.5620117188, -0.6254882812, -0.8647460938, 0.9487304688, -0.2849121094, 0.0872192383, -0.462890625, -0.4489746094, 0.5703125, 0.9111328125, -0.1903076172, 0.3681640625, 0.1259765625, -0.1560058594, -1.0576171875, 0.1313476562, -0.0754394531, 0.1012573242, -0.8383789062, -0.0541381836, 1.060546875, -0.193359375, 0.075012207, -0.2666015625, -0.3984375, -0.0324401855, 0.3327636719, 0.3303222656, 0.822265625, -0.2807617188, -0.0521850586, 0.0360412598, 0.779296875, -1.048828125, 0.5024414062, -0.3579101562, 0.50390625, -0.1625976562, -0.9125976562, -0.4389648438, -1.0029296875, 1.71484375, 0.6137695312, 0.8232421875, 1.3427734375, 0.2563476562, 0.3962402344, 0.3200683594, 0.0626220703, -0.4060058594, -0.7216796875, 1.2236328125, 1.4677734375, 0.71484375, -1.349609375, -0.6743164062, 0.5532226562, -0.4909667969, 0.4147949219, -0.8725585938, 0.2408447266, -1.744140625, -0.3513183594, -0.2797851562, -1.314453125, -1.158203125, 0.8325195312, 0.6669921875, -0.0670776367, 1.140625, -0.4138183594, -1.1201171875, 0.6669921875, 0.1595458984, -0.7651367188, 0.2355957031, -0.0117721558, 0.4204101562, -0.5375976562, 0.681640625, 0.1137084961, -0.2171630859, -0.2858886719, -0.1390380859, -0.2524414062, -0.3471679688, -0.6176757812, -0.4035644531, -0.2634277344, 0.0639038086, 0.546875, 0.5869140625, 0.1806640625, -1.1884765625, -0.462890625, -0.9482421875, -0.5668945312, -0.3591308594, -0.3913574219, -0.2609863281, -1.1767578125, -0.3637695312, -0.712890625, 0.2114257812, 0.0869750977, -1.1728515625, 1.1142578125, 0.1883544922, 0.068359375, -0.849609375, 0.6293945312, -0.1174316406, 0.4372558594, 0.0399475098, 0.7192382812, -0.8618164062, 0.703125, 0.0996704102, 0.4301757812, -0.6840820312, -0.1802978516, 0.71875, 0.5043945312, 0.6684570312, -0.1306152344, -0.3916015625, 0.1655273438, 0.3979492188, -0.1149291992, -0.3930664062, -0.4533691406, 0.892578125, 1.1689453125, -0.2076416016, -0.1879882812, -0.039276123, 0.1115722656, -0.5122070312, 0.6762695312, 0.1486816406, 0.4167480469, -0.3759765625, 0.1881103516, -0.5952148438, -0.0410461426, -0.1887207031, 0.5493164062, 0.4699707031, -0.4956054688, -1.072265625, 0.0314941406, -1.3525390625, 0.3081054688, 0.9702148438, -0.1916503906, 0.7680664062, 0.5698242188, 0.646484375, 0.2130126953, 0.5014648438, -0.591796875, -0.0419616699, -0.4206542969, -0.2565917969, -0.09765625, -0.4184570312, 0.1436767578, -0.6557617188, -0.515625, 0.8002929688, -0.0121536255, -1.1376953125, 0.1650390625, 0.1090698242, -0.5537109375, 0.5561523438, -0.564453125, -0.4914550781, 1.4541015625, 0.326171875, 0.2661132812, -0.951171875, 0.90625, 0.0487365723, 0.8110351562, 0.0811767578, -0.1826171875, 0.2954101562, 0.7475585938, 0.0091171265, -0.5307617188, -0.1528320312, -0.2175292969, 0.7524414062, -0.1513671875, 1.150390625, -0.2958984375, 0.6435546875, 0.6997070312, 0.2619628906, 0.7373046875, 0.7553710938, -1.2705078125, -0.9604492188, -0.0628051758, 0.2150878906, -0.3688964844, -0.537109375, 0.3740234375, -0.1021728516, -0.7358398438, 1.1552734375, -0.5327148438, -0.771484375, 0.7275390625, -0.3249511719, 0.3469238281, -0.2471923828, -0.2651367188, -0.6372070312, -0.576171875, 0.3015136719, 0.2646484375, 0.1630859375, 0.4077148438, 0.5283203125, -0.0452880859, 1.2236328125, 0.3937988281, -0.0868530273, 0.2214355469, -0.2541503906, -0.5834960938, -0.7875976562, -0.0686645508, 0.7666015625, -0.3076171875, 0.978515625, 0.2644042969, -0.5581054688, -0.1536865234, -0.6357421875, -0.4880371094, -0.6567382812, 0.2193603516, -1.037109375, -0.2487792969, 0.544921875, -0.8754882812, -0.5908203125, -0.5258789062, -0.6069335938, 0.3200683594, 0.98828125, 1.1083984375, -0.509765625, 0.1172485352, 1.130859375, -0.7993164062, -0.1672363281, 0.7475585938, -0.4089355469, -0.6723632812, -0.2039794922, 1.109375, 0.1733398438, -0.119140625, 0.771484375, 0.3083496094, -0.83984375, 0.5678710938, -0.0563354492, 0.2049560547, 0.6000976562, 0.833984375, -0.3361816406, 0.2568359375, 0.5830078125, 0.951171875, 0.5756835938, 0.5083007812, -0.0535583496, -0.2365722656, -0.043548584, 0.6333007812, -0.939453125, 0.1522216797, -0.1651611328, -0.3220214844, -0.2868652344, -0.1749267578, -0.3503417969, -0.0015697479, -0.2998046875, -1.146484375, -0.3950195312, -0.3728027344, -0.0850830078, 0.4165039062, -0.6240234375, -0.2912597656, -0.6459960938, -0.2420654297, -0.1876220703, 0.2822265625, 0.6000976562, -0.067565918, -0.3237304688, -1.6328125, 0.2271728516, 0.2814941406, -1.6875, 0.0466918945, -0.1412353516, -0.2973632812, 0.3149414062, -0.4428710938, 0.2902832031, 0.1245117188, -0.4096679688, 0.255859375, -0.0207672119, 0.003572464, 0.7314453125, 0.5717773438, 0.3715820312, -0.103515625, 0.5522460938, -0.5913085938, 0.767578125, -0.1351318359, 0.0378723145, 1.03515625, -0.1251220703, 0.349609375, -0.5483398438, 0.1740722656, -0.0213317871, -0.6826171875, 0.3940429688, 0.4155273438, -0.5766601562, 0.2322998047, -0.654296875, 0.3173828125, 0.2048339844, -0.2264404297, -0.8095703125, -0.3566894531, 1.5029296875, 0.6323242188, 0.4191894531, -0.4343261719, -0.3972167969, 0.6508789062, 0.1624755859, 0.4826660156, -0.2966308594, -0.2337646484, 0.2756347656, -0.9301757812, 0.8134765625, 0.1859130859, -1.0712890625, 0.6870117188, -0.1756591797, -0.9301757812, -0.0242767334, -0.1611328125, 0.2822265625, 0.2739257812, -0.1778564453, -0.2294921875, -0.755859375, 0.4758300781, -0.1632080078, -0.1571044922, -0.6430664062, -0.1177978516, -0.3156738281, -0.607421875, 0.0386962891, -0.0626220703, -0.794921875, -0.5522460938, 0.4594726562, 0.923828125, -0.0557861328, -0.7954101562, -0.6606445312, -0.006942749, 0.6079101562, 0.3901367188, -0.7075195312, 0.9350585938, -0.5766601562, -0.91015625, 0.2401123047, -0.22265625, -0.197265625, -0.1341552734, 0.2553710938, -0.9233398438, -0.5122070312, -0.4924316406, 0.25390625, -0.0296020508, -0.2147216797, 1.5185546875, 0.5024414062, 0.9921875, -1.09765625, 1.0185546875, -0.4150390625, -0.0224151611, -0.595703125, 0.2797851562, -0.0616455078, 0.3779296875, -0.0510253906, -0.1788330078, -0.1153564453, -0.3657226562, -0.6528320312, -0.3034667969, -0.8227539062, 0.6450195312, 0.818359375, 0.48828125, -0.5263671875, -0.1501464844, -0.3703613281, 0.3754882812, 0.5551757812, -0.2697753906, -0.3918457031, -0.4443359375, -0.3562011719, 0.2524414062, -1.5478515625, 0.0371398926, -0.8999023438, -1.4326171875, 0.0136184692, 1.0283203125, -0.4375, 0.2937011719, 0.0201416016, -0.1364746094, -0.6010742188, -0.6333007812, 0.7768554688, -0.3447265625, 1.0908203125, 0.0347290039, -0.1986083984, 0.6411132812, -0.0421447754, -0.0552368164, 0.1463623047, -0.1359863281, 0.6206054688, 0.2529296875, -0.8354492188, 0.1918945312, 0.0505065918, -0.5712890625, -1.3447265625, 0.1475830078, -0.0171356201, -0.3537597656, -0.0943603516, 0.8657226562, -1.1318359375, 0.2727050781, -0.4990234375, -0.8139648438, -0.7875976562, 0.3779296875, 0.063659668, 0.3627929688, -0.7490234375, 0.9672851562, -0.0555419922, -0.61328125, 0.1088256836, 0.44921875, -0.4670410156, -0.1177368164, -0.0969238281, -0.3974609375, -0.9506835938, -0.1965332031, 0.7319335938, 0.3410644531, 0.0855712891, -0.7661132812, 0.8994140625, -0.5390625, -0.2963867188, 0.4577636719, -0.1628417969, 0.4575195312, -0.1936035156, -1.4599609375, -0.2941894531, -1.0556640625, -0.109375, -0.3540039062, 0.4138183594, 0.0039253235, 0.4106445312, -0.4794921875, -0.0107879639, -0.1669921875, -0.3088378906, -1.4638671875, 0.2401123047, -0.3234863281, -0.9658203125, -0.1982421875, 0.5336914062, -0.0280456543, -0.140625, -1.306640625, 1.2763671875, -1.126953125, -0.2702636719, -0.3432617188, -0.2181396484, -0.3046875, -0.1340332031, -0.2139892578, 0.322265625, 0.8237304688, -0.0473937988, -0.392578125, -0.2420654297, 1.3466796875, 0.2685546875, 1.9736328125, -1.2900390625, 0.0248565674, 0.35546875, -0.404296875, -0.7387695312, -0.2163085938, -0.4560546875, 0.8046875, 0.3012695312, -0.921875, 0.0939331055, -0.83984375, -0.765625, 0.2292480469, 0.6166992188, -0.0606079102, -0.4079589844, -0.2080078125, -1.04296875, 1.630859375, 1.1787109375, 0.0662231445, 0.0296020508, 0.9233398438, -1.1044921875, 0.5356445312, -0.46875, 0.5727539062, -0.1765136719, -0.1440429688, 1.037109375, 0.2783203125, -0.5234375, 0.9609375, -0.9584960938, -0.1398925781, -0.5595703125, 0.0648193359, 0.0762939453, 0.6557617188, -0.1796875, 0.044342041, 0.0536804199, -0.6020507812, 0.89453125, -0.1198120117, -0.4157714844, -0.9658203125, 0.0880126953, -0.86328125, -1.1328125, -0.0822753906, -0.6538085938, 0.595703125, -0.3349609375, -0.3566894531, 0.106628418, -0.4455566406, -0.2705078125, -0.2341308594, 0.1857910156, -1.1240234375, -1.2333984375, -0.7392578125, 0.2043457031, -1.033203125, 1.373046875, -0.6147460938, -0.78125, -0.2484130859, -0.693359375, -0.7778320312, 0.2653808594, -0.2159423828, 0.3020019531, -0.041015625, 0.0399475098, -0.8227539062, -1.623046875, 0.2075195312, -0.4287109375, -0.609375, 0.0079574585, -0.0313415527, 0.1744384766, 0.9770507812, 0.2019042969, 0.0291748047, -0.0234069824, -0.6845703125, -0.0076942444, -0.9116210938, 0.2005615234, -0.7387695312, -0.2863769531, 0.4304199219, 1.2880859375, -0.5522460938, 0.4877929688, 0.2541503906, -0.9702148438, 0.2088623047, 0.0430603027, 0.55078125, 0.5532226562, -0.123840332, -0.798828125, 0.1131591797, -0.1104736328, 0.2602539062, -0.6381835938, 0.3542480469, 0.0065574646, -0.1490478516, -0.1094360352, -0.0634765625, -0.1129150391, -0.0236816406, 0.1541748047, 0.0447998047, -1.2412109375, 0.2565917969, 0.5981445312, -0.8564453125, 0.505859375, -0.8139648438, -1.4609375, 0.94921875, 0.2897949219, 0.7294921875, -0.5131835938, 1.486328125, 0.2189941406, -0.1705322266, 0.1362304688, 0.3566894531, -0.3635253906, -0.0576477051, -0.1345214844, -0.2951660156, 0.130859375, -0.3806152344, -0.720703125, -0.4963378906, 0.58203125, 1.3349609375, -0.4299316406, 0.4787597656, -13.703125, 0.2702636719, -0.0419311523, 0.3137207031, -0.2958984375, -0.1728515625, 1.236328125, 0.2481689453, -0.2399902344, -0.3200683594, 0.0069847107, 0.8071289062, -1.22265625, 0.2196044922, -0.0080871582, -0.7885742188, -0.8139648438, -0.8461914062, 0.0745239258, 0.6850585938, 0.9272460938, 0.916015625, -1.072265625, -0.7875976562, 0.6689453125, 0.2653808594, -0.0494689941, 0.7451171875, -0.4631347656, 0.66015625, 0.1585693359, -0.6533203125, -0.4516601562, 0.9946289062, 0.5122070312, 0.65625, 0.8549804688, 0.5112304688, 0.2937011719, -0.4875488281, 0.3889160156, 0.6606445312, -0.7255859375, 1.177734375, 0.2661132812, 0.2705078125, -0.7509765625, 0.1284179688, -0.1997070312, 0.4584960938, 1.123046875, 1.8486328125, 0.3771972656, 0.0465698242, -0.8120117188, 0.5166015625, -0.828125, -0.2153320312, -0.3820800781, 0.4802246094, 0.2800292969, 0.328125, 0.4296875, -0.0024204254, 0.6181640625, -0.2856445312, -0.1136474609, -0.525390625, 0.5478515625, -1.025390625, 0.0952148438, -1.814453125, 0.4479980469, -0.5068359375, 1.388671875, 1.544921875, 0.4223632812, 0.1546630859, -0.0082778931, 0.916015625, -0.3239746094, -0.0921020508 ]
Bing Maps also received new features namely the Bing Local Scout which takes a look at businesses around the user's location and gives them a list of local restaurants, bars, and shopping centres. The Bing Hub can also open up Bing Local Scout and got a new feature added in Windows Phone 7.5 called Bing Audio, a service similar to Shazam which can recognise songs and show the album in the Zune Marketplace. A notable difference between the Bing Hub and the website is the lack of Bing Travel. With the launch of Windows Phone 8, Microsoft did not include any major updates to the Bing Hub, but Microsoft later included a new Bing suite of applications. Bing News a customisable news aggregator which features headlines and videos of breaking news and allows users to track specific story categories, topics, or news sources. Bing Sports which shows sports headlines and games featuring 8 categories: recent scores, top sports headlines, videos, photos, schedules, standings, and statistics. Bing Weather which in up-to-date conditions, temperature, precipitation, and wind. And Bing Finance which showcases financial news, market information, currency conversion rates, stock option updates, and customisable interactive charts for American markets. Subsequently, Microsoft launched Bing Travel, Bing Food & Drink, and Bing Health & Fitness applications which alongside the original suite of mobile apps were all rebranded under the MSN brand in 2014. In Windows Phone 8.1 Microsoft introduced Cortana to select markets, Cortana is an intelligent personal assistant built on top of the Bing Hub's Microsoft TellMe voice features.
[ -0.2622070312, 0.224609375, -0.8666992188, -0.0575866699, -0.0596923828, 0.0284118652, -0.55078125, -0.5810546875, 0.7373046875, 0.3737792969, 0.0689697266, 0.2393798828, 0.45703125, 0.2188720703, -0.8569335938, 0.8955078125, -0.662109375, -0.3359375, 1.0966796875, -0.3049316406, -0.1505126953, -0.5561523438, 0.5053710938, -1.4755859375, 0.7119140625, -0.3566894531, -0.0626220703, -0.5380859375, -1.279296875, -0.1462402344, 1.326171875, 0.2091064453, 0.0171661377, 0.83203125, 0.3771972656, 0.5805664062, -0.5078125, 0.3686523438, -0.3173828125, 0.0311737061, -0.1628417969, 0.0589294434, 0.435546875, -0.2395019531, 0.060333252, 0.2489013672, 0.4787597656, 0.5063476562, -0.1318359375, 0.6235351562, -2.07421875, -0.0221557617, -0.0113983154, -0.3625488281, -0.1988525391, 0.23046875, -0.2905273438, -0.6904296875, 0.4682617188, 0.5336914062, -0.8779296875, 0.8325195312, -0.4467773438, -0.0381469727, 0.623046875, 0.1623535156, 0.6391601562, -0.1678466797, -0.8662109375, -0.1474609375, 0.693359375, 0.9926757812, 0.3103027344, -0.6625976562, 0.275390625, 0.1401367188, -1.380859375, 0.232421875, -0.4321289062, 0.4489746094, -0.3234863281, 0.1810302734, 0.3896484375, 1.3876953125, 0.0022735596, -0.0952758789, -0.9619140625, -0.8745117188, 0.0463256836, 0.1300048828, -0.0067939758, 0.6171875, 0.5078125, -0.2561035156, -0.4350585938, 0.4831542969, 0.049987793, 0.4516601562, -0.3100585938, 0.7514648438, 0.7607421875, 0.4279785156, -0.046875, 0.5361328125, 0.3754882812, 0.9599609375, 0.1306152344, 0.7412109375, 0.2661132812, -0.3161621094, 0.0794677734, 0.2875976562, 0.1322021484, 0.5864257812, 0.2624511719, 0.0165405273, 0.4370117188, -0.8930664062, -0.0524902344, 1.2021484375, 0.2478027344, 0.0629272461, -0.1221923828, -0.5913085938, -0.4645996094, 0.1125488281, -0.0139389038, 0.4099121094, 0.4428710938, 0.9912109375, -0.953125, 0.0061836243, -0.7041015625, 0.0780639648, 0.7890625, 0.4621582031, -0.5200195312, 1.029296875, 0.740234375, -0.34375, -0.294921875, 0.3957519531, -0.5810546875, -1.3369140625, 0.2314453125, 0.6142578125, -0.5952148438, 0.3486328125, 0.3088378906, 0.4252929688, -1.3125, 0.3759765625, -0.6235351562, 0.3723144531, 1.39453125, 0.5556640625, -0.0212554932, -0.1577148438, -0.6357421875, -0.2200927734, -0.994140625, -0.4196777344, -0.2171630859, 0.9389648438, 0.5166015625, -0.3107910156, -0.4675292969, 1.123046875, 1.185546875, -0.6752929688, -0.5698242188, -0.3811035156, -0.673828125, -0.90625, 0.1591796875, -0.2039794922, 0.4521484375, -0.2783203125, -0.5854492188, -1.4794921875, -0.4106445312, -0.6376953125, -0.1900634766, -1.0087890625, -0.333984375, 0.267578125, 0.2399902344, 0.4047851562, -0.6220703125, -0.2873535156, -0.0147628784, -0.525390625, -1.0859375, -0.1790771484, -0.578125, -0.3220214844, -0.7504882812, -0.1936035156, -1.2470703125, -0.1257324219, -0.3911132812, 0.4013671875, 0.4499511719, -0.4816894531, 0.359375, 0.2824707031, 0.041015625, 0.6098632812, -0.2100830078, -0.3049316406, -0.1450195312, 0.283203125, -0.0292663574, 0.5727539062, -0.1070556641, 0.3408203125, -0.3325195312, -0.6401367188, 0.3193359375, 0.7314453125, 0.2509765625, 1.0029296875, -0.951171875, -0.9946289062, -0.5595703125, -1.5146484375, 0.5532226562, 0.3820800781, -0.1579589844, -0.0888671875, 0.1252441406, 0.6064453125, -0.5205078125, 0.787109375, -0.265625, 0.0866088867, -0.053894043, -0.3579101562, -0.4077148438, 0.052734375, -0.4521484375, 0.1027832031, 0.5014648438, -0.2939453125, 0.3598632812, -0.0932617188, -0.900390625, -0.5971679688, 0.2020263672, 0.931640625, 0.0495605469, -0.1912841797, 0.0017032623, -0.1390380859, 0.0220947266, -0.5366210938, 0.6103515625, -0.2081298828, -0.041809082, -0.1127319336, -0.4438476562, -0.0511474609, 0.6176757812, -0.6416015625, 0.2424316406, -0.0057868958, -0.6083984375, -0.3579101562, 0.4887695312, 0.0386352539, 0.2266845703, -0.5327148438, 0.5112304688, 0.6420898438, -0.5610351562, 0.6650390625, -0.1959228516, -1.01953125, 0.4606933594, 0.6689453125, 0.0736083984, 0.9731445312, -1.0146484375, -0.68359375, 0.0751953125, 0.2034912109, -0.9038085938, 1.0419921875, -0.3537597656, 0.1940917969, -0.3208007812, -0.7451171875, 0.035369873, -0.7172851562, 1.2314453125, 0.0563964844, 0.66015625, 1.453125, 0.1424560547, 0.0701293945, -0.4304199219, 0.2425537109, -0.7622070312, -0.4541015625, 1.140625, 0.833984375, 0.7016601562, -1.263671875, -0.8623046875, 0.3264160156, -0.1256103516, 0.6440429688, -1.1650390625, 1.0498046875, -1.40234375, 0.1359863281, 0.2956542969, -0.791015625, -1.5791015625, 0.6909179688, 0.6704101562, 0.2211914062, 0.814453125, -0.3059082031, -1.19140625, 0.8813476562, -0.1812744141, -0.1224975586, 0.38671875, -0.1076660156, -0.3933105469, -0.5317382812, 0.8935546875, -0.333984375, -0.3488769531, -0.3430175781, 0.7553710938, -0.4841308594, -0.0136032104, -0.251953125, -0.7944335938, -0.685546875, -0.1083374023, 0.9711914062, 0.8662109375, -0.3095703125, -0.3244628906, -0.3779296875, -0.6069335938, -0.5288085938, 0.0748901367, -0.4799804688, -0.1831054688, -0.9262695312, -0.0267333984, -0.3330078125, 0.0104217529, -0.1501464844, -1.3740234375, 1.1005859375, 0.4658203125, 0.1455078125, -1.6669921875, 0.2807617188, 0.0584106445, 0.2741699219, 0.126953125, 0.3032226562, -1.205078125, 0.6303710938, -0.1146240234, 0.6572265625, -0.3542480469, 0.33203125, 0.8393554688, 0.0783691406, 0.9423828125, 0.3413085938, -0.322265625, -0.4772949219, 0.0458068848, 0.2976074219, -0.1568603516, -0.3083496094, -0.2275390625, 1.203125, -0.4416503906, -0.1311035156, -0.0014219284, -0.5346679688, -0.8046875, 0.1898193359, -0.7045898438, 0.8583984375, -0.1131591797, 0.7348632812, -0.2944335938, -0.5913085938, 0.2563476562, 1.1513671875, 0.3757324219, -0.5991210938, -0.4758300781, 0.302734375, -1.5283203125, 0.1702880859, 1.25, 0.6606445312, -0.0334472656, 0.3674316406, 0.4658203125, 0.1479492188, 0.0621032715, -0.3120117188, 0.4641113281, 0.0697021484, -0.3996582031, 0.5063476562, -0.5151367188, 0.3220214844, -0.6420898438, -0.9921875, 1.1025390625, 0.1137695312, -1.4814453125, 0.6376953125, 0.0690917969, -0.2468261719, -0.0315551758, -0.2895507812, -0.2648925781, 1.3232421875, -0.0425109863, 0.4643554688, -0.9345703125, 0.6298828125, -0.2746582031, 0.8344726562, 0.2849121094, -0.4396972656, 0.0514221191, 0.5048828125, -0.1612548828, -0.3195800781, -0.625, 0.2819824219, 1.3017578125, 0.2937011719, 0.880859375, -0.677734375, 0.2358398438, 0.3513183594, 0.3825683594, 0.1260986328, 0.462890625, -1.5, -0.7529296875, -0.1895751953, 0.0866088867, 0.1296386719, -0.1567382812, 0.2958984375, -0.0498657227, -0.3901367188, 0.5141601562, -0.5874023438, -0.8935546875, 0.1890869141, -0.2395019531, 0.0809326172, 0.1042480469, 0.2592773438, -0.8857421875, -0.236328125, 0.2663574219, -0.2141113281, 0.1081542969, 0.2180175781, 0.2958984375, -0.1033325195, 1.0224609375, 0.3139648438, -0.0045661926, 0.3713378906, 0.0253143311, 0.0160369873, -0.31640625, -0.5751953125, 0.9716796875, -0.3833007812, 0.7290039062, 0.3828125, -0.2775878906, -0.4123535156, -0.6435546875, -0.0926513672, -0.646484375, -0.3474121094, -0.4326171875, -0.2602539062, 0.2585449219, -1.1015625, 0.0158691406, -0.3901367188, -0.1401367188, -0.5737304688, 0.6665039062, 0.775390625, 0.0787353516, 0.6743164062, 0.9614257812, -0.5537109375, -0.0811767578, 0.4470214844, -0.1091918945, -0.662109375, 0.1348876953, 0.8662109375, -0.4379882812, 0.2448730469, 0.7353515625, 0.5053710938, -0.8569335938, 1.0537109375, -0.2014160156, -0.3706054688, 0.6396484375, 0.556640625, 0.125, 0.1333007812, 0.5009765625, 0.7036132812, 0.2336425781, 1.3681640625, 0.2281494141, 0.0656738281, -0.3037109375, 0.7778320312, -0.12890625, 0.4184570312, 0.3693847656, -0.5649414062, -0.2475585938, 0.2084960938, -0.46875, 0.3752441406, -0.0868530273, -1.2783203125, -0.69140625, -0.556640625, -0.2731933594, 0.0613098145, -0.7041015625, -0.3073730469, -0.3701171875, -0.110168457, 0.1834716797, 0.0085830688, 0.4975585938, 0.1280517578, -0.396484375, -0.4685058594, 0.3112792969, 0.7397460938, -1.75, 0.4711914062, 0.4416503906, -0.193359375, -0.568359375, 0.181640625, -0.2037353516, 0.0381164551, -1.0107421875, 0.0946044922, 0.365234375, -0.5361328125, 1.0654296875, 0.4284667969, 0.1293945312, -0.2280273438, 0.3803710938, -0.5844726562, 0.1248168945, -0.0450439453, 0.2233886719, 1.0068359375, 0.0543518066, -0.4948730469, -1.0546875, 0.4909667969, -0.3237304688, -0.4072265625, 0.5244140625, 0.3391113281, -0.634765625, 0.5444335938, -0.0211486816, 0.1352539062, 0.4553222656, -0.4013671875, -0.498046875, -0.1065063477, 1.0625, 0.3483886719, -0.3793945312, -0.4104003906, -0.3876953125, 0.2091064453, -0.1599121094, 0.3413085938, -0.2409667969, -0.2352294922, 0.478515625, -0.552734375, 0.6694335938, -0.2020263672, -1.986328125, 0.66015625, 0.0573120117, -0.6713867188, -0.6665039062, -0.5014648438, -0.4460449219, 0.6337890625, -0.2136230469, 0.2200927734, -0.2261962891, 0.1765136719, -0.5517578125, 0.2314453125, -0.513671875, 0.5844726562, -0.0353393555, -0.6967773438, 0.0317382812, -0.5004882812, -0.642578125, -0.1472167969, 0.3825683594, 0.8876953125, -0.3513183594, -1.1279296875, -1.1982421875, -1.02734375, 0.6450195312, -0.2155761719, -0.4870605469, 1.0537109375, -0.5932617188, -1.166015625, -0.2768554688, 0.5532226562, -0.4167480469, -0.490234375, 0.642578125, -1.1123046875, 0.108581543, -0.3735351562, 0.4670410156, 0.1221313477, -1.04296875, 1.2431640625, -0.0578613281, 0.6298828125, -1.0029296875, 0.6689453125, -0.8862304688, 0.2351074219, -0.7724609375, -0.0928955078, -0.1629638672, 0.630859375, -0.0944213867, -0.6235351562, 0.4880371094, -0.0601806641, -0.7885742188, -0.587890625, -0.6840820312, 0.462890625, 0.4958496094, 0.3000488281, -0.0448303223, -0.0277557373, -0.3098144531, -0.9243164062, 0.5205078125, -0.6616210938, -0.0790405273, -0.4545898438, -0.8671875, 0.2670898438, -1.03125, 0.173828125, -0.6616210938, -1.7568359375, -0.1470947266, 1.029296875, 0.3764648438, 0.4150390625, -0.2032470703, -0.6904296875, -0.7104492188, -0.1469726562, 0.2182617188, -0.7778320312, 0.7446289062, 0.6577148438, 0.0251312256, 0.1474609375, 0.0944213867, 0.7065429688, 0.3203125, 0.6069335938, 1.05859375, 0.4775390625, -0.6772460938, 0.1984863281, 0.13671875, -0.2517089844, -1.423828125, 0.3259277344, -0.0022563934, -0.3388671875, -0.2109375, 0.0444030762, -1.15234375, 0.0638427734, -0.66796875, -0.9521484375, -0.7041015625, 0.3044433594, 0.1187133789, -0.2807617188, -1.1103515625, 0.9189453125, -0.0626220703, -0.703125, 0.1453857422, 0.0584716797, -0.4345703125, 0.3308105469, 0.267578125, -0.1336669922, -1.046875, -0.0659179688, 1.2421875, 0.9458007812, -0.482421875, -0.2103271484, 1.3837890625, -0.2465820312, -0.66015625, 0.2414550781, 0.1973876953, -0.0476989746, -0.3503417969, -0.818359375, 0.0271911621, -0.0564880371, 0.2286376953, 0.2741699219, 0.8427734375, -0.2498779297, 0.2249755859, -0.7407226562, 0.3486328125, 0.494140625, 0.0979003906, -1.4560546875, 0.0093994141, -0.0426330566, -0.3774414062, -0.6918945312, 0.3708496094, -0.2221679688, 0.2213134766, -0.2320556641, 0.8623046875, -0.8676757812, -0.205078125, -0.6318359375, -0.6586914062, -0.6176757812, -0.2484130859, -0.1246337891, 0.0686035156, 1.0341796875, 0.4587402344, -0.3369140625, -0.0903320312, 0.8442382812, 0.8891601562, 1.56640625, -1.1728515625, 0.0231323242, 0.1656494141, 0.3615722656, -0.8862304688, 0.3837890625, -0.0567932129, 1.0517578125, -0.6474609375, -1.2763671875, -0.0618286133, -0.7797851562, -0.5307617188, -0.3100585938, 1.08984375, -0.1824951172, -0.3884277344, -0.6713867188, -1.0751953125, 1.65234375, 0.560546875, 0.5283203125, -0.1412353516, 0.096496582, -0.9658203125, 0.3171386719, -0.1245727539, 0.3142089844, 0.3732910156, -0.1018676758, 0.3815917969, -0.1842041016, -0.708984375, 1.21484375, -0.9702148438, -0.3391113281, -0.1770019531, -0.0986328125, 0.4763183594, 0.8422851562, -0.2326660156, 0.0308227539, -0.0046768188, -0.494140625, 1.005859375, -0.0551147461, -0.669921875, -0.2614746094, 0.5864257812, -0.6689453125, -0.2164306641, -0.1804199219, -0.9931640625, 0.7265625, -0.2587890625, -0.4279785156, -0.0830688477, -0.5190429688, -0.5546875, -0.8276367188, -0.3674316406, -1.0478515625, -0.8696289062, -1.6015625, 0.1207275391, -0.8046875, 1.111328125, -0.51953125, -0.4526367188, 0.8203125, -0.124206543, -0.7236328125, -0.2088623047, -0.0999755859, 0.2502441406, 0.6728515625, -0.3591308594, -0.4252929688, -0.4191894531, 0.2401123047, -0.0021381378, -0.5361328125, 0.2344970703, 0.2354736328, -0.030380249, 1.1357421875, -0.0651855469, -0.0299987793, -0.0653686523, -1.384765625, 0.3854980469, -0.4606933594, 0.3715820312, -0.6708984375, -0.3979492188, 0.419921875, 0.8481445312, -0.798828125, 0.3452148438, 0.6904296875, -1.474609375, 0.390625, -0.0060653687, 0.4033203125, 0.1843261719, 0.9721679688, -1.1650390625, 0.1343994141, 0.2526855469, -0.0400390625, -0.7319335938, 0.5053710938, 0.075378418, -0.0131225586, 0.0920410156, 0.2298583984, 0.3305664062, 0.0326538086, -0.2829589844, -0.2697753906, -0.9995117188, 0.6909179688, -0.0764770508, -0.857421875, 0.5166015625, -0.4909667969, -0.6416015625, 0.5126953125, 0.0399475098, 1.0107421875, -0.3481445312, 1.166015625, -0.1750488281, -0.3513183594, 0.3081054688, -0.0250854492, -0.4223632812, 0.3327636719, -0.0289306641, -0.6494140625, 0.1102905273, -0.2622070312, -0.578125, 0.1638183594, 0.7578125, 1.0087890625, 0.0830078125, -0.0504455566, -14.171875, -0.419921875, -0.1875, -0.1422119141, 0.2352294922, 0.0526733398, 1.1533203125, 0.3195800781, -0.509765625, -0.2250976562, 0.0399780273, -0.0961303711, -0.548828125, 0.1784667969, 0.1577148438, -0.6416015625, -0.1853027344, -0.5258789062, -0.353515625, -0.1419677734, 0.4904785156, 0.9248046875, -0.7353515625, -0.5180664062, 0.9379882812, 0.5439453125, 0.2384033203, 0.5239257812, -0.0797119141, 0.5659179688, 0.4475097656, -0.32421875, -0.455078125, 1.306640625, -0.0073738098, 0.2205810547, 1.2333984375, -0.2814941406, -0.4440917969, -0.580078125, 0.841796875, 0.5092773438, 0.031036377, 0.837890625, 0.1940917969, 0.6484375, -0.373046875, 0.2066650391, -0.5131835938, 0.1884765625, 0.9233398438, 1.0244140625, 0.029510498, 0.490234375, -1.013671875, -0.302734375, -0.3491210938, -0.0316467285, -0.6596679688, 0.2266845703, -0.369140625, 0.1119384766, 0.2166748047, -0.0043525696, 0.120300293, -0.3793945312, 0.3364257812, 0.3391113281, 0.4956054688, -0.6381835938, 1.23828125, -1.55078125, 0.6245117188, -0.7807617188, 1.26171875, 1.435546875, 0.2551269531, 0.64453125, -0.0686035156, 1.0693359375, -0.28515625, 0.0745239258 ]
Cortana responds to a set of commands such as setting alarms, reminders, making suggestions based on the user's daily habits and frequented places, notify about the weather, turn up the latest headlines and news on the user's personal interests, a "do not disturb me" feature named Quiet hours which can set exceptions for contacts in the user's inner circle, predict sports events and tell jokes. For users who enabled Cortana Bing Audio/Bing Music remains included built into Cortana's Hub but Bing Vision becomes only accessible via the Microsoft Camera by selecting lenses. A common criticism against Cortana is that it does not understand or respond to queries as well as other digital assistants does and will open up a Bing search result when it does not understand the question. Exclusive to Microsoft Lumia devices with the Lumia Denim update is the "Hey Cortana" feature which allows users to open Cortana with voice activation while their Windows Phone is in standby mode. Features Bing for mobile browser - m.bing.com Mobile browsing allows users to access Bing on their mobile devices through WAP or GPRS connection. The interface is optimized for viewing on mobile handsets.
[ -0.4704589844, -0.0567321777, -0.3603515625, 0.50390625, -0.5341796875, -0.5341796875, -0.4904785156, -0.6274414062, 0.2800292969, 0.2416992188, -0.4211425781, 0.4182128906, 0.1608886719, 0.4704589844, -0.2451171875, 0.7739257812, -0.2797851562, -0.0506286621, 0.7807617188, -0.2103271484, 0.1396484375, -0.390625, 0.3635253906, -0.720703125, 1.5078125, -0.5463867188, -0.0457458496, -0.4714355469, -1.427734375, 0.1428222656, 1.0263671875, 0.1971435547, -0.9150390625, 1.171875, 0.4731445312, 0.4611816406, 0.0329589844, 0.2592773438, -0.365234375, 0.5986328125, -0.2204589844, 0.2365722656, 0.6235351562, -0.0140762329, -0.2493896484, 0.0090255737, 0.6352539062, 0.1882324219, -0.4482421875, 0.365234375, -1.1083984375, -0.4404296875, -0.1189575195, 0.0484619141, -0.0335998535, -0.396484375, -0.1257324219, -0.7260742188, 0.634765625, 0.486328125, -0.4033203125, 0.7626953125, -0.3056640625, -0.2844238281, 1.015625, 0.4187011719, 0.7802734375, -0.9877929688, -1.041015625, -0.8012695312, 0.1267089844, 0.6577148438, 0.537109375, -0.1691894531, 0.5732421875, -0.193359375, -1.224609375, 0.2619628906, -0.0195007324, 1.0791015625, -0.3283691406, 0.2670898438, 0.369140625, 0.4328613281, -0.2060546875, 0.3251953125, -0.9760742188, -0.3083496094, -0.3974609375, -0.2338867188, 0.4155273438, 0.4560546875, 0.018447876, 0.0914916992, 0.349609375, 0.1148071289, 0.533203125, -0.0974121094, -0.4753417969, 0.4187011719, 0.83984375, -0.2183837891, -0.0140457153, 0.5747070312, 0.5854492188, -0.1995849609, 0.1611328125, 0.431640625, -0.0960083008, -0.0646972656, -0.037322998, -0.0858154297, 0.5268554688, 0.7055664062, -0.3776855469, -0.0938720703, 0.4558105469, -0.7866210938, -0.5561523438, 0.6821289062, -0.0979614258, 0.0505371094, -0.1896972656, 0.0353393555, 0.1870117188, 0.2521972656, -0.2946777344, 0.7392578125, -0.0687255859, 1.2177734375, -0.3918457031, -0.2570800781, -0.6782226562, 0.4299316406, 0.8486328125, -0.2379150391, -0.5698242188, 0.9736328125, 0.4934082031, -0.3078613281, -0.54296875, 0.1998291016, -0.3330078125, -0.7973632812, -0.1207275391, 0.4826660156, 0.1167602539, 0.7319335938, -0.2561035156, 0.5473632812, -1.705078125, 1.34765625, -0.9086914062, 0.1811523438, 1.0478515625, 1.3125, 0.2548828125, -0.822265625, -0.5078125, -0.2479248047, -0.6313476562, -1.8154296875, -0.2453613281, 0.1208496094, 1.140625, -0.8344726562, -1.1884765625, 1.025390625, 1.3671875, -0.8041992188, -0.9545898438, -0.1029663086, -1.080078125, -0.6591796875, 0.1994628906, 0.0894165039, 0.2088623047, -0.1700439453, -0.1862792969, -1.8720703125, 0.1218261719, -1.1884765625, 0.2073974609, -1.181640625, 0.3759765625, 0.8525390625, -0.032043457, 0.2854003906, -0.7817382812, -0.0923461914, -0.3723144531, -0.2741699219, -1.1220703125, -0.1522216797, 0.2341308594, 0.0529785156, -0.2360839844, -0.4157714844, -0.8369140625, -0.077331543, 0.1899414062, 0.3776855469, -0.0895385742, -0.44921875, 0.4243164062, 0.734375, -0.5693359375, 0.5498046875, -0.2038574219, -0.3520507812, -0.1525878906, -0.2180175781, 0.3063964844, 0.0346374512, 0.34375, 0.3449707031, -0.4130859375, -0.4479980469, 0.1839599609, 0.671875, -0.3933105469, 1.0556640625, -0.9506835938, -0.7846679688, -0.0267791748, -1.388671875, 0.4528808594, -0.091003418, -0.2272949219, 0.2624511719, 0.0908203125, 0.0366516113, -0.5395507812, 0.953125, -0.0597229004, -0.8051757812, -0.4916992188, -0.712890625, -0.4729003906, 0.4780273438, -0.0998535156, 0.6591796875, 0.8002929688, -0.1859130859, 0.1585693359, 0.4326171875, -0.3459472656, -1.052734375, 0.5610351562, 0.779296875, -0.2012939453, -0.4465332031, -0.0617675781, -0.0742797852, -0.3264160156, 0.0362243652, 0.755859375, 0.2448730469, 0.1164550781, -0.0463562012, -0.2075195312, 0.7578125, 0.6704101562, 0.2406005859, 0.1768798828, 0.4077148438, -0.650390625, -0.4868164062, 0.4443359375, -0.1821289062, 0.0863037109, -0.4125976562, 0.3442382812, 0.5903320312, -0.3933105469, 0.3837890625, -0.0985717773, -0.0330200195, 0.501953125, 0.98828125, 0.0925292969, 0.5043945312, -0.6967773438, 0.2081298828, -0.0915527344, 0.994140625, -0.3508300781, 1.6416015625, -0.2360839844, 0.611328125, -0.8540039062, -0.5478515625, -0.3928222656, 0.529296875, 1.400390625, 0.646484375, 0.8969726562, 1.48828125, -0.0905761719, 0.2612304688, -0.7670898438, 0.1119995117, -0.0630493164, 0.0209503174, 0.5424804688, 0.7416992188, 0.2126464844, -1.5146484375, -1.0048828125, 0.8090820312, 0.8642578125, 0.8247070312, -0.8017578125, 0.9458007812, -0.994140625, 0.57421875, -0.0173797607, -1.47265625, -0.9545898438, 0.7856445312, 0.3505859375, -0.4025878906, 0.2863769531, 0.0073013306, -0.8984375, 0.1888427734, -0.3781738281, -0.470703125, 0.6186523438, -0.3798828125, 0.4853515625, -1.2412109375, 0.5141601562, -0.8071289062, -1.1044921875, -0.5571289062, -0.0733642578, -0.431640625, -0.3510742188, 0.1336669922, -0.4052734375, -1.2109375, -0.6499023438, 0.64453125, 0.6489257812, -0.4311523438, -0.7705078125, -0.2915039062, -0.3432617188, -0.3981933594, 0.3872070312, -0.703125, -0.7250976562, -0.3950195312, -0.1750488281, -0.4384765625, -0.1369628906, 0.0607910156, -1.51171875, 1.5126953125, 0.3972167969, 0.4047851562, -1.7578125, -0.2983398438, -0.2741699219, 0.23046875, 0.3869628906, 0.4155273438, -1.2021484375, 1.0087890625, -0.6904296875, 0.1373291016, -0.3210449219, 0.1804199219, 0.9409179688, 0.0018587112, 1.603515625, -0.560546875, -0.4611816406, 0.0221557617, -0.0953979492, 0.3486328125, -0.37890625, 0.0568847656, -0.1159057617, 1.705078125, -0.28125, -0.0809326172, 0.0957641602, -0.3933105469, -0.4716796875, -0.4443359375, -0.0256347656, 0.904296875, 0.3225097656, 0.1811523438, 0.3020019531, -0.48828125, -0.0875854492, 0.880859375, 0.2261962891, -0.5576171875, -1.087890625, 0.0612487793, -1.783203125, 0.4152832031, 1.970703125, 0.6064453125, 0.06640625, 0.7836914062, 0.83203125, 0.2185058594, 0.4086914062, -0.2741699219, 0.0360717773, -0.3994140625, 0.1795654297, 0.2337646484, -0.3830566406, -0.1843261719, -0.9887695312, -0.859375, 0.7807617188, 0.0260009766, -1.080078125, 0.1427001953, 0.2602539062, -0.8759765625, 0.4157714844, -0.4182128906, -0.2980957031, 0.9624023438, -0.2071533203, -0.037902832, -0.0302276611, 0.0802001953, -0.6982421875, 1.2626953125, 0.4890136719, -0.3532714844, 0.2841796875, 0.5405273438, -0.2119140625, -0.36328125, 0.3784179688, -0.035369873, 0.5610351562, 0.0817260742, 0.7280273438, -0.708984375, -0.2396240234, 0.2841796875, 1.1328125, 0.6875, 0.5385742188, -0.5576171875, -0.6665039062, -0.1649169922, 0.6669921875, -0.1021118164, 0.0010881424, 0.7739257812, 0.0380554199, -0.8125, 0.5786132812, -0.2342529297, -0.8955078125, 0.62890625, -0.8725585938, 0.4553222656, -0.4619140625, 0.4096679688, -1.25390625, -0.0350341797, 0.6875, 0.0654907227, 0.3041992188, 0.0993652344, 0.5205078125, 0.0191345215, 0.669921875, -0.4040527344, 0.0514526367, -0.0555114746, -0.4311523438, 0.076171875, -0.3669433594, 0.2154541016, 0.094543457, -0.53515625, 0.8212890625, 0.4587402344, 0.1335449219, -1.107421875, -0.3745117188, -0.4870605469, -0.5341796875, -0.2120361328, -0.6088867188, 0.1125488281, -0.1156616211, -0.8793945312, 0.4038085938, -0.6201171875, -0.119934082, -0.65234375, 0.7875976562, 1.107421875, 0.4526367188, 0.4602050781, 0.740234375, -0.5864257812, -0.1389160156, 0.0316772461, 0.0654296875, -0.3000488281, 0.0291137695, 1.12109375, 0.1988525391, -0.3620605469, -0.4750976562, 0.0794677734, -1.0625, 0.59765625, 0.1684570312, 0.4736328125, 0.5307617188, 0.4367675781, 0.3933105469, 0.298828125, 1.7275390625, 1.2099609375, 0.4279785156, 1.0546875, 0.1649169922, -0.029083252, -0.12109375, 0.6430664062, -0.5317382812, 0.8974609375, 0.3154296875, -0.8725585938, -0.2717285156, 1.0380859375, -0.197265625, 0.9663085938, -0.1402587891, -1.0673828125, -0.5698242188, -0.265625, 0.7060546875, 0.2619628906, -0.1541748047, -0.4152832031, -1.197265625, -0.4233398438, -0.3366699219, 0.6137695312, 0.9482421875, -0.2807617188, -0.2001953125, -0.6479492188, 0.4428710938, 0.2885742188, -1.052734375, 0.4291992188, 0.4909667969, -1.0419921875, -0.5678710938, 0.16015625, -0.1761474609, 0.5375976562, -1.283203125, -0.1827392578, 0.0809326172, -1.6669921875, 0.5478515625, 0.1340332031, -0.6948242188, -0.3498535156, 1.27734375, -0.2963867188, -0.2976074219, 0.1549072266, 0.1314697266, 0.7387695312, 0.1925048828, 0.3581542969, -0.4538574219, -0.0485534668, 0.384765625, -0.3154296875, 0.1156005859, 0.0039176941, -0.100769043, 0.5859375, 0.3525390625, -0.0473937988, 0.8891601562, -0.2526855469, -0.673828125, -0.2893066406, 1.0654296875, 0.6733398438, 0.2419433594, -0.3151855469, -0.6669921875, 0.4592285156, 0.121887207, -0.5258789062, -0.3205566406, 0.0572509766, 0.4006347656, -0.6821289062, 0.87890625, 0.87890625, -1.560546875, 0.3989257812, 0.104675293, -0.4655761719, -0.6030273438, -0.8095703125, -0.7548828125, -0.2722167969, -0.4731445312, 0.1357421875, -0.580078125, 0.6845703125, -0.5385742188, 0.3154296875, -1.0595703125, -0.4780273438, 0.0138168335, -0.1239624023, -0.3088378906, -0.3249511719, -0.1232299805, -0.0545043945, 0.8276367188, 0.4797363281, -0.3110351562, -0.6376953125, -0.0136871338, -0.4899902344, -0.0332641602, -0.1359863281, -0.1768798828, 0.806640625, -0.1942138672, -0.5068359375, 0.1859130859, 0.4543457031, -0.2648925781, -0.6831054688, 0.5288085938, -0.4370117188, 0.5463867188, -0.740234375, 0.2509765625, -0.2705078125, -0.78125, 1.220703125, 0.0541687012, 0.6416015625, -0.7314453125, 0.90234375, 0.1270751953, -0.0160369873, -0.9223632812, 0.0899658203, -0.2211914062, 0.4592285156, 0.0338134766, -0.7626953125, 0.0105209351, 0.3386230469, -0.771484375, -0.6450195312, -1.1875, 0.8813476562, 0.9619140625, 0.3920898438, -0.1392822266, -0.1932373047, -0.5888671875, 0.3803710938, 0.1287841797, -0.0884399414, -0.5771484375, -0.6157226562, -1.3125, -0.4604492188, -0.7919921875, -1.1005859375, -0.0545959473, -2.087890625, -0.3889160156, 1.2216796875, -0.2163085938, 0.3942871094, 0.0471191406, -0.4470214844, -0.1634521484, -1.0595703125, 0.1867675781, 0.2592773438, 0.716796875, -0.0380249023, 0.2658691406, 0.2905273438, -0.5112304688, 0.0482177734, 0.4030761719, 0.5268554688, 1.21484375, -0.2958984375, -0.5483398438, 0.1538085938, 0.3854980469, 0.1420898438, -0.99609375, 0.283203125, -0.2973632812, -0.3657226562, -0.6435546875, 0.2912597656, -0.6713867188, 0.5185546875, -0.3454589844, -0.64453125, -0.6918945312, -0.322265625, 0.2371826172, -0.1751708984, -0.3239746094, 1.0068359375, 0.0077972412, -0.3273925781, 0.6293945312, 0.0350646973, -0.7504882812, -0.55078125, -0.104675293, -0.1505126953, -0.8901367188, 0.1372070312, 1.048828125, -0.0537109375, -0.7978515625, -0.2254638672, 0.6157226562, -0.2800292969, -0.4467773438, 0.5346679688, -0.3679199219, -0.6401367188, -0.5346679688, -1.353515625, 0.0698242188, -0.5947265625, 0.2912597656, 0.4248046875, 0.2211914062, -0.2163085938, 0.4914550781, -0.9106445312, -0.2634277344, 0.3645019531, 0.509765625, -1.0859375, 0.109375, -0.2269287109, -0.7075195312, -0.2016601562, -0.0606994629, -0.2861328125, 0.5556640625, -0.8969726562, 0.6499023438, -0.6977539062, -0.115234375, -0.3410644531, -1.28515625, -0.4365234375, -0.3117675781, -0.0146789551, 0.2220458984, 0.9130859375, 0.1246337891, -0.0800170898, -0.9697265625, 1.591796875, 1.03125, 1.3310546875, -0.5244140625, -0.1759033203, 0.3620605469, 0.2358398438, -0.6796875, 0.513671875, -0.1654052734, 0.4724121094, -0.0434570312, -1.05078125, -0.3620605469, -0.6674804688, -0.2800292969, 0.2470703125, 0.1793212891, 0.1939697266, 0.3029785156, -0.9853515625, -1.326171875, 0.7006835938, 0.9038085938, 0.0982055664, 0.5224609375, 0.9365234375, -0.748046875, 0.1424560547, -0.3837890625, 0.67578125, -0.5654296875, -0.2985839844, 0.7924804688, -0.0794067383, 0.0679321289, 0.8334960938, -0.9272460938, 0.2283935547, -0.2435302734, 0.4626464844, 0.1291503906, 0.8291015625, -0.0533752441, 0.4094238281, -0.4211425781, -0.9165039062, 0.1536865234, -0.099609375, -0.2020263672, -0.642578125, 0.2805175781, -0.8637695312, -0.7954101562, -0.6147460938, -0.2797851562, 0.4616699219, 0.1209106445, -0.2476806641, -0.740234375, -0.7114257812, -0.2413330078, -0.2313232422, -0.5122070312, -0.2614746094, -0.7309570312, -0.4787597656, -0.036895752, -0.1949462891, 1.1240234375, -0.6303710938, -0.796875, -0.3686523438, -0.1237792969, -0.8198242188, -0.0688476562, -0.7192382812, 0.1342773438, 0.1436767578, -0.1680908203, -0.3525390625, -1.7275390625, -0.4736328125, -0.3525390625, -1.060546875, -0.2915039062, 0.4624023438, 0.0252380371, 0.3833007812, 0.1960449219, 0.8657226562, 0.3139648438, -0.7641601562, -0.8002929688, -0.8618164062, 0.2279052734, -0.2307128906, -0.0071983337, 0.2758789062, 1.2373046875, -0.4819335938, 0.0710449219, 0.4113769531, -0.4147949219, 0.1628417969, 0.1627197266, 0.82421875, 0.2406005859, -0.2091064453, -0.3974609375, 0.3657226562, -0.8447265625, 0.3215332031, -1.2421875, -0.3322753906, -0.1111450195, -0.1740722656, -0.0115966797, -0.2124023438, 0.546875, -0.2174072266, -0.6845703125, -0.4013671875, -0.1795654297, 0.6762695312, 0.2379150391, -0.4401855469, 0.595703125, -0.6396484375, -0.5375976562, 0.4350585938, 0.0143585205, 0.9819335938, -0.630859375, 1.4873046875, 0.6508789062, 0.051361084, 0.5004882812, 0.4992675781, -0.0182495117, 0.4008789062, -0.0180358887, 0.0955200195, -0.603515625, -0.3127441406, -0.1263427734, 0.3125, 0.87109375, 1.3837890625, -0.2727050781, -0.2427978516, -13.84375, -0.4440917969, -0.4958496094, -0.0241241455, -0.3996582031, -0.1784667969, 1.1171875, 0.3664550781, 0.0918579102, -0.1776123047, 0.4455566406, 0.3200683594, -0.6923828125, -0.1782226562, -0.0530395508, -0.4313964844, -0.9028320312, -0.5903320312, 0.1773681641, -0.21875, 0.4499511719, 1.1318359375, -1.02734375, -0.0109329224, -0.0874023438, -0.56640625, 0.662109375, 1.0771484375, 0.3395996094, -0.3569335938, -0.5092773438, -0.291015625, -0.3413085938, 0.5249023438, -0.1735839844, 0.1044921875, 0.3569335938, 0.6186523438, -0.3603515625, -0.0978393555, 0.4479980469, 0.4343261719, -1.220703125, 0.7666015625, 0.0751953125, 0.3696289062, -0.1882324219, 0.1768798828, -0.7817382812, 0.2561035156, 0.5610351562, 1.5849609375, 0.0063514709, 0.5385742188, -1.27734375, 0.1314697266, -0.5063476562, 0.32421875, -0.2954101562, 0.357421875, 0.0905761719, -0.2768554688, 0.9467773438, -0.4514160156, 0.677734375, -0.5278320312, 0.5815429688, -1.0361328125, 0.2105712891, -0.9877929688, -0.0111618042, -0.9848632812, 0.5727539062, -0.8466796875, 1.2626953125, 1.59765625, -0.3635253906, 0.1140136719, 0.59375, 0.5659179688, 0.1754150391, -0.5493164062 ]
Users can: Search the web for information Get news information Find local businesses in the user's local area Get maps and driving directions Get answers to questions In the UK and Japan - "Find My Location" to pinpoint a user's location Share content via the Facebook or Twitter In the U.S. on HTML-ready mobile devices such as iPhone, Android, and touch-screen Windows phones, further features are available such as automatic location detection (geolocation), suggested local listings based on location and time of day, the ability to save listings to Favorites, and send that list to friends, cinematic listings with clips and trailers, and sports scores and stats, with real-time updates during games. Bing for mobile application The Mobile Application is available as a Java ME application for non-Windows phones, as a richer .NET Framework application for Windows Phones, and as an application for BlackBerry OS, Android, iOS, and Binary Runtime Environment for Wireless (BREW). It provides local listings, maps (road and aerial satellite), driving directions, and traffic conditions. Other features include: Predictive text input Browse and search through business categories Image search and image exploration Speech recognition search input Search results include a phone number and address; users may click to call for an immediate connection Send search results to others using SMS Find maps for specific addresses Get directions to and from a destination Get turn by turn directions using a GPS receiver View traffic information for major roads in selected cities Get weather forecasts View movie showtimes and theaters Turn-by-turn navigation for Windows 6.x phones.
[ 0.5561523438, 0.02003479, 0.0376586914, -0.1540527344, -0.5249023438, -0.6083984375, -0.5424804688, -1.646484375, 0.9829101562, 0.36328125, 0.8208007812, 0.1953125, 0.9228515625, 0.0272827148, -1.3232421875, 0.2570800781, -0.0274200439, -0.1350097656, 0.6162109375, 0.1748046875, -0.3862304688, 0.1146240234, 0.6284179688, -2.16796875, 1.388671875, -0.8505859375, -1.326171875, -0.1989746094, -0.8237304688, 0.0189056396, 0.458984375, 0.1041870117, -0.6284179688, 1.0029296875, 0.7998046875, 0.8471679688, -0.3071289062, 0.9072265625, -0.2340087891, 0.1099853516, 0.0529174805, -0.1074829102, 0.2951660156, -0.2393798828, 0.4111328125, 0.4343261719, 0.7836914062, 1.0078125, -0.0079727173, -0.0881958008, -0.6791992188, 0.0863037109, -0.3371582031, -0.2727050781, -0.1467285156, -0.0804443359, -0.0632324219, -0.8452148438, 0.4379882812, -0.2111816406, -0.4809570312, 0.6787109375, -0.6684570312, -0.8696289062, 0.376953125, 0.791015625, 0.1928710938, 0.2209472656, -1.2236328125, -0.6064453125, 0.2222900391, 0.0033359528, 0.3466796875, -0.8032226562, 0.5927734375, -0.2232666016, 0.2333984375, -0.0473022461, 0.0380554199, 0.3557128906, -0.6254882812, 0.552734375, 0.5952148438, 0.9145507812, 0.4777832031, 0.2583007812, -0.7045898438, -0.6435546875, 0.1193237305, -0.2120361328, 0.0318908691, 0.4699707031, 1.240234375, -0.255859375, 0.2386474609, 0.9399414062, -0.3051757812, 0.3762207031, -0.1506347656, -0.0661621094, 0.0783691406, 0.076171875, -0.2993164062, 0.5170898438, 0.5302734375, -0.4172363281, -0.1635742188, 0.201171875, -0.2941894531, 0.3649902344, 0.2751464844, 0.1505126953, 0.2973632812, 0.4819335938, -0.5278320312, 0.1588134766, 0.8598632812, -0.5234375, 0.341796875, 1.341796875, -0.1623535156, 0.1318359375, 0.703125, 0.5805664062, 0.2834472656, 0.1711425781, -0.2318115234, 0.1041870117, 0.2360839844, 0.72265625, -0.55078125, 0.043548584, -0.53515625, 0.6821289062, 0.5239257812, -0.3154296875, -0.4421386719, 0.8813476562, 0.5776367188, 0.1667480469, -1.33984375, -0.205078125, -0.3176269531, -0.8569335938, 0.5971679688, 0.4548339844, -0.3403320312, 0.3305664062, 0.1688232422, 1.0869140625, -1.5029296875, 0.6923828125, -0.7221679688, 0.6875, 0.7661132812, 0.4501953125, 0.2548828125, -0.9106445312, -0.1357421875, 0.3107910156, -0.9809570312, -0.1224365234, -0.7060546875, 1.53515625, 0.7358398438, -0.2583007812, -1.5966796875, 0.8032226562, 0.9702148438, -0.3393554688, -0.828125, -0.6108398438, -0.7377929688, -0.092956543, 0.0192565918, -0.8081054688, 0.4543457031, -0.8837890625, -1.0771484375, -1.1923828125, -0.3840332031, -0.8461914062, 0.1931152344, -0.6689453125, -0.71484375, -0.2307128906, 0.6362304688, -0.0639648438, -0.0846557617, -0.3525390625, -0.568359375, 0.1024780273, -0.7690429688, 0.3603515625, -0.5610351562, 0.7236328125, -0.6865234375, -0.6440429688, -1.0673828125, -0.0954589844, 1.0830078125, 0.2260742188, 0.6865234375, -0.3542480469, 0.4299316406, 1.091796875, -0.7958984375, 0.2739257812, 0.65625, 0.2001953125, 0.122253418, 0.2370605469, -0.7758789062, 0.0001797676, 0.3698730469, -0.5297851562, -0.3820800781, -1.111328125, 0.3276367188, 0.9282226562, -0.3791503906, 0.5639648438, -0.6352539062, -0.2322998047, 0.0392456055, -1.33984375, 0.6586914062, 1.0244140625, -0.1756591797, -0.2131347656, 0.0112457275, 1.150390625, -0.3618164062, 1.0302734375, -0.0066375732, -0.1735839844, -0.5483398438, 0.7587890625, -1.275390625, -0.6118164062, -0.5737304688, -0.0106735229, 0.5888671875, 0.0563659668, 0.3090820312, 0.33984375, -0.5751953125, -0.6225585938, -0.447265625, -0.0795898438, -0.0313720703, 0.4797363281, 0.1395263672, 0.1760253906, 0.1060180664, -0.2800292969, 1.166015625, -0.7065429688, 0.4145507812, 0.158203125, -0.0720825195, -0.1776123047, 0.458984375, -0.052947998, -0.658203125, 0.1551513672, -0.5288085938, 0.2467041016, 0.8291015625, 0.609375, 0.4045410156, -0.1760253906, -0.2209472656, 0.4782714844, -0.6577148438, 0.8315429688, 0.1346435547, -0.5541992188, 0.9360351562, 0.4401855469, 0.0594177246, 0.9467773438, -0.8510742188, -0.2144775391, -0.1302490234, 0.958984375, -0.990234375, 0.0122680664, -0.0678710938, 0.7290039062, -1.0166015625, -0.6518554688, 0.1633300781, -0.2145996094, 0.9711914062, 0.6796875, 1.4267578125, 1.56640625, -0.3759765625, 1.0751953125, -0.2333984375, -0.0731811523, -0.5004882812, -0.8793945312, 1.0078125, 1.103515625, 0.2301025391, -1.7470703125, 0.1063842773, 0.5795898438, -0.1975097656, 0.0081558228, -0.8310546875, 1.46875, -1.4072265625, 0.3620605469, -1.171875, -0.1442871094, -1.0927734375, 0.0321044922, 0.3820800781, -0.2473144531, 0.6694335938, -0.0196075439, -1.48046875, 0.6025390625, 0.31640625, -0.7465820312, -0.1033325195, -0.0509338379, 0.2563476562, -1.6298828125, 0.0348205566, -0.1732177734, -0.7978515625, -0.1682128906, 0.0500488281, -0.5473632812, -0.5981445312, -0.3784179688, -1.2099609375, -0.5649414062, -0.3562011719, 0.4201660156, 1.3779296875, 0.1596679688, -0.8427734375, -0.1477050781, -0.5375976562, -0.0575256348, 0.2524414062, -0.8930664062, -0.193359375, -1.1015625, -0.5854492188, -1.2763671875, 0.4682617188, 0.4211425781, -1.2021484375, 1.1376953125, 0.2401123047, 0.6235351562, -2.126953125, 0.1674804688, -0.1110839844, -0.0379333496, -0.2553710938, 0.685546875, -1.068359375, 0.6215820312, -0.1782226562, 0.7231445312, -0.45703125, 0.298828125, 1.6484375, 1.0869140625, 0.2641601562, 0.3989257812, -0.9833984375, 0.4216308594, -0.9892578125, 0.0666503906, 0.3283691406, -0.7280273438, 0.78125, 0.462890625, -0.4304199219, 0.0653686523, -0.2651367188, 0.1181640625, -0.8740234375, -0.0075569153, -0.0341186523, 1.1005859375, 0.4975585938, 0.1661376953, 0.0738525391, -0.1531982422, -0.2274169922, 0.970703125, 0.5483398438, 0.529296875, -0.6186523438, -0.3530273438, -1.0947265625, -0.416015625, 1.0927734375, -0.4890136719, -0.0043563843, 0.5356445312, 0.564453125, 0.5029296875, 0.6982421875, -0.3051757812, 0.2863769531, -0.1999511719, -0.29296875, -0.1319580078, -0.2193603516, -0.0162353516, -0.8740234375, -0.3256835938, 0.2961425781, 0.7749023438, -1.3759765625, 0.6108398438, 0.3041992188, 0.2347412109, 0.3854980469, -0.1513671875, -0.685546875, 1.1708984375, -0.1462402344, 0.4384765625, -0.4489746094, 1, -0.32421875, 0.7041015625, -0.040222168, -0.0593261719, -0.2692871094, 0.3779296875, -0.9428710938, -0.42578125, 0.0114898682, 0.4050292969, 0.2556152344, -0.5302734375, 0.9521484375, -0.5366210938, 0.1149902344, 0.5854492188, 0.1776123047, 0.2056884766, 0.2039794922, -1.2841796875, -0.53125, -0.2658691406, -0.962890625, 0.0838012695, 0.4738769531, 0.2697753906, 0.4462890625, -0.62890625, 0.8911132812, -0.3139648438, -0.3093261719, 0.7080078125, -0.1947021484, -0.3876953125, -0.1657714844, -0.0403747559, -0.693359375, -0.2431640625, 1.1162109375, 0.525390625, 0.3452148438, -0.4106445312, 0.5297851562, 0.2512207031, 0.6821289062, -0.4750976562, -0.0409851074, -0.7631835938, -0.0512084961, 0.32421875, -0.5639648438, 0.3127441406, 0.2678222656, -0.3227539062, 0.7172851562, 0.4353027344, -0.7124023438, -0.0059432983, -0.5903320312, -0.9096679688, -0.3840332031, -0.9458007812, 0.1563720703, -0.8393554688, -0.2407226562, -0.314453125, -0.3205566406, 0.27734375, -0.2629394531, -0.484375, 0.7788085938, 0.7084960938, 0.3647460938, 0.8178710938, 0.66796875, -0.4030761719, -0.0333557129, 0.79296875, -0.580078125, -0.6943359375, -0.4765625, 0.740234375, 0.5727539062, 0.2135009766, 0.4724121094, 0.44921875, -1.30078125, 0.7568359375, -1.08203125, 0.2456054688, -0.055847168, 0.8295898438, -0.2122802734, -0.1239013672, 0.9482421875, 0.8852539062, 0.3974609375, 1.029296875, 0.1761474609, -0.3679199219, -0.470703125, 0.1192016602, -0.1558837891, 0.1295166016, -0.6118164062, -0.3564453125, 0.4096679688, -0.4250488281, -0.9311523438, 0.7114257812, -0.0044212341, -1.685546875, -0.2181396484, -1.11328125, 0.0339050293, 0.7583007812, -0.8569335938, 0.2944335938, -0.9619140625, -0.5361328125, -0.5141601562, 0.3784179688, 0.5405273438, -0.1988525391, -0.3864746094, -0.2103271484, -0.123840332, 0.59375, -1.482421875, 0.3547363281, 0.6435546875, -0.7436523438, -0.1359863281, -0.0733642578, -0.7553710938, -0.0673828125, 0.3920898438, -0.0236816406, 0.525390625, 0.2724609375, 0.6616210938, 0.4243164062, -0.66796875, -0.0079040527, 0.0304260254, -0.8803710938, 0.2556152344, -0.0277862549, 0.4677734375, 1.9306640625, 0.4094238281, -0.517578125, -0.775390625, 0.3132324219, 0.1213989258, -0.5541992188, 0.4133300781, -0.0745239258, -0.7265625, 1.2021484375, 0.2062988281, 0.0425415039, 0.3996582031, -0.9848632812, -1.03125, -0.5590820312, 1.2744140625, 0.3903808594, -0.1662597656, -0.7182617188, 0.0160217285, 0.1104125977, -0.0700073242, 0.4594726562, 0.1751708984, -0.3264160156, 0.8090820312, -0.9799804688, 0.69140625, 0.3000488281, -1.4462890625, 0.8217773438, 0.0665893555, -0.6489257812, -0.5263671875, -0.142578125, -0.6098632812, -0.4833984375, -0.537109375, -0.5258789062, -0.5932617188, 0.4692382812, -0.3723144531, 0.8911132812, -0.6196289062, -0.466796875, -0.3522949219, -0.7807617188, -0.59765625, 0.0307006836, -0.3266601562, -0.5029296875, 0.5576171875, 0.5771484375, -0.50390625, -0.90625, -1.2802734375, -0.5649414062, 0.9643554688, -0.3608398438, -0.5483398438, 1.1083984375, -0.8549804688, -0.8525390625, 0.3151855469, 0.5834960938, -0.4916992188, -0.603515625, 0.9086914062, -1.37109375, -0.1802978516, -0.1422119141, 1.1513671875, 0.2768554688, -1.291015625, 1.1689453125, -0.1687011719, 1.126953125, -0.54296875, -0.059753418, -0.4047851562, -0.5024414062, -1.6875, 0.1867675781, 0.4694824219, 1.0986328125, -0.2077636719, -0.56640625, 0.3635253906, -0.6728515625, 0.2053222656, -0.1032714844, -0.6328125, 0.4768066406, 0.990234375, 0.0497741699, -0.2329101562, -0.4440917969, -0.4931640625, -0.28125, 0.7861328125, -0.4533691406, -0.4484863281, -0.4453125, -0.7900390625, 0.2322998047, -1.259765625, -0.4423828125, -0.0602722168, -1.5380859375, -0.0700073242, 1.263671875, -0.982421875, 0.4431152344, -0.1010131836, -0.1867675781, 0.0353393555, -0.5249023438, 0.2692871094, -0.1134643555, 0.1368408203, 0.3615722656, -0.1038208008, 0.4094238281, -0.4763183594, -0.203125, 0.58984375, 0.4494628906, 0.7939453125, -0.0969238281, -0.9038085938, 0.4814453125, 0.0998535156, 0.3171386719, -1.5380859375, 0.0962524414, 0.1618652344, -0.3505859375, 0.7241210938, -0.2619628906, -0.93359375, 0.6958007812, -0.6225585938, -0.3322753906, -0.8930664062, -0.0165710449, 0.0240631104, 0.1302490234, -0.5302734375, 0.4255371094, -0.59375, -0.9565429688, 0.734375, 0.0754394531, -0.5478515625, -0.9487304688, -0.0278625488, 0.2054443359, -0.1649169922, 0.5493164062, 1.015625, 0.0800170898, -0.2075195312, -0.3725585938, 0.509765625, -0.2064208984, -0.7607421875, 0.063659668, 0.4975585938, 0.1291503906, -0.3386230469, -0.3056640625, -0.3386230469, -0.1212158203, 0.1363525391, 0.6752929688, 0.3449707031, 0.3901367188, 0.908203125, -0.9985351562, 0.7338867188, 0.3564453125, 0.0309448242, -0.7138671875, -0.7250976562, -0.0971069336, -0.62890625, -0.4621582031, 0.6318359375, -0.4641113281, 0.0547485352, -0.3686523438, 1.2392578125, -0.5717773438, 0.0522766113, -0.6088867188, -0.0259246826, -0.3303222656, -0.3916015625, 0.3022460938, 0.80078125, 0.4619140625, -0.5581054688, -0.2257080078, -0.3361816406, 0.6235351562, 0.3344726562, 1.85546875, -1.2783203125, -0.0337219238, 1.0478515625, 0.1671142578, -0.859375, -0.0963745117, -0.1186523438, 1.3232421875, 0.5141601562, -0.7612304688, -0.5317382812, -1.095703125, -1.119140625, 0.2142333984, 0.9584960938, 0.2687988281, 0.09765625, -0.9047851562, -0.8115234375, 0.8837890625, -0.0144500732, 0.4633789062, 0.1354980469, 0.2427978516, -0.9272460938, 0.4445800781, -0.2958984375, -0.0063667297, -0.2895507812, 0.2932128906, 0.6162109375, 0.1898193359, -0.0774536133, 0.73828125, -1.3828125, -0.1260986328, -0.1806640625, 0.2481689453, 0.2885742188, 0.8608398438, -0.8608398438, -0.2048339844, 0.458984375, -0.5737304688, 0.7368164062, 0.1567382812, 0.2119140625, -0.3134765625, 0.0445251465, -0.2863769531, -0.3889160156, -0.4802246094, -1.5791015625, 0.6342773438, 0.544921875, 0.1203613281, 0.5561523438, -0.5537109375, -0.8012695312, -0.8374023438, -0.3464355469, -0.59375, -1.1376953125, -1.1552734375, 0.1413574219, -0.9907226562, 0.833984375, -1.3994140625, -1.2763671875, 0.5239257812, 0.0749511719, -0.2407226562, 0.1636962891, -0.3598632812, -0.2349853516, 0.3198242188, 0.0931396484, -1.2587890625, -0.0592956543, -0.4924316406, 0.3010253906, -1.28515625, -0.5712890625, 0.3845214844, 0.4116210938, 0.7856445312, 0.3142089844, 0.6982421875, -0.916015625, -0.357421875, -0.038482666, -0.4853515625, 1.1337890625, -0.828125, 0.0226135254, 0.2357177734, 1.1533203125, -0.7016601562, 1.0361328125, 0.3015136719, -0.9521484375, 0.5610351562, 0.0829467773, 0.5205078125, 0.6928710938, -0.470703125, -0.1589355469, -0.3605957031, -0.4462890625, -0.121887207, -0.5126953125, 0.4123535156, -0.6806640625, -0.1080932617, 0.4465332031, -0.3869628906, -0.1006469727, -0.3767089844, 0.1303710938, -0.8583984375, -1.685546875, 0.0869140625, -0.1363525391, -0.6762695312, 0.2961425781, -0.0491027832, -1.060546875, 0.1975097656, -0.0112533569, 1.1728515625, 0.0989379883, 0.8413085938, 0.6684570312, -0.5908203125, 0.2619628906, -0.0262145996, -0.2861328125, -0.5009765625, 0.3728027344, -0.4638671875, 0.063293457, -0.2956542969, -0.9287109375, 0.544921875, 1.125, 1.130859375, 0.6767578125, 0.4326171875, -12.7265625, -0.0725708008, -0.59375, 0.1390380859, -0.1812744141, -0.1157836914, 1.189453125, -0.5854492188, -0.5107421875, 0.1458740234, -0.2912597656, -0.1925048828, -0.8901367188, 0.088684082, -0.0105056763, -0.5805664062, -0.7705078125, -1.302734375, 1.1220703125, -1.1171875, 0.3791503906, 0.3266601562, -0.1481933594, -1.2958984375, 1.7138671875, 0.1516113281, 0.3747558594, 0.873046875, 0.019241333, -0.1293945312, 0.3642578125, -0.24609375, -0.5307617188, 0.5043945312, 0.9428710938, -0.677734375, 0.1490478516, 0.5258789062, 0.2044677734, -0.4536132812, -0.2235107422, 1.234375, -0.3771972656, 0.0277252197, -0.1431884766, 0.58984375, -0.2658691406, 0.2449951172, -0.3684082031, -0.4060058594, 1.3193359375, 0.2917480469, 0.5815429688, 0.0123519897, -1.6513671875, 0.1380615234, -0.2556152344, -0.1123046875, -0.0217132568, 0.3603515625, -0.1084594727, 0.5336914062, 0.3693847656, -0.0253753662, 0.6186523438, -0.0774536133, 0.4663085938, 0.1754150391, 0.533203125, -0.4484863281, 0.0042610168, -1.03125, 0.3215332031, -0.1014404297, 1.3515625, 1.388671875, 0.3891601562, -0.3220214844, 0.2081298828, 1.087890625, 0.5366210938, 0.578125 ]
A hub in Windows Phone 7.x and later devices. For Android it includes a built-in browser Bing Rewards The ability to set the device's lock screen based on Bing's daily images. The Bing app is available in the U.S. on a variety of Windows phones, Android platform devices, all BlackBerry devices, several BREW devices, iPhone and iPod Touch, and Sidekick devices. In April 2015 Microsoft redesigned the Google Android and iOS versions of Bing Mobile and implemented several new "cards" such as the "image of the day card" which shows Bing's rotating images and additional information, the "popular now card" which contains information on the most popular searched items of that day, a "Bing Rewards card" which shows the user's Bing Rewards points and serves as a central hub for Bing's search settings, a "Settings card" where users can alter their Safe Search filter and change what content they can see and which content they do not want to see, and a "Footer card" which gives users the ability to send feedback to Microsoft.
[ 0.3129882812, -0.3046875, -0.2954101562, -0.0830688477, -0.0761108398, -0.4111328125, -0.2202148438, -0.6005859375, 0.9565429688, 0.3974609375, 0.1646728516, 0.2420654297, 0.056060791, 0.4855957031, -0.6875, 0.4609375, -0.0772094727, -0.31640625, 1.37109375, -0.0283508301, -0.0671386719, -0.78125, -0.349609375, -0.9521484375, 0.9633789062, 0.0273132324, -1.2216796875, 0.4008789062, -1.419921875, 0.0693969727, 0.6357421875, 0.1108398438, -0.8115234375, 0.7934570312, -0.0361938477, 0.7197265625, -0.0050544739, 0.1889648438, -0.1253662109, -0.1845703125, 0.5073242188, -0.1198730469, 0.3835449219, -0.3205566406, 0.5717773438, 0.4809570312, 0.4833984375, -0.0414733887, -0.0059127808, 0.6616210938, -1.3916015625, 0.4870605469, -0.0714111328, 0.1354980469, -0.0638427734, -0.1038818359, -0.0217437744, -1.267578125, 0.3515625, 0.6821289062, -0.1071777344, 0.6215820312, -0.092590332, -0.4460449219, -0.1568603516, 1.095703125, 0.0718383789, 0.2512207031, -0.8271484375, -0.1463623047, 0.6235351562, 0.8471679688, 0.0861816406, -0.5771484375, 0.2749023438, -0.1945800781, -0.6577148438, 0.2393798828, 0.1765136719, 0.1194458008, -0.619140625, 0.73046875, 0.638671875, 0.8432617188, -0.1265869141, 0.4089355469, -1.138671875, 0.0933837891, -0.48046875, -0.0729370117, 0.3254394531, 0.505859375, 0.3395996094, -0.4899902344, 0.3005371094, 0.1370849609, -0.003452301, -0.5258789062, -0.654296875, 0.4321289062, 1.1767578125, -0.1340332031, -0.69140625, 0.2017822266, -0.2575683594, 0.3989257812, -0.1336669922, 1.01953125, -0.4494628906, 0.8173828125, 0.724609375, 0.6748046875, -0.4379882812, 0.3244628906, -0.2565917969, -0.69921875, 0.3237304688, -0.2250976562, 0.0204925537, 0.876953125, -0.1135864258, -0.3298339844, -0.0716552734, -0.818359375, 0.9018554688, -0.0764770508, 0.3305664062, 0.69921875, -0.1501464844, 1.1171875, -0.3803710938, 0.3676757812, -0.2138671875, 0.8999023438, 0.970703125, 0.4560546875, -0.53125, 1.001953125, 0.37109375, -0.0575256348, -0.4416503906, -0.2922363281, 0.1617431641, -1.4140625, 1.17578125, 0.0693359375, -0.5751953125, 0.5092773438, -0.8916015625, 0.1519775391, -1.51953125, 1.2705078125, -0.4487304688, 0.5625, 1.3310546875, 0.6640625, -0.4116210938, -0.2357177734, -0.7548828125, -0.3723144531, -1.171875, -1.19140625, 0.1788330078, 0.3425292969, 0.0373840332, -0.3017578125, -0.892578125, 0.7197265625, 1.21484375, -0.0786132812, -1.3974609375, -0.5249023438, -1.578125, -0.3469238281, 0.5961914062, -0.0681762695, 0.1185913086, 0.0824584961, -0.0455932617, -1.7919921875, -0.3259277344, -0.8999023438, 0.2612304688, -0.7407226562, -0.396484375, -0.1424560547, 0.2015380859, 0.560546875, 0.3256835938, -0.7729492188, 0.6596679688, -0.4680175781, -1.099609375, -0.2590332031, -0.2751464844, -0.0704345703, -0.0990600586, -0.1770019531, -1.1708984375, -0.0993041992, 0.2509765625, -0.0322570801, 0.2341308594, -0.1746826172, 0.255859375, 0.0946044922, -0.8510742188, 0.7138671875, 0.81640625, -0.1766357422, 0.0631713867, -0.2109375, -0.5620117188, 0.7993164062, 0.4677734375, 0.3215332031, -0.8266601562, -0.9497070312, 0.3552246094, 0.7690429688, -0.1422119141, 0.3505859375, -0.8583984375, -0.6831054688, -0.7729492188, -1.3896484375, 0.2302246094, -0.1938476562, -0.0980224609, 0.4221191406, 0.3264160156, 0.1053466797, -0.1468505859, -0.5927734375, -0.6196289062, -0.1233520508, -0.2917480469, 0.1813964844, -0.3083496094, -0.3312988281, -0.5278320312, -0.3186035156, 0.4772949219, -0.2619628906, 0.3225097656, 0.24609375, -0.6665039062, -0.7524414062, 0.3447265625, 0.3859863281, 0.96484375, 0.1211547852, -0.3562011719, 0.1153564453, -0.2553710938, -1.00390625, 0.9965820312, 0.0601196289, -0.6909179688, -0.3303222656, -0.1789550781, 0.2946777344, 1.00390625, -0.4558105469, 0.0901489258, -0.2687988281, 0.2888183594, -0.4067382812, 0.4497070312, -0.275390625, -0.1345214844, -0.8491210938, -0.0927734375, 1.12109375, -0.0506896973, 0.032409668, 0.1519775391, -0.3527832031, -0.1043701172, 0.6162109375, 0.4760742188, 0.2951660156, -0.3974609375, -0.3332519531, -0.0801391602, 0.2114257812, -0.4997558594, 0.9106445312, -0.5366210938, 0.7333984375, -0.1610107422, -0.1187133789, -0.5600585938, -1.1884765625, 1.021484375, 0.7084960938, 0.3063964844, 1.6025390625, -0.102722168, 0.0791015625, -0.9140625, -0.2414550781, -0.6040039062, -0.0975952148, 0.9833984375, 1.244140625, 0.4221191406, -1.373046875, -0.4130859375, 0.5815429688, -0.2237548828, 0.6611328125, -0.4211425781, 0.919921875, -1.2265625, -0.1807861328, -0.4985351562, -0.7934570312, -0.9780273438, 0.5161132812, 0.4572753906, -0.5166015625, 0.2963867188, -0.775390625, -0.8481445312, 0.478515625, 0.2386474609, -0.2839355469, 0.6606445312, -0.755859375, -0.0469665527, -1.1044921875, -0.3295898438, -0.0222930908, -0.4072265625, -0.7241210938, 0.4790039062, -1.21484375, 0.0267181396, -0.6030273438, -0.0473937988, -0.1545410156, 0.0491943359, 0.7182617188, 0.4460449219, -0.2744140625, -0.5639648438, -0.5795898438, -0.7158203125, -0.4812011719, -0.4594726562, -0.5717773438, -0.1182861328, -0.7915039062, -0.0114517212, -1.1416015625, -0.0051307678, 0.1083984375, -1.37109375, 1.0458984375, 0.2778320312, 0.5483398438, -1.77734375, -0.0782470703, -0.2374267578, 0.3190917969, 0.1743164062, 0.6958007812, -1.21484375, 0.1115112305, -0.4228515625, 0.423828125, -0.6538085938, 0.0272674561, 0.3723144531, 0.1279296875, 1.2265625, -0.2741699219, -0.7749023438, -0.0520935059, 0.3254394531, 0.6352539062, -0.0374145508, -0.2834472656, 0.1713867188, 0.6694335938, -0.5400390625, -0.2766113281, -0.0994262695, 0.2150878906, -0.7900390625, -0.0703735352, -0.4018554688, 0.736328125, 0.2003173828, -0.1303710938, 0.4020996094, 0.2790527344, -0.0754394531, 1.015625, 0.3391113281, 0.4753417969, -0.912109375, 0.3264160156, -2.01953125, 0.4384765625, 1.251953125, 0.6220703125, 0.4184570312, 0.19140625, 1.1904296875, 0.1695556641, 0.75, -0.1423339844, 0.564453125, -0.0833740234, -0.054107666, -0.7280273438, -0.0611877441, 0.2362060547, 0.0998535156, -1.21875, 0.7255859375, 0.073425293, -1.708984375, -0.0190887451, 0.0273742676, -0.5854492188, -0.1204223633, -0.4616699219, -0.9521484375, 1.13671875, 0.3544921875, 0.1087036133, -0.7846679688, 0.2147216797, -0.1646728516, 0.5288085938, 0.0208587646, -0.0555419922, 0.181640625, 0.3764648438, 0.2497558594, -0.2232666016, 0.5698242188, -0.3276367188, 1.0927734375, -0.5205078125, 0.896484375, 0.2208251953, -0.1420898438, 0.4011230469, -0.0371704102, 0.4594726562, 0.7504882812, -0.3283691406, -0.4025878906, -0.9536132812, -0.4602050781, -0.427734375, 0.1232299805, 0.0272369385, 0.1253662109, -1.0712890625, 1.47265625, 0.0365905762, -0.9008789062, 0.2907714844, -0.2027587891, 0.4353027344, -0.2670898438, -0.4079589844, -0.7934570312, -0.8442382812, 0.3957519531, 0.0194702148, 0.6611328125, -0.2565917969, 0.4299316406, 0.5849609375, 1.0205078125, -0.1428222656, -0.3657226562, -0.3918457031, -0.3366699219, -0.2077636719, -0.3425292969, 0.1540527344, -0.3051757812, -0.3759765625, 0.8950195312, -0.092956543, -0.3825683594, -0.2399902344, -0.2880859375, -0.3217773438, -0.9604492188, 0.0139770508, -0.9409179688, -0.2595214844, 0.8032226562, -0.8896484375, -0.2902832031, -0.818359375, -0.0221099854, -0.763671875, 0.4963378906, 0.1627197266, -0.2575683594, 0.0183258057, 1.111328125, -0.0506591797, 0.3835449219, 0.6616210938, -0.482421875, -0.6186523438, -0.4282226562, 0.4572753906, 0.8095703125, -0.3728027344, 1.009765625, 0.6279296875, -0.349609375, 0.7280273438, -0.3798828125, 0.1793212891, 0.5034179688, 0.7294921875, 0.2746582031, 0.8784179688, 0.7358398438, 0.7797851562, 0.2069091797, 1.8916015625, 0.0687255859, -0.4465332031, 0.3540039062, -0.19140625, 0.1348876953, 0.3156738281, -0.0982666016, -0.3835449219, 1.26171875, -0.7231445312, -0.2358398438, -0.1324462891, -0.1864013672, -1.5986328125, -0.43359375, -0.3942871094, -0.0701293945, -0.1423339844, -1.0400390625, -0.8159179688, 0.0279693604, -0.2177734375, -0.1494140625, -0.0395507812, 0.3122558594, 0.3466796875, -0.0008120537, -0.5, 0.70703125, 0.2551269531, -1.3515625, 0.0789794922, 0.423828125, -0.5122070312, -0.6728515625, -0.0722045898, -0.4621582031, 0.0126266479, -0.3305664062, -0.2629394531, 0.3603515625, 0.0277557373, 0.3488769531, 0.0790405273, -0.2465820312, 0.2932128906, 0.5302734375, -0.28515625, 0.0740966797, -0.8212890625, 0.3603515625, 0.1667480469, 0.106262207, 0.0792236328, -0.1678466797, 0.4233398438, -0.2291259766, -0.8510742188, 0.1232299805, 0.5327148438, -0.7006835938, 0.5590820312, -0.4399414062, -0.0470275879, 0.5180664062, -0.4348144531, -0.87890625, -0.4108886719, 1.1884765625, 1.0771484375, 0.3215332031, -0.4575195312, -0.9252929688, 0.798828125, -0.2990722656, -0.1072387695, 0.3745117188, -0.0758666992, 0.7768554688, -0.1300048828, 0.8149414062, 0.3410644531, -1.09765625, 1.107421875, 0.2476806641, -0.8999023438, -0.8930664062, -0.5659179688, -1.47265625, 0.2376708984, 0.0103225708, -0.6513671875, -0.7099609375, 1.1484375, -1.0087890625, 0.4523925781, -0.7548828125, 0.3425292969, 0.3122558594, -0.228515625, -0.7197265625, -0.0654296875, -0.4462890625, -0.3811035156, 0.3500976562, -0.041015625, -0.287109375, -0.849609375, -0.3728027344, -0.0342102051, 0.2578125, 0.0364074707, 0.1090698242, 0.9912109375, -0.1098632812, -0.8525390625, 0.3171386719, 0.1851806641, -0.0043983459, -0.5859375, 0.9423828125, -0.9609375, -0.1034545898, -0.1145629883, -0.0395202637, -0.1020507812, -0.7080078125, 1.6611328125, -1.5322265625, 0.5126953125, -0.8305664062, 0.9760742188, -0.3093261719, 0.396484375, -1.189453125, 0.2456054688, 0.3542480469, 0.2971191406, -0.951171875, 0.52734375, 0.3332519531, 0.6811523438, -0.5107421875, -0.0181274414, -0.9946289062, 0.7373046875, 0.5756835938, -0.0235443115, -0.6435546875, 0.1823730469, -0.2084960938, -0.4689941406, 0.9638671875, 0.1303710938, 0.0102844238, -0.3986816406, -1.900390625, -0.2739257812, -0.720703125, 0.2604980469, -0.5385742188, -1.8544921875, 0.0840454102, 0.2978515625, -0.58203125, 0.3903808594, 0.0643920898, -0.6298828125, -0.3569335938, -1.00390625, 0.2534179688, -0.2766113281, 0.8295898438, 0.1434326172, -0.0281677246, 0.4602050781, 0.1119384766, 0.3166503906, 0.3244628906, -0.4904785156, 1.33984375, 0.4899902344, -1.6923828125, 0.1594238281, -0.2015380859, -0.4008789062, -1.39453125, 0.251953125, 0.044708252, -0.6606445312, 0.1379394531, 0.76953125, -0.3786621094, -0.107421875, -0.607421875, -0.080078125, -0.2038574219, 0.4523925781, -0.1711425781, -0.2052001953, -0.6430664062, 1.302734375, -1.0986328125, 0.0629272461, -0.0424194336, -0.2392578125, 0.0977172852, -0.3779296875, -0.0713500977, -0.2548828125, -1.0087890625, 0.6630859375, 0.9873046875, 0.2388916016, -0.4382324219, -0.9672851562, 0.9877929688, -0.1495361328, -0.591796875, 0.9208984375, -0.2098388672, 0.2888183594, -1.001953125, -1.0771484375, -0.2729492188, -0.6791992188, -0.2255859375, 0.3420410156, 0.6005859375, 0.3325195312, 0.515625, -1.25390625, 0.3083496094, 0.869140625, 0.0200653076, -1.1103515625, -0.1458740234, 0.1430664062, -0.5014648438, -1.0576171875, 0.1151123047, -0.4665527344, 0.2768554688, -1.5205078125, 0.7143554688, -0.62890625, -0.3273925781, -0.4624023438, -1.052734375, -0.5200195312, -0.5947265625, 0.4265136719, 0.3383789062, 0.5263671875, 1.234375, -0.4868164062, -0.2600097656, 0.826171875, 1.0068359375, 1.0849609375, -0.564453125, 0.1233520508, -0.0192260742, -0.1588134766, -1.2314453125, 0.2980957031, -0.4675292969, 0.509765625, -0.3269042969, -1.0546875, 0.2030029297, -0.1002807617, -0.5649414062, 0.0837402344, 0.2956542969, -0.40234375, -0.3872070312, -0.34765625, -1.0888671875, 1.1171875, 0.3989257812, -0.2939453125, -0.3146972656, 0.4401855469, -0.9467773438, 0.9448242188, -0.3679199219, 0.46875, -0.5200195312, 0.1457519531, 1.25390625, 0.2900390625, -0.1864013672, 1.142578125, -1.5439453125, -0.1884765625, -0.0807495117, 0.0420227051, 0.517578125, 0.9702148438, -0.4692382812, 0.515625, 0.9184570312, -0.6674804688, 0.669921875, -0.0439758301, 0.0451660156, -0.8872070312, 1.2978515625, -0.7446289062, -0.4636230469, -0.6362304688, -0.3464355469, 1.1689453125, 0.3647460938, -0.3996582031, 0.3581542969, -1.0341796875, -0.5654296875, -0.3115234375, -0.1735839844, -1.2294921875, -1.0390625, -0.6875, 0.544921875, -1.1748046875, 0.7641601562, -0.9282226562, -0.4946289062, -0.5087890625, 0.306640625, -0.6181640625, -0.0130996704, 0.1153564453, -0.0960083008, -0.0120239258, -0.1578369141, -0.2705078125, -1.05078125, 0.2062988281, -0.118347168, -0.9506835938, -0.1611328125, 0.2980957031, -0.0938720703, 0.3354492188, 0.3420410156, 0.2412109375, 0.322265625, -1.59765625, -0.7602539062, -0.7333984375, 0.1033325195, -0.5795898438, -0.0401000977, 0.2578125, 1.376953125, -0.8754882812, 0.6821289062, 0.447265625, -0.7573242188, 0.1915283203, -0.1106567383, 0.2142333984, 0.2985839844, 0.9990234375, -0.8608398438, -0.0949707031, -0.4304199219, 0.4645996094, -0.17578125, 0.5668945312, 0.2687988281, 0.0844726562, 0.0829467773, -0.6103515625, 0.3161621094, -0.4147949219, 0.0034389496, 0.5346679688, -0.9619140625, 0.3305664062, -0.1359863281, -0.0739135742, 0.4736328125, -0.4926757812, -0.8002929688, -0.0767822266, 0.2282714844, 1.3525390625, -0.0944213867, 1.744140625, 0.7124023438, -0.3395996094, -0.1322021484, 1.078125, 0.2509765625, -0.1315917969, -0.0137481689, 0.3444824219, 0.3024902344, 0.1074829102, -0.2810058594, -0.2266845703, 0.630859375, 0.8305664062, -0.8403320312, -0.1854248047, -13.3046875, 0.0476074219, 0.3371582031, 0.646484375, -0.5122070312, -0.28515625, 0.8481445312, 0.1616210938, -0.5102539062, -0.0066795349, 0.1867675781, -0.2702636719, -0.2237548828, 0.2670898438, 0.3605957031, -0.4936523438, -0.78125, -0.8188476562, 1, 0.4504394531, 0.8154296875, 0.9858398438, -0.2729492188, -0.6572265625, 1.2783203125, 0.2731933594, -0.6137695312, 0.8618164062, -0.1901855469, -0.0153274536, 0.5244140625, -0.0980224609, -0.861328125, 0.7456054688, 0.2529296875, 0.9296875, 1.2890625, 0.8862304688, -0.3803710938, -0.1994628906, 0.8764648438, 0.806640625, -0.1511230469, 0.8950195312, 0.1602783203, 0.609375, -0.2854003906, 0.0022468567, -0.2563476562, 0.5297851562, 1.251953125, 0.5825195312, 0.2666015625, 0.4499511719, -0.8994140625, 0.1424560547, -0.8647460938, 0.4670410156, -0.049621582, 0.7553710938, 0.2055664062, -0.2210693359, 0.2049560547, -0.2445068359, 0.4016113281, -0.5126953125, 0.6616210938, -0.2369384766, 1.15625, -0.3317871094, 0.5693359375, -1.951171875, 0.8881835938, -1.0615234375, 1.787109375, 1.2431640625, -0.3859863281, 0.2122802734, 0.0054740906, 0.8618164062, -0.4716796875, 0.1663818359 ]
iOS The Bing app for iOS (iPhone, iPod Touch, iPad) includes these further features: Barcode and cover art scanning Enhanced product listings Social updates from Facebook and Twitter Social search - see results from social network alongside web results Share search results on Facebook, Twitter, or through email Weather - get information about local and international weather Trending - see what news is trending in the world Image Match - upload an image and get results for similar looking images Sharing options through various messaging applications like WeChat and WhatsApp Bing 411 In the United States, Microsoft operated a toll-free number (1-800-BING-411 or 1-800-CALL-411) for directory assistance called Bing 411. This service was identical, except for the opening message, with the voice search service powered by Tellme on 1-800-555-TELL. Users were able to find local shops and restaurants and obtain driving directions, traffic reports, sports scores, stock quotes, news, and weather reports through this service. Service on 1-800-BING-411 and 1-800-555-TELL was discontinued on June 1, 2012. The 1-800-CALL-411 number was discontinued a few months later. See also Microsoft Cortana Windows Live Bing Audio Bing Vision MSN Mobile References External links Mobile Pocket PC software Windows Mobile software Windows Phone software Android (operating system) software IOS software Cross-platform software Internet properties established in 2010 es:Bing Mobile
[ 0.5668945312, -0.4455566406, -1.677734375, -0.0433959961, -0.4240722656, -0.1204223633, -0.2298583984, -0.7651367188, 0.6508789062, 0.2344970703, 0.2600097656, 0.3210449219, 0.5590820312, 0.2102050781, -1.5615234375, 0.2775878906, -0.5063476562, -0.0499267578, 0.3198242188, -0.1204833984, -0.3269042969, 0.0011720657, 0.7436523438, -1.7646484375, 0.8803710938, 0.017791748, -1.595703125, -0.2230224609, -1.00390625, 0.6923828125, 0.0064811707, -0.1394042969, -0.0424194336, 0.654296875, 0.1467285156, 1.0546875, -0.2692871094, 0.7973632812, 0.0292816162, -0.0221710205, 0.904296875, -0.7036132812, 0.677734375, -0.3662109375, -0.1829833984, 0.7260742188, 0.3754882812, 0.3110351562, -0.1334228516, 1.0380859375, -1.173828125, -0.3037109375, -0.2163085938, 0.002696991, -0.2486572266, -0.9799804688, -0.3522949219, -0.6689453125, -0.2114257812, 0.560546875, -0.1022338867, 0.6728515625, -0.9140625, 0.8266601562, 0.52734375, 0.4770507812, 0.1198120117, -0.1619873047, -0.537109375, 0.0275268555, 0.0654907227, 0.5659179688, 0.3332519531, -0.69921875, 0.4184570312, -0.6586914062, 0.0869140625, -0.2038574219, -0.4375, 0.5317382812, 0.0467529297, 0.014541626, 0.9331054688, 0.8403320312, 0.0548706055, 0.2149658203, -0.9794921875, -0.0204162598, 0.3708496094, -0.5517578125, 0.654296875, 0.3513183594, 1.1298828125, -0.9140625, 0.4614257812, 0.654296875, 0.2064208984, 0.55078125, -0.3176269531, 0.5517578125, 0.525390625, -0.1187744141, -0.3913574219, 0.484375, 0.9169921875, -0.0991210938, 0.41796875, 0.0822143555, -0.4809570312, 0.6948242188, 1.2734375, 0.1412353516, -0.4174804688, 0.5083007812, -0.4030761719, 0.1364746094, 0.6435546875, -0.4812011719, 0.263671875, 0.1854248047, -0.2727050781, -0.1182250977, 0.630859375, 0.1364746094, 0.2958984375, 0.3547363281, -0.1271972656, -0.0336914062, -0.0187835693, 1.5185546875, -0.564453125, -0.701171875, -0.3833007812, 0.6870117188, 0.7124023438, -0.0732421875, -0.6376953125, 0.4899902344, 0.1109619141, -0.1113891602, -0.3464355469, -0.1843261719, 0.4177246094, -0.92578125, 0.1455078125, -0.0822143555, -0.1689453125, -0.1226806641, 0.4992675781, 0.853515625, -0.5141601562, 0.4831542969, -0.4753417969, 0.6206054688, 1.3701171875, 1.12109375, 0.1950683594, -0.7939453125, -0.4094238281, 0.0507202148, -1.30078125, -0.140625, -1.1298828125, 0.4201660156, 0.5092773438, -0.0635375977, -0.9326171875, 0.3354492188, 1.3212890625, -0.3620605469, -0.1890869141, -0.3666992188, -1.1826171875, -0.5786132812, -0.431640625, -0.845703125, 0.4228515625, -0.3627929688, -0.0387573242, -1.1865234375, -0.4401855469, -0.7094726562, 1.0458984375, -0.4206542969, -0.5112304688, -0.734375, 0.1740722656, 0.4543457031, 0.3212890625, -0.3286132812, 0.0402526855, 0.4514160156, -1.1240234375, 0.2932128906, -0.8081054688, 0.5034179688, -1.16796875, -1.8876953125, -1.1328125, -1.0283203125, 0.3449707031, -0.2578125, -0.2391357422, -0.4360351562, 0.7172851562, 0.1082763672, -0.591796875, -0.1276855469, 0.7138671875, -0.3835449219, -0.0402526855, -0.0725097656, -0.8413085938, 0.9443359375, 0.3879394531, -0.5205078125, -0.2722167969, -1.3818359375, 0.7514648438, 0.7680664062, 0.1313476562, 0.7104492188, -1.5693359375, -0.970703125, 0.4226074219, -0.689453125, 0.3835449219, -0.1668701172, -0.5947265625, -0.4104003906, 0.4274902344, 0.2280273438, -0.0406188965, 0.0444946289, -0.1641845703, -0.1345214844, 0.3002929688, -0.671875, -1.0849609375, -0.3049316406, 0.0090789795, 0.9819335938, 0.79296875, 0.4094238281, 1.5234375, 0.5087890625, -0.7666015625, -0.7666015625, -0.051574707, 0.4453125, 0.2435302734, 0.5166015625, -0.7841796875, -0.6948242188, -0.0012578964, -0.1485595703, 0.984375, 0.1524658203, -0.21875, -0.6147460938, 0.0551757812, 0.794921875, 0.8237304688, -0.8178710938, -0.1508789062, 0.2290039062, -0.7153320312, -0.1600341797, 0.7250976562, -0.0117721558, 0.0485839844, -0.09375, -0.2607421875, 0.1968994141, -1.16015625, 0.83984375, -0.5532226562, -0.9213867188, 0.3862304688, 0.3579101562, -0.0801391602, 0.2634277344, -0.5961914062, -0.7177734375, -0.0097961426, 0.517578125, -0.3603515625, 0.9384765625, 0.4299316406, 0.1167602539, -0.5517578125, -0.3911132812, 0.5556640625, -0.767578125, 1.16015625, 0.80078125, 0.9819335938, 0.8315429688, 0.666015625, -0.1817626953, -0.95703125, -0.0927734375, -0.0104217529, -0.7690429688, 0.8334960938, 0.5834960938, -0.2156982422, -1.498046875, 0.0667724609, 0.4375, 0.0350036621, 0.0274505615, -1.2431640625, 0.642578125, -0.5234375, 0.2939453125, -0.544921875, -0.5893554688, -1.0400390625, -0.4992675781, 0.4650878906, -0.28515625, 0.5268554688, -0.8149414062, -1.201171875, 0.5327148438, 0.798828125, -0.6176757812, 0.2165527344, 0.2707519531, 0.5068359375, -0.80078125, 0.0711669922, -0.3842773438, -0.5024414062, 0.0371398926, 0.0144805908, -0.4543457031, -0.8432617188, -0.1932373047, -0.8256835938, -0.9248046875, -0.9555664062, 0.419921875, 0.509765625, 0.2425537109, -0.4765625, -0.4807128906, 0.2795410156, -0.4079589844, 0.4545898438, -0.8559570312, -0.0812988281, -0.4631347656, -0.0879516602, -1.25390625, 0.0822143555, 0.059173584, -1.6396484375, 1.291015625, -0.0469970703, 0.3935546875, -1.4609375, 0.2498779297, 0.5747070312, -0.0442810059, 0.275390625, 0.71875, -0.8930664062, -0.0175628662, -0.2111816406, 0.0930175781, -0.69140625, 0.6811523438, 0.6215820312, 0.2244873047, 0.5874023438, -0.4914550781, -1.111328125, 0.1654052734, -0.3022460938, -0.3986816406, 0.1078491211, -1.052734375, -0.5063476562, 0.2313232422, 0.0879516602, -0.2658691406, -0.3972167969, 0.201171875, -1.26953125, -0.5517578125, -0.634765625, 0.7763671875, 0.0941162109, 0.3061523438, 0.0751342773, -0.8798828125, -0.4536132812, 1.044921875, 0.0852661133, -0.1843261719, -0.3151855469, -0.0563049316, -1.46484375, 0.4016113281, 1.6845703125, 0.0555114746, 0.51953125, -0.2203369141, 0.9594726562, 0.0671386719, 1.0654296875, -0.3552246094, -0.0523376465, -0.0226593018, -0.5854492188, -0.0404663086, -0.0144424438, 0.2178955078, -0.625, -0.7133789062, 0.0555419922, -0.1809082031, -2.0390625, -0.0631103516, 0.0594177246, 0.52734375, 0.357421875, -0.3251953125, -0.2065429688, 1.03515625, 0.2763671875, 0.51171875, -1.037109375, 0.640625, 0.2353515625, 0.8901367188, -0.8173828125, 0.0873413086, 0.9047851562, 0.765625, 0.4216308594, -0.3974609375, -0.0569458008, 0.2084960938, 0.9301757812, -0.2995605469, 0.197265625, -0.3098144531, -0.4729003906, 0.2805175781, -0.5883789062, -0.1478271484, 0.0582580566, -0.7036132812, -0.13671875, -0.2077636719, -0.9892578125, -0.4616699219, 0.2673339844, 0.0651245117, 0.7548828125, -0.9985351562, 0.9741210938, -0.2137451172, -0.2622070312, 0.7065429688, 0.4182128906, -0.2082519531, 0.4262695312, 0.953125, -0.5317382812, -0.5249023438, 0.6357421875, 0.3305664062, 1.0361328125, -0.1875, 0.5322265625, 0.6435546875, 0.6005859375, -0.3637695312, -0.111328125, -0.2741699219, 0.0058441162, 1.2421875, -0.2580566406, 0.2442626953, 0.3881835938, -1.1318359375, 0.7900390625, 0.7700195312, 0.0679931641, 0.3210449219, 0.1221923828, -1.017578125, -0.765625, -0.3706054688, -0.76171875, -0.7465820312, 0.4194335938, -1.0556640625, -0.5029296875, -0.0362243652, -0.2680664062, -0.4030761719, -0.0138931274, 0.5776367188, 0.2120361328, -0.2712402344, 0.4384765625, -0.615234375, -0.2156982422, 0.8598632812, -0.1350097656, -0.5703125, -0.63671875, 0.6982421875, 0.4182128906, -0.6323242188, 0.8974609375, 0.65234375, -1.173828125, 0.677734375, -0.53125, -0.1021118164, 0.3107910156, 0.1625976562, 0.1267089844, 0.4533691406, 0.6171875, 0.4328613281, -0.1066894531, 2.19921875, -0.1416015625, 0.0038852692, -0.7353515625, 0.509765625, 0.2648925781, -0.0065574646, -0.919921875, -0.4870605469, 1.115234375, -0.9052734375, -0.5590820312, 0.9755859375, -0.3349609375, -1.54296875, -0.8037109375, -0.3293457031, -0.8354492188, 0.3481445312, -1.3916015625, -0.7724609375, -0.5366210938, -0.5166015625, -0.8784179688, 0.1461181641, 0.9731445312, 0.0753173828, -0.6586914062, -0.2868652344, 0.0327453613, 0.5439453125, -1.328125, -0.1453857422, 0.5131835938, -0.8334960938, -0.4765625, -0.0765991211, -1.7607421875, 0.0913696289, 0.1833496094, 0.0053787231, 0.1419677734, 0.130859375, 0.5766601562, 1.1796875, -0.1793212891, -0.1352539062, -0.3352050781, -1.30859375, -0.1866455078, 0.2548828125, 0.1770019531, 1.04296875, 0.4814453125, -0.0787963867, -0.97265625, 0.330078125, 0.0553588867, -0.9106445312, 0.1079711914, 0.4030761719, -0.1691894531, 0.927734375, -0.568359375, 0.0283660889, 0.0803222656, -0.1274414062, -0.638671875, 0.2237548828, 1.83984375, 0.2678222656, 0.6567382812, -0.0847167969, -0.6958007812, 0.0582275391, -0.1378173828, 0.6899414062, -0.1622314453, -0.40625, 0.818359375, -0.59765625, 1.1318359375, 0.2785644531, -1.8798828125, 0.9072265625, -0.4838867188, -0.7099609375, -0.1580810547, -0.4821777344, -0.5629882812, -0.2312011719, -0.6157226562, -0.3291015625, -0.4536132812, 0.8486328125, -0.3188476562, -0.2125244141, -0.8227539062, -0.0060081482, -0.4755859375, -0.7075195312, -0.7084960938, 0.0479431152, -1.154296875, -0.4770507812, 0.7919921875, 0.822265625, -0.7778320312, -0.5615234375, -0.8217773438, -0.3217773438, 0.4128417969, -0.2878417969, -0.3386230469, 0.2619628906, -0.7202148438, -0.6645507812, 0.2163085938, 1.3046875, -0.2009277344, -0.4685058594, 0.8056640625, -1.3642578125, 0.3615722656, 0.5166015625, -0.6865234375, 0.0465087891, -0.6215820312, 1.2685546875, -0.7768554688, 0.5537109375, -0.701171875, 0.4108886719, -0.1649169922, 0.3596191406, -1.2900390625, 0.3505859375, -0.0068016052, 1.3017578125, 1.0810546875, 0.1281738281, -0.3061523438, -0.2066650391, -0.494140625, 0.1899414062, -0.96875, 0.1196899414, 0.7368164062, 0.1694335938, -0.5234375, 0.5712890625, -0.1292724609, -1.0830078125, 0.7768554688, -0.4035644531, 0.2459716797, -0.1075439453, -1.33203125, 0.677734375, -1.1953125, -0.0384521484, -0.4562988281, -2.1171875, 0.2247314453, 1.0615234375, -0.4399414062, 0.982421875, -0.1171875, -0.390625, 0.0069770813, -1.1025390625, -0.0843505859, -0.1027832031, 0.1413574219, -0.3308105469, -0.4987792969, 0.1923828125, -0.7680664062, -0.2042236328, -0.4494628906, 0.9370117188, 0.7358398438, 0.1607666016, -0.9184570312, -0.2376708984, 0.1984863281, 0.953125, -0.4582519531, 0.6401367188, 0.1209106445, -0.5766601562, 0.89453125, -0.4274902344, -0.9838867188, -0.0892944336, -0.4609375, -0.2237548828, -0.2277832031, 0.2626953125, -0.1008300781, -0.3762207031, -1.640625, 1.427734375, -0.2476806641, -1.0634765625, 0.0656738281, -0.4289550781, -0.1700439453, -0.4836425781, -0.1049804688, -0.5932617188, -0.1109008789, -0.3159179688, 0.9643554688, -0.0322265625, -0.5170898438, 0.0778198242, 1.240234375, -0.4565429688, -0.7099609375, 0.2565917969, 0.1336669922, 0.0469055176, -0.5541992188, -0.4362792969, -0.2526855469, 0.1054077148, 0.2600097656, 0.1578369141, 0.857421875, 0.4045410156, 1.3388671875, -1.228515625, 0.3173828125, 0.48046875, 0.3071289062, -1.2119140625, -0.279296875, 0.2641601562, -0.4060058594, -1.0615234375, 0.0874023438, -0.7729492188, 0.5732421875, -0.081237793, 1.037109375, -0.9643554688, -0.4816894531, -0.814453125, -0.3200683594, 0.0202026367, -0.7661132812, 0.4482421875, 0.984375, 0.7822265625, 0.049407959, -0.0412902832, -0.2465820312, 0.8203125, 0.8022460938, 1.3857421875, -1.97265625, -0.1176147461, 0.2680664062, -0.4404296875, -1.4228515625, 0.2213134766, -0.3759765625, 1.400390625, 0.0809936523, -0.71484375, 0.0648193359, -0.3503417969, -0.2147216797, -0.1403808594, 0.7509765625, -0.2454833984, -0.4921875, 0.5166015625, -0.1831054688, 2.017578125, -0.1119995117, 0.034362793, 0.0273742676, 0.345703125, -0.560546875, 0.4577636719, 0.0569152832, -0.3708496094, -0.931640625, 0.5522460938, 0.3227539062, -0.0956420898, -0.6015625, 1.9873046875, -0.7841796875, -0.0895996094, 0.1014404297, 0.0045089722, 0.880859375, 0.744140625, -0.8779296875, 0.4365234375, 0.2790527344, -0.6953125, 0.6245117188, -0.6577148438, -0.1862792969, 0.2790527344, 0.4982910156, -0.53515625, 0.0404968262, 0.3757324219, -0.5478515625, 0.9829101562, 0.591796875, 0.0557556152, -0.4392089844, -0.3562011719, -0.8666992188, -0.53515625, 0.1966552734, -0.5883789062, -1.2294921875, -0.8876953125, 0.421875, -0.970703125, 0.4924316406, -0.953125, -1.2509765625, 0.443359375, 0.0553894043, 0.0886230469, 0.2646484375, -0.775390625, -0.1915283203, 0.1286621094, -0.5278320312, -1.3720703125, -0.6684570312, 0.1723632812, -0.4226074219, -0.61328125, -0.8090820312, -0.052947998, 0.46875, 0.9731445312, -0.6752929688, 1.2294921875, -0.2839355469, -0.8896484375, 0.0073776245, -0.5239257812, -0.4228515625, 0.1575927734, -0.6103515625, 0.3876953125, 1.7197265625, -0.6171875, 0.7260742188, 0.5087890625, -0.451171875, 0.8828125, 0.6098632812, -0.173828125, 0.345703125, 0.41796875, -0.2041015625, 0.1573486328, -0.2377929688, -0.0110015869, -0.3596191406, 0.7119140625, 0.2352294922, 0.3991699219, 0.8774414062, -0.2354736328, 0.3325195312, -0.7719726562, 0.092956543, -1.1748046875, -1.1689453125, 0.0748291016, 0.0846557617, -0.4724121094, 0.7622070312, -0.1732177734, 0.0703735352, 0.3139648438, 0.5014648438, 1.396484375, -0.6181640625, 1.6689453125, 0.4873046875, -0.3256835938, 1.1015625, 0.0784912109, -0.2221679688, 0.5981445312, 0.4038085938, -0.1455078125, -0.3034667969, -0.59765625, -1.1103515625, -0.466796875, 0.8618164062, 0.6743164062, 0.1281738281, 0.3051757812, -12.1484375, -0.1788330078, -0.7993164062, 0.3972167969, -0.4792480469, -0.0406188965, 0.4523925781, -0.4025878906, 0.32421875, 0.1101074219, 0.0506591797, -0.2758789062, -1.1435546875, -0.1225585938, 0.2371826172, 0.0776367188, -0.6040039062, -0.6254882812, 0.9594726562, 0.4108886719, 0.9814453125, 0.2142333984, -0.4619140625, -0.7788085938, 0.64453125, 0.5908203125, 0.6279296875, 0.65234375, 0.0455627441, 0.6059570312, -0.1380615234, -0.353515625, -0.53125, 0.4484863281, 0.4663085938, -0.3349609375, 1.0361328125, 0.4404296875, 0.4118652344, -0.3356933594, 0.2017822266, 0.2410888672, -0.2077636719, 0.76953125, -0.4641113281, 0.5322265625, -0.1263427734, 0.61328125, -0.6923828125, 0.0469970703, 1.8779296875, 0.5219726562, 0.537109375, 0.2595214844, -1.7724609375, 0.62890625, 0.2932128906, -0.0326538086, -0.6953125, 0.3818359375, -0.3054199219, 0.8491210938, 0.8237304688, -0.0635375977, 0.2814941406, -0.2534179688, 0.5395507812, 0.4519042969, 1.8076171875, 0.1188354492, 0.2373046875, -1.193359375, 0.9780273438, 0.265625, 1.1259765625, 0.6435546875, -0.0786743164, 0.1730957031, -0.5200195312, 1.6953125, 0.1468505859, 0.8896484375 ]
Process mining is a family of techniques relating the fields of data science and process management to support the analysis of operational processes based on event logs. The goal of process mining is to turn event data into insights and actions. Process mining is an integral part of data science, fueled by the availability of event data and the desire to improve processes. Process mining techniques use event data to show what people, machines, and organizations are really doing. Process mining provides novel insights that can be used to identify the executional path taken by operational processes and address their performance and compliance problems. Process mining starts from event data. Input for process mining is an event log. An event log views a process from a particular angle. Each event in the log should contain (1) a unique identifier for a particular process instance (called case id), (2) an activity (description of the event that is occurring), and (3) a timestamp. There may be additional event attributes referring to resources, costs, etc., but these are optional. With some effort, such data can be extracted from any information system supporting operational processes. Process mining uses these event data to answer a variety of process-related questions. There are three main classes of process mining techniques: process discovery, conformance checking, and process enhancement. In the past terms like Workflow Mining and Automated Business Process Discovery (ABPD) were used.
[ -0.5463867188, -0.2600097656, -0.5747070312, -0.1472167969, -0.9458007812, 0.3486328125, -0.4558105469, -0.6455078125, 0.2160644531, -0.0570678711, 0.2346191406, -0.2044677734, -0.0261535645, 0.6264648438, -0.09765625, 0.3090820312, -0.4621582031, 0.014541626, 0.0160064697, 0.1331787109, -0.6494140625, -0.4780273438, 0.1135864258, -1.62890625, -1.2666015625, 1.0625, -0.1784667969, 0.0404968262, 0.7138671875, 0.6328125, -0.5576171875, -0.0701293945, -1.84765625, -0.1915283203, 0.2766113281, -0.0201263428, 0.4521484375, -0.2332763672, -1.2412109375, 0.2015380859, -0.5981445312, 0.0846557617, -0.3601074219, -0.1239013672, 0.5380859375, 0.6875, -0.3342285156, -1.0283203125, -0.7153320312, -0.314453125, -0.53515625, -0.0587463379, 0.0982055664, -0.3974609375, 0.5517578125, -0.3830566406, 0.3298339844, 0.5454101562, 0.7524414062, -0.3588867188, -0.6826171875, 0.2185058594, 0.0115737915, -0.2249755859, 0.8466796875, -0.3828125, -0.4616699219, 0.8974609375, -1.1181640625, 0.2293701172, 0.6557617188, -0.3662109375, -0.6840820312, -0.3229980469, 0.7119140625, 0.6713867188, -0.6889648438, 0.0572509766, 1.0078125, 0.1331787109, 0.0791625977, -0.5087890625, 0.2790527344, -0.5249023438, -0.1661376953, 0.3972167969, 0.4919433594, -0.1342773438, -0.3596191406, 1.6640625, 0.6254882812, -0.3549804688, -0.404296875, -0.7290039062, -0.0014343262, -0.5600585938, 0.396484375, -0.1820068359, -0.720703125, -0.0399780273, -0.212890625, 0.3666992188, 0.0656738281, 0.5756835938, 0.0802612305, 0.1016845703, -0.2568359375, -0.0073814392, -0.2797851562, 0.3564453125, -0.3459472656, 0.3166503906, -0.1071166992, -1.5166015625, 0.5166015625, 0.3427734375, 0.7758789062, -0.4887695312, -0.2105712891, -0.1533203125, -0.3508300781, 1.244140625, -0.1126708984, -0.3098144531, 0.3615722656, -0.053314209, -0.1655273438, 0.0557250977, 0.0723876953, 0.3508300781, 0.3044433594, -0.0044364929, 0.0129623413, -0.2373046875, -0.2797851562, -0.4340820312, -0.935546875, 0.4545898438, -0.1098022461, 0.828125, -0.1781005859, -0.0044517517, 0.0757446289, -0.8642578125, -0.2287597656, 0.3640136719, -0.6215820312, 0.0079803467, 0.0751342773, -0.6850585938, 0.1215820312, -0.4460449219, 0.0608825684, -0.0998535156, -0.2978515625, 0.4748535156, -0.5288085938, 0.4770507812, -0.0989379883, -0.6948242188, -0.5048828125, -0.8061523438, -0.748046875, 1.037109375, 0.3381347656, 1.8369140625, -0.859375, -0.5888671875, 0.0900878906, 0.3955078125, -0.5141601562, 0.0480957031, -0.2583007812, 0.2917480469, 0.3818359375, 0.2534179688, 0.4362792969, -0.3542480469, 0.4372558594, -0.054473877, -0.1405029297, -1.4375, 1.0302734375, 0.482421875, -0.1412353516, -0.2072753906, 0.27734375, 0.2003173828, 0.3266601562, 0.2556152344, -0.1927490234, -0.1480712891, -1.076171875, 0.908203125, -0.2426757812, -0.2279052734, -1.1318359375, -0.4921875, -0.3198242188, 0.9560546875, 0.0494384766, -0.6782226562, 0.4482421875, -0.3227539062, -0.7387695312, 0.3037109375, 0.4753417969, -0.0157928467, 1.8203125, 0.396484375, -0.1381835938, 0.4460449219, -0.1224365234, -0.0901489258, -0.4172363281, -0.529296875, -0.560546875, -0.7446289062, -0.4223632812, 0.1343994141, 0.4533691406, 0.5703125, -0.5, -0.2193603516, 1.0869140625, 0.7744140625, 0.4567871094, 0.3764648438, 0.6821289062, 0.2166748047, -0.0257110596, 0.294921875, 0.0835571289, 0.3901367188, 0.3579101562, -0.0633544922, -0.4423828125, -0.3193359375, -0.6005859375, -0.41796875, -0.4956054688, -0.3520507812, -0.337890625, -0.3430175781, 0.2004394531, 0.120300293, -0.73828125, 0.6752929688, 0.1441650391, 0.33203125, -0.2191162109, -0.0275878906, -0.4982910156, 1.419921875, 0.2418212891, -0.9907226562, -0.6962890625, -0.3852539062, 0.4692382812, -0.2064208984, -0.4409179688, 0.3508300781, 0.9086914062, -0.8608398438, -0.38671875, 0.0520935059, -0.6665039062, -0.78515625, 1.4072265625, -0.7612304688, 0.4255371094, -1.1064453125, 0.7709960938, 0.1365966797, -0.4865722656, -0.7983398438, 0.3515625, -0.974609375, 0.2122802734, 0.5947265625, 0.4777832031, 0.2602539062, -0.2736816406, 0.0962524414, 0.759765625, -0.8940429688, -0.1627197266, 1.0859375, -0.0066375732, -0.5639648438, -0.2810058594, -0.2301025391, -0.4086914062, 0.1331787109, 0.3586425781, 0.638671875, 0.4418945312, -0.2775878906, 0.1851806641, -0.439453125, 1.166015625, -0.0430297852, -0.5805664062, -0.8657226562, 0.7963867188, 0.0582580566, 0.0411071777, -1.4833984375, 0.8491210938, 0.4655761719, 0.1622314453, 0.0314025879, 0.4299316406, 0.2426757812, -0.3376464844, -0.2351074219, -1.669921875, -0.1968994141, -0.4892578125, 0.0349731445, 0.6171875, -0.2836914062, -0.4909667969, -0.583984375, -0.208984375, 0.7700195312, -0.798828125, -0.8295898438, 0.8881835938, 0.4802246094, 0.587890625, 0.2658691406, 0.771484375, 0.0891113281, -0.2095947266, 0.0783081055, -0.7333984375, -0.6098632812, 0.1741943359, -0.5961914062, -0.9692382812, -0.6572265625, 0.1528320312, 0.2512207031, 0.2700195312, -0.4282226562, -0.1638183594, -0.7348632812, 0.4084472656, -0.2702636719, 0.5053710938, 0.1975097656, -0.1829833984, -0.3933105469, -0.0200042725, -1.21875, 0.3642578125, 1.1591796875, 0.1799316406, 1.080078125, 1.1494140625, 1.0205078125, -1.2392578125, 0.458984375, -1.05859375, 1.2822265625, -0.0911254883, 0.2639160156, -0.9213867188, -0.8198242188, 0.5512695312, 0.3190917969, 0.76171875, -0.1225585938, 0.0909423828, -0.7358398438, 1.0224609375, -0.0733642578, -0.4091796875, -0.4912109375, 0.4404296875, -0.2612304688, -0.0670166016, -0.9560546875, -0.4040527344, 0.009552002, -0.0247497559, -0.0527648926, -1.345703125, -0.1249389648, -0.4985351562, -0.4770507812, 0.4057617188, 1.0322265625, 0.986328125, 0.5048828125, 0.1446533203, -0.1759033203, 0.9873046875, -0.0397338867, 0.2102050781, -0.677734375, -0.685546875, -0.0542907715, 0.146484375, 0.0751342773, 0.6850585938, 0.0998535156, 0.5302734375, -0.0626831055, 0.1127929688, 0.3381347656, -0.2548828125, 0.0445556641, -0.0411682129, -0.0678710938, -0.1496582031, 0.2644042969, 0.3044433594, 0.4584960938, -0.6181640625, 0.4262695312, 0.4172363281, -0.4489746094, -0.5795898438, 0.7802734375, 0.0816040039, -0.1556396484, 1.2451171875, -0.322265625, -0.8583984375, 0.008354187, 0.5625, 0.1550292969, -0.3513183594, -0.404296875, -0.2727050781, -0.75, 0.0629272461, -0.0648193359, 0.1479492188, 0.2739257812, -0.1693115234, -0.4636230469, -0.5756835938, 0.2973632812, 0.7451171875, 0.5947265625, 0.4643554688, -0.1552734375, 0.490234375, -0.2265625, 0.1956787109, -0.0409240723, 0.4602050781, -0.0778198242, -0.1977539062, -0.4953613281, 0.0213012695, 0.5239257812, -0.3107910156, 0.2443847656, -0.8413085938, 0.2976074219, -0.2481689453, -1.5263671875, 0.1229248047, 0.4929199219, -1.10546875, -0.2768554688, -0.0486755371, 1.2138671875, 0.8676757812, 0.0724487305, -0.1561279297, 0.5708007812, 0.6708984375, -0.099609375, 0.0615844727, -1.16015625, 0.1751708984, -0.1221313477, -0.6987304688, -1.0419921875, 0.5844726562, 0.0030517578, -0.2963867188, -0.267578125, 0.4013671875, 0.673828125, -0.3918457031, -0.4699707031, -0.779296875, -0.275390625, -0.9428710938, -0.7495117188, 0.3474121094, -0.3479003906, 1.078125, -1.255859375, -0.8110351562, 0.0519714355, 0.6875, 0.1551513672, -0.1927490234, 0.0639038086, -0.7192382812, -0.6416015625, 0.4704589844, 0.7719726562, 0.8374023438, -0.2819824219, 0.5375976562, -0.4208984375, 0.2817382812, -1.1787109375, -0.0574951172, -0.2841796875, -0.2856445312, 0.1826171875, 0.6455078125, -0.0195922852, 0.796875, -0.0699462891, 0.705078125, 0.751953125, -0.4357910156, 0.3852539062, -0.8100585938, -0.3276367188, 0.0204162598, 0.9145507812, -0.1505126953, -0.0729980469, 0.0249786377, -0.1095581055, 0.0354614258, -0.3137207031, -0.1531982422, 0.4958496094, 0.6616210938, 0.2565917969, -1.04296875, 0.104675293, 0.728515625, 0.3498535156, 0.4331054688, -0.2116699219, -0.7817382812, -0.5673828125, 0.4204101562, -0.0240631104, -0.1223144531, 1.06640625, -0.7456054688, -0.2490234375, -0.1054077148, 0.5541992188, 0.8012695312, -0.822265625, -0.1121826172, 0.2208251953, -0.2883300781, 0.904296875, -0.5698242188, 1.380859375, 0.6684570312, 0.0742797852, 0.4221191406, -0.8051757812, 0.0397949219, 0.0072898865, 0.5087890625, -0.3251953125, 0.513671875, -0.0060577393, 0.5278320312, -0.6303710938, -0.2108154297, 0.865234375, -0.5107421875, 0.8310546875, -0.9091796875, -0.6088867188, -0.1923828125, 1.953125, 0.1313476562, -0.4240722656, -0.7817382812, -0.6098632812, 0.2169189453, -0.93359375, 0.5971679688, 0.1862792969, -0.6801757812, -0.3742675781, 0.1296386719, 1.3408203125, -0.5913085938, -0.1010742188, 0.0951538086, -0.6845703125, 0.1883544922, -0.3618164062, 0.5366210938, -0.0522766113, 0.1583251953, -0.3913574219, -0.0817260742, -0.1405029297, -0.328125, -0.1211547852, 0.3227539062, -0.1240234375, 0.4699707031, 0.7880859375, -0.6923828125, -0.0184173584, -0.1319580078, -1.2392578125, -1.1416015625, 0.0029029846, 0.2568359375, -0.130859375, -0.1444091797, -0.1244506836, -0.3503417969, -0.3200683594, -0.0445251465, 0.65234375, -0.2849121094, -0.0314025879, 0.4829101562, -0.0830078125, 0.0175018311, -0.0731201172, 0.7104492188, 0.6440429688, 0.9526367188, -0.3264160156, 0.0533447266, -0.0946044922, 0.3666992188, -0.6899414062, 0.3669433594, -1.0712890625, -0.2275390625, -0.4018554688, -0.0461120605, 0.3364257812, -0.0648803711, 0.4216308594, 0.26953125, 0.0485229492, -0.0769042969, 0.2834472656, 0.2408447266, -1.1298828125, -0.533203125, 0.0738525391, -0.023223877, 1.1005859375, -0.5205078125, 0.7709960938, 0.6186523438, 0.5825195312, -0.4807128906, -0.0834350586, -1.1865234375, -0.1551513672, 0.3686523438, -0.2607421875, -0.3818359375, 0.1281738281, 0.2395019531, -0.5239257812, -0.7065429688, -0.6962890625, -0.9755859375, 0.515625, -0.0076370239, 0.2622070312, 0.2379150391, 0.6430664062, -0.1334228516, -0.56640625, -0.642578125, -0.5581054688, -0.0685424805, 0.3088378906, 0.0265045166, -0.0924682617, -0.7080078125, -0.4624023438, -0.4606933594, -1.0654296875, 0.4372558594, 0.2985839844, 0.3779296875, 0.2724609375, -0.012046814, -1.3857421875, -0.4624023438, -0.3703613281, 0.8701171875, 0.3513183594, -0.5209960938, -1.0126953125, 0.5805664062, 0.0054244995, 0.2355957031, -0.0233001709, 0.0728759766, 0.541015625, 0.548828125, 1.0634765625, 0.047454834, 0.0693359375, 0.1412353516, -0.7309570312, -0.8232421875, -0.3491210938, 0.4619140625, -0.0748901367, 0.17578125, -0.0182495117, -0.2741699219, 0.2507324219, 0.4711914062, 0.4846191406, -0.0364990234, 0.0453186035, 0.5991210938, -0.4064941406, 0.0441589355, -1.123046875, 0.4541015625, 0.1265869141, 0.1622314453, 0.0672607422, -0.1834716797, 0.9306640625, -0.2318115234, -0.0651245117, -0.0915527344, -0.3740234375, 1.318359375, -0.3332519531, -0.0559082031, -0.4514160156, -0.0448913574, 0.0748291016, -0.5126953125, 0.0242614746, 0.9331054688, -0.6450195312, -0.31640625, -0.5063476562, 0.8608398438, -0.3583984375, -0.1405029297, 0.763671875, -0.9140625, -0.2590332031, -0.2176513672, 0.2276611328, 0.5561523438, 0.1246948242, 0.6796875, -0.9272460938, -0.1695556641, -0.0275421143, -0.5541992188, -0.1190795898, 1.0908203125, -0.3469238281, -0.4436035156, -0.0805053711, -0.263671875, 0.6010742188, 0.3044433594, -0.9521484375, 0.1101074219, 0.4504394531, 0.2333984375, -0.2077636719, -0.6489257812, 0.5439453125, -0.9379882812, -0.6489257812, 0.2797851562, 0.0154266357, 0.609375, 1.0625, -0.1013793945, 0.1492919922, -0.2878417969, 0.2155761719, 0.0807495117, 0.4404296875, 0.4555664062, -0.26953125, 0.6962890625, 0.4243164062, 0.1400146484, 0.2775878906, 1.142578125, 0.2563476562, 0.5078125, 0.5258789062, -0.78515625, -0.1713867188, -0.1447753906, 0.7451171875, 0.6479492188, -0.728515625, 0.3098144531, 0.0457458496, -0.4047851562, -0.1224975586, -0.0267486572, -0.482421875, 1.2822265625, 0.5249023438, 0.1569824219, -0.0451660156, -1.173828125, 0.3505859375, -0.1384277344, 0.4399414062, 0.9829101562, 0.5263671875, -0.1795654297, 0.3566894531, -0.005859375, -0.0330505371, -1.1201171875, -0.2719726562, 1.240234375, 0.3723144531, 0.1118774414, -0.4272460938, -0.6118164062, -0.359375, -0.7646484375, 0.1877441406, -0.8037109375, 0.0671386719, -0.3793945312, 0.6025390625, -0.1121826172, -1.03515625, -0.2631835938, -0.6923828125, -0.6225585938, -0.6254882812, 0.482421875, 0.6157226562, -0.1939697266, 0.1650390625, 0.5419921875, -1.1845703125, -0.1768798828, -0.1274414062, -0.306640625, -0.1812744141, -0.7260742188, 0.1370849609, 0.0799560547, 0.1157226562, -0.2415771484, 0.3239746094, -0.0990600586, -0.4125976562, -0.5424804688, 0.1116943359, -0.6396484375, -0.73828125, -0.4213867188, 0.2103271484, 1.068359375, -0.2336425781, -0.6450195312, -0.4660644531, 0.3295898438, -0.1309814453, 0.3728027344, -0.2073974609, -0.9057617188, -0.5224609375, -0.26171875, 0.3247070312, 0.4370117188, -0.1672363281, -0.546875, 0.1579589844, -0.0016260147, 0.6557617188, -0.7109375, -0.8120117188, -0.5380859375, -0.6752929688, 1.615234375, 0.8833007812, -0.3098144531, 0.3415527344, -0.0124130249, 0.1549072266, 0.5239257812, -0.21875, -0.1118774414, -0.0266571045, -1.3076171875, -1.013671875, -0.7202148438, 0.1978759766, -0.4943847656, 0.0380859375, -0.8154296875, -0.4506835938, -0.6860351562, -0.0002713203, 1.1064453125, 0.1872558594, 0.8583984375, 0.7275390625, -1.1494140625, -0.3952636719, 0.7006835938, 1.05078125, -0.5551757812, -0.322265625, -0.2561035156, -0.6616210938, 0.4921875, -0.1875, 0.1848144531, -0.28125, 0.275390625, 0.5048828125, 0.0217895508, -0.8706054688, -15.2578125, -0.294921875, -0.2609863281, 0.2062988281, -0.7338867188, 0.4113769531, -1.091796875, 0.2419433594, -0.9150390625, -0.4794921875, -0.3046875, -0.3215332031, 0.212890625, 0.1922607422, 0.7353515625, -0.020980835, -0.4130859375, 0.0370788574, 1.060546875, 0.4951171875, 1.380859375, 0.8427734375, -0.2404785156, -0.2322998047, -0.5126953125, 0.2239990234, 0.2973632812, 0.2016601562, -0.6450195312, 0.3037109375, 0.110534668, 1.22265625, -0.5854492188, 0.0000939369, 0.0013856888, -0.9291992188, 0.1865234375, -0.5859375, -0.1983642578, -0.3596191406, 0.880859375, 0.060546875, -0.5581054688, -0.3903808594, 0.3137207031, -0.2355957031, 0.2712402344, -1.1826171875, -0.6103515625, 0.3176269531, -0.8725585938, 0.5961914062, 0.9057617188, 0.517578125, -0.1861572266, -0.0985107422, 0.6328125, -0.3830566406, 0.3181152344, 0.1361083984, 0.2663574219, 1.056640625, 0.0177154541, -0.5991210938, 0.1253662109, -0.9360351562, 0.0470581055, 0.0123596191, -0.0086746216, -0.2467041016, 0.81640625, -0.2739257812, -0.6459960938, 0.2269287109, 0.341796875, 0.1654052734, 0.3151855469, 0.4291992188, 0.3830566406, 1.169921875, -0.5126953125, 0.3322753906 ]
Overview Process mining techniques are often used when no formal description of the process can be obtained by other approaches, or when the quality of existing documentation is questionable. For example, application of process mining methodology to the audit trails of a workflow management system, the transaction logs of an enterprise resource planning system, or the electronic patient records in a hospital can result in models describing processes of organizations. Event log analysis can also be used to compare event logs with prior model(s) to understand whether the observations conform to a prescriptive or descriptive model. It is required that the event logs data be linked to a case ID, activities, and timestamps. Contemporary management trends such as BAM (Business Activity Monitoring), BOM (Business Operations Management), and BPI (business process intelligence) illustrate the interest in supporting diagnosis functionality in the context of Business Process Management technology (e.g., Workflow Management Systems and other process-aware information systems). Process mining is different from mainstream machine learning, data mining, and artificial intelligence techniques. For example, process discovery techniques in the field of process mining try to discover end-to-end process models that are able to describe sequential, choice relation, concurrent and loop behavior. Conformance checking techniques are closer to optimization than to traditional learning approaches. However, process mining can be used to generate machine learning, data mining, and artificial intelligence problems. After discovering a process model and aligning the event log, it is possible to create basic supervised and unsupervised learning problems.
[ -0.090637207, 0.0806884766, -0.1474609375, -0.0252227783, -0.4719238281, 0.54296875, -0.7133789062, -0.5649414062, 0.2225341797, 0.0874633789, 0.529296875, 0.2155761719, -0.1595458984, 0.2631835938, 0.1329345703, 0.6923828125, -0.3955078125, 0.5297851562, 0.0248565674, 0.0643920898, -0.4482421875, -0.2939453125, 0.2768554688, -1.5087890625, -1.5888671875, 1.2138671875, 0.0047874451, 0.1552734375, 0.7451171875, 0.8188476562, -0.1252441406, 0.154296875, -2.353515625, -0.5576171875, -0.1259765625, 0.4956054688, 0.7827148438, -0.4963378906, -1.587890625, 0.1668701172, -0.5991210938, -0.0632324219, -0.4069824219, -0.1021118164, 0.9702148438, 0.908203125, -0.3259277344, -0.6635742188, -0.7353515625, -0.5356445312, -0.162109375, 0.4033203125, 0.0514221191, -0.4660644531, 0.7490234375, -0.4321289062, 0.4836425781, 0.9125976562, 0.4196777344, -0.1958007812, -0.6401367188, 0.1233520508, -0.2624511719, -0.0453491211, 0.734375, -0.0583496094, -0.4453125, 1.2412109375, -0.8110351562, 0.3969726562, 0.1857910156, -0.5922851562, -0.5537109375, -0.1748046875, 0.5141601562, 0.7915039062, 0.112487793, -0.2729492188, 1.2470703125, 0.2032470703, -0.1901855469, -0.3972167969, 0.1508789062, -0.6318359375, -0.3303222656, 0.098449707, 0.1733398438, -0.1909179688, -0.2083740234, 1.9931640625, 0.8354492188, -0.1745605469, -0.3361816406, -1.16015625, -0.0647583008, -0.2783203125, -0.0440368652, 0.0271453857, -0.8999023438, -0.5004882812, -0.4360351562, 0.0667114258, -0.0962524414, 0.32421875, 0.4018554688, -0.0234832764, -0.2604980469, 0.1977539062, -0.4611816406, 0.4360351562, -0.462890625, 0.3796386719, 0.0067367554, -1.47265625, 0.1550292969, -0.1895751953, 0.7749023438, -0.3251953125, 0.234375, -0.5405273438, -0.0435180664, 0.8334960938, 0.1833496094, -0.423828125, 0.3308105469, -0.1956787109, -0.4079589844, -0.2868652344, 0.55078125, 0.3500976562, 0.0271606445, -0.1287841797, 0.2396240234, -0.2849121094, -0.4694824219, -0.5415039062, -1.1435546875, 0.2075195312, -0.3332519531, 0.7680664062, -0.2467041016, 0.4328613281, -0.1765136719, -0.4575195312, -0.2368164062, 0.02734375, -0.0499267578, 0.470703125, 0.205078125, -0.3999023438, -0.0198059082, -0.1354980469, -0.0716552734, -0.1623535156, -0.677734375, 0.5141601562, -0.5844726562, 0.3645019531, -0.3989257812, -0.0164031982, -0.6806640625, -0.6596679688, -0.9311523438, 0.2575683594, 0.306640625, 1.5947265625, -0.9521484375, -0.3276367188, -0.0053977966, 0.0127105713, -0.3200683594, 0.0778198242, 0.7583007812, 0.1278076172, -0.0896606445, 0.0673828125, 0.2993164062, -0.7407226562, 0.2795410156, 0.3129882812, -0.3718261719, -1.279296875, 1.2216796875, 0.5244140625, 0.0094604492, -0.0220794678, -0.1922607422, 0.3178710938, 0.5888671875, -0.0066223145, -0.1094970703, -0.41015625, -0.9057617188, 1.10546875, -0.2666015625, -0.4074707031, -0.9907226562, -0.6821289062, -0.1181030273, 0.9404296875, -0.3310546875, -0.9516601562, 0.0616455078, -0.006023407, -0.9604492188, -0.1860351562, -0.0577392578, 0.3403320312, 2.138671875, 0.1158447266, 0.040802002, 0.2493896484, -0.31640625, -0.4731445312, -0.0695800781, -0.642578125, -0.3149414062, -0.2980957031, -0.4709472656, 0.1760253906, 0.4653320312, 1.06640625, -0.3801269531, 0.1422119141, 0.6767578125, 1.224609375, 0.1111450195, 1.158203125, 0.4389648438, 0.1412353516, -0.6572265625, 0.697265625, 0.4545898438, 0.0262298584, 0.3640136719, 0.1117553711, -0.1936035156, -0.1837158203, 0.1049804688, 0.4267578125, -0.7846679688, -0.3205566406, -0.2103271484, -0.462890625, 0.2919921875, 0.1091918945, -0.7211914062, 0.5620117188, -0.4072265625, -0.0032253265, -0.0512084961, 0.2531738281, -0.3774414062, 1.212890625, 0.3547363281, -0.6137695312, -0.3146972656, -0.1135864258, 0.8110351562, 0.2380371094, -0.3374023438, 0.5986328125, 1.0927734375, -0.3596191406, -0.0012512207, 0.112121582, -0.6220703125, -0.9609375, 1.544921875, -1.279296875, 0.408203125, -1.1845703125, 0.78125, -0.0786132812, -0.51953125, -0.701171875, 0.4050292969, -0.3171386719, 0.5952148438, 1.0205078125, 0.5869140625, 0.3200683594, 0.0542297363, 0.2349853516, 0.7290039062, -0.55859375, -0.3693847656, 1.4404296875, 0.3911132812, -1.0283203125, -0.548828125, -0.6176757812, -0.2110595703, 0.6708984375, 0.306640625, 0.9008789062, 0.3840332031, -0.6586914062, 0.6147460938, 0.0944824219, 0.5844726562, -0.2366943359, -0.1633300781, -0.8061523438, 1.087890625, 0.2661132812, -0.2351074219, -0.9619140625, 0.8354492188, 0.6298828125, 0.1911621094, -0.2137451172, 0.7143554688, 0.0994873047, -0.8681640625, -0.2373046875, -1.8681640625, -0.1306152344, 0.2069091797, 0.1315917969, 0.5791015625, -0.7348632812, -0.8666992188, -0.5263671875, -0.7153320312, 0.607421875, -1.2626953125, -0.7294921875, 0.4294433594, 0.4694824219, 1.013671875, -0.1818847656, -0.0405578613, 0.412109375, -0.0193634033, -0.2216796875, -0.3967285156, -0.7084960938, 0.5668945312, -0.4436035156, -0.7416992188, -1.0849609375, 0.1834716797, 0.1213989258, 0.2124023438, -0.35546875, -0.9204101562, -0.7944335938, 0.646484375, -0.29296875, 0.6040039062, 0.0816650391, -0.2135009766, -0.572265625, 0.0476379395, -1.1728515625, 0.1759033203, 0.9228515625, 0.0693359375, 0.748046875, 0.9926757812, 1.3564453125, -1.6884765625, 0.765625, -1.123046875, 1.189453125, 0.1182250977, -0.4204101562, -0.9038085938, -0.8740234375, 0.5615234375, 0.0310058594, 0.3891601562, -0.5732421875, -0.3767089844, -0.4973144531, 0.7983398438, 0.1533203125, -0.2244873047, -0.2172851562, -0.1237182617, 0.1665039062, 0.1469726562, -0.8671875, -0.0465393066, 0.2467041016, 0.1346435547, -0.6264648438, -1.96484375, 0.4982910156, -0.5180664062, -0.0803833008, 0.4777832031, 0.8359375, 1.0166015625, 0.3415527344, 0.047668457, -0.5498046875, 0.4851074219, -0.6030273438, 0.2785644531, -0.7924804688, -0.7036132812, -0.4038085938, 0.0901489258, 0.3720703125, 0.8134765625, 0.3112792969, 0.93359375, 0.7143554688, 0.1520996094, 0.2348632812, -0.3283691406, 0.5375976562, 0.0731201172, -0.0271606445, -0.2095947266, 0.783203125, 0.5869140625, 0.5263671875, -0.7353515625, 0.2888183594, 0.4497070312, -0.7905273438, -0.4174804688, 0.8955078125, 0.5126953125, -0.64453125, 1.296875, -0.25390625, -1.1796875, 0.6313476562, 0.4836425781, 0.4606933594, -0.2044677734, -0.1755371094, -0.322265625, -0.8139648438, -0.0376281738, -0.2541503906, -0.21484375, 0.5615234375, -0.3798828125, -0.6640625, 0.1161499023, 0.849609375, 0.8286132812, 0.83203125, 0.9150390625, -0.1494140625, 0.5639648438, -0.1474609375, 0.3598632812, -0.2154541016, 0.33984375, -0.0324401855, -0.1396484375, -0.3962402344, -0.296875, 0.1877441406, -0.1811523438, 0.1080322266, -1.232421875, 0.4499511719, 0.0212554932, -1.1318359375, -0.2600097656, 0.4079589844, -1.048828125, -0.2270507812, 0.1287841797, 0.6215820312, 0.4995117188, 0.1171264648, -0.5795898438, 0.4772949219, 0.9672851562, 0.0833129883, -0.3059082031, -1.4873046875, 0.1853027344, 0.283203125, -0.5004882812, -0.5366210938, 0.4008789062, 0.3505859375, -0.5078125, -0.3967285156, -0.1048583984, 0.5908203125, -0.447265625, -0.3151855469, -0.9692382812, -0.1120605469, -1.0927734375, -0.3862304688, 0.6040039062, -0.0746459961, 0.9033203125, -0.78515625, -0.765625, -0.2758789062, 0.3527832031, 0.2834472656, -0.4084472656, -0.1313476562, -1.044921875, -0.1093139648, 0.1782226562, 0.408203125, 0.4611816406, -0.1809082031, 0.7416992188, -0.6845703125, 0.544921875, -0.294921875, -0.4938964844, -0.5424804688, 0.1186523438, -0.0085906982, 0.8608398438, -0.0219421387, -0.0198516846, -0.1403808594, 0.7221679688, 1.0166015625, -0.765625, 0.3056640625, -0.5029296875, -0.3205566406, 0.4748535156, 1.0703125, -0.0531311035, 0.2373046875, 0.0413818359, -0.4438476562, -0.4990234375, -0.4265136719, -0.5112304688, 0.8271484375, 1.1474609375, 0.2185058594, -1.134765625, 0.2729492188, 0.5395507812, 0.9936523438, 0.5732421875, -0.3205566406, -0.494140625, -0.7358398438, 0.053527832, -0.1178588867, 0.0255584717, 1.0595703125, -1.318359375, -0.026473999, 0.1281738281, 0.5634765625, 0.6225585938, -0.6279296875, 0.1939697266, -0.2337646484, -0.57421875, 0.4343261719, -0.2939453125, 1.3388671875, 0.2863769531, 0.3134765625, 0.4826660156, -0.7587890625, -0.4499511719, 0.0506286621, 0.5258789062, -0.6840820312, 0.7377929688, 0.0153656006, 0.5126953125, -0.3430175781, -0.333984375, 0.845703125, -0.5307617188, 1.1533203125, -1.2060546875, -0.2332763672, 0.1774902344, 2.24609375, 0.0373535156, -0.9477539062, -0.689453125, -0.8540039062, 0.5366210938, -0.5810546875, 0.6108398438, -0.0158081055, -0.6826171875, -0.2384033203, -0.1011352539, 1.1298828125, -0.5268554688, 0.4467773438, -0.021697998, -1.126953125, 0.80859375, -0.1604003906, 0.4533691406, -0.2484130859, 0.1434326172, -0.4538574219, -0.1018066406, 0.2053222656, 0.1257324219, 0.029510498, 0.1574707031, -0.3095703125, 0.3237304688, 1.162109375, -0.8374023438, 0.0265655518, 0.2126464844, -1.1494140625, -0.3012695312, 0.0637817383, 0.578125, -0.8974609375, -0.4406738281, 0.0824584961, -0.4497070312, -0.3393554688, 0.2995605469, 1.064453125, -0.2144775391, -0.1340332031, 0.0040206909, -0.2099609375, 0.0570983887, -0.2602539062, 0.3168945312, 0.8422851562, 0.9692382812, 0.1224365234, 0.2202148438, -0.1766357422, 0.3874511719, -0.5986328125, 0.25, -0.6157226562, -0.0682983398, -0.5092773438, -0.0881347656, 0.3991699219, 0.5483398438, 0.4372558594, 0.7841796875, 0.0383605957, -0.1090087891, 0.1733398438, 0.2556152344, -0.830078125, -0.8637695312, 0.0417480469, -0.2927246094, 1.0673828125, -0.3835449219, 1.2158203125, 0.3583984375, 0.2219238281, -0.4599609375, 0.0471801758, -1.3193359375, -0.1021118164, 0.1851806641, 0.1651611328, -0.0190124512, -0.3403320312, 0.2905273438, -0.5986328125, -0.8208007812, -0.7934570312, -1.0341796875, 0.4724121094, -0.2026367188, 0.4377441406, 0.1682128906, 0.6640625, -0.3127441406, -0.1378173828, -0.4780273438, -0.49609375, -0.4138183594, 0.0942382812, -0.1505126953, -0.1253662109, -0.6528320312, -0.6459960938, -0.7475585938, -0.8803710938, 0.4536132812, 0.7280273438, -0.1419677734, -0.6049804688, -0.0190124512, -1.10546875, -0.3037109375, -0.0226898193, 0.9956054688, 0.3352050781, -0.818359375, -1.376953125, 0.3793945312, 0.1759033203, 0.263671875, 0.0403137207, 0.2741699219, 0.1084594727, 0.1324462891, 1.0283203125, -0.0999755859, -0.5654296875, -0.1574707031, -1.2138671875, -1.42578125, -0.2893066406, 0.373046875, -0.1363525391, 0.3796386719, -0.0715332031, -0.2907714844, 0.3486328125, 0.6469726562, 0.3686523438, 0.1219482422, -0.1999511719, 0.3537597656, -0.4997558594, 0.0758666992, -0.6791992188, 0.71484375, 0.916015625, 0.2648925781, 0.2366943359, -0.032043457, 0.6401367188, 0.1346435547, 0.5122070312, -0.197265625, 0.1861572266, 1.6181640625, -0.16015625, -0.5126953125, -1.1787109375, -0.0567016602, -0.1383056641, -0.5385742188, 0.6108398438, 0.5625, -1.1728515625, -0.3620605469, -0.5678710938, 0.4829101562, -0.2817382812, 0.2751464844, 0.919921875, -0.8505859375, 0.0021953583, -0.5571289062, 0.2159423828, 0.2186279297, 0.0373535156, 0.4045410156, -1.1044921875, -0.2393798828, -0.53125, -0.7114257812, -0.2473144531, 0.833984375, -0.7172851562, -0.6728515625, -0.1652832031, -0.6044921875, 0.4538574219, 0.896484375, -0.9345703125, 0.1440429688, 0.341796875, 0.3608398438, -0.2061767578, -0.6811523438, 0.4716796875, -0.8642578125, -0.5913085938, 0.3256835938, -0.3073730469, 0.4877929688, 1.2255859375, 0.3098144531, -0.1687011719, 0.1573486328, 0.0440673828, -0.1038818359, -0.2995605469, 0.5727539062, -0.1877441406, 1.04296875, -0.0600891113, -0.1655273438, 0.0428466797, 1.5966796875, 0.298828125, 0.4997558594, 0.5439453125, -0.5864257812, -0.1178588867, -0.2678222656, 0.599609375, 0.5341796875, -0.9545898438, 0.4050292969, 0.1634521484, -0.6767578125, 0.0974121094, 0.1883544922, -0.9638671875, 0.9560546875, 0.640625, 0.34765625, -0.6362304688, -0.951171875, -0.1861572266, -0.7255859375, 0.1772460938, 1.41015625, 0.6635742188, -0.41015625, 0.4421386719, 0.0057373047, 0.2100830078, -0.7631835938, 0.0625, 1.037109375, 0.6870117188, 0.0508728027, -0.521484375, -0.3703613281, -0.5297851562, -0.9448242188, 0.0667724609, -0.5234375, -0.0018968582, -0.0401000977, 0.6000976562, -0.1893310547, -1.193359375, -0.4455566406, -0.5063476562, -0.1185913086, -0.3991699219, 0.548828125, 0.580078125, -0.0927124023, 0.2282714844, 0.6416015625, -1.61328125, -0.3251953125, -0.3735351562, -0.9106445312, -0.2183837891, -0.8051757812, 0.2990722656, -0.0009627342, 0.0079421997, -0.4443359375, 0.098449707, -0.0199737549, -0.5029296875, -0.775390625, -0.5249023438, -0.9956054688, -0.7001953125, -0.3571777344, -0.439453125, 0.9970703125, -0.1533203125, 0.2044677734, -0.26953125, -0.3103027344, 0.1658935547, 0.5869140625, -0.4145507812, -1.22265625, -0.771484375, 0.022064209, 0.5595703125, 0.5444335938, -0.21484375, -0.841796875, -0.0709838867, -0.3369140625, 0.634765625, -0.6333007812, -0.4409179688, -0.5048828125, -0.8486328125, 1.5068359375, 0.5205078125, -0.431640625, 0.079284668, -0.1253662109, -0.2993164062, 0.658203125, 0.416015625, 0.3474121094, 0.0592041016, -0.69921875, -1.1669921875, -0.6630859375, 0.1314697266, -0.3344726562, 0.259765625, -0.4626464844, -0.7587890625, -0.91015625, 0.3332519531, 0.9370117188, 0.7802734375, 0.611328125, 0.2727050781, -0.828125, -0.2661132812, 0.2934570312, 1.2607421875, -0.2495117188, -0.7509765625, -0.2192382812, -0.8657226562, 0.6376953125, -0.4521484375, 0.3317871094, -0.7250976562, 0.3754882812, 0.3264160156, -0.0875854492, -0.5200195312, -13.984375, 0.1564941406, -0.065612793, -0.0747680664, -0.6948242188, -0.0285339355, -1.1611328125, -0.2453613281, -1.23046875, -0.69140625, -0.2934570312, 0.1324462891, 0.0479125977, -0.2512207031, 0.2529296875, -0.4724121094, -0.3232421875, 0.0520324707, 1.2294921875, 0.4890136719, 1.5166015625, 1.5166015625, -0.4814453125, -0.2069091797, -0.7934570312, 0.4309082031, 0.2951660156, -0.012260437, -0.98828125, -0.0513305664, 0.3911132812, 1.0439453125, -0.4184570312, 0.2663574219, -0.517578125, -1.1611328125, 0.1138916016, -0.1032714844, -0.1903076172, -0.3581542969, 0.2993164062, -0.0630493164, -0.66015625, -0.3132324219, 0.4790039062, -0.56640625, -0.4284667969, -0.6953125, -0.6162109375, 0.5727539062, -0.541015625, 0.3623046875, 1.0048828125, 0.5092773438, -0.5571289062, -0.2976074219, 0.2531738281, -0.408203125, -0.1993408203, 0.5395507812, 0.0350952148, 0.43359375, 0.4494628906, -0.1702880859, 0.1284179688, -0.6875, 0.578125, -0.1354980469, -0.1260986328, -0.1069946289, 0.7680664062, 0.1298828125, -0.37890625, 0.5620117188, 0.5908203125, 0.1060180664, 0.4013671875, -0.0098419189, 0.4084472656, 1.0908203125, -0.7104492188, 0.0880126953 ]
For example, to predict the remaining processing time of a running case or to identify the root causes of compliance problems. The IEEE Task Force on Process Mining was established in October 2009 as part of the IEEE Computational Intelligence Society. This is a vendor-neutral organization aims to promote the research, development, education and understanding of process mining, make end-users, developers, consultants, and researchers aware of the state-of-the-art in process mining, promote the use of process mining techniques and tools and stimulate new applications, play a role in standardization efforts for logging event data (e.g., XES), organize tutorials, special sessions, workshops, competitions, panels, and develop material (papers, books, online courses, movies, etc.) to inform and guide people new to the field. The IEEE Task Force on Process Mining established the International Process Mining Conference (ICPM) series, lead the development of the IEEE XES standard for storing and exchanging event data , and wrote the Process Mining Manifesto which was translated into 16 languages. History and place in data science The term "Process mining" was first coined in a research proposal written by the Dutch computer scientist Wil van der Aalst ("Godfather of Process mining"). Thus began a new field of research that emerged under the umbrella of techniques related to data science and process science at the Eindhoven University in 1999. In the early days, process mining techniques were often convoluted with the techniques used for workflow management.
[ 0.1951904297, -0.5693359375, 0.0116729736, 0.1329345703, -1.06640625, 0.2014160156, -0.6689453125, -0.7670898438, 0.4357910156, -0.697265625, 0.1519775391, 0.1091918945, -0.7241210938, 0.5805664062, -0.4868164062, 0.7041015625, -0.6225585938, 0.1164550781, -0.9252929688, 0.3383789062, -0.3127441406, -0.333984375, -0.4775390625, -1.1630859375, -1.3681640625, 1.6015625, 0.2990722656, 0.0805053711, 0.9462890625, 0.587890625, 0.0862426758, 0.4892578125, -1.9482421875, -0.37109375, 0.5668945312, 0.12890625, 0.1600341797, -0.4260253906, -1.34765625, -0.1949462891, -0.0842285156, -0.6411132812, -0.4311523438, 0.427734375, 1.7587890625, 1.0009765625, -0.328125, -0.3977050781, -0.6977539062, -0.4516601562, -0.6484375, -0.1606445312, 0.1130981445, -0.6513671875, 0.4262695312, -0.3859863281, 0.4924316406, 0.046081543, 1.2109375, 0.0077476501, -0.5385742188, 0.509765625, -0.0226745605, -0.0024528503, 1.26171875, -0.646484375, -0.787109375, 0.9409179688, -0.87890625, 1.013671875, -0.5649414062, -0.1031494141, 0.0337524414, -0.3413085938, -0.6665039062, 0.3874511719, 0.103515625, -0.0703125, 1.5, 0.4753417969, -0.0765380859, -0.9467773438, -0.5283203125, -1.36328125, 0.3330078125, -0.3015136719, 0.2292480469, -0.39453125, -0.7041015625, 1.8125, 0.3352050781, 0.4509277344, -1.232421875, -0.8579101562, -0.0661010742, -0.7641601562, 0.958984375, 0.1208496094, -0.8203125, 0.3918457031, -0.0098495483, 0.3181152344, 0.1773681641, 0.1749267578, 0.82421875, 0.306640625, -0.4208984375, 0.580078125, -0.0489196777, 0.6875, -0.3994140625, -0.0455322266, 0.0176391602, -0.4245605469, 0.2768554688, -0.18359375, 0.4291992188, -0.2469482422, -0.3688964844, -0.1964111328, -0.0428771973, 0.5424804688, -0.3171386719, 0.1887207031, 0.3171386719, 0.1564941406, 0.1477050781, -0.1796875, -0.4458007812, -0.3979492188, 0.1823730469, -0.1263427734, -0.1765136719, -0.0629882812, -0.0971069336, -0.0961303711, -1.4375, 0.2410888672, 0.3347167969, 0.8828125, -0.2570800781, 1.0478515625, 0.2216796875, 0.134765625, 0.1453857422, 0.3701171875, -0.2404785156, -0.4252929688, -0.4528808594, -1.1728515625, -0.041809082, -0.8813476562, 0.529296875, 0.173828125, -0.0550537109, 0.2303466797, -0.4348144531, 0.1075439453, -0.1750488281, -0.041229248, -0.4208984375, -0.8452148438, -0.6806640625, 0.7880859375, -0.1422119141, 0.6723632812, -0.400390625, -0.0002477169, -0.3212890625, -0.1227416992, -0.9116210938, 0.2476806641, 0.2039794922, -0.5874023438, -0.1079101562, 0.0592041016, 0.2685546875, -0.1671142578, 0.3232421875, 0.0839233398, 0.1278076172, -1.91796875, 1.2490234375, 0.3598632812, -0.2973632812, -0.0412902832, 0.3041992188, -0.3024902344, 0.1638183594, -0.2132568359, 0.3234863281, 0.3530273438, -0.0355224609, 0.4650878906, 0.234375, -0.1712646484, -1.0703125, -0.3666992188, -0.5234375, 0.4609375, 0.3676757812, -0.3332519531, 0.3425292969, -0.5249023438, -0.42578125, 0.1995849609, 0.2357177734, 0.39453125, 1.955078125, 0.2366943359, -0.2216796875, 0.4621582031, -0.58203125, -0.0078582764, 0.5864257812, -0.427734375, -0.1339111328, -0.1872558594, -0.0385742188, -0.6845703125, 0.2094726562, 0.6879882812, 0.1109619141, -1.29296875, -0.1564941406, 0.8569335938, -0.2071533203, 0.73046875, 0.5366210938, 0.3764648438, -0.1514892578, 0.9326171875, 0.2551269531, -0.072265625, 0.7036132812, 0.2263183594, -0.9423828125, 0.114440918, 0.57421875, 0.4040527344, -1.021484375, -0.3776855469, 0.1564941406, -0.4206542969, -0.0328674316, -0.2895507812, -0.72265625, 0.5385742188, 0.1016845703, -0.0396728516, -0.013381958, 0.310546875, -0.9697265625, 0.728515625, 0.7993164062, -0.6015625, -0.076171875, -0.6318359375, 0.6918945312, 0.2595214844, -0.7890625, 0.7563476562, 0.9497070312, -0.7778320312, -0.1866455078, 0.0166015625, -0.640625, -0.9599609375, 1.6298828125, 0.1776123047, 0.6201171875, -0.7739257812, -0.3854980469, -0.4055175781, -0.1270751953, -0.4108886719, 0.2590332031, -0.2778320312, -0.67578125, 0.8129882812, 0.1624755859, 0.2192382812, 0.5864257812, -0.5146484375, 0.748046875, -0.4084472656, -0.4040527344, 1.1904296875, -0.2604980469, -0.5522460938, -0.4016113281, -0.3022460938, 0.1730957031, 0.7934570312, 0.3205566406, -0.1184082031, 0.5786132812, -0.2802734375, -0.0106277466, -1.1904296875, 0.3442382812, 0.4328613281, -0.349609375, -1.021484375, 0.9340820312, 0.5927734375, -0.1594238281, -0.8115234375, 0.1768798828, 0.4050292969, 0.685546875, -0.2526855469, 0.2524414062, -0.0086669922, 0.0382995605, -0.3618164062, -1.8330078125, 0.3601074219, -0.5771484375, -0.0161437988, 0.4992675781, -0.2819824219, -0.4836425781, -0.062286377, -0.1958007812, 0.5322265625, -0.8779296875, -1.4638671875, -0.3686523438, 1.009765625, 0.654296875, 0.2507324219, 1.099609375, 0.4624023438, 0.5942382812, -0.5024414062, 0.7973632812, -0.5009765625, 0.5639648438, -0.544921875, -1.23046875, -0.6123046875, 0.4609375, -0.0362548828, 0.4948730469, -0.1270751953, -0.5375976562, -0.6274414062, 0.3654785156, 0.100769043, 0.4677734375, 0.6782226562, 0.3627929688, -0.81640625, 0.5913085938, -0.5419921875, 0.8090820312, 1.166015625, 0.033782959, 0.5620117188, 0.806640625, 1.07421875, -2.001953125, -0.609375, -0.1802978516, 0.9775390625, 0.1389160156, -0.4619140625, -0.5122070312, -0.0703125, 0.1655273438, 0.2265625, 0.3803710938, -0.2175292969, 0.2744140625, -0.4108886719, 0.0076522827, -0.1490478516, -0.4721679688, 0.0239562988, 0.7973632812, 0.3828125, -0.2951660156, -1.517578125, -0.5180664062, 0.5991210938, -0.1479492188, -0.7602539062, -1.5322265625, -0.3166503906, -0.0308685303, -0.572265625, 0.8403320312, 0.912109375, 0.5322265625, -0.1861572266, 0.9833984375, -0.642578125, 1.412109375, 0.7431640625, 0.3740234375, -0.4943847656, -0.498046875, 0.2218017578, -0.2761230469, 0.2209472656, 1.66796875, -0.1365966797, 0.2717285156, -0.0739135742, -0.4392089844, -0.3334960938, -0.4450683594, 0.0935668945, 0.1352539062, -0.0916137695, 0.1442871094, 0.267578125, 0.5834960938, 0.5932617188, -0.3635253906, 0.7553710938, 0.2172851562, -0.3649902344, -0.2093505859, -0.1018066406, 0.5234375, 0.1905517578, 0.8310546875, -0.1734619141, -0.4760742188, -0.1719970703, 0.7109375, 0.8818359375, -0.4792480469, 0.0032958984, -0.3217773438, -0.3752441406, 0.123840332, -0.0437316895, 0.4704589844, 1.158203125, -0.1227416992, -0.1429443359, 0.2631835938, -0.1390380859, 0.6518554688, -0.2238769531, 1.599609375, -0.2165527344, -0.8452148438, -0.4233398438, -0.1090087891, 0.0258331299, 0.1832275391, -0.3527832031, 0.2724609375, -0.4370117188, -0.1312255859, 0.50390625, -0.0958862305, -0.2277832031, -1.3916015625, 0.4753417969, 0.6186523438, -2.828125, 0.5629882812, 0.4555664062, -1.1015625, -0.7724609375, -0.3041992188, 0.8876953125, 0.1545410156, 0.0292816162, 0.361328125, 0.8100585938, 0.7280273438, 0.4055175781, -0.3898925781, -1.009765625, -0.2149658203, -0.7827148438, -1.2294921875, -0.9370117188, 0.333984375, 0.2622070312, -0.3095703125, -0.7631835938, 0.0805053711, -0.0916748047, -0.4499511719, -0.3862304688, -0.5888671875, 0.3513183594, -0.5400390625, -1.2333984375, 0.1005859375, -0.0426025391, 0.4689941406, -0.5126953125, -0.9741210938, -0.0903930664, 0.1477050781, -0.4348144531, -0.3081054688, 0.1375732422, -0.521484375, 0.2607421875, 0.3356933594, 0.1292724609, 0.6948242188, -0.6127929688, 0.9399414062, -0.8798828125, 0.032623291, -0.7412109375, 0.0057296753, -0.4743652344, -0.78125, 0.1485595703, 1.52734375, -0.1235351562, 0.623046875, -0.6162109375, -0.1372070312, 0.2049560547, -0.2687988281, 0.6533203125, 0.15625, 0.1243286133, 1.1650390625, 0.685546875, -0.7353515625, -0.1246948242, 0.4262695312, -0.3264160156, 0.7075195312, -0.4028320312, -0.8051757812, 0.8623046875, 0.6088867188, 0.3381347656, -0.4819335938, 0.4958496094, 0.7451171875, 0.7075195312, 0.2333984375, 0.0187530518, -0.9580078125, -0.6108398438, 0.1888427734, -0.4548339844, 0.2600097656, 0.9443359375, -0.833984375, -0.41015625, -1.1689453125, 0.439453125, 0.6303710938, -0.7099609375, -0.0492858887, 0.0053825378, -0.2834472656, 0.6303710938, -0.7065429688, 1.1123046875, -0.0384521484, 0.3698730469, 0.3959960938, -0.583984375, -1.001953125, 0.2408447266, -0.038269043, -0.7153320312, 0.3000488281, -0.1564941406, 0.2556152344, -0.7641601562, 0.3972167969, 0.2878417969, -1.1376953125, 0.1801757812, -0.6831054688, -0.3249511719, 0.1711425781, 1.6123046875, 0.56640625, -1.201171875, -1.32421875, -0.8017578125, 0.3288574219, -0.912109375, 0.76953125, 0.3415527344, -1.12109375, 0.1245117188, 0.708984375, 0.7880859375, 0.1531982422, 0.059173584, 0.2685546875, -0.2858886719, 0.6411132812, 0.0616455078, -0.0218200684, -0.2788085938, 0.322265625, -0.0651855469, 0.3208007812, 0.2241210938, 0.0458679199, -0.2342529297, 0.4079589844, -0.3723144531, 0.1911621094, 0.0693969727, -0.6215820312, -0.2751464844, 0.0423583984, -1.65625, -0.4487304688, -0.1137695312, 0.7802734375, 0.2619628906, 0.54296875, -0.24609375, 0.0832519531, -0.361328125, -0.2651367188, 0.7133789062, -0.1323242188, 0.3332519531, 0.3859863281, 0.0633544922, -0.4252929688, -0.5, 0.4370117188, 0.7700195312, 1.1748046875, -0.1885986328, 0.0842895508, -0.2692871094, -0.2390136719, -0.7192382812, -0.1469726562, -1.2822265625, 0.3747558594, 0.4318847656, -0.3413085938, 0.3405761719, 0.7124023438, 1.2958984375, 0.8901367188, -0.1274414062, -0.123840332, -0.4018554688, 0.38671875, -0.6186523438, -0.2210693359, -0.5512695312, -0.3537597656, 2.109375, -0.68359375, 0.5805664062, 0.3647460938, 0.0757446289, -0.1602783203, 0.0278015137, -1.8076171875, 0.1594238281, 0.87109375, 0.669921875, -0.8017578125, 0.0433654785, -0.0117492676, -0.6171875, -0.6572265625, -0.5815429688, 0.1380615234, 0.9956054688, -0.380859375, -0.1462402344, 0.1829833984, 0.685546875, -0.603515625, -0.62109375, -0.3754882812, 0.2091064453, -0.102355957, 0.4423828125, 0.6909179688, -0.4187011719, -1.203125, 0.2059326172, -0.4907226562, -1.7744140625, 0.2353515625, 0.15625, -0.32421875, -0.2878417969, 0.1761474609, -0.60546875, -0.759765625, 0.1705322266, 1.248046875, 0.2561035156, -0.4958496094, -0.6767578125, -0.2895507812, -0.033782959, 0.0400695801, 0.373046875, -0.1594238281, 0.1176757812, 0.4926757812, 0.5024414062, -0.061920166, -0.3115234375, 0.0087738037, -0.80859375, -0.7524414062, 0.2858886719, 0.3449707031, -0.1204833984, 0.3408203125, -0.568359375, 0.4575195312, 0.1965332031, 0.9995117188, 0.2939453125, -0.1536865234, -0.1417236328, 0.521484375, -1.0732421875, -0.9487304688, -0.6313476562, 0.4645996094, 0.2993164062, -1.021484375, 0.1588134766, -0.2846679688, 0.2255859375, -0.4309082031, 0.5390625, 0.3217773438, -0.1274414062, 1.2734375, -0.5864257812, -0.4411621094, -1.26171875, -0.0333557129, -0.1373291016, -0.0958251953, 0.2362060547, 0.841796875, -0.798828125, -0.8583984375, -0.1763916016, 0.9443359375, 0.0642700195, -0.3845214844, 1.1220703125, -0.1923828125, 0.0774536133, -0.283203125, 0.5043945312, 0.0397644043, 0.2690429688, 0.7700195312, -0.3559570312, -0.7397460938, 0.4936523438, -0.056060791, -0.1431884766, 0.6118164062, -0.9575195312, -0.70703125, -0.6474609375, -0.1276855469, 0.3981933594, 0.4816894531, -0.7104492188, 0.2248535156, 0.0628662109, 0.1530761719, 0.2296142578, -0.4748535156, -0.150390625, -0.6318359375, -0.9067382812, 0.1889648438, -0.0073890686, 0.3112792969, 0.7534179688, 0.3093261719, -0.1700439453, -0.1239624023, -0.1918945312, -0.234375, 0.0797119141, 0.69921875, -0.1155395508, 0.9887695312, 0.8012695312, 0.2937011719, -0.1267089844, 1.19921875, -0.0435180664, 0.3564453125, 0.3408203125, -1.0205078125, -0.112121582, -0.0512695312, 0.7973632812, 1.2587890625, -1.0791015625, 0.6826171875, 0.8598632812, -0.3129882812, -0.2364501953, -0.3278808594, -0.8310546875, 1.12890625, 0.693359375, 1.08984375, -0.490234375, -1.7216796875, -0.1256103516, -0.0667724609, 0.0134887695, 1.8623046875, 0.7412109375, -1.3515625, 0.8452148438, -0.0325317383, 0.1878662109, -0.4470214844, -0.4116210938, 0.6791992188, 0.2463378906, -0.60546875, -0.5751953125, -0.9287109375, 0.1314697266, -0.0225830078, -0.3461914062, -0.57421875, -0.4177246094, 0.0030422211, 0.7138671875, -0.01512146, -0.5834960938, -0.1031494141, -0.9008789062, -0.2080078125, -0.9155273438, 0.728515625, -0.4519042969, -0.5014648438, -0.802734375, 0.0895385742, -0.8706054688, -0.416015625, 0.0911865234, -1.2021484375, 0.7451171875, -0.2049560547, -0.0503540039, 0.0964355469, -0.7548828125, -0.2690429688, 0.1282958984, 0.5961914062, -0.71484375, -0.3625488281, 0.8491210938, -0.6772460938, -0.80078125, -0.0254516602, 0.4116210938, 1.2998046875, 0.69921875, 0.4396972656, -0.0004131794, -0.7021484375, 0.3928222656, 0.2858886719, -0.2971191406, -1.0859375, -0.0616149902, -0.4118652344, 0.7534179688, 0.6850585938, -0.0853881836, -0.1315917969, -0.1763916016, -0.39453125, -0.4816894531, 0.0502624512, -0.2846679688, -0.1527099609, 0.0068130493, 0.6108398438, 0.8266601562, 0.2697753906, 0.345703125, -0.2709960938, -0.2186279297, 0.1196289062, 0.2893066406, -0.248046875, -0.2722167969, -0.3103027344, -1.259765625, 0.1690673828, 0.7143554688, -0.5869140625, -0.3332519531, -0.5092773438, 0.0668334961, -0.580078125, 0.1784667969, 0.8115234375, 0.1782226562, 0.2172851562, 0.7880859375, -1.1025390625, -0.1505126953, 0.1572265625, 0.6108398438, -0.4719238281, -0.1788330078, 0.4643554688, -0.7875976562, -0.3698730469, -0.3122558594, 0.0755615234, -0.7255859375, 0.294921875, 0.4091796875, 0.3288574219, -1.189453125, -13.65625, -0.671875, 0.1416015625, 0.0010461807, -1.5400390625, -0.3666992188, -0.4645996094, -0.9501953125, -0.37109375, -0.7651367188, -0.2124023438, 0.2432861328, -0.6293945312, 0.2310791016, 0.6000976562, -0.2768554688, -0.5107421875, -0.6469726562, 1.009765625, -0.6342773438, 1.0419921875, 0.4724121094, -0.0594482422, -0.2209472656, -0.5766601562, 1.25390625, 0.1177368164, 0.0772705078, -0.7080078125, 0.6889648438, 0.2854003906, 0.8037109375, -0.5776367188, -0.2697753906, 0.0433654785, -0.5893554688, -0.1240844727, -0.8359375, 0.4514160156, -0.353515625, 0.2883300781, 0.4104003906, -1.228515625, 0.1016845703, 1.4111328125, 0.1074829102, 0.2561035156, -0.4060058594, -0.6586914062, 0.2990722656, -0.7231445312, 0.2507324219, 0.9877929688, -0.189453125, -0.77734375, 0.3312988281, 0.5517578125, 0.3635253906, 0.4904785156, 0.1999511719, -0.376953125, 1.3828125, -0.63671875, -0.4094238281, 0.1477050781, -0.4011230469, -0.2186279297, -0.2580566406, -0.5249023438, -0.2741699219, 0.2293701172, -0.9365234375, 0.0426025391, 0.4287109375, 0.779296875, 0.1268310547, 0.5278320312, -0.1396484375, -0.3798828125, 1.064453125, -1.23828125, 0.4111328125 ]
In the year 2000, the very first practically applicable algorithm for process discovery, "Alpha miner" was developed. The very next year, in 2001, a much similar algorithm based on heuristics called "Heuristic miner" was introduced in the research papers. Further along the link more powerful algorithms such as inductive miner were developed for process discovery. As the field of process mining began to evolve, conformance checking became an integral part of it. The year 2004 earmarked the development of "Token-based replay" for conformance checking purposes. Apart from the mainstream techniques of process discovery and conformance checking, process mining branched out into multiple areas leading to the discovery and development of "Performance analysis", "Decision mining" and "Organizational mining" in the year 2005 and 2006 respectively. In the year 2007, the first-ever commercial process mining company "Futura Pi" was established. The "IEEE task force on PM", a governing body was formed in the year 2009 that began to overlook the norms and standards related to process mining. Further techniques were developed for conformance checking which led to the publishing of "Alignment-based conformance checking" in the year 2010. In 2011, the first-ever Process mining book was published. Further along in 2014, a MOOC course was offered by Coursera on Process mining. By the year 2018, nearly 30+ commercially available process mining tools were in the picture. The year 2019 earmarked the first Process mining conference. Today we have over 35 vendors offering tools and techniques for process discovery and conformance checking.
[ -0.2065429688, -0.2978515625, -0.0348205566, -0.1413574219, -0.0751953125, -0.1343994141, -0.427734375, -0.5180664062, 0.0265960693, 0.2075195312, 0.9501953125, 0.2084960938, -1.3330078125, 0.7690429688, -0.1446533203, 0.685546875, -0.197265625, 0.4602050781, -0.4130859375, 0.681640625, -0.5942382812, -0.5014648438, -0.1141967773, -1.4873046875, -1.6572265625, 0.9165039062, 0.2509765625, 0.3564453125, -0.0133743286, 0.7504882812, 0.3686523438, -0.2270507812, -2.404296875, 0.2568359375, -0.0887451172, 0.6015625, 0.583984375, -0.4011230469, -0.6791992188, -0.0798950195, -0.9404296875, -0.4133300781, 0.7099609375, 0.1818847656, 1.529296875, 0.8569335938, -0.1588134766, -0.66796875, -0.76953125, 0.031463623, -0.1707763672, 0.1909179688, -0.5419921875, -1.064453125, 0.0078735352, -0.2844238281, 1.0751953125, 0.9624023438, 0.6865234375, 0.2014160156, -1.185546875, 0.4860839844, 0.3666992188, 0.1815185547, 0.5961914062, -0.4228515625, -1.201171875, 2.0078125, -0.5810546875, 1.2294921875, -0.525390625, 0.1090698242, 0.0820922852, 0.2447509766, -0.4301757812, 0.30078125, -0.404296875, 0.0602111816, 1.52734375, -0.1320800781, -0.1047363281, -0.7661132812, 0.2154541016, -1.25, 0.1047363281, -0.2471923828, 0.4477539062, -0.6518554688, 0.1417236328, 1.9189453125, 0.117980957, 0.134765625, -1.2626953125, -1.0625, -0.0824584961, -0.2534179688, 0.4970703125, -0.3759765625, -0.8383789062, -0.3591308594, -0.0404663086, 0.2648925781, -0.1875, 0.0930175781, 0.7705078125, -0.9702148438, -0.9887695312, 0.4279785156, -0.7177734375, 0.6811523438, -0.3679199219, -0.4221191406, 0.310546875, -0.7099609375, 0.3198242188, -0.2724609375, 0.3503417969, -0.15625, -0.5952148438, -0.1558837891, 0.814453125, 0.4548339844, -0.50390625, -0.1175537109, 0.7299804688, -0.0448913574, -0.2220458984, -0.3256835938, -0.0808105469, -0.2858886719, -0.013381958, 0.119934082, -0.548828125, -0.6264648438, 0.4213867188, 0.2237548828, -1.6630859375, 0.2836914062, 0.2359619141, 0.3061523438, -0.8662109375, 0.5649414062, 0.5141601562, -0.0252227783, 0.3610839844, -0.051361084, -0.1590576172, 0.1672363281, -0.4555664062, -0.5825195312, 0.0000222325, -0.7890625, 0.4255371094, 0.4650878906, 0.1829833984, 0.0177307129, -0.4799804688, 0.1402587891, 0.8291015625, 0.3508300781, -0.4240722656, -0.4360351562, -0.2919921875, 0.2966308594, 0.59765625, 1.296875, -0.8686523438, 0.4165039062, -0.3286132812, 0.2666015625, -1.2197265625, -0.1948242188, 0.5932617188, -0.1900634766, 0.8154296875, 0.1129150391, 0.9057617188, -0.615234375, -0.1818847656, -0.0118560791, -0.084777832, -1.3720703125, 1.37890625, 0.1608886719, 0.2487792969, 0.2885742188, 0.4274902344, -0.4340820312, 0.34765625, -0.0163421631, 0.4770507812, 0.3041992188, -1.3603515625, 0.2785644531, -0.2448730469, -0.2020263672, -0.1613769531, -0.8471679688, -0.1712646484, 0.6455078125, -0.7275390625, -0.373046875, 0.0642089844, -0.0991210938, -0.6020507812, -0.3598632812, 0.1333007812, 0.6665039062, 1.7314453125, 0.5161132812, -0.3664550781, 0.2587890625, 0.1655273438, -0.0380554199, 0.2019042969, -0.8120117188, 0.0778808594, -0.3210449219, -0.1761474609, -0.5205078125, 0.8793945312, 0.6850585938, -0.2071533203, -0.8676757812, -0.4350585938, 0.8364257812, 0.0342407227, 0.4521484375, 0.4450683594, 0.8452148438, -0.9477539062, 0.3774414062, -0.2163085938, -0.7553710938, 1.130859375, 0.62890625, -0.7958984375, 0.2409667969, 0.7934570312, 0.4169921875, -1.1201171875, 0.0401916504, -0.1174926758, -0.6474609375, 0.1071777344, -0.1807861328, -1.1708984375, 0.3452148438, -0.2924804688, -0.0826416016, 0.4270019531, 0.6333007812, -1.453125, 1.04296875, 0.5966796875, -0.2546386719, -0.1871337891, 0.2521972656, 1.5732421875, -0.0971679688, -0.7021484375, 0.4860839844, 1.505859375, -0.640625, -0.0594787598, 0.2237548828, -0.7758789062, -0.1055908203, 1.3916015625, -0.8388671875, 0.62109375, -0.8325195312, 0.2607421875, -0.3269042969, -0.8266601562, -0.4851074219, -0.51953125, -0.2873535156, -0.8447265625, 0.8833007812, 0.6279296875, 0.2666015625, 0.2780761719, -0.4365234375, 0.2086181641, -0.116027832, -0.0845947266, 0.5717773438, 0.1225585938, -0.576171875, -0.5688476562, -0.2602539062, 0.1871337891, -0.0041122437, -0.1998291016, 0.3901367188, -0.0052452087, -1.0615234375, -0.0689697266, -1.0615234375, 1.3447265625, 0.173828125, -0.2331542969, -0.966796875, 0.8940429688, 0.9541015625, 0.4443359375, -1.3798828125, 0.2120361328, 1.052734375, 0.8159179688, -0.1643066406, 0.0217437744, -0.1072998047, -0.6147460938, -0.2802734375, -1.1845703125, -0.2188720703, -0.6186523438, 0.3471679688, 0.5185546875, -1.5068359375, -0.6997070312, -0.275390625, -0.2663574219, 0.2863769531, -0.9814453125, -1.5888671875, 0.9399414062, 0.8930664062, 0.8842773438, -0.096862793, 0.5908203125, 0.4506835938, 0.4045410156, -0.4157714844, 0.681640625, -1.294921875, 1.1533203125, -0.7421875, -0.4848632812, -0.5224609375, 0.1882324219, -0.435546875, 0.7705078125, -0.85546875, -0.6479492188, -1.064453125, 0.7509765625, -0.2038574219, 0.560546875, 0.2110595703, 0.1115722656, -1.19921875, 0.7084960938, -0.5541992188, 0.1181640625, 0.7729492188, -0.2526855469, 0.0931396484, 0.5390625, 0.9189453125, -1.361328125, -0.0440979004, 0.0504455566, 0.8857421875, -0.1872558594, -1.0263671875, 0.0566101074, -0.0293579102, 0.1796875, -0.2907714844, 0.3186035156, -0.4360351562, -0.0139770508, 0.283203125, 0.0517883301, -0.4438476562, -0.7651367188, 0.693359375, 0.7983398438, 0.5361328125, 0.0282745361, -1.1123046875, -0.2463378906, -0.3605957031, 0.603515625, 0.0751342773, -1.16796875, 0.9033203125, 0.0021381378, 0.0107498169, 0.5424804688, 0.3979492188, 0.4921875, -0.3217773438, 0.521484375, -0.3461914062, 0.58984375, -0.3820800781, -0.552734375, 0.1743164062, -1.0185546875, 0.8994140625, -0.2318115234, 0.4875488281, 1.517578125, -0.3449707031, 0.9643554688, 0.4167480469, -0.30078125, 0.6147460938, -0.035949707, 0.8583984375, -0.3303222656, -0.106628418, -0.0002267361, 0.8598632812, 0.5615234375, 0.1048583984, -0.955078125, 0.2722167969, 0.5727539062, -0.5571289062, -0.6752929688, 0.8393554688, 0.4279785156, -0.2756347656, 0.9287109375, 0.1616210938, -1.1005859375, 0.2180175781, 1.119140625, 0.2819824219, -0.4956054688, -0.3645019531, 0.0516357422, -1.0390625, 0.3811035156, 0.2012939453, 0.5327148438, 0.2609863281, -0.1071166992, -0.6186523438, -0.1717529297, 0.8803710938, 0.6840820312, 0.5444335938, 0.5854492188, 0.0849609375, -0.50390625, -0.3220214844, -0.8330078125, 0.0172119141, 0.0952758789, 0.22265625, -0.494140625, -0.849609375, 0.3796386719, 0.9716796875, 0.0609130859, 0.12109375, -0.52734375, 0.3967285156, -0.2447509766, -1.755859375, -0.0242919922, 0.3845214844, -1.4501953125, 0.0943603516, -0.4326171875, 0.092590332, -0.1514892578, 0.5283203125, 0.390625, 0.6977539062, 0.8798828125, 0.3891601562, -0.91015625, -0.9038085938, -0.4069824219, -0.0654907227, -0.5834960938, -0.7368164062, 0.0119552612, 0.5595703125, 0.2181396484, -0.5654296875, -0.4702148438, 0.0112457275, -0.2209472656, -0.4775390625, -0.0265197754, 0.5610351562, -0.5302734375, -0.0465087891, -0.3657226562, 0.1818847656, 0.771484375, -0.3251953125, -0.7983398438, -0.3686523438, 0.6455078125, -0.7890625, -0.1882324219, -0.2384033203, -0.5068359375, 0.5830078125, 0.8422851562, 0.57421875, 0.724609375, -0.7314453125, 0.3068847656, -0.7690429688, 0.5063476562, -0.6557617188, -0.3991699219, -0.4526367188, -0.3474121094, 0.4990234375, 1.439453125, 0.2174072266, 0.1171264648, -0.1284179688, 1.0107421875, 0.1728515625, -0.3610839844, 0.3273925781, -0.1164550781, 0.6137695312, 0.2088623047, 1.0185546875, -0.6088867188, -0.1112670898, -0.3923339844, -0.97265625, 0.1206665039, -0.1943359375, -0.1494140625, 1.22265625, 0.3647460938, -0.2536621094, -0.3823242188, 0.0506591797, 0.8212890625, 0.2795410156, 0.7255859375, -0.6264648438, -0.8540039062, -1.29296875, -0.5190429688, -0.1016235352, -0.0226593018, 0.8940429688, -0.884765625, -0.2005615234, -0.2006835938, 0.5043945312, 0.2220458984, -0.6484375, -0.3547363281, -0.1607666016, -0.5375976562, 0.5864257812, 0.0687255859, 0.78515625, 0.4794921875, 0.3444824219, 0.2249755859, -0.9365234375, -0.9018554688, 0.4204101562, 0.7397460938, -1.2421875, 0.2208251953, -0.1682128906, -0.0086669922, -0.033416748, 0.2395019531, -0.240234375, -0.7036132812, 0.712890625, -0.7626953125, -0.4477539062, 0.8823242188, 1.8408203125, 0.1147460938, -0.4846191406, -1.2373046875, -0.3000488281, 0.4755859375, -0.1511230469, 1.126953125, 0.0017280579, -0.529296875, -0.029510498, 0.3874511719, 1.052734375, 1.0029296875, -0.0108947754, 0.4206542969, -0.4741210938, 1.8544921875, 0.3977050781, 0.2028808594, -0.0498657227, -0.1534423828, -0.4799804688, 0.1522216797, 0.1557617188, 0.740234375, -0.0975341797, 0.0097427368, -0.2149658203, 0.3249511719, 0.5703125, -0.7934570312, 0.4431152344, -0.2127685547, -2.109375, 0.0919189453, -0.3408203125, 0.5952148438, -0.064453125, 0.0397338867, -0.0324707031, -0.4291992188, -0.4228515625, 0.5991210938, 0.9184570312, -0.509765625, -0.2912597656, 0.0674438477, -0.3178710938, -0.2253417969, -0.2453613281, -0.1301269531, 0.3474121094, 1.01953125, 0.1970214844, 0.2678222656, -0.6899414062, 0.4438476562, -1.181640625, -0.0799560547, -0.7993164062, 0.3110351562, -0.1145629883, -0.75390625, 0.2531738281, 0.4350585938, 0.7065429688, 0.6494140625, 0.3022460938, 0.0120315552, -0.1754150391, -0.3654785156, -0.7377929688, -1.6494140625, -0.2055664062, 0.3305664062, 1.384765625, -0.787109375, 1.2919921875, 0.6948242188, 0.8793945312, -0.658203125, 0.3544921875, -1.03125, -0.4074707031, -0.1677246094, 0.2631835938, -0.1821289062, -0.3254394531, -0.2270507812, -0.4448242188, -0.6704101562, -0.5634765625, -0.7314453125, 0.4677734375, 0.2248535156, -0.4990234375, -0.0620727539, 0.0367126465, -0.8369140625, -0.7744140625, -0.52734375, 0.1635742188, -0.0775146484, 0.1633300781, 0.3469238281, -0.2507324219, -0.3334960938, -0.7202148438, -0.5083007812, -1.6123046875, 0.98828125, 1.02734375, -0.373046875, 0.0983886719, -0.2076416016, -0.9697265625, -0.78515625, -0.1286621094, 0.9868164062, 1.048828125, -0.890625, -1.60546875, -0.1688232422, -0.6069335938, -0.2479248047, 0.177734375, -0.1606445312, 0.1462402344, 0.5610351562, 0.9599609375, -1.009765625, -0.6440429688, 0.5400390625, -1.748046875, -1.4814453125, 0.51953125, 0.7856445312, -0.4099121094, 0.3286132812, 0.357421875, -0.2120361328, 0.3388671875, 0.619140625, 0.4838867188, 0.6000976562, -0.6743164062, -0.205078125, -0.7514648438, -1.125, -0.2534179688, 0.2902832031, 0.9609375, -0.1647949219, 0.2980957031, 0.2231445312, 0.1795654297, -0.0861206055, -0.0958251953, 0.0171356201, -0.5991210938, 1.3994140625, -0.1129760742, -0.1912841797, -0.9169921875, 0.6528320312, 0.2912597656, -0.1708984375, 0.0839233398, 0.5747070312, -0.9458007812, -1.0029296875, -0.0650634766, 0.6333007812, -0.0781860352, 0.0576171875, 0.7646484375, -0.6640625, -0.2340087891, -0.6352539062, -0.0327453613, 0.73046875, 0.2751464844, 0.6020507812, -0.5922851562, -0.412109375, 1.1826171875, -0.2946777344, 0.1126708984, 0.5556640625, -0.9477539062, -0.9677734375, -0.3598632812, -0.1049194336, 0.4340820312, -0.0533752441, -0.4477539062, -0.0748291016, -0.1911621094, 0.0112991333, -0.0374755859, -0.3493652344, 0.067199707, -0.9169921875, -0.7841796875, 0.3920898438, 0.0900878906, 0.6923828125, 1.2060546875, 0.9873046875, 0.2844238281, -0.1815185547, -0.521484375, 0.2395019531, 0.3503417969, 0.671875, -0.3208007812, 0.6391601562, -0.0490722656, -0.1280517578, 0.5146484375, 1.4541015625, 0.0231323242, 0.4086914062, 0.642578125, -0.9384765625, -0.0188446045, 0.1832275391, 1.064453125, 0.8813476562, -0.697265625, 0.3125, 0.2274169922, -0.62109375, 0.1849365234, 0.1512451172, -0.84375, 0.9794921875, 0.947265625, 0.7905273438, -0.4855957031, -1.93359375, 0.3737792969, -0.8603515625, -0.0316772461, 1.998046875, 0.2941894531, -0.4130859375, 0.3974609375, 0.310546875, 0.3571777344, -0.1965332031, -0.0875244141, 0.6596679688, 0.9296875, -0.49609375, -0.4016113281, -0.8666992188, -0.0179138184, -0.2844238281, 0.4025878906, -0.3937988281, -0.058807373, -0.0286560059, 0.2185058594, 0.1798095703, -0.6206054688, -0.3332519531, -0.884765625, 0.0888061523, -0.9614257812, 0.1728515625, -0.5234375, -0.1549072266, -0.0154800415, 0.2287597656, -1.1142578125, 0.2856445312, 0.5786132812, -0.6645507812, 0.0075073242, -0.6240234375, -0.2492675781, -0.2421875, 0.4475097656, -0.1755371094, -0.1605224609, 0.3178710938, -0.7529296875, 0.0300750732, 0.416015625, -0.853515625, -0.6708984375, -0.1580810547, 0.330078125, 0.5390625, -0.0653076172, 0.1290283203, -0.8354492188, -0.7631835938, -0.2717285156, 0.3818359375, -0.552734375, -1.1298828125, -0.50390625, -0.57421875, 0.5239257812, -0.0778808594, 0.0262756348, -0.3061523438, -0.1665039062, -0.1937255859, -0.2563476562, -0.1102294922, -0.5571289062, -0.5307617188, -0.0541381836, 1.291015625, 1.244140625, -0.33984375, 0.7993164062, -0.1896972656, 0.3637695312, 0.2287597656, 0.0405578613, 0.0052871704, -0.2103271484, -0.1802978516, -1.06640625, 1.0986328125, 1.08984375, -0.8779296875, 0.1047363281, -0.4992675781, -0.3425292969, -1.1083984375, 0.2014160156, 0.6337890625, -0.3051757812, 0.2980957031, 0.5966796875, -0.7578125, 0.0207366943, -0.4582519531, 0.0892333984, 0.3579101562, -0.6821289062, 0.7182617188, -0.9223632812, 0.1326904297, -0.8139648438, 0.2893066406, -0.341796875, 0.6264648438, 0.5278320312, 0.4123535156, -1.2412109375, -12.84375, -0.8032226562, 0.0087280273, 0.6333007812, -1.671875, 0.1167602539, -1.0419921875, -0.4860839844, -1.0615234375, -1.3173828125, -0.2895507812, 0.0912475586, -0.1662597656, -0.0291290283, 0.5869140625, 0.0494384766, -0.0297851562, -0.3540039062, 0.7456054688, 0.2010498047, 0.685546875, 1.6240234375, -0.1661376953, -0.4636230469, -0.5131835938, 0.3725585938, -0.080871582, 0.5263671875, -1.73046875, 0.6762695312, 0.4187011719, 0.8251953125, -0.6997070312, -0.5766601562, -0.5029296875, -0.4133300781, 0.2673339844, -0.8686523438, -0.283203125, -0.9370117188, -0.1716308594, -0.1311035156, -0.3701171875, 0.7626953125, 1.1875, -0.3708496094, -0.2235107422, -0.7197265625, -0.6708984375, 0.5581054688, -0.564453125, 0.1463623047, 0.6977539062, 0.4045410156, -0.2069091797, 0.5844726562, 0.0614318848, -0.8657226562, -0.3703613281, 0.8745117188, -1.0771484375, 1.056640625, 0.2310791016, -0.7900390625, -0.46875, -0.5302734375, 0.2873535156, 0.0492858887, -0.9077148438, -0.337890625, 0.0720214844, -0.9482421875, 0.1684570312, 0.1022338867, 0.4606933594, 0.0426025391, 0.681640625, 0.3295898438, -0.4223632812, 0.8227539062, -0.3442382812, 0.7895507812 ]
Process mining is often misinterpreted as a field related to data science. Process mining should be viewed as a bridge between data science and process science. Process mining focuses on transforming event log into a meaningful representation of the process which can lead to the formation of several data science and machine learning related problems. Categories There are three categories of process mining techniques. Process Discovery: The first step in process mining. The main goal of process discovery is to transform the event log into a process model. An event log can come from any data storage system that records the activities in an organisation along with the timestamps for those activities. Such an event log is required to contain a case id (a unique identifier to recognise the case to which activity belongs), activity description (a textual description of the activity executed), and timestamp of the activity execution. The result of process discovery is generally a process model which is representative of the event log. Such a process model can be discovered, for example, using techniques such as alpha algorithm (a didactically driven approach), heuristic miner, or inductive miner. Many established techniques exist for automatically constructing process models (for example, Petri nets, BPMN diagrams, activity diagrams, State diagrams, and EPCs) based on an event log. Recently, process mining research has started targeting other perspectives (e.g., data, resources, time, etc.). One example is the technique described in (Aalst, Reijers, & Song, 2005), which can be used to construct a social network.
[ -0.2502441406, -0.34375, -0.2531738281, 0.3798828125, -0.8217773438, 0.2183837891, -0.6640625, -0.4970703125, 0.1741943359, -0.094909668, 0.1067504883, 0.0085067749, -0.1846923828, 0.33203125, -0.0062255859, 0.3798828125, -0.576171875, 0.2849121094, -0.384765625, 0.1763916016, -0.580078125, -0.490234375, -0.1467285156, -1.8984375, -1.400390625, 0.8471679688, -0.0993041992, 0.1865234375, 0.7719726562, 0.5278320312, -0.3286132812, 0.2648925781, -1.6982421875, -0.203125, 0.3447265625, -0.0684814453, 0.2320556641, -0.0699462891, -1.4609375, -0.060546875, -0.7802734375, 0.1381835938, -0.1875, 0.0554504395, 1.08984375, 0.9497070312, -0.2565917969, -1.25, -1.021484375, -0.1593017578, -0.794921875, 0.0118865967, 0.3137207031, -0.2775878906, 0.8642578125, -0.6459960938, 0.2685546875, 0.4697265625, 0.8481445312, -0.0063400269, -0.2795410156, 0.0872192383, 0.054107666, -0.1479492188, 0.7080078125, -0.2568359375, -0.4069824219, 1.0009765625, -1.1435546875, 0.6879882812, 0.3525390625, -0.5317382812, -0.708984375, -0.2409667969, 0.541015625, 0.62890625, -0.4484863281, 0.0530700684, 1.28515625, 0.4016113281, -0.2436523438, -0.4602050781, -0.0970458984, -0.7329101562, -0.1127319336, 0.0699462891, 0.1307373047, -0.2944335938, -0.330078125, 1.779296875, 0.4611816406, 0.0327148438, -0.2424316406, -1.001953125, 0.1014404297, -0.5673828125, 0.0363769531, -0.3239746094, -0.7333984375, -0.3149414062, 0.2163085938, 0.4565429688, 0.1970214844, 0.3625488281, -0.0421142578, 0.6484375, -0.7109375, 0.3269042969, -0.2709960938, 0.1898193359, -0.5141601562, 0.5434570312, 0.043762207, -1.345703125, 0.2032470703, 0.14453125, 0.6401367188, -0.6767578125, -0.0440368652, 0.0891113281, -0.1748046875, 1.150390625, -0.1284179688, -0.1766357422, 0.2198486328, -0.1607666016, -0.1235961914, -0.3029785156, 0.4333496094, 0.2641601562, 0.2602539062, 0.0670166016, -0.080078125, -0.0265045166, -0.2182617188, -0.4230957031, -1.1748046875, 0.521484375, -0.3295898438, 1.0751953125, 0.0254516602, 0.2265625, 0.2194824219, -0.6323242188, -0.4267578125, 0.3095703125, -0.5498046875, -0.0141906738, -0.2810058594, -0.9877929688, 0.0029239655, -0.5112304688, 0.0854492188, 0.0134048462, -0.5180664062, 0.6342773438, -0.3759765625, 0.2644042969, 0.0239562988, -0.5615234375, -0.4291992188, -1.171875, -0.5908203125, 0.9184570312, 0.0833129883, 1.685546875, -0.720703125, -0.5009765625, -0.029510498, 0.3291015625, -0.4985351562, 0.3347167969, 0.2919921875, -0.0436401367, 0.2106933594, 0.4184570312, 0.3571777344, -0.5024414062, 0.4819335938, 0.0014133453, 0.0806884766, -1.4990234375, 1.083984375, 0.5166015625, 0.0329589844, -0.345703125, 0.3486328125, 0.2893066406, 0.662109375, -0.0773925781, 0.1057739258, -0.1785888672, -0.6782226562, 0.7924804688, -0.0684204102, -0.6723632812, -1.2685546875, -0.65234375, 0.1216430664, 0.9545898438, -0.0017595291, -0.9370117188, 0.3657226562, -0.2934570312, -0.7578125, 0.3654785156, 0.3176269531, 0.1791992188, 2.0234375, 0.4543457031, 0.0239868164, 0.6235351562, -0.2248535156, -0.1656494141, -0.3071289062, -0.6704101562, -0.4931640625, -0.5776367188, -0.345703125, 0.0526428223, 0.6040039062, 0.6411132812, -0.4719238281, -0.54296875, 1.1728515625, 0.9643554688, 0.1323242188, 0.3303222656, 0.6552734375, 0.1221313477, -0.1723632812, 0.5073242188, 0.1374511719, -0.0251464844, 0.3247070312, -0.0635986328, -0.6586914062, -0.4094238281, -0.0773925781, -0.322265625, -0.5029296875, -0.2922363281, -0.3566894531, 0.0170288086, 0.2875976562, 0.1595458984, -0.6762695312, 0.5610351562, -0.0928344727, 0.34765625, -0.1173706055, 0.2202148438, -0.5454101562, 1.171875, 0.0922851562, -0.8334960938, -0.6323242188, -0.8784179688, 0.5478515625, 0.1353759766, -0.4125976562, 0.2985839844, 1.265625, -0.9208984375, -0.3571777344, 0.0296630859, -0.560546875, -0.720703125, 1.494140625, -0.7504882812, 0.2641601562, -0.9892578125, 0.1740722656, 0.0261230469, -0.650390625, -0.7348632812, 0.4899902344, -0.7919921875, -0.1593017578, 0.5073242188, 0.2298583984, 0.2055664062, -0.3627929688, 0.1447753906, 0.6572265625, -0.52734375, -0.2100830078, 1.0791015625, 0.1494140625, -0.6743164062, -0.1260986328, -0.2149658203, -0.2717285156, 0.032623291, 0.2008056641, 0.75, 0.3459472656, -0.4104003906, 0.2680664062, -0.4826660156, 1.0458984375, -0.2401123047, -0.8383789062, -0.8774414062, 1.1025390625, 0.0635375977, -0.1315917969, -1.302734375, 0.8828125, 0.5541992188, -0.3608398438, -0.0041656494, 0.4135742188, 0.3483886719, -0.2556152344, -0.1087646484, -2.060546875, 0.1291503906, 0.0270080566, -0.1315917969, 0.5986328125, -0.1766357422, -0.2120361328, -0.3095703125, -0.3625488281, 0.7612304688, -0.9467773438, -1.2958984375, 0.1966552734, 0.5029296875, 0.6840820312, 0.2973632812, 0.666015625, 0.3298339844, 0.1228027344, -0.0224304199, -0.6079101562, -0.4645996094, 0.3713378906, -0.4079589844, -1.08984375, -0.2807617188, 0.2338867188, 0.3115234375, 0.4047851562, -0.328125, -0.2863769531, -0.646484375, 0.0771484375, -0.1420898438, 0.3811035156, 0.5185546875, -0.2039794922, -0.5327148438, 0.030960083, -1.3046875, 0.4660644531, 0.9404296875, 0.5278320312, 0.7490234375, 0.9262695312, 1.0654296875, -1.3974609375, 0.3510742188, -1.041015625, 1.2900390625, 0.0798950195, 0.0060501099, -1.3623046875, -0.8051757812, 0.4790039062, 0.3879394531, 0.52734375, -0.1979980469, -0.0498657227, -0.5908203125, 1.0380859375, -0.1156005859, -0.2182617188, -0.3500976562, 0.494140625, 0.0704345703, 0.025970459, -1.0693359375, -0.1320800781, 0.1573486328, 0.3386230469, -0.224609375, -1.7822265625, 0.1712646484, -0.4226074219, -0.3891601562, 0.8681640625, 1.0146484375, 0.9877929688, 0.2406005859, 0.1165161133, -0.345703125, 0.783203125, -0.3149414062, 0.1337890625, -0.75, -1.236328125, -0.1365966797, 0.1024169922, -0.0379333496, 0.7822265625, 0.1045532227, 0.7924804688, 0.1645507812, -0.1968994141, 0.4035644531, -0.2895507812, 0.2817382812, 0.0620727539, -0.018081665, -0.2374267578, 0.3957519531, 0.4951171875, 0.5942382812, -0.6704101562, 0.2509765625, 0.2761230469, -0.5830078125, -0.8369140625, 0.7739257812, 0.102355957, -0.0915527344, 0.9897460938, -0.306640625, -1.0986328125, -0.1228637695, 0.7265625, 0.3994140625, -0.6416015625, -0.1251220703, -0.1909179688, -0.6118164062, 0.1954345703, -0.2398681641, 0.3208007812, 0.8413085938, -0.1066894531, -0.3864746094, -0.1439208984, 0.4558105469, 1.072265625, 0.2915039062, 0.7758789062, -0.1561279297, 0.1755371094, -0.5864257812, 0.096862793, 0.2301025391, 0.5922851562, -0.3444824219, -0.1087646484, -0.5971679688, -0.3669433594, 0.3937988281, -0.4758300781, 0.1285400391, -0.984375, 0.3540039062, -0.0639038086, -1.7470703125, 0.0408630371, 0.4028320312, -1.333984375, -0.4262695312, -0.2001953125, 1.0458984375, 0.8491210938, 0.0546569824, -0.2283935547, 0.7568359375, 0.7416992188, -0.1766357422, -0.4020996094, -1.111328125, -0.1107177734, -0.0731811523, -1.146484375, -0.943359375, 0.544921875, 0.2362060547, -0.0330505371, -0.6010742188, 0.0980224609, 0.8452148438, -0.3803710938, -0.474609375, -0.845703125, -0.3051757812, -1.013671875, -0.7841796875, 0.3713378906, -0.0440063477, 0.8354492188, -1.1513671875, -0.8149414062, 0.0060272217, 0.3586425781, 0.2822265625, -0.1823730469, 0.4423828125, -0.9345703125, -0.5883789062, 0.5419921875, 0.3991699219, 0.685546875, -0.5170898438, 0.8813476562, -0.595703125, 0.537109375, -0.951171875, -0.0653686523, -0.59765625, -0.322265625, 0.2020263672, 0.9477539062, -0.2419433594, 0.6528320312, 0.1732177734, 0.3984375, 0.8891601562, -0.5424804688, 0.3640136719, -0.53515625, -0.0854492188, 0.3227539062, 0.9560546875, -0.3786621094, 0.0610656738, 0.1839599609, -0.1676025391, 0.2265625, -0.3654785156, -0.2717285156, 0.814453125, 0.9985351562, 0.2890625, -0.9184570312, 0.1218261719, 0.3210449219, 0.94140625, 0.7143554688, -0.2189941406, -0.6728515625, -0.736328125, 0.1091308594, -0.112121582, -0.1125488281, 1.017578125, -0.9682617188, -0.2465820312, -0.1970214844, 0.42578125, 0.53125, -0.8950195312, -0.263671875, 0.1982421875, -0.3552246094, 0.9985351562, -0.5322265625, 1.1953125, 0.392578125, 0.0845336914, 0.3479003906, -1.20703125, -0.203125, -0.1149902344, 0.513671875, -0.4138183594, 0.6166992188, 0.0790405273, 0.3596191406, -0.2464599609, -0.2086181641, 0.8989257812, -0.3347167969, 0.89453125, -0.7016601562, -0.509765625, 0.1492919922, 2.052734375, 0.1861572266, -0.5854492188, -0.849609375, -0.6782226562, 0.4565429688, -0.5541992188, 0.3989257812, 0.2314453125, -1.048828125, -0.5893554688, 0.2995605469, 1.2353515625, -0.5151367188, -0.2158203125, 0.0978393555, -0.8466796875, 0.27734375, -0.1977539062, 0.3923339844, -0.1929931641, 0.2724609375, -0.3757324219, -0.2016601562, 0.0577697754, -0.1662597656, 0.0142822266, 0.5625, -0.3972167969, 0.2729492188, 1.07421875, -0.5297851562, 0.1210327148, -0.1078491211, -1.5224609375, -0.8188476562, 0.1674804688, 0.4201660156, -0.3305664062, -0.0065498352, 0.0005660057, -0.5932617188, -0.5698242188, -0.125, 1.05078125, -0.1531982422, -0.0278625488, 0.3608398438, -0.1417236328, -0.353515625, -0.2587890625, 0.6079101562, 0.8090820312, 0.7954101562, -0.1346435547, 0.2446289062, -0.1402587891, -0.2189941406, -0.7099609375, 0.5522460938, -1.01171875, 0.1221313477, -0.1477050781, 0.1630859375, 0.4892578125, 0.0380249023, 0.59765625, 0.5874023438, 0.0982055664, -0.0526123047, 0.0651855469, 0.4157714844, -1.015625, -0.5336914062, 0.0973510742, -0.4047851562, 1.5634765625, -0.6635742188, 0.890625, 0.4990234375, 0.6240234375, -0.6430664062, 0.396484375, -1.2548828125, -0.1721191406, 0.875, 0.3215332031, -0.4465332031, 0.0455932617, 0.1444091797, -0.5434570312, -0.5087890625, -0.4326171875, -0.6723632812, 0.3994140625, -0.1535644531, 0.016784668, 0.3627929688, 0.890625, -0.2484130859, -0.2338867188, -0.8334960938, -0.5703125, -0.2844238281, 0.60546875, -0.0037918091, 0.1075439453, -0.4201660156, -0.6293945312, -0.1613769531, -0.9677734375, 0.2208251953, 0.4240722656, -0.0098724365, 0.2609863281, 0.1578369141, -1.4560546875, -0.5151367188, -0.33203125, 1.0830078125, 0.1469726562, -0.5385742188, -0.8901367188, 0.4802246094, 0.052734375, 0.1281738281, 0.1721191406, 0.1889648438, 0.0526428223, 0.4638671875, 0.9721679688, -0.1422119141, 0.0567932129, -0.1235961914, -0.7919921875, -0.9692382812, -0.5239257812, 0.2434082031, -0.1824951172, 0.1948242188, -0.2631835938, -0.0887451172, 0.0876464844, 0.4650878906, 0.0565795898, -0.1658935547, -0.0476379395, 0.736328125, 0.0052070618, 0.2326660156, -0.7612304688, 0.4338378906, -0.0913696289, 0.025177002, 0.2578125, -0.2427978516, 0.7504882812, -0.2556152344, 0.4099121094, 0.0470275879, -0.2563476562, 1.23828125, 0.0014228821, -0.6284179688, -0.6538085938, 0.0011501312, -0.0869140625, -0.3505859375, 0.341796875, 0.8349609375, -0.8056640625, -0.2875976562, -0.7509765625, 1.1123046875, -0.5131835938, -0.2165527344, 0.751953125, -0.8305664062, -0.255859375, -0.3100585938, 0.0139846802, 0.3947753906, 0.1479492188, 0.7055664062, -0.9497070312, -0.3041992188, 0.0262908936, -0.6196289062, -0.0374755859, 0.91015625, -0.1750488281, -0.5102539062, -0.3454589844, -0.3107910156, 0.3459472656, 0.1643066406, -0.7705078125, 0.0809936523, 0.740234375, 0.09765625, -0.1365966797, -0.6416015625, 0.1204223633, -0.3266601562, -0.9868164062, 0.3579101562, 0.0648193359, 0.900390625, 0.7397460938, 0.2761230469, -0.1363525391, -0.4255371094, 0.1031494141, -0.0287475586, 0.0207214355, 0.4555664062, -0.43359375, 0.8740234375, 0.6596679688, -0.2927246094, 0.1475830078, 1.5927734375, 0.2736816406, 0.7612304688, 0.5068359375, -0.9091796875, 0.1119995117, -0.2269287109, 0.6245117188, 0.9814453125, -0.904296875, 0.3930664062, 0.2260742188, -0.0690917969, 0.0554199219, -0.0397949219, -0.5170898438, 1.2529296875, 0.3244628906, 0.4443359375, -0.2138671875, -1.287109375, 0.71484375, -0.2607421875, 0.3100585938, 1.1591796875, 0.4204101562, -0.3686523438, 0.7021484375, 0.1007080078, -0.2741699219, -0.9384765625, -0.2341308594, 0.9794921875, 0.3354492188, -0.2866210938, -0.3386230469, -0.7143554688, -0.4916992188, -0.9135742188, -0.1558837891, -0.7045898438, -0.1993408203, -0.1541748047, 0.603515625, 0.056060791, -1.1025390625, 0.0517578125, -0.6381835938, -0.7124023438, -0.5693359375, 0.5629882812, 0.1397705078, -0.3125, 0.0928955078, 0.1320800781, -1.2138671875, -0.4621582031, -0.2680664062, -0.630859375, 0.1488037109, -0.640625, 0.1682128906, 0.2470703125, 0.0900268555, -0.2489013672, 0.5615234375, 0.3940429688, -0.564453125, -0.5205078125, 0.2624511719, -0.7041015625, -0.7666015625, -0.1485595703, 0.2822265625, 0.7724609375, -0.3288574219, -0.1107788086, -0.7153320312, 0.1971435547, 0.2797851562, 0.5600585938, -0.4248046875, -1.14453125, -0.4643554688, -0.52734375, 0.3842773438, 0.4152832031, 0.026550293, -0.5747070312, 0.0186157227, 0.1098632812, 0.537109375, -0.3696289062, -0.7626953125, -0.3718261719, -0.8051757812, 1.4619140625, 0.6430664062, -0.564453125, 0.0404052734, 0.2761230469, -0.0250091553, 0.3234863281, 0.3400878906, 0.1300048828, -0.1903076172, -0.9946289062, -0.7641601562, -0.75, 0.1708984375, -0.2805175781, 0.0178985596, -0.3127441406, -0.4675292969, -0.3681640625, 0.0761108398, 0.9501953125, 0.0480651855, 0.6391601562, 0.5180664062, -1.2431640625, -0.1285400391, 0.5341796875, 1.0390625, -0.4321289062, -0.1311035156, -0.1079101562, -0.7075195312, 0.8549804688, 0.0820922852, 0.2653808594, -0.1832275391, 0.4230957031, 0.2526855469, 0.1790771484, -0.9965820312, -14.7578125, -0.509765625, -0.0675048828, 0.201171875, -0.83984375, 0.1091308594, -1.375, -0.2670898438, -0.9165039062, -0.7329101562, -0.84375, -0.0586547852, 0.3171386719, 0.1678466797, 0.5561523438, -0.6782226562, -0.3955078125, -0.3955078125, 0.7905273438, 0.040435791, 0.8383789062, 0.7407226562, -0.62109375, -0.1379394531, -0.5405273438, 0.6264648438, 0.1435546875, 0.0740356445, -0.7568359375, -0.0328063965, 0.2126464844, 0.8256835938, -0.5424804688, 0.1998291016, -0.2163085938, -0.6826171875, 0.6787109375, -0.4780273438, -0.0541687012, -0.0037517548, 0.416015625, 0.1326904297, -0.7280273438, -0.2983398438, 0.599609375, -0.4475097656, -0.0413818359, -1.0791015625, -0.3715820312, 0.3701171875, -0.6171875, 0.734375, 1.2294921875, 0.6313476562, -0.3889160156, -0.0532836914, 0.4599609375, -0.2741699219, 0.1242675781, 0.3881835938, 0.0973510742, 1.24609375, -0.1341552734, -0.6831054688, 0.1456298828, -0.77734375, -0.1547851562, -0.1083374023, 0.060546875, -0.0377197266, 0.9956054688, -0.3161621094, -0.5795898438, 0.5473632812, 0.5551757812, 0.494140625, 0.5444335938, 0.1746826172, 0.2565917969, 0.9829101562, -0.67578125, 0.3771972656 ]
Now a days, techniques such as "streaming process mining" are being developed to work with continuous online data that has to be processed on the spot. Conformance checking: Helps in comparing an event log with an existing process model to analyse the discrepancies between them. Such a process model can be constructed manually or with the help of a discovery algorithm. For example, a process model may indicate that purchase orders of more than 1 million euros require two checks. Another example is the checking of the so-called "four-eyes" principle. Conformance checking may be used to detect deviations (compliance checking), or evaluate the discovery algorithms, or enrich an existing process model. An example is the extension of a process model with performance data, i.e., some a priori process model is used to project the potential bottlenecks. Another example is the decision miner described in (Rozinat & Aalst, 2006b), which takes an a priori process model and analyses every choice in the process model. The event log is consulted for each option to see which information is typically available the moment the choice is made. Conformance checking has various techniques such as "token-based replay", "streaming conformance checking" that are used depending on the system needs.Then classical data mining techniques are used to see which data elements influence the choice. As a result, a decision tree is generated for each choice in the process. Performance Analysis: Used when there is an a priori model.
[ -0.2836914062, 0.0602111816, -0.1798095703, -0.3757324219, 0.3813476562, 0.0207824707, -0.0959472656, -0.1497802734, -0.4729003906, 0.0586547852, 0.7446289062, 0.2122802734, 0.0632324219, 0.8237304688, 0.314453125, 0.3237304688, -0.43359375, 1.0107421875, 0.5029296875, 0.5693359375, -0.0542297363, -0.6362304688, 0.0476379395, -1.63671875, -0.931640625, 0.0621643066, 0.2032470703, -0.1114501953, 0.265625, 0.7104492188, 0.3403320312, 0.1163330078, -1.9208984375, -0.1741943359, 0.0659179688, 0.2883300781, 0.7465820312, -0.2839355469, -1.125, -0.1971435547, -0.630859375, 0.4475097656, 0.0725097656, 0.2775878906, 0.6865234375, 0.6948242188, -0.6845703125, -0.4821777344, -0.65625, -0.3359375, -0.0300750732, 0.2531738281, -0.1195068359, -1, 0.4770507812, -0.3681640625, 0.126953125, 1.1474609375, 1.0166015625, -0.7182617188, -0.447265625, -0.0523071289, 0.0973510742, -0.4016113281, 0.4091796875, 0.1787109375, -0.8125, 2.52734375, -0.359375, 0.9814453125, 0.0015707016, 0.1198730469, -0.697265625, 0.2604980469, 0.0848999023, 0.6650390625, -0.1636962891, -0.017364502, 0.9916992188, 0.3488769531, -0.3051757812, 0.0179595947, 0.4094238281, -0.4892578125, -0.2463378906, 0.09375, 0.3779296875, 0.0299072266, 0.0151443481, 1.44140625, 0.3920898438, -0.0321044922, -0.9282226562, -1.16015625, 0.0260467529, -0.1303710938, 0.7397460938, -0.5498046875, -0.8374023438, -0.7260742188, -0.8671875, 0.3483886719, 0.3820800781, 0.2622070312, -0.3293457031, -0.1970214844, -0.4379882812, 0.470703125, -0.4782714844, 0.0802612305, -0.7685546875, -0.505859375, 0.4370117188, -0.7836914062, 0.0640258789, -0.116027832, 0.1079711914, 0.2053222656, 0.1030273438, -0.3937988281, 0.3784179688, 1.26953125, 0.2580566406, -0.025680542, 0.4951171875, -0.1011352539, -0.3747558594, -0.2485351562, 0.990234375, -0.7880859375, -0.525390625, 0.2126464844, -0.0706787109, 0.2526855469, -0.46875, -0.1061401367, -0.8325195312, 0.2900390625, -0.1413574219, 0.6518554688, -0.3090820312, -0.1071166992, -0.4809570312, -0.2661132812, 0.2602539062, -0.2861328125, -0.4479980469, 0.6342773438, -0.2673339844, -1.015625, -0.1416015625, 0.2783203125, -0.0642700195, -0.1501464844, -0.2103271484, 0.20703125, -0.3605957031, -0.0726928711, 0.0782470703, -0.3308105469, -0.4326171875, -0.9028320312, -0.9995117188, 0.5727539062, 0.2430419922, 1.2470703125, -0.5927734375, 0.6577148438, -0.453125, 0.1302490234, -0.48828125, -0.1831054688, 0.2419433594, -0.0132522583, 0.4353027344, 0.1678466797, 0.0275878906, -0.8120117188, -0.3940429688, 0.1986083984, -0.2493896484, -1.5087890625, 0.96484375, 0.5595703125, 0.0086593628, -0.4091796875, 0.1030273438, -0.0044250488, 0.0659179688, -0.400390625, -0.1169433594, -0.55859375, -1.4169921875, 1.0615234375, -0.2822265625, 0.2210693359, -0.3295898438, -1.224609375, -0.3159179688, 0.4211425781, -0.6845703125, -0.3901367188, 0.0875854492, 0.2902832031, -1.3671875, -0.1323242188, 0.1827392578, 0.8154296875, 1.5087890625, 0.8032226562, -0.1129760742, 0.1845703125, 0.1647949219, 0.1138916016, -0.4694824219, -0.0654296875, 0.3657226562, -0.1611328125, -0.4172363281, 0.1257324219, 0.5678710938, 0.7197265625, 0.4245605469, -0.0560913086, 0.4025878906, 1.0458984375, 0.5302734375, 1.3251953125, 0.4536132812, 0.1844482422, -0.3288574219, 1.07421875, 0.2355957031, 0.7504882812, 0.705078125, 0.0346069336, -0.591796875, 1.5, 0.4943847656, 0.6459960938, -0.5356445312, -0.1633300781, -0.1071777344, -0.1517333984, 0.4772949219, -0.4233398438, -0.8154296875, 0.7309570312, -0.4753417969, -0.13671875, -0.0536499023, 0.4907226562, -0.8173828125, 1.9267578125, 0.306640625, -0.9560546875, -0.3012695312, -0.0127258301, 0.6826171875, 0.322265625, -0.1396484375, 0.1520996094, 1.009765625, -1.0947265625, 0.1654052734, -0.1744384766, -0.9799804688, -0.5908203125, 1.4462890625, -1.0703125, 0.2790527344, -0.8427734375, 0.5278320312, -0.9790039062, -0.0344238281, -0.7622070312, -0.1402587891, -0.7895507812, 0.3740234375, 0.9731445312, 0.6640625, 0.6259765625, -0.0342102051, 0.1746826172, 0.1688232422, -0.9287109375, -0.2319335938, 0.67578125, 0.6240234375, -0.4758300781, -0.7939453125, -0.1588134766, 0.1441650391, 0.5454101562, 0.0401306152, 0.4191894531, -0.0322875977, -0.6640625, 0.4807128906, -0.1599121094, 0.72265625, 0.3520507812, -0.3527832031, -0.8798828125, 1.0947265625, 0.1132202148, 0.3234863281, -1.5556640625, 0.2604980469, 0.5634765625, 0.3481445312, -0.3254394531, 0.8720703125, 0.326171875, -0.1746826172, 0.5483398438, -2.1640625, -0.0399169922, -0.4975585938, -0.1959228516, 0.26953125, -0.7138671875, -1.0634765625, -0.6831054688, -0.7841796875, 0.6767578125, -0.9526367188, -0.7319335938, 0.0710449219, 0.724609375, 1.2880859375, -0.0508422852, 0.2076416016, 0.8388671875, 0.0229644775, -0.2314453125, -0.2565917969, -1.064453125, 0.3276367188, -0.6845703125, -0.1577148438, -1.0439453125, 0.0070343018, -0.1888427734, 0.3088378906, -0.4270019531, -0.9516601562, -1.3984375, 1.08984375, -0.2381591797, 0.513671875, 0.0415039062, 0.173828125, -1.638671875, 0.4768066406, -0.7924804688, -0.5810546875, 0.5073242188, -0.1217651367, 0.9306640625, 0.7763671875, 0.7690429688, -1.7314453125, 0.5859375, -0.6264648438, 1.384765625, 0.0833129883, -1.0556640625, -0.0814819336, -0.4152832031, 0.1740722656, 0.1082763672, 0.328125, -0.8720703125, -0.6416015625, 0.0045967102, 0.7446289062, -0.1235351562, 0.114074707, 0.4282226562, -0.1237182617, 0.1729736328, 0.3198242188, -0.8940429688, 0.0778198242, 0.2619628906, 0.41015625, -0.6088867188, -1.509765625, 1.1923828125, -0.1597900391, 0.1120605469, 0.0582580566, 0.9140625, 0.5712890625, -0.2731933594, 0.0530700684, -0.2661132812, 0.6293945312, -0.1728515625, 0.1358642578, -0.1140136719, -1.451171875, 0.1513671875, -0.1124267578, 0.6362304688, 1.7998046875, -0.5493164062, 0.9501953125, 0.841796875, -0.2464599609, 0.5209960938, -0.6728515625, 0.9389648438, 0.3764648438, 0.5966796875, 0.4992675781, 0.0680541992, 0.2739257812, 0.482421875, -0.6713867188, -0.0236206055, 0.6450195312, -0.5629882812, -0.4670410156, 0.6923828125, 0.2653808594, -1.134765625, 1.1728515625, -0.1862792969, -1.6728515625, 0.66796875, -0.2406005859, 0.3786621094, 0.2370605469, -0.447265625, 0.2496337891, -0.9106445312, 0.6826171875, 0.3273925781, 0.2230224609, 0.9106445312, 0.5874023438, -0.4311523438, 0.2175292969, 0.9638671875, 0.9799804688, 0.7490234375, 0.6201171875, 0.509765625, -0.1417236328, -0.024017334, -0.2766113281, -0.2481689453, 0.748046875, 0.2348632812, -0.1034545898, -0.6362304688, -0.2619628906, 0.673828125, -0.1806640625, 0.375, -1.240234375, -0.0563659668, -0.2839355469, -0.3564453125, -0.6171875, 0.1479492188, -0.9248046875, 0.4245605469, -0.2890625, 0.4365234375, -0.3957519531, 0.330078125, -0.2426757812, 0.8120117188, 0.6635742188, -0.0893554688, -0.646484375, -1.0751953125, -0.1999511719, -0.5263671875, -0.958984375, -1.2236328125, 0.3898925781, 0.5209960938, 0.3266601562, -0.8715820312, -0.3618164062, -0.0400695801, -0.0062942505, -0.8159179688, -0.1986083984, -0.1291503906, -0.3361816406, 0.779296875, 0.4892578125, 0.2320556641, 0.7885742188, -0.2980957031, -1.21484375, -0.2734375, 0.7651367188, -0.4436035156, 0.0822753906, 0.1900634766, -0.2438964844, 0.1949462891, 0.375, -0.4616699219, 0.3688964844, -0.0177307129, -0.0916748047, -0.1977539062, 0.931640625, -1.19140625, -0.4189453125, -0.7573242188, 0.2878417969, -0.0852050781, 0.4055175781, 0.4284667969, 0.1778564453, -0.2546386719, 0.6655273438, 0.4943847656, -0.4543457031, -0.2814941406, -0.2341308594, 0.1359863281, 0.6176757812, 1.2021484375, 0.1864013672, 0.70703125, -0.098449707, -0.6000976562, 0.3967285156, -0.275390625, -0.6416015625, 1, 0.3442382812, 0.5473632812, -1.3974609375, 0.1756591797, 0.1313476562, 0.45703125, 0.58984375, -0.3598632812, -0.755859375, -1.63671875, -0.2875976562, 0.0531616211, -0.146484375, 1.0615234375, -1.7470703125, -0.75390625, -0.4948730469, 0.1197509766, 0.0606079102, -0.98046875, -0.50390625, -0.0494995117, -0.4736328125, 0.9326171875, -0.4365234375, 1.486328125, 0.4660644531, 0.458984375, -0.0560302734, -1.3466796875, -0.6489257812, 0.0128097534, 0.8603515625, -1.39453125, 0.84765625, -0.4267578125, 0.8681640625, -0.2314453125, -0.6362304688, -0.0787963867, -0.0731811523, 1.443359375, -1.099609375, 0.1293945312, 0.5688476562, 1.1494140625, 0.2673339844, 0.4399414062, -0.4838867188, -0.6420898438, 0.6069335938, -0.3798828125, 0.4697265625, 0.0030479431, -0.5385742188, -0.7939453125, 0.0010480881, 1.2822265625, 0.4291992188, -0.1925048828, 0.1790771484, -0.0490112305, 1.3125, 0.2329101562, 0.494140625, -0.3310546875, -0.2678222656, -0.7963867188, 0.1773681641, 0.3232421875, 0.43359375, -0.1011352539, -0.0068321228, -0.1093139648, 0.0287322998, 0.4445800781, -0.9272460938, 0.6313476562, 0.1010742188, -1.4658203125, -0.1340332031, 0.2595214844, 0.986328125, -0.3913574219, -0.7377929688, -0.1056518555, -0.6235351562, -0.455078125, 0.3491210938, 2.005859375, -0.0493164062, -0.611328125, -0.1031494141, -0.1479492188, -0.1862792969, -0.4543457031, -0.77734375, 0.4580078125, 1.1640625, 0.3203125, 0.2362060547, -0.1834716797, -0.0869750977, -1.037109375, 0.1719970703, -0.619140625, 0.2724609375, -0.7172851562, 0.3596191406, 0.3107910156, 0.4724121094, -0.1708984375, 0.2966308594, 0.0247344971, -0.6020507812, 0.7705078125, 0.0555419922, -1.029296875, -0.66796875, 0.5659179688, -0.810546875, 1.7802734375, -0.625, 0.9443359375, 0.0006928444, 0.3627929688, -0.873046875, -0.1689453125, -0.6499023438, -0.3198242188, -0.0070228577, -1.2646484375, 0.2426757812, -0.2033691406, -0.1278076172, -0.6137695312, 0.1842041016, -0.681640625, -0.9467773438, 0.3015136719, 0.2045898438, -0.0934448242, -0.0115509033, 0.4958496094, -0.1810302734, 0.0804443359, -0.560546875, -0.72265625, -1.0869140625, 0.2858886719, -0.4738769531, 0.3088378906, -0.2604980469, -0.5317382812, -0.67578125, -0.1929931641, 0.58203125, 1.1923828125, -1.25390625, -0.1010742188, 0.0607910156, -1.23828125, -0.0256958008, -0.1458740234, 1.1484375, 1.029296875, -0.7744140625, -1.3828125, 0.6801757812, -0.4213867188, 0.1702880859, 0.0245666504, -0.0463867188, -0.0737304688, 0.1296386719, 0.9204101562, -1.1611328125, -0.0645141602, 0.1544189453, -0.90234375, -1.8203125, 0.3474121094, 0.4873046875, -0.2651367188, 0.3464355469, -0.1616210938, -0.5688476562, 0.6918945312, -0.2495117188, 0.7612304688, 0.1793212891, -0.369140625, -0.0300445557, -0.5830078125, 0.1950683594, -0.2209472656, 0.5502929688, 0.9311523438, -0.4995117188, 0.396484375, -0.2337646484, 0.345703125, 0.3420410156, 0.5952148438, 0.0798339844, -0.3142089844, 1.3994140625, -0.2093505859, -0.3835449219, -0.7387695312, 0.3034667969, -0.677734375, -0.7456054688, 0.54296875, 0.283203125, -1.080078125, -0.9096679688, 0.2420654297, 0.6225585938, -0.1618652344, 0.0035667419, 0.5922851562, -0.2983398438, -0.4729003906, -0.6391601562, -0.020904541, 0.1678466797, 0.0569763184, 0.2536621094, -0.8442382812, -0.0802001953, -0.2634277344, -0.263671875, 0.1530761719, 1.0302734375, -1.0478515625, -0.5249023438, -0.9360351562, 0.0286865234, -0.051940918, 0.87109375, -0.7172851562, 0.4541015625, -0.1427001953, 0.4372558594, -0.2651367188, -0.0438537598, 0.4748535156, -0.3625488281, -1.4970703125, 0.067565918, -0.3989257812, 0.8564453125, 0.943359375, 0.1809082031, -0.0145187378, 0.1402587891, -0.1117553711, 0.2297363281, 0.3444824219, 0.3979492188, -0.1826171875, 1.0556640625, -0.4074707031, 0.41015625, 0.25, 1.3408203125, 0.0004916191, 0.3515625, 0.3559570312, 0.0403442383, 0.1035766602, 0.1085205078, 0.6708984375, 1.1923828125, -0.4333496094, 0.7583007812, 0.2817382812, -1.02734375, 0.2457275391, 0.1195678711, -0.8525390625, 0.8017578125, -0.0093078613, 0.6279296875, -1.099609375, -0.7036132812, 0.3376464844, -1.01171875, 0.4802246094, 1.94921875, 0.810546875, -0.3132324219, -0.2644042969, 0.3024902344, 0.9189453125, -0.7749023438, 0.0329589844, 0.5380859375, 1.294921875, -0.1871337891, -0.5654296875, -1.07421875, -0.6372070312, -0.9130859375, -0.0803833008, -0.626953125, -0.1427001953, 0.0351257324, 0.5092773438, -0.68359375, -0.8901367188, -0.2565917969, -0.4125976562, -0.2795410156, -0.1182250977, -0.0659790039, 0.0977783203, 0.0022544861, 0.5249023438, 0.5209960938, -1.916015625, -0.5859375, 0.4165039062, -0.2012939453, 0.0690917969, -1.279296875, 0.1223754883, -0.0667724609, 0.6547851562, -0.7143554688, 0.1113891602, -0.0832519531, -0.4995117188, 0.1735839844, -0.875, -0.5463867188, -0.0545043945, -0.2834472656, 0.6567382812, 0.2175292969, -0.0407714844, -0.2697753906, -1.015625, -0.7607421875, -0.2995605469, 0.3056640625, -0.9916992188, -1.0048828125, -0.5522460938, -0.4326171875, 0.9233398438, -0.0082092285, -0.1844482422, -0.8603515625, 0.2474365234, -0.0681762695, 0.1947021484, -0.3581542969, -0.6625976562, -0.375, -1.0859375, 1.275390625, 1.2451171875, -0.3959960938, 0.4526367188, -0.1068115234, 0.1507568359, 0.3344726562, 0.3012695312, 0.1365966797, -0.0286865234, -0.2727050781, -1.49609375, -0.458984375, 0.6538085938, 0.0556335449, 0.4328613281, -0.2961425781, -0.9453125, -0.3295898438, 0.1478271484, 0.6030273438, 0.3039550781, 0.3972167969, -0.1225585938, -1.06640625, 0.1368408203, -0.34765625, 0.0150985718, -0.0413208008, -0.7495117188, 0.4370117188, -0.986328125, 1.427734375, -0.8344726562, 0.6538085938, -0.451171875, 1.0263671875, 0.666015625, 0.7626953125, -1.05078125, -12.8046875, 0.2856445312, -0.7045898438, -0.3090820312, -0.5249023438, 0.38671875, -1.0791015625, 0.0844116211, -1.9697265625, -0.8999023438, -0.1779785156, -0.8930664062, -0.1706542969, -0.1212768555, -0.2416992188, -0.65234375, -0.2778320312, 0.0689086914, 0.7734375, 0.0040664673, 1.052734375, 1.462890625, -0.5458984375, -0.3251953125, -0.8833007812, 0.2556152344, 0.2841796875, 0.419921875, -1.3125, -0.3498535156, 0.2924804688, 0.8696289062, -0.4528808594, 0.6401367188, -0.654296875, -1.2666015625, 0.0515441895, -1.205078125, -0.68359375, -0.5859375, 0.908203125, 0.6708984375, -0.27734375, 0.4189453125, 0.4553222656, -0.0654296875, -1.158203125, -0.6538085938, -0.4763183594, 0.4167480469, -0.681640625, 0.002532959, 0.4006347656, 0.1887207031, -0.0690917969, 0.0721435547, 0.1084594727, -0.8818359375, -0.2587890625, 0.98046875, -0.509765625, 0.7963867188, 0.7622070312, -0.3640136719, -0.1483154297, -0.5009765625, -0.1484375, -0.5307617188, 0.1278076172, 0.1364746094, 0.6450195312, -0.3601074219, 0.1278076172, 0.3940429688, 0.3205566406, 0.0188293457, 0.69921875, -0.1286621094, -0.470703125, 0.6884765625, -0.2587890625, 0.5888671875 ]
The model is extended with additional performance information such as processing times, cycle times, waiting times, costs, etc., so that the goal is not to check conformance, but rather to improve the performance of the existing model with respect to certain process performance measures. An example is the extension of a process model with performance data, i.e., some prior process model dynamically annotated with performance data. It is also possible to extend process models with additional information such as decision rules and organisational information (e.g., roles). See also Business Process Management Process Discovery Conformance Checking Workflow Management Machine Learning Data Science Sequence mining Data mining Intention mining Data visualization Process analysis References Further reading Aalst, W. van der (2016). Process Mining: Data Science in Action. Springer Verlag, Berlin (). Reinkemeyer, L. (2020). Process Mining in Action: Principles, Use Cases and Outlook. Springer Verlag, Berlin (). Carmona, J., van Dongen, B.F., Solti, A., Weidlich, M. (2018). Conformance Checking: Relating Processes and Models. Springer Verlag, Berlin (). Aalst, W. van der (2011). Process Mining: Discovery, Conformance and Enhancement of Business Processes. Springer Verlag, Berlin (). Aalst, W. van der, Dongen, B. van, Herbst, J., Maruster, L., Schimm, G., & Weijters, A. (2003). Workflow Mining: A Survey of Issues and Approaches. Data and Knowledge Engineering, 47 (2), 237–267.
[ -0.46484375, -0.4763183594, -0.1525878906, -0.5610351562, -0.5419921875, -0.4243164062, 0.3742675781, -0.365234375, -0.1153564453, -0.2546386719, 1.05859375, -0.2214355469, -0.2883300781, 1.140625, -0.5004882812, 0.1604003906, -0.102722168, 0.8237304688, -0.4624023438, 0.3603515625, -0.0381469727, -0.4506835938, 0.6176757812, -1.3759765625, -0.9946289062, 0.0357055664, 0.0592651367, 0.6284179688, 0.5561523438, 0.8168945312, 0.0022735596, 0.6171875, -2.412109375, -0.0120773315, -0.2587890625, 0.1555175781, 0.2795410156, -0.4616699219, -1.5380859375, -0.3254394531, -0.4609375, 0.2448730469, -0.032409668, 0.2210693359, 0.2139892578, 0.830078125, -0.2274169922, -0.9233398438, -0.6127929688, -0.3845214844, 0.2312011719, 0.0051498413, 0.0823974609, -0.5161132812, 0.7895507812, -1.0498046875, 0.4792480469, 1.0712890625, 1.267578125, -0.0145797729, -0.677734375, 0.2386474609, -0.27734375, -0.99609375, 1.1513671875, 0.1313476562, -0.1550292969, 1.8837890625, -0.927734375, 0.6928710938, 0.0081253052, 0.1150512695, -0.3403320312, 0.1253662109, 0.0408630371, 0.3500976562, -0.412109375, -0.2359619141, 0.8359375, 0.1915283203, -0.638671875, -0.6450195312, 0.1244506836, 0.2059326172, -0.28515625, 0.0268096924, 0.3508300781, -0.0153503418, -0.734375, 1.525390625, 0.5727539062, 0.1586914062, -0.4194335938, -1.18359375, 0.2120361328, -0.568359375, 1.4345703125, -0.7553710938, -0.9018554688, -0.5561523438, -0.3110351562, 0.9741210938, 0.5224609375, 1.0146484375, -0.6953125, 0.1035766602, -0.6264648438, 0.2502441406, 0.2778320312, 0.1801757812, -0.7392578125, -0.2061767578, 0.31640625, -0.2120361328, -0.6440429688, 0.4294433594, -0.0447387695, 0.2482910156, 0.2922363281, 0.2651367188, -0.4045410156, 0.7734375, 0.2878417969, 0.0681152344, 0.3708496094, -0.1431884766, 0.1297607422, 0.2927246094, 0.5141601562, 0.0111541748, 0.0648193359, 0.5141601562, 0.4345703125, -0.49609375, -0.5478515625, -0.7006835938, -0.9345703125, 0.6772460938, -0.0811157227, 0.35546875, -0.3764648438, -0.7719726562, -0.4692382812, -0.6767578125, 0.3588867188, -0.5639648438, -1.1904296875, 0.35546875, 0.3393554688, -0.77734375, -0.1516113281, -0.3513183594, 0.0591430664, 0.3745117188, -0.1147460938, -0.3359375, -0.3486328125, 0.2819824219, -1.34375, -0.3654785156, -0.2470703125, -1.056640625, -1.3671875, 1.232421875, 0.7587890625, 0.7612304688, -0.5541992188, 0.3491210938, -0.2565917969, -0.4262695312, -0.8017578125, -0.0110778809, -0.3237304688, -0.505859375, 0.2000732422, 0.4816894531, 0.5668945312, -0.8891601562, -0.1719970703, -0.3557128906, -0.4807128906, -2.0390625, 1.2998046875, 0.5732421875, 0.0116195679, -0.6826171875, 0.1572265625, 0.0836791992, -0.3327636719, 0.0377807617, -0.2822265625, -0.2592773438, -0.7114257812, 1.025390625, -0.521484375, 0.3864746094, 0.0686035156, -0.7631835938, -0.5185546875, 0.212890625, -0.3564453125, -0.94921875, 0.3974609375, -0.2788085938, -0.9072265625, 0.40625, 0.4770507812, 0.4304199219, 1.2705078125, 0.1743164062, 0.1193847656, -0.1245117188, -0.3894042969, -0.8354492188, -0.4262695312, -0.020614624, 0.1429443359, -0.7309570312, -0.6689453125, -0.123840332, 0.6547851562, 1.138671875, -0.1810302734, 0.6567382812, 0.0047416687, 1.130859375, -0.0076522827, 1.197265625, 0.5595703125, -0.2204589844, 0.1151123047, 0.93359375, 0.1030273438, 0.8950195312, 0.3344726562, 0.1514892578, -0.7836914062, 1.17578125, -0.0981445312, 0.3112792969, -0.1078491211, -0.3833007812, -0.501953125, 0.2155761719, 0.4091796875, -0.0201263428, -1.125, 0.5703125, -0.1884765625, -0.1124267578, 0.1122436523, 0.734375, -1.2490234375, 2.07421875, -0.1798095703, -0.4626464844, -0.1032104492, 0.0571289062, 0.1662597656, 0.3193359375, -0.4484863281, 0.6928710938, 1.1201171875, -1.2412109375, 0.4624023438, 0.1931152344, -0.9467773438, 0.1654052734, 1.408203125, -0.3642578125, 0.8393554688, -0.6967773438, -0.4462890625, -1.1171875, 0.8237304688, -0.1047363281, -0.0171661377, -0.5395507812, 0.2548828125, 0.3815917969, 0.4633789062, 0.0524902344, 0.4538574219, 0.0040779114, 0.2084960938, -0.4833984375, -0.6953125, 1.7890625, 0.5131835938, -1.0908203125, -0.7622070312, -0.2707519531, 0.4291992188, 0.4975585938, -0.1850585938, 0.26953125, 0.2604980469, -0.564453125, 0.69921875, 0.3056640625, 0.7602539062, 0.2390136719, 0.0801391602, -0.7670898438, 0.4211425781, -0.033203125, 0.091003418, -1.9755859375, -0.0626220703, 0.0987548828, 0.779296875, -0.3454589844, 0.0841064453, -0.0940551758, -0.3193359375, 0.5952148438, -1.7734375, 0.0317687988, -0.4182128906, -0.0634155273, 0.5307617188, -0.8466796875, -0.3464355469, -1.0087890625, -0.5502929688, 0.5190429688, -1.1201171875, -1.11328125, 0.096862793, 1.1259765625, 0.5546875, 0.1547851562, 0.6025390625, 0.6357421875, 0.2487792969, 0.1767578125, -0.2619628906, -0.8950195312, 0.3557128906, -0.6333007812, -0.4919433594, -0.931640625, 0.3859863281, -0.5810546875, 0.1467285156, -1.298828125, -0.3549804688, -1.0107421875, 0.5805664062, -0.2038574219, 0.3232421875, 0.0123214722, 0.1220703125, -1.205078125, 0.4240722656, -0.8930664062, -0.5278320312, 0.787109375, -0.37890625, 0.8193359375, 0.654296875, 0.5903320312, -1.994140625, -0.0290985107, -0.48828125, 1.359375, -0.1408691406, -0.8681640625, 0.2354736328, -0.1231079102, -0.0062713623, -0.3852539062, -0.0282440186, -0.4787597656, -0.4304199219, -1.0390625, 0.869140625, -0.75390625, -0.1246337891, 0.3793945312, -0.3989257812, -0.3103027344, -0.4714355469, -0.662109375, 0.8969726562, -0.4069824219, -0.2766113281, -0.8657226562, -0.8168945312, 0.5234375, -0.2447509766, -0.2863769531, 0.1414794922, 0.5791015625, 0.6733398438, 0.1923828125, -0.1401367188, 0.4614257812, 0.3283691406, -0.3564453125, 0.2135009766, 0.3063964844, -1.24609375, 0.2410888672, 0.736328125, 1.138671875, 1.328125, -0.8671875, 0.4567871094, 1.0810546875, 0.0541992188, 0.1439208984, -0.763671875, 0.1865234375, -0.0572814941, 0.28515625, 0.3037109375, 0.0662231445, 0.0376586914, 0.5893554688, -0.5932617188, 0.3159179688, 0.8291015625, -0.0610351562, 0.3225097656, 0.1535644531, -0.1481933594, -0.6293945312, 0.6518554688, -0.5341796875, -1.0478515625, 1.4658203125, 0.2368164062, 0.3156738281, 0.515625, -0.7983398438, 0.1434326172, -0.6435546875, 0.2595214844, -0.0978393555, 0.0400085449, 0.736328125, -0.4870605469, -0.162109375, 0.1619873047, 0.7958984375, 0.9721679688, -0.623046875, 0.3803710938, -0.0626220703, 0.2462158203, -0.2200927734, 0.1227416992, 0.1071166992, 1.021484375, 0.0786743164, 0.0960083008, -0.517578125, -0.591796875, 0.458984375, 0.0010995865, 0.2430419922, -1.0126953125, 0.2153320312, 0.2277832031, -1.1591796875, -0.720703125, 0.646484375, -0.8720703125, 0.9135742188, -0.7294921875, 0.9174804688, -0.1362304688, 0.2467041016, 0.3425292969, 0.5068359375, 0.83984375, 0.1652832031, -0.5131835938, -0.8159179688, -0.0117797852, -0.3798828125, -0.916015625, -0.9057617188, 0.3486328125, 0.623046875, 0.2687988281, -0.6186523438, -0.2418212891, 0.1724853516, -0.4260253906, -0.767578125, -0.4575195312, -0.5092773438, -0.1101074219, -0.794921875, 0.3491210938, -0.6108398438, 0.5541992188, -0.4055175781, -0.6328125, -0.2469482422, 0.8803710938, -0.7153320312, 0.2124023438, 0.50390625, -0.3251953125, -0.1350097656, -0.1220092773, -0.3901367188, 0.4172363281, -0.1235961914, 0.8276367188, -0.408203125, 0.4155273438, -0.6098632812, 0.1705322266, 0.1322021484, -0.0059738159, -0.1052856445, 0.1943359375, 0.4533691406, -0.0786743164, -0.79296875, -0.1263427734, 0.2814941406, -0.3005371094, -0.6772460938, -0.4621582031, -0.4458007812, 0.3393554688, 0.7250976562, -0.2454833984, 0.0668945312, -0.1040649414, -0.9243164062, -0.4150390625, 0.3657226562, -1.048828125, 0.7895507812, 0.9477539062, 0.4694824219, -0.93359375, 0.0690917969, 0.8486328125, 0.4672851562, 0.3762207031, -0.2199707031, -1.287109375, -1.0869140625, -0.2915039062, 0.0916748047, 0.2247314453, 0.9951171875, -1.4765625, -1.134765625, -0.7768554688, 0.2233886719, 0.3288574219, -0.9086914062, -0.4748535156, 0.1668701172, -0.6186523438, 1.2568359375, -0.6040039062, 1.18359375, 0.2902832031, 0.062286377, 0.3869628906, -0.5795898438, -1.02734375, -0.3696289062, 0.3542480469, -0.7392578125, 0.9345703125, -0.3237304688, 1.412109375, -0.4431152344, -1.107421875, 0.6171875, -0.4213867188, 1.37109375, -0.8950195312, 0.1292724609, 0.4741210938, 1.1806640625, 0.4934082031, 0.0429077148, -0.5063476562, -1.017578125, 0.4409179688, -0.6264648438, 0.6806640625, 0.2464599609, 0.0628662109, -0.6650390625, 0.1004638672, 1.1767578125, 0.0328063965, -0.1693115234, 0.1895751953, -0.3918457031, 0.8090820312, 0.2279052734, 0.5288085938, -0.646484375, 0.1120605469, -0.4077148438, 0.3215332031, -0.1343994141, 0.2156982422, 0.1599121094, -0.2902832031, 0.0308074951, 0.1929931641, 0.7255859375, -0.7719726562, 0.1916503906, 0.1146240234, -0.7856445312, -1.2001953125, 0.134765625, 0.7568359375, -0.3620605469, -0.8559570312, -1.1337890625, -0.2247314453, -0.5805664062, -0.4755859375, 1.365234375, 0.0690917969, -1.0322265625, -0.2136230469, -0.3583984375, 0.2321777344, 0.5283203125, -0.0157470703, 0.9770507812, 1.1728515625, 0.2644042969, 0.0145339966, -0.6538085938, 0.4020996094, -1.0205078125, 0.6508789062, -0.1697998047, -0.0875854492, -0.0523071289, 0.34375, 0.4650878906, -0.0958251953, -0.0409545898, 0.0313110352, -0.3264160156, -0.0766601562, 0.6831054688, -0.0327453613, -1.1630859375, -0.4670410156, 0.5927734375, -1.3291015625, 0.9516601562, -0.5698242188, 0.0122909546, 0.4306640625, -0.341796875, -0.47265625, -0.1696777344, -1.10546875, -0.6889648438, -0.0495910645, -0.2880859375, 0.4477539062, 0.0321044922, 0.0237884521, -0.2425537109, 0.2802734375, -0.2844238281, -1.275390625, 0.6435546875, -0.034362793, -0.4982910156, -0.2055664062, 1.3193359375, 0.1345214844, 0.3547363281, -0.7905273438, -0.9760742188, 0.4191894531, 0.2951660156, -0.2052001953, 0.0402526855, -0.537109375, -0.4064941406, -0.0922241211, -0.9057617188, 0.6049804688, 1.27734375, -0.2253417969, -0.3020019531, 0.0332641602, -1.3095703125, 0.1665039062, 0.5263671875, 1.513671875, 0.7729492188, -0.7197265625, -1.240234375, 0.66796875, -0.4782714844, 0.6123046875, 0.1936035156, -0.767578125, -0.6533203125, -0.51953125, 0.7006835938, -0.423828125, 0.0801391602, -0.100769043, -0.580078125, -0.8588867188, -0.0635375977, 0.3471679688, -0.1997070312, -0.0971679688, -0.038482666, -0.7299804688, 0.2629394531, -0.2056884766, 0.7421875, 0.057800293, -0.0095443726, -0.0570068359, -0.8623046875, 0.1864013672, -0.8193359375, 0.0096588135, 0.5073242188, -0.1450195312, -0.0473937988, 0.0275726318, 0.2131347656, -0.0432434082, 0.4094238281, 0.0458374023, -0.0358581543, 1.453125, -0.2374267578, -0.5415039062, -0.4997558594, 0.0853881836, -0.7241210938, -0.3684082031, 0.443359375, 0.8041992188, -0.4372558594, -1.0615234375, 0.2445068359, 0.4431152344, 0.1867675781, 0.0096893311, 0.2106933594, -0.5190429688, 0.0227813721, 0.0151901245, -0.3864746094, 0.4025878906, -0.3977050781, 0.6435546875, -0.5478515625, -0.2998046875, 0.2333984375, -0.2885742188, -0.3664550781, 0.0575866699, -0.92578125, -0.7890625, -0.5346679688, -0.0795288086, -0.5678710938, 0.4597167969, -1.0322265625, 0.4760742188, -0.0684204102, 0.3137207031, 0.2509765625, 0.41796875, 0.3439941406, -0.8432617188, -1.224609375, 0.2229003906, -0.1456298828, 1.130859375, 1.158203125, 0.9340820312, 0.1889648438, -0.1434326172, 0.0574951172, -0.0563964844, 0.6059570312, 0.3850097656, 0.3818359375, 0.8125, -0.0727539062, -0.2320556641, -0.3630371094, 0.8696289062, 0.271484375, 0.8193359375, 0.7895507812, 0.3720703125, 0.1860351562, 0.0373840332, 0.732421875, 0.8759765625, -0.7397460938, 0.6743164062, 0.2003173828, -1.16796875, 0.2592773438, 0.2178955078, -1.091796875, 0.6826171875, -0.1473388672, 1.314453125, -0.8608398438, -0.2731933594, 0.2736816406, -0.3479003906, 0.4921875, 1.49609375, 0.4782714844, -0.5327148438, -0.1239013672, 0.671875, 0.6723632812, -0.8872070312, -0.0594787598, 0.3266601562, 0.3518066406, 0.1534423828, -0.0986938477, -0.7065429688, -0.5942382812, -1.0380859375, 0.3813476562, 0.3764648438, -0.4028320312, -0.0243835449, -0.060333252, -0.1546630859, -0.6840820312, -0.22265625, -0.8842773438, -0.1203613281, -0.1496582031, 0.2204589844, -0.0576782227, -0.2878417969, 0.4553222656, 0.1330566406, -1.6455078125, -1.1884765625, 0.4328613281, -0.5825195312, -0.4526367188, -0.7353515625, -0.1734619141, 0.6591796875, 0.5444335938, -0.6040039062, -0.5810546875, 0.1844482422, -0.32421875, -0.0513000488, 0.0733032227, -0.2202148438, -0.3415527344, 0.0553894043, 0.2983398438, 0.44140625, 0.7680664062, -0.0414428711, -0.8740234375, -0.2416992188, -0.6577148438, 0.7690429688, -0.1644287109, -0.4201660156, -0.8452148438, -0.3369140625, 0.7631835938, 0.4282226562, 0.3959960938, 0.0804443359, 0.3435058594, 0.0663452148, 0.2407226562, -0.4235839844, -0.2915039062, -0.1818847656, -0.8369140625, 0.9892578125, 1.146484375, 0.1204223633, 0.8701171875, -0.3979492188, -0.3288574219, 0.2075195312, 0.2983398438, 0.108581543, -0.2819824219, -0.287109375, -1, -0.4357910156, 0.4448242188, 0.4758300781, -0.5219726562, 0.0327148438, -1.1416015625, -0.0751953125, 0.4345703125, 0.9541015625, -0.082824707, 0.0451049805, 0.4650878906, -0.6918945312, 0.2756347656, 0.8139648438, -0.1751708984, -0.3569335938, -0.6606445312, 0.1088867188, -0.2271728516, 0.6435546875, -0.3701171875, 0.5419921875, 0.1055297852, 1.1484375, 0.7919921875, 0.1397705078, -0.4663085938, -13.5625, 0.3681640625, -0.1608886719, 0.1151123047, -0.2095947266, 0.4636230469, -0.8090820312, -0.3693847656, -1.6103515625, -0.7856445312, -0.4189453125, -0.1602783203, -0.2592773438, 0.5341796875, 0.4682617188, -0.4875488281, -0.1216430664, -0.2568359375, 1.560546875, 0.1396484375, 1.09375, 1.1201171875, 0.1385498047, -0.3095703125, -0.640625, 0.2814941406, 0.4055175781, 0.2119140625, -1.296875, -0.1287841797, 0.2739257812, 1.685546875, -0.0935058594, 0.8354492188, -0.47265625, -0.8764648438, -0.0166015625, -0.6064453125, -0.3181152344, -0.384765625, 0.4321289062, 0.4721679688, -0.791015625, -0.0720214844, 0.3273925781, 0.2487792969, -0.5991210938, -0.5717773438, -0.5043945312, 0.87109375, -0.8569335938, 0.125, 0.7993164062, 0.314453125, -0.2347412109, 0.1115112305, 0.1059570312, -0.0402526855, -0.0661621094, 1.2451171875, -0.6923828125, 0.6420898438, 0.6040039062, -0.583984375, 0.0966796875, -0.7124023438, -1.291015625, -0.6635742188, 0.1668701172, -0.5883789062, 0.8989257812, -0.783203125, 0.32421875, 0.6767578125, 0.0424804688, 0.0464782715, 0.7875976562, 0.035369873, -0.0242462158, 1.0419921875, -0.2587890625, 0.8984375 ]
Aalst, W. van der, Reijers, H., & Song, M. (2005). Discovering Social Networks from Event Logs. Computer Supported Cooperative work, 14 (6), 549–593. Jans, M., van der Werf, J.M., Lybaert, N., Vanhoof, K. (2011) A business process mining application for internal transaction fraud mitigation, Expert Systems with Applications, 38 (10), 13351–13359 Dongen, B. van, Medeiros, A., Verbeek, H., Weijters, A., & Aalst, W. van der (2005). The ProM framework: A New Era in Process Mining Tool Support. In G. Ciardo & P. Darondeau (Eds. ), Application and Theory of Petri Nets 2005 (Vol. 3536, pp. 444–454). Springer-Verlag, Berlin. Aalst, W. van der. A Practitioner's Guide to Process Mining: Limitations of the Directly-Follows Graph. In International Conference on Enterprise Information Systems (Centeris 2019), volume 164 of Procedia Computer Science, pages 321-328. Elsevier, 2019. Grigori, D., Casati, F., Castellanos, M., Dayal, U., Sayal, M., & Shan, M. (2004). Business Process Intelligence. Computers in Industry, 53 (3), 321–343. Grigori, D., Casati, F., Dayal, U., & Shan, M. (2001). Improving Business Process Quality through Exception Understanding, Prediction, and Prevention. In P. Apers, P. Atzeni, S. Ceri, S. Paraboschi, K. Ramamohanarao, & R. Snodgrass (Eds.
[ 0.4177246094, -0.5927734375, 0.3645019531, 0.2347412109, -0.7075195312, 0.000374794, -0.4514160156, -0.6264648438, -0.0538330078, -0.003452301, 0.5146484375, 0.2143554688, -0.2124023438, 0.3041992188, -0.112487793, 0.3127441406, -0.1656494141, 0.8549804688, 0.1866455078, -0.3647460938, -0.1458740234, -1.22265625, -0.1717529297, -1.86328125, -0.9819335938, 0.783203125, -0.1771240234, -0.2902832031, 0.3083496094, -0.0604553223, 0.6435546875, 0.2075195312, -2.193359375, -0.0834960938, -0.66015625, 0.4252929688, -0.1297607422, -0.3447265625, -1.08984375, -0.4016113281, -1.2958984375, 0.181640625, 0.1527099609, -0.0111999512, 1.2978515625, 1.2041015625, -0.1431884766, -0.9375, -0.9130859375, 0.1685791016, -0.5283203125, 0.3508300781, 0.3227539062, -0.9614257812, -0.054473877, -0.7158203125, 0.8530273438, 1.134765625, 1.0146484375, -0.6328125, -0.4809570312, 0.5927734375, 0.4841308594, -0.1663818359, 1.134765625, -0.7143554688, -0.8076171875, 1.1025390625, -1.4580078125, 0.8271484375, -0.4428710938, -0.4521484375, -0.2561035156, 0.4943847656, 0.2602539062, 0.4792480469, -0.081237793, -0.0676269531, 1.216796875, 0.0080413818, -0.5146484375, -0.3608398438, 0.1612548828, -0.5966796875, 0.1929931641, -0.1392822266, 0.48828125, -0.3823242188, -1.021484375, 1.0048828125, 0.3405761719, 0.634765625, -0.9194335938, -0.404296875, 0.1091918945, -0.0877075195, 0.3620605469, -0.1916503906, -1.416015625, -0.1596679688, -0.3701171875, 0.46875, -0.1170654297, -0.076965332, -0.5317382812, -0.5893554688, -0.6171875, 0.2922363281, -0.57421875, 0.7563476562, -0.322265625, 0.0250244141, -0.1223144531, -0.7250976562, 0.6689453125, -0.1015014648, 0.318359375, -0.4233398438, 0.2722167969, -0.2958984375, -0.5078125, 0.8310546875, 0.1260986328, 0.1551513672, 0.79296875, -0.0892944336, -0.5380859375, -0.2059326172, 0.53515625, -0.1652832031, 0.205078125, 0.1697998047, 0.66015625, 0.7294921875, -0.3510742188, -0.3461914062, -0.3596191406, 0.2924804688, 0.2739257812, 0.6782226562, -0.4599609375, 0.740234375, -0.0248718262, -0.1270751953, -0.3098144531, 0.026260376, 0.2208251953, -0.0994262695, 0.4287109375, -0.4755859375, 0.0933837891, 0.212890625, -0.1064453125, 0.2724609375, 0.1217041016, 0.51171875, -0.4094238281, -0.1756591797, -0.3564453125, -0.3916015625, -0.5200195312, -0.6499023438, -0.5424804688, 0.501953125, 0.2956542969, 1.4619140625, -0.939453125, -0.0155258179, 0.3000488281, 0.2858886719, -1.7734375, 0.2531738281, 0.2116699219, -0.3659667969, 0.3034667969, -0.2395019531, 0.7622070312, -0.3251953125, -0.0681152344, -0.0155029297, 0.0479736328, -1.4453125, 1.5927734375, 0.5092773438, -0.1499023438, 0.1475830078, -0.1201782227, -0.5678710938, 0.7192382812, 0.1333007812, 0.3005371094, -0.6245117188, -0.4338378906, 0.6611328125, -0.46875, 0.0942382812, -0.4653320312, -0.0695800781, 0.2602539062, 0.0440368652, -0.4438476562, -0.8447265625, -0.0215759277, -0.3916015625, -0.4201660156, 0.4907226562, 0.1012573242, -0.1743164062, 1.306640625, 0.279296875, 0.583984375, 0.505859375, 0.1466064453, -0.4797363281, 0.8525390625, 0.2177734375, -0.5561523438, -0.6567382812, -0.2156982422, 0.2326660156, 0.7338867188, 0.7016601562, -0.4709472656, -0.2222900391, 0.112121582, 0.5693359375, 0.1688232422, 0.8569335938, 0.7250976562, 0.2829589844, -0.3193359375, 0.6352539062, -0.1867675781, 0.833984375, 1.08984375, -0.3032226562, -0.7407226562, 0.5385742188, 1.126953125, 0.5932617188, -1.0439453125, 0.0910644531, 0.3645019531, 0.0678100586, -0.4543457031, 0.9326171875, -0.6640625, 0.990234375, -0.3681640625, 0.7866210938, 0.5346679688, 0.140625, -0.5712890625, 1.345703125, 0.50390625, 0.3937988281, -0.2841796875, -0.2386474609, 0.2419433594, 0.4675292969, -0.3312988281, 0.3461914062, 0.4987792969, -0.5703125, -0.0681152344, 0.2785644531, -1.1240234375, -0.322265625, 2.0234375, -0.8793945312, 0.4831542969, -2.09765625, -0.7104492188, -0.486328125, 0.2548828125, -0.2396240234, 0.3232421875, -0.5166015625, -0.1964111328, 0.9052734375, 0.681640625, 0.2641601562, 0.328125, -0.1903076172, 0.1717529297, -0.7158203125, -0.3083496094, 0.6059570312, 0.3596191406, -0.4890136719, -0.6044921875, -0.5034179688, 0.6767578125, 0.1390380859, -0.1038818359, 0.7495117188, 0.3884277344, -0.4838867188, 0.7348632812, -0.1591796875, 0.2937011719, -0.2954101562, -0.7377929688, -0.2229003906, 1.275390625, 0.3254394531, 0.1257324219, -1.0498046875, 0.380859375, 0.7065429688, 1.150390625, -0.5708007812, 0.2427978516, -0.6240234375, -0.5297851562, -0.4660644531, -1.18359375, -0.2257080078, -0.0994873047, 0.462890625, 0.9145507812, -0.4509277344, -0.4936523438, -0.95703125, -0.0787353516, 0.4191894531, -1.5888671875, -1.0146484375, 0.5122070312, 0.1265869141, 0.7006835938, -0.0414428711, 0.1143798828, 0.6840820312, 0.8076171875, 0.0323181152, 0.1611328125, -0.4614257812, 0.4812011719, -0.7006835938, -0.6459960938, -0.5698242188, 0.2125244141, 0.0943603516, 0.9233398438, -0.1194458008, -0.5283203125, -1.1943359375, 0.4807128906, -0.2412109375, 0.2893066406, 0.1588134766, -0.3022460938, -0.8022460938, 0.3869628906, -0.5053710938, -0.2135009766, 1.2275390625, -0.9140625, 1.1728515625, 0.9096679688, 0.8002929688, -1.298828125, 0.2829589844, -1.794921875, 0.5493164062, -0.4348144531, -0.271484375, -0.6372070312, 0.1439208984, 0.5654296875, -0.654296875, 0.1150512695, -1.103515625, -1.0595703125, -0.4953613281, 1.580078125, -0.373046875, -0.4453125, 0.2261962891, -0.3015136719, -0.9116210938, 0.0386657715, 0.0415039062, -0.0161895752, 0.1854248047, -0.572265625, -0.5766601562, -1.591796875, 0.3635253906, -0.47265625, 0.0301361084, 1.1171875, 0.5610351562, 1.310546875, 0.0832519531, 0.5297851562, -0.6171875, 0.9702148438, -0.6298828125, 0.3508300781, -0.1528320312, -0.7006835938, -0.0657348633, 0.2551269531, 0.7373046875, 1.6171875, -0.0450439453, 1.1318359375, 0.1317138672, -0.2081298828, 0.2282714844, -0.2641601562, 0.7333984375, 0.0133895874, 0.2770996094, 0.0349731445, 1.0302734375, 1.099609375, 0.3234863281, -1.1455078125, -0.1494140625, 0.0180511475, -0.2883300781, -0.662109375, 0.7001953125, 0.1552734375, 0.0224456787, 0.6401367188, -0.4267578125, -0.4436035156, 0.2110595703, 0.1153564453, 0.4228515625, -0.4760742188, 0.392578125, -0.2232666016, -0.6416015625, 0.6303710938, -0.7817382812, 0.3703613281, 1.400390625, -0.3015136719, 0.0481262207, 0.4453125, 0.9165039062, 0.6088867188, -0.0966796875, 0.4404296875, -0.6728515625, 0.3850097656, -0.3352050781, 0.0405578613, 0.1292724609, 0.1768798828, 0.2719726562, 0.0921630859, -0.7407226562, -0.8881835938, 0.5336914062, 0.1973876953, 0.1256103516, -0.7124023438, 0.4162597656, 0.546875, -1.783203125, 0.2272949219, 0.2071533203, -0.6005859375, 0.1539306641, -0.2849121094, 0.6298828125, 0.6728515625, -0.5546875, 0.1956787109, -0.0364074707, 1.0947265625, -0.3383789062, -0.3623046875, -2.03125, 0.6533203125, -0.3776855469, -0.8950195312, -0.4643554688, 0.2219238281, 0.556640625, -0.3012695312, -0.517578125, -0.1685791016, -0.5576171875, -0.1018676758, 0.2020263672, -0.7421875, 0.5600585938, -0.2452392578, 0.1384277344, -0.4255371094, 0.0927124023, 1.1005859375, -0.9838867188, -1.0205078125, -0.7670898438, 0.0301361084, -0.1652832031, -0.3999023438, -0.092590332, -1.1171875, -0.3371582031, 0.2756347656, 0.2954101562, 1.072265625, -0.1458740234, 1.1650390625, -0.59765625, 0.2280273438, -0.1546630859, -0.2215576172, -0.8520507812, -0.2365722656, -0.040802002, 0.94140625, 0.3972167969, 0.6508789062, -0.6298828125, -0.8393554688, 0.4313964844, -0.0899658203, -0.1799316406, -0.0516662598, 0.2178955078, 0.7666015625, 1.140625, -0.7290039062, 1.0244140625, -0.0708618164, -0.2590332031, -0.3464355469, -0.5947265625, -0.2712402344, 0.8803710938, -0.2902832031, 0.0007038116, -0.8583984375, 0.6943359375, 0.7622070312, 0.6455078125, 0.68359375, -0.1062011719, -0.392578125, -0.365234375, -0.6538085938, -0.0501403809, -0.2741699219, 0.8188476562, -1.2216796875, 0.3708496094, -0.0179138184, 0.2993164062, 0.4643554688, -0.763671875, -0.5751953125, -0.525390625, -0.7866210938, -0.4013671875, -0.291015625, 0.666015625, 0.2900390625, -0.3659667969, 0.7412109375, -0.591796875, -1.4150390625, -0.263671875, 0.5791015625, -1.208984375, 0.8452148438, -0.2266845703, 0.4409179688, 0.0064544678, 0.0689697266, 0.3293457031, -0.8481445312, 0.2570800781, -0.4416503906, -0.4482421875, 0.5581054688, 1.443359375, 0.2015380859, -0.85546875, -0.9360351562, -0.484375, 0.3754882812, -0.6352539062, 0.3391113281, -0.0522155762, -0.9453125, 0.4230957031, -0.2658691406, 1.05859375, -0.3054199219, 0.404296875, 0.5615234375, -1.0322265625, 1.3837890625, 0.1726074219, 0.3498535156, -0.591796875, 0.6572265625, -0.7358398438, 0.3959960938, -0.0612792969, 0.2666015625, 0.1448974609, 0.1122436523, -0.1137695312, 0.837890625, 1.0498046875, -0.4353027344, 0.1776123047, 0.2807617188, -1.21875, -0.39453125, 0.6625976562, 0.7797851562, 0.0373535156, 0.1469726562, -0.3381347656, -0.3659667969, -0.1744384766, -0.4011230469, 0.76171875, -0.0765991211, 0.669921875, 0.2814941406, -0.4206542969, -0.2196044922, -0.7192382812, 0.5341796875, 0.6518554688, 0.9716796875, 0.4868164062, 0.6103515625, -0.947265625, -0.1335449219, -0.8237304688, -0.4318847656, -0.7739257812, -0.0380859375, 0.1358642578, -0.1265869141, 0.0495300293, -0.1069335938, 0.0777587891, 0.0203704834, -0.8139648438, 0.2685546875, -0.2058105469, -0.2204589844, -1.18359375, -0.2709960938, -0.1405029297, -0.058013916, 1.4345703125, -0.638671875, 0.50390625, -0.2551269531, 0.6962890625, -1.07421875, 0.47265625, -1.5068359375, -0.0513916016, -0.0468139648, 0.5537109375, -0.2489013672, 0.2144775391, 0.2174072266, -0.2233886719, -0.2253417969, -0.671875, -0.7202148438, 0.86328125, -0.5385742188, -0.67578125, 0.1318359375, 0.8901367188, -0.1012573242, -0.5131835938, -0.3198242188, 0.1611328125, -0.5034179688, -0.1199951172, 0.0621337891, 0.4094238281, -1.1416015625, -0.0236663818, -0.0589294434, -1.7900390625, 0.4338378906, 0.568359375, -0.7880859375, -0.7309570312, 0.029586792, -1.3525390625, -0.6059570312, -0.4123535156, 0.9072265625, 0.7866210938, -0.6640625, -0.2224121094, 0.3605957031, -0.4362792969, 0.1342773438, 0.0536499023, 0.2802734375, -0.8032226562, 0.1162109375, 1.2421875, -0.607421875, -0.6728515625, 0.3586425781, -1.6923828125, -0.9291992188, 0.2188720703, 0.9306640625, -0.0107421875, 1.0771484375, -0.4050292969, -0.0466003418, 0.0840454102, 0.2778320312, 0.4853515625, -0.1175537109, -0.4553222656, 0.1633300781, -0.5205078125, -0.8125, -0.4916992188, 0.8247070312, 0.4211425781, -0.2924804688, 0.1618652344, -0.3718261719, 0.0493164062, 0.0578308105, 0.2160644531, 0.5932617188, -0.3862304688, 1.4716796875, -0.3354492188, -1.01171875, -0.5454101562, -0.0315246582, -0.5629882812, -0.0653686523, 0.5317382812, 0.9819335938, -1.0888671875, -0.7309570312, -0.0444335938, 0.7744140625, -0.2995605469, -0.1896972656, 1.314453125, -0.2325439453, 0.2121582031, -1.4072265625, -0.2763671875, 0.7690429688, 0.0999755859, 0.6215820312, -0.9731445312, -0.0825195312, 0.2233886719, -0.3640136719, -0.4519042969, 0.6801757812, -1.08984375, -0.6284179688, -0.533203125, -0.3564453125, 0.2244873047, -0.0876464844, -0.3872070312, 0.1328125, 0.3872070312, -0.1651611328, 0.5498046875, 0.1317138672, -0.1673583984, -0.9267578125, -0.7094726562, 0.4284667969, -0.4587402344, 1.0263671875, 0.8286132812, -0.236328125, -0.640625, -0.2668457031, -0.1253662109, -0.0662231445, -0.1773681641, 0.7856445312, -0.4816894531, 0.5073242188, 0.0520324707, -0.1818847656, 0.2561035156, 1.369140625, -0.0342102051, 0.8403320312, 0.72265625, -0.4770507812, 0.0366821289, -0.1307373047, 0.1364746094, 0.4660644531, -1.0517578125, 0.2109375, 0.9580078125, -0.2263183594, 0.3093261719, -0.1193847656, -0.98828125, 0.8383789062, 0.1138305664, 0.3308105469, -0.2371826172, -0.955078125, 0.0493164062, -0.5698242188, 0.4768066406, 1.583984375, 0.9291992188, -0.8100585938, 0.6411132812, 0.0310058594, 0.9877929688, -0.3671875, -0.765625, -0.1268310547, -0.037902832, 0.8466796875, -0.2185058594, -0.1557617188, -0.720703125, -1.0849609375, -0.0391540527, -1.0419921875, -0.6684570312, 0.4819335938, 0.357421875, 0.2609863281, -0.548828125, -0.4829101562, -0.8657226562, 0.0455322266, 0.0290374756, 0.4248046875, -0.0590515137, 0.3041992188, 0.0908813477, 0.5341796875, -1.2705078125, -0.5317382812, -0.3017578125, -0.102355957, 0.1006469727, -0.4523925781, -0.0549926758, 0.1556396484, -0.1589355469, -0.3208007812, -0.0096511841, -0.027633667, -0.9194335938, 0.1448974609, -0.3366699219, -0.8486328125, -0.6157226562, -0.2268066406, 0.0050773621, 0.7944335938, -0.3791503906, 0.3562011719, -0.9375, 0.2619628906, 0.4387207031, 1.2353515625, -0.759765625, -0.7314453125, -0.3825683594, -0.2468261719, 0.5073242188, 0.0720214844, -0.4880371094, -0.7602539062, -0.7954101562, -0.4680175781, -0.107421875, -0.4760742188, 0.3400878906, 0.5244140625, -0.5747070312, 0.8891601562, 1.0029296875, 0.3913574219, 0.3942871094, 0.5615234375, 0.2709960938, 0.71875, -0.2919921875, -0.1789550781, -0.3125, 0.1962890625, -1.138671875, -0.0249786377, 0.5234375, 0.1375732422, -0.1455078125, -0.3005371094, -1.0703125, -0.46875, 0.4528808594, 0.7290039062, 0.2551269531, 0.5073242188, -0.1317138672, -0.4855957031, 0.068359375, 0.912109375, 1.1123046875, -0.0434875488, 0.1773681641, -0.6118164062, -0.6279296875, 0.890625, 0.5087890625, 0.3735351562, -0.0237731934, -0.1379394531, 0.6201171875, 1.013671875, -0.947265625, -13.3984375, -0.3173828125, -0.3078613281, 0.509765625, -0.732421875, -0.3767089844, -0.8364257812, -1.3154296875, -1.462890625, 0.3156738281, 0.4069824219, -0.2004394531, -0.5712890625, -0.5888671875, 0.5024414062, -0.89453125, -0.5336914062, -1.013671875, 0.8046875, -0.0531005859, 1.1240234375, 1.408203125, -0.2293701172, -0.5590820312, -0.5795898438, 0.578125, -0.0718994141, 0.1650390625, -1.5087890625, 0.1911621094, 0.205078125, 0.4733886719, -0.5771484375, -0.0256195068, -0.615234375, -0.625, 0.2661132812, -0.4008789062, -0.7353515625, -0.4116210938, 0.0966796875, -0.4985351562, -1.1806640625, -0.3540039062, 0.564453125, -0.1417236328, -0.380859375, -0.6650390625, -0.1567382812, 0.7534179688, -1.1533203125, 0.0845336914, 1.044921875, 0.3283691406, -0.470703125, -0.744140625, 0.5014648438, -0.0736083984, 0.5888671875, 0.3713378906, -0.5063476562, 0.6958007812, 0.1942138672, -0.53515625, 0.2200927734, -0.8813476562, 0.0118179321, -0.8100585938, -0.1192626953, -0.3032226562, 0.4182128906, -0.0097351074, 0.5224609375, 0.5190429688, 0.916015625, 0.8310546875, 0.2963867188, -0.044342041, -0.7133789062, 1.7060546875, -0.6186523438, 0.3979492188 ]
), Proceedings of 27th international conference on Very Large Data Bases (VLDB’01) (pp. 159–168). Morgan Kaufmann. IDS Scheer. (2002). ARIS Process Performance Manager (ARIS PPM): Measure, Analyze and Optimize Your Business Process Performance (whitepaper). Ingvaldsen, J.E., & J.A. Gulla. (2006). Model Based Business Process Mining. Journal of Information Systems Management, Vol. 23, No. 1, Special Issue on Business Intelligence, Auerbach Publications Kirchmer, M., Laengle, S., & Masias, V. (2013). Transparency-Driven Business Process Management in Healthcare Settings [Leading Edge]. Technology and Society Magazine, IEEE, 32(4), 14-16. zur Muehlen, M. (2004). Workflow-based Process Controlling: Foundation, Design and Application of workflow-driven Process Information Systems. Logos, Berlin. zur Muehlen, M., & Rosemann, M. (2000). Workflow-based Process Monitoring and Controlling – Technical and Organizational Issues. In R. Sprague (Ed. ), Proceedings of the 33rd Hawaii international conference on system science (HICSS-33) (pp. 1–10). IEEE Computer Society Press, Los Alamitos, California. Rozinat, A., & Aalst, W. van der (2006b). Decision Mining in ProM. In S. Dustdar, J. Faideiro, & A. Sheth (Eds. ), International Conference on Business Process Management (BPM 2006) (Vol. 4102, pp. 420–425). Springer-Verlag, Berlin.
[ 0.7338867188, -0.6606445312, 0.1533203125, 0.6782226562, -0.927734375, -0.4521484375, -0.5327148438, -0.4138183594, -0.1494140625, -0.3034667969, 0.7739257812, -0.0152587891, -1.1591796875, 0.6064453125, 0.0885009766, -0.2203369141, 0.1488037109, 1.0087890625, -0.0297088623, -0.2014160156, 0.4956054688, -1.0400390625, 0.1960449219, -1.7646484375, -1.138671875, 1.478515625, -0.0679321289, -0.0367431641, 0.5546875, 1.0361328125, 0.26953125, -0.1480712891, -2.521484375, -0.7221679688, 0.0154190063, 0.0762939453, 0.8193359375, -1.087890625, -1.5302734375, -0.599609375, -0.771484375, -0.166015625, -0.529296875, 0.0819702148, 1.240234375, 0.994140625, -0.1518554688, -0.3078613281, -1.2880859375, -0.1890869141, 0.66796875, -0.1529541016, -0.0391845703, -0.6811523438, 0.1494140625, -0.5493164062, 0.880859375, 0.91015625, 1.1708984375, -0.2006835938, 0.2553710938, 0.603515625, -0.2966308594, -0.0794067383, 1.216796875, -0.0367126465, -0.7094726562, 1.3037109375, -1.0625, 1.1640625, 0.609375, -0.0340270996, -0.603515625, 0.2185058594, 0.1915283203, 0.4436035156, 0.6279296875, -0.0878295898, 1.1416015625, 0.0072631836, -0.1055908203, -0.7133789062, 0.6264648438, -0.1054077148, -0.4289550781, 0.4418945312, 0.3422851562, -0.3173828125, -0.8955078125, 2.037109375, 0.1599121094, 0.3041992188, -0.0090637207, -0.3854980469, 0.6396484375, -0.9677734375, 0.5810546875, 0.2268066406, -0.7373046875, -0.2824707031, -0.3833007812, 0.1986083984, 0.0397949219, 0.5932617188, -0.505859375, -0.2800292969, -0.4287109375, 0.9790039062, -0.1616210938, 0.63671875, -0.2436523438, -0.0019168854, -0.8442382812, 0.036895752, 0.3000488281, 0.0424804688, -0.1571044922, -0.5991210938, 0.4489746094, -0.6791992188, -0.8837890625, 0.4116210938, 0.376953125, -0.0516967773, 0.8110351562, -0.1129760742, -0.3054199219, -0.2319335938, 0.3032226562, -0.3935546875, 0.3984375, -0.3576660156, 0.7104492188, 1.0458984375, -0.587890625, -0.2005615234, -1.3857421875, -0.0314941406, -0.1106567383, 0.81640625, -0.2215576172, 0.6723632812, -0.66796875, -0.3308105469, 0.4221191406, -0.3107910156, -0.6108398438, 0.3166503906, 0.7446289062, -0.677734375, 0.2702636719, -0.3017578125, 0.330078125, 0.6884765625, 0.2619628906, -0.2004394531, -0.5654296875, 0.126953125, -0.7338867188, -0.560546875, -0.6513671875, -0.44140625, -1.404296875, 0.0078430176, 0.3295898438, 1.0390625, -0.9653320312, 0.4616699219, 0.0986328125, 0.1676025391, -0.9921875, 0.26171875, 0.3962402344, 0.056640625, -0.0622253418, 0.1390380859, 0.859375, -0.2978515625, -0.4597167969, -0.9536132812, -0.1926269531, -1.76171875, 1.0419921875, 0.814453125, -0.6323242188, -0.5502929688, -0.3759765625, -0.8735351562, -0.2364501953, 0.4399414062, -0.294921875, 0.2509765625, -0.5073242188, 0.7827148438, -0.6870117188, 0.396484375, -0.4235839844, 0.0254821777, -0.30078125, 0.3657226562, 0.2880859375, -0.5913085938, -0.1091918945, -0.3032226562, -0.5600585938, -0.1458740234, -0.1323242188, 0.0476989746, 0.9780273438, 0.0537414551, 0.3142089844, 0.7084960938, -0.3525390625, -0.2553710938, 0.3608398438, 0.1270751953, -0.0510864258, -0.2426757812, 0.0186462402, -0.0452880859, 0.0001788139, 1.06640625, -0.7084960938, 0.435546875, -0.2963867188, 0.6440429688, 0.3784179688, 0.43359375, 0.2392578125, -0.2084960938, 0.2507324219, 0.3037109375, 0.4543457031, 0.5595703125, 0.7387695312, -0.4638671875, -0.44140625, 0.4775390625, 0.2493896484, -0.0519714355, -0.6787109375, 0.2332763672, -0.0822143555, 0.591796875, -0.1796875, 0.5717773438, -0.7177734375, 0.7182617188, -0.6010742188, -0.1857910156, 0.451171875, 0.3464355469, -0.4816894531, 1.640625, 0.0614013672, -0.6982421875, 0.1596679688, -0.1950683594, 0.061920166, 0.7915039062, -0.5737304688, 0.5048828125, 0.1128540039, -0.6826171875, -0.1647949219, 0.0755615234, -0.2846679688, -0.15234375, 1.685546875, -1.078125, 0.1625976562, -1.4423828125, -0.4328613281, -0.951171875, 0.7016601562, -0.7783203125, 0.4108886719, -0.671875, 0.1702880859, 0.830078125, 1.021484375, -0.2076416016, 0.6118164062, -0.0095443726, 0.4956054688, -0.3156738281, -0.4040527344, 0.5170898438, -0.041809082, -0.4248046875, -0.9985351562, -0.1931152344, 0.326171875, 0.3498535156, -0.0597229004, 0.2432861328, 0.6196289062, -0.513671875, 0.9887695312, 0.306640625, 0.3278808594, -0.2309570312, -0.0659790039, -0.4587402344, 0.5112304688, 0.1651611328, 0.1478271484, -1.544921875, 0.2810058594, 0.3195800781, 0.9116210938, -0.9130859375, 0.4326171875, 0.0753173828, -1.11328125, -0.0567626953, -2.2265625, 0.2971191406, -0.1469726562, 0.2763671875, 0.3254394531, 0.1973876953, -1.1337890625, -0.896484375, -0.5200195312, 0.4350585938, -1.3662109375, -1.685546875, -0.2078857422, 0.5078125, 1.09765625, -0.0322570801, -0.1762695312, -0.134765625, 0.9423828125, -0.5004882812, -0.4321289062, -1.216796875, 0.1984863281, -0.3947753906, -0.1236572266, -0.8818359375, 0.3701171875, 0.6689453125, 0.4323730469, -0.6489257812, -0.8989257812, -0.8247070312, -0.2863769531, -0.2587890625, 0.5678710938, -0.2585449219, -0.3488769531, -0.7568359375, -0.1142578125, -0.3967285156, 0.0314941406, 1.5048828125, -1.3291015625, 0.8369140625, 0.3012695312, 0.486328125, -2.109375, -0.0476379395, -0.9921875, 0.6591796875, -0.271484375, -0.7680664062, -0.5576171875, 0.2980957031, 0.4609375, 0.0582885742, -0.0925292969, -0.9350585938, -0.1973876953, -0.6752929688, 0.7778320312, -0.4792480469, -0.7856445312, 0.0921020508, 0.6782226562, 0.0141143799, 0.3259277344, -0.6552734375, 0.3166503906, 0.1171875, -0.6391601562, -0.8256835938, -1.326171875, 1.037109375, -0.2666015625, -0.3820800781, 0.8012695312, 0.1505126953, 1.2275390625, 0.6528320312, 0.2275390625, -0.3603515625, 0.6088867188, -0.0811157227, 0.6474609375, -0.2061767578, -0.513671875, -0.1557617188, -0.25390625, 0.716796875, 1.0576171875, -0.4602050781, 0.9731445312, 0.0492248535, 0.2147216797, 0.3349609375, -0.3181152344, 0.1663818359, 0.2279052734, -0.0938720703, -0.5034179688, 0.3239746094, 0.9711914062, 0.0835571289, -0.4777832031, 0.2239990234, 0.8935546875, -0.8193359375, -0.0574951172, -0.4233398438, 0.7622070312, 0.20703125, 0.4975585938, -0.5717773438, -1.5322265625, 0.8583984375, -0.013381958, 0.0944824219, -0.2496337891, -0.2785644531, -0.3022460938, -0.2164306641, -0.1038818359, -0.3425292969, 0.0228118896, 1.224609375, 0.1508789062, -0.2136230469, 0.7153320312, 0.4128417969, 0.9975585938, 0.4702148438, 0.640625, -0.7436523438, 0.0491638184, -0.6899414062, 1.0439453125, -0.0982666016, 0.59375, 0.7026367188, 0.0860595703, -0.7143554688, -0.4631347656, 0.876953125, 0.2059326172, 0.0383300781, -1.048828125, 0.0264892578, 0.177734375, -1.7392578125, -0.0309295654, 0.2604980469, -0.1126098633, -0.2619628906, -0.3044433594, 0.4716796875, 0.0714111328, -0.931640625, 0.2178955078, 0.775390625, 0.8095703125, -0.3605957031, 0.0246124268, -1.6162109375, 0.6479492188, -0.0611572266, -1.259765625, -0.2283935547, 0.0955200195, -0.3386230469, -0.2360839844, -0.7221679688, 0.2629394531, -0.1236572266, -0.1257324219, 0.279296875, -0.7216796875, 0.37109375, -0.23046875, -1.11328125, -0.2475585938, -0.1179199219, 0.9072265625, -0.7377929688, -1.279296875, -0.6938476562, 0.2232666016, 0.0151901245, -0.4965820312, 0.2084960938, -0.8413085938, -0.611328125, -0.3862304688, 0.2531738281, 0.7392578125, 0.1337890625, 1.4794921875, -0.2963867188, 0.3588867188, -0.3291015625, -0.3986816406, -0.3078613281, -0.255859375, -0.2094726562, 0.8540039062, 0.5991210938, 0.5576171875, -0.9838867188, -1.0302734375, 0.6040039062, -0.2259521484, -0.2244873047, 0.2690429688, -0.0338745117, 1.0302734375, 0.8540039062, -0.8798828125, 0.2980957031, -0.5966796875, -0.7963867188, -0.1862792969, -0.5288085938, -1.0263671875, 0.6186523438, 0.4711914062, 0.4560546875, -0.166015625, 0.0112838745, 0.9545898438, 0.373046875, 0.1478271484, -0.1932373047, -0.5458984375, -0.0559387207, -0.0653076172, -0.0338439941, 0.705078125, 1.1005859375, -1.4501953125, 0.2685546875, -0.5893554688, 0.6528320312, 0.4946289062, -0.4499511719, -0.1070556641, -0.4587402344, -0.5952148438, 0.2308349609, -0.0946044922, 1.115234375, 0.2912597656, -0.2043457031, 0.5581054688, -0.4272460938, -0.8735351562, 0.583984375, 0.4956054688, -0.93359375, 0.345703125, -0.5317382812, 0.8491210938, -0.298828125, 0.1580810547, 0.50390625, -1.12890625, 0.4638671875, -0.18359375, -0.9877929688, -0.484375, 1.8701171875, 0.3134765625, -0.5434570312, -0.7666015625, -0.72265625, 0.5244140625, -1.0791015625, 0.0760498047, -0.0928955078, -0.8330078125, 0.1348876953, -0.3586425781, 0.8715820312, 0.2326660156, 0.0958251953, 0.3308105469, -0.6635742188, 0.93359375, 0.65234375, 0.5458984375, 0.1160888672, 0.6484375, -0.2980957031, 0.4611816406, -0.0294036865, -0.3173828125, 0.1939697266, 0.1954345703, -0.2257080078, 0.7578125, 0.8056640625, -0.6274414062, -0.2709960938, 0.3208007812, 0.1284179688, -0.8232421875, 0.7846679688, 0.3151855469, -0.1260986328, -0.3298339844, -0.1788330078, -0.1401367188, 0.065612793, -0.1962890625, 0.8881835938, 0.4025878906, 0.041595459, 0.2281494141, -0.2844238281, -0.1205444336, -0.1223144531, 0.5747070312, 0.9619140625, 1.046875, 0.0325927734, 0.2315673828, -0.1522216797, 0.03515625, -0.002035141, -0.2072753906, -0.7260742188, -0.0621643066, -0.1861572266, -0.0829467773, 0.2729492188, -0.1427001953, 0.7392578125, 0.1602783203, -0.0449829102, 0.4958496094, -0.1453857422, -0.0671386719, -0.5224609375, -0.4233398438, 0.3486328125, -0.6948242188, 1.1767578125, -0.8276367188, 0.1669921875, -0.4885253906, 0.1424560547, -0.4094238281, 0.421875, -1.671875, -0.5380859375, -0.0662841797, 0.2702636719, 0.0384521484, 0.5, 0.5190429688, 0.3186035156, -0.2249755859, -0.66796875, -1.04296875, 0.6948242188, -0.3725585938, 0.1750488281, -0.4055175781, 0.4924316406, -0.0264129639, -1.021484375, 0.0226135254, -0.8388671875, -0.7124023438, 0.0285186768, 0.1365966797, -0.0072631836, -0.615234375, -0.2237548828, -0.5415039062, -1.34375, 0.7045898438, 0.7124023438, -1.0068359375, 0.0936889648, 0.1247558594, -0.4409179688, -0.51953125, -0.0571289062, 1.05859375, 0.3637695312, -0.2230224609, -0.693359375, 0.74609375, -0.4909667969, 0.6186523438, 0.0249938965, -0.5161132812, -1.1494140625, 0.2445068359, 0.6513671875, 0.4313964844, 0.1655273438, 0.2856445312, -0.919921875, -0.2102050781, 0.2473144531, 0.46484375, -0.4016113281, 0.5004882812, -0.1403808594, 0.0777587891, 0.4077148438, 0.279296875, 0.5883789062, -0.8989257812, -0.0595397949, 0.6166992188, -1.41796875, -0.4836425781, -0.71484375, -0.2375488281, 0.8330078125, -0.5942382812, 0.0592651367, 0.3374023438, 0.4873046875, 0.0863037109, 0.4609375, 0.3803710938, -0.1213378906, 1.7734375, 0.3466796875, 0.0592651367, -0.7319335938, -0.3015136719, -0.3293457031, -0.1765136719, 1.189453125, 0.5126953125, -0.7451171875, -1.169921875, -0.5727539062, -0.0425720215, 0.2749023438, -0.054473877, 1.1240234375, -0.2707519531, 0.2568359375, -0.5068359375, 0.1420898438, 0.1983642578, -0.4162597656, 0.9731445312, -1.322265625, -0.6220703125, 0.2160644531, 0.3693847656, -0.3227539062, 0.3278808594, -1.50390625, 0.4921875, -0.7670898438, -0.0536193848, -0.1361083984, 0.1871337891, -1.287109375, 0.2210693359, 0.073425293, 0.5522460938, 0.48828125, 0.5361328125, -0.4074707031, -0.7084960938, -1.326171875, -0.3923339844, -0.3239746094, 0.3347167969, 0.6787109375, 0.5092773438, -0.0938720703, 0.1401367188, -0.1865234375, -0.5561523438, -0.724609375, 0.572265625, -0.1528320312, 0.6186523438, -0.3220214844, -0.998046875, 0.2680664062, 1.3515625, -0.0357055664, 1.197265625, 0.5522460938, -0.595703125, 0.1486816406, -0.1083374023, -0.1392822266, 1.0400390625, -0.7041015625, 0.3405761719, 1.16015625, -0.6030273438, 0.5561523438, -0.0007352829, -1.4287109375, 0.1397705078, -0.5112304688, 1.1396484375, -0.02394104, -0.3937988281, -0.5620117188, -0.6518554688, 0.2386474609, 1.328125, 0.0483398438, -0.63671875, 0.0693969727, -0.2858886719, 0.6953125, -1.0703125, -0.759765625, 0.4689941406, 0.2692871094, 0.2413330078, -0.4814453125, 0.0919799805, 0.1024780273, -0.8857421875, 0.3791503906, -0.6000976562, -0.1645507812, 0.65234375, 0.5551757812, -0.051940918, -1.0869140625, -0.5258789062, -0.6264648438, 0.0989990234, 0.1343994141, 0.1254882812, -0.3825683594, 0.4074707031, -0.0452270508, 0.1196289062, -1.345703125, -1.25390625, -0.5771484375, 0.1286621094, 0.1531982422, -0.7709960938, -0.4299316406, 0.9223632812, 0.947265625, -0.3293457031, -1.5009765625, 0.1873779297, -1.0107421875, -0.1552734375, -0.1943359375, -0.9506835938, -0.2346191406, -0.212890625, 0.4357910156, 0.7705078125, 0.3225097656, 0.2198486328, -0.1531982422, 0.4741210938, 0.0456848145, 0.9038085938, -0.0672607422, -0.8081054688, -0.8486328125, -0.4321289062, 0.2239990234, 0.7290039062, -0.4482421875, -0.4296875, -0.3127441406, 0.1802978516, -0.5263671875, 0.0623779297, 0.2398681641, 0.4284667969, -0.0861206055, 0.6450195312, 1.134765625, 0.6196289062, 0.9365234375, 0.0721435547, -0.0897827148, 0.4768066406, -0.3034667969, -0.0583496094, -0.5561523438, -0.1025390625, -0.6860351562, 0.2292480469, 0.4711914062, 0.3610839844, 0.0146713257, -0.5288085938, -0.3747558594, -1.115234375, 0.5239257812, 0.62890625, 0.2309570312, -0.0944213867, 0.3649902344, -0.6826171875, 0.2487792969, -0.1579589844, 0.8271484375, -0.2861328125, -0.1672363281, 0.2507324219, -0.5961914062, 0.4501953125, -0.2546386719, 0.7895507812, -0.0520935059, 1.140625, 0.5947265625, -0.0044670105, -0.2106933594, -13.53125, -0.0417175293, 0.1511230469, 0.116394043, -0.5366210938, -0.117980957, -0.7221679688, -0.7099609375, -0.9790039062, 1.0498046875, -0.0435791016, 0.4426269531, -0.4060058594, 0.0325317383, 0.4970703125, -1.0341796875, -0.0218963623, -1.0634765625, 1.0263671875, -0.2551269531, 1.0966796875, 1.017578125, 0.5834960938, -0.5166015625, -0.7197265625, -0.0571899414, 0.6909179688, -0.1645507812, -1.2294921875, -0.1942138672, -0.0637817383, 0.3591308594, -0.6323242188, 0.2280273438, -0.1452636719, -0.2396240234, 0.1978759766, -0.6274414062, -0.025604248, 0.1588134766, 0.4370117188, -0.318359375, -1.2216796875, 0.3374023438, 0.3562011719, 0.3513183594, -0.2268066406, -0.3947753906, -0.66796875, 0.697265625, -1.146484375, 0.1844482422, 0.5942382812, -0.5112304688, -0.591796875, 0.2712402344, 0.1411132812, 0.1845703125, 0.3527832031, 0.5629882812, -0.1208496094, 0.8701171875, 0.4445800781, -0.3884277344, 0.0415649414, -0.97265625, -0.4558105469, -0.4406738281, -0.029800415, -0.4108886719, 0.4321289062, -0.5112304688, -0.1774902344, 0.2819824219, 0.3442382812, 0.78125, 0.2780761719, 0.45703125, -0.7133789062, 1.3232421875, -0.6293945312, 0.3562011719 ]
Sayal, M., Casati, F., Dayal, U., & Shan, M. (2002). Business Process Cockpit. In Proceedings of 28th international conference on very large data bases (VLDB’02) (pp. 880–883). Morgan Kaufmann. Huser V, Starren JB, EHR Data Pre-processing Facilitating Process Mining: an Application to Chronic Kidney Disease. AMIA Annu Symp Proc 2009 link Ross-Talbot S, The importance and potential of descriptions to our industry. Keynote at The 10th International Federated Conference on Distributed Computing Techniques Garcia, Cleiton dos Santos; Meincheim, Alex; et al. (2019). Process mining techniques and applications – A systematic mapping study». Expert Systems with Applications. 133: 260–295. ISSN 0957-4174. doi:10.1016/j.eswa.2019.05.003 van der Aalst, W.M.P. and Berti A. Discovering Object-Centric Petri Nets. Fundamenta Informaticae, 175(1-4):1-40, 2020. External links International Process Mining Conference is the annual international process mining conference organized by the IEEE Task Force on Process Mining. Process mining research at Eindhoven University of Technology, the Netherlands. Process mining research at Ghent University, Belgium. Process mining research at University of Padua, Italy.
[ 0.8686523438, -0.5375976562, 0.5849609375, 0.9624023438, -0.7954101562, 0.0191497803, -0.7905273438, -0.451171875, 0.0498352051, -0.1065063477, 0.603515625, 0.2797851562, -0.8623046875, 0.1713867188, 0.2690429688, -0.1697998047, 0.1002197266, 0.5556640625, 0.0185089111, 0.2486572266, -0.0132522583, -0.8227539062, -0.045715332, -1.6298828125, -0.5639648438, 0.669921875, -0.3432617188, 0.0421142578, 0.3674316406, 0.7250976562, 0.2392578125, 0.4130859375, -1.8125, -0.4504394531, -0.0827026367, 0.3239746094, -0.3791503906, -0.7680664062, -1.291015625, -0.482421875, -0.9252929688, -0.3481445312, -0.4167480469, 0.4338378906, 1.4482421875, 1.0546875, -0.0952148438, -0.4558105469, -0.9326171875, 0.0966796875, -0.2303466797, 0.0788574219, 0.7543945312, -0.8500976562, 0.0292816162, 0.0021514893, 0.943359375, 0.2551269531, 0.7880859375, -0.3298339844, -0.4763183594, 0.861328125, 0.3776855469, 0.2066650391, 0.8442382812, -0.818359375, -1.171875, 1.150390625, -1.3857421875, 0.5004882812, -0.1662597656, 0.1265869141, -0.3937988281, -0.2110595703, -0.0114974976, 0.3442382812, 0.9614257812, 0.3308105469, 1.396484375, -0.3054199219, -0.8598632812, -0.1378173828, 0.1074829102, -1.1513671875, 0.8696289062, 0.5537109375, 0.044128418, -0.3576660156, -0.5327148438, 1.73046875, 0.2416992188, 0.2082519531, -0.9067382812, -0.7875976562, 0.1965332031, -0.6767578125, 0.48046875, -0.1744384766, -0.7778320312, -0.3190917969, -0.2775878906, -0.4677734375, 0.1348876953, -0.1032714844, -0.2139892578, 0.2761230469, -0.8481445312, 0.5327148438, -0.4592285156, 0.71484375, -0.62109375, 0.1824951172, -0.0541687012, -0.4265136719, 0.9526367188, -0.322265625, 0.8247070312, -0.1330566406, 0.1853027344, -0.1573486328, -0.5654296875, 0.024520874, 0.7529296875, -0.1710205078, 0.3154296875, 0.0613098145, -0.8725585938, -0.2138671875, 0.4260253906, -0.3217773438, 0.623046875, 0.3974609375, -0.4118652344, 0.2639160156, -0.17578125, -0.3540039062, -1.48046875, 0.2080078125, 0.2264404297, 1.4609375, -0.2604980469, 1.35546875, -0.5341796875, -0.3381347656, 0.5883789062, 0.1497802734, -0.5776367188, 0.2170410156, -0.0364074707, -1.0380859375, 0.1446533203, -0.6772460938, 0.1175537109, 0.134765625, -0.2709960938, 0.49609375, -0.7377929688, -0.1122436523, -0.0774536133, 0.0486450195, -0.1520996094, -0.6723632812, -0.4213867188, 0.5610351562, 0.51953125, 1.119140625, -0.6059570312, 0.0834960938, 0.0672607422, 0.1776123047, -0.8388671875, 0.6791992188, -0.0848388672, -0.7275390625, 0.4733886719, -0.2141113281, 0.7822265625, -0.69140625, -0.7924804688, -0.5322265625, 0.0682373047, -1.814453125, 1.4306640625, 0.4353027344, 0.3273925781, 0.0776367188, -0.0870361328, -0.8393554688, -0.0108032227, 0.1502685547, 0.3020019531, -0.6669921875, -0.181640625, 0.9448242188, -0.4631347656, 0.0586547852, -1.029296875, 0.1483154297, -0.2149658203, 0.9521484375, -0.1398925781, -1.0185546875, 0.0196228027, -0.3757324219, -0.5234375, 0.1805419922, -0.0096359253, 0.4152832031, 1.3203125, 0.6977539062, -0.0897216797, 0.6787109375, 0.3913574219, -1.017578125, 0.2003173828, 0.3012695312, -0.6069335938, -0.310546875, -0.1649169922, 0.0382385254, 0.0207366943, 1.13671875, -0.5625, -0.6806640625, -0.2200927734, 0.8876953125, 0.1751708984, 0.4638671875, 0.2690429688, 0.4475097656, -0.0729980469, 0.5209960938, 0.1178588867, 0.2526855469, 0.4221191406, -0.25390625, -0.3674316406, 0.3610839844, 0.6201171875, 0.7739257812, -0.8818359375, 0.1319580078, -0.0979614258, 0.0591125488, -0.5053710938, 0.4462890625, -0.8520507812, 0.0631713867, -0.6791992188, 0.4770507812, 0.6069335938, 0.2956542969, -0.6953125, 1.3349609375, 1.05859375, -0.0689086914, -0.13671875, -0.4287109375, 1.2099609375, 0.3977050781, -0.3713378906, 0.2897949219, 0.4572753906, -1.2529296875, -0.6225585938, -0.0387878418, -0.2744140625, 0.3757324219, 2.150390625, -0.2565917969, 0.0798950195, -1.3203125, -0.9189453125, -1.0009765625, 0.0895996094, -0.833984375, 0.572265625, -0.2425537109, -0.0534973145, 0.8344726562, 0.716796875, 0.3955078125, 0.630859375, -0.2277832031, 0.4990234375, -0.3498535156, -0.1535644531, 0.3659667969, 0.0266265869, -0.662109375, -0.1887207031, -0.1766357422, 0.7387695312, 0.6689453125, 0.0226898193, -0.0538330078, 0.1513671875, -0.2912597656, 0.876953125, -0.56640625, 0.4521484375, 0.1200561523, -0.2983398438, -1.009765625, 1.0244140625, -0.2978515625, -0.2841796875, -1.4423828125, 0.8198242188, 0.7202148438, 0.6142578125, -1.1005859375, 0.3620605469, -0.6240234375, -0.7202148438, -0.5375976562, -1.544921875, 0.0297851562, -0.2824707031, 0.4736328125, 0.4653320312, -0.0274963379, -0.0622253418, -0.7827148438, -0.1644287109, 0.8505859375, -1.79296875, -1.32421875, -0.2824707031, 0.3664550781, 0.9287109375, -0.0904541016, 0.3833007812, 0.4963378906, 1.04296875, -0.1469726562, 0.3137207031, -0.9384765625, 1.0712890625, -0.83984375, -0.5126953125, 0.0127944946, -0.0000569224, 0.1928710938, 0.8413085938, 0.1865234375, -0.654296875, -0.6010742188, 0.2890625, 0.0119400024, 0.5556640625, 0.1568603516, -0.0371398926, -0.8203125, 0.9184570312, -0.5532226562, 0.3139648438, 1.4638671875, 0.2692871094, 0.3664550781, -0.0386352539, 1.2314453125, -2.529296875, 0.1666259766, -0.2113037109, 0.8930664062, -0.1293945312, -0.5620117188, -0.419921875, 0.2160644531, 0.4516601562, -0.5063476562, 0.466796875, -1.033203125, -0.423828125, -0.2416992188, 0.390625, 0.8881835938, -0.5634765625, -0.2121582031, -0.0165252686, -0.2805175781, 0.6455078125, -0.509765625, -0.0618286133, 0.4196777344, 0.117980957, -0.7314453125, -1.76953125, 0.000535965, 0.0148468018, -0.2269287109, 1.0478515625, -0.0495300293, 1.1396484375, -0.0332946777, -0.2042236328, -0.3171386719, 1.1416015625, -0.6684570312, -0.0103302002, -0.6337890625, -1.4248046875, -0.0740966797, -0.7299804688, -0.1966552734, 1.3056640625, -0.2052001953, 1.1025390625, 0.1175537109, 0.1331787109, 0.3813476562, -0.6655273438, 0.4389648438, 0.0547180176, -0.2507324219, 0.0930786133, 0.6245117188, 0.6430664062, 0.5, -0.705078125, 0.9604492188, 0.3376464844, 0.0913696289, -0.5234375, -0.0052757263, 0.6010742188, -0.1800537109, -0.0121994019, -0.3442382812, -1.16796875, -0.0641479492, -0.2863769531, 0.2448730469, -0.7436523438, 0.3388671875, -0.0134887695, -0.4182128906, 0.0451049805, -0.6889648438, 0.3530273438, 1.048828125, 0.3049316406, 0.1540527344, 0.2709960938, -0.1802978516, 0.8510742188, -0.4077148438, 0.9643554688, -0.4992675781, -0.4970703125, -0.1499023438, 0.1383056641, 0.1885986328, 0.0429077148, 0.6708984375, 0.0393981934, -0.63671875, -1.10546875, 0.578125, 0.041595459, -0.0146713257, -1.455078125, 0.2426757812, 1.1279296875, -2.173828125, -0.1860351562, 0.1215209961, -0.51953125, -0.1134033203, 0.0418701172, 0.625, 0.9438476562, -0.3269042969, 0.1257324219, 0.703125, 0.9995117188, -0.0896606445, -0.4375, -1.962890625, 0.6801757812, -0.2770996094, -0.6499023438, -0.5849609375, 0.3518066406, -0.3825683594, -0.1567382812, -1.1982421875, -0.1005249023, 0.4653320312, -0.2712402344, 0.0137786865, -0.412109375, 0.6401367188, -0.6552734375, -0.4768066406, -0.0173950195, 0.4311523438, 1.341796875, -0.8588867188, -0.9794921875, -0.4389648438, 0.646484375, -0.646484375, -1.08203125, 0.271484375, -1.142578125, 0.0130386353, 0.2283935547, -0.4318847656, 0.8515625, -0.3825683594, 1.173828125, -0.6513671875, 0.4191894531, -0.9833984375, -0.6147460938, -0.2980957031, -0.2009277344, 0.3718261719, 1.4052734375, 0.3608398438, 0.1535644531, 0.1086425781, -0.353515625, 0.4909667969, -0.625, -0.0432128906, 0.3625488281, 0.0147705078, 0.8486328125, 0.5405273438, -0.705078125, -0.4455566406, 0.4079589844, -0.5239257812, 0.4455566406, -0.7138671875, -0.7084960938, 1.15234375, 0.2348632812, -0.0308685303, -0.3168945312, -0.0199432373, 0.2756347656, 0.634765625, 0.106628418, -0.1079711914, -0.6206054688, -0.4206542969, -0.3947753906, 0.0642700195, -0.0217590332, 1.4609375, -1.63671875, 0.2227783203, -0.3715820312, 0.6845703125, 0.3129882812, -0.4978027344, 0.4477539062, -0.5952148438, -0.4650878906, -0.1098632812, -0.6474609375, 0.6948242188, 0.3488769531, -0.611328125, 0.9111328125, -1.1796875, -1.55859375, -0.1090698242, 0.8657226562, -0.8803710938, 0.6899414062, -0.4880371094, 0.8422851562, -0.7426757812, 0.1524658203, 0.5444335938, -1.0126953125, 0.5258789062, -0.537109375, -0.6865234375, 0.564453125, 1.6708984375, 0.1337890625, -0.8681640625, -1.04296875, -0.4997558594, 0.296875, -0.6049804688, 0.0829467773, 0.100769043, -0.8784179688, 0.0417785645, 0.4174804688, 1.2998046875, 0.0507507324, -0.4702148438, 0.6782226562, -0.888671875, 1.9091796875, 0.1759033203, 0.2365722656, -0.390625, 0.8774414062, -0.4028320312, -0.380859375, 0.3200683594, -0.0399475098, 0.1352539062, 0.1844482422, -0.1774902344, 0.5263671875, 1.4189453125, -0.1490478516, 0.4895019531, 0.1215820312, -1.2119140625, -0.2468261719, 0.8608398438, 0.6596679688, -0.2430419922, -0.1257324219, -0.1901855469, -0.2064208984, -0.3576660156, -0.7114257812, 0.5234375, 0.2418212891, 0.6430664062, -0.2722167969, -0.0141372681, -0.7612304688, 0.1195678711, 0.4055175781, 0.12890625, 1.060546875, 0.5581054688, 0.8090820312, -0.5502929688, 0.2678222656, -0.626953125, -0.4985351562, -1.138671875, 0.0860595703, 0.2231445312, -0.3112792969, 0.5390625, 0.3664550781, 1.0224609375, 0.5288085938, -0.0877075195, -0.26171875, 0.1264648438, 0.4304199219, -0.2486572266, -0.1879882812, -0.0165252686, -0.2360839844, 1.9833984375, -1.0126953125, 0.5952148438, 0.0176696777, 0.1195068359, -0.8090820312, -0.3198242188, -1.4462890625, -0.7065429688, -0.0131530762, 0.4450683594, -0.2810058594, 0.4216308594, 0.568359375, -0.8139648438, -0.3374023438, -0.4108886719, -0.2338867188, 1.1533203125, -0.517578125, 0.0037841797, 0.110168457, 0.8159179688, -0.3129882812, -0.439453125, -0.3842773438, 0.0589904785, -1.099609375, -0.2200927734, 0.2966308594, -0.1328125, -1.064453125, -0.4294433594, -0.9604492188, -1.029296875, 0.8833007812, 0.966796875, -0.955078125, -0.4526367188, -0.2873535156, -0.9155273438, -0.4384765625, 0.4558105469, 1.0146484375, 0.71484375, -1.2705078125, -0.6640625, -0.0140838623, 0.0853881836, -0.6381835938, 0.115234375, -0.0551757812, -0.2690429688, 0.3225097656, 0.8872070312, -0.1862792969, -0.5268554688, 0.2375488281, -0.4760742188, -0.3474121094, 0.4594726562, 0.2604980469, 0.0567016602, 0.1451416016, -0.4475097656, 0.1180419922, 0.1979980469, 0.5073242188, 0.0723266602, -0.0308074951, -0.5078125, -0.3020019531, -0.765625, -0.5546875, -0.7924804688, 0.017364502, 0.0781860352, -0.2546386719, 0.5546875, -0.0011138916, 0.4487304688, -0.2027587891, -0.0857543945, 0.4130859375, -0.1235351562, 1.7294921875, -0.0436401367, -0.6704101562, -0.8276367188, -0.2023925781, -0.094543457, 0.1662597656, 0.7182617188, 0.8037109375, -0.1534423828, -0.9555664062, -0.0846557617, 0.951171875, -0.0009660721, 0.2191162109, 1.3388671875, -0.7451171875, 0.1214599609, -0.857421875, 0.1990966797, 0.9907226562, 0.1499023438, 0.607421875, -0.890625, -0.5048828125, -0.1766357422, -0.3449707031, 0.1611328125, 0.8447265625, -0.7373046875, -0.0067863464, -0.1900634766, -0.1857910156, 0.57421875, 0.2222900391, -0.5966796875, 0.3732910156, 0.1328125, 0.1832275391, -0.0862426758, 0.1857910156, 0.1311035156, -0.7456054688, -1.296875, 0.3291015625, -0.3698730469, -0.1729736328, 0.5893554688, 1.1064453125, -0.0333251953, -0.0703125, 0.3630371094, -0.2214355469, -0.1368408203, 0.697265625, -0.3225097656, 1.19140625, 0.2445068359, -0.0354003906, -0.513671875, 1.330078125, 0.0102767944, 0.8798828125, 0.6083984375, -1.3583984375, 0.3562011719, -0.6083984375, -0.0130310059, 0.87109375, -0.8491210938, 0.0921020508, 0.8837890625, -0.5434570312, -0.2849121094, 0.2578125, -1.109375, 0.6606445312, 0.2880859375, 0.6103515625, 0.1965332031, -0.1468505859, -0.6342773438, -0.2479248047, 0.3540039062, 1.248046875, 0.8520507812, -0.7456054688, 0.6625976562, -0.2192382812, 0.3190917969, -0.9130859375, -0.2878417969, 0.30078125, 0.4575195312, 0.0185089111, -0.9658203125, -0.1716308594, -0.0474853516, -0.603515625, 0.5849609375, -0.7705078125, -0.8510742188, 0.5756835938, 0.3181152344, 0.6821289062, -1.0576171875, -0.5629882812, -0.6791992188, 0.2919921875, -0.1066894531, 0.2993164062, -0.791015625, 0.2310791016, -0.1478271484, 0.9184570312, -1.4619140625, -0.6166992188, -0.2578125, -0.8676757812, 0.3920898438, -0.4931640625, -0.2254638672, 0.1182861328, -0.1826171875, -0.4650878906, -0.6982421875, 0.1842041016, -1.119140625, 0.098815918, 0.5131835938, -0.4636230469, -0.501953125, -0.4406738281, 0.1832275391, 0.4577636719, -0.0377197266, 0.30078125, -0.5454101562, -0.5766601562, 0.5737304688, 1.4697265625, -0.8466796875, -0.4775390625, -0.3742675781, -1.1474609375, 0.82421875, 0.533203125, -0.2641601562, -0.3618164062, -0.3933105469, 0.0802001953, -0.5200195312, -0.1297607422, -0.0227050781, 0.2512207031, -0.2192382812, 0.8725585938, 0.2465820312, 0.95703125, 0.2116699219, 0.3645019531, -0.615234375, 0.8251953125, -0.0440979004, -0.1644287109, -0.505859375, 0.0837402344, -1.1904296875, 0.3986816406, -0.1573486328, 0.1619873047, -0.036529541, -0.9228515625, 0.298828125, -0.7529296875, -0.0708007812, 0.0728149414, 0.5444335938, 0.2487792969, 0.1178588867, -0.6103515625, 0.1469726562, 0.0596923828, 0.8774414062, -0.1026611328, -0.0864257812, 0.2963867188, -0.9814453125, 0.0991821289, 0.5590820312, 0.30078125, -0.0360412598, 0.3852539062, 0.3937988281, 0.3181152344, -1.044921875, -13.1171875, -0.1927490234, 0.0460510254, 0.1652832031, -1.2001953125, -0.0944213867, -0.75, -1.32421875, -1.15625, 0.3869628906, -0.0690917969, -0.173828125, -0.4799804688, 0.0864868164, 0.2946777344, -1.544921875, -0.4865722656, -0.9897460938, 0.5341796875, -1.234375, 0.8310546875, 0.599609375, 0.1791992188, -0.7265625, -0.3449707031, 0.0980834961, -0.0034809113, 0.8159179688, -0.955078125, 0.0278778076, 0.7983398438, 0.4809570312, -0.7875976562, -0.5629882812, -0.6049804688, -0.2697753906, 0.0899658203, -0.4672851562, 0.24609375, -0.8461914062, 0.599609375, 0.30078125, -0.7973632812, -0.1314697266, 0.5336914062, 0.0938720703, -0.2020263672, 0.1779785156, -0.5615234375, 0.4741210938, -0.787109375, 0.1936035156, 0.9536132812, -0.6875, -0.728515625, -0.544921875, 0.8041992188, -0.0516662598, 0.0572814941, 0.2358398438, -0.5229492188, 1.232421875, 0.2037353516, -0.3188476562, -0.3176269531, -0.6162109375, -0.2152099609, -0.0760498047, -0.9760742188, -0.3168945312, 0.3737792969, -0.2763671875, 0.0011291504, 0.8232421875, 0.6787109375, 0.46484375, 0.2951660156, -0.349609375, 0.5317382812, 0.80859375, -0.5297851562, 0.2724609375 ]
GASAG (; English: Berlin Gas Works Corporation) is the main natural gas supplier and vendor in Berlin, Germany. References External links Official site Economy of Berlin Natural gas companies of Germany
[ -0.1665039062, 0.857421875, 0.3723144531, 0.8227539062, 0.4079589844, 0.3586425781, 0.0960083008, 0.4338378906, 0.9873046875, 0.7602539062, 0.1763916016, -0.3454589844, 0.7563476562, 0.0219116211, -1.2314453125, 1.5205078125, -0.7475585938, 0.0569458008, 0.0802612305, 0.615234375, -0.045135498, -0.7827148438, 0.1337890625, -0.52734375, -0.8754882812, 0.5034179688, 0.5385742188, 0.0027637482, -0.2299804688, -0.9956054688, -0.3190917969, -0.1192626953, -0.806640625, -0.3935546875, 0.0154647827, 0.2353515625, -0.0042762756, 0.2963867188, 0.1896972656, -0.1950683594, 0.9243164062, 0.3706054688, -1.4970703125, -0.1508789062, 0.6630859375, 0.0864257812, -0.1186523438, 0.0080871582, -0.3515625, 0.3825683594, -0.9106445312, 0.1602783203, 0.3288574219, -1.001953125, 0.845703125, -0.9614257812, -0.3083496094, 0.1867675781, 0.4887695312, -0.2700195312, -0.6708984375, 0.0707397461, -0.4916992188, 0.1574707031, 0.7026367188, -0.3146972656, 0.3103027344, -0.8520507812, -0.047454834, 0.3952636719, 0.2181396484, 0.5791015625, -0.1359863281, 0.3757324219, 0.5634765625, -0.2702636719, 0.7998046875, 1.3251953125, 0.7270507812, -0.6791992188, -1.04296875, -0.3383789062, -0.0973510742, -0.1857910156, -0.8354492188, -1.087890625, -0.1127929688, 0.6557617188, 0.0101699829, 0.2883300781, -0.2775878906, -0.54296875, 0.4768066406, -0.1027832031, 0.1513671875, -0.62109375, -0.2034912109, -1.55078125, 0.5234375, 0.3955078125, 0.2827148438, 0.271484375, 0.7646484375, 0.2006835938, -0.1216430664, 2.01171875, -0.5473632812, -0.2210693359, -0.62109375, -0.5786132812, 0.1557617188, 0.9267578125, 0.3393554688, 1.0302734375, -0.66015625, -0.1839599609, 0.662109375, -0.3784179688, -0.6845703125, 0.4226074219, -1.0654296875, -0.0387573242, 0.1711425781, -0.1928710938, -0.7250976562, -0.2332763672, -0.5615234375, 0.802734375, -0.3251953125, 0.7631835938, 0.3869628906, -0.1960449219, -0.5537109375, 0.3630371094, -0.275390625, -0.70703125, -1.3505859375, 0.0556640625, 0.0715942383, 0.271484375, 0.3513183594, -1.4326171875, 0.0426635742, -0.5776367188, 0.7182617188, -0.3220214844, -0.7094726562, -0.028717041, 1.421875, -0.0787353516, 0.98828125, -0.7387695312, -1.3193359375, -0.763671875, -0.4814453125, 0.62890625, -1.5146484375, -0.8129882812, -0.0518493652, -0.8481445312, 0.4750976562, 0.0463256836, 0.2436523438, 1.1953125, -0.2135009766, 1.220703125, 0.5493164062, 0.6625976562, 0.2034912109, -0.533203125, 0.9086914062, 0.2697753906, 1.048828125, 0.1610107422, 0.0687866211, 0.609375, 0.3100585938, -1.0537109375, 0.673828125, -1.2041015625, -0.9370117188, -0.314453125, 0.5659179688, -1.2138671875, -1.20703125, -0.6240234375, 0.2141113281, 0.1921386719, -0.3178710938, 0.1280517578, 0.2507324219, 0.1812744141, -0.38671875, -0.7856445312, -0.6123046875, -0.1384277344, -0.0595703125, 0.1208496094, -0.515625, -0.1364746094, -0.3381347656, 0.1965332031, -0.7504882812, -0.6123046875, 0.1795654297, -0.2299804688, -0.51171875, 0.6098632812, -0.7729492188, 0.5185546875, -0.0031604767, 0.744140625, 0.4836425781, 0.0621032715, -0.6274414062, 0.4829101562, -0.4072265625, -0.7319335938, 0.5249023438, -0.3642578125, 0.0548400879, 0.9155273438, 1.005859375, -1.3896484375, 0.2321777344, -0.7446289062, 0.3491210938, 0.2268066406, -0.8876953125, -0.6806640625, 0.9790039062, 0.1461181641, -1.294921875, -0.328125, 1.1787109375, -0.8764648438, 0.9379882812, -0.755859375, -1.2333984375, 0.1188964844, -0.0916748047, 0.6767578125, 0.1201782227, 0.1247558594, -1.123046875, -0.44140625, -0.4919433594, -0.3745117188, -1.0986328125, 0.4880371094, -0.3293457031, -0.0067939758, -0.8530273438, -1.8798828125, 0.1235351562, -0.5190429688, 0.158203125, -0.89453125, 0.7104492188, -0.5732421875, -0.0173034668, 1.302734375, 0.5327148438, -0.8037109375, -0.6264648438, 1.0107421875, -0.21875, -0.4560546875, -0.2666015625, -1.5869140625, 0.1900634766, -0.4497070312, -1.09375, -1.728515625, 0.578125, -0.708984375, 0.0041427612, -0.2976074219, -0.2868652344, 0.0187225342, -0.1267089844, 1.279296875, -0.1799316406, 0.0478515625, -0.3854980469, -0.1872558594, -0.6157226562, -0.5170898438, -0.630859375, -0.1030273438, 0.1876220703, 0.5043945312, -0.6166992188, 0.0887451172, -1.2412109375, 0.7041015625, 0.2486572266, 0.5239257812, -0.19140625, -0.2100830078, 0.6196289062, -0.042175293, -0.3249511719, -1.6123046875, 0.9858398438, 0.1954345703, -0.1751708984, -0.5092773438, 0.0479736328, 1.7080078125, 0.0635375977, -0.7436523438, 0.5131835938, 0.4426269531, 0.9326171875, -0.302734375, -0.2296142578, 0.7734375, 0.6435546875, 0.0741577148, 0.6943359375, -0.3095703125, 0.892578125, -0.3967285156, 0.5146484375, 0.1229858398, 0.6723632812, -2.25, 1.01953125, 0.2707519531, 0.0241546631, 0.022644043, 0.2183837891, 0.4040527344, -0.2038574219, 0.1494140625, -0.9033203125, -0.0765380859, 0.5576171875, 0.1436767578, 0.0168304443, -0.7900390625, 0.2817382812, 0.8305664062, 0.8256835938, 0.4562988281, -0.9663085938, -0.8500976562, 1.013671875, -0.5380859375, 0.6083984375, 0.56640625, -0.1187133789, -0.2895507812, -0.6474609375, 0.6435546875, 0.6352539062, 0.3540039062, -0.8422851562, 0.3081054688, 1.248046875, 0.4138183594, -0.7573242188, 0.7607421875, -0.2344970703, 0.1444091797, 0.3596191406, -0.0008301735, 0.9223632812, -0.40625, -0.2216796875, -0.2075195312, -1.0888671875, 0.0916137695, 0.7607421875, -0.1337890625, -0.3498535156, 0.2612304688, -0.2098388672, 0.1440429688, -0.0393371582, 0.3715820312, 0.0336914062, 0.328125, -0.2027587891, 0.3527832031, 0.31640625, 0.0274200439, -1.2294921875, -0.431640625, -0.0291748047, -0.9409179688, 1.12890625, 0.4562988281, -0.9809570312, 0.234375, 0.1762695312, -0.3657226562, 0.3037109375, -0.6313476562, -0.8037109375, -0.2673339844, 0.5952148438, -0.0185699463, 0.2734375, 0.3330078125, -0.5810546875, 0.3962402344, -0.69140625, -0.0196990967, 0.5385742188, 0.0963745117, 0.4050292969, -0.3403320312, 2.193359375, 0.537109375, 0.9077148438, -1.076171875, -0.1790771484, -0.2993164062, -1.0341796875, 1.3544921875, 0.4626464844, 0.77734375, -0.2261962891, 0.4375, -0.4909667969, 0.0457763672, 0.1064453125, 0.4699707031, -0.0502929688, -1.1728515625, -0.1856689453, 0.4931640625, 0.6044921875, -0.2369384766, 0.5678710938, 0.3957519531, 0.4223632812, 0.0362243652, 0.552734375, 0.5458984375, -0.1986083984, -1.0927734375, 0.7563476562, 1.375, 0.2751464844, -0.2810058594, -0.0738525391, -1.044921875, -0.6704101562, 0.1328125, 0.61328125, -0.2966308594, 1.216796875, -1.095703125, 0.0949707031, -0.4858398438, -0.6123046875, -1.0068359375, 0.9912109375, -0.1275634766, 0.9252929688, -1.0986328125, -0.0211181641, -1.4853515625, 1.4873046875, -0.4672851562, -0.1097412109, 0.0379333496, -0.4011230469, -0.5590820312, 0.1555175781, -0.0552062988, -0.4970703125, 0.9633789062, 0.3994140625, 0.8872070312, 0.4401855469, 0.2387695312, 0.1162719727, 0.8408203125, 0.4584960938, -0.2375488281, 0.9770507812, -0.3205566406, -0.4052734375, 0.1012573242, -0.3342285156, 0.4809570312, 0.2362060547, -0.6948242188, -1.39453125, 0.1455078125, -0.8115234375, -1.287109375, -0.7939453125, -0.3466796875, -0.2165527344, -0.3322753906, -0.6225585938, -0.3776855469, -1.115234375, -0.1375732422, -0.767578125, -0.0670166016, 0.0170898438, -0.951171875, -0.1616210938, 0.6508789062, 0.4797363281, 0.1376953125, -0.0191955566, 0.3833007812, -0.6225585938, -0.1833496094, -0.4445800781, -1.130859375, 1.111328125, 0.4270019531, 0.5673828125, 0.8364257812, 0.4694824219, 1.1201171875, 0.1960449219, 0.2934570312, -0.0682983398, -0.3308105469, -0.3720703125, 0.3505859375, 0.1212158203, -0.888671875, 0.2277832031, 0.4467773438, -0.1411132812, 0.2047119141, 0.3100585938, -0.0373535156, -0.2393798828, 0.6645507812, 0.6430664062, -0.4987792969, 0.0799560547, 0.9721679688, -0.9028320312, 0.0475158691, -0.1533203125, -0.1022338867, -0.7846679688, -0.1452636719, 0.1999511719, -0.009552002, -0.1154174805, 0.5400390625, -0.1656494141, -0.4318847656, -0.5717773438, -0.0297698975, 0.1024169922, -0.4360351562, 0.328125, 0.9887695312, -0.201171875, -0.2775878906, -0.72265625, -0.3891601562, 0.4438476562, 1.1162109375, -0.2541503906, 0.1281738281, -0.5053710938, 0.2126464844, -0.5170898438, 0.421875, -0.2399902344, 0.4104003906, -0.0921630859, -0.1865234375, -0.0107498169, 0.1540527344, 0.0056800842, 0.2866210938, 0.2133789062, -1.150390625, -0.0846557617, 0.6352539062, -0.0170135498, -0.2778320312, -0.5654296875, -0.3308105469, -0.3120117188, 1.494140625, -0.134765625, -0.7138671875, -1.4365234375, 0.4753417969, -0.5791015625, 1.033203125, -0.4614257812, -0.1326904297, 1.080078125, -0.0007047653, 0.3500976562, 0.3571777344, 0.5483398438, -1.0634765625, 0.1038818359, -0.3093261719, 0.4125976562, -0.6547851562, 0.4797363281, 0.1754150391, -0.1804199219, -0.65625, -0.7060546875, 0.1480712891, 0.1859130859, 0.5141601562, 0.80078125, 0.662109375, -0.2241210938, 1.53125, 0.640625, -0.2435302734, 0.2231445312, -0.3984375, -0.0924682617, -0.0650024414, -0.3823242188, 0.1192016602, 1.115234375, -0.0419616699, -0.7133789062, -0.591796875, -0.064453125, 0.5629882812, -0.2176513672, 1.1982421875, -0.328125, -0.0037441254, 1.029296875, -0.4460449219, -1.4658203125, 0.3217773438, -0.5346679688, -1.0693359375, -0.5883789062, 0.3334960938, -0.9296875, -0.1851806641, 0.642578125, 0.4875488281, 0.837890625, -0.3986816406, -0.3979492188, -0.7739257812, 0.0853271484, -0.6420898438, -1.8974609375, 0.0694580078, -1.3125, 2.068359375, -0.3098144531, -0.626953125, -0.2052001953, -0.7333984375, -0.4440917969, -1.0390625, -1.0341796875, -0.2038574219, 0.6723632812, 0.5288085938, -0.8002929688, 0.8305664062, -0.6030273438, -0.8740234375, 1.2177734375, 0.4096679688, 0.4343261719, 0.1372070312, -0.4931640625, -0.8842773438, 0.120300293, 0.6333007812, 1.306640625, -0.1695556641, 0.4716796875, -0.2607421875, 0.1156616211, 0.3088378906, 0.0393066406, 0.353515625, -0.4426269531, 0.1547851562, -1.1142578125, -0.2963867188, -0.3317871094, -0.1629638672, -0.6396484375, -0.2980957031, -0.912109375, -0.3486328125, -0.27734375, 0.1901855469, -0.56640625, -0.0141067505, 0.7368164062, 0.1028442383, 1.3037109375, -0.3957519531, 0.1012573242, 0.0418395996, -0.3325195312, -0.4221191406, 0.3737792969, -0.1829833984, -0.2202148438, 0.4682617188, -0.74609375, -0.0866699219, -0.1834716797, -0.3608398438, 0.0012378693, 0.1301269531, 0.41015625, -0.140625, -0.5336914062, -0.1585693359, -0.3950195312, -0.3583984375, -1.0654296875, 0.4125976562, 0.3569335938, -0.8129882812, -0.130859375, -0.2443847656, -0.677734375, -0.0037460327, 0.4372558594, -0.0837402344, -0.005821228, 1.923828125, 0.8862304688, 0.1180419922, -0.2274169922, 0.4035644531, 1.2080078125, 1.0068359375, 1.2802734375, -0.0174560547, 0.2976074219, 0.3308105469, 0.2064208984, -0.5625, 0.5727539062, 0.3059082031, -0.3374023438, 0.0999145508, -0.6030273438, -0.0316162109, -0.7553710938, -0.5419921875, 0.0664672852, -0.8940429688, 0.2563476562, 0.7250976562, -0.103515625, 0.8491210938, 0.146484375, -0.4357910156, -0.201171875, 0.4177246094, -0.634765625, -0.6938476562, -0.0198364258, 0.2629394531, -0.34375, -1.3994140625, -1.0458984375, -1.0703125, 0.9448242188, 0.2856445312, -1.109375, -0.0078430176, -0.4987792969, -0.0563049316, -0.2380371094, -0.7788085938, -0.0207214355, -0.5717773438, -0.0257263184, 0.736328125, -0.1872558594, -0.2279052734, -0.4357910156, 0.0631713867, 0.3828125, -0.3186035156, 0.8911132812, -0.1024780273, 0.3405761719, 0.5141601562, -0.0616149902, -1.0224609375, -0.4455566406, -0.1821289062, 0.37890625, 0.0300750732, 0.7612304688, 0.3857421875, -0.3022460938, -1.0322265625, 0.4812011719, 0.9125976562, -0.4521484375, -0.3271484375, -0.736328125, 0.6596679688, -0.4694824219, 1.0888671875, 0.0395507812, -0.544921875, 0.0101242065, -0.9555664062, 0.0126495361, 0.6040039062, -0.0849609375, 1.4560546875, -1.302734375, -0.5888671875, 0.52734375, -0.2780761719, -0.1368408203, 0.64453125, -0.6215820312, -0.5815429688, -1.212890625, -0.3032226562, -0.0334777832, 0.4157714844, 0.1798095703, -0.6137695312, 0.3410644531, -0.0287475586, -0.3032226562, 0.5053710938, -1.259765625, -0.52734375, 0.2668457031, 0.2432861328, 0.2841796875, 0.1336669922, -0.1798095703, -0.2091064453, -0.0341186523, -0.1207885742, -1.2900390625, -0.6362304688, 0.642578125, 0.8056640625, 0.0251617432, -0.4375, -1.0810546875, -0.3095703125, -0.4711914062, 0.3168945312, -0.5961914062, -0.3928222656, 0.7778320312, 0.7265625, 0.2797851562, -1.890625, 0.3681640625, -0.1292724609, 0.5830078125, 0.2119140625, 0.0615234375, -0.1085205078, -1.0361328125, 0.3427734375, 0.4372558594, -2.3203125, 0.3767089844, 0.865234375, 1.583984375, 0.3049316406, 0.4379882812, 0.2939453125, -0.6904296875, -0.1103515625, -0.64453125, 0.0841064453, 0.1201782227, 1.138671875, -1.099609375, -0.6020507812, 0.6396484375, -0.1613769531, -0.5639648438, 0.0267028809, 0.7724609375, 0.5024414062, 0.1132202148, -0.2332763672, -1.041015625, 0.4987792969, 1.021484375, -0.6010742188, 0.2939453125, -0.6411132812, 0.1497802734, -0.638671875, -0.2612304688, 0.1246948242, 0.455078125, -0.3317871094, 0.1866455078, 0.7846679688, -1.486328125, -0.7338867188, -0.814453125, 0.8447265625, 0.501953125, -0.0194244385, -0.1229858398, 0.0586853027, -1.111328125, 0.2440185547, 0.1756591797, 1.609375, 0.3806152344, 0.0759887695, 0.9692382812, -1.3515625, 0.0076065063, 0.248046875, 0.6083984375, 0.146484375, -0.41796875, 0.036315918, 0.2951660156, -0.0833740234, -12.6015625, 0.6713867188, -0.2166748047, 0.294921875, -0.2592773438, 0.2802734375, 0.1708984375, -1.177734375, -0.552734375, -0.8471679688, -0.755859375, 0.8774414062, -0.032989502, 0.4396972656, 0.521484375, -0.8344726562, -0.9145507812, -0.1569824219, -0.0277709961, -0.9794921875, 0.3325195312, 0.4165039062, -0.833984375, -0.166015625, 1.509765625, -0.3603515625, 0.0979614258, 0.2897949219, 0.1436767578, 0.630859375, 0.2673339844, 0.0885009766, -1.1591796875, 1.6416015625, -0.1940917969, 0.9428710938, 0.36328125, 0.0020503998, -0.4738769531, -0.6044921875, 0.0372009277, -0.2651367188, 0.1483154297, 0.5844726562, 0.7939453125, 0.1848144531, -0.1391601562, 0.412109375, 0.9194335938, -0.0084152222, 0.1904296875, 0.74609375, 0.5649414062, -0.7739257812, -0.4404296875, -0.4143066406, 0.7016601562, -1.123046875, -0.2093505859, 1.01953125, -0.3742675781, 0.798828125, -0.2292480469, -0.1162109375, 1.212890625, -0.2376708984, -0.1730957031, 0.572265625, 0.4868164062, -1.1708984375, -0.1882324219, -0.045501709, 0.3198242188, -0.4306640625, -0.1139526367, 0.9780273438, 0.0632324219, 0.2213134766, -0.63671875, 2.00390625, -0.619140625, -0.27734375 ]
The Udis (self-name Udi or Uti) are a native people of the Caucasus. Currently, they live in Azerbaijan, Russia, Georgia, Armenia, Kazakhstan, Ukraine and many other countries. The total number is about 10,000 people. They speak the Udi language. Some also speak Azerbaijani, Russian, Georgian and Armenian languages depending on where they reside. Their religion is Christianity. History The Udi are considered to be one of the 26 tribes of the Caucasian Albania of late antiquity. According to the classical authors, the Udi inhabited the area of the eastern Caucasus along the coast of the Caspian Sea, in a territory extending to the Kura River in the north. Today, most Udis belong to the Eastern Orthodox Church, while in Nij, they belong to the Gregorian church and used to conduct services in Armenian. Centuries of life in the Armenian, Iranian, and Turkish spheres influenced their culture, as is expressed in Udi folk traditions and the material culture. Since the 5th century, the Udi people are often mentioned in the Armenian sources. More extensive information is given in The History of Aluank by Movses Kagancatvasiy. The Udi were one of the predominating Caucasian Albanian tribes. Udi villages Until 1991, the main Udi villages were Vartashen and Nij in Azerbaijan, as well as the village of Zinobiani in Georgia. In the recent past, Udi people also lived in Mirzabeily, Soltan Nuha, Jourlu, Mihlikuvah, Vardanli (now Kərimli), Bajan, Kirzan, and Yenikend, in contemporary times they have mostly assimilated with the people of Azerbaijan.
[ -0.0359802246, -0.80859375, 0.2325439453, -0.0310058594, 1.080078125, -0.23828125, -0.8955078125, 0.2062988281, -0.2180175781, 0.1516113281, -0.1896972656, -0.7783203125, 0.1071777344, 0.2474365234, 0.2127685547, 0.9331054688, -0.3095703125, -0.3369140625, 0.1456298828, 0.4594726562, -0.0731811523, -0.4428710938, -0.2160644531, -0.75390625, -0.2712402344, -0.4428710938, 1.359375, -0.1137695312, -0.662109375, -0.3002929688, -0.9331054688, 0.7158203125, 0.87890625, 0.23046875, 0.6547851562, 0.3693847656, -0.0513305664, -0.1517333984, -0.6235351562, 0.0814819336, 0.1203613281, 0.0760498047, -0.9565429688, 0.4133300781, -0.5717773438, 0.0325317383, 0.3835449219, -0.0327148438, 0.3015136719, 1.271484375, -1.1201171875, -0.326171875, 0.1756591797, -0.4128417969, -0.1451416016, -0.1164550781, 0.7104492188, -0.3239746094, -0.4309082031, -0.716796875, -0.44921875, -0.2465820312, -1.1474609375, -0.0789794922, 0.4216308594, -0.599609375, 0.2619628906, 0.650390625, 0.3361816406, 1.056640625, 0.0026702881, -0.2211914062, -0.8642578125, 0.0716552734, 0.3254394531, -0.1024780273, 0.5439453125, 0.8994140625, -0.3383789062, 0.2082519531, -0.0451965332, -0.6025390625, -0.2553710938, -0.8852539062, -0.3747558594, 0.7421875, 0.0042266846, -0.1811523438, 0.8798828125, 0.5854492188, 0.296875, -1.2900390625, -0.9350585938, 0.2163085938, -0.9912109375, 2.392578125, -0.102355957, 0.3068847656, -0.4477539062, 0.3745117188, 0.2658691406, -0.2700195312, -0.6352539062, -0.2565917969, -1.083984375, -0.5209960938, -0.6928710938, -1.05078125, 0.1279296875, -0.6352539062, 0.2448730469, 0.2352294922, 0.5419921875, -0.2941894531, 0.0298461914, -0.3041992188, 0.2883300781, -0.2169189453, -0.7651367188, 0.517578125, 0.6665039062, 0.5493164062, 0.3234863281, -0.3395996094, 0.4020996094, 0.3005371094, -1.5830078125, 0.5502929688, 1.7724609375, 0.1444091797, 0.654296875, -0.4458007812, 0.3620605469, 0.018661499, 0.4763183594, -0.1483154297, 0.1829833984, 0.1323242188, -0.1805419922, -0.1794433594, -0.8798828125, 0.111328125, 0.1843261719, 0.1333007812, 0.6611328125, -0.0581665039, 0.7426757812, 0.9731445312, -0.6650390625, -0.38671875, -0.3215332031, -0.138671875, -0.0802001953, -0.2297363281, -0.775390625, 0.4689941406, -0.6977539062, -1.0927734375, 0.603515625, -0.6943359375, -0.5883789062, -0.4509277344, -1.1357421875, 1.5361328125, -0.8012695312, 0.60546875, -1.0029296875, 0.861328125, 0.546875, -0.4780273438, 0.7021484375, -0.006149292, 0.0249481201, 1.091796875, 0.9672851562, 0.2377929688, 0.8994140625, -0.3591308594, 1.40625, -0.4128417969, -0.0132522583, -0.5654296875, 0.6015625, 0.4479980469, 0.130859375, -0.1824951172, -0.2092285156, -0.2062988281, -0.9775390625, -0.3791503906, 0.3566894531, -0.291015625, -0.791015625, 0.1877441406, 0.4167480469, -1.103515625, -0.2900390625, 0.1484375, 1.2373046875, 0.9501953125, -0.1002197266, 0.3083496094, -0.501953125, -0.1169433594, 0.4299316406, -0.6328125, -0.1174926758, 0.8715820312, -0.927734375, 0.4873046875, -0.4855957031, -0.6440429688, -0.4626464844, 1.001953125, 0.1973876953, -0.1593017578, 0.0088043213, -0.5004882812, -0.2338867188, 0.3442382812, 0.1126098633, 0.2998046875, 0.0387573242, -1.087890625, -0.1994628906, -0.4020996094, -0.3698730469, 0.4118652344, -1.0517578125, 0.2440185547, 0.365234375, -0.3432617188, -0.2607421875, -0.1146850586, 0.3059082031, -0.4255371094, 0.1358642578, -0.4689941406, 0.4389648438, -0.3588867188, -1.279296875, 0.2039794922, 0.1905517578, -0.4233398438, -0.14453125, -0.2042236328, 1.708984375, 0.8129882812, 0.6796875, 0.6713867188, 0.458984375, 0.8134765625, -1.1025390625, 0.0454711914, -0.3515625, -0.4890136719, 0.2039794922, -0.1502685547, 1.0029296875, -0.3862304688, -0.0566711426, 0.3598632812, 1.7158203125, -0.5122070312, -0.4128417969, 0.1392822266, 0.1833496094, -1.1455078125, 0.0135498047, 0.1287841797, -0.6723632812, -0.4211425781, 0.7856445312, -0.3542480469, 0.2817382812, 1.248046875, -1.01171875, 0.05859375, 0.2398681641, 0.4794921875, -0.662109375, 0.4138183594, -1.009765625, -0.3745117188, 0.0491638184, 0.3586425781, -0.7661132812, 0.6328125, 0.2778320312, -0.4304199219, 0.4299316406, 0.0208282471, -0.1176757812, 0.2124023438, -0.2653808594, 0.2373046875, 0.6088867188, 0.857421875, -0.1041870117, 0.0308074951, 0.7314453125, 1.6171875, -0.1264648438, 0.0225830078, 0.271484375, 0.0919189453, -1.212890625, 0.8720703125, 0.7373046875, -0.0460510254, 0.64453125, 0.7485351562, -0.1799316406, -0.9692382812, -0.3940429688, -0.3176269531, -0.5830078125, -0.7001953125, 0.1129760742, -0.32421875, 0.5776367188, -0.8784179688, -0.6137695312, -0.5473632812, 0.2142333984, 0.486328125, -0.755859375, -0.4143066406, 1.982421875, 0.3005371094, 0.2457275391, 1.00390625, 1.0380859375, 0.689453125, 0.8359375, -0.4426269531, -0.3522949219, 0.3776855469, -0.8740234375, -0.1546630859, 0.4907226562, -0.1864013672, -0.701171875, 0.830078125, 0.5581054688, 0.3005371094, -1.4453125, -0.361328125, 0.078918457, -0.2463378906, -0.0678710938, 0.0738525391, -0.9365234375, -0.1473388672, 0.9345703125, 0.45703125, -0.1677246094, -0.1804199219, -1.0859375, -0.0307006836, 0.5639648438, 0.1107177734, -2.564453125, -0.4187011719, -1.376953125, -0.6801757812, 1.005859375, 0.3366699219, -0.6733398438, -0.1022949219, 0.2329101562, -0.2888183594, -0.3442382812, 0.91796875, 0.2612304688, -0.0598144531, -0.8686523438, 1.4951171875, -0.744140625, 0.1687011719, -0.2047119141, -0.0480957031, 0.1623535156, 0.0223846436, 0.76171875, -0.4572753906, -0.5268554688, -0.3891601562, 0.2490234375, 0.5795898438, -0.53515625, 0.4653320312, -0.6806640625, 0.1871337891, -1.2080078125, -0.6572265625, 1.33984375, -0.6513671875, -0.0067329407, -0.2705078125, -0.970703125, -0.6098632812, -0.7641601562, 0.3569335938, 0.3754882812, -0.55078125, 0.8393554688, -0.6157226562, 0.0401306152, 0.2641601562, 0.2384033203, -0.8745117188, 0.0815429688, 0.2768554688, -0.50390625, 0.1477050781, 0.267578125, -0.4528808594, 0.0414733887, -1.296875, -0.28125, 1.134765625, 0.541015625, 0.1818847656, -0.1436767578, 0.3491210938, -0.3679199219, -0.953125, -0.2446289062, 0.4572753906, 0.1774902344, -0.3969726562, 0.5102539062, 0.779296875, -0.0894775391, 0.8833007812, -0.4213867188, -1.0107421875, -0.0089111328, -0.275390625, 0.1961669922, 0.759765625, -0.0655517578, 0.2493896484, 0.2946777344, -0.8032226562, 0.2257080078, -0.38671875, 0.4782714844, -0.2568359375, 0.1340332031, -0.6079101562, 0.0142669678, 1.0126953125, -0.3618164062, 0.2000732422, -0.0000980496, -0.7036132812, 0.83984375, -0.0774536133, 0.384765625, 0.2707519531, -0.1624755859, -1.208984375, -0.3969726562, -0.1091308594, -1.0322265625, -0.4343261719, -0.4296875, -0.6337890625, -1.1875, 0.572265625, 0.515625, -0.3168945312, 0.2366943359, -0.0682373047, -0.2563476562, 1.4375, -0.59375, -0.0819702148, 0.0076332092, 0.124206543, -0.203125, 0.1038818359, 0.5903320312, 0.2142333984, -0.142578125, 0.3073730469, 1.0576171875, 0.2805175781, -0.2337646484, 0.1350097656, -0.2749023438, -1.33203125, 0.2546386719, -0.0281066895, -0.1436767578, 0.7890625, 0.5859375, -0.736328125, 0.30078125, 0.8227539062, -0.0722045898, 0.1760253906, -0.6806640625, 0.2687988281, -0.52734375, -0.19140625, 1.4208984375, -0.1224365234, 0.287109375, 0.5380859375, 0.2399902344, 0.9663085938, -0.2819824219, -0.4489746094, -0.5512695312, 0.2573242188, 0.55859375, 0.0420227051, -0.4704589844, -0.016204834, 0.744140625, 1.33203125, 0.5034179688, 0.4377441406, 0.6025390625, -0.8466796875, 0.1590576172, 1.4072265625, 0.8764648438, 0.1123046875, 0.1820068359, 0.3068847656, 0.1480712891, -0.0508728027, 0.1350097656, 0.1514892578, 0.0320739746, 0.1247558594, -0.8134765625, -0.5859375, 0.0267181396, 0.1959228516, 0.7216796875, 0.8291015625, -0.8666992188, 0.1134033203, -0.443359375, 0.0316467285, 0.5620117188, 0.5234375, -1.359375, 1.078125, -0.0596008301, -0.693359375, 1.4794921875, -0.5639648438, 0.0971679688, -0.4846191406, 0.2893066406, -0.6025390625, -0.48828125, 0.0225830078, -0.1716308594, -0.2243652344, 0.0867919922, -0.787109375, -0.0135192871, -0.0012693405, -0.65625, -0.1617431641, 0.4223632812, 0.4536132812, -0.4880371094, 0.4506835938, 0.0448303223, -0.8061523438, 1.314453125, 0.2958984375, 0.7856445312, 0.7270507812, -0.537109375, -0.8500976562, -0.919921875, -0.6215820312, 0.5717773438, -0.6206054688, -0.1534423828, 0.3842773438, -0.5, -0.2763671875, -0.2512207031, 0.1298828125, 0.806640625, -0.7641601562, -0.2238769531, -0.0954589844, -0.4741210938, -0.3630371094, -0.0152664185, 0.4934082031, 0.1324462891, 0.1145629883, 1.962890625, -0.2768554688, 0.6064453125, 0.2445068359, -1.0576171875, -0.3784179688, 0.4343261719, 0.1080322266, -0.1006469727, 0.0102005005, 0.3513183594, 0.3049316406, 0.1629638672, -0.4089355469, 0.3330078125, -0.4455566406, -0.9770507812, -0.4138183594, 0.65625, -0.2227783203, 0.2878417969, 0.0340576172, -0.0502624512, 0.0440673828, 0.1600341797, -1.2763671875, 0.4714355469, 0.3549804688, -0.2180175781, -0.8125, 0.7255859375, -0.3464355469, -0.4343261719, -0.3728027344, 0.314453125, 0.092956543, 1.3642578125, 0.2172851562, 0.3425292969, 0.2697753906, -1.32421875, -0.2819824219, 0.6123046875, -0.3986816406, -0.7861328125, -0.3891601562, -0.2502441406, -0.2229003906, 0.5727539062, 0.4104003906, -0.63671875, 0.4189453125, -0.1185302734, -0.6694335938, -1.1806640625, -0.106628418, 0.0982055664, 1.107421875, -0.4870605469, -0.0754394531, -1.271484375, -1.11328125, 0.3078613281, -0.7783203125, 0.3132324219, 0.890625, 0.0667724609, -0.2445068359, -0.0798339844, 0.0886230469, -0.6157226562, -1.0166015625, 0.5053710938, 1.0224609375, 0.6674804688, 0.6538085938, -0.2142333984, 0.3273925781, 0.3210449219, -0.5297851562, -0.3173828125, 0.7216796875, -1.056640625, 0.47265625, -1.46484375, 0.2846679688, -0.4392089844, 0.0812988281, -0.748046875, 0.0435180664, -0.8833007812, -0.4086914062, -0.5600585938, 0.3542480469, -0.8540039062, 0.0645751953, -0.5620117188, -0.0585021973, -0.1541748047, 0.546875, -1.39453125, 0.3708496094, 0.0628051758, -0.7548828125, -0.208984375, 1.2724609375, 0.056427002, 0.2744140625, 0.7524414062, 1.134765625, 1.44921875, -0.3486328125, 0.40625, -0.8564453125, -0.2333984375, -0.265625, -0.2004394531, 0.0292816162, -0.4133300781, -0.5849609375, 0.1907958984, -0.3225097656, -0.6674804688, -0.2724609375, 0.3303222656, 0.2719726562, 0.9565429688, -0.6713867188, -0.5043945312, -0.283203125, 0.669921875, -0.3117675781, -0.4047851562, -0.2252197266, 0.5620117188, 0.1613769531, 0.0426330566, -0.5903320312, -0.3654785156, -0.6318359375, -1.1162109375, 0.23828125, 0.9711914062, -0.0356750488, 0.1505126953, -0.548828125, -0.0420837402, 0.7055664062, -0.1505126953, 0.0820922852, 0.267578125, -0.5849609375, -1.103515625, -0.1716308594, 0.4182128906, -0.1199951172, 0.0249176025, 0.0722045898, 0.049041748, -0.49609375, -0.2739257812, 0.3366699219, 0.3295898438, 0.0174102783, -0.994140625, 0.1494140625, 0.9892578125, 0.4067382812, 0.6782226562, 1.46484375, -0.7919921875, 0.6948242188, -0.5498046875, -0.5517578125, 1.18359375, -0.3923339844, 0.8793945312, -0.5444335938, -1.2353515625, -1.3017578125, 0.3110351562, -0.1072998047, 0.061126709, 0.9067382812, -1.0146484375, -0.7368164062, -0.6665039062, -0.6201171875, 0.6918945312, 0.4118652344, 0.1578369141, -0.4367675781, 0.1022949219, -0.4538574219, 0.1095581055, 0.4650878906, 0.3740234375, 0.1133422852, 0.9780273438, -0.681640625, 0.908203125, 0.8227539062, 0.0275421143, -0.2130126953, -0.66796875, -0.1876220703, -0.3562011719, 0.1260986328, -0.6225585938, -0.4291992188, -0.2644042969, -1.00390625, -0.8759765625, 1.142578125, -0.5673828125, -0.5556640625, 0.43359375, -0.1760253906, 0.6259765625, -0.1448974609, 0.5634765625, 0.1271972656, 1.30859375, 0.1900634766, -0.3334960938, -0.0249481201, -0.7729492188, 1.0966796875, -0.6166992188, 0.6596679688, 0.3054199219, -0.2316894531, 0.5795898438, 0.6557617188, -0.5727539062, -0.4890136719, -0.4211425781, -0.7475585938, -0.3837890625, 0.6494140625, 0.2622070312, 0.265625, 0.1931152344, 0.2963867188, -0.6274414062, -0.0486450195, -0.0011205673, 0.1668701172, 0.0513000488, 0.7260742188, 0.5541992188, -0.4255371094, -0.6645507812, -0.8188476562, 0.0601501465, 0.0397033691, -0.1479492188, 0.2548828125, -0.7939453125, -0.3605957031, 0.1350097656, -0.6518554688, -0.3972167969, 1.0703125, 0.2897949219, 0.236328125, -0.4580078125, -0.5107421875, -0.1530761719, 0.2354736328, -0.4001464844, -0.1083374023, 0.2469482422, 0.4782714844, -0.8266601562, 0.1575927734, 1.2236328125, -0.9213867188, 0.1018066406, 0.4658203125, 0.5454101562, -0.32421875, 0.1376953125, 0.4868164062, -0.2937011719, -0.30859375, 0.83984375, -0.7065429688, -0.2546386719, -0.090637207, -0.8256835938, -0.3503417969, -0.3645019531, 0.6372070312, -0.2814941406, 0.529296875, 0.4294433594, 0.1689453125, -0.1242675781, -0.3518066406, -0.1550292969, -1.09375, -0.0889892578, -0.0587768555, -0.4086914062, -0.5556640625, -0.3022460938, 0.2993164062, -0.2297363281, 0.2639160156, -0.7622070312, -0.0369873047, 0.4992675781, -0.7587890625, 0.2705078125, 0.3142089844, -1.5595703125, -0.3134765625, -0.0204162598, 0.7836914062, 0.3754882812, 0.4519042969, -0.3291015625, -1.490234375, -0.9702148438, -0.333984375, 0.7573242188, 0.9448242188, -0.5224609375, -0.1903076172, 0.0802001953, -0.8251953125, 0.2298583984, 0.263671875, -0.224609375, -0.4501953125, -0.5727539062, -0.4455566406, -13.59375, 0.4970703125, 0.837890625, 0.638671875, -0.5615234375, 0.4704589844, 1.2529296875, -1.30859375, -0.3532714844, -0.2337646484, 0.3903808594, 0.6557617188, -0.1878662109, -0.0395202637, 0.8999023438, -1.8994140625, -0.8510742188, -1.1611328125, -0.7651367188, -0.0906982422, 0.6538085938, 0.1352539062, -0.6303710938, 0.3483886719, -0.1674804688, -0.6499023438, 0.3347167969, 0.3977050781, -1.1982421875, -0.029876709, -0.9838867188, -0.2712402344, -0.2937011719, 0.1197509766, 0.087097168, 0.0854492188, -0.2120361328, -1.1103515625, 0.4838867188, -0.2592773438, 1.07421875, 0.0306243896, 0.7563476562, 0.1508789062, -0.1704101562, 0.5356445312, 0.0798950195, -0.2087402344, 0.6142578125, 0.2125244141, -0.1002807617, 0.0160827637, 0.5532226562, -0.0414123535, 0.4650878906, -0.1644287109, -0.7153320312, -0.3737792969, 0.4123535156, -0.0869750977, 0.7124023438, 1.7802734375, 0.4189453125, 0.2641601562, -0.599609375, -0.3376464844, -0.744140625, -0.5693359375, 0.3623046875, 0.1297607422, -0.806640625, -1.7802734375, -0.3083496094, -1.7353515625, 0.9409179688, -0.205078125, 0.9399414062, -0.7216796875, 0.4663085938, -0.8344726562, 0.7890625, -0.0633544922 ]
Vartashen was mainly a Udi village, where the Vartashen dialect of the Udi language was spoken by about 3000 people in the 1980s. The Udis of Vartashen belonged to the Armenian Apostolic Church and had Armenian surnames. During the Nagorno-Karabakh conflict, the Udis as well as the Armenians were expelled to Armenia. Some 50 Udi people remained among some 7000 ethnic Azeris in the town, which was renamed to Oghuz. Today the only places of concentrated Udi settlement are the village of Nij in Azerbaijan and the village of Zinobiani in Georgia, which was founded by Udi refugees from Vartashen in the 1920s. A significant group of Udi live in the Georgian village of Zinobiani, founded by Udi from Vartashen in the 1920s. Small groups reside in Russia in the Rostov region (Shahty, Taganrog, Rostov-na-Donu, Azov, Aleksandrovka); in the Krasnodar territory (Krasnodar, areas of Dinskoy, Leningrad, Kushchevsky); in the Stavropol Territory (Minvody, Pyatigorsk); in the Volgograd region (Volgograd, Dubovy Ovrag); and also in Sverdlovsk, Ivanovo, Kaluga areas, Moscow, Saint Petersburg, Astrakhan; in Georgia in the outskirts of Tbilisi, Poti, Rustavi, in Armenia mainly in the Lori Province, and Aktau in Kazakhstan. Some also live in Ukraine's (Kharkiv oblast). Language The Udi language is a Northeast Caucasian language of the Lezgic branch. The two primary dialects are Nij (Nidzh) and Vartashen. The people today also speak Azerbaijani, Russian, and Georgian. The Udi are commonly bilingual, and less frequently trilingual, depending on residence and work.
[ 0.3095703125, -0.1802978516, -0.0183258057, -0.6215820312, 0.8203125, -0.3125, -0.87890625, 0.5395507812, -0.4675292969, -0.3012695312, 0.2111816406, -0.3818359375, 0.1048583984, 0.7055664062, 0.708984375, 1.01953125, 0.0526428223, -0.7856445312, 0.390625, 0.7294921875, 0.3500976562, 0.1119995117, -0.1727294922, -1.6279296875, -0.4343261719, -0.5190429688, 0.9799804688, 0.2834472656, -1.169921875, -0.2438964844, -1.271484375, 0.3059082031, 1.4814453125, 0.453125, 0.5224609375, 0.1397705078, -0.5981445312, -0.7744140625, -0.4702148438, -0.1563720703, 0.2447509766, 0.122253418, -0.4291992188, 0.4428710938, -0.4213867188, -0.0108108521, 0.094543457, -0.1127929688, -0.298828125, 1.650390625, -0.5444335938, 0.1854248047, -0.4885253906, -0.5185546875, -0.5454101562, -0.1873779297, 0.7490234375, -0.2868652344, -0.5610351562, -0.7475585938, -0.5688476562, 0.1748046875, -1.4052734375, -0.0527038574, 0.3898925781, -0.9145507812, -0.0224456787, 0.556640625, 0.8427734375, 1.2509765625, -0.7998046875, -0.2261962891, -1.001953125, 0.2209472656, 0.66015625, -0.0577087402, 0.4045410156, 1.0537109375, 0.4614257812, -0.6020507812, -0.84375, -0.4262695312, -0.3427734375, -1.1962890625, 0.1517333984, -0.0786743164, -0.1018676758, -1.0224609375, 0.8588867188, 0.4877929688, 0.4196777344, -1.3955078125, -0.7661132812, 0.435546875, -0.7368164062, 1.130859375, -0.3317871094, -0.3186035156, 0.2185058594, 0.0569458008, 0.0583190918, -0.6489257812, -0.1330566406, 0.2430419922, -0.6215820312, 0.1141967773, -0.7041015625, -0.6010742188, 0.4775390625, -0.4577636719, -0.0529174805, -0.2147216797, 1.0283203125, 0.3708496094, 0.0333251953, -0.3186035156, -0.0903320312, -0.3745117188, -0.7578125, 0.6987304688, 0.0942993164, 0.4443359375, 0.3830566406, -0.3771972656, 0.5048828125, 0.6240234375, -1.5146484375, 0.7583007812, 1.044921875, -0.1434326172, 0.9965820312, -0.2731933594, 0.2021484375, -0.2595214844, 0.3217773438, -1.640625, -0.3913574219, 0.7426757812, 0.3278808594, 0.484375, -0.4174804688, 0.6708984375, 0.62890625, -0.3461914062, 0.869140625, -0.2121582031, 0.8232421875, 0.8940429688, -0.2727050781, -0.2573242188, 0.2297363281, -0.0294494629, -0.3386230469, -0.65234375, -0.5185546875, 0.1787109375, -0.8344726562, -0.5595703125, 0.7280273438, 0.5322265625, -0.1700439453, -0.947265625, -1.1259765625, 2.15234375, -0.8071289062, 0.5786132812, -0.3977050781, 0.9155273438, 0.5727539062, -0.0684814453, 1.0068359375, -0.0415649414, 0.1907958984, 0.888671875, 0.4055175781, 0.0171508789, 1.2998046875, -0.7817382812, 0.828125, -0.9995117188, -0.0807495117, -0.53515625, 0.1507568359, 0.7001953125, 0.1148681641, -0.052154541, 0.0556640625, 0.0972290039, -0.3410644531, -0.8266601562, 0.2026367188, -0.1915283203, -1.041015625, 0.1976318359, 0.6186523438, -0.8481445312, -0.3854980469, 0.0236053467, 1.78125, 0.6650390625, 0.7158203125, 0.6225585938, 0.3337402344, -0.2912597656, 0.5405273438, -0.4177246094, 0.0907592773, 1.99609375, -0.7758789062, 0.0050926208, -0.2443847656, -1.0390625, -1.1826171875, 0.70703125, 0.609375, -0.5043945312, -0.2883300781, -0.7758789062, 0.0729980469, -0.3186035156, 0.3198242188, 0.09765625, -0.0653686523, -0.7758789062, -0.6245117188, -0.5581054688, -0.7485351562, 0.4677734375, -1.349609375, 0.3430175781, 0.6103515625, 0.4311523438, -0.1153564453, -0.1380615234, 0.4899902344, 0.1181030273, -0.0360412598, -0.4560546875, -0.2259521484, -0.035369873, -1.3291015625, 0.0468444824, 0.1950683594, 0.1317138672, 0.0686645508, 0.2556152344, 1.3720703125, 1.42578125, -0.007774353, 0.5239257812, 0.8310546875, 0.1099243164, -1.3857421875, -0.5590820312, -0.0889282227, -0.1080322266, 0.7280273438, -0.2413330078, 0.7143554688, -0.4790039062, -0.3395996094, 0.8505859375, 1.9052734375, -0.1862792969, -0.7758789062, 0.4848632812, 0.0866699219, -0.556640625, 0.3637695312, -0.0317993164, -0.390625, 0.2946777344, 0.2487792969, -0.9912109375, -0.2888183594, 1.205078125, -0.5668945312, 0.8383789062, -0.2905273438, 0.6025390625, -0.6352539062, 0.5380859375, -0.88671875, -0.1954345703, -0.3889160156, 0.2895507812, -0.9970703125, 0.7685546875, 0.4990234375, -0.0487976074, 0.1398925781, 0.2517089844, 0.0283050537, 0.3623046875, -0.7744140625, -0.3466796875, 0.2922363281, 0.4033203125, 0.8642578125, -0.1759033203, 0.470703125, 0.4143066406, 0.0318908691, -0.6997070312, 0.5498046875, 0.0109786987, -1.2216796875, 0.4240722656, 0.916015625, 0.2330322266, 1.1708984375, 0.5102539062, -0.2683105469, -0.8701171875, 0.2641601562, 0.0094451904, -0.26171875, -0.4592285156, 0.1749267578, -0.0926513672, 0.6474609375, -0.7348632812, -0.069519043, -0.4328613281, 0.3393554688, 0.2469482422, -0.33203125, -0.6684570312, 1.3525390625, 0.7412109375, 0.4440917969, 1.2421875, 0.8715820312, 0.6884765625, 0.4294433594, -0.0631713867, -0.1469726562, 0.3059082031, -0.884765625, 0.0171813965, 0.4716796875, -0.5366210938, -0.6357421875, 0.7387695312, 0.1385498047, 0.6538085938, -1.23046875, -0.935546875, -0.755859375, -0.1864013672, -0.494140625, 0.1190185547, -0.6801757812, -0.2941894531, 1.1689453125, 0.8657226562, -0.4345703125, 0.1207275391, -1.12109375, -0.0060424805, 0.3466796875, -0.0272521973, -2.470703125, -0.7705078125, -1.44921875, -0.0415344238, 0.9702148438, -0.0894165039, 0.27734375, 0.1584472656, 0.623046875, -0.1374511719, -0.5151367188, 1.107421875, 1.2890625, -0.0760498047, -1.2001953125, 1.6845703125, -1.4072265625, -0.0346679688, -0.1140136719, -0.1544189453, 0.5014648438, -0.1687011719, 0.833984375, -0.2137451172, -0.0960693359, -0.5629882812, 0.0897216797, 0.7016601562, -0.7373046875, 0.6606445312, -0.537109375, 0.51171875, -1.2958984375, -0.8403320312, 1.6318359375, -0.4111328125, -0.7280273438, -0.4401855469, -0.2131347656, 0.263671875, -0.724609375, -0.2214355469, 0.7534179688, -0.607421875, 0.7919921875, -0.3125, 0.2604980469, -0.0299987793, 0.0809936523, -0.7153320312, -0.0493469238, -0.55078125, -0.0935058594, 0.3464355469, -0.4819335938, -0.52734375, 0.7006835938, -0.7924804688, 0.1810302734, 1.3759765625, 0.53515625, -0.2553710938, 0.2020263672, 0.1541748047, -0.2895507812, -0.1795654297, 0.2198486328, 0.912109375, 0.3256835938, -0.6879882812, -0.4282226562, 1.029296875, -0.017074585, 0.4797363281, 0.3720703125, -0.537109375, -0.0240478516, -0.1394042969, 0.4658203125, 0.6611328125, 0.5385742188, 0.1771240234, 0.2678222656, -0.6630859375, -0.0728149414, -0.7373046875, 0.3247070312, -0.94140625, 0.1782226562, -0.6826171875, 0.2568359375, 0.6606445312, -0.3596191406, 0.0726928711, 0.140625, 0.2257080078, 0.537109375, -0.3781738281, 0.6240234375, 0.2595214844, 0.0094070435, -2.0234375, -0.4523925781, -0.2495117188, -0.2318115234, -0.7041015625, -0.462890625, 0.1033935547, -1.298828125, 0.828125, 0.2524414062, 0.0528869629, 0.8950195312, -0.6938476562, 0.2132568359, 1.5673828125, -0.1486816406, -0.1484375, -0.4797363281, -0.0200805664, -0.1037597656, 0.78515625, 0.6630859375, 0.2707519531, -0.1511230469, 0.15625, 1.515625, 0.1605224609, 0.0822753906, 0.5654296875, -0.6040039062, -1.328125, -0.3024902344, -0.4465332031, -0.2541503906, 0.1045532227, 0.2883300781, -0.5854492188, -0.0477294922, 1.29296875, -0.1358642578, -0.3911132812, -1.1328125, 0.3608398438, -0.4157714844, 0.4577636719, 1.4306640625, 0.3894042969, 0.4382324219, 0.4135742188, -0.9819335938, 0.8276367188, -0.4411621094, -0.2222900391, -0.41015625, 0.0051002502, 0.4934082031, 0.42578125, 0.0816650391, -0.2758789062, 0.576171875, 1.0615234375, -0.5590820312, 0.5678710938, 0.0538024902, -1.1533203125, 0.9321289062, 0.814453125, 0.7788085938, -0.2814941406, -0.049621582, 0.2966308594, 0.0900268555, -0.423828125, -0.2072753906, 0.416015625, 0.3244628906, 0.2316894531, 0.0202178955, -0.8911132812, 0.6411132812, 0.1168212891, 0.765625, 0.2707519531, -1.0615234375, 0.0412597656, -1.2783203125, 0.2268066406, 0.2497558594, 0.7978515625, -0.9584960938, 0.3481445312, -0.0737304688, -0.5048828125, -0.0281982422, -0.8774414062, -0.1538085938, -0.1884765625, 0.5483398438, 0.0068855286, -0.4719238281, -0.375, 0.0560913086, -0.5854492188, -0.2436523438, -0.5131835938, -0.0758666992, 0.6118164062, -0.2797851562, 0.1223144531, 0.0234832764, 0.4328613281, -0.2408447266, 0.1281738281, -0.2954101562, -0.4416503906, 1.0439453125, 0.6157226562, -0.2329101562, 0.7719726562, -0.3393554688, -0.7265625, -0.4279785156, 0.0875854492, 0.8759765625, -1.3505859375, -0.2746582031, -0.1045532227, -0.486328125, 0.7983398438, -0.615234375, 0.2263183594, 0.4360351562, -0.4946289062, -0.7319335938, -0.4614257812, -0.728515625, -0.7055664062, 0.5014648438, -0.0546875, -0.6088867188, -0.1939697266, 1.33203125, -0.6103515625, 0.7270507812, 0.1694335938, -1.048828125, -0.2766113281, 0.1280517578, -0.1405029297, -0.0776977539, -0.802734375, 0.4851074219, 0.0520324707, 0.6640625, -0.4443359375, -0.0487976074, -0.0836181641, -0.923828125, -0.1298828125, -0.2198486328, -0.2039794922, 0.0901489258, 0.1524658203, -0.2006835938, 0.1785888672, 0.3923339844, -1.4755859375, -0.0997314453, -0.0290222168, -0.0748901367, -0.2312011719, 1.263671875, -0.3684082031, 0.1223754883, -0.5625, 0.2274169922, 0.5893554688, 1.521484375, -0.1441650391, 0.1122436523, -0.2495117188, -0.7143554688, 0.0395202637, 0.744140625, -0.0444946289, -0.8046875, -0.001496315, -0.3024902344, 0.0703125, -0.2976074219, 0.1130371094, -0.1591796875, 0.5166015625, 0.118347168, -0.7485351562, -1.1181640625, -0.93359375, -0.0870361328, 1.4599609375, -0.650390625, -0.6953125, -0.1502685547, -0.8920898438, -0.1701660156, -0.3891601562, 0.2039794922, 0.7788085938, 1.4833984375, 0.4545898438, 0.3020019531, 0.5986328125, -0.84375, -1.26171875, 0.1798095703, 0.9833984375, 1.1298828125, 1.0751953125, -0.30859375, 0.1356201172, 0.3630371094, -0.2592773438, -0.1362304688, 0.7104492188, -1.126953125, 0.4304199219, -1.2822265625, 0.47265625, 0.138671875, -0.4304199219, -1.400390625, -0.4204101562, -0.7690429688, -0.1879882812, 0.2296142578, 0.1975097656, -0.7529296875, 0.1491699219, -0.6713867188, 0.3837890625, -0.1705322266, 0.4311523438, -1.8837890625, 0.1988525391, 0.1280517578, -1.0859375, 0.0939941406, 2.240234375, -0.3337402344, 0.6000976562, 0.5029296875, 0.931640625, 0.3649902344, -0.7661132812, 1.5927734375, -0.970703125, 0.0457458496, -0.7719726562, -0.423828125, 0.4958496094, -0.20703125, -0.1898193359, 0.2387695312, -0.3012695312, 0.2941894531, 0.1584472656, 0.515625, 0.4291992188, 1.16015625, -0.3571777344, -0.5703125, 0.0183410645, 0.1995849609, -0.9384765625, -0.2065429688, -0.5810546875, 0.1940917969, 0.2069091797, 0.0369873047, -0.2280273438, -0.580078125, 0.1361083984, -1.4970703125, 0.3703613281, 0.7768554688, -0.0739746094, 0.009979248, -0.8823242188, -0.1333007812, -0.1497802734, -0.3269042969, -0.240234375, 0.0635375977, -0.55078125, -0.5107421875, -0.0451049805, 0.2233886719, -0.0540466309, -0.158203125, 0.0125274658, 0.3869628906, 0.0223846436, 0.2663574219, 0.7602539062, -0.0085067749, 0.2403564453, -1.0947265625, 0.3540039062, 0.50390625, 0.529296875, 0.4365234375, 1.0966796875, -0.4379882812, 0.5659179688, -0.7524414062, -0.703125, 0.7768554688, -0.0138931274, 0.7724609375, 0.0338134766, -0.6557617188, -0.4367675781, 0.2135009766, -0.0055961609, -0.0559997559, 1.0458984375, -0.3608398438, -0.6381835938, 0.1312255859, -0.8486328125, 0.1265869141, -0.1107177734, 0.1387939453, -0.2403564453, -0.0465087891, -0.0369873047, -0.0478820801, 0.6948242188, -0.3884277344, 0.2233886719, 0.701171875, -0.9125976562, 0.1284179688, 0.5903320312, -0.6372070312, 0.1298828125, -0.6108398438, -0.8256835938, 0.4038085938, -0.1472167969, -0.4721679688, -0.3093261719, -0.4448242188, -0.458984375, -0.5366210938, 0.2770996094, -1.171875, -0.4067382812, 0.0494995117, -0.736328125, -0.1264648438, 0.2102050781, 0.576171875, -0.7045898438, 1.0322265625, 0.189453125, -0.34375, -0.0156707764, -1.0908203125, 0.8344726562, -0.884765625, 0.4294433594, 0.3334960938, -0.3559570312, 0.3786621094, 0.5190429688, -0.6020507812, -0.7778320312, -0.5478515625, -0.7104492188, -0.3449707031, 0.4282226562, -0.0216522217, 0.2768554688, 0.4514160156, 0.2700195312, -0.0944213867, -0.552734375, 0.0610656738, 0.5903320312, -0.384765625, 0.38671875, 1.4365234375, 0.2854003906, -0.9975585938, -0.8735351562, -0.4958496094, -0.1740722656, -0.1096191406, 0.3029785156, -0.9287109375, -0.4379882812, -0.2878417969, -0.923828125, -0.564453125, 0.7592773438, -0.5698242188, 0.1053466797, -0.5107421875, -0.3134765625, -0.779296875, 0.5024414062, -0.2468261719, -0.5048828125, 0.1524658203, 1.21875, -0.0775146484, -0.759765625, 0.302734375, -0.9619140625, 0.2423095703, 0.0602111816, 0.755859375, 0.4494628906, 0.1342773438, 0.88671875, -0.5654296875, -0.740234375, 0.3032226562, -0.4819335938, -0.4597167969, 0.5263671875, -0.3002929688, -0.2856445312, 0.0416564941, 0.3078613281, -0.3178710938, -0.2915039062, 0.833984375, 0.3898925781, -0.6328125, -0.8305664062, -0.1478271484, -0.908203125, 0.4367675781, -0.5615234375, -0.6958007812, -0.0315246582, -0.4145507812, -0.1358642578, -0.054473877, 0.1298828125, -0.0552978516, 0.6474609375, 0.7490234375, -0.8891601562, 0.1065673828, -0.3740234375, -0.7329101562, -0.982421875, 0.3327636719, 0.6513671875, 0.3159179688, 0.2807617188, -0.4956054688, -1.205078125, 0.2205810547, -0.3642578125, 1.2412109375, 1.1513671875, -0.0748291016, 0.2861328125, 0.3579101562, -0.7182617188, 0.5288085938, -0.1351318359, -0.030090332, -0.1630859375, -0.7612304688, -0.3247070312, -12.46875, -0.2058105469, 0.5571289062, 0.5795898438, -1.7109375, 0.6767578125, 1.5966796875, -1.9873046875, -0.0814208984, -0.1279296875, 0.0470581055, 0.7060546875, -0.6293945312, -0.3283691406, 0.1683349609, -1.72265625, -1.052734375, -1.5068359375, -1.0498046875, -0.67578125, 0.1143798828, 0.9375, -0.2568359375, 0.3767089844, 0.9760742188, -0.5537109375, 0.5278320312, 0.4584960938, -1.1943359375, 0.0853881836, -0.9252929688, -0.9174804688, -0.2427978516, 0.2956542969, -0.0483093262, 0.3452148438, -0.3134765625, -0.88671875, 0.7998046875, -0.5678710938, 0.9321289062, -0.5190429688, 0.5668945312, -0.0347900391, -0.0747680664, 0.4619140625, -0.3020019531, 0.2512207031, 0.1643066406, 0.1650390625, 0.5439453125, 0.4553222656, 0.2268066406, -0.0602722168, -0.166015625, -0.2170410156, 0.1323242188, 0.1260986328, -0.2143554688, -0.333984375, 1.5390625, 1.7529296875, 0.2846679688, 0.5795898438, -0.5327148438, 0.0850830078, -0.1319580078, -0.4868164062, 0.8559570312, -0.3869628906, -0.7119140625, -1.427734375, -0.5717773438, -1.505859375, 0.0375061035, -0.533203125, 0.8310546875, -0.7670898438, -0.4685058594, -1.0908203125, 0.5073242188, -0.5073242188 ]
Many use Udi only in daily life, but for official purposes, the Udi use the language of the country in which they reside, such as Azerbaijani, Russian, or Armenian. Dialects The Udi language has two dialects: Nidzh and Vartashen. Nidzh dialect has sub-dialects that are divided into three subgroups - bottom, intermediate, top. Linguists believe the dialects originated according to geographic groupings of the Udi from the Tauz region: the villages of Kirzan and Artzah (Karabah, v. Seysylla, Gasankala) moved to Nidzh and Oguz. The Vartashen dialect has two sub-dialects: Vartashen and Oktomberry. History In the past the Udi language was one of the widespread languages of Caucasian Albania on the basis of which, in the 5th century the Caucasian Albanian script, was created by the Armenian monk Mesrop Mashtots. The alphabet had 52 letters. The language was widely used, as major Bible texts were translated into the Caucasian Albanian language. Church services were conducted in it. After the fall of the Albanian state, the Caucasian Albanian liturgical language was gradually replaced by Armenian in church. Due to their Caucasian Udi language and their Christian faith, the Udis are regarded as the last remnants of the old Caucasian Albanians. Under Persian rule, some of them converted to Islam, and soon adopted the Azeri language.
[ 0.388671875, -0.5854492188, 0.740234375, -0.4040527344, 0.490234375, -0.369140625, -0.9580078125, -0.0391540527, -0.8408203125, -0.2491455078, -0.3518066406, -0.4343261719, -0.0432434082, 0.3151855469, 0.8071289062, 1.271484375, 0.0650024414, -1.240234375, 0.2320556641, 0.5234375, 0.1518554688, -0.028427124, 0.1701660156, -1.5029296875, -0.4790039062, -0.1976318359, 0.4929199219, 0.0985717773, -1.2119140625, 0.3522949219, -1.0859375, 0.4282226562, 1.2958984375, 0.4499511719, 0.5610351562, 0.3095703125, -0.6025390625, -1.119140625, -0.7392578125, 0.0899047852, 0.8256835938, 0.1569824219, -0.3359375, 0.2264404297, -0.2163085938, 0.5258789062, 0.3642578125, -0.0865478516, 0.08203125, 1.8291015625, -0.77734375, 0.0309753418, 0.2121582031, -0.2585449219, -0.5029296875, -0.2261962891, 0.8857421875, -1.328125, -0.59375, -0.7368164062, -0.9213867188, -0.193359375, -1.3037109375, -0.0754394531, 0.1495361328, -0.544921875, 0.2467041016, 0.2036132812, 0.6889648438, 1.123046875, -0.1118164062, -0.353515625, -0.9052734375, -0.0399475098, 0.1820068359, 0.4094238281, -0.027557373, 0.4501953125, -0.2785644531, -0.4086914062, -0.6567382812, -0.0822753906, -0.5712890625, -1.4423828125, 0.796875, -0.0672607422, 0.3215332031, -0.3647460938, 0.8896484375, 1.1435546875, 0.3227539062, -1.3349609375, -0.6157226562, 0.8837890625, -0.5795898438, 1.8623046875, -0.3449707031, -0.0411376953, -0.2113037109, -0.4714355469, 0.2318115234, -0.5771484375, -0.6025390625, 0.1427001953, -0.7856445312, 0.1334228516, -0.3959960938, -0.7392578125, 0.2486572266, -0.1759033203, -0.330078125, 0.1166992188, 0.693359375, 0.3068847656, -0.51171875, -0.1712646484, -0.1922607422, -0.4055175781, -0.6376953125, 0.0387573242, 0.2878417969, -0.27734375, -0.0470275879, -0.2595214844, 0.5537109375, 0.544921875, -1.498046875, 0.5932617188, 1.25, 0.3698730469, 0.3215332031, -0.5424804688, 0.4677734375, -0.1513671875, 0.6015625, -0.8681640625, -0.8002929688, -0.1507568359, -0.3005371094, 0.7700195312, -0.8305664062, 0.87890625, 0.1578369141, 0.0939941406, 1.0107421875, -0.2568359375, 1.6162109375, 0.9311523438, -0.740234375, -0.2208251953, -0.2736816406, -0.2125244141, -0.1513671875, -0.52734375, -1.068359375, 0.7153320312, -0.4431152344, 0.0737915039, 0.6416015625, 0.3054199219, -0.4958496094, -0.759765625, -0.6162109375, 1.3642578125, -0.890625, 0.5952148438, -0.8100585938, 0.73046875, -0.0833740234, -0.0599060059, 0.2463378906, 0.5239257812, 0.314453125, 0.7290039062, 0.2805175781, -0.0057525635, 0.8076171875, -0.8427734375, 0.779296875, -1.0537109375, -0.3537597656, -0.5737304688, 0.1466064453, 0.1102294922, 0.5512695312, 0.5732421875, -0.0557556152, 0.2414550781, -0.5498046875, -0.5126953125, 0.1315917969, -0.1099853516, -1.7265625, 0.1324462891, 0.5556640625, -1.23828125, -0.6118164062, 0.023147583, 1.40625, 0.5991210938, -0.0146865845, 0.5913085938, 0.34765625, 0.3840332031, 0.3117675781, 0.0330200195, -0.1311035156, 1.5751953125, -0.6474609375, 0.3173828125, 0.2670898438, -0.787109375, -0.8002929688, 0.927734375, 0.6376953125, 0.3686523438, 0.3466796875, -0.4558105469, -0.1011962891, 0.3327636719, 0.1227416992, 0.2486572266, 0.1069335938, -1.123046875, -0.0802612305, -0.2919921875, -1.09765625, 0.5146484375, -0.9047851562, 0.4326171875, 0.853515625, 0.3029785156, -0.2524414062, -0.6196289062, 0.3974609375, -0.100769043, -0.0916748047, -0.0668945312, 0.5307617188, 0.2973632812, -1.3427734375, 0.0586242676, 0.3195800781, -0.2958984375, 0.1391601562, 0.2260742188, 1.8232421875, 1.1494140625, 0.69921875, 1.0810546875, 0.7739257812, 0.779296875, -1.533203125, -0.6215820312, 0.0850219727, 0.0853271484, 0.6787109375, -0.1181640625, 0.8754882812, -0.0706787109, -0.1508789062, 0.8349609375, 1.404296875, -0.8247070312, -0.1242675781, -0.2086181641, 0.0075073242, -0.7534179688, 0.4289550781, 0.1307373047, -0.2437744141, -0.3635253906, 0.212890625, -0.8803710938, -0.4846191406, 1.5595703125, -0.3076171875, 0.0653686523, -0.7612304688, 0.552734375, -0.505859375, -0.062286377, 0.081237793, -0.1264648438, 0.1119384766, 0.1594238281, -0.4133300781, 0.4855957031, 0.0358276367, -0.3422851562, 0.1196289062, 0.1173706055, -0.3601074219, 0.3969726562, -0.2030029297, 0.4641113281, 1.01953125, 0.1474609375, 0.50390625, -0.4938964844, 0.7109375, 1.3232421875, 0.3002929688, -0.1789550781, 0.0195922852, 0.15625, -1.330078125, 0.1806640625, 0.287109375, 0.0013999939, 0.89453125, 0.4562988281, -0.2834472656, -0.0272216797, -0.5991210938, -0.0187683105, -0.52734375, -0.3793945312, 0.4052734375, 0.1606445312, 0.2258300781, -0.8046875, 0.2719726562, -0.0163116455, -0.2239990234, 0.0148010254, -0.828125, -1.0771484375, 1.1689453125, 0.5874023438, 0.3491210938, 1.0244140625, 1.103515625, 0.791015625, 0.2868652344, -0.2094726562, 0.4506835938, 0.5541992188, -1.0634765625, 0.3544921875, 0.2490234375, 0.0432128906, -0.541015625, 0.685546875, -0.109375, 0.1354980469, -1.7705078125, -0.2902832031, -0.2734375, -0.2202148438, -0.3151855469, 0.2866210938, -0.9096679688, 0.1353759766, 0.9404296875, 0.6743164062, -0.2502441406, 0.2639160156, -0.919921875, -0.5795898438, 0.1971435547, 0.5971679688, -2.28515625, -0.748046875, -0.9389648438, 0.0411071777, 1.0771484375, 0.1213989258, -0.5356445312, 0.5249023438, 0.9770507812, 0.1857910156, -0.701171875, 1.3818359375, 0.728515625, 0.0191955566, -0.9887695312, 1.7578125, -1.140625, -0.3356933594, 0.759765625, 0.3344726562, 0.32421875, -0.2462158203, 1.115234375, -0.2191162109, -0.595703125, -0.4165039062, 0.6811523438, 0.5419921875, -0.2719726562, -0.0305175781, -0.8041992188, 1.4541015625, -1.3759765625, -1.095703125, 1.45703125, -0.4328613281, -0.7739257812, -0.0656738281, -0.4743652344, -0.5751953125, -1.1806640625, 0.3503417969, 0.2396240234, -0.5024414062, 1.4609375, -0.59375, 0.0987548828, 0.0628662109, 0.1870117188, -0.8901367188, -0.2932128906, 0.0179901123, -0.9926757812, 0.1713867188, -0.0859375, -0.9516601562, 0.4794921875, -1, -0.3786621094, 0.9951171875, 0.4938964844, -0.1868896484, -0.0839233398, 0.6801757812, 0.0836181641, -0.5317382812, 1.17578125, 0.56640625, -0.1754150391, -0.48828125, 0.0405883789, 0.2917480469, -0.2409667969, 0.6240234375, 0.1014404297, -0.3186035156, -0.392578125, -0.0348205566, 0.2276611328, 0.7641601562, 0.2568359375, 0.8686523438, 0.1510009766, -0.8193359375, -0.3483886719, -0.9409179688, 0.4951171875, -1.1611328125, 0.0708618164, -0.9916992188, 0.7021484375, 1.04296875, -0.1793212891, -0.1442871094, 0.3051757812, 0.1358642578, 0.2709960938, -0.6572265625, 0.4128417969, 0.2319335938, -0.4506835938, -1.1318359375, -0.2841796875, -0.0027656555, -0.9047851562, -0.2880859375, -0.7470703125, -0.267578125, -1.3447265625, 1.294921875, 0.0883178711, -0.0254364014, 1.193359375, -0.0648193359, 0.1083984375, 1.76953125, -0.5053710938, -0.5224609375, -0.7495117188, 0.1501464844, -0.650390625, 0.58203125, 0.4890136719, 0.5424804688, -0.1154174805, 0.4438476562, 0.4658203125, -0.2197265625, -0.0858764648, 0.7514648438, -0.361328125, -0.2978515625, 0.0195770264, -0.1450195312, -0.2088623047, 0.9379882812, 0.7978515625, -0.5288085938, -0.2683105469, 0.8442382812, 0.1810302734, -0.1033325195, -0.7426757812, 0.7290039062, 0.1624755859, 0.4946289062, 1.625, 0.2819824219, -0.1108398438, 0.0464782715, -0.4377441406, 0.568359375, -0.5190429688, -0.032043457, -0.5927734375, -0.0798339844, 0.6499023438, -0.1558837891, 0.2844238281, -0.5961914062, 0.0469360352, 0.8403320312, 0.008895874, 0.6020507812, 0.2607421875, -1.4169921875, 0.2236328125, 1.248046875, 0.6362304688, -0.2104492188, -0.1662597656, 0.4555664062, 0.0288391113, -0.6801757812, -0.4396972656, 0.2780761719, 0.020614624, 0.3974609375, 0.4311523438, -0.7270507812, 0.2058105469, -0.3935546875, 0.58203125, 0.8774414062, -0.1488037109, 0.5478515625, -0.6860351562, 0.5161132812, 0.1257324219, 0.5395507812, -0.8823242188, 0.3498535156, -0.2294921875, -0.6401367188, 0.6157226562, -0.6127929688, -0.2185058594, -0.5610351562, -0.3642578125, -0.4899902344, -0.2619628906, 0.5815429688, -0.1420898438, -0.3500976562, -0.8422851562, -0.7495117188, -0.2915039062, 0.0421142578, -0.544921875, -0.0210113525, 0.880859375, 0.0411682129, -0.6767578125, -0.1069335938, -0.3625488281, -0.2788085938, 0.6884765625, 0.8486328125, 0.2504882812, 0.4682617188, 0.076965332, -0.4873046875, -0.0082778931, 0.3793945312, 0.8305664062, -0.5659179688, -0.7231445312, -0.3127441406, -0.4553222656, 0.6958007812, -0.1638183594, 0.0816650391, 0.8383789062, -0.1685791016, -0.5141601562, -0.7407226562, -0.5112304688, -0.6201171875, 0.1614990234, 0.1748046875, -0.3510742188, 0.2236328125, 1.5322265625, -0.8618164062, 0.5380859375, 0.6499023438, -0.8837890625, 0.0142211914, -0.1409912109, -0.4641113281, 0.0650024414, -0.8442382812, 0.8046875, 0.3295898438, -0.2563476562, -0.40234375, 0.0824584961, -0.7915039062, -1.0732421875, -0.369140625, -0.1859130859, -0.3041992188, 0.4587402344, 0.3635253906, -0.3908691406, -0.047454834, 0.6948242188, -0.5766601562, 0.4587402344, 0.2646484375, -0.6215820312, -0.1417236328, 0.2514648438, -0.4377441406, 0.1770019531, -0.0315856934, 0.0095748901, -0.3996582031, 1.091796875, 0.3269042969, 0.1082763672, -0.546875, -0.5981445312, 0.075378418, 0.951171875, -0.49609375, -0.7900390625, -0.065246582, -0.3588867188, 0.1257324219, 0.0498962402, 0.4418945312, -0.4477539062, 0.6879882812, 0.17578125, -0.9624023438, -0.900390625, -0.7231445312, 0.1857910156, 1.052734375, -0.7778320312, -0.4309082031, -0.9125976562, -0.6943359375, 0.5517578125, -0.2155761719, -0.0450134277, 0.7836914062, 1.130859375, 0.5654296875, 0.0672607422, 0.7055664062, -0.2565917969, -0.5737304688, 0.0323791504, 1.02734375, 1.162109375, 1.2919921875, 0.0933227539, 0.1084594727, 0.3586425781, -0.5053710938, -0.4577636719, 0.455078125, -1.0625, 0.6953125, -1.6015625, 0.2293701172, 0.341796875, -0.1635742188, -0.8857421875, -0.8212890625, -0.7856445312, -0.931640625, -0.5766601562, 0.4594726562, -0.2214355469, -0.2333984375, -0.5034179688, -0.3151855469, -0.2453613281, -0.0678100586, -1.087890625, 0.744140625, -0.0727539062, -1.546875, -0.2001953125, 1.712890625, -0.5083007812, 0.4208984375, 0.818359375, 0.0836181641, 0.9267578125, -1.0146484375, 0.7280273438, -0.701171875, 0.1951904297, -0.2563476562, 0.2376708984, 0.2775878906, -0.2292480469, -0.3310546875, 0.81640625, -0.4133300781, -0.5600585938, 0.3618164062, 0.2288818359, 0.1871337891, 0.8559570312, -0.4404296875, 0.0626220703, -0.2612304688, 0.2452392578, -0.5302734375, -0.2907714844, -0.6235351562, 0.7099609375, 0.4077148438, 0.0706787109, -0.8569335938, -0.6020507812, -0.1588134766, -1.5986328125, 0.568359375, 0.904296875, 0.4814453125, -0.5893554688, -0.7978515625, -0.0942382812, 0.1948242188, 0.0634155273, 0.4479980469, 0.0293426514, -0.63671875, -0.619140625, -0.5375976562, -0.6279296875, 0.3820800781, -0.1331787109, -0.044342041, -0.1494140625, -0.2770996094, 0.43359375, 0.31640625, 0.073425293, -0.0815429688, -0.55078125, -0.30859375, 0.3486328125, 0.4479980469, 0.8466796875, 1.396484375, -0.7231445312, 0.0435180664, -0.8896484375, -1.658203125, 0.802734375, -0.3959960938, 1.1357421875, -0.3439941406, -0.7138671875, -0.7114257812, 0.2087402344, 0.0476379395, 0.1129150391, 0.2680664062, -0.2121582031, -0.546875, -0.6459960938, -0.3386230469, 0.2399902344, 0.1224365234, 0.2302246094, -0.4533691406, -0.0518188477, -0.1893310547, -0.0872802734, 0.4599609375, -0.1683349609, 0.4099121094, 0.576171875, -0.8813476562, 0.1981201172, 0.0314025879, 0.2176513672, 0.2629394531, -0.3615722656, -0.748046875, 0.4191894531, 0.5830078125, -0.1376953125, -0.3352050781, 0.0294799805, -0.4389648438, -0.3522949219, 0.3520507812, -0.6840820312, 0.1529541016, 0.1740722656, -0.814453125, 0.4489746094, 0.2766113281, 0.85546875, -0.9326171875, 1.2275390625, 0.2052001953, -0.6049804688, 0.0462341309, -1.10546875, 1.021484375, -0.7934570312, 0.4423828125, 0.3076171875, -0.4033203125, 0.3205566406, 0.67578125, -0.7587890625, -0.8178710938, -0.1472167969, -0.5668945312, -0.8823242188, 0.388671875, 0.4929199219, 0.1456298828, 0.0174255371, -0.0370788574, -0.3466796875, -0.8442382812, 0.4792480469, 0.2281494141, 0.3090820312, 0.1456298828, 1.373046875, -0.2744140625, -1.0849609375, -0.947265625, -0.3994140625, 0.0739746094, 0.4538574219, 0.0840454102, -0.6416015625, -0.5893554688, 0.6049804688, -0.7290039062, 0.0658569336, 0.779296875, -0.3725585938, 0.2897949219, -0.1043701172, -0.5327148438, -0.1715087891, 0.1245117188, -0.5336914062, -0.3596191406, -0.1882324219, 0.5092773438, -0.1572265625, -0.6284179688, 0.3647460938, -0.9819335938, -0.2551269531, 0.2822265625, -0.1221923828, 0.2814941406, 0.2890625, 0.732421875, -0.0742797852, -0.4787597656, 0.6088867188, -0.6533203125, 0.4763183594, 0.6142578125, 0.0268249512, -0.7973632812, -0.0634155273, 0.4580078125, 0.662109375, 0.4521484375, 0.671875, 0.1021728516, -0.4580078125, -0.9091796875, 0.1654052734, -1.0419921875, -0.0348205566, -0.6552734375, -0.8129882812, 0.1805419922, 0.0433654785, 0.1083984375, -0.3210449219, 0.1296386719, -0.3950195312, -0.4094238281, 0.8637695312, -0.8256835938, 0.4741210938, -0.0617980957, -0.8520507812, -0.2125244141, -0.0088729858, 0.7099609375, 0.1173095703, 0.6948242188, -0.4067382812, -1.71875, -0.5141601562, 0.1538085938, 0.865234375, 0.7895507812, -0.0726318359, 0.2093505859, 0.4155273438, -0.6806640625, 0.5947265625, -0.6313476562, -0.1977539062, -0.0141296387, -0.5048828125, 0.0462646484, -12.6171875, -0.5244140625, 0.8286132812, 0.4128417969, -1.6708984375, 0.8930664062, 1.8359375, -2.068359375, -0.0610961914, 0.1759033203, 0.4697265625, 0.943359375, -0.87109375, -0.6586914062, 0.6396484375, -2, -0.5493164062, -2.033203125, -1.3232421875, -0.7587890625, 0.1115112305, 1.1533203125, -0.4943847656, -0.1510009766, 0.5810546875, -0.2531738281, -0.1049194336, 0.4006347656, -0.974609375, -0.6748046875, -0.4870605469, -0.791015625, -0.4995117188, 0.3603515625, -0.5131835938, -0.0905761719, -0.7143554688, -0.8544921875, 0.9619140625, -0.5112304688, 0.1012573242, -0.3264160156, 0.2509765625, 0.0218048096, 0.1474609375, 0.3542480469, 0.3891601562, 0.0027961731, 0.1387939453, 0.4018554688, 0.0341491699, 0.1662597656, 0.4233398438, 0.0173034668, -0.3688964844, -0.033996582, -0.4868164062, -0.0004107952, -0.3598632812, -0.0744628906, 0.8217773438, 2.1015625, -0.0274658203, 0.2780761719, -0.6557617188, -0.1696777344, 0.1948242188, -1.029296875, 0.0881958008, 0.0351867676, -0.4694824219, -1.33984375, -0.716796875, -0.876953125, 0.2481689453, 0.2497558594, 1.34375, -0.83984375, -0.0574951172, -1.2705078125, 0.2836914062, -0.2770996094 ]
The Armenian Apostolic Church held services exclusively in the Armenian language and refused to ordain a local Udi priest, against which Udis protested: Whereas the Udis of Vartashen remained in the Armenian Apostolic Church, the Udi Christians of Nij changed from the Armenian to the Russian Orthodox Church soon after the beginning of Russian rule. Population and changes In 1880, the population of the Udi people living in the area around Qabala in northern Azerbaijan was estimated at 10,000. In the year 1897, the number of the Udi people was given around 4.000, in 1910, it was around 5.900. They were counted as 2.500 in the census of 1926, as 3.700 in 1959, as 7.000 in 1979, and in 1989, the Udi people numbered 8.652. In census of 1999 in Azerbaijan, there were 4152 Udis. In the 2002 Russia Census, 3721 residents identified as Udi. Most of the Udi people (1573 persons) in Russia have been registered in Rostov region. Notable Udi people Stepan Pachikov, co-founder of ParaGraph Intl., Parascript, Evernote Corp. among other software companies which contributed heavily to the development of handwriting recognition and VRML technologies. George Kechaari, Udi writer, educator, public figure and scientist. Voroshil Gukasyan, Soviet linguist, Caucasologist and specialist in the Udi language and Caucasian Albanian inscriptions. Patvakan A. Kushmanyan,(1870-1955), distinguished educator of the Armenian SSR and notable scientist, linguist, editor of first Armenian-Udi and Udi-Armenian dictionaries. Movses Silikyan, major general of the Russian Imperial Army during World War I and then of the army of the First Armenian Republic.
[ 0.3557128906, -0.2524414062, -0.1065673828, -0.3093261719, 1.0068359375, 0.021194458, -0.2639160156, -0.2619628906, -0.4794921875, -0.045501709, -0.404296875, -0.4089355469, -0.1378173828, 0.2758789062, 0.36328125, 0.1563720703, -0.4821777344, -0.2663574219, -0.1882324219, 0.7905273438, -0.0182800293, 0.3608398438, 0.2585449219, -2.10546875, -0.8647460938, -0.1904296875, 1.08984375, 0.4868164062, -0.8349609375, 0.2883300781, -0.427734375, 0.1845703125, 0.3557128906, 0.1133422852, 0.57421875, 0.5190429688, -0.0774536133, -0.0207061768, -0.1898193359, -0.2255859375, 0.1513671875, -0.4116210938, -0.5166015625, 0.7670898438, -0.4272460938, -0.4211425781, 0.3544921875, -0.1309814453, -0.0681152344, 1.529296875, -0.9028320312, 0.0516357422, -0.2220458984, -0.3488769531, -0.580078125, -0.443359375, 0.916015625, -1.2978515625, -0.1170654297, -0.5771484375, -0.3415527344, 0.3937988281, -0.9838867188, -0.1530761719, 0.451171875, -0.3186035156, 0.040222168, 0.568359375, 0.0696411133, 1.5458984375, -0.7060546875, -0.3999023438, -1.0107421875, -0.1061401367, 0.7915039062, 0.0774536133, 0.0877075195, 0.4099121094, 0.0117111206, -0.2172851562, -0.9326171875, -0.671875, -0.0350646973, -0.3737792969, -0.2592773438, 0.6860351562, 0.4240722656, -1.0908203125, 0.1341552734, 1.0517578125, 0.5922851562, -0.7333984375, -1.0185546875, 0.4045410156, -1.169921875, 1.619140625, -0.4428710938, -0.4443359375, -0.4304199219, 0.7622070312, 0.341796875, -0.3601074219, -0.4821777344, 0.3037109375, -0.2770996094, -1.296875, -0.9614257812, -0.517578125, -0.5771484375, 0.2661132812, 0.482421875, 0.7983398438, 0.9145507812, -0.25, -0.0003762245, -0.2332763672, -0.0174255371, -0.775390625, -0.4555664062, 0.0577697754, 0.3615722656, 0.8330078125, -0.0604858398, -0.4235839844, 0.6162109375, 0.1687011719, -1.6796875, 0.5366210938, 1.2890625, 0.2094726562, 0.2966308594, -0.0119628906, 0.1435546875, -0.8325195312, 0.5805664062, -0.6547851562, -1.1298828125, 0.0573425293, -0.1612548828, -0.3034667969, -0.8071289062, 0.0974731445, 0.1119995117, -0.0889282227, 0.890625, -0.3093261719, 0.931640625, 0.1253662109, -0.3901367188, -1.2607421875, -0.3596191406, -0.4387207031, 0.3688964844, -0.4294433594, -0.3486328125, 0.740234375, -0.1154174805, -1.0244140625, 0.4553222656, 0.2131347656, -0.2883300781, -1.302734375, -1.07421875, 1.4462890625, -0.4770507812, 0.7290039062, -1.205078125, 0.6030273438, 0.6928710938, -0.4934082031, 0.76953125, -0.064453125, -0.1617431641, 1.19140625, 0.619140625, -0.1175537109, 0.7739257812, -0.984375, 0.1931152344, -1.1953125, -0.1729736328, -1.1318359375, 0.0264434814, 0.6274414062, -0.2347412109, 0.0132369995, 0.0963745117, -0.1075439453, -0.72265625, -1.1416015625, 0.1259765625, 0.1351318359, -0.9677734375, 0.2395019531, 0.6259765625, -0.61328125, 0.181640625, -0.1968994141, 0.6640625, 1.408203125, -0.1628417969, 1.0029296875, -0.1219482422, -0.1326904297, 0.6728515625, -0.57421875, -0.0708007812, 0.3615722656, 0.0121917725, -0.611328125, -0.087890625, -0.7631835938, -0.603515625, 1.251953125, 0.6333007812, -0.2264404297, 0.1890869141, -0.3762207031, 0.8188476562, 0.2122802734, 0.3981933594, -0.3010253906, -0.29296875, -1.0087890625, -0.7006835938, -0.5903320312, -0.9892578125, 0.65625, -1.2763671875, -0.0022296906, 0.05078125, 0.4389648438, -0.2098388672, 0.1149291992, 0.6909179688, 0.2250976562, -0.2880859375, 0.075378418, 0.3115234375, -0.490234375, -1.2802734375, 0.1499023438, 0.2502441406, -0.3295898438, 0.1500244141, -0.5947265625, 0.9399414062, 1.51171875, 0.0504150391, 0.4167480469, 1.47265625, 0.1290283203, -1.3125, 0.2106933594, 0.0498352051, -0.5483398438, 0.7739257812, 0.057220459, 0.65234375, -0.71875, -0.3854980469, 0.4367675781, 1.130859375, -0.611328125, -0.1678466797, 0.4675292969, -0.2153320312, -0.8872070312, 0.92578125, 0.2144775391, -0.4113769531, -0.3937988281, 0.1042480469, -0.1188354492, -0.0361633301, 0.1651611328, -0.5546875, 0.8227539062, 0.0397338867, 0.3117675781, -0.6220703125, 0.1137084961, -0.94140625, 0.0471496582, -0.658203125, 0.3803710938, -0.80859375, 0.9125976562, 0.5454101562, 0.0742797852, 0.365234375, 0.4123535156, -0.2646484375, -0.3088378906, -0.2883300781, 0.3664550781, 0.6342773438, 1.1982421875, 0.0301513672, -0.408203125, 1.0009765625, 0.9189453125, -0.076171875, -1.076171875, 0.4948730469, 0.673828125, -0.9145507812, -0.4250488281, 1.138671875, -0.6196289062, 0.7983398438, 0.0518493652, -0.8583984375, -0.5278320312, -0.4638671875, -0.2078857422, -0.83984375, -0.6123046875, 0.3002929688, -0.1893310547, 0.705078125, -0.3627929688, -0.4411621094, -0.1926269531, -0.0694580078, 0.3200683594, -0.6083984375, -0.6958007812, 0.8168945312, 0.6083984375, 0.4252929688, 0.8076171875, 0.9208984375, 0.8173828125, 0.97265625, -0.689453125, -0.83984375, -0.7192382812, -0.1706542969, -0.2661132812, 0.2038574219, 0.3303222656, -0.6064453125, -0.2038574219, 0.548828125, 0.3381347656, -1.0625, -0.7885742188, 0.0201568604, 0.0960693359, -0.3376464844, -0.2239990234, 0.0513305664, -0.3508300781, 0.986328125, -0.1507568359, -0.3706054688, 0.6279296875, -1.2724609375, -0.3273925781, 0.5146484375, -0.1574707031, -2.421875, -0.4868164062, -0.556640625, -0.55078125, 0.3188476562, 0.0661010742, -0.4584960938, 0.6801757812, 0.4033203125, 0.4191894531, -0.2895507812, 0.7309570312, 1.2724609375, 0.7807617188, -1.20703125, 1.505859375, -1.126953125, 0.876953125, 0.6708984375, -0.0760498047, 0.3315429688, 0.4282226562, 0.5825195312, -0.8134765625, 0.1469726562, -0.1713867188, 0.1500244141, 1.408203125, -0.1212158203, 0.5654296875, -0.3286132812, -0.1437988281, -1.0927734375, -0.1208496094, 1.6376953125, -0.8071289062, 0.1572265625, 0.0893554688, -0.6240234375, 0.5327148438, -0.7666015625, 0.7470703125, 0.0314331055, -0.1452636719, 1.8759765625, -0.8974609375, 0.3999023438, 0.1106567383, 0.484375, -0.6181640625, 0.2213134766, -0.4057617188, -1.115234375, -0.3151855469, -0.2736816406, -0.3920898438, -0.1022338867, -0.529296875, -0.6958007812, 0.5971679688, 0.3518066406, 0.4914550781, -0.77734375, 0.4772949219, 0.74609375, -1.1689453125, 0.3703613281, 0.3137207031, 0.7724609375, -0.1400146484, 0.6206054688, -0.1794433594, 0.1845703125, -0.2172851562, 0.5249023438, -0.7456054688, -0.1899414062, -0.97265625, 0.6772460938, 0.5458984375, -0.1682128906, 0.1997070312, -0.0170288086, -0.1479492188, 0.33984375, 0.1920166016, 0.5219726562, -0.794921875, -0.0207061768, -0.3430175781, 0.9013671875, 1.1494140625, 0.0316772461, -0.0627441406, 0.8740234375, -0.4375, 0.4682617188, 0.0350341797, 0.6469726562, 0.4792480469, 0.1065673828, -1.1572265625, -0.0089569092, -0.1983642578, -0.3369140625, -0.022277832, -0.1500244141, -0.3706054688, -1.4619140625, 0.0895996094, 0.55078125, -0.4934082031, 0.3718261719, -0.4086914062, 0.2424316406, 1.3681640625, -0.1170043945, -0.3391113281, 0.2866210938, 0.1721191406, -0.6928710938, 0.4375, 0.5805664062, 0.4150390625, 0.2578125, 0.1027832031, 1.16796875, -0.3896484375, 0.051574707, 0.5053710938, -0.7026367188, -1.57421875, -0.2692871094, -0.8842773438, -0.5205078125, -0.0169219971, -0.4113769531, -0.9458007812, 0.5581054688, 0.4519042969, -0.2330322266, -0.59765625, -1.1416015625, 0.1011962891, -0.3862304688, 0.9252929688, 0.9033203125, -0.5122070312, -0.2568359375, 0.3771972656, -0.1473388672, 0.703125, 0.2927246094, -1.0166015625, 0.1630859375, 0.6899414062, 0.3190917969, 0.005645752, -0.1851806641, 0.3400878906, 0.2159423828, 1.2109375, 0.1488037109, 0.8388671875, 0.2464599609, -1.208984375, 1.1787109375, 0.4851074219, 0.8422851562, -0.1970214844, 0.0895385742, 0.0690307617, -0.3249511719, -0.54296875, 0.3061523438, 0.6586914062, -1.07421875, 0.5874023438, -0.3391113281, -0.8452148438, 0.5673828125, -0.53515625, 0.2609863281, 0.5893554688, -0.97265625, 0.040222168, -0.4733886719, 0.69921875, 0.0349121094, 0.2824707031, -0.8969726562, 0.1204223633, -0.0239257812, -0.767578125, 0.3076171875, -0.697265625, -0.4167480469, -0.4760742188, 0.3330078125, -0.5712890625, -0.0852661133, -0.0777587891, 0.1708984375, -0.6166992188, -0.4606933594, -0.408203125, 0.1566162109, 0.2739257812, -0.4655761719, 0.4714355469, 0.038269043, 0.1984863281, -0.0420837402, 0.4165039062, -0.3063964844, -0.1106567383, 1.2998046875, 0.6215820312, 0.3605957031, 0.4973144531, -0.8354492188, -0.83203125, -0.7836914062, 0.3972167969, 1.02734375, -0.9697265625, 0.4230957031, 0.396484375, -0.0032176971, 0.4243164062, 0.3996582031, 0.9365234375, 0.4677734375, -0.732421875, -1.287109375, -0.4748535156, -0.8720703125, -0.3583984375, 0.0834960938, -0.4147949219, 0.3752441406, 0.4228515625, 1.4580078125, -0.6909179688, -0.4377441406, 0.2575683594, -0.2493896484, 0.2875976562, -0.2325439453, -0.2924804688, -0.4958496094, -0.5571289062, 0.7846679688, 0.1557617188, 0.49609375, 0.110534668, -0.7548828125, -0.8115234375, 0.0259552002, -0.0438232422, 1.3427734375, -0.0523376465, 0.4768066406, -0.3657226562, 0.0385437012, 0.3037109375, 0.5327148438, -0.4291992188, -0.2766113281, -0.5073242188, 0.5903320312, -0.3505859375, 0.0483398438, 0.0310058594, -0.0581359863, -0.3784179688, 0.4621582031, 0.0072822571, 1.6875, -0.7216796875, -0.0833129883, -0.2937011719, -0.8696289062, -0.6254882812, 0.3913574219, 0.4201660156, -0.7680664062, -0.3659667969, -0.6787109375, 0.3435058594, -0.0186767578, 0.1208496094, -0.1499023438, 0.0497131348, -0.2041015625, -0.4641113281, -0.2690429688, -0.4392089844, -0.4375, 1.771484375, -0.9184570312, -0.5673828125, -0.5126953125, -0.2098388672, 0.4360351562, -1.3330078125, -0.1381835938, 0.7895507812, 0.5102539062, 1.251953125, 0.5283203125, 0.2305908203, -1.4755859375, -0.1095581055, -0.2064208984, 0.8681640625, 0.0751953125, 0.8154296875, 0.6533203125, 0.1998291016, -0.568359375, -0.318359375, -0.1872558594, 0.5737304688, -1.021484375, 0.3525390625, -1.0380859375, 0.625, -0.13671875, 0.1923828125, -1.0078125, -0.63671875, -0.4375, -0.5864257812, -0.3901367188, 0.33984375, 0.4130859375, -0.46875, -0.4577636719, -0.90234375, -1.1826171875, 0.7514648438, -0.4025878906, 0.6909179688, -0.6767578125, -0.73828125, 0.0905151367, 1.7978515625, -0.1350097656, 0.4169921875, 0.5185546875, 1.08203125, 1.16015625, -0.1746826172, 1.111328125, -0.8842773438, 0.2155761719, 0.0745239258, -0.9291992188, 0.5346679688, -0.2261962891, -0.751953125, -0.0161590576, -0.0922851562, -0.498046875, -0.0737304688, 1.16015625, 0.4421386719, 1.0537109375, -1.21875, -0.2030029297, -0.1661376953, -0.052154541, -0.5712890625, 0.1477050781, 0.08984375, 0.236328125, 0.1173095703, -0.0382995605, -0.9428710938, -1.3564453125, -1.240234375, -1.1337890625, 0.3520507812, 1.2080078125, 0.7836914062, 0.701171875, -1.3154296875, 0.1039428711, 0.8754882812, -0.474609375, 0.2727050781, -0.0914306641, -0.375, -0.4216308594, -0.4868164062, 0.5073242188, 0.1235351562, -0.0905151367, -0.1405029297, 0.46875, 0.2805175781, 0.4313964844, 0.3469238281, 0.3366699219, -0.0054550171, -0.642578125, 0.0607299805, 0.646484375, 0.6225585938, 0.1196899414, 0.7177734375, -0.2213134766, 0.2404785156, -0.6918945312, -1.0927734375, 0.4633789062, -0.2690429688, 0.8881835938, -0.25, -1.041015625, -0.884765625, 0.1953125, 0.580078125, 0.0751342773, 0.6313476562, -0.3408203125, -0.630859375, -1.3076171875, -0.775390625, 0.8896484375, 0.7353515625, 1.0146484375, -0.556640625, 0.6655273438, -0.1394042969, 0.1690673828, 0.5986328125, -0.3117675781, -0.1967773438, 0.6147460938, -0.4331054688, 0.2763671875, 0.1380615234, 0.1771240234, -0.0163421631, 0.1102294922, -0.3217773438, 0.1760253906, 0.7568359375, -0.7504882812, -0.0440368652, 0.053314209, -1.28125, -0.1978759766, 0.8061523438, -0.9721679688, 0.205078125, -0.3466796875, -0.74609375, 1.0634765625, -0.3771972656, 1.0791015625, -0.8359375, 0.669921875, 0.2978515625, -0.8071289062, 0.4323730469, -0.6455078125, -0.0318603516, -0.2744140625, 1.1865234375, -0.1541748047, 0.1579589844, 0.6401367188, 0.1263427734, -0.4045410156, -0.2066650391, -0.3244628906, -0.4143066406, -0.5610351562, 0.7436523438, -0.1385498047, 0.5571289062, 0.515625, 0.2094726562, -0.4738769531, -0.4340820312, -0.0631103516, 0.0555419922, -0.2076416016, 0.0836181641, 0.650390625, -0.0771484375, -0.5205078125, -1.1171875, 0.1934814453, -0.8813476562, -0.3044433594, -0.3969726562, -1.2373046875, -0.5786132812, -0.4055175781, -0.662109375, -0.5297851562, 0.4370117188, 0.3415527344, 0.9580078125, -0.1870117188, -0.5166015625, -0.1110229492, 0.4064941406, -0.80859375, -0.4616699219, 0.1374511719, 0.328125, -0.6333007812, 0.13671875, 1.0419921875, 0.0953979492, 0.541015625, 0.2822265625, 0.3232421875, 0.1795654297, -0.4294433594, 0.7485351562, -1.029296875, 0.7475585938, -0.0612487793, -1.1826171875, 0.6318359375, -0.6845703125, -0.3312988281, -0.4704589844, 0.3515625, 0.3349609375, 0.4291992188, 0.4372558594, 0.6118164062, 0.5825195312, 0.0385742188, -0.0160980225, -0.3359375, -0.2778320312, -0.1505126953, -0.0009551048, -0.0856933594, -0.0494995117, 0.2042236328, -0.58984375, -0.736328125, 0.220703125, -0.16015625, 0.1041259766, 0.1369628906, -0.2875976562, -0.0877075195, -0.7416992188, -1.7177734375, -1.0478515625, 0.3149414062, 0.2200927734, 0.5112304688, 0.7202148438, 0.0352172852, -1.1201171875, 0.2756347656, -0.1654052734, 1.162109375, 0.947265625, 0.0389709473, -0.4306640625, -0.4592285156, -0.5102539062, 0.7045898438, 0.2421875, -0.0901489258, 0.3583984375, -1.0146484375, -0.3503417969, -13.109375, -0.1572265625, 0.4760742188, 0.48828125, -1.3232421875, -0.0924072266, 1.5, -1.2041015625, -0.0921020508, 0.116394043, 0.6342773438, 0.77734375, -0.7724609375, 0.5185546875, 0.4597167969, -1.361328125, -0.7333984375, -1.3505859375, -0.50390625, 0.6528320312, 0.4086914062, 1.599609375, -1.2119140625, -0.646484375, -0.306640625, 0.1866455078, 0.2230224609, -0.1297607422, -1.064453125, -0.4375, -1.548828125, -0.9326171875, -0.703125, 0.0825805664, -0.0445861816, 0.5068359375, -0.0668334961, -0.7744140625, 0.1614990234, -0.6303710938, 1.2568359375, -0.212890625, 1.1298828125, -0.44921875, 0.6015625, 0.2172851562, -0.1479492188, -0.2321777344, 0.3168945312, 0.451171875, -0.53125, 0.53515625, 0.2702636719, -0.2666015625, 0.3757324219, -0.3215332031, 0.1417236328, -0.2209472656, -0.5698242188, 0.3881835938, 0.2362060547, 1.251953125, 0.1765136719, 0.3840332031, -0.7255859375, 0.0186767578, -0.3342285156, -0.322265625, 1.25, -0.3898925781, 0.0708007812, -1.6416015625, -0.3354492188, -0.591796875, 0.8315429688, 0.3693847656, 0.6123046875, -1.017578125, 0.2475585938, -0.7446289062, 0.4738769531, 0.048828125 ]
Zinobi Silikashvili, founder of Udi village of Zinobiani See also Caucasian Albania Romans in Caucasian Albania Ingiloy people References External links Udis and Udi language. Ethnic groups in Azerbaijan Ethnic groups in Russia Ethnic groups in Georgia (country) Ethnic groups in Armenia Udi language Peoples of the Caucasus
[ -0.0713500977, -0.705078125, 0.529296875, 0.1412353516, 1.353515625, 0.275390625, -0.0908203125, 0.5581054688, 0.0513305664, 0.5356445312, -0.3361816406, -0.3137207031, 0.0933837891, 0.1251220703, 0.1225585938, 1.31640625, -0.5419921875, -0.0487365723, -0.39453125, 0.2529296875, -0.0047302246, -0.845703125, -0.8657226562, -1.783203125, -0.2489013672, -0.8466796875, 0.6840820312, -0.4587402344, -0.3415527344, -0.4479980469, -0.7114257812, 1.3134765625, 0.2309570312, 0.3640136719, 0.6000976562, 0.724609375, -0.2132568359, -0.3012695312, -0.5693359375, -0.0424499512, 0.3679199219, 0.2010498047, 0.055267334, 0.5043945312, -0.9057617188, 0.9243164062, 0.1339111328, 0.1361083984, 0.724609375, 0.4663085938, -1.1669921875, -0.8720703125, -0.1270751953, -0.7348632812, -0.3803710938, -0.2915039062, 1.099609375, -0.0429992676, -0.2578125, -0.6850585938, -0.2354736328, 0.4250488281, -0.2624511719, -0.0961303711, 0.267578125, -0.5102539062, 0.083190918, 0.6450195312, -0.3640136719, 1.4970703125, -0.2810058594, -0.3115234375, -0.5581054688, -0.0285491943, -0.4597167969, -0.3933105469, 0.1538085938, 0.5170898438, -0.1037597656, -0.2529296875, -0.6635742188, 0.0542602539, -0.3083496094, -0.7021484375, -0.2744140625, 0.7470703125, -0.1751708984, -0.5786132812, 0.5708007812, -0.0768432617, 0.3125, -1.0263671875, -0.1520996094, 0.453125, -1.0966796875, 2.875, 0.1473388672, 0.8217773438, 0.1531982422, -0.1552734375, 0.2595214844, 0.040435791, 0.3696289062, -0.3540039062, -1.060546875, -1.001953125, -1.08984375, -0.0704956055, -0.5546875, -0.4416503906, 0.2374267578, 0.2761230469, 0.6372070312, -0.2602539062, 0.5190429688, 0.079284668, 0.0935668945, 0.5336914062, -0.4716796875, 0.7236328125, 0.8647460938, 0.003698349, 0.8662109375, -0.4011230469, 0.6059570312, -0.0706176758, -1.7373046875, 0.6328125, 1.4072265625, 0.1607666016, 1.2548828125, -0.763671875, -0.1221923828, 0.583984375, 0.64453125, -0.1501464844, 0.0073738098, -0.2379150391, 0.088684082, 0.6640625, -0.7915039062, 0.3100585938, -0.1071166992, -0.1791992188, 0.736328125, -0.0487060547, 1.0224609375, 1.0810546875, -0.0557556152, -0.2448730469, 0.1161499023, -0.0225067139, -0.419921875, 0.3361816406, -0.5161132812, 0.6396484375, -1.470703125, -0.75, 0.8696289062, -0.1274414062, -0.4680175781, -0.2259521484, -1.208984375, 1.40625, -0.2243652344, 0.7407226562, -0.8823242188, 1.189453125, 0.482421875, -0.5541992188, 0.1745605469, -0.3125, -0.1715087891, 0.5297851562, 0.0874633789, 0.0710449219, 0.9663085938, -0.5698242188, 0.6879882812, -0.5903320312, -0.002248764, -0.4501953125, 0.587890625, 1.0361328125, -0.0023441315, 0.0645141602, -0.1765136719, -0.6401367188, -0.4738769531, -0.986328125, 0.6435546875, -0.3168945312, -0.8120117188, -0.0834960938, 1.056640625, -1.2685546875, 0.1175537109, 0.421875, 0.8935546875, 0.0278320312, -0.4907226562, 0.1809082031, -0.1182250977, -0.4506835938, 0.5776367188, -0.978515625, -0.0377502441, 0.51953125, -1.34765625, 0.5903320312, -0.3703613281, -0.0537719727, -0.62890625, 0.6884765625, 0.3608398438, -0.4104003906, 0.0288391113, -0.0578918457, 0.0246734619, 0.2036132812, 0.3557128906, 0.2342529297, -1.0986328125, -1.31640625, -0.3098144531, -0.4582519531, -0.3940429688, 1, -0.7270507812, 0.3688964844, 0.6977539062, 0.3559570312, 0.1435546875, -0.1381835938, 0.2819824219, -0.1630859375, 0.4946289062, 1.0693359375, 1.02734375, 0.2347412109, -1.2373046875, 0.1165161133, 0.1062011719, -0.17578125, -0.0942993164, 0.2198486328, 0.9296875, 0.6635742188, 0.0271911621, 0.3046875, 0.3774414062, 0.5048828125, -2.08203125, 0.0494689941, 0.0172424316, 0.615234375, -0.3510742188, -0.3278808594, 0.3503417969, 0.3002929688, -0.1752929688, 0.8686523438, 1.5302734375, -0.7978515625, -1.1982421875, 0.1727294922, 0.2971191406, -0.5625, 0.0390625, -0.2342529297, -0.2622070312, -1.1318359375, 0.4064941406, -0.6904296875, 0.3518066406, 1.1953125, -0.7578125, 0.544921875, -0.3125, 0.9418945312, -0.3842773438, 0.2834472656, -0.8681640625, -0.5859375, 0.2912597656, 0.1845703125, -0.8115234375, 0.4775390625, 0.5634765625, -0.4626464844, 0.2563476562, -1.4267578125, 0.0590820312, 0.6665039062, -0.9028320312, -0.1452636719, 0.9409179688, 0.4965820312, 0.3305664062, -0.3225097656, 0.5346679688, 2.28125, 0.4599609375, -0.5966796875, 0.0510253906, 0.1516113281, -1.40234375, 0.9189453125, 0.9877929688, 0.4279785156, 0.5234375, 0.517578125, 0.5048828125, -0.685546875, -0.2302246094, -0.5107421875, -1.1708984375, -0.036315918, 0.3666992188, -0.4836425781, 1.08203125, -0.6083984375, -0.6088867188, -0.8559570312, -0.0053329468, 0.7084960938, -0.6801757812, -0.7255859375, 2.263671875, 0.2105712891, 0.3161621094, 0.7329101562, 0.4404296875, 0.5185546875, 1.060546875, -0.4733886719, -0.2756347656, 0.4331054688, -0.9770507812, -0.2271728516, 0.919921875, -0.7431640625, -0.3083496094, 0.7138671875, 0.5908203125, 0.4367675781, -1.4072265625, -0.4006347656, 0.2707519531, -0.2113037109, -0.6469726562, 0.2646484375, -0.7993164062, -0.5014648438, 1.0341796875, 0.0891113281, -0.2109375, -0.4560546875, -1.162109375, -0.6650390625, 0.2330322266, 0.4873046875, -2.423828125, -0.7114257812, -1.5234375, -0.5478515625, 0.2436523438, -0.040435791, -0.2094726562, 0.5424804688, -0.3588867188, -0.5512695312, 0.0872192383, 1.1171875, -0.3095703125, -0.2985839844, -1.0244140625, 0.5908203125, -1.1689453125, 0.7944335938, -0.2092285156, -0.1301269531, 0.515625, 0.3552246094, -0.0044555664, 0.279296875, -0.4838867188, -1.421875, -0.1519775391, 0.9775390625, -0.3679199219, 0.7119140625, -0.2836914062, 0.2756347656, -0.8583984375, -0.9848632812, 1.0302734375, 0.1268310547, -0.7866210938, -0.2924804688, -1.029296875, -0.1436767578, -1.1328125, 0.030166626, 0.8061523438, -0.3774414062, 0.7807617188, -0.8017578125, 0.3063964844, 0.3759765625, 0.1486816406, -1.419921875, 0.2274169922, -0.1225585938, -0.7241210938, 0.1534423828, 0.2666015625, -0.3000488281, 0.1260986328, -1.123046875, -1.0400390625, 1.1533203125, 0.1566162109, -0.4487304688, 0.2668457031, -0.044921875, 0.0344543457, -0.9047851562, -0.0654907227, 0.1749267578, 0.2863769531, -0.9780273438, 0.2993164062, 1.3212890625, -0.3720703125, 0.1646728516, -1.0732421875, -1.1845703125, -0.6665039062, -0.3764648438, 0.3098144531, 0.6411132812, 0.0823974609, -0.4890136719, 0.1424560547, 0.4020996094, -0.0860595703, -0.5634765625, 0.5390625, 0.2379150391, 0.1188964844, -0.9140625, 0.2919921875, 0.8125, -0.2375488281, 0.8500976562, -0.4753417969, -1.0703125, 0.2761230469, 0.1802978516, 0.6767578125, 0.2712402344, -0.2548828125, -1.9677734375, -0.6499023438, -0.7778320312, -0.3874511719, -0.6435546875, 0.0446472168, -0.0578308105, -0.791015625, 0.7998046875, 0.4113769531, -0.0960693359, 0.8647460938, -0.580078125, 0.1602783203, 0.7788085938, -0.3708496094, 0.0186004639, -0.365234375, -0.5126953125, -1.11328125, 0.4248046875, 0.1185913086, 0.6728515625, -0.3977050781, -0.2019042969, 0.1940917969, 0.9174804688, -0.4196777344, 0.9013671875, -0.3864746094, -1.2294921875, 0.7250976562, -0.1190185547, -0.9233398438, 0.59375, 0.7016601562, -0.3359375, 0.3408203125, 0.830078125, -0.0687866211, -0.5751953125, -0.2490234375, 0.2709960938, -0.1774902344, -0.5541992188, 0.5908203125, -0.037109375, 0.291015625, 0.619140625, -0.1420898438, 0.9682617188, -0.9755859375, -0.7114257812, -0.2348632812, 0.6142578125, 0.720703125, 0.3061523438, 0.4885253906, 0.3212890625, 1.216796875, 2.2421875, 0.4611816406, 0.0349731445, 0.4477539062, -0.9340820312, 0.8168945312, 1.6494140625, 1.3349609375, -0.047668457, -0.1932373047, 0.1539306641, -0.0102386475, 0.4143066406, 0.7456054688, 0.0969238281, -0.3293457031, 0.6787109375, -0.3911132812, -0.100402832, 0.3022460938, 0.54296875, 0.0859985352, 0.8735351562, -1.2119140625, -0.2054443359, -0.1145629883, 0.515625, 0.7153320312, 0.560546875, -1.1630859375, 0.3994140625, 0.1112060547, -1.193359375, 0.8828125, -0.6284179688, 0.1810302734, -0.7270507812, -0.9145507812, -0.2780761719, -0.8081054688, -0.0023288727, -0.8388671875, -0.2512207031, -0.4833984375, -0.947265625, 0.2731933594, -0.0563354492, -1.80078125, -0.96484375, 1.1943359375, -0.1071166992, -0.353515625, 0.2978515625, 0.2121582031, -0.5610351562, 0.7163085938, 0.6591796875, 0.92578125, 0.4099121094, -0.6850585938, -0.8823242188, 0.6030273438, -0.74609375, 1.2548828125, -0.9067382812, -0.7646484375, 0.2000732422, -0.62890625, 0.0108261108, -0.8569335938, -0.3190917969, 0.8486328125, -0.2287597656, -0.4077148438, -0.3474121094, 0.2873535156, -0.3828125, -0.0511779785, 0.4428710938, 0.0677490234, -0.0452575684, 2.0390625, -0.5551757812, 0.1977539062, 0.0248565674, -1.212890625, 0.7041015625, 0.8881835938, 0.9931640625, 0.0139923096, 0.0444946289, 0.1516113281, 0.0510559082, 1.1162109375, -0.4274902344, -0.0907592773, -0.3051757812, -0.708984375, 0.0580444336, 0.8359375, 0.7895507812, 0.3930664062, -0.0752563477, -0.1733398438, 0.2561035156, 0.41015625, -1.3720703125, 0.9536132812, 0.9721679688, 0.3369140625, -0.7001953125, -0.2354736328, -0.4428710938, -0.3662109375, 0.2486572266, 0.6630859375, -0.0389709473, 1.306640625, 0.1008911133, 0.1368408203, 0.1021118164, -1.3330078125, -0.5776367188, 0.3203125, -0.1630859375, -0.9790039062, -0.3352050781, 1.1103515625, -0.0082015991, 0.736328125, -0.1433105469, -0.1722412109, 0.775390625, 0.501953125, -0.857421875, -0.3891601562, -0.2817382812, -0.66015625, 2.033203125, -0.3959960938, 0.2100830078, -1.4990234375, -0.8852539062, 0.5864257812, -0.3967285156, -0.1452636719, 1.193359375, 0.5859375, 0.5146484375, 0.3271484375, 0.2861328125, -0.7802734375, -1.390625, 0.9521484375, 1.111328125, 0.2705078125, 0.4289550781, 0.0344238281, -0.5551757812, 0.0288543701, -0.2120361328, -0.775390625, -0.2927246094, -0.634765625, 0.98046875, -1.92578125, 0.1636962891, -0.5908203125, -0.1778564453, -0.2379150391, -0.6049804688, -0.1680908203, -0.1685791016, -0.2592773438, 0.2951660156, -0.9213867188, 0.7133789062, -0.8369140625, -0.53125, 0.8422851562, 0.4948730469, -0.1524658203, 0.4909667969, 0.4768066406, -1.6484375, -0.3527832031, 1.283203125, -0.861328125, -0.3205566406, 0.9711914062, 0.3208007812, 1.3017578125, -0.049621582, 0.2778320312, -0.9326171875, -0.1700439453, -0.7631835938, -0.6884765625, -0.3520507812, -0.27734375, -0.1331787109, 0.6420898438, -1.2353515625, 0.1303710938, 0.2149658203, 0.533203125, 0.4614257812, 1.017578125, -0.6279296875, -0.7885742188, -0.2712402344, 0.4455566406, -1.216796875, -0.6333007812, -0.0291900635, 0.1336669922, 0.265625, 0.6655273438, -1.1484375, -0.0963745117, -0.1174926758, -0.8051757812, 0.0166931152, 1.177734375, 0.0146789551, -0.7006835938, -0.8471679688, -0.0296325684, 0.2009277344, -0.3225097656, 0.2722167969, 0.458984375, -1.3828125, -1.95703125, -0.0780639648, 0.5634765625, 0.4084472656, -0.4260253906, 0.1508789062, -0.33984375, 0.240234375, -0.4311523438, 0.3483886719, 0.0576171875, -0.0469055176, -0.4846191406, 0.037109375, 0.84765625, 0.4372558594, -0.2766113281, 1.2529296875, -0.734375, -0.1550292969, -0.6689453125, -0.2001953125, 0.951171875, -0.4680175781, 0.5380859375, 0.2546386719, -1.431640625, -0.982421875, 0.4541015625, 0.3581542969, -0.46875, 0.0184783936, -0.8642578125, -0.3947753906, -1.111328125, -0.8061523438, 0.8642578125, 1.2236328125, -0.447265625, -0.0688476562, 0.4157714844, -0.5546875, 0.9033203125, 0.908203125, 0.6547851562, 0.4716796875, 2.087890625, -0.8217773438, 0.6376953125, 0.4440917969, 0.2086181641, -0.9560546875, -0.6025390625, -0.0944824219, -0.0325622559, -0.0492248535, -1.140625, -0.3293457031, 0.1641845703, -0.7094726562, -0.3657226562, 0.7797851562, -0.5859375, -0.8022460938, 0.3508300781, -0.880859375, 0.5908203125, -0.2729492188, 1.0927734375, -0.1259765625, 1.2353515625, -0.2526855469, -0.2912597656, 0.3247070312, 0.1666259766, 0.7573242188, -0.7338867188, 0.3225097656, -0.1102905273, -0.5048828125, 0.7861328125, -0.3481445312, -0.8325195312, -0.4274902344, -0.7216796875, -0.9111328125, -0.5537109375, -0.2507324219, 0.1550292969, -0.0261230469, -0.1923828125, -0.2081298828, -0.1129760742, -0.4396972656, 0.1783447266, -0.1241455078, 0.067199707, -0.0277709961, 1.0439453125, -0.5864257812, -1.08203125, -0.7626953125, -0.2205810547, -0.2895507812, -0.0531005859, 0.6752929688, -0.6958007812, -0.591796875, 0.1116333008, -0.4619140625, -0.2254638672, 1.435546875, 0.1555175781, -0.1584472656, -0.5278320312, -0.2712402344, -0.3911132812, 0.0411682129, 0.0928955078, -0.5571289062, 0.4729003906, 0.9814453125, -0.5341796875, -0.1910400391, 0.7172851562, -1.2724609375, 0.2863769531, 0.8427734375, 1.0009765625, -0.3249511719, 0.3505859375, -0.1691894531, 0.0877685547, 0.1434326172, 0.8754882812, -1.12109375, -0.4484863281, -0.650390625, -0.58203125, -0.6157226562, -0.0499267578, 0.4379882812, 0.1593017578, 1.1171875, 0.8203125, -0.2531738281, -0.4895019531, -0.2604980469, -0.0530395508, -0.958984375, -0.046081543, 0.0382385254, -0.2634277344, -0.4697265625, -0.3168945312, 0.7055664062, -0.76171875, -0.1527099609, -0.6010742188, 0.2758789062, 1.00390625, -1.1689453125, 0.728515625, -0.0753173828, -1.103515625, -0.673828125, 0.1342773438, 0.537109375, 0.2648925781, 0.0643920898, -0.3642578125, -1.203125, -0.4770507812, 0.4770507812, 0.673828125, 0.9516601562, -0.6337890625, 0.169921875, 0.0811157227, -0.904296875, 0.104309082, 1.0048828125, -0.0744628906, -0.603515625, -0.2019042969, -0.8740234375, -10.5234375, 0.0076904297, -0.1588134766, 0.42578125, -1.412109375, -0.2073974609, 1.1796875, -2.17578125, -0.8071289062, -0.234375, 0.9018554688, 0.3266601562, -0.3640136719, -0.0450439453, 0.7578125, -2.228515625, 0.595703125, -1.8818359375, -0.6987304688, -0.8159179688, 0.3054199219, 0.0899658203, 0.7514648438, 0.6635742188, -0.486328125, 0.0282745361, 0.2890625, 0.1608886719, -1.2841796875, 0.8745117188, -0.4506835938, -0.2878417969, -0.3193359375, 0.2770996094, -0.1674804688, 0.5180664062, -0.634765625, -0.3752441406, 0.3986816406, -0.1768798828, 0.6708984375, -0.0613708496, 0.8720703125, 0.3337402344, 0.015838623, 0.61328125, -0.8452148438, 0.1021118164, 0.3325195312, 0.0028686523, -0.5249023438, -0.798828125, 0.2216796875, -0.2927246094, 0.1584472656, -0.2093505859, 0.025970459, -0.6884765625, -0.1334228516, -0.2939453125, 0.6064453125, 1.9736328125, 0.228515625, 0.3117675781, -0.6337890625, 0.0828857422, -0.2724609375, -0.466796875, -0.9399414062, 0.1945800781, 0.2043457031, -1.4873046875, 0.3449707031, -1.3818359375, 0.8588867188, 0.4831542969, 2.04296875, -1.18359375, 0.4064941406, -0.685546875, 0.5112304688, 0.0370788574 ]
USNS Dutton (T-AGS-22) was an oceanographic survey ship for the United States Navy from the late 1950s through the 1980s. She was launched as SS Tuskegee Victory in 1945, Maritime Commission hull number MCV 682, a type VC2-S-AP3 Victory ship. In her U.S. Navy service, she was named after Captain Benjamin Dutton, Jr., and was the second U.S. Navy ship named in his honor. SS Tuskegee Victory SS Tuskegee Victory was a Victory ship laid down on 16 February 1945 and delivered to the Maritime Commission on 8 May 1945 and operated by the Weyerhaeuser Steamship Company. After seven years of commercial service, she was laid up in the National Defense Reserve Fleet in 1952. Five years later she was acquired by the U.S. Navy, renamed Dutton, and converted to a oceanographic survey ship (AGS) at the Philadelphia Naval Shipyard from 8 November 1957 to 16 November 1958. USNS Dutton T-AGS-22 USNS Dutton T-AGS-22 was placed in service on 1 November 1958 and assigned to the Military Sea Transportation Service, manned by a civilian crew. Dutton was operated by the U.S. Naval Oceanographic Office for the U.S. Navy Office of Special Projects in support of the U.S. Navy Fleet Ballistic Missile Program. Three ships were converted for this purpose: Dutton, and identical sister ships, and . Dutton participated in the recovery effort of the 1966 Palomares B-52 crash from January through April 1966. Attached aboard Dutton was a U.S. Navy Oceanographic Detachment, upgraded ca. May 1966 to an Oceanographic Unit, of approximately 3 officers and 22 enlisted personnel, mostly technicians.
[ -0.474609375, 0.0460510254, -0.5966796875, 0.4858398438, -0.1571044922, 0.947265625, -0.0141525269, 0.4252929688, 0.103515625, -0.2032470703, 0.1038208008, -0.9418945312, -0.0128326416, 1.01171875, 0.7080078125, 0.439453125, -0.2607421875, -0.6293945312, -0.4711914062, -0.00111866, 0.3666992188, 0.4284667969, 0.0340270996, -0.3669433594, 0.5703125, 0.6635742188, -0.404296875, -0.6254882812, -0.0896606445, 0.2912597656, -0.353515625, -0.4030761719, -2.41796875, 0.693359375, 0.2348632812, -0.275390625, 0.1701660156, 1.201171875, -0.322265625, 0.3264160156, 0.2403564453, -1.41796875, -0.5346679688, -0.2355957031, -0.5415039062, -0.6103515625, -0.3071289062, 0.5595703125, -0.4875488281, 0.8540039062, -0.5537109375, 0.9204101562, 0.4721679688, 0.1613769531, 0.2614746094, -0.71875, -1.2451171875, 0.3076171875, 0.1602783203, 0.2348632812, 0.5244140625, 0.0303192139, -0.0635986328, -1.0341796875, 0.1694335938, 0.2138671875, 0.5634765625, 0.1995849609, -0.5712890625, 0.2347412109, 0.063293457, -0.3371582031, -0.7446289062, -0.3947753906, 0.7783203125, -0.0497131348, -0.2941894531, 1.7236328125, 0.065612793, -0.353515625, -0.8857421875, -0.2905273438, -0.4130859375, -0.3737792969, -1.0126953125, 0.2763671875, -0.4853515625, 0.0015468597, -0.431640625, 1.1650390625, -0.35546875, 0.1585693359, -1.3232421875, -0.6884765625, -0.2373046875, -0.7924804688, 0.3459472656, 0.1021118164, -0.9643554688, -0.3896484375, 0.58984375, 0.5903320312, 1.431640625, -0.1318359375, -1.1376953125, 1.1259765625, -0.3286132812, -1.041015625, -0.7026367188, -0.1276855469, 0.8227539062, -0.1795654297, 1.0869140625, -0.2160644531, -0.9233398438, -0.1405029297, -0.0599365234, -0.673828125, -1.7041015625, 0.791015625, 1.025390625, -0.935546875, 1.7578125, -0.37109375, 0.310546875, -0.0899047852, -0.1150512695, 0.5708007812, -0.1577148438, 0.3039550781, 0.7309570312, 0.3562011719, -0.7685546875, -0.1260986328, 1.4658203125, 0.3229980469, -0.4992675781, -0.984375, -0.0542602539, 0.166015625, -1.02734375, 0.1971435547, 0.2113037109, -0.712890625, 0.2194824219, 0.3784179688, -1.142578125, -0.4768066406, -1.3828125, 0.1188354492, -0.5190429688, -1.001953125, 0.4052734375, 0.6923828125, 0.1962890625, 0.2705078125, -0.517578125, -0.4560546875, 0.5205078125, 0.1295166016, -0.2042236328, -0.0746459961, -0.4274902344, 0.5190429688, -0.5971679688, 0.6728515625, 0.0678100586, 0.6669921875, -0.5849609375, -0.2878417969, -0.7270507812, -0.0891113281, 1.41796875, -0.0662231445, -0.1088256836, -0.4809570312, 0.3200683594, -0.9418945312, -0.498046875, 0.833984375, 0.1365966797, -0.4899902344, 0.6049804688, 0.0158691406, 0.6533203125, -1.220703125, 1.2548828125, 1.15625, -0.0580444336, -0.9252929688, -0.2868652344, 0.1243896484, -0.765625, 0.0250701904, -0.1168212891, -0.1743164062, -0.685546875, -0.2595214844, 1.4921875, -1.2587890625, -0.049987793, 0.6259765625, -0.6005859375, -0.8637695312, -0.035949707, 0.4392089844, -0.5893554688, -0.0426330566, 0.48046875, -0.1306152344, -1.130859375, -0.6020507812, -0.1695556641, 1.234375, 0.6416015625, -0.0031337738, -0.2357177734, -0.4929199219, 0.0248413086, -0.3203125, 0.2078857422, -0.1172485352, -0.3708496094, -2.25, 0.011932373, -0.5170898438, 0.0599365234, 0.0460205078, 0.1156005859, 0.0608825684, 0.7075195312, 1.009765625, -0.4729003906, -0.92578125, 0.619140625, 0.7294921875, 0.5815429688, -0.0246734619, -0.1671142578, -1.5244140625, 0.1859130859, -1.1376953125, 0.0634155273, -0.2814941406, -0.6772460938, -1.37890625, 0.0333251953, -1.216796875, -0.4829101562, 0.3464355469, -0.1474609375, -0.0592346191, -1.0087890625, -0.4143066406, 0.0410461426, -0.958984375, 0.2348632812, -0.4458007812, 0.822265625, -1.0380859375, 0.4948730469, 0.8471679688, 0.0280151367, -1.0859375, -0.2834472656, -0.5180664062, -0.0305938721, 1.2314453125, -0.2736816406, -0.7412109375, -0.3618164062, 0.5537109375, -0.2121582031, -0.3054199219, -1.251953125, -0.0957641602, 0.8159179688, 0.2404785156, 0.197265625, 0.59765625, 0.3994140625, 0.0895385742, -0.1987304688, -0.4675292969, 0.0690917969, -0.4313964844, -0.5590820312, -0.1702880859, 0.3779296875, -0.1833496094, -0.2446289062, -0.2924804688, 0.0174713135, -0.1334228516, -0.6528320312, -0.5190429688, 0.4753417969, -0.5053710938, 0.1571044922, -0.4167480469, -0.2897949219, 0.7084960938, 0.6474609375, -1.1474609375, 0.609375, 0.055480957, 0.1196289062, -1.9638671875, 0.1937255859, 0.6372070312, -1.9658203125, 0.2061767578, 0.1090087891, -0.74609375, -0.2214355469, -0.8745117188, -0.845703125, 0.2819824219, 0.0832519531, -1.34375, 1.0703125, -0.5517578125, -0.3239746094, 0.044708252, 0.091003418, 0.3959960938, 0.0439758301, -1.25390625, 0.654296875, -0.0166778564, 1.20703125, 0.3044433594, 0.84375, -0.0525817871, 0.3369140625, -0.1036376953, 0.4936523438, -0.4353027344, 0.3996582031, 0.5288085938, 0.2609863281, -0.2199707031, -0.0302124023, 0.9008789062, -0.7036132812, -1.2578125, 0.0830688477, -1.109375, -0.0405273438, 0.0305175781, 0.6801757812, -0.3337402344, 0.6284179688, -0.4365234375, -0.6391601562, -0.3244628906, 0.4560546875, -0.0315246582, -1.2783203125, 1.5458984375, 0.5102539062, -0.0567932129, -0.3732910156, -0.6655273438, 0.5053710938, 0.2153320312, 0.1457519531, 0.8999023438, 0.08203125, -1.0029296875, -0.880859375, 0.4052734375, -0.9765625, 0.4624023438, 0.5395507812, -0.6865234375, -1.1005859375, -0.5649414062, -0.724609375, 1.0771484375, 1.224609375, -0.4304199219, -0.3579101562, 0.2321777344, 0.1691894531, 0.7436523438, -0.3427734375, 0.075012207, 0.1813964844, -0.0009026527, -0.1437988281, 0.5708007812, 0.1232299805, -0.1058959961, 0.1050415039, 0.5375976562, 0.0737915039, -1.85546875, 0.2282714844, -0.900390625, -0.1907958984, 0.5991210938, -0.669921875, 0.2484130859, -0.9189453125, 0.3618164062, 0.0787353516, -0.4357910156, 0.3503417969, 0.0637817383, 0.1134643555, 0.2407226562, -0.4282226562, -0.068359375, 0.1215820312, -0.2218017578, 0.73828125, -0.5224609375, 0.853515625, -0.2780761719, -0.0651855469, -1.0400390625, 1.15625, 0.177734375, -0.1931152344, 0.505859375, -0.2592773438, -0.1416015625, 1.1396484375, 0.4704589844, 0.026550293, -0.2683105469, 0.2485351562, -0.0303955078, -0.2271728516, -0.4323730469, -0.603515625, 0.0160522461, 0.1807861328, -0.6020507812, 1.0986328125, -1.0712890625, 0.0286560059, -0.3068847656, -0.1798095703, -0.0613098145, 0.6000976562, 0.6474609375, 0.4868164062, 0.1273193359, 1.03515625, -0.5170898438, 0.2734375, 0.5517578125, 0.7314453125, 0.6323242188, -0.0559997559, 0.2086181641, 1.30078125, 0.5659179688, 1.107421875, 0.6787109375, -0.1372070312, -0.4138183594, 1.634765625, 0.37890625, 0.2756347656, 0.0192565918, -0.3002929688, -0.9130859375, -0.0938110352, 0.0970458984, -0.2648925781, -0.2651367188, 0.3374023438, 0.2802734375, 0.021194458, 1.2978515625, -0.4475097656, 1.0361328125, 0.5610351562, 0.2214355469, 0.1287841797, 0.572265625, 1.3681640625, 0.6176757812, 0.1688232422, 0.4855957031, 0.5029296875, 0.2568359375, 0.5849609375, 0.8110351562, -0.0097579956, 0.3254394531, -0.751953125, -0.9873046875, -0.112487793, -0.4182128906, -0.75390625, -1.1767578125, 0.6630859375, -1.2001953125, -0.5522460938, -0.404296875, 0.4152832031, 0.0280456543, 0.3388671875, 0.8676757812, -0.124206543, 0.2604980469, -0.1107788086, 0.2700195312, 0.5356445312, 1.0634765625, 0.80078125, -0.9545898438, 0.1805419922, 0.6435546875, 0.7104492188, -0.9716796875, 1.296875, -0.1130981445, 0.55859375, 0.8115234375, -2.06640625, 0.8388671875, 0.751953125, -0.1391601562, -0.2893066406, -0.677734375, -0.5327148438, -0.3557128906, -0.5, 0.5048828125, 0.2609863281, -0.2114257812, 0.0203399658, -0.0658569336, 0.3459472656, -0.6831054688, -1.09765625, -0.0625610352, 0.9526367188, -0.8515625, 0.3232421875, 0.4309082031, 0.5083007812, -1.8759765625, -0.4313964844, 0.1649169922, 0.7241210938, 0.3955078125, 0.0926513672, 0.1833496094, 1.2294921875, 0.0817260742, -0.6669921875, 0.1031494141, 1.5078125, -1.0205078125, -0.9375, -0.4484863281, 0.1380615234, 0.1873779297, -0.1697998047, 0.2673339844, -0.0077171326, 0.7099609375, 0.9370117188, 0.515625, -0.1833496094, 0.5029296875, -0.5346679688, 1.2919921875, -0.4272460938, 0.7451171875, -0.91796875, 0.677734375, 0.2917480469, -1.1005859375, 1.4755859375, 0.2391357422, -1.361328125, 0.1459960938, -0.650390625, 0.6733398438, 0.0938110352, -0.5024414062, -1.287109375, -0.4858398438, 0.830078125, -0.1549072266, 0.08203125, 0.6567382812, 0.4084472656, 0.509765625, -0.5107421875, 0.7451171875, 0.1495361328, 0.3271484375, -0.3247070312, -0.0812988281, -0.625, 0.0452575684, 0.3137207031, -0.4079589844, -0.828125, -0.2709960938, 0.0971069336, 0.0658569336, -0.84765625, -0.3115234375, 0.47265625, 0.3071289062, 0.8349609375, -0.1148681641, 0.4716796875, 0.4943847656, -0.3049316406, 0.3210449219, -0.0276489258, 0.0459594727, -0.36328125, -0.6123046875, 0.8798828125, -0.6875, -0.1274414062, 0.693359375, 0.70703125, -0.6669921875, 0.1376953125, 0.7583007812, -1.03125, -0.900390625, -0.8061523438, -0.775390625, 0.2915039062, -0.6669921875, 0.0509033203, 0.5751953125, 0.2893066406, -2.07421875, 1.3046875, -0.2534179688, -0.5009765625, -0.018371582, 0.421875, 0.2216796875, -0.7138671875, -0.4443359375, 0.0219268799, 0.4616699219, -0.3671875, -1.3115234375, -0.7700195312, -0.5908203125, -0.3986816406, -0.5415039062, -0.7758789062, 0.2130126953, 0.3752441406, 0.3366699219, -0.3779296875, -0.0130386353, 0.2215576172, 0.2358398438, 0.4780273438, -0.3254394531, -0.2103271484, 0.0066871643, -0.0217437744, 0.7602539062, 0.2531738281, -0.2619628906, 0.1038818359, 0.5522460938, -0.9614257812, -1.583984375, -0.9702148438, 0.4272460938, 0.5122070312, -0.1378173828, 0.0983276367, 1.2568359375, 0.630859375, -0.6606445312, -0.1827392578, 0.4704589844, 0.2291259766, -0.3332519531, -0.7885742188, -0.7758789062, 0.5922851562, 0.4504394531, -0.3347167969, -1.2021484375, 0.1495361328, 0.1556396484, 1.205078125, 1.0234375, -0.3500976562, -0.9892578125, -0.2556152344, 0.4438476562, -1.1533203125, 0.615234375, 0.4169921875, -0.96484375, 0.326171875, -0.9775390625, -0.0813598633, 0.2395019531, 0.3601074219, 0.65625, 0.4951171875, 0.2282714844, -0.4440917969, -0.4670410156, -0.3393554688, 0.2342529297, -0.4794921875, 0.71484375, -0.4985351562, 0.6616210938, -0.7158203125, -0.1577148438, -0.4794921875, -0.3137207031, -0.0438537598, 0.0543823242, -0.0633544922, -0.01222229, -0.0427856445, -0.3435058594, 0.2447509766, 0.3186035156, -0.4440917969, 0.0561218262, 0.0402526855, 0.0444335938, -0.6298828125, -0.5883789062, 0.357421875, 0.2277832031, -0.2814941406, -0.3271484375, 1.173828125, 0.1348876953, 0.5244140625, -0.9086914062, 0.3549804688, 0.3420410156, -0.5283203125, -0.783203125, -0.1691894531, -0.1301269531, -0.2282714844, -0.8071289062, 0.1596679688, 0.4272460938, -0.1593017578, -0.5546875, 0.521484375, 0.3422851562, 0.0638427734, 0.6362304688, 1.0576171875, 0.4389648438, -0.3454589844, -0.5751953125, 0.4819335938, -0.0119552612, -0.1513671875, 0.3994140625, -0.5874023438, -0.7026367188, 0.435546875, -0.2104492188, 0.2309570312, 0.1618652344, -0.6450195312, 0.33984375, -0.4685058594, -0.6147460938, -0.626953125, 0.9301757812, -0.0052452087, -0.7065429688, 0.1673583984, 0.1089477539, 0.4521484375, 0.0990600586, 0.3918457031, 1.0625, -0.7060546875, 0.1336669922, -1.32421875, -0.5239257812, -0.0040626526, -0.8100585938, -0.3193359375, -0.572265625, -0.6201171875, 0.1832275391, -1.0234375, -0.3520507812, -0.2199707031, -0.2939453125, -0.2998046875, -0.3742675781, -1.357421875, -0.1580810547, -0.1784667969, 1.7490234375, -0.3620605469, -0.6977539062, -0.37109375, 0.771484375, -0.4289550781, 0.0240478516, 0.1981201172, -0.3208007812, 0.9638671875, 0.40234375, 0.0601806641, 0.9643554688, 0.8383789062, 1.4833984375, 0.5249023438, -0.626953125, 0.3159179688, -0.1922607422, 0.4606933594, 0.4736328125, -0.9233398438, 0.3798828125, -0.5512695312, 0.7080078125, 0.6279296875, -0.0982055664, -0.1400146484, 0.3461914062, 0.0739746094, 0.0448913574, -0.7548828125, -0.0394287109, 0.6000976562, 0.4978027344, -0.2196044922, -0.9565429688, 0.8779296875, 0.306640625, 0.8188476562, 0.328125, 1.08984375, -0.2990722656, 1.134765625, -0.4282226562, 0.2836914062, -0.4772949219, -0.053527832, 0.8432617188, 0.7924804688, -0.1129150391, 0.2004394531, -0.1473388672, -0.6850585938, -1.10546875, -0.63671875, 0.100402832, 0.4794921875, -0.6342773438, 0.8754882812, 0.2961425781, -0.2961425781, 0.3032226562, -0.4155273438, 0.0003967285, 0.20703125, 1.125, 0.2065429688, 1.0771484375, 0.1859130859, 0.0788574219, -0.5229492188, -0.9365234375, -0.775390625, -0.2888183594, -0.2512207031, 0.1951904297, 0.3464355469, 1.77734375, -0.638671875, -0.1942138672, 0.2027587891, 0.8642578125, 0.4685058594, -0.4252929688, 0.83203125, 0.1696777344, -0.1268310547, 0.2709960938, -0.3063964844, 0.2583007812, 0.0324707031, -0.6713867188, 0.4763183594, -0.2951660156, -0.0661010742, -0.802734375, -0.9272460938, 0.0934448242, -0.2355957031, -1.6875, -0.3823242188, -0.1759033203, -0.6840820312, -0.2360839844, -1.0048828125, 0.4467773438, -0.2534179688, 0.3383789062, -0.5131835938, 0.763671875, 0.6616210938, -0.4399414062, -0.2739257812, -0.2961425781, 0.4821777344, 0.3317871094, -0.0704956055, -0.0924072266, -0.0155029297, 0.4816894531, 0.7084960938, -0.3972167969, -0.1318359375, -0.1162719727, -0.2012939453, 0.3994140625, -0.0872192383, -1.0751953125, -12.578125, -0.3928222656, 0.4580078125, 0.9038085938, 0.0699462891, -0.3422851562, -0.3757324219, -1.2216796875, -0.4775390625, -0.4697265625, -0.9541015625, 1.94921875, -1.7412109375, -0.4211425781, 0.2541503906, -1.021484375, -0.2507324219, -0.4421386719, -0.4528808594, 0.908203125, 0.2375488281, 0.6538085938, -1.03125, -0.15625, -0.890625, 0.837890625, 0.68359375, 0.4458007812, 0.3029785156, 0.0880737305, -0.0408935547, -0.3657226562, 0.0891113281, -0.3491210938, -0.5458984375, 0.5244140625, -0.1622314453, 0.3903808594, 0.1079711914, -0.662109375, 0.7158203125, -0.0878295898, 0.1184082031, 0.69921875, -0.6127929688, -0.4321289062, -0.6479492188, -0.3547363281, 0.578125, 0.3967285156, -0.4165039062, 0.7807617188, 0.1245727539, -0.2342529297, -1.083984375, 0.2456054688, -0.7553710938, -0.978515625, -0.0137252808, 1.4140625, -0.1472167969, 1.302734375, 0.7963867188, 0.3464355469, -0.2976074219, 0.2149658203, 0.0811767578, -0.6118164062, 1.623046875, -0.5693359375, 0.4582519531, -0.5830078125, 0.6118164062, -1.1181640625, 0.7333984375, 0.3269042969, -1.6474609375, 0.58984375, -0.5727539062, 0.4521484375, 0.6206054688, -0.5341796875 ]
Varying numbers of civilian scientists and engineers managed survey operations and maintained certain navigation and sonar equipment, usually about 12 oceanographers from the Naval Oceanographic Office, some personnel from the Naval Applied Sciences Laboratory (NASL, later NSSNF), and about 7 technical representatives from private corporations. Dutton was taken out of service ca. 1989. Contract award by MARAD in September 2007 to All Star Metals Inc. for scrapping in Brownsville, TX with ship fully dismantled on 5 June 2008. Notes References Navsource Memorial web site for USNS Bowditch, USNS Dutton and USNS Michelson External links Memorial web site for USNS Bowditch, USNS Dutton and USNS Michelson Navy Survey Ship (AGS) Designator Listing Victory ships Ships built in Portland, Oregon 1945 ships World War II merchant ships of the United States Cold War auxiliary ships of the United States Survey ships of the United States Navy Bowditch-class survey ships
[ -0.4204101562, 0.1219482422, -0.4545898438, 0.3000488281, -0.3471679688, 0.7221679688, 0.4272460938, 0.1350097656, 0.0657958984, -0.056854248, -0.2061767578, -0.4191894531, -0.7436523438, 1.25, -0.3315429688, 0.650390625, -0.3764648438, -0.4243164062, -0.5161132812, -0.0772705078, 0.0799560547, 0.4074707031, 0.3923339844, -1.271484375, 0.0611877441, 0.6987304688, -0.2934570312, -0.388671875, -0.0511779785, -0.2827148438, -0.7377929688, -0.0642700195, -1.6923828125, 0.8823242188, 0.0041618347, 0.5004882812, -0.9013671875, 1.1572265625, -0.1019287109, 0.435546875, 0.2106933594, -0.48046875, 0.2305908203, 0.1678466797, -0.517578125, -0.2846679688, -0.0486755371, -0.6552734375, -0.5336914062, 1.271484375, -0.634765625, 0.75, -0.0668334961, -0.1408691406, 0.33203125, -0.6401367188, -0.853515625, -0.2045898438, 0.6376953125, 0.3361816406, 0.31640625, -0.1588134766, -1.2490234375, -0.9887695312, 0.400390625, 0.7421875, 0.595703125, 0.080078125, -0.7236328125, 0.5209960938, -0.0294952393, -0.3786621094, -0.3647460938, -0.4016113281, 0.2393798828, 0.666015625, -0.458984375, 1.533203125, 0.3110351562, -0.7465820312, -0.9326171875, -0.0202331543, -0.4614257812, -0.0884399414, -1.4150390625, -0.9663085938, 0.1776123047, -0.0059585571, -0.5083007812, 0.9672851562, -0.2249755859, -0.6064453125, -1.3974609375, -0.6225585938, -0.3728027344, 0.1317138672, -0.697265625, -0.4558105469, 0.0177612305, 0.0800170898, 0.8676757812, 0.2055664062, 0.9228515625, 0.1337890625, -1.732421875, 0.822265625, 0.1810302734, -0.978515625, -0.6440429688, 0.4189453125, 0.7827148438, 0.1716308594, 0.5825195312, -0.0308532715, -1.44140625, 0.2368164062, -0.2200927734, -0.673828125, -1.333984375, 0.8325195312, 0.9790039062, -0.3461914062, 1.48046875, -0.2247314453, -0.0836181641, 0.0163269043, 0.028213501, 0.6875, 0.2275390625, -0.3559570312, 0.8564453125, 0.6220703125, -0.7202148438, 0.1437988281, 1.5966796875, 0.4694824219, -0.0634765625, -1.0830078125, 0.1900634766, 0.0925292969, -0.1022949219, -0.0087356567, 0.8994140625, -1.12890625, -0.0267181396, 0.1220092773, -0.890625, 0.6499023438, -1.037109375, 0.552734375, -0.2587890625, -1.3193359375, 0.7939453125, -0.2807617188, 0.1580810547, -0.71484375, -0.5869140625, -0.8442382812, 0.3332519531, 0.6787109375, -0.326171875, -0.92578125, 0.1964111328, 0.4377441406, -0.3110351562, 0.0790405273, -0.1341552734, 1.3212890625, -0.935546875, -0.2066650391, -0.3239746094, 0.1522216797, 1.3115234375, -1.1416015625, 0.2641601562, -0.2983398438, 0.2600097656, -1.15234375, -0.5961914062, 0.3518066406, 0.1286621094, 0.0687866211, 1.0390625, -0.0701293945, 0.1287841797, -0.6245117188, 0.583984375, 0.4191894531, -0.943359375, -0.1495361328, 0.1599121094, -0.6083984375, -1.0595703125, 0.6655273438, -0.5283203125, -0.3820800781, -0.4951171875, 0.032409668, 0.7670898438, -0.6025390625, -0.623046875, -0.0346679688, -0.5927734375, -0.8383789062, -0.2396240234, 0.728515625, -0.330078125, -0.2170410156, -0.1423339844, -0.7241210938, -0.5703125, -0.0692138672, -0.0080718994, 0.8706054688, 0.2819824219, 0.6489257812, 0.4365234375, -0.2182617188, 0.9067382812, -0.7275390625, 0.3586425781, 0.0718383789, -0.517578125, -1.529296875, 0.2814941406, -0.7177734375, 0.5629882812, 0.0394897461, 0.6333007812, 0.102355957, -0.2364501953, 1.1513671875, 0.2514648438, -0.9506835938, 0.4934082031, 0.3264160156, 0.5327148438, -0.2391357422, -0.7895507812, -1.2900390625, -0.1044311523, -0.1168212891, -0.24609375, 0.0122833252, -1.203125, -0.94140625, -0.265625, -0.8251953125, -0.5776367188, 0.623046875, -0.1650390625, -0.0102386475, -1.3623046875, -0.248046875, 0.4846191406, -0.1012573242, -0.2795410156, -0.9921875, 1.4072265625, -0.755859375, 0.7568359375, 0.5830078125, 0.3278808594, -0.6298828125, -0.2239990234, -0.1572265625, -0.5444335938, 0.4848632812, 0.7026367188, -0.4909667969, -0.6958007812, 0.5927734375, 0.0227203369, -0.5537109375, -1.185546875, -0.3156738281, 0.6435546875, 0.4396972656, 0.3100585938, 0.576171875, 0.0130004883, 0.7006835938, -0.3742675781, -0.7270507812, 0.2269287109, -0.6103515625, -0.4450683594, 0.576171875, 0.5161132812, 0.3181152344, -0.4006347656, 0.7358398438, 0.2286376953, -0.3530273438, -0.61328125, -0.7104492188, 0.5673828125, -0.3410644531, 0.0529174805, -0.6811523438, -0.404296875, 0.2697753906, 0.720703125, -1.2783203125, 0.603515625, 0.248046875, 0.6118164062, -1.06640625, 0.2340087891, 0.8061523438, -1.42578125, -0.8315429688, 0.2629394531, -0.5087890625, 0.0308685303, -1.0693359375, -0.3779296875, 0.2197265625, -0.2419433594, -0.7392578125, 1.2900390625, -0.7446289062, 0.2907714844, -0.3759765625, 0.2724609375, 0.1478271484, -0.8940429688, -1.7783203125, 0.552734375, 0.3916015625, 0.1157226562, -0.2841796875, 0.7958984375, -0.1971435547, 0.55859375, 0.2770996094, 0.2027587891, -0.6948242188, -0.0152053833, 0.2993164062, -0.3723144531, -0.1813964844, -0.4377441406, 0.7758789062, -0.9672851562, -0.720703125, 0.564453125, -1.2353515625, 0.6796875, 0.1044921875, -0.0084457397, -0.5439453125, 0.4145507812, 0.3835449219, -0.3757324219, -0.3698730469, 0.9233398438, -0.1580810547, -1.2724609375, 1.19140625, 0.5600585938, -0.028793335, -0.0113296509, 0.2756347656, 0.3881835938, -0.0319213867, 0.4812011719, 0.501953125, 0.4201660156, -0.7749023438, -0.0507202148, 0.9189453125, -0.3190917969, 1.32421875, 0.4521484375, -1.091796875, -0.8862304688, -0.1083374023, -0.5327148438, 0.4990234375, 0.9858398438, -0.4621582031, -0.045715332, -0.5151367188, 0.1306152344, 1.3779296875, -0.3562011719, -0.4934082031, -0.7475585938, -0.3166503906, -0.6342773438, 0.3627929688, 0.9521484375, -0.7055664062, -0.2514648438, 0.3464355469, 0.0197143555, -1.3017578125, 0.5434570312, -1.3525390625, 0.8696289062, 1.142578125, -0.8310546875, -0.0623474121, -0.9306640625, -0.1282958984, 0.0625, 0.0688476562, 0.1122436523, 0.3996582031, -0.2318115234, -0.2780761719, -0.5249023438, -0.1343994141, -0.6171875, 0.1326904297, 0.8774414062, -0.5190429688, 0.4921875, -0.5615234375, -0.9379882812, 0.1029052734, 1.41796875, -0.0724487305, 0.0109939575, 0.5942382812, -0.5595703125, -0.0352478027, 0.5903320312, 0.708984375, 0.0541687012, 0.3491210938, 0.1951904297, -0.6123046875, -0.6669921875, -0.421875, -0.2536621094, -0.4245605469, -0.0247650146, -0.7358398438, 1.6982421875, -0.4157714844, 0.0473022461, -0.4318847656, 0.0211029053, -0.0420532227, 0.802734375, 0.5048828125, 0.4067382812, 0.085144043, 0.7993164062, -0.6645507812, -0.2175292969, 0.412109375, 0.2868652344, 0.57421875, -0.0720214844, 0.5463867188, 1.1025390625, 0.0706787109, 1.111328125, 0.630859375, -0.6372070312, -0.546875, 1.3115234375, 0.1759033203, 0.1507568359, 0.0914916992, 0.7094726562, -0.0888671875, 0.1381835938, 0.5229492188, -0.7143554688, 0.0643920898, 0.48828125, 0.4892578125, 0.1694335938, 0.1220092773, -0.6733398438, 1.2060546875, 1.259765625, 1.021484375, 0.6166992188, 0.3156738281, 1.2587890625, 0.34375, -0.2683105469, 0.2048339844, 0.7158203125, 0.1359863281, 0.849609375, 0.640625, -0.5283203125, 0.2088623047, -0.5048828125, -0.4831542969, 0.009979248, -0.412109375, -0.8725585938, -0.9858398438, -0.2504882812, -0.9770507812, -0.4831542969, -0.4191894531, -0.2197265625, 0.3291015625, -0.1538085938, 1.0771484375, -0.4812011719, 0.1100463867, 0.4519042969, -0.00207901, 0.2863769531, 0.8159179688, -0.0991821289, -0.9208984375, -0.2731933594, 0.7338867188, 0.7192382812, -0.5190429688, 0.66015625, 0.0496826172, 0.87109375, 1.0478515625, -1.7314453125, 0.94140625, 1.0546875, -0.0728759766, -0.4719238281, -0.2624511719, -1.0869140625, -0.6870117188, -0.3869628906, 0.7602539062, -0.1529541016, 0.7377929688, 0.625, 0.1541748047, 0.06640625, -0.552734375, -1.2783203125, -0.0252075195, 0.6049804688, -0.908203125, 0.2182617188, 0.1635742188, -0.0969848633, -1.8046875, -0.1141967773, -0.0684814453, 0.4401855469, 0.1175537109, 0.2136230469, 0.80859375, 0.9169921875, -0.5576171875, -0.904296875, 0.5004882812, 0.9990234375, -0.3435058594, -0.4880371094, -0.7373046875, 0.5537109375, 0.5825195312, -0.0603027344, -0.275390625, -0.2580566406, 1.96875, 0.3046875, 0.5317382812, 0.0170135498, 0.1424560547, -0.1132202148, 0.77734375, 0.2099609375, 0.5830078125, -0.2580566406, 1.5556640625, 0.4228515625, -0.0555419922, 1.4541015625, -0.2541503906, -1.458984375, -1.0732421875, -0.0102081299, 0.6655273438, 0.22265625, -0.6669921875, -0.84765625, -0.044921875, 0.3586425781, -0.2156982422, 0.3474121094, 0.3916015625, 0.490234375, 0.2709960938, -1.1669921875, 0.6655273438, -0.1656494141, 0.6293945312, -0.1038208008, -0.1216430664, -0.2756347656, -0.361328125, -0.3103027344, -0.1224975586, -0.2154541016, 0.0863647461, -0.0881958008, 0.5786132812, 0.0003697872, -0.5239257812, 0.521484375, -0.5610351562, 0.8447265625, 0.9116210938, 0.0440368652, 0.33984375, -0.0266571045, -0.0197753906, -0.1518554688, 0.8881835938, 0.7138671875, 0.0438232422, 0.9658203125, -0.4465332031, 0.2712402344, 1.0615234375, 0.5454101562, -0.5048828125, -0.0933837891, 1.09375, -0.234375, -0.5219726562, -0.892578125, 0.1246337891, -0.0471191406, -0.71484375, 0.1336669922, 0.8681640625, 0.83984375, -2.298828125, 0.0510253906, -0.4997558594, -0.73828125, -0.1159057617, 0.2108154297, 0.0241851807, -1.150390625, -0.7172851562, -0.2995605469, 0.7583007812, -0.2526855469, -1.69921875, -0.4213867188, -0.7373046875, -0.5107421875, 0.5673828125, -0.3051757812, 0.0203552246, -0.8291015625, 0.8603515625, -0.353515625, -0.1478271484, 0.1945800781, 0.5561523438, 0.053527832, 0.0536804199, -0.0194549561, -0.4963378906, 0.2392578125, 0.9057617188, 0.4113769531, -0.4016113281, 0.5927734375, -0.1702880859, -0.970703125, -1.3388671875, -1.052734375, -0.053314209, 0.7622070312, -0.0980224609, 0.0317687988, 1.357421875, 0.5927734375, -1.4970703125, -0.2069091797, 0.4660644531, -0.2104492188, -0.3234863281, -0.5366210938, -0.9291992188, -0.2990722656, 0.8046875, -0.7431640625, -0.529296875, 0.4375, -0.0795288086, 0.8725585938, 0.4592285156, 0.3999023438, -0.7978515625, -0.8325195312, 0.60546875, -0.595703125, 0.6533203125, 0.3649902344, -1.6630859375, 0.8759765625, -1.732421875, 0.3713378906, 0.5385742188, 0.3244628906, 0.7895507812, 0.5703125, 0.9516601562, 0.6977539062, -0.8154296875, 0.2183837891, 0.1032104492, -0.3474121094, 0.83984375, 0.4956054688, 0.9721679688, -0.857421875, 0.1032714844, -0.6879882812, -0.89453125, 0.7685546875, -0.4750976562, -0.1333007812, 0.3359375, -0.2800292969, -0.2783203125, -0.5268554688, -0.1495361328, -0.2492675781, -0.6650390625, 0.5205078125, -0.2763671875, -0.84375, -0.5595703125, -0.1727294922, 0.2026367188, -0.1624755859, -0.0761108398, 1.3115234375, -0.4609375, 0.3405761719, -0.8852539062, 0.1047363281, 0.7817382812, -0.4877929688, -0.8696289062, -0.3090820312, -0.6201171875, -0.3708496094, -1.15625, 0.2452392578, -0.1719970703, 0.1800537109, -0.5380859375, 0.6254882812, -0.2578125, -0.3566894531, 1.0517578125, 1.0556640625, 0.1689453125, -0.1358642578, -0.0665893555, 0.3505859375, 0.3547363281, -0.1022949219, 0.9560546875, -0.708984375, -0.2944335938, 0.5771484375, -0.4460449219, -0.5439453125, 0.3610839844, -0.7099609375, 0.5693359375, -1.087890625, -0.3889160156, -0.30859375, 0.4782714844, 0.2327880859, -0.2739257812, -0.0555419922, -0.3549804688, -0.4604492188, -0.3659667969, -0.1217041016, 0.5380859375, 0.8110351562, 0.1027832031, -1.044921875, 0.4157714844, 0.0626220703, -0.6865234375, -0.5952148438, -0.4697265625, -0.5, -1.1484375, -0.578125, -1.5517578125, -0.0416870117, 0.5107421875, 0.3464355469, -0.4597167969, -1.3564453125, -0.5668945312, 0.1905517578, 0.0629272461, -0.7436523438, -0.7900390625, -0.96875, 0.5356445312, -0.94921875, -0.3115234375, 0.0491943359, -0.3171386719, 0.796875, 0.2067871094, 1.0478515625, 1.421875, 0.8500976562, 1.13671875, -0.4592285156, -0.3288574219, -0.7270507812, -0.2861328125, 0.1809082031, 1.359375, -0.1353759766, 0.9545898438, -1.0205078125, 0.716796875, 0.8583984375, -0.4519042969, -0.2712402344, 0.4580078125, 0.2412109375, 0.1895751953, 0.1115112305, -1.0908203125, 0.984375, 0.3642578125, 0.4548339844, -0.6801757812, 0.7255859375, 0.4426269531, 0.6772460938, 0.640625, 1.0361328125, -0.5014648438, 0.3305664062, -0.8203125, 0.6010742188, -0.2680664062, 0.6005859375, 0.3872070312, 1.1689453125, 0.3579101562, 0.51171875, -0.0784912109, -0.7412109375, -1.05078125, -0.9125976562, 0.6884765625, -0.2998046875, -0.1105957031, 0.4638671875, 0.3403320312, 0.2270507812, -0.1552734375, 0.082824707, 0.1983642578, -0.1805419922, 1.0498046875, 0.6767578125, 0.3540039062, -0.0856933594, -0.9096679688, 0.7880859375, -0.1317138672, -0.8505859375, -0.1340332031, -0.4479980469, -0.18359375, 0.6938476562, 1.236328125, -0.6474609375, -0.630859375, -0.3288574219, -0.2020263672, 0.0337524414, -0.333984375, 0.6147460938, 1.0419921875, -0.2937011719, 0.1539306641, -0.6708984375, 0.3022460938, 0.5615234375, -0.6015625, -0.1168212891, -0.6787109375, -0.0158843994, -0.1492919922, -0.1865234375, 0.3125, -0.1854248047, -0.990234375, 0.2705078125, -0.0561218262, -0.2729492188, -0.5893554688, -1.0439453125, -0.3525390625, -0.2113037109, 0.4750976562, -0.9038085938, 0.7114257812, 0.3244628906, -0.2863769531, -0.8168945312, -0.548828125, 0.3010253906, -0.1279296875, -0.3337402344, 0.6430664062, 0.2758789062, -0.0153503418, -0.1452636719, -0.2165527344, 0.4597167969, 0.3916015625, 0.2426757812, 0.1589355469, 0.4865722656, -1.783203125, -12.6796875, -0.4814453125, 0.3229980469, 0.7807617188, -0.4001464844, -0.4096679688, 0.0618591309, -1.15234375, 0.51953125, 0.2288818359, -0.5844726562, 1.69921875, -1.03125, -0.703125, 0.4809570312, -1.0361328125, 0.0969238281, -0.4064941406, 0.1455078125, 0.943359375, 0.0863037109, -0.079284668, -0.7319335938, -0.5634765625, -1.1376953125, -0.0537719727, 0.4191894531, -0.4719238281, -0.2042236328, -0.1122436523, -0.1884765625, -0.51171875, 0.2785644531, 0.59375, 0.1826171875, 0.5927734375, 0.3229980469, -0.4379882812, -0.83984375, -0.4831542969, 0.2449951172, 0.0306549072, -0.283203125, 0.2005615234, -0.2097167969, 0.0858764648, -0.255859375, -0.595703125, 0.69140625, 0.3122558594, -0.4011230469, 1.046875, 0.0420837402, -0.6928710938, -0.9560546875, -0.580078125, 0.7163085938, -1.5830078125, -0.2817382812, 0.7397460938, 0.4055175781, 1.7822265625, -0.59765625, 0.1900634766, -0.3515625, 0.2749023438, 0.0269927979, -0.4328613281, 1.267578125, 0.2102050781, -0.1717529297, -0.9814453125, 0.2159423828, -0.4416503906, 0.3728027344, 0.6899414062, -1.0751953125, -0.0932006836, -0.0679931641, 0.2951660156, -0.0842285156, -0.4611816406 ]
In mathematics, the immanant of a matrix was defined by Dudley E. Littlewood and Archibald Read Richardson as a generalisation of the concepts of determinant and permanent. Let be a partition of an integer and let be the corresponding irreducible representation-theoretic character of the symmetric group . The immanant of an matrix associated with the character is defined as the expression Examples The determinant is a special case of the immanant, where is the alternating character , of Sn, defined by the parity of a permutation. The permanent is the case where is the trivial character, which is identically equal to 1. For example, for matrices, there are three irreducible representations of , as shown in the character table: As stated above, produces the permanent and produces the determinant, but produces the operation that maps as follows: Properties The immanant shares several properties with determinant and permanent. In particular, the immanant is multilinear in the rows and columns of the matrix; and the immanant is invariant under simultaneous permutations of the rows or columns by the same element of the symmetric group. Littlewood and Richardson studied the relation of the immanant to Schur functions in the representation theory of the symmetric group. References Algebra Linear algebra Matrix theory Permutations
[ -0.6059570312, 0.2180175781, -0.2915039062, 0.1765136719, -0.1217651367, 0.3527832031, -0.3312988281, 1.279296875, -0.0456542969, 0.2761230469, -0.0702514648, -0.2478027344, -0.5092773438, -0.1065063477, 0.8056640625, -0.3723144531, 0.0737915039, 0.6245117188, -0.075378418, 0.2854003906, 0.4189453125, -0.2958984375, 0.4733886719, -0.5493164062, -0.8427734375, -0.7319335938, -0.5180664062, -0.4643554688, -0.0050201416, -0.2022705078, -0.556640625, -0.0982055664, -0.3051757812, 0.0172271729, -0.6362304688, 0.0697021484, -0.5009765625, -0.5454101562, 0.2124023438, 0.1150512695, -0.4360351562, -0.9140625, -0.1024780273, 0.3969726562, 0.0153045654, 0.6479492188, -0.1635742188, -0.0191802979, -0.5385742188, 0.9838867188, -0.0342407227, 0.0300750732, 0.634765625, -0.1954345703, 0.8466796875, -0.3967285156, 0.9155273438, -1.046875, -0.075378418, 0.1895751953, -0.0603942871, -0.5590820312, -0.0888671875, -0.6879882812, 0.3037109375, -0.365234375, 0.2027587891, 1.240234375, -0.0673217773, 0.64453125, -0.2568359375, 0.349609375, -1.0810546875, -0.17578125, -0.0314025879, -0.4519042969, 0.3696289062, 1.1865234375, -0.2966308594, -0.1713867188, -0.4143066406, -0.7026367188, -0.6791992188, -0.541015625, -0.5278320312, -1.05078125, 0.828125, -1.263671875, 0.08203125, 0.9252929688, 0.3754882812, 0.2044677734, -0.263671875, -0.248046875, 0.2492675781, 0.7114257812, 0.5776367188, -0.8486328125, -0.6743164062, -1.0009765625, 0.3156738281, -1.140625, -0.0044403076, -0.2066650391, -0.7705078125, 1.7021484375, 0.14453125, -0.0372009277, -0.2775878906, -1.7431640625, 0.65625, -0.3557128906, 0.4040527344, 0.4287109375, 1.1279296875, 0.0234832764, 0.5375976562, -0.978515625, -0.6977539062, 0.4606933594, -0.1516113281, -0.0156402588, -0.2927246094, 0.1788330078, -0.0097045898, 0.3193359375, 0.255859375, 0.2124023438, -0.9013671875, 0.134765625, -0.630859375, 0.86328125, -0.4111328125, -0.2634277344, 1.837890625, -0.2482910156, -1.03515625, 0.8842773438, -0.2360839844, -0.0461730957, 0.46484375, 0.4467773438, 0.9624023438, -0.2580566406, 0.0561828613, 0.1947021484, -0.7377929688, 1.4921875, -2.4296875, 0.0670776367, -0.7446289062, -0.2805175781, -0.2222900391, -0.2392578125, -1.0205078125, 0.1452636719, -0.1458740234, -0.2421875, -0.8930664062, -0.6982421875, -0.6328125, -1.640625, 0.7319335938, 1.486328125, -0.2624511719, 0.869140625, 0.1672363281, -1.9853515625, -0.1143798828, 0.0587768555, -1.263671875, 0.4167480469, -0.6762695312, 0.1911621094, 1.05078125, -1.7978515625, -0.6997070312, -0.658203125, 0.8681640625, -0.619140625, 0.775390625, -1.29296875, 1.0205078125, -0.7583007812, 0.1314697266, 0.0055274963, 0.5864257812, 0.1644287109, -0.1628417969, -0.0254058838, 0.3701171875, 0.1644287109, -0.0837402344, -0.30859375, -0.4619140625, 0.0391235352, -0.6313476562, -0.5791015625, 0.462890625, 0.7607421875, 1.0771484375, -0.8979492188, -0.833984375, -0.439453125, 0.5, -0.5834960938, -0.1195678711, 0.3508300781, 0.6870117188, -0.7495117188, -0.7299804688, 0.0452270508, 0.077331543, 1.3486328125, -1.21875, -0.2963867188, 0.4965820312, -0.5981445312, 1.0703125, 0.12890625, 0.039855957, -0.7524414062, -0.0475463867, -1.4228515625, 0.5708007812, -0.6259765625, 0.63671875, 0.5810546875, -0.3527832031, 0.587890625, 0.9213867188, 1.40625, -0.9438476562, -0.5595703125, 0.873046875, -0.0131530762, 0.1616210938, 0.1704101562, -0.0946044922, -0.6030273438, -0.173828125, 0.2709960938, 0.1429443359, -0.927734375, 0.5458984375, -0.1405029297, 0.7231445312, -0.5927734375, -0.7963867188, 1.029296875, 0.1599121094, 0.7587890625, 0.26171875, 1.3291015625, -0.5708007812, 0.349609375, 0.0748291016, 0.0501708984, -0.8813476562, 0.3044433594, 0.1129760742, 0.3039550781, 0.9296875, -0.4150390625, 0.6181640625, 0.1104125977, -0.041595459, 0.3645019531, 0.1446533203, -0.8017578125, 0.3989257812, 0.1351318359, -0.3957519531, -0.4287109375, 0.5024414062, 0.2264404297, 0.1865234375, 0.0294799805, 0.8559570312, -0.4318847656, 0.6235351562, 0.3037109375, 0.1715087891, 0.0151138306, -0.4216308594, 0.9716796875, -0.2116699219, 0.2971191406, 1.205078125, 0.287109375, 0.1486816406, -0.3999023438, 0.669921875, -0.2388916016, -0.8354492188, 0.4738769531, -0.2333984375, -0.4758300781, 0.3269042969, 0.6313476562, 0.5537109375, 0.3410644531, 0.0252380371, 0.0059089661, -0.0444030762, -0.4714355469, -0.1710205078, -0.3630371094, 0.1256103516, 0.3684082031, -0.4228515625, -0.603515625, -0.59765625, 0.4848632812, -0.7109375, 0.4733886719, 0.2917480469, -0.6572265625, 0.5581054688, -0.0268859863, -0.5668945312, -0.951171875, -0.0235443115, 0.0489501953, -0.3405761719, 0.7001953125, -0.8798828125, 0.2445068359, -0.146484375, 0.0126495361, -0.3217773438, 1.3525390625, -0.0349121094, -0.3129882812, -0.9677734375, -0.7548828125, -0.2377929688, -0.1005249023, 0.7602539062, 0.6069335938, 0.849609375, -0.9448242188, -0.1947021484, 0.4072265625, 0.7026367188, 0.572265625, -0.8969726562, -1.2265625, -0.2670898438, -0.1921386719, -0.7026367188, 0.4235839844, -0.9106445312, 0.4074707031, 0.1337890625, -1.1669921875, -0.4853515625, 0.2275390625, -0.2058105469, 0.5903320312, 1.0419921875, -0.9926757812, -0.298828125, -0.3041992188, 0.1771240234, 0.0311584473, 1.1943359375, 1.33203125, 1.3447265625, -0.4699707031, -0.7084960938, -0.2119140625, -1.0888671875, 0.069152832, -0.0066337585, -0.4113769531, -0.9975585938, -0.0362548828, -0.66796875, 0.3190917969, -0.1970214844, -1.1689453125, -0.1667480469, -0.392578125, 0.154296875, -1.4248046875, 0.2022705078, 0.6088867188, -0.0207061768, 0.5869140625, -0.4365234375, -0.8520507812, 0.4360351562, 0.5771484375, -1.5146484375, 0.3991699219, 0.8422851562, 0.3276367188, -0.0163269043, 0.7646484375, 1.2177734375, -0.1416015625, -1.033203125, -0.0480041504, 1.443359375, 0.6826171875, 1.236328125, 0.2854003906, 0.1477050781, -0.4929199219, 0.5961914062, -0.9672851562, 0.4169921875, 0.4438476562, -0.57421875, 0.1544189453, 0.1805419922, -0.1078491211, -0.5239257812, 0.0365905762, -0.5659179688, -0.1199951172, -0.6186523438, -0.630859375, 0.0549926758, -0.2269287109, 0.1270751953, -0.6577148438, 0.7661132812, 0.1125488281, -0.069152832, -0.2951660156, 0.2893066406, -0.0006012917, 1.537109375, -0.5546875, -0.716796875, -0.3571777344, 0.6547851562, -0.0776977539, 0.2346191406, 0.884765625, 0.0303497314, 0.6967773438, 0.2194824219, -0.5815429688, 0.4377441406, -0.2932128906, 0.8247070312, -0.287109375, 0.677734375, 0.0065155029, 0.9833984375, 0.5654296875, -0.3134765625, 0.3273925781, 0.2465820312, 0.5825195312, 0.6235351562, 0.158203125, 0.1583251953, -0.1041259766, 0.0459899902, 0.1931152344, -0.0834350586, -0.6298828125, -0.1309814453, -0.0284729004, -1.435546875, -0.9541015625, 0.1252441406, -0.5903320312, -0.2856445312, 0.2739257812, 0.0116424561, -0.4619140625, 0.0450134277, 0.3767089844, -0.2091064453, -0.4663085938, -0.1072387695, -0.0048789978, -0.5190429688, 0.2922363281, 0.1157226562, -1.0478515625, 0.4204101562, 0.794921875, 1.17578125, 0.2565917969, 0.4814453125, 0.013633728, -0.7856445312, -0.1416015625, -0.8095703125, -0.5307617188, 0.9072265625, -0.1079711914, -1.177734375, -0.5288085938, -1.1689453125, 0.3940429688, -0.0629272461, -0.3637695312, -1.1240234375, 0.2768554688, 0.2924804688, -0.2822265625, 1.5458984375, 0.50390625, -0.9189453125, 0.9794921875, 0.716796875, 0.7075195312, 0.1335449219, 0.3513183594, 1.1328125, -0.2724609375, -1.1376953125, -1.1181640625, -0.2149658203, 0.2971191406, 0.5483398438, -0.775390625, -0.3234863281, 1.3955078125, -0.3330078125, -0.4499511719, 1.076171875, -0.0528259277, -0.9970703125, 1.265625, 0.5756835938, 0.5610351562, 0.1063842773, -0.4931640625, -0.6669921875, -0.38671875, 0.1706542969, -0.6396484375, -0.6635742188, 0.1563720703, 0.37890625, 0.2565917969, -0.2526855469, 0.3168945312, 0.5522460938, 0.359375, -0.1361083984, -0.3937988281, 0.3894042969, -0.0051765442, 0.5546875, -0.3747558594, 0.2690429688, 0.1843261719, -0.8129882812, -0.6962890625, -0.4064941406, -0.1489257812, -0.4819335938, 0.7607421875, -1.453125, 0.2985839844, 0.2021484375, 0.3679199219, 0.2890625, -0.630859375, -0.3095703125, 0.0546264648, -0.0071792603, 1.2724609375, -0.4436035156, 1.0498046875, 0.1545410156, 0.5239257812, -0.6547851562, 1.009765625, 2.470703125, 0.3413085938, 0.4067382812, 0.3923339844, -1.5576171875, -0.7319335938, 0.2301025391, 0.4685058594, 0.0530090332, 0.2517089844, -0.2897949219, -0.6918945312, -0.3425292969, -0.6201171875, 0.1407470703, 0.9252929688, 0.0797119141, 0.1353759766, -0.3332519531, 0.0280609131, -0.3552246094, -0.3188476562, 0.0160827637, -0.7211914062, -0.203125, 0.5014648438, -1.328125, 0.5688476562, -1.62109375, -0.1472167969, -0.7724609375, -0.2907714844, 0.5366210938, -0.1624755859, 0.3596191406, 0.71875, -0.9755859375, 0.0146484375, 0.120300293, -0.4870605469, -0.2340087891, 0.0169525146, -0.3579101562, 0.0198516846, -0.0702514648, -0.9296875, -0.3830566406, 0.8793945312, 0.5366210938, -0.2056884766, -0.5581054688, -0.4770507812, -0.310546875, -0.7290039062, 0.0528259277, -0.3891601562, -0.7446289062, 0.9213867188, 0.7270507812, 0.1667480469, 0.880859375, 0.546875, -0.314453125, 0.8310546875, 0.8608398438, 0.0464172363, 0.1981201172, -0.4018554688, 0.5947265625, 0.5981445312, -1.466796875, 0.5473632812, -0.833984375, 0.4020996094, 1.3447265625, 0.0794067383, -0.8916015625, -0.4211425781, -0.0709228516, -1.0703125, -0.4145507812, 0.98046875, -0.6708984375, 1.2158203125, -0.8198242188, -0.1522216797, 0.2854003906, 0.1147460938, -1.1064453125, 0.3854980469, 0.3627929688, -0.3088378906, -0.9584960938, 0.0393371582, -0.3464355469, 0.3056640625, -0.8881835938, -0.8237304688, -0.2531738281, -0.0858154297, -0.9379882812, 0.5498046875, 0.092956543, -0.3720703125, -0.1319580078, 1.0830078125, -0.5864257812, 0.0166473389, -0.7041015625, 0.6655273438, 1.8046875, 0.1999511719, -0.100402832, 1.4423828125, 0.4250488281, 0.40234375, -0.8071289062, -0.564453125, -0.2509765625, -0.4233398438, 0.0081634521, -0.6103515625, 0.1292724609, -0.859375, -0.2077636719, -0.6469726562, -0.7602539062, 0.4721679688, 0.0742797852, -0.5698242188, 0.0037517548, 0.0853881836, -0.6298828125, -0.4418945312, -0.7822265625, 1.1875, 0.2734375, -0.5512695312, -0.1895751953, 0.1518554688, -0.9658203125, -0.4323730469, -0.2374267578, -0.0701904297, 1.078125, -0.0974731445, 0.5234375, 0.3869628906, -0.043182373, 0.0220489502, 1.0009765625, -0.1319580078, -0.1838378906, 0.310546875, -0.1280517578, 0.2435302734, -0.7353515625, 0.0208892822, 0.5380859375, -0.5849609375, 0.9375, -1.3232421875, -0.6240234375, -0.3342285156, -0.2727050781, -0.1921386719, 0.0399780273, 0.1964111328, 1.6328125, 0.3186035156, -0.2709960938, 0.4362792969, 0.0953979492, -0.053527832, -0.1428222656, -0.3298339844, 0.0545349121, -0.5903320312, -0.5830078125, -0.9428710938, 0.5883789062, 0.4423828125, 0.6997070312, 0.224609375, 0.0032539368, -0.384765625, 0.2946777344, -0.5732421875, 0.4255371094, -0.31640625, -0.5595703125, -0.1810302734, -0.1030273438, 1.73828125, 0.2629394531, 0.2956542969, -0.1171875, -0.4946289062, -0.541015625, -0.3959960938, 0.5112304688, -0.1166992188, 1.1376953125, 0.78515625, -0.2504882812, -0.7172851562, 0.0551757812, 0.1339111328, -0.0290985107, -0.6772460938, -0.2456054688, -0.0905151367, -0.3237304688, 0.0332336426, -0.2727050781, -0.5927734375, 0.4152832031, -0.4973144531, -0.4677734375, -1.181640625, 0.2122802734, -0.0593566895, 0.203125, -0.595703125, -0.2741699219, -1.052734375, -0.9658203125, -1.8154296875, 1.2177734375, -0.0019168854, -0.1450195312, 0.326171875, 1.7431640625, 0.5161132812, 0.1396484375, -0.4436035156, -0.1195068359, -0.7661132812, -0.3913574219, -0.0204925537, 0.6220703125, 0.6176757812, 0.4221191406, 0.833984375, 0.0229949951, 0.1708984375, 1.7587890625, -0.4497070312, -0.5151367188, 0.8696289062, -0.3530273438, 0.537109375, 0.5180664062, 0.5366210938, -0.4311523438, 0.3486328125, -1.1943359375, -0.4184570312, 0.5668945312, 0.6640625, -0.1634521484, 0.1130371094, 0.2844238281, -0.4157714844, -0.077331543, 1.0849609375, 0.9111328125, 0.4020996094, 1.115234375, -0.767578125, -0.1071777344, 0.3920898438, -0.1668701172, 0.5883789062, 0.1657714844, 1.3662109375, -0.0453796387, -0.1807861328, -1.34375, 0.6411132812, -0.2768554688, -0.5004882812, 0.1770019531, -0.53125, -1.271484375, -0.4150390625, 0.578125, -0.8671875, -0.4033203125, -0.232421875, 0.3481445312, -0.4282226562, 0.2114257812, -0.2462158203, 1.69140625, 0.0410766602, -0.7724609375, 0.4616699219, -0.94140625, -0.4521484375, -0.1832275391, 0.390625, 0.3127441406, 0.0933227539, 1.744140625, 0.3520507812, 0.9873046875, 0.5244140625, -0.2536621094, 0.46484375, 0.4738769531, -1.2451171875, -0.744140625, -0.0799560547, 0.2507324219, 0.4133300781, 0.0243530273, -0.3425292969, 0.619140625, -0.2122802734, -0.1418457031, -0.096496582, -0.6518554688, -0.5737304688, -0.2485351562, -0.0814208984, 0.1495361328, -0.6127929688, -0.2399902344, -0.3637695312, 0.4340820312, -1.2939453125, -1.166015625, -0.92578125, -0.6142578125, 0.3679199219, 0.3112792969, 0.91015625, 1.12890625, 0.990234375, -0.3215332031, -0.5639648438, 0.4445800781, -0.9565429688, 1.03125, 0.1395263672, -0.5170898438, -1.4091796875, -1.2001953125, 0.2482910156, 0.5283203125, 0.384765625, 0.6645507812, 1.2080078125, 1.275390625, -0.5390625, 0.2944335938, 0.2463378906, -0.8012695312, -0.3349609375, 0.5102539062, 0.29296875, -0.4377441406, -0.6528320312, -12.4140625, 0.2391357422, -0.7241210938, -0.408203125, -0.2287597656, 0.5444335938, -0.2641601562, -0.576171875, -0.1654052734, -0.4030761719, 0.4387207031, 0.6040039062, 0.3857421875, 1.2314453125, 0.4323730469, -0.666015625, 0.0450134277, -0.0395507812, 0.1196289062, -0.6948242188, 0.0563964844, 0.90625, -0.7719726562, -0.6840820312, -0.1126708984, 1.916015625, -0.560546875, 0.6225585938, 0.4567871094, -0.45703125, -0.6904296875, 0.1433105469, 0.2800292969, 0.4445800781, -0.83984375, -0.3220214844, -0.6586914062, 0.142578125, -0.0648803711, -0.7270507812, -0.6889648438, -0.2678222656, -0.4133300781, -0.2330322266, -0.740234375, -0.376953125, 0.6196289062, 0.2231445312, -0.7377929688, -0.0153274536, 1.01953125, 0.7202148438, 0.3569335938, -0.1577148438, -0.2446289062, -0.3811035156, -1.8759765625, -0.1496582031, -0.5537109375, -0.5244140625, -1.74609375, 0.3957519531, -0.7719726562, 0.1979980469, 0.0392150879, 0.2056884766, 0.1512451172, -0.3442382812, -0.0516967773, -0.75, 0.3784179688, 0.1517333984, 0.1754150391, 0.4360351562, 0.0786743164, 1.2568359375, 0.2093505859, -0.2104492188, -1.4462890625, -0.0001530647, 0.0586547852, -0.0400390625 ]
MV Queen of Surrey is a double-ended roll-on/roll-off ferry in the BC Ferries fleet. The ship was launched in 1980 and entered service in 1981. The ferry normally operates on BC Ferries' Horseshoe Bay to Langdale route. She is named for the city of Surrey. On May 12, 2003, Queen of Surrey suffered an engine fire that disabled the ferry in Howe Sound. No one was injured and the ship was returned to service. In 2004, the ferry was involved in a collision with a tugboat, and in 2019 she struck a fixed structure at the Langdale terminal. The 2019 crash lead to passengers being stranded on the vessel for over ten hours. Description Queen of Surrey is a double-ended roll-on/roll-off ferry that was long overall and between perpendiculars with a beam of , a gross register tonnage (GRT) of 6,969 and a deadweight tonnage (DWT) of 1,099 as built. The ship has a maximum draught of . As of 2018 the vessel was remeasured with a gross tonnage (GT) of 6,968.91, a net tonnage of 4,473.47 with a length of , a beam of and a depth of . Queen of Surrey is propelled by two MaK 12M551AK diesel engines rated at driving two propellers, one forward and one aft. This gives the vessel a maximum speed of . The ship has a capacity of 308 cars and 1,494 passengers and crew. In place of individual cars, Queen of Surrey is capable of loading twelve semi-trailer trucks. The vehicle deck is divided into three sections with two longitudinal casings. The deck has of headroom.
[ -0.4621582031, -0.1168823242, -0.0935058594, 0.509765625, 0.740234375, 0.0806884766, -0.5322265625, -0.875, -0.5302734375, -0.0231628418, -0.0536193848, -0.4140625, -0.8422851562, 0.890625, 1.1904296875, 0.1652832031, 0.1409912109, -0.4455566406, -0.1439208984, -0.4216308594, -0.0745849609, 0.46484375, -0.0628051758, 0.5180664062, -0.7734375, -1.0244140625, -0.4038085938, -0.0401306152, -0.4931640625, -0.5893554688, -0.5751953125, -0.0108337402, -0.90625, 0.5092773438, -1.904296875, -0.6899414062, -0.4243164062, 1.1865234375, 0.0010890961, -0.85546875, -0.3000488281, -0.3825683594, 0.2481689453, -0.43359375, 0.8701171875, -0.0213928223, -0.0344848633, -0.6899414062, -0.716796875, 0.9404296875, 0.7006835938, 0.8212890625, 0.533203125, -0.1671142578, -0.0225982666, -0.9091796875, -1.0166015625, 0.8291015625, -0.2685546875, -0.2858886719, -0.3767089844, -0.1577148438, -1.1552734375, -0.9858398438, 0.3991699219, 0.4890136719, 0.4672851562, -0.3249511719, -0.7529296875, 1.1259765625, -0.0126724243, 0.0505981445, -0.4780273438, -0.3342285156, 0.1055297852, 0.3220214844, 0.2384033203, -0.0028095245, -0.7963867188, -0.0427246094, 0.0374450684, -0.8369140625, -0.6225585938, -0.3173828125, -0.6455078125, 0.3200683594, -0.5639648438, -0.1843261719, -0.2849121094, 2.283203125, 0.0575866699, 0.4458007812, -0.9487304688, 0.2868652344, 0.0410766602, 1.0703125, -0.6821289062, -1.3486328125, 0.2810058594, -0.0038852692, 0.943359375, 0.53515625, 0.1279296875, 0.0302276611, -1.2255859375, 1.8330078125, -0.0630493164, -0.888671875, -0.2319335938, -0.97265625, 0.54296875, -0.1574707031, -0.0462341309, 0.0148925781, 0.0105056763, -0.1097412109, -0.7866210938, -1.17578125, -0.3872070312, 0.7084960938, 0.4528808594, 0.0785522461, 0.7685546875, -0.1431884766, 0.6899414062, 0.505859375, 0.8833007812, -0.0439758301, 0.7685546875, 0.2192382812, -0.8583984375, -0.4360351562, -0.6025390625, -0.5107421875, 1.3203125, -0.4211425781, -1.0634765625, 0.2932128906, 1.251953125, 0.4606933594, 0.3364257812, -0.0832519531, 0.2973632812, -0.8017578125, 0.0986938477, -0.0581665039, 0.1123046875, 0.2053222656, -1.7197265625, 0.4799804688, -0.482421875, 0.1185913086, 0.6782226562, 0.0827636719, 0.2142333984, -0.525390625, 0.2961425781, -0.0645141602, 1.318359375, -0.6884765625, -0.3684082031, -0.7006835938, -0.0326843262, 0.4133300781, -0.5463867188, 0.1875, -0.5146484375, -0.2797851562, -1.4130859375, 0.7734375, -0.1451416016, -0.0631103516, -0.7338867188, -0.9194335938, -0.3364257812, 0.1862792969, 0.4619140625, -1.1962890625, 0.4548339844, -0.0197906494, 0.3684082031, -0.5922851562, 1.8525390625, -0.4677734375, 0.4992675781, -0.830078125, 0.4606933594, 0.2138671875, -0.6538085938, -0.5830078125, -0.3713378906, 0.0342102051, -0.3415527344, 0.4736328125, 0.2670898438, -0.9311523438, -0.1264648438, 1.529296875, 1.560546875, -0.7958984375, 0.3059082031, -1.064453125, -0.0687255859, -0.2521972656, 0.3291015625, 1.2939453125, 0.4274902344, 0.3315429688, 0.9116210938, -0.8212890625, -0.5327148438, -0.6064453125, -0.0375366211, -0.2496337891, -0.0422973633, -0.5649414062, 0.25, 0.0085906982, 0.0661621094, 0.859375, -0.0323791504, 0.2253417969, 0.880859375, -0.896484375, 1.271484375, -0.5751953125, 0.4309082031, 0.7153320312, 0.7524414062, -0.5556640625, 0.1546630859, 0.2209472656, -0.7065429688, -0.5219726562, 0.4340820312, 0.2536621094, 0.2631835938, -0.0549926758, -0.1707763672, -1.3564453125, -0.41796875, -0.3984375, 0.0581359863, 0.1634521484, -0.5952148438, -1.201171875, 0.7822265625, -0.2961425781, 0.4645996094, 1.4521484375, -0.7729492188, 0.5200195312, 0.8432617188, 0.100402832, 0.0700683594, -0.892578125, -0.2357177734, -1.361328125, 1.2626953125, -0.4602050781, -0.2430419922, -0.3830566406, 0.0975952148, 1.02734375, -0.4633789062, -0.9916992188, -0.3334960938, 1.232421875, -0.1871337891, -0.5380859375, 0.3115234375, 1.630859375, -0.8452148438, 0.2641601562, -1.185546875, -0.1573486328, -0.2778320312, -0.6513671875, -0.1732177734, 0.62890625, 1.0224609375, 0.1352539062, -0.0608215332, 0.1262207031, 0.8178710938, -0.5131835938, -0.1148681641, -0.1267089844, 1.1474609375, -0.5678710938, -0.5263671875, 0.6669921875, 0.58984375, -0.1077270508, 0.7670898438, 0.25390625, 0.7329101562, -0.1021118164, -1.0390625, -0.7446289062, 0.9799804688, -0.4814453125, 0.4353027344, -0.9287109375, -0.2805175781, 0.1204223633, -0.646484375, -1.0478515625, 0.4331054688, 1.0439453125, -1.021484375, 0.3159179688, 0.5341796875, -0.291015625, -0.5727539062, 0.2814941406, 0.66015625, -1.0673828125, -0.4580078125, -0.9033203125, 1.3837890625, -0.7670898438, 0.9165039062, 0.0153121948, -0.3891601562, -0.61328125, 0.1666259766, 0.55078125, 0.7124023438, 0.0230865479, 0.1148681641, 0.2585449219, -0.2536621094, -0.1541748047, 0.0731811523, 0.154296875, -0.6484375, -0.065612793, -0.5053710938, 0.1999511719, 0.0007791519, -0.1522216797, -1.44921875, -0.6015625, 0.3071289062, -1.4697265625, 0.875, -0.4123535156, -0.0759277344, 0.1704101562, 0.1655273438, -0.2888183594, -1.04296875, 0.0502319336, -0.4489746094, 0.802734375, 0.490234375, -0.7221679688, -0.1134643555, 0.029586792, 0.4709472656, -0.0191345215, -0.0076065063, 0.4565429688, 0.8051757812, 0.1889648438, 0.3081054688, 0.9482421875, 0.8701171875, 0.2661132812, -1.1376953125, -0.0732421875, 0.3696289062, 0.4206542969, 1.0498046875, -0.0058403015, -0.3571777344, 0.2303466797, -0.2856445312, -0.1899414062, -0.6489257812, -0.0979003906, 0.1564941406, -0.8852539062, 0.0509643555, 0.9233398438, 0.4750976562, -0.3610839844, 1.0029296875, 0.0517883301, -0.0057754517, 0.62109375, 0.4145507812, -1.1279296875, 0.1010131836, -0.1558837891, 1.1142578125, -1.9169921875, -0.849609375, 0.3850097656, 0.1881103516, -0.8564453125, -1.0498046875, -0.2700195312, -1.2509765625, 0.2912597656, 0.2734375, -0.6884765625, 0.0157928467, 0.1424560547, -0.7216796875, 0.3381347656, 0.3723144531, -0.0164794922, -0.2834472656, 0.2561035156, 0.5439453125, 0.3298339844, -0.9755859375, -0.609375, -0.2846679688, -0.4177246094, 0.3327636719, 1.0361328125, -0.0202331543, -0.6376953125, -0.1490478516, 1.2353515625, 0.5512695312, -0.0932617188, -0.3559570312, 0.6748046875, -0.0452575684, -0.1925048828, -0.2651367188, -0.5063476562, 0.5122070312, -0.4645996094, -0.1917724609, 0.0463867188, 0.2512207031, -0.3171386719, 0.1220703125, 0.2512207031, 0.3728027344, -0.3454589844, 0.4360351562, -0.2680664062, -0.3359375, -0.568359375, 0.3000488281, -1.02734375, -1.0068359375, 0.5048828125, 1.2080078125, -1.1318359375, -0.2932128906, 0.359375, 0.3950195312, 0.1221923828, 0.1500244141, -0.0297088623, -1.1552734375, -0.0845947266, 0.4040527344, 0.3625488281, 0.3120117188, 0.0073890686, -0.310546875, -0.2049560547, -0.54296875, 0.0106735229, -0.4680175781, 0.8305664062, -0.0086135864, 0.7548828125, 0.1303710938, 0.8056640625, -0.7861328125, 0.2644042969, 0.4379882812, -0.1662597656, -0.1513671875, 0.3190917969, 0.0161895752, -0.2390136719, -0.8217773438, 0.552734375, 1.2216796875, -0.0989990234, 0.3903808594, -0.6166992188, 0.3994140625, 0.1181640625, 0.3156738281, 0.97265625, 0.0748901367, -0.3369140625, 0.857421875, -0.4404296875, -0.4702148438, -0.6762695312, 0.2917480469, 0.4187011719, 0.0122833252, 0.0112915039, -0.5239257812, -0.3962402344, 0.7758789062, -0.7119140625, 0.0681152344, 0.3005371094, 0.5634765625, 1.0595703125, 1.154296875, -0.3488769531, -0.71484375, 0.72265625, 0.2003173828, 0.6860351562, -0.8916015625, 0.5200195312, -1.9365234375, 0.541015625, -1.09765625, 0.51953125, 0.1574707031, -1.212890625, -0.697265625, 0.4450683594, -0.7763671875, -0.0350646973, -0.7412109375, 0.0428161621, 0.919921875, 0.2961425781, 0.3540039062, -0.2966308594, -0.0219421387, -1.099609375, 0.6025390625, 0.1047363281, -0.2888183594, -1.0703125, 1.216796875, 1.345703125, 0.1152954102, -0.8696289062, -0.3620605469, -1.123046875, 0.3156738281, 0.3171386719, -0.6845703125, 1.388671875, 0.0038566589, -0.2893066406, -0.927734375, -0.55859375, 0.4731445312, -0.4489746094, -0.6694335938, -0.2075195312, 1.173828125, 0.9194335938, 0.3869628906, 0.5532226562, 0.0230255127, 0.943359375, -0.283203125, 0.1398925781, -0.2432861328, 0.1602783203, -0.0899047852, 0.501953125, -0.0352783203, -0.2248535156, 0.4890136719, -0.0140914917, -0.396484375, -0.5986328125, 1.158203125, -0.8403320312, -0.6040039062, -0.0263977051, -0.5439453125, 0.4343261719, -0.3874511719, 0.0056877136, -0.658203125, -0.0729980469, -0.3715820312, 0.1147460938, 0.0282287598, 0.0004131794, -0.0970458984, -0.1095581055, 0.2839355469, 0.3857421875, 0.0543823242, 0.2026367188, -0.7397460938, 0.3015136719, 0.9404296875, -0.37890625, -0.4709472656, -0.6435546875, 0.0465087891, 0.4799804688, -0.4851074219, -0.2607421875, 0.1160888672, 0.3798828125, -0.3435058594, 1.1591796875, 1.142578125, 1.1474609375, -0.0468444824, 0.2932128906, -0.2897949219, 0.0200805664, 0.3852539062, -0.2917480469, -0.564453125, 0.7094726562, -0.6298828125, -0.99609375, -0.3286132812, 0.0716552734, -0.2419433594, -0.57421875, -0.1781005859, 0.5874023438, -0.93359375, 0.4169921875, -1.0107421875, 0.0148544312, 0.0447387695, 0.2038574219, -0.0955810547, 0.9018554688, 0.3151855469, -0.8369140625, 0.3818359375, -0.3645019531, 0.6635742188, 0.5927734375, -0.1810302734, -0.27734375, -0.8403320312, -0.5205078125, -0.4753417969, 0.3581542969, 0.0412597656, -0.8955078125, -0.3466796875, 1.0751953125, -1.51953125, 0.607421875, -0.6137695312, -0.0982666016, 0.9008789062, 0.4770507812, 0.3488769531, -0.4675292969, 1.337890625, 0.2261962891, 0.9721679688, 0.68359375, -0.6606445312, -0.5092773438, -0.1761474609, 0.2025146484, 0.2966308594, 0.1181640625, 0.1951904297, 0.5346679688, 0.2384033203, -0.5131835938, -0.2482910156, -0.0067863464, 0.3432617188, -0.6840820312, 0.6479492188, 1.548828125, 0.814453125, -1.017578125, -0.0133972168, 1.2646484375, -1.01953125, -0.1431884766, 0.6752929688, 0.2010498047, -0.2069091797, -1.34765625, -1.236328125, -0.1573486328, 0.3422851562, 0.2403564453, -1.185546875, 0.1350097656, -0.3127441406, -1.6572265625, -0.8305664062, 0.2795410156, -0.4592285156, 0.1502685547, -0.0633544922, -0.1368408203, 0.3562011719, 0.1403808594, -0.2705078125, 0.3601074219, -0.40625, 1.2880859375, 0.9624023438, 0.3615722656, 0.466796875, -0.8056640625, -0.3354492188, -0.2646484375, -0.2893066406, -0.2396240234, 0.2253417969, 0.3630371094, 0.1083374023, 0.3674316406, -0.6650390625, 0.8911132812, 1.6044921875, -0.685546875, 0.2563476562, 0.646484375, 0.6469726562, 0.5185546875, 0.3571777344, 0.4704589844, 0.1387939453, -0.5424804688, 0.7900390625, 0.3950195312, -0.5913085938, 0.8154296875, -0.0828857422, 0.9125976562, -0.6206054688, -0.1254882812, 1.4921875, -0.3603515625, -0.453125, 0.4111328125, 0.4453125, -0.0216064453, 0.2396240234, -0.7368164062, 0.0510253906, -0.0650024414, 0.7265625, -0.0845947266, -0.1724853516, 0.5004882812, -0.0382080078, 0.2393798828, 0.5317382812, 1.1142578125, -0.1710205078, 0.5703125, 0.9072265625, -0.0653686523, 0.3322753906, -0.4167480469, 1.1474609375, -0.0173492432, -0.3479003906, 0.6206054688, 0.3110351562, -0.4140625, -0.0921020508, -0.5620117188, 0.90625, -0.6459960938, -0.921875, -1.267578125, 0.8159179688, 0.4340820312, -0.3608398438, 0.7446289062, 0.833984375, 0.0549316406, -0.44140625, -0.865234375, 0.3640136719, -0.1094360352, -0.0524291992, 0.51171875, 0.0801391602, -0.2393798828, -0.7646484375, -0.6396484375, 0.666015625, -0.7143554688, -0.8413085938, -0.9731445312, -0.2524414062, 0.9155273438, -0.1237182617, -0.1264648438, -1.2080078125, -0.0019683838, -0.1206054688, 0.2313232422, -0.7607421875, -1.1787109375, 0.2010498047, -0.6474609375, -0.2922363281, 0.2524414062, -0.451171875, 0.0671386719, 0.2839355469, -0.4025878906, 0.1424560547, -0.0158233643, 0.3725585938, -0.36328125, -1.2548828125, -0.9516601562, -0.5190429688, -0.2039794922, -0.1673583984, 0.4201660156, 0.1072387695, 1.1435546875, -0.6020507812, 0.4482421875, -0.2729492188, 0.6342773438, -1.1220703125, 1.017578125, 0.19921875, -0.5302734375, -0.3659667969, 0.6743164062, -0.0523681641, 0.3637695312, -0.1530761719, -1.025390625, -0.7270507812, -0.4106445312, -0.9697265625, -0.4106445312, 0.7387695312, -0.1154174805, 0.1264648438, 0.2352294922, -0.7705078125, -1.3857421875, 0.2427978516, 0.5947265625, -0.79296875, -1.232421875, -0.1124267578, -0.1098632812, 0.2286376953, 0.1228637695, -0.8935546875, -0.2413330078, 0.3293457031, -1.26953125, -0.3483886719, 0.100402832, 0.4938964844, -0.0487060547, 1.61328125, -0.018951416, 0.0054473877, 0.3527832031, -0.5883789062, 0.7827148438, -0.6513671875, 0.0246429443, -0.0988769531, 0.0878295898, -0.0809936523, 0.1549072266, 0.177734375, 0.4860839844, 0.1134033203, -0.7387695312, -0.1962890625, 0.4711914062, 0.4514160156, -0.9497070312, 0.017791748, 0.2310791016, -1.1796875, 0.7348632812, 0.1181640625, -0.0361022949, 0.4060058594, -0.6733398438, -0.154296875, -1.62890625, 0.9306640625, -0.1607666016, 0.039642334, 0.3776855469, -0.12109375, -1.2978515625, 0.8374023438, -0.2019042969, 0.3034667969, 0.4108886719, -0.0733642578, -1.017578125, -0.3737792969, 0.1704101562, 1.470703125, -0.7416992188, 0.0787963867, -0.4111328125, 0.4086914062, 0.7270507812, 0.5258789062, 0.4262695312, 1.3330078125, -0.82421875, -0.0015716553, -0.1375732422, 0.3557128906, 0.0016803741, 0.0908813477, 0.5546875, 0.1604003906, -0.3342285156, -0.0008063316, -0.1164550781, 0.1358642578, -0.2619628906, 0.2641601562, 0.5009765625, -0.7998046875, -0.5537109375, -12.953125, -0.2176513672, -0.4533691406, 0.6577148438, 0.2683105469, 0.1821289062, 0.1204833984, 0.0440368652, -1.5361328125, -0.658203125, -1.37109375, 0.1025390625, 0.0797119141, 0.3347167969, -0.5053710938, 0.328125, -0.3986816406, -0.1040039062, -0.0462646484, 0.1098022461, -0.298828125, -0.947265625, -0.4345703125, -0.9301757812, 0.1646728516, -0.169921875, 0.4777832031, 0.2498779297, -0.2235107422, -0.6328125, -0.5971679688, -0.4340820312, 0.5693359375, 0.3041992188, 0.6166992188, -0.4858398438, 0.3579101562, 0.1981201172, -1.111328125, 0.7060546875, 0.568359375, -1.3896484375, -0.6044921875, 0.5009765625, -1.12109375, -0.0470275879, -0.7006835938, -0.4956054688, 1.1171875, -0.1917724609, 0.3950195312, -0.451171875, 0.0798950195, 0.1837158203, 0.7646484375, -0.7807617188, 1.05078125, -0.1275634766, -0.6923828125, 0.8647460938, 0.6796875, 0.28125, -0.1030273438, -0.2220458984, -0.5551757812, -0.3640136719, -0.1862792969, -1.0498046875, 0.4916992188, -0.3884277344, -0.951171875, 0.0407104492, -0.4125976562, -1.14453125, 0.3134765625, 0.400390625, 1.13671875, 0.0191345215, 0.3107910156, 0.9916992188, 0.4389648438, -0.9233398438 ]
Four lanes in the centre of the deck can be used by trucks or cars, while two outboards lanes and two lanes on the gallery deck are for cars only, and reached by fixed ramps. On the upper deck, there are eight lanes for cars, reached only from a shore-based ramp. Amenities aboard the ferry include a Coastal Cafe, Coast Cafe Express, gift shop, kids zone, video zone, pet area, elevators and accessible washrooms. Mid-life upgrade In 2006, Queen of Surrey underwent a $40 million mid-life upgrade iat the Washington Marine Group's Vancouver Drydock in North Vancouver. The project prepared the vessel for another 20 years of service with significant mechanical and safety improvements, as well as upgraded passenger amenities and the installation of new emergency evacuation equipment. Major work included steel replacement, electrical upgrades, and modernization of elevators, heating, ventilation and air conditioning systems. Remodelled and expanded areas included the gift shop, food service facilities, washrooms, and seating areas. Construction and career The vessel was ordered in May 1979, and constructed by Burrard Yarrows Corporation at their yard in North Vancouver, British Columbia and given the yard number 100. The ferry cost US$29.0 million to build. Queen of Surrey was launched on August 27, 1980, and delivered to BC Ferries in April 1981. The vessel was assigned the Horseshoe Bay to Langdale route. On May 12, 2003, the vessel was disabled in Howe Sound as a result of a diesel oil fire in the No.2 engine room.
[ -0.5068359375, 0.2459716797, 0.3017578125, 0.0314941406, 0.890625, -0.0617675781, -0.138671875, -0.7045898438, -0.4018554688, 0.2646484375, -0.16015625, -0.37890625, -0.8442382812, 0.8139648438, 1.373046875, -0.2318115234, -0.010017395, -0.8486328125, 0.1433105469, -0.1174316406, -0.1226196289, 0.2354736328, -0.5673828125, 0.2585449219, -0.30859375, -0.3701171875, 0.0020217896, -0.2631835938, -1.1181640625, -0.4526367188, -0.888671875, -0.162109375, -1.3271484375, 0.4467773438, -2.154296875, -0.4255371094, -0.2536621094, 1.8525390625, 0.0826416016, -1.6572265625, 0.5083007812, -0.6884765625, 0.2568359375, 0.2462158203, 0.7529296875, 0.4035644531, 0.0087661743, -0.6479492188, -0.79296875, 0.2561035156, 0.3259277344, 0.2509765625, 0.1920166016, 0.2292480469, -0.5307617188, -0.5888671875, -0.8188476562, 0.3850097656, -0.5463867188, 0.4367675781, -0.2370605469, 0.0244445801, -1.2119140625, -0.6171875, 0.4191894531, 0.7954101562, -0.1586914062, 0.2188720703, -1.0205078125, 1.0146484375, 0.051574707, 0.2180175781, -0.2836914062, -0.1180419922, 0.2218017578, 0.6328125, 0.2629394531, -0.2266845703, 0.1256103516, -0.9614257812, -0.52734375, -0.3325195312, -0.1999511719, -0.3864746094, -0.0450134277, 0.1951904297, -0.3857421875, -0.4072265625, -0.9814453125, 1.953125, -0.0186462402, 0.4221191406, -1.4873046875, 0.2398681641, 0.1998291016, 0.5810546875, -0.9711914062, -1.607421875, 0.6982421875, 0.5947265625, 0.43359375, 0.7485351562, 0.17578125, 0.595703125, -1.3671875, 1.2841796875, -0.5419921875, -1.1259765625, -0.1756591797, -0.6147460938, 0.3176269531, 0.1505126953, 0.0768432617, 0.7319335938, -0.0457763672, -0.4150390625, -1.3046875, -1.1826171875, -0.857421875, 0.83203125, 0.9477539062, -0.1448974609, 1.2744140625, -0.0959472656, -0.0863037109, 0.0555419922, 0.1162109375, 0.0149688721, 0.4895019531, 0.3234863281, -0.3762207031, -0.0009593964, -0.5512695312, -1.6708984375, 1.6650390625, -0.1837158203, -1.21875, 0.3625488281, 1.4296875, 0.4494628906, 0.3854980469, -0.0235595703, -0.455078125, -0.0214385986, 0.5063476562, -0.3005371094, -0.2406005859, -0.3500976562, -1.8076171875, 0.6782226562, -0.5053710938, 0.1564941406, 0.5200195312, 0.40234375, -0.3684082031, -1.3408203125, -0.0499267578, -0.3581542969, 1.4697265625, -0.681640625, -0.1189575195, -0.4892578125, 0.002904892, 0.9477539062, -0.7885742188, -0.0026702881, -0.56640625, 0.0693359375, -1.302734375, 0.8544921875, 0.6166992188, -0.3701171875, -0.2467041016, -1.427734375, -0.2415771484, -0.3745117188, 0.705078125, -0.931640625, 0.3601074219, -0.8544921875, 0.0967407227, -1.1806640625, 1.5869140625, -0.470703125, 0.6904296875, -0.4453125, 0.3654785156, -0.1282958984, -0.2077636719, -0.0834350586, -0.2012939453, 0.4113769531, -0.7646484375, 0.4296875, -0.1940917969, -0.8295898438, -0.2252197266, 1.4638671875, 0.8491210938, -0.4406738281, -0.1975097656, -0.73046875, -0.3347167969, 0.88671875, -0.1170043945, 0.94921875, 0.3940429688, 0.8217773438, 0.1541748047, -0.3403320312, -0.0982055664, -0.8872070312, 0.6396484375, 0.4499511719, -0.1580810547, -0.2565917969, 0.5458984375, 0.0997924805, 0.2724609375, -0.0738525391, 0.0911254883, 0.3464355469, 1.0361328125, -0.4526367188, 1.08203125, -1.2333984375, 0.0705566406, 0.2373046875, 0.4560546875, -0.794921875, -0.047454834, 0.0341491699, -0.7563476562, -0.396484375, 0.4248046875, 0.0425720215, -0.0193634033, 0.3771972656, -0.3596191406, -1.255859375, -0.8422851562, -0.6782226562, 0.0110549927, 0.4777832031, -0.6826171875, -1.279296875, 1.009765625, -0.591796875, 0.043762207, 0.9995117188, 0.0992431641, 0.0714111328, 0.6708984375, -0.3874511719, 0.4421386719, -0.1937255859, 0.0005674362, -1.146484375, 0.8168945312, -0.2998046875, -0.1875, -0.1069335938, -0.0134277344, 1.2314453125, -0.498046875, -0.6391601562, -0.4523925781, 1.3515625, -0.0190734863, 0.4748535156, 0.0347290039, 1.470703125, -1.0498046875, -0.6689453125, -1.8515625, 0.045501709, -0.7514648438, -0.7041015625, -0.2061767578, 0.4096679688, 0.73046875, 0.1641845703, 0.0684204102, 0.0555725098, 1.00390625, -0.884765625, -0.0037231445, -0.4577636719, 0.9682617188, -0.0558166504, 0.0891723633, 0.5385742188, 0.68359375, -0.0082015991, 0.6376953125, -0.4372558594, 0.5180664062, 0.4428710938, -0.7153320312, -1.115234375, 0.40234375, -0.7446289062, -0.2127685547, -0.646484375, 0.3520507812, -0.4301757812, -0.4436035156, -1.01953125, 0.5512695312, 0.775390625, -1.068359375, -0.2177734375, 0.2814941406, 0.6987304688, 0.0463562012, 0.7001953125, -0.0630493164, -0.8662109375, -0.2174072266, -0.5209960938, 1.3515625, -1.05859375, 0.2998046875, 0.021194458, -0.1229248047, -0.673828125, 0.4916992188, 0.6440429688, 0.95703125, 0.0144500732, -0.0203399658, -0.3735351562, 0.0562133789, -0.4692382812, 0.0581054688, 0.1220092773, -0.1706542969, -0.5322265625, -0.4365234375, 0.003156662, -0.025177002, -0.0634155273, -1.3095703125, -0.6533203125, 0.1256103516, -1.43359375, 1.078125, -0.87109375, 0.0444946289, 0.3818359375, 0.2286376953, -1.123046875, -0.763671875, 0.0111694336, -0.4245605469, 1.369140625, 0.5576171875, -1.0556640625, 0.0606079102, 0.3544921875, -0.0116500854, 0.3527832031, 0.1170654297, 0.3986816406, 1.8369140625, 0.2487792969, -0.5693359375, 0.2683105469, 1.109375, -0.1252441406, -0.75390625, -0.3139648438, 0.5849609375, 0.740234375, 1.525390625, 0.2741699219, -0.8896484375, -0.0157012939, -0.3754882812, 0.3332519531, -0.1829833984, 0.1688232422, 0.1000976562, -0.5556640625, -0.0905761719, 0.4777832031, 0.6625976562, -0.4816894531, 0.8642578125, -0.5590820312, 0.1680908203, 0.4018554688, 0.7700195312, -0.5483398438, 0.1412353516, -0.212890625, 1.390625, -0.7041015625, -0.572265625, 0.4411621094, 0.069519043, -0.28125, -0.1135253906, -0.0089263916, -1.62890625, -0.9384765625, 1.314453125, -0.6533203125, -0.8940429688, 0.0207977295, -0.7309570312, 0.9174804688, -0.1585693359, -0.1510009766, -0.9545898438, -0.5693359375, 0.7866210938, -0.408203125, -0.5346679688, -0.494140625, -0.8505859375, -0.2194824219, 1.1171875, 0.771484375, -0.8408203125, -0.7875976562, -0.1658935547, 1.7294921875, 0.4279785156, 0.7260742188, -0.9799804688, 0.2824707031, -0.1109008789, -0.5952148438, -0.8818359375, -0.0333557129, 0.6586914062, -1.2763671875, -0.46875, 0.1373291016, 0.2595214844, -0.1478271484, -0.556640625, 0.5532226562, -0.185546875, 0.2182617188, 1.17578125, -0.1428222656, -0.3093261719, -0.4370117188, -0.1663818359, -0.9326171875, 0.0325012207, -0.0309295654, 1.099609375, -1.1142578125, 0.0530395508, 0.2166748047, 0.4370117188, 0.4206542969, 0.939453125, -0.2086181641, -0.4743652344, 0.1538085938, 0.7436523438, 0.4465332031, 0.2980957031, 0.1905517578, 0.4326171875, -0.0105133057, -0.607421875, -0.0712280273, -0.2418212891, 0.5375976562, 0.1535644531, 0.4970703125, -0.1328125, 0.4223632812, -1.0166015625, 0.4821777344, 0.3737792969, -0.0170898438, -0.1623535156, 0.8505859375, 0.0930175781, -0.1168212891, -0.1971435547, 0.1717529297, 0.6142578125, -0.6494140625, 1.0107421875, -0.2727050781, 0.4768066406, 0.1193237305, -0.1429443359, 0.9682617188, 0.0419006348, -0.2042236328, 1.41015625, -0.6596679688, -0.2585449219, -0.7573242188, 0.908203125, 0.1572265625, -0.4296875, -0.8041992188, -0.0410766602, -0.4392089844, 0.3442382812, -0.7758789062, 0.3134765625, 0.025604248, 0.9106445312, 0.861328125, 0.5053710938, -0.271484375, -0.3405761719, 0.3603515625, 0.234375, 0.7001953125, -0.8681640625, 0.5361328125, -1.3837890625, 0.3405761719, -1.728515625, 0.0455932617, 0.3754882812, -0.8564453125, -0.0166778564, 0.94921875, -0.5434570312, -0.2275390625, -0.6821289062, 0.498046875, 0.6796875, -0.2248535156, 0.1418457031, -0.3813476562, 0.1119995117, -0.8935546875, 1.1416015625, -0.3012695312, 0.1958007812, -1.4541015625, 1.1708984375, 1.1865234375, -0.3315429688, -1.0693359375, -0.8935546875, -0.6889648438, 0.5004882812, 0.48828125, -1.10546875, 1.896484375, -0.1419677734, -0.1369628906, -0.6508789062, -1.0859375, 0.3120117188, -0.5419921875, -0.5361328125, -0.3063964844, 0.701171875, 1.2451171875, 0.3374023438, 0.1260986328, 0.2027587891, 1.5439453125, -0.5078125, 1.021484375, -0.5590820312, 0.1934814453, -0.6098632812, 0.1329345703, -0.029876709, -0.1958007812, 0.6909179688, 0.2014160156, -0.51953125, 0.0980834961, 0.6411132812, -0.4624023438, -0.6923828125, 0.4260253906, 0.3818359375, 0.7294921875, 0.29296875, -0.1028442383, -0.86328125, -0.2868652344, -0.5224609375, 0.658203125, -0.3967285156, -0.2216796875, -0.4621582031, 0.0855102539, 0.0916748047, 0.52734375, -0.5556640625, 0.0300140381, -0.4733886719, 0.68359375, 0.1539306641, -0.7490234375, -0.4821777344, -0.2326660156, -0.2561035156, 0.0953369141, -0.2064208984, 0.0681762695, 0.9169921875, 0.4660644531, -0.4599609375, 0.5, 1.2978515625, 1.2373046875, 0.3830566406, 0.3723144531, -0.0364685059, 0.7416992188, -0.3503417969, -0.0189971924, -0.958984375, 0.0795288086, -0.7919921875, -0.41015625, -0.3891601562, 0.0513916016, -0.2326660156, 0.2032470703, 0.0446166992, 0.8232421875, -0.2423095703, -0.0358581543, -0.5190429688, 0.2053222656, -0.2592773438, -0.1069946289, 0.0060653687, -0.0361938477, -0.0856323242, -0.9912109375, -0.3049316406, -0.2399902344, 1.3505859375, 0.3081054688, -0.2431640625, -0.3203125, -1.373046875, -0.748046875, 0.2066650391, 0.6889648438, 0.0027427673, -0.9145507812, 0.8159179688, 0.48828125, -1.6953125, 0.1019897461, 0.408203125, -0.2106933594, 0.7514648438, -0.333984375, -0.0563354492, -1.025390625, 1.119140625, 0.2468261719, 0.7822265625, 0.6591796875, -0.6381835938, -0.51953125, 0.2388916016, 0.630859375, -0.2795410156, 0.1958007812, 0.8188476562, 0.9731445312, 0.3564453125, -0.56640625, -0.310546875, 0.2282714844, 0.5151367188, -0.939453125, 0.6064453125, 0.767578125, 0.9741210938, -0.9965820312, -0.2451171875, 1.1591796875, -1.744140625, 0.2117919922, 0.3251953125, -0.4506835938, -0.3798828125, -1.2470703125, -1.0322265625, 0.2575683594, 0.5161132812, 0.2739257812, -1.00390625, -0.124206543, -0.4421386719, -1.177734375, -1.04296875, 0.7202148438, -0.462890625, 0.1750488281, 0.0594787598, 0.107421875, 0.2355957031, 0.0958251953, -0.1895751953, 0.3029785156, -0.1220092773, 1.009765625, 0.8579101562, 0.9482421875, 1.2529296875, -1.5712890625, 0.1857910156, -0.4365234375, -0.3120117188, 0.0447998047, 0.796875, 0.4016113281, 0.0291137695, 0.3950195312, -0.6401367188, 0.7368164062, 0.5249023438, -0.6489257812, 0.2077636719, 0.1768798828, 0.5249023438, 0.9487304688, -0.634765625, 0.1118774414, -0.5854492188, -0.2507324219, 1.064453125, 0.3374023438, -0.4191894531, 1.041015625, -0.2004394531, 0.1241455078, -0.2609863281, -0.0121612549, 1.7548828125, 0.3020019531, 0.5649414062, -0.8203125, 0.4763183594, 0.1455078125, 0.2907714844, -0.986328125, -0.7661132812, -0.0718994141, 0.4733886719, 0.3041992188, -0.1936035156, 0.4650878906, 0.5307617188, -0.314453125, 0.1221313477, -0.042388916, -0.5053710938, 0.0141067505, 0.5078125, 0.0569458008, 0.4445800781, -0.2034912109, 0.7592773438, 0.3759765625, 0.3825683594, 0.943359375, 0.1868896484, -0.9038085938, -0.0387573242, -0.6572265625, 0.5712890625, -0.0543823242, -0.2275390625, -0.5102539062, 0.3889160156, 0.0934448242, -0.8212890625, 0.4165039062, 0.4931640625, -0.1364746094, -0.2294921875, -0.4621582031, 0.6928710938, 0.2231445312, -0.791015625, -0.3676757812, 0.5947265625, -0.1563720703, -0.4484863281, -0.666015625, 0.1696777344, -0.9306640625, -0.2272949219, -0.7421875, -0.7192382812, 0.1862792969, -0.4885253906, -1.0810546875, -0.8564453125, -0.2294921875, -0.0750732422, -0.4873046875, -0.541015625, -0.4428710938, 0.5830078125, -0.6723632812, -0.0322875977, 0.7524414062, 0.0156097412, 0.1530761719, -0.390625, 0.0317993164, 0.4616699219, -0.3056640625, 0.4926757812, -0.5356445312, -1.376953125, -0.8081054688, -0.1083374023, -0.4709472656, -1.0068359375, 0.1883544922, -0.0393066406, 0.3176269531, -0.2264404297, 0.3662109375, 0.0046577454, 0.6381835938, -1.7431640625, 1.017578125, -0.1704101562, -0.0914916992, -0.8715820312, 1.287109375, 0.716796875, 0.3940429688, -0.5502929688, -0.8452148438, 0.1857910156, -0.3889160156, -0.2307128906, -0.6303710938, 0.7158203125, -0.4848632812, 0.4345703125, 0.56640625, -0.1892089844, -1.1142578125, 0.2907714844, 0.21484375, -0.50390625, -0.2978515625, 0.0620117188, -0.2490234375, 0.3266601562, -0.1828613281, -0.4436035156, -0.4001464844, 0.8203125, -0.8364257812, -0.1931152344, 0.791015625, -0.3732910156, 0.1041870117, 1.0078125, -0.5024414062, -0.0177001953, 0.5908203125, -0.3068847656, 0.8618164062, -0.4008789062, -0.2956542969, -0.0766601562, 0.1337890625, -0.5654296875, -1.0693359375, 0.388671875, 0.5986328125, 1.0146484375, -0.6655273438, -0.7353515625, 0.4128417969, 0.3015136719, -0.4665527344, -0.5078125, 0.7104492188, -0.3840332031, 0.2232666016, -0.1369628906, -0.4262695312, 0.5146484375, -0.6713867188, 0.2322998047, -1.302734375, 0.0665893555, -0.2471923828, -0.3996582031, 0.7885742188, -0.0784912109, -0.4592285156, 1.064453125, 0.0396118164, 0.685546875, 0.2153320312, 0.1092529297, -1.5234375, 0.1563720703, 0.0592041016, 1.2392578125, -0.96875, -0.431640625, -0.5068359375, 0.3310546875, 0.4523925781, 0.9653320312, -0.5483398438, 0.583984375, -1.013671875, -0.0046386719, -0.4050292969, 0.0205535889, -0.1302490234, 0.6264648438, 0.0805053711, -0.3212890625, 0.4177246094, 0.3229980469, 0.3381347656, 0.724609375, 0.1614990234, 0.2902832031, 1.1591796875, -0.1038208008, -0.6162109375, -12.4296875, -0.490234375, -0.3862304688, 1.1533203125, -0.2722167969, 0.30859375, 0.9057617188, -0.6616210938, -0.9116210938, -0.4763183594, -1.1298828125, 0.1492919922, -0.2163085938, 0.3098144531, -0.2398681641, -0.0492248535, -0.541015625, -0.3452148438, -0.0925292969, 0.2653808594, -0.3212890625, -0.40625, 0.39453125, -0.7631835938, 0.716796875, 0.1378173828, 0.578125, 0.3286132812, -0.42578125, -1.083984375, 0.2258300781, -0.5361328125, 1.068359375, -0.0784912109, 0.4924316406, -0.2026367188, 0.3859863281, -0.6977539062, -0.9584960938, 0.5346679688, 0.5913085938, -0.9658203125, -0.4621582031, -0.1723632812, -0.6142578125, 0.3972167969, -0.7504882812, -0.4631347656, 1.3681640625, -0.7109375, 0.7094726562, -0.4345703125, -0.0943603516, 0.8125, 0.330078125, -0.775390625, 1.0322265625, 0.1287841797, -0.7866210938, 1.4248046875, 0.5454101562, 0.345703125, -0.5278320312, -0.2902832031, -0.7080078125, -0.1159667969, -0.100402832, -1.5390625, 0.0361022949, -0.1021118164, -0.6572265625, -0.2264404297, -0.2863769531, -0.5444335938, -0.2432861328, 0.3227539062, 0.1535644531, 0.0481567383, 0.1529541016, -0.1920166016, -0.0690917969, -0.1640625 ]
Queen of Capilano was sent to aid the damaged vessel and tethered to Queen of Surrey while tugboats were dispatched. The vessel was then towed back to shore. None of the 318 passengers were injured, but several crew members were treated for minor injuries. Some buckling of the main car deck resulted from the heat of the fire. However, no vehicles were damaged in the incident. Inferior copper piping and the removal of a heat shield in the engine room were identified as the main causes of the fire. She returned to service on July 17, 2003. On July 31, 2003, the vessel experienced a mechanical problem with one of her propellers. As a result, she was removed from service for emergency dry-docking to facilitate repairs, which took about five days. On January 11, 2004, Queen of Surrey collided with the tugboat Charles H. Cates V at Horseshoe Bay, trapping the tugboat between the ferry and the dock. Charles H. Cates V sustained significant damage, but made it to Vancouver Harbour to undergo repairs. In October 2005, the ferry collided with the dock at Tsawwassen, British Columbia after the captain misjudged the wind and tides. In 2006 the ferry underwent a mid-life upgrade. She returned to service on June 27, 2006. On September 8, 2010, thieves attempted to steal an automated teller machine (ATM) from the ferry while Queen of Surrey was docked overnight at Gibsons, British Columbia. During the attempted theft, the thieves dropped the ATM into the water. The ATM was later recovered.
[ -0.3188476562, 0.0180053711, -0.3491210938, 0.2210693359, 0.392578125, 0.1593017578, -0.5537109375, -0.6762695312, -0.7568359375, -0.7534179688, 0.2156982422, 0.0053215027, -0.794921875, 0.6782226562, 1.0400390625, 0.1568603516, -0.2631835938, 0.1593017578, 0.0472412109, -0.7080078125, -0.038848877, 0.1514892578, 0.0338439941, -0.7700195312, -0.326171875, -1.4345703125, -0.609375, -0.3706054688, -0.7612304688, -0.0528869629, 0.4536132812, 0.073059082, -0.3989257812, 0.48828125, -1.7587890625, -0.3920898438, -0.0121841431, 1.2939453125, -0.177734375, -0.4719238281, 0.345703125, -0.5629882812, 0.4018554688, -0.3522949219, 0.7319335938, 0.6396484375, -0.4685058594, -1.4580078125, -0.5678710938, 0.1109619141, 0.9262695312, 0.3620605469, -0.1754150391, -0.0988769531, 0.0665283203, 0.0975341797, -0.8403320312, 1.1640625, -0.5673828125, -0.3937988281, -0.0667724609, -0.084777832, -1.513671875, -0.6987304688, -0.0380859375, 0.4777832031, 0.0924682617, -1.4091796875, -0.6953125, 0.5942382812, -0.1524658203, 0.2297363281, 0.0751953125, 0.022064209, -0.1075439453, 0.599609375, -0.6655273438, 0.6279296875, 0.3999023438, -0.3806152344, 0.5522460938, -0.0209655762, -0.9213867188, -0.4260253906, -0.3823242188, 0.1795654297, 0.1137084961, -0.2858886719, -0.1707763672, 1.7919921875, 0.5288085938, 0.2797851562, -0.6176757812, 0.4194335938, -0.333984375, -1.453125, -1.259765625, -0.8544921875, 0.6440429688, 0.5336914062, 0.2543945312, -0.5043945312, 0.2255859375, 0.3588867188, -1.5400390625, 1.5537109375, -0.0978393555, -1.1708984375, -0.21875, -0.3959960938, 0.7836914062, -0.2313232422, -0.6137695312, -0.4560546875, -0.15234375, -0.5161132812, -0.6640625, -0.7998046875, -0.053527832, 0.2739257812, 0.1066894531, 0.2446289062, 1.208984375, 0.3120117188, 0.8159179688, 0.5205078125, 0.5610351562, -0.3190917969, 1.5625, 0.1112670898, -0.6997070312, -0.0504760742, -0.9208984375, -0.6689453125, 1.728515625, -0.3461914062, -0.8745117188, 0.2661132812, 1.3466796875, -0.0217437744, 0.1834716797, 0.826171875, -0.0301513672, -0.3488769531, -0.0814819336, 0.0196228027, 0.0531921387, 0.2888183594, -1.3291015625, 0.8193359375, -0.0961303711, -0.1743164062, 0.1420898438, 0.0846557617, 0.059753418, -0.1704101562, -0.3889160156, 0.0878295898, 0.865234375, -0.1510009766, -0.3166503906, -0.119140625, 0.3483886719, -0.0759277344, -0.6708984375, -0.904296875, -0.3654785156, 0.0978393555, -1.95703125, 1.0283203125, -0.3283691406, -0.0667724609, -0.39453125, -0.7001953125, 0.2524414062, -0.1375732422, 0.5810546875, -0.947265625, -0.0037307739, -0.55859375, 0.8666992188, -0.5141601562, 1.7265625, -1.076171875, 0.4201660156, -1.27734375, 0.7119140625, -0.2379150391, -0.546875, 0.0159912109, -0.63671875, -0.6796875, -1.0458984375, 0.4426269531, 0.67578125, -1.302734375, -0.5551757812, 0.5161132812, 0.7241210938, -0.2702636719, 0.2261962891, -1.181640625, -0.1345214844, -0.3894042969, -0.3173828125, 0.5766601562, -0.0947875977, 0.5610351562, -0.1429443359, -0.7583007812, -0.5073242188, -0.5747070312, 0.4375, -0.3125, 0.2065429688, -0.5087890625, 0.2360839844, 0.1083374023, 0.0281677246, 0.2159423828, -0.0500793457, -0.3117675781, 0.7338867188, -0.5947265625, 0.6713867188, -0.7299804688, 0.3664550781, 0.1697998047, 0.56640625, -0.3264160156, 0.0265045166, 0.1171264648, -0.5952148438, -0.6494140625, 0.4956054688, 0.1270751953, -0.4946289062, 0.4067382812, -0.3540039062, -0.5883789062, -0.9443359375, -0.4462890625, 0.3200683594, -0.1325683594, -0.2524414062, -1.3525390625, 1.0302734375, 0.1323242188, 0.3767089844, 0.7509765625, -0.5341796875, -0.7856445312, 0.990234375, 0.1384277344, 0.3542480469, -0.0709838867, -0.2653808594, -0.5434570312, 1.701171875, -0.5493164062, -0.1976318359, -0.1365966797, 0.1094360352, 1.32421875, -0.6499023438, -0.79296875, -0.845703125, 0.3530273438, 0.0315551758, -0.22265625, 0.3488769531, 1.267578125, -0.9331054688, -0.26953125, -1.767578125, -0.5756835938, -0.4655761719, -1.130859375, -0.1669921875, 0.7446289062, 0.7543945312, 0.6372070312, -0.2775878906, 0.1436767578, 0.4758300781, -0.2124023438, 0.2412109375, -0.4938964844, 0.7763671875, -0.7373046875, -0.3955078125, 1.5068359375, 0.6220703125, -0.75, 0.2178955078, 0.732421875, 0.8715820312, 0.2272949219, -0.4782714844, -0.5029296875, 0.4201660156, 0.1067504883, -0.0271148682, -0.7006835938, 0.0576477051, 0.3664550781, -0.8481445312, -1.0556640625, 0.650390625, 0.9692382812, -0.58984375, 0.3522949219, 0.2109375, -0.4572753906, 0.7006835938, 0.8642578125, 0.9106445312, -1.09765625, -0.552734375, -0.8227539062, 0.947265625, -1.2255859375, 0.5288085938, 0.047668457, 0.0880126953, -0.8564453125, 0.1527099609, 0.3254394531, 0.0194702148, -0.1619873047, 0.6459960938, 0.1612548828, 0.0828857422, 0.0510559082, -0.6948242188, -0.0754394531, -0.2183837891, 0.447265625, 0.603515625, 0.5317382812, -0.3801269531, 0.3046875, -1.6875, -0.1993408203, 0.4865722656, -1.6220703125, 0.7822265625, -0.6137695312, -0.2807617188, -0.0390319824, -0.400390625, -0.4855957031, -0.833984375, -0.1866455078, 0.0612487793, 0.2016601562, 0.7114257812, -0.3979492188, -0.1190795898, 0.3386230469, 0.4086914062, 0.2707519531, 0.619140625, 0.4765625, 1.248046875, -0.3041992188, 0.2866210938, 0.3139648438, 1.3271484375, 0.0432739258, -0.966796875, 0.1173095703, 0.7866210938, 0.6118164062, 1.2880859375, -0.1206054688, -0.0547485352, -0.0934448242, -0.4357910156, -0.0768432617, -1.0390625, -0.2829589844, 0.8452148438, -0.646484375, -0.2805175781, 0.68359375, 0.23828125, -0.1196289062, 0.9614257812, -0.3955078125, 0.3952636719, 0.0438842773, 0.6674804688, -0.7622070312, 0.2220458984, -0.6352539062, 1.6083984375, -2.0546875, -0.6845703125, 0.7143554688, 0.1959228516, -1.130859375, -0.4174804688, 0.3210449219, -0.9169921875, -0.2171630859, 0.8911132812, -0.4936523438, -0.611328125, 0.0014801025, -0.4348144531, 0.490234375, 0.1761474609, 0.2917480469, -0.7075195312, -0.3786621094, -0.39453125, -0.0762939453, -0.2456054688, -0.4543457031, -0.4719238281, -0.5854492188, 0.876953125, 0.4111328125, -0.5405273438, -0.873046875, -0.291015625, 1.1376953125, 1.4619140625, 0.1495361328, -1.544921875, 0.7578125, 0.2749023438, -0.9575195312, -0.46875, -0.6533203125, 0.3735351562, -0.5864257812, -0.3129882812, -0.25390625, 0.2125244141, -0.7568359375, -0.2027587891, 0.8168945312, 0.416015625, 0.4018554688, 0.830078125, 0.2553710938, -1.27734375, -0.4802246094, 0.1822509766, -0.9868164062, -0.1224975586, 0.0715332031, 1.0693359375, -1.1494140625, -0.1756591797, 0.1954345703, -0.1022338867, 0.6962890625, -0.3295898438, 0.4077148438, -1.38671875, -0.7939453125, 0.3615722656, 0.2257080078, -0.0862426758, -0.1218261719, -0.3115234375, 0.001906395, 0.0822143555, -0.0236053467, -0.7661132812, 1.208984375, -0.5791015625, 0.8022460938, 0.0604553223, 1.072265625, -0.5102539062, 0.9116210938, 0.0247955322, -0.9775390625, -0.8002929688, 0.2159423828, -0.0594177246, -0.1563720703, -0.2517089844, 0.7763671875, 0.775390625, -0.3950195312, 1.07421875, -0.3601074219, -0.0065879822, 0.2927246094, 0.1783447266, 0.7626953125, 0.6865234375, -0.1427001953, 0.865234375, -0.6645507812, -0.0632324219, -0.2020263672, 0.72265625, 0.5981445312, -0.7631835938, -0.2866210938, -0.3811035156, -0.1049194336, 0.1325683594, -0.1080322266, -0.0087738037, -0.2124023438, 0.9506835938, 0.9350585938, 0.3835449219, -0.2490234375, -0.2044677734, 0.2186279297, 0.2149658203, 0.9799804688, -0.4750976562, 0.3017578125, -1.03125, 1.1357421875, -1.3173828125, 0.2316894531, -0.0250396729, -0.7788085938, -0.9458007812, 0.7543945312, -0.9672851562, 0.8481445312, -0.5673828125, 0.556640625, 0.76171875, -0.3583984375, 0.0375366211, -0.2841796875, -0.1645507812, -0.46484375, 0.7177734375, -0.3352050781, -0.4650878906, -0.6088867188, 1.3857421875, 0.8779296875, 0.3232421875, -1.1240234375, -0.7563476562, -0.0757446289, 0.142578125, 0.4211425781, -0.6401367188, 1.6181640625, 0.2861328125, -0.2104492188, -0.8330078125, -0.7905273438, -0.1033935547, -0.927734375, -0.3461914062, -0.0067901611, 1.2392578125, 0.6865234375, 0.916015625, 0.2410888672, -0.0762939453, 0.3610839844, -1.125, 0.0275115967, 0.3303222656, 0.2604980469, -0.3049316406, 0.7915039062, 0.2436523438, -0.751953125, -0.5766601562, -0.2573242188, -0.0280151367, -0.5458984375, 0.861328125, -0.8544921875, -0.4777832031, 0.8349609375, 0.5209960938, 1.5537109375, -0.112487793, -0.2374267578, -0.5361328125, -1.3115234375, -0.2131347656, 0.5185546875, -0.1851806641, 0.0202331543, 0.0033092499, -0.2578125, 0.6196289062, 0.3732910156, -0.0228424072, 0.5297851562, -0.2399902344, -0.3903808594, 0.46875, 0.2719726562, -0.2612304688, -0.2795410156, -0.3950195312, 0.1762695312, -0.7353515625, -0.3527832031, 0.5126953125, 0.3725585938, -0.3044433594, 0.4663085938, 1.1435546875, 0.7768554688, 0.6430664062, 0.3225097656, 0.2330322266, -0.408203125, 0.5776367188, -0.541015625, -0.8618164062, 0.6450195312, -0.2719726562, -0.6591796875, 0.3171386719, 0.0057525635, -0.2100830078, -0.36328125, -0.6064453125, 0.8110351562, -0.2614746094, -0.0388793945, -0.8208007812, 0.2115478516, -0.5219726562, -0.3664550781, 0.3979492188, 0.75, 0.990234375, -1.4453125, 0.2279052734, -0.2900390625, 0.849609375, 0.4384765625, 0.5004882812, -0.2514648438, -0.2313232422, -0.3486328125, -0.1318359375, 0.5283203125, -0.6088867188, -0.9296875, 0.19140625, 0.4423828125, -1.1865234375, -0.2766113281, -0.5327148438, -0.591796875, 0.4880371094, -0.3791503906, 0.1904296875, -0.1020507812, 1.591796875, 0.623046875, 0.7202148438, 1.10546875, -0.8305664062, -0.734375, 0.5698242188, 0.59765625, 0.7827148438, -0.4763183594, 0.85546875, 0.6044921875, -0.3725585938, -1.0771484375, 0.1061401367, 0.2481689453, 0.3706054688, -1.40234375, 0.7172851562, 1.2607421875, 0.5473632812, -0.2475585938, 0.1038208008, 1.0986328125, -1.146484375, -0.2551269531, 0.7612304688, -0.2763671875, -0.1281738281, -1.03515625, -0.8374023438, -0.7841796875, -0.0855102539, -0.2917480469, -0.65625, 0.3618164062, -0.3420410156, -0.98828125, -0.7583007812, -0.1094360352, -0.5561523438, 0.5087890625, -0.1595458984, -0.073059082, 0.7954101562, 0.2646484375, 0.1126098633, 0.5498046875, 0.0712280273, 1.19140625, 1.12109375, 1.09375, 0.2221679688, -0.4814453125, 0.271484375, -0.80078125, 0.3891601562, -0.3229980469, -0.1391601562, 0.869140625, 0.4152832031, 0.3251953125, 0.3149414062, 0.5185546875, 1.0390625, -0.7978515625, 0.306640625, 0.6259765625, 0.061340332, -0.2102050781, 0.0228729248, 0.9990234375, 0.1384277344, -0.5249023438, 1.4462890625, 0.236328125, -0.5854492188, 0.166015625, -0.091796875, 0.5151367188, -0.3686523438, -0.1469726562, 1.7578125, 0.0940551758, -0.853515625, 0.7412109375, 1.5791015625, 0.2414550781, -0.3969726562, -0.736328125, -0.2322998047, -0.6987304688, 1.10546875, 0.5844726562, -0.4658203125, -0.0342407227, 0.2496337891, 0.3029785156, 0.1904296875, 0.64453125, 0.3452148438, 0.4152832031, 1.078125, 0.52734375, 1.130859375, -0.841796875, 0.7094726562, 0.1186523438, -0.3210449219, 0.0329589844, 0.2946777344, -0.6967773438, 0.1848144531, -0.6918945312, 0.7641601562, 0.091796875, -1.224609375, -0.96875, 0.4506835938, 0.1822509766, -0.5698242188, 0.8803710938, 0.7392578125, 0.5703125, -0.1362304688, 0.0561523438, 1.0517578125, -0.0784301758, 0.0184173584, -0.2780761719, 0.2406005859, -0.4489746094, -0.55078125, 0.25, 0.982421875, -0.5981445312, -1.1015625, -0.3857421875, -0.0390625, 0.6323242188, -0.4675292969, 0.1231079102, -1.529296875, -0.0375671387, 0.5986328125, -0.6000976562, -1.6142578125, -0.8798828125, 0.6147460938, -0.4633789062, -0.732421875, 0.2629394531, -0.3884277344, 0.560546875, -0.1343994141, -0.6674804688, 0.2995605469, -1.0498046875, -0.3515625, -0.0792236328, -0.8110351562, -1.841796875, -0.87890625, -0.2021484375, -0.794921875, -0.0034255981, 0.1497802734, 0.8549804688, -1.0205078125, 0.7416992188, -0.0309448242, 0.58203125, -0.4765625, 0.9248046875, 0.008026123, -0.0011577606, 0.1185913086, 0.8447265625, 0.306640625, 0.181640625, -0.4543457031, -1.279296875, -0.3334960938, 0.0048484802, -0.2291259766, -0.0581359863, 0.4946289062, -0.4094238281, -0.1605224609, -0.2546386719, -1.11328125, -1.08984375, 0.5102539062, 0.8608398438, -0.8442382812, -0.8974609375, -0.3193359375, -0.0928344727, -0.2834472656, -0.0084457397, -0.1252441406, 0.1942138672, 0.1666259766, -0.66015625, -0.5112304688, -0.4660644531, 0.3212890625, 0.548828125, 1.0068359375, 0.0588989258, 0.9389648438, 0.46484375, -0.7270507812, 0.4609375, -0.8051757812, -0.2192382812, -0.1138305664, 0.6958007812, -0.4792480469, -0.64453125, -0.1451416016, 0.564453125, -0.0017490387, -0.869140625, -0.3676757812, 0.580078125, 0.9169921875, -0.8110351562, -0.1773681641, -0.12890625, -0.6616210938, -0.2270507812, 0.1848144531, 0.3999023438, 0.1171875, -0.4216308594, 0.3911132812, -1.01171875, 0.3095703125, -0.1132202148, -0.1091918945, 0.0075683594, -0.1334228516, 0.2042236328, 0.8813476562, -0.392578125, 0.1872558594, 0.4602050781, 0.123840332, -1.2998046875, -0.1899414062, 0.2927246094, 0.9052734375, -0.6625976562, -0.0720214844, -0.0668945312, 0.9340820312, 0.841796875, 0.4729003906, -0.3701171875, 1.1669921875, -0.8676757812, -0.0790405273, -0.2883300781, -0.3149414062, -0.1611328125, 0.33203125, 0.6752929688, 0.8510742188, -0.1831054688, -0.3237304688, 0.3579101562, 0.0201873779, -0.0087280273, 0.6059570312, 0.701171875, 0.2805175781, -0.4851074219, -12.3671875, -0.876953125, -0.615234375, 0.7387695312, 0.4235839844, 0.3195800781, 0.4262695312, -0.2976074219, -1.09375, 0.0536499023, -0.2551269531, -0.5537109375, 0.0745239258, -0.4353027344, 0.330078125, 0.0724487305, -0.7504882812, -0.0454406738, 0.1964111328, -0.2266845703, -0.5375976562, -0.3483886719, 0.0754394531, -1.125, 0.6245117188, 0.10546875, 0.2797851562, -0.4807128906, -0.3916015625, -0.7465820312, -1.0517578125, -0.9526367188, 0.3015136719, -0.8100585938, 0.1828613281, -0.5791015625, 1.1142578125, 0.8447265625, -1.8251953125, 0.6953125, 0.7436523438, -0.5688476562, -1.03515625, -0.9677734375, -0.974609375, 0.3510742188, -0.032043457, -1.015625, 0.9189453125, 0.5180664062, 0.7827148438, 0.1920166016, 0.6606445312, 0.3210449219, 0.1501464844, -0.48828125, 1.099609375, -0.654296875, -0.4875488281, 1.2548828125, 0.0595703125, -0.5791015625, -0.5405273438, 0.3081054688, -0.5234375, -0.6953125, -0.4260253906, -0.4953613281, 1.3720703125, -0.3000488281, -1.169921875, -0.1042480469, -0.4794921875, -0.8071289062, -0.1479492188, 0.1723632812, 0.4304199219, 0.5717773438, 0.7680664062, 0.4658203125, 0.1741943359, -0.5815429688 ]
On June 30, 2017, the ferry suffered minor damage after a driver drove their Chevrolet Blazer SUV through the dock gates and launched the vehicle onto the ferry's car deck. On March 26, 2019 Queen of Surrey missed the berth at Langdale terminal and struck the Stormaway dock. The vessel then became stuck and was subsequently incapable of disembarking the passengers and vehicles aboard. A tugboat was called to assist the ferry in maneuvering to the terminal to allow foot and vehicle passenger to disembark after being stuck for nearly ten hours. The vessel was eventually dislodged from the terminal after part of the lower car deck was cut away. References External links West Coast Ferries: Queen of Surrey WellandCanal.ca: Queen of Surrey Queen of Surrey photo gallery C-class ferries 1981 ships Ships built in British Columbia
[ -0.0765380859, -0.1899414062, -0.1412353516, 0.759765625, 0.2335205078, 0.9609375, -0.2880859375, -0.5771484375, -0.8911132812, -0.0439758301, 0.0286560059, -0.2386474609, -1.361328125, 1.048828125, 0.7822265625, -0.098449707, 0.4594726562, -0.3005371094, -0.0376586914, -0.5395507812, -0.0778808594, 0.2939453125, -0.2406005859, 0.0416870117, -0.29296875, -0.6616210938, -1.0029296875, -0.4916992188, -0.77734375, -0.267578125, -0.8154296875, 0.0307006836, -0.4936523438, 0.1593017578, -2.279296875, 0.0405273438, -0.2443847656, 0.8979492188, 0.5478515625, -1.2783203125, 0.0302276611, -0.55859375, 0.7856445312, -0.5502929688, 0.689453125, 0.0718383789, -0.6499023438, -1.0576171875, -0.9340820312, 0.8383789062, 1.12890625, 0.2047119141, 0.3073730469, -0.4904785156, -0.3127441406, -0.0400085449, -0.9873046875, 1.2666015625, -0.0944824219, 0.1199951172, -0.4611816406, -0.0725097656, -1.373046875, -0.2108154297, 0.5927734375, 0.5815429688, 0.2236328125, -0.2902832031, -0.7592773438, 0.7001953125, 0.2396240234, 0.1032104492, -0.0704956055, -0.6274414062, 0.0481872559, -0.2062988281, -0.114440918, 0.3903808594, -0.2270507812, -0.2902832031, -0.1065063477, -0.9213867188, -0.7241210938, -0.4704589844, -0.763671875, -0.6484375, -0.0687255859, -0.5830078125, -0.1868896484, 1.82421875, -0.0196533203, 0.4162597656, -0.5659179688, -0.314453125, -0.1195678711, 0.466796875, -1.013671875, -1.4306640625, 0.0133209229, -0.4455566406, 1.0166015625, 0.2019042969, 0.5087890625, -0.0749511719, -1.494140625, 1.185546875, -0.2756347656, -1.0771484375, -0.3146972656, -0.3811035156, 1.0703125, -0.1721191406, -0.3688964844, 0.0998535156, -0.3376464844, -0.4645996094, -1.322265625, -0.791015625, -0.6513671875, 0.3776855469, 0.5498046875, -0.2036132812, 1.5537109375, 0.059967041, 0.78515625, 0.0290527344, 0.2897949219, -0.3205566406, 1.1240234375, 0.3784179688, -1.083984375, 0.1385498047, -0.7114257812, -0.4670410156, 1.908203125, -0.5283203125, -0.9809570312, 0.0822143555, 0.58984375, 0.7905273438, 0.5268554688, 0.7109375, -0.4060058594, -0.1981201172, -0.016784668, -0.1793212891, -0.2003173828, 0.1185913086, -2.1015625, 0.2391357422, -0.6826171875, 0.5830078125, 0.7041015625, 0.1984863281, 0.4851074219, -0.83984375, 0.3798828125, 0.0492553711, 0.56640625, -0.4284667969, -0.6967773438, -0.5639648438, -0.00806427, 0.6333007812, -0.7744140625, -0.2475585938, -0.8857421875, 0.2514648438, -1.9365234375, 0.5766601562, -0.3054199219, 0.1003417969, -0.5727539062, -0.931640625, 0.328125, -0.6323242188, 0.8383789062, -1.193359375, -0.1036376953, -0.0440063477, 0.3657226562, -0.4118652344, 2.185546875, -0.3039550781, 0.0150146484, -0.8129882812, 0.7690429688, 0.1968994141, -1.0302734375, -0.3967285156, 0.0550842285, -0.2133789062, -1.02734375, 0.751953125, 0.2629394531, -1.0185546875, -0.4020996094, 0.697265625, 1.623046875, -0.7314453125, 0.1735839844, -1.2998046875, 0.1956787109, -0.022567749, 0.1829833984, 1.0302734375, 0.1844482422, 1.0498046875, 0.1861572266, -0.5903320312, -0.4233398438, -0.6015625, 0.1949462891, 0.0204925537, -0.3544921875, -0.5942382812, 0.2275390625, 0.1340332031, 0.0891113281, 1.01953125, -0.0160064697, 0.6235351562, 0.7026367188, -1.220703125, 0.6884765625, -0.3542480469, 0.3747558594, 0.5405273438, 0.7016601562, -0.6796875, 0.5029296875, 0.4965820312, -0.8071289062, -0.9897460938, 0.1402587891, -0.2260742188, -0.2237548828, 0.484375, -0.3056640625, -1.2158203125, -0.625, -0.6640625, -0.2113037109, 0.1080932617, -0.310546875, -1.357421875, 0.5014648438, -0.2729492188, -0.1976318359, 1.166015625, 0.1302490234, 0.4528808594, 0.7221679688, 0.1453857422, 0.1340332031, -0.5346679688, 0.3857421875, -0.5834960938, 1.1953125, -0.7353515625, -0.3737792969, -0.0253448486, 0.3149414062, 0.5224609375, -0.1016845703, -1.10546875, -0.2229003906, 0.759765625, -0.0082931519, 0.0112380981, 0.5795898438, 1.02734375, -0.740234375, 0.4794921875, -1.9140625, -0.4243164062, -0.595703125, -1.2431640625, -0.6391601562, 0.6665039062, 1.0634765625, 0.6020507812, -1.0869140625, 0.232421875, 0.970703125, -0.3200683594, -0.724609375, -0.2758789062, 1.2470703125, -0.0336303711, -0.673828125, 0.9487304688, 0.521484375, -0.5551757812, 0.3920898438, -0.2052001953, 0.1837158203, -0.3898925781, 0.2406005859, -0.6762695312, 0.0231170654, -0.1313476562, -0.0578918457, -0.3479003906, -0.1540527344, -0.1302490234, -0.4958496094, -0.8588867188, 1.2705078125, 1.359375, -1.26953125, 0.0841674805, 0.259765625, 0.3718261719, 0.2751464844, -0.1687011719, 1.060546875, -1.1611328125, 0.1831054688, -1.1982421875, 1.302734375, -0.5786132812, 0.4370117188, 0.0553894043, -0.1435546875, -0.0879516602, 0.2768554688, 0.3469238281, 0.5639648438, 0.1157226562, 0.0207672119, 0.0048904419, -0.3469238281, -0.4313964844, -0.5844726562, -0.1573486328, 0.111328125, 0.1341552734, 0.0284423828, -0.2177734375, -0.0885009766, -0.3474121094, -1.6279296875, -0.4262695312, 0.4196777344, -1.587890625, 1.1806640625, -0.5048828125, -0.78515625, 0.3305664062, -0.4040527344, -1.052734375, -0.5288085938, -0.3491210938, -0.2390136719, 0.4609375, 0.5854492188, -0.8217773438, -0.1004638672, -0.3784179688, 0.7431640625, 0.5581054688, 0.1020507812, 0.2220458984, 0.7309570312, 0.1000976562, 0.5903320312, 1.1181640625, 0.7626953125, -0.1182861328, -0.9467773438, 0.0346374512, 0.5546875, 0.5327148438, 0.6723632812, -0.2739257812, -0.2661132812, 0.0056762695, 0.0335388184, -0.1069946289, -0.7978515625, -0.1962890625, 0.5795898438, -0.8217773438, -0.1304931641, 0.8999023438, 0.112487793, -0.7065429688, 1.4013671875, 0.2805175781, -0.2366943359, 0.4401855469, 0.2358398438, -0.6303710938, 0.1939697266, 0.1645507812, 1.458984375, -2.01953125, -1.2001953125, 0.705078125, 0.1676025391, -0.3515625, -0.7836914062, 0.6220703125, -1.255859375, 0.4304199219, 1.1982421875, -0.8129882812, -0.1152954102, 0.0416564941, -0.4047851562, 0.18359375, 0.0980224609, 0.0687866211, 0.1524658203, 0.5166015625, 0.6083984375, -0.4921875, -0.7124023438, -0.6752929688, -0.7309570312, -0.7446289062, 0.3483886719, 0.556640625, -0.1791992188, -0.5102539062, -0.1005249023, 1.2001953125, 1.08203125, 0.6665039062, -0.3383789062, 0.5380859375, -0.3950195312, -0.7397460938, -0.3469238281, -0.1138916016, 0.6694335938, -0.630859375, -0.408203125, -0.2379150391, 1.0087890625, -0.8696289062, 0.1008300781, 0.6440429688, 0.2342529297, -0.4851074219, 0.5151367188, 0.3540039062, -0.4211425781, -0.4436035156, 0.7236328125, -0.8500976562, -1.060546875, 0.1745605469, 0.9306640625, -0.9775390625, -0.4929199219, 0.4868164062, -0.3391113281, 0.1990966797, 0.3552246094, 0.2736816406, -1.130859375, -0.8896484375, 0.5625, 1.5234375, -0.1037597656, -0.81640625, -0.3889160156, -0.4040527344, 0.1964111328, -0.0727539062, -0.3854980469, 0.9169921875, 0.765625, 0.0479736328, 0.1346435547, 0.3752441406, -0.4675292969, 0.5029296875, 0.4108886719, -0.0605773926, -0.5361328125, -0.0317382812, -0.4011230469, 0.0430297852, -0.546875, 0.9521484375, 0.8110351562, 0.2993164062, 0.619140625, -0.5625, 0.9697265625, 0.513671875, -0.3295898438, 1.2265625, 0.4775390625, 0.1206054688, 0.8666992188, -0.2014160156, -0.2673339844, -0.37890625, 0.4235839844, -0.040222168, 0.0597839355, -0.3393554688, -0.2414550781, 0.1484375, 1.05078125, -0.6123046875, 0.2464599609, 0.3723144531, 0.4174804688, 1.640625, 1.2490234375, -0.4743652344, -0.7392578125, 0.1275634766, 0.4978027344, 0.4614257812, -0.609375, 0.4809570312, -2.501953125, 1.392578125, -1.40625, 0.2449951172, 0.52734375, -0.8920898438, -0.1807861328, -0.069152832, -1.1806640625, 0.1318359375, -0.2880859375, 0.4724121094, 1.001953125, -0.2985839844, 0.1401367188, -0.7827148438, 0.2707519531, -0.9677734375, 0.7290039062, -0.0479736328, 0.1862792969, -0.9228515625, 1.3681640625, 1.9658203125, 0.1187744141, -1.7373046875, -0.8276367188, -0.5068359375, 0.2446289062, 0.7250976562, -1.1806640625, 1.4287109375, -0.603515625, -0.1204223633, -0.6762695312, -0.7919921875, 0.4206542969, -0.7387695312, -0.4348144531, -0.4265136719, 1.2294921875, 1.076171875, -0.0338439941, 0.1215209961, -0.3969726562, 0.5341796875, -0.1889648438, 0.4772949219, -0.5307617188, 0.2543945312, -0.2683105469, 0.42578125, 0.6103515625, -0.1643066406, 0.2639160156, 0.3237304688, -0.5249023438, -0.0540466309, 1.1494140625, -0.6606445312, -0.4936523438, 0.6748046875, 0.544921875, 1.0556640625, 0.591796875, -0.1723632812, -0.748046875, 0.2902832031, -0.0650024414, 0.568359375, -0.708984375, 0.1414794922, -0.102355957, -0.0064163208, 0.4428710938, 0.990234375, -0.2491455078, 0.3454589844, -0.5390625, 0.3168945312, 0.8549804688, 0.0253295898, -0.6845703125, -0.48046875, -0.7060546875, -0.0617370605, -0.1663818359, -0.716796875, -0.3129882812, -0.0013866425, -0.376953125, 1.412109375, 0.892578125, 0.583984375, -0.0571289062, 0.5278320312, -0.4306640625, 0.0199432373, -0.0039482117, 0.3876953125, -0.51171875, 0.634765625, -0.5991210938, -0.9580078125, 0.2259521484, 0.2524414062, -0.5180664062, -0.4763183594, -0.4814453125, 0.5927734375, -0.0111236572, -0.1047363281, -1.10546875, -0.3161621094, 0.2937011719, -0.3410644531, -0.0646972656, 1.7939453125, 0.4912109375, -1.296875, -0.1656494141, -0.3132324219, 0.6782226562, 0.990234375, 0.2551269531, -0.41015625, -0.4340820312, -0.104309082, -0.2883300781, 0.5537109375, 0.2456054688, -1.2822265625, -0.3171386719, 1.353515625, -1.53515625, 1.3603515625, -0.2161865234, -0.505859375, -0.1510009766, -0.2127685547, 0.533203125, -0.0841674805, 1.14453125, -0.1889648438, 0.6879882812, 0.8168945312, -0.8134765625, -0.8022460938, 0.1458740234, 0.359375, 0.1130981445, 0.0519714355, 0.876953125, 0.9536132812, 0.0576477051, -0.4304199219, -0.3608398438, -0.3498535156, 0.2529296875, -1.0244140625, 0.95703125, 1.6572265625, 0.6665039062, -0.6875, -0.0453491211, 1.4560546875, -1.7666015625, -0.2800292969, 0.0476379395, -0.049407959, -0.0310211182, -1.1494140625, -1.2080078125, -0.1328125, 0.4333496094, -0.2504882812, -0.9565429688, 0.787109375, -0.3693847656, -1.5224609375, -0.2998046875, 0.2045898438, -0.5864257812, 0.0513000488, -0.7197265625, -0.333984375, 0.8520507812, -0.6655273438, -0.4362792969, 0.1379394531, 0.0331726074, 1.05078125, 0.3862304688, 0.4499511719, 0.3061523438, -0.5048828125, -0.1900634766, -0.7436523438, 0.1446533203, -0.0918579102, 0.4816894531, 0.8876953125, 0.8852539062, 0.0174407959, 0.1430664062, 0.6064453125, 0.9296875, -0.0562744141, 0.2937011719, 0.4606933594, 0.3591308594, 1.01953125, 0.1232910156, 0.6821289062, -0.6098632812, -0.7646484375, 0.3684082031, 0.8276367188, -0.3559570312, 0.3405761719, 0.2056884766, 1.2412109375, -0.3208007812, -0.4619140625, 1.3896484375, -0.5458984375, -1.0927734375, 0.0111160278, 0.5913085938, -0.1840820312, 0.1013183594, -0.8706054688, -0.3605957031, -0.3483886719, 0.7534179688, -0.0733642578, -0.3962402344, 1.15234375, 0.2453613281, 0.5068359375, 0.2374267578, 1.0390625, -0.6171875, 0.1590576172, 1.1142578125, -0.0575256348, 0.0165863037, -0.6928710938, 1.0556640625, 0.4057617188, 0.0076217651, 0.3127441406, -0.1096801758, -0.44921875, 0.1539306641, 0.0908813477, 0.775390625, -0.1986083984, -0.93359375, -0.3344726562, 0.0110321045, 0.67578125, -0.6499023438, 0.8046875, 1.1201171875, 0.5229492188, 0.2075195312, -1.2060546875, 0.6176757812, -0.9174804688, -0.6567382812, -0.3488769531, -0.2047119141, -0.9887695312, -0.8828125, -0.3559570312, 0.2196044922, -0.513671875, -0.8090820312, -1.29296875, -0.572265625, 0.6420898438, -0.6171875, -0.5185546875, -1.625, 0.2766113281, 0.1896972656, -0.3955078125, -0.390625, -1.2607421875, 0.3464355469, -0.6323242188, -0.22265625, 0.4931640625, -0.2863769531, -0.0542907715, 0.6000976562, -0.4636230469, 0.1539306641, 0.1149902344, 0.0926513672, -0.0918579102, -1.08203125, -0.8173828125, 0.4365234375, -0.4204101562, -0.2340087891, 0.5288085938, -0.1234130859, 1.0390625, -0.4040527344, 0.8784179688, -0.7211914062, 0.703125, -0.2807617188, 0.76953125, -0.2607421875, -0.5610351562, -0.4089355469, 0.7944335938, -0.1285400391, 0.2768554688, -0.8696289062, -1.462890625, -0.4089355469, -0.3117675781, -0.4133300781, -0.2058105469, 0.3395996094, -0.609375, 0.3483886719, 0.3918457031, -0.5981445312, -1.240234375, 0.2888183594, 0.3322753906, -0.5405273438, -0.7719726562, -0.53515625, -0.1704101562, 0.3747558594, 0.0421142578, -0.4645996094, 0.0848388672, -0.0667114258, -1.455078125, -0.0951538086, -0.1452636719, 0.2888183594, 0.1882324219, 1.40625, 0.31640625, -0.0489196777, 0.6083984375, -0.2351074219, 0.6606445312, -0.4326171875, -0.0587158203, 0.1480712891, 0.3818359375, 0.1845703125, -0.0548095703, 0.1793212891, 0.2976074219, 0.2386474609, -0.1573486328, 0.2692871094, 0.5205078125, 1.2587890625, -0.1173706055, -0.2758789062, 0.2534179688, -1.2197265625, 0.5659179688, -0.1400146484, -0.0553283691, 0.6831054688, -0.69921875, 0.1300048828, -1.544921875, 0.748046875, -0.52734375, -0.1485595703, -0.1246337891, -0.0154571533, -0.8408203125, 0.9248046875, -0.5249023438, 0.4128417969, 0.2880859375, 0.0270996094, -1.455078125, -0.1213989258, 0.5791015625, 0.9345703125, -0.5209960938, -0.611328125, 0.1120605469, 0.2420654297, 0.3073730469, 0.0237426758, 0.9252929688, 1.4443359375, -1.0166015625, 0.4484863281, -0.7485351562, 0.3386230469, 0.1799316406, 0.5209960938, 0.263671875, -0.0751953125, 0.0252685547, -0.2900390625, -0.3161621094, 0.4536132812, 0.1428222656, 0.3674316406, 0.892578125, 0.0693359375, -1.0185546875, -11.75, -0.0550231934, -0.2160644531, 0.7119140625, 0.0641479492, 0.2105712891, -0.1187744141, -0.4738769531, -1.1591796875, -0.0678710938, -0.6142578125, 0.1207275391, 0.3200683594, -0.267578125, -0.1141967773, -0.3122558594, -0.2907714844, -0.2229003906, -0.37109375, 0.3095703125, 0.0795898438, -0.5341796875, 0.1270751953, -0.7841796875, -0.1760253906, -0.0784301758, 0.2526855469, 0.3764648438, -0.1871337891, -0.2587890625, -0.73046875, -0.6171875, 0.7822265625, -0.043548584, 0.61328125, -0.625, 0.80859375, 0.0910644531, -1.1201171875, 0.3862304688, 0.2687988281, -0.998046875, -0.91015625, 0.0200042725, -1.3466796875, 0.1423339844, -0.8852539062, -0.2292480469, 1.0517578125, -0.2517089844, 0.5151367188, -0.5561523438, -0.2188720703, 0.0745239258, 0.5986328125, -0.6030273438, 1.478515625, -0.5307617188, -0.5244140625, 1.2353515625, -0.0210266113, 0.0616149902, 0.1322021484, -0.2229003906, -0.5717773438, -0.3212890625, 0.0275726318, -0.6752929688, 1.0537109375, -0.3278808594, -1.029296875, 0.564453125, -0.607421875, -1.3369140625, -0.0070915222, 0.3981933594, 0.6909179688, -0.1383056641, 0.0580749512, 0.7973632812, 0.1818847656, -0.5346679688 ]
Common Criteria Evaluation and Validation Scheme (CCEVS) is a United States Government program administered by the National Information Assurance Partnership (NIAP) to evaluate security functionality of an information technology with conformance to the Common Criteria international standard. The new standard uses Protection Profiles and the Common Criteria Standards to certify the product. This change happened in 2009. Their stated goal in making the change was to ensure achievable, repeatable and testable evaluations. Objectives The CCEVS program is a partnership between the U.S. Government and industry to assist themselves and the consumers: To meet the needs of government and industry for cost-effective evaluation of IT products To encourage the formation of commercial security testing laboratories and the development of a private sector security testing industry To ensure that security evaluations of IT products are performed to consistent standards To improve the availability of evaluated IT products. The scheme is intended to serve many communities of interest with very diverse roles and responsibilities. This community includes IT product developers, product vendors, value-added resellers, systems integrators, IT security researchers, acquisition/procurement authorities, consumers of IT products, auditors, and accreditors (individuals deciding the fitness for operation of those products within their respective organizations). Close cooperation between government and industry is paramount to the success of the scheme and the realization of its objectives. Validation Body The Validation Body has the ultimate responsibility for the operation of the CCEVS in accordance with NIAP policies and procedures. Where appropriate it will interpret and amend those policies and procedures.
[ 0.2420654297, -0.0990600586, 0.5092773438, -1.080078125, -0.1123657227, 0.0710449219, -0.896484375, -0.7075195312, 0.3181152344, -0.30078125, -0.0038032532, -0.0569763184, -0.2213134766, 0.057800293, -1.0078125, 0.2846679688, -0.3505859375, 0.6791992188, 1.4130859375, 0.9809570312, 0.4973144531, -0.330078125, 0.9375, -1.546875, -0.166015625, 0.482421875, 0.0018138885, 1.11328125, 0.3859863281, -0.0807495117, 0.0518188477, 0.5283203125, -2.0859375, 0.3237304688, 0.90234375, 0.6806640625, -0.7358398438, -0.783203125, -0.6088867188, -0.2447509766, 1.3642578125, -0.4523925781, -0.7099609375, -0.1501464844, -0.047088623, 0.2464599609, -0.1580810547, 0.6323242188, -0.0697021484, -1.1982421875, 0.0250091553, 0.505859375, 0.6298828125, -0.6997070312, -0.1356201172, -1.0537109375, 0.1118774414, -0.1508789062, 0.4548339844, 1.2021484375, -0.0915527344, 1.0927734375, 0.1218261719, -0.1514892578, 0.2575683594, 1.435546875, -1.53125, 1.28125, 0.3159179688, 0.3366699219, -1.1904296875, 0.4069824219, 0.5620117188, 0.1896972656, 0.0133285522, 1.3125, 0.5986328125, 0.708984375, 0.6865234375, 0.3571777344, -0.7514648438, -0.5419921875, -0.7143554688, -0.1529541016, -0.5893554688, -0.1358642578, -0.0153808594, -0.5747070312, -1.2900390625, 0.7202148438, 0.2175292969, -0.5185546875, -0.775390625, -0.4919433594, 0.0833740234, 0.62109375, 0.6733398438, 1.2080078125, 0.1845703125, 0.6704101562, -0.623046875, -0.6591796875, 0.8647460938, -0.1354980469, 0.2800292969, -0.3413085938, 0.7758789062, -0.8002929688, 0.7231445312, 0.0307159424, 0.2861328125, 0.2692871094, 0.1303710938, -0.1292724609, 0.1154785156, -0.4501953125, -0.0188598633, 0.1678466797, -0.1716308594, -0.3911132812, 0.1959228516, -0.0728759766, 0.8295898438, -0.2919921875, -0.3100585938, -0.2526855469, 0.2912597656, 0.0562744141, 0.1510009766, -0.2119140625, 0.2315673828, 0.1151123047, 0.658203125, -0.1132202148, -0.1087646484, -0.2963867188, 0.1101074219, 0.4411621094, 0.2292480469, 0.0461120605, -0.1411132812, -0.3776855469, -0.6845703125, -0.2283935547, 1.0615234375, -0.5825195312, -1.466796875, 0.3293457031, -0.3430175781, -0.1448974609, -0.1018066406, -0.6772460938, 0.7734375, -0.1634521484, 0.7705078125, -0.5048828125, -1.2666015625, 0.72265625, -1.1357421875, -0.5112304688, -0.2641601562, -0.6669921875, 0.419921875, -0.0275878906, -0.578125, -1.126953125, 0.3122558594, -0.1284179688, 0.2717285156, -0.6577148438, 0.2412109375, -0.390625, -0.701171875, 0.5078125, 0.6171875, 0.1148681641, 0.765625, 0.004825592, 0.2401123047, -0.9291992188, -0.30078125, -0.2204589844, 0.0141983032, -0.6440429688, -0.6733398438, 0.2922363281, -0.0330810547, 0.0059928894, -0.27734375, -0.6557617188, 0.2149658203, 0.4997558594, -0.4047851562, 0.9384765625, -0.3520507812, -0.0941772461, 0.4907226562, 0.1024169922, -0.4399414062, 0.2868652344, 0.4001464844, 0.3977050781, 0.0667724609, 0.5083007812, -0.5078125, -0.1524658203, 0.3894042969, 1.6591796875, 0.896484375, 0.591796875, -0.2788085938, 0.2604980469, -0.0347595215, 0.8115234375, 0.0342407227, 0.2087402344, 0.6440429688, -0.3520507812, -0.2163085938, -0.4125976562, -0.2763671875, 0.3708496094, -0.8217773438, -1.3525390625, -0.71875, -0.4536132812, 0.1666259766, 0.8125, 0.912109375, 0.1676025391, 0.505859375, 1.537109375, 0.8740234375, 0.6513671875, 1.2373046875, -0.1123046875, 0.0906982422, 0.8325195312, 0.2484130859, 0.2498779297, 0.46875, 0.0391845703, -0.0493469238, -0.0806274414, 0.0555114746, -1.697265625, 0.6220703125, -1.06640625, 0.4865722656, -0.6098632812, -0.5869140625, -0.697265625, -0.4750976562, 0.9287109375, 0.4296875, 0.0027523041, -0.6166992188, 0.3518066406, 0.3569335938, -1.0185546875, -0.6821289062, 0.9379882812, 0.9340820312, 0.2802734375, 0.5747070312, -0.7958984375, -0.7133789062, -0.2396240234, 0.9135742188, 0.408203125, 0.58984375, -0.1791992188, -0.3120117188, -1.63671875, 0.112121582, -0.4509277344, -0.0238647461, -0.388671875, 0.529296875, 1.12890625, 0.4875488281, 0.4899902344, 0.50390625, -0.5668945312, 0.8876953125, -1.07421875, -0.859375, 0.5747070312, -0.5502929688, 1.6015625, -0.0901489258, 0.4907226562, 0.1740722656, -0.1271972656, -0.1165161133, 1.255859375, 0.15625, -0.6616210938, -0.0876464844, -0.841796875, -0.7177734375, 0.3798828125, 0.7631835938, -0.513671875, 0.3540039062, 0.73828125, -0.3544921875, -0.529296875, -0.0701293945, 1.1669921875, 0.8090820312, -0.8081054688, 0.2954101562, -0.361328125, 0.1633300781, -0.0045204163, -1.5859375, -0.7709960938, -0.373046875, -0.4704589844, -0.2076416016, -0.1856689453, -0.60546875, 0.3544921875, 0.9731445312, 0.2707519531, -0.0587768555, -0.478515625, 0.6533203125, -0.0107803345, 0.7807617188, -0.576171875, 1.41015625, 0.4689941406, -0.7133789062, -0.2395019531, 0.5571289062, -1.0078125, 0.671875, -0.3864746094, -0.2182617188, -1.37890625, 0.1813964844, -0.0874633789, -0.353515625, 0.9716796875, -0.5439453125, -0.9384765625, 0.8305664062, -0.2827148438, 0.6147460938, 0.0592041016, -0.2573242188, 0.146484375, 1.19140625, -0.4919433594, 0.0555725098, 0.1285400391, -0.1439208984, 1.32421875, 0.5112304688, 0.181640625, -0.3317871094, 0.7426757812, -1.15234375, 0.0828857422, -0.0765380859, -0.0686645508, 0.0035057068, -1.078125, 0.7202148438, 0.1017456055, -0.6196289062, -0.2683105469, 0.4877929688, -0.5478515625, -0.1196899414, 0.2481689453, -1.1611328125, 0.2230224609, 0.4494628906, -0.572265625, -0.751953125, -1.05859375, -0.0794677734, -0.1217041016, -0.740234375, -0.4106445312, -0.9345703125, -0.0804443359, 0.5166015625, -1.38671875, -0.1649169922, 0.1297607422, -0.712890625, -0.5981445312, 0.5874023438, -0.6923828125, 0.552734375, -0.828125, -0.0460510254, -0.3693847656, -0.216796875, -0.2924804688, -0.287109375, 1.181640625, 0.435546875, -0.3989257812, 0.0129241943, -0.2238769531, 0.0225524902, -0.0235443115, -0.4270019531, 0.15234375, -1.0908203125, -0.2880859375, 0.5947265625, 0.2219238281, 0.0699462891, 0.2788085938, -0.2330322266, 0.0642089844, 0.8413085938, -1.2060546875, -0.61328125, -0.4360351562, 0.1018066406, 0.2147216797, 1.4619140625, 0.5244140625, -0.7309570312, -0.0767822266, 0.2573242188, -0.7275390625, -0.6904296875, -0.1181030273, -0.8842773438, -0.3869628906, -0.271484375, 0.4028320312, 0.4809570312, 0.2509765625, -0.1951904297, 0.470703125, 0.5356445312, -0.2587890625, -0.1069946289, -0.849609375, 0.3811035156, 0.9291992188, -0.7021484375, 0.8017578125, -0.0084991455, -0.1560058594, 1.0068359375, 1.869140625, -0.369140625, -0.8334960938, -0.1340332031, 0.9321289062, -0.1223754883, -0.3415527344, 0.1951904297, -0.1628417969, -0.2546386719, -1.2099609375, -0.6557617188, 0.6708984375, -0.3764648438, 0.0845336914, -1.072265625, 0.0386352539, 0.3308105469, 0.1937255859, 0.029083252, 0.74609375, 0.8950195312, 0.1298828125, -0.0634155273, -0.4272460938, 0.0820922852, 0.4045410156, -1.6611328125, -0.3081054688, -1.2373046875, 0.5317382812, 0.5419921875, -0.5434570312, -0.0758666992, -0.6611328125, 0.9331054688, 0.1204833984, -0.412109375, -1.341796875, -0.43359375, -0.7651367188, 0.7885742188, -0.5322265625, 0.1181640625, -0.3366699219, 0.3142089844, -0.1150512695, -0.71484375, -2.111328125, -0.3078613281, -1.1630859375, -0.2391357422, -0.2318115234, -0.1766357422, 1.2724609375, -0.0716552734, 0.0307006836, -0.6860351562, 0.1390380859, -0.6616210938, -0.6025390625, -0.1205444336, -0.71484375, 0.7026367188, 0.2529296875, 0.3005371094, -0.0968017578, -0.0314941406, -0.513671875, 0.5541992188, 0.8540039062, -0.2017822266, 0.3330078125, -0.2583007812, 0.0655517578, 0.3256835938, 0.7788085938, 0.1026000977, 0.4365234375, -0.2163085938, -0.6640625, -0.0259857178, -0.4116210938, -0.775390625, -0.1546630859, 0.7915039062, -0.0306396484, -1.2998046875, 0.3227539062, -0.0366210938, -0.8305664062, -1.1982421875, -0.6264648438, -0.8203125, -0.763671875, 0.0190582275, 0.44140625, -0.6840820312, 1.1435546875, 0.0694580078, 0.0657958984, -1.0771484375, 1.2216796875, -0.1295166016, 0.4721679688, 0.1072998047, 0.0449523926, -0.0927124023, 0.108215332, -0.2364501953, 1.224609375, 0.1759033203, 0.6596679688, 0.004070282, -0.1026000977, -1.197265625, 0.2395019531, 0.1940917969, 0.1197509766, 1.0849609375, -0.2763671875, -0.0073776245, -0.4978027344, -0.5366210938, -0.3596191406, -0.1016845703, -0.140625, -1.0419921875, 0.3737792969, 0.0078964233, 0.501953125, -0.0614013672, 0.5561523438, -0.7509765625, -0.8955078125, 0.2592773438, -0.4650878906, 0.1063842773, 0.9409179688, -0.2790527344, -0.7783203125, -0.0434875488, 0.9516601562, 0.734375, 0.1141967773, -0.2131347656, 0.6196289062, -0.3337402344, -0.3312988281, 0.3686523438, -0.4389648438, -0.2026367188, -0.3608398438, -0.3237304688, -0.0133132935, -0.56640625, 0.3215332031, 0.0145492554, 0.9956054688, -0.1397705078, -0.48046875, -0.4060058594, -0.1422119141, 0.2546386719, -1.2255859375, -0.0057029724, -0.0019798279, 0.1311035156, 0.089050293, 0.8286132812, -0.0798339844, -0.2653808594, 0.509765625, 0.0453186035, 0.2352294922, -0.0783081055, 0.1817626953, -0.2788085938, -0.5903320312, -0.7841796875, 0.4604492188, -1.04296875, 0.5581054688, 0.4260253906, -0.0909423828, 0.2332763672, 0.2390136719, 1.6806640625, 0.6567382812, -0.65625, -0.2668457031, -0.1993408203, -0.6953125, -0.9604492188, 0.2924804688, -0.0710449219, 0.1291503906, 0.5180664062, -0.3439941406, 0.1164550781, -1.091796875, -0.0646362305, 0.3872070312, -0.4030761719, -0.1536865234, -1.3427734375, 0.9663085938, 0.02734375, 0.1441650391, -0.4536132812, -1.2158203125, 0.34765625, -0.5190429688, 0.2702636719, -0.8120117188, -0.8017578125, -0.0046195984, -0.3176269531, 0.5654296875, 0.6586914062, 0.1208496094, 0.5249023438, -0.2917480469, 0.2015380859, 0.765625, 0.084777832, -0.9296875, -0.4797363281, 0.876953125, -1.015625, -0.4157714844, -0.4133300781, -0.5405273438, 0.634765625, -0.3176269531, -0.3137207031, -0.1533203125, -0.5166015625, 0.7016601562, -0.2607421875, -1.5302734375, -0.0939331055, 0.5678710938, 0.2241210938, 0.0524597168, -0.2744140625, 0.3366699219, -0.0743408203, -1.0869140625, -0.470703125, 0.6235351562, 0.373046875, -0.1155395508, 0.4025878906, 0.82421875, -0.3203125, 0.1248168945, 0.7763671875, 0.4833984375, -0.3234863281, 0.4418945312, -0.1770019531, -0.4450683594, 0.4685058594, -0.2360839844, -0.0590209961, -0.3891601562, 0.3278808594, -0.1573486328, 0.0707397461, -0.5883789062, 0.0806884766, 0.111328125, 0.1256103516, 1.3837890625, -0.7768554688, 0.12890625, -0.7661132812, 0.4721679688, -0.7041015625, -0.3996582031, 0.3364257812, 1.5673828125, 0.1234741211, -0.4956054688, 1.4794921875, 0.546875, 0.0684814453, -1.984375, 0.4099121094, -0.3933105469, 1.1474609375, -0.880859375, -0.1647949219, -0.9360351562, 0.3469238281, -0.703125, 0.1167602539, 0.1026000977, 0.2135009766, 0.1387939453, -0.4448242188, 0.2120361328, -0.1680908203, -0.0503845215, 0.2099609375, -0.591796875, -0.30078125, -0.6147460938, 0.1743164062, -0.2216796875, 0.1458740234, 0.1356201172, 0.1078491211, -0.5141601562, -0.65234375, -0.2585449219, -0.8369140625, -0.568359375, 0.1298828125, -0.0456542969, -0.0610961914, -1.640625, -0.544921875, -0.39453125, -0.8598632812, 0.4621582031, 0.5498046875, -0.3801269531, 0.1656494141, -0.5703125, 0.2521972656, 0.2205810547, -0.2114257812, -0.2208251953, -0.2709960938, -0.9497070312, -0.3325195312, 1.6728515625, -0.4091796875, -0.1207885742, -0.21875, -0.6586914062, 0.4233398438, 0.3957519531, -0.34375, -0.3142089844, 0.4812011719, 0.4123535156, 1.185546875, -0.7563476562, 0.5537109375, -0.2204589844, -0.1895751953, 0.1251220703, -0.4340820312, 0.501953125, -0.0538024902, -0.0794067383, 1.0302734375, 0.2255859375, 0.6069335938, 0.7768554688, -0.7109375, 1.0244140625, 0.2390136719, -0.1265869141, 0.4836425781, 0.1156616211, 0.5981445312, 0.3542480469, -0.9750976562, 0.3881835938, -0.546875, -0.0991821289, 0.791015625, -0.3449707031, 0.466796875, 1.009765625, 0.8955078125, 1.2705078125, 0.3818359375, -0.1688232422, 0.2600097656, -0.1580810547, -0.5405273438, -0.7768554688, -0.1457519531, -0.3696289062, -0.50390625, -0.6938476562, -0.3168945312, 0.703125, -0.0818481445, -0.2900390625, 0.8715820312, -0.1008300781, 0.0400085449, -0.1801757812, 0.0523986816, -0.7944335938, -0.4206542969, 0.2658691406, 0.1450195312, 0.619140625, -0.0447998047, 0.6669921875, 0.2280273438, -0.0173339844, -0.2365722656, 0.5942382812, -0.2573242188, -0.0011501312, -0.3664550781, -0.5810546875, 0.4516601562, -0.359375, -0.8334960938, -0.1407470703, -0.5190429688, 0.9619140625, -0.4221191406, 0.4770507812, -0.8447265625, 1.6982421875, 0.88671875, 0.6606445312, 0.050201416, -1.2353515625, -0.1278076172, -0.1811523438, 0.267578125, -0.4809570312, -0.1258544922, 0.3146972656, 0.1256103516, 0.501953125, 0.6953125, 0.1649169922, -0.1101074219, 0.3278808594, -0.5180664062, -0.3388671875, -0.3444824219, 0.3791503906, -0.3894042969, -0.6201171875, -0.4343261719, 0.8393554688, 0.7319335938, 0.587890625, -0.2263183594, -0.7880859375, 0.853515625, -1.2529296875, 0.4555664062, -0.4069824219, 0.9794921875, -1.2890625, 0.0327758789, 0.2634277344, 0.7275390625, -0.1739501953, 0.3666992188, -0.8862304688, 0.248046875, 0.6318359375, 0.4533691406, 0.4738769531, 0.6625976562, 0.2468261719, 0.5893554688, -0.3312988281, -0.736328125, 0.3303222656, 0.2883300781, -0.533203125, -0.0146560669, 0.1936035156, 0.0100784302, -0.890625, -0.5185546875, 0.7905273438, 0.3146972656, -0.1838378906, -0.1374511719, -1.4501953125, -13.421875, 0.568359375, -0.2314453125, 0.0873413086, 0.8701171875, 0.2543945312, 0.7719726562, -0.0084762573, -0.5659179688, -0.0600585938, 0.4213867188, 0.6401367188, -0.1800537109, 0.0953369141, 1.2666015625, -0.0641479492, -1.2490234375, 0.1647949219, 0.5737304688, 0.3801269531, 0.5234375, -0.7543945312, -0.2624511719, -0.3115234375, -0.2443847656, 0.4729003906, 0.2259521484, -0.3740234375, -1.2177734375, -0.0238952637, 0.330078125, 0.349609375, -1.0947265625, -0.0784301758, 0.1979980469, -0.693359375, 0.1076049805, 0.2130126953, 0.1380615234, -0.50390625, 0.1463623047, 0.3117675781, -2.296875, 0.005241394, 0.6303710938, 0.1956787109, 0.0124816895, -1.1806640625, 0.451171875, -0.2915039062, 0.4213867188, -0.7099609375, -0.7514648438, -0.4382324219, -0.751953125, -0.0756225586, 1.2607421875, -0.5102539062, 0.3571777344, 0.0482788086, 0.080078125, 1.9150390625, -0.110168457, -0.2136230469, -0.1596679688, -0.0776977539, -0.1506347656, -1.6611328125, 0.1882324219, -0.751953125, -0.5249023438, -1.4970703125, 0.3391113281, -0.0585021973, -0.0971679688, -0.5122070312, -0.59375, -0.3193359375, 0.61328125, 0.3137207031, -0.4182128906, -0.1160888672 ]
The NIST and NSA are responsible for providing sufficient resources to the NIAP so that the Validation Body may carry out its responsibilities. However as of 2009 the NIAP has reached out to other vendors, labs, academia and customers to help in the evaluation of products therefore diminishing the reliance on the NSA. The Validation Body is led by a Director and Deputy Director selected by NIST and NSA management and other personnel include validators and technical experts in various technology areas. The Validation Body ensures that appropriate mechanisms are in place to protect the interests of all parties within the CCEVS participating in the process of IT security evaluation. Disputes brought forth by any participating party, i.e. the sponsor of an evaluation, product or Protection Profile developer or CCTL concerning the operation of the CCEVS or any of its associated activities shall be referred to the Validation Body for resolution. Once the product has been certified it is listed as PP Compliant in the NIAP Product Compliant List (PCL). External links NIAP NSA NIAP DoDI 8500.2 References Crime prevention Data security Information technology in the United States National Security Agency
[ -0.1917724609, -0.3146972656, 0.5649414062, -0.4519042969, 0.54296875, -0.0814208984, -0.0180969238, -0.8081054688, -0.1189575195, -0.3439941406, 0.263671875, -0.4833984375, -0.2958984375, 1.26171875, -0.818359375, 0.5307617188, 0.0260162354, 0.1789550781, 0.59765625, -0.0236663818, 0.1048583984, 0.1394042969, 0.3493652344, -0.9184570312, -0.3388671875, 0.4990234375, 0.4567871094, 0.9228515625, 0.3522949219, -0.2819824219, -0.0263824463, 0.0371704102, -3.259765625, 0.5859375, 1.4228515625, 1.0849609375, -0.4731445312, -0.4382324219, -0.5556640625, -0.1711425781, 0.4431152344, -0.5004882812, -0.0547790527, -0.5366210938, 0.1545410156, 0.1195068359, 0.0680541992, 0.29296875, 0.1939697266, -0.0999145508, -0.1956787109, 0.0875244141, 0.5180664062, -0.4704589844, -0.1923828125, -1.236328125, -0.3254394531, 0.4487304688, 0.8374023438, 1.1494140625, -0.6806640625, 0.8276367188, 0.0324401855, -0.9150390625, -0.1673583984, 0.2905273438, -0.345703125, 1.7705078125, 0.0487976074, 0.8505859375, -0.5732421875, 0.6899414062, 0.4506835938, -0.2980957031, 0.3388671875, 1.3525390625, -0.5668945312, -0.0296478271, 0.4814453125, 0.0312042236, -1.1044921875, -0.4836425781, -0.4113769531, 0.0550537109, -1.3095703125, -0.6333007812, 0.5532226562, -0.4267578125, -0.2875976562, 0.6123046875, 0.0150909424, -0.3798828125, -0.55859375, -0.1834716797, -0.298828125, -0.6494140625, 0.826171875, -0.0415344238, 0.2607421875, 0.9858398438, -0.5610351562, 0.2291259766, 0.9365234375, 0.3803710938, 0.2145996094, 0.3278808594, 0.2822265625, -0.6674804688, 0.4052734375, -0.1112060547, -0.0259399414, 0.2375488281, 0.5541992188, -0.8989257812, -0.7895507812, 0.2775878906, 0.4282226562, 0.2131347656, -0.4367675781, -0.3107910156, 0.8598632812, 0.6948242188, 0.0456848145, 0.2310791016, 0.1052246094, -0.2607421875, 0.3244628906, -0.5288085938, 0.0842895508, -0.1090698242, 0.7739257812, 0.1260986328, -0.2614746094, 0.1187744141, -1.05859375, 0.0579223633, 0.2072753906, -0.2934570312, 0.4794921875, -0.2375488281, 0.1667480469, -1.208984375, -0.51171875, -0.849609375, 0.3422851562, -0.3298339844, -0.2174072266, -0.5063476562, -0.0227050781, -0.4140625, -0.0177764893, -0.4814453125, 0.5634765625, -0.3217773438, 1.5205078125, -0.3835449219, -0.8779296875, 0.7607421875, -1.1298828125, 0.1232299805, -0.4206542969, -0.4162597656, 0.6728515625, -1.359375, -1.322265625, -0.4318847656, 0.2132568359, 0.4255371094, 0.0212554932, -0.0276184082, -0.5307617188, -0.0100860596, 0.0967407227, 0.2427978516, 0.333984375, -0.0127639771, 0.0811157227, -0.1280517578, -0.1915283203, -0.9453125, -0.4467773438, -0.5991210938, -0.3894042969, -0.5249023438, -0.1014404297, -0.5942382812, 0.1179199219, -0.4304199219, -0.787109375, -0.7934570312, 0.2437744141, -0.3083496094, -0.4333496094, 0.375, -0.880859375, 0.626953125, 0.3679199219, -0.6826171875, -0.1036987305, -0.8413085938, -0.114074707, -0.0033931732, -0.0629272461, -0.1423339844, 0.0423583984, -0.302734375, 0.263671875, 1.2275390625, -1.048828125, 0.4326171875, -0.984375, 1.033203125, -0.2283935547, 0.9697265625, 0.1457519531, 0.6420898438, -0.1508789062, -0.1499023438, 0.051574707, 0.1177368164, -0.2758789062, 0.59375, -0.59375, -1.814453125, -0.5463867188, 0.0552978516, 0.2551269531, 0.8466796875, 0.7109375, 0.6938476562, 0.0530700684, 0.7309570312, -0.0824584961, 0.68359375, 1.0615234375, -0.2371826172, 0.2161865234, 0.8315429688, -0.0401000977, -0.1558837891, -0.0243225098, -1.5830078125, 0.1341552734, -0.7314453125, 0.5390625, -2.146484375, 0.5458984375, -0.9375, 0.3549804688, -0.1069946289, -1.076171875, -1.1318359375, -1.0791015625, 0.4729003906, 0.2430419922, -0.0880737305, -0.4448242188, 0.4963378906, -0.1194458008, -0.5141601562, -0.2507324219, 0.7954101562, 0.9541015625, -0.1776123047, 0.5454101562, -0.2604980469, -1.1162109375, -0.8657226562, 1.0146484375, -0.9731445312, 0.4411621094, 0.2888183594, -0.6665039062, -1.2978515625, -0.23828125, -0.0692749023, 1.0791015625, -0.783203125, 0.2377929688, -0.1834716797, 0.5366210938, 0.5249023438, 0.3928222656, -0.2291259766, 0.8500976562, -1.3818359375, -0.1279296875, 0.7221679688, -0.4089355469, 1.5, -0.2927246094, 0.5712890625, -0.66796875, -0.2644042969, -0.3508300781, 0.3825683594, 0.0338745117, 0.1150512695, -0.55078125, -0.6274414062, -0.7143554688, 0.7778320312, 0.4357910156, -1.0224609375, 0.6401367188, 0.54296875, 0.0188293457, -0.4853515625, 0.2717285156, 0.4931640625, 0.3479003906, -1.42578125, 0.1253662109, -0.630859375, 0.923828125, -0.2180175781, 0.265625, -0.1017456055, -0.0361328125, -0.7797851562, 0.7294921875, -0.1651611328, -1.0009765625, -0.5571289062, 0.1145019531, -0.1124267578, 0.3435058594, -0.6635742188, 0.0950927734, -0.3640136719, 0.0047988892, -0.873046875, 0.8051757812, 0.0703125, 0.0063095093, -0.787109375, 0.6987304688, -0.2482910156, 0.4992675781, -0.0267486572, -0.912109375, -1.0185546875, 0.2744140625, -0.5688476562, 0.1427001953, 1.3681640625, -0.5322265625, -0.6909179688, 0.658203125, -0.2507324219, 0.6606445312, -0.1083374023, 0.8212890625, 0.0400085449, 0.7197265625, -0.6572265625, -0.5107421875, 0.1716308594, -1.103515625, 1.2353515625, 0.20703125, -0.0335998535, -0.045715332, 0.8969726562, -1.125, 0.0191802979, -0.1006469727, 0.1043701172, 0.2624511719, 0.6669921875, -0.1001586914, 0.3034667969, -0.1385498047, 0.2305908203, -0.16796875, -0.0631713867, -0.1658935547, 0.1037597656, -1.1484375, 0.5537109375, 0.8852539062, -0.8823242188, -0.5668945312, -0.3298339844, -0.7817382812, -0.2517089844, -0.53515625, -0.2766113281, -0.9252929688, -0.5639648438, 0.0782470703, -1.0791015625, 0.3354492188, 0.6342773438, -1.125, -0.7387695312, 0.5356445312, -1.2265625, 1.421875, -0.1075439453, 0.5463867188, 0.8051757812, -0.6694335938, 0.1993408203, -0.5595703125, 0.7006835938, 0.2178955078, 0.3029785156, 0.0003559589, 0.1287841797, 0.4206542969, -0.6474609375, -0.5888671875, -0.4438476562, -0.943359375, -0.6088867188, 0.7309570312, -0.0877075195, 1.2197265625, 0.8427734375, 0.0787963867, 1.0224609375, 0.4841308594, -0.9252929688, -0.3986816406, -0.0364990234, 0.3601074219, -0.2749023438, 1.888671875, 0.0701904297, -0.4255371094, 0.8232421875, -0.1001586914, -0.3049316406, -0.2961425781, 0.0721435547, -0.2707519531, 0.1267089844, 0.2512207031, 1.12109375, 0.9731445312, 0.7509765625, 0.568359375, -0.2143554688, 0.4370117188, 0.595703125, 0.3020019531, -0.9291992188, 0.732421875, 1.1923828125, -0.5639648438, 0.2462158203, 0.4411621094, 0.1876220703, 0.2047119141, 0.8813476562, 0.4814453125, -0.6538085938, -0.3708496094, 0.9067382812, -0.0005483627, 0.1281738281, -0.067199707, -0.3962402344, 0.5791015625, -0.6596679688, -0.427734375, 0.3142089844, 0.4431152344, -0.0546264648, -0.2956542969, 0.1608886719, -0.4182128906, -0.2717285156, -0.3088378906, 0.6328125, 0.3425292969, 0.4995117188, -0.1616210938, 0.0092697144, -0.1475830078, 0.404296875, -1.7529296875, -0.3823242188, -1.32421875, 0.6943359375, -0.0263061523, -0.3532714844, -0.2705078125, 0.1627197266, 0.9643554688, 0.7055664062, -0.0069580078, -0.845703125, 0.0219573975, -0.8969726562, 0.0592346191, -0.4050292969, -0.5590820312, -0.7241210938, 0.5932617188, -0.4677734375, -0.419921875, -1.767578125, 1.0029296875, -0.2834472656, 0.150390625, 0.2680664062, -0.5571289062, 0.7280273438, -0.9560546875, 0.7944335938, 0.0880737305, -0.3276367188, -0.29296875, -1.4482421875, -0.3684082031, -0.1589355469, 0.3598632812, 0.1802978516, -0.1495361328, 0.1359863281, -0.0309448242, -0.4562988281, 0.0045700073, 1.0732421875, 0.2724609375, 1.40625, 0.0602111816, 1.1728515625, 0.4577636719, 0.7534179688, -0.533203125, 0.970703125, -0.3112792969, -1.103515625, -0.51953125, -0.4165039062, -1.5703125, 0.392578125, 0.8647460938, -0.1295166016, -1.1337890625, 0.2102050781, -0.4265136719, -0.8369140625, -0.2092285156, -0.9711914062, -0.4291992188, -0.8041992188, -0.0034294128, -0.1513671875, -0.3874511719, 1.2158203125, 0.1221313477, -0.4113769531, -0.8129882812, 0.6059570312, -0.0190429688, -0.0659790039, -0.2844238281, 0.578125, -0.0581665039, 0.0987548828, -0.3557128906, 0.8510742188, -0.2242431641, 0.7612304688, -0.1287841797, -0.055267334, -1.0205078125, 0.3669433594, 0.41015625, -0.8427734375, 0.6997070312, -0.8491210938, 0.9858398438, 0.6005859375, -0.7973632812, -0.1456298828, -0.0370788574, 0.1878662109, -0.8950195312, -0.4428710938, -0.5170898438, 0.7758789062, -0.2200927734, -0.2932128906, 0.60546875, -0.740234375, 0.4946289062, -1.1494140625, 0.2651367188, 0.2191162109, -0.1961669922, -0.9736328125, -1.0107421875, 0.5737304688, 1.275390625, 0.4870605469, 0.1612548828, 0.611328125, 0.2717285156, 0.5083007812, -0.8237304688, -0.8369140625, -0.1730957031, 0.232421875, 0.0694580078, 0.0185394287, -0.517578125, 0.0698242188, -0.0451049805, -0.5551757812, 0.3366699219, 0.0503845215, -0.7451171875, 0.0322265625, -0.1772460938, -0.0291290283, 0.2729492188, 0.0892944336, 0.6987304688, 0.0658569336, 0.53515625, 0.1225585938, 0.0195465088, 0.2546386719, 0.3090820312, 0.7763671875, 0.3723144531, 0.5844726562, 0.1492919922, -0.4318847656, -0.8461914062, 0.6201171875, -0.78125, 0.2565917969, 0.4973144531, 0.4194335938, 0.677734375, -0.560546875, 0.7026367188, 0.919921875, -1.0546875, 0.6049804688, -0.8427734375, -0.4235839844, -0.8393554688, 0.2077636719, 0.2724609375, 0.2915039062, -0.2381591797, -0.0812988281, -0.2071533203, -0.9580078125, 0.0480957031, -0.6958007812, -0.2663574219, -0.0670776367, -1.1962890625, 1.21484375, -0.2824707031, -0.37890625, -0.4094238281, -0.0787353516, 0.8701171875, 0.1051635742, 0.3718261719, -1.10546875, 0.1995849609, -0.0174713135, 0.1287841797, 0.6987304688, -0.0344848633, -0.69921875, 0.6923828125, -0.1568603516, -0.0223083496, 0.5991210938, 0.1484375, -0.927734375, -0.9438476562, 1.0009765625, -0.5009765625, -0.3842773438, 0.1026611328, 0.2707519531, 0.096496582, -0.1710205078, -1.201171875, -0.0188903809, -1.09375, -0.1224365234, 1.0146484375, -1.376953125, -0.419921875, 0.77734375, 0.9633789062, -0.0113143921, 0.2312011719, 0.1583251953, -0.525390625, -0.6201171875, 0.8891601562, 0.4758300781, -0.19140625, 0.0575561523, 0.8388671875, 0.9892578125, -0.4089355469, 0.1055908203, 0.0827026367, 0.736328125, 0.5063476562, 0.6220703125, -0.0150527954, -0.7602539062, 0.5087890625, -0.3576660156, -0.1967773438, -0.4504394531, -0.4899902344, -0.0694580078, 0.3830566406, -0.4243164062, -0.5063476562, 0.0409240723, 0.83984375, 0.9116210938, 0.0027198792, 0.330078125, 0.0077590942, 0.4580078125, -0.71875, -0.0444641113, 0.6567382812, 1.154296875, 0.0794677734, -0.2775878906, 1.1513671875, -0.0108261108, 0.1550292969, -1.1337890625, 0.0939331055, -0.3381347656, 0.7934570312, -1.5576171875, 0.2232666016, -2.212890625, 0.2419433594, -0.3793945312, -0.48828125, 0.767578125, 0.4990234375, 0.1428222656, -1.125, -0.9365234375, 0.8500976562, -0.1180419922, -0.1216430664, -0.70703125, 0.6376953125, -0.2915039062, 0.0217895508, 0.1044311523, -0.0719604492, 0.3427734375, 0.2445068359, -0.6127929688, -0.1568603516, -0.583984375, 0.2091064453, -0.8520507812, 0.4775390625, 0.3666992188, 0.0792236328, -1.234375, -1.41015625, 0.4733886719, -0.6328125, 1.033203125, 0.0220489502, 0.3422851562, 0.0803222656, 0.2546386719, -0.1497802734, -0.2403564453, -0.1971435547, 0.3425292969, -0.580078125, -0.779296875, -0.4790039062, 0.9287109375, -0.8984375, -0.1127319336, -0.2248535156, 0.0673828125, -0.1666259766, 1.1357421875, -0.72265625, -0.1447753906, 1.2353515625, -0.0069961548, -0.4243164062, -0.4287109375, 0.47265625, -0.2551269531, 0.4831542969, -0.5307617188, -1.0146484375, 0.5883789062, 0.4011230469, -0.1290283203, 0.0434875488, -0.1457519531, 0.5439453125, 0.9052734375, -1.16015625, 1.7587890625, 0.2243652344, -0.7817382812, 0.5708007812, 0.7900390625, 0.9174804688, -0.0136642456, -0.810546875, 0.8837890625, -0.2827148438, 0.48046875, 1.2685546875, -0.3869628906, 0.4055175781, 1.73828125, 0.4614257812, 1.3740234375, 0.5244140625, -0.4865722656, 0.123840332, -0.114440918, -0.3020019531, -0.4309082031, -0.7236328125, 0.011680603, 0.1959228516, -0.7446289062, -0.6918945312, 0.1600341797, 0.0135650635, 0.0681152344, -0.1633300781, -0.2109375, -0.000197649, 0.1593017578, 0.1287841797, -0.6040039062, -0.3349609375, -0.5927734375, 0.0578308105, 0.5263671875, -0.4545898438, 0.72265625, 0.6025390625, 0.1848144531, -0.54296875, -0.2275390625, -1.28515625, -0.1320800781, 0.2639160156, -0.3984375, 0.755859375, -0.4133300781, -1.0517578125, -0.4311523438, -0.7836914062, 0.494140625, -0.2541503906, 0.595703125, -0.423828125, 1.4560546875, 0.0313110352, 1.1142578125, 0.1864013672, -0.9697265625, 0.0285644531, -0.9213867188, 0.6831054688, -1.0966796875, -0.5307617188, 0.3986816406, -0.0327758789, -0.4558105469, -0.0373535156, 0.259765625, 0.3361816406, -0.0950317383, -0.1694335938, -0.9204101562, -0.3596191406, 1.2412109375, -0.1940917969, -0.4848632812, -0.8134765625, 0.501953125, 0.4074707031, 0.8369140625, 0.3022460938, -0.833984375, 0.64453125, -1.4560546875, 0.5766601562, -0.7895507812, 0.1647949219, -1.0283203125, 0.1573486328, -0.2073974609, 0.4289550781, 0.2678222656, 0.0188140869, -0.0556030273, 0.3937988281, 0.1837158203, 0.7573242188, 1.1142578125, 0.341796875, 1.384765625, 0.3408203125, -0.2462158203, -0.1433105469, -0.4633789062, 0.1003417969, -0.1282958984, 0.3989257812, 0.1046142578, -0.07421875, -0.666015625, 0.5166015625, -0.0082702637, 0.4487304688, -0.1441650391, 0.5444335938, -1.2685546875, -12.9921875, 0.9877929688, 0.0659790039, -0.6884765625, 0.8491210938, 0.1257324219, -0.1950683594, -0.73828125, -0.2353515625, 0.0721435547, 0.83984375, 0.8134765625, -0.1231079102, 0.0335693359, 0.2780761719, -0.5405273438, -1.697265625, 0.0021800995, 0.5986328125, -0.3647460938, 0.892578125, -0.1661376953, -0.296875, -0.2386474609, -1.1435546875, -0.2174072266, 0.3203125, -0.4958496094, -0.8940429688, -0.1821289062, 0.1162719727, 0.5102539062, -0.9770507812, -0.3581542969, 0.4626464844, -0.6787109375, -0.0492553711, -0.4118652344, -0.2670898438, -1.1943359375, -0.7260742188, -0.3420410156, -0.41796875, 0.00045681, 0.8833007812, 1.0283203125, 0.2512207031, -0.3056640625, 0.3154296875, 0.0064315796, -0.2082519531, -0.1130371094, -0.3391113281, -0.3413085938, -0.4948730469, -0.0555725098, 1.1044921875, -1.171875, 0.1069946289, 0.1540527344, 0.9267578125, 1.1123046875, -0.1944580078, -0.6684570312, -0.2368164062, -0.1285400391, -1.013671875, -0.7158203125, 1.119140625, -0.525390625, 0.2407226562, -1.4033203125, 0.4645996094, 0.732421875, -0.146484375, -0.2384033203, -0.875, 0.1472167969, 0.990234375, 0.0389099121, -0.7026367188, 1.1953125 ]
WEG is a Brazilian company, operating worldwide in the electric engineering, power and automation technology areas. Headquartered in Jaraguá do Sul, Brazil, the company produces electric motors, generators, transformers, drives and coatings. WEG has operations in around 100 countries, with approximately 31,000 employees (2014). History The company Eletromotores Jaraguá was created on 16 September 1961 by Werner Ricardo Voigt, Eggon João da Silva and Geraldo Werninghaus (respectively an electrician, an administrator and a mechanic). Years later changed its name to Eletromotores WEG SA, the name WEG being formed with the first letter of each founder's first name. Initially producing electric motors, WEG started diversifying its activities during the eighties, with the production of electric components, products for industrial automation, power and distribution transformers, liquid and powder paints and electrical insulation varnishes. The company grew into a global motor manufacturer. In 1968, WEG created CentroWEG, a training center to aid in the lack of qualified professionals in the area of mechanical engineers. In May 2008, WEG announced a new factory in India. In February 2012, the Canadian manufacturer Ballard Power Systems signed a deal with WEG to assess the market opportunities for hydrogen PEM fuel cell products and services in applications. In February 2019, WEG acquired Energy Storage System, the storage business of US-based Northern Power Systems (NPS). WEG had previously bought the utility-scale turbine business of NPS in 2016. In May 2019, WEG signed a deal with the aerospace conglomerate Embraer to work on new electrical propulsion systems for aircraft.
[ 0.2280273438, -0.2697753906, -0.8569335938, 0.5439453125, -0.0376281738, 0.3813476562, -0.5834960938, -1.021484375, 0.6245117188, 0.681640625, 0.3173828125, 0.3034667969, -0.6318359375, -0.0189056396, 0.0594787598, 0.1690673828, -0.3869628906, -0.568359375, 0.2631835938, 0.0625, 0.5083007812, 0.0389099121, 0.7646484375, -0.0458984375, -1.1103515625, -0.1467285156, 0.2366943359, 0.2049560547, 0.0046424866, -0.5620117188, -1.0888671875, 0.2431640625, -2.125, -0.294921875, -0.2469482422, 0.3095703125, 0.0465393066, 1.3740234375, -0.0552368164, 0.1453857422, 0.40234375, -0.2905273438, -1.7548828125, -0.1842041016, 0.2176513672, -0.7270507812, -0.7099609375, -0.2907714844, -0.583984375, 0.44921875, -1.2998046875, 0.8305664062, 0.2412109375, -0.5869140625, 0.3479003906, -1.201171875, 0.4626464844, -0.1925048828, -0.1116333008, 0.0623474121, -0.9321289062, 0.021484375, -0.0106124878, -0.1271972656, 0.3188476562, 0.7680664062, -0.8388671875, 0.2585449219, 0.0970458984, 0.7866210938, -0.7431640625, 0.3447265625, -0.12890625, -0.6533203125, 0.0564880371, -0.2824707031, 0.4782714844, -0.1865234375, 0.4260253906, 0.1016845703, -0.5537109375, -0.640625, -0.1198730469, -0.951171875, -0.6376953125, 0.0198822021, -0.0646362305, -0.6196289062, -0.5444335938, 0.2810058594, 0.6142578125, -0.3110351562, -0.5952148438, 0.419921875, -0.2741699219, 0.2998046875, -0.0456542969, -0.787109375, -0.3718261719, -0.0778808594, 0.9028320312, -0.0283966064, 0.1097412109, -0.4291992188, -0.87109375, 1.826171875, -0.3989257812, -0.1045532227, -0.1690673828, -1.0869140625, 1.388671875, 0.64453125, 0.3466796875, -0.3291015625, 0.3374023438, 0.4440917969, 0.4614257812, -0.5859375, -0.3129882812, 0.1263427734, -1.0615234375, 0.1889648438, 0.732421875, -0.44921875, 0.408203125, -0.3395996094, 0.0483703613, -0.2819824219, -0.9169921875, 0.0169067383, 0.56640625, -0.1274414062, -0.0426940918, 0.1489257812, 0.3879394531, -1.03125, -0.0072669983, 0.0701293945, 0.216796875, 0.003408432, -0.1323242188, -0.3537597656, 0.890625, -0.474609375, 0.6259765625, -0.1964111328, -0.4636230469, -0.6611328125, -0.9702148438, 0.673828125, 0.2115478516, 0.4221191406, -0.3356933594, -0.4653320312, 0.5908203125, -0.6176757812, -0.7333984375, -0.666015625, -0.2030029297, -1.3818359375, 0.42578125, -0.2150878906, -0.8017578125, -0.1326904297, -0.2435302734, 0.7568359375, 0.3891601562, -0.0646972656, -0.1571044922, 0.0881958008, -0.4274902344, -0.3747558594, 0.4294433594, -0.1168212891, -0.0733642578, 0.0364990234, 0.2915039062, -0.2631835938, 0.3693847656, -0.8935546875, 0.1070556641, -0.8056640625, 0.89453125, -1.0234375, 0.0648193359, -0.4189453125, 0.2231445312, -0.3986816406, -0.6674804688, 0.7641601562, -0.096862793, 0.3952636719, 0.2763671875, -0.0117721558, -0.5278320312, -0.5571289062, -0.4792480469, 0.4587402344, -0.2868652344, -0.018951416, -0.39453125, 0.4926757812, -1.0224609375, -0.5893554688, 0.0343933105, -0.2033691406, -0.2985839844, -1.2001953125, 0.1353759766, 0.4448242188, 0.4279785156, -0.0397338867, -0.1123657227, -0.0831298828, -0.412109375, 0.0886230469, 0.2819824219, 0.1151733398, 1.24609375, 0.0161895752, 0.0363769531, 0.9116210938, 0.2517089844, 0.2248535156, 0.8676757812, -0.185546875, 0.7866210938, 0.4716796875, -0.2056884766, -0.8569335938, 0.27734375, 0.0019025803, -0.2561035156, 0.6479492188, 0.5307617188, -0.1209106445, 0.5952148438, -0.4213867188, -0.5595703125, 0.3203125, -0.2017822266, 0.6870117188, 0.2919921875, -0.7270507812, -0.0913696289, 0.0634765625, 0.2159423828, -0.75390625, -0.2454833984, 0.1038208008, 0.0978393555, -0.1059570312, 0.55859375, -2.05859375, 0.0167999268, -0.6860351562, 0.0571594238, -1.1484375, 0.8208007812, -0.380859375, 0.28515625, 0.2937011719, 0.8740234375, 0.2066650391, -0.0709838867, 0.5126953125, 0.8383789062, -0.4162597656, -0.115234375, -0.6650390625, 0.0305633545, -0.240234375, 0.2514648438, -1.4228515625, -0.7250976562, -0.2861328125, 0.2475585938, -0.3420410156, 0.4604492188, 0.2106933594, 0.0318603516, 0.3801269531, -0.5092773438, -0.0194549561, 0.94140625, -0.8950195312, -0.63671875, 0.3615722656, -0.4682617188, 0.1376953125, 0.3337402344, 0.2966308594, -0.1604003906, 0.52734375, -0.0019836426, -0.1838378906, -0.328125, 0.1618652344, -0.861328125, -0.2004394531, 0.419921875, 0.3217773438, 0.2658691406, -1.017578125, 0.2844238281, -0.5771484375, 0.8037109375, -0.1591796875, 0.1442871094, 0.88671875, -0.2756347656, -0.3784179688, -0.7094726562, 0.3889160156, -0.7041015625, -0.1159667969, -0.4738769531, 0.236328125, 0.2075195312, 0.2376708984, 0.703125, 0.0751953125, 0.3139648438, 0.8422851562, -0.4545898438, 0.2279052734, -0.0658569336, -1.5634765625, 0.9204101562, 0.7739257812, 0.7524414062, -0.1657714844, 1.69140625, 0.2634277344, -0.1114501953, 0.1246948242, -0.9370117188, -0.2141113281, 0.1394042969, 0.7192382812, 0.0398254395, -0.1017456055, -0.0131454468, 0.1479492188, 0.529296875, -0.8325195312, -0.826171875, -0.1448974609, -0.1691894531, -0.380859375, 0.62109375, 0.6821289062, -1.0908203125, 0.2028808594, -1.109375, 0.7768554688, 0.6606445312, 0.4951171875, -0.047088623, 0.2944335938, 1.1376953125, 0.6953125, -0.5395507812, 0.4685058594, -0.0689697266, 0.375, 0.6430664062, -0.2038574219, 0.3723144531, -0.2810058594, 0.509765625, 0.890625, 0.3557128906, 0.1875, 0.6352539062, -0.0136108398, -0.4855957031, -0.1341552734, -0.369140625, 1.205078125, 0.0408935547, -0.4584960938, 0.0971679688, -0.55078125, -0.1110229492, 0.5385742188, -0.1694335938, 0.4790039062, -0.2111816406, -0.3693847656, 0.0287322998, -0.65625, 0.1595458984, 0.085144043, -0.3959960938, 0.4223632812, 0.1978759766, -0.2452392578, -0.1451416016, -0.3168945312, -0.37109375, 0.1427001953, 0.310546875, -0.4030761719, -0.1693115234, -0.142578125, -0.2546386719, -0.0042076111, 0.0315856934, 0.0060920715, -0.2883300781, -0.8173828125, 0.5869140625, 0.2817382812, 1.2685546875, -0.7099609375, 1.2958984375, -0.092956543, -0.564453125, -0.1735839844, -0.6684570312, 0.9248046875, 0.2364501953, 0.79296875, -0.4836425781, 1.3076171875, -0.2858886719, 0.5537109375, 0.0134353638, -0.3801269531, -0.2802734375, -1.1201171875, -0.0631713867, 0.69921875, 0.0113525391, 0.0935668945, -0.5883789062, -0.833984375, -0.0901489258, -0.1694335938, 0.865234375, 0.2341308594, -1.3623046875, -0.63671875, 0.6713867188, 0.3181152344, 0.30859375, -0.1842041016, 1.2900390625, -0.65625, -0.0076026917, -0.92578125, 0.5849609375, 0.5356445312, 0.2741699219, -1.2998046875, -0.034576416, -0.0660400391, 0.4377441406, -0.0529174805, 0.110534668, 0.3046875, -0.2172851562, -0.931640625, 0.8745117188, -1.0302734375, 0.4067382812, 0.1380615234, -0.515625, -0.4765625, 0.3127441406, -0.5532226562, 1.1689453125, 0.3317871094, -0.546875, 0.5649414062, -0.638671875, -0.1611328125, -0.0386352539, 0.4694824219, -0.68359375, 0.7583007812, 0.5053710938, -0.28515625, 0.6689453125, -0.1473388672, -0.1684570312, -0.3283691406, -0.6274414062, -0.2435302734, -0.30859375, -0.8974609375, -1.74609375, 0.0459899902, -0.9956054688, -0.4838867188, -0.2462158203, 0.294921875, -0.6860351562, 0.2592773438, -0.1350097656, -0.7436523438, -0.4914550781, -0.2264404297, -0.6938476562, -0.2746582031, -0.203125, -0.5834960938, -0.0353088379, 0.3894042969, -0.1442871094, -0.1050415039, 0.0736694336, 0.564453125, -0.3205566406, -0.5864257812, -0.8212890625, -0.326171875, 0.3566894531, 0.4233398438, 0.1330566406, 0.1168212891, -0.5161132812, 1.8056640625, 0.1719970703, 1.05859375, -0.3356933594, -0.2685546875, 0.0723876953, -0.5673828125, 0.41796875, -0.1597900391, 0.3840332031, -0.5717773438, -0.016784668, -0.2105712891, 0.6479492188, 0.1326904297, -0.2541503906, 0.0085754395, 1, -0.0139312744, 0.6040039062, 0.4399414062, 0.0492553711, 0.0433349609, -0.638671875, 0.3210449219, -0.4719238281, 0.1700439453, -0.1021728516, 0.2365722656, -0.061126709, 1.8349609375, -0.2193603516, -0.1641845703, -0.3491210938, 0.7587890625, 0.1671142578, 0.3640136719, -0.3432617188, -0.4528808594, -0.3759765625, 0.2993164062, -0.3696289062, 0.693359375, 0.751953125, 0.9184570312, 0.0509033203, 0.048034668, -0.7900390625, 0.169921875, -1.3701171875, 1.19140625, -0.2619628906, 0.771484375, 0.1419677734, 0.1472167969, 1.1259765625, 0.1175537109, -0.0461730957, 0.17578125, -0.4135742188, -1.4248046875, -1.017578125, 0.271484375, -1.0966796875, -0.2561035156, -0.78515625, -0.12890625, -0.4936523438, -0.4362792969, -0.2541503906, 0.9448242188, -0.1898193359, -0.1610107422, -0.5083007812, 0.51953125, 0.4223632812, 0.1146240234, -0.1162109375, -0.0551757812, -0.0372314453, -0.2509765625, -0.810546875, -0.1253662109, 0.3857421875, 0.2451171875, 1.0009765625, -0.5322265625, -0.6806640625, -0.1173706055, -0.3039550781, 0.9516601562, -0.4357910156, 0.4885253906, -0.759765625, -0.263671875, -0.0947265625, 0.9072265625, -0.708984375, 1.1591796875, 0.5141601562, -0.400390625, 0.6391601562, 0.1210327148, 0.0971679688, -0.1967773438, 0.3483886719, 0.1760253906, 0.8203125, 0.6850585938, -0.650390625, -0.4106445312, -0.3845214844, 0.2005615234, 0.8129882812, 0.884765625, 0.5688476562, 0.3898925781, -0.0645141602, 0.3811035156, -0.027633667, 0.2412109375, -0.1285400391, -0.9326171875, -0.6108398438, 0.0543212891, -1.4658203125, 0.109375, 0.0600891113, 1.0400390625, 0.8784179688, -0.3801269531, 0.6772460938, 0.6684570312, -0.2719726562, -0.6484375, -1.1220703125, 0.1418457031, 0.1655273438, 0.84375, 0.3801269531, -0.0391235352, -0.2419433594, -1.146484375, 0.1635742188, -0.0799560547, -0.984375, -0.2330322266, 0.1013183594, 0.3518066406, -0.7084960938, 0.32421875, -0.1233520508, -0.3732910156, 0.5512695312, -0.1115722656, -0.1176147461, -0.3688964844, -0.1233520508, 0.1353759766, 0.2834472656, 0.5869140625, -0.6118164062, -0.3591308594, -0.12890625, 0.6103515625, 0.4594726562, 0.4714355469, -1.1904296875, 0.0398254395, -1.5654296875, 0.287109375, -0.6381835938, 0.5224609375, -0.1054077148, 0.3034667969, 0.2025146484, -0.5830078125, -0.6240234375, -0.112121582, -0.0778198242, -0.2291259766, -1.2216796875, 0.1719970703, 0.6274414062, 0.0393981934, 0.7133789062, 1.025390625, -0.1900634766, -0.5966796875, -0.5727539062, -0.1079711914, 0.763671875, -0.904296875, 0.0589904785, -0.0208129883, -0.470703125, -1.337890625, -0.2022705078, -0.3737792969, -0.0307159424, -0.1040039062, -0.5068359375, 0.0455932617, -0.9296875, -0.0223388672, 0.3056640625, -0.76953125, 0.6279296875, 0.3498535156, -0.2744140625, -0.5131835938, -0.3645019531, -0.0469970703, 0.8149414062, 0.5444335938, -0.3852539062, -0.1055908203, 0.0119094849, 0.8188476562, 0.47265625, 0.3542480469, -0.2108154297, 0.2250976562, 1.2158203125, 0.3266601562, 1.240234375, -1.0322265625, 0.8159179688, 1.0361328125, 0.447265625, -0.1145019531, -0.3181152344, 0.1029663086, -0.736328125, -0.2263183594, 0.1788330078, 0.3793945312, 0.1962890625, -0.5087890625, 0.4587402344, -0.0406494141, -0.1364746094, 0.6879882812, -0.0550231934, 0.7290039062, 0.2370605469, 0.3330078125, 0.5952148438, 0.0552368164, -0.0547485352, -0.4182128906, -0.2387695312, -0.2504882812, -0.0059318542, -0.50390625, -0.1560058594, -1.3076171875, -0.1418457031, 0.3508300781, -0.625, -0.3786621094, 0.0171813965, -0.46484375, -0.3635253906, -0.6044921875, -0.560546875, 0.1519775391, 0.3349609375, 0.2749023438, 0.1517333984, 0.7431640625, -0.9926757812, -0.4284667969, -0.3081054688, -1.2216796875, 0.8618164062, 0.8388671875, 0.1428222656, 0.396484375, 0.0631103516, 0.3420410156, 0.7495117188, -0.3825683594, 0.0591430664, -0.0640869141, 0.1798095703, -0.0672607422, 0.1400146484, -0.8813476562, 0.0076942444, 1.0888671875, -0.2122802734, -0.3012695312, -0.8588867188, 0.7158203125, -0.8876953125, 0.6499023438, 0.2744140625, 0.2573242188, 1.5703125, -1.076171875, -0.1501464844, 0.8603515625, 0.1766357422, 0.8432617188, -0.9975585938, -0.1862792969, 0.6259765625, 1.1435546875, -0.9448242188, 0.2496337891, -0.3034667969, -0.9130859375, -0.7192382812, 0.0539855957, -0.3017578125, -0.2922363281, -0.4018554688, -0.7827148438, 0.2337646484, -0.1865234375, -0.4289550781, -0.0072174072, -0.3588867188, 0.0612792969, 0.3999023438, -0.1442871094, -0.2709960938, 0.9340820312, 0.3662109375, -0.0298614502, 0.4248046875, -0.1381835938, -1.2490234375, 0.1666259766, -0.1569824219, 0.0745239258, 0.4848632812, -0.2841796875, -0.1159667969, 0.0243377686, -0.4636230469, 0.0355224609, 0.2189941406, -0.6743164062, -0.5249023438, 0.8388671875, 0.3647460938, -1.21875, 1.3408203125, 0.1885986328, 0.0920410156, 0.1020507812, -0.3798828125, -0.2932128906, -1.0849609375, 0.0913696289, 1.0966796875, -1.521484375, 0.728515625, 0.6352539062, 0.7138671875, 0.7900390625, -0.0701293945, -0.3200683594, -0.6606445312, 0.4499511719, -0.0830688477, 0.1301269531, 0.3256835938, 0.3872070312, -0.7299804688, 0.2937011719, 0.4743652344, 0.501953125, -0.3251953125, 0.0344543457, -0.4755859375, 0.0155639648, -0.2890625, -0.1264648438, -0.14453125, -0.5024414062, 0.3051757812, -1.4990234375, 0.1685791016, -0.7475585938, 0.2995605469, -0.3083496094, -0.0980834961, 0.2770996094, 0.0750732422, -0.5971679688, 0.1252441406, 0.5395507812, -0.7607421875, -0.60546875, -0.3903808594, 0.3312988281, 0.9873046875, -0.3273925781, 1.1142578125, 0.7885742188, -0.6459960938, 0.5922851562, 0.2298583984, 1.095703125, 0.0365600586, -0.1141357422, 0.0659179688, -0.4555664062, 0.4567871094, 0.038482666, -0.1129150391, -0.3640136719, -0.2330322266, 0.3386230469, -0.8046875, -0.4304199219, -15.109375, -0.3374023438, -0.1956787109, -0.4580078125, 0.3784179688, -0.2139892578, 0.5463867188, -0.1520996094, -0.2529296875, -0.9658203125, -0.4665527344, 0.603515625, -0.2066650391, 0.4731445312, 0.3186035156, 0.3178710938, -0.8115234375, -0.2296142578, 0.7192382812, -0.3469238281, -0.0469055176, 0.0313720703, -0.5678710938, -0.9521484375, -0.36328125, 0.2641601562, -0.5346679688, 0.2915039062, -0.1524658203, 0.9052734375, -0.3950195312, 0.0764160156, 0.0481262207, 1.189453125, 0.6665039062, 0.1929931641, -0.6318359375, 0.4072265625, -1.3203125, 0.0279846191, 1.642578125, 0.0993652344, -0.4658203125, -0.4873046875, 0.2922363281, 0.0311584473, 0.7006835938, 0.9702148438, 0.1782226562, -0.1978759766, 0.0708618164, 0.619140625, -0.1652832031, -0.1513671875, -0.1301269531, -1.052734375, -0.3464355469, -0.3322753906, -0.1704101562, 0.2805175781, -0.1613769531, 0.9799804688, -0.9609375, 0.0950317383, 1.0380859375, -0.0463256836, -0.1240234375, 0.3967285156, -0.7294921875, -0.2775878906, -0.2639160156, -0.8056640625, 0.56640625, -0.2100830078, 0.7470703125, 0.4497070312, 0.53125, 0.0187988281, -0.806640625, 1.0810546875, -0.4040527344, -0.0041656494 ]
In May 2019, WEG also introduced the 4MW wind turbine, its biggest machine so far. Activities Description The company has subsidiaries in 29 countries and production is distributed in manufacturing plants in 12 countries such as Brazil, Argentina, Mexico, Portugal, China, South Africa and in the United States. Products Generation (Generators, turbines) Transmission (EPC, switchgear, transformers) Distribution (EPC, transformers) Electric products (motors, switchgear, frequency inverters, AC/DC converters, contactors, fuses, circuit breakers and servomotors, among others) Automation (Hardware and Software) Integration Engineering with products of different manufacturers References External links Official site WEG no LinkedIn Electrical engineering companies Engineering companies of Brazil Manufacturing companies of Brazil Companies based in Santa Catarina (state) Manufacturing companies established in 1961 Defence companies of Brazil Companies listed on B3 (stock exchange) Brazilian brands 1961 establishments in Brazil Multinational companies headquartered in Brazil
[ 0.3696289062, -0.0802612305, 0.3251953125, 1.0771484375, -0.2663574219, 0.02784729, -0.5219726562, -1.5146484375, 0.6391601562, 0.6938476562, 0.0117263794, 0.62109375, -1.1396484375, -0.4262695312, -0.5805664062, 0.2478027344, -0.5361328125, -0.2479248047, 0.0787963867, 0.4086914062, 0.4365234375, 0.030960083, 0.7065429688, -0.0296325684, -0.8720703125, -0.3774414062, -0.0235900879, -0.2067871094, 0.3659667969, 0.1469726562, -0.5361328125, 0.1394042969, -2.46484375, 0.2770996094, -0.1993408203, 0.7690429688, -0.3603515625, 0.7622070312, 0.4086914062, -0.1790771484, 1.138671875, -0.0855712891, -1.208984375, -1.060546875, 0.916015625, -0.4992675781, -0.7138671875, -0.9282226562, -1.0947265625, 0.099609375, -0.7094726562, 0.7709960938, -0.0894165039, -1.3447265625, 0.4602050781, -0.6186523438, 0.5278320312, -0.0401000977, -0.1098632812, 0.3850097656, -0.3530273438, 0.2042236328, 0.3254394531, 0.1602783203, 0.3098144531, -0.0514526367, -0.9560546875, 0.8671875, 0.2531738281, 0.4106445312, -0.42578125, 0.0807495117, 0.4741210938, -0.802734375, -0.171875, -0.4387207031, 1.0576171875, 0.46875, 0.0218353271, -0.6357421875, -0.7221679688, 0.9155273438, -0.5063476562, -0.939453125, -0.3334960938, -0.150390625, 0.2156982422, -0.3823242188, -0.3884277344, 0.0302124023, 0.8388671875, 0.1611328125, -0.6674804688, -0.3713378906, 0.1668701172, -0.0064239502, -0.3449707031, -1.1240234375, -0.1065673828, -0.0758666992, 1.34375, -0.4750976562, -0.0874633789, 0.1077270508, -0.9887695312, 1.94140625, -1.0087890625, 0.7041015625, -0.3264160156, -1.0478515625, 1.5390625, 0.93359375, 0.6953125, -0.9072265625, -0.2819824219, 1.005859375, -0.3251953125, -0.4135742188, -0.0879516602, -0.4204101562, -0.4157714844, -0.9936523438, 1.306640625, -0.3325195312, 0.7055664062, 0.0645751953, -0.2607421875, -0.3767089844, -0.3959960938, -0.5556640625, 0.7290039062, -0.1536865234, -0.1795654297, 0.8598632812, 0.2298583984, -0.8959960938, 0.0557861328, 0.6928710938, -0.2432861328, 0.0528564453, -0.4008789062, 0.3068847656, 0.3825683594, 0.4597167969, 1.1376953125, -0.6005859375, 0.1614990234, -0.8095703125, -1.4033203125, 0.548828125, 0.1414794922, 1.2158203125, -0.2459716797, -0.6484375, 0.4912109375, -0.9296875, -0.900390625, -0.2205810547, -0.0767211914, -0.2194824219, 0.5849609375, 0.4250488281, -0.7641601562, 0.7885742188, -0.0694580078, 0.4069824219, -0.4743652344, 0.6909179688, -0.2739257812, -0.197265625, 0.0025920868, -0.6674804688, 1.24609375, -0.3322753906, -0.4763183594, 0.1384277344, 0.7983398438, -0.0883178711, -0.3701171875, -0.7680664062, 0.0920410156, -0.5185546875, 1.3056640625, -0.6171875, -0.1118164062, 0.1600341797, -0.0237579346, -0.6879882812, -0.5751953125, 0.6240234375, 0.6831054688, 0.4479980469, 0.3757324219, -0.3740234375, -0.0618286133, -1.25390625, 0.537109375, -0.4189453125, 0.0476989746, -0.2839355469, -0.6577148438, -0.3327636719, -0.490234375, -1.0947265625, -0.4060058594, -0.6328125, -0.587890625, -0.7612304688, -0.4763183594, 0.7827148438, 0.4440917969, 0.6860351562, -0.0639648438, -0.5595703125, -1.142578125, -0.51171875, 0.4211425781, -0.1741943359, 1.283203125, 0.3505859375, -0.7045898438, 1.568359375, -0.3903808594, -0.1948242188, 0.2802734375, -0.1683349609, 1.2919921875, 1.0322265625, -0.3784179688, -0.6059570312, 0.7412109375, 0.6196289062, -0.8432617188, 1.7646484375, 0.771484375, 0.1579589844, 0.3859863281, -0.2668457031, -1.0146484375, 0.1020507812, 0.2169189453, 0.986328125, 0.2624511719, -1.119140625, 0.1453857422, 0.0289916992, -0.2834472656, -0.2668457031, 0.0538024902, 0.2797851562, -0.1796875, -0.0530090332, 0.4401855469, -1.34765625, 0.6806640625, -0.0374145508, 0.9951171875, -0.5981445312, 1.009765625, -0.2449951172, 0.5712890625, 0.65625, -0.0750732422, -0.7641601562, -0.1172485352, 0.6108398438, 0.5834960938, 0.1490478516, -0.0724487305, -0.0057983398, 0.053894043, 0.0637207031, 0.3112792969, -1.5068359375, -0.447265625, -0.0186004639, -0.0515441895, -0.2131347656, 0.4821777344, 0.6342773438, 0.1020507812, 0.5629882812, -0.6923828125, 0.3903808594, 1.3251953125, -1.5302734375, -1.208984375, 0.1293945312, -0.1088867188, 0.1121826172, -0.3911132812, -0.0442504883, 0.8110351562, 0.2165527344, -0.6118164062, -0.1270751953, -0.5537109375, -0.1962890625, -0.3637695312, 0.1301269531, -0.1339111328, 0.1380615234, -0.4133300781, -1.3623046875, 0.69921875, -0.5908203125, -0.0360412598, 0.4768066406, 0.2172851562, 1.0439453125, -0.515625, -0.3771972656, -0.5673828125, 1.1171875, -1.3603515625, 0.0966186523, -0.6108398438, 0.5395507812, 1.494140625, 0.94921875, 0.6284179688, 0.0260162354, 0.845703125, 0.5327148438, -0.3720703125, 0.2729492188, -0.3203125, -2.029296875, 0.5190429688, 0.5078125, 0.1680908203, -1.41796875, 1.1982421875, 0.2034912109, 1.3330078125, -0.043762207, -0.5341796875, 0.1506347656, -0.2252197266, 0.82421875, 0.0350646973, -0.3076171875, 0.5732421875, 0.2780761719, 0.587890625, -0.4338378906, -0.4145507812, -0.6967773438, -0.5112304688, -0.4174804688, -0.3449707031, -0.3530273438, -0.658203125, 0.0575256348, -0.9770507812, 0.8657226562, 0.6577148438, 0.0602111816, -0.3156738281, 0.0484008789, 1.185546875, 0.8896484375, -0.3686523438, 0.4782714844, 0.615234375, 0.2434082031, 0.6962890625, 0.0567626953, 0.4020996094, -0.5659179688, 0.1866455078, 0.4560546875, -0.4411621094, -0.0225219727, 0.26171875, 0.3435058594, -0.2260742188, 0.0815429688, -0.5961914062, 1.0380859375, 0.2556152344, 0.4943847656, -0.2274169922, 0.1311035156, -0.7651367188, -0.0724487305, -0.2377929688, -0.0820922852, -0.2756347656, 0.0615844727, -0.5322265625, -0.67578125, 0.3601074219, 0.5688476562, -0.5014648438, 0.2482910156, 0.8764648438, -0.3627929688, 0.2026367188, -0.935546875, -0.1690673828, 0.0454101562, -0.1494140625, -0.0423583984, -1.125, -0.1402587891, 0.0272827148, -0.4560546875, 0.3625488281, 0.5375976562, -0.2341308594, -0.9169921875, 0.5981445312, 0.2147216797, 0.8271484375, -0.1087036133, 0.3410644531, 0.0105438232, -0.66796875, -0.6142578125, -0.8999023438, 1.2822265625, 0.1689453125, -0.0031509399, -0.4064941406, 0.9248046875, -0.0148239136, 0.607421875, -0.6088867188, -0.5825195312, -1.076171875, -0.6181640625, 0.5400390625, 0.2934570312, 0.1623535156, 0.7587890625, -0.36328125, -0.4846191406, -0.2670898438, 0.0300445557, 0.859375, 0.0994873047, -0.9223632812, -0.8935546875, 0.1589355469, 0.4313964844, 0.4169921875, 0.2705078125, 0.4604492188, -0.8500976562, -0.3559570312, -0.9091796875, 0.333984375, 1.033203125, 0.0095977783, -0.67578125, -0.2888183594, -0.3583984375, 0.3308105469, -0.3872070312, 0.3813476562, 0.5366210938, 0.2749023438, -0.578125, 1.1796875, -0.7890625, 0.2158203125, -0.3017578125, -0.2919921875, -0.4526367188, 0.2817382812, -1.2421875, -0.0170288086, -0.01902771, 0.4963378906, 0.3872070312, -0.7177734375, -0.8403320312, 0.8403320312, 0.6782226562, -1.17578125, 0.6904296875, 0.3134765625, -0.2275390625, 0.0319213867, 0.3872070312, 0.0776977539, -0.3203125, -1.505859375, 0.2783203125, 0.2998046875, 0.2785644531, -1.8447265625, 0.0843505859, -0.87890625, -0.9711914062, -1.0419921875, 0.1356201172, -0.6254882812, -0.0675048828, -0.0864257812, -0.9848632812, 0.1608886719, -0.5263671875, -1.265625, -0.3332519531, -0.5678710938, 1.009765625, -0.4897460938, 0.3322753906, 0.0489196777, 0.6279296875, -1.115234375, 1.1796875, -0.5112304688, -1.189453125, -0.9375, -1.4794921875, 0.5620117188, 0.3579101562, 0.1691894531, 0.765625, -1.119140625, 0.908203125, -0.6162109375, 0.5727539062, -1.15234375, -0.5205078125, 0.4150390625, -0.0586547852, -0.689453125, -0.7006835938, -0.0260620117, -0.1923828125, 0.3984375, -0.5776367188, 0.081237793, -0.6694335938, -0.4763183594, 0.4519042969, 0.951171875, 0.3271484375, 0.5805664062, 0.4382324219, -0.423828125, 0.2966308594, -0.9672851562, 0.3374023438, 0.1135253906, -0.4599609375, -0.1701660156, -0.1037597656, 0.2998046875, 1.4462890625, -0.8618164062, 0.2614746094, -0.2685546875, 0.1174926758, 0.2680664062, 0.1016235352, -0.6455078125, -0.912109375, -0.2961425781, 0.3718261719, -0.28125, 0.4790039062, 0.5141601562, 0.1978759766, -0.0036678314, 0.2463378906, -1.0126953125, -0.1209106445, -0.5654296875, 1.2705078125, 0.0073165894, 0.2685546875, 0.2766113281, 0.0303039551, -0.1028442383, -0.0060272217, 0.2453613281, 0.0987548828, 0.283203125, -1.4423828125, -0.2220458984, 0.9545898438, -0.4401855469, -1.0283203125, 0.0400390625, 0.0628662109, -0.5727539062, 0.5693359375, -0.3815917969, 0.4636230469, -0.034942627, 0.7158203125, -0.7290039062, 0.5512695312, 0.853515625, 0.2785644531, 0.4816894531, -0.6552734375, 0.87890625, 0.4506835938, -0.7573242188, 0.1384277344, 0.004032135, 0.376953125, 0.7524414062, -0.5727539062, -0.3676757812, 0.0722045898, -0.5673828125, 0.1533203125, -0.6313476562, 0.0848388672, -0.3754882812, 0.1348876953, 0.6313476562, 0.1943359375, -1.03125, 1.1142578125, 0.5625, 0.2592773438, -0.6733398438, -0.4357910156, -0.1895751953, 0.3310546875, -0.3283691406, 0.0244445801, 0.8583984375, 0.7529296875, -0.2120361328, -0.5346679688, -0.7119140625, 0.916015625, 0.9169921875, 0.55078125, 0.6821289062, 0.2397460938, -0.1710205078, -0.1106567383, -0.3103027344, -0.2668457031, 1.390625, -0.7338867188, -0.34765625, -0.3479003906, -1.19921875, 0.4709472656, 0.1528320312, 0.5107421875, 1.5615234375, -0.7875976562, 0.4245605469, 0.6513671875, -0.0718994141, -0.8422851562, -1.2177734375, -0.33203125, -0.0238952637, 1.2578125, -0.1530761719, 0.043182373, -0.2138671875, -1.666015625, -0.2700195312, -0.5776367188, -0.6088867188, -0.5678710938, 0.5708007812, 0.1433105469, -0.5600585938, 0.1763916016, -0.2459716797, -0.2493896484, 1.095703125, 0.5336914062, 0.2130126953, 0.0009040833, 0.2270507812, -0.5874023438, 0.1118164062, -0.0338439941, -1.0869140625, -1.0673828125, 0.3400878906, 0.1177978516, 0.0445556641, 0.4157714844, -0.9716796875, 0.6865234375, -1.29296875, -0.3503417969, -0.5908203125, 0.2736816406, -0.0033969879, -0.0618286133, -0.1856689453, -0.0687866211, -0.8413085938, 0.1545410156, 0.5, -0.3962402344, -0.8706054688, 0.6088867188, -0.748046875, 0.020904541, 0.2176513672, 0.9272460938, -1.130859375, 0.3408203125, -0.6870117188, -0.8754882812, -0.3352050781, -0.8740234375, -0.4123535156, 0.421875, -0.4780273438, -1.0576171875, 0.4201660156, 0.2012939453, -0.026763916, -0.2426757812, -0.2971191406, 0.3781738281, -1.0322265625, -0.0176086426, -0.1605224609, -0.3315429688, 0.2222900391, -0.0174865723, -0.0846557617, -0.3342285156, -0.5229492188, 0.046295166, 0.4924316406, 0.3486328125, -0.4184570312, -0.2722167969, 0.0856323242, 0.4931640625, 0.4826660156, 0.2958984375, -0.0086364746, 0.0334777832, 1, 1.2216796875, 1.09765625, -0.8330078125, 0.72265625, 0.8715820312, 0.2025146484, -0.0722045898, -0.8671875, 0.8637695312, -0.53515625, 0.572265625, 0.0741577148, 0.515625, -0.2325439453, -0.2961425781, 0.6079101562, 0.0751342773, -0.2790527344, 0.2365722656, 0.1704101562, 0.7255859375, -0.0047416687, -0.1427001953, 0.9946289062, 0.4309082031, -0.9541015625, 0.4343261719, 0.2092285156, 0.1341552734, -0.1724853516, -0.58984375, -0.7392578125, -1.46875, 0.0541992188, 0.6279296875, 0.0513916016, -0.2335205078, 0.0962524414, 0.615234375, -0.0908203125, -0.5278320312, -0.65234375, -0.5209960938, -0.1892089844, 0.0503845215, 0.3359375, 1.212890625, -1.3017578125, -0.5009765625, 0.2337646484, -1.1435546875, 0.0433349609, 0.5620117188, -0.0863037109, 0.599609375, 0.2954101562, 0.515625, 0.5712890625, -0.3327636719, -0.0029163361, -0.89453125, 0.4543457031, 0.4294433594, 0.2178955078, -0.2604980469, -0.453125, 1.001953125, -0.2990722656, 0.1397705078, -0.6000976562, 1.109375, -0.6313476562, 0.2392578125, -0.2144775391, -0.3771972656, 1.30859375, -1.5078125, -0.3454589844, 0.4543457031, 1.0146484375, 0.7514648438, -1.28515625, 0.1224365234, 0.6713867188, 1.0439453125, -0.0499267578, 0.1981201172, -0.2819824219, -0.2058105469, -0.31640625, 0.0178222656, -1.087890625, -0.3442382812, -0.2362060547, -0.6064453125, -0.0318908691, -0.3950195312, -0.6396484375, -0.3776855469, -0.0673217773, 0.0668334961, 0.9306640625, 0.3383789062, -0.2553710938, 0.4624023438, -0.0310668945, 0.0188446045, 0.77734375, -0.4741210938, -1.58203125, -0.0809326172, 0.1533203125, -0.058807373, -0.0773925781, -0.1459960938, -0.4873046875, -0.4013671875, -0.4348144531, 0.1162719727, -0.2495117188, -1.216796875, -0.2814941406, 0.513671875, -0.1778564453, -0.79296875, 1.44921875, -0.0209197998, 0.4323730469, 0.1101074219, -0.7944335938, -0.6337890625, -1.826171875, 0.040802002, 0.1428222656, -0.919921875, 0.1671142578, 0.1752929688, 0.3894042969, 1.1298828125, 0.9174804688, -0.1365966797, -0.1375732422, 0.1296386719, -0.3420410156, -0.3566894531, 0.1408691406, -0.2634277344, -0.9580078125, -0.2961425781, 0.1975097656, -0.4030761719, -0.0032787323, 0.5541992188, -0.5620117188, -0.0747680664, -0.65625, -0.1695556641, -0.0608215332, -0.7529296875, 0.6079101562, -1.505859375, 0.7993164062, -0.248046875, 0.9599609375, -0.30859375, -0.1827392578, -0.0364990234, -0.3088378906, -0.537109375, 0.2805175781, 0.6176757812, -0.9873046875, -0.7846679688, -0.7236328125, 0.6918945312, 1.1787109375, 0.4309082031, 1.0859375, 0.6005859375, 0.1878662109, 0.5102539062, -0.3664550781, 1.1083984375, 0.6967773438, 0.0603027344, 0.4013671875, -0.4753417969, 0.724609375, -0.0437316895, -0.3735351562, 0.103515625, -0.0558166504, -0.0393066406, 0.5458984375, -0.4580078125, -12.59375, -0.9213867188, -0.9565429688, -0.5883789062, 0.3210449219, 0.1171264648, -0.3364257812, -0.2966308594, 0.2243652344, -0.4741210938, 1.09765625, 1.1630859375, -0.3530273438, 0.7622070312, 0.2003173828, 0.2568359375, -0.0168914795, -0.6806640625, 1.146484375, -0.8950195312, -0.9741210938, -0.0773925781, -0.6127929688, -1.1025390625, 0.0400085449, 0.525390625, -1.2890625, 0.4311523438, 0.2814941406, 1.1015625, -0.1799316406, -0.3801269531, -0.2805175781, 1.3134765625, 0.7705078125, 0.034362793, -0.5795898438, 0.1925048828, -1.2822265625, 0.2498779297, 1.888671875, 0.0792236328, -0.861328125, -0.490234375, 0.44140625, 0.5004882812, -0.3435058594, 0.9311523438, 0.8115234375, 0.3090820312, -0.4252929688, 0.568359375, -0.3513183594, -0.4887695312, 0.1052856445, -0.9658203125, 0.0325012207, -1.060546875, 0.1131591797, 0.3212890625, 0.154296875, 1.681640625, -0.3408203125, 0.4724121094, 0.638671875, -0.4816894531, 0.3784179688, 1.560546875, -0.9877929688, 0.486328125, -0.6733398438, -1.1640625, 1.015625, -0.7368164062, 0.830078125, 0.1456298828, 0.9946289062, -0.5317382812, -0.8862304688, 0.8232421875, -0.0643920898, -0.2900390625 ]
Cartes du Ciel ("CDC" and "SkyChart") is a free and open source planetarium program for Linux, macOS, and Windows. With the change to version 3, Linux has been added as a target platform, licensing has changed from freeware to GPLv2 and the project moved to a new website. CDC includes the ability to control computerized GoTo telescope mounts, is ASCOM and INDI compliant, and supports the USNO's UCAC catalogs and ESA Gaia data, along with numerous other catalogs and utilities. The "red bulb" feature is useful when using software outside on a laptop on a dark night. According to the programmer, Patrick Chevalley, it was released as freeware because "I’d rather see amateurs spend their money for a new eyepiece than for astronomy software". Chevalley has also created a lunar atlas program, Virtual Moon Atlas, which is also free and open source software. See also Space flight simulation game List of space flight simulation games Planetarium software List of observatory software References External links Version 2 (archived) Version 4 Free astronomy software Free software programmed in Pascal Planetarium software for Linux Educational software for MacOS Educational software for Windows Science software for MacOS Science software for Windows Formerly proprietary software Pascal (programming language) software
[ 0.1574707031, 0.0107192993, -0.0344543457, 0.4428710938, 0.1870117188, -0.2712402344, -0.5703125, -0.4658203125, 0.1073608398, 0.7426757812, 0.6489257812, 0.2458496094, -0.7109375, 0.1971435547, -1.3974609375, 0.1763916016, 0.6508789062, 0.5122070312, 0.431640625, 0.0928344727, 0.3630371094, -0.2352294922, -0.1374511719, -1.2529296875, 0.0880126953, 0.283203125, -0.2727050781, 0.2541503906, -1.529296875, -0.6337890625, 0.1129150391, -0.2169189453, -1.9443359375, 0.2646484375, -0.0112380981, -0.1474609375, -0.4272460938, -0.4956054688, -0.0348510742, -0.21484375, 1.099609375, 0.0266723633, -0.435546875, 0.484375, 0.3464355469, 0.70703125, 0.4289550781, 0.400390625, -0.2978515625, 0.8608398438, -1.1787109375, -0.6416015625, -0.2078857422, -0.251953125, -0.0514526367, -0.1815185547, -0.7495117188, -0.4885253906, -0.4365234375, 0.4167480469, -0.150390625, 1.0673828125, 0.3039550781, -0.650390625, -0.0151138306, -0.4855957031, -0.6928710938, -0.6279296875, 0.1673583984, 1.1416015625, -0.0283050537, 0.4250488281, 0.3198242188, -1.1123046875, -0.8823242188, -0.1295166016, -0.3447265625, 0.5473632812, -0.6293945312, 0.3850097656, -0.7373046875, -0.3322753906, -1.013671875, -0.3190917969, -0.6938476562, 0.912109375, 0.5126953125, -0.927734375, 0.1175537109, 1.283203125, -0.8139648438, -0.3745117188, -0.4436035156, -0.671875, -0.6381835938, 1.3134765625, 0.0316772461, -0.2314453125, -1.0341796875, -0.443359375, -0.0926513672, -0.6567382812, 0.7685546875, 0.3996582031, -0.0938110352, 0.2198486328, 0.6103515625, -0.5771484375, 0.3376464844, 0.3596191406, 1.2578125, -0.0401000977, -0.3005371094, 0.2900390625, -0.1912841797, 0.4992675781, 1.03515625, -0.6279296875, 0.0190734863, -0.2819824219, 0.4475097656, -0.9541015625, 0.1949462891, -0.900390625, 0.8984375, 0.4020996094, 0.1329345703, -0.6850585938, -0.7221679688, 0.9892578125, 0.5385742188, 0.0041351318, 0.2286376953, -0.30859375, 0.8100585938, -0.3493652344, -1.0546875, 0.41015625, 0.4123535156, -0.013671875, -0.18359375, 0.0999755859, 0.5532226562, -0.2939453125, 0.736328125, -0.1634521484, -0.162109375, 0.509765625, -0.7333984375, -0.5009765625, -1.671875, -0.5810546875, 0.8374023438, 0.1226806641, -0.2507324219, -0.3933105469, -0.7646484375, 0.455078125, 0.4409179688, 0.38671875, -0.9301757812, -0.9428710938, 0.94140625, 0.0088195801, 0.4528808594, -0.2873535156, -0.7231445312, -1.2490234375, -0.0516967773, 0.1672363281, 0.1334228516, 0.3820800781, -0.0580749512, 0.7749023438, -0.56640625, 0.0440673828, 0.2746582031, -0.2253417969, -0.82421875, -0.8759765625, -1.0087890625, -0.4899902344, -0.0485229492, -1.041015625, -1.041015625, 0.6103515625, 0.0692749023, 0.3256835938, 0.0320739746, -0.2512207031, -0.3547363281, 0.7377929688, -0.7138671875, 0.345703125, 0.3400878906, -0.0454406738, 1.0234375, -0.0058288574, 0.2651367188, 0.3615722656, -0.4094238281, 0.1635742188, -0.0857543945, -0.3986816406, -0.3959960938, 0.1074829102, -0.3132324219, 0.900390625, 0.2561035156, -0.4133300781, -0.9252929688, -0.8666992188, 0.3344726562, 0.4223632812, 0.6020507812, -0.0993652344, -0.0004327297, 0.0362854004, 0.85546875, -0.1150512695, 0.1436767578, 1.587890625, -0.3737792969, -0.9150390625, -0.2553710938, -1.318359375, 0.2780761719, -0.0969238281, 0.4343261719, -0.1875, -0.3220214844, 0.9536132812, -0.3068847656, -0.4748535156, 0.4436035156, 0.2080078125, -0.763671875, 0.5766601562, -0.599609375, -0.90234375, 0.2065429688, 0.2320556641, 0.759765625, 0.2846679688, 0.2349853516, -0.080078125, 0.6650390625, -0.7177734375, -0.054107666, 0.1220092773, 0.1713867188, -0.0872192383, -0.4284667969, -0.4501953125, 0.1359863281, 0.1077880859, -0.0775146484, -0.8110351562, 1.1552734375, -0.5859375, 0.0702514648, 0.60546875, 0.2286376953, 0.4663085938, 0.8637695312, -0.2749023438, 0.3959960938, -0.0648193359, 0.3959960938, -0.0908203125, 0.5620117188, -0.7543945312, 0.2756347656, -0.734375, -0.4692382812, 0.0241851807, 0.1713867188, -0.9565429688, 0.693359375, 0.4567871094, 0.0935058594, 0.2685546875, -0.9594726562, 0.0892333984, 0.65234375, -0.1284179688, 0.8173828125, 0.5532226562, 1.4189453125, 1.1240234375, 0.544921875, -0.2496337891, 0.3464355469, -0.5439453125, -0.3493652344, -0.3312988281, 0.7265625, -0.0619506836, 0.2526855469, -0.6928710938, 0.3483886719, 0.0477294922, 1.2353515625, -0.822265625, 0.8256835938, 1.2607421875, -0.7465820312, -0.1962890625, -0.970703125, 0.0060882568, -0.490234375, 0.9057617188, -0.369140625, 0.7119140625, -0.4892578125, -0.3688964844, 0.0831298828, 0.0205383301, -0.6655273438, -0.1472167969, 0.3850097656, -0.1359863281, 0.6704101562, -0.1490478516, 0.451171875, 0.4309082031, -0.3898925781, -0.1364746094, 0.0547180176, 0.7055664062, 0.6684570312, -0.4216308594, -1.333984375, -0.2561035156, 0.1256103516, -0.9663085938, 1.5029296875, -0.1396484375, 0.0798339844, -0.748046875, -0.7221679688, 0.0409545898, 0.1879882812, -0.1279296875, -0.1937255859, 0.3107910156, 0.3444824219, 0.3295898438, 0.4936523438, 0.0572814941, 1.400390625, 1.580078125, -0.0961914062, -0.5092773438, -0.4416503906, 0.037902832, -0.2073974609, 0.5048828125, -0.501953125, -0.2626953125, 1.2099609375, -1.234375, -1.77734375, -0.1182250977, -1.54296875, -0.0202484131, 0.4970703125, 0.0850830078, -0.2687988281, -0.5458984375, -0.5278320312, 0.0503845215, -2, -0.9462890625, -0.8701171875, -0.0224304199, -0.734375, 1.3154296875, -0.6518554688, 0.0389099121, -0.0154724121, -0.56640625, -0.2770996094, 0.0670776367, 0.1578369141, 0.810546875, -0.5942382812, -0.1881103516, -0.8095703125, -0.0491027832, 0.7451171875, -0.1823730469, 0.662109375, -0.7216796875, 0.1766357422, 1.2548828125, 0.8134765625, -0.1741943359, -0.5009765625, 0.8930664062, 0.4729003906, -0.2268066406, -0.822265625, 0.2971191406, -1.306640625, 0.576171875, 0.8623046875, -0.2717285156, -0.4304199219, -0.0507507324, -0.1188354492, 0.1107788086, -0.3659667969, 0.4890136719, -0.7275390625, 0.72265625, 0.490234375, -0.8168945312, -0.2939453125, 0.8715820312, -0.75, -0.0107650757, 0.2404785156, 0.6752929688, -0.2668457031, -0.3994140625, -0.1811523438, 0.1311035156, 0.2432861328, -0.2214355469, -0.29296875, -0.3083496094, -0.794921875, -0.0376586914, 0.2219238281, 0.41796875, 0.1424560547, -0.3728027344, -0.3747558594, 0.3256835938, -0.1235351562, 0.3122558594, -0.4724121094, 0.0123062134, -0.052734375, 0.3471679688, -0.5908203125, -0.2663574219, -0.1761474609, 0.4294433594, -0.1848144531, -0.1286621094, -0.9775390625, 0.2374267578, 0.2678222656, 0.1145019531, -0.2161865234, -0.818359375, -0.1127319336, 0.7080078125, -0.0957641602, 0.6611328125, 0.7055664062, -0.2824707031, 0.490234375, -0.2066650391, -1.5458984375, 0.3586425781, 0.6967773438, 0.541015625, 0.322265625, 0.6318359375, 0.6010742188, 0.0510253906, 1.4462890625, 0.990234375, -0.7016601562, 0.0344238281, 0.2512207031, -0.1397705078, 1.45703125, 0.7197265625, -0.3349609375, 0.3493652344, 0.0372619629, 0.0825195312, 0.2159423828, -0.0921630859, -1.38671875, -0.1217041016, 0.2661132812, 0.0639038086, -0.548828125, -0.0621032715, -1.634765625, -0.2954101562, -0.9790039062, -0.0550842285, 0.0676879883, -0.8896484375, -0.2231445312, 0.953125, -0.2961425781, 0.1501464844, -1.0107421875, -0.8930664062, -0.0323791504, 0.4045410156, 0.1127929688, 0.8735351562, -0.16796875, 0.4946289062, 0.7836914062, -0.4692382812, -0.4455566406, -0.1785888672, 0.0777587891, -0.4699707031, 0.2604980469, -0.6079101562, -0.4499511719, 0.2583007812, -0.9873046875, 0.8383789062, -0.050201416, 0.5068359375, -0.1121826172, 0.1968994141, 0.4677734375, 0.6420898438, 1.33984375, -0.5629882812, 0.6186523438, 0.3713378906, -0.0026569366, -0.4311523438, 1.8720703125, 1.6845703125, -1.3662109375, -0.0303039551, 1.3525390625, 1.2900390625, 0.1071777344, -0.6025390625, -0.4311523438, -0.2377929688, -0.8232421875, -0.8432617188, -0.4147949219, -0.3266601562, -0.4501953125, 0.5, -0.6665039062, 1.1162109375, -0.0904541016, -0.1495361328, -0.0146331787, -1.3232421875, 0.0717163086, 0.1282958984, 0.2279052734, -0.6044921875, 0.1833496094, 0.787109375, -1.1923828125, 0.2274169922, -0.1650390625, 1.1318359375, 0.7045898438, -0.026184082, -1.1005859375, -0.0058288574, 0.4768066406, 0.6723632812, -0.4223632812, -0.2265625, 0.0831298828, -0.7548828125, -1.33984375, -0.1531982422, 0.1752929688, -0.1856689453, 0.4313964844, -0.2359619141, -0.4331054688, 1.654296875, 0.0646362305, -0.9877929688, 0.0700073242, 0.1455078125, -0.3166503906, -0.3232421875, 0.9931640625, -0.3493652344, -0.4462890625, -0.1744384766, -1.125, -0.1765136719, -0.1555175781, -0.1376953125, 0.0755615234, 0.45703125, -0.2839355469, -0.1280517578, 0.3325195312, 0.298828125, 0.055847168, 0.2900390625, 0.1014404297, 1.591796875, -0.8022460938, 0.7001953125, 0.1231689453, 0.1651611328, 0.5205078125, 0.4030761719, -0.059753418, 1.201171875, -0.2836914062, -0.5239257812, -0.9887695312, 1.279296875, 0.1119995117, 0.322265625, -0.0650024414, 0.7104492188, 0.3078613281, 0.4169921875, -0.1519775391, 0.4331054688, -0.4147949219, 0.0576782227, 0.3745117188, -0.8720703125, -1.470703125, 0.4448242188, -0.3173828125, 0.55859375, 0.3112792969, 0.0662231445, 0.5659179688, 0.2154541016, -0.3696289062, -0.3305664062, 0.80078125, 0.3879394531, -0.4807128906, 1.05859375, -0.5854492188, -0.0718383789, 1.029296875, -0.0489501953, -0.1883544922, -0.5844726562, -0.9282226562, -0.6079101562, -0.2973632812, -0.7314453125, 0.0874023438, -1.107421875, -1.3271484375, 1.1103515625, -0.3481445312, -0.423828125, 0.7221679688, -0.6264648438, -0.3815917969, -0.1173095703, 0.037902832, -0.4050292969, 0.1563720703, 0.6499023438, 0.6987304688, -0.1178588867, -0.1798095703, 0.1002807617, 0.3166503906, -0.2401123047, -0.568359375, 0.4868164062, 0.0430603027, -0.3139648438, 0.0214233398, -0.1810302734, 0.1343994141, -0.9760742188, -0.677734375, -0.0581665039, -0.6962890625, 0.5893554688, -0.0655517578, 0.0725708008, -0.3359375, 0.7387695312, -0.78125, -0.8920898438, 0.4836425781, 0.1934814453, -0.6376953125, 0.7705078125, -1.546875, -0.3200683594, -0.0798950195, -0.056427002, 0.9482421875, 0.1707763672, 0.2092285156, 0.2380371094, 0.1569824219, -1.224609375, -0.1146240234, 0.0962524414, -0.0835571289, -0.4436035156, -0.3742675781, 0.1567382812, -0.876953125, 0.1181030273, 0.771484375, 0.623046875, -0.4108886719, -0.4914550781, -0.0992431641, 0.45703125, 0.3642578125, 0.3015136719, 0.2475585938, -0.0853881836, 0.1771240234, 0.0186004639, -1.642578125, -0.9438476562, 0.5869140625, -0.0914916992, -0.0074501038, 0.794921875, -0.6040039062, 1.341796875, 0.6142578125, 0.0795898438, 1.4052734375, -0.011390686, -0.6196289062, -1.033203125, -0.623046875, -0.9399414062, 1.6103515625, 0.9458007812, 0.8276367188, -0.9013671875, -0.0883789062, -0.1196289062, -0.4731445312, 0.0654296875, 0.8872070312, -0.9946289062, -0.1381835938, -0.2861328125, -0.2663574219, -0.0592956543, 0.3598632812, -0.0261993408, 0.8427734375, -0.1441650391, 0.003080368, 0.1553955078, 0.705078125, 0.3728027344, 0.5981445312, -0.3291015625, -0.5874023438, -0.3088378906, -0.0770874023, 0.0824584961, 0.3962402344, -0.6733398438, -0.3181152344, -1.1708984375, 0.7138671875, -0.3383789062, -0.4956054688, -0.806640625, 0.0670166016, 0.2042236328, -0.0260925293, 0.1440429688, 0.092956543, -0.8466796875, -0.537109375, 0.0530700684, 0.0362243652, -0.1571044922, -0.1943359375, 1.236328125, 0.6606445312, 0.0835571289, -0.146484375, -0.3439941406, -0.3942871094, -0.1965332031, -0.0613098145, 0.2319335938, 0.0419311523, 0.062286377, 0.3793945312, -0.2543945312, -1.0185546875, -0.4289550781, 0.9350585938, 0.111328125, 0.6303710938, 0.6220703125, -0.357421875, 0.5327148438, -1.076171875, 0.2111816406, 0.3464355469, 0.720703125, -1.03515625, 0.556640625, 0.3774414062, -0.0564575195, 0.9760742188, -1.04296875, 0.9169921875, 1.55078125, -0.580078125, 0.267578125, -0.0913696289, 0.4226074219, -0.8500976562, -0.6284179688, 0.5639648438, 0.2060546875, 0.2440185547, -0.3112792969, -0.4958496094, -0.84375, -0.845703125, -0.4060058594, -1.3095703125, -0.9365234375, 0.0863647461, -0.075378418, -0.8422851562, -0.283203125, 0.3530273438, -0.2180175781, -0.3569335938, -1.1240234375, 0.787109375, -0.2080078125, -1.486328125, 0.9716796875, 0.693359375, -1.224609375, -0.6127929688, -0.84765625, 0.3342285156, -0.2775878906, 0.517578125, -0.6791992188, -0.2216796875, -0.3200683594, -0.0214385986, -0.3466796875, -0.4001464844, -0.9150390625, -0.0692749023, -0.3923339844, 0.1617431641, -1.5791015625, -0.0545043945, -0.2758789062, -0.6459960938, -1.2060546875, -0.7856445312, 0.26953125, -0.3193359375, 2.12890625, 0.2105712891, 0.58984375, -0.2059326172, -0.6201171875, 0.8754882812, 0.4916992188, -0.171875, -0.0507507324, 0.244140625, -0.3000488281, -0.1522216797, 0.091003418, 0.1166992188, 0.6181640625, -1.9638671875, 0.0137329102, -0.98828125, -0.4006347656, 0.3747558594, 1.037109375, -0.525390625, 0.2197265625, 0.916015625, -0.7416992188, 0.5986328125, 0.6484375, 0.3708496094, -0.4130859375, 0.7314453125, -0.2600097656, -0.0473327637, -0.4006347656, 1.3251953125, -0.6762695312, 0.2578125, 0.1323242188, 0.0098571777, -0.4194335938, -0.4001464844, -0.3283691406, -0.1167602539, 0.4426269531, 0.4770507812, 0.090637207, 0.1298828125, -0.0033416748, 0.9252929688, -0.4050292969, -2.484375, -0.0205230713, 0.1912841797, 0.7612304688, 0.2268066406, -0.5146484375, -0.3752441406, -0.0499572754, 0.6625976562, 1.0009765625, 1.552734375, 0.1948242188, 0.8305664062, -0.8393554688, -13.03125, 0.2736816406, 0.2509765625, 0.7583007812, -0.0442199707, 0.693359375, 0.3015136719, -0.4194335938, -0.287109375, 0.220703125, 0.6904296875, 2.029296875, -0.2846679688, -0.2595214844, -0.2305908203, -0.3979492188, -0.5805664062, 0.1079101562, -0.2153320312, -0.00831604, 0.0572814941, -0.802734375, 0.0399475098, -1.4111328125, -0.7685546875, 0.0841064453, 1.525390625, -0.8872070312, -0.533203125, -1.3564453125, 0.5307617188, -0.0370178223, -1.330078125, 0.6254882812, 0.0315246582, 0.861328125, 1.12890625, -0.7041015625, 0.4545898438, -0.8725585938, 0.2612304688, 0.2435302734, -1.0439453125, 0.3503417969, 0.5112304688, -0.7465820312, -0.53515625, -0.9599609375, -0.2395019531, -0.1580810547, 0.3591308594, 1.2119140625, -0.3825683594, -0.3190917969, -0.0024433136, -0.0510559082, -0.33984375, -0.8525390625, 0.8701171875, 0.2463378906, 0.1865234375, 0.3552246094, 1.0576171875, -0.2531738281, 0.1665039062, -0.1408691406, -0.5903320312, -0.6284179688, 0.3696289062, -0.2626953125, 0.3293457031, -0.8940429688, 0.1949462891, 0.0526733398, -0.3076171875, 0.6689453125, 0.2075195312, -0.2692871094, 0.2912597656, -0.1875, -0.0390625, 1.1728515625 ]
Explorer Dream is a Leo class cruise ship of Dream Cruises. She was built in 1999 by the Meyer Werft shipyard in Papenburg, Germany as SuperStar Virgo. Concept and construction SuperStar Virgo was ordered by Star Cruises on 22 November 1995 from the Meyer Werft shipyard in Papenburg, Germany as the second ship of the Leo class, and the second new build for Star Cruises. She was designed specifically for the Asian cruise market. The keel of the SuperStar Virgo was laid on 18 November 1996, and she was floated out of dry dock on 23 December 1998. She was delivered to Star Cruises on 2 August 1999. Service history SuperStar Virgo Following the transit from Papenburg to Singapore the SuperStar Virgo entered service on cruises from Singapore on 10 October 1999. On 24 April 2003 the SuperStar Virgo was relocated from Singapore to operate cruises out of Perth, Western Australia due to the outbreak of the severe acute respiratory syndrome (SARS) in Southeast Asia. Initially the redeployment was planned to last only a one-month evaluation period, but SuperStar Virgo continued to be based in Perth until July 2003. On 2 April 2008 the SuperStar Virgo relocated from Singapore to Hong Kong as her port of departure until 26 October 2008, the redeployment coinciding with the 2008 Summer Olympics in Beijing. She returned to Singapore in October 2008. In January 2009, Star Cruises installed a 100m waterslide on the SuperStar Virgo during her dry dock period in Singapore, and in January 2012, received new hull art and livery. Between April and October 2014 she was based in Hong Kong.
[ 0.541015625, 0.0360412598, -0.4379882812, -0.0986328125, 0.5424804688, 0.0759277344, -0.5893554688, -0.0689086914, 0.4631347656, 0.4880371094, 0.5805664062, -0.119140625, -0.2290039062, 0.9970703125, -0.138671875, 0.5317382812, -0.3911132812, 0.224609375, 0.6611328125, 0.54296875, -0.2587890625, -0.3259277344, -0.1057739258, 1.5537109375, -0.8999023438, 0.110534668, 0.3684082031, 0.4462890625, -0.1583251953, -0.4587402344, 0.0875244141, -0.0305023193, -0.8715820312, 0.1893310547, -1.3271484375, 0.0208740234, -0.4792480469, 1.12109375, -0.1931152344, 0.3232421875, -0.4223632812, -0.123840332, 0.3342285156, 0.0673217773, 1.0830078125, -0.5556640625, -0.0816040039, -0.1529541016, -0.6547851562, 0.1281738281, -0.3215332031, 0.8208007812, -1.1787109375, -0.9028320312, 0.1723632812, 0.5561523438, -0.9760742188, -0.5048828125, 0.0378723145, -0.513671875, -0.51171875, 0.6337890625, -0.9633789062, -0.5893554688, 0.3095703125, 0.5639648438, 0.2266845703, -0.79296875, -0.3271484375, 0.5434570312, -0.2302246094, -0.2770996094, -0.2790527344, -1.4599609375, -0.4094238281, 0.4948730469, -0.1939697266, 0.6215820312, 0.3757324219, 0.0303192139, -1.0595703125, -0.2741699219, -0.2719726562, -0.1845703125, -1.0458984375, 0.1676025391, -0.7387695312, 0.2814941406, -1.1123046875, 1.837890625, -0.2056884766, 0.2052001953, -0.7529296875, -0.6694335938, -0.0422058105, 0.3581542969, 0.1187133789, -0.7734375, 0.1959228516, 0.7348632812, 0.255859375, -0.4040527344, 0.5385742188, 0.2303466797, -1.583984375, 1.9052734375, 0.0595397949, -0.9453125, -1.044921875, -0.6333007812, 0.681640625, 1.294921875, 0.0403747559, 0.3854980469, 0.2203369141, 0.8330078125, -0.6997070312, -1.1513671875, -0.8427734375, 0.3305664062, 0.6513671875, -0.58984375, 0.4084472656, -0.8388671875, 0.2722167969, -0.4333496094, 0.265625, 0.8432617188, -0.0132217407, -0.3559570312, -0.2133789062, -0.0017242432, -0.3718261719, -0.4724121094, 1.4169921875, -0.5913085938, -0.931640625, -0.5122070312, 0.6533203125, 0.2451171875, 0.6259765625, 0.0492248535, -0.3205566406, -0.3896484375, 0.4331054688, 0.724609375, -0.3745117188, 0.3444824219, -1.876953125, -0.4045410156, -0.0017938614, -0.0539245605, -0.3532714844, 0.2137451172, 1.0068359375, -0.063659668, -0.4482421875, -0.2200927734, -0.4306640625, -0.4248046875, 0.0585327148, -0.8090820312, -0.5239257812, -0.1815185547, -0.1624755859, 0.5205078125, -0.5048828125, -0.1221923828, -0.1473388672, 0.39453125, -0.5810546875, -0.1353759766, 0.2042236328, -1.033203125, -0.1907958984, 1.6591796875, 0.1280517578, -1.5263671875, 0.4128417969, -0.8764648438, 0.435546875, -0.1643066406, 1.0908203125, -0.9809570312, -0.0222930908, -0.0704345703, 0.8813476562, 0.075012207, -0.5356445312, 0.361328125, 0.3039550781, -0.0376586914, -0.8271484375, 0.5424804688, -0.181640625, -0.658203125, -0.1733398438, 0.1077880859, 0.2291259766, 0.3078613281, -0.5698242188, -0.0119857788, -0.9580078125, -0.296875, -0.7553710938, 0.1195678711, 0.0615844727, -0.0741577148, 1.439453125, 0.1291503906, 0.1715087891, -0.73046875, 0.1857910156, 0.3149414062, -0.724609375, -0.7421875, 0.0584411621, 0.2331542969, 1.0302734375, -0.3322753906, 0.6743164062, 0.4819335938, -0.6440429688, -0.4943847656, 0.6313476562, -1.4677734375, 1.2509765625, 0.2241210938, 0.3803710938, -0.9252929688, 0.0858154297, 0.0407409668, -1.1025390625, 0.5986328125, -0.0138320923, 0.1689453125, -0.1050415039, 0.5078125, -0.615234375, -0.7456054688, -1.265625, -0.8090820312, 0.086730957, -0.1618652344, -0.427734375, -0.5493164062, 0.1983642578, 0.5434570312, 0.2160644531, 0.4743652344, 0.1719970703, 0.2305908203, 0.8388671875, -0.7412109375, -0.5263671875, -1.3154296875, 0.2296142578, -0.7783203125, 1.2578125, -0.962890625, 0.4672851562, 0.0793457031, 0.9858398438, -0.7563476562, 0.7060546875, -0.4375, -0.2208251953, 0.0320129395, -0.3061523438, -0.1259765625, -0.0203857422, 0.4194335938, -0.3742675781, 0.5932617188, -0.27734375, -0.018951416, -0.1345214844, 0.2678222656, -0.8208007812, 0.6557617188, 1.0078125, 0.2580566406, -0.796875, -0.0188903809, 0.59375, -0.8061523438, -0.5263671875, 0.0280609131, 0.2768554688, -0.5063476562, 0.5971679688, 0.0270385742, 0.0645751953, -1.1162109375, -0.0874633789, 0.3408203125, 0.2951660156, -0.1051635742, 0.0762329102, -1.0283203125, 0.6572265625, -0.5903320312, -0.6254882812, -0.9418945312, 1.0458984375, 0.5166015625, 0.724609375, -0.923828125, -0.1049804688, 0.4814453125, -1.3564453125, 1.6337890625, 0.3444824219, 1.2939453125, 0.1743164062, -0.6298828125, -0.0554199219, 0.0098495483, 0.0658569336, -0.3762207031, 0.78125, -0.3217773438, 0.763671875, 0.8564453125, 0.388671875, -0.2293701172, 0.5249023438, 0.0484313965, 1.169921875, 0.2937011719, -0.0981445312, -0.2573242188, 0.4885253906, -0.4067382812, 0.2263183594, -0.7817382812, 0.8764648438, -0.3498535156, -0.0110015869, 0.4099121094, -0.9741210938, -0.1179199219, -0.1000976562, 0.1437988281, 0.0880737305, -1.265625, 0.8359375, -0.8666992188, -0.720703125, -0.1903076172, 0.1129150391, -0.1403808594, -0.3488769531, -0.7255859375, -1.1845703125, 0.4431152344, 0.9223632812, -0.6635742188, -0.3276367188, 0.0035457611, 0.556640625, -0.1251220703, -0.4826660156, -0.112121582, 0.576171875, 0.5458984375, 0.3666992188, 0.1123657227, -0.1632080078, -0.4665527344, 0.2678222656, -0.2478027344, 0.2048339844, 0.3156738281, 0.8403320312, -0.2427978516, -1.611328125, -0.1926269531, -1.044921875, -0.1832275391, 0.7944335938, 0.2912597656, 0.0060691833, -0.4252929688, 0.5283203125, 1.03515625, 0.7475585938, 0.1369628906, 0.1563720703, -0.4453125, -0.5629882812, 0.9916992188, 0.5590820312, -0.9604492188, 0.1303710938, 0.41015625, 0.5458984375, -0.8110351562, -0.4187011719, -0.1352539062, -0.1597900391, 0.2452392578, -0.953125, 1.1240234375, -1.1142578125, -0.2316894531, 0.3862304688, 0.0138473511, 0.0668945312, 0.92578125, 0.1505126953, -0.494140625, -0.3146972656, 0.2854003906, -0.1259765625, 0.5185546875, -0.4831542969, -0.4147949219, -0.7465820312, -0.2412109375, -0.092956543, -0.2719726562, 0.767578125, 0.2415771484, -0.6372070312, -0.3146972656, 0.0521850586, -0.2498779297, 0.4194335938, -0.0399169922, 0.587890625, 0.2766113281, -0.9877929688, -0.7827148438, -0.3642578125, -0.1605224609, -0.8540039062, -0.1923828125, -0.3688964844, -0.7387695312, 0.2524414062, 0.4006347656, -0.3427734375, -0.1569824219, -0.2866210938, -0.4738769531, 0.5112304688, -0.6748046875, 0.3178710938, -0.9116210938, -0.1761474609, -0.1837158203, -0.8193359375, 0.2082519531, 0.6577148438, -0.9877929688, -0.7016601562, -0.3618164062, 0.6547851562, 0.1194458008, -0.2163085938, 0.0179290771, -0.3991699219, 0.0453491211, 0.4333496094, 0.5170898438, 0.318359375, -0.404296875, -1.0849609375, -0.9228515625, -0.0802612305, -0.1297607422, -0.2697753906, 0.4145507812, -0.5419921875, 0.4338378906, -0.0008392334, 0.69140625, -0.6435546875, -0.0553588867, 0.5903320312, 0.5673828125, 0.3745117188, 0.7265625, -0.0470581055, 1.2216796875, 0.0818481445, -0.0009069443, 0.4929199219, -0.2863769531, -0.505859375, -0.353515625, 0.38671875, 0.0258483887, -0.7197265625, 0.1872558594, -0.0384216309, -0.0600585938, 0.4455566406, -0.9931640625, -0.7099609375, -0.7001953125, -0.5698242188, -0.2138671875, 0.3286132812, -0.4025878906, -0.9697265625, 0.2829589844, 0.1419677734, 0.658203125, 0.923828125, -0.2956542969, 0.2958984375, -0.2705078125, 0.4309082031, -1.078125, 0.0232391357, -0.046661377, 0.4047851562, 0.2890625, -0.5444335938, 0.4645996094, 0.1444091797, 1.44921875, -1.208984375, 0.4675292969, -0.0303649902, -0.6181640625, -0.6572265625, -0.1923828125, -0.921875, 0.0479736328, 0.0066337585, 0.5268554688, -0.0396118164, -0.2817382812, 0.6923828125, 0.6025390625, -0.7978515625, -0.7846679688, 0.9624023438, 0.4311523438, -0.3068847656, -1.060546875, 1.298828125, 0.515625, -0.3637695312, -0.146484375, -0.5571289062, -0.3203125, 1.1435546875, -0.0089187622, 0.1139526367, 1.435546875, 0.0952148438, -0.1439208984, 0.1100463867, -0.5356445312, -0.0226745605, -0.69921875, -0.1873779297, -0.7915039062, 0.1705322266, 0.7138671875, -0.3935546875, 0.888671875, 0.951171875, 1.3603515625, -0.61328125, -0.7661132812, 0.0430603027, 1.201171875, -0.0920410156, 0.3562011719, -0.1491699219, -0.5717773438, 0.5864257812, 0.0117645264, -0.701171875, -0.486328125, 1.880859375, -0.53125, -0.7880859375, 0.3718261719, -1.25, 0.5244140625, -0.2432861328, -0.6083984375, -0.7514648438, 0.1953125, 0.0958251953, 0.2824707031, 0.1627197266, 0.6752929688, 0.2072753906, 0.3991699219, -1.0283203125, -0.0544433594, 0.2556152344, 0.1466064453, -0.6772460938, -0.3234863281, 0.3168945312, 0.2263183594, -0.7548828125, -0.1965332031, 0.0204772949, 0.6948242188, -0.0728759766, 0.2573242188, -0.6235351562, 0.4926757812, -0.1954345703, 0.1973876953, -0.0663452148, 1.19921875, -0.7509765625, 0.5463867188, -0.4772949219, -0.1220092773, 0.71875, -0.6733398438, -0.7583007812, 0.6171875, -0.4333496094, -0.50390625, -0.1298828125, -0.1167602539, 0.3010253906, 0.6801757812, 0.2084960938, 1.5107421875, 0.4184570312, -0.0016431808, 0.1265869141, 0.1005249023, 0.0891113281, 0.2614746094, 0.2182617188, 0.1745605469, 0.5249023438, -0.7880859375, -0.8930664062, -0.0231628418, 0.0210266113, -0.26953125, 0.1971435547, -0.7578125, 0.108215332, -0.5034179688, -0.5390625, 0.3505859375, 0.0206756592, -0.5927734375, -0.8525390625, 0.4733886719, -0.1551513672, 0.0794677734, -0.7631835938, 0.515625, 0.0982666016, 1.025390625, 0.2998046875, -0.1695556641, 1.3896484375, 0.0453186035, -0.4519042969, 0.6044921875, -0.9340820312, -0.486328125, -0.2565917969, 1.1708984375, -0.0966796875, -0.1947021484, -0.1727294922, 0.6420898438, -0.6806640625, -0.7978515625, -0.0151290894, 0.6625976562, 0.7578125, 0.1868896484, 0.5361328125, 0.6220703125, 0.0995483398, -0.62890625, -0.3540039062, 0.7905273438, -0.8969726562, 1.0078125, -0.5522460938, -0.1586914062, -0.1884765625, -0.2283935547, -1.6904296875, -0.1683349609, 0.1953125, 0.1767578125, 0.3273925781, -0.0328063965, -0.8984375, -1.5517578125, -0.798828125, -0.833984375, 0.130859375, 0.0068283081, -0.359375, -1.2041015625, 0.4428710938, -0.306640625, -0.0459289551, -0.0162963867, -0.697265625, 1.443359375, 0.7075195312, 1.330078125, 1.015625, -0.1511230469, 0.1021118164, -0.1904296875, -0.0761108398, 0.5166015625, 0.2198486328, 0.0394592285, -0.2834472656, 0.0118484497, -1.1669921875, 0.3845214844, 0.6450195312, -0.1070556641, 0.5747070312, -0.1037597656, 0.3215332031, -0.032409668, -0.9682617188, 0.8779296875, -0.3034667969, -0.6831054688, -0.0837402344, 0.302734375, 0.1881103516, -0.4147949219, -0.203125, 1.3037109375, -0.791015625, -0.5649414062, 1.404296875, 0.2381591797, 0.5297851562, -1.33203125, 0.875, 0.25390625, -0.1533203125, 0.2631835938, 0.0711669922, -0.1462402344, 0.0348815918, 0.3552246094, -0.0179901123, 0.34765625, -0.0722045898, 0.0808105469, 0.7705078125, -0.3310546875, -0.2390136719, 1.26953125, 0.669921875, 0.2639160156, -0.5375976562, -1.220703125, 0.8530273438, -0.6611328125, 0.0287780762, 0.0700073242, -0.1427001953, -0.583984375, 0.3937988281, -1.07421875, 0.6684570312, -0.1843261719, -0.8266601562, -0.1845703125, -0.5576171875, 0.0931396484, -0.76171875, 0.4274902344, 0.9282226562, 0.95703125, -0.4909667969, -0.8876953125, 0.1241455078, -0.7153320312, 0.085144043, 0.3364257812, 0.8134765625, -0.0360412598, -0.8359375, -0.734375, -0.4135742188, 0.1719970703, -0.8349609375, 1.19921875, -0.1174316406, 0.0956420898, 0.1766357422, -0.5786132812, -0.5366210938, 0.2495117188, 0.1419677734, -0.4875488281, -1.4794921875, -0.1123046875, 0.2490234375, 0.75, 0.2807617188, 0.2661132812, -0.8212890625, 0.826171875, 0.1163330078, 0.4868164062, -0.0437011719, 0.7329101562, 1.203125, -1.291015625, -0.779296875, -0.5053710938, -0.1577148438, 0.7275390625, -0.81640625, 0.1977539062, -0.1545410156, 1.2568359375, -0.0165100098, -0.2648925781, 0.075378418, -0.0991821289, -1.056640625, 0.5302734375, 0.1530761719, -0.1088256836, -1.259765625, -1.203125, 0.814453125, 0.1160888672, -0.2016601562, -0.7944335938, 0.7353515625, -0.2902832031, -0.2445068359, -0.2980957031, 0.80859375, 0.1147460938, 0.3400878906, 0.8896484375, -0.2961425781, -0.1695556641, 0.59765625, -0.4504394531, 0.6577148438, -0.5244140625, 0.5610351562, -0.0728149414, 1.1435546875, 0.1606445312, -0.6572265625, -0.2756347656, -0.2607421875, -1.494140625, -0.3608398438, 0.5463867188, 0.2893066406, 0.063293457, 0.41796875, 0.2512207031, -0.8056640625, -0.0884399414, -0.3229980469, 0.1141967773, -1.1279296875, 0.9931640625, 0.0074234009, -0.3686523438, -0.1492919922, -0.1960449219, 0.880859375, -0.5419921875, 0.8247070312, -0.634765625, -0.1618652344, 0.8515625, 0.9252929688, -0.3117675781, -0.3818359375, -0.0115737915, -0.5561523438, 0.1903076172, -0.1312255859, 0.2685546875, 0.4919433594, -0.8720703125, 0.1010131836, -0.5874023438, 1.0126953125, 0.5346679688, -0.4555664062, 0.2729492188, 0.365234375, -0.7524414062, 0.5463867188, 0.3430175781, -0.0453796387, 0.3312988281, 0.2741699219, 0.2583007812, 0.1297607422, 0.6752929688, 1.109375, -0.1535644531, -0.3649902344, 0.1604003906, 0.2225341797, 1.2216796875, 0.0575866699, 0.3449707031, 0.9731445312, 0.7934570312, 0.0452575684, -0.4418945312, -0.3610839844, -0.2493896484, 0.4304199219, 0.494140625, 0.2252197266, -0.9267578125, 0.2819824219, 0.0035991669, 0.4919433594, -0.0658569336, 0.7890625, 0.8598632812, 0.4838867188, 0.0104675293, -13.8203125, 0.0566711426, 0.14453125, 0.3286132812, -0.4147949219, 0.0184631348, -0.8715820312, -0.4997558594, -0.1820068359, -0.6987304688, -0.2421875, 0.3566894531, -0.4924316406, -0.2086181641, -0.5766601562, -0.1455078125, -0.8872070312, -1.1826171875, 0.1918945312, 0.3969726562, 0.7099609375, 1.1845703125, -1.28515625, -0.8208007812, 0.2310791016, -0.2282714844, 0.2401123047, 0.7822265625, -0.1452636719, -0.9873046875, -0.0114364624, -0.7626953125, 0.0971069336, 0.33984375, -0.24609375, 0.1927490234, 0.302734375, -0.8374023438, -0.6596679688, 0.3962402344, 0.6474609375, -0.1597900391, -0.5747070312, -0.0271759033, -0.3774414062, 0.0578613281, -0.3073730469, -0.5361328125, 0.5830078125, 0.3366699219, 0.5703125, 0.9853515625, 0.0347900391, 0.6357421875, 0.0377502441, -0.6889648438, -0.4543457031, -0.7431640625, -0.9711914062, 0.9155273438, -0.2319335938, 0.9223632812, 0.3410644531, -0.5029296875, -0.193359375, -0.1729736328, -0.2687988281, -1.201171875, -0.1832275391, -0.0946044922, 0.2651367188, -1.0439453125, -0.0915527344, 0.9204101562, 0.9887695312, 0.0263214111, -0.0358276367, 0.0586853027, -0.3076171875, 1.537109375, 0.3884277344, -1.935546875 ]
From 13 November 2015 to 31 December 2015, SuperStar Virgo undertook a 48-day cruise to the Southern Hemisphere with over 20 ports of call. From 3 January 2016 to 11 November 2016, SuperStar Virgo was homeported in Nansha, Guangzhou and Hong Kong. From November 2016 to December 2016, she continued to be based at Hong Kong. From January 2017 to March 2017, she was based in Shenzhen and cruised to Vietnamese ports and Hong Kong. Explorer Dream SuperStar Virgo was transferred to Dream Cruises and following a US$65 million refit at Sembawang Shipyard in Singapore, was renamed Explorer Dream. She will operate from Australia during the 2019-20 cruise season. The ship was supposed to return to north Asia and based in Shanghai for the summer of 2020, but due to the COVID-19 pandemic, her deployment in China was cancelled and was subsequently laid up in Port Klang, Malaysia and sailed to various ports around Asia to load and offload crew members. In July she arrived in Keelung, Taiwan and awaited her island hopping cruises which began on 26Jul. Her island hopping cruises in Taiwan made several stops in islands of Taiwan like Penghu and Matsu, and only made a technical call in Japan without disembarkation. Media In the 2013, Japanese movie Nazotoki wa Dinner no Ato de take place on SuperStar Virgo. Gallery References External links Star Cruises official website for SuperStar Virgo Ships of Star Cruises Ships built in Papenburg 1998 ships Ships of the Dream Cruises
[ 0.234375, 0.0191955566, -0.2646484375, -0.1293945312, -0.5341796875, 0.1247558594, -0.4794921875, 0.0866088867, 0.4812011719, 0.0891113281, 0.1125488281, -0.53125, -0.3955078125, 1.4287109375, 0.181640625, 0.7172851562, -0.3776855469, -0.3920898438, 0.3737792969, 0.361328125, -0.6352539062, -0.1589355469, 0.0969848633, 1.4658203125, -0.66015625, 0.0321655273, 0.54296875, 0.1026000977, -0.2729492188, -0.5786132812, 0.1002807617, 0.3041992188, -0.7885742188, 0.4226074219, -1.34765625, -0.0205841064, -0.2041015625, 0.3579101562, 0.4694824219, 0.1181640625, 0.3076171875, -0.0445251465, 0.5698242188, 0.0055961609, 0.9731445312, -0.0941162109, -0.0946044922, 0.4948730469, -0.2165527344, 0.0040130615, -0.8969726562, 1.244140625, -1.1533203125, -0.8330078125, -0.1391601562, 0.7905273438, -0.9995117188, -0.34765625, -0.4187011719, -0.5922851562, -0.4372558594, 1.005859375, -1.111328125, -0.58984375, 0.4382324219, 0.2995605469, 0.5541992188, -0.3923339844, -0.7709960938, 0.1917724609, -0.7124023438, 0.115234375, -0.0534667969, -0.7329101562, -0.4272460938, 0.3569335938, -0.0436096191, 0.970703125, -0.1806640625, -0.2543945312, -1.4677734375, -0.3830566406, -0.1536865234, -0.4482421875, 0.2966308594, 0.3215332031, -0.9052734375, 0.2956542969, -1.6240234375, 1.43359375, -0.0941162109, 0.0706176758, -0.4584960938, -0.5283203125, 0.0396118164, 0.5703125, -0.3427734375, -0.9521484375, -0.0828857422, 0.43359375, -0.0357971191, -0.2729492188, 0.5102539062, 0.806640625, -0.8481445312, 2.552734375, -0.2661132812, -0.2702636719, -1.1328125, -0.7280273438, 0.4392089844, 1.111328125, 0.2722167969, -0.58984375, -0.2421875, 0.83984375, -0.564453125, -0.45703125, -0.4104003906, 0.517578125, 0.1691894531, -1.0830078125, 0.5849609375, -0.607421875, 0.5830078125, 0.0259246826, 0.2697753906, 0.6499023438, 0.7373046875, -0.5234375, 0.5146484375, -0.1007080078, -0.712890625, -0.0725708008, 1.56640625, -0.8017578125, -0.71484375, -0.006061554, 0.1756591797, 0.3271484375, 0.8271484375, 0.0894165039, -0.0062294006, -0.4916992188, 0.55859375, 0.3825683594, -0.2673339844, 0.1645507812, -1.775390625, 0.1025390625, -0.4123535156, -0.0582885742, -0.6713867188, 0.3046875, 0.7177734375, 0.32421875, -0.4338378906, 0.2037353516, -0.7856445312, 0.1512451172, -0.2946777344, -0.3481445312, -0.7055664062, 0.2834472656, 0.1514892578, 0.6005859375, -0.7670898438, 0.1017456055, 0.3515625, 0.45703125, -0.5541992188, -0.2939453125, 0.2651367188, -0.7456054688, -0.0173950195, 1.130859375, 0.6040039062, -1.2734375, 0.1219482422, -1.337890625, 0.5551757812, 0.26953125, 1.24609375, -1.1220703125, -0.1633300781, 0.1003417969, 1.1083984375, 0.1927490234, -0.6875, 0.1623535156, 0.3823242188, -0.2290039062, -1.28515625, 0.1760253906, -0.1024780273, -0.0090484619, -0.1966552734, 0.28125, 0.0093460083, 0.5239257812, -0.3986816406, -0.1052856445, -0.0799560547, -0.2243652344, -0.7109375, -0.3786621094, 0.1806640625, 0.053527832, 0.5517578125, 0.3537597656, 0.8515625, 0.2374267578, -0.1513671875, 0.3642578125, 0.0532836914, -1.013671875, -0.1420898438, 0.3947753906, 1.0693359375, -0.1304931641, -0.357421875, 0.5561523438, -0.6166992188, -0.6518554688, 0.1123657227, -1.4140625, 1.3154296875, 0.4477539062, 0.4907226562, -1.12109375, 0.3439941406, -0.1861572266, -1.3701171875, 0.6352539062, 0.1968994141, -0.1981201172, 0.2008056641, 0.5517578125, -0.9897460938, -0.9453125, -1.1640625, -0.3349609375, 0.3557128906, -0.54296875, -0.3854980469, 0.1845703125, 0.4499511719, -0.1022949219, 0.3100585938, -0.0315551758, -0.0324707031, 0.2526855469, -0.1772460938, -0.3361816406, -0.7744140625, -1.1455078125, -0.1098632812, -0.8715820312, 0.9775390625, -0.7182617188, 0.3371582031, -0.0637207031, 1.41796875, -0.818359375, 0.4228515625, -0.2885742188, -0.1206054688, 0.3642578125, -0.7470703125, -0.1397705078, -0.3173828125, -0.0633544922, -0.1181640625, 0.3366699219, -0.8447265625, 0.3571777344, -0.1162719727, 1.05078125, -0.2934570312, 0.6577148438, 1.220703125, 0.2731933594, -0.9453125, -0.0207519531, 0.7163085938, -1.0693359375, -0.9956054688, -0.2954101562, -0.0918579102, -0.0622558594, -0.0216369629, -0.2644042969, 0.6713867188, -0.4831542969, -0.087097168, 0.3032226562, 0.1591796875, -0.6215820312, 0.26953125, -1.0478515625, 0.057434082, -0.7690429688, -0.1486816406, -0.8681640625, 0.8037109375, 0.7836914062, 0.4436035156, -0.974609375, 0.1457519531, 0.5483398438, -0.779296875, 1.451171875, 0.5620117188, 1.6357421875, 0.0339050293, -0.5053710938, 0.7797851562, -0.2305908203, 0.0294189453, -0.0894775391, 0.77734375, 0.1019287109, 1.1279296875, 0.4851074219, 0.2061767578, 0.1365966797, 0.59375, 0.0183258057, 1.150390625, 0.1708984375, -0.0989990234, 0.0637817383, 0.6689453125, 0.0525512695, 0.7543945312, -0.8671875, 0.8334960938, -0.4096679688, 0.3410644531, 0.5107421875, -0.796875, 0.435546875, -0.3735351562, -0.1806640625, 0.1518554688, -0.9868164062, 1.1484375, -0.7641601562, -1.171875, -0.0003118515, -0.3073730469, -0.5810546875, -0.1976318359, -1.314453125, -1.134765625, 0.1844482422, 0.640625, -0.3669433594, -0.4169921875, -0.7856445312, 0.1813964844, 0.0440979004, -0.5751953125, 0.2575683594, 0.7905273438, 0.1865234375, 0.1077270508, 0.4699707031, -0.1575927734, -0.791015625, 0.3537597656, 0.0130081177, 0.1614990234, -0.0935668945, 0.8486328125, -0.2293701172, -1.033203125, 0.2741699219, -1.193359375, -0.2998046875, 0.6953125, -0.0417785645, -0.4465332031, -0.2641601562, 0.1368408203, 0.8251953125, 0.4721679688, -0.1137695312, 0.5844726562, -0.0172424316, -0.6704101562, 0.779296875, 0.6596679688, -1.38671875, -0.2680664062, 0.3977050781, 0.875, -0.2177734375, -0.2158203125, 0.1390380859, -0.2517089844, 0.2590332031, -0.4182128906, 0.4326171875, -0.927734375, -0.4091796875, 0.4145507812, -0.0561523438, 0.2216796875, 0.962890625, 0.0541687012, 0.011177063, -0.2469482422, -0.0822143555, -0.2114257812, 0.5668945312, -0.333984375, -0.673828125, -0.9096679688, -0.3010253906, -0.2641601562, 0.040222168, 0.7744140625, -0.2066650391, -0.3842773438, -0.46484375, 0.2934570312, -0.0803833008, 0.5419921875, 0.2401123047, 0.8002929688, 0.3210449219, -1.16015625, -1.1142578125, -0.3640136719, 0.1889648438, -1.0068359375, 0.1405029297, 0.0640869141, -0.4714355469, 0.3881835938, -0.3542480469, -0.2052001953, -0.5268554688, -0.59375, -1.0234375, 0.7338867188, -0.2966308594, 0.2265625, -1.3408203125, 0.2551269531, -0.4553222656, -1.06640625, 0.2749023438, 0.1911621094, -0.5366210938, -0.4907226562, -0.0931396484, 0.3752441406, -0.1514892578, 0.4851074219, -0.0446777344, -0.3525390625, -0.3884277344, 0.3308105469, -0.0440979004, 0.3857421875, -0.6938476562, 0.1614990234, -1.3583984375, -0.630859375, 0.0600585938, -0.0601196289, 0.7739257812, 0.2302246094, -0.0226287842, -0.4982910156, 0.2436523438, -0.6958007812, -0.0547180176, -0.1237182617, 0.7626953125, 0.3640136719, 1.0439453125, -0.1726074219, 0.71875, -0.2489013672, 0.2434082031, 0.6137695312, 0.019821167, 0.1149902344, 0.1849365234, 0.4814453125, 0.4458007812, -0.2200927734, 0.474609375, 0.1215209961, -0.3295898438, 0.4208984375, -1.1220703125, -1.0869140625, -0.87890625, -0.3352050781, -0.4702148438, -0.462890625, -0.6293945312, -1.0849609375, 0.2890625, 0.4350585938, 0.8627929688, 0.74609375, -0.2423095703, -0.1748046875, -0.4904785156, -0.1624755859, -1.45703125, -0.024307251, 0.5107421875, 0.5239257812, -0.1137695312, -0.5034179688, 0.5478515625, -0.3061523438, 1.0810546875, -1.7685546875, 1.0283203125, -0.0555114746, -1.1376953125, -0.517578125, -0.1756591797, -1.3271484375, -0.3879394531, -0.4768066406, 0.4653320312, -0.0275115967, -0.2454833984, 0.580078125, 0.1988525391, -0.6870117188, -1.162109375, 0.6430664062, 0.3376464844, 0.1456298828, -1.0869140625, 0.6577148438, 0.1662597656, 0.2244873047, 0.2142333984, -0.947265625, -0.1328125, 1.611328125, -0.052734375, -0.4096679688, 1.2294921875, -0.0997314453, -0.1128540039, -0.359375, -0.3237304688, 0.2744140625, -0.4448242188, -0.0249786377, -0.4260253906, 0.7119140625, 0.7661132812, -0.302734375, 0.580078125, 0.7495117188, 0.9819335938, -0.951171875, -0.2741699219, -0.1145019531, 1.01171875, 0.0748901367, 0.3071289062, 0.0190582275, -0.7763671875, -0.0219268799, 0.0090560913, -0.8212890625, -0.4672851562, 1.095703125, -0.5610351562, -0.451171875, 0.2644042969, -0.8344726562, 0.7602539062, -0.876953125, -0.7265625, -0.3559570312, -0.0395507812, -0.3054199219, 0.8393554688, -0.1291503906, 0.7934570312, 0.2098388672, 0.572265625, -0.953125, 0.1711425781, 0.1256103516, 0.419921875, -0.7163085938, -0.2634277344, 0.8046875, -0.0995483398, -1.0908203125, -0.5161132812, 0.2258300781, 0.4812011719, -0.5258789062, 0.0263214111, -0.3952636719, 0.4123535156, 0.4626464844, 0.2534179688, 0.3483886719, 1.048828125, -0.5473632812, 0.7509765625, -0.1575927734, -0.6752929688, -0.0567321777, -0.2761230469, -1.1123046875, 0.9155273438, -0.4375, -0.6943359375, -0.5590820312, 0.2912597656, 0.2736816406, 0.1428222656, -0.0170440674, 1.6591796875, 0.1702880859, -0.1387939453, 0.609375, 0.2590332031, 0.5327148438, -0.35546875, 0.2680664062, 0.4877929688, 0.5805664062, -0.9887695312, -0.6977539062, 0.4172363281, 0.6206054688, 0.2200927734, 0.2646484375, -0.8002929688, 0.9111328125, -0.1888427734, -0.2570800781, 0.2844238281, -0.0498962402, -0.5126953125, -1.03515625, 0.2457275391, -0.0905761719, 0.5405273438, -1.158203125, 0.7119140625, -0.4196777344, 1.3740234375, -0.3762207031, -0.0880126953, 1.26953125, -0.0394897461, -0.630859375, 0.521484375, -0.95703125, -0.4929199219, 0.108215332, 1.0107421875, 0.3791503906, 0.3073730469, -0.28125, 0.6254882812, -0.4819335938, -0.5498046875, 0.291015625, 0.55078125, 0.4870605469, 0.6083984375, 0.5297851562, 1.009765625, -0.1768798828, -0.8715820312, -0.1245727539, 0.5805664062, -0.6684570312, 0.142578125, -0.6640625, 0.0335693359, -0.8041992188, -0.7861328125, -1.685546875, -0.1132202148, 0.1828613281, 0.3952636719, -0.0778808594, 0.0495605469, -1.060546875, -1.3232421875, 0.0887451172, -0.7783203125, 0.1127319336, -0.0001674891, -0.1009521484, -1.0849609375, 0.3942871094, -0.4018554688, -0.638671875, -0.3002929688, -0.6904296875, 0.8071289062, -0.0167999268, 0.7924804688, 1.70703125, -0.3295898438, -0.2858886719, -0.365234375, -0.6010742188, 0.5834960938, 0.4057617188, -0.0178222656, -0.1689453125, -0.1339111328, -1.5224609375, 0.1911621094, 0.2015380859, 0.0816040039, 0.5522460938, -0.4074707031, 0.1545410156, -0.0756835938, -0.7397460938, 1.0986328125, -0.3596191406, -0.943359375, -0.3012695312, -0.1176757812, 0.0251159668, -0.8950195312, -0.059173584, 1.5400390625, -0.5971679688, -0.5224609375, 1.15234375, -0.2177734375, 0.0646362305, -1.1953125, 0.5068359375, 0.1506347656, -0.3732910156, -0.5063476562, 0.2697753906, -0.3999023438, 0.0038890839, 0.1506347656, 0.5185546875, -0.4763183594, -0.1577148438, -0.3344726562, 1.111328125, -0.3637695312, -0.0045928955, 1.0703125, 0.7397460938, 0.1546630859, -0.6450195312, -1.375, 1.2265625, -0.505859375, -0.3801269531, -0.3254394531, -0.5288085938, -0.5131835938, 0.7119140625, -0.3298339844, 1.0537109375, -0.1666259766, 0.0012531281, -0.7036132812, -0.9096679688, -0.2414550781, -0.3010253906, 0.4304199219, 0.9975585938, 0.7392578125, -0.5483398438, -0.0240936279, 0.0475463867, -0.9672851562, 0.2644042969, 0.3657226562, 0.4833984375, -0.048034668, -0.884765625, -0.7065429688, -0.5190429688, 0.7387695312, -0.7607421875, 1.046875, -0.2919921875, -0.2386474609, 0.1114501953, -0.3269042969, -0.8647460938, 0.1617431641, 0.177734375, -0.7080078125, -1.12890625, -0.2043457031, 0.4775390625, 0.3181152344, -0.1186523438, 0.7797851562, -1.0263671875, 0.6215820312, 0.079284668, 0.2104492188, -0.2047119141, 0.5087890625, 0.8935546875, -1.3623046875, -0.4938964844, -0.748046875, -0.0859985352, 0.7133789062, -0.1056518555, 0.1281738281, -0.3840332031, 0.857421875, 0.6098632812, -0.33203125, 0.1961669922, -0.5361328125, -0.8022460938, 0.3193359375, -0.0144042969, -0.0708007812, -1.044921875, -1.36328125, 0.86328125, -0.0205535889, 0.0531005859, -0.2351074219, 0.3991699219, -0.583984375, -0.0348815918, -0.5419921875, -0.1073608398, -0.7436523438, 0.3024902344, 0.6796875, -0.2866210938, -0.2403564453, 0.3269042969, -0.5708007812, 0.7275390625, -0.1907958984, 0.0773925781, 0.4018554688, 0.8540039062, 0.1098022461, -0.390625, 0.1281738281, -0.01953125, -1.1494140625, -0.4689941406, 0.1398925781, 0.25390625, 0.3244628906, 0.2410888672, -0.3549804688, -0.4565429688, 0.3657226562, -0.255859375, 0.4895019531, -0.5927734375, 0.986328125, 0.0263519287, -0.1833496094, 0.1231079102, 0.0076560974, 0.4206542969, -0.4797363281, 1.0498046875, 0.0088195801, 0.0569152832, 1.1591796875, 1.2724609375, -0.564453125, -0.3471679688, -0.12109375, 0.2556152344, 0.3220214844, 0.3728027344, 0.0405273438, 0.2705078125, -1.265625, -0.0293731689, -0.6904296875, 0.3061523438, -0.1105957031, 0.259765625, 0.1907958984, -0.0802612305, -0.1655273438, 0.6137695312, 0.2937011719, -0.045715332, 0.4243164062, 0.5356445312, 0.2880859375, -0.4995117188, 0.4270019531, 1.109375, -0.2310791016, -0.2202148438, 0.2805175781, 0.6962890625, 0.4716796875, -0.40625, 0.7578125, 0.8012695312, 0.876953125, 0.032989502, -0.1987304688, -0.7841796875, 0.181640625, -0.2758789062, 0.2641601562, 0.3037109375, -0.8232421875, 0.3122558594, 0.1826171875, 0.15234375, -0.3215332031, 0.8271484375, 0.9321289062, 0.5424804688, 0.2408447266, -13.6953125, -0.0569458008, 0.1745605469, 0.1203613281, -0.4384765625, 0.1978759766, 0.0028800964, -0.169921875, -0.2578125, -0.1125488281, 0.1953125, -0.2849121094, -1.1201171875, -0.2976074219, -1.1611328125, -0.2043457031, -0.759765625, -1.1884765625, 0.1635742188, 0.0986328125, 0.8999023438, 1.4658203125, -0.7421875, -0.7470703125, 0.3923339844, -0.3564453125, 0.3232421875, 0.845703125, 0.5893554688, -0.50390625, -0.3718261719, -0.7543945312, -0.0206604004, 0.8247070312, 0.3571777344, -0.0604858398, 0.1727294922, -0.5043945312, -0.4326171875, 0.2717285156, 0.8671875, 0.2722167969, -0.2758789062, 0.1106567383, -0.7236328125, 0.1369628906, -0.1501464844, -0.7827148438, 0.7451171875, 0.3220214844, 0.685546875, 0.8110351562, -0.0308227539, 0.8891601562, -0.6020507812, -0.3671875, 0.4128417969, -0.96484375, -0.9165039062, 0.2802734375, 0.7104492188, 1.4599609375, 0.2127685547, -0.3146972656, 0.3762207031, -0.1530761719, 0.1528320312, -1.1884765625, -0.0409240723, -0.2318115234, 0.2451171875, -0.5385742188, -0.0364379883, 0.7807617188, 1.0048828125, 0.8447265625, -0.4816894531, 0.3896484375, 0.3696289062, 1.259765625, 0.0640258789, -1.787109375 ]
In professional audio, a digital mixing console (DMC) is a type of mixing console used to combine, route, and change the dynamics, equalization and other properties of multiple audio input signals, using digital signal processing rather than analog circuitry. The digital audio samples, which is the internal representation of the analog inputs, are summed to what is known as a master channel to produce a combined output. A professional digital mixing console is a dedicated desk or control surface produced exclusively for the task and is typically more robust in terms of user control, processing power and quality of audio effects. However, a computer can also perform the same function since it can mimic its interface, input and output. Uses Digital mixing consoles are typically used in recording studios, public address systems, sound reinforcement systems, broadcasting, television, and film post-production. Common sound system problems and solutions Most DMCs are expensive and sophisticated tools. The most common issue related to the DMC is the complex structure, which can be difficult to navigate without previous experience or knowledge of the system. The user usually requires a basic understanding of signal flow, audio terminology, and hardware implementation. Part of the solution to alleviate operator issues is to automate whenever possible. The advent of modern digital computer technology has now made it possible to install sound system components that will, to some extent, operate themselves. A digital mixing console can offset the lack of operator experience because it can store the settings programmed by an expert mixing engineer.
[ 0.0891113281, -1.1455078125, -0.3894042969, 0.9453125, -0.3461914062, 0.1276855469, -1.8798828125, -1.3046875, -0.1668701172, 0.1474609375, 0.0373840332, -0.2427978516, 0.0067520142, 0.6928710938, 0.0210723877, 0.3010253906, 0.1510009766, -0.0588378906, -0.1524658203, 0.1573486328, 0.4211425781, -0.6083984375, 0.6674804688, -0.2126464844, 0.2756347656, 0.1039428711, 0.26171875, 0.2622070312, 0.2475585938, -0.3645019531, 0.4099121094, 0.1139526367, -1.287109375, -0.3447265625, -0.3120117188, -0.2076416016, 0.3137207031, 0.9267578125, -0.8041992188, 0.166015625, 0.6254882812, -0.4204101562, 0.9892578125, 0.1303710938, -0.7885742188, -0.2451171875, 0.1346435547, -0.1395263672, -1.1611328125, 0.2880859375, -0.2443847656, -1.1640625, 0.0882568359, -0.1145019531, 0.0308380127, 0.8422851562, 0.3974609375, -1.44921875, 0.7587890625, -0.2138671875, -0.0606689453, 0.5717773438, -0.1470947266, 0.0844116211, -0.2034912109, 0.1682128906, -0.0030975342, 1.38671875, -0.7919921875, 0.008644104, 0.955078125, 0.5893554688, 0.5512695312, -0.5258789062, 0.7299804688, -0.2631835938, 0.020614624, 0.2199707031, -0.0022621155, 0.4228515625, 0.4904785156, -0.8247070312, 0.1026611328, -0.8872070312, -0.8364257812, 0.7836914062, -0.0166473389, -0.7729492188, -0.3732910156, 1.5625, 0.1178588867, -0.1207275391, -0.9326171875, -0.6982421875, -0.3049316406, -0.2022705078, -0.5288085938, 0.3325195312, -0.0628051758, -0.5327148438, -0.4555664062, -0.1884765625, 0.3322753906, 0.0295410156, 0.8012695312, 0.6030273438, 0.26953125, -0.6953125, 0.1716308594, 0.3217773438, 0.4956054688, 0.4182128906, 0.1212768555, -0.2612304688, 0.2219238281, 0.2509765625, 0.7329101562, -0.673828125, 0.1674804688, -0.0479736328, -0.482421875, -0.5288085938, -0.2570800781, -0.8139648438, 0.9892578125, 0.042755127, 0.2133789062, -0.9047851562, -0.5737304688, 0.90234375, 1.1142578125, 0.6440429688, 0.0024394989, -0.1671142578, 0.4890136719, -0.8911132812, -1.2099609375, 0.2854003906, 0.1810302734, -0.3002929688, -0.8046875, -0.9086914062, 1.384765625, -0.6044921875, -0.0406799316, 0.9614257812, 0.6279296875, 0.0083618164, -1.234375, 0.5771484375, -0.2824707031, 0.1735839844, -0.1655273438, 0.1408691406, -0.4453125, -0.4938964844, -0.2071533203, -0.3374023438, -0.2888183594, -1.22265625, -0.517578125, -1.15234375, -0.796875, 0.6333007812, 0.3679199219, 0.7133789062, -0.669921875, -0.7172851562, -0.2805175781, -0.4694824219, -0.124206543, -0.4685058594, 0.5434570312, -0.3576660156, -0.533203125, -0.3071289062, 0.2783203125, 0.3549804688, 1.25390625, -0.4169921875, 0.86328125, -1.1181640625, -0.7895507812, -0.3762207031, 0.0458679199, -0.008102417, -0.5927734375, 0.7084960938, -0.3308105469, 0.7275390625, -0.0545959473, -0.4230957031, -0.6572265625, 0.8774414062, 0.1853027344, -0.5463867188, -0.4699707031, 0.5205078125, -0.0132827759, 0.5180664062, 0.27734375, 0.3288574219, -0.1329345703, -1.3544921875, -0.1755371094, -0.055847168, 0.3933105469, -0.5532226562, 0.224609375, -0.0328674316, -0.0589294434, -0.2565917969, 0.595703125, 0.2917480469, -0.6201171875, 0.3471679688, 0.1716308594, -0.1491699219, 0.2546386719, 0.9291992188, 0.4204101562, 0.2463378906, -0.0486755371, -0.2319335938, 0.4682617188, -0.4719238281, 0.1306152344, -0.4782714844, 0.2006835938, -0.1436767578, 0.4311523438, 0.12890625, -0.2097167969, 0.5693359375, -0.3974609375, -0.3288574219, 0.5903320312, -1.080078125, -0.7216796875, -0.6323242188, 0.5122070312, 0.646484375, -0.185546875, -0.1159057617, 0.7724609375, 0.2568359375, 0.1134643555, -0.2492675781, 0.7622070312, 0.330078125, -0.6196289062, -0.1676025391, 1.0009765625, 0.859375, -0.357421875, -0.2778320312, -0.0821533203, -0.0850219727, 1.29296875, 0.3640136719, -0.3879394531, 0.4790039062, -0.0420532227, 0.1389160156, 0.3850097656, -0.092956543, 0.4755859375, -0.7724609375, 0.2561035156, -0.4172363281, 0.0031375885, 0.1997070312, -0.0725708008, -0.7021484375, 0.3317871094, -0.4245605469, -0.4086914062, 0.0731201172, 0.5766601562, -0.1516113281, -0.1000976562, -0.0424804688, -0.50390625, 0.1522216797, -0.7250976562, -0.21484375, 0.3784179688, 0.7583007812, 0.630859375, 0.9858398438, 0.4543457031, -0.7861328125, -0.177734375, -0.3647460938, 0.1072998047, -0.1079101562, 0.3273925781, 0.6977539062, -0.3591308594, -0.3813476562, 0.8466796875, 1.13671875, 0.1864013672, 0.1346435547, 0.8232421875, 0.0435180664, -0.3767089844, -0.6293945312, -0.5859375, 0.66796875, -0.1811523438, -0.5629882812, -0.2976074219, 2.162109375, -1.271484375, 0.4719238281, -1.0087890625, -0.8203125, 0.8383789062, 0.6591796875, 0.5068359375, 0.630859375, 0.9086914062, 0.2814941406, 0.2437744141, 0.8051757812, -0.859375, -1.0498046875, -0.3735351562, 0.2758789062, 0.0686035156, -0.369140625, 0.8793945312, -0.1395263672, -1.06640625, -0.3330078125, -0.9370117188, -1.240234375, 0.4975585938, -0.6997070312, -0.0155487061, -1.001953125, -0.4116210938, -0.4890136719, 0.1956787109, 0.3391113281, 0.3996582031, 0.1876220703, 1.1767578125, -0.0868530273, 0.5600585938, 0.7299804688, 0.4724121094, 0.4851074219, -0.2337646484, -0.0011777878, 0.1226806641, 0.806640625, 0.1844482422, 0.4890136719, 0.5439453125, 0.9526367188, -1.154296875, -0.4272460938, -0.1362304688, 0.6533203125, -0.3703613281, 0.5576171875, -0.1029663086, -1.02734375, -0.5600585938, -0.1773681641, -0.7255859375, 0.8549804688, 0.4580078125, -0.39453125, -0.2751464844, -0.8520507812, 0.0754394531, 0.0179901123, 0.1010742188, -0.5625, 0.3508300781, -0.3403320312, 0.0603027344, 0.0085906982, -1.349609375, 0.306640625, -1.1376953125, 0.1539306641, -0.3698730469, -1.7236328125, 1.48828125, -0.2425537109, -0.2191162109, 0.5336914062, 1.173828125, 0.0235290527, 0.3522949219, 0.2265625, 0.3227539062, -0.1646728516, -1.4794921875, -0.5659179688, -0.7241210938, -0.3068847656, 1.33203125, 0.0718383789, -0.0198669434, -0.4645996094, -0.0132522583, 0.8325195312, 0.2333984375, 0.2512207031, -1.201171875, -0.3635253906, -0.1457519531, -0.1204833984, -0.1118164062, 0.6875, 0.1463623047, 0.9672851562, 0.7075195312, 0.619140625, -0.7197265625, 0.0711669922, 0.3156738281, 0.0027942657, 0.1665039062, -0.7250976562, -0.345703125, -0.2768554688, 0.537109375, 0.2321777344, -0.3625488281, 0.2639160156, 0.1000366211, -0.4721679688, 0.7783203125, 0.0000393987, 0.4936523438, 0.8901367188, -0.6469726562, 0.1196289062, -0.0239105225, -0.3068847656, 0.30078125, -0.3110351562, 0.6103515625, -0.3742675781, -0.6518554688, -0.7587890625, 0.9291992188, 0.2309570312, 0.1948242188, 0.1574707031, 0.1867675781, 1.533203125, 1.15234375, 0.16015625, 0.2279052734, 0.6865234375, -0.2900390625, -0.4089355469, 0.8383789062, -0.5498046875, -0.7055664062, -0.0014419556, 0.0953979492, -0.76171875, 0.4731445312, 1.0595703125, -0.2150878906, -0.271484375, -0.3029785156, -0.4458007812, 0.0473937988, -1.3251953125, 0.7065429688, -0.8271484375, 0.5639648438, -0.4934082031, -0.3547363281, 0.1649169922, -0.3010253906, -0.0960083008, 0.3779296875, 0.2221679688, -0.3657226562, -1.36328125, 0.3168945312, -0.2471923828, -0.7670898438, -0.83984375, -0.859375, -1.1259765625, 0.4887695312, -0.326171875, -0.3610839844, -0.8896484375, -0.4587402344, 1.2275390625, 0.1644287109, -0.3151855469, 0.1461181641, -1.62890625, -0.0083007812, -0.9321289062, 0.27734375, -0.232421875, -0.1005859375, 0.3127441406, 0.3911132812, 0.2272949219, -0.1604003906, -0.7270507812, -0.2053222656, 0.0909423828, -1.3486328125, -0.5478515625, -0.2425537109, -0.2680664062, 0.0913696289, 0.6538085938, 0.0158996582, 0.7495117188, 0.5712890625, 0.6557617188, 0.0574645996, -0.8037109375, 1.02734375, -0.2966308594, 0.5834960938, -0.1027832031, 0.0274810791, -0.2038574219, 0.9326171875, 0.5688476562, -0.7827148438, -0.3955078125, -0.2436523438, 0.073059082, -0.2158203125, -0.3671875, -0.0179901123, 0.9672851562, 0.1286621094, -0.5600585938, -0.4382324219, -0.1663818359, 0.4313964844, -0.4855957031, -0.3979492188, 0.3286132812, -0.2880859375, -0.2739257812, -0.4038085938, -0.2531738281, 0.4060058594, 0.0844116211, 0.0049552917, -0.1186523438, -0.513671875, 0.6953125, -0.3735351562, 0.5805664062, 0.1489257812, -0.2893066406, -0.841796875, 0.2305908203, 0.1323242188, 0.3481445312, -0.345703125, 0.7626953125, -0.3999023438, -0.4916992188, 0.2336425781, -0.0935058594, -0.1878662109, -0.8662109375, 0.2917480469, 0.4645996094, 0.1520996094, -0.671875, -1.208984375, 1.599609375, -0.3054199219, 0.216796875, 0.5073242188, -0.4943847656, 0.0348510742, 0.0361022949, 0.2895507812, 0.058380127, -0.9331054688, -0.6796875, -0.0457763672, -0.2017822266, 0.1717529297, -0.3088378906, 0.0181121826, 0.6552734375, -0.8056640625, -0.2387695312, -0.2663574219, 0.6611328125, -0.5756835938, 0.9462890625, -0.0925292969, 0.3706054688, -1.541015625, 0.17578125, 0.6499023438, 0.4951171875, 0.5791015625, 0.3859863281, -0.2971191406, -0.2783203125, -0.1883544922, -0.8525390625, -0.7373046875, -0.0524597168, 0.0252838135, -0.8369140625, -0.092956543, 0.181640625, 0.1224975586, 0.0725708008, -0.0837402344, 0.5043945312, -0.0176696777, -1.0888671875, 0.3601074219, -0.634765625, -1.0595703125, 1.4130859375, -0.119140625, -0.0935058594, -0.6015625, -0.071105957, 0.3959960938, 0.2658691406, 0.4243164062, 0.1884765625, 0.4436035156, -0.619140625, 0.0053367615, -0.4213867188, -0.4436035156, 0.7978515625, -0.1938476562, 0.2393798828, 0.8369140625, -0.2570800781, 0.75, -0.6420898438, 0.3212890625, -0.4282226562, 0.5166015625, -0.5078125, -0.5727539062, 0.3610839844, -0.5278320312, 0.2443847656, 0.6049804688, -0.625, 0.5771484375, -0.6791992188, 0.0099334717, -0.734375, -0.8525390625, 0.5146484375, -0.0382080078, 0.9565429688, -0.3515625, -0.2971191406, -0.3891601562, -0.5810546875, -1.42578125, -0.0623474121, 0.7646484375, 0.279296875, -0.2116699219, -0.3200683594, -0.9135742188, -0.0503845215, 0.1138305664, 0.1253662109, 0.7475585938, 0.1111450195, -1.0263671875, 0.2919921875, -1.443359375, 0.3479003906, -0.3818359375, -0.0212097168, -0.1256103516, 1.04296875, 0.7856445312, 0.7485351562, -0.5190429688, 0.0646362305, -0.6293945312, -0.830078125, -0.9819335938, 0.2419433594, -0.1973876953, 0.3959960938, 0.0968017578, -0.3588867188, 0.5537109375, 0.6450195312, 0.0540771484, 0.8266601562, 0.9711914062, 0.2585449219, 1.09375, -0.3002929688, -0.058807373, 0.3056640625, -0.3513183594, 0.6147460938, 0.533203125, -0.1909179688, -0.6943359375, 0.6635742188, 0.2436523438, 0.1029052734, 0.6430664062, -0.1977539062, -1.029296875, 0.1964111328, 0.603515625, -0.1459960938, 0.5825195312, -0.1584472656, 0.2318115234, 0.8989257812, 0.5708007812, -0.28515625, -0.1052246094, -0.1853027344, -0.3935546875, 0.6020507812, -0.0247955322, -0.7729492188, 1.298828125, 0.263671875, 0.4155273438, -0.7631835938, 0.4282226562, -0.020324707, 0.1656494141, -1.583984375, 1.2255859375, -0.0278778076, -0.576171875, 0.4865722656, 1.021484375, 0.0954589844, 0.5209960938, 0.4038085938, -0.1384277344, -0.4965820312, -0.2458496094, 0.0449829102, 0.708984375, 0.275390625, 0.84375, -0.4587402344, 0.4384765625, 0.0979003906, 0.583984375, 0.3576660156, 0.1881103516, -0.3869628906, 0.1158447266, -0.4985351562, -0.1774902344, -0.041595459, 0.6337890625, -0.7465820312, 0.0667114258, -0.4653320312, 0.2484130859, -0.5893554688, -0.0331726074, 0.2083740234, -0.3833007812, 0.1647949219, -0.3845214844, -0.1485595703, 0.283203125, 0.8491210938, 0.3581542969, 0.5249023438, 0.0422973633, -0.0321350098, -0.1329345703, -0.37109375, -0.3298339844, 0.0218658447, -0.0950927734, 0.66796875, -1.810546875, -0.5146484375, 0.0213775635, -0.0794677734, -0.57421875, 0.1008911133, -0.1214599609, -0.5649414062, -0.1045532227, 0.0717163086, 0.0093917847, -0.66015625, 0.3393554688, 1.3173828125, -0.3098144531, 0.2224121094, -0.71875, 0.4733886719, 0.6635742188, -0.4201660156, 1.666015625, 0.1416015625, 0.0049629211, -0.1845703125, -0.0775756836, 0.3767089844, -0.2729492188, -0.1128540039, 0.0991210938, 0.7749023438, -0.1625976562, 0.1468505859, -1.640625, -0.2595214844, -0.1039428711, -0.3786621094, -0.0809936523, -0.2109375, -0.0101318359, -0.0877685547, -1.158203125, 0.0155639648, -0.0027618408, -0.2526855469, 0.0028591156, -0.1141357422, -0.0202636719, 0.3029785156, -0.1639404297, 0.279296875, -0.76953125, 0.0705566406, -1.431640625, 0.5375976562, 0.1700439453, -0.533203125, 1.0546875, -0.69140625, 0.0025272369, 0.3059082031, 0.4172363281, -0.5424804688, -0.2875976562, -0.7109375, 1.0732421875, 0.4140625, 0.55078125, -0.4484863281, 0.9653320312, -0.6186523438, -0.3449707031, -0.5908203125, -0.5590820312, 0.4616699219, -0.5356445312, 0.3669433594, 0.4052734375, -0.8608398438, -0.291015625, 0.2227783203, 0.263671875, 0.568359375, 1.0458984375, 0.0234680176, -1.0458984375, 0.1826171875, -0.533203125, -0.126953125, 0.7749023438, 1.1708984375, 0.3645019531, 0.2435302734, 0.259765625, -0.59375, -0.3432617188, -0.9672851562, 0.1534423828, 0.5620117188, -0.9130859375, 0.52734375, -1.27734375, -0.7885742188, -0.2578125, 0.255859375, 1.390625, -0.8251953125, -0.2800292969, -0.9326171875, -0.2895507812, 0.3566894531, -0.8374023438, -0.1267089844, 0.1453857422, -0.4965820312, -0.1761474609, -0.619140625, -0.5678710938, 0.1315917969, 1.2958984375, 0.1878662109, 0.4765625, 0.1173095703, 0.2380371094, -0.0436096191, -0.4272460938, -0.3588867188, -0.5849609375, 0.120300293, 0.0532836914, -0.4992675781, 0.2827148438, 0.1993408203, 0.6606445312, 0.1135864258, 1.26171875, -0.1112670898, -0.8354492188, 0.4548339844, -14.8359375, -0.2900390625, -1.251953125, -0.8403320312, -0.1368408203, 0.1987304688, 0.1656494141, 0.1059570312, -0.0680541992, 0.2365722656, -0.2181396484, 0.6069335938, -0.2159423828, 0.265625, 0.341796875, 0.3508300781, -1.150390625, 0.6362304688, 0.2338867188, 0.0483703613, 0.3225097656, 0.9296875, -0.4921875, -0.7817382812, -1.03515625, -0.6264648438, 0.703125, -0.051940918, 0.2437744141, 0.4135742188, -0.2502441406, 0.0994873047, -0.693359375, 0.875, 0.541015625, -1.4609375, 1.0595703125, -1.03515625, 0.4106445312, -0.2114257812, 0.9873046875, -0.5258789062, -0.6596679688, -0.2271728516, 0.1381835938, -0.193359375, 0.1268310547, -0.2397460938, -1.0029296875, -0.4152832031, 0.4479980469, 0.4064941406, 0.0449523926, -0.3090820312, -0.6899414062, -0.41796875, 0.0466918945, 0.3696289062, -0.5932617188, -0.052947998, 0.8657226562, 0.2746582031, -0.7568359375, 0.4201660156, 0.0414428711, -0.3828125, -0.5297851562, -0.3659667969, -0.41796875, -0.0376281738, -0.0243835449, -1.2509765625, 0.4389648438, 0.1051025391, 0.5068359375, 0.673828125, -1.21875, 0.2687988281, -0.9150390625, -0.3193359375, 0.1801757812, 0.6772460938 ]
After everything is properly adjusted, that set-up is assigned a name and stored in the memory. Afterwards, a less knowledgeable operator can simply select that setting on their console or computer. One can easily program many different preset configurations or "snapshots," into the mixing console. Default configurations that are included with the DMC are known as presets. Once a stored setting is recalled, the operator can still make manual volume adjustments, etc., without affecting the stored program. In other words, they can change a lot of stuff and all one has to do is hit the recall and the mixer automatically returns to all of the correct start-up settings. Another pitfall in terms of live applications is improper location of the equipment. No sound operator can properly adjust a live sound system unless he can hear exactly what the majority of the audience hears, yet for issues related to space, appearance and security, one cannot always locate their sound control equipment in the middle of their auditorium. This is even more of a problem if the auditorium is a multi-use building that is often converted for other events. A digital mixer may solve this problem: a sound operator can operate the whole sound system from a laptop computer. With the proper set-up, it can even be done by a wireless tablet for increased mobility. In fact, many of the digital mixer's functions are easier to operate from a computer screen than the actual mixing console. Another advantage of DMCs is the abundance of control features that it provides for each input channel.
[ 0.3571777344, -0.681640625, -0.1248168945, 1.26171875, -0.5166015625, -0.853515625, -1.380859375, -1.4775390625, -0.1137084961, -0.1712646484, 0.6459960938, -0.3061523438, 0.2371826172, 0.5239257812, 0.5961914062, 0.9038085938, 0.1925048828, 0.6684570312, -0.3806152344, 0.3286132812, 0.2802734375, -0.7172851562, 0.7353515625, -0.4267578125, 0.3076171875, -0.6079101562, 0.634765625, -0.1831054688, 0.6689453125, -0.3754882812, 0.8413085938, 0.0628662109, -1.63671875, 0.5463867188, 0.2841796875, 0.2398681641, 0.6865234375, 0.1472167969, -1.1904296875, -0.061706543, 0.6235351562, -0.6904296875, 0.29296875, 0.3120117188, -0.39453125, 0.0718994141, 0.0397644043, -0.0886230469, -1.2158203125, -0.3388671875, 0.9970703125, -1.59375, -0.1519775391, -0.4128417969, 0.4152832031, 0.7197265625, -0.0148620605, -1.9189453125, 1.302734375, -0.3513183594, -0.1320800781, 0.3010253906, -0.0962524414, -0.5151367188, 0.088684082, 0.7548828125, -0.2253417969, 1.8232421875, -0.1962890625, -0.2692871094, 1.0361328125, 0.21875, 0.2163085938, -0.0972900391, 0.8002929688, -0.2319335938, 0.0720214844, 0.9252929688, 0.2587890625, -0.1566162109, 0.03125, -0.1477050781, -0.1157836914, -0.5595703125, 0.2438964844, 0.1499023438, -0.0952148438, -1.18359375, 0.0337524414, 1.23046875, 0.045135498, -0.466796875, -0.3540039062, -0.7270507812, -0.6909179688, -0.5478515625, -0.4851074219, 0.114440918, -0.1597900391, 0.1824951172, -0.3989257812, -1.087890625, 0.7470703125, -0.1600341797, 0.3828125, 0.0411987305, -0.1112060547, -1.0361328125, 0.6049804688, -0.2298583984, 0.3049316406, 0.047454834, -0.2237548828, -0.4572753906, -0.112121582, 0.787109375, 0.4443359375, -0.5581054688, 0.2795410156, 0.3669433594, -0.4406738281, 0.1246337891, 0.283203125, -0.5053710938, 0.375, 0.3247070312, 0.0147628784, -0.5576171875, 0.1020507812, 0.6313476562, 0.5551757812, 0.5502929688, -0.1953125, -0.078125, 0.7036132812, -0.85546875, -1.4267578125, 0.3166503906, 0.4702148438, -0.0816650391, -0.9008789062, -0.0474853516, 1.0478515625, -0.0653686523, 0.26171875, 0.2819824219, 0.2371826172, -0.0393371582, -0.5854492188, 0.3713378906, -0.4348144531, 0.4470214844, 0.1273193359, -0.1550292969, -0.8227539062, -0.4821777344, -0.6147460938, -0.8686523438, -0.2437744141, 0.1502685547, -0.7827148438, -0.625, -0.490234375, 1.224609375, -0.1649169922, 0.1333007812, -0.845703125, 0.4973144531, -0.69140625, -0.2229003906, -0.7700195312, -0.6240234375, 0.5434570312, -0.8276367188, -0.1785888672, -0.646484375, 0.2485351562, 0.0485229492, 0.5556640625, -0.4033203125, 0.5668945312, -1.4970703125, 0.0715332031, -0.0029964447, -0.0492858887, 0.3449707031, -0.6791992188, 0.1390380859, -0.8759765625, 0.578125, 0.3898925781, -0.529296875, -0.8828125, 0.66015625, 0.998046875, -0.5776367188, -0.2197265625, 0.2907714844, 0.53515625, 1.1201171875, -0.0389404297, 0.31640625, -0.3947753906, -1.3681640625, -0.1986083984, 0.5219726562, -0.3537597656, -0.0950317383, -0.2248535156, 0.4409179688, 0.8784179688, 0.322265625, 0.5590820312, -0.0372924805, -1.072265625, 0.0875854492, 0.3259277344, -0.2348632812, 0.201171875, 0.7768554688, 0.5634765625, 0.5009765625, 0.4050292969, -0.1837158203, 0.1066894531, -0.6796875, 0.5439453125, -0.2039794922, 0.2335205078, -0.3166503906, 0.513671875, 0.5600585938, -0.388671875, 0.7514648438, 0.1071777344, -0.7265625, -0.0729370117, -0.3493652344, -0.9189453125, -0.1807861328, 0.6801757812, -0.2880859375, -0.0801391602, -0.7998046875, 0.5346679688, -0.4282226562, 0.7338867188, -0.3837890625, 0.8442382812, -0.3254394531, -0.7783203125, -0.1046142578, 0.7299804688, 1.607421875, -0.2373046875, -1.0849609375, -0.4252929688, 0.2290039062, 0.8002929688, 0.5327148438, -0.3657226562, 0.6459960938, -0.4309082031, 0.4240722656, 0.5366210938, -0.1584472656, 0.1947021484, -1.353515625, 0.6650390625, 0.224609375, 0.0363769531, -0.0479736328, -0.3618164062, -0.6767578125, 0.6254882812, -0.5454101562, 0.3015136719, -0.3581542969, 0.8452148438, 0.044708252, 0.4240722656, 0.0451049805, -0.5092773438, 0.6586914062, -0.1527099609, -0.1304931641, 0.6762695312, -0.453125, 0.7587890625, 1.455078125, -0.50390625, -0.7456054688, -0.0689697266, -0.7548828125, -0.1907958984, 0.0815429688, 0.8061523438, -0.1080932617, 0.0752563477, -0.61328125, 0.1915283203, 0.728515625, 0.3269042969, 0.2320556641, 0.7524414062, 0.2232666016, -0.544921875, -0.591796875, -0.2309570312, 0.607421875, -0.4526367188, -0.9365234375, 0.3818359375, 2.634765625, -0.505859375, 1.0556640625, -1.1240234375, -0.4377441406, 0.6865234375, 0.5131835938, 0.509765625, 0.3923339844, 0.8793945312, -0.5048828125, 0.5952148438, -0.0190429688, -0.9560546875, -0.8159179688, -1.4990234375, 0.453125, 0.4326171875, -0.6083984375, 0.80078125, 0.3078613281, -1.130859375, -0.5874023438, -0.7719726562, -0.8154296875, 0.6459960938, -0.4985351562, -0.1766357422, -1.716796875, -0.7485351562, -0.5659179688, 0.4650878906, -0.2644042969, 0.1213378906, -0.5590820312, 0.9028320312, -0.2481689453, 0.2778320312, 1.0185546875, 0.7866210938, -0.1253662109, -0.2951660156, -0.2088623047, -0.3503417969, 0.5825195312, -0.4660644531, 0.6005859375, 0.0853881836, 0.5415039062, -1.53125, -0.2839355469, -0.0569458008, 0.5751953125, -0.1976318359, 0.0043945312, 0.1540527344, -0.7470703125, -0.3425292969, -0.4738769531, -0.2939453125, 0.8388671875, 0.7543945312, -0.3857421875, -0.4975585938, -1.1796875, -0.5078125, 0.3337402344, -0.29296875, -0.4885253906, 0.9477539062, -0.1729736328, -0.2010498047, 0.0943603516, -1.2939453125, -0.0277557373, -1.369140625, 0.4140625, -0.4404296875, -1.7548828125, 1.0029296875, -0.1672363281, -0.1212158203, 0.5361328125, 1.3388671875, 0.0299072266, 0.5361328125, 0.6352539062, 0.0571289062, 0.732421875, -0.5493164062, -0.1513671875, -0.4497070312, -0.6064453125, 1.9150390625, 0.1890869141, -0.2524414062, -0.3659667969, -0.2449951172, 0.5537109375, -0.2147216797, -0.1375732422, -0.9965820312, -0.3032226562, 0.5947265625, -0.7280273438, -0.0891113281, 0.5209960938, -0.3337402344, 1.1943359375, 0.2731933594, 0.3745117188, -0.2458496094, -0.048248291, 0.0079650879, -0.0883789062, 0.5888671875, -0.4260253906, -0.3991699219, 0.5073242188, 0.0241851807, 0.3139648438, -0.427734375, 0.0120620728, 0.7885742188, -0.9091796875, 0.8408203125, -0.5927734375, 0.447265625, 0.990234375, -0.5068359375, 0.1822509766, -0.7578125, -0.2452392578, -0.065612793, 0.2135009766, 0.7099609375, -0.611328125, -0.8647460938, 0.1574707031, 1.576171875, 0.1940917969, 0.3818359375, 0.5986328125, 0.6821289062, 1.0048828125, 1.1982421875, -0.057220459, 0.0437316895, 0.6875, -0.6489257812, -0.0089797974, 1.1533203125, -0.3889160156, 0.0287322998, 0.2727050781, 0.1550292969, -0.4997558594, -0.1589355469, 0.9096679688, -0.7778320312, -0.0881347656, 0.1107177734, 0.1547851562, 0.0347290039, -1.021484375, 0.263671875, -0.716796875, 0.2392578125, -0.5703125, -0.3818359375, -0.1457519531, -0.3332519531, 0.021987915, 0.5053710938, 0.4477539062, -0.9296875, -1.3779296875, 0.8374023438, -0.6606445312, -1.0888671875, -0.0857543945, -0.4152832031, -0.8774414062, 0.4787597656, -0.6489257812, -0.4245605469, -0.9555664062, -1.00390625, 1.072265625, 0.33984375, 0.7124023438, 0.1644287109, -1.228515625, -0.7060546875, -0.6440429688, 0.0662841797, -0.2064208984, -0.0869140625, -0.1706542969, 0.5825195312, -0.2915039062, -0.0726928711, -0.1977539062, 0.3227539062, -0.1139526367, -1.12890625, -0.7661132812, -0.3933105469, -0.1970214844, -0.2778320312, 0.1418457031, 0.0961303711, 1.2861328125, 0.9672851562, 1.33984375, 0.6025390625, -0.2622070312, 0.6049804688, 0.2332763672, 0.4692382812, 0.7265625, 0.2810058594, -1.0224609375, 0.6586914062, -0.4116210938, -0.908203125, -0.5473632812, -0.0464172363, 0.4553222656, -0.3601074219, -0.3542480469, 0.0839233398, 0.7900390625, 0.1229248047, -1.6416015625, -0.5385742188, 0.2236328125, 0.2919921875, -0.2551269531, 0.2595214844, -0.3405761719, -1.2158203125, -0.7016601562, -1.0048828125, -0.3090820312, 0.0900878906, -0.0911865234, 0.2917480469, 0.3293457031, -0.505859375, 0.744140625, -0.0329284668, 1.1201171875, -0.1346435547, -0.2457275391, -1.0595703125, 0.5498046875, 0.1181030273, -0.3725585938, -0.1771240234, 0.4372558594, 0.3154296875, -0.388671875, 0.5263671875, 0.0601501465, -0.3366699219, -1.0791015625, -0.2141113281, 0.91015625, -0.3435058594, -0.0696411133, -0.7021484375, 1.8955078125, -0.1832275391, 0.1857910156, 0.6904296875, -0.5532226562, 0.7080078125, 0.3713378906, -0.2595214844, -0.2055664062, -1.3701171875, -0.5146484375, 0.5546875, 0.0930786133, 0.2222900391, -0.7119140625, -0.59375, 0.3237304688, -0.8764648438, 0.3684082031, -0.0334777832, 0.4099121094, -0.4748535156, 0.7373046875, 0.2122802734, 0.2976074219, -0.6694335938, 0.1239624023, 0.0555725098, 0.0653686523, -0.0448608398, 0.2446289062, -0.2919921875, -0.0070457458, -0.4645996094, -1.1591796875, -0.3356933594, -0.1166381836, 0.4689941406, -0.8735351562, -0.72265625, -0.2293701172, -0.0286254883, 0.0033550262, -0.44140625, 1.1328125, -0.2062988281, -0.4626464844, 0.2354736328, -0.4516601562, -0.7172851562, 0.9926757812, -0.5463867188, 0.2038574219, -0.6606445312, 0.0319213867, -0.1098022461, 0.9287109375, -0.8798828125, 0.5102539062, 0.3012695312, -0.3525390625, 0.2305908203, 0.0309143066, -0.2231445312, 1.5, 0.4682617188, 0.1208496094, -0.1351318359, 0.0744628906, 0.4543457031, -0.5639648438, 0.5151367188, -0.4787597656, 0.462890625, -0.6640625, -1.130859375, 0.7348632812, -0.1495361328, 0.1071166992, 0.5009765625, 0.2521972656, 0.1821289062, -1.1015625, 0.1860351562, -0.5971679688, -1.013671875, 0.2037353516, 0.3603515625, 1.408203125, -0.1811523438, -0.4516601562, 0.0673828125, -0.8662109375, -0.8295898438, 0.0880126953, 0.3149414062, 0.5258789062, -0.5649414062, -0.3669433594, -0.4196777344, 0.4641113281, 0.7221679688, 0.6162109375, 0.2897949219, 0.0494689941, -0.8232421875, 0.58984375, -1.689453125, 0.2052001953, -0.1187133789, -0.1568603516, -0.6420898438, 0.8403320312, -0.0822143555, 0.697265625, -0.5751953125, 0.5639648438, -0.3273925781, -1.16796875, -0.0855102539, 0.8911132812, -0.91015625, 0.5278320312, 0.4340820312, -0.0861206055, 1.2216796875, 0.4309082031, -0.353515625, 0.7153320312, 0.3046875, 0.1099853516, 0.529296875, -0.2412109375, 0.1102905273, -0.058807373, -0.4716796875, 0.859375, 0.4072265625, 0.3178710938, -0.5258789062, 0.0557556152, 0.2919921875, 0.3276367188, 1.1220703125, -0.1862792969, -0.7124023438, -0.146484375, 0.3894042969, -0.5302734375, 0.2800292969, -0.5932617188, 0.5786132812, 0.5864257812, 0.5649414062, -0.2775878906, -0.6118164062, -0.6938476562, -0.4780273438, 0.9443359375, 0.4558105469, -0.4685058594, 1.03515625, -0.5034179688, 0.2136230469, -0.5043945312, 0.5043945312, 0.4182128906, 0.1221923828, -1.1259765625, 0.7192382812, -0.1401367188, -0.9345703125, 0.8095703125, 0.7827148438, 0.53515625, 0.3654785156, 0.626953125, -0.1207885742, -0.3210449219, -0.7221679688, 0.1044921875, 0.3020019531, 0.2362060547, 0.7963867188, -0.6801757812, -0.2690429688, -0.4611816406, 0.0190124512, 0.77734375, 0.4287109375, -1.0263671875, 0.1739501953, -0.837890625, 0.5102539062, 0.5361328125, 0.9213867188, -0.6918945312, 0.3464355469, -0.9345703125, 0.1215209961, -0.5751953125, -0.2215576172, 0.1612548828, -0.2685546875, 0.0055770874, -0.4892578125, 0.2973632812, -0.5502929688, 0.751953125, 0.958984375, 0.1926269531, 0.0336914062, 0.002620697, -0.1217651367, 0.2081298828, -0.0867919922, -0.1412353516, 1.0078125, 0.0726318359, -1.755859375, -1.220703125, -0.6005859375, -0.0804443359, -0.7026367188, -0.063293457, -0.1040649414, 0.0744628906, 0.3408203125, -0.7919921875, -0.5068359375, -0.240234375, 0.4328613281, 1.8740234375, -0.603515625, -0.0830688477, -0.4792480469, -0.0194702148, 0.8076171875, -0.3217773438, 2.412109375, -0.1773681641, 0.8764648438, -0.8505859375, -0.3576660156, 0.3837890625, -0.1156616211, -0.0475463867, -0.1574707031, 0.4526367188, 0.3054199219, 0.4606933594, -1.1142578125, -0.8056640625, -0.4897460938, -0.0894775391, 0.3342285156, -0.2644042969, -0.3571777344, -0.6420898438, -1.58984375, -0.0168914795, 0.390625, -0.5532226562, 0.0698242188, 0.2131347656, -0.0330505371, -0.5302734375, -0.5141601562, 0.56640625, -0.4458007812, -0.5546875, -1.0869140625, 0.5146484375, -0.0073852539, -0.2768554688, 1.0048828125, -0.8735351562, -0.1057739258, 0.1029052734, 0.7387695312, -1.0986328125, -1.1357421875, -1.021484375, 0.8701171875, 0.1550292969, 0.5991210938, -0.1873779297, 0.0731201172, -0.6430664062, -0.0202178955, -0.8725585938, -0.771484375, 0.5556640625, -0.6313476562, 0.1859130859, -0.2435302734, 0.1412353516, -0.59375, 0.3537597656, -0.7504882812, 0.118347168, 0.90625, -0.5151367188, -0.4111328125, 0.0979003906, -0.3598632812, -0.2666015625, 0.9091796875, 0.7250976562, 0.1363525391, -0.4443359375, -0.0144500732, -0.5659179688, 0.2766113281, -1.2255859375, -0.1722412109, 0.2937011719, -1.578125, 0.9262695312, -1.0283203125, -0.6928710938, -0.4543457031, 0.5043945312, 1.5146484375, -1.1376953125, 0.2006835938, -0.4819335938, -0.4331054688, -0.0003073215, 0.1839599609, 0.0916748047, 0.3439941406, -0.1538085938, -0.697265625, -0.4572753906, -0.1343994141, 0.2768554688, 1.4541015625, 0.392578125, 0.5405273438, 0.2595214844, 0.4580078125, -0.1695556641, -1.3525390625, 0.3061523438, -0.48046875, 0.0555114746, 0.5522460938, -0.3024902344, 0.4372558594, 0.2282714844, 1.484375, -0.0543823242, 1.30859375, -0.8784179688, 0.5776367188, 0.5620117188, -13.125, 0.2702636719, -1.8369140625, -0.830078125, 0.1206054688, 0.447265625, 0.2836914062, -0.1228637695, -0.2492675781, 0.6508789062, 0.3869628906, -0.0931396484, -0.9331054688, 0.3117675781, -0.3583984375, 0.8422851562, -0.8510742188, 0.1075439453, 0.5424804688, -0.9833984375, 0.458984375, -0.0483703613, -0.2125244141, -0.2619628906, -1.291015625, 0.0848999023, 0.423828125, 0.1791992188, 0.5317382812, -0.0327758789, -0.4108886719, 0.1435546875, -0.3530273438, 0.4494628906, 0.9272460938, -1.853515625, 0.7890625, -1.83203125, 0.3796386719, -0.0978393555, 0.509765625, -0.1739501953, -0.5249023438, -0.1065673828, 0.1459960938, 0.0059738159, -0.0567626953, 0.4038085938, -0.556640625, 0.3334960938, 0.0369262695, -0.59375, -0.1597900391, -0.5341796875, -0.8916015625, -0.3483886719, 0.9506835938, 0.2614746094, -1.01171875, 0.1350097656, 0.6938476562, 0.5297851562, -0.8608398438, 0.3864746094, -0.0756225586, -0.2548828125, -0.3166503906, -0.4826660156, 0.0305328369, 0.3444824219, -0.4274902344, -0.0268249512, 0.7016601562, 0.0316467285, 0.125, 1.2958984375, -0.6118164062, 0.6088867188, -0.884765625, -0.64453125, 0.3347167969, 0.5942382812 ]
The built-in effects of typical DMCs are robust and include gates, compressor limiters, equalizers, feedback controllers, and other signal processing hardware. One advantage of the large number of internal effects is that a DMC system is less vulnerable to failure and outside interference than a set-up using outboard hardware. Many digital mixers have controls that mimic the classic look and feel of analog mixers. This is comparable to a fly-by-wire system in modern aircraft. The controls are similar, but the underlying mechanism has changed from voltage levels to binary information. Third-party plug ins can add functionality in a digital mixer. Plugins allow for further expansion of the mixer's on-board equalization, compression and reverberation effects. Using dual DMCs to improve live recording In truly professional broadcast and recording applications, one does not use what is referred to as the house mix for high quality audio recordings. The reason for this is that when engineering live sound for any auditorium, one must deal with the acoustic parameters of that particular auditorium. This requires various adjustments of equalization, bass, treble, volume, etc. While those adjustments may enhance the sound quality in the auditorium, they are not necessarily needed for the recording. In fact, those house mix adjustments often diminish the quality of the recorded sound. Once the bass, treble, volume and other effects of the house mix are added to the recording mix, it is most difficult to correct. In the reverse, adjustments and signal processing effects that are often used to enhance a recording mix are not always needed in the house mix.
[ 0.3005371094, -0.806640625, 0.112121582, 1.00390625, -0.880859375, -0.7758789062, -1.44140625, -1.552734375, -0.2509765625, 0.4025878906, 0.16796875, -0.3090820312, -0.0173187256, 0.1373291016, 0.0208282471, 0.6923828125, 0.1678466797, 0.6171875, 0.150390625, 0.3798828125, 0.1595458984, -0.5014648438, 0.9584960938, 0.2739257812, 0.2379150391, -0.022857666, 0.8872070312, 0.2880859375, 0.724609375, -0.4509277344, 1.0419921875, 0.6967773438, -1.462890625, 0.5546875, -0.0147171021, 0.3413085938, -0.0239562988, 0.4536132812, -1.169921875, 0.1126098633, 0.828125, -0.1639404297, 0.541015625, -0.2036132812, -0.7939453125, 0.4265136719, 0.0310974121, -0.2427978516, -1.5263671875, -0.5395507812, 0.236328125, -0.7001953125, 0.5766601562, -0.3569335938, 0.4565429688, 0.0254821777, 0.1965332031, -1.25, 1.1708984375, -0.1394042969, -0.1700439453, 0.4658203125, 0.4135742188, -0.1354980469, 0.5087890625, 0.7177734375, -0.181640625, 1.583984375, 0.0362854004, -0.7202148438, 0.7607421875, 0.8041992188, 0.4094238281, -0.3540039062, 1.634765625, -0.6850585938, -0.3332519531, -0.2299804688, 0.0570068359, 0.1084594727, -0.3728027344, -0.3271484375, 0.3862304688, -0.7573242188, -0.2834472656, 0.6904296875, -0.2075195312, -0.544921875, 0.2836914062, 1.0927734375, 0.1428222656, -0.4848632812, -0.6528320312, -0.5390625, -0.4143066406, -0.1363525391, -0.7114257812, -0.1106567383, -0.0219268799, 0.1348876953, -0.6953125, -0.4272460938, -0.0037689209, 0.3166503906, 0.5185546875, -0.2983398438, 0.6879882812, -1.1337890625, 0.4624023438, -0.0020313263, 0.2478027344, 0.0776367188, 0.0853271484, -0.2463378906, -0.4401855469, 0.4921875, 0.3205566406, -0.4011230469, 0.1296386719, 0.6469726562, -0.4523925781, 0.2000732422, 0.2885742188, -0.3215332031, 0.0342712402, 0.2580566406, 0.5244140625, -0.6396484375, -0.006362915, 0.6791992188, 0.7993164062, 0.0026397705, -0.2194824219, -0.8642578125, 0.0989379883, -1.029296875, -1.025390625, 0.1160888672, 0.092956543, -0.0309295654, -1.2607421875, -0.0142974854, 0.8037109375, -0.2105712891, 0.2214355469, 0.1122436523, 0.8686523438, 0.0321655273, -0.9907226562, 0.8090820312, -0.642578125, 0.2531738281, -0.6064453125, 0.0296478271, -0.1657714844, -1.0263671875, -0.3811035156, -0.2966308594, -0.7807617188, 0.1883544922, -0.4245605469, -0.5747070312, -0.7631835938, 0.9555664062, 0.2313232422, -0.5263671875, -0.3146972656, 0.728515625, -0.1745605469, -0.5302734375, -0.2563476562, -0.8798828125, 0.759765625, -0.5092773438, -0.7446289062, -0.2888183594, 0.2075195312, 0.4370117188, 0.1531982422, -0.1240844727, 0.6928710938, -1.021484375, -0.2529296875, -0.2524414062, -0.607421875, -0.3894042969, -0.6513671875, 0.2971191406, -0.3828125, 0.0530700684, -0.0615844727, 0.0484619141, -0.8481445312, 0.5961914062, 0.2463378906, -0.3666992188, 0.1500244141, 0.4523925781, 0.650390625, 0.4111328125, -0.6040039062, 0.220703125, 0.3698730469, -1.2158203125, -0.1954345703, 0.4311523438, -0.4475097656, 0.1617431641, -0.2724609375, 0.3151855469, 0.2416992188, -0.3979492188, 1.3408203125, 0.0110702515, -0.6918945312, 0.0608520508, -0.0587463379, -0.6577148438, 0.1265869141, 0.7426757812, 0.2491455078, 0.1821289062, -0.2690429688, 0.833984375, -0.5615234375, 0.4604492188, -0.0191955566, -0.41015625, 0.65625, -0.2386474609, 0.8017578125, 0.544921875, -0.3918457031, 0.7729492188, -0.4873046875, -0.1810302734, 0.2551269531, -1.001953125, -0.3659667969, 0.0749511719, 0.673828125, 0.3669433594, -0.3151855469, 0.2415771484, 0.5385742188, 0.1978759766, -0.2978515625, -0.3928222656, 1.33203125, -0.4296875, -0.5317382812, -0.1452636719, 0.7509765625, 1.306640625, -0.3723144531, -0.3542480469, 0.0944213867, -0.2049560547, 0.474609375, 0.3818359375, -0.3291015625, 0.3166503906, -0.2498779297, 0.4853515625, 0.2858886719, 0.11328125, 0.0900878906, -0.7236328125, 0.3422851562, 0.2570800781, 0.3386230469, 0.2204589844, -0.6318359375, -0.4995117188, 0.1677246094, -0.5166015625, -0.1312255859, -0.6704101562, 0.7739257812, -0.1839599609, -0.3229980469, -0.3098144531, 0.1658935547, 0.1663818359, -0.4057617188, -0.1928710938, 0.5048828125, 0.7397460938, 0.1128540039, 1.2783203125, -0.0160980225, -0.6879882812, -0.3195800781, -0.5546875, -0.1701660156, -0.0309448242, 0.2431640625, 1.1162109375, -0.2551269531, -0.3688964844, 0.1723632812, 0.515625, 0.73046875, 0.5268554688, 0.7685546875, 0.2546386719, -0.3811035156, -0.4677734375, -0.85546875, 0.3737792969, -0.1063232422, -0.7431640625, 0.66015625, 1.53125, -0.8481445312, 0.8588867188, -0.6791992188, -0.4675292969, 1.26171875, 1.0048828125, 0.6596679688, 0.5161132812, 0.5673828125, -0.1354980469, 0.7607421875, -0.2347412109, -0.9038085938, -0.2044677734, -0.6528320312, 0.7177734375, -0.2010498047, -0.3337402344, 0.810546875, -0.7709960938, -1.1669921875, -0.0650634766, -0.8569335938, -0.7861328125, 0.0935668945, -0.0045890808, -0.4301757812, -0.8120117188, -1.00390625, -0.3203125, 0.6831054688, -0.6235351562, 0.2058105469, 0.0065689087, 0.7807617188, -0.096496582, 0.4765625, 0.6318359375, 0.7241210938, 0.1916503906, -0.4072265625, -0.4643554688, -0.4387207031, 0.5732421875, 0.0809326172, 0.66796875, 0.7260742188, 1.5693359375, -1.533203125, -0.3381347656, -0.1982421875, 0.6147460938, -0.482421875, 0.0722045898, -0.396484375, -0.6064453125, -0.5102539062, -0.2666015625, -0.8012695312, 0.9946289062, 0.9809570312, -0.8032226562, 0.0335388184, -0.9975585938, 0.1776123047, -0.2122802734, -0.9467773438, 0.0530090332, 0.4709472656, -0.6879882812, 0.1040039062, -0.115234375, -1.2607421875, -0.0266113281, -1.041015625, 0.3115234375, -0.3449707031, -1.3955078125, 0.7006835938, -0.3483886719, 0.2272949219, 0.0555419922, 1.1259765625, -0.0138549805, 0.3586425781, -0.053894043, -0.0717163086, -0.0653076172, -0.296875, -0.0248565674, -0.4816894531, -0.3229980469, 1.833984375, 0.0111541748, 0.4187011719, -0.9013671875, -0.283203125, 0.7114257812, -0.1588134766, -0.4353027344, -1.3955078125, -0.5532226562, 0.4487304688, -0.7690429688, -0.0602416992, 0.2841796875, 0.1579589844, 0.2418212891, 0.8598632812, 0.4389648438, -0.1158447266, -0.1665039062, -0.1063232422, -0.1552734375, 0.6645507812, -0.6879882812, -0.6811523438, 1.064453125, 0.2067871094, 0.6162109375, -0.380859375, 0.2398681641, 0.74609375, -0.4536132812, 0.5092773438, -0.900390625, 0.6279296875, 1.2119140625, -0.5659179688, -0.1540527344, -0.5498046875, -0.6748046875, 0.2283935547, -0.2653808594, 0.2181396484, -0.5009765625, -0.7783203125, -0.0387878418, 1.41015625, 0.4609375, 0.7885742188, 0.4753417969, 0.7641601562, 1.8173828125, 0.8623046875, -0.1516113281, 0.5947265625, 0.9057617188, -0.2846679688, 0.1639404297, 1.5146484375, -1.0908203125, -0.2371826172, 0.2302246094, -0.0855102539, -0.5913085938, -0.3002929688, 0.7485351562, -0.8525390625, -0.892578125, 0.0768432617, -0.3310546875, -0.4912109375, -1.017578125, 0.4184570312, -0.5361328125, 0.3327636719, -0.7299804688, 0.1065673828, 0.3254394531, -1.1396484375, 0.065246582, 0.5063476562, 0.4689941406, -1.1806640625, -1.32421875, 0.6655273438, -0.5600585938, -0.8540039062, -0.9501953125, -0.3757324219, -1.09765625, 0.7373046875, -0.5327148438, -0.2739257812, -1.287109375, -0.3342285156, 1.1103515625, 0.8891601562, 0.1844482422, -0.3640136719, -1.119140625, -0.5551757812, -1.1640625, 0.0703735352, -0.1641845703, -0.654296875, -0.0293731689, 0.1953125, 0.2047119141, -0.2244873047, -0.3557128906, 0.2536621094, 0.615234375, -0.8676757812, -0.822265625, -0.3937988281, -0.2200927734, -0.3127441406, 0.0039710999, -0.1331787109, 1.0361328125, 1.1044921875, 0.8388671875, 0.2127685547, -0.0887451172, 0.6000976562, -0.3620605469, 0.0051727295, 0.4614257812, 0.2194824219, -0.7021484375, 0.763671875, -0.3288574219, -0.2670898438, 0.0157928467, -0.6440429688, 0.0814208984, -0.4226074219, -0.0105209351, 0.1517333984, 0.3552246094, 0.1877441406, -0.666015625, -0.1756591797, -0.1280517578, 0.6362304688, -0.2919921875, 0.1827392578, -0.43359375, -0.5278320312, -0.8764648438, -0.4731445312, 0.2624511719, 0.2043457031, -0.0469360352, -0.2423095703, 0.1104125977, -0.2159423828, 0.4470214844, -0.5625, 0.7797851562, 0.0473937988, -0.4057617188, -0.9165039062, 0.3811035156, 0.2069091797, -0.4091796875, -0.0024738312, 0.4875488281, 0.2607421875, -0.8959960938, 0.2800292969, -0.3645019531, -0.83984375, -1.1572265625, 0.3117675781, 0.6206054688, 0.4465332031, 0.0796508789, -0.6435546875, 1.4736328125, -0.4929199219, -0.52734375, 0.3259277344, -0.609375, 0.3449707031, 0.4072265625, 0.0052642822, -0.3012695312, -0.4228515625, -0.7158203125, 0.1098632812, -0.0334472656, 0.7255859375, -0.5595703125, -0.240234375, 0.4516601562, -1.6396484375, 0.1010131836, -0.4321289062, 0.470703125, 0.1430664062, 1.0615234375, 0.4870605469, 0.0123596191, -1.708984375, 0.0657958984, 0.0294342041, 0.2673339844, -0.1244506836, 0.3083496094, -0.5546875, -0.4047851562, -0.0991821289, -1.07421875, -0.8891601562, -0.2020263672, 0.5327148438, -0.5122070312, 0.1018676758, -0.3364257812, -0.1934814453, 0.1286621094, -0.1547851562, 1.31640625, -0.0987548828, -0.904296875, 0.41015625, -0.4458007812, -1.1611328125, 1.2197265625, -0.5478515625, 0.2061767578, -0.5405273438, 0.3256835938, -0.0523376465, 0.8383789062, 0.212890625, -0.1223144531, -0.043182373, -0.681640625, 0.4765625, -0.0040283203, -0.2897949219, 0.8461914062, 0.1203613281, -0.1110229492, 0.4787597656, 0.0980224609, 0.8295898438, -0.4191894531, 0.2135009766, -0.6831054688, 0.4519042969, -0.9365234375, -0.5727539062, -0.0329284668, 0.5185546875, 0.2122802734, 0.1343994141, -0.30859375, 0.8369140625, -0.4108886719, -0.5844726562, -0.3635253906, -1.5400390625, -0.1003417969, 0.0036449432, 0.8745117188, -0.4345703125, 0.3120117188, 0.2915039062, -0.2426757812, -1.3544921875, 0.3232421875, 0.5048828125, 1, -0.1892089844, 0.4655761719, -0.8154296875, 0.0399780273, -0.0910644531, -0.1204223633, 1.0185546875, 0.0070762634, -1.3330078125, 0.3090820312, -1.6357421875, -0.0258636475, -0.3759765625, -0.1586914062, -0.0688476562, 1.2744140625, 0.3854980469, 0.837890625, -0.4833984375, 0.33984375, -0.0720214844, -1.0107421875, -0.3039550781, 0.4763183594, -0.4130859375, 0.8657226562, 1.0263671875, 0.0708618164, 1.029296875, 0.3715820312, -0.5034179688, 0.2268066406, 0.5893554688, 0.4877929688, 0.1848144531, -0.0797119141, 0.4311523438, 0.3833007812, -0.3366699219, 0.2276611328, 0.4167480469, 0.0427246094, -0.1195068359, 1.0283203125, 0.1722412109, 0.0100631714, 0.6899414062, 0.1354980469, -1.1396484375, -0.0951538086, 0.4772949219, -0.0069694519, 0.4016113281, -0.6357421875, 0.1216430664, 0.7421875, 0.1435546875, -0.0837402344, -0.0528564453, -0.7543945312, -0.2198486328, 0.1555175781, 0.4916992188, -0.0740966797, 0.974609375, -0.2426757812, 0.5380859375, -0.9086914062, 0.4658203125, -0.0365600586, 0.2678222656, -1.615234375, 0.9790039062, 0.3334960938, -0.7172851562, 1.1337890625, 0.5849609375, -0.047454834, 0.1165161133, 0.4196777344, -0.8930664062, -0.5732421875, -0.7490234375, 0.4379882812, 0.5131835938, -0.0869750977, 0.7543945312, -0.6044921875, 0.0526733398, -0.41015625, 0.3854980469, 0.4763183594, 0.802734375, -1.283203125, -0.0834350586, -0.3181152344, 0.2015380859, 0.0647583008, 0.3505859375, -0.587890625, 0.2963867188, -1.10546875, 0.2482910156, -0.4216308594, -0.0067558289, 0.0773925781, -0.5024414062, -0.494140625, -0.5327148438, 0.2744140625, 0.0629272461, 1.0712890625, 0.7958984375, 0.5190429688, 0.4323730469, -0.162109375, 0.1450195312, -0.0517883301, -0.9653320312, 0.1979980469, 0.1009521484, 0.3520507812, -1.71875, -0.9443359375, -0.2282714844, -0.042388916, -0.9282226562, 0.1975097656, 0.4819335938, 0.0474853516, -0.1223754883, 0.0403747559, -0.8442382812, -0.66015625, 0.9145507812, 1.2919921875, -0.1868896484, 0.1342773438, -0.4350585938, -0.3227539062, 0.6748046875, -0.9067382812, 2.216796875, -0.0743408203, 0.80078125, -0.53515625, -0.63671875, 0.2856445312, 0.0678100586, -0.4299316406, 0.3764648438, 0.57421875, 0.0569458008, 0.58203125, -0.9658203125, -0.4213867188, -0.5610351562, -0.1799316406, 0.421875, -0.2075195312, -0.0472717285, -0.0651855469, -1.3740234375, -0.2517089844, -0.2663574219, -0.1009521484, -0.2709960938, 0.3757324219, -0.1818847656, -0.1760253906, -0.2355957031, 0.5971679688, -1.0537109375, -0.0621643066, -0.7900390625, 0.6943359375, 0.4284667969, -0.1558837891, 1.6162109375, -0.2467041016, 0.0274505615, -0.0562133789, 0.4992675781, -1.236328125, -0.701171875, -0.3459472656, 0.6240234375, 0.3603515625, 0.5434570312, 0.6791992188, 0.2998046875, -0.9755859375, -0.2498779297, -0.7724609375, -0.6264648438, 0.5493164062, -0.4577636719, 0.4538574219, -0.0789794922, -0.9340820312, -0.455078125, -0.0346069336, -0.3352050781, 0.8969726562, 1.8232421875, -0.1319580078, -0.416015625, -0.025970459, 0.2291259766, -0.376953125, 0.9624023438, 0.7807617188, 0.3615722656, -0.1083374023, -0.3952636719, -0.0282897949, -0.1245117188, -1.12109375, -0.0839233398, 0.1662597656, -1.0400390625, 0.861328125, -1.31640625, -0.8764648438, 0.0206756592, -0.3518066406, 0.751953125, -1.16796875, 0.8754882812, -0.1047973633, -0.27734375, -0.3271484375, -0.6098632812, 0.4519042969, 0.4438476562, -0.2983398438, -0.0466918945, -1.1376953125, -0.2573242188, 0.2341308594, 0.6357421875, -0.1827392578, 0.7504882812, -0.015625, 0.2551269531, 0.0500183105, -0.9653320312, 0.3449707031, -1.17578125, 0.0583496094, 0.5522460938, -0.0969848633, 0.658203125, 0.0534362793, 0.9096679688, 0.095703125, 1.0634765625, -0.662109375, 0.2573242188, 0.5620117188, -13.84375, 0.0930175781, -1.615234375, -0.6831054688, -0.2268066406, -0.2736816406, 0.2395019531, -0.1666259766, 0.1405029297, 1.2138671875, 0.6196289062, 0.6313476562, -0.3356933594, 0.1651611328, -0.1551513672, 0.0016775131, -1.146484375, 0.0609436035, 0.3781738281, -0.2795410156, -0.1988525391, -0.1662597656, -0.193359375, -0.3256835938, -1.5234375, -1.15234375, 0.2790527344, -0.4946289062, -0.0093688965, -0.0596008301, -0.2807617188, 0.630859375, -0.3874511719, 1.3359375, 0.8081054688, -1.5546875, 0.7045898438, -1.09375, -0.3825683594, -0.4506835938, 0.5400390625, -0.8374023438, -0.5922851562, -0.0885620117, 0.6430664062, -0.7163085938, -0.2829589844, 0.5629882812, -0.1823730469, -0.1177978516, -0.7114257812, -0.1827392578, 0.2429199219, -0.3298339844, -0.8081054688, -0.388671875, 0.1845703125, 0.5161132812, -0.5668945312, 0.4914550781, 0.2165527344, 0.455078125, -0.1090698242, 0.4016113281, -0.2648925781, -0.3024902344, -1.033203125, -0.1500244141, -0.525390625, -0.0614929199, -0.1918945312, -0.1756591797, 1.146484375, 0.2158203125, 0.2136230469, 1.107421875, -0.4626464844, 0.470703125, -0.3723144531, -0.3525390625, 0.4624023438, 0.513671875 ]
In order to facilitate this, the signals must be split and provided to OB, recording crew or film crews. This split can be analog or digital; an analog split will normally be a feed of all stage signals split either passively or through an isolated transformer split. Transformers are preferred as they provide isolation and prevent microphone preamps on different systems interacting, for example a recording pre-amp causing level change at FOH or Monitors. A digital split can come in many forms, Often AES/EBU, MADI, Firewire direct to DAW, or increasingly network aware digital snake formats, such as AVB, Dante, Ethersound or Rocknet, many other proprietary formats also exist.
[ 0.0386962891, -0.5649414062, 0.6665039062, 0.5966796875, -0.919921875, 0.1885986328, -0.8276367188, -1.0634765625, -0.4814453125, -0.2156982422, 0.7182617188, -0.1545410156, 0.059967041, 1.0439453125, 1.048828125, 1.14453125, 0.1254882812, -0.533203125, 0.3330078125, 0.3674316406, 0.1102294922, -0.3298339844, 0.2570800781, -0.6782226562, -0.0605163574, 0.3852539062, 0.443359375, -0.0996704102, 0.8813476562, -0.5874023438, 0.4345703125, 0.6801757812, -1.1982421875, -0.0413513184, -0.560546875, 0.3073730469, -0.1207275391, 0.9311523438, -0.955078125, 0.3076171875, 0.3093261719, 0.1228027344, -0.5766601562, -0.1613769531, -0.4467773438, -0.0602416992, 0.2687988281, -0.1593017578, -0.6293945312, 0.0954589844, 0.2778320312, 0.0346069336, 0.544921875, -0.7446289062, -0.0739746094, -0.5024414062, -0.2680664062, -1.259765625, 1.8740234375, -0.814453125, -0.0755615234, -0.0452880859, -0.5717773438, -0.19140625, 0.4709472656, 0.4709472656, -0.6655273438, 1.796875, -0.1613769531, -0.703125, -0.4284667969, 0.1424560547, -0.0137252808, 0.2543945312, 0.5190429688, 0.2359619141, -0.4089355469, 1.060546875, 0.6440429688, -0.7456054688, -0.0733642578, -0.8159179688, -0.0698242188, -1.29296875, -0.8637695312, 0.4660644531, 0.1763916016, -0.5219726562, -0.3293457031, 0.8115234375, 0.4604492188, -0.0305480957, -0.197265625, 0.1095581055, 0.0100097656, -0.2490234375, -0.7470703125, -0.017364502, -0.2204589844, 0.2038574219, -0.3024902344, 0.4929199219, -0.3547363281, -0.2634277344, 0.7822265625, 1.767578125, 0.4299316406, -0.5581054688, 0.7583007812, 0.4106445312, 0.583984375, -0.490234375, 0.3039550781, -0.7900390625, 0.4050292969, 0.912109375, -0.1584472656, -0.939453125, 0.2509765625, 0.6987304688, -0.6411132812, -0.0852661133, -0.3896484375, -0.017868042, 0.4816894531, -0.1481933594, 0.4489746094, -0.4001464844, 0.0515136719, 0.53515625, 0.8950195312, -0.7646484375, 0.162109375, -0.1442871094, -0.5922851562, -0.3686523438, -1.384765625, -0.1431884766, 0.2741699219, 0.0914306641, -0.5473632812, -0.6860351562, 0.2924804688, 0.1771240234, -0.3508300781, 0.1728515625, 0.1787109375, 0.4724121094, -0.6401367188, 0.3112792969, -0.6166992188, 0.1870117188, -1.3232421875, 0.2111816406, -0.7353515625, -1.701171875, 0.095703125, 0.7329101562, -0.0390319824, 0.0748901367, -1.0380859375, -0.6997070312, -0.7231445312, 0.6713867188, -0.1680908203, 0.7836914062, -0.5375976562, -1.1005859375, 0.0572814941, -0.61328125, 0.1119995117, -0.4409179688, 0.2424316406, 0.0215606689, 0.1745605469, -0.7236328125, 0.2321777344, 0.2744140625, 0.0731201172, -0.9018554688, 0.2680664062, -1.1357421875, 0.4875488281, -0.0933837891, -0.0882568359, 0.1524658203, -0.4714355469, 0.7041015625, -0.2885742188, -0.2700195312, -0.6801757812, -0.2622070312, -0.4321289062, 0.6323242188, 0.4897460938, -1.28125, 0.0800170898, 0.4116210938, 0.4975585938, 0.8046875, 0.1915283203, 0.9360351562, -0.3312988281, -0.2841796875, 0.3122558594, -0.2023925781, 0.3435058594, 0.9365234375, -0.1979980469, 0.2614746094, 0.2208251953, 0.6264648438, 0.3171386719, 0.525390625, -0.7280273438, -0.4660644531, 0.4345703125, 0.2397460938, 1.912109375, 0.47265625, 0.14453125, 0.2954101562, 0.4165039062, -0.7133789062, -0.2238769531, -0.1531982422, -0.0530700684, 0.1057739258, 0.5034179688, 0.0288238525, 0.3310546875, 0.5571289062, 0.443359375, -0.8081054688, 0.4460449219, -0.3120117188, -0.8505859375, -1.3642578125, -0.3640136719, -0.7216796875, 0.626953125, 0.4289550781, 0.4389648438, -0.0592956543, 0.2133789062, -0.0760498047, 0.78125, -1.4677734375, 0.091796875, 0.1346435547, -0.48046875, 0.111328125, -0.138671875, 0.8134765625, -0.9868164062, 0.1042480469, -0.5703125, 0.1340332031, 0.7041015625, 0.5161132812, -1.0048828125, 0.2132568359, 0.9536132812, -0.2932128906, -0.4099121094, -0.4916992188, -0.2666015625, -0.114440918, -0.0150909424, 0.3449707031, 0.564453125, -0.1021118164, -0.0140151978, -1.462890625, -0.4201660156, 0.2353515625, 0.1889648438, -0.9389648438, -0.0758056641, 0.3815917969, -0.0033721924, 0.0997314453, -0.2595214844, 0.4077148438, -0.0075569153, -0.9453125, 0.2036132812, 0.0500488281, 0.0338745117, 0.6567382812, -0.4997558594, 0.3991699219, 0.2108154297, -0.544921875, -0.5341796875, -0.4455566406, -0.2883300781, -0.4111328125, -0.251953125, -1.30078125, -0.0142211914, -0.3330078125, 0.6040039062, 0.1555175781, 0.7265625, 0.3081054688, -0.2336425781, -0.9252929688, 0.271484375, 1.1865234375, -0.5278320312, -0.787109375, 0.2211914062, 0.8627929688, -0.771484375, 1.103515625, 0.8334960938, -0.1116943359, 1.681640625, -0.0187683105, 0.5703125, 1.384765625, 0.5732421875, -1.5537109375, 1.0283203125, -0.0513305664, -1.0048828125, -0.2282714844, -1.09375, 0.5473632812, -0.0570678711, 0.4760742188, 0.4965820312, -0.5166015625, -0.9379882812, 0.3745117188, -0.3718261719, -0.5712890625, 0.1788330078, -0.0817260742, -0.365234375, -0.9165039062, -0.5649414062, -0.1296386719, 0.6928710938, -0.4404296875, -0.1962890625, -0.0913696289, 1.572265625, 0.1411132812, 0.2155761719, -0.6313476562, 0.5083007812, -0.1557617188, -0.3232421875, -0.6577148438, -0.3413085938, 0.2763671875, -0.3369140625, -0.2192382812, 0.453125, 0.3559570312, -1.689453125, 0.240234375, -0.2722167969, -0.62109375, 0.3950195312, -0.2780761719, -0.1656494141, 0.1850585938, 0.2135009766, 0.453125, -0.56640625, 0.5244140625, 1.01953125, -0.1354980469, -0.0050315857, -0.075378418, 0.3369140625, 0.7983398438, -0.1491699219, -0.3093261719, 0.0592346191, -1.2080078125, -0.2626953125, -0.3254394531, -0.9296875, -0.2009277344, -0.7607421875, 0.9672851562, -0.4636230469, -0.9208984375, 1.3798828125, -0.0527954102, -0.3134765625, -0.6909179688, 1.158203125, -1.4462890625, 0.3601074219, 0.1656494141, 0.537109375, -0.0999145508, -0.3107910156, -0.55859375, 0.0914306641, -0.0155258179, 1.0595703125, 0.2546386719, 0.55078125, 0.3708496094, 0.0183563232, 0.1508789062, 0.2548828125, -0.5922851562, -0.9409179688, -0.87109375, 0.3642578125, -0.7353515625, -0.1000976562, 0.2819824219, -0.3801269531, 0.8540039062, -0.2171630859, 0.6977539062, -0.5219726562, -0.0519104004, 0.580078125, 0.0169372559, 0.2878417969, -0.9921875, 1.013671875, 1.029296875, -0.8110351562, 1.330078125, 0.0009760857, 0.4421386719, 1.47265625, 0.263671875, 0.0006961823, -0.40625, 0.3713378906, 1.021484375, -0.0325622559, -0.0451965332, -0.2836914062, -0.4284667969, -0.0985107422, -1.025390625, 0.7124023438, -0.7338867188, -0.9975585938, -0.3244628906, 0.6748046875, 0.3864746094, 0.5053710938, 0.1193847656, 1.236328125, 0.845703125, 0.3552246094, -0.412109375, 0.4777832031, 0.8564453125, -0.5327148438, -0.5747070312, 0.9291992188, -1.310546875, -0.4643554688, 0.5859375, 0.3522949219, -0.8334960938, -0.3435058594, 1.1640625, -1.4853515625, -0.1271972656, -0.4968261719, 0.2751464844, -0.0188751221, -0.2954101562, -0.4375, -0.0523376465, 0.1346435547, 0.1271972656, 0.1188354492, -0.6435546875, 0.5244140625, -0.3125, 0.9794921875, -0.0189819336, -0.1695556641, -0.3935546875, 0.2138671875, 0.0187835693, -0.74609375, -0.4672851562, 0.4213867188, -0.3547363281, 0.8256835938, -0.0885009766, -0.63671875, -0.6982421875, -0.78515625, -0.1066894531, -0.4519042969, -0.045715332, 0.1253662109, -0.2260742188, -0.1201171875, -0.75, 0.51171875, -0.4792480469, 0.1496582031, 0.9584960938, -0.2744140625, 0.1812744141, -0.0160064697, -0.3312988281, -0.1253662109, 0.2081298828, -0.3979492188, -0.40234375, 0.1358642578, 0.0946044922, 0.3796386719, -0.2880859375, -0.3735351562, 1.5400390625, 0.90234375, 0.4038085938, 0.0228118896, 0.1876220703, 0.3447265625, -0.0935058594, -0.0015487671, 0.556640625, 0.2386474609, -0.7353515625, 0.1691894531, -0.7880859375, -0.421875, -0.3884277344, -0.33203125, -0.669921875, -0.1435546875, -0.1246337891, -0.2756347656, 1.2470703125, -0.28125, -1.0361328125, -0.9301757812, 0.8696289062, -0.0129089355, -0.8178710938, 0.0896606445, -0.3010253906, -0.849609375, -0.1419677734, -0.9931640625, 0.4313964844, -0.6215820312, -0.4702148438, 0.8403320312, 0.783203125, 0.0253601074, -0.3979492188, 0.0681152344, 0.1722412109, 0.1346435547, -0.3645019531, -1.1767578125, 0.3178710938, -0.0603027344, 0.1466064453, -0.0025520325, 0.9311523438, -0.2202148438, -0.7231445312, -0.1231689453, -0.3869628906, -0.7578125, -1.0302734375, 0.1630859375, -0.1251220703, -0.3793945312, -0.4455566406, 0.5595703125, 0.60546875, 0.130859375, -0.53125, -0.4963378906, -0.0043907166, -0.0129852295, 0.5498046875, 0.6684570312, -0.1707763672, -0.2761230469, -0.384765625, -0.912109375, -0.2091064453, -0.1518554688, -0.1876220703, -0.6274414062, 0.5668945312, -1.197265625, 0.2917480469, -0.8725585938, 0.0823364258, 0.5874023438, 0.7099609375, -0.0311126709, 0.1988525391, -0.3557128906, 0.7670898438, -0.0501098633, 0.0856933594, 0.685546875, 0.2387695312, -0.3234863281, -0.5634765625, 0.6655273438, -1.35546875, 0.4848632812, 0.3918457031, 0.4702148438, -0.2204589844, 0.5004882812, -0.4270019531, 0.3283691406, 0.0025787354, 0.1090087891, 0.3051757812, 0.1192016602, -0.8330078125, -0.0950317383, -0.6342773438, -0.2017822266, 1.0849609375, -0.7163085938, 0.6879882812, -0.87109375, 0.9091796875, -0.0614624023, 0.5600585938, -0.0495300293, 0.2202148438, -0.4816894531, 0.5747070312, -0.6665039062, -0.2220458984, -1.197265625, 0.755859375, -0.8662109375, 0.7294921875, 0.6313476562, -0.013671875, 0.76953125, -0.6538085938, 0.2854003906, 0.48828125, -0.2824707031, -0.0510253906, -0.6669921875, 1.3271484375, -0.3991699219, 0.0166168213, -0.2561035156, -0.2631835938, 0.5961914062, -0.3598632812, -0.0058059692, -0.5581054688, -0.098449707, -0.28125, -0.2164306641, 1.265625, -0.3562011719, -0.8090820312, 0.3872070312, -0.2521972656, 0.123840332, -0.4912109375, 0.3251953125, 0.54296875, -0.5151367188, 0.6450195312, 0.1722412109, -0.5405273438, -0.8251953125, 0.3220214844, -0.2448730469, -0.0705566406, -0.9794921875, 0.580078125, -1.3916015625, -0.87890625, 0.3142089844, 0.3874511719, -0.0914916992, 0.4157714844, 0.5517578125, 1.2021484375, -0.1989746094, 0.6352539062, -0.0801391602, -0.8149414062, 0.2683105469, 0.0620422363, 0.65234375, 0.2435302734, 0.0866699219, -0.2313232422, 0.4853515625, 0.0103378296, -0.6958007812, -0.2293701172, 0.421875, -0.5390625, 0.4016113281, -0.3669433594, 0.4377441406, 0.5678710938, -1.4296875, 0.431640625, 0.921875, -0.5087890625, 0.0041275024, 0.748046875, 0.5419921875, 1.2080078125, 1.509765625, -0.1528320312, -1.3759765625, 0.4868164062, 0.1186523438, -0.3083496094, -0.2687988281, 0.1378173828, 0.8798828125, -0.1743164062, 0.1285400391, -0.2863769531, -0.1604003906, 0.0647583008, -0.3557128906, 0.4182128906, 0.4692382812, -0.2805175781, 0.9072265625, -0.6225585938, 0.4008789062, -1.2451171875, 0.3823242188, 0.4631347656, 0.4260253906, -0.3540039062, 1.126953125, -0.4890136719, -1.068359375, 0.3747558594, 0.4509277344, -0.1117553711, -0.1662597656, 0.7211914062, -0.2797851562, 0.1632080078, 0.1204223633, 0.4296875, 0.1389160156, 0.3991699219, 0.0261993408, -0.2922363281, -0.4018554688, 0.1801757812, 0.5498046875, 0.043182373, -0.0610351562, -0.2336425781, 0.5893554688, -0.0321655273, -0.1898193359, -0.4587402344, 0.3139648438, -0.3588867188, 0.0905151367, -1.0986328125, 0.1617431641, -0.34765625, 0.2122802734, 0.1727294922, -0.0193328857, -1.4189453125, -0.951171875, -0.1254882812, -0.4782714844, 0.3774414062, 0.7182617188, 0.0689697266, 0.3188476562, 0.3684082031, -0.4643554688, 0.0889892578, -0.2257080078, 0.3862304688, 0.6186523438, 0.2900390625, -1.0732421875, 0.3806152344, -0.67578125, 0.375, -0.4311523438, 0.2939453125, 0.4187011719, -0.3291015625, 0.3791503906, -0.6459960938, -0.4733886719, -0.4560546875, 0.0069313049, 0.6787109375, -0.0294494629, 0.9975585938, -0.427734375, -0.3569335938, 1.072265625, 0.8461914062, 2.294921875, -0.9321289062, 1.296875, -0.1259765625, 0.0049095154, -0.427734375, 1.09375, 0.1651611328, 0.3291015625, 0.7255859375, -0.1479492188, 0.4453125, -1.142578125, -0.4038085938, -0.1186523438, -0.4333496094, -0.1650390625, 0.1185302734, -0.970703125, -0.4748535156, -0.0081787109, -0.669921875, -0.1735839844, -0.2288818359, -0.607421875, 0.0301971436, -0.1611328125, 0.513671875, -0.4272460938, 1.3779296875, -0.0915527344, -0.400390625, -0.5927734375, 0.203125, -0.2651367188, 0.8388671875, 0.0090866089, 0.1292724609, -0.4846191406, 0.2108154297, -0.15234375, -0.2177734375, -0.4899902344, -0.4560546875, 0.4465332031, 0.4899902344, 0.5512695312, -0.2087402344, 0.4392089844, -1.3818359375, -0.59765625, -0.2858886719, -0.2153320312, 0.51171875, -0.8022460938, 0.396484375, -0.1115722656, -0.6845703125, 0.0342102051, -0.3032226562, 0.2780761719, 1.5078125, 2.373046875, 0.1801757812, -0.40234375, 0.0553588867, -0.118347168, -0.5712890625, 0.9204101562, 0.3234863281, -0.3818359375, 0.0648193359, -0.1311035156, -0.1411132812, -0.1143798828, 0.4001464844, -0.5629882812, 0.9672851562, -1.2724609375, -0.019744873, -0.1039428711, -0.4296875, -0.306640625, 0.047454834, 0.6899414062, -0.5795898438, -0.265625, -0.2763671875, -0.3635253906, -0.2504882812, -0.1774902344, 0.4953613281, -0.1575927734, -0.3103027344, -0.0700073242, -0.9516601562, -0.1812744141, -0.064453125, 0.0973510742, 0.0989379883, 0.7250976562, 0.5971679688, 0.0283050537, -0.8793945312, -0.1925048828, -0.3347167969, -0.4758300781, -0.5864257812, 0.6528320312, -0.9409179688, -0.1019897461, -0.2536621094, 0.5791015625, -0.68359375, 0.0285644531, -0.7978515625, -0.1834716797, 0.6630859375, -14.3359375, -0.4072265625, -1.4912109375, -0.712890625, 0.4272460938, 0.1667480469, 0.2153320312, -0.90234375, -0.6572265625, 0.2646484375, 0.4562988281, -0.6416015625, 0.0343017578, 0.1301269531, 0.0933837891, 0.6508789062, -0.4052734375, -1.044921875, 0.1021118164, 0.1109619141, -0.7861328125, -0.1516113281, 0.1787109375, -0.7026367188, -0.1781005859, -0.73828125, 0.2822265625, 1.13671875, 0.3330078125, -0.1536865234, -0.2452392578, -0.1194458008, -0.8745117188, 1.01171875, 1.0029296875, -1.146484375, 0.763671875, -0.6713867188, -0.3088378906, -0.2375488281, 0.298828125, -0.5581054688, -1.173828125, -0.2758789062, 0.0255126953, 0.4567871094, -0.0770874023, -0.0004153252, -0.1139526367, -0.5458984375, 0.0586547852, -0.7202148438, -0.1883544922, -0.1938476562, -0.3059082031, -0.8544921875, 1.2529296875, -0.3193359375, -0.919921875, 0.5493164062, -0.5854492188, 1.537109375, -0.8071289062, 0.2077636719, -0.28515625, -0.1451416016, 0.0011520386, -0.1657714844, 0.3464355469, 0.1729736328, -0.6713867188, -0.0669555664, -0.1500244141, 0.4340820312, 0.2761230469, 0.8095703125, -0.4201660156, 0.0892944336, 0.1434326172, 0.3969726562, -0.0411682129, 0.3259277344 ]
Popular product examples Allen & Heath QU, GLD, SQ series and dLive Behringer X32, xr18, WING Cadac Electronics S-Digital DiGiCo D1 Live, D5 Live, D5T, SD7, SD5, SD10, SD12, SD8, SD8-24, SD9 and SD11 Avid D-Show Venue, Venue S6L D-Show Profile, and SC 48 Innovason SY48 and SY80 Klotz Digital's AEON and D.C.II, in the radio broadcast segment Lawo mc²56, mc²66, mc²90 Mackie TT24, DL806, DL1608, DL32R Midas XL8, PROX, M32, PRO9, PRO6, PRO3, PRO2/PRO2C, and PRO1 digital consoles, and the VeniceF and VeniceU analog/digital hybrid consoles PreSonus StudioLive RM16, RM32, 16.0.2, 16.4.2 and 24.4.2 RML Labs Software Audio Console (SAC) Roland M-300, M-380, M-400, M-480, M-5000 and Edirol M-16DX Soundcraft Si Expression, Si Performer, Ui12 and Ui16, Vi3000, Vi1, Vi2, Vi4 and Vi6, Vi5000 and Vi7000 Solid State Logic L500 Plus, L300 and L200 Studer Vista 8 Tascam DM3200 and DM4800 Yamaha 01V, LS9, M7CL, DM1000, DM2000, PM5D, PM1D, PM7 & 10 Rivage, QL and CL series. References Audio mixing Digital audio
[ 0.6015625, -1.3603515625, 0.1696777344, 0.923828125, -0.55078125, -0.018661499, -1.0439453125, -0.8686523438, -0.6479492188, 0.7641601562, -0.2900390625, 0.42578125, -0.2352294922, 1.1240234375, 0.2309570312, 0.2956542969, -0.0412597656, 0.7109375, 0.966796875, -0.7260742188, 0.5185546875, -0.38671875, 0.7758789062, -0.6396484375, -0.1303710938, -0.5361328125, 0.6772460938, -0.0676269531, 0.0726928711, -0.0050773621, 0.447265625, 0.0871582031, -0.7216796875, -0.1729736328, -1.3984375, 0.8061523438, 0.0011205673, 0.3872070312, -0.6450195312, -0.1955566406, -0.0100021362, -0.6059570312, 0.7114257812, 0.6669921875, -0.2451171875, -0.0526733398, 0.0147781372, -1.00390625, -1.091796875, 0.6645507812, 0.121887207, -0.1702880859, 0.0081863403, -1.603515625, -0.2274169922, -0.3059082031, 0.7680664062, -0.7768554688, 0.8125, -1.205078125, 0.2749023438, 0.4318847656, 0.002412796, 0.3374023438, 0.1895751953, 0.4812011719, -1.5244140625, 1.7626953125, 0.0232849121, 0.015586853, -0.4030761719, 0.611328125, -0.662109375, -0.3618164062, 1.0654296875, -0.4768066406, -0.5541992188, 0.0838012695, 0.0197601318, -0.2073974609, -0.1606445312, -0.3952636719, 0.5073242188, -1.3466796875, 0.3557128906, 0.7641601562, -0.1303710938, -0.404296875, -0.0040664673, 0.9174804688, 0.4077148438, 0.1884765625, -0.9619140625, -0.65234375, -0.4809570312, 0.024810791, -0.9736328125, 0.1186523438, -0.0036830902, -0.0324401855, 0.31640625, -0.8642578125, 0.67578125, -0.8623046875, 0.7744140625, 0.435546875, 0.2866210938, 0.1322021484, -0.232421875, -0.0502319336, 0.3806152344, -0.3117675781, 0.0973510742, -0.373046875, 0.8276367188, 0.1196899414, -0.0854492188, -1.013671875, 0.7456054688, 0.3657226562, -0.1209716797, -0.4262695312, 0.9448242188, -0.2644042969, 0.5639648438, -0.0515136719, 0.1883544922, -1.91015625, -0.0923461914, 0.0832519531, 0.55078125, -0.0611877441, 0.2141113281, 0.544921875, 0.1860351562, -1.0634765625, -1.3203125, -0.080871582, 0.2325439453, -0.7475585938, 0.2348632812, -0.4135742188, 0.9956054688, -0.68359375, -0.2103271484, -0.0705566406, -0.3205566406, 0.4108886719, -1.0966796875, 0.1260986328, -0.3269042969, 0.1556396484, 0.0407409668, -0.0387268066, -0.4709472656, -0.837890625, -0.2073974609, -0.3474121094, 0.2880859375, 0.396484375, -0.7065429688, -0.48046875, -0.3566894531, -0.0401306152, -0.1751708984, -0.0086746216, -0.5795898438, -0.787109375, 0.404296875, -0.6044921875, -0.1577148438, -0.4877929688, 0.9819335938, -0.5903320312, -0.1778564453, -0.0959472656, 0.5693359375, 0.17578125, 0.0728759766, -0.0336914062, 0.833984375, -0.5737304688, 1.0224609375, -0.0379333496, 0.2580566406, 0.7250976562, -1.0166015625, 0.8286132812, -0.630859375, 0.0859375, -0.8413085938, -0.7934570312, -1.2939453125, 0.2365722656, 0.93359375, -1.3916015625, -0.1330566406, 0.1015625, 0.2158203125, 1.189453125, -0.8422851562, 1.013671875, -0.5849609375, -0.4865722656, 0.5068359375, 0.2022705078, 0.6323242188, 0.5659179688, 0.9291992188, 0.5009765625, 0.75, -0.3408203125, 0.2626953125, -0.1397705078, -0.0443115234, -0.0473327637, 0.8686523438, -0.1861572266, 1.12109375, 0.2976074219, -0.1949462891, -0.1207275391, -0.0726928711, -0.2132568359, 0.3752441406, 0.0339355469, 0.1069335938, -0.7802734375, 0.3962402344, -0.3627929688, 0.6533203125, 0.7299804688, -0.2395019531, 0.8061523438, 0.4033203125, -0.4645996094, 0.3833007812, -1.1142578125, -0.1851806641, 0.0203857422, 0.3212890625, 0.5874023438, -0.1911621094, 0.2349853516, 0.5454101562, 0.3779296875, 0.4560546875, -0.9252929688, 0.7763671875, 0.5727539062, -0.3720703125, 0.0184173584, 1.080078125, 0.291015625, -0.2260742188, 0.2797851562, -0.3891601562, -0.111328125, 0.5244140625, 0.3891601562, -0.4094238281, 0.1412353516, -0.83984375, -0.1512451172, 1.1103515625, -0.3798828125, -0.2230224609, 0.7026367188, 0.611328125, 0.482421875, -0.1010131836, 0.2426757812, 0.0000671148, -1.0224609375, 0.1707763672, 0.1019287109, -0.3828125, -0.4465332031, 0.1666259766, 0.1408691406, 0.3330078125, 0.3190917969, -0.4135742188, 0.2132568359, -0.763671875, -0.0811767578, 0.4057617188, 0.6557617188, 1.1572265625, 1.5732421875, 0.0045928955, -0.2873535156, 0.0593566895, -1.115234375, -0.8876953125, -0.0593566895, 0.4074707031, 0.1331787109, 0.2482910156, -0.3662109375, -0.0553894043, 0.5068359375, 0.75, -0.0719604492, 0.9370117188, -0.2609863281, -0.3627929688, -0.3815917969, -0.5864257812, 1.708984375, -0.1689453125, -1.1904296875, -0.2097167969, 1.8642578125, -0.8071289062, -0.108581543, -1.3125, 0.000107944, 1.5234375, 0.4916992188, 0.5576171875, 0.953125, 0.5751953125, -0.1040649414, -0.3684082031, 0.3305664062, -0.7944335938, -0.1339111328, -0.3793945312, 0.1483154297, 0.2055664062, -0.6157226562, 0.5810546875, 0.224609375, -0.6201171875, 0.2897949219, -0.5913085938, -1.4892578125, -0.5903320312, -0.5556640625, 0.857421875, -1.2763671875, -0.6953125, -0.2403564453, 0.578125, 0.2456054688, -0.1912841797, -0.1918945312, 1.5458984375, 0.0452270508, 0.484375, -0.8334960938, 0.1186523438, 0.794921875, 0.3393554688, 0.49609375, -0.7216796875, 0.1217651367, -1.2236328125, 0.4094238281, 0.5966796875, 0.7177734375, -2.201171875, -0.1026000977, 0.3073730469, 0.1514892578, 0.5307617188, -0.4975585938, -0.1839599609, 0.1519775391, -0.3576660156, 0.3278808594, -1.0087890625, 0.7495117188, 0.9858398438, -0.0499267578, 0.1124267578, -0.08203125, -0.0016326904, 0.6342773438, -0.265625, -0.3903808594, -0.0868530273, -0.5556640625, 0.1441650391, -0.8081054688, -1.1982421875, -0.2553710938, -1.6416015625, 0.837890625, -0.2658691406, -1.2568359375, 1.0146484375, -0.2369384766, 0.3139648438, -0.34375, 0.8583984375, -1.58984375, -0.1656494141, 0.1325683594, 0.681640625, 0.7734375, -1.83984375, -0.1837158203, -0.5732421875, 0.4094238281, 1.8203125, 0.1533203125, 0.1516113281, -0.1473388672, -0.0378723145, -0.1530761719, 0.6479492188, 1.05078125, -0.6791992188, -0.5595703125, -0.5610351562, -0.384765625, -0.6005859375, 0.6538085938, -0.4064941406, 0.9609375, 0.1877441406, 0.6040039062, -1.078125, 0.4040527344, -0.2602539062, -0.2980957031, -0.3500976562, -0.4445800781, 0.0798950195, -0.4123535156, -0.5234375, 0.0723266602, -0.3933105469, 0.4096679688, 0.1590576172, -0.2205810547, 0.1335449219, -0.7924804688, 0.6279296875, 0.63671875, -0.2471923828, 0.5576171875, 0.2829589844, 0.2152099609, -0.3020019531, -0.55078125, 0.3835449219, -0.7211914062, -0.314453125, -0.0610046387, 0.2353515625, 0.2172851562, 1.0419921875, 0.330078125, 0.2504882812, 0.8115234375, -0.1419677734, -0.1840820312, 0.7827148438, 0.6728515625, 0.3659667969, -0.3781738281, 1.38671875, 0.035369873, -1.0419921875, 1.0751953125, -0.039855957, -0.8916015625, -0.0579223633, 0.2297363281, -0.4899902344, -0.2204589844, -0.5463867188, -0.677734375, 0.6889648438, -0.6411132812, 0.3486328125, -0.525390625, 1.0556640625, -0.2126464844, -0.0087966919, -0.0003809929, -0.2741699219, -0.2172851562, 0.7138671875, 0.3308105469, -0.5771484375, -1.0888671875, 0.4116210938, 0.5595703125, -1.1630859375, -0.705078125, -0.1761474609, -0.6904296875, 0.1116943359, -0.353515625, -0.8046875, -0.80078125, -1.03515625, -0.2354736328, -0.0029983521, 0.3273925781, -0.4694824219, -1.359375, -0.1259765625, -1.07421875, -0.0768432617, -0.3435058594, -0.2709960938, 0.2398681641, 0.4528808594, 0.2064208984, -0.1490478516, -0.5947265625, -1.517578125, -0.2269287109, -0.75, 0.3024902344, 0.1341552734, -0.2905273438, -0.5668945312, 0.7646484375, 0.5166015625, 0.1634521484, 0.8872070312, -0.0217895508, 1.20703125, 0.0826416016, 1.1796875, -0.4497070312, 0.734375, 0.6899414062, -0.3190917969, -0.4995117188, -0.0813598633, 0.2272949219, -0.3522949219, 0.0552368164, -0.8940429688, -0.4914550781, 0.439453125, -0.515625, -0.4958496094, 1.2880859375, 0.2095947266, -1.7236328125, -0.6196289062, 0.2001953125, 0.3259277344, -0.1232910156, 0.2668457031, 0.2770996094, -0.5639648438, -0.3295898438, -0.7866210938, -0.3481445312, -0.1087036133, -0.6801757812, 0.392578125, -0.3566894531, -0.1440429688, -0.1572265625, -0.0829467773, 0.1561279297, 0.3002929688, 0.1948242188, -1.0146484375, -0.0610351562, -0.939453125, 0.3884277344, 0.3984375, 0.8671875, 0.28125, -0.3591308594, 0.117980957, -0.1300048828, -0.3659667969, -1.4423828125, 0.6245117188, 0.8681640625, 0.4436035156, -1.0849609375, 0.6411132812, 1.3984375, 0.1116943359, -0.3020019531, -0.216796875, 0.6069335938, 0.8422851562, 1.408203125, 1.0927734375, -0.0858154297, -0.9086914062, -0.6723632812, -0.1652832031, -0.1770019531, 0.677734375, -0.6547851562, 0.4658203125, 0.3505859375, -0.3188476562, 0.5327148438, -0.8735351562, -0.0242004395, -0.1802978516, 0.9765625, 0.5, 0.6015625, -0.6411132812, 0.845703125, 0.578125, 0.2415771484, 0.2866210938, 0.7470703125, -0.7280273438, -0.4079589844, -0.2734375, -0.5854492188, 0.3549804688, 1.111328125, 0.3110351562, -0.5737304688, 0.916015625, -0.1766357422, 0.5981445312, 0.607421875, -0.1249389648, 1.03125, -0.4609375, 0.2058105469, 0.2800292969, -0.1229248047, -1.43359375, 1.53515625, -0.5771484375, 0.359375, -0.5620117188, 1.052734375, 0.6108398438, 0.3559570312, 0.3828125, -0.6005859375, -0.5737304688, -0.5239257812, 0.6494140625, -0.6245117188, -1.31640625, 0.5375976562, -0.7260742188, 1.2255859375, 0.7763671875, -0.24609375, 0.3132324219, -0.1817626953, 0.93359375, -0.0104141235, 0.2357177734, -0.3742675781, -0.9907226562, 1.0615234375, -0.7431640625, 0.0177612305, 0.1320800781, 0.2912597656, -0.2653808594, -0.0140686035, -0.3193359375, -0.36328125, -0.9853515625, 0.662109375, 0.7045898438, 1.12890625, 0.1784667969, -0.4086914062, -0.2863769531, -0.6303710938, -0.8344726562, 0.5185546875, 0.7265625, 0.1730957031, -0.2103271484, 0.2824707031, -0.314453125, -1.107421875, 0.3757324219, 0.5952148438, 0.4487304688, 0.4951171875, -1.9951171875, -0.0035476685, -1.6982421875, -0.003068924, -1.4208984375, 1.1953125, 0.2020263672, 0.4892578125, -0.1437988281, 0.2126464844, -0.6977539062, -0.2880859375, -1.1943359375, -0.3649902344, -0.5649414062, 0.5712890625, -0.2504882812, 0.3464355469, -0.1546630859, -0.0173492432, -0.3913574219, -0.2578125, -0.4658203125, 0.720703125, 0.1215820312, -0.4853515625, 0.0923461914, -0.4091796875, 0.6625976562, 0.1271972656, -1.748046875, 0.8837890625, 0.4584960938, 0.3610839844, 0.0801391602, 0.0955810547, 0.396484375, 0.1398925781, 0.8325195312, -0.6166992188, -1.359375, 0.3112792969, -0.5908203125, -0.6396484375, -0.2116699219, 0.1752929688, -0.1170654297, 0.8466796875, -0.3657226562, -0.4248046875, -0.619140625, -0.0047721863, -0.0411682129, 0.0348815918, 0.2290039062, -0.4421386719, 1.5341796875, 0.1645507812, 0.51171875, -1.2216796875, 0.2600097656, -0.1882324219, 0.6220703125, -0.794921875, 0.962890625, -0.73828125, -0.4028320312, 0.2052001953, 0.3283691406, 0.572265625, 0.3317871094, 1.0244140625, 0.2487792969, -0.5224609375, 0.0758666992, 0.4028320312, 0.4155273438, -0.0927734375, 0.7426757812, -0.8544921875, 0.0077133179, -0.4516601562, 1.2353515625, 0.4636230469, 0.5053710938, -0.6318359375, 0.51953125, -0.6235351562, -0.857421875, -0.5361328125, 0.7880859375, -0.443359375, -0.2939453125, -0.8056640625, 0.2392578125, -0.3959960938, 0.3090820312, -0.4741210938, -0.255859375, -0.828125, -0.3764648438, -0.86328125, 0.4025878906, 0.896484375, 0.828125, 0.1617431641, 0.5112304688, -0.114440918, -0.9311523438, -0.0793457031, -0.8203125, 0.1301269531, -0.1467285156, 0.0110702515, -1.794921875, -0.5102539062, -0.4353027344, -0.689453125, 0.5317382812, 0.0957641602, 0.5751953125, 0.2076416016, 0.2004394531, -0.0333251953, -0.7690429688, -0.7978515625, -0.2086181641, 1.2705078125, 0.1257324219, 0.8022460938, -0.5341796875, -0.3383789062, 0.7260742188, -0.6313476562, 2.09765625, 0.0471801758, 0.0297088623, 0.6108398438, -0.6806640625, -0.1229858398, 0.2761230469, 0.0695800781, 0.2797851562, 0.4733886719, -0.3859863281, 0.2094726562, -0.642578125, -0.2590332031, -1.35546875, -0.6694335938, 0.0455627441, 0.1475830078, -0.3383789062, -0.1929931641, -0.53125, -0.2419433594, -0.3081054688, -0.2366943359, 0.2658691406, 0.2177734375, 0.5732421875, 0.322265625, -0.6118164062, 0.6694335938, -0.5581054688, -0.6918945312, -0.705078125, 0.1254882812, -0.2204589844, 0.1472167969, 0.9682617188, -0.8740234375, -0.7895507812, 0.7973632812, 0.2612304688, -0.4458007812, -1.9033203125, -0.6606445312, 0.2155761719, 0.5439453125, 0.3156738281, -1.294921875, 1.7080078125, -1.015625, -0.1015014648, -1.421875, -0.9975585938, 0.5810546875, -1.0791015625, 0.955078125, 0.2038574219, -0.0431213379, 0.1961669922, -0.3735351562, 0.3269042969, 1.08984375, 1.7216796875, -0.2805175781, -1.11328125, 0.4533691406, 0.3049316406, 0.4086914062, 0.6455078125, 0.671875, 0.5356445312, -0.3430175781, -0.1196899414, -0.662109375, 0.3479003906, 1.287109375, -0.1877441406, 0.3571777344, -0.7509765625, 0.7358398438, -0.2741699219, -0.7685546875, 0.3376464844, 0.3669433594, 0.7275390625, -0.7807617188, -0.1534423828, -0.4743652344, -0.69921875, -0.4753417969, 0.4606933594, 0.548828125, 0.2783203125, 0.3972167969, -1.0908203125, -0.8037109375, -0.1383056641, -0.5224609375, 0.3232421875, -0.9404296875, 0.5258789062, -0.5268554688, 0.1696777344, 0.6606445312, 0.3884277344, -0.5073242188, -0.2048339844, -0.0943603516, 1.2568359375, -0.94921875, 0.3623046875, 0.3308105469, 1.125, -0.59765625, 1.3046875, -0.1403808594, 0.7451171875, 0.3610839844, -12.4453125, 0.5986328125, -1.5107421875, -0.9331054688, 0.3366699219, -0.0516662598, 0.5668945312, -1.2373046875, -0.7158203125, 0.3293457031, -0.5639648438, -0.2122802734, -0.3911132812, -0.1821289062, 0.0905151367, -0.3293457031, -0.1091308594, -0.1790771484, 0.3449707031, 0.3920898438, -0.1572265625, 0.8408203125, -1.4677734375, -0.5322265625, -1.2919921875, -0.3798828125, -0.0980834961, 0.1920166016, 0.3046875, -0.1765136719, 0.1372070312, -0.748046875, -0.880859375, 1.7001953125, 0.6479492188, -1.365234375, 1.6396484375, -0.9262695312, -0.7299804688, -0.55078125, 0.2211914062, -1.2109375, -0.6840820312, 0.1467285156, -0.6220703125, -0.58984375, -0.1850585938, 0.7553710938, 0.0673828125, -0.0645751953, 0.2042236328, -0.5986328125, -0.1120605469, -0.3759765625, -0.4125976562, -1.5263671875, 0.5102539062, -0.1351318359, -0.7158203125, 1.1396484375, -0.5756835938, 0.6225585938, -0.8969726562, 0.73046875, -0.4807128906, -0.0685424805, 0.0364685059, -0.1685791016, -0.578125, 0.3828125, 0.0464172363, -0.7387695312, 1.412109375, -0.1301269531, 0.2797851562, 0.962890625, -1.2705078125, -0.1160888672, -1.2958984375, 0.8266601562, 0.4565429688, 0.5200195312 ]
Charged current interactions are one of the ways in which subatomic particles can interact by means of the weak force. These interactions are mediated by the and bosons. In simple terms Charged current interactions are the most easily detected class of weak interactions. The weak force is best known for mediating nuclear decay. It has very short range, but is the only force (apart from gravity) to interact with neutrinos. The weak force is communicated via the W and Z exchange particles. Of these, the W-boson has either a positive or negative electric charge, and mediates neutrino absorption and emission by or with an electrically charged particle. During these processes, the W-boson induces electron or positron emission or absorption, or changing the flavour of a quark as well as its electrical charge, such as in beta decay or K-capture. By contrast, the Z particle is electrically neutral, and exchange of a Z-boson leaves the interacting particles’ quantum numbers unaffected, except for a transfer of momentum, spin, and energy. Because exchange of W bosons involves a transfer of electric charge (as well as a transfer of weak isospin, while weak hypercharge is not transferred), it is known as “charged current”. By contrast, exchanges of Z bosons involve no transfer of electrical charge, so it is referred to as a “neutral current”. In the latter case, the word “current” has nothing to do with electricity – it simply refers to the Z bosons’ movement between other particles.
[ -1.1826171875, -0.6030273438, -0.3293457031, -0.6318359375, -0.2133789062, 0.5522460938, -0.3845214844, -0.1293945312, 0.3327636719, 0.5620117188, -0.4731445312, -0.1374511719, -0.5180664062, 0.8149414062, 0.8237304688, -0.0811767578, -1.0361328125, -0.6088867188, -0.357421875, 0.2917480469, -0.2310791016, 0.2875976562, 0.5668945312, 0.6328125, -0.6645507812, -0.7622070312, 0.124206543, 0.5981445312, -0.1706542969, -0.5141601562, -0.7001953125, 0.7436523438, -0.1811523438, -0.2578125, 0.1385498047, -0.0639038086, 0.3364257812, 0.818359375, -0.4509277344, 0.4438476562, -0.8969726562, 0.0122680664, 0.3835449219, -0.568359375, -1.6923828125, -0.419921875, -0.6606445312, -0.8256835938, -0.4035644531, 0.3874511719, -0.3271484375, 0.400390625, 0.6137695312, -0.2149658203, 0.2666015625, -0.2060546875, 0.92578125, -0.1871337891, 1.169921875, -0.580078125, -0.8032226562, 0.0080032349, -0.0639038086, -0.3579101562, -0.572265625, 0.088684082, 0.2360839844, 0.59375, -0.419921875, 0.3366699219, -0.912109375, -0.5473632812, 0.0289764404, -0.043548584, 0.1398925781, -0.671875, -0.2321777344, 0.1359863281, -0.2065429688, 0.1242675781, 0.427734375, -1.8076171875, -0.3381347656, -0.0293121338, -1.09765625, 0.876953125, -0.1799316406, -1.765625, -0.9741210938, 0.4892578125, 0.654296875, 0.0672607422, 0.396484375, 0.3874511719, 0.1700439453, 1.2353515625, -0.0838012695, -0.4392089844, 0.0253753662, 0.505859375, -1.1064453125, -0.2188720703, -0.3037109375, 0.1116333008, -0.1872558594, 0.6000976562, -0.1566162109, -0.4348144531, -0.6953125, -0.0407714844, 0.4836425781, 0.4177246094, 0.3149414062, -0.5283203125, -1.3408203125, 1.05859375, 0.0193481445, -0.69140625, 0.6313476562, -1.505859375, -1.0859375, 1.1904296875, 0.2368164062, -0.4538574219, -0.275390625, -0.0363464355, 0.6489257812, -0.7626953125, -0.4985351562, 0.3149414062, 0.8266601562, 0.0718383789, -0.6943359375, 0.2336425781, 0.9682617188, -0.08203125, -0.7006835938, 1.1376953125, -0.036529541, -0.4890136719, 0.1387939453, -0.4169921875, 0.9086914062, -0.1046142578, 0.0466918945, -0.2191162109, 0.6845703125, -0.4929199219, 0.0033187866, -0.5673828125, -0.2775878906, 0.2563476562, -0.5747070312, -0.2371826172, 0.3142089844, -0.6708984375, -0.2290039062, 0.1373291016, 0.833984375, -0.1282958984, -0.6743164062, -0.0291595459, 0.1369628906, -0.6591796875, 0.3122558594, -1.1728515625, -0.8530273438, 0.5703125, -0.1898193359, -0.0404968262, -0.544921875, -0.3093261719, 0.4807128906, 0.2155761719, -0.9497070312, 1.6923828125, -0.1628417969, 0.1685791016, 0.3403320312, 0.3356933594, -0.9423828125, -0.6752929688, 0.5258789062, -0.0618591309, 0.2247314453, -1.5888671875, -0.3562011719, 0.1359863281, 0.1898193359, -0.5268554688, 0.2983398438, 0.5161132812, 0.2622070312, -0.82421875, -1.2392578125, -0.5815429688, 1.14453125, 0.1909179688, 0.3354492188, 0.6953125, 0.5102539062, -0.1719970703, 0.3303222656, -0.9697265625, 0.2486572266, -0.4948730469, 0.3032226562, 1.142578125, 0.7255859375, -0.1132202148, -0.6538085938, 0.576171875, -0.3488769531, -0.28125, 0.2624511719, 0.5078125, 0.0549316406, 0.234375, -0.73828125, 0.232421875, -0.783203125, 0.2902832031, -0.0203552246, -1.1025390625, -0.5307617188, 0.6743164062, -0.1599121094, -0.8818359375, 0.6577148438, -0.0004546642, 1.4755859375, -0.3542480469, 0.814453125, -0.2313232422, 0.5126953125, 0.1087036133, -0.69921875, -0.1840820312, -0.5107421875, 0.845703125, -0.8461914062, -0.118347168, -1.1689453125, -0.3208007812, 0.1945800781, -1.541015625, 1.2353515625, -0.4699707031, 1.0771484375, 0.953125, -0.51171875, -0.1492919922, 0.4716796875, -0.4223632812, 0.4799804688, -0.1802978516, 0.4184570312, 0.7890625, 0.1287841797, 0.814453125, -1.2060546875, 0.4594726562, 2.029296875, 0.3779296875, 0.78125, -0.2406005859, -0.1334228516, -0.1370849609, 0.3857421875, 0.5161132812, -0.0076332092, 0.7260742188, -0.116394043, 0.412109375, -0.1553955078, -0.3076171875, -0.5830078125, -0.0352172852, 0.4558105469, -0.3332519531, 0.8735351562, 0.73046875, 0.4516601562, -0.1862792969, 0.7626953125, 0.2305908203, -0.8999023438, 0.6240234375, 0.3920898438, 1.037109375, 0.3520507812, 0.33203125, -0.1320800781, 1.1171875, -0.3969726562, 0.5727539062, -0.548828125, 0.6015625, -1.146484375, -0.8071289062, 0.4006347656, -0.6020507812, 0.0154190063, -0.650390625, 0.5732421875, -0.1274414062, -0.2049560547, 0.873046875, 0.4616699219, 0.3757324219, 0.5649414062, -0.4077148438, 0.0933837891, 0.1391601562, 0.509765625, -0.6166992188, 0.0628051758, -1.1611328125, 1.0107421875, -0.859375, -1.2607421875, -0.9287109375, 0.3803710938, 0.6674804688, 0.5034179688, 0.6201171875, -0.3923339844, 1.2998046875, -0.1520996094, 0.46875, -0.26953125, -1.197265625, 0.2990722656, 0.6958007812, 0.4130859375, -0.6538085938, 0.7568359375, 0.3884277344, -0.7426757812, 0.4248046875, 0.3505859375, 0.1024780273, 0.6279296875, -0.7690429688, -0.9125976562, 0.3234863281, -0.71875, -0.0706787109, 0.8588867188, -0.1737060547, -0.3608398438, -0.3498535156, -0.857421875, 0.6875, 0.1649169922, 0.4880371094, 0.0266571045, -0.0269622803, -0.0903320312, 0.3432617188, 0.1862792969, 1.2041015625, -0.3244628906, 0.6088867188, -1.11328125, 0.0209350586, 0.2526855469, -0.76953125, 0.595703125, -0.1342773438, 0.685546875, 1.1611328125, -0.1904296875, -0.39453125, 0.0279083252, -0.2810058594, 1.4130859375, -0.4907226562, -0.2342529297, -0.7426757812, -0.4147949219, 0.8842773438, -0.5283203125, -0.3735351562, 0.2434082031, -0.1045532227, -0.3771972656, -0.0211029053, -0.4506835938, -1.1416015625, -0.5126953125, -0.7778320312, -0.2976074219, 0.2998046875, -1.455078125, 0.53125, 0.2902832031, -0.7963867188, -0.8813476562, 1.833984375, 0.0426635742, -0.3225097656, -0.775390625, -0.7485351562, 0.5771484375, 0.1256103516, 0.0467834473, -0.1606445312, 0.3889160156, 0.0534057617, -0.0590515137, -0.5727539062, -0.6376953125, -0.1189575195, 0.2709960938, 0.2387695312, 0.2110595703, 0.9868164062, -0.2484130859, -0.2624511719, -0.5717773438, -0.1387939453, 0.892578125, 1.2548828125, -0.5263671875, 0.6376953125, 0.1320800781, 0.0875854492, 0.0877075195, 0.2875976562, 0.4602050781, 0.140625, -0.9189453125, 0.3349609375, -0.2260742188, 0.1783447266, 0.0024299622, 0.0952148438, 0.1336669922, -0.4921875, -0.3352050781, 0.5703125, -1.07421875, 0.6645507812, 2.115234375, 0.4326171875, -0.6665039062, 0.5751953125, 0.3249511719, -0.0594482422, -0.685546875, -1.140625, -0.376953125, 1.240234375, 0.2763671875, -1.27734375, -0.1950683594, 1.177734375, 0.6245117188, 0.7211914062, -0.7431640625, -0.4055175781, -0.0792236328, -1.064453125, 0.6215820312, -0.2890625, -0.4367675781, 1.34765625, -1.0302734375, -1.4111328125, 0.3933105469, -0.3569335938, -0.8237304688, 0.0277252197, -0.2232666016, -1.0849609375, -0.4497070312, 0.3132324219, -0.1734619141, -0.4299316406, 0.0493469238, 0.4184570312, 0.5229492188, -0.619140625, -1.0341796875, -0.7709960938, -0.0601196289, 0.732421875, -1.228515625, 1.3076171875, -0.2805175781, -0.8579101562, 0.2734375, -0.8315429688, -0.8466796875, -0.1380615234, 0.4931640625, -0.8598632812, -0.1717529297, 0.8984375, 0.83203125, -0.7270507812, -0.067565918, 0.4992675781, 0.9755859375, 1.08203125, 0.8696289062, -0.1318359375, 0.5927734375, 1.6298828125, -0.7739257812, 2.189453125, 0.8720703125, -0.3020019531, -0.0436096191, -0.0325927734, -0.2958984375, 0.6694335938, -0.0064468384, 0.4421386719, 0.1245727539, -0.2492675781, -0.0894165039, 0.0467834473, -0.3989257812, 0.3061523438, -0.3193359375, -0.5024414062, 0.0021724701, -0.2248535156, 0.4431152344, -0.5258789062, 0.7221679688, 0.0741577148, -0.2868652344, -0.2009277344, 0.2492675781, 0.3239746094, -0.5795898438, 0.3203125, 0.5927734375, -1.171875, -1.873046875, 0.6254882812, -0.8583984375, 0.0264892578, 0.6235351562, -1.0927734375, -0.2138671875, -0.8022460938, 0.4089355469, 0.1117553711, 0.4326171875, 0.4033203125, 0.3552246094, 0.1518554688, -0.810546875, -0.8364257812, -0.0463562012, -0.9565429688, -0.3803710938, -0.0639038086, -0.0758666992, 0.3542480469, 0.7504882812, 0.0151138306, 0.3288574219, -0.4108886719, -0.3989257812, -0.4914550781, -1.046875, 0.1636962891, 0.2878417969, 1.4365234375, 0.4475097656, -0.2496337891, 0.1519775391, -0.4252929688, 0.6337890625, 0.2800292969, 0.830078125, -0.4235839844, -0.77734375, -0.4904785156, -0.8393554688, 0.02394104, 0.2114257812, -1.7197265625, -0.4194335938, 0.2218017578, -0.7670898438, 1.3740234375, -0.8715820312, -0.4841308594, 0.587890625, -0.0068435669, -1.0146484375, 0.104309082, 0.62109375, 0.2802734375, -0.3391113281, 0.8276367188, -0.3488769531, 0.1591796875, -0.2072753906, -0.517578125, 1.181640625, 0.1484375, 0.7084960938, 0.4125976562, 0.1857910156, -0.3159179688, -0.1917724609, 0.1650390625, -0.0079116821, 1.1298828125, -0.8608398438, -0.66015625, -0.3442382812, -1.2021484375, -0.7333984375, 1.7587890625, 0.4340820312, -0.5126953125, -0.0895385742, 1.2001953125, 0.8198242188, 0.0178375244, -0.8994140625, -0.505859375, -0.8715820312, -0.1762695312, 0.7348632812, 0.3952636719, 0.0404052734, -0.3645019531, -0.287109375, 0.3862304688, -0.0383605957, 0.0550842285, 0.1137084961, -0.3911132812, -1.701171875, -1.17578125, -1.404296875, 0.0577392578, 0.4802246094, -0.6645507812, -0.9755859375, 0.3679199219, -0.2612304688, -0.8471679688, -0.2668457031, 0.6469726562, -1.47265625, -0.349609375, -1.28515625, -0.2088623047, 0.4467773438, 0.3513183594, 0.4079589844, -0.806640625, 0.1651611328, 0.3251953125, 0.3154296875, -0.3937988281, 0.30078125, 1.0390625, -0.4011230469, -0.5649414062, 0.35546875, -0.4606933594, -0.2067871094, 0.671875, -0.1560058594, -0.630859375, 0.775390625, 0.3149414062, 0.931640625, 0.2661132812, 0.6455078125, -0.6762695312, 0.6821289062, 0.2895507812, -0.978515625, -0.0648193359, 0.1353759766, 1.2158203125, -0.4248046875, -0.2244873047, -0.501953125, -0.3325195312, -0.841796875, 0.2045898438, -0.7431640625, -0.5112304688, -0.7036132812, -0.4658203125, -1.091796875, 0.6337890625, 0.0700073242, 0.4958496094, -0.2485351562, -0.0694580078, -0.2117919922, -0.0917358398, 0.3742675781, -0.8291015625, 1.1689453125, -0.4035644531, -0.4753417969, -0.1721191406, 0.263671875, 0.1373291016, 0.591796875, -0.0723266602, -1.26953125, 0.2094726562, -0.4770507812, -0.8579101562, 0.0900878906, -1.3623046875, 0.6196289062, -0.2729492188, 0.1075439453, -0.3471679688, 0.1873779297, -0.7646484375, 0.0481872559, 0.1662597656, -0.6108398438, -0.509765625, 0.51171875, -0.1634521484, 0.6123046875, 1.015625, 0.1496582031, 0.1416015625, -0.8452148438, -0.0825195312, -0.2061767578, -0.6499023438, 0.7514648438, 0.708984375, -0.58984375, 0.3891601562, 0.6103515625, 0.384765625, -0.3129882812, -0.6513671875, 0.3859863281, 0.7182617188, -0.3669433594, -0.62890625, 0.1260986328, -0.6748046875, -0.9086914062, -0.4975585938, -0.1986083984, 1.1328125, 0.2802734375, -0.3422851562, -0.4633789062, 0.2308349609, 1.3330078125, 0.5185546875, -0.9521484375, 1.1171875, 0.68359375, 0.4697265625, -0.482421875, 0.291015625, 0.3505859375, -0.58984375, -1.4599609375, 0.62109375, -0.5732421875, -0.5029296875, -0.2127685547, -0.5268554688, 0.6015625, -0.114074707, -0.8061523438, -1.2138671875, -0.6411132812, 1.201171875, 0.1107177734, 0.15625, 0.1322021484, -0.701171875, -0.2875976562, -0.4152832031, -0.0194396973, 0.1226806641, -0.8100585938, -0.0227661133, 0.3037109375, -0.4692382812, 0.314453125, 0.5458984375, 0.5356445312, -0.6088867188, 0.4660644531, -1.2001953125, 0.1036376953, -0.8447265625, 0.3459472656, 0.4270019531, -0.3125, 0.0449523926, 0.3581542969, -0.2081298828, 0.2521972656, 0.2751464844, -0.0099639893, -0.8422851562, 0.3703613281, 0.958984375, -0.5893554688, -0.2868652344, -0.376953125, 0.8471679688, 0.3615722656, 0.3103027344, 1.8837890625, -0.6635742188, -0.6264648438, 1.3115234375, -0.8056640625, -0.4079589844, 0.3227539062, 0.5927734375, -0.2172851562, -0.3596191406, -0.2196044922, 0.6372070312, 0.2729492188, -0.2180175781, -1.126953125, -0.7075195312, 0.0716552734, 0.0819702148, -0.3352050781, 0.552734375, 0.3625488281, -0.9248046875, 0.0286560059, 0.063659668, 0.6240234375, 0.2449951172, -0.7333984375, -0.482421875, -0.4963378906, 0.0304870605, -0.4260253906, -0.5068359375, -0.5327148438, 0.2905273438, -0.2629394531, -0.7329101562, -0.0748291016, 0.1590576172, -0.7211914062, -0.1693115234, -0.0479431152, 0.0520324707, -0.28515625, -0.4504394531, -0.0895996094, -0.4685058594, 0.89453125, -0.0740356445, 0.4235839844, 0.0069007874, -0.7036132812, -0.0797729492, 0.1213378906, -0.4106445312, 0.3735351562, -0.57421875, 1.025390625, -1.06640625, -0.3991699219, -0.0245666504, -0.0243530273, -0.0637207031, 1.23828125, 0.3718261719, -0.4899902344, -0.3295898438, -0.1794433594, 0.0222167969, 0.0590209961, 0.8041992188, -0.5170898438, 0.2349853516, -0.3518066406, 0.8461914062, -0.8940429688, 0.3977050781, 0.1772460938, -0.509765625, 0.0686035156, 0.533203125, -1.103515625, 0.6513671875, -0.5268554688, -0.1539306641, 0.9809570312, -0.0516052246, -0.0433349609, -0.4089355469, -0.5341796875, 0.8520507812, 0.5004882812, -0.060333252, -0.039642334, 0.1892089844, -0.5380859375, -1.0283203125, -0.0910644531, 0.5712890625, -0.3022460938, 1.3359375, -0.3125, 0.7006835938, 1.154296875, 0.4987792969, 0.1490478516, 0.90234375, -0.80859375, 0.1591796875, 1.0927734375, -0.3068847656, -0.5234375, -0.0251159668, 0.935546875, -0.2437744141, 0.2819824219, -0.2425537109, -0.1306152344, -0.2124023438, -12.8203125, -0.921875, -0.2719726562, -0.302734375, 0.0259246826, 0.2236328125, 0.1826171875, -0.4934082031, -0.4245605469, 0.3864746094, -0.75390625, 0.3591308594, 0.5209960938, -0.6938476562, 0.056427002, -0.2521972656, -0.6538085938, 0.98828125, -0.7407226562, 0.8413085938, 0.875, 0.7446289062, 0.1651611328, 0.2805175781, -0.9765625, -0.1860351562, 0.2741699219, 0.1056518555, 0.0040855408, 0.0466918945, -0.4267578125, -0.841796875, 0.3576660156, 0.7919921875, 1.1689453125, 0.2993164062, -0.1107788086, 0.8491210938, -0.8647460938, 0.1622314453, 0.9267578125, 0.2421875, -0.1959228516, 0.0662231445, 0.9799804688, 0.4147949219, 0.6127929688, -0.0073547363, -0.3146972656, -0.4885253906, 0.4621582031, 0.4140625, 0.0103607178, -0.2058105469, -0.7172851562, -0.431640625, 0.4057617188, 0.0487365723, 0.6474609375, -0.6586914062, -1.0048828125, 0.9008789062, -0.525390625, -0.7905273438, 0.150390625, 0.1235961914, 0.0843505859, 0.4260253906, -0.4125976562, -0.0051574707, -0.3442382812, -0.166015625, -0.5639648438, 1.1953125, -0.1639404297, 0.970703125, 0.6088867188, 0.2353515625, 0.2744140625, 1.775390625, -0.4428710938, -0.9174804688 ]
Definition The name 'charged current' arises due to currents of fermions coupled to the W bosons having electric charge. For example, the charged current contribution to the → elastic scattering amplitude is: where the charged currents describing the flow of one fermion into the other are given by: The W-Boson can couple to any particle with weak isospin (i.e. any left-handed Standard Model fermions). See also Neutral current W and Z bosons Electroweak theory Notes References
[ -0.9047851562, -0.8271484375, -0.0558166504, -0.8569335938, -0.1627197266, 0.9384765625, -0.5122070312, -0.2423095703, 0.2395019531, 0.5649414062, -0.2434082031, -0.60546875, -0.4008789062, 0.9858398438, 1.0498046875, -0.0175933838, -0.8950195312, -0.740234375, -0.1970214844, 0.6489257812, -0.5092773438, 0.1243896484, 0.623046875, 0.9038085938, -0.3186035156, -0.5791015625, 0.9604492188, 0.4584960938, 0.1838378906, -0.3354492188, -0.6997070312, 0.96875, -0.365234375, -0.0762329102, -0.8969726562, 0.3549804688, 0.0776367188, 0.8427734375, -0.6206054688, -0.1184692383, -0.2639160156, -0.4609375, 0.1561279297, -0.90234375, -1.5322265625, -0.4768066406, -0.6127929688, -1.1474609375, -0.3444824219, -0.6796875, -0.1522216797, 0.3864746094, 0.2468261719, -0.0152053833, -0.1926269531, -0.3596191406, 0.7680664062, 0.4934082031, 1.501953125, -0.3740234375, -1.328125, 0.345703125, -0.4116210938, -0.4111328125, -0.3581542969, -0.0825195312, 0.1553955078, 0.7998046875, -0.3488769531, -0.23046875, -1.427734375, -0.4987792969, 0.1138305664, -0.2788085938, -1.1220703125, -0.1824951172, -0.8955078125, 0.9448242188, 0.1213378906, 0.1755371094, -0.1096191406, -0.8837890625, -0.2014160156, -0.2235107422, -0.515625, 1.4052734375, -0.2016601562, -1.11328125, -0.5869140625, 1.3212890625, 0.5581054688, 0.0574645996, 0.2395019531, -0.1102294922, -0.094543457, 1.1962890625, -0.1861572266, -0.2004394531, -0.0941162109, 0.0246887207, -0.7563476562, -0.3359375, 0.1922607422, -0.1448974609, -0.87890625, 1.56640625, -0.9975585938, 0.2265625, -0.3447265625, -0.1647949219, 0.7138671875, 0.10546875, 0.544921875, -0.3176269531, -1.2861328125, 0.8950195312, 0.2524414062, -0.1822509766, 0.5249023438, -1.3720703125, -0.720703125, 1.0810546875, -0.0769042969, -0.2900390625, 0.1029663086, -0.1237792969, 0.8759765625, 0.015007019, -0.3149414062, 0.7407226562, 0.2893066406, -0.1403808594, -1.0703125, 0.2307128906, 0.2227783203, -0.8393554688, -0.767578125, 1.359375, 0.61328125, -0.3410644531, -0.625, 0.3413085938, 0.5922851562, -0.1159667969, -0.0219268799, -0.0328369141, 0.8193359375, -0.0688476562, -0.3190917969, -0.3903808594, -0.9736328125, 0.7768554688, -1.1259765625, 0.1751708984, 0.4528808594, -1.255859375, -0.640625, 0.6157226562, 0.2442626953, 0.0186157227, -0.6342773438, -0.120300293, 0.1126708984, -0.3806152344, -0.2208251953, -0.291015625, -0.7177734375, -0.0764770508, -0.4699707031, -0.03074646, -0.6606445312, -0.3469238281, 0.0013494492, -0.7060546875, -0.7456054688, 1.181640625, -0.1407470703, 0.1285400391, 0.2452392578, 0.3217773438, -0.9165039062, -0.9194335938, 0.4208984375, -0.646484375, 0.1840820312, -1.0166015625, -0.3908691406, 0.1597900391, -0.5395507812, -0.1435546875, 0.4360351562, 0.39453125, -0.2639160156, -0.9951171875, -0.8623046875, -0.2469482422, 0.1311035156, 0.7548828125, 0.1673583984, 0.4658203125, 0.2556152344, 0.2893066406, 0.1151123047, -1.109375, 0.5380859375, -1.142578125, 1.34765625, 1.05078125, 0.6850585938, -0.4333496094, -0.7309570312, 0.833984375, -0.4685058594, -0.5888671875, -0.5522460938, -0.2004394531, 0.4729003906, 0.1575927734, -0.2496337891, 0.6440429688, -0.5556640625, 0.4035644531, 0.3364257812, -0.8955078125, -0.2121582031, -0.2478027344, 0.4770507812, 0.3051757812, 1.2041015625, 0.3024902344, 1.2587890625, 0.3708496094, 0.7075195312, -0.306640625, 0.9770507812, 0.4858398438, -0.3239746094, 0.0949707031, -0.3100585938, 1.205078125, -0.9311523438, -0.4924316406, -0.8159179688, -1.04296875, 0.6479492188, -1.1494140625, 1.2373046875, -0.6596679688, 0.6108398438, 0.6728515625, -0.2993164062, 0.4016113281, -0.1385498047, -0.501953125, -0.2526855469, -0.0789794922, 1.17578125, 1.8505859375, 0.37890625, 0.6337890625, -1.2822265625, -0.0986938477, 1.2978515625, -0.6669921875, 0.4633789062, -0.6240234375, -0.2707519531, -0.1943359375, 0.1599121094, 0.7783203125, 0.3781738281, 0.124206543, -0.2702636719, 0.6337890625, -0.7036132812, -0.2054443359, -0.7524414062, 0.4526367188, -0.0335388184, 0.1826171875, 0.88671875, 0.703125, -0.0518188477, -0.3078613281, 0.9604492188, -0.0493469238, -0.998046875, 0.6220703125, 0.6220703125, -0.0453186035, 0.8129882812, -0.3029785156, 0.3420410156, 0.7084960938, -0.1617431641, 0.4130859375, -0.7221679688, 0.3051757812, -1.037109375, -0.8193359375, 0.4411621094, -0.1287841797, 0.5185546875, -0.2844238281, 0.7202148438, -0.3701171875, 0.0244598389, 0.5078125, -0.3544921875, 0.4851074219, 0.9331054688, -0.3393554688, -0.4230957031, 0.1003417969, 0.3884277344, -0.6508789062, -0.4372558594, -1.4130859375, 0.939453125, -0.0733032227, -0.6044921875, -1.046875, 0.1168823242, 0.9448242188, 0.3234863281, 0.7885742188, -0.8911132812, 1.240234375, -0.578125, 0.6572265625, -0.103515625, -0.7666015625, -0.0997314453, 0.4187011719, -0.1890869141, -0.6596679688, 0.5278320312, -0.2561035156, -0.5239257812, 0.541015625, 0.1768798828, -0.2631835938, 0.2756347656, -0.7329101562, -0.6469726562, -0.4230957031, -0.7973632812, -0.4936523438, 0.7260742188, -0.2390136719, -0.8735351562, 0.40234375, -0.591796875, 0.7856445312, 0.5981445312, -0.1239624023, 0.2056884766, -0.1525878906, -0.2670898438, 0.8403320312, 0.6596679688, 0.7436523438, -0.7094726562, 0.4057617188, -0.1595458984, -0.6694335938, 0.5932617188, -0.6704101562, 0.57421875, -0.1787109375, 0.5107421875, 0.8720703125, -0.14453125, -0.53515625, 0.0099105835, -0.4074707031, 1.4423828125, -1.068359375, 0.1145629883, -0.3540039062, -0.4873046875, 0.8662109375, -0.2463378906, -0.8247070312, 0.6567382812, -0.1635742188, 0.5053710938, -0.4475097656, 0.83984375, -0.6875, -0.5522460938, -1.1015625, 0.052947998, 1.5263671875, -1.4326171875, 0.2937011719, 0.341796875, 0.0406188965, -0.1954345703, 1.97265625, 0.33984375, -0.0413818359, -0.7890625, -0.9106445312, 1.0478515625, 0.2819824219, 0.4763183594, -0.1133422852, 0.2132568359, 0.5947265625, 0.0372009277, -1.068359375, -0.9150390625, 0.32421875, -0.3315429688, 0.4208984375, 0.7124023438, 0.7836914062, -0.2067871094, -0.90625, -0.8647460938, -0.2731933594, 0.3601074219, 0.9526367188, -0.0349121094, 0.4650878906, -0.1207885742, 0.197265625, 0.728515625, 0.0985107422, 0.7807617188, 0.353515625, -0.5424804688, 0.1555175781, 0.4438476562, -0.5908203125, -0.5122070312, 0.1978759766, -0.1497802734, -0.51953125, -0.548828125, 0.79296875, -0.7622070312, 0.7700195312, 1.765625, 0.50390625, 0.513671875, -0.0004887581, -0.0872802734, -0.3891601562, -0.4118652344, -0.9750976562, -0.828125, 1.1884765625, 0.3752441406, -1.3935546875, -0.0173492432, 0.4719238281, 0.7626953125, -0.0679931641, -0.77734375, -0.3569335938, -0.6196289062, -1.05078125, 0.3020019531, 0.1024169922, 0.2052001953, 1.17578125, -1.3466796875, -1.5654296875, 0.4260253906, -0.1560058594, -0.2856445312, 0.8701171875, -0.2990722656, -1.14453125, -0.134765625, 0.5014648438, 0.1506347656, -0.6166992188, -0.3012695312, 0.56640625, 0.1882324219, -0.7973632812, -0.0333862305, -0.4450683594, -0.2142333984, 0.56640625, -1.57421875, 1.7919921875, 0.0877075195, -0.8198242188, 0.2023925781, -0.9482421875, -0.9379882812, -0.1639404297, 0.61328125, -0.7143554688, -0.2763671875, 0.6401367188, 0.6201171875, -1.09765625, 0.5634765625, 0.0131149292, 0.9760742188, 0.6708984375, 0.8115234375, -0.2110595703, 0.24609375, 1.025390625, -1.064453125, 1.7109375, 0.3791503906, -0.5478515625, 0.3244628906, -1.048828125, 0.2150878906, 0.6787109375, 0.2036132812, 0.0659790039, 0.3786621094, -0.2624511719, 0.0573120117, 1, -0.0454101562, 0.9663085938, -0.8754882812, -0.6904296875, -0.4438476562, -0.0393066406, 0.0059356689, -0.2780761719, 0.9643554688, 0.8740234375, 0.1628417969, -0.7260742188, 0.595703125, -0.5307617188, -1.3134765625, 0.3229980469, 0.3134765625, -1.728515625, -2.1484375, 1.091796875, -0.4516601562, 0.96484375, 0.0183868408, -0.998046875, -0.2437744141, -1.41796875, 0.7758789062, 0.0203399658, 0.4653320312, 0.5185546875, -0.3200683594, -0.2983398438, -0.6372070312, -0.78515625, 0.1518554688, -0.6411132812, -0.6040039062, 0.1193237305, -0.1813964844, 0.564453125, 0.4182128906, 0.6533203125, 0.6635742188, 0.6088867188, -0.2340087891, -0.5888671875, -1.3896484375, -0.0095367432, 0.0383605957, 1.650390625, 0.69921875, -0.1141357422, 0.8828125, -0.0863647461, 0.2442626953, 0.3139648438, 1.490234375, -0.3471679688, -1.2783203125, -0.8041992188, -0.7534179688, 0.5185546875, 0.4614257812, -1.064453125, -0.1856689453, -0.0380859375, -0.46875, 1.51171875, -0.25390625, -0.7373046875, 1.3564453125, -0.0978393555, -1.5107421875, -0.071472168, 0.4897460938, 0.375, -0.7265625, 0.6298828125, -0.0537719727, 0.6831054688, -0.8764648438, -0.5458984375, 0.7895507812, 0.0982666016, 0.5234375, 0.2170410156, -0.0657348633, -0.357421875, 0.0958251953, 0.3479003906, -0.4665527344, 1.0078125, -0.9487304688, -0.2954101562, 0.4201660156, -0.9379882812, -0.525390625, 1.4384765625, 0.7529296875, 0.373046875, -0.4326171875, 1.19140625, 1.0849609375, -0.2341308594, -0.7314453125, -0.0588684082, -1.1845703125, 0.0177612305, 0.6459960938, 0.2127685547, -0.067565918, 0.0323181152, -0.0586547852, 0.8784179688, 0.5366210938, -0.0300750732, 0.2097167969, 0.4948730469, -2.1328125, -0.8842773438, -1.166015625, -0.6166992188, 0.7939453125, -0.4763183594, -1.9091796875, 0.6235351562, 0.0092010498, -0.921875, 0.1931152344, 0.3376464844, -1.5869140625, 0.022064209, -1.1650390625, -0.6640625, 0.0389404297, 0.8315429688, 0.51171875, -0.6962890625, 0.982421875, 0.1184082031, 0.1342773438, -0.0379333496, 0.2561035156, 1.1455078125, -0.4458007812, -0.544921875, 0.4416503906, -0.6098632812, -0.2058105469, 1.1474609375, -0.4675292969, -0.5874023438, -0.080871582, 0.2561035156, 1.1083984375, 0.2868652344, 0.9599609375, -0.083190918, 0.2885742188, 0.6704101562, -1.3896484375, 0.3334960938, 0.1870117188, 0.4194335938, 0.8452148438, -0.3266601562, -1.3037109375, -0.2028808594, -1.04296875, -0.096862793, -0.8388671875, -0.6342773438, -0.55859375, -0.6450195312, -0.7890625, 0.7612304688, 0.0292358398, 0.4187011719, 0.1546630859, -0.5590820312, -0.4711914062, -0.1242675781, 0.3010253906, -0.9067382812, 0.7827148438, -0.6518554688, -0.9897460938, -0.7177734375, -0.0762329102, 0.5336914062, 0.69921875, -0.1076660156, -1.1474609375, 0.6635742188, -0.3803710938, -1.505859375, 0.1038208008, -1.1796875, 0.6806640625, -0.4958496094, 0.1357421875, 0.0060005188, 0.865234375, -1.009765625, 0.27734375, 0.0456237793, -0.1802978516, -0.8549804688, 0.5590820312, -0.6381835938, 0.6049804688, 0.5053710938, 0.2692871094, -0.109375, -1.291015625, -0.8354492188, -0.6049804688, -0.5170898438, 0.5610351562, 0.3720703125, -1.1435546875, 0.6396484375, 1.15234375, 0.2768554688, 0.1575927734, -1.353515625, 1.05078125, 0.7099609375, -0.1623535156, -0.4567871094, -0.3488769531, -1.2705078125, -1.185546875, -0.2076416016, -0.3188476562, 0.5073242188, 0.1241455078, -0.2971191406, -0.1315917969, 0.3884277344, 0.619140625, 0.1622314453, -0.6376953125, 0.7983398438, 0.8334960938, 1.130859375, 0.1102294922, 0.6948242188, 0.1180419922, -0.6533203125, -1.1767578125, -0.2768554688, -0.2653808594, -0.049041748, -0.0163116455, -0.4411621094, 0.7905273438, -0.1966552734, -0.896484375, -0.61328125, -0.2156982422, 0.9819335938, 0.599609375, -0.0510253906, 0.0319213867, -1.26953125, 0.028213501, -0.6625976562, -0.4201660156, 0.83984375, -0.9370117188, 0.1293945312, 0.2624511719, -0.826171875, 0.2805175781, 0.2462158203, 0.3583984375, -0.3449707031, -0.1475830078, -0.697265625, -0.0066452026, -0.5424804688, 0.8081054688, 0.6186523438, 0.2000732422, 0.1693115234, 0.62890625, -0.3129882812, 1.2041015625, 1.068359375, 0.5336914062, -0.0088424683, 0.4685058594, 0.5922851562, -0.4072265625, 0.1278076172, -0.4733886719, 0.9765625, 0.0091552734, 0.9223632812, 1.22265625, -0.6782226562, -0.9755859375, 0.69921875, -1.33203125, -0.5043945312, 0.7016601562, 0.9755859375, -0.7299804688, -0.4731445312, 0.2215576172, 0.7456054688, -0.1750488281, 0.0250854492, -0.7978515625, -0.79296875, 0.1623535156, -0.3625488281, -0.6079101562, 0.1634521484, 0.4450683594, -0.7529296875, 0.25390625, -0.3098144531, 0.2717285156, 0.0181427002, -0.4604492188, -0.9140625, -0.5966796875, 0.1934814453, -0.2150878906, -1.0986328125, -0.7646484375, 0.0960693359, -0.0733032227, -0.2359619141, 0.1452636719, 0.5703125, -0.6552734375, -0.2163085938, -0.4826660156, 0.3029785156, -0.4711914062, -1.048828125, -0.4440917969, -0.2819824219, 0.5463867188, 0.0669555664, -0.1304931641, 0.0474243164, -1.103515625, 0.0881347656, 0.2337646484, -0.1363525391, -0.2502441406, -0.2277832031, 0.96484375, -1.251953125, -0.2177734375, -0.0971679688, 0.794921875, 0.4682617188, 1.119140625, 0.6362304688, -0.2001953125, -0.7397460938, 0.1275634766, -0.0989379883, 0.2335205078, 0.5444335938, -0.3361816406, 0.5458984375, -0.2155761719, 0.85546875, -0.591796875, 0.4677734375, 0.2290039062, -1.158203125, 0.6274414062, 1.0166015625, -0.6328125, 0.8935546875, -0.4711914062, -1.052734375, 0.7290039062, -0.3715820312, -0.5034179688, 0.0321960449, -0.8979492188, 0.7294921875, 0.6831054688, 0.2493896484, -0.2193603516, 0.4055175781, -0.5185546875, -1.5615234375, -0.017364502, 0.9375, -0.084777832, 0.4619140625, 0.3935546875, 0.5600585938, 0.9877929688, 0.4575195312, 1.0751953125, 0.6762695312, -0.6030273438, 0.6489257812, 0.837890625, -0.5263671875, -0.1646728516, -0.2551269531, 0.6704101562, -0.7016601562, 0.6953125, -0.5346679688, 0.0831298828, -0.1806640625, -11.515625, -1.4619140625, -0.1948242188, -0.4143066406, -0.5366210938, -0.2407226562, -0.3649902344, -0.5556640625, -0.3344726562, -0.392578125, -0.7041015625, 0.4223632812, 0.4467773438, -0.1276855469, 0.1557617188, 0.3623046875, -1.0546875, -0.1585693359, -0.0531311035, 0.6049804688, 0.7426757812, 0.8549804688, -0.0246429443, 0.0439758301, -0.599609375, 0.7524414062, 0.4343261719, -0.2072753906, -0.625, -0.0216522217, 0.2504882812, 0.1267089844, 0.2471923828, 0.3676757812, 1.14453125, -0.1281738281, -0.3298339844, 1.5693359375, -0.7729492188, -0.0650024414, 0.751953125, -0.1334228516, -0.6572265625, 0.0857543945, 0.1205444336, 0.5673828125, 0.705078125, -0.3588867188, -0.4255371094, -0.9624023438, 0.2990722656, 0.1942138672, 0.2385253906, 0.2939453125, -0.6372070312, -0.5532226562, 0.9296875, -0.0897827148, -0.4694824219, 0.2661132812, -1.140625, 0.2359619141, -1.2275390625, -0.4311523438, -0.1741943359, 0.0772094727, -0.0336914062, 0.0110855103, -0.6616210938, 0.1719970703, 0.1485595703, -0.291015625, 0.4167480469, 1.107421875, -0.4174804688, -0.0403442383, 1.0205078125, -0.2048339844, -0.0697021484, 2.01171875, -0.2222900391, -0.8540039062 ]
In mathematics, De Gua's theorem is a three-dimensional analog of the Pythagorean theorem named after Jean Paul de Gua de Malves. It states that if a tetrahedron has a right-angle corner (like the corner of a cube), then the square of the area of the face opposite the right-angle corner is the sum of the squares of the areas of the other three faces: Generalizations The Pythagorean theorem and de Gua's theorem are special cases () of a general theorem about n-simplices with a right-angle corner. This, in turn, is a special case of a yet more general theorem by Donald R. Conant and William A. Beyer, which can be stated as follows. Let U be a measurable subset of a k-dimensional affine subspace of (so ). For any subset with exactly k elements, let be the orthogonal projection of U onto the linear span of , where and is the standard basis for . Then where is the k-dimensional volume of U and the sum is over all subsets with exactly k elements. De Gua's theorem and its generalisation (above) to n-simplices with right-angle corners correspond to the special case where k = n−1 and U is an (n−1)-simplex in with vertices on the co-ordinate axes. For example, suppose , and U is the triangle in with vertices A, B and C lying on the -, - and -axes, respectively. The subsets of with exactly 2 elements are , and .
[ -0.0971069336, -0.689453125, -0.0791015625, 0.2003173828, -0.4106445312, 0.4763183594, -0.1907958984, 0.6450195312, -0.0601501465, 0.4211425781, -0.054901123, -0.4521484375, 0.0930175781, 0.9975585938, -0.2476806641, -0.3129882812, -0.6928710938, 0.5444335938, -0.4931640625, -0.0288085938, 0.0156707764, -0.9213867188, 0.1434326172, -0.4641113281, -0.3957519531, -0.1882324219, 0.2102050781, -0.4265136719, 0.5913085938, -0.7392578125, 0.0465393066, 0.2658691406, 0.0718383789, -0.1387939453, -0.7465820312, -0.76171875, 0.1413574219, 0.685546875, -0.0087203979, 0.5966796875, 0.2177734375, 0.0373840332, -0.1450195312, -0.3989257812, -0.1354980469, -0.447265625, -0.7534179688, -0.3225097656, -0.3420410156, 0.2219238281, -0.7553710938, -0.4975585938, 0.1831054688, -0.2496337891, -0.1168212891, -1.45703125, 0.3229980469, -0.8149414062, 0.9638671875, 0.4914550781, -0.6079101562, -0.3325195312, 0.51171875, -0.8315429688, 0.1352539062, 0.48046875, -0.4641113281, -0.0755615234, -0.0548400879, 0.0895385742, -0.755859375, 1.20703125, -0.2778320312, -0.3752441406, -0.0153579712, -0.3125, -0.0479736328, 0.6274414062, 0.4992675781, 0.28125, -1.0830078125, -1.2509765625, -0.259765625, -0.6328125, 0.1557617188, -0.2661132812, 0.7944335938, 0.3913574219, 0.6450195312, 0.66796875, -0.1419677734, -0.1400146484, -0.6494140625, -0.0346984863, -0.2934570312, 1.5537109375, 0.0420837402, -1.4658203125, -0.669921875, -0.6284179688, -0.330078125, -0.1733398438, 0.2546386719, -0.3466796875, 0.7641601562, 1.1796875, -0.5043945312, -0.098449707, 0.7807617188, -0.0804443359, 0.5737304688, 0.396484375, -0.1606445312, 1.494140625, 0.4392089844, 0.2785644531, 0.3879394531, -0.4636230469, -0.4738769531, 0.0456542969, -0.0070953369, 0.0529174805, -0.7651367188, -0.2775878906, 0.0101165771, 0.6860351562, 0.1550292969, -0.2814941406, 1.0693359375, -0.1241455078, 0.306640625, 0.0773925781, -0.4577636719, -0.4077148438, 0.5346679688, -1.296875, -0.4555664062, 0.2342529297, 0.2700195312, 0.1688232422, 0.0173187256, -0.9658203125, 1.0869140625, -0.2224121094, -0.1691894531, -0.1422119141, -0.7021484375, 0.1185302734, -0.7734375, -0.4887695312, -0.5161132812, 0.0634155273, 0.4079589844, 0.2717285156, -0.2229003906, 0.3203125, 0.0356140137, -0.0881958008, -0.0729370117, -1.2275390625, -0.2108154297, -1.265625, 0.2268066406, 0.6000976562, 0.4162597656, 0.9829101562, 0.1296386719, -0.6884765625, 0.5737304688, 0.2854003906, -0.5961914062, 0.1181640625, 0.0430908203, -0.3244628906, 0.6928710938, 0.5454101562, -0.0825195312, 0.6494140625, 1.009765625, 0.6948242188, -0.2496337891, -1.544921875, 0.744140625, -0.5600585938, -0.019317627, -0.3657226562, 0.5209960938, 0.44140625, -0.958984375, -0.1290283203, -0.6064453125, 0.5639648438, -0.4458007812, 0.0845336914, -0.6987304688, -0.3051757812, 0.1439208984, 0.6181640625, 0.3400878906, -0.1118774414, 0.9975585938, 0.2448730469, 0.2388916016, -0.1424560547, 0.5224609375, -0.4926757812, 0.5727539062, 0.1419677734, -1.0009765625, -0.3432617188, 0.509765625, 0.2612304688, -0.4250488281, 0.9057617188, 0.3352050781, -0.3295898438, 0.138671875, 0.568359375, -0.1762695312, 0.0327758789, 0.2795410156, 0.0849609375, -0.6240234375, 0.4304199219, -0.5791015625, -0.7470703125, 0.3657226562, 0.9609375, 0.2521972656, -0.0823974609, 0.9775390625, 0.1644287109, -1.5751953125, 0.3413085938, 0.3576660156, 0.1987304688, 0.0637207031, -1.470703125, -0.0830688477, -0.8208007812, 0.0021400452, -0.1240844727, -0.3376464844, -0.6909179688, 0.3200683594, -0.1551513672, -0.3090820312, 0.3032226562, 0.2172851562, 0.5258789062, 0.125, 0.2502441406, 0.1729736328, -0.3852539062, -1.076171875, 0.234375, -0.3776855469, 1.2841796875, -0.751953125, -0.6943359375, -0.2958984375, -0.0171966553, 1.5283203125, -0.9794921875, 0.8979492188, 0.3896484375, -0.3566894531, 0.2298583984, -0.3684082031, -0.8974609375, 0.7041015625, -0.5869140625, -0.4113769531, 0.642578125, 0.6689453125, -0.6293945312, -0.8676757812, -0.0295715332, 1.0322265625, -0.0855712891, -0.0811767578, -0.4782714844, -1.6005859375, 0.1362304688, 0.2915039062, -0.1287841797, 0.5815429688, -0.4191894531, 0.0891723633, -0.1556396484, -0.0960693359, 0.2485351562, -0.5380859375, -0.0779418945, -0.7856445312, 0.3349609375, 0.075378418, -0.482421875, -0.3718261719, 0.5004882812, 0.5107421875, 1.4990234375, -0.0036907196, -0.5302734375, 0.2758789062, 0.0624389648, -0.6240234375, 0.1229858398, -0.4833984375, -0.3852539062, -0.6123046875, -0.3588867188, -0.55078125, 0.4321289062, -0.9873046875, -0.9462890625, -0.7890625, -0.5629882812, 0.3928222656, -0.6181640625, 0.251953125, -0.4313964844, 0.60546875, 0.9995117188, 0.5034179688, 0.6357421875, -0.837890625, -0.4096679688, 0.1363525391, 0.7548828125, 0.0456848145, 0.869140625, -0.1824951172, 0.4475097656, -0.6196289062, -0.1030883789, 0.3312988281, 0.2587890625, 0.458984375, -0.5170898438, 0.5224609375, -0.0839233398, -0.8618164062, -0.1685791016, 0.3356933594, 0.5400390625, -1.42578125, 0.2741699219, 0.66015625, -0.2062988281, -0.2397460938, 0.3330078125, -1.115234375, 0.4064941406, -0.1005859375, 0.0814819336, -0.3698730469, 0.658203125, 0.6811523438, 0.0531921387, 0.3854980469, -0.8330078125, -0.6176757812, -0.2966308594, 0.2639160156, 0.0686035156, 0.0402832031, -0.0840454102, 0.533203125, -0.8413085938, 0.50390625, -0.4455566406, -1.568359375, -0.1881103516, -0.1652832031, 0.0991210938, -0.1583251953, 0.053894043, 0.0266876221, -0.4028320312, 0.0411376953, -0.5200195312, -0.7797851562, -0.642578125, 0.3330078125, -0.4030761719, -0.5961914062, 1.2314453125, -0.6079101562, 0.0632324219, 0.2340087891, -0.3815917969, 0.6098632812, 0.6401367188, -1.2255859375, -0.2941894531, 0.3793945312, 0.2995605469, 0.8115234375, -0.7446289062, 0.3952636719, -0.9418945312, -0.896484375, -0.3005371094, 0.3266601562, -0.3352050781, -0.3869628906, 0.2934570312, 0.2568359375, -0.61328125, 0.2321777344, -0.1671142578, 0.3244628906, 0.6279296875, -0.4855957031, 0.3979492188, 0.5283203125, 0.494140625, -0.4235839844, -0.3310546875, -0.6508789062, -0.4284667969, 0.0081634521, -0.3474121094, -0.3801269531, 0.3999023438, -0.845703125, 0.0319519043, -0.326171875, -0.0999145508, -0.0301513672, -0.1501464844, 1.017578125, 0.4555664062, 0.5786132812, -0.0737304688, -0.7299804688, -0.1773681641, -0.1715087891, -0.1024780273, 0.2021484375, 0.728515625, 0.232421875, 0.9653320312, -0.1300048828, 0.4975585938, 0.5375976562, -0.6186523438, 0.0985717773, -0.7802734375, -0.3315429688, -0.0932617188, -0.7075195312, -0.1856689453, 0.4594726562, 0.5571289062, -0.1229248047, -0.2189941406, 0.5849609375, -0.4504394531, -0.6752929688, -0.2653808594, -0.2893066406, 0.2114257812, -0.638671875, -1.5625, 0.0391845703, 0.84765625, -0.7573242188, -0.4409179688, 0.069519043, -0.8837890625, 0.5102539062, 0.6196289062, -0.3020019531, -0.1052246094, 0.2496337891, 0.1751708984, 0.5864257812, -0.2419433594, 0.3271484375, 1.0615234375, 0.4802246094, -0.4838867188, 0.1617431641, -0.935546875, -0.6206054688, -0.5493164062, -0.1348876953, -1.0166015625, -0.1239624023, -0.2368164062, -1.2490234375, -0.2976074219, -0.7998046875, 0.3911132812, -0.384765625, -0.2937011719, -0.5283203125, -0.1368408203, -0.1625976562, 0.2839355469, -0.9443359375, 0.2626953125, -0.8325195312, -0.2739257812, 0.1645507812, -1.390625, 0.2486572266, 0.2416992188, -0.1130371094, 0.0821533203, 0.1422119141, -0.0040855408, -0.3312988281, -0.4372558594, 0.1407470703, -0.4604492188, -1.3720703125, -0.7534179688, 0.2778320312, 0.2023925781, 0.0785522461, 0.4680175781, 0.8286132812, 0.2919921875, -0.8159179688, 0.2462158203, -0.3059082031, -0.5830078125, 0.5654296875, 0.4582519531, -0.15625, -0.5859375, -0.0564575195, -0.8256835938, 0.3078613281, 0.4013671875, 0.0494689941, -0.3630371094, -0.3264160156, -0.763671875, 0.0638427734, 0.3627929688, 0.1524658203, -0.6123046875, 0.6245117188, 1.5146484375, 0.3161621094, 0.3725585938, -1.115234375, 0.3100585938, -0.0519714355, 0.1320800781, 0.630859375, 0.2834472656, -0.5727539062, -0.998046875, 0.1461181641, 0.2700195312, 0.3190917969, 0.3728027344, -0.3518066406, 0.1694335938, -0.0592651367, 0.4194335938, 0.4138183594, 0.7592773438, -0.1125488281, 0.3427734375, -0.6103515625, -0.7294921875, 0.6826171875, 0.89453125, 0.2763671875, 0.365234375, -0.0642089844, -0.6147460938, -0.0390014648, -0.4028320312, 0.1939697266, 0.1577148438, 0.517578125, -1.2529296875, -0.4699707031, 0.2841796875, -0.1680908203, -0.0744628906, 0.591796875, -0.3298339844, -0.2624511719, -0.2407226562, 0.9384765625, 0.4555664062, 0.37109375, 0.3422851562, -1.3095703125, 1.0546875, -0.1483154297, -0.2403564453, 0.58203125, -0.216796875, 0.6440429688, -0.0796508789, -0.1901855469, -0.1682128906, 0.7270507812, 0.2717285156, -0.4440917969, 0.5932617188, 0.0641479492, -1.0009765625, 0.2985839844, 0.1165771484, -0.1688232422, 0.4038085938, 0.345703125, -0.650390625, -0.1309814453, -0.4582519531, -0.484375, 0.37109375, 0.6967773438, 0.3161621094, 0.4431152344, -0.2541503906, -0.0936279297, -0.1109619141, 0.1520996094, -0.4809570312, -0.0758666992, -0.69140625, 0.158203125, -0.055847168, -0.3967285156, 0.7534179688, -0.2062988281, 0.79296875, 0.5346679688, 0.6440429688, 0.8623046875, 0.3176269531, 0.1216430664, 0.0875854492, 0.1141357422, -0.5288085938, 0.8564453125, 0.2536621094, -1.056640625, -0.1069335938, -0.2254638672, 0.040222168, 1.1103515625, 0.1917724609, -0.4907226562, -0.1091918945, -0.8422851562, -1.435546875, -0.1280517578, 0.0576477051, 0.8754882812, 1.8115234375, -0.470703125, -0.4797363281, 0.8173828125, 0.7060546875, 0.6352539062, -0.869140625, 0.8564453125, -0.0220336914, -0.453125, 0.2233886719, 0.4953613281, 1.3046875, -0.7314453125, 0.1610107422, 0.0463256836, 0.2292480469, -0.8994140625, 0.0558776855, 0.0939941406, -0.2976074219, -0.1524658203, 0.8251953125, 0.1488037109, -0.0301513672, -0.6728515625, 0.63671875, 0.5258789062, -0.8486328125, -0.2722167969, 0.7822265625, -1.0771484375, 0.8481445312, -0.2631835938, -0.6401367188, 0.1826171875, 0.95703125, -0.4279785156, -0.1684570312, 0.3103027344, -0.765625, -0.7451171875, -0.3776855469, -1.154296875, 0.1418457031, 0.8037109375, -0.1300048828, 0.120300293, -0.2486572266, -0.54296875, 0.0247192383, -0.5336914062, 0.7788085938, 0.71484375, 0.3647460938, -0.2980957031, 0.6704101562, -0.4572753906, 0.5327148438, -1.0517578125, 0.2958984375, 0.9326171875, 0.0216674805, 0.5415039062, -0.0938720703, -0.0297698975, -0.0537719727, -0.000685215, 0.1057128906, 0.1486816406, -0.21484375, -0.4885253906, 0.5146484375, 0.4680175781, 0.5776367188, 0.552734375, -0.108581543, 0.5107421875, -0.66015625, 0.1790771484, -0.6010742188, 0.2298583984, 0.023651123, -0.3325195312, 0.2056884766, 1.1396484375, -0.0267181396, 0.7973632812, 0.3051757812, 0.1013183594, 0.0220031738, 0.0495605469, -2.046875, 0.0610961914, -0.7153320312, -1.166015625, -0.2583007812, 0.2312011719, -0.1662597656, 0.3913574219, -0.1424560547, 0.2272949219, -0.5463867188, 0.2244873047, -0.1770019531, 0.2493896484, 0.4501953125, -0.625, 0.1536865234, 0.3981933594, 0.2288818359, 0.5122070312, 0.2971191406, -0.4318847656, 0.1879882812, -0.0901489258, 0.1019287109, -0.1265869141, -0.0778198242, 0.5375976562, 0.5595703125, -0.1353759766, 0.1561279297, 0.1958007812, 0.451171875, 0.6381835938, 1.009765625, -0.4487304688, -0.65234375, 0.4106445312, -0.5034179688, -0.3415527344, 0.3483886719, -0.3791503906, -0.3596191406, -0.5478515625, -0.59375, 0.3122558594, -0.0840454102, 0.1773681641, 0.3637695312, -0.3852539062, -0.61328125, -0.1196289062, -1.001953125, 0.2453613281, 0.0922851562, 0.0977783203, 0.830078125, 0.0944213867, -0.0703735352, 0.1069946289, 0.3566894531, 0.5170898438, -1.3076171875, 0.615234375, 0.1407470703, 0.2133789062, -0.3767089844, 0.3317871094, -0.8481445312, 0.4306640625, -0.1452636719, 0.7592773438, 0.3210449219, -0.6489257812, 0.4418945312, -0.1840820312, -0.3930664062, 0.3271484375, 0.3813476562, 0.1490478516, -0.0941772461, 0.7592773438, -0.5444335938, -0.1395263672, 0.8383789062, 0.9682617188, 0.4704589844, 0.1467285156, -0.1141357422, 0.6166992188, -0.1160888672, -0.3950195312, -0.0821533203, 0.0881958008, -0.3239746094, -0.1341552734, -0.9448242188, -0.0446472168, -0.0431518555, 0.0373535156, 0.3310546875, 0.0839233398, -0.8916015625, -1.01953125, -0.2487792969, -0.55078125, -0.4711914062, -1.056640625, 0.6015625, -0.5346679688, -0.3413085938, 0.6015625, -0.0501403809, -0.5385742188, -0.1759033203, -0.4995117188, 0.0390625, -0.0311584473, -0.7705078125, 1.1201171875, -0.0491638184, -0.7709960938, 0.1483154297, 0.0362548828, 0.0676879883, -0.6640625, 0.5756835938, 1.03125, 0.0106582642, 0.3605957031, -0.802734375, 1.3671875, 0.4626464844, 0.72265625, 0.2254638672, -0.1459960938, -1.08984375, 0.626953125, 0.388671875, 0.57421875, 0.748046875, -0.826171875, 0.1837158203, 0.5439453125, -0.2553710938, -0.7924804688, -0.63671875, 0.2476806641, -0.1944580078, 0.66796875, -0.2053222656, 0.7373046875, -0.3293457031, 0.2054443359, -0.6953125, 0.6733398438, -0.20703125, -0.7543945312, -0.0865478516, -1.0380859375, 0.2141113281, -0.484375, -0.2058105469, 0.4995117188, 0.806640625, -0.2622070312, 0.5493164062, -0.1358642578, -0.4567871094, -0.2858886719, 0.2944335938, 0.205078125, -0.2145996094, -0.2347412109, 0.2810058594, 1.458984375, 1.33984375, 1.541015625, 1.0185546875, -0.0687866211, -0.2766113281, 1.419921875, 0.4560546875, 0.0767211914, -0.2077636719, 0.0608825684, -0.4650878906, 0.453125, -0.7836914062, -15.3046875, -0.7553710938, 0.3974609375, 0.60546875, -1.1962890625, 0.1700439453, 0.1176147461, -0.2427978516, 0.4035644531, -0.6059570312, -0.849609375, 0.5795898438, 0.1226196289, -0.0850219727, 0.2231445312, -0.9165039062, -1.0458984375, -0.4213867188, -0.3430175781, 0.1323242188, 0.0843505859, -0.3969726562, -0.4169921875, 0.134765625, -0.5537109375, 0.4841308594, 0.5, -1.27734375, -0.4377441406, 1.0390625, 0.0547790527, 0.052520752, -0.1843261719, 0.84375, 0.3059082031, -0.7280273438, 0.5600585938, 0.077331543, 0.1868896484, -1.03515625, -0.1274414062, 0.1342773438, 0.0099563599, 0.0255126953, -0.8110351562, 0.1348876953, -0.8227539062, -0.3911132812, -0.3115234375, -0.607421875, 1.19140625, 0.8032226562, 0.1087646484, 0.296875, 0.2536621094, -0.7592773438, -1.138671875, 0.0151443481, -0.1970214844, 0.2309570312, 0.3566894531, 1.134765625, -0.3891601562, 0.3188476562, -0.1771240234, -0.88671875, -0.9287109375, -0.0856933594, 0.5385742188, -0.8872070312, 0.478515625, -1.185546875, 0.8618164062, -0.1533203125, -0.1329345703, 0.9008789062, 0.3154296875, 0.0417480469, 0.0642700195, 0.1159057617, -0.76953125, 0.4213867188 ]
By definition, is the orthogonal projection of onto the -plane, so is the triangle with vertices O, B and C, where O is the origin of . Similarly, and , so the Conant–Beyer theorem says which is de Gua's theorem. The generalisation of de Gua's theorem to n-simplices with right-angle corners can also be obtained as a special case from the Cayley–Menger determinant formula. History Jean Paul de Gua de Malves (1713–85) published the theorem in 1783, but around the same time a slightly more general version was published by another French mathematician, Charles de Tinseau d'Amondans (1746–1818), as well. However the theorem had also been known much earlier to Johann Faulhaber (1580–1635) and René Descartes (1596–1650). See also Vector area and projected area Bivector Notes References Sergio A. Alvarez: Note on an n-dimensional Pythagorean theorem, Carnegie Mellon University. De Gua's Theorem, Pythagorean theorem in 3-D — Graphical illustration and related properties of the tetrahedron. Further reading Proof of de Gua's theorem and of generalizations to arbitrary tetrahedra and to pyramids. Application of de Gua's theorem for proving a special case of Heron's formula. Theorems in geometry Euclidean geometry
[ 0.1279296875, -0.0982666016, 0.8413085938, -0.1629638672, -0.5185546875, 0.3256835938, -0.0718994141, 0.3229980469, 0.3366699219, 0.876953125, 0.0396728516, -0.3227539062, -0.1787109375, 0.8686523438, -0.1433105469, -0.8500976562, -0.6181640625, 0.6293945312, -0.7880859375, 0.5844726562, 0.2932128906, -0.4880371094, -0.4089355469, -0.5263671875, -0.1644287109, 0.1237182617, 0.41015625, -0.1666259766, 0.0909423828, -0.859375, 0.0628051758, -0.2824707031, 0.7250976562, -0.0685424805, -0.62109375, -0.4970703125, -0.6611328125, 0.431640625, -0.1002807617, 0.3771972656, 0.0658569336, -0.5703125, -0.062286377, 0.0058746338, 0.5546875, -0.0331420898, -1.0224609375, -0.2016601562, -0.4482421875, -0.5678710938, -0.3979492188, -0.6884765625, -0.3952636719, -0.3713378906, -0.3078613281, -1.896484375, 0.4499511719, -0.3010253906, 0.419921875, -0.0035266876, -0.6284179688, 0.0196838379, 0.8999023438, -0.4387207031, 0.9697265625, -0.2183837891, -0.4680175781, -0.4685058594, 0.0592346191, 0.2469482422, -0.552734375, 0.6958007812, 0.5854492188, -0.3303222656, -1.0029296875, -0.4060058594, -0.0096664429, 1.1455078125, 0.359375, -0.94921875, -0.841796875, -1.4189453125, -0.6416015625, -1.47265625, 0.7509765625, 0.2261962891, 1.1044921875, -0.0780639648, -0.5629882812, 0.5190429688, 0.0079727173, 0.2578125, -0.5786132812, 0.0581665039, -0.2052001953, 1.4609375, 0.1218261719, -1.7724609375, -0.9526367188, -0.791015625, -0.2159423828, -0.5336914062, 0.5659179688, -0.1056518555, 0.3959960938, 0.87109375, -1.2275390625, 0.1846923828, 0.705078125, 0.1014404297, 0.5844726562, 0.3662109375, 0.50390625, 1.52734375, 0.53515625, 0.1422119141, 0.3706054688, -0.5434570312, -0.630859375, -0.1982421875, 0.5473632812, -0.5209960938, -0.875, -0.1556396484, 0.3056640625, 0.9370117188, -0.0439453125, -0.6064453125, 0.9111328125, -0.2290039062, 0.3513183594, 0.3933105469, -0.2546386719, 0.2294921875, 0.599609375, -1.072265625, -0.53515625, -0.3059082031, 1.087890625, -0.2092285156, 0.1231079102, -0.4458007812, 0.3620605469, 0.1301269531, 0.1320800781, -0.6552734375, -0.794921875, 0.2391357422, -0.9755859375, -0.6088867188, -0.6982421875, -0.1396484375, 0.3752441406, 0.4089355469, -0.4938964844, -0.2600097656, 0.294921875, 0.0284881592, -0.1708984375, -1.8095703125, 0.4274902344, -0.4309082031, -0.1538085938, 0.0335998535, -0.0528259277, 1.2861328125, -0.7294921875, -0.53125, -0.0390319824, 0.3955078125, -0.2327880859, 0.6977539062, 0.4223632812, -0.6704101562, 1.232421875, -0.2327880859, 0.0531005859, 1.2275390625, 0.0622253418, 0.4064941406, -0.2563476562, -1.484375, 0.6235351562, -0.8857421875, -0.6616210938, 0.3852539062, 0.5366210938, 0.0907592773, -1.0068359375, -0.2106933594, 0.1021118164, 0.7426757812, -0.4763183594, 0.1635742188, -0.9829101562, -0.1831054688, -0.1331787109, 0.4086914062, 0.1137695312, 0.1339111328, 1.2646484375, 0.0411071777, 0.3361816406, -0.0083999634, 0.5844726562, -0.8149414062, 0.4860839844, -0.439453125, -0.1184082031, -0.2822265625, 0.1801757812, 0.3898925781, -0.2163085938, 0.6391601562, 0.9926757812, 0.2305908203, 0.3828125, 0.8349609375, -0.390625, -0.5209960938, 0.4108886719, -0.2269287109, -0.9379882812, 0.2043457031, -1.623046875, -1.1025390625, 0.5063476562, 1.1796875, 0.1429443359, -0.0602416992, 0.7563476562, 0.0717773438, -2.373046875, 0.4223632812, 0.4130859375, 0.0864868164, -0.1657714844, -0.6240234375, 0.6127929688, -0.8720703125, -0.1820068359, -0.2462158203, -0.1806640625, -0.8696289062, 0.2814941406, -0.1611328125, -0.1007080078, -0.058807373, -0.1205444336, 0.5463867188, 0.7299804688, 0.0679321289, 0.2619628906, -0.1282958984, -0.9423828125, 0.7797851562, -0.2252197266, 1.6572265625, -0.2465820312, -0.9760742188, -0.2763671875, 0.2592773438, 1.7158203125, -1.44140625, 0.2946777344, 0.3173828125, -0.6098632812, 0.583984375, 0.1760253906, -0.462890625, 0.7250976562, -1.21875, -1.2744140625, 0.28125, 0.2524414062, -0.5024414062, -1.1044921875, 0.1981201172, 0.859375, 0.3852539062, -0.1311035156, -0.7817382812, -1.3564453125, -0.4313964844, 0.9072265625, 0.5703125, 0.0958251953, -0.7407226562, 0.1350097656, -0.375, -0.3461914062, -0.1035766602, 0.0770874023, -0.2270507812, -0.6176757812, 0.1857910156, -0.0818481445, -0.4182128906, -0.3947753906, 0.2895507812, 0.689453125, 1.853515625, -0.4267578125, -0.2512207031, -0.0283660889, 0.1558837891, -0.2646484375, 0.1292724609, -0.4030761719, -0.0663452148, -0.2785644531, -0.34375, -0.4755859375, -0.1085205078, -0.7202148438, -1.283203125, 0.0400695801, -0.4829101562, -0.0905151367, -0.5849609375, 0.3549804688, -0.2191162109, 0.4086914062, 0.7700195312, 0.453125, 0.453125, -0.7299804688, -0.7846679688, 0.0693969727, 0.6328125, 0.3937988281, 0.978515625, -0.7431640625, 0.3422851562, -0.0812988281, -1.08984375, 1.0576171875, 0.0453796387, 0.7739257812, -0.6557617188, 0.3078613281, -0.2648925781, -1.046875, -0.8413085938, 0.642578125, 0.6025390625, -1.5146484375, 0.1177368164, 0.5239257812, -0.33203125, 0.2507324219, 0.6220703125, -0.7592773438, 0.3156738281, -0.1483154297, 0.5258789062, -0.3388671875, 0.6518554688, 0.3930664062, 0.212890625, -0.0991210938, -0.1434326172, -0.8637695312, -0.4111328125, 0.8779296875, -0.5874023438, 0.3532714844, -0.1531982422, 0.9365234375, -0.0004992485, -0.2052001953, -1.1533203125, -1.921875, -0.4826660156, -0.1184082031, -0.259765625, -0.6953125, 0.568359375, -0.4467773438, -0.1525878906, 0.5590820312, -0.681640625, -1.068359375, -0.501953125, -0.4245605469, -0.4895019531, -0.5620117188, 0.5610351562, -0.4494628906, 0.2144775391, 0.5986328125, -0.1213378906, 0.533203125, 0.3420410156, -0.9399414062, -0.5590820312, 0.6274414062, 0.7290039062, 0.7915039062, 0.3415527344, -0.3063964844, -0.3369140625, -0.9086914062, -0.0298156738, 0.2932128906, -0.0335998535, 0.888671875, -0.4694824219, -0.0781860352, -0.71484375, 0.1755371094, 0.1106567383, 0.6381835938, 0.8583984375, -0.65625, 0.2856445312, 0.0618896484, 0.5454101562, -0.4125976562, -0.5561523438, -0.6728515625, -0.3312988281, 0.2819824219, -0.4609375, -0.2331542969, 0.4243164062, -0.6586914062, 0.3256835938, -0.6689453125, 0.2817382812, -0.5512695312, -0.6171875, 1.294921875, 0.5083007812, 0.9794921875, -0.4204101562, 0.0517272949, -0.2182617188, 0.2878417969, -0.1606445312, 0.2973632812, 0.376953125, 0.3615722656, 0.5219726562, 0.1214599609, 0.4145507812, 0.2548828125, -0.8735351562, -0.1374511719, -0.4907226562, -0.9965820312, 0.0758056641, -0.5229492188, -0.1810302734, -0.0137405396, 0.4887695312, -0.2252197266, -0.9448242188, 0.259765625, -0.2301025391, -0.6943359375, -0.67578125, -0.3557128906, -0.2259521484, -0.4243164062, -1.7587890625, 0.1618652344, 0.7060546875, -0.2890625, -0.1177978516, -0.1628417969, -1.59375, 0.1683349609, 0.1547851562, -0.2092285156, 0.2358398438, -0.0374450684, 0.5146484375, 0.1705322266, 0.0025959015, -0.0521240234, 1.076171875, 0.1520996094, 0.2783203125, 0.1871337891, -0.6997070312, -1.0390625, -1.2216796875, 0.3745117188, -1.3076171875, 0.2932128906, 0.703125, -0.6826171875, -0.0840454102, -0.7163085938, 0.66015625, -0.7211914062, 0.0102920532, -0.9213867188, 0.0537719727, -0.1318359375, 0.7705078125, -0.7504882812, -0.1909179688, -1.0908203125, -0.59765625, -0.0279693604, -0.8999023438, 0.4091796875, 0.3942871094, -0.0210876465, -0.2763671875, 0.3298339844, -0.112487793, -0.2407226562, -0.2318115234, 0.1511230469, 0.3149414062, -1.4345703125, -0.0390014648, 0.4899902344, 0.6274414062, -0.0224761963, 0.2705078125, 0.51953125, 0.2536621094, -0.2015380859, 0.3801269531, 0.0602722168, -0.0940551758, 0.580078125, -0.0101547241, -0.56640625, -0.5517578125, -0.2088623047, -0.2995605469, 0.3703613281, 0.8989257812, 0.2883300781, 0.3771972656, -0.4641113281, -0.7504882812, 0.6938476562, 0.2188720703, 0.4545898438, -0.049621582, 0.2327880859, 1.01953125, 0.1881103516, 0.0819702148, -1.6220703125, 0.1260986328, -0.0605773926, 0.5146484375, 0.9125976562, 0.5776367188, -0.5434570312, -1.40234375, 0.1211547852, 0.5161132812, -0.088684082, 0.3410644531, -0.2761230469, 0.2497558594, -0.0985717773, 0.1079101562, 0.6171875, 0.951171875, 0.2937011719, 0.1260986328, -0.87109375, -0.6064453125, 1.2568359375, 0.1713867188, -0.0041122437, 0.6401367188, -0.2113037109, -0.8188476562, -0.2700195312, -0.9072265625, 0.1049804688, -0.13671875, 0.3081054688, -1.357421875, 0.1790771484, 0.5703125, 0.3049316406, -0.1704101562, -0.0195465088, 0.2236328125, -0.7958984375, -0.1130981445, 1.099609375, 0.3374023438, 0.2468261719, 0.5712890625, -1.255859375, 0.6567382812, -0.166015625, -0.0432434082, 0.8896484375, -0.4982910156, 0.8759765625, -0.2059326172, 0.8071289062, 0.3564453125, 0.3537597656, 0.1668701172, 0.3754882812, 0.3654785156, 0.5625, -1.1044921875, 0.4963378906, 0.2244873047, -0.0221862793, 0.7724609375, 0.7724609375, -0.8051757812, -0.052154541, -1.1123046875, -0.5307617188, 0.7250976562, 0.2354736328, 0.640625, 0.6010742188, -0.4653320312, -0.5654296875, 0.1882324219, 0.2130126953, -0.7236328125, -0.0171508789, -0.6987304688, 0.1206665039, -0.2905273438, -0.0192871094, 0.5502929688, 0.2421875, 0.623046875, 0.5043945312, 0.677734375, 1.4111328125, -0.1186523438, 0.2067871094, -0.2768554688, -0.0608825684, -0.3208007812, 0.7236328125, 0.2290039062, -1.6376953125, -0.3588867188, 0.3745117188, 0.0681762695, 0.9877929688, -0.3427734375, -0.6245117188, -0.0483703613, -1.216796875, -1.2744140625, -0.1115112305, -0.572265625, 1.072265625, 1.6171875, -0.80859375, -0.9838867188, 0.3706054688, 1.111328125, 0.3718261719, -1.029296875, 0.3022460938, 0.1715087891, -0.1505126953, 0.9868164062, 0.5356445312, 0.7407226562, -0.458984375, 0.0737304688, -0.4582519531, 0.3930664062, -1.1943359375, -0.038848877, -0.3557128906, -0.84765625, -0.6362304688, 0.3649902344, -0.0875244141, -0.4526367188, -0.7666015625, 0.6801757812, 0.2048339844, -0.5073242188, 0.3002929688, 1.0771484375, -0.1494140625, 0.7861328125, -0.4831542969, -1.4658203125, 0.2937011719, 0.7807617188, -0.9770507812, -0.0891723633, 0.3493652344, -0.9487304688, -0.8803710938, -0.2022705078, -1.0693359375, 0.2963867188, -0.083984375, -0.2486572266, 0.1228027344, -0.7060546875, -1.36328125, 0.0600280762, -0.9560546875, -0.2805175781, 0.1737060547, -0.3024902344, -0.3862304688, 0.541015625, -0.2303466797, 0.6748046875, -0.8256835938, 0.4626464844, 0.9326171875, 0.2026367188, 0.4858398438, -0.045135498, 0.0854492188, -0.2004394531, 0.2939453125, 0.3200683594, 0.5380859375, -0.0477600098, -0.6909179688, 0.7348632812, -0.9653320312, 0.5385742188, 0.6225585938, -0.0992431641, 0.9052734375, -0.453125, 0.490234375, -0.6557617188, -0.2397460938, -0.6372070312, -0.0393371582, -0.677734375, 1.3037109375, 0.6044921875, -0.0456237793, 0.1094360352, -0.130859375, -0.2023925781, 0.5668945312, -1.2509765625, -0.2261962891, -0.453125, -1.3271484375, -0.0751953125, 0.4997558594, 0.3483886719, 0.6044921875, 0.0400695801, 0.6137695312, -0.4291992188, 0.4455566406, -0.2629394531, 0.4499511719, 0.7314453125, 0.0478210449, 0.8657226562, -0.0798339844, 0.8471679688, 0.6918945312, 0.0830688477, -0.7456054688, -0.4692382812, -0.5361328125, -0.52734375, -0.1962890625, 0.5463867188, -0.4946289062, 0.994140625, -0.5537109375, 0.0823974609, -0.1149291992, 0.810546875, 1.33203125, 0.57421875, -0.1232299805, -0.2639160156, 0.5078125, -0.9462890625, -0.4274902344, -0.14453125, 0.1177368164, -0.2800292969, -0.2746582031, -1.0615234375, 0.5024414062, 0.0713500977, 0.720703125, -0.0178222656, -0.0066833496, -0.267578125, -0.4372558594, -0.6225585938, -0.2380371094, -0.2380371094, 0.020401001, 1.2578125, 0.0911865234, 1.11328125, 0.2980957031, 0.0825195312, 0.64453125, -1.203125, 0.673828125, -0.1506347656, 0.2800292969, -0.2866210938, 0.4682617188, -1.2978515625, 0.1715087891, 0.6240234375, 0.537109375, 0.4365234375, -0.8564453125, 0.4965820312, -0.8735351562, -0.6225585938, 0.2846679688, 0.0886230469, 0.0410461426, 0.3635253906, 1.0712890625, -0.0279693604, 0.669921875, 1.2763671875, 0.0938720703, 0.3149414062, 0.3544921875, 0.2056884766, 0.09375, -0.1037597656, 0.0425109863, 0.1745605469, 0.3039550781, -0.3752441406, -0.0939331055, -1.095703125, 0.1772460938, -0.8701171875, 0.0421142578, 0.0232696533, 0.3837890625, -0.6459960938, -1.2216796875, -0.3564453125, -0.2106933594, -0.31640625, -1.2734375, 0.5581054688, -0.5478515625, -0.4135742188, 0.8188476562, 0.1970214844, 0.533203125, 0.1384277344, -0.5219726562, -0.3557128906, 0.0616760254, -0.7661132812, 0.9965820312, -0.0845947266, -0.5029296875, 0.4096679688, -0.0385437012, -0.677734375, -0.7358398438, 0.380859375, 0.2340087891, 0.412109375, 0.439453125, -1.0615234375, 1.4677734375, 0.7866210938, 1.1494140625, 0.1573486328, -0.0234375, -1.56640625, 1.056640625, -0.0269165039, 0.1882324219, 0.99609375, -0.4064941406, 0.0415649414, 0.2469482422, -0.8818359375, -0.0389709473, 0.3146972656, 0.2236328125, -0.2565917969, 0.64453125, -0.1102905273, 1.4365234375, -0.0213775635, 0.5805664062, -0.6430664062, 0.2406005859, 0.2822265625, -0.8544921875, -0.1779785156, -0.7788085938, -0.1508789062, 0.3676757812, 0.1721191406, 0.9306640625, 0.3283691406, -0.4548339844, 0.1944580078, 0.0999755859, -0.9624023438, -0.3979492188, 0.2690429688, -0.2075195312, 0.0475158691, 0.6049804688, 0.098815918, 1.12109375, 0.9873046875, 1.896484375, 0.5854492188, 0.2447509766, -0.3544921875, 0.9213867188, 0.4504394531, 0.587890625, -0.0228424072, 0.6040039062, -0.2602539062, 0.7373046875, -0.5961914062, -13.3203125, -0.7958984375, 0.4990234375, 1.3798828125, -1.1083984375, -0.3916015625, 0.0131378174, -0.7446289062, 0.0602111816, -0.673828125, -0.7490234375, 0.912109375, 0.0377807617, 0.1774902344, 0.3454589844, -0.6303710938, -0.5502929688, -1.552734375, -0.6040039062, -0.4621582031, 0.6616210938, -0.2807617188, -0.3078613281, 0.4409179688, -0.2059326172, 0.8041992188, 0.2868652344, -1.396484375, -0.4641113281, 1.1640625, 0.5922851562, -0.193359375, 0.036529541, -0.5693359375, 0.116027832, -0.8598632812, 0.6264648438, 0.0183563232, 0.2259521484, -0.8671875, 0.0116043091, -0.0767211914, 0.0546264648, -0.5483398438, -0.2236328125, 0.98046875, -0.7309570312, -0.3078613281, -0.2216796875, -0.4035644531, 0.8442382812, 1.2294921875, 0.2951660156, -0.4169921875, -0.4228515625, -0.3312988281, -0.7163085938, -0.375, -0.0695800781, 0.9692382812, -0.14453125, 1.40625, -0.3115234375, 0.3374023438, -0.4426269531, -0.4833984375, -0.6494140625, -0.2331542969, 0.0744018555, -0.9858398438, 0.1783447266, -0.818359375, 1.1591796875, 0.1295166016, 0.1773681641, 0.3806152344, 0.3200683594, -0.0004022121, 0.1750488281, 0.1773681641, -0.5859375, 0.0845947266 ]
Identity driven networking (IDN) is the process of applying network controls to a network device access based on the identity of an individual or a group of individuals responsible to or operating the device. Individuals are identified, and the network is tuned to respond to their presence by context. The OSI model provides a method to deliver network traffic, not only to the system but to the application that requested or is listening for data. These applications can operate either as a system based user-daemon process, or as a user application such as a web browser. Internet security is built around the idea that the ability to request or respond to requests should be subjected to some degree of authentication, validation, authorization, and policy enforcement. Identity driven networking endeavors to resolve user and system based policy into a single management paradigm. Since the internet comprises a vast range of devices and applications there are also many boundaries and therefore ideas on how to resolve connectivity to users within those boundaries. An endeavor to overlay the system with an identity framework must first decide what an Identity is, determine it, and only then use existing controls to decide what is intended with this new information. The Identity A digital identity represents the connectedness between the real and some projection of an identity; and it may incorporate references to devices as well as resources and policies. In some systems, policies provide the entitlements that an identity can claim at any particular point in time and space.
[ -1.052734375, -1.30859375, -0.2983398438, -0.2413330078, -0.9262695312, -0.1748046875, -1.7431640625, -0.3903808594, -0.0611877441, -0.2397460938, 0.4997558594, -0.6904296875, -0.1693115234, 0.4985351562, 0.2961425781, -0.0428771973, 0.2338867188, 0.6928710938, 0.4558105469, 0.0814819336, 0.560546875, -0.775390625, 0.1211547852, -1.0400390625, -0.2736816406, -0.4792480469, 0.6103515625, 0.587890625, 1.0087890625, 0.4819335938, -0.2927246094, 0.64453125, -1.4755859375, 0.8979492188, 0.6733398438, -0.2020263672, -0.0458374023, 0.0189208984, -0.4912109375, 0.3991699219, 0.5380859375, -0.50390625, -0.4194335938, -0.0773925781, -0.3151855469, 0.451171875, 0.0003154278, -0.5224609375, -0.6674804688, -0.1781005859, -0.2086181641, -0.666015625, 0.3435058594, 0.2203369141, 0.1737060547, -0.7377929688, -0.4892578125, -0.2556152344, -0.1395263672, 0.61328125, 0.1763916016, 0.03074646, -0.1124267578, -0.5131835938, -0.2990722656, -0.1799316406, -0.4848632812, 1.484375, -1.1015625, 0.0516357422, -0.6899414062, 0.9375, 0.1618652344, 0.0312805176, 0.970703125, 0.7065429688, 0.0802001953, -0.1403808594, 0.3542480469, 0.2053222656, -0.0154876709, -1.326171875, -0.0980834961, -0.1129760742, -0.3161621094, 1.408203125, -0.1333007812, -0.4182128906, 0.1706542969, -0.548828125, 0.5307617188, -0.587890625, 1.5107421875, -0.0911865234, -0.2244873047, 0.0065002441, 0.625, 1.419921875, 0.5092773438, 0.8081054688, -0.7749023438, 1.24609375, -0.2176513672, -0.0337219238, -0.1286621094, 0.2639160156, -0.4645996094, 0.1556396484, 0.1346435547, 1.3671875, -0.2805175781, 0.0362854004, -1.0361328125, -0.3544921875, 0.0708618164, -0.12109375, 0.662109375, -0.1762695312, 0.5239257812, -0.4372558594, -0.0885009766, 1.0009765625, -0.1352539062, -0.2108154297, -0.3957519531, -0.3181152344, -0.051361084, 0.8735351562, -0.2376708984, 1.234375, 0.5200195312, -0.0999145508, -0.3486328125, 0.0101165771, 0.1043701172, 0.0351867676, -1.220703125, -0.3325195312, -0.1151733398, 0.1643066406, -0.7749023438, -0.0932617188, -0.9560546875, -0.80078125, -0.0623474121, 0.1379394531, 0.3957519531, -0.2440185547, 0.1444091797, -0.3547363281, -0.3425292969, 0.0599060059, 0.1271972656, 0.1965332031, 0.462890625, 0.91796875, 0.8344726562, -0.0504455566, -0.00598526, -1.14453125, -0.9736328125, -1.75, -0.5004882812, 0.4514160156, -0.2839355469, 1.189453125, 0.0943603516, -0.1813964844, 0.5180664062, -0.2192382812, -0.4929199219, 0.2164306641, -1.7265625, -0.045501709, -0.0700683594, 0.4104003906, -0.4919433594, -0.8295898438, 0.6416015625, -0.2277832031, 0.4677734375, -1.197265625, 0.634765625, 0.0925292969, 1.54296875, -0.0747070312, 0.3679199219, -0.2951660156, -0.0233154297, 0.4013671875, 0.7182617188, -0.8959960938, 0.1923828125, 1.5595703125, -0.1932373047, 0.7543945312, -0.3615722656, 0.2922363281, 0.423828125, 0.4697265625, 1.6708984375, 0.2160644531, 0.5932617188, -1.1806640625, -0.0712890625, -0.0830078125, 0.7758789062, 0.6840820312, -0.2609863281, -0.0994262695, -0.5571289062, -0.48828125, -0.640625, 1.5771484375, -0.8515625, -0.5595703125, -0.173828125, -0.4509277344, 1.3017578125, 0.0845947266, 0.2573242188, 0.1402587891, -0.8540039062, 0.1437988281, 0.8896484375, -1.2822265625, 0.2006835938, -0.5693359375, 0.3205566406, 0.1138305664, 0.1667480469, 0.1012573242, 1.08984375, -0.7685546875, 0.251953125, -0.8842773438, 0.0097045898, -0.5932617188, 0.0624084473, 0.0506896973, -0.2139892578, 0.2985839844, -0.0114212036, 0.0859375, -0.0022907257, -0.4758300781, -0.0128707886, -0.7739257812, -0.8408203125, 0.2834472656, 0.0515136719, 0.3757324219, -0.3972167969, 0.13671875, 0.0988769531, -0.578125, 0.1632080078, 0.5327148438, -0.7060546875, -0.6284179688, -0.5615234375, -0.0433654785, 0.7866210938, -1.1240234375, -1.0126953125, -1.01953125, -0.7309570312, 0.4704589844, 0.7607421875, -0.0850219727, 0.1923828125, -0.2746582031, 0.5712890625, -0.8227539062, 0.058807373, 0.1596679688, -0.1461181641, -0.74609375, 0.7685546875, -0.2121582031, 0.2369384766, 0.3911132812, -0.9916992188, -0.2097167969, 0.1723632812, -0.6235351562, -0.0386047363, 0.2160644531, 0.063293457, 0.7666015625, 1.0517578125, -0.2756347656, -0.5014648438, -0.2237548828, 0.3459472656, 0.7631835938, 0.3088378906, 1.0615234375, -1.40625, -0.3872070312, -0.0596923828, 0.1693115234, 0.4624023438, 0.2541503906, 0.6274414062, 0.3876953125, -0.9985351562, -1.1005859375, -0.5517578125, 1.08984375, -0.5083007812, 0.7841796875, -0.1760253906, -0.1083984375, -0.3271484375, -0.5712890625, -1.1865234375, -0.6313476562, -0.6791992188, -0.7543945312, -0.6645507812, 0.2320556641, -0.0635375977, -0.4790039062, 0.2371826172, 1.00390625, -0.0287322998, -0.3017578125, 1.1767578125, -0.3037109375, -0.3688964844, -0.1937255859, 0.4702148438, -0.8540039062, -0.8627929688, -0.3884277344, 0.0853881836, -0.564453125, 0.4287109375, 0.2276611328, -0.5991210938, -1.0234375, -0.2497558594, -0.779296875, 0.6059570312, 0.1221923828, 0.0454406738, -0.0350646973, 0.1754150391, -0.0899047852, -0.2218017578, -0.1840820312, 0.2041015625, 0.0969238281, 0.9106445312, -1.5625, 0.6625976562, 1.1923828125, -0.2863769531, 1.1591796875, 1.5185546875, -0.2927246094, -1.076171875, 0.1937255859, -1.8291015625, 0.3146972656, -0.0963134766, 0.6279296875, 0.0624694824, -0.2602539062, 0.9609375, -0.0913085938, -0.7827148438, -0.7944335938, 0.0726318359, 0.1176147461, 0.0235443115, 0.1727294922, -0.7387695312, -0.6215820312, 0.7099609375, -0.117980957, 0.1513671875, -0.5537109375, -0.2358398438, 0.1560058594, 0.0808105469, 0.0883789062, -0.833984375, -0.7719726562, -0.1379394531, -0.3937988281, 0.0631103516, 0.3684082031, -0.5698242188, 0.2609863281, 1.193359375, 0.1661376953, 0.5302734375, 0.3693847656, 0.6752929688, 0.4467773438, -0.9946289062, -0.3569335938, 0.3063964844, 0.6796875, 0.8237304688, -0.8803710938, 0.154296875, 0.2073974609, 0.6352539062, -1.1396484375, 0.5190429688, -0.1223144531, -0.2736816406, 0.2954101562, 0.3061523438, -0.3830566406, 0.6298828125, -0.546875, -0.55078125, -0.060546875, -0.0626220703, -0.5234375, -0.5966796875, 0.1133422852, 0.2020263672, -0.1832275391, -0.234375, -0.1805419922, -0.2038574219, 0.2663574219, 0.0894165039, 0.7099609375, -0.6235351562, -0.0590515137, -0.34765625, -0.0786132812, -0.1810302734, 0.291015625, 0.2021484375, 0.3762207031, -0.5849609375, 0.1068725586, 0.1911621094, -0.9345703125, 1.4501953125, -0.6875, 0.8579101562, -1.0068359375, -0.4040527344, -0.2219238281, 0.921875, -0.302734375, 0.9233398438, -0.2088623047, -0.1661376953, -0.8823242188, -0.0331420898, 0.7641601562, -0.0151062012, 0.1221313477, -0.7309570312, -0.2274169922, 0.3388671875, -1.0693359375, -0.6928710938, -0.117980957, -0.7626953125, -0.1216430664, -0.5849609375, 0.7827148438, 0.5795898438, 0.0647583008, -1.275390625, -0.2595214844, 1.052734375, -0.8154296875, -0.5034179688, -0.3596191406, 0.8525390625, 0.8071289062, -1.634765625, -0.3654785156, 0.0994262695, 0.0280303955, 0.6694335938, -0.1391601562, 0.4033203125, -0.7041015625, -0.0256958008, 0.0284423828, -0.4943847656, 0.2990722656, -0.2548828125, -1.255859375, -0.3090820312, 0.3112792969, -1.15234375, -0.8427734375, 0.2639160156, -0.5112304688, -0.5942382812, -1.2138671875, 1.02734375, -0.4130859375, 0.6479492188, -0.763671875, 0.48828125, -0.2399902344, -0.0621337891, 0.7329101562, 0.65625, 0.1257324219, -0.0394287109, -0.66015625, -0.3791503906, -0.2077636719, 0.0032920837, -0.2983398438, 0.2446289062, -0.259765625, 0.068359375, 0.626953125, -0.2854003906, 0.6508789062, -0.1405029297, 0.5766601562, 0.67578125, -0.1340332031, 0.5014648438, 0.0020503998, 0.8002929688, 0.5854492188, 0.6352539062, -0.8232421875, 0.0962524414, -0.7700195312, 0.1089477539, 0.7456054688, 0.0573120117, 0.0784912109, 0.58984375, 0.0034313202, -0.1999511719, 0.2897949219, -0.341796875, 0.2565917969, -0.4765625, 0.3208007812, -0.341796875, -0.0089111328, -0.1223144531, 1.0595703125, -0.2553710938, 0.2263183594, -0.0338134766, 0.2822265625, 0.032409668, 0.1929931641, 0.2374267578, 0.3891601562, 0.4367675781, 0.0801391602, -0.3669433594, 1.5009765625, 0.5961914062, 0.2790527344, 0.0830078125, -0.4694824219, -0.4313964844, 0.93359375, -0.5415039062, 0.0315246582, 0.0629882812, 0.6547851562, 0.8041992188, -0.5151367188, 1.1337890625, -0.353515625, -0.2391357422, -0.7045898438, -0.5556640625, -0.38671875, -0.6225585938, 1.4267578125, 0.4460449219, -1.2041015625, 0.2064208984, -0.5205078125, 0.283203125, -1.8212890625, -0.0586547852, 0.2424316406, -1.8583984375, -0.3720703125, -0.0297698975, 0.1331787109, 1.1025390625, -0.2249755859, -0.4377441406, 0.0047950745, -0.2700195312, 0.3510742188, -0.3149414062, -1.2900390625, -0.3620605469, 0.3061523438, -0.2233886719, 0.0906982422, -0.5092773438, 0.4416503906, -0.1381835938, 0.5659179688, 0.0914916992, -0.0845336914, -0.5493164062, 0.7309570312, 0.0589904785, -0.828125, -0.2136230469, 0.2036132812, -0.2724609375, -0.2221679688, 0.5756835938, -0.3740234375, -0.544921875, 0.3298339844, -0.8823242188, 0.1744384766, -1.02734375, -0.3737792969, 0.455078125, 0.2885742188, -1.0869140625, 0.3381347656, -0.2142333984, 0.638671875, 1.3203125, 0.3122558594, 0.4970703125, -0.0107650757, 0.3610839844, 0.880859375, -0.5229492188, -0.4375, 1.080078125, 0.5126953125, -0.4260253906, 0.654296875, -0.9692382812, 0.4790039062, 0.4086914062, -0.7314453125, -0.3366699219, -0.7241210938, 0.2556152344, -0.9057617188, -0.8583984375, -0.0440063477, -0.7456054688, 1.369140625, -0.0848999023, 0.9819335938, -0.6552734375, 0.0093154907, 0.2181396484, 0.2619628906, -0.2524414062, -0.1768798828, 0.1304931641, -0.2536621094, -0.72265625, 1.1025390625, -0.568359375, 0.7568359375, 0.185546875, 0.0229492188, -0.5922851562, 0.0012149811, 0.6108398438, -0.1411132812, -0.2010498047, 0.2810058594, 0.3571777344, 0.51171875, 0.6787109375, 0.1309814453, 0.640625, 0.5327148438, -1.841796875, -0.0304870605, -1.63671875, 0.3264160156, -0.9189453125, -1.1318359375, -0.2822265625, 0.0938110352, 0.8706054688, 0.3913574219, 1.0126953125, 0.0597229004, -0.1252441406, -0.3039550781, 0.4731445312, -0.3786621094, 0.3967285156, 0.0408630371, -0.3688964844, 0.826171875, 0.6987304688, -0.7592773438, 0.4245605469, 0.1080322266, 0.9951171875, 1.6123046875, 0.3588867188, -0.6860351562, 0.0506591797, 0.1004638672, -0.0943603516, -1.310546875, 0.4421386719, -0.884765625, -0.0362243652, -0.5600585938, 0.2934570312, -0.5854492188, 0.1260986328, 0.2385253906, -0.7778320312, 0.810546875, -0.0099563599, -0.0097045898, -0.1560058594, 0.0440979004, -0.1067504883, 0.1135864258, 0.082824707, 0.0605773926, 0.3388671875, 0.4721679688, -0.0764770508, -1.3115234375, 0.8481445312, -0.2731933594, 1.4970703125, -0.8193359375, -0.1058349609, -0.7163085938, -0.0414733887, 0.37109375, -0.5551757812, -0.1569824219, 0.69921875, -0.2810058594, -1.7763671875, -0.0487670898, 0.533203125, 0.0966186523, 0.322265625, -0.1282958984, -0.0198822021, -0.1229248047, -0.1811523438, -0.91015625, 0.2398681641, 1.271484375, 0.5629882812, -0.1606445312, 0.3291015625, 0.4489746094, 0.5717773438, -1.2626953125, 0.1242675781, -0.9736328125, -0.4421386719, -1.0234375, 0.0784301758, -0.6015625, -0.3442382812, -0.4482421875, 0.62890625, 0.4309082031, 0.2022705078, -0.6284179688, -0.1281738281, 0.595703125, -0.009765625, -0.8813476562, -0.4677734375, -0.8735351562, 0.5249023438, 0.3645019531, -0.6831054688, 1.091796875, -0.0126190186, -0.2409667969, 0.1417236328, 0.2612304688, -0.1068725586, 0.1778564453, 0.5786132812, 0.1829833984, -1.03515625, 0.1079711914, 0.9155273438, 0.1441650391, -0.0690307617, 0.2340087891, -0.4221191406, -0.3298339844, 0.240234375, 0.4670410156, 0.4099121094, -1.404296875, 0.923828125, 0.404296875, 0.0727539062, 1.39453125, 0.2414550781, 0.4033203125, -0.5131835938, 1.1337890625, 1.0498046875, -0.28515625, 0.0833129883, 1.0537109375, -0.5419921875, 0.1953125, 0.5595703125, 0.6479492188, -0.2666015625, 1.2783203125, -0.3637695312, -1.2412109375, -0.49609375, -0.2961425781, -0.599609375, 0.0711669922, 0.2814941406, -0.80078125, -0.4270019531, -0.1627197266, -0.70703125, 0.1069946289, -0.0776367188, 1.0029296875, -1.0166015625, 0.0677490234, -0.2481689453, 0.0458068848, 0.4621582031, 0.9848632812, 0.4465332031, -0.1531982422, -0.3374023438, -1.4931640625, 0.0373840332, -0.0290527344, -0.1843261719, -0.1950683594, -0.8227539062, 0.0090789795, 0.353515625, -0.4409179688, -0.8017578125, 0.0171508789, 0.7114257812, 1.0087890625, 0.330078125, -0.7563476562, -0.7646484375, -0.1646728516, -0.7905273438, -0.0854492188, -0.0785522461, 0.2355957031, -0.0280914307, 0.6337890625, 0.5483398438, -0.595703125, 0.4638671875, -0.4113769531, -0.4301757812, -0.7939453125, -0.6362304688, 0.4602050781, 0.3356933594, 0.5717773438, -0.0950927734, 0.0811767578, 0.560546875, 0.685546875, -0.0598144531, -0.1324462891, 0.580078125, 0.4057617188, -0.658203125, 0.7250976562, -0.1477050781, 0.1468505859, -0.2381591797, 1.2216796875, -0.646484375, 0.6381835938, 0.8686523438, -0.556640625, -0.2553710938, -0.7026367188, -1.0517578125, -1.318359375, 0.0349731445, -0.7397460938, -0.8764648438, 1.1171875, 0.2022705078, -0.2980957031, 0.7016601562, -1.6064453125, -0.8159179688, 0.8540039062, 0.8056640625, 0.7680664062, -0.0914916992, 0.3369140625, -0.1789550781, -0.4816894531, 0.1927490234, -0.1213989258, 0.2102050781, -0.1849365234, 1.361328125, 0.5908203125, 0.2956542969, 0.5791015625, 0.3159179688, -0.3393554688, 0.7294921875, 0.1547851562, -1.3759765625, 0.057434082, -13.6328125, -0.7197265625, -0.1618652344, 0.630859375, -0.0979003906, 0.4189453125, -0.3103027344, -1.130859375, -1.0498046875, 0.3723144531, -0.1591796875, 0.5258789062, 0.4172363281, 0.4509277344, 0.6201171875, -1.025390625, -0.3603515625, 0.3588867188, 0.6069335938, -0.6352539062, -0.1791992188, -0.4704589844, -0.1839599609, 0.1541748047, -0.0982666016, 0.3356933594, 1.0810546875, -0.1181030273, -0.609375, -0.7861328125, -0.1158447266, 0.7421875, -0.5122070312, -0.8168945312, -0.0717773438, -0.6826171875, 0.697265625, -0.2578125, 0.6352539062, 0.0619506836, 0.1691894531, 0.255859375, -1.607421875, -0.0780639648, 0.505859375, 0.0833740234, 0.1604003906, 0.2122802734, -0.365234375, -0.5151367188, 0.1229858398, -0.5776367188, -0.2362060547, 0.796875, -1.625, -0.5595703125, 0.248046875, 0.0010719299, 0.2052001953, 1.0185546875, 0.2286376953, 0.5073242188, -0.3901367188, -0.0681152344, 0.0119552612, -0.2541503906, -1.3955078125, -0.4899902344, 0.2386474609, -0.2241210938, -0.0207977295, -1.4453125, 0.2313232422, 0.4406738281, 0.0767211914, -0.1407470703, 0.2274169922, 0.80078125, -0.0407714844, 0.2578125, -0.6225585938, 0.1379394531 ]
For example, a person may be entitled to some privileges during work from their workplace that may be denied from home out of hours. How it might work Before a user gets to the network there is usually some form of machine authentication, this probably verifies and configures the system for some basic level of access. Short of mapping a user to a MAC address prior or during this process (802.1x) it is not simple to have users authenticate at this point. It is more usual for a user to attempt to authenticate once the system processes (daemons) are started, and this may well require the network configuration to have already been performed. It follows that, in principle, the network identity of a device should be established before permitting network connectivity, for example by using digital certificates in place of hardware addresses which are trivial to spoof as device identifiers. Furthermore, a consistent identity model has to account for typical network devices such as routers and switches which can't depend on user identity, since no distinctive user is associated with the device. Absent this capability in practice, however, strong identity is not asserted at the network level. The first task when seeking to apply Identity Driven Network controls comprises some form of authentication, if not at the device level then further up the stack. Since the first piece of infrastructure placed upon a network is often a network operating system (NOS) there will often be an Identity Authority that controls the resources that the NOS contains (usually printers and file shares).
[ -0.2438964844, -0.2658691406, -0.2084960938, 0.8950195312, -0.9116210938, -0.826171875, -0.9931640625, -1.0634765625, 0.8408203125, 0.1942138672, -0.0750732422, 0.3784179688, -0.2919921875, 0.4873046875, 0.6606445312, 0.0110168457, 0.0960083008, 1.638671875, 0.1602783203, -0.6630859375, -0.0677490234, -1.1865234375, 0.0091629028, -1.41796875, 0.073059082, -0.765625, 0.9477539062, 0.6591796875, 0.5654296875, 0.556640625, 0.8388671875, 0.6508789062, -2.03125, 0.4304199219, 0.8735351562, 0.681640625, 0.3125, -0.5444335938, 0.1506347656, 0.771484375, 0.2668457031, -0.1678466797, 0.2117919922, -0.4196777344, 0.3359375, 0.3068847656, -0.0864257812, -1.404296875, -1.2109375, -0.3010253906, 1.486328125, -0.4714355469, 0.33984375, -0.1488037109, 0.6567382812, -0.806640625, -0.0063705444, -0.8081054688, -0.2375488281, 0.625, 0.181640625, -0.1468505859, 0.0479736328, -0.42578125, -0.5625, 0.8588867188, -0.9189453125, 1.6923828125, -0.3930664062, -0.1798095703, 0.1544189453, 0.3732910156, 0.1850585938, -0.0849609375, 0.1365966797, 1.162109375, 0.0700683594, 0.1978759766, 0.5561523438, 0.7690429688, -1.0107421875, -1.064453125, -0.1748046875, -0.9208984375, -0.0623168945, 0.4138183594, -0.0530090332, -0.4128417969, 0.1910400391, -0.46875, 1.1201171875, -0.0675048828, 1.3310546875, -0.4877929688, -0.5512695312, -0.9809570312, 0.7426757812, -0.7358398438, 0.4895019531, 0.1101074219, -0.3078613281, 0.3728027344, 0.1578369141, 0.416015625, -0.9150390625, -0.2012939453, -0.1220703125, -0.0028362274, 0.2863769531, 0.6186523438, -0.2895507812, -0.1282958984, -0.5517578125, -0.3591308594, -0.3447265625, -0.0383911133, 0.5688476562, -0.3818359375, 0.1079101562, -0.1188964844, -0.7592773438, 1.146484375, -0.8979492188, 0.1489257812, -0.2254638672, -0.0720214844, 0.4128417969, 0.2434082031, 0.7241210938, 1.3642578125, -0.4006347656, 0.5776367188, -0.4145507812, 0.1540527344, 0.2858886719, -0.4272460938, -0.5668945312, 0.0010566711, -0.5205078125, 0.3745117188, -0.1947021484, -0.1776123047, -0.6474609375, -0.3376464844, -0.2746582031, -0.5615234375, -0.6225585938, 0.3208007812, 0.4548339844, 0.2497558594, -0.7915039062, 0.3762207031, -0.4597167969, 1.1728515625, -0.2124023438, 0.1811523438, -0.1683349609, -0.0326538086, 0.065612793, -0.279296875, -1.0263671875, -1.8388671875, 0.4013671875, -0.6196289062, -0.7724609375, 1.08984375, -1.0322265625, 0.1275634766, 0.3017578125, 0.2109375, -0.6958007812, 0.1618652344, -0.8842773438, -0.2846679688, 0.2069091797, 1.01171875, -0.4360351562, -0.884765625, 0.9575195312, -0.6982421875, 0.7236328125, -1.1201171875, 0.708984375, -0.2247314453, 2.185546875, -0.1127929688, -0.1740722656, -0.7451171875, -0.4174804688, -0.6547851562, -0.0715332031, -1.1376953125, -0.1390380859, 1.5185546875, -0.2734375, -0.4499511719, 0.48046875, -0.833984375, 0.1372070312, -0.0743408203, 0.7690429688, -0.65625, 0.0537719727, -0.8876953125, -0.2028808594, 0.6030273438, 0.2795410156, 1.2958984375, -0.798828125, 0.4699707031, -0.48046875, -0.3840332031, -0.4030761719, 0.7705078125, -1.31640625, -0.3312988281, -0.2495117188, -0.1511230469, 0.4382324219, 0.1375732422, -0.5014648438, 0.703125, -0.2413330078, -0.9848632812, 0.2485351562, -1.619140625, 0.4484863281, -0.384765625, -0.1595458984, 0.2893066406, -0.1823730469, 0.1479492188, 0.48046875, 0.0889282227, 0.3383789062, -0.7568359375, 0.0328674316, -0.3518066406, -0.2103271484, 0.322265625, -0.0676879883, -1.287109375, -0.2780761719, -0.5590820312, 0.1867675781, -0.5913085938, 0.4438476562, -0.935546875, -0.6396484375, -0.1784667969, 0.0229187012, 0.5678710938, -0.6000976562, 1.0927734375, 0.2614746094, -0.5014648438, 0.6752929688, -0.2932128906, -0.7734375, -1.455078125, -0.4968261719, 0.1788330078, 0.4987792969, -1.1123046875, -0.97265625, -0.6103515625, -0.6538085938, -0.3591308594, 0.552734375, -0.085144043, 0.3015136719, 0.0974731445, 0.5390625, -0.3208007812, -0.0325012207, 0.1329345703, -0.4135742188, -0.9897460938, 1.1708984375, -0.8193359375, 0.3393554688, 0.1031494141, -1.1025390625, 0.2580566406, 0.0215911865, -0.4499511719, -0.2551269531, 0.8149414062, -0.1859130859, 0.6010742188, 0.5161132812, 0.1398925781, -0.0751342773, -0.9423828125, 0.0618591309, 0.2587890625, 0.1611328125, 0.7475585938, -0.6772460938, -0.3391113281, -0.556640625, 0.9770507812, -0.4836425781, 0.0219726562, 1.318359375, 0.2614746094, -0.8374023438, -0.5625, -0.6118164062, 0.6279296875, -0.6704101562, 1.048828125, 0.1354980469, -0.5209960938, 0.6103515625, -0.2807617188, -0.541015625, -0.736328125, -0.2670898438, -0.2333984375, -1.1455078125, -0.1623535156, -0.5922851562, -0.8432617188, 0.6909179688, 0.3498535156, 0.37890625, -0.6796875, 0.0031986237, -0.0200653076, -0.082824707, 0.5205078125, 1.0986328125, -0.0628662109, -0.8032226562, 0.0540771484, 0.5083007812, -0.4716796875, 0.5322265625, 0.7026367188, -0.7841796875, -1.0029296875, 0.0200500488, -1.615234375, 0.9780273438, 0.0330810547, -0.3176269531, 0.0141677856, -0.1177978516, -0.0881347656, -0.40234375, -0.3857421875, 0.2624511719, -0.2431640625, 0.0932006836, -1.2080078125, 0.2551269531, 0.8271484375, -0.1016235352, 1.27734375, 0.6538085938, -0.2502441406, -0.3747558594, 0.4750976562, -0.9946289062, 0.8623046875, -0.0648803711, 0.779296875, 0.4641113281, -0.4873046875, 1.609375, 0.0566101074, -0.5649414062, -0.7856445312, 0.90234375, 0.5678710938, -0.4653320312, 0.2756347656, -0.6762695312, -0.1741943359, 0.7534179688, -0.4890136719, 0.0237579346, -0.2357177734, 0.3420410156, -0.6748046875, 0.3735351562, 0.1967773438, -1.3134765625, -1.2470703125, -0.4392089844, -0.638671875, 0.1354980469, 1.080078125, -0.6083984375, 0.0320739746, 1.951171875, 0.455078125, 0.4919433594, 0.4213867188, 0.7241210938, 0.2236328125, -0.0172729492, 0.3137207031, 1.27734375, 1.3095703125, 1.7646484375, 0.0718383789, -0.1379394531, 0.1741943359, 0.140625, -1.041015625, 0.5327148438, 0.0950317383, -0.0632324219, 0.4873046875, 0.666015625, -1.234375, 0.4738769531, -0.4887695312, -0.619140625, -0.2138671875, 0.673828125, -0.13671875, -0.6962890625, 0.1678466797, -0.6328125, 0.1083984375, 0.0030231476, -0.0539245605, -0.9829101562, 0.2731933594, -0.0657348633, 0.2993164062, -0.3093261719, 0.5317382812, 0.1584472656, -0.3698730469, 0.5234375, 0.5678710938, 0.4226074219, 0.6083984375, -0.0202636719, 0.0798339844, -0.1700439453, -0.3220214844, 0.4116210938, -0.7822265625, 0.9213867188, -0.2827148438, -0.0805053711, -0.4260253906, 0.7373046875, -0.1315917969, 0.251953125, 0.4445800781, -1.341796875, 0.1506347656, -0.8232421875, 0.263671875, -0.1131591797, -0.3247070312, -0.8022460938, -0.7021484375, 0.4624023438, -0.2198486328, -0.2873535156, -0.1867675781, -0.5869140625, -0.2678222656, -0.1898193359, 0.2133789062, -0.1525878906, 0.3298339844, -0.7622070312, 0.020401001, 0.515625, 0.1771240234, -0.3400878906, 0.2302246094, 0.4624023438, 0.3383789062, -1.767578125, -0.0167388916, 0.6059570312, 0.8857421875, 0.7719726562, -0.8779296875, 0.4936523438, -0.630859375, 1.0400390625, -0.4104003906, 0.4245605469, 0.2680664062, -0.5874023438, -1.08984375, -0.232421875, 0.5512695312, -0.8950195312, -0.671875, 0.2203369141, 0.2973632812, -0.4230957031, -1.3681640625, 0.9770507812, -1.068359375, 0.6245117188, 0.0617980957, 1.068359375, -0.3449707031, -0.0559082031, 1.3955078125, -0.1740722656, -0.6044921875, -0.2438964844, -0.2296142578, -0.3852539062, -0.79296875, -0.0811157227, -1.1708984375, 0.1258544922, 0.1416015625, 0.2022705078, -0.2790527344, 0.0080947876, 1.8310546875, 0.2592773438, 1.2958984375, 0.7133789062, 0.4392089844, 0.4545898438, 0.108581543, 0.9145507812, 0.9086914062, 0.4838867188, -0.8022460938, 0.1616210938, -0.8950195312, 0.1839599609, 0.8330078125, -0.3291015625, -0.8745117188, 0.3845214844, 0.3303222656, -0.0263214111, 0.6108398438, 0.4096679688, -0.3640136719, -0.2856445312, 0.7138671875, 0.3828125, 0.0458068848, -0.1722412109, 1.294921875, -1.1328125, -0.3413085938, -0.826171875, 0.4609375, -0.0273132324, 0.7421875, -0.0079193115, 0.6899414062, 0.6484375, -0.0747680664, 0.2907714844, 1.1884765625, 0.6235351562, 0.0387268066, -0.005947113, 0.0106964111, -0.2973632812, 0.3637695312, 0.0368652344, -1.01953125, 0.4768066406, 0.4733886719, -0.369140625, 0.4831542969, 0.9741210938, -0.3076171875, 0.560546875, 0.2902832031, -1.0283203125, -0.6977539062, -0.051940918, 0.8022460938, 0.2152099609, 0.0558776855, 0.365234375, -0.5493164062, 0.2939453125, -1.341796875, -0.2531738281, -0.3200683594, -0.6606445312, -0.8076171875, 0.9477539062, 0.3383789062, 1.0087890625, -0.0830078125, 0.2052001953, -0.193359375, 0.6352539062, 0.6118164062, -0.4289550781, -1.2001953125, -0.6176757812, 0.0173950195, -0.0282745361, -0.705078125, 0.4057617188, 0.4626464844, -0.9619140625, 0.4194335938, -0.287109375, -0.6796875, 0.3488769531, 0.2722167969, -0.4396972656, -0.8686523438, -0.1716308594, -0.2958984375, 0.053894043, -0.607421875, 0.0191345215, -1.1123046875, -1.0380859375, -0.30078125, -0.2147216797, 0.53125, -1.283203125, -0.5126953125, 0.1839599609, 0.5341796875, -0.0849609375, 0.3566894531, 0.2934570312, 0.515625, 1.015625, 0.1013793945, 0.3771972656, 0.3117675781, -0.0336608887, 0.7319335938, 0.050201416, 0.0885620117, 0.283203125, 0.3181152344, 0.0708007812, 1.48046875, -0.2641601562, 0.1478271484, 1.060546875, -0.4868164062, 0.1607666016, -0.3630371094, 1.0947265625, -0.96875, -1.390625, 0.1315917969, -1.32421875, 1.9306640625, -0.3579101562, 0.4978027344, -0.642578125, 0.3134765625, -0.3625488281, 0.0877075195, -0.0106735229, -0.54296875, -0.513671875, -0.9028320312, -0.4985351562, 0.8862304688, -0.1951904297, 1.3154296875, 0.5141601562, 0.6376953125, -0.7456054688, 0.1779785156, 0.3781738281, -0.0816650391, 0.3271484375, 0.4174804688, -0.2038574219, 0.9936523438, 0.48828125, -0.623046875, 0.3745117188, 0.2071533203, -2.515625, -0.1636962891, -1.724609375, -0.0557556152, 0.0796508789, -1.3212890625, -0.3791503906, 0.1524658203, 0.2663574219, 0.552734375, 0.4211425781, 0.2492675781, 0.3979492188, -0.5776367188, 0.3471679688, 0.0526123047, 0.0629272461, 0.2961425781, 0.2619628906, 0.1284179688, 0.0448303223, -0.8212890625, 0.2198486328, -0.0389709473, 1.736328125, 1.1904296875, -0.4343261719, -0.0658569336, -0.5610351562, -0.6899414062, -0.2291259766, -1.4814453125, 0.6298828125, -0.5014648438, 0.2956542969, -0.0934448242, 0.0494689941, -1.3603515625, 0.1790771484, 0.787109375, 0.035736084, 0.7983398438, -0.318359375, -0.1766357422, 0.5874023438, -0.130859375, 0.0198822021, -0.4943847656, 0.3942871094, -0.4096679688, 0.2749023438, 0.7563476562, -0.0104217529, -0.4943847656, 0.2900390625, 0.0375671387, 1.572265625, -0.6157226562, -0.0313720703, -1.0712890625, -0.1228027344, 0.4643554688, -0.2001953125, 0.65234375, 0.3374023438, 0.3642578125, -1.65625, -1.01171875, 0.7739257812, -0.4985351562, 0.4304199219, -0.1729736328, 0.2257080078, -0.1890869141, -0.1295166016, -0.8842773438, 0.4057617188, 0.943359375, 0.1049804688, -0.2430419922, 0.396484375, -0.4128417969, 0.0512695312, -1.96875, -0.0568237305, -0.83203125, -0.2778320312, -1.17578125, 0.4353027344, 0.3876953125, 0.0679931641, 0.0732421875, 0.83203125, 0.6459960938, 0.2966308594, -0.8173828125, 0.3566894531, 0.3212890625, -0.4438476562, 0.7041015625, -1.078125, -0.5966796875, 0.8002929688, 0.5151367188, 0.4387207031, 0.7690429688, -0.2200927734, -0.079284668, 0.0034732819, 0.1571044922, -0.1001586914, -0.4692382812, 0.6909179688, 0.7758789062, -0.771484375, -0.1513671875, 1.427734375, 0.2941894531, 0.0517272949, -0.0948486328, -0.5600585938, -0.35546875, -0.2563476562, -0.4145507812, 0.6137695312, -0.3820800781, 0.6474609375, -0.2622070312, 0.3525390625, 2.04296875, 0.2951660156, -0.7885742188, 0.0101242065, 0.8071289062, 1.046875, -1.255859375, 0.4426269531, 0.3935546875, -1.1806640625, 0.9458007812, 0.3015136719, 0.2976074219, 0.0276489258, 1.6884765625, -0.5732421875, -0.7104492188, -0.466796875, -0.7607421875, -0.748046875, 0.3962402344, 0.1920166016, -0.4465332031, -0.0547180176, -0.4416503906, -0.9477539062, -0.0083312988, -0.0798950195, 0.0875854492, -0.3234863281, 0.365234375, -0.4177246094, -1.3916015625, 0.876953125, 0.0280609131, -0.4873046875, -0.4921875, -1.0126953125, -1.4482421875, 0.1594238281, 0.0389099121, -0.4187011719, -0.5151367188, -1.1123046875, -0.830078125, 0.7944335938, 0.0723876953, -0.7358398438, 0.2000732422, 1.212890625, 0.1148681641, 0.5966796875, -0.3588867188, -1.8603515625, -0.2575683594, -0.1776123047, -0.392578125, -0.0574951172, 0.55859375, -0.4870605469, -0.1297607422, 0.1497802734, 0.1356201172, -0.0295257568, -0.4423828125, -1.0068359375, -0.736328125, -0.9389648438, 0.4045410156, -0.1785888672, 0.0384216309, -0.2893066406, -1.2431640625, 0.4340820312, 0.1090698242, 0.65234375, -0.6181640625, 0.0677490234, -0.4416503906, -0.5083007812, 0.8427734375, -0.49609375, -0.1910400391, -0.8227539062, 0.7534179688, -1.4931640625, 0.2717285156, 0.3413085938, -0.982421875, 0.1821289062, -1.5224609375, 0.8569335938, -1.0966796875, -0.3400878906, 0.1540527344, -0.3188476562, 1.2060546875, 0.2963867188, -0.4885253906, 0.806640625, -0.0689697266, -0.2132568359, -0.1832275391, 0.689453125, 1.0703125, 0.0497741699, 0.921875, 0.9252929688, 0.9233398438, -1.0791015625, 0.2124023438, 1.3310546875, 0.0247497559, 1.509765625, 1.2197265625, 0.111328125, 0.5600585938, 0.4982910156, -0.7280273438, 1.4091796875, 0.501953125, -0.859375, -0.2198486328, -11.8359375, -0.0504455566, -0.1846923828, 0.0557861328, 0.1846923828, -0.3869628906, 0.509765625, -0.7006835938, -0.9819335938, -0.1813964844, 0.2800292969, -0.7880859375, 0.5493164062, 0.4489746094, 0.4338378906, -1.0673828125, -0.1214599609, 0.2624511719, 1.255859375, -0.1881103516, 0.9936523438, -0.7202148438, -0.1630859375, 0.53125, 0.9814453125, 0.0987548828, 0.37109375, 0.4318847656, 0.0166473389, -1.201171875, -0.4948730469, 0.4096679688, -0.5498046875, -0.8603515625, 0.5615234375, -0.333984375, 1.052734375, 0.1055908203, 0.546875, -0.2006835938, -0.5615234375, 0.603515625, -1.1572265625, -0.0716552734, 0.4611816406, -0.2827148438, -0.7817382812, -0.5771484375, -0.2242431641, 0.2329101562, -0.3056640625, -0.666015625, 0.071472168, -0.0396118164, -1.9697265625, -0.4050292969, -0.50390625, -0.0897216797, 0.2237548828, 1.1826171875, 0.7099609375, -0.9233398438, -0.7255859375, -0.3603515625, 0.6176757812, -0.2556152344, -1.4716796875, -0.8427734375, 0.1484375, -0.3100585938, -0.634765625, -1.1484375, -0.1883544922, 0.958984375, -0.3522949219, 0.2446289062, -0.1682128906, -0.2034912109, 0.1995849609, -0.1107177734, -0.6791992188, -0.0363769531 ]
There will also be procedures to authenticate users onto it. Incorporating some form of single sign-on means that the flow on effect to other controls can be seamless. Many network capabilities can be made to rely upon authentication technologies for the provisioning of an access control policy. For instance; Packet filtering -firewall, content-control software, Quota Management systems and Quality of service (QoS) systems are good examples of where controls can be made dependent upon authentication. See also AAA protocols such as RADIUS LDAP EAP References Computer access control
[ -0.5668945312, -0.005115509, 0.1495361328, 0.1756591797, -0.1281738281, -0.3566894531, -1.548828125, -0.5083007812, 0.8881835938, 0.4228515625, -0.2056884766, -0.1732177734, -0.005115509, 0.9072265625, -0.1138305664, -0.1329345703, 0.0395812988, 0.837890625, 0.671875, 0.3649902344, 0.2082519531, -0.7431640625, 0.3596191406, -1.6240234375, 0.8515625, -1.255859375, 0.384765625, 0.7524414062, -0.5854492188, 0.6044921875, 0.7241210938, -0.0497131348, -2.1796875, 0.138671875, -0.0347595215, 0.6635742188, -0.2037353516, -0.0656738281, -0.3994140625, -0.0926513672, 0.4794921875, 0.0479125977, -0.4086914062, -0.6811523438, 0.177734375, 0.166015625, 0.5390625, -0.5473632812, -1.5810546875, -0.2893066406, 0.1875, -0.3330078125, 0.5517578125, -0.814453125, 0.8154296875, -0.8173828125, -0.0863037109, -0.6928710938, 0.419921875, 0.7485351562, -0.2954101562, 0.8330078125, 0.267578125, -0.3205566406, 0.591796875, 1.08203125, -0.0244903564, 1.369140625, -0.5014648438, -0.1345214844, -0.8061523438, 0.7509765625, -0.1961669922, 0.0897827148, -0.1466064453, 0.8227539062, 0.7407226562, 0.0710449219, 0.0472106934, 0.7763671875, -0.4895019531, 0.1578369141, -0.671875, -0.3039550781, 0.7290039062, 1.421875, -0.1470947266, 0.2565917969, -0.2897949219, -0.8618164062, 0.4924316406, -0.1479492188, 0.2191162109, -0.5634765625, -0.8471679688, -0.1950683594, 0.5932617188, -0.2661132812, 0.6088867188, 0.4350585938, 0.1524658203, -0.4782714844, 0.0999145508, -0.5649414062, -0.5336914062, 0.8071289062, 0.2036132812, -0.2498779297, 0.3366699219, 0.9848632812, -0.1236572266, -0.8623046875, -0.0404663086, -0.2019042969, 0.283203125, 0.5395507812, -0.1854248047, 0.0662841797, 0.2032470703, -0.1796875, -0.4152832031, 0.7495117188, 0.0930786133, -0.2856445312, 0.0499572754, 0.1892089844, 0.1396484375, 0.4721679688, 0.3696289062, 0.453125, -0.4748535156, -0.5498046875, -0.2054443359, -0.2141113281, -0.7109375, 0.0328674316, -0.7182617188, -0.3579101562, -0.1384277344, 0.48828125, -0.5576171875, -1.021484375, -1.11328125, -1.044921875, -0.0247039795, -0.5068359375, -0.3034667969, 1.001953125, -0.6552734375, 0.54296875, 0.2668457031, 0.3508300781, -0.1368408203, -0.8237304688, 0.0616149902, 0.2434082031, -0.3293457031, 0.2751464844, 0.058807373, -0.6733398438, -0.1962890625, -0.896484375, 0.4770507812, 0.1594238281, -0.2308349609, 0.0070228577, -0.5463867188, 0.3903808594, 0.2956542969, -0.2727050781, -0.728515625, -0.0519104004, -1.208984375, -0.1832275391, 0.1726074219, 0.2453613281, 0.0963745117, -0.7446289062, -0.3134765625, -0.74609375, 0.3840332031, -1.3408203125, 0.7407226562, -0.6044921875, 1.6865234375, 0.7802734375, 0.3100585938, -0.2739257812, -0.6342773438, -0.720703125, 0.580078125, 0.5053710938, -1.2939453125, 0.7055664062, -1.3251953125, -0.4792480469, 0.2966308594, -0.3483886719, -0.2858886719, -0.712890625, 0.0046310425, 0.2709960938, 0.0020236969, -0.5087890625, -0.1020507812, 0.2814941406, 1.048828125, 1.5166015625, -0.3034667969, -1.390625, -0.1427001953, -0.6342773438, 0.6416015625, 0.8237304688, -0.9497070312, 0.8862304688, -0.4741210938, 0.0241241455, 1.462890625, 0.1522216797, -0.8129882812, 0.6870117188, -0.44140625, -0.3051757812, -0.4250488281, -0.6625976562, 0.841796875, 1.0009765625, 0.2434082031, 0.2344970703, 1.224609375, 0.908203125, -0.6694335938, 0.951171875, 0.896484375, -0.2224121094, 0.1423339844, 0.1629638672, -0.8227539062, 0.2521972656, 0.3161621094, 0.7353515625, -0.6000976562, -0.2351074219, 0.9169921875, -0.3117675781, -0.6069335938, 0.1372070312, -0.6850585938, -0.2346191406, 0.5375976562, 0.2048339844, -0.5141601562, 0.8046875, 0.470703125, 0.0586547852, 0.7861328125, -0.2978515625, -0.4848632812, -0.59375, -0.1468505859, 0.1605224609, 0.630859375, -0.7578125, -0.4562988281, -1.21484375, -1.0166015625, -0.6044921875, 0.6396484375, -0.6137695312, 0.9614257812, 0.0250854492, 0.3439941406, -0.6440429688, -1.1044921875, 0.4731445312, 0.3852539062, -0.2258300781, 1.5126953125, -0.0372924805, 0.46875, -0.13671875, 0.1754150391, 0.7475585938, 0.4279785156, -0.8315429688, -0.1113891602, 0.2388916016, 0.1612548828, 0.4816894531, 0.72265625, -0.2619628906, -0.065612793, 0.2301025391, 0.591796875, 0.4724121094, 1.0263671875, 0.9541015625, -1.3974609375, -0.3657226562, -0.8598632812, -0.5170898438, -0.1853027344, 0.16015625, 0.5336914062, 0.3442382812, 0.0049324036, -1.171875, -0.5161132812, 1.2314453125, 0.1896972656, 0.0500488281, -0.4028320312, 0.6323242188, -0.0182800293, -0.38671875, -0.5478515625, -0.1761474609, 0.306640625, 0.2646484375, -0.6577148438, -0.1008300781, 0.0494995117, -0.3364257812, 0.1979980469, 0.3483886719, -0.3791503906, -0.7060546875, 0.1569824219, -0.1815185547, 0.162109375, -0.0305633545, 1.087890625, -0.6840820312, -0.611328125, 0.4904785156, -0.9365234375, -1.1611328125, -0.0759277344, 0.4428710938, 0.2474365234, -0.9580078125, -0.2437744141, 0.1208496094, 0.4499511719, 0.9086914062, 0.3637695312, -0.51953125, 0.2553710938, -0.1702880859, 0.5922851562, -0.3967285156, 0.8291015625, -0.2697753906, 0.4460449219, -0.3469238281, 0.2648925781, 0.9243164062, -1.068359375, 1.52734375, 0.66796875, 0.5112304688, -1.716796875, -0.3825683594, -1.533203125, 0.4829101562, 0.0041465759, 0.1806640625, -0.3779296875, -0.4909667969, 0.6918945312, 0.1917724609, -1.05078125, -0.580078125, 0.7529296875, -0.2443847656, 0.0293579102, 0.0616149902, -0.4582519531, 0.1303710938, -0.4147949219, -0.2054443359, -0.1077880859, -0.2229003906, 0.3571777344, 0.8422851562, -0.5161132812, 0.0825805664, -0.7875976562, 0.4475097656, 0.0484008789, -0.353515625, -0.556640625, 1.826171875, -0.2761230469, -0.5571289062, 1.0537109375, -0.9755859375, 0.3012695312, 0.0257873535, 0.2541503906, -0.6103515625, -1.3798828125, 0.408203125, 0.427734375, 0.7387695312, 1.5703125, -0.1032714844, -0.2531738281, 0.5947265625, -0.0274200439, -0.23046875, 0.7705078125, 0.0946044922, -0.1849365234, -0.0947265625, 0.9794921875, -1.2939453125, 0.8129882812, 0.3698730469, -0.7280273438, -0.2474365234, 0.66796875, -0.583984375, -0.8872070312, -0.3693847656, 0.3129882812, -0.4626464844, 0.0208587646, -0.3862304688, -1.025390625, -0.27734375, -0.5634765625, -0.6030273438, 0.0932617188, -0.0383911133, 0.4360351562, -0.2512207031, 0.9916992188, -0.3752441406, 0.9755859375, -0.0479431152, -0.0232086182, 0.5244140625, 0.3276367188, -0.7387695312, 0.4404296875, -0.0681152344, -0.3112792969, -1.22265625, 0.2254638672, 0.5126953125, 0.3842773438, -0.0505065918, 0.8569335938, 0.2663574219, 0.3430175781, -0.1828613281, -0.9038085938, 0.7119140625, 0.9702148438, -0.2231445312, 0.1141967773, -0.2102050781, 0.3764648438, -0.4431152344, -0.2491455078, -0.5068359375, -0.4797363281, -0.1694335938, -0.7387695312, 0.0608215332, -0.1541748047, 0.1135864258, -0.3713378906, 0.9643554688, 0.4765625, 0.0116424561, -0.2205810547, -0.4580078125, 0.9936523438, 0.8500976562, -1.427734375, 0.1668701172, -0.0951538086, 1.1025390625, 0.9521484375, -0.6928710938, -0.5825195312, 0.0169677734, 1.177734375, 0.6401367188, -1.041015625, -0.5380859375, -0.54296875, -0.6303710938, -0.3715820312, -0.1029663086, -0.6821289062, -0.2807617188, -0.7407226562, 0.4526367188, -0.4377441406, -0.599609375, -0.453125, -0.7583007812, 0.2702636719, -0.1112670898, -0.6103515625, -0.591796875, 0.2883300781, 1.0546875, 0.2321777344, 0.4001464844, -0.2259521484, 0.3642578125, -0.1837158203, -0.66796875, 0.24609375, -0.1628417969, -0.412109375, 0.2299804688, -0.5102539062, 0.2290039062, 0.1451416016, 0.7744140625, -0.4152832031, 0.458984375, 0.6455078125, 0.1864013672, 0.4887695312, 0.5766601562, 0.814453125, 0.7861328125, -0.2333984375, -0.0225830078, -0.3278808594, -0.7944335938, 0.2014160156, 0.4719238281, -0.8271484375, -0.2044677734, -0.4421386719, 0.34375, -0.0188293457, 0.6762695312, -0.0024108887, -0.7495117188, 0.5297851562, 0.1649169922, 0.3247070312, 0.7568359375, 0.1494140625, 1.5966796875, -1.21875, 0.1109008789, -1.0078125, 0.1955566406, -0.3195800781, 0.1606445312, 0.3125, 0.1098022461, 0.4931640625, -0.2883300781, -0.4809570312, 0.673828125, -0.2229003906, 0.521484375, 0.4038085938, -0.3610839844, -0.4016113281, 0.1352539062, -0.1099853516, -0.5981445312, 1.1806640625, 0.4216308594, 0.0600280762, 0.3566894531, 0.9213867188, -1.78515625, 0.9829101562, -0.5068359375, -0.7836914062, -0.1307373047, -0.3666992188, 1.775390625, 0.0442504883, 0.84375, 0.2496337891, -0.5668945312, -0.0450744629, -0.4301757812, 1.2939453125, 0.1198120117, 0.2103271484, -1.0947265625, 0.0551757812, 0.7373046875, 0.76953125, -0.2030029297, 0.3427734375, -0.279296875, 0.3610839844, -0.3881835938, -0.6181640625, -0.7939453125, -0.62890625, -0.0844116211, -0.544921875, 0.3181152344, -0.0626220703, 0.0286712646, 0.1754150391, 0.6704101562, 0.0368347168, 1.265625, -0.5815429688, 0.6723632812, -0.2521972656, -0.740234375, 0.0939941406, 0.2098388672, -0.4167480469, 0.2199707031, 0.1793212891, -0.4301757812, -0.7905273438, 0.1633300781, 0.0221099854, -0.1156616211, -0.5795898438, -0.4860839844, 0.59375, -0.0626220703, -0.390625, 0.861328125, -0.68359375, 0.1056518555, 0.5234375, 0.6899414062, 0.4594726562, 0.1047363281, 0.2883300781, 0.3051757812, -0.3759765625, 0.3532714844, -0.1431884766, 0.9233398438, -0.9677734375, 1.0546875, -0.5947265625, 0.2927246094, 0.2316894531, -1.49609375, -0.5786132812, -0.7475585938, 0.3984375, -0.1419677734, 0.2121582031, 0.3205566406, -0.8627929688, 1.7412109375, 0.3901367188, 0.6791992188, -0.78515625, 0.1427001953, 0.5390625, 0.984375, -0.1751708984, -0.3022460938, -0.5317382812, -1.1259765625, -0.0406494141, 0.2504882812, 1.01171875, -0.9038085938, 1.162109375, 0.5893554688, -0.8740234375, -0.0865478516, 0.5107421875, -0.1898193359, -0.0376281738, -0.41796875, 0.830078125, -0.5200195312, 0.2868652344, -0.5908203125, 0.1022949219, -0.0863647461, -0.5122070312, 0.0101394653, -1.888671875, -0.830078125, -0.1900634766, -1.0263671875, -0.1917724609, 0.9951171875, -0.5170898438, -0.3703613281, 0.7543945312, -1.0751953125, 0.0137252808, -0.5834960938, 0.1640625, 0.80859375, -0.0723876953, 0.2236328125, 0.4963378906, 0.7573242188, 0.8403320312, -1.029296875, -0.0539855957, 0.2395019531, 0.9555664062, 1.396484375, -0.7578125, -0.2327880859, -0.3286132812, 0.6650390625, -0.8657226562, -0.3120117188, 1.12109375, -0.5551757812, -0.1854248047, -0.4128417969, -1.5791015625, -0.5200195312, -0.5190429688, 0.2744140625, -0.2291259766, 0.275390625, -0.2814941406, -0.2371826172, -0.0128250122, 0.4265136719, 0.3481445312, 0.7158203125, 0.80078125, -0.3647460938, 0.2399902344, 0.7973632812, -0.1910400391, -1.388671875, -0.3579101562, 0.5483398438, 1.01171875, 0.0389404297, -0.5395507812, -0.7045898438, -0.2048339844, -0.1435546875, 0.0309295654, -0.0379638672, 0.7602539062, 0.2846679688, -0.8115234375, -0.134765625, 0.6494140625, -0.2462158203, 0.4370117188, -0.0903320312, 0.0701293945, -0.0166015625, -0.2160644531, -0.462890625, 1.076171875, 0.7607421875, 0.7573242188, -0.8271484375, -0.4621582031, 0.0001385212, -0.5141601562, -1.9892578125, 0.7065429688, -1.0537109375, -0.4909667969, -0.9624023438, -0.2961425781, -0.3989257812, -0.14453125, -0.265625, 0.7465820312, -0.2341308594, 0.4870605469, -0.4836425781, 1.12890625, 0.4645996094, -0.5786132812, -0.423828125, -0.7524414062, -1.0302734375, 0.6977539062, 0.818359375, -0.4514160156, -0.185546875, 0.341796875, -1.0986328125, 0.6669921875, -0.3862304688, -0.038848877, -0.7421875, 0.4096679688, -0.20703125, 0.9013671875, -0.0888061523, 1.484375, -0.412109375, 0.2238769531, 0.3605957031, -0.3642578125, -0.1499023438, -1.3564453125, 1.4296875, 0.3190917969, -0.3725585938, 1.08203125, 0.2529296875, 0.3386230469, 1.2490234375, 0.3020019531, -1.037109375, -0.1997070312, 0.3474121094, 0.2196044922, -1.4287109375, -0.12890625, 1.0244140625, -1.5322265625, 0.5971679688, 1.18359375, 0.607421875, 0.26953125, 1.0244140625, 0.5327148438, -0.537109375, -0.1488037109, -0.4821777344, 0.2248535156, 0.4370117188, -0.047454834, -0.6689453125, 0.0463562012, 0.7182617188, -0.9755859375, -0.4487304688, -1.1064453125, 0.7358398438, -0.3295898438, 0.2817382812, 0.6508789062, -0.5703125, 0.0747070312, 0.1812744141, -0.5522460938, -0.6005859375, -0.8286132812, -0.1968994141, 0.517578125, 1.3369140625, -0.1353759766, -0.0980224609, -1.1015625, -0.7172851562, 1.4521484375, -0.0145721436, -0.931640625, 0.0692749023, 0.7006835938, -0.5615234375, 0.2556152344, -0.3955078125, -0.9873046875, -0.6030273438, 0.0515136719, -0.4313964844, 0.1224975586, 0.4177246094, -0.3168945312, 0.4877929688, -0.4721679688, -0.4799804688, 0.0833129883, -0.619140625, -0.2985839844, 0.734375, -0.4643554688, -0.2897949219, -0.0258636475, -1.041015625, -0.7758789062, -0.7817382812, 0.4123535156, 0.1423339844, -0.2939453125, -0.0784301758, -0.0122528076, -0.7006835938, -0.1689453125, -0.051940918, -0.9819335938, -0.4230957031, -0.1348876953, 0.5390625, -0.2193603516, 0.3227539062, -0.0185394287, -0.8666992188, -0.1436767578, -1.2197265625, 0.2309570312, -0.408203125, 0.3249511719, -0.0000542998, -0.6313476562, 0.1942138672, -0.1641845703, 0.1234130859, 0.1139526367, -1.12109375, -0.7778320312, -0.2495117188, 0.0170593262, 0.6572265625, 0.9399414062, 0.4868164062, 0.77734375, 0.623046875, 0.3811035156, 1.0390625, 0.4934082031, -0.8198242188, 0.1904296875, 0.7856445312, 0.0843505859, 0.4392089844, 0.2934570312, -0.3432617188, 0.91015625, 0.1964111328, -0.2824707031, -0.1361083984, -13.1640625, 0.1164550781, 0.3178710938, -0.5810546875, -0.4719238281, -0.0493164062, -0.1124267578, -0.5844726562, -0.6728515625, 0.2060546875, 0.4353027344, 0.0086212158, -0.0387573242, -0.3159179688, -0.1776123047, -0.607421875, -0.1510009766, 0.4243164062, 0.7021484375, -1.0361328125, 0.027633667, -0.0958251953, -0.0596008301, 0.3833007812, 0.7626953125, -0.3896484375, 0.7846679688, -0.2198486328, -0.2941894531, -1.322265625, 0.1040649414, 0.2624511719, -0.4907226562, -0.2416992188, 0.1722412109, -0.65234375, 0.3898925781, -0.3940429688, -0.9204101562, -0.0737304688, -0.009803772, -0.4775390625, -2.29296875, -0.0536193848, -0.1622314453, -0.3654785156, -1.65625, -1.0498046875, 0.6259765625, -0.3928222656, 0.7495117188, -1.3486328125, -0.0653686523, -0.0545349121, -1.0849609375, -0.7485351562, -0.4562988281, -0.54296875, -0.3393554688, 1.0302734375, 1.525390625, -0.6586914062, 0.345703125, 0.4887695312, 0.1392822266, -0.4982910156, -0.7724609375, -1.1484375, 0.0387573242, -0.7001953125, -0.4958496094, -0.6611328125, 0.3386230469, 1.244140625, -0.5888671875, 0.6640625, -0.1088256836, -0.1994628906, 0.2310791016, -0.1228637695, -0.2066650391, 0.3083496094 ]
Jiawei Han (; born August 10, 1949) is a Chinese-American computer scientist and writer . He currently holds the position of Abel Bliss Professor in the Department of Computer Science at the University of Illinois at Urbana-Champaign. His research focuses on data mining, data warehousing, database systems, data mining from spatiotemporal data, Web data, and social/information network data. Biography Born in Shanghai on 10 August 1949, Han received his BS from University of Science and Technology of China in 1979 and his PhD from the University of Wisconsin-Madison in Computer Science in 1985. Currently he is a professor at the Department of Computer Science in the University of Illinois at Urbana-Champaign, where he teaches He teaches courses CS412 - Data Mining and CS512 - Advanced Data Mining. Han is also the Director of Information Network Academic Research Center (INARC) supported by Network Science Collaborative Technology Alliance (NSCTA) program of U.S. Army Research Lab (ARL). Han has chaired or served on over 100 program committees of international conferences and workshops, including PC co-chair of 2005 (IEEE), International Conference on Data Mining (ICDM), Americas Coordinator of 2006 International Conference on Very Large Data Bases (VLDB). He also served as the founding Editor-In-Chief of ACM Transactions on Knowledge Discovery from Data. He is an ACM Fellow and an IEEE Fellow. He received the 2004 ACM SIGKDD Innovations Award, and the 2005 IEEE Computer Society Technical Achievement Award.
[ 0.4680175781, 0.498046875, 0.2526855469, -0.3596191406, -0.1920166016, 0.7592773438, -0.5180664062, 0.3681640625, -0.2958984375, 0.2280273438, 0.5541992188, 0.0388793945, -0.4956054688, 1.2822265625, -0.6635742188, -0.4841308594, 0.30078125, -0.5952148438, -0.2288818359, -0.798828125, -0.1104125977, -1.193359375, -0.3444824219, -0.7856445312, -0.8725585938, 0.6362304688, 0.6748046875, 0.1684570312, 1.2841796875, -0.2846679688, -0.6967773438, 1.3193359375, -2.060546875, -0.4357910156, -0.4858398438, 0.3037109375, -0.2592773438, -0.7861328125, -0.2607421875, -0.5639648438, -0.4428710938, 0.0751342773, -0.779296875, -0.6196289062, 0.998046875, 0.2401123047, -0.2242431641, 0.2448730469, -0.5258789062, 0.9262695312, -0.8715820312, 0.1336669922, -0.3247070312, 0.3168945312, -1.3603515625, -0.4230957031, 1.248046875, -0.3303222656, -0.0509643555, -0.3098144531, 0.0941772461, 1.107421875, -0.3864746094, -0.0080108643, 0.4602050781, -0.6821289062, -0.7060546875, 0.203125, -0.7934570312, 1.158203125, -1.3994140625, 0.1978759766, -0.2946777344, 0.3781738281, 0.8852539062, 0.0288696289, -0.2396240234, 0.3981933594, -0.3659667969, 0.1798095703, 0.2924804688, -0.0049552917, -0.5771484375, -0.7646484375, 0.1478271484, 0.0257720947, -0.7265625, -0.5659179688, -0.8330078125, 0.0756835938, 0.1850585938, -0.2580566406, 1.2333984375, -0.2546386719, -1.212890625, 1.048828125, -0.0433959961, 0.2320556641, -0.2707519531, 0.8359375, -0.2546386719, -0.3054199219, -0.4890136719, -0.3955078125, 0.4848632812, 1.1767578125, 0.0913085938, -0.0325012207, -1.0048828125, 1.0380859375, 0.5380859375, 0.1705322266, -0.65625, -1.5498046875, 0.2504882812, 0.7470703125, 0.1733398438, -0.3872070312, -0.1563720703, 0.0155334473, -1.0458984375, 1.4150390625, 0.0107192993, -0.1955566406, 0.619140625, 0.3217773438, 0.3901367188, 0.1068115234, -1.7177734375, 0.73828125, 0.7036132812, 0.5981445312, 0.2403564453, 0.6142578125, 0.0842895508, -0.2626953125, -1.70703125, -0.5590820312, -0.1409912109, -0.0731811523, -0.0586547852, 0.1726074219, -0.5659179688, -0.112121582, -0.8588867188, -0.0655517578, -0.6958007812, -0.2281494141, 0.5458984375, -0.7822265625, -0.1479492188, -1.072265625, -0.7133789062, 0.3835449219, -0.7524414062, 0.4050292969, 0.9536132812, -0.1484375, -0.9282226562, -1.7724609375, -0.7905273438, -1.638671875, -0.3586425781, 0.3298339844, -0.1302490234, 1.2109375, -0.9672851562, -1.171875, -0.0518188477, 0.8266601562, -1.015625, -0.0329589844, -0.1067504883, 0.1417236328, 0.2717285156, 0.2719726562, -0.2482910156, 0.1765136719, 1.08984375, -0.7309570312, 0.6489257812, -0.3798828125, 0.7197265625, -0.2114257812, -1.4150390625, 0.3989257812, -0.2043457031, -0.0910644531, -0.275390625, 0.0331726074, 0.4006347656, -0.1174926758, 0.2163085938, 0.7138671875, -0.079284668, 0.5029296875, -0.6069335938, 1.630859375, -0.0429992676, 0.9638671875, 0.7939453125, 0.2471923828, -0.2145996094, -0.0526428223, 0.004737854, 1.2021484375, 1.7470703125, 0.0442810059, 1.7138671875, 0.050201416, -0.8872070312, -0.337890625, -0.1173706055, 0.3137207031, 0.0128097534, 0.1018066406, 0.1080322266, -0.2215576172, -0.1423339844, -0.6049804688, -0.4741210938, 0.0585327148, -0.6293945312, -0.3708496094, -0.25, 0.4606933594, -0.3676757812, -0.1129760742, -1.0400390625, -1.044921875, 0.0190124512, -0.2546386719, 0.0457763672, -0.5854492188, 0.0959472656, -0.8051757812, 0.5161132812, 0.8955078125, 0.1594238281, -1.345703125, -0.7319335938, -0.7109375, 0.8310546875, 0.2919921875, -0.8911132812, 0.4497070312, 0.4609375, 0.94921875, -0.751953125, 0.4230957031, 0.5170898438, 0.5439453125, -0.7177734375, 0.3295898438, 0.5771484375, -0.7470703125, 0.1832275391, -0.3361816406, -0.2629394531, 0.4536132812, -1.365234375, 0.1036376953, 1.03515625, 0.1815185547, -0.755859375, 0.291015625, -0.0060272217, 0.3798828125, 0.0893554688, -0.6176757812, -0.5288085938, -0.1045532227, 0.2966308594, 0.5219726562, 0.4577636719, 0.2653808594, 1.0625, 1.140625, 0.173828125, -0.2590332031, 0.697265625, 0.9658203125, 0.4575195312, -0.6586914062, 1.1611328125, 0.474609375, 0.3471679688, 1.0869140625, 0.580078125, 0.5639648438, -0.2462158203, -0.4069824219, 0.9345703125, 0.5141601562, -0.3247070312, -0.748046875, 0.6020507812, -0.1785888672, -0.0667724609, -1.1787109375, 0.0465698242, 0.2561035156, -0.4936523438, -0.7861328125, 0.671875, 0.2976074219, -1.3408203125, 0.6884765625, -0.3400878906, 1.22265625, 1.677734375, 0.4833984375, -0.947265625, -0.5200195312, -0.3654785156, -1.5625, -0.8583984375, -0.0245361328, -0.1263427734, 0.099609375, 0.9560546875, -0.3542480469, 0.5844726562, -0.2785644531, -0.2939453125, 0.8237304688, 0.5708007812, -0.6088867188, 0.0920410156, 0.0219268799, 0.703125, 0.1290283203, 0.5952148438, -0.5112304688, -0.400390625, 0.0041923523, -0.1433105469, -0.9462890625, 0.9350585938, -0.2685546875, -1.0634765625, -0.2066650391, 0.2626953125, -0.1981201172, 0.5493164062, 1.005859375, -0.5224609375, 1.2412109375, -0.9926757812, -0.3327636719, -0.0411682129, 0.1147460938, -0.3845214844, 0.66796875, 0.1666259766, 0.4992675781, 0.0318603516, 0.4028320312, -0.7451171875, 0.7172851562, 0.4467773438, 0.3369140625, -1.126953125, 0.0352783203, 0.3566894531, 0.2512207031, -0.5185546875, 1.5791015625, -0.1463623047, -0.2785644531, 0.6108398438, 0.0864257812, 0.4599609375, -0.6474609375, -0.0924072266, 0.5424804688, 0.3725585938, -0.5361328125, -0.7783203125, -0.030166626, 0.4250488281, -0.705078125, -0.6201171875, -0.7583007812, -0.0709838867, 1.041015625, 0.0554199219, -0.038269043, -0.0634155273, -0.2895507812, 0.4020996094, 0.1106567383, 0.0244293213, -0.4128417969, -1.078125, -0.0579528809, 1.724609375, 0.5073242188, 0.396484375, 0.7568359375, 0.2795410156, -0.3579101562, -0.80859375, -0.1252441406, -0.0249481201, 0.8505859375, 0.5849609375, -0.5249023438, 0.3801269531, 0.55078125, 0.2756347656, 0.2161865234, -0.2861328125, -0.1977539062, -0.7578125, 0.4829101562, 0.12109375, 0.8369140625, -0.251953125, -0.2297363281, -0.5751953125, 0.1436767578, 0.0066604614, 0.2526855469, -0.0125350952, 0.4250488281, -0.2287597656, 0.0432128906, 1.0703125, -0.7934570312, 0.7983398438, 0.6665039062, -1.1298828125, 0.2729492188, 0.9877929688, -1.4541015625, -1.5751953125, -0.2727050781, -0.0045967102, 0.3979492188, 0.0557250977, 1.294921875, -1.0947265625, 0.8657226562, 0.3928222656, 0.5180664062, 0.3002929688, -0.625, 0.8520507812, -0.0559692383, -0.065246582, 0.3901367188, -0.0635375977, -0.6337890625, 0.2319335938, 0.2709960938, 0.2707519531, -1.2216796875, -0.7607421875, -0.0997924805, 0.6357421875, -0.0126953125, -0.1705322266, 0.0487060547, -0.1990966797, -0.98828125, -0.37890625, -0.0964355469, -0.4536132812, -0.7856445312, 0.110534668, 0.2337646484, 0.7651367188, 0.7924804688, -0.646484375, 0.2917480469, 0.26171875, 0.595703125, 0.0208740234, -0.708984375, -0.0532226562, 0.2478027344, -0.8588867188, -1.1708984375, -0.0254058838, 1.03125, -1.0654296875, -0.4243164062, 0.4006347656, -0.6430664062, -0.2083740234, -0.3354492188, -1.4833984375, -0.3029785156, -0.63671875, -1.7099609375, -0.2211914062, -0.2673339844, -0.8500976562, -0.7900390625, 0.1331787109, 0.7895507812, -0.5732421875, -0.4692382812, -1.0771484375, 0.2362060547, 0.0111541748, -0.0667114258, 0.1550292969, 0.1650390625, 0.2448730469, 0.0756835938, -0.2397460938, -0.4365234375, 0.1474609375, -0.4760742188, -0.4777832031, 0.4982910156, -0.0113983154, 0.1479492188, 0.9116210938, 1.0498046875, 0.7270507812, 1.2685546875, -0.5244140625, 1.23046875, -0.7680664062, -0.4836425781, 0.6904296875, 0.4699707031, 0.1689453125, 0.51953125, 0.0620117188, -0.572265625, -0.9653320312, -0.5849609375, 0.0590515137, -0.8325195312, -0.5708007812, -0.4567871094, -0.9013671875, -0.013458252, 0.5009765625, -0.9204101562, 0.4543457031, 0.6625976562, -0.353515625, -0.3278808594, 0.2297363281, -0.6528320312, 0.0706787109, 0.6821289062, 0.4038085938, 1.05078125, -1.091796875, -0.8237304688, -0.7568359375, -0.2756347656, -0.62109375, 0.3200683594, -0.0911865234, -0.50390625, -0.2283935547, 0.2492675781, 0.548828125, 0.7739257812, -0.1104125977, 0.2181396484, -0.6879882812, -0.3813476562, -1.033203125, 0.4758300781, 0.3876953125, -0.9951171875, 0.521484375, 0.5078125, -0.4841308594, -0.3381347656, 1.4189453125, 0.4375, 0.2150878906, -0.3200683594, -0.4694824219, -0.3024902344, -0.4782714844, 0.4558105469, 0.4504394531, -1.1650390625, -0.2937011719, -0.3483886719, -1.0576171875, -0.123840332, 0.8173828125, 1.451171875, -0.5717773438, 0.3352050781, 0.0487976074, 0.3269042969, -0.1783447266, -0.1085205078, 0.4677734375, -0.8212890625, 0.4501953125, -0.0398864746, 0.2312011719, -0.142578125, 1.251953125, 0.7280273438, 0.0123596191, 0.4396972656, 0.3732910156, -0.0396728516, 1.044921875, -0.3901367188, 0.1146850586, 0.2934570312, -0.521484375, 0.5268554688, -0.3601074219, 0.9526367188, 0.0541992188, -0.1401367188, -0.6557617188, 0.0241699219, 0.9697265625, 0.0391540527, -0.2039794922, 0.1195068359, -0.0499572754, 0.1490478516, 0.828125, -0.002363205, 0.7333984375, 0.552734375, -0.88671875, 0.7509765625, 0.916015625, 0.2946777344, 0.0975341797, 1.30078125, 0.8793945312, -0.4592285156, -0.4636230469, 0.1354980469, 0.50390625, -1.1259765625, -0.0072402954, 0.6303710938, -1.1962890625, 1.2314453125, 1.0615234375, 0.6171875, 0.517578125, -0.2973632812, -0.0731811523, -0.1391601562, 0.5424804688, -0.3674316406, 0.1843261719, 0.3708496094, -0.4873046875, 1.9765625, -0.2039794922, -0.0016670227, -0.5014648438, -0.0816040039, 0.5703125, -1.10546875, 0.1705322266, 0.6352539062, 0.3776855469, -0.1424560547, -0.8525390625, 0.5600585938, 0.0101165771, 0.7465820312, 0.6713867188, -0.0988769531, -0.4777832031, -0.4951171875, 0.2467041016, 0.7734375, 0.2093505859, 0.8442382812, -0.0395507812, -0.5288085938, -0.1617431641, 1.0537109375, -0.4223632812, 0.4709472656, -0.2751464844, 0.7197265625, -1.4736328125, 0.796875, 0.2875976562, -0.541015625, 0.0684204102, -0.3479003906, 0.9399414062, -0.1063232422, -0.4541015625, -0.7817382812, -0.4934082031, 0.0233612061, -1.044921875, 0.2758789062, 0.4455566406, -0.1039428711, -0.4997558594, 1.6142578125, -0.2924804688, -0.1840820312, 0.4670410156, 0.84765625, 0.6455078125, 0.0040130615, 0.4423828125, -0.5043945312, -0.0456848145, -0.2924804688, -1.49609375, -1.0439453125, 0.0874633789, -0.1837158203, 0.4235839844, -0.9013671875, 0.24609375, -0.1099853516, 1.140625, 0.8911132812, -0.0921630859, -0.4274902344, 0.0949707031, 0.5224609375, 0.8056640625, 0.4260253906, -0.5029296875, 0.0899658203, -0.509765625, -0.5126953125, 0.1141967773, -0.4621582031, -0.4069824219, 0.7685546875, -0.3479003906, 0.2927246094, 2.390625, 0.3950195312, 0.841796875, -0.4274902344, -0.1669921875, 0.1723632812, -0.5888671875, -0.8530273438, 0.6435546875, -0.4738769531, -0.6748046875, -0.9506835938, -0.0305633545, 0.2734375, 0.3669433594, 0.560546875, 0.56640625, -0.625, 0.1397705078, 0.2161865234, 0.2308349609, 0.0394592285, 0.2565917969, -0.3806152344, -0.2376708984, -0.5209960938, -1.1396484375, -0.876953125, 0.6694335938, -0.4047851562, -0.2214355469, -0.3654785156, -0.2775878906, 1.341796875, 0.45703125, -0.7172851562, -0.1646728516, -0.1875, 0.5317382812, 0.2156982422, -0.7465820312, -1.1650390625, -1.1806640625, -0.5791015625, -0.3813476562, -0.7065429688, 0.2880859375, 1.212890625, -0.427734375, -0.2644042969, 0.0305633545, -0.5087890625, -0.681640625, 0.408203125, 0.4909667969, -0.8647460938, 0.3779296875, 0.3615722656, 0.8237304688, -0.3142089844, 1.328125, 0.6079101562, 0.0272674561, 0.1135864258, -0.7001953125, -0.3798828125, 0.3930664062, -0.2180175781, 0.744140625, -0.5131835938, 0.8198242188, 0.3078613281, 0.5620117188, 0.3625488281, 0.5659179688, -0.6762695312, 0.2406005859, 0.1315917969, 0.61328125, -0.7651367188, -2.060546875, 0.5786132812, -0.8203125, 0.0004029274, -0.2131347656, 0.1844482422, -0.3842773438, -0.0208129883, 0.088684082, -0.9262695312, 0.22265625, -0.6108398438, 0.0251922607, -0.7065429688, -0.1558837891, -0.3864746094, 0.1744384766, -0.7397460938, 0.3896484375, -0.1696777344, -0.0007572174, -0.052520752, 0.5390625, 0.4826660156, 0.314453125, -0.2420654297, -0.4404296875, -0.6752929688, 0.031463623, -0.5278320312, -0.2117919922, -1.1484375, -0.0192108154, -0.9912109375, -0.662109375, -0.7602539062, -0.8833007812, 0.1862792969, -0.4653320312, 0.8764648438, -1.2255859375, -0.2218017578, 0.3940429688, 0.6044921875, 0.0437927246, -0.9638671875, 0.0381164551, -0.7143554688, -1.0830078125, -0.58203125, 0.5346679688, 1.1513671875, 0.1907958984, -0.1942138672, 0.4548339844, -0.2054443359, 1.400390625, 0.73046875, 0.2465820312, -0.039276123, 0.53515625, 0.1898193359, 0.412109375, 0.9248046875, 0.0420837402, -0.1492919922, -0.29296875, 0.1013793945, -0.615234375, -0.1412353516, 0.9208984375, 0.4047851562, -0.7934570312, -0.2631835938, -0.2463378906, -0.2451171875, -0.1708984375, -0.2259521484, -0.0426635742, -0.1116943359, 0.5756835938, -0.3491210938, 0.0907592773, -0.9423828125, -0.6796875, -0.2685546875, 0.3681640625, -0.240234375, 0.2646484375, -0.0578308105, -0.0590515137, 0.4826660156, -0.50390625, -0.9736328125, -1.390625, -0.2145996094, -0.0357055664, -0.2288818359, 0.1091308594, 0.955078125, -0.896484375, -1.2861328125, 0.3017578125, 0.2814941406, 0.4924316406, -0.0927124023, 0.474609375, -0.537109375, -0.0666503906, 0.8134765625, 0.3256835938, 0.2673339844, -0.0411987305, 0.4191894531, -0.4260253906, -0.666015625, -12.75, 0.1516113281, 0.2768554688, 0.6909179688, -0.6909179688, -0.059387207, -0.3444824219, 0.1815185547, -0.0855712891, -0.2375488281, -0.3483886719, 0.0697021484, -0.4487304688, 0.2379150391, 0.5322265625, -1.029296875, -1.1611328125, -1.40625, 0.5244140625, -1.1416015625, 1.017578125, -0.02394104, 0.3747558594, 0.3500976562, -0.9262695312, 0.1927490234, 0.27734375, -1.080078125, -0.3369140625, -0.7690429688, -0.8662109375, 0.9399414062, 1.0322265625, 1.296875, 0.7983398438, 0.3940429688, -1.0283203125, -0.2302246094, -0.9838867188, 0.0230712891, 0.7192382812, 0.0272674561, -0.8725585938, -0.3212890625, 0.5087890625, -0.1901855469, -0.3403320312, -0.1207275391, -0.1906738281, -1.595703125, -0.1783447266, -0.3000488281, 0.7021484375, -0.201171875, -0.2514648438, -0.4091796875, -0.5151367188, 0.2998046875, 0.0258026123, -0.1524658203, 1.8837890625, 0.4846191406, -0.4719238281, -0.216796875, 0.3845214844, -0.1103515625, -1.490234375, -0.8994140625, 0.4733886719, -0.8896484375, 0.2556152344, -0.8999023438, 0.6279296875, -0.8212890625, -0.8129882812, -0.0855712891, -0.2147216797, -0.4697265625, -0.1842041016, 0.6376953125, -0.3986816406, -0.8466796875 ]
The book: Han, Kamber and Pei, "Data Mining: Concepts and Techniques" (3rd ed., Morgan Kaufmann, 2011) has been popularly used as a textbook worldwide. He was the 2009 winner of the McDowell Award, the highest technical award made by IEEE. Bibliography Data Mining: Concepts and Techniques, 3rd edition (with Micheline Kamber), The Morgan Kaufmann Series in Data Management Systems, Jim Gray, Series Editor Morgan Kaufmann Publishers, 2011. References External links Data Mining Research Group Jiawei Han's academic website 1949 births Living people 20th-century American scientists 20th-century American writers 21st-century Chinese scientists 21st-century Chinese writers American computer scientists American technology writers Chinese computer scientists Chinese emigrants to the United States Chinese technology writers Data miners Fellow Members of the IEEE Fellows of the Association for Computing Machinery Scientists from Shanghai Simon Fraser University faculty University of Illinois at Urbana–Champaign faculty University of Science and Technology of China alumni University of Wisconsin–Madison College of Letters and Science alumni Writers from Shanghai
[ 1.13671875, -0.7465820312, 0.4912109375, -0.2556152344, 0.064453125, 0.6938476562, 0.1688232422, -0.0046424866, -0.2604980469, 0.1417236328, 0.7260742188, 0.4736328125, -0.2634277344, 1.1767578125, -0.796875, -0.6904296875, 0.1673583984, -0.2587890625, -0.2200927734, -0.3757324219, 0.205078125, -1.08203125, -0.7905273438, -1.72265625, -0.9545898438, 0.4382324219, 0.3134765625, -0.0428466797, 0.3674316406, -0.3918457031, -0.1337890625, 0.2924804688, -1.1103515625, -0.3254394531, -0.396484375, 0.4370117188, -0.3532714844, -0.5922851562, -0.2836914062, -1.1376953125, -0.435546875, -0.7358398438, -0.5239257812, 0.0220489502, 1.8056640625, 1.017578125, 0.0726318359, 0.0476379395, -0.5478515625, 0.677734375, -1.2822265625, 0.3159179688, -0.4709472656, 0.0706176758, -1.2041015625, -0.7875976562, 1.060546875, -0.1864013672, -0.8681640625, -0.4475097656, 0.0569763184, 1.1845703125, -0.486328125, 0.3669433594, 0.9736328125, -0.5068359375, -1.05859375, -0.1420898438, -1.6904296875, 1.3984375, -0.982421875, 0.5834960938, 0.1212768555, 0.7368164062, 0.0453186035, 0.1827392578, -0.2358398438, 0.7924804688, 0.0486755371, -0.5747070312, -0.728515625, 0.0748291016, -0.9326171875, -0.4895019531, 0.1123657227, -0.0569152832, -0.2213134766, -0.8081054688, -0.908203125, 0.7817382812, 0.3137207031, 0.5678710938, 0.1405029297, -0.1292724609, -0.5600585938, 1.484375, 0.3100585938, -0.2619628906, -0.630859375, 0.3916015625, 0.0020484924, -0.0640258789, -0.1929931641, 0.1121826172, -0.1694335938, -0.0233612061, -0.2266845703, 0.0051651001, 0.0745849609, 0.7958984375, 0.5478515625, 0.3117675781, -0.1927490234, -0.7080078125, 0.0902099609, 0.7573242188, 0.1711425781, -0.439453125, 0.70703125, -0.2175292969, -0.6977539062, 0.0438232422, 0.4047851562, -0.0090408325, 0.8232421875, 0.1856689453, 0.0442504883, 0.4592285156, -0.7084960938, 0.0011386871, 0.1784667969, 0.2027587891, 0.5092773438, 0.51171875, 0.0102539062, 0.3439941406, -1.0869140625, -0.0523681641, 0.1224365234, 0.9155273438, -0.1284179688, 0.7084960938, -1.2841796875, 0.6782226562, -0.521484375, 0.4763183594, -0.3735351562, 0.2443847656, 0.296875, -1.359375, -0.6479492188, -0.8720703125, 0.0991821289, 0.4299316406, -0.4653320312, 0.5771484375, 0.0151596069, -0.4631347656, -1.609375, -1.1357421875, -0.6479492188, -1.6826171875, 0.2272949219, 0.2770996094, 0.3500976562, 0.3486328125, -0.4487304688, -0.4057617188, 0.0205535889, 0.513671875, -1.7880859375, 0.5434570312, -0.1954345703, -0.1639404297, -0.208984375, 0.3432617188, 0.3486328125, 0.7280273438, -0.0082626343, -0.3984375, 0.4067382812, -1.0546875, 1.310546875, 0.1600341797, -1.107421875, 0.2261962891, 0.0862426758, -0.7739257812, -0.4155273438, -0.3510742188, 0.9897460938, 0.1061401367, 0.3388671875, 0.6518554688, -0.56640625, -0.0944824219, 0.5629882812, -0.0411987305, -0.0887451172, 0.5244140625, -0.0316162109, 0.4167480469, -0.8916015625, -0.4035644531, 0.61328125, -0.0347290039, 1.1953125, 0.5043945312, 1.2490234375, 0.5537109375, -0.1975097656, -0.2039794922, -0.0591430664, 0.0305633545, 0.5874023438, -0.1199951172, -0.2819824219, -0.0527954102, 0.7866210938, -1.11328125, -0.7524414062, -0.2717285156, -0.7744140625, -0.2211914062, -0.1035766602, 0.0983886719, -0.2054443359, 0.1092529297, -0.3041992188, -0.3823242188, 0.0332641602, 0.3254394531, 0.2236328125, 0.6953125, 0.2435302734, -1.1318359375, 0.4482421875, 1.009765625, 0.24609375, -0.1682128906, -0.6606445312, -0.8012695312, 0.8237304688, 0.061126709, -0.5029296875, 0.7631835938, -0.283203125, -0.2897949219, -0.8154296875, 0.638671875, 0.740234375, 0.2629394531, -1.3896484375, 0.6606445312, 0.990234375, -0.1408691406, 0.0370483398, -0.2963867188, -0.2009277344, -0.5278320312, -1.09765625, 0.1376953125, 0.5180664062, 0.3862304688, -0.9423828125, 0.6005859375, -0.4294433594, -0.4399414062, 1.009765625, 0.0265808105, 0.0686645508, -0.3549804688, -0.21875, -0.0760498047, -0.3134765625, 0.6733398438, 1.255859375, 1.0146484375, -0.5190429688, 0.2514648438, 0.6323242188, 0.4409179688, -0.0211029053, -0.2785644531, 1.0400390625, 0.3305664062, -0.1207275391, 1.0869140625, 0.6694335938, 0.4868164062, -0.5712890625, -1.2099609375, 1.6611328125, 0.5205078125, -0.8364257812, -0.193359375, 0.5068359375, -1.029296875, 0.6870117188, -0.9345703125, 0.1071166992, 0.3493652344, -0.3903808594, 0.0397949219, 1.06640625, -0.0599060059, -0.89453125, 0.5581054688, 0.0912475586, 1.359375, 0.8076171875, -0.3186035156, -0.359375, -0.4311523438, -0.8090820312, -1.2802734375, -1.2138671875, 0.6142578125, 0.3559570312, 0.5766601562, 0.6176757812, -0.2081298828, 0.1046142578, -1.22265625, 0.2602539062, 0.4653320312, -0.958984375, -0.9248046875, -0.2973632812, -0.51953125, 1.0634765625, -0.4506835938, -0.7075195312, 0.2457275391, 0.0433349609, -0.85546875, -0.0695800781, -0.7783203125, 0.7045898438, -0.3273925781, -0.6137695312, -0.4084472656, 0.4157714844, -0.5434570312, 0.7280273438, 1.4951171875, -0.689453125, 0.1141357422, -0.1118164062, 0.0364685059, 0.1372070312, 0.0701904297, -0.0290985107, 0.1530761719, 0.4313964844, 0.1828613281, 0.0242767334, 0.2836914062, -0.4479980469, 0.552734375, 0.4538574219, 0.197265625, -1.638671875, -0.1606445312, 0.6708984375, 0.0080032349, -0.1151733398, 0.6650390625, 0.4665527344, 0.5625, 0.517578125, 0.2905273438, 0.4440917969, -0.38671875, 0.1058959961, 0.0852661133, 0.1211547852, -0.1389160156, -0.880859375, 0.2425537109, 0.9028320312, 0.0476074219, 0.1092529297, -0.9033203125, -0.0189361572, 1.0546875, 0.55078125, -0.919921875, -0.4938964844, -0.7846679688, 0.1245727539, 0.4177246094, 0.3913574219, -0.0630493164, -0.7724609375, -0.3410644531, 1.4345703125, -0.2568359375, 0.7338867188, 0.8911132812, 0.1224975586, 0.201171875, -0.1782226562, -0.0646972656, -0.5336914062, 0.2448730469, 1.3486328125, -0.9223632812, 0.1708984375, 0.3928222656, 0.4252929688, 0.1018676758, -0.2012939453, -0.54296875, 0.0111618042, 1.095703125, 0.2230224609, -0.1254882812, -0.4020996094, -0.1240234375, -0.5234375, -0.4360351562, 0.1809082031, -0.1843261719, -0.2888183594, 0.2683105469, 0.2744140625, 0.7045898438, 1.015625, -0.5786132812, 1.4169921875, 0.7338867188, -0.6313476562, -0.251953125, 0.365234375, -1.0771484375, -0.9946289062, 0.0433654785, -0.400390625, 0.1065673828, 0.4006347656, 1.5205078125, -0.5693359375, 0.8759765625, 1.005859375, 0.9702148438, 0.4929199219, -0.1973876953, 0.7431640625, -0.2954101562, 0.2663574219, 0.3669433594, -0.5395507812, -0.64453125, 0.0058479309, 0.109375, 0.4111328125, -0.2521972656, -1.1884765625, -0.1244506836, 0.1843261719, -0.0169219971, 0.0863037109, 0.1123657227, -0.5512695312, -1.1162109375, 0.0013713837, -0.6577148438, -0.2556152344, -0.4157714844, 0.8911132812, 0.3342285156, 0.7368164062, 1.26953125, -0.2678222656, 0.48046875, 0.7373046875, 1.607421875, -0.3552246094, -1.32421875, -0.0518493652, -0.0093383789, -0.91796875, -0.5595703125, 0.525390625, 0.5732421875, -1.0166015625, -0.4064941406, -0.1551513672, -0.4008789062, 0.0637817383, 0.0805664062, -0.7875976562, -0.1661376953, 0.2030029297, -1.2119140625, -0.5224609375, 0.2025146484, -0.5551757812, -0.9506835938, -0.4870605469, 0.6767578125, -0.2388916016, 0.4321289062, -1.126953125, 0.8081054688, -0.2203369141, -0.5083007812, -0.4033203125, 0.1899414062, 0.7197265625, 0.2663574219, 0.2709960938, -0.3088378906, -0.138671875, -0.4201660156, -0.7192382812, 0.1552734375, 0.7333984375, 0.4091796875, 0.8784179688, 0.8876953125, 0.8530273438, 0.8896484375, -0.3181152344, 1.333984375, -0.2401123047, -0.6884765625, 0.8232421875, -0.0379943848, 0.1052856445, 0.2490234375, -0.7172851562, 0.053894043, -0.9379882812, 0.1931152344, 0.5415039062, -0.5434570312, -1.5439453125, -0.4487304688, -0.4521484375, 0.38671875, -0.4016113281, -0.5205078125, 0.068359375, 1.279296875, 0.212890625, -0.8916015625, 0.154296875, -0.1735839844, 0.2198486328, 0.2653808594, 0.486328125, 0.1506347656, -0.7197265625, -1.0751953125, -1.1103515625, -0.2395019531, -0.6552734375, -0.2885742188, -0.4860839844, -0.6420898438, 0.0381164551, 0.2829589844, 0.1163330078, 0.0563354492, 0.1354980469, 0.1176147461, -0.4392089844, -0.2502441406, -0.9858398438, 0.921875, 0.8256835938, -0.2260742188, 0.1060180664, 0.6469726562, 0.1458740234, -0.3547363281, 1.1748046875, 0.5893554688, -0.2368164062, -0.2600097656, -0.3916015625, -1.033203125, 0.4194335938, 1.029296875, 1.1796875, -1.6337890625, -0.7880859375, -0.3732910156, -0.6298828125, 0.7827148438, 1.5341796875, 1.0126953125, -0.3359375, 0.3161621094, -0.3425292969, 0.7026367188, -0.2639160156, 0.4841308594, 0.5908203125, -0.966796875, 0.4182128906, -0.1031494141, 0.1373291016, 0.1630859375, 1.080078125, 0.2014160156, 0.4145507812, -0.1776123047, 0.0657348633, 0.3352050781, 0.623046875, -0.1723632812, 0.4167480469, 0.953125, -0.6606445312, 0.6357421875, -0.4477539062, -0.1077270508, 0.55859375, -0.0061187744, 0.2817382812, -0.3950195312, 0.8295898438, -0.341796875, 0.0869140625, 0.2663574219, 0.0581054688, 0.4626464844, 1.1669921875, 0.3745117188, 0.1295166016, 0.7514648438, -1.2900390625, 0.2141113281, 0.8842773438, 0.138671875, 1.0732421875, 1.123046875, 1.0888671875, -0.4636230469, -0.5893554688, -0.2673339844, -0.115234375, -0.9145507812, -0.0489807129, 0.3547363281, -1.5888671875, 0.8325195312, 1.4814453125, 1.658203125, -0.1859130859, -0.4233398438, -0.1868896484, -0.13671875, 0.4982910156, 0.7875976562, -0.0020828247, -0.7314453125, -0.25390625, 1.8603515625, -0.1148681641, -0.5454101562, -0.3974609375, 0.2003173828, 0.375, -0.8901367188, -0.2296142578, 0.2531738281, 0.990234375, -0.2729492188, -1.0107421875, 0.1614990234, -0.1072998047, 0.625, -0.146484375, -0.8251953125, -0.2880859375, 0.0739135742, 0.5346679688, 0.3666992188, -0.0311279297, 0.9072265625, -0.5893554688, -1.3291015625, 0.0736694336, 1.021484375, -0.9892578125, 0.0852050781, 0.2150878906, 0.31640625, -0.720703125, 0.5581054688, 0.3752441406, -1.50390625, 0.3090820312, 0.4162597656, 0.1311035156, -0.1837158203, -0.4631347656, -1.3232421875, -0.9399414062, 0.0744628906, -0.1962890625, 0.056060791, 0.8217773438, -0.9360351562, -0.6337890625, 0.7456054688, -0.2937011719, -0.1422119141, -0.1265869141, 0.72265625, 1.025390625, 0.4169921875, -0.4228515625, -0.9799804688, -0.4760742188, -0.7387695312, -1.369140625, -0.1131591797, 0.85546875, 0.0415649414, 0.56640625, -0.9350585938, 0.6635742188, 0.0363769531, 2.0859375, 0.8315429688, -0.1820068359, -0.4658203125, -0.3034667969, -0.4270019531, -0.1251220703, -0.3234863281, -0.036529541, 0.4365234375, -0.8525390625, -0.1917724609, -0.2705078125, -0.4265136719, -0.1883544922, 0.486328125, -0.2668457031, -0.2634277344, 1.95703125, 0.0144882202, -0.1374511719, -1.3212890625, -0.1734619141, -0.3747558594, -0.1776123047, -0.3034667969, 0.0297698975, -0.2454833984, -0.755859375, -0.4504394531, -0.1427001953, 0.3471679688, 0.0116348267, 0.8090820312, 0.3051757812, -0.6049804688, -0.3708496094, -0.1655273438, 0.2060546875, 0.2536621094, 0.705078125, -0.0646972656, -0.8481445312, 0.4287109375, -1.3388671875, -0.8276367188, 0.5581054688, -0.8803710938, -0.6489257812, -0.998046875, 0.0476379395, 0.9047851562, 0.7587890625, -0.4035644531, 0.3562011719, -0.47265625, 0.4150390625, 0.3862304688, -0.75, -1.53125, -0.6958007812, -1.1708984375, -0.0455932617, -0.4357910156, 0.41796875, 0.6909179688, 0.5546875, -0.1090698242, -0.1971435547, -0.7475585938, -1.5380859375, 0.0444641113, 0.7548828125, -0.5209960938, 1.2265625, -0.2292480469, -0.0642089844, -0.4594726562, 1.53515625, -0.0955810547, 0.8896484375, 0.4067382812, -0.7763671875, 0.0986938477, -0.0391845703, -0.9384765625, 1.19140625, -0.3212890625, 0.8505859375, 0.1447753906, 0.765625, 0.0144271851, 0.2344970703, -1.181640625, -0.035369873, -0.501953125, 0.857421875, -0.4084472656, -1.361328125, 0.2849121094, -1.205078125, -0.29296875, 0.0953369141, 0.3273925781, -0.7578125, 0.6157226562, 0.2443847656, -0.2468261719, 0.4619140625, -0.5708007812, -0.5493164062, -0.740234375, 0.3991699219, -0.3527832031, -0.1496582031, -1.1181640625, 0.2756347656, -0.1888427734, 0.1629638672, -0.2309570312, 0.9228515625, 0.4797363281, 0.3996582031, -0.7338867188, -0.1866455078, -0.4672851562, -0.1376953125, -1.1240234375, -0.0524291992, -0.7670898438, -0.0033664703, -0.5639648438, -0.4592285156, -1.181640625, -0.806640625, 0.1333007812, -0.5532226562, 0.1571044922, -0.5971679688, -0.5278320312, 0.2514648438, 0.0595092773, -0.4287109375, -0.1477050781, 0.5883789062, -0.7036132812, -0.3862304688, -0.185546875, -0.1264648438, 0.8920898438, -0.4482421875, 0.2401123047, 0.2047119141, 0.6635742188, 0.6728515625, 0.8393554688, 0.3325195312, 0.2741699219, 0.9296875, -0.0132217407, -0.5185546875, 0.6694335938, 0.5185546875, 0.1885986328, 0.0071334839, -0.3745117188, -0.853515625, -0.2885742188, 0.4130859375, -0.6064453125, -0.2055664062, -0.603515625, -0.0163879395, -0.7421875, -0.2736816406, -0.1525878906, 0.3071289062, -0.1008300781, -0.0725097656, 0.0086746216, 0.0088272095, -0.71484375, -0.7568359375, 0.0720214844, -0.0922851562, -0.7299804688, 0.8291015625, 0.3659667969, 0.3176269531, 0.4909667969, -0.3647460938, -0.3464355469, -0.8935546875, 0.1931152344, -0.3220214844, -0.2390136719, -0.2200927734, 0.1743164062, -0.4309082031, -0.740234375, 1.0654296875, 0.8413085938, 1.03515625, 0.3090820312, 0.6044921875, -0.76171875, -0.064453125, 0.3308105469, 0.1552734375, -0.063293457, 0.047454834, 0.4011230469, -0.4682617188, -1.34375, -12.734375, -0.3056640625, 0.6000976562, 0.4267578125, -0.90234375, -0.9208984375, 0.2770996094, -0.7314453125, -0.5732421875, -0.1320800781, 0.0175476074, -0.3728027344, -0.6284179688, -0.0394592285, 0.2250976562, -1.01171875, -0.56640625, -1.533203125, 0.7290039062, -0.9799804688, 0.5703125, -0.2303466797, -0.1092529297, -0.2590332031, -1.0927734375, 0.931640625, -0.5883789062, -0.607421875, -1.3037109375, -0.0075340271, 0.0855102539, 0.2059326172, 0.8681640625, 1.0205078125, 0.3400878906, 1.0205078125, -0.0827026367, 0.1595458984, -0.6923828125, -0.4987792969, 0.6479492188, -0.2673339844, -1.15234375, -0.0177612305, 0.6645507812, -0.0060272217, -0.9306640625, 0.078918457, -0.1597900391, -0.7431640625, -0.9096679688, -0.1311035156, 0.6435546875, -0.279296875, -0.3798828125, -0.5869140625, 0.3410644531, 1.1328125, 0.2403564453, 0.2086181641, 0.3005371094, 0.0491638184, -0.3210449219, 0.0524902344, 0.6171875, 0.2175292969, -1.03125, -1.41015625, -0.2030029297, -0.8984375, -0.5541992188, 0.0126342773, 0.3767089844, -0.1932373047, 0.6044921875, 0.0348510742, -0.869140625, -0.9985351562, 0.1141357422, 0.32421875, -0.7153320312, 0.2049560547 ]
Direct traffic control (DTC) is a system for authorizing track occupancy used on some railroads instead of or in addition to signals. It is known as "direct" traffic control because the train dispatcher gives track authority directly to the train crew via radio, as opposed to through wayside personnel via telephone or telegraph, as in train orders. Layout In DTC, controlled tracks and sidings (those requiring authority from the train dispatcher to occupy) are divided into pre-specified blocks. In addition to being listed by milepost in the railroad's timetable, block limits are delineated by conspicuous signs along the tracks. Every portion of controlled track belongs to a block, as blocks are laid out back-to-back along the entire length of the rail line. For example, a length of main line track may be divided into three blocks, Anna, Bess, and Cloy, each long. At milepost 10, there will be a sign displaying the end of Anna block and the beginning of Bess block, and a similar sign between Bess and Cloy. A train authorized in Anna through Bess blocks must stop before Bess block ends and Cloy block begins. For example, a length of track may consist of three blocks. Anna, Bess, and Cloy. There is a siding at Bess, and this siding is specified as Bess Siding. Both Bess and Bess Siding blocks extend to the switches at either end of the siding. Anna and Cloy blocks begin on the other side of their respective switches. Neither Bess nor Bess Siding blocks may be occupied without authority from the train dispatcher.
[ -0.3361816406, -0.681640625, -0.1600341797, 0.2797851562, 0.3200683594, -0.6987304688, -1.2724609375, -0.2109375, -0.5922851562, 0.4758300781, 0.4357910156, -0.9067382812, 0.1505126953, 0.2497558594, 0.0030517578, -0.4182128906, -0.1789550781, 0.4038085938, 0.1685791016, 0.7001953125, 0.2397460938, -0.1208496094, 0.1918945312, -1.068359375, 0.955078125, 0.3291015625, 0.1937255859, -0.4868164062, 0.0520324707, -0.294921875, -0.3813476562, 0.2602539062, -1.1162109375, 0.1145019531, -0.1174926758, -1.0634765625, -0.3264160156, 0.0718383789, -0.2429199219, -0.26953125, -0.0806884766, -0.0047187805, -0.1342773438, -0.4755859375, -0.27734375, -1.05078125, 0.3547363281, 0.2083740234, -1.259765625, 0.2954101562, 0.0861816406, -0.8012695312, 0.3764648438, -0.1431884766, 0.3388671875, -1.0615234375, -0.7373046875, 0.4499511719, 1.0322265625, -0.5625, -0.6333007812, -0.2373046875, -0.787109375, 0.2454833984, -0.0577392578, -0.2281494141, 0.0216064453, 1.2685546875, -0.7998046875, 0.2081298828, -0.662109375, 0.99609375, -0.8310546875, -0.0233154297, 0.4631347656, -0.7192382812, 0.2041015625, 0.5209960938, 0.30078125, -0.3566894531, -0.4162597656, 0.2724609375, -1.0361328125, -0.9897460938, -0.3986816406, 0.4343261719, 0.6733398438, 0.4362792969, 0.3505859375, 0.6416015625, 0.0277862549, -0.4143066406, -0.4970703125, -0.7734375, -0.0225372314, -0.2330322266, -0.2697753906, 0.1139526367, 0.4379882812, -0.1234741211, 0.3737792969, 0.7553710938, 1.03125, -1.0234375, 0.1832275391, 1.51171875, -0.4819335938, -1.2626953125, 0.2084960938, 1.6181640625, 0.2578125, 0.4733886719, -0.1878662109, -0.2534179688, -0.8715820312, 0.9423828125, 0.4868164062, -0.2795410156, -0.012588501, -0.3278808594, 0.1706542969, -0.3569335938, -0.0080032349, -1.298828125, -0.0806884766, -0.1566162109, -0.3249511719, 0.3032226562, 0.2238769531, 0.6118164062, -0.4375, -0.6596679688, 0.2719726562, 0.2335205078, -0.1174316406, 0.3527832031, -0.583984375, 0.2856445312, 0.0736083984, -0.0518493652, -0.0684814453, -0.4438476562, 1.0927734375, -0.6215820312, 0.6791992188, 0.2498779297, 0.732421875, 0.27734375, -0.6240234375, 0.2337646484, 0.5146484375, 0.028717041, -0.455078125, 0.0335998535, -0.0231628418, -0.1608886719, -0.1634521484, -0.4440917969, 0.5390625, -1.3154296875, -0.6918945312, -1.73828125, 0.2098388672, 0.3676757812, 0.2362060547, 0.3068847656, -0.5209960938, 0.6796875, -1.0859375, 0.4326171875, -0.2364501953, -0.1459960938, -0.1309814453, -0.0407104492, -0.0212097168, 0.1095581055, -0.3273925781, -0.5512695312, 0.5043945312, 0.3198242188, -0.0814208984, -1.2548828125, 1.2548828125, -0.2590332031, 0.1193237305, 0.1402587891, 1.2509765625, -0.4809570312, -0.939453125, 0.2580566406, -0.5810546875, 0.533203125, -0.6748046875, 0.7036132812, 0.9155273438, 0.384765625, -0.5493164062, 0.2440185547, 1.02734375, 0.2937011719, 0.3818359375, 0.0022563934, -0.8403320312, 0.2344970703, -0.0670776367, -0.3571777344, 1.1953125, -0.5068359375, -0.853515625, 0.1728515625, 0.501953125, 1.1123046875, -0.3811035156, 1.7861328125, -0.1824951172, -0.6245117188, 0.623046875, 0.291015625, 1.5693359375, 0.2095947266, -0.4819335938, -0.0784912109, 0.673828125, -0.6767578125, 0.4440917969, -0.0307006836, 0.3334960938, 0.8305664062, 0.5693359375, -0.1168212891, 0.6162109375, 0.8041992188, 0.2296142578, -0.4538574219, -0.2012939453, 0.7919921875, -0.2003173828, 0.0182647705, -1.3466796875, 0.2448730469, 0.0836181641, 0.6025390625, -0.1074829102, -0.0257415771, -0.2225341797, -0.7514648438, 0.1479492188, 0.2459716797, -0.470703125, -0.0819702148, -0.6103515625, -0.2283935547, -0.0414733887, 0.919921875, 0.2388916016, -0.1712646484, -0.1136474609, -0.1962890625, -0.5473632812, -0.5747070312, 0.2064208984, 0.1656494141, 1.279296875, 0.1580810547, -0.5493164062, -0.3259277344, -0.2012939453, 0.1221313477, -0.1405029297, -0.3605957031, -0.0692749023, 0.814453125, -1.4228515625, -0.3693847656, -0.50390625, -0.3686523438, -0.4040527344, -0.8046875, 0.435546875, 0.1759033203, 0.4885253906, 0.8247070312, -0.3591308594, 0.041809082, 0.7646484375, -0.763671875, -0.0599975586, 0.5366210938, 0.4729003906, 0.5825195312, -0.1457519531, 0.6948242188, 0.0811767578, 0.8681640625, -0.0559387207, 0.0389099121, 0.0267791748, 0.2768554688, -1.443359375, -0.076171875, 0.7866210938, 0.5458984375, 0.3122558594, 0.0079040527, -0.0412902832, 0.0997314453, 0.2294921875, -0.9985351562, -0.060546875, 0.9204101562, -0.4243164062, 1.498046875, 0.0824584961, 1.16015625, -0.25390625, -0.1516113281, -0.6337890625, -0.4020996094, 1.158203125, -0.6635742188, 0.8623046875, -0.3115234375, 0.0748291016, -0.2308349609, -0.5810546875, -0.3444824219, -0.3767089844, -0.1585693359, 0.2039794922, 0.796875, -0.0484619141, 0.1815185547, 0.0862426758, -0.0409545898, -1.33984375, -0.494140625, -1.3720703125, -0.8662109375, 0.3347167969, 0.2980957031, -1.123046875, -0.0952148438, -0.0218811035, -0.2155761719, -0.2687988281, -0.5458984375, 0.0321960449, 0.1004638672, 0.39453125, -0.0687255859, 0.0300445557, -0.1098632812, -0.2131347656, -0.6123046875, -1.1044921875, -0.90625, 0.4926757812, 0.9091796875, -0.2265625, -0.1110229492, 1.5615234375, -0.5200195312, -0.888671875, -0.4765625, -1.8193359375, 0.6884765625, -0.1419677734, 0.6293945312, -0.30078125, -0.5810546875, -0.0659179688, 0.626953125, -0.611328125, 0.3386230469, 0.5693359375, -0.0062065125, -0.2415771484, -0.921875, -0.0720825195, 0.2893066406, 0.3471679688, -0.5737304688, 0.0855712891, -0.6591796875, 0.9580078125, -0.3071289062, -0.1663818359, 0.4196777344, -0.521484375, -0.2302246094, -0.3310546875, -0.5595703125, 0.2795410156, 0.9028320312, -1.17578125, 0.0229949951, 1.189453125, 0.0599060059, -0.5522460938, -0.8881835938, 0.5053710938, 0.9008789062, -0.2829589844, -0.767578125, -0.2751464844, 0.2009277344, 0.4165039062, 0.1508789062, 0.0244445801, -0.1029052734, -0.7729492188, 0.1641845703, -1.3134765625, 0.1844482422, -0.8774414062, -0.2934570312, 0.4978027344, -0.1088867188, 0.6064453125, 0.9956054688, 0.0019073486, 0.2626953125, -0.544921875, 0.65234375, -0.6518554688, -1.142578125, 0.802734375, 0.5083007812, 0.619140625, -0.0745849609, -0.5864257812, 0.5439453125, -0.3745117188, -0.1539306641, 0.4926757812, -0.5107421875, 0.69921875, 0.2371826172, 0.0282592773, -0.6000976562, -0.626953125, 0.1737060547, 0.0312194824, -0.9677734375, -0.1580810547, -0.2188720703, 0.4382324219, 1.123046875, -0.5668945312, -0.4936523438, 0.1550292969, -0.0982055664, -0.4123535156, -0.5190429688, 0.302734375, -0.9653320312, -0.3435058594, -0.1188354492, -0.0490722656, 0.4328613281, -0.4375, 0.8852539062, -0.4836425781, -0.5356445312, 0.0354919434, -1.2158203125, -0.3103027344, -0.2377929688, 0.1337890625, 0.1633300781, -0.1528320312, 1.5078125, 0.2746582031, 0.4011230469, 0.3298339844, 0.8125, -0.4807128906, -0.3596191406, -0.1724853516, 0.5454101562, -0.908203125, -0.4533691406, -0.6069335938, -0.1396484375, -0.6259765625, -0.3562011719, 0.6313476562, 0.2244873047, 0.26953125, 0.1446533203, 0.3315429688, -0.3161621094, -0.2546386719, -0.0216217041, -1.490234375, -1.2626953125, 0.4426269531, 0.12890625, 0.3466796875, -1.4326171875, 0.1751708984, 0.9072265625, 0.4016113281, 0.7353515625, -0.1481933594, 0.2430419922, -0.108215332, 0.1671142578, -0.3977050781, 0.2514648438, 0.67578125, 1.1376953125, 0.069519043, 0.3395996094, 0.1248779297, -0.3093261719, 1.2138671875, -0.2570800781, -0.4074707031, -0.5302734375, 0.4743652344, 0.2829589844, -0.5209960938, 1.146484375, 0.6806640625, 0.611328125, 0.3547363281, 0.4846191406, 0.5615234375, -0.6313476562, -0.76171875, -0.2445068359, -0.1529541016, 1.1015625, 0.2600097656, -0.3627929688, 0.4436035156, -1.6005859375, -0.8823242188, -0.5043945312, 0.0692138672, 0.2873535156, 0.3969726562, 0.5791015625, -0.486328125, 0.0631103516, -0.2529296875, -1.017578125, 0.3913574219, -0.3813476562, 0.5859375, -0.0606384277, 0.4321289062, 0.6958007812, -0.2202148438, -0.1610107422, -0.1430664062, 0.1259765625, -0.2434082031, -0.2192382812, -0.2158203125, -0.4284667969, -0.736328125, -0.2065429688, -1.1015625, 0.5859375, -0.1133422852, 0.2318115234, -0.0765991211, -0.3051757812, -0.6655273438, 0.6147460938, -0.5517578125, 1.00390625, 0.3098144531, 0.7319335938, 0.2291259766, 0.5224609375, -1.001953125, 0.2580566406, 1.013671875, -0.0695800781, -0.3337402344, -0.2432861328, -1.3935546875, 1.5068359375, -0.6137695312, -0.5810546875, -0.3811035156, 0.2697753906, -0.0394592285, 0.024230957, -0.2565917969, -0.3269042969, -0.4541015625, 0.4230957031, -0.2885742188, 1.0244140625, 1.263671875, 0.0552368164, 0.1149902344, 0.6010742188, -0.0874633789, -0.112121582, -0.1566162109, -0.2430419922, -0.2034912109, 0.60546875, -0.2443847656, 0.7802734375, -0.626953125, -0.2377929688, 0.1652832031, -0.5751953125, 0.0655517578, -0.6791992188, 0.2307128906, 0.7358398438, 0.1232910156, -1.6884765625, -0.880859375, 0.5063476562, 0.59765625, 0.8754882812, -1.1943359375, 0.6889648438, -0.189453125, 0.3288574219, 0.3696289062, 0.2238769531, -0.0191040039, -0.9599609375, 0.3088378906, -1.2216796875, -0.3115234375, 0.5268554688, -0.7358398438, -0.8803710938, -0.3745117188, 0.3813476562, 0.0540771484, 0.3386230469, -0.0745239258, 0.2429199219, 0.5517578125, -0.6342773438, 0.0594482422, 0.1419677734, -1.3994140625, 0.063293457, 0.267578125, -0.6240234375, 0.439453125, -1.298828125, 0.5869140625, -0.40234375, -0.6411132812, 0.3625488281, 0.7749023438, 0.3293457031, -0.2729492188, 1.9140625, -0.1188964844, 0.5703125, 0.1500244141, -0.787109375, 0.5625, -0.7006835938, -0.3061523438, -0.2407226562, 0.3017578125, -0.8051757812, -0.0183410645, 0.2041015625, -0.3759765625, 0.291015625, 0.1333007812, -0.5395507812, -0.1184082031, -0.1573486328, 0.76171875, 0.8271484375, 0.0863037109, 0.4719238281, 0.8974609375, -0.4819335938, -0.8168945312, 0.1632080078, 0.2027587891, 0.2761230469, -0.4147949219, 0.5620117188, -1.5693359375, -0.1578369141, -0.1594238281, -0.81640625, 0.1691894531, 1.0498046875, 0.0823974609, -0.2121582031, -0.0039901733, 0.0339355469, 0.0389099121, -0.8447265625, -0.5927734375, 0.0174865723, 0.5498046875, 0.5307617188, 1.1064453125, 1.2216796875, -0.3842773438, -0.4270019531, -0.6000976562, 0.3283691406, 1.7705078125, 0.3173828125, -0.5390625, -0.2856445312, 0.8671875, 0.0236206055, -0.884765625, -0.4074707031, 0.4423828125, 0.2939453125, 1.0341796875, -0.0579528809, -0.3742675781, 0.2817382812, 0.5810546875, 0.063659668, -0.3759765625, 0.0871582031, 0.9213867188, 0.4792480469, 0.6708984375, 0.1123046875, 0.0353393555, -0.8203125, 0.7548828125, 0.4165039062, -0.2043457031, -0.0678710938, -0.595703125, -0.0456848145, 0.8422851562, 0.3110351562, 1.1171875, -0.3442382812, 0.7426757812, -1.1875, -0.4719238281, 0.2077636719, -0.1939697266, -1.2568359375, 0.9921875, -1.0576171875, -0.9248046875, 0.6489257812, 0.3483886719, -0.4384765625, 1.0029296875, -0.2915039062, 0.0132827759, -0.7875976562, 0.3203125, -0.9604492188, 0.291015625, 0.9047851562, 0.4230957031, -0.4685058594, 0.6557617188, 0.4919433594, 0.1801757812, -0.0398864746, -0.047454834, -0.3586425781, -0.0440368652, -2.240234375, -0.1635742188, -0.6499023438, 0.8833007812, 0.0731811523, 0.4262695312, 0.1118774414, -0.2142333984, 0.4282226562, 0.2514648438, 0.4228515625, 0.4865722656, -0.1818847656, -0.5615234375, -0.3381347656, 0.0137176514, -0.0746459961, -1.7900390625, 0.0019073486, 0.3154296875, -0.34765625, 0.5141601562, -0.5888671875, -0.6362304688, 0.6850585938, 0.0250244141, -0.5463867188, -0.5126953125, 0.3591308594, 0.3481445312, 0.1978759766, -0.6342773438, 0.3364257812, -0.5107421875, -0.5913085938, -0.1605224609, -0.5615234375, 0.662109375, -0.6484375, 0.5390625, 0.8212890625, -1.2373046875, 0.6030273438, -0.2507324219, -0.849609375, -0.7534179688, 0.1199951172, -0.37109375, -0.3952636719, -0.791015625, -0.0473632812, -1.2998046875, 0.1796875, -0.6987304688, -0.0510864258, 0.2663574219, 0.9379882812, 0.6577148438, -0.067565918, -1.0693359375, 0.4140625, -0.4912109375, -0.396484375, -0.3830566406, -0.1525878906, -0.1743164062, -0.0082321167, -0.4946289062, -0.2392578125, -0.654296875, -0.2028808594, -0.3562011719, 0.5913085938, 0.4619140625, -0.6552734375, -1.0224609375, 0.2368164062, 0.0805664062, 0.1701660156, -0.8256835938, 0.0852661133, 0.5, 0.251953125, 0.626953125, -0.0957641602, -0.7529296875, -0.5297851562, 0.666015625, -0.33203125, -1.0849609375, -0.1354980469, -0.318359375, 0.4750976562, 0.794921875, -0.9682617188, 0.3581542969, -0.7827148438, 0.1457519531, 0.0930786133, 0.0916137695, -0.5971679688, 0.2770996094, 0.40234375, -0.0637817383, -0.517578125, -0.970703125, 0.9541015625, 0.2448730469, 0.1051635742, 0.412109375, 0.3974609375, 0.4345703125, -0.2805175781, -0.7348632812, 1.0205078125, -0.1370849609, 0.7602539062, -0.0168914795, 0.8403320312, 0.1717529297, 0.1478271484, -0.5668945312, -1.08203125, 0.9848632812, 0.0171203613, 0.3227539062, 0.7509765625, -0.8251953125, 0.2091064453, -0.5263671875, -0.0558166504, 0.3376464844, -1.1220703125, -0.1784667969, -0.7197265625, 0.4040527344, -1.4111328125, -0.5185546875, 0.0421142578, -0.1000366211, 0.6220703125, 0.4301757812, -0.4619140625, -0.0787963867, 0.1783447266, 0.0698852539, 0.2763671875, 0.3801269531, 0.154296875, 0.21484375, -0.006362915, 0.1711425781, 1.18359375, -0.4245605469, -0.7802734375, 0.0499572754, -0.2504882812, -0.6323242188, -0.4562988281, 1.181640625, 0.8041992188, 1.2197265625, 0.2354736328, 0.3178710938, -0.818359375, -14.1484375, 0.7993164062, -0.4465332031, -0.2719726562, -1.19921875, -0.0383911133, 0.4479980469, -0.2626953125, -0.2103271484, 0.1687011719, 0.1281738281, 0.3522949219, -0.3178710938, -0.9174804688, -0.0813598633, -0.4362792969, 0.8115234375, 0.2795410156, -0.1584472656, -0.2758789062, 0.7709960938, -0.6284179688, 0.3000488281, -1.71875, -0.5561523438, -0.8178710938, 0.5625, -0.0468444824, -0.16015625, -1.052734375, -0.9008789062, 0.0309906006, 0.625, 0.5859375, 1.494140625, -0.1730957031, 0.2327880859, -0.7680664062, 0.55078125, 0.2000732422, 0.1831054688, 0.1789550781, -0.0765991211, -0.1988525391, 0.0276947021, -0.2998046875, 0.1962890625, -0.1766357422, -1.02734375, -0.759765625, 0.802734375, 0.0756835938, 0.2890625, 0.560546875, -1.11328125, -0.9750976562, 1.216796875, 0.1936035156, -0.5756835938, 0.8515625, 0.4470214844, 0.7192382812, 0.669921875, 0.3076171875, 1.09375, -0.0918579102, -0.328125, -0.5004882812, 0.611328125, -0.873046875, -0.3100585938, -0.7407226562, -0.830078125, 0.0726928711, -0.2817382812, 0.094909668, 0.5385742188, 0.0273284912, -0.4445800781, 0.4609375, 0.5732421875, -0.0555725098 ]
In this example, a train may have authority straight through from Anna through Cloy. Or, it could have authority in Anna through Bess Siding, in which case it must throw the switch between Anna and Bess and enter the siding - this will usually be done to clear the main track for an opposing train to pass. After clearing its authority in Anna siding and the opposing train passes, it might then get authority from Bess Siding through Cloy, in which case it will throw the switch between Bess and Cloy and reenter the main track. Lengths of DTC blocks vary, but usually take about 10 minutes to traverse. The siding itself is not considered a DTC block per se, but in some situations sidings must not be occupied without authority from the train dispatcher. However, in DTC territory all sidings operate as non-controlled, restricted speed track and there is no safety consideration in a train occupying it without central authority to do so. For traffic flow purposes the dispatcher needs to record which sidings are occupied. If a train could not use the main track in Bess (due to maintenance, a stuck switch, a disabled train, or an obstacle blocking the track), it would also be possible for the train to have authority from Anna through Bess Siding through Cloy. This is not done when the main track is available, as there is a speed disadvantage to having the train traverse the slower siding track (including having to stop to throw the switches to enter the siding).
[ -1.060546875, -0.1613769531, 1.037109375, 0.2052001953, 0.4592285156, -0.4284667969, -0.6318359375, -0.3491210938, -0.1606445312, 0.1314697266, -0.3649902344, 0.3083496094, -0.1512451172, 1.0107421875, 0.5908203125, 0.513671875, -0.4111328125, 0.4445800781, 0.0889282227, -0.000679493, 0.1242675781, -0.3068847656, 0.2064208984, -1.310546875, 0.5981445312, 0.2037353516, 0.6044921875, -0.8159179688, -0.2622070312, 0.1274414062, -0.5654296875, 1.107421875, -1.19921875, 0.3166503906, -0.9252929688, -0.642578125, -0.6176757812, -0.4619140625, -0.2829589844, -0.4770507812, 0.4548339844, -0.1911621094, 0.126953125, -0.9106445312, -0.2174072266, -0.8461914062, 0.1287841797, 0.1766357422, -1.33203125, 0.6586914062, 0.8520507812, -1.0439453125, 0.9018554688, -0.58984375, 0.5415039062, -0.580078125, -0.7446289062, 0.8569335938, 0.7768554688, -0.7138671875, -0.8735351562, -0.2371826172, -0.2731933594, -0.3833007812, 0.0616149902, -0.2276611328, -0.1094970703, 0.990234375, 0.1541748047, -0.4118652344, -0.7387695312, 0.8188476562, -0.7963867188, 0.1457519531, 0.0279693604, -0.2778320312, -0.6171875, 0.85546875, 0.1989746094, -0.0679321289, -0.6596679688, 0.326171875, -0.923828125, -0.9453125, 0.0300140381, -0.0137405396, 0.560546875, 0.7763671875, 0.5830078125, 0.5932617188, 0.2561035156, 0.0726318359, -0.4848632812, -0.0571289062, 0.3969726562, -0.7700195312, 0.3752441406, -0.595703125, 0.25390625, -0.3835449219, 0.4189453125, 0.8354492188, 1.375, -0.7016601562, 0.0586853027, 2.154296875, -0.5073242188, -0.9423828125, -0.6337890625, 0.6484375, -0.0098953247, -0.2000732422, -0.2247314453, -0.9350585938, -0.1693115234, 0.6416015625, -0.0552062988, 0.0758056641, 0.697265625, -0.8647460938, 0.4616699219, -0.3259277344, 0.0102005005, -0.0657348633, -0.5400390625, -0.5541992188, 0.0688476562, -0.1143798828, 0.9907226562, 0.3864746094, -0.4404296875, -0.255859375, 0.58203125, 0.1440429688, 0.1888427734, -0.2512207031, -0.2507324219, 0.3161621094, -0.1271972656, -0.4716796875, 0.5229492188, -0.2232666016, 0.6953125, -0.1613769531, 0.4616699219, -0.6318359375, -0.1591796875, -0.2309570312, -1.0166015625, 0.3935546875, -0.8325195312, -0.185546875, -0.3244628906, -0.29296875, -0.3266601562, -0.2497558594, -0.3186035156, -0.5405273438, 0.6479492188, -0.603515625, -0.5693359375, -1.7392578125, 0.1750488281, 0.4814453125, 0.2856445312, 0.110534668, -0.4689941406, 1.3154296875, -1.2568359375, 0.1175537109, -0.9311523438, -0.54296875, 0.1003417969, -0.8857421875, 0.9990234375, 0.2369384766, -0.2580566406, -1.3916015625, -0.666015625, 0.0919189453, -0.1556396484, -1.017578125, 1.87890625, 0.1440429688, 0.6274414062, 0.1732177734, 1.025390625, -0.4467773438, -1.087890625, -0.2406005859, 0.1856689453, 0.1856689453, -0.8618164062, 0.2166748047, 0.3884277344, 0.3520507812, 0.4985351562, 0.2231445312, 1.470703125, -0.4055175781, 0.0389099121, -0.1124267578, -0.572265625, -0.0530700684, 0.2276611328, -0.0582885742, 1.1650390625, -0.3227539062, -1.6015625, -0.1173095703, 0.0959472656, 1.15625, -0.3515625, 1.888671875, -0.3696289062, -0.9375, 0.2763671875, 0.3840332031, 1.0107421875, -0.3586425781, -0.69921875, 0.4328613281, 0.7104492188, -1.0546875, -0.1451416016, -0.287109375, 0.8999023438, 0.7739257812, 0.5390625, -0.5278320312, 0.2465820312, 0.4899902344, 0.0488891602, -0.9770507812, -0.3657226562, 1.2421875, -0.0392150879, 0.44921875, -1.7626953125, 0.544921875, 0.3911132812, 0.1755371094, -0.474609375, -0.3708496094, -0.2181396484, -1.0087890625, 0.6860351562, -0.76171875, -0.3481445312, -0.2985839844, -0.7778320312, -0.0279388428, -0.4802246094, 1.5419921875, 0.7778320312, -0.4951171875, 0.3317871094, -0.341796875, -0.7397460938, -0.6005859375, -0.0879516602, 0.8774414062, 1.6083984375, -0.3435058594, -0.251953125, -0.0936279297, -0.2705078125, 0.3425292969, -0.4016113281, -0.4658203125, 0.1224365234, 0.5122070312, -0.6401367188, -0.4055175781, -0.9848632812, -1.0400390625, -0.7607421875, -1.46875, 0.2124023438, -0.0501403809, 0.5244140625, 1.05859375, -0.0627441406, 0.2961425781, 0.6030273438, -1.494140625, -0.0469360352, 0.482421875, -0.2189941406, 0.5493164062, -0.3305664062, 0.7368164062, 0.0899047852, 0.1339111328, -0.4821777344, -0.3752441406, 0.14453125, -0.5219726562, -1.3701171875, 0.1138916016, -0.0789794922, 0.6025390625, -0.55859375, 0.0447692871, -0.0895996094, 0.50390625, 0.0204315186, -0.6123046875, 0.1810302734, 0.8564453125, 0.3327636719, 1.0712890625, -0.4140625, 1.375, 0.3981933594, 0.2025146484, 0.0963134766, -0.40625, 1.14453125, -0.2387695312, 0.5209960938, -0.6303710938, -0.78515625, -0.28125, -0.8110351562, -0.1751708984, 0.0057563782, -0.3354492188, -0.2888183594, 0.3566894531, 0.2526855469, 0.1597900391, -0.4306640625, 0.4731445312, -0.9653320312, 0.4455566406, -0.7109375, 0.1744384766, 0.4377441406, 0.1943359375, -0.583984375, -0.2065429688, -0.1925048828, -0.1143798828, 0.2709960938, -1.2236328125, -0.0588989258, -0.0202789307, 0.4184570312, 0.0361022949, -0.2196044922, -0.892578125, -0.0723266602, -1.3359375, -1.001953125, -0.6708984375, 0.1309814453, 0.3850097656, -0.2951660156, -0.3002929688, 1.373046875, -0.7065429688, -0.6723632812, -0.2890625, -1.0712890625, 0.1287841797, 0.7583007812, 0.3330078125, 0.4880371094, -0.2834472656, -0.2159423828, 0.7124023438, -0.1591796875, -0.2352294922, 0.689453125, -0.0093307495, -0.0061683655, -0.6040039062, 0.1538085938, 0.7568359375, -0.3635253906, -0.7456054688, -0.2054443359, -0.318359375, 0.4560546875, -0.1849365234, -0.2037353516, 0.7534179688, -0.599609375, -0.0328674316, -0.4772949219, -0.5458984375, -0.56640625, 0.2736816406, -1.708984375, 0.16796875, 1.095703125, -0.6059570312, -0.3142089844, -0.46484375, 0.3669433594, 0.6166992188, -0.116027832, -0.611328125, 0.0659179688, 0.3159179688, 1.2138671875, 0.0697631836, -0.2410888672, -0.2912597656, -0.8286132812, -0.1805419922, -0.9311523438, 0.2683105469, -0.0712280273, -0.2866210938, 0.9340820312, -1.1181640625, 0.8447265625, 0.0505371094, -0.2543945312, 0.2717285156, -0.3576660156, 0.3930664062, -0.0140304565, -1.001953125, 0.2788085938, 0.6904296875, 1.0888671875, 0.9848632812, -0.7690429688, 0.578125, -0.2683105469, -0.1646728516, 0.8481445312, 0.2685546875, 1.345703125, 0.43359375, 0.8076171875, 0.1899414062, -0.3325195312, -0.2622070312, 0.1811523438, -0.1651611328, 0.7084960938, -0.3872070312, 0.2861328125, 1.275390625, -0.2015380859, -0.41015625, 0.0178070068, -0.108215332, -0.56640625, -0.4484863281, 0.1839599609, -0.87890625, -0.2590332031, -0.0020332336, -0.3132324219, 0.2209472656, -0.1273193359, 0.7319335938, -0.6694335938, -0.859375, 0.1167602539, -0.9580078125, -1.052734375, -0.1097412109, -0.1422119141, 0.2026367188, -0.0319213867, 1.0927734375, -0.2744140625, 0.2138671875, 1.0068359375, 1.1318359375, -0.2517089844, -0.1981201172, 0.1767578125, 0.2205810547, -1.10546875, -0.1939697266, -0.806640625, -0.4958496094, -1.2236328125, -0.1226806641, 1.15625, -0.0400390625, 0.3881835938, 0.62890625, 1.04296875, -0.2575683594, 0.5463867188, 1.201171875, -1.76171875, -0.0048713684, 1.001953125, -0.3005371094, 0.6440429688, -1.2666015625, 0.3041992188, 0.8481445312, 0.4047851562, 0.1594238281, -0.3466796875, 0.7631835938, 0.3474121094, 0.2639160156, -0.0920410156, 0.3911132812, 0.8442382812, 1.6845703125, -0.1481933594, 0.177734375, -0.0629882812, -0.2336425781, 0.6108398438, -0.0877075195, -0.2917480469, -0.9184570312, 0.5439453125, 0.7475585938, -1.0986328125, 0.3571777344, -0.6938476562, 0.7543945312, 0.5830078125, 0.7329101562, 0.9384765625, -0.1525878906, -0.4143066406, -0.2736816406, -0.251953125, 0.80859375, 0.0238037109, -0.5434570312, 0.2297363281, -2.349609375, -0.896484375, 0.2239990234, 0.6450195312, 0.1862792969, 0.4140625, 0.2130126953, -0.1553955078, 0.962890625, -0.2412109375, -0.4877929688, -0.330078125, -0.1291503906, -0.0628662109, 0.2817382812, 0.6909179688, 0.7529296875, -1.1083984375, 0.8012695312, -0.4072265625, 0.0414123535, -0.2568359375, -0.4968261719, -0.3522949219, 0.3840332031, 0.0768432617, 0.0347595215, -0.658203125, 0.51953125, 0.2342529297, -0.0495300293, -0.2902832031, -0.0933227539, -1.6103515625, 0.462890625, -0.0931396484, 0.66015625, 0.1146850586, -0.2846679688, 0.2893066406, 0.7431640625, -0.6059570312, 0.3374023438, 0.5703125, 0.2934570312, -0.5278320312, -0.0496520996, -0.7368164062, 0.6865234375, -0.5849609375, -0.6748046875, -0.9106445312, 0.1740722656, -0.1287841797, 0.2430419922, -0.8154296875, 0.0028972626, -0.1555175781, 0.5766601562, -0.6723632812, 1.0048828125, 1.0078125, -0.2978515625, 0.2102050781, 0.4577636719, 0.8686523438, 0.0757446289, -0.345703125, -0.1826171875, 0.2875976562, 0.4929199219, -0.2956542969, 0.693359375, 0.1917724609, -0.4521484375, 0.3142089844, 0.1652832031, -0.0230102539, -0.4265136719, 0.9482421875, 0.1531982422, -0.3913574219, -1.8017578125, -0.3937988281, -0.1439208984, 0.5961914062, -0.1173706055, -0.5458984375, 0.244140625, -0.3464355469, 0.1568603516, -0.0061683655, 0.1524658203, -0.4938964844, -0.5205078125, 0.6665039062, -0.8559570312, 0.23046875, 0.009979248, -0.9814453125, -1.0810546875, -0.5854492188, 0.2575683594, -0.9663085938, 0.3081054688, -0.1605224609, -0.1312255859, 0.3505859375, -0.2071533203, -0.3754882812, 0.2022705078, -1.5361328125, 0.67578125, -0.333984375, -0.6655273438, 0.0535583496, -1.162109375, -0.2668457031, -0.2332763672, -0.1433105469, -0.1413574219, 0.5942382812, 0.912109375, -0.8784179688, 1.03125, -0.0519714355, 0.2595214844, 0.1926269531, -0.6240234375, 0.5205078125, -0.2526855469, -0.0116577148, -0.3283691406, 0.5341796875, -1.0302734375, 0.1555175781, 0.3833007812, -0.1882324219, 0.2966308594, 0.2468261719, -0.1340332031, -0.5356445312, -0.3356933594, 0.3842773438, 0.0572509766, 0.6147460938, 0.6552734375, 0.2177734375, -0.2145996094, -0.6323242188, 0.4326171875, -0.8461914062, -0.2619628906, -0.8393554688, -0.2442626953, -1.251953125, -0.2893066406, 0.1680908203, -0.2604980469, 0.94921875, 0.5073242188, 0.2585449219, -0.2183837891, 0.0302429199, 0.5971679688, 0.3657226562, -0.4997558594, -0.1766357422, 0.0337524414, 0.646484375, 0.349609375, 1.1220703125, 0.70703125, -0.8061523438, -0.5390625, -0.6733398438, 0.5219726562, 0.7495117188, 0.0678100586, -1.3359375, -0.0139846802, 0.5122070312, 0.0953369141, -1.08203125, -1.1884765625, -0.3127441406, 0.6889648438, 1.3408203125, -0.3454589844, -0.2600097656, 0.6870117188, 0.29296875, 0.0917358398, 0.3588867188, 0.4194335938, 0.3103027344, 0.2348632812, 1.0458984375, 0.80859375, -0.2268066406, -0.916015625, 0.6474609375, 0.306640625, 0.1055297852, -0.4572753906, 0.2578125, 1.2958984375, 0.94921875, 0.1301269531, 1.083984375, -1.1396484375, 0.0772705078, -0.6318359375, -0.6264648438, 0.0817260742, 0.4770507812, 0.2565917969, 0.6552734375, -1.2431640625, -0.7626953125, -0.2091064453, 0.2054443359, 0.3610839844, 1.2412109375, 0.2247314453, -0.0980224609, -0.6723632812, 0.2434082031, -0.9389648438, 0.4643554688, 0.9741210938, 0.2044677734, -0.4113769531, 0.7314453125, 0.1683349609, 0.361328125, -0.1407470703, -0.1931152344, -0.2269287109, -0.3110351562, -1.98828125, -0.5805664062, -0.0203399658, 0.075012207, 0.466796875, 0.84375, -0.0563964844, -0.4443359375, 0.8764648438, -0.1240844727, 0.0835571289, 0.6108398438, -0.2912597656, -0.302734375, -0.18359375, 0.2587890625, -0.2489013672, -0.888671875, -0.6416015625, 0.4479980469, -0.1433105469, 0.5532226562, 0.1654052734, -0.3779296875, -0.0268859863, 0.3974609375, -0.5268554688, -0.5981445312, 0.1446533203, 0.4584960938, -0.1533203125, -0.6499023438, 0.2741699219, 0.4025878906, -1.076171875, 0.2181396484, 0.0569458008, -0.0113449097, 0.1791992188, 0.0149459839, 0.9541015625, -1.1181640625, 1.166015625, 0.1524658203, -0.5395507812, -0.4250488281, 0.6166992188, 0.1483154297, -1.0927734375, 0.1201171875, -0.2131347656, -1.083984375, 0.0284118652, 0.3471679688, -0.1190185547, 0.067199707, 0.8549804688, 0.2570800781, 0.3471679688, -0.1965332031, 0.6879882812, -0.6206054688, -0.375, 0.4956054688, -0.014755249, -0.5517578125, -0.7905273438, -0.5888671875, -0.4128417969, -0.599609375, -0.2707519531, -0.2189941406, 0.6372070312, -0.1008300781, -1.4306640625, -0.8759765625, 0.3813476562, -0.4262695312, -0.0066986084, -0.2022705078, 0.0272369385, 0.1901855469, 0.3872070312, -0.065246582, -0.1345214844, -1.044921875, -0.3078613281, 0.6176757812, -0.3671875, -1.5498046875, 0.5971679688, -0.2673339844, 0.521484375, 1.3095703125, -0.8491210938, 0.1298828125, -0.6000976562, 0.3215332031, 0.1408691406, 0.4621582031, -0.5791015625, -0.1571044922, 0.1612548828, -0.7451171875, 0.5234375, -0.8012695312, 0.47265625, -0.6538085938, -0.4184570312, 0.52734375, -0.419921875, 0.0452270508, 0.0846557617, -1.0263671875, 0.5971679688, -0.2110595703, 0.419921875, 0.1287841797, 1.08984375, 0.2418212891, 0.5078125, -0.658203125, -0.0194091797, 0.8447265625, -0.1312255859, 0.1098022461, 0.162109375, -0.6787109375, -0.1635742188, 0.1789550781, 0.2154541016, 0.1854248047, -1.427734375, 0.0830688477, -0.1285400391, -0.0614624023, -1.828125, -0.7661132812, 0.0281982422, 0.6020507812, 1.0283203125, -0.0296783447, -0.1739501953, -0.4597167969, 0.0291442871, 0.4250488281, 1.083984375, -0.365234375, 0.310546875, 0.3532714844, -0.2395019531, -0.1981201172, 1.814453125, -0.5380859375, -1.0068359375, 0.5288085938, -0.3076171875, 0.0909423828, -0.2907714844, 1.025390625, 0.916015625, 1.1591796875, 0.591796875, 1.197265625, -0.5092773438, -13.453125, 1.0478515625, -0.1791992188, -0.1223754883, -0.2305908203, 0.1015625, 0.3269042969, -0.3269042969, -0.99609375, -0.328125, -0.2176513672, 0.2145996094, 0.0260925293, -0.7221679688, -0.1801757812, -0.5537109375, 0.7299804688, 0.2578125, 0.17578125, -0.7797851562, 1.5361328125, -0.5395507812, 0.2824707031, -1.8603515625, -0.3901367188, -0.3420410156, 0.3642578125, -0.291015625, 0.1394042969, -0.5952148438, -0.8784179688, -0.3884277344, 0.5297851562, 0.0816040039, 1.345703125, -0.6606445312, 0.116027832, -0.2117919922, -0.0542297363, -0.1591796875, -0.966796875, 0.7553710938, -0.3569335938, -0.755859375, 0.0213317871, -0.7563476562, 0.1715087891, -0.4128417969, -0.3828125, -0.6264648438, 0.1155395508, 0.0983886719, 0.0202178955, 0.5747070312, -0.837890625, -0.8935546875, 0.7861328125, 0.005607605, -0.1843261719, 0.61328125, 0.6474609375, 0.6376953125, 0.58984375, 0.2587890625, 0.6655273438, -0.04296875, -0.4235839844, -1.0830078125, 0.5483398438, -0.0802612305, -0.1044311523, -0.1690673828, -0.9643554688, 0.1812744141, 0.4475097656, 0.4846191406, 0.4594726562, 0.1223754883, -0.0534057617, 0.337890625, 0.1832275391, -0.8173828125 ]
While most DTC blocks are laid out back-to-back, the blocks actually do not touch at sidings. Instead, there is a "gray area" over the siding's switches, and the main track's and siding's DTC blocks begins at approximately the clearance point of the switch. The area over the switch must not be occupied unless authority is granted in blocks on both sides of the switch. For example, a train authorized only in Anna block must stop at the End Anna Block sign, which is a short distance from the switch points. A train authorized in Anna through Bess or in Anna through Bess Siding may proceed past the End Anna Block sign, over the switch, and then past the Begin Bess (or Bess Siding, as applicable) Block sign. Blocks are typically named after a distinguishing feature within the block, such as a station, town, or river. Procedures Normally, only one train or piece of equipment may occupy a given block at a time, and a train must release their authority in a block for the dispatcher to authorize another train into that block. Barring human error, this ensures that no two trains are ever authorized on any given piece of track at the same time, thereby preventing collisions. (In certain circumstances, dispatchers will authorize more than one piece of equipment—as in the case of track maintenance vehicles—into the same block. When this occurs, the authority is marked as "joint," and all movements must be made at restricted speed, which allows stopping within half the range of vision.)
[ -0.4145507812, -0.3601074219, 0.3645019531, 0.3984375, 0.3132324219, -0.0305786133, -1.029296875, -0.6870117188, 0.1694335938, 0.2897949219, -0.1303710938, 0.2407226562, -0.1398925781, 1.001953125, 0.0235900879, 0.4306640625, -0.6469726562, 0.5249023438, -0.1575927734, 0.117980957, 0.1135253906, -0.544921875, 0.2282714844, -1.7099609375, 0.6396484375, 0.4338378906, 0.4313964844, -1.0087890625, -0.0717163086, -0.0084838867, -0.3854980469, 0.2492675781, -1.0146484375, 0.767578125, -0.6655273438, -0.734375, -1.166015625, -0.5556640625, -0.1239624023, -0.4301757812, 0.755859375, 0.0450439453, 0.2155761719, -0.6669921875, -0.2573242188, -1.0537109375, -0.0314025879, 0.1100463867, -1.5283203125, 0.4348144531, 0.3059082031, -0.9194335938, 0.6142578125, 0.0000107288, 0.564453125, -0.4519042969, -0.4838867188, 0.4409179688, 0.6640625, -0.0872192383, -0.4038085938, -0.1356201172, -0.51953125, -0.1215209961, 0.4645996094, -0.1627197266, -0.3701171875, 0.9653320312, -0.3203125, -0.4426269531, -0.6811523438, 0.9331054688, -0.9301757812, 0.1900634766, 0.1006469727, -0.3093261719, -0.2993164062, 0.8159179688, 0.4682617188, -0.2220458984, -0.9697265625, 0.0421142578, -0.609375, -1.08984375, 0.046875, 0.1483154297, 0.1618652344, 0.7719726562, 0.7426757812, 0.6020507812, 0.8857421875, -0.0408630371, -0.2885742188, -0.5561523438, 0.2863769531, -0.0909423828, 0.3264160156, -0.9560546875, -0.3415527344, -0.365234375, 0.7397460938, 0.2042236328, 1.6875, -0.7348632812, 0.0426330566, 1.763671875, -0.6020507812, -0.767578125, -0.1506347656, 0.9936523438, -0.0037441254, -0.0325622559, -0.630859375, -0.7729492188, -0.453125, 0.9794921875, -0.3381347656, 0.0060157776, 0.3583984375, -0.587890625, 0.6474609375, -0.1456298828, -0.1900634766, -0.1519775391, 0.4487304688, 0.056060791, 0.1248168945, 0.2081298828, 0.5048828125, 0.2702636719, -0.4868164062, -0.4523925781, 0.5786132812, -0.2578125, -0.2038574219, 0.1323242188, -0.7602539062, 0.3679199219, 0.0564575195, -0.50390625, 0.2410888672, -0.2517089844, 1.126953125, -0.2888183594, 0.4184570312, -0.3024902344, -0.078918457, 0.5219726562, -0.9389648438, 0.4079589844, -0.0618286133, -0.2976074219, -0.2496337891, -0.1484375, -0.615234375, -0.2052001953, -0.54296875, -0.1123657227, 0.6591796875, -0.7109375, -0.5327148438, -1.359375, 0.4396972656, 0.8212890625, -0.1339111328, 0.5131835938, -0.4572753906, 0.69921875, -0.9545898438, -0.0510559082, -0.2238769531, -0.2822265625, 0.1641845703, -0.3237304688, 0.4165039062, 0.6572265625, 0.1167602539, -0.7099609375, -0.8125, 0.1304931641, 0.1457519531, -1.2353515625, 1.623046875, 0.3635253906, 0.6220703125, 0.2724609375, 0.8540039062, -0.1936035156, -1.3955078125, -0.2043457031, -0.1977539062, 0.2751464844, -1.10546875, -0.0906982422, -0.0217132568, 0.1093139648, 0.138671875, -0.0690917969, 1.208984375, -0.3623046875, 0.4860839844, 0.1391601562, -1.0986328125, 0.1469726562, -0.0065231323, 0.2338867188, 0.7778320312, 0.1028442383, -0.9116210938, -0.3774414062, 0.2629394531, 1.0654296875, -0.0942382812, 1.962890625, -0.5947265625, -0.6357421875, 0.1502685547, -0.0372924805, 1.05859375, 0.1802978516, -0.5190429688, 0.2385253906, 0.3376464844, -1.107421875, -0.3032226562, -0.3486328125, 0.7651367188, 0.3518066406, 0.9653320312, 0.2319335938, 0.059967041, 0.5581054688, -0.1220092773, -1.1025390625, -0.3005371094, 0.3642578125, 0.0505371094, 0.43359375, -1.7109375, 0.1627197266, 0.1221923828, -0.3159179688, -0.1174316406, 0.1842041016, 0.0930175781, -1.2587890625, 0.5048828125, -0.94921875, -0.46484375, -0.2230224609, -0.64453125, -0.4675292969, -0.1948242188, 1.392578125, 0.5478515625, -0.5405273438, 0.7377929688, -0.525390625, 0.0607910156, -0.6254882812, -0.1781005859, 0.0805664062, 1.07421875, -0.2161865234, -0.2680664062, -0.21484375, -0.2186279297, -0.1667480469, -0.3662109375, -0.70703125, -0.0720825195, 0.1530761719, -0.8686523438, -0.0513916016, -1.0419921875, -0.2778320312, -0.0884399414, -1.36328125, 0.2861328125, 0.0687866211, 0.3110351562, 1.2578125, -0.9272460938, 0.4035644531, 0.626953125, -1.2919921875, -0.2017822266, 0.7958984375, -0.85546875, 0.8510742188, -0.3718261719, 0.8540039062, 0.1026611328, 0.1519775391, -0.7158203125, -0.3674316406, 0.3005371094, -0.1666259766, -1.353515625, 0.0220489502, -0.1069946289, 0.1566162109, -0.6206054688, 0.3061523438, 0.3811035156, -0.2438964844, 0.1286621094, -0.708984375, -0.4069824219, 0.8657226562, 0.6860351562, 1.3017578125, -0.3391113281, 0.98828125, -0.2174072266, 0.1817626953, -0.0430908203, -0.5888671875, 1.572265625, -0.2707519531, 0.5727539062, -0.4047851562, -0.484375, -0.583984375, -0.9252929688, -0.0999755859, -0.1557617188, -0.3071289062, -0.2338867188, 0.5595703125, 0.0316772461, -0.1895751953, -0.0975341797, 0.5092773438, -1.1259765625, 0.1617431641, -0.3286132812, -0.1520996094, 0.5708007812, -0.3415527344, -0.7934570312, -0.3664550781, -0.1252441406, -0.2127685547, -0.100402832, -0.193359375, 0.0916137695, 0.0351867676, 0.4685058594, 0.0242919922, -0.0871582031, -0.7670898438, 0.666015625, -0.9155273438, -0.9389648438, -1.0068359375, -0.1331787109, 0.5703125, -0.4606933594, 0.1693115234, 1.6103515625, -0.8681640625, -1.2666015625, -0.4499511719, -1.12109375, 0.5693359375, 0.1824951172, 0.2000732422, 0.8994140625, -0.615234375, 0.8266601562, 0.90625, -0.0819091797, 0.2052001953, 1.248046875, 0.0444030762, 0.4370117188, -1.0244140625, -0.1575927734, 0.7954101562, 0.16796875, -0.935546875, -0.1704101562, -0.3620605469, 0.8837890625, -0.7197265625, -0.2512207031, 0.3012695312, -0.6796875, -0.2493896484, -0.3464355469, -0.3933105469, -0.3349609375, 0.4157714844, -1.345703125, -0.0584106445, 1.0859375, -0.638671875, 0.111328125, -0.5229492188, 1.060546875, 0.2180175781, 0.0524902344, -0.2885742188, 0.2249755859, 0.0413818359, 0.9409179688, -0.0631713867, -0.010848999, -0.2054443359, -1.1416015625, -0.408203125, -0.671875, 0.3156738281, -0.3210449219, -0.4431152344, 0.6801757812, -0.8012695312, 0.8735351562, -0.6665039062, -0.2062988281, 0.0049591064, 0.098815918, 0.771484375, 0.0181884766, -0.7177734375, 0.4328613281, 0.7724609375, 0.7353515625, 0.4926757812, -0.4282226562, 0.4294433594, -0.2235107422, 0.328125, 0.9174804688, 0.3081054688, 0.9877929688, 0.4448242188, 0.2880859375, -0.6479492188, -0.0830688477, -0.0375671387, -0.3159179688, 0.2368164062, 0.0397644043, -0.0414428711, 0.3081054688, 1.2626953125, -0.5229492188, -0.5991210938, 0.5234375, -0.4528808594, -0.9360351562, -0.7202148438, -0.0283660889, -0.6977539062, -0.3430175781, 0.2761230469, -0.283203125, 0.2150878906, -0.4250488281, 0.8276367188, -0.4799804688, -0.5463867188, -0.1573486328, -1.240234375, -0.7368164062, 0.1552734375, -0.1148071289, 0.0667724609, 0.1463623047, 1, -0.845703125, 0.5869140625, 0.591796875, 1.1923828125, -0.1810302734, 0.1414794922, 0.3100585938, 0.4067382812, -1.1875, -0.1221923828, -0.7841796875, -0.1887207031, -0.5986328125, -0.2919921875, 0.8662109375, 0.4597167969, -0.1674804688, -0.0533447266, 0.8061523438, 0.5673828125, -0.3051757812, 0.376953125, -1.8037109375, -0.4831542969, 0.5034179688, -0.427734375, 0.419921875, -1.2451171875, 0.0953369141, 0.9736328125, 0.0433959961, 0.087890625, -0.4614257812, 0.578125, 0.6708984375, 0.0183258057, 0.1910400391, 0.251953125, 0.900390625, 1.5087890625, -0.004360199, 0.8774414062, -0.1705322266, -0.3771972656, 0.5581054688, -0.0064926147, -0.1069946289, -1.16796875, 1.1015625, 0.8232421875, -0.8442382812, 0.0996704102, -0.0036010742, 1.30859375, 0.5708007812, 0.2043457031, 0.857421875, 0.0778198242, -0.5498046875, -0.2115478516, -0.2415771484, 0.5356445312, 0.1401367188, -0.4284667969, 0.0153045654, -2.501953125, -0.4916992188, 0.3430175781, 0.9848632812, 0.3139648438, 0.1616210938, 0.0096130371, -0.1411132812, 0.1525878906, -0.4343261719, -0.966796875, -0.515625, 0.39453125, 1.017578125, -0.0577392578, 0.9477539062, 0.9072265625, -1.3076171875, 0.2639160156, -0.2534179688, 0.2104492188, -0.6372070312, -0.6103515625, -0.1700439453, -0.2355957031, -0.2604980469, -0.4201660156, -0.4482421875, 0.3527832031, 0.3449707031, 0.076965332, -0.28515625, -0.0055122375, -1.7177734375, 0.2778320312, -0.0955200195, 1.15234375, 0.3010253906, 0.22265625, 0.0468139648, 0.7802734375, -0.2622070312, -0.26171875, 0.4409179688, 0.2795410156, -0.5986328125, -0.0927124023, -0.2039794922, 1.3291015625, -0.2685546875, -0.62109375, -0.5166015625, 0.4997558594, -0.1350097656, 0.3005371094, -0.1647949219, -0.4108886719, 0.0885620117, 0.6616210938, -0.1862792969, 0.1954345703, 1.48828125, -0.4096679688, 0.2213134766, 0.2568359375, 0.3918457031, 0.0708007812, -0.8076171875, -0.3505859375, 0.1655273438, 0.6518554688, -0.8081054688, 0.5063476562, 0.1195678711, -0.7021484375, 0.4216308594, -0.4616699219, -0.2197265625, -0.3020019531, 0.5390625, 0.1169433594, 0.3581542969, -1.1005859375, -0.359375, -0.4641113281, 0.0480651855, -0.130859375, -0.154296875, 0.4104003906, -0.1260986328, 0.5546875, -0.1988525391, -0.3876953125, -0.1815185547, -0.6030273438, 0.1730957031, -0.9897460938, -0.2700195312, 0.1037597656, -0.9321289062, -0.6044921875, 0.0679321289, -0.2524414062, -0.7880859375, 0.8686523438, 0.1859130859, 0.037689209, 0.6186523438, -0.6430664062, -0.0807495117, 0.2055664062, -1.33984375, 0.4702148438, -0.1994628906, 0.0805053711, 0.4357910156, -0.9399414062, 0.022567749, -0.7265625, -0.0750732422, -0.1330566406, 0.6357421875, 0.3894042969, -0.5498046875, 1.5908203125, -0.2238769531, 0.2543945312, -0.2114257812, 0.0478515625, 0.6059570312, 0.0620727539, -0.6489257812, -0.0131454468, 0.7006835938, -1.8095703125, -0.046081543, -0.3620605469, -0.2724609375, 0.7548828125, 0.4431152344, -0.263671875, -0.7802734375, -0.748046875, 0.4226074219, 0.8637695312, 0.5283203125, 0.9638671875, -0.0072822571, 0.1561279297, -0.9389648438, 0.3911132812, -0.6713867188, -0.1319580078, -1.09375, -0.357421875, -0.6630859375, -0.2978515625, 0.6528320312, 0.7626953125, 0.546875, 0.2149658203, -0.4309082031, -0.02784729, 0.0295715332, 0.7451171875, 0.4255371094, -0.6782226562, 0.0817871094, 0.2229003906, 1.0673828125, 0.0158691406, 1.0419921875, 1.123046875, -0.4880371094, -0.2734375, -0.5205078125, 0.6235351562, 1.513671875, -0.2802734375, -0.8701171875, -0.0070610046, 0.9897460938, 0.0266418457, -1.8828125, -0.859375, -0.1678466797, 0.8525390625, 0.63671875, -0.0614624023, -0.2142333984, 0.1728515625, 0.5478515625, 0.1224975586, -0.2302246094, 0.3803710938, 0.2602539062, 0.1447753906, 0.8833007812, 0.7905273438, -0.2462158203, -0.4194335938, 0.5756835938, 0.2484130859, -0.5283203125, -0.2419433594, 0.1776123047, 1.01953125, 0.6665039062, 0.3488769531, 1.32421875, -0.5688476562, 1.2509765625, -0.5756835938, -0.2166748047, 0.2281494141, 0.2381591797, 0.0759277344, 0.8247070312, -1.224609375, -0.8032226562, -0.4260253906, -0.0225524902, 0.0614318848, 0.5229492188, 0.4577636719, -0.0281829834, -0.33984375, 0.1394042969, -1.1484375, 0.2810058594, 1, 0.1490478516, 0.0361633301, 0.5668945312, 0.3986816406, 0.2890625, -0.166015625, 0.1602783203, -0.6674804688, -0.2340087891, -2.400390625, -0.6918945312, 0.1492919922, 0.8466796875, 0.6821289062, 0.701171875, -0.2159423828, -0.2724609375, 0.6489257812, 0.0686645508, 0.0767211914, 0.0599060059, -0.4372558594, -0.255859375, -0.2717285156, 0.0900268555, -0.0806884766, -1.2138671875, -0.3854980469, 0.0618286133, -0.8291015625, 0.1577148438, 0.0946044922, -0.798828125, 0.4770507812, 1.1640625, -0.3464355469, -0.4645996094, -0.4091796875, 0.322265625, -0.2027587891, -0.634765625, 0.1929931641, -0.462890625, -1.404296875, 0.337890625, 0.2556152344, 0.0592956543, -0.1287841797, 0.984375, 0.8798828125, -0.6069335938, 0.4973144531, -0.2612304688, -0.8618164062, -0.279296875, 0.3049316406, 1.1005859375, -0.4702148438, 0.1563720703, -0.2573242188, -1.1689453125, -0.0718383789, 0.1617431641, 0.1019897461, 0.2497558594, 1.2890625, 0.529296875, 0.3020019531, -0.1168823242, 0.0484619141, -0.4448242188, -0.27734375, 0.5727539062, -0.2614746094, -0.3146972656, -0.4965820312, -0.3908691406, -0.8139648438, -0.9521484375, -0.1494140625, -0.0280151367, -0.0278930664, -0.4172363281, -1.2470703125, -0.6010742188, 0.6157226562, -0.2958984375, -0.5546875, -0.4106445312, 0.0894165039, 0.2976074219, 0.2469482422, -0.2191162109, -0.1640625, -0.5063476562, -0.1539306641, 0.587890625, -0.1423339844, -1.658203125, 0.4152832031, -0.2447509766, 0.2390136719, 1.25, -0.8427734375, 0.0284729004, -0.4987792969, -0.0156860352, 0.1549072266, 0.2075195312, -0.4929199219, -0.0270385742, 0.1137695312, -0.677734375, 0.4704589844, -0.6279296875, 0.9692382812, -0.0654296875, 0.1492919922, 0.6743164062, -0.1866455078, 0.5385742188, 0.0999145508, -0.580078125, 0.5146484375, 0.0899047852, 0.4599609375, -0.53515625, 0.5078125, 0.2858886719, 0.474609375, -0.7700195312, -0.4465332031, 0.5415039062, -0.0339050293, -0.0034503937, 0.2380371094, -0.3698730469, -0.5112304688, 0.0900878906, -0.0604553223, 0.2127685547, -1.458984375, -0.1723632812, -0.5849609375, -0.0122756958, -1.935546875, -0.5693359375, 0.1977539062, 0.1791992188, 0.9013671875, 0.3767089844, -0.3051757812, -0.13671875, -0.3405761719, 0.3955078125, 1.0322265625, -0.3017578125, 0.4248046875, 0.1584472656, -0.642578125, 0.1104125977, 1.8125, -0.3688964844, -0.6220703125, 0.3520507812, -0.5463867188, -0.0537719727, -0.2990722656, 1.0400390625, 0.4565429688, 0.7587890625, 0.3903808594, 1.0556640625, -1.3193359375, -13.796875, 1.130859375, -0.2257080078, -0.5961914062, -0.6743164062, -0.0275878906, 0.6513671875, -0.626953125, -0.4562988281, -0.3068847656, -0.3425292969, 0.1383056641, -0.2595214844, -0.5776367188, -0.2592773438, -0.3391113281, 1.0419921875, -0.3041992188, 0.5952148438, -0.314453125, 1.302734375, -0.1068115234, -0.2236328125, -1.6015625, -0.3962402344, -0.3928222656, -0.0478515625, 0.0006947517, -0.1334228516, -0.4479980469, -0.7338867188, -1.0751953125, 1.0185546875, -0.0280303955, 1.65234375, -0.6181640625, -0.4643554688, -0.2242431641, -0.0583190918, 0.255859375, 0.0958862305, 0.490234375, -0.5263671875, -0.2802734375, -0.1149902344, -0.4768066406, 0.4296875, -0.5659179688, -0.7905273438, -0.5751953125, 0.5341796875, -0.0677490234, 0.1226196289, 0.7416992188, -1.0732421875, -0.7451171875, 0.6372070312, -0.0017852783, 0.3325195312, 0.7724609375, 0.9873046875, 0.337890625, 0.1184082031, 0.3566894531, 0.8603515625, -0.1069946289, -0.4758300781, -0.7416992188, 0.896484375, -0.6909179688, -0.1728515625, -0.3513183594, -0.6752929688, -0.0122833252, 0.3559570312, 0.4519042969, 0.2873535156, -0.0343322754, -0.2410888672, 0.4865722656, -0.3525390625, -0.7192382812 ]
Another key feature of DTC is that only one authority is in effect for any given train at any given time. When a dispatcher issues a new authority to a train, the previous authority becomes invalid and must not be used. In modern implementations, dispatchers rely on computerized systems to monitor trains that have received authority. Typically, the computer will prevent the dispatcher from giving two trains authority over the same track. The computer system generally displays a highly simplified diagram of the track, displaying the block limits and sidings. Track occupancy is displayed via bold or colored lines overlaying the track display, along with tags to identify the train (usually the number of the lead locomotive). To receive or change a train's authority, the train dispatcher communicates by radio with the train crew and gives "mandatory directives" authorizing occupancy in a specified number of blocks. A member of the train crew, usually the conductor, copies the dispatcher's mandatory directive onto a prescribed form. The crew member will repeat the directive back to the dispatcher, who monitors the repeat for any errors. If the crew member correctly repeats the mandatory directive, the dispatcher finalizes the directive by saying, "That is correct," followed by the dispatcher's initials. A mandatory directive cannot take effect until the dispatcher has said, "That is correct," reducing the potential for human error to cause an accident. Numbers are always repeated in an alternate format to ensure clarity and prevent misunderstandings.
[ -0.4731445312, 0.2702636719, 0.4406738281, 0.5014648438, 0.306640625, -0.4580078125, -0.5473632812, -1.0078125, -0.3073730469, 0.2331542969, 0.6694335938, -0.1390380859, 0.2119140625, 1.1787109375, 0.0104827881, -0.0174865723, -0.2746582031, 0.0508422852, 0.2377929688, 0.4418945312, -0.1756591797, -0.333984375, 0.8706054688, -1.69140625, 0.4711914062, 0.3657226562, 0.1104736328, -0.3500976562, 0.2829589844, -0.0702514648, -0.1840820312, 0.2944335938, -1.5283203125, 0.0510864258, -0.3920898438, -0.4704589844, -0.0665283203, -0.3969726562, -0.5629882812, -0.1997070312, 1.1884765625, -0.880859375, -0.1737060547, -0.0139007568, -0.8403320312, -0.8452148438, 0.3344726562, -0.1008911133, -0.9135742188, 0.6020507812, 0.5297851562, -0.904296875, -0.0943603516, -0.6303710938, 0.0279388428, -0.6220703125, -0.8442382812, -0.1677246094, 0.56640625, -0.6323242188, -0.5122070312, -0.0548706055, -0.6791992188, -0.3676757812, -0.4194335938, -0.2166748047, -0.5971679688, 1.30078125, -0.8266601562, 0.4755859375, -0.4033203125, 0.4985351562, -0.3293457031, -0.2556152344, -0.1500244141, -0.1848144531, -0.515625, 0.5927734375, 0.4228515625, -0.6821289062, -0.9672851562, 0.1335449219, -0.1381835938, -0.541015625, -0.048034668, -0.3325195312, 0.78125, 0.2305908203, 0.1939697266, 1.1962890625, 0.2734375, -0.3623046875, -0.6362304688, -0.0944213867, -0.3947753906, -0.5791015625, -0.0467224121, -0.0192565918, -0.0475158691, 0.0992431641, 0.1613769531, 1.0595703125, 2.048828125, -0.4213867188, -0.0785522461, 0.7197265625, -0.642578125, -0.6499023438, -0.0706176758, 1.1943359375, -0.0593566895, 0.0005950928, -0.068359375, -1.25390625, -0.8559570312, 1.251953125, 0.2727050781, 0.1691894531, 0.1135253906, -0.0532531738, 0.3000488281, 0.2347412109, -0.3251953125, -0.509765625, -0.2575683594, -0.583984375, -0.2318115234, -0.4138183594, 0.5229492188, 0.7490234375, 0.2277832031, -0.4758300781, 0.0798339844, 0.6259765625, -0.19140625, 0.2099609375, -0.6489257812, -0.058013916, -0.1171875, -0.069519043, -0.140625, -0.7919921875, 0.572265625, 0.1843261719, 0.3991699219, 0.0339355469, -0.0396118164, 0.6826171875, 0.4331054688, 0.3322753906, -0.5830078125, -0.5854492188, -0.0321350098, -0.1240234375, 0.0189208984, 0.0814208984, -0.2521972656, -0.4926757812, 1.08203125, -0.4777832031, -0.4501953125, -1.986328125, 1.03125, 0.5922851562, 0.3149414062, 0.2053222656, -0.4743652344, 0.3647460938, -1.0068359375, -0.0966796875, -0.9848632812, 0.3383789062, 0.0927734375, 0.04296875, 0.84375, -0.5224609375, -0.3186035156, -0.8881835938, -0.1246337891, -0.2712402344, 0.2078857422, -1.6962890625, 1.361328125, 0.1671142578, 0.505859375, 0.0386047363, 1.5244140625, -0.1278076172, -1.0166015625, -0.3979492188, -0.375, 0.2587890625, -0.2600097656, 0.7548828125, 0.6831054688, 0.2490234375, -0.3327636719, 0.1441650391, 1.2255859375, 0.1645507812, 0.1267089844, -0.2347412109, -0.9921875, -0.2614746094, -0.275390625, -0.1297607422, 0.3444824219, -0.1740722656, -0.6157226562, 0.1381835938, 0.0090789795, 0.7231445312, -0.1354980469, 1.533203125, -0.91015625, -0.0754394531, 0.5576171875, 0.3037109375, 0.5771484375, 0.6948242188, -0.203125, -0.3388671875, 0.3244628906, -2.068359375, 0.1050415039, -0.6782226562, 0.1290283203, 0.4572753906, 0.6313476562, 0.0378723145, 0.58984375, 1.1083984375, -0.302734375, -0.5727539062, 0.5102539062, 0.3430175781, -0.3481445312, 0.7504882812, -0.8842773438, 0.3618164062, 0.0676879883, -0.873046875, 0.0637207031, -0.4809570312, -0.1447753906, -0.8427734375, 0.3513183594, -0.4404296875, -0.0411071777, 0.34765625, -0.8994140625, 0.0258636475, -0.3356933594, 1.5078125, -0.515625, -0.3486328125, -0.0023059845, 0.3806152344, -0.0703125, -0.5126953125, -0.2883300781, 0.2349853516, 1.2724609375, -0.5673828125, -0.0255737305, 0.6704101562, -0.3381347656, -0.462890625, 0.5932617188, -0.3923339844, -0.1158447266, 0.4235839844, -0.5302734375, -0.3298339844, -1.05078125, -0.4992675781, -0.4084472656, -1.345703125, 0.5659179688, -0.3081054688, 0.5810546875, 0.9985351562, -0.2802734375, 0.3481445312, 1.3935546875, -0.8217773438, 0.71875, 0.4729003906, -0.1651611328, 0.2409667969, -0.4067382812, 0.8959960938, -0.1879882812, 0.2305908203, -0.310546875, -0.1522216797, 0.3752441406, 0.1525878906, -0.8208007812, -0.2199707031, 0.9487304688, 0.7490234375, 0.5244140625, -1.2099609375, 0.6254882812, 0.4560546875, -0.2320556641, -0.4436035156, -0.1121826172, 1.0888671875, -0.2265625, 1.23828125, -0.5556640625, 0.8569335938, -0.0600280762, 0.2680664062, -0.39453125, -0.505859375, 0.5, -0.3237304688, 0.6723632812, -0.3598632812, -0.4682617188, -0.4384765625, -0.057800293, -0.0285797119, -0.2071533203, -0.791015625, 0.2354736328, 1.0751953125, 0.4147949219, 0.2761230469, 0.0899047852, 0.3420410156, -0.7138671875, -0.3776855469, -1.0361328125, -0.6176757812, 0.6010742188, -0.5771484375, 0.0681152344, -0.6333007812, -0.3212890625, -0.9077148438, -0.1715087891, -0.1127929688, 0.1597900391, -0.6557617188, 0.7924804688, -0.2054443359, 0.3459472656, 0.0037899017, -0.0205993652, -0.8012695312, -1.1005859375, -0.5947265625, -0.3508300781, 0.7504882812, -0.51953125, 0.4230957031, 1.28125, 0.388671875, -0.3657226562, -0.47265625, -1.673828125, 0.5302734375, -0.0611877441, 0.3071289062, -0.1531982422, -0.1297607422, 0.3278808594, 0.4479980469, -0.2976074219, 0.6020507812, 0.2152099609, 0.3583984375, 0.4794921875, -0.9892578125, -0.2169189453, 0.1292724609, 0.1451416016, -1.1484375, 0.0943603516, -0.4838867188, 0.6591796875, -0.4504394531, -0.3225097656, 0.0596008301, -0.2232666016, -0.2624511719, -0.0588989258, -1.2119140625, -0.2369384766, 0.576171875, -0.580078125, 0.5166015625, 1.193359375, -0.5400390625, 0.619140625, -0.728515625, 1.072265625, 1.2255859375, -0.38671875, -0.3657226562, 0.0748291016, 0.857421875, 1.2080078125, 0.7846679688, -0.1307373047, 0.1947021484, -0.48046875, -0.18359375, -0.7680664062, 0.6254882812, -0.1309814453, -0.4484863281, 0.4992675781, -1.265625, -0.0209503174, 0.6987304688, -0.673828125, 0.4797363281, -0.2344970703, 0.68359375, -0.375, -0.8305664062, -0.1435546875, -0.1267089844, 0.880859375, 0.2385253906, -0.7202148438, -0.2020263672, -0.1953125, -0.2590332031, 0.5854492188, 0.2556152344, 1.1669921875, 0.0585021973, -0.1654052734, -0.1197509766, -0.1400146484, 0.3076171875, -0.3654785156, -0.7299804688, -0.2590332031, 0.0119934082, 0.2326660156, 0.7426757812, 0.4870605469, 0.055267334, -0.7568359375, -0.6440429688, 0.0073280334, -0.0331420898, 0.0226593018, -0.8618164062, -0.1557617188, -0.2391357422, -0.4187011719, 0.0615844727, -0.5751953125, 0.9780273438, -0.6538085938, -0.0134277344, 0.2259521484, -0.861328125, -0.7509765625, -0.2712402344, -0.4001464844, 0.4191894531, 0.1278076172, 0.7944335938, -0.1857910156, 0.4270019531, 0.0223999023, 0.2883300781, -0.4282226562, 0.0951538086, -0.5649414062, 0.2570800781, -1.0322265625, 0.4575195312, -0.6943359375, -0.2573242188, -0.328125, -0.578125, 0.6411132812, 0.3068847656, 0.2076416016, 0.0102386475, 0.4838867188, -0.4836425781, -0.2403564453, 0.2373046875, -1.091796875, -0.6489257812, 0.421875, 0.576171875, 0.251953125, -1.1083984375, -0.4128417969, 0.5385742188, -0.0076637268, 0.1459960938, 0.4555664062, 0.6962890625, 0.7739257812, 0.2264404297, -0.1600341797, 0.1132202148, 0.537109375, 0.9829101562, 0.2282714844, 0.2880859375, -0.244140625, 0.3022460938, 1.13671875, 0.2381591797, -0.62890625, -1.1708984375, 1.1435546875, 0.4404296875, -0.9409179688, 0.2541503906, 0.8408203125, 0.9619140625, 0.9067382812, 0.6342773438, 0.7016601562, 0.0231323242, -0.3483886719, 0.3935546875, -0.0431213379, 1.212890625, -0.244140625, -0.7006835938, 0.8740234375, -1.111328125, -0.7392578125, -0.2497558594, -0.2697753906, 0.0814819336, -0.1265869141, 0.106262207, 0.2424316406, 0.5498046875, -0.2614746094, 0.0662231445, -0.2819824219, -0.4560546875, -0.4389648438, 0.2154541016, 0.4348144531, 1.1015625, -0.7421875, -0.3544921875, -0.4165039062, -0.0024147034, -0.7016601562, -0.0869140625, -0.3427734375, -0.2188720703, -0.3928222656, 0.2971191406, -0.6000976562, 0.908203125, -0.2717285156, -0.4548339844, 0.1517333984, -0.3107910156, -0.6118164062, 1.0234375, -0.0836791992, 0.7407226562, 0.3564453125, -0.4548339844, 0.3564453125, 0.2153320312, -0.515625, 0.2227783203, 0.2478027344, 0.4799804688, -0.8959960938, -0.0578918457, -0.8798828125, 1.6396484375, -1.083984375, -0.32421875, 0.0473632812, 0.1207275391, 0.4743652344, -0.830078125, 0.1510009766, -0.4040527344, -0.6708984375, 0.2431640625, -0.4270019531, 0.3640136719, 0.6713867188, -0.2993164062, -0.0376281738, 0.6704101562, 0.7114257812, 0.3857421875, -0.0369873047, -0.9487304688, -0.6166992188, 0.3552246094, -0.375, 0.2900390625, -0.7778320312, -0.826171875, 0.4416503906, -0.2502441406, -0.3032226562, -0.5122070312, -0.0971069336, 0.853515625, 0.4421386719, -1.126953125, -0.904296875, -0.7431640625, 0.7705078125, 0.0005021095, -0.5649414062, 0.546875, -0.3615722656, -0.0369262695, -0.1623535156, 0.98828125, -0.6064453125, -0.4506835938, 0.4353027344, -1.552734375, -0.8286132812, 0.2424316406, -0.4758300781, -0.734375, -0.0148391724, 0.0726318359, -0.89453125, 0.4763183594, 0.4765625, 0.1733398438, 0.1424560547, -0.53515625, -0.5971679688, 0.2264404297, -0.7465820312, 0.6362304688, -0.1661376953, 0.3225097656, -0.0915527344, -1.2255859375, 0.7993164062, -0.9233398438, -0.0187225342, -0.3383789062, 1.259765625, 0.2622070312, -0.8759765625, 1.8984375, -0.1726074219, 0.6293945312, 0.2980957031, -0.9829101562, 0.4133300781, -0.2580566406, -0.1146240234, 0.0791015625, -0.0484313965, -0.7397460938, -0.638671875, -0.0821533203, -0.4228515625, -0.3669433594, 0.4057617188, 0.1761474609, -0.1730957031, 0.3095703125, 0.5166015625, 0.2425537109, 0.8911132812, 0.0372314453, 0.5532226562, -0.0828857422, -0.9877929688, 0.3669433594, -0.3139648438, -0.7172851562, -1.1357421875, 0.0557250977, -1.41015625, 0.2780761719, 0.1833496094, -1.2685546875, -0.2875976562, 1.041015625, -0.5629882812, 0.0291595459, -0.1791992188, 0.3720703125, -0.2293701172, -0.0581359863, 0.8784179688, 0.1646728516, 0.2922363281, 0.1184692383, 0.9780273438, 0.9497070312, 0.17578125, -0.3205566406, -0.1139526367, 0.107421875, 1.5380859375, 0.1267089844, 0.1398925781, -0.3020019531, 0.1370849609, -0.5390625, -0.1984863281, -0.521484375, 0.4150390625, 0.3725585938, 0.74609375, -0.8852539062, 0.3713378906, 0.3686523438, 0.8447265625, 0.3056640625, 0.0399169922, 0.1190185547, 1.033203125, 0.0982666016, 0.4775390625, 0.2958984375, 0.3425292969, 0.0188598633, 0.740234375, 0.0423583984, -0.3364257812, -0.4250488281, -0.040222168, 0.1291503906, 0.7724609375, 0.1251220703, 1.2802734375, -1.259765625, 0.54296875, -0.669921875, -0.4067382812, 0.5986328125, -0.3271484375, 0.4333496094, 1.248046875, -0.7705078125, -1.3828125, 0.2553710938, 0.6010742188, -0.2482910156, 0.6025390625, -0.3928222656, -0.0923461914, -0.4868164062, 0.3884277344, -0.5913085938, 0.4763183594, 0.6752929688, 0.1763916016, -0.5263671875, 0.2399902344, 0.2145996094, 0.1014404297, -0.0639648438, -0.2042236328, -0.2191162109, -0.8833007812, -2.302734375, -0.0037269592, 0.1352539062, 0.8046875, -0.1325683594, -0.098449707, -0.0113449097, -0.0391540527, 0.4353027344, 0.1301269531, 0.6684570312, 0.6708984375, -0.0511169434, -0.4226074219, -0.4799804688, 0.1871337891, 0.1306152344, -1.2470703125, 0.2045898438, 0.4353027344, -0.5122070312, 0.9682617188, -0.1878662109, -0.8774414062, 0.2214355469, 1.0009765625, -0.0970458984, -0.7514648438, -0.6279296875, 0.2210693359, 0.1979980469, -1.1796875, 0.4201660156, -0.0033683777, -0.5737304688, 0.4064941406, -0.8056640625, 0.5288085938, -0.32421875, 0.5834960938, 0.6416015625, -1.23828125, 1.263671875, 0.0463867188, -0.568359375, -0.2122802734, 0.6411132812, 0.3266601562, -0.8813476562, -0.3415527344, -0.3837890625, -1.416015625, 0.0307922363, -0.0131149292, -0.2700195312, 0.1761474609, 0.5405273438, 0.3842773438, 0.9912109375, -0.1407470703, 0.31640625, -0.9794921875, -0.044128418, -0.0248260498, -0.3688964844, -0.7534179688, -0.1677246094, 0.1557617188, -0.2291259766, -0.7680664062, -0.2902832031, -0.4396972656, 0.251953125, 0.0994873047, -0.2415771484, -0.548828125, 0.3806152344, 0.5517578125, 0.2917480469, -1.2421875, 0.2629394531, 0.3010253906, 0.2139892578, 0.0972900391, 0.0791015625, -0.3937988281, 0.1231079102, 0.6611328125, -0.349609375, -1.4892578125, 0.3508300781, 0.1865234375, 0.2479248047, 0.787109375, -0.8657226562, -0.0137023926, -0.2514648438, -0.039855957, -0.0353088379, -0.3850097656, -0.3962402344, -0.3881835938, 0.6982421875, 0.0844726562, -0.4719238281, -0.0709228516, 0.2357177734, -0.9916992188, -0.2770996094, 0.1453857422, -0.1755371094, 0.0634765625, 0.1934814453, -0.9541015625, 0.4064941406, 0.4465332031, -0.0032234192, 0.0415039062, 0.501953125, -0.9365234375, 0.326171875, -0.3371582031, -0.0215606689, 0.783203125, -0.1541748047, 0.5122070312, 0.9643554688, -0.0645141602, -0.0158691406, -0.3852539062, -0.0259399414, -0.1346435547, -0.8334960938, -0.1968994141, -0.4331054688, -0.0300445557, -1.8466796875, -0.908203125, -0.0975341797, 0.5415039062, 0.689453125, -0.1693115234, -0.3723144531, -0.4758300781, 0.0405273438, 1.0498046875, 0.4711914062, -0.6411132812, 0.3229980469, 0.76171875, -0.4350585938, 0.3984375, 0.7817382812, -0.2395019531, -1.0361328125, 0.4921875, -0.1490478516, 0.0557556152, 0.0275726318, 1.0927734375, 0.5625, 0.8715820312, -0.0961914062, 0.0753173828, -0.69921875, -14.546875, 1.09375, -0.6064453125, -0.7651367188, -0.6953125, 0.4340820312, 0.1379394531, 0.0254974365, -1.0712890625, -0.2435302734, 0.62890625, 0.6357421875, 0.0383300781, -0.2548828125, -0.0934448242, -0.1500244141, 0.1539306641, 0.0674438477, 0.0690917969, 0.2810058594, 1.1484375, -0.1309814453, -0.0899658203, -1.7109375, -0.9033203125, -0.48046875, 0.640625, 0.5751953125, -0.1224975586, -0.0685424805, -0.4052734375, 0.361328125, 0.2756347656, -0.0341186523, 0.9365234375, -0.9780273438, -0.3791503906, -0.7514648438, 0.5766601562, 0.0930786133, 0.1428222656, 0.1723632812, -0.7387695312, 0.0118408203, -0.0643920898, 0.1024780273, 0.0735473633, -0.591796875, -0.1051025391, -0.8159179688, 0.4108886719, 0.6938476562, 0.1198120117, 0.4643554688, -0.6450195312, -0.8037109375, 1.091796875, -0.4460449219, -0.7875976562, 0.529296875, 0.0686035156, 0.6577148438, 0.0220336914, -0.1215209961, 0.3188476562, -0.0869140625, -0.0941162109, -0.7475585938, 0.5107421875, -0.6337890625, -0.0432128906, -0.8393554688, -0.3112792969, -0.4829101562, 0.2556152344, 0.0570373535, 0.74609375, 0.1789550781, -0.4152832031, 0.4287109375, 0.0713500977, -0.1461181641 ]
Numbers from zero to nine are spelled out, while numbers greater than ten are given by their individual numerals. For example, the number six would be given as, "Six, s-i-x," while the number 14 would be given as "fourteen, one-four." Engine numbers such as 2001 are usually read first as "two thousand one," while numbers such as 4321 are usually read as "forty-three twenty-one," although this is mostly a personal preference about what is easiest to say. Regardless, the repeat will give the individual numerals, as in, "Engine twenty-eight oh eight, two, eight, zero, eight." A sample issue format would be as follows: When trains must meet en route, one train must be authorized into the siding. For example, train 5432 may be authorized from Anna into Bess Siding: An opposing train will be authorized in two blocks, Cloy through Bess, using a similar format: Once train 5432 has fully entered the siding and restored the switch for movement along the main track, they will call the dispatcher and release Anna block, using the following format: After the 5432 has released its authority in Anna, the dispatcher may issue a new authority to the 4321 authorizing them through Anna block. Since only one authority is valid at any given time, if the 4321 is still in Cloy block, the dispatcher will give the new authority containing Cloy through Anna.
[ -0.7094726562, -0.2751464844, 0.3469238281, 0.4792480469, 0.45703125, -0.2788085938, -0.3698730469, -0.490234375, -0.3271484375, -0.2509765625, -0.416015625, 0.9506835938, 0.2303466797, 0.6010742188, 0.0880737305, 1.1162109375, -0.5146484375, 0.4946289062, -0.5224609375, 0.3737792969, -0.0096359253, -0.5126953125, 0.7631835938, -1.8017578125, 0.3491210938, -0.0978393555, -0.1052246094, -1.3056640625, 0.3386230469, 0.18359375, -0.7719726562, 0.2076416016, -0.52734375, 0.22265625, -1.203125, -0.3720703125, 0.3974609375, 0.065246582, -0.0670166016, -0.6064453125, 0.2687988281, -0.9575195312, 0.4130859375, -0.853515625, -0.5805664062, -0.48828125, 0.1013793945, -0.1927490234, -0.0889282227, 0.62890625, -0.0160522461, 0.6499023438, 0.0431213379, -0.5180664062, 0.5551757812, -0.5776367188, -0.818359375, 0.5493164062, 0.658203125, -0.0585632324, -0.6494140625, -0.2426757812, -0.6381835938, 0.052154541, 0.2802734375, 0.1630859375, -0.6958007812, 0.681640625, -0.2255859375, 0.650390625, -0.2868652344, 0.1842041016, -1.0810546875, 0.3156738281, -0.3193359375, -0.435546875, -0.5830078125, -0.0816040039, 0.044128418, 0.5346679688, -0.9174804688, 0.2058105469, -0.6728515625, -1.4873046875, -0.0600585938, -0.4106445312, 0.1204223633, 0.2448730469, 0.3156738281, 0.8833007812, 0.8979492188, 0.2191162109, -0.2424316406, -0.3073730469, 0.2067871094, 0.6215820312, 0.58203125, -1.091796875, -0.2583007812, -0.4187011719, 0.2393798828, 0.2238769531, 1.4404296875, -0.7744140625, -0.2319335938, 1.33203125, -1.1181640625, -0.4201660156, -0.5756835938, 0.7236328125, -0.0847167969, -0.5229492188, 0.0704345703, -1.15625, 0.4094238281, 0.7963867188, 0.0518798828, -0.2641601562, 0.1793212891, -0.1926269531, 0.4931640625, -0.1878662109, 0.1641845703, -0.2719726562, -0.84765625, -0.2912597656, -0.7827148438, 0.7553710938, 0.443359375, 0.6674804688, 0.2404785156, -0.7836914062, -0.2093505859, -0.3894042969, 0.1713867188, 0.2614746094, -0.6181640625, 0.2139892578, 0.6552734375, -0.1491699219, -0.3395996094, -0.4055175781, 1.0625, -0.6899414062, 0.1965332031, 0.2377929688, -0.0435180664, 0.0374755859, 0.5639648438, 0.4641113281, -0.4248046875, -1.015625, -0.0491027832, 0.3229980469, -0.5375976562, 0.4001464844, -0.1556396484, -1.1650390625, 1.1748046875, -0.9111328125, -1.0654296875, -1.28125, 0.7631835938, 1.25390625, 0.4633789062, 0.3461914062, -0.8911132812, 0.4714355469, 0.1749267578, -0.016998291, -0.1049194336, -0.2717285156, -0.1123657227, -0.3120117188, 0.3576660156, 0.0220031738, -0.6303710938, -1.521484375, -0.3442382812, 0.310546875, 0.6674804688, -1.07421875, 1.89453125, 0.2512207031, 1.5693359375, 0.3151855469, 1.2197265625, -0.0995483398, -1.17578125, -0.8569335938, -0.4548339844, 0.6845703125, -0.279296875, 0.4812011719, -0.0182952881, -1.1376953125, -0.2476806641, 0.2609863281, 0.65234375, -0.2619628906, 0.5869140625, -0.703125, -1.6328125, -0.880859375, -0.0583190918, 0.1130371094, 0.0191802979, 0.380859375, 0.2188720703, -0.1547851562, 0.1685791016, -0.1116943359, 0.4948730469, 0.994140625, 0.6049804688, -0.6215820312, 0.6889648438, 0.849609375, 0.5615234375, -0.181640625, -0.0677490234, 0.0030841827, 0.2937011719, -1.595703125, 0.556640625, -1.3046875, 0.3034667969, 0.7568359375, 0.6796875, 0.5966796875, 0.9213867188, 1.3349609375, 0.3918457031, -0.6064453125, 0.3679199219, 0.8120117188, -0.1651611328, 0.6220703125, -1.220703125, 0.1538085938, -0.2419433594, -1.53125, 0.0678100586, -0.2917480469, 0.7490234375, -0.4770507812, 0.6635742188, -1.9677734375, 0.2169189453, -0.044921875, -0.7280273438, 0.8168945312, -0.3937988281, 0.4353027344, 0.0503234863, -0.0009937286, 0.4514160156, -0.5927734375, -0.0464782715, -0.002872467, 0.0689086914, 0.5415039062, 1.1171875, -0.2426757812, -0.085144043, -0.0116271973, -0.0776977539, -0.0532836914, 0.4267578125, -0.2673339844, 0.0062828064, 0.923828125, -0.7646484375, -0.8930664062, -1.1806640625, 0.17578125, -0.0556640625, -1.76171875, -0.2556152344, -0.2836914062, 1.0146484375, 0.6201171875, -0.5620117188, -0.2456054688, 0.1846923828, -0.3920898438, -0.2360839844, 0.6162109375, 0.4880371094, 0.3190917969, -0.9165039062, 0.5439453125, 0.8232421875, -0.0053062439, -0.1484375, -0.3034667969, 0.3251953125, -0.4086914062, -1.0205078125, -0.3295898438, -0.0767822266, 0.7124023438, 1.1181640625, -0.4655761719, 0.0581054688, 0.453125, 0.1302490234, -0.4291992188, -0.6337890625, 1.109375, -0.2431640625, 0.7529296875, -0.1265869141, 1.7197265625, 0.2408447266, -0.1812744141, -0.2512207031, -0.7036132812, 1.08984375, -0.8603515625, 0.630859375, -0.1477050781, 0.1054077148, -0.2102050781, 0.1143798828, 0.6762695312, -0.3845214844, -1.14453125, -1.0791015625, 0.2269287109, 0.065612793, 0.7421875, 0.0887451172, 0.8725585938, -1.0166015625, -0.0428771973, 0.4345703125, -0.6396484375, -0.1871337891, -0.0014657974, 0.2907714844, -0.705078125, -0.7158203125, -0.5712890625, 0.2995605469, -0.787109375, -0.6088867188, -0.3474121094, 1.412109375, -0.3371582031, 0.5283203125, 0.0587463379, -0.2144775391, -0.9985351562, -0.8383789062, -0.595703125, 0.1870117188, 0.3393554688, -0.9311523438, -0.3989257812, 0.6669921875, -1.158203125, -1.2998046875, -0.004573822, -1.2353515625, 1.01171875, -0.3410644531, 0.7338867188, 0.2496337891, -0.5073242188, -0.0489807129, 1.23828125, -0.50390625, 1.501953125, 0.869140625, 0.2917480469, -0.5239257812, -0.4025878906, -0.2392578125, 1.056640625, -0.0635986328, -1.09375, -0.1480712891, -0.3020019531, 0.8666992188, -0.7705078125, -0.341796875, 0.6069335938, -0.8359375, -0.2587890625, -0.3583984375, -0.5571289062, 0.2403564453, 0.5395507812, -0.9379882812, -0.4189453125, 0.3081054688, -1.001953125, -0.3288574219, -0.9912109375, 0.3513183594, 0.3872070312, 0.5043945312, -0.6123046875, 0.5380859375, 0.0256652832, 1.3310546875, 0.796875, -0.0216674805, 0.1369628906, -0.7016601562, -0.9926757812, -0.3291015625, 0.4025878906, -0.9951171875, -0.4362792969, 0.2454833984, -0.9624023438, -0.6533203125, 0.8754882812, -0.2683105469, 0.37890625, -0.4689941406, 1.212890625, -0.6499023438, -0.7817382812, 0.3942871094, -0.3161621094, 0.193359375, 0.4353027344, -0.2109375, -0.2612304688, -0.5541992188, -0.1319580078, -0.4074707031, -0.0489196777, -0.0199737549, 0.0253295898, -0.8676757812, -0.1151733398, 0.2534179688, 0.3898925781, -0.3432617188, -1.064453125, 0.5903320312, -0.0522460938, -0.2961425781, 0.7905273438, 0.1885986328, -0.0254058838, -0.3393554688, -1.150390625, -1.236328125, -0.703125, 0.3857421875, 0.0983886719, -0.3173828125, -0.3308105469, -0.8017578125, 0.2712402344, 0.2954101562, 0.7895507812, -0.9399414062, -0.4113769531, 0.3696289062, -0.4587402344, 0.337890625, 0.0447998047, 0.962890625, -0.1259765625, -0.0859985352, 0.69921875, -0.7485351562, 0.4877929688, 0.5971679688, -0.0712890625, 0.4597167969, 0.3942871094, 0.060333252, -0.1356201172, -0.837890625, -0.2283935547, -0.4875488281, 0.2222900391, -0.5190429688, -0.5927734375, 0.21484375, 0.3898925781, -0.4228515625, -0.6728515625, 0.7241210938, -0.3430175781, -0.0728149414, 0.8662109375, -0.623046875, -0.9018554688, 0.2683105469, 0.7192382812, 0.8989257812, -1.44921875, -0.48828125, 0.2690429688, -0.4702148438, -0.1685791016, -0.3024902344, 0.720703125, 0.5258789062, 0.0971679688, 0.3842773438, 0.5844726562, -0.2210693359, 0.8002929688, -0.2086181641, 0.6489257812, -0.1350097656, 0.919921875, 0.2315673828, 0.1251220703, -0.3649902344, -0.1263427734, 1.39453125, 1.0087890625, -0.3620605469, 0.3408203125, 0.0700683594, 0.4521484375, 0.2922363281, -1.140625, 1.099609375, 0.0337219238, -0.3498535156, 0.4282226562, -0.2447509766, 0.9389648438, -0.345703125, -0.69921875, 0.7192382812, -1.5263671875, 0.533203125, 0.1397705078, 0.2032470703, 0.541015625, 0.4274902344, 0.3154296875, -0.2399902344, 1.8115234375, -0.1579589844, -0.8623046875, -0.7416992188, 0.0784301758, 0.0884399414, 0.5268554688, 0.0689697266, 1.013671875, -0.7143554688, 0.34765625, -0.7705078125, 0.3217773438, -0.4270019531, -0.2805175781, 0.0827026367, 0.1145629883, -0.16015625, -0.091796875, -0.3876953125, 0.0697631836, -0.1961669922, 0.8608398438, 0.3657226562, -0.4016113281, -1.2109375, 0.57421875, -0.3159179688, 0.3483886719, -0.0563354492, 0.3107910156, -0.361328125, 0.2064208984, 0.2106933594, 0.4548339844, 0.3154296875, -0.108581543, 0.0209197998, -0.1108398438, -0.1401367188, 0.7333984375, -0.1774902344, -0.9614257812, -0.5830078125, 1.19921875, -0.0969238281, -1.2568359375, 0.1280517578, -0.1552734375, -0.6166992188, 0.3188476562, -0.5576171875, -0.3654785156, 0.869140625, -0.423828125, -0.4360351562, 0.2102050781, 0.3933105469, 0.4252929688, 0.4169921875, -0.6381835938, -0.3642578125, 0.2008056641, 0.0727539062, 0.21875, 0.0146408081, -0.2186279297, 0.0531616211, -0.0717773438, 0.2047119141, -0.1146850586, 0.3557128906, -0.028717041, 0.0147323608, -0.9296875, 0.0134506226, 0.228515625, 0.3728027344, -0.3979492188, -0.3989257812, 0.4580078125, -0.0322875977, -0.1506347656, 0.5498046875, 0.5854492188, -0.6044921875, -0.8198242188, 0.1832275391, -1.3037109375, -0.4230957031, -0.4995117188, -0.2805175781, -0.4719238281, -0.1544189453, -0.2438964844, -0.7944335938, -0.0075531006, 0.1639404297, -0.578125, -0.65625, -0.3605957031, 0.1932373047, 0.0951538086, -1.60546875, 0.3708496094, 0.0006561279, 0.517578125, 0.0518798828, -1.017578125, 0.3986816406, -0.2381591797, 0.9633789062, -0.0496826172, 0.5903320312, 0.8588867188, -0.6645507812, 1.0927734375, -0.1486816406, 0.1879882812, 0.6650390625, -0.4094238281, -0.2038574219, -0.1306152344, 0.0752563477, 0.087097168, 0.2247314453, -0.3386230469, -0.1865234375, 0.0877075195, -0.58984375, 0.5244140625, 0.7993164062, 0.2401123047, -0.95703125, -0.0899047852, 0.1508789062, 0.4196777344, -0.1069946289, 1.69921875, 0.3029785156, -0.7114257812, -0.3295898438, 0.7182617188, 0.2565917969, -0.1162719727, -1.1142578125, -0.1936035156, -0.1423339844, -0.2863769531, -0.6162109375, 0.724609375, 0.0906982422, 0.2526855469, 0.1942138672, 0.2731933594, -0.1539306641, 0.609375, -0.0752563477, -0.9467773438, 0.4345703125, -0.0352783203, 0.9018554688, -0.1883544922, 0.0757446289, 1.20703125, -0.548828125, -0.1680908203, -0.75, 0.119140625, 1.6025390625, -0.1309814453, -0.0491943359, 0.6313476562, 0.0176086426, -0.2763671875, -1.064453125, -0.1553955078, 0.3193359375, 0.6201171875, 0.3735351562, -0.2561035156, 0.0161437988, 0.2478027344, 0.4321289062, 0.2319335938, 0.4887695312, -0.2561035156, 0.4025878906, -0.0413208008, 0.767578125, 0.095703125, 0.4987792969, -0.7446289062, -0.4697265625, -0.2172851562, -0.7890625, 0.020401001, -0.1839599609, 0.5024414062, 0.8666992188, 0.2381591797, 1.6923828125, -0.6904296875, -0.1109008789, 0.1317138672, -0.3098144531, 0.6098632812, -0.0380554199, 0.1693115234, 0.1049194336, -0.6977539062, -1.1533203125, -0.4665527344, -0.0448303223, 0.1760253906, -0.0236816406, -0.0242004395, 0.0334472656, 0.2807617188, 0.7143554688, -1.5810546875, 0.0893554688, 0.5053710938, 0.2239990234, -0.0312805176, -0.4604492188, -0.7270507812, 1.23828125, -0.3542480469, -0.33984375, -0.5249023438, -0.4338378906, -1.9052734375, -0.337890625, -0.0932006836, 0.40625, -0.1528320312, 0.2026367188, -0.1799316406, -0.2944335938, 0.2783203125, -0.1136474609, 0.6557617188, -0.043182373, -0.6083984375, -0.2105712891, -0.2432861328, -0.353515625, 0.4819335938, -0.9970703125, -0.302734375, -0.0453186035, -0.70703125, 0.3386230469, -0.1440429688, -0.0400390625, -0.0100708008, 0.7060546875, -0.6201171875, -0.6000976562, -0.8369140625, -0.013671875, -0.3090820312, -0.7392578125, 0.5239257812, -0.1737060547, -0.501953125, 0.2875976562, 0.5517578125, 0.1646728516, -0.1610107422, 0.4118652344, 0.3422851562, -0.57421875, 0.5849609375, 0.0590209961, -1.060546875, 0.1901855469, 0.3835449219, 1.1279296875, -0.9946289062, -0.5444335938, 0.0953369141, -1.2578125, -0.0032081604, 0.7470703125, -0.0593261719, -0.0419616699, 1.330078125, -0.4260253906, 0.7231445312, 0.0931396484, -0.4506835938, -0.431640625, 0.0011291504, 0.53125, 0.075378418, -0.5654296875, -0.6899414062, -0.5688476562, -0.474609375, -0.5834960938, 0.27734375, -0.2117919922, -0.1955566406, -0.2849121094, -0.8881835938, -0.4597167969, 0.0307922363, 0.2423095703, -0.7250976562, 0.0738525391, 0.1329345703, -0.079284668, -0.1439208984, 0.7944335938, 0.4997558594, -0.669921875, 0.3718261719, 1.076171875, -0.5625, -0.998046875, 0.0892333984, -0.30078125, 0.0060653687, 0.88671875, -1.2509765625, 1.0478515625, 0.5830078125, 0.1748046875, -0.0775756836, 0.244140625, -0.3427734375, -0.8681640625, -0.2043457031, -0.0925292969, 0.0838623047, 0.7192382812, 1.05859375, 0.0868530273, 0.0153121948, -0.6899414062, -0.0077362061, -0.0366516113, 0.3056640625, -1.27734375, 0.5161132812, 0.873046875, -0.3215332031, 0.806640625, 0.3916015625, 0.0356750488, -0.6572265625, -0.1652832031, 0.3732910156, 0.6098632812, -0.3266601562, -0.0783691406, 1.6806640625, 0.3254394531, 0.3334960938, -0.0822143555, -0.4731445312, 0.1618652344, -0.6171875, -0.0154724121, -0.4990234375, -0.3156738281, -2.55078125, -0.73828125, 0.3112792969, 0.5087890625, 0.088684082, 0.3884277344, -0.708984375, 0.2340087891, 0.2612304688, 1.14453125, -0.6372070312, -0.2829589844, -0.0649414062, -0.0729370117, 0.5625, 1.0654296875, 0.1296386719, -0.1715087891, -0.4692382812, 0.51953125, -0.4428710938, 0.0671386719, -0.4645996094, 0.4860839844, -0.1076049805, 0.7749023438, 0.4692382812, 0.4401855469, -0.8579101562, -14.109375, 0.3862304688, -0.3857421875, 0.267578125, -1.0166015625, -0.181640625, -0.2526855469, -1.0009765625, -1.359375, -0.4291992188, 0.1925048828, 0.5126953125, 0.544921875, -0.7045898438, -0.5400390625, 0.2290039062, 0.93359375, -0.673828125, -0.4519042969, 0.5625, 0.75, -0.2585449219, -0.876953125, -0.4162597656, -0.2629394531, 0.1551513672, 1.017578125, 0.4211425781, 0.2690429688, -0.1162109375, -0.2174072266, 0.01612854, 0.3371582031, 0.4260253906, 0.2966308594, -0.7421875, -0.3754882812, 0.7094726562, 0.3928222656, 0.1744384766, -0.9770507812, 0.6611328125, -0.4118652344, 0.1899414062, -0.1345214844, 0.1473388672, -0.3527832031, -0.724609375, 0.3508300781, -0.6708984375, 0.8139648438, 0.3046875, 0.1588134766, 0.1329345703, -0.7768554688, 0.08203125, 0.8383789062, 0.1761474609, 0.0295257568, 0.1881103516, 0.3918457031, 0.951171875, -0.4758300781, 0.2624511719, 0.2403564453, 0.1508789062, 0.6337890625, -0.7392578125, 0.0422668457, 0.009147644, -0.3037109375, -0.6459960938, -0.5131835938, 0.6416015625, -0.1529541016, 0.3813476562, 0.9047851562, 0.3283691406, -0.7236328125, 1.525390625, -0.521484375, 0.4260253906 ]
Once the 4321 is fully within the Bess block and has cleared Cloy block, the conductor or other crew member will call the dispatcher and release Cloy. The dispatcher will then issue a new authority to the 5432, giving them authority from Bess Siding block through Cloy block. This generates additional radio traffic but ensures that there is no confusion as to which train is allowed to enter a given block at any given time. Some railroads have instituted a practice which allows a train to enter a block contingent upon the passing of the opposing train, although the National Transportation Safety Board has recommended against this practice. A DTC authority given under this practice will include a phrase such as "This line is not in effect until after the arrival of train 7940." In the case of two trains traveling the same direction, the dispatcher will only authorize the following train in blocks that the leading train has released. In the case of closely spaced trains, the dispatcher may opt to reduce his or her workload and implement a "radio blocking behind" authority, which lets the two trains talk to each other directly to discuss which blocks the leading train has cleared. Caution must be exercised by the leading train not to release authority on track that the train still occupies, as this could result in a rear-end collision if the leading train slows down or stops or if the train becomes separated and a portion is left standing on the main track.
[ -0.4514160156, -0.3759765625, 0.0698242188, 0.7880859375, 0.1770019531, -0.3735351562, -0.8754882812, -0.451171875, 0.5869140625, 0.2602539062, 0.1900634766, 0.0148544312, 0.1695556641, 1.0302734375, -0.0640869141, 0.2302246094, -0.8876953125, 0.4289550781, -0.1203613281, 0.3830566406, 0.3469238281, -0.1667480469, 0.1550292969, -1.380859375, 0.2766113281, 0.2001953125, 0.1922607422, -0.7075195312, 0.1527099609, 0.1945800781, -0.2717285156, 0.884765625, -0.4650878906, 0.4143066406, -0.5366210938, -0.2042236328, -0.0979614258, -0.2388916016, -0.5854492188, -0.5336914062, 0.4714355469, -0.669921875, 0.1568603516, -0.8125, -0.3818359375, -0.8544921875, -0.2536621094, -0.1677246094, -0.7421875, 0.4536132812, 0.5122070312, -0.8120117188, 0.275390625, -0.0822753906, 0.5307617188, -0.6879882812, -1.0078125, 0.5986328125, 1.025390625, -0.2639160156, -0.8056640625, -0.2189941406, -0.4978027344, -0.2381591797, 0.16015625, 0.7446289062, -0.7387695312, 1.087890625, -0.3605957031, -0.2834472656, -0.7172851562, 0.3916015625, -0.4851074219, 0.2170410156, -0.0238037109, -0.5532226562, -0.896484375, 0.615234375, 0.4680175781, 0.2164306641, -0.5068359375, -0.1986083984, -0.6762695312, -0.9750976562, -0.4899902344, -0.3251953125, 0.2106933594, 0.4296875, 0.2717285156, 0.3757324219, 0.2861328125, -0.5, -0.3161621094, -0.5854492188, -0.1005249023, -0.904296875, 0.2438964844, -0.7211914062, -0.2517089844, -0.2810058594, 0.2729492188, 0.8178710938, 1.603515625, -0.791015625, 0.1315917969, 1.978515625, -0.5395507812, -1.0693359375, -0.0245361328, 0.6118164062, 0.0785522461, -0.3010253906, -0.4963378906, -0.8081054688, -0.20703125, 1.107421875, -0.1828613281, -0.3039550781, 0.4895019531, -0.7802734375, 0.3732910156, -0.2008056641, 0.0484619141, -0.6318359375, -0.2609863281, -0.5004882812, -0.5034179688, -0.0010318756, 0.7255859375, 0.2829589844, -0.3737792969, -0.2849121094, 0.1395263672, 0.1986083984, 0.3127441406, -0.1614990234, -0.39453125, -0.0625, -0.003698349, -0.1343994141, 0.0483398438, -0.2824707031, 1.16796875, -0.056854248, -0.010345459, -0.4926757812, -0.2556152344, 0.1761474609, -0.2717285156, 0.1095581055, -0.0529174805, -0.5126953125, -0.5395507812, -0.3549804688, 0.4030761719, -0.2705078125, -0.2060546875, -0.0559082031, 0.7495117188, -0.9072265625, -0.5844726562, -1.400390625, 0.2980957031, 0.2629394531, 0.3503417969, 0.49609375, -0.3669433594, 0.7153320312, -1.255859375, -0.1715087891, -1.2626953125, -0.16015625, 0.1743164062, -0.1192016602, 1.099609375, 0.2736816406, -0.404296875, -0.962890625, 0.1038208008, -0.1291503906, -0.092590332, -0.9892578125, 1.744140625, 0.4682617188, 0.8178710938, 0.3439941406, 1.869140625, -0.4157714844, -1.224609375, -0.4448242188, -0.0292663574, 0.4453125, -0.7783203125, 0.5561523438, 0.55078125, 0.1419677734, -0.0246887207, 0.2491455078, 0.7280273438, 0.0592651367, 0.1469726562, 0.0233306885, -0.8208007812, -0.0819702148, 0.042175293, -0.5541992188, 0.638671875, -0.1040039062, -0.7607421875, -0.2504882812, -0.2192382812, 0.8969726562, 0.2551269531, 1.830078125, -0.1903076172, -0.1241455078, 0.1115112305, 0.2573242188, 0.7036132812, 0.203125, -0.6875, 0.0841674805, 0.4938964844, -1.068359375, 0.0067825317, 0.076171875, 0.1632080078, 0.3962402344, 0.7412109375, -0.1129760742, 0.2502441406, 0.7563476562, 0.1838378906, -1.3134765625, 0.2553710938, 0.9296875, 0.0635986328, 0.3747558594, -0.7763671875, 0.6450195312, -0.1329345703, -0.755859375, -0.4013671875, -0.3720703125, -0.2308349609, -1.1171875, 0.7666015625, -1.046875, -0.4504394531, -0.2897949219, -0.5844726562, -0.4453125, -0.4382324219, 1.2529296875, -0.2464599609, -0.5708007812, 0.6953125, -0.2196044922, -0.1320800781, -0.54296875, -0.1585693359, 0.7358398438, 1.216796875, -0.6254882812, -0.1916503906, 0.3818359375, -0.0624084473, -0.7573242188, -0.1156616211, -0.8979492188, 0.1466064453, -0.0151290894, -0.798828125, -0.2995605469, -1.52734375, -0.4729003906, -0.2751464844, -1.5703125, -0.1352539062, -0.2308349609, 0.7631835938, 0.802734375, 0.0864257812, -0.0971679688, 0.833984375, -1.5634765625, 0.0493164062, 0.5092773438, -0.1710205078, 0.0586242676, -0.0960693359, 0.3923339844, -0.2634277344, 0.7651367188, -0.5209960938, -0.6850585938, -0.0901489258, -0.0313415527, -1.359375, -0.2376708984, 0.591796875, 0.6708984375, -0.3186035156, -0.0687866211, 0.4436035156, 0.1151123047, 0.2105712891, -0.3833007812, -0.3291015625, 1.0361328125, 0.2084960938, 1.3720703125, -0.43359375, 0.8232421875, 0.7529296875, 0.1434326172, 0.3620605469, -0.85546875, 0.8173828125, -0.1770019531, 0.6323242188, -0.3371582031, -0.5439453125, -0.3869628906, -0.1475830078, 0.0436096191, 0.1817626953, -0.2512207031, -0.748046875, 0.7934570312, -0.0610656738, 0.2159423828, 0.0585021973, 0.2751464844, -0.8046875, 0.4736328125, -0.3532714844, -0.0443725586, 0.4501953125, 0.0026283264, -0.7768554688, -0.2504882812, -0.263671875, -0.251953125, -0.2661132812, -0.8627929688, 0.0299224854, -0.2602539062, 0.9208984375, -0.1641845703, -0.4714355469, -0.8579101562, 0.1810302734, -0.73046875, -1.0205078125, -0.6420898438, 0.2978515625, 0.17578125, -0.6333007812, 0.2641601562, 1.36328125, -0.2690429688, -1.2890625, -0.8115234375, -0.69921875, 0.9497070312, -0.2473144531, 0.0352172852, -0.1550292969, -0.7387695312, 0.1547851562, 1.1650390625, -0.4089355469, 0.54296875, 0.58203125, -0.5649414062, 0.4877929688, -1.7861328125, -0.2349853516, 0.7841796875, -0.1485595703, -1.306640625, -0.084777832, -0.9594726562, 0.865234375, -0.2276611328, -0.1878662109, 0.4582519531, -0.6616210938, 0.0517578125, -0.3935546875, -0.2746582031, 0.1042480469, 0.5854492188, -1.095703125, -0.3327636719, 1.3740234375, -0.7163085938, 0.0833129883, -0.4099121094, 0.71484375, 0.4685058594, 0.6923828125, -0.1185913086, 0.0232696533, 0.0108642578, 1.6708984375, 0.6796875, 0.2147216797, 0.3479003906, -0.8359375, -0.2548828125, -1.509765625, 0.6352539062, 0.0982666016, -0.6606445312, 0.8369140625, -1.1953125, 0.5439453125, 0.6772460938, -0.0733642578, 0.2476806641, -0.5869140625, 0.6440429688, -0.0016832352, -0.892578125, 0.5659179688, 0.8125, 0.9916992188, 0.5131835938, -0.1845703125, 0.4365234375, -0.8569335938, -0.2604980469, 0.4907226562, 0.5795898438, 1.1796875, 0.3679199219, 0.1539306641, -1.0634765625, -0.3093261719, 0.1994628906, -0.1296386719, -0.1607666016, 0.8237304688, -0.0935058594, 0.0397033691, 1.453125, 0.2055664062, -0.0227203369, -0.2595214844, -0.5068359375, -0.7182617188, -0.5830078125, 0.3688964844, -0.5043945312, 0.4777832031, -0.1625976562, -0.3571777344, 0.0100250244, -0.4108886719, 0.765625, -1.0048828125, -0.6411132812, 0.5561523438, -1.0966796875, -0.4323730469, -0.2081298828, -0.30859375, -0.2502441406, -0.1212158203, 0.9780273438, -0.4194335938, 0.4809570312, 0.4479980469, 0.8188476562, 0.1291503906, 0.0697021484, -0.2990722656, 0.7036132812, -1.818359375, 0.1514892578, -0.9213867188, -0.1020507812, -0.5576171875, 0.1380615234, 0.8090820312, 0.5068359375, 0.2083740234, -0.0671386719, 0.5327148438, -0.451171875, -0.0378417969, 0.6162109375, -1.0947265625, -0.5668945312, 0.7006835938, 0.3071289062, 0.2863769531, -1.025390625, -0.2114257812, 0.7861328125, -0.1229248047, 0.8032226562, 0.1597900391, 0.8120117188, 0.517578125, -0.1877441406, -0.2900390625, 0.0833740234, 1.2421875, 1.1005859375, 0.2612304688, 0.1015625, -0.0991821289, 0.3627929688, 0.4406738281, -0.4699707031, -0.0832519531, -0.3383789062, 0.9228515625, 1.029296875, -0.88671875, 0.5380859375, 0.3217773438, 0.767578125, 1.025390625, -0.0272521973, 0.9731445312, 0.0833740234, -0.2802734375, -0.1173706055, -0.3693847656, 0.9345703125, 0.0450439453, -0.5576171875, 0.6669921875, -1.7705078125, -0.3256835938, 0.0784301758, 0.5297851562, 0.3935546875, 0.3671875, -0.0267944336, 0.2939453125, 0.9301757812, 0.0437927246, -1.076171875, -0.7651367188, 0.2105712891, 0.3225097656, -0.2266845703, 0.7241210938, 0.6635742188, -0.6474609375, 0.6333007812, -0.310546875, -0.3247070312, -0.6059570312, -0.3530273438, -0.1540527344, -0.4274902344, 0.2182617188, -0.1591796875, -0.8999023438, -0.1331787109, -0.2161865234, 0.3603515625, -0.2371826172, -1.0087890625, -1.1162109375, 0.6206054688, 0.1511230469, 1.015625, -0.1796875, -0.1411132812, 0.3356933594, 0.7036132812, -0.4548339844, -0.4575195312, 0.0643310547, 0.2183837891, -0.8061523438, 0.5380859375, -0.4873046875, 1.087890625, -0.7026367188, -0.2822265625, -0.8935546875, 0.2810058594, 0.1296386719, -0.2116699219, -0.2316894531, 0.1065673828, -0.2854003906, 0.5903320312, -0.3842773438, 0.2644042969, 1.0244140625, -0.3515625, -0.0341186523, 0.6469726562, -0.0089874268, 0.21875, 0.0621032715, -0.3225097656, 0.0182800293, 0.7729492188, -0.3666992188, 0.3623046875, -0.7465820312, -0.8149414062, 0.2224121094, -0.5463867188, 0.0915527344, -0.2946777344, 0.3461914062, 0.071105957, -0.4755859375, -1.0322265625, -0.4050292969, -0.6435546875, 0.8173828125, 0.3220214844, -0.1721191406, 0.3466796875, 0.0308685303, 0.0478210449, -0.1089477539, 0.9516601562, -0.0677490234, -1.1962890625, 0.544921875, -1.4052734375, -0.0238342285, 0.2458496094, -0.833984375, -0.5244140625, -0.3959960938, 0.2795410156, -0.6840820312, 0.1646728516, -0.051574707, 0.0827636719, -0.2440185547, -0.0790405273, -0.2570800781, 0.2583007812, -1.2392578125, 0.4567871094, 0.6967773438, -0.2504882812, 0.0766601562, -1.0771484375, -0.0304412842, -0.5014648438, -0.0790405273, 0.4799804688, 0.4333496094, 0.4846191406, -0.6538085938, 1.0537109375, -0.0263366699, 0.609375, 0.3544921875, -0.7924804688, 0.4519042969, -0.1409912109, 0.5209960938, -0.1833496094, 0.5805664062, -1.1279296875, -0.2255859375, -0.0864257812, -0.6494140625, 0.626953125, 0.5068359375, -0.4541015625, -0.1209106445, -0.2387695312, 0.4851074219, 0.9794921875, 0.5239257812, 0.5947265625, 0.2357177734, -0.583984375, -0.8764648438, 0.6259765625, 0.0216522217, -0.2188720703, -0.9482421875, -0.5375976562, -1.419921875, 0.0547485352, 0.2166748047, -0.50390625, 0.3474121094, 0.3657226562, -0.4594726562, 0.1905517578, 0.0399169922, 1.0146484375, 0.0737915039, -0.0742797852, 0.8193359375, -0.123840332, 0.5595703125, -0.0157318115, 0.9702148438, 0.7075195312, 0.263671875, -0.0449829102, -0.5756835938, -0.2174072266, 1.75, 0.1519775391, -0.4191894531, -0.0035305023, 0.6186523438, 0.0690917969, -0.8720703125, -0.9672851562, 0.552734375, 0.5776367188, 0.7099609375, 0.0879516602, -0.0034675598, 0.2026367188, 0.6186523438, 0.39453125, -0.158203125, 0.1749267578, 0.4716796875, 0.0139541626, 0.8110351562, 0.4343261719, -0.3767089844, -0.8852539062, 0.48828125, -0.116027832, -0.3557128906, -0.611328125, 0.7724609375, 1.1318359375, 1.1103515625, 0.1944580078, 1.1611328125, -1.3173828125, 0.2458496094, -0.5219726562, -0.3002929688, 0.544921875, 0.5415039062, 0.716796875, 1.1650390625, -1.224609375, -1.0537109375, 0.1181640625, 0.3010253906, 0.2005615234, 0.3889160156, 0.1982421875, -0.0081863403, -0.3845214844, -0.1375732422, -0.7080078125, 0.18359375, 0.845703125, 0.0382385254, -0.45703125, 0.3078613281, -0.0375061035, 0.3356933594, -0.5620117188, 0.1765136719, -0.7734375, -1.162109375, -2.65234375, -0.0066566467, 0.2739257812, 0.0993652344, -0.125, 1, 0.1579589844, -0.4453125, 0.765625, -0.4096679688, 0.3173828125, 0.8959960938, -0.150390625, 0.1296386719, -0.5786132812, -0.2897949219, 0.0407409668, -1.443359375, 0.1973876953, 0.1795654297, 0.0207214355, 0.9252929688, 0.3166503906, -0.6469726562, -0.0257568359, 0.5361328125, -0.546875, -0.6474609375, 0.1752929688, -0.412109375, -0.0443115234, -1.0693359375, -0.1733398438, -0.3500976562, -1.478515625, 0.2021484375, 0.4995117188, 0.7504882812, -0.6640625, 0.9423828125, 0.4799804688, -1.1298828125, 0.9765625, -0.134765625, -0.7314453125, -0.771484375, 0.3562011719, 0.6665039062, -0.8125, -0.2026367188, 0.6396484375, -1.2763671875, -0.1417236328, 0.140625, -0.0138397217, 0.0933837891, 0.7890625, 0.0640258789, 0.5942382812, -0.0594177246, 0.208984375, -0.6611328125, -0.271484375, 0.3657226562, 0.1088867188, -0.4091796875, -0.5703125, -0.5327148438, -0.4265136719, -0.70703125, -0.77734375, -0.2646484375, 0.3444824219, 0.0518493652, -1.1005859375, -0.478515625, 0.2481689453, -0.3039550781, 0.0309448242, -0.2993164062, 0.2427978516, 0.2221679688, 0.396484375, -0.2895507812, 0.2097167969, -0.3959960938, 0.2795410156, 1.00390625, -0.3366699219, -1.5263671875, 0.2915039062, -0.2536621094, 0.0067100525, 1.4189453125, -0.4057617188, 0.6201171875, -0.1069335938, 0.0008854866, -0.4123535156, 0.3654785156, -0.6176757812, -0.1402587891, -0.2170410156, -0.2702636719, -0.2086181641, -0.5043945312, 0.8627929688, -0.8334960938, -0.3217773438, 1.025390625, -0.0346679688, 0.4514160156, 0.3154296875, -0.712890625, 0.2836914062, 0.0119247437, -0.0630493164, -0.1956787109, 0.9609375, -0.3818359375, 0.541015625, -0.5922851562, -0.4201660156, 0.8383789062, -0.2305908203, -0.0786743164, 0.9052734375, -0.1689453125, -0.1613769531, 0.4770507812, 0.4450683594, 0.0725097656, -0.8212890625, -0.3742675781, -0.1978759766, 0.2320556641, -2.1796875, -0.8173828125, 0.0467529297, 0.3962402344, 1.177734375, -0.0531616211, -0.9609375, -0.716796875, 0.3916015625, 0.4643554688, 0.9384765625, -0.0844116211, 0.6704101562, 0.1104736328, -0.423828125, 0.3139648438, 1.748046875, -0.4694824219, -0.876953125, 0.3854980469, -0.5244140625, 0.4890136719, -0.3891601562, 1.2275390625, 0.4992675781, 0.689453125, -0.0532226562, 0.3559570312, -0.7431640625, -14.03125, 0.490234375, -0.7719726562, -0.3637695312, -0.3322753906, -0.1949462891, -0.1077270508, -0.7104492188, -0.7612304688, 0.1092529297, -0.4799804688, 0.2526855469, 0.3942871094, -1.25, -0.0975341797, 0.4575195312, 0.4006347656, -0.484375, -0.0349731445, 0.1932373047, 1.259765625, -0.1164550781, -0.1749267578, -0.9770507812, -0.8422851562, -0.5786132812, 0.2352294922, -0.4895019531, 0.0902709961, 0.2462158203, -0.6201171875, -0.4152832031, 0.2270507812, -0.0453186035, 1.8388671875, -0.7490234375, -0.2260742188, -0.4973144531, 0.5483398438, 0.3142089844, 0.1428222656, 0.2360839844, -0.2797851562, -0.5341796875, 0.0905761719, -0.3903808594, 0.40234375, -0.4077148438, -0.0690917969, -0.7768554688, 0.0434875488, -0.4438476562, 0.2474365234, 0.732421875, -0.5629882812, -0.8793945312, 0.892578125, -0.4763183594, -0.0075492859, 0.4484863281, 0.2325439453, 0.5795898438, 0.2587890625, -0.0208587646, 0.5517578125, -0.26171875, -0.1845703125, -0.5258789062, 1.22265625, -0.4997558594, -0.3366699219, -0.0277709961, -0.9384765625, 0.0463867188, 0.26953125, 0.4150390625, -0.0428161621, 0.1378173828, -0.3452148438, 0.6474609375, -0.1262207031, -0.8735351562 ]
Entering a block in which the train is not authorized or releasing a block which the train still occupies is considered a main-line violation by the Federal Railroad Administration and carries stiff penalties for all crew members, which may include time off from work and the suspension or revocation of the engineer's license. Use The Southern Pacific Railroad, now the Union Pacific, implemented DTC on several of its lines formerly controlled by train orders (most of the rest of UP's lines use Centralized Traffic Control). The BNSF Railway does not use DTC; it uses mostly CTC with track warrants in its non-signalled territory. The Alaska Railroad changed its Track Warrant Control territory to DTC and is also implementing CTC in high-traffic areas. Queensland Rail in Australia uses the DTC system in some of the lower traffic areas in the western area of the state. CSX uses DTC on their former Georgia railroad mainline from Scottdale, just east of Atlanta, to Augusta. See also Centralized traffic control Rail terminology Railway signalling Radio Electronic Token Block Track warrant Train order References GCOR Rulebook (Section 16) Trainweb GCOR Railroad Controls GCOR Southern Pacific's changeover to DTC Railroad Signalling: Direct Traffic Control (contains diagrams) Data transmission Railway signalling block systems
[ -0.2215576172, -0.1042480469, 0.5532226562, 0.32421875, 0.0316772461, 0.1150512695, -1.23046875, -0.8754882812, 0.6650390625, 0.4196777344, 0.6044921875, -0.3666992188, -0.0763549805, 0.8388671875, -0.7670898438, 0.5322265625, -0.111328125, 0.0614013672, -0.4187011719, 0.2032470703, -0.0842285156, -0.0345458984, 0.1213378906, -1.1669921875, 0.783203125, 0.6157226562, 0.1638183594, -0.2861328125, -0.5283203125, 0.0677490234, -0.7709960938, 0.3435058594, -2.41796875, -0.1336669922, -0.5517578125, -0.1772460938, -0.5698242188, 0.3188476562, -0.3054199219, -0.6416015625, 1.1728515625, 0.3498535156, -0.5258789062, -0.4245605469, 0.0634765625, -1.0791015625, 0.2337646484, 0.1673583984, 0.333984375, -0.1036987305, 0.1801757812, -0.716796875, 0.1767578125, -0.5302734375, 0.5209960938, -2.0625, -0.4870605469, 0.6396484375, 0.5205078125, -0.7534179688, -0.4899902344, 0.3286132812, -1.10546875, 0.1839599609, 0.6547851562, 0.0228729248, 0.0092391968, 0.5170898438, -1.1064453125, -0.21484375, -1.267578125, -0.2098388672, -0.4057617188, 0.4375, -0.2924804688, 0.0075721741, 0.3112792969, 0.6069335938, 0.3342285156, -0.0983886719, 0.0090179443, -0.1909179688, -0.501953125, -0.265625, -0.4006347656, 0.4401855469, 0.0859985352, 0.3364257812, -0.0151824951, 0.8920898438, 0.1148681641, -0.2194824219, -0.9501953125, -0.6206054688, -0.1500244141, 0.0397338867, -0.0437927246, -1.048828125, 0.0840454102, -0.3354492188, 0.3388671875, 0.4291992188, 1.37890625, -0.3579101562, -0.0066184998, 0.8081054688, -0.3688964844, -1.2578125, 0.1666259766, 0.7109375, -0.2431640625, 0.7119140625, 0.0975952148, -0.4931640625, -0.3522949219, 0.908203125, 0.2318115234, -0.4187011719, 0.2595214844, -0.0758056641, 0.525390625, -0.59375, 0.3444824219, -1.1494140625, -0.5576171875, 0.2344970703, -0.1965332031, 0.2130126953, 0.2763671875, 0.0174713135, -0.1362304688, -0.4135742188, 0.0468444824, 0.5053710938, 0.716796875, 0.0538635254, -0.51953125, -0.4672851562, 0.3732910156, -0.013130188, -0.3037109375, -0.3034667969, 1.3935546875, 0.0796508789, 0.4504394531, -0.1900634766, 0.263671875, 0.4829101562, -0.5283203125, 0.7666015625, 0.8974609375, -0.5717773438, -0.2524414062, 0.1929931641, -0.5009765625, 0.1263427734, -0.9399414062, -0.775390625, 0.1607666016, -1.4912109375, -0.6923828125, -1.001953125, 0.7954101562, 0.3120117188, -0.0812988281, -0.1751708984, -0.658203125, 0.8676757812, -0.4431152344, 0.2182617188, 0.3239746094, 0.2398681641, 0.0627441406, 0.2076416016, 0.1658935547, -0.2766113281, 0.3403320312, -1.1787109375, -0.4301757812, 0.7900390625, -0.1641845703, -0.6928710938, 1.3134765625, -0.2296142578, 0.0266723633, 0.0495300293, 1.1259765625, 0.025970459, -0.9389648438, -0.5068359375, -0.0646362305, 0.3051757812, -0.56640625, 1.1416015625, 1.0234375, 0.4594726562, 0.0328674316, 0.3940429688, 1.322265625, 0.3295898438, -0.5942382812, -0.0606994629, -0.923828125, 0.1695556641, -0.0522766113, -0.517578125, -0.3122558594, -0.4123535156, -0.93359375, 0.3312988281, 0.611328125, 0.7543945312, -0.5869140625, 1.5087890625, 0.1267089844, -0.3000488281, 0.2060546875, 0.2322998047, 1.224609375, 0.3806152344, -0.0885009766, 0.3325195312, 0.677734375, -1.58203125, 0.6645507812, -0.3051757812, 0.28125, 0.9096679688, 0.6484375, 0.3347167969, 1.02734375, 0.3022460938, 0.2788085938, -1.6376953125, 0.6948242188, 0.533203125, 0.1677246094, 0.5234375, -0.6987304688, 0.0058479309, -0.6059570312, 0.3586425781, -0.0251464844, -0.2849121094, -0.4721679688, -0.548828125, -0.1263427734, 0.042388916, -0.8159179688, 0.0814819336, -0.4853515625, 0.0754394531, -0.525390625, 0.8842773438, -0.2021484375, -0.3759765625, -0.2868652344, -0.4377441406, 0.9331054688, -0.7866210938, 0.138671875, 0.58984375, 0.9990234375, -0.6616210938, -0.623046875, 0.6665039062, -0.2641601562, -0.0855712891, -0.6333007812, -1.041015625, -0.1282958984, 0.423828125, -0.1160888672, -0.4841308594, -0.4450683594, -0.015083313, 0.0634155273, 0.1197509766, -0.0198516846, 0.0567321777, 0.8071289062, 1.3271484375, 0.1361083984, -0.1878662109, 0.4711914062, -0.7934570312, -0.2440185547, -0.2409667969, -0.2008056641, -0.0628662109, -0.2446289062, 0.5327148438, 0.7880859375, 1.1923828125, -0.724609375, 0.0931396484, 0.8344726562, 0.56640625, -1.2802734375, -0.2651367188, 0.7109375, 0.7397460938, 0.171875, -0.7470703125, 0.2258300781, 0.2727050781, -0.0925292969, -1.0087890625, -0.658203125, 1.322265625, 0.4448242188, 0.4340820312, -0.3562011719, 0.7114257812, -0.4501953125, -0.2775878906, 0.1901855469, -0.3063964844, 1.044921875, -0.1417236328, 1.169921875, -0.6455078125, -0.1187133789, -0.423828125, 0.2729492188, -0.578125, -0.7578125, -0.5615234375, -0.2484130859, 0.77734375, 0.7231445312, -0.4870605469, 0.2043457031, 0.5620117188, -0.5556640625, -0.2561035156, -0.7802734375, -0.3715820312, 0.6723632812, -0.4384765625, -0.28515625, -0.3195800781, -0.3837890625, -0.0050888062, 0.4926757812, -0.4372558594, -0.1096191406, 0.4020996094, 0.2038574219, 0.2208251953, -0.5698242188, -0.2321777344, 0.0391540527, -0.5102539062, -1.1552734375, -0.9106445312, 0.3735351562, 0.9306640625, -0.6826171875, 0.2502441406, 1.8134765625, -0.1362304688, -0.7543945312, 0.0912475586, -1.2939453125, 0.8071289062, 0.4924316406, 0.6987304688, -0.8408203125, -0.4262695312, 0.1407470703, 0.2401123047, -0.2570800781, 0.9462890625, 0.5751953125, -0.0249938965, -0.0415039062, -0.9946289062, -0.2707519531, -0.0015602112, -0.896484375, -0.7744140625, 0.4870605469, -0.1030273438, 0.5810546875, -0.0099105835, -0.6118164062, -0.0659179688, -0.50390625, -0.462890625, -0.4250488281, -0.4528808594, 0.3327636719, 0.1734619141, -0.9311523438, 0.2680664062, 0.970703125, -0.8520507812, -0.1602783203, -0.8662109375, -0.3696289062, 0.1939697266, 0.6665039062, -0.90234375, -0.138671875, 0.4521484375, 0.7495117188, 0.1807861328, -0.0331726074, 0.2442626953, -0.6958007812, 0.4177246094, -0.6469726562, 0.1566162109, -0.828125, -0.0302734375, 0.6025390625, -0.595703125, 0.4855957031, 1.0322265625, -0.1035766602, 0.2150878906, -0.203125, 0.0376586914, -0.3601074219, -0.1961669922, 0.607421875, 0.2457275391, 0.3850097656, 0.4921875, 0.4814453125, 0.6381835938, -0.5444335938, 0.078918457, 0.4895019531, 0.5166015625, 0.595703125, -0.1442871094, -0.2435302734, -0.5083007812, -0.640625, -0.306640625, -0.2888183594, -1.38671875, 0.1429443359, 0.1123657227, 0.6801757812, 0.970703125, -0.3239746094, -0.1635742188, -0.2197265625, -1.1142578125, 0.1600341797, -0.6157226562, 0.3933105469, -0.8173828125, -0.3176269531, -0.296875, 0.08984375, -0.4792480469, -0.4741210938, 0.6025390625, -0.3647460938, -1.36328125, -0.0575561523, -0.8178710938, -0.1243896484, 0.0381774902, 0.2487792969, -0.2697753906, -0.7250976562, 0.8740234375, 0.2059326172, 0.6220703125, 0.3344726562, 0.9560546875, 0.0030021667, -0.0413208008, -0.6416015625, 0.2978515625, -0.4787597656, 0.3041992188, 0.1596679688, 0.0466918945, 0.0181884766, 0.2573242188, 0.8666992188, 1.052734375, 0.1396484375, 0.2834472656, 0.669921875, 0.0148468018, -0.7553710938, 0.5688476562, -1.021484375, -0.9165039062, -0.0366210938, -0.2320556641, 0.7280273438, -1.2734375, -0.7475585938, 0.654296875, 0.3039550781, 0.033416748, -0.1075439453, -0.1268310547, 0.2003173828, 0.611328125, -0.0996704102, 0.2225341797, 1.2548828125, 0.7905273438, -0.1236572266, 0.9350585938, 0.3095703125, -0.2563476562, 0.7739257812, 0.0760498047, 0.1605224609, -0.1158447266, 1.69921875, 0.8969726562, -0.6357421875, 0.9331054688, 0.1270751953, 0.5825195312, 1.1240234375, -0.0649414062, -0.2062988281, 0.0365600586, -1.359375, -0.2978515625, -0.1928710938, 1.455078125, 0.2049560547, -0.5346679688, 0.0713500977, -1.142578125, -0.9848632812, 0.1910400391, 0.1979980469, -0.0416870117, 0.1452636719, 0.4396972656, 0.1505126953, -0.0971679688, -0.0489807129, -1.7490234375, 0.1741943359, 0.2191162109, 0.578125, -0.3735351562, 0.0154800415, 0.8896484375, -0.3359375, -0.2719726562, -0.2473144531, 0.6352539062, -0.0758666992, -0.6362304688, -0.1070556641, -0.2541503906, -0.2315673828, 0.5483398438, -0.9799804688, 0.1489257812, -0.4765625, 0.779296875, 0.2770996094, -0.3920898438, -1.0107421875, 0.7119140625, -0.3469238281, 1.107421875, 0.98828125, 0.3896484375, 0.2783203125, 0.4240722656, -0.8500976562, 0.5014648438, 0.7275390625, 0.333984375, -0.0427246094, -0.3591308594, -0.9077148438, 1.6025390625, -0.6474609375, -1.2724609375, -0.646484375, 0.1921386719, -0.2357177734, 0.0849609375, -0.0469055176, -0.27734375, -0.2648925781, 0.3510742188, 0.919921875, 0.6254882812, 1.2314453125, 0.0299530029, 0.3801269531, -0.034576416, 0.3701171875, -0.3610839844, -0.1728515625, -0.697265625, -0.1304931641, 0.6044921875, -0.2259521484, -0.2587890625, -0.0277099609, -0.6782226562, 0.3708496094, -0.380859375, -0.1480712891, 0.0842895508, -0.1750488281, 0.4443359375, 0.7587890625, -0.9594726562, -0.3996582031, 0.6557617188, 1.2529296875, 0.2568359375, -1.1083984375, 0.65234375, -0.373046875, 0.1322021484, 0.5952148438, 0.3430175781, 0.2111816406, 0.23046875, -0.1435546875, -1.5341796875, -0.3559570312, 0.1843261719, -0.8076171875, -0.6166992188, -0.1577148438, -0.3466796875, -0.3161621094, 0.3149414062, 0.0875854492, -0.3515625, 0.67578125, -0.2496337891, 0.333984375, 0.0083084106, -1.3095703125, -0.0694580078, 0.4731445312, -0.2873535156, 0.111328125, -1.427734375, 0.8149414062, -0.6044921875, -0.7573242188, 0.3974609375, -0.142578125, 0.6787109375, -0.7763671875, 1.0166015625, 0.0096282959, 0.1164550781, -0.1702880859, -1.1748046875, 0.5703125, -0.7963867188, -0.4299316406, -0.2507324219, 0.7075195312, -0.6069335938, -0.5747070312, -0.4792480469, -0.0836791992, 0.5693359375, -0.9096679688, -0.78125, -0.1302490234, -0.3400878906, 0.6396484375, 0.4387207031, 1.064453125, 0.6147460938, 1.015625, -0.8461914062, -0.6845703125, 0.0396118164, 0.2551269531, 0.4150390625, -1.17578125, -0.015625, -1.5732421875, 0.4345703125, -0.7553710938, -0.2219238281, 0.6801757812, 0.310546875, -0.3566894531, -0.0406494141, -0.7260742188, -0.01171875, 0.5971679688, -0.4140625, 0.0635986328, 0.1934814453, 0.1501464844, 0.1713867188, 0.8989257812, 0.708984375, -0.1328125, -0.3591308594, -0.2243652344, 0.5009765625, 0.8979492188, -0.0997314453, 0.5786132812, -0.0288696289, 0.9633789062, 0.6840820312, -1.58984375, -0.3447265625, 0.5229492188, 0.529296875, 1.048828125, -0.2235107422, -0.2619628906, 0.2983398438, 0.4067382812, 0.0954589844, -0.7944335938, 0.2391357422, 0.3950195312, 0.1561279297, 0.5610351562, -0.6147460938, -0.6499023438, -0.578125, 0.5219726562, -0.0850219727, 0.0238647461, -0.138671875, 0.0081253052, 0.2592773438, -0.0253601074, 0.5581054688, 1.396484375, -0.1887207031, 0.677734375, -1.5400390625, 0.0564880371, 0.5068359375, -0.2231445312, -0.7514648438, 0.4582519531, -0.1861572266, -0.4328613281, 0.9248046875, 0.2387695312, -0.4604492188, 0.5678710938, -0.3701171875, 0.0131607056, -0.8334960938, 0.341796875, -0.4731445312, 0.7465820312, 0.5200195312, -0.026550293, -0.9931640625, 0.7255859375, 0.0605163574, -0.1440429688, 0.1551513672, 0.1799316406, -0.2202148438, -0.2521972656, -2.314453125, -0.4428710938, 0.1348876953, 0.640625, -0.1667480469, 0.1221923828, -0.3718261719, 0.1441650391, 0.4133300781, 0.4909667969, 0.7612304688, 0.5073242188, -0.1376953125, -0.4475097656, -0.3110351562, 0.1851806641, 0.3959960938, -1.4033203125, -0.2097167969, 0.0810546875, -0.1799316406, 0.1541748047, -0.7578125, -1.1435546875, -0.1668701172, 0.4809570312, -0.0966796875, -0.4777832031, 0.5205078125, 0.2180175781, 0.1673583984, -0.3266601562, -0.0232849121, -0.5561523438, -1.576171875, -0.0888061523, -0.3759765625, -0.0653686523, -1.0029296875, 0.1502685547, 0.2236328125, -1.091796875, 0.3542480469, -0.2462158203, -0.6845703125, -0.3798828125, -0.2722167969, -0.4995117188, -0.130859375, -0.9116210938, -0.1887207031, -1.912109375, -0.646484375, -0.310546875, 0.3286132812, 0.4704589844, 0.9282226562, 0.2000732422, -0.1034545898, -0.2291259766, 0.6049804688, -0.2017822266, -0.3005371094, 0.4719238281, -0.6997070312, -1.068359375, -0.1610107422, -0.2685546875, -0.7436523438, -0.6811523438, -0.2095947266, -0.4787597656, 0.3901367188, 1.0087890625, -0.677734375, -0.7734375, 0.2717285156, -0.0386657715, -1.0830078125, -0.5639648438, -0.2279052734, 0.5356445312, 0.3168945312, -0.1964111328, -0.1490478516, -0.3303222656, -0.0406799316, 0.76953125, -0.115234375, -0.70703125, 0.4587402344, -0.3708496094, 0.80859375, 0.3903808594, -0.3894042969, 0.2863769531, -0.5913085938, 0.0363464355, -0.638671875, 0.578125, -0.3371582031, -0.6069335938, 0.0762329102, 0.2161865234, -0.6611328125, 0.1871337891, 1.4326171875, -0.0893554688, 0.591796875, 0.2751464844, 0.3332519531, 1.11328125, -0.0333557129, -0.6572265625, 1.177734375, 0.2849121094, -0.0231781006, 0.0755004883, 0.6538085938, 0.0027675629, 0.3693847656, -0.2344970703, -0.3107910156, 0.8759765625, -0.2707519531, 0.3354492188, 0.6958007812, -0.1555175781, 0.1961669922, -0.6796875, 0.3264160156, 0.4521484375, -0.6865234375, 0.2175292969, -0.5708007812, 0.58203125, -1.720703125, -0.9604492188, -0.73046875, -0.0173187256, 0.6215820312, 0.4089355469, -1.0302734375, -1.0458984375, 0.0236206055, 0.4128417969, 0.2634277344, 1.0205078125, -0.517578125, -0.1101074219, -0.5551757812, -0.0243988037, 1.189453125, -0.1328125, -0.56640625, 0.8818359375, -0.9057617188, -0.3510742188, -0.3752441406, 0.5224609375, 0.4226074219, 0.3432617188, 0.0439147949, 0.455078125, -0.4699707031, -13.9921875, -0.0088729858, 0.1898193359, -0.4763183594, -0.8037109375, -0.1472167969, 0.1608886719, -0.1003417969, -0.0257110596, 0.5698242188, 0.0498657227, 0.2824707031, -0.6499023438, -1.064453125, -0.1878662109, -0.3947753906, 0.3696289062, 0.224609375, 0.7416992188, -0.7202148438, 0.7416992188, 0.2504882812, -0.2917480469, -0.9423828125, -1.03125, -0.6284179688, -0.3442382812, 0.2109375, -0.0145263672, 0.1556396484, -0.5673828125, -0.0365600586, 0.8413085938, 0.775390625, 1.4326171875, -0.4870605469, -0.6015625, -0.4482421875, 0.1684570312, 0.607421875, 0.5834960938, -0.1381835938, -0.4182128906, 0.3688964844, -0.1354980469, 0.2941894531, -0.3430175781, -0.9360351562, 0.1359863281, -1.30859375, 0.009185791, -0.6674804688, 0.3640136719, 0.8017578125, -0.92578125, -0.6015625, 1.015625, -0.3962402344, -0.7827148438, 1.14453125, -0.4162597656, 0.4360351562, 0.5229492188, 0.2053222656, 0.1849365234, 0.0892944336, 0.5473632812, -0.5390625, 0.8232421875, -0.8232421875, -0.6420898438, 0.1623535156, -0.6215820312, -1.2001953125, -0.3830566406, 0.423828125, -0.1073608398, 0.0115280151, -0.4133300781, 0.59375, 0.3393554688, -0.2191162109 ]
A control variable (or scientific constant) in scientific experimentation is an experimental element which is constant and unchanged throughout the course of the investigation. Control variables could strongly influence experimental results, were they not held constant during the experiment in order to test the relative relationship of the dependent and independent variables. The control variables themselves are not of primary interest to the experimenter. Usage A variable in an experiment which is held constant in order to assess the relationship between multiple variables, is a control variable. A control variable is an element that is not changed throughout an experiment, because its unchanging state allows the relationship between the other variables being tested to be better understood. Essentially, a control variable is what is kept the same throughout the experiment, and it is not of primary concern in the experimental outcome. Any change in a control variable in an experiment would invalidate the correlation of dependent variables (DV) to the independent variable (IV), thus skewing the results. Experimental examples In any system existing in a natural state, many variables may be interdependent, with each affecting the other. Scientific experiments test the relationship of an IV –that element that is manipulated by the experimenter– to the DV –that element affected by the manipulation of the IV. Any additional independent variable can be a control variable. Take, for example, the combined gas law, which is stated mathematically as: where: is the pressure is the volume is the thermodynamic temperature measured in kelvins is a constant (with units of energy divided by temperature).
[ -0.8515625, -0.939453125, -1.5966796875, 0.0908813477, 0.0748901367, 0.0753173828, -0.1882324219, -0.0241241455, -0.3269042969, -0.3256835938, -0.4624023438, 0.092590332, -0.1491699219, 0.3657226562, -0.0780639648, -0.8466796875, 0.1287841797, -0.4865722656, 0.1789550781, -0.4775390625, 0.5063476562, -0.0794677734, -0.0905761719, -0.9780273438, -0.52734375, -0.3806152344, 0.4609375, 0.9731445312, 0.6645507812, -0.2392578125, -0.5634765625, 0.6123046875, -1.15234375, 0.110534668, 0.7514648438, -1.0966796875, 0.673828125, -0.705078125, -0.7749023438, -0.4714355469, -0.7221679688, 0.5126953125, -0.58984375, -0.4396972656, -0.3662109375, -0.3479003906, -0.3483886719, -0.7998046875, -0.970703125, -0.0135269165, -0.0465393066, -0.8608398438, 0.8466796875, -1.1328125, -0.4104003906, -0.7866210938, -0.3173828125, 0.1510009766, 1.33203125, 0.92578125, -0.0673217773, 0.0044517517, -0.5849609375, -1.3681640625, -0.2377929688, -0.0864257812, 0.0623779297, -0.4343261719, -0.0240936279, -0.2697753906, 0.0980834961, 0.9370117188, -1.185546875, -0.1057739258, 0.9272460938, -0.4716796875, -0.1818847656, -0.5825195312, 0.1550292969, 1.109375, -0.5493164062, -0.5966796875, -1.109375, 0.1446533203, -0.3425292969, 0.5649414062, 0.1873779297, -0.2834472656, -0.6669921875, -0.248046875, 0.5424804688, -0.0523071289, -0.1837158203, 0.2202148438, -0.36328125, -0.7221679688, 0.4477539062, -0.8422851562, 0.7744140625, 0.8901367188, -0.2565917969, -1.029296875, 0.9467773438, 0.0863647461, -0.515625, 1.330078125, 0.2042236328, -1.02734375, 0.1078491211, -0.3991699219, -0.3254394531, -0.0614929199, -0.4052734375, 0.2086181641, -0.0234375, 0.6372070312, 0.4516601562, 0.0948486328, -0.5908203125, 1.1533203125, -0.4228515625, 1.5361328125, -0.2495117188, -1.267578125, 0.1834716797, -0.2489013672, -0.0207672119, -0.0134353638, 0.6162109375, -0.1442871094, -0.1589355469, -0.6801757812, -0.2263183594, -0.9252929688, -0.0299377441, 0.1328125, -1.1513671875, -0.0407714844, -0.1774902344, -0.1246948242, -0.3298339844, -0.8056640625, -0.2374267578, -1.064453125, 0.7739257812, 0.3161621094, -0.9169921875, 0.3288574219, 0.3005371094, -0.9624023438, -0.1672363281, 0.0179443359, 0.0521240234, -0.5766601562, -0.4458007812, 0.5302734375, -0.6328125, 0.65625, -0.3505859375, -0.0991210938, -0.6391601562, -0.4631347656, -0.3200683594, 0.3723144531, -0.6748046875, 1.1513671875, -0.0956420898, 0.2145996094, -0.2299804688, -0.3317871094, 0.138671875, 0.0824584961, 0.3171386719, 1.16015625, 0.2531738281, 0.1682128906, -0.6127929688, 0.0000727177, 0.0430603027, -0.1737060547, 0.4560546875, -1.515625, -0.2678222656, -0.521484375, 0.6752929688, -0.7622070312, -0.3322753906, 0.3295898438, -0.2878417969, 0.3308105469, -0.6538085938, 0.9545898438, -1.072265625, 0.2178955078, -0.2360839844, -0.3930664062, -0.4323730469, -0.2866210938, 0.8125, 0.7299804688, 1.0361328125, 0.4912109375, 0.1017456055, -0.057434082, -0.7416992188, 0.8666992188, 0.1655273438, -0.0827026367, 0.1216430664, -0.2866210938, -0.5795898438, 0.310546875, 0.8735351562, 0.7680664062, 0.583984375, 0.3491210938, -0.0536499023, 0.3500976562, 0.6401367188, 0.5073242188, -0.4936523438, 0.52734375, 0.0846557617, 0.9013671875, 0.2570800781, -0.0944213867, -0.76171875, 0.087890625, 0.65625, -0.1518554688, 0.9975585938, -0.2366943359, 0.4001464844, 0.615234375, 0.0643920898, -0.0516052246, -0.1716308594, -0.7446289062, -1.21484375, 0.2243652344, 0.2003173828, 0.458984375, -0.3012695312, 0.0263214111, 0.3823242188, -1.275390625, 0.58203125, -0.66015625, 0.3540039062, -0.0513916016, -0.5390625, 0.7822265625, 1.2978515625, 0.9897460938, -0.2507324219, -0.9291992188, -1.4072265625, -0.52734375, -0.2958984375, -0.1468505859, -0.1166992188, 0.0852050781, -0.2585449219, -0.47265625, 0.3024902344, -0.0256652832, -0.265625, -0.822265625, 0.7421875, 0.5014648438, 0.4157714844, -0.1829833984, 0.1512451172, -0.1479492188, 0.5473632812, -0.3911132812, -0.185546875, -0.70703125, 0.6279296875, -0.6831054688, 0.6025390625, 0.5522460938, 1.1484375, 0.2900390625, 0.6982421875, -0.1807861328, 0.2307128906, 0.748046875, -0.1903076172, -0.0339355469, 0.4367675781, 0.0046539307, -0.74609375, -0.0581970215, 0.9311523438, 0.4208984375, 0.2709960938, -0.1146850586, -0.1483154297, -0.6997070312, 1.3388671875, 0.0733032227, 0.2578125, 0.197265625, -0.1180419922, 0.5014648438, -0.1257324219, -0.5185546875, -0.89453125, -0.3117675781, 0.2265625, 0.4226074219, 0.7514648438, 0.3884277344, -0.4731445312, -0.7065429688, -0.2154541016, -0.2741699219, 0.57421875, -0.7978515625, 0.1931152344, -0.98046875, 0.0208892822, -0.1778564453, 0.515625, 0.056427002, 0.092956543, -0.3693847656, -0.1597900391, 0.2602539062, 0.2247314453, 0.814453125, 0.4016113281, -0.7973632812, -0.7895507812, -0.7045898438, -1.4072265625, -1.4638671875, -0.7739257812, 0.0169372559, 0.494140625, 0.1975097656, 0.2731933594, -0.1505126953, -0.3386230469, 0.1166381836, 0.0018978119, 0.2548828125, -0.296875, 0.1511230469, -0.11328125, 0.8266601562, -0.7861328125, 0.0131378174, 0.2094726562, 0.0173339844, 0.1011962891, 0.8774414062, -0.0717773438, 0.671875, -0.0879516602, -0.6220703125, -0.5825195312, 0.2790527344, -1.7294921875, 0.54296875, 0.2312011719, 0.4470214844, -0.2905273438, -0.1469726562, 0.642578125, 0.7563476562, -0.7109375, 0.4592285156, -0.1732177734, -1.51953125, -0.4787597656, 0.7758789062, 0.1737060547, -1.0888671875, -1.109375, 0.0188751221, -0.0330505371, -0.896484375, -0.2149658203, 0.6577148438, -0.7416992188, 0.5434570312, 0.2849121094, 0.3051757812, -0.6342773438, 0.400390625, 0.0536804199, 0.6845703125, -0.484375, 1.1015625, 0.1657714844, 0.4279785156, -0.4450683594, 0.6123046875, 0.4731445312, -0.8891601562, -0.7504882812, 0.0268096924, 0.7270507812, 0.8159179688, 0.6328125, -0.1982421875, -0.2322998047, -0.38671875, -0.5122070312, 0.1936035156, -0.220703125, -0.0411376953, -0.6518554688, 0.2678222656, 0.9360351562, -1.12109375, 0.1240844727, 1.0595703125, 0.5888671875, 0.0059814453, 0.0575561523, 0.2626953125, -0.3881835938, -0.1870117188, -0.3249511719, -0.099609375, 0.3303222656, -0.7895507812, 0.0672607422, 0.6831054688, 0.1890869141, -0.5649414062, 0.2502441406, -1.4052734375, -0.4760742188, -0.4033203125, 0.8115234375, -0.0808105469, 0.0422668457, 1.265625, -0.3435058594, 1.0439453125, -0.1507568359, -0.8818359375, -1.0595703125, -0.0844726562, -0.016708374, 0.2390136719, -0.2272949219, -0.9887695312, 0.5341796875, 0.4807128906, 0.8920898438, -0.1165771484, 0.4323730469, 0.0702514648, 0.1639404297, 0.5190429688, -0.8803710938, -0.0538330078, -0.4421386719, 0.94921875, -0.373046875, -0.8764648438, -1.271484375, 1.2607421875, -0.1474609375, -0.3479003906, -0.3151855469, 0.7553710938, 0.1466064453, 0.1987304688, 0.1291503906, 0.5424804688, -0.1017456055, -0.6176757812, 0.08984375, -0.205078125, 0.2493896484, 0.4997558594, -0.5400390625, -0.4887695312, -1.2451171875, -0.1759033203, 0.5302734375, 0.3068847656, 0.2426757812, 0.8115234375, 1.1162109375, -0.9150390625, -0.6674804688, -1.744140625, -0.3073730469, -0.8413085938, 0.7436523438, -0.0975952148, 0.5122070312, -0.5786132812, -0.9418945312, 1.12890625, -0.1856689453, -0.0858764648, -0.1056518555, 0.24609375, 0.2973632812, 0.2353515625, 0.5771484375, 0.5263671875, -0.1546630859, 0.8916015625, 0.2121582031, 1.162109375, -0.0416870117, -0.5854492188, -0.5004882812, 0.1414794922, 0.011505127, 0.4443359375, -0.51953125, -0.681640625, 0.9028320312, 0.3024902344, 0.349609375, 0.1824951172, 0.505859375, 0.2425537109, -0.470703125, -0.2680664062, 0.2736816406, 0.6694335938, -0.0543518066, -0.3544921875, 0.0959472656, 0.1008300781, -0.0174255371, -0.1047363281, -0.5170898438, -0.0387573242, 0.455078125, -0.6513671875, -0.3232421875, 0.047454834, 0.4370117188, -0.3134765625, 0.2712402344, 0.8520507812, 0.2357177734, 0.2551269531, 0.0025157928, 0.6430664062, 0.2476806641, 0.0848999023, 0.0397338867, 0.3073730469, -1.33203125, 0.4216308594, -0.0722045898, -0.1211547852, 0.685546875, -0.1444091797, -0.0836181641, -0.1534423828, -0.650390625, 1.158203125, -0.5571289062, -0.1748046875, -0.6665039062, -0.4035644531, 0.4797363281, 0.7651367188, 0.072265625, 0.9326171875, 0.8857421875, -0.3669433594, 0.9565429688, -0.0861206055, -0.8818359375, 0.2347412109, 0.5786132812, 0.3557128906, -0.7875976562, -1.4345703125, -1.4169921875, 0.5112304688, -0.521484375, -0.1536865234, 0.2724609375, -0.6640625, 0.2314453125, -0.8515625, 0.6264648438, 0.5532226562, 0.0264129639, -0.9873046875, -0.5268554688, 0.5815429688, 1.158203125, -0.5161132812, -0.0809936523, -0.1666259766, -0.2475585938, 0.1851806641, 0.775390625, 0.5405273438, -0.3454589844, 0.7880859375, 0.1176147461, 0.1674804688, -0.7568359375, 0.1176757812, -0.3420410156, 0.2692871094, 1.0068359375, 0.4526367188, -0.1774902344, -0.63671875, -0.6616210938, -0.1917724609, -0.5126953125, 1.1015625, -0.7880859375, 0.2531738281, 1.3125, 0.6416015625, -0.2751464844, -0.3955078125, -0.2612304688, 1.3134765625, 0.9028320312, -1.1142578125, 0.6645507812, -0.0632324219, -0.3740234375, 1.041015625, 0.5634765625, 0.748046875, 0.4072265625, -0.0320129395, 0.556640625, -0.0362548828, -0.3908691406, 0.220703125, 0.2912597656, -0.0587463379, -0.0367126465, -0.3527832031, -0.7485351562, 0.3806152344, -1.029296875, 0.0213470459, 0.2104492188, -0.603515625, -0.8129882812, 0.2215576172, -0.7568359375, -0.623046875, -0.1799316406, 0.9975585938, 0.6513671875, -0.3068847656, -1.0078125, 0.0415649414, -0.1925048828, 0.6791992188, -0.2709960938, 0.5043945312, 0.2374267578, -1.0478515625, -1.1162109375, -0.3132324219, -0.1001586914, 0.8413085938, 0.2133789062, -0.0757446289, -0.0946655273, -1.05078125, -1.31640625, -0.2139892578, -0.2629394531, 0.2252197266, -0.2213134766, 0.5756835938, -0.2150878906, -0.8784179688, 0.1427001953, -0.734375, 0.7553710938, 0.2985839844, -0.2727050781, -0.2384033203, -1.150390625, 0.5356445312, -0.3229980469, -0.71875, -0.5805664062, 0.4797363281, 0.4409179688, 0.5205078125, 0.3813476562, -0.7490234375, 0.0411071777, -1.6318359375, -0.828125, 0.2829589844, 0.9912109375, 1.0087890625, 1.1875, -0.6157226562, 0.4645996094, -0.6342773438, -0.1751708984, -0.9096679688, 0.3610839844, 1.0361328125, 0.1047363281, 0.2026367188, 0.0841674805, -0.671875, 0.1335449219, -0.3400878906, 0.173828125, 0.0215911865, 0.4267578125, 0.2373046875, -0.1429443359, -0.4741210938, -0.4846191406, -0.0465393066, -0.6811523438, 0.0554199219, 0.9287109375, -0.2612304688, 1.2216796875, 0.1677246094, -0.0437316895, 0.0875854492, -0.1710205078, -0.0736083984, 0.8227539062, 0.0036582947, -0.8056640625, 0.2397460938, -0.37109375, 0.3557128906, 0.861328125, 0.1719970703, 0.8471679688, -0.3212890625, -0.1873779297, 0.0350341797, -0.5751953125, -1.6669921875, 0.587890625, -0.5634765625, -0.1235961914, -1.076171875, 0.5415039062, -0.2980957031, 0.4938964844, -0.736328125, -0.0715332031, -0.1884765625, 0.021697998, 0.7231445312, -0.7651367188, 0.5004882812, 0.1159667969, -0.341796875, -0.1043701172, 0.59765625, -0.0558166504, 0.0724487305, 0.3415527344, 0.90625, 0.2338867188, -0.9794921875, -0.1165161133, 0.3186035156, 0.1571044922, -0.0002321005, 0.0978393555, 0.6533203125, 0.4404296875, 0.1373291016, -0.7622070312, 0.5698242188, -0.0994873047, 0.1280517578, -0.90625, -0.0862426758, 0.4663085938, 0.3591308594, 1.23046875, 0.7890625, -0.8452148438, 0.0599060059, 0.0076065063, -0.0365600586, -0.8012695312, 0.022064209, -0.4653320312, -1.115234375, -0.7421875, -0.3537597656, -0.106628418, 1, -0.4987792969, 0.2155761719, -0.008392334, 0.0236968994, -0.3723144531, 1.2734375, 0.0070838928, -0.4758300781, 1.287109375, 0.3693847656, 0.1599121094, 0.7060546875, 0.1633300781, 0.0368652344, 0.5668945312, 0.1896972656, 1.4931640625, -0.2770996094, -0.896484375, 0.2379150391, -0.4328613281, 0.1696777344, -0.3317871094, 0.6650390625, 0.0087509155, 0.4438476562, 0.1046142578, 0.2114257812, 0.0471496582, -0.6489257812, 1.0947265625, 0.4362792969, -0.9296875, -0.4348144531, 0.146484375, 0.1284179688, -0.900390625, -0.2849121094, 0.6318359375, 0.0168151855, -0.0710449219, -0.1887207031, -0.1275634766, 0.5112304688, 0.3271484375, -0.3498535156, -0.6904296875, 0.7177734375, -0.646484375, 0.91015625, -0.2241210938, 0.298828125, -0.6123046875, 0.0557861328, -0.0327453613, -0.4660644531, 0.1605224609, -0.68359375, -0.4050292969, 0.0801391602, 0.4631347656, -0.8720703125, 0.7338867188, -0.3354492188, 0.2814941406, -0.5268554688, -1.4013671875, -0.3725585938, -0.2496337891, 0.0055618286, 0.2434082031, 1.2060546875, 0.5712890625, -1.0166015625, -0.4794921875, 0.3725585938, 0.8427734375, 0.2409667969, -0.5776367188, 0.0509033203, -0.0122756958, -1.1083984375, -0.8525390625, -1.0595703125, 1.048828125, 0.71875, -0.4760742188, 0.8037109375, 0.5092773438, -0.2951660156, -0.1704101562, -0.4509277344, 0.2258300781, -0.4306640625, 1.044921875, 0.46875, -0.5053710938, 0.2196044922, -0.5639648438, -0.7006835938, 0.7602539062, -0.6401367188, -0.96484375, -0.7924804688, -0.5932617188, 0.6279296875, -0.2863769531, -0.5283203125, -0.2189941406, -0.337890625, -0.2644042969, -0.6010742188, 0.7524414062, 0.6201171875, 1.42578125, -0.4924316406, -0.0760498047, 0.4765625, -0.3225097656, 0.0200042725, 0.0795288086, 0.9741210938, -0.5590820312, -0.498046875, -0.3720703125, 0.063293457, -0.5556640625, 0.515625, 1.2109375, -0.4729003906, 0.1584472656, -0.47265625, -0.5263671875, -0.2658691406, -14.546875, 0.3146972656, 0.3957519531, -0.9541015625, 0.1910400391, 0.6220703125, 0.4748535156, 0.5454101562, -0.0257720947, -0.0093307495, -0.689453125, 0.0642700195, 0.0845947266, -0.2670898438, 0.1813964844, -0.3688964844, -0.1457519531, 0.1275634766, -0.6567382812, -0.458984375, 0.8017578125, 0.2117919922, 0.0238494873, -0.85546875, -0.9697265625, -0.1813964844, -0.2014160156, 0.1468505859, -0.7197265625, -0.8081054688, -0.0064544678, 0.1119384766, -0.3801269531, 0.2907714844, 0.2543945312, 0.2054443359, 0.560546875, -0.1702880859, -0.0296630859, -0.2824707031, -0.3286132812, -0.1989746094, -0.3078613281, 0.1846923828, -0.1118774414, 0.2041015625, 0.6577148438, -0.9296875, -0.3420410156, 0.0558166504, 0.6455078125, 1.4033203125, 0.7119140625, -0.443359375, -0.6103515625, 0.2763671875, -0.014175415, -0.1031494141, 0.2071533203, 0.1494140625, 0.3310546875, 1.0234375, -0.3671875, 0.2941894531, 0.3273925781, -0.6166992188, -1.4140625, -0.2238769531, -0.0216064453, -0.458984375, 0.0351867676, -0.1578369141, 0.5620117188, 0.748046875, -0.900390625, 1.1298828125, 0.4565429688, 0.2376708984, 0.287109375, 1.1005859375, -0.8642578125, -0.0512695312 ]
which shows that the ratio between the pressure-volume product and the temperature of a system remains constant. In an experimental verification of parts of the combined gas law, ( * = ), where Pressure, Temperature, and Volume are all variables, to test the resultant changes to any of these variables requires at least one to be kept constant. This is in order to see comparable experimental results in the remaining variables. If Temperature is made the control variable and it is not allowed to change throughout the course of the experiment, the relationship between the dependent variables, Pressure, and Volume, can quickly be established by changing the value for one or the other, and this is Boyle's law. For instance, if the Pressure is raised then the Volume must decrease. If, however, Volume is made the control variable and it is not allowed to change throughout the course of the experiment, the relationship between dependent variables, Pressure, and Temperature, can quickly be established by changing the value for one or the other, and this is Gay-Lussac's Law. For instance, if the Pressure is raised then the Temperature must increase. References External links Definitions; Science Buddies – Science Fair Projects. Science experiments Variables (mathematics)
[ 0.1040649414, -0.3903808594, -0.2878417969, 0.1320800781, 0.3303222656, 0.4582519531, 0.515625, 0.0166625977, -1.015625, -0.1875, -0.1374511719, 0.0980224609, -0.0360412598, 0.1424560547, 0.1995849609, -0.5615234375, 0.0105361938, -0.1927490234, 0.384765625, -0.1466064453, 0.3952636719, -0.1917724609, -0.3327636719, -2.203125, -0.9165039062, -0.7270507812, 0.6450195312, 0.6352539062, 0.098449707, 0.8559570312, 0.0891113281, -0.251953125, -0.5239257812, -0.7373046875, 0.494140625, 0.0282440186, -0.0301971436, -0.611328125, -0.8271484375, -0.77734375, 0.4299316406, 0.4169921875, -0.4760742188, -0.1632080078, -0.2144775391, 0.0474243164, -0.5634765625, -0.607421875, -0.5776367188, -0.7612304688, -0.5209960938, -0.8359375, 0.671875, -0.96484375, -0.5219726562, -1.2216796875, -0.1458740234, 0.1231079102, 1.173828125, 0.4445800781, -0.0206604004, 0.185546875, -0.560546875, -1.4833984375, 0.5249023438, -0.4155273438, -0.4423828125, -0.0904541016, 0.3881835938, 0.544921875, -0.2196044922, -0.1661376953, -0.3312988281, -0.9448242188, 0.1977539062, -0.6889648438, -0.4409179688, 0.2156982422, -0.0806884766, 0.40234375, -0.7836914062, 0.3120117188, -1.2275390625, 0.0474243164, -0.0379943848, 0.2766113281, -0.0606689453, -0.5625, -0.2580566406, 0.1229858398, 0.322265625, -0.1315917969, -0.2690429688, 0.5708007812, -0.0179290771, -0.9443359375, -0.0710449219, -1.369140625, 0.2060546875, 0.0464477539, -0.6430664062, -1.263671875, 1.4091796875, 0.2590332031, -0.4365234375, 1.6826171875, -0.2644042969, -0.7529296875, 0.1400146484, -0.6469726562, -0.3454589844, -0.0400390625, -0.1430664062, 0.4924316406, -0.2565917969, -0.0208435059, -0.1133422852, -0.2318115234, -1.1220703125, 0.6655273438, 0.0052223206, 1.33984375, 0.0399475098, -0.4860839844, -0.83203125, -0.1301269531, -0.0188751221, -0.1379394531, 1.111328125, -0.1345214844, -0.5708007812, 0.2183837891, 0.4897460938, -0.1245727539, 0.1412353516, -0.5698242188, -1.388671875, 0.1735839844, -0.0424499512, -0.0497436523, -0.7456054688, -0.62890625, -0.6064453125, -1.02734375, 1.2021484375, -0.0618591309, -0.7836914062, 0.1574707031, 0.783203125, -0.3479003906, 0.2286376953, -0.6596679688, 0.5400390625, -0.98828125, -0.7470703125, 0.6538085938, -0.2084960938, 0.705078125, -0.5009765625, 0.5336914062, -0.4677734375, 0.4145507812, -0.0762939453, 0.1776123047, -1.2197265625, 0.3200683594, -0.115234375, 0.373046875, -0.2373046875, -0.4011230469, 0.3212890625, 0.0726928711, 0.3696289062, 0.1658935547, 0.9028320312, -0.2800292969, -0.2888183594, -0.4423828125, 0.0068397522, -0.0744018555, 0.8354492188, -1.0146484375, 0.2939453125, -0.8095703125, 0.4213867188, -0.5063476562, -0.1311035156, 0.4716796875, -0.7768554688, -0.8032226562, -0.0950927734, 0.6279296875, -1.16015625, 0.1430664062, -0.8305664062, -0.9951171875, -0.3618164062, 0.3388671875, 0.5610351562, 0.45703125, 0.8784179688, 0.7060546875, -0.1254882812, 0.7377929688, -0.8740234375, 1.326171875, -0.1173095703, 0.3386230469, 0.4074707031, -0.0434265137, -0.7504882812, 0.3322753906, 0.0974731445, 0.091796875, 0.4038085938, 0.1539306641, 0.3146972656, -0.1789550781, 0.5961914062, -0.1739501953, -0.3391113281, 0.3220214844, 0.3754882812, 0.611328125, -0.1558837891, 0.1965332031, -0.7963867188, 0.4284667969, 1.0849609375, -0.0778198242, 0.2392578125, -0.3471679688, -0.6728515625, 0.8310546875, 0.5219726562, 0.3432617188, -0.2790527344, -0.8486328125, -1.4228515625, 0.6254882812, 0.3210449219, 0.2305908203, -0.0271148682, 0.2425537109, 0.9248046875, -1.2841796875, 1.046875, -1.0361328125, 0.0891113281, 0.2106933594, -0.53515625, 0.3395996094, 0.2485351562, 1.0869140625, -0.0007185936, -0.6918945312, -1.6474609375, -0.4709472656, -0.2526855469, -0.1740722656, -0.4167480469, 0.2863769531, -0.2866210938, -0.9521484375, 0.0708007812, -0.0089263916, -0.1827392578, -0.208984375, 0.8759765625, 0.4426269531, 0.3181152344, -0.23828125, -0.1239013672, -0.9897460938, 1.3037109375, -0.1210327148, -0.515625, -1.015625, 0.2941894531, -0.5151367188, 0.0706176758, 0.517578125, 0.5317382812, 0.2907714844, -0.3051757812, 0.0419311523, 0.4775390625, -0.3686523438, 0.5283203125, -0.3432617188, 0.9536132812, 0.3095703125, -0.9755859375, -0.9868164062, 0.2570800781, -0.3166503906, 0.1907958984, -0.951171875, -0.1212158203, -0.9204101562, 0.7431640625, 0.5327148438, 0.2456054688, -0.2341308594, 0.2734375, 0.5903320312, -0.6586914062, -0.8217773438, -1.1923828125, -0.2231445312, -0.3217773438, 0.4501953125, 0.5356445312, 1.0830078125, -0.251953125, -0.4284667969, 0.1993408203, -0.4897460938, 1.2294921875, -1.3564453125, 0.1097412109, -0.4562988281, 0.3842773438, -0.2364501953, 0.0073814392, -0.2420654297, 0.0252838135, -0.982421875, -0.2219238281, 0.1682128906, 0.3410644531, 0.7338867188, -0.2548828125, -0.2229003906, -0.7788085938, -0.4382324219, -1.69921875, -0.2995605469, -0.2482910156, 0.1437988281, 0.3352050781, -0.3349609375, -0.4167480469, -0.6401367188, 0.5854492188, 0.7163085938, -0.44140625, 0.3864746094, 0.1313476562, -0.0059776306, -0.2661132812, 0.619140625, -0.25, -0.6557617188, -0.2384033203, 0.0021419525, -0.4953613281, 0.0776367188, 0.3366699219, 0.4602050781, -0.44140625, -0.7104492188, -0.443359375, 0.6015625, -1.12109375, 0.9775390625, 0.0979003906, -0.1572265625, 0.1148681641, 1.166015625, 0.2822265625, 0.7724609375, -1.244140625, 0.3522949219, 0.0873413086, -0.4743652344, 0.1361083984, 0.9340820312, -0.2205810547, -1.2666015625, -1.4150390625, 0.2622070312, -0.6557617188, -0.1236572266, 0.7470703125, 0.5727539062, -0.4553222656, 1.0654296875, -0.5107421875, 0.4458007812, -0.0098419189, 0.2722167969, 0.2524414062, 1.9072265625, -0.4929199219, 0.1931152344, -0.6401367188, -0.1608886719, 0.3154296875, 0.451171875, 0.568359375, -0.69921875, -0.5947265625, 0.947265625, 0.3723144531, 0.6137695312, 1.71484375, 0.0417480469, 0.0961914062, -0.4731445312, -0.2629394531, 0.5043945312, -0.5844726562, -0.2244873047, 0.3024902344, 0.6860351562, 0.505859375, -0.9897460938, 0.3559570312, 0.6772460938, 0.0276794434, -0.0643920898, 0.2227783203, 0.2431640625, -0.2993164062, 0.150390625, -0.5424804688, -0.1463623047, 0.0847167969, 0.2061767578, -0.2751464844, 0.1873779297, 1.017578125, -0.36328125, 1.2216796875, -1.0908203125, 0.00623703, 0.2427978516, 0.833984375, -0.2084960938, 0.4619140625, 1.2060546875, 0.1975097656, 0.8759765625, 0.3557128906, -0.2570800781, -0.4672851562, 0.4680175781, 0.56640625, -0.5244140625, -0.595703125, -0.6142578125, 0.5107421875, 0.4350585938, 1.322265625, -0.521484375, 1.0244140625, -0.2885742188, -0.5922851562, -0.0285186768, -0.5522460938, -0.3410644531, -0.814453125, 0.6352539062, -0.2313232422, -1.236328125, -0.7856445312, 1.3828125, -0.9038085938, 0.2192382812, -0.2541503906, -0.0120620728, -0.2443847656, -0.2814941406, 0.638671875, 0.2683105469, 0.4926757812, -0.0950317383, 0.142578125, 0.4118652344, 0.3845214844, 0.9326171875, -0.8120117188, 0.1618652344, -1.4873046875, -0.1864013672, 0.1249389648, 0.3269042969, -0.0562133789, 1.1162109375, 1.39453125, -0.5732421875, -0.4272460938, -1.345703125, -0.3974609375, 0.4248046875, 0.2578125, -0.6298828125, 0.2595214844, -0.9790039062, -0.880859375, 0.6845703125, -0.6225585938, 0.0642089844, -0.3425292969, -0.0012216568, 0.7607421875, -0.2211914062, 0.1794433594, -0.1132202148, 0.4340820312, 1.0400390625, 0.2817382812, 0.9331054688, 0.2651367188, 0.2257080078, 0.4953613281, 0.2956542969, -0.3598632812, 0.4362792969, 0.108581543, -0.2724609375, 0.564453125, -0.5053710938, 0.4133300781, 0.2401123047, 0.5703125, 0.30859375, -0.0664672852, -0.1398925781, -0.1184692383, 0.6772460938, -0.4040527344, 0.5844726562, 0.4626464844, 0.65625, -0.3459472656, -0.359375, -0.7270507812, 0.8823242188, 1.0458984375, -0.48046875, -1.197265625, 0.2590332031, -0.4995117188, 0.2734375, 1.1689453125, 0.0882568359, -0.3061523438, 0.662109375, 0.4128417969, 0.6782226562, 0.2113037109, -0.431640625, 0.4282226562, 0.51953125, -1.560546875, 0.0448303223, -0.2919921875, -0.640625, 1.166015625, 0.4606933594, 0.5703125, -0.0207824707, -0.3981933594, 0.1226196289, -0.8857421875, 0.4040527344, -0.2142333984, 0.0682373047, -0.0453186035, 0.4975585938, -0.1545410156, 0.3854980469, 1.1416015625, -0.6440429688, 0.515625, -0.5439453125, -1.345703125, 0.3159179688, -0.5434570312, 0.3937988281, -0.4489746094, -0.5874023438, 0.4606933594, 0.2097167969, -0.3830566406, -0.6245117188, 0.0918579102, -0.6318359375, 0.8173828125, -0.0662231445, 1.1494140625, -0.1552734375, 0.322265625, -0.9057617188, -1.1923828125, 0.2342529297, 1.3837890625, -0.4013671875, 0.4958496094, -0.8662109375, -0.8666992188, 0.5991210938, 1.2177734375, 0.3115234375, -0.2263183594, 0.4030761719, -0.240234375, 0.1333007812, -0.2379150391, -0.52734375, -0.1846923828, 0.0016756058, 0.1379394531, 0.419921875, -0.15234375, -0.9350585938, -0.9077148438, 0.3295898438, -0.6806640625, 0.6728515625, -0.5620117188, 0.578125, 0.6801757812, 0.34375, -0.185546875, -0.2653808594, -0.6254882812, 1.3974609375, 0.8803710938, -1.373046875, 0.6440429688, -0.2158203125, -0.6538085938, 0.505859375, 0.7543945312, -0.0342407227, -0.376953125, 0.5029296875, 0.84765625, -0.3842773438, -0.2465820312, 0.0941772461, 0.3149414062, 0.3537597656, -0.4584960938, -0.0037994385, -1.1396484375, 0.783203125, -0.4565429688, 0.4421386719, 0.6362304688, 0.1094970703, -1.0166015625, -0.2658691406, 0.1671142578, 0.32421875, -0.0933837891, 0.5463867188, 0.7924804688, 0.0874633789, -1.236328125, 0.0823974609, 0.1925048828, 0.4890136719, -0.2175292969, 0.4182128906, -0.1735839844, -0.5537109375, -1.3662109375, 0.2203369141, -0.008102417, 0.2866210938, -0.3442382812, -0.2215576172, 0.2563476562, -1.4248046875, -0.9677734375, 0.1850585938, -0.8002929688, -0.3454589844, -0.5493164062, 0.6694335938, -0.619140625, -1.8759765625, -0.2076416016, -1.3955078125, 0.458984375, -0.1265869141, -0.2299804688, -0.2264404297, -1.1552734375, 0.1811523438, -0.9038085938, -0.7036132812, -0.1083374023, 0.3176269531, 0.1939697266, 0.3225097656, 0.2474365234, -0.2429199219, -0.6225585938, -1.27734375, -0.3393554688, 0.2692871094, 0.9252929688, 0.5844726562, 1.2490234375, -0.912109375, -0.1960449219, 0.1110839844, 0.22265625, -0.8569335938, 0.4169921875, 1.1494140625, -0.0433044434, -0.0131378174, 0.2100830078, -0.0592346191, 0.1354980469, -0.3125, 0.1039428711, -0.1561279297, 0.6865234375, 0.071105957, 0.9604492188, -0.80859375, -0.6875, -0.1274414062, -0.9350585938, 0.05859375, 0.4919433594, -0.4299316406, 0.2452392578, 0.626953125, 0.2839355469, 0.2683105469, 0.1949462891, 0.3908691406, 0.5087890625, -0.4360351562, -0.6953125, 0.2399902344, -0.3439941406, 0.2188720703, 0.8466796875, 0.2236328125, 0.75390625, 0.3713378906, -0.5327148438, 0.0409851074, 0.0366516113, -1.5576171875, -0.1278076172, -0.7783203125, 0.0316467285, -0.8427734375, 0.8237304688, -0.1474609375, -0.0645751953, -0.2257080078, 0.5229492188, 0.1634521484, 0.7275390625, 1.2607421875, -1.025390625, 0.7602539062, 0.2030029297, -0.0699462891, -0.2814941406, 0.9956054688, 0.0270843506, -0.1140136719, 0.3374023438, 0.7919921875, 0.0481872559, -0.9096679688, -0.4497070312, 0.4328613281, -0.724609375, 0.3374023438, -0.2396240234, 0.0693359375, -0.2846679688, -0.1339111328, -0.2702636719, 1.0009765625, 0.2661132812, 0.4069824219, 0.049041748, -0.3073730469, 0.9223632812, -0.1815185547, 1.2158203125, 0.7270507812, -0.6474609375, 0.16015625, 0.5825195312, 0.1483154297, -1.0625, -0.3957519531, -0.2230224609, -0.7680664062, -1.3212890625, -0.6274414062, 0.0881958008, 0.884765625, -0.0589294434, 0.8076171875, 0.58984375, -0.0735473633, -0.4118652344, 1.1806640625, -0.271484375, -0.462890625, 0.9853515625, -0.3041992188, 0.5639648438, 0.7084960938, 0.3435058594, -0.0982666016, 0.0512695312, 0.4672851562, 1.2822265625, 0.0407409668, -0.3544921875, -0.5170898438, -1.1611328125, -0.6328125, 0.2702636719, 0.0498657227, 0.2309570312, 0.5708007812, 0.4020996094, 0.7250976562, 0.6538085938, -0.2651367188, 0.521484375, 0.4809570312, -0.7358398438, -0.5966796875, 0.1510009766, 0.275390625, -0.865234375, -0.1229858398, 0.5541992188, -0.1527099609, 0.1881103516, -1.064453125, -0.1082763672, 1.1669921875, -0.0915527344, -0.2243652344, -0.4501953125, 0.833984375, -0.5219726562, 0.6376953125, -0.8466796875, 0.8774414062, -1.0654296875, -0.0012645721, -0.1217041016, 0.1217651367, 0.5883789062, 0.0133972168, -0.8759765625, -0.4592285156, 1.181640625, -0.1901855469, 0.5869140625, -0.7329101562, 0.3889160156, -0.62109375, -0.7236328125, -0.3469238281, -0.73046875, 0.0934448242, -0.1146850586, 0.7666015625, -0.5341796875, -0.4790039062, -0.4865722656, -0.1971435547, 0.1213378906, 0.1755371094, 0.1450195312, 0.1300048828, 0.1293945312, -1.2705078125, -0.5122070312, -0.80078125, 1.142578125, 1.24609375, -0.4018554688, -0.0834960938, 0.5107421875, -0.2744140625, 0.1732177734, 0.0025997162, 0.294921875, 0.6806640625, 0.3217773438, 0.0246429443, -0.3305664062, -0.2941894531, 0.0639648438, -0.6313476562, 0.2489013672, -0.7905273438, -0.37109375, -1.0078125, -1.291015625, -0.4934082031, 0.6772460938, -0.609375, 0.392578125, -0.0028991699, -0.8837890625, -1.091796875, -0.0622253418, 0.3737792969, 0.8125, 0.3271484375, -0.2407226562, 0.265625, -1.107421875, -0.2265625, 0.8637695312, 0.0687866211, -0.0399475098, -0.7602539062, 0.6987304688, -0.2110595703, -0.0650634766, 0.6591796875, 1.068359375, -0.1572265625, -0.0247192383, -0.5278320312, 0.3237304688, -0.546875, -13.7421875, 0.043762207, 0.6118164062, -0.8784179688, -0.0448303223, 0.3110351562, 0.517578125, -0.0761108398, -0.3955078125, -0.1519775391, -1.33203125, 0.6586914062, 0.2954101562, -0.2758789062, 0.8793945312, -0.2770996094, -0.53125, -1.103515625, -0.669921875, -0.66015625, 0.638671875, 1.033203125, -0.3122558594, 0.0621643066, -1.1435546875, 0.2131347656, 0.2126464844, 0.0247650146, -0.5283203125, 0.0109405518, -0.3037109375, 0.0613708496, -0.0441589355, 0.0946655273, -0.1491699219, 0.158203125, 0.5483398438, 0.5146484375, -0.2565917969, -0.7080078125, -1.0419921875, -0.1485595703, -0.5161132812, -0.1807861328, -0.5419921875, 0.016998291, -0.375, -0.7504882812, 0.1486816406, 0.0238342285, 0.83203125, 0.6860351562, 0.5634765625, -0.0283660889, -1.046875, 0.1676025391, 0.4428710938, -0.4501953125, -0.8818359375, 0.3845214844, 0.056427002, 0.7890625, 0.23828125, 0.3415527344, 0.271484375, -0.4970703125, -0.9741210938, -0.2248535156, -0.3911132812, -0.626953125, 0.2281494141, 0.3173828125, 1.2080078125, 1.0556640625, -1.1865234375, 0.8198242188, 1.0107421875, -0.2609863281, 1.0771484375, 0.54296875, -0.65234375, 0.0786743164 ]
In crystallography, a diffraction standard, or calibration crystal, is a crystal used to calibrate an X-ray spectrometer to an absolute X-ray energy scale. Quartz or silicon crystals are typically used. There are also reports of crystals of silver behenate or silver stearate having been used for this purpose. External links http://www.gwyndafevans.co.uk/thesis-html/node85.html http://www.ccp14.ac.uk/solution/calibration/index.html http://bigbro.biophys.cornell.edu/documents/SAX_Calibrants/saxs_sphere.html Measurement X-ray crystallography
[ -0.6953125, -0.1236572266, -0.2076416016, 0.7084960938, 0.0657348633, 0.5668945312, 0.0087966919, 0.6967773438, 0.3483886719, 0.9399414062, 0.2197265625, 0.4418945312, -0.3081054688, 0.9189453125, -0.4255371094, 0.3100585938, -0.4421386719, 0.5361328125, 0.1923828125, -0.5776367188, -0.4431152344, -0.4548339844, -0.3386230469, -0.2005615234, -1.546875, -0.3244628906, 0.5532226562, 0.8666992188, -0.0464782715, -0.8139648438, 0.4577636719, -0.3291015625, -0.6484375, -0.8588867188, -0.2358398438, -0.3010253906, -0.5634765625, 0.447265625, -0.2719726562, -0.630859375, -1.138671875, -0.7197265625, -0.7709960938, -0.9614257812, 0.2241210938, -0.2712402344, -0.1437988281, 0.2619628906, -0.4526367188, 0.1945800781, 0.1154174805, -0.1307373047, 0.4853515625, -0.4426269531, -0.6708984375, -0.90625, -0.3056640625, -0.2067871094, 0.802734375, 0.98046875, -0.5366210938, 1.01171875, -0.1188964844, -0.2595214844, -0.0178222656, -0.591796875, -0.8466796875, -0.5375976562, 0.517578125, 0.755859375, 0.3688964844, -0.1096191406, 0.0001322031, 0.1114501953, -0.5903320312, 0.5366210938, -0.0072135925, -0.2912597656, 0.1314697266, 1.2841796875, -0.8720703125, -0.6206054688, -1.2001953125, 0.1518554688, -0.638671875, -1.5869140625, -0.6904296875, -0.3859863281, 0.5249023438, 1.0927734375, 0.2192382812, -0.0126495361, -0.9506835938, 0.4379882812, -0.9497070312, 0.2993164062, -0.1053466797, -1.5400390625, -0.6518554688, 0.3120117188, 0.2322998047, -1.0888671875, 0.8393554688, -0.3395996094, 0.3605957031, 2.416015625, 0.1198120117, -1.0693359375, -0.513671875, 0.236328125, 0.4975585938, -0.3354492188, 0.6000976562, -0.55078125, -0.6362304688, 1.60546875, -0.2420654297, -0.0336914062, -0.7470703125, -0.251953125, 0.2174072266, 0.080871582, -0.5068359375, -0.4631347656, 0.5322265625, 0.3459472656, 0.8334960938, -0.8984375, 0.5893554688, -0.0819091797, -0.4636230469, -0.3852539062, -0.1575927734, 0.2025146484, -0.6547851562, -0.0740356445, -1.0009765625, -0.5380859375, 0.1634521484, -0.5673828125, -0.4916992188, -0.0739135742, 1.6083984375, -1.021484375, 0.2653808594, -0.2381591797, 0.2229003906, 0.4045410156, 0.505859375, 1.2587890625, -0.2775878906, -0.2722167969, -0.0352172852, 0.8930664062, -0.2381591797, -0.2507324219, -0.2841796875, 0.3737792969, -0.1639404297, -0.6806640625, -0.5083007812, -0.7807617188, 0.7065429688, -0.7412109375, 0.4060058594, 0.2032470703, -0.2001953125, -0.7163085938, 1.0205078125, -0.1501464844, -0.5205078125, 0.1870117188, 0.9467773438, -0.0226135254, -0.591796875, 0.3208007812, -0.412109375, 0.3000488281, 0.0832519531, 1.021484375, -0.3110351562, -0.2099609375, -0.8349609375, -0.8837890625, -0.4418945312, -0.4204101562, -0.3518066406, 0.4931640625, -0.4243164062, -0.927734375, 0.0058326721, 0.1123046875, -0.4636230469, 0.2736816406, 0.1614990234, -0.2498779297, 0.4409179688, -0.66796875, 0.0115203857, -0.0539855957, -0.7778320312, -0.0947265625, 0.4672851562, 0.6748046875, -0.0686645508, 0.1743164062, -0.2261962891, 1.2490234375, -0.5068359375, -0.2902832031, 1.1259765625, 0.3830566406, -0.4555664062, 0.3747558594, -0.4296875, -0.73046875, -0.3486328125, -0.2174072266, 0.0331726074, 0.6450195312, 0.3952636719, 1.478515625, 0.1558837891, -0.8271484375, -1.0576171875, 0.3344726562, 0.552734375, 0.1809082031, 0.4812011719, -0.0186157227, 1.2431640625, 0.6123046875, 0.5004882812, 0.1583251953, 0.7065429688, -0.3747558594, -0.431640625, -0.5747070312, 0.6176757812, -0.5288085938, 0.0346984863, 0.0241851807, -0.7036132812, -0.5209960938, -0.2517089844, -1.5634765625, 0.4909667969, -0.1604003906, -0.1978759766, -0.0563354492, -1.1279296875, -0.0445251465, 0.9970703125, -0.0093994141, -0.0791625977, 0.2224121094, 0.1746826172, -0.3796386719, -0.369140625, -0.3244628906, -0.1955566406, 0.3820800781, -0.6069335938, -0.3352050781, 1.7578125, -0.2058105469, -0.3369140625, -0.6708984375, -0.0617370605, -0.4494628906, 0.5786132812, 0.970703125, -0.2875976562, -0.705078125, 0.2729492188, 0.4877929688, -0.806640625, -0.4787597656, -0.3798828125, -0.0383300781, -0.0027580261, 0.0756835938, 0.1181030273, 0.1346435547, 0.615234375, -0.0853271484, 1.0498046875, -0.0646362305, -0.1290283203, 0.5078125, -1.263671875, 0.1890869141, -0.43359375, 0.012802124, -0.8432617188, 0.0461425781, 0.6743164062, -0.3974609375, -0.9111328125, 0.0381469727, -1.0830078125, 0.517578125, 0.609375, -0.3479003906, 0.4284667969, 0.5703125, 0.4150390625, -0.3322753906, -0.4367675781, -0.380859375, 0.6923828125, -2.34375, -0.2717285156, 0.4067382812, -0.9946289062, -0.7856445312, 0.5239257812, 0.2236328125, -0.2587890625, -0.4287109375, 0.5673828125, -0.365234375, 0.3505859375, -0.3115234375, 0.71484375, 0.7709960938, 0.3305664062, -0.1276855469, -1.0419921875, 0.8994140625, 0.7905273438, -0.0633544922, 1.3623046875, 0.765625, -0.1400146484, -0.2978515625, 0.119934082, -0.4514160156, -0.4213867188, -0.5610351562, -0.1823730469, -1.2099609375, 1.1494140625, -0.2685546875, -0.1748046875, 0.431640625, -0.0870361328, 0.431640625, 0.775390625, -0.0549621582, 0.4270019531, 0.4140625, 0.19921875, -0.271484375, 0.9130859375, 0.6948242188, -0.1960449219, -0.4096679688, -0.0458984375, -0.4287109375, -0.9604492188, -0.6708984375, -1.2529296875, -0.1021118164, 0.2023925781, 0.2218017578, -0.1651611328, 0.2800292969, 0.2344970703, -0.2785644531, -0.061706543, 0.2514648438, -0.6274414062, 0.3684082031, -0.7314453125, -0.9379882812, 0.2193603516, -1.05859375, -0.6416015625, 0.5390625, -0.2922363281, 0.3979492188, 0.3100585938, -0.0392456055, 0.1588134766, -0.5502929688, -0.5239257812, 0.3471679688, -1.2265625, 0.075378418, 0.7368164062, -0.9301757812, 0.1258544922, -0.1372070312, -0.1884765625, 0.2524414062, -0.2110595703, 0.049407959, -0.3293457031, 0.0520019531, 0.0391235352, 0.1716308594, -0.5576171875, 0.259765625, -0.9243164062, -0.0233154297, 0.4729003906, 0.2922363281, -0.0589599609, 0.4096679688, -0.2370605469, -0.3935546875, -0.1077270508, 0.1092529297, 0.0215606689, -0.6435546875, 0.7319335938, 0.5712890625, 0.1260986328, -0.4501953125, -1.4169921875, 1.1494140625, 0.4846191406, 0.662109375, -0.7646484375, -0.0715332031, 0.2646484375, 0.0572509766, 0.7094726562, -1.015625, -0.1163330078, -0.3767089844, -0.0232849121, 0.4973144531, 0.0594482422, 0.0875854492, 0.2890625, 0.5424804688, 0.94140625, -0.4953613281, 0.6420898438, 1.7822265625, 0.4260253906, 0.6176757812, -0.0602416992, -0.5639648438, -0.34375, -0.7954101562, 0.0227355957, -0.8891601562, 0.4409179688, 0.9624023438, -0.3322753906, 0.5390625, 1.173828125, 0.16796875, 0.0743408203, 0.1257324219, 0.2054443359, 0.2023925781, 0.0893554688, 0.353515625, 1.001953125, 0.4743652344, 0.7724609375, 0.2440185547, -0.6137695312, 1.2333984375, -0.3146972656, -0.5961914062, 0.224609375, 0.3376464844, -0.8188476562, -0.0844116211, -0.1062011719, 1.126953125, 0.34765625, 0.5678710938, -0.1473388672, 0.1619873047, 0.4528808594, -0.4611816406, -0.0090103149, -0.853515625, 0.031463623, -0.5454101562, -0.70703125, 0.2807617188, -1.509765625, -0.7866210938, -0.2169189453, 0.5673828125, -0.0139312744, -0.2463378906, -0.7065429688, 0.2492675781, -1.259765625, 0.818359375, -1.2568359375, -0.9145507812, -0.7700195312, 0.4196777344, 0.0661010742, -0.7446289062, 0.5903320312, 0.0201873779, 0.4931640625, 0.6005859375, 0.6044921875, -0.2434082031, -1.2060546875, 0.4421386719, 0.3984375, 0.3469238281, -0.2543945312, -0.5200195312, -0.7407226562, 0.2849121094, -0.3330078125, 0.4013671875, 1.501953125, -0.3364257812, 0.7680664062, -0.0757446289, 1.025390625, 0.5903320312, -0.392578125, -0.751953125, -1.90234375, 0.5512695312, 0.3930664062, 0.2763671875, 0.7998046875, 0.7587890625, -0.2932128906, -0.5737304688, 0.1467285156, 0.833984375, -0.1785888672, -0.3630371094, -0.4978027344, 0.1954345703, -1.265625, 0.8642578125, -1.5673828125, 0.4567871094, 1.0185546875, -0.6772460938, -0.3068847656, -0.5278320312, 0.5561523438, -0.2680664062, 0.4985351562, 0.6440429688, -0.3298339844, -0.82421875, -0.4467773438, 0.4411621094, 0.0226593018, -0.3635253906, 0.0482177734, -0.0896606445, -0.2271728516, -0.0346679688, 0.3771972656, 0.3994140625, -0.1298828125, 0.3337402344, 0.4235839844, -0.6010742188, -0.5341796875, -0.4694824219, 0.8774414062, -0.353515625, 0.3288574219, -0.3076171875, 0.828125, -0.4545898438, 0.1038208008, -1.0751953125, 0.1419677734, 0.4465332031, -0.2481689453, -1.70703125, 0.2680664062, 0.578125, 0.7353515625, -0.5620117188, -0.0610351562, -0.3166503906, 0.462890625, -0.0853271484, 0.9560546875, -0.8662109375, 0.2126464844, -0.4702148438, -0.2186279297, 0.5493164062, 1.076171875, -0.2583007812, 0.73828125, 0.9604492188, 1.13671875, 0.884765625, 0.0614929199, -0.7426757812, 1.12890625, -0.3735351562, -0.1312255859, 1.046875, 0.6396484375, 0.2396240234, 0.1267089844, -0.8774414062, 0.4223632812, -0.2993164062, -0.0278167725, 1.0517578125, 0.0127868652, -0.80859375, 0.783203125, 0.9321289062, 0.6577148438, -0.0083389282, 0.7934570312, 0.7221679688, 0.654296875, 0.2117919922, -0.4711914062, 1.0634765625, 0.1846923828, -0.2514648438, -0.0892944336, 0.6899414062, -0.6557617188, 1.2509765625, -0.4816894531, 1.15234375, -0.1867675781, 0.7177734375, 0.5454101562, 1.1416015625, 0.0654907227, -0.2861328125, -0.4924316406, -0.0392456055, 0.83203125, 0.6616210938, -0.3720703125, -0.3295898438, -0.5229492188, 1.26953125, 0.8178710938, 0.8569335938, -1.0673828125, 0.5751953125, 0.564453125, 0.30078125, -0.1661376953, 0.2244873047, -0.0018463135, -0.0480041504, -0.0186157227, 0.4108886719, -0.8046875, 0.1730957031, -0.3811035156, -0.1398925781, 0.1821289062, -1.013671875, 0.3420410156, 0.6791992188, -0.1286621094, 0.2409667969, -0.599609375, -0.2038574219, 1.0673828125, -0.763671875, 0.0530090332, 0.3530273438, -0.1011352539, 0.7006835938, -0.1705322266, 0.6030273438, 0.3813476562, -0.6684570312, -0.7099609375, 0.8696289062, -1.353515625, 0.3962402344, 0.1770019531, -0.6245117188, -1.8017578125, -0.49609375, -0.7602539062, -0.0776367188, -1.205078125, 0.8989257812, -1.1767578125, -0.1889648438, 1.01953125, -0.2863769531, -0.3703613281, -0.5107421875, -0.1982421875, 0.2956542969, 0.3759765625, 0.7001953125, -0.1903076172, -0.8857421875, -0.6708984375, -0.2543945312, 0.4064941406, 1.2314453125, 0.3923339844, -1.171875, -0.9077148438, 1.1201171875, 0.2313232422, -0.0994262695, -1.0546875, 1.0791015625, -0.7841796875, -0.4035644531, -0.5400390625, -0.0259094238, -0.0308380127, -1.0146484375, -0.203125, -0.8618164062, -0.9887695312, -0.5131835938, 0.1533203125, -1.3466796875, 0.5712890625, 0.4252929688, 0.5317382812, -0.3405761719, -0.5166015625, 0.3249511719, -0.1885986328, 0.1533203125, -0.1667480469, -0.1767578125, 0.0444641113, -0.0990600586, 0.8212890625, -0.1751708984, 1.140625, -0.2570800781, 0.0788574219, -1.234375, 0.3605957031, 0.7592773438, 0.3969726562, -0.26171875, -0.8305664062, 0.0236816406, 0.0121536255, 0.0846557617, -0.767578125, -0.1099853516, -0.6201171875, 0.7387695312, -0.5229492188, 0.6337890625, -0.41796875, 0.6040039062, 0.6337890625, 0.8618164062, -0.1527099609, 0.6669921875, -0.5415039062, 0.7255859375, 0.6088867188, -0.0305938721, 0.4724121094, -1.3564453125, -0.734375, 0.3598632812, -0.0913696289, 0.0734863281, -1.328125, -0.106628418, -0.084777832, -0.7524414062, 0.2687988281, 0.1722412109, -1.3818359375, -2.09765625, -0.2509765625, -0.2047119141, -0.4401855469, 0.8911132812, -1.115234375, -0.061340332, -0.3264160156, -0.6684570312, -1.03515625, 0.1060791016, 0.1683349609, -0.7421875, -0.0129547119, -1.7119140625, -1.9951171875, -0.1901855469, -0.0863037109, 0.3483886719, 0.275390625, 0.818359375, -0.8715820312, -0.673828125, -0.0717163086, -0.4672851562, -0.8930664062, -0.7827148438, 0.5512695312, 1.568359375, -0.4182128906, 0.6298828125, -0.4653320312, -0.3488769531, 0.4460449219, 0.2401123047, 2.173828125, -0.3171386719, -0.7065429688, 0.6640625, -0.9013671875, 0.5556640625, 0.2976074219, -0.042388916, -0.0015974045, 0.6079101562, -0.1746826172, 0.7856445312, -0.8920898438, -0.6372070312, -0.0623474121, 0.2971191406, -0.2729492188, -1.3681640625, 0.7436523438, -0.1182861328, 0.0961303711, -1.2626953125, -0.7856445312, -0.3259277344, 0.3435058594, -0.1120605469, -0.7094726562, 1.2587890625, -0.8061523438, -0.2570800781, 0.2471923828, -0.916015625, -0.6669921875, -0.7475585938, -0.1000366211, -0.1040039062, 0.4045410156, 0.2878417969, -0.4697265625, 0.1442871094, -0.5268554688, -0.1287841797, -0.2100830078, -0.736328125, -0.1809082031, -0.6977539062, 0.9711914062, -1.4921875, -0.7211914062, -0.6811523438, -0.5209960938, -0.1651611328, -0.5424804688, -0.5512695312, 0.1245727539, 1.041015625, 0.5747070312, 0.2307128906, 1.076171875, 0.4245605469, 0.5517578125, 0.4045410156, -0.0316467285, -0.9453125, 0.100769043, -0.7177734375, -0.91015625, -0.1677246094, 0.7104492188, 1.19140625, -0.4411621094, 0.0819702148, -0.0850830078, -0.030456543, 0.2626953125, 0.4167480469, 0.0188140869, -0.0049591064, 0.6455078125, 0.6040039062, 0.466796875, -0.6938476562, 0.4753417969, -0.61328125, 0.7236328125, 0.4487304688, -0.205078125, -0.0830688477, -0.6137695312, 0.5444335938, 0.2932128906, -0.3464355469, -0.0441589355, -0.1810302734, -0.3708496094, 0.75, 0.6313476562, 0.1414794922, 0.7641601562, 0.1639404297, 0.7026367188, -0.0389709473, -0.3637695312, 0.1583251953, -0.53125, -0.1243286133, -0.693359375, 0.1130981445, 0.9770507812, -0.9736328125, -0.7534179688, 0.1527099609, 0.830078125, -0.572265625, 0.6625976562, 0.0596923828, 0.9423828125, -0.6103515625, -12.6796875, -0.0599365234, 0.1794433594, -1.2666015625, 0.0751342773, 0.2565917969, -0.2043457031, -0.734375, -0.3325195312, -0.4536132812, 0.2849121094, 1.5615234375, 0.0220947266, -0.1079711914, -0.0842285156, -0.86328125, -0.1827392578, 1.1513671875, -0.9155273438, 0.2719726562, 0.5112304688, 1.138671875, -0.2242431641, 0.40625, -1.177734375, 0.7641601562, 0.5278320312, 0.3117675781, 0.1812744141, 0.6328125, 0.2670898438, 0.0763549805, -0.2214355469, 1.3759765625, -0.2229003906, -0.0319824219, 0.8623046875, -0.4750976562, -0.9555664062, 0.3796386719, -0.8603515625, -1.0439453125, 0.3659667969, 0.65625, 0.1657714844, 0.6796875, 0.1553955078, -0.6889648438, -0.2332763672, -0.6704101562, 0.7749023438, 0.9389648438, 0.1065063477, 0.3471679688, 0.29296875, 0.9819335938, -0.5346679688, -0.6049804688, -0.0122451782, -0.595703125, -1.2568359375, 0.53125, -0.5146484375, 0.0450134277, 0.4829101562, -0.4135742188, -0.8461914062, 0.0139923096, -0.8852539062, -0.4445800781, -0.3139648438, -0.7099609375, 1.2783203125, 1.5771484375, -0.595703125, 1.08984375, -0.6401367188, 0.3630371094, -0.697265625, 1.2744140625, -0.5434570312, 0.1804199219 ]
Doctor Will Magnus is a fictional character appearing in American comic books published by DC Comics. Publication history He first appeared in Showcase #37 alongside his creations, the Metal Men and was created by Robert Kanigher and Ross Andru. Fictional character biography One of the most impressive geniuses of the DC Universe with doctorates in theoretical mathematics, mechanical engineering, and particle physics, William Maxwell "Will" Magnus often offers scientific advice to other characters. His greatest achievement is the one for which he first received renown: the creation of the Metal Men. The method through which Doc Magnus created the Metal Man has varied over years with various writers. At first they were just blank slate robots with responsometers, devices which generated their intelligence and personalities which just happened to be evocative of the metals from which they were formed. In an attempt to boost sales of the comic book, the characters underwent vast changes. The Metal Men all assumed human alter egos, while Doc Magnus became a fugitive scientist dedicated to global conquest. His personality change was credited to having been kidnapped, reawakened, and brainwashed by a mad dictator. Sales plunged instead and the comic was not printed for a few years. Eventually Metal Men was picked up again with Doc's sanity restored and he returned to assist his Metal Men. At one point he saved Doom Patrol's Robotman, whose original body had been destroyed by Madame Rouge. Doc Magnus recovered Robotman's brain and built him a new cybernetic body. In 1993, a four-part Metal Men miniseries retconned much of their backstory.
[ -0.0897216797, -0.8325195312, 0.2629394531, 0.708984375, -0.1872558594, -0.0413513184, -0.330078125, -0.9379882812, -1.7822265625, -0.1824951172, 0.0581970215, 0.3376464844, -0.6469726562, 0.2062988281, -0.5229492188, 0.5029296875, 0.5454101562, -0.4291992188, 0.0942993164, 0.51171875, 0.505859375, -0.3625488281, -0.8891601562, -0.2468261719, -1.12109375, 0.8413085938, 0.6479492188, -0.4880371094, 0.0536193848, -0.859375, -0.2824707031, 0.1005249023, -1.4609375, -0.7573242188, -0.4697265625, -0.564453125, 0.0924072266, -0.1246948242, 0.0263977051, 0.93359375, -1.1865234375, -0.3364257812, -0.4362792969, -0.392578125, 0.119140625, -0.4365234375, 0.1864013672, 0.0144424438, -0.509765625, -0.9936523438, -1.515625, 0.671875, 0.5185546875, 0.1158447266, 0.0899047852, -0.1322021484, 0.9223632812, -0.896484375, 0.1121826172, -0.3801269531, -0.8408203125, 0.5439453125, -0.9931640625, -0.7026367188, -1.0986328125, -0.0964355469, 0.4692382812, 0.4523925781, -0.4689941406, 0.6411132812, -0.50390625, 1.2802734375, 0.1417236328, -0.4624023438, -0.3823242188, -0.697265625, -0.4729003906, 0.2722167969, 0.4162597656, -0.6508789062, 0.0505981445, -1.3515625, -0.4763183594, 0.9721679688, -0.52734375, -1.1923828125, 0.1068725586, -0.505859375, 0.1514892578, 1.708984375, 0.5063476562, -0.115234375, 0.3718261719, 0.0523681641, 0.400390625, -0.8115234375, -0.7475585938, -0.8408203125, -0.9125976562, 0.2116699219, -1.00390625, -0.7451171875, -0.2822265625, 0.07421875, 0.5444335938, 1.783203125, 0.0684204102, -1.26171875, -0.2404785156, 0.1259765625, 0.556640625, 0.7841796875, 0.0532226562, 0.6166992188, -0.0749511719, 0.6469726562, -0.2824707031, -0.1549072266, -0.3173828125, -0.0047569275, -0.7006835938, 0.2132568359, -0.2622070312, -0.6655273438, -0.306640625, -0.3715820312, -0.4538574219, -0.4064941406, 0.4555664062, 0.52734375, -0.2496337891, 0.0462036133, -0.1682128906, -0.4255371094, 0.0491943359, -0.6840820312, -0.6171875, -0.1900634766, -0.4909667969, -0.1472167969, -0.9975585938, -0.7641601562, 1.26171875, 0.72265625, -0.546875, 0.2807617188, 0.3034667969, 1.3212890625, 0.1166381836, 0.5786132812, -0.962890625, 0.6674804688, 0.1796875, -0.4104003906, 0.5717773438, -0.900390625, 0.1485595703, -0.7817382812, -0.7241210938, -1.361328125, -0.4157714844, -1.22265625, 0.0265808105, 0.1199951172, -1.083984375, -0.2377929688, -0.1032104492, 0.1802978516, 0.078125, -0.5278320312, 0.3388671875, -0.2315673828, 0.935546875, 0.3894042969, -0.1804199219, -0.3642578125, 0.259765625, -0.7231445312, 0.1459960938, -1, 0.244140625, -2.65234375, 0.2573242188, -0.98046875, -0.1140136719, -0.9243164062, 0.2197265625, -0.2072753906, -1.1025390625, -0.119140625, -0.3308105469, -0.6489257812, 0.1545410156, -0.6337890625, -0.0377807617, -1.1455078125, -0.1322021484, 1.20703125, -0.2399902344, -0.1090087891, -0.3464355469, -0.0187225342, -0.7114257812, -0.890625, 0.0787353516, -1.765625, 0.8657226562, -0.2410888672, 0.4099121094, -0.3774414062, -0.8901367188, 0.4421386719, 0.294921875, -0.1997070312, -0.5283203125, -0.0006918907, 0.3669433594, 0.7016601562, 0.1082763672, 0.0278778076, -0.0251312256, -1.1337890625, -1.1689453125, -0.064453125, -1.0341796875, -0.7963867188, 0.4597167969, -0.4926757812, -0.3093261719, 0.67578125, 0.8798828125, -0.7158203125, 0.0372314453, -0.5849609375, 0.3984375, 0.4653320312, 0.6840820312, -0.8208007812, -0.603515625, -0.9028320312, -0.4323730469, -1.4521484375, -0.3071289062, 0.0459899902, -0.3332519531, -0.2475585938, -0.1329345703, 0.916015625, 0.4294433594, 0.7333984375, 0.6752929688, 0.4060058594, 0.6303710938, 0.2310791016, 0.1459960938, -0.8486328125, -0.5434570312, 0.6181640625, 1.1357421875, 0.1624755859, -0.0314331055, 0.78515625, 1.6865234375, -1.3095703125, 0.8681640625, -0.1641845703, 0.2531738281, -0.9555664062, 0.1368408203, -0.7583007812, -0.1171875, -0.5693359375, 0.3576660156, -0.4992675781, -0.2081298828, 0.0186309814, 0.2270507812, 0.1857910156, 0.4299316406, 0.2023925781, 0.859375, 1.1826171875, 0.1575927734, -0.2359619141, 0.9946289062, -0.7817382812, -0.1896972656, -0.1424560547, -0.53515625, -0.5380859375, 0.361328125, 0.0870361328, 0.1201171875, -0.0863647461, 0.2861328125, 0.3513183594, -0.4575195312, 1.076171875, 0.5092773438, -0.0187072754, 0.8872070312, 1.2666015625, -0.1788330078, 0.94140625, 0.783203125, -0.1733398438, -0.3356933594, 0.5, -0.0966796875, 0.2468261719, -0.1484375, -1.984375, 0.9458007812, -0.826171875, -0.44921875, 0.2415771484, 1.0439453125, -0.1089477539, -0.1903076172, -0.0634765625, -0.1677246094, -0.0042610168, 0.5419921875, 0.0261688232, 0.94140625, 0.2420654297, -0.6220703125, -0.58203125, 0.3803710938, 0.2612304688, 0.3979492188, 0.6528320312, 0.6157226562, 1.01171875, 0.2401123047, -0.0823974609, 0.8876953125, 0.3950195312, -0.9267578125, 0.9096679688, 0.5639648438, -0.0433959961, 0.4616699219, -0.2724609375, 0.4072265625, 0.0547180176, -0.7231445312, -0.5170898438, 1.0458984375, -0.1480712891, -0.3630371094, 0.75, -0.6870117188, 0.4189453125, 0.3957519531, 0.1271972656, -0.2707519531, -0.5473632812, 0.0053596497, 0.2188720703, 0.681640625, 0.0401611328, 0.0974121094, 0.294921875, -0.5297851562, -0.4384765625, 0.9008789062, 0.9575195312, -0.3759765625, -0.0167541504, -0.1320800781, -0.392578125, -1.3330078125, 0.6235351562, 0.2338867188, -1.201171875, -1.4892578125, -0.8662109375, 0.1643066406, 0.3205566406, -0.1394042969, -0.6245117188, -0.2047119141, -0.3869628906, 0.3796386719, 0.5473632812, -1.189453125, 0.1100463867, -1.4326171875, -0.7221679688, -0.376953125, -0.0285949707, 0.3874511719, -0.1156005859, -0.7534179688, -0.3684082031, 0.84375, -0.3420410156, -0.2478027344, 1.130859375, 0.755859375, 0.5737304688, 0.032043457, 0.8784179688, 0.9301757812, -0.4645996094, 0.3474121094, 1.265625, 0.7758789062, -0.1739501953, -0.2177734375, 0.1467285156, 0.46484375, 0.0152893066, -0.0287017822, -0.3813476562, 0.0733032227, -0.2121582031, 0.4133300781, -0.1345214844, 0.0889282227, -0.1774902344, 0.4643554688, 0.0220794678, 0.1102294922, 0.3583984375, -0.88671875, -1.0263671875, 0.1150512695, -0.6743164062, 0.9545898438, 0.1602783203, 0.0408935547, 0.1845703125, 0.2358398438, -0.1107788086, 0.3579101562, 0.0684204102, 0.0554199219, 0.4914550781, 0.55859375, 0.9741210938, -0.5068359375, 0.1057739258, 1.8017578125, 0.9443359375, 0.6630859375, 0.3469238281, 1.123046875, -0.6831054688, -1.3916015625, -1.5380859375, 1.4345703125, -0.4631347656, 0.1416015625, -1.76171875, 0.4106445312, 0.1452636719, 0.9282226562, 0.2222900391, 0.1672363281, 0.2269287109, -0.2568359375, -0.1412353516, -0.2717285156, -0.7514648438, 0.4675292969, 0.466796875, 0.019821167, -0.7446289062, 1.1982421875, -0.4755859375, -0.2357177734, 0.3688964844, -1.7138671875, 0.0681152344, 0.2435302734, 0.5170898438, -0.9956054688, 0.8872070312, 0.046661377, 0.5522460938, 0.8486328125, 0.26953125, -0.3908691406, -0.2944335938, -0.2263183594, 0.6455078125, 0.3452148438, -0.3425292969, -0.3745117188, 0.06640625, -0.3073730469, -0.4130859375, -0.64453125, -0.8720703125, -0.4953613281, -0.51171875, -1.673828125, -0.3024902344, -0.5087890625, -0.8017578125, -0.5688476562, 0.380859375, 0.712890625, 0.904296875, 0.3889160156, -1.1162109375, -0.4587402344, 0.3852539062, 0.1221923828, -0.0530090332, 1.775390625, 0.3188476562, 0.4096679688, -0.2149658203, 0.8369140625, 0.1528320312, -0.3459472656, 0.3383789062, 1.19140625, 0.080078125, 0.966796875, 0.7895507812, 0.2110595703, -0.6694335938, 1.341796875, 0.2388916016, -0.0554199219, -0.6806640625, -0.0946044922, -0.25390625, 0.0942993164, 0.0074310303, 0.5791015625, -0.2651367188, 0.564453125, 0.5229492188, 0.8676757812, 0.818359375, 0.3103027344, -1.125, 0.0648803711, 0.8295898438, 1.2158203125, -0.3825683594, -0.1981201172, 1.04296875, -0.3229980469, -0.0811157227, 0.9794921875, -0.09375, 0.3786621094, -0.1151733398, 0.6499023438, -0.1331787109, -0.9877929688, 0.1700439453, 0.8505859375, -0.5869140625, 0.1235351562, 0.466796875, 0.3752441406, 1.13671875, -0.4365234375, 0.3471679688, -0.0141983032, 0.7797851562, -0.2790527344, -0.1133422852, 0.7465820312, -0.359375, -2.583984375, 0.0040168762, -0.9780273438, -0.4106445312, -0.7290039062, 0.3347167969, 0.8657226562, 0.2014160156, 0.1274414062, 1.2919921875, -1.0986328125, -1.0830078125, 0.1384277344, 0.3784179688, 0.4140625, -0.2690429688, -0.0293579102, -0.7797851562, -0.4372558594, -0.4052734375, -0.1507568359, 0.5751953125, 0.3312988281, -0.71484375, -1.5625, -0.4025878906, 0.3666992188, 0.8935546875, -0.0972290039, 0.4658203125, -0.0036945343, 0.2551269531, -1.08203125, -0.1213989258, -0.5649414062, 0.6245117188, 0.3889160156, 0.4184570312, 0.1457519531, 0.3774414062, 0.4819335938, 0.1069946289, 0.1060180664, 0.7626953125, 0.2700195312, -1.0791015625, -0.4145507812, -0.8159179688, -0.4113769531, 0.556640625, 1.458984375, -0.8666992188, 0.4235839844, 0.599609375, 0.265625, -0.4558105469, -0.5698242188, -0.7006835938, -0.7709960938, -0.5327148438, 0.3894042969, -0.0625610352, -1.2109375, 0.4958496094, 0.4116210938, 0.8369140625, 0.0719604492, -0.4018554688, -0.5698242188, -1.3359375, -1.0244140625, -0.3100585938, -0.19140625, -0.3215332031, 0.7651367188, -0.1871337891, -1.0888671875, -0.5883789062, 0.0519714355, 0.37890625, 0.5688476562, 0.52734375, -0.7124023438, -0.77734375, -0.359375, -0.4401855469, 1.41796875, -0.0446472168, -0.892578125, 0.2220458984, -0.5141601562, 0.1962890625, 0.94140625, -1.22265625, 0.2119140625, 1.169921875, 0.4177246094, -0.0315246582, 0.9736328125, 0.4235839844, 0.1379394531, 0.5151367188, -1.435546875, -0.3825683594, 0.1678466797, -0.1434326172, -0.5615234375, 0.2722167969, 0.1072998047, 0.541015625, 1.177734375, 1.0478515625, 0.3435058594, 0.4514160156, -0.2313232422, -0.8291015625, 1.1865234375, 0.1018676758, 0.0401916504, 0.1502685547, -0.8657226562, 0.1746826172, -0.5756835938, -1.263671875, -0.0728149414, -0.8579101562, -0.2785644531, 0.0098495483, 0.4797363281, 0.5625, -1.1484375, -0.0905151367, 0.8984375, 0.0911254883, -0.3876953125, -0.3168945312, 0.5532226562, 1.013671875, 0.3647460938, 0.5185546875, -0.6416015625, -0.7797851562, 1.791015625, 1.06640625, -0.5336914062, 0.2624511719, -1.0029296875, -0.4274902344, -0.1843261719, 0.3051757812, 0.6889648438, 0.2435302734, -0.0256652832, -1.2119140625, -0.41015625, -0.6166992188, 1.0419921875, -0.3989257812, -0.2875976562, 0.0654907227, 0.2727050781, -0.0390319824, 0.2937011719, 1.9443359375, 0.46875, 0.3986816406, -0.5517578125, 0.0635375977, -0.0677490234, 0.53515625, 1.203125, 0.3103027344, -0.9096679688, 0.0596923828, 0.6059570312, 0.4877929688, 0.2222900391, -1.1904296875, 0.5249023438, 0.5063476562, -0.1318359375, 1.0126953125, 0.90234375, -0.6176757812, -0.6201171875, -1.380859375, 0.2958984375, 0.5249023438, 0.0545349121, -0.2371826172, -0.0540466309, -0.098449707, -0.3479003906, -0.50390625, -0.0006222725, 0.1541748047, -0.1887207031, 0.7578125, -0.0533752441, 1.0634765625, -0.1411132812, -0.515625, -0.7724609375, 0.390625, 0.0406799316, -1.54296875, 0.1060791016, -0.955078125, -0.0261535645, -0.3161621094, -0.3508300781, -1.3466796875, -0.6157226562, 0.1740722656, -0.2164306641, 0.0711669922, -0.408203125, 0.6435546875, -0.2199707031, -0.1550292969, 0.2106933594, 0.5747070312, 1.2255859375, 0.1806640625, -0.4753417969, -0.0798339844, 0.5141601562, -0.3818359375, 0.14453125, -0.0450744629, 0.0272521973, -0.1892089844, -1.560546875, -0.2165527344, -0.3364257812, 0.4426269531, 0.0939331055, 0.326171875, -0.3779296875, -0.5590820312, -0.1083984375, 0.7416992188, 0.4521484375, -0.7924804688, -0.9125976562, 0.1994628906, 0.1128540039, 0.7431640625, 0.4372558594, 0.6313476562, -0.2854003906, 0.1627197266, 0.71484375, -0.1842041016, -0.3168945312, -0.3356933594, 0.0692138672, -0.0595397949, -0.0682373047, -0.3239746094, -0.6943359375, 0.8916015625, -0.5419921875, 0.2355957031, -1.1708984375, 0.2098388672, -0.9252929688, -0.8198242188, -0.2985839844, 0.0750732422, 0.0250244141, -0.201171875, 0.3376464844, 0.2817382812, 1.275390625, -0.8901367188, -0.5229492188, 0.1591796875, 0.1806640625, -0.0451049805, -0.0273590088, -0.5966796875, 0.2629394531, -1.015625, -0.9174804688, -0.072265625, -0.071105957, -2.10546875, 0.06640625, 0.2337646484, -0.966796875, 0.6430664062, 0.4694824219, -0.630859375, 0.0183258057, -0.4602050781, 1.095703125, -0.1549072266, -0.2668457031, 0.5517578125, 0.7431640625, -0.5009765625, -0.564453125, -0.0418395996, 0.6220703125, -0.0438232422, -0.8891601562, 0.9174804688, 0.3376464844, -1.279296875, 1.076171875, 0.3422851562, 1.1728515625, 0.3364257812, 0.7739257812, -0.0004711151, -0.578125, 0.3774414062, -0.2692871094, 0.4470214844, 0.337890625, 0.8359375, -0.58984375, -0.263671875, -0.1219482422, 0.6240234375, -0.0306854248, -0.1608886719, -0.1791992188, 0.4768066406, -0.1492919922, 1.0390625, -0.3195800781, 0.2619628906, 0.181640625, -1.4775390625, 0.8452148438, 0.2739257812, -0.1417236328, -0.33203125, -0.7939453125, 2.12109375, -1.0302734375, 0.2022705078, -0.1579589844, 0.3637695312, 0.0546569824, -0.0610351562, 0.537109375, -0.2049560547, -0.8232421875, -0.7836914062, 0.036529541, -0.3796386719, 0.0324707031, 0.2944335938, 0.3342285156, 0.794921875, 0.0469055176, -0.0455932617, 1.0009765625, -0.9951171875, 0.1434326172, -0.1079101562, 0.7006835938, 0.2038574219, -0.3720703125, 1.435546875, -0.2734375, 0.248046875, -11.8515625, -0.4865722656, -0.2149658203, -1.375, -0.6333007812, -0.7314453125, 0.2622070312, -0.9150390625, 0.0447387695, -1.2900390625, 1.3935546875, 1.0224609375, -0.4653320312, 0.9653320312, 0.5146484375, 0.2685546875, -0.6362304688, 0.3310546875, 0.6713867188, 0.5302734375, -0.1172485352, 0.1904296875, -1.494140625, -0.9624023438, -0.62109375, 0.3181152344, 0.0591430664, -0.8671875, -0.065612793, 0.1685791016, -0.2604980469, 0.515625, -1.4951171875, 0.5200195312, 0.7119140625, 0.5063476562, -0.1929931641, -0.6435546875, 0.0881347656, -0.2512207031, 1.26171875, 0.4011230469, -0.1513671875, 0.294921875, -0.2391357422, 0.4609375, 0.6127929688, -1.33984375, 0.5122070312, 0.2142333984, -0.2165527344, 0.2993164062, 0.1492919922, -0.2983398438, -0.32421875, 0.9560546875, 0.6870117188, 0.5, -0.1336669922, -0.642578125, -1.2060546875, 0.3664550781, -1.7607421875, 0.5327148438, 1.0830078125, 0.3664550781, -0.5263671875, -0.59765625, 0.671875, -0.2507324219, -0.2249755859, -1.9765625, -0.0622558594, 0.9653320312, 0.4943847656, 0.4384765625, 0.8784179688, -0.2354736328, 0.4401855469, -0.0819091797, -1.2275390625, 0.2254638672 ]
It was revealed that the responsometers were not responsible for the Metal Men's sentience and that the Metal Men actually were imprinted with the intellects and personalities of real people: Magnus' own brother Mike, his fiancee Sharon, two lab workers Redmond Wilde and Randy Pressman, a janitor named Thomas Tinkham, and a pizza-delivery man named Jack. These unfortunate personalities were accidentally transferred to blank robots in a lab accident. At the climax of the miniseries, Gold, one of his robots, was permanently killed and Doc Magnus mortally wounded. Doc permanently transferred his personality into a blank robot known as Veridium, made of a green alien metal, becoming the new robotic leader of the Metal Men. 52 With the advent of Identity Crisis, Gold is back and Doc Magnus is once again human and played an active role in the series 52. As revealed during Infinite Crisis, when Superboy-Prime pounded on the walls of reality, he caused the very fabric of reality to shift, changing and merging histories. The "blank robots with responsometers" origin is said to be the definitive origin while the "human personalities" origin and the 1993 miniseries has been described as the byproduct of a mental breakdown suffered by Magnus. When Booster Gold visited, asking for help with Skeets, Magnus commented that the Metal Men "don't quite work anymore".
[ -0.5219726562, -0.2092285156, -0.1318359375, 0.4477539062, -0.7602539062, 0.5825195312, -0.0956420898, -0.5375976562, -1.6181640625, 0.0742797852, 0.2766113281, -0.2253417969, -1.0703125, 0.7421875, -0.4475097656, 0.64453125, 0.505859375, -0.919921875, -0.0139465332, 0.5009765625, 0.3859863281, -0.0978393555, -0.6274414062, -0.8481445312, -0.8217773438, 1.291015625, 0.8095703125, -0.9990234375, -0.0264282227, -1.29296875, -0.283203125, 0.5219726562, -1.16015625, 0.0528259277, 0.1409912109, -0.3627929688, 0.4033203125, 0.4055175781, 0.3271484375, 0.7583007812, -0.91015625, 0.1000366211, -0.5737304688, -0.0595092773, 0.0094909668, -0.2474365234, -0.0313415527, -0.2648925781, -0.012336731, 0.3059082031, -1.2021484375, 0.923828125, 0.6469726562, 0.0941162109, 0.0855712891, 0.1089477539, 0.4985351562, -0.5776367188, -0.1640625, 0.0623474121, -0.3020019531, 0.62109375, -0.994140625, -0.5014648438, -0.1522216797, -0.6396484375, -0.2897949219, 0.5693359375, -1.03515625, 0.6508789062, -0.2326660156, 0.8344726562, 0.66796875, 0.2741699219, 0.104675293, -0.8129882812, -0.6420898438, 0.7685546875, 0.265625, -1.2841796875, 0.2580566406, -1.1416015625, -0.1534423828, 0.494140625, -0.6533203125, -1.02734375, -0.3410644531, -1.3447265625, -0.0084152222, 1.0087890625, -0.2314453125, 0.1156616211, 0.2225341797, 0.5263671875, 0.114074707, -1.3154296875, -0.9096679688, -1.533203125, -0.900390625, 0.4860839844, -0.6357421875, -0.984375, 0.705078125, 0.4331054688, 0.1359863281, 2.69921875, 0.0429382324, -0.9663085938, -0.4350585938, -0.1791992188, 0.2766113281, 0.1494140625, -0.2412109375, 0.3718261719, 0.0254821777, 0.7348632812, -0.5791015625, -0.7265625, -0.8491210938, 0.6328125, -0.6674804688, 0.5258789062, -0.6206054688, -0.3786621094, 0.0782470703, -0.6733398438, -0.4453125, -0.7065429688, -0.1185913086, 0.59765625, 0.0339660645, 0.1275634766, -0.5380859375, -0.4924316406, 0.3215332031, 0.0218811035, -0.7001953125, 0.0119171143, 0.1733398438, -0.0456237793, -0.4753417969, -0.7768554688, 0.7836914062, 0.3247070312, -0.2272949219, 0.6967773438, -0.4860839844, 0.9321289062, 0.3837890625, 0.9619140625, -1.4326171875, 0.3200683594, -0.2954101562, -0.1756591797, 0.2242431641, -0.3134765625, -0.6215820312, -0.2746582031, -0.0845947266, -0.3312988281, -0.037109375, -1.2236328125, 0.6557617188, 1.3525390625, -0.6557617188, -0.2067871094, 0.2434082031, -0.0191040039, -0.2802734375, 0.2427978516, -0.22265625, 0.3168945312, 0.8798828125, 0.4284667969, 0.1834716797, -0.7163085938, 0.5322265625, -1.5712890625, 0.197265625, -1.16796875, 0.0837402344, -2.57421875, 0.9375, -0.3059082031, 0.1190795898, -0.8276367188, 0.4279785156, 0.2880859375, -0.8862304688, -0.0897216797, -0.0582885742, -1.0703125, -0.1763916016, -0.4172363281, 0.5043945312, -0.6918945312, 0.0814208984, 0.7036132812, 0.45703125, 0.3203125, -0.7197265625, 0.1383056641, -0.4616699219, -0.611328125, -0.2008056641, -1.974609375, 0.52734375, -0.6884765625, -0.3889160156, -0.4389648438, -0.9458007812, 0.4736328125, 0.7885742188, 0.802734375, -0.4245605469, -0.7485351562, 0.6572265625, 0.0665283203, 0.1916503906, 0.0780029297, -0.1761474609, -0.86328125, -0.5454101562, -1.158203125, -1.0537109375, -0.7001953125, 0.3208007812, -0.4892578125, -0.0799560547, 0.6767578125, 0.2541503906, -0.9208984375, -0.2619628906, -1.564453125, 0.607421875, -0.0858764648, 0.0235290527, 0.1232299805, -0.4465332031, -0.5649414062, -0.6005859375, -1.5205078125, 0.2785644531, -0.3540039062, -0.75, -1.1455078125, -0.3332519531, 0.3676757812, -0.4880371094, 0.5595703125, 0.1541748047, 0.6831054688, -0.8056640625, 0.2193603516, 0.0760498047, -0.39453125, -0.8193359375, 0.4055175781, 1.82421875, 0.1467285156, -0.3786621094, 0.6533203125, 1.4384765625, -0.7216796875, 0.705078125, 1.1845703125, -0.2866210938, -0.9975585938, 0.25390625, -0.6118164062, -0.3195800781, -0.0770263672, 0.0593566895, -1.0244140625, -0.6362304688, -0.32421875, 0.1330566406, -0.5395507812, 0.5537109375, 0.096496582, 1.0302734375, 1.3720703125, -0.0001770258, -0.4323730469, 0.7065429688, -0.1685791016, 0.3369140625, 0.1712646484, -0.69921875, -0.0273132324, 0.1905517578, 0.3664550781, -0.5595703125, -1.2265625, 0.0118026733, 0.546875, -0.1497802734, 0.3686523438, 0.3071289062, -0.2543945312, 0.3754882812, 0.8984375, -0.0252990723, 0.0978393555, 0.5922851562, 0.2447509766, -0.3374023438, -0.3803710938, -0.1165161133, 0.6811523438, 0.4067382812, -1.9560546875, 0.1221923828, -0.3000488281, -0.0349731445, 0.3227539062, 1.56640625, 0.2263183594, -0.034576416, -0.0789794922, 0.6860351562, -0.6274414062, 0.943359375, -0.6474609375, 1.3125, 0.1451416016, -0.3454589844, -0.6220703125, 0.0137710571, 0.3637695312, 0.537109375, 0.3020019531, 0.5283203125, 1.154296875, 0.4958496094, -0.2301025391, 0.5087890625, 0.3332519531, -0.1049804688, 0.212890625, 0.0321655273, -0.5786132812, 0.3256835938, -0.0802001953, 0.5209960938, -0.7119140625, 0.2604980469, -1.25390625, 1.2646484375, 0.0060501099, -0.3625488281, 0.2145996094, -0.2504882812, 0.4650878906, 0.4609375, -0.2529296875, 0.2159423828, 0.0842285156, -0.1591796875, 0.3552246094, 0.2678222656, 0.6274414062, 0.0756835938, 0.5278320312, -0.3095703125, -0.4970703125, 0.6396484375, 0.7651367188, -0.0114212036, -0.0504455566, 0.1365966797, 0.0809326172, -0.87109375, 0.4294433594, 0.3237304688, -0.998046875, -0.3854980469, -0.8037109375, -0.0454711914, 0.7783203125, -0.533203125, -0.6484375, -0.0123062134, -0.8559570312, 0.0214691162, 0.3439941406, -0.4270019531, -0.0922241211, -1.0693359375, -0.0297546387, -0.4509277344, 0.2145996094, 0.5942382812, -0.4194335938, -0.9653320312, -0.0889282227, 0.3122558594, -1.0537109375, 0.3034667969, 0.5239257812, 0.6196289062, 0.708984375, 0.4716796875, 0.59375, 0.4409179688, -0.71875, 0.3195800781, 1.1123046875, 0.9169921875, 0.1330566406, -0.1463623047, 0.1373291016, 0.4130859375, 0.4521484375, -0.2563476562, -0.1154785156, -0.0395202637, -1.13671875, 0.564453125, 0.2196044922, 0.0834960938, 0.7841796875, 0.7260742188, 0.2237548828, 0.1506347656, 0.4025878906, -0.3835449219, -1.0546875, 0.7436523438, 0.5146484375, 0.8232421875, 0.6313476562, 0.3771972656, 0.587890625, 0.4404296875, -0.1782226562, 1.162109375, -0.1839599609, -0.5844726562, 0.4897460938, 0.8247070312, 0.4155273438, -0.6157226562, 0.3647460938, 1.0087890625, 0.2912597656, -0.2666015625, 0.4162597656, 0.6625976562, -0.8701171875, -1.775390625, -1.7236328125, 1.580078125, 0.6596679688, 0.53515625, -1.603515625, 0.5327148438, 0.2233886719, 1.076171875, 0.5063476562, -0.6162109375, 0.4206542969, -0.4411621094, -0.4521484375, -0.2868652344, -0.116394043, 0.8159179688, 0.9560546875, -0.4143066406, -0.1630859375, 0.9389648438, -0.1538085938, -0.2883300781, 0.224609375, -1.2119140625, 0.0280456543, 0.5546875, 0.8286132812, -1.099609375, 0.4809570312, -0.1807861328, 0.1997070312, 0.537109375, 0.7690429688, 0.4331054688, -0.6293945312, 0.3818359375, 0.2381591797, -0.2349853516, -0.544921875, 0.2717285156, -0.3525390625, -0.2474365234, 0.2083740234, -0.3620605469, -0.7973632812, -0.501953125, -0.2668457031, -0.728515625, -0.3627929688, -0.2435302734, -0.4074707031, 0.23046875, -0.2788085938, 0.7055664062, 0.8608398438, -0.2932128906, -0.923828125, 0.1145629883, 0.0949707031, 0.4064941406, 0.5322265625, 1.7470703125, 0.4890136719, 0.6254882812, 0.1291503906, 0.75390625, 0.7573242188, -0.2325439453, -0.1676025391, 0.5068359375, -0.4743652344, 0.7290039062, 0.6176757812, -0.0623779297, 0.0750732422, 1.556640625, -0.3327636719, 0.3186035156, -0.5458984375, -0.4265136719, -0.99609375, -0.0299682617, 0.8422851562, 0.4274902344, -0.1879882812, -0.5678710938, 0.5317382812, 0.8168945312, 1.0078125, 0.2536621094, -0.7666015625, -0.1533203125, 0.7338867188, 0.8251953125, 0.7651367188, 0.1343994141, 0.513671875, -0.2438964844, -0.1411132812, -0.0280914307, 0.0130157471, 0.330078125, -0.3125, 0.2060546875, -0.3395996094, -0.9716796875, -0.025604248, 0.3139648438, -0.7504882812, -0.2142333984, 0.9243164062, 0.6987304688, 0.5483398438, 0.337890625, -0.2546386719, 0.1710205078, -0.0112609863, -0.5922851562, -0.1094360352, 1.396484375, -0.7109375, -1.9755859375, -0.7099609375, -0.6772460938, -0.1150512695, -0.0883178711, 0.1505126953, 1.349609375, 0.0946655273, -0.2354736328, 1.078125, -0.9106445312, -0.99609375, -0.2271728516, 1.1171875, -0.2575683594, -0.0040550232, -0.154296875, -0.677734375, -0.2548828125, -0.0968017578, -0.5522460938, 0.0603637695, -0.0789794922, -0.8334960938, -1.275390625, -0.4372558594, 0.8779296875, 0.5048828125, -0.40234375, 0.3608398438, -0.2976074219, 0.69921875, -1.189453125, -0.5405273438, -0.6186523438, 0.1276855469, -0.3576660156, -0.1368408203, 0.2047119141, 0.5576171875, 0.1888427734, 0.0060272217, 0.388671875, 0.6196289062, 1.05859375, -1.0498046875, 0.1981201172, -1.015625, 0.4821777344, -0.1264648438, 1.13671875, -0.5405273438, 0.6875, 0.4487304688, 0.9252929688, -0.4931640625, -0.625, -0.0317687988, -1.7314453125, 0.3210449219, -0.116027832, -0.3430175781, -1.5283203125, 0.5830078125, 0.4858398438, 0.7368164062, 0.6586914062, -0.25390625, -0.5864257812, -0.7270507812, -0.6557617188, 0.1302490234, -0.3740234375, -0.6137695312, 0.7778320312, 0.0927734375, -0.4729003906, -0.3671875, -0.16015625, 0.0966796875, -0.2409667969, -0.0510864258, -0.7534179688, -0.6806640625, 0.1824951172, -0.3049316406, 0.5126953125, -0.3178710938, -1.1689453125, 0.1674804688, 0.080871582, 0.541015625, 0.4609375, -0.6967773438, 0.5834960938, 1.228515625, 0.2651367188, 0.0044517517, 0.8383789062, 0.595703125, 0.7475585938, 0.9604492188, -0.904296875, -0.4074707031, -0.9526367188, -0.1785888672, -0.45703125, 1.0263671875, 0.3369140625, 0.4494628906, 0.9711914062, 1.8330078125, 0.038482666, 0.6303710938, -0.8544921875, -0.5629882812, 0.2785644531, -0.1761474609, -1.2978515625, -0.4169921875, -1.1162109375, -0.1821289062, -0.6401367188, -1.1162109375, 0.1599121094, -0.4895019531, -0.5932617188, 0.62890625, 0.4580078125, 0.5327148438, -0.8657226562, -0.1060791016, 1.333984375, 0.2807617188, 0.0021514893, -0.2963867188, 0.8540039062, 0.2062988281, 0.4770507812, 0.4289550781, 0.0003051758, -0.3471679688, 1.615234375, 0.7578125, -0.3920898438, 0.0213775635, -1.091796875, -0.1657714844, -0.1520996094, 0.6552734375, 0.8466796875, 0.008392334, 0.1030273438, -1.6904296875, -0.0277404785, -0.3854980469, 1.6494140625, -0.6538085938, 0.0997314453, 0.4367675781, -0.0321044922, 0.0044250488, 0.0629272461, 2.03515625, -0.2485351562, 0.3259277344, -0.4802246094, 0.089050293, 0.2670898438, -0.0723266602, 0.5092773438, 0.4348144531, -0.8295898438, -0.0361633301, 1.109375, 0.1055297852, 0.509765625, -0.95703125, 1.2685546875, 0.7592773438, -0.6201171875, 1.0048828125, 1.0966796875, -0.8393554688, -1.1435546875, -1.1494140625, 0.3251953125, 0.3347167969, 0.224609375, -0.2873535156, -0.0029125214, -0.1762695312, -0.7578125, -0.4509277344, 0.2233886719, -0.0039138794, 0.2277832031, -0.1790771484, -0.6767578125, 0.4035644531, -0.0531005859, 0.1331787109, -1.17578125, 0.2244873047, 0.3139648438, -1.080078125, 0.0574035645, -0.3029785156, -0.3955078125, -0.2169189453, -0.3305664062, -0.7993164062, -0.2344970703, 0.1001586914, -0.8461914062, -0.0252838135, 0.0049171448, 0.8349609375, 0.0089416504, -0.205078125, 0.0468444824, -0.0997924805, 1.09765625, -0.4938964844, -0.6000976562, -0.2707519531, 0.3625488281, -0.2905273438, 0.0919189453, 0.2386474609, 0.0402526855, -0.4108886719, -1.65625, -0.1842041016, -0.0903930664, 0.4526367188, 0.51953125, 0.0186157227, -0.8818359375, -0.7690429688, 0.3308105469, 0.0257568359, -0.5190429688, 0.2044677734, -1.412109375, 1.068359375, -0.1173095703, 1.1640625, 0.73828125, 0.4641113281, 0.0913085938, -0.0935668945, 0.4733886719, 0.162109375, -0.3969726562, -0.3913574219, -0.501953125, 0.0488891602, -0.5151367188, -0.3366699219, -0.1708984375, 0.4787597656, -0.3479003906, 0.2387695312, -0.5024414062, 0.1694335938, -1.88671875, -0.6455078125, 0.3393554688, -0.7543945312, 0.4184570312, -0.3967285156, 0.5537109375, 0.0544433594, 1.5380859375, -0.3615722656, -0.0323181152, 0.0392456055, 0.78125, -0.1423339844, -0.2408447266, -0.3657226562, 0.5415039062, -0.0843505859, -1.05859375, 0.0128479004, 0.0150756836, -1.4150390625, -0.2156982422, 0.7890625, -0.2548828125, 0.6225585938, 0.2407226562, -0.3068847656, -0.4133300781, -1.224609375, 0.697265625, 0.8432617188, -0.2800292969, 0.521484375, -0.0836181641, -0.3415527344, -0.1665039062, -0.3801269531, 0.0204620361, -0.3359375, -0.4265136719, 0.5747070312, -0.3325195312, -0.8090820312, 0.9633789062, 0.0262756348, 0.4448242188, 0.0422058105, 0.931640625, 0.0571594238, -0.5009765625, -0.2995605469, -0.2770996094, -0.0024280548, 0.587890625, -0.1007080078, -0.4892578125, -0.705078125, 0.3974609375, 0.7348632812, 0.2946777344, 0.3728027344, 0.4111328125, 0.6728515625, -0.5625, 0.662109375, 0.1111450195, 0.8876953125, 0.3537597656, -0.560546875, 0.7299804688, -0.4184570312, -0.4006347656, -0.3283691406, -0.4128417969, 0.9438476562, -1.1845703125, 0.3908691406, 0.030670166, 0.5434570312, 0.3603515625, -0.3488769531, -0.3193359375, 0.5322265625, -0.4504394531, 0.0177154541, -0.3974609375, -0.6655273438, -0.3920898438, 0.0766601562, -0.2661132812, 0.6372070312, -0.3369140625, 0.4619140625, 1.14453125, -0.7963867188, -0.1209716797, 0.5791015625, -0.3503417969, 0.5639648438, -0.1110229492, 0.4914550781, 0.2292480469, -0.0169067383, -12.53125, -1.390625, -0.560546875, -1.6015625, -0.3466796875, -0.8608398438, -0.1628417969, -0.5229492188, -0.5151367188, -0.6040039062, 1.0634765625, 0.8735351562, -0.7416992188, 0.5986328125, 0.330078125, -0.60546875, -0.2221679688, -0.314453125, -0.2086181641, 0.5571289062, 0.3054199219, 0.2819824219, -1.515625, -0.3562011719, -0.4660644531, -0.2531738281, 0.0312805176, -0.6870117188, 0.5908203125, 0.0087661743, -0.6577148438, -0.1274414062, -1.1162109375, 0.0681762695, 0.1400146484, 0.2293701172, -0.2993164062, -0.580078125, -0.2956542969, -0.1433105469, 1.5947265625, -0.5170898438, -0.525390625, 0.3806152344, -0.634765625, 0.3059082031, -0.1252441406, -1.052734375, 0.1407470703, 0.2427978516, 0.1531982422, 1.05859375, 0.1278076172, -0.2329101562, -0.7099609375, 0.6440429688, 1.2724609375, -0.0258483887, -0.3840332031, -0.13671875, -2.34765625, 0.1444091797, -1.037109375, 0.3376464844, 0.4438476562, 0.0911865234, -0.1123657227, -0.6586914062, 0.7900390625, -0.6787109375, 0.0731201172, -1.3515625, 0.2534179688, 1.3857421875, 0.3623046875, 0.6499023438, 0.7690429688, 0.2580566406, 0.3662109375, -0.0365905762, -0.9052734375, 0.1512451172 ]
The responsometers are now described as containing an "artificial soul" invented by Doc Magnus, as inspired by T. O. Morrow, who is revealed to have taught him at college and to have been the only one not to laugh at Magnus's theories. After the unexplained dismantling of the Metal Men, Doc Magnus is unable to recreate these souls and restore their personalities. He now takes Prozac for the bipolar disorder which caused his nervous breakdown and the depression which led to the creation of the Plutonium Man, a tremendous, nearly indestructible superweapon based upon the Metal Men, but with Magnus' then-own deranged, twisted worldview as its operating system. It is implied that although the medication is keeping Magnus from doing anything irrational, it is also deadening his imagination and creativity and that this is the reason he can not recreate the Metal Men. Magnus is approached by government agents hoping to use the Metal Men as soulless smart weapons, an offer Magnus rejects. Through all of this, Magnus visits Morrow in his cell in Haven. Morrow warns Magnus that there have been numerous abductions of "mad" scientists, including Doctor Sivana, whose lair Magnus investigates. Eventually Morrow himself disappears, leaving a note for his former student with a string in machine code. Using the code, Magnus is able to revive Mercury, but his robotic friend and creation is apparently destroyed again while trying to save him from the conspiracy trying to kidnap every mad scientist in the DCU.
[ -0.4440917969, -1.28515625, 0.3996582031, 0.2481689453, -0.4814453125, 0.1481933594, 0.5649414062, -0.4060058594, -1.65234375, 0.1217041016, 0.1916503906, -0.1791992188, -0.7587890625, 1.16796875, -0.6044921875, 0.2517089844, 0.8935546875, -0.6005859375, -0.1284179688, 0.5952148438, 0.400390625, 0.0372619629, -0.54296875, -0.2932128906, -1.265625, 1.28515625, 0.6401367188, -0.5356445312, -0.4677734375, -0.931640625, -0.3269042969, -0.3732910156, -1.541015625, 0.3254394531, -0.0896606445, 0.142578125, 0.4372558594, -0.2235107422, 0.2653808594, 0.576171875, -0.4985351562, 0.2060546875, -0.0993652344, -0.1806640625, 0.3640136719, -0.4055175781, 0.4213867188, 0.0584411621, -0.010848999, 0.2727050781, -1.1201171875, 0.3483886719, 0.4011230469, 0.3974609375, 0.177734375, -0.24609375, 0.1796875, -0.6303710938, -0.1462402344, 0.2177734375, 0.0361938477, 0.5512695312, -0.5380859375, -0.9462890625, -0.4938964844, -0.1948242188, 0.2731933594, 0.796875, -0.3225097656, -0.1911621094, 0.107421875, 0.4265136719, 0.2563476562, 0.0072860718, 0.4736328125, -0.5693359375, -0.8393554688, 0.8627929688, 0.2827148438, -1.3818359375, -0.0786132812, -0.9897460938, -0.517578125, 0.517578125, -0.2705078125, -1.3515625, 0.4597167969, -0.5546875, -0.1932373047, 0.9936523438, 0.0044631958, -0.5629882812, 0.0216522217, 0.5395507812, 0.5991210938, -1.392578125, -0.8642578125, -1.796875, -1.1689453125, 0.6591796875, -0.3439941406, -0.640625, 0.3073730469, -0.0339050293, 0.0883789062, 2.103515625, 0.1014404297, -0.7587890625, -0.4873046875, -0.6630859375, -0.1346435547, 0.2196044922, 0.3063964844, 0.0101394653, -0.9360351562, 0.5620117188, -0.4255371094, 0.0390319824, -0.421875, 0.837890625, 0.1560058594, -0.0074272156, -0.0870361328, 0.0768432617, 0.1635742188, 0.1440429688, -0.4870605469, -0.5947265625, 0.2749023438, 0.6875, -0.0919189453, 0.096496582, -0.0402832031, -0.630859375, 0.1442871094, -0.7241210938, -0.6596679688, 0.1845703125, 0.0467529297, -0.3410644531, -0.4379882812, -0.7900390625, 0.7641601562, 0.75390625, -0.5908203125, 0.6303710938, -0.1166992188, 0.8911132812, 0.1727294922, 0.6870117188, -1.388671875, 0.3784179688, 0.0806884766, 0.0650634766, 0.591796875, -0.6176757812, -0.8002929688, -0.1596679688, -0.5874023438, -0.6450195312, -0.3286132812, -1.2841796875, 0.1904296875, 1.072265625, -0.7138671875, -0.0803833008, 0.2415771484, -0.3083496094, -0.3879394531, -0.0212249756, -0.0164642334, 0.1278076172, 0.685546875, -0.4333496094, 0.6567382812, -0.8784179688, 0.537109375, -1.671875, 0.1768798828, -0.966796875, 0.1622314453, -2.833984375, 0.494140625, -0.5805664062, -0.54296875, -0.9892578125, 0.0930175781, 0.3991699219, -0.466796875, -0.4360351562, -0.2322998047, -1.5400390625, -0.1921386719, -0.8857421875, 0.2291259766, -0.8408203125, 0.57421875, 0.6958007812, 0.0564880371, 0.1794433594, -0.6186523438, -0.1364746094, 0.0871582031, -0.0712890625, -0.1154785156, -1.7109375, 0.4228515625, -0.3046875, -0.3181152344, -0.34765625, -1.0029296875, 0.0576171875, 0.673828125, -0.3571777344, -0.3251953125, 0.1826171875, 0.6157226562, -0.4504394531, -0.1973876953, -0.0780639648, 0.2183837891, -0.625, -1.2607421875, -0.9526367188, -1.291015625, -0.2854003906, 0.4016113281, 0.0575866699, -0.0521850586, 0.9897460938, 0.2126464844, -0.7934570312, -0.4450683594, -0.8032226562, 0.6923828125, -0.2177734375, -0.1006469727, -0.4462890625, 0.5893554688, -1.0859375, 0.2980957031, -1.2880859375, 0.1721191406, -0.3615722656, -0.41015625, -0.2990722656, 0.0938720703, 0.3344726562, -0.2183837891, 0.5532226562, -0.1567382812, 0.2761230469, -0.1820068359, 0.5561523438, -0.0573120117, -0.0520629883, -0.9663085938, 0.5014648438, 1.296875, 0.5712890625, -0.0708007812, 0.9765625, 1.6416015625, -0.544921875, 1.1181640625, 1.00390625, 0.0903320312, -0.7958984375, 0.1150512695, -0.82421875, -0.345703125, 0.2553710938, -0.0717163086, -0.5532226562, -0.4213867188, 0.4243164062, 0.2260742188, -0.1086425781, 0.998046875, 0.0429077148, 0.8618164062, 1.0146484375, 0.0017976761, 0.0299835205, 0.4343261719, -0.0996704102, -0.0881958008, 0.102722168, -0.1828613281, -0.2297363281, -0.2758789062, 0.2680664062, -0.3251953125, -0.4228515625, 0.3317871094, 0.7890625, -0.1895751953, 0.533203125, 0.9716796875, 0.2452392578, 0.1647949219, 0.9047851562, 0.0323791504, 0.26953125, 0.5795898438, 0.5141601562, -0.7729492188, -0.66015625, 0.2780761719, 0.8032226562, 0.3999023438, -2.232421875, 0.6328125, -0.474609375, 0.0971679688, 0.4931640625, 1.880859375, 0.2663574219, -0.5239257812, -0.108215332, 0.42578125, -0.4594726562, 0.65234375, -0.8471679688, 1.2861328125, -0.1475830078, -0.859375, -0.53125, 0.0554504395, 0.5073242188, 0.5092773438, 0.1968994141, 0.0609741211, 0.5307617188, 0.8471679688, -0.3383789062, 0.1036376953, 0.6240234375, -0.1966552734, 0.2958984375, 0.2016601562, -0.765625, -0.2158203125, 0.047088623, 0.6884765625, -0.0830078125, 0.063659668, -0.8037109375, 0.7607421875, -0.0232849121, -0.1997070312, 0.4685058594, -0.4951171875, 0.2196044922, 0.5092773438, -0.3601074219, -0.3698730469, -0.0487365723, -0.716796875, 0.3237304688, 0.6938476562, 0.6640625, -0.3200683594, 0.4501953125, -0.7685546875, -0.6635742188, 0.4772949219, 0.806640625, 0.0119247437, 0.2259521484, -0.5112304688, -0.634765625, -1.09765625, -0.1072998047, 0.6196289062, -1.1015625, -0.443359375, -0.1871337891, -0.2437744141, 0.2827148438, -0.7592773438, -0.1447753906, -0.1102905273, -0.7416992188, -0.0286560059, 0.5556640625, -0.5600585938, 0.5034179688, -0.9775390625, -0.1949462891, -0.3493652344, 0.3361816406, 0.7211914062, 0.0908203125, -0.1041259766, -0.2631835938, 0.625, -1.7548828125, 0.0719604492, 0.0206298828, 0.2849121094, 0.0085220337, 0.6733398438, 0.8486328125, 0.5317382812, -0.3498535156, 0.7729492188, 1.3427734375, 0.8095703125, 0.1274414062, 0.0001958609, 0.32421875, 0.8544921875, 0.3061523438, -0.4091796875, 0.0563049316, -0.0926513672, -0.2614746094, 0.7241210938, 0.57421875, -0.1695556641, 0.3601074219, 1.15234375, 0.3337402344, 0.024887085, 0.2497558594, -0.6137695312, -1.1640625, -0.2626953125, 0.102355957, 1.228515625, 0.7084960938, 0.5346679688, 0.1270751953, 0.6801757812, -0.716796875, 0.7895507812, 0.2644042969, 0.599609375, 0.8271484375, 0.7836914062, 1.1494140625, -0.4858398438, 0.3247070312, 1.0498046875, 1.1357421875, -0.2100830078, 0.6528320312, 0.3349609375, -0.6264648438, -1.6513671875, -1.478515625, 1.427734375, 0.098815918, 0.3547363281, -1.6767578125, 0.9150390625, 0.5224609375, 0.8676757812, 0.6923828125, -0.3720703125, 0.4985351562, 0.0845947266, -0.8212890625, -0.1663818359, -1.1474609375, 0.4250488281, 0.849609375, -0.2165527344, 0.3063964844, 0.857421875, 0.3872070312, -0.4741210938, 0.0603942871, -0.55078125, 0.1929931641, 0.5805664062, 0.2464599609, -0.3288574219, 0.6069335938, -0.0847167969, 0.6538085938, 0.4953613281, 0.9223632812, 0.6318359375, -0.5971679688, -0.0269470215, 0.0979614258, 0.0963745117, -0.0079727173, -0.0345458984, -0.0340576172, 0.2486572266, 0.2385253906, -0.25390625, -0.4321289062, -0.3562011719, -0.7563476562, -0.9814453125, -0.81640625, -0.6362304688, -0.6796875, 0.3947753906, -0.0033149719, 0.1403808594, 1.4306640625, -0.3112792969, -0.650390625, -0.1790771484, -0.3254394531, 0.2265625, 0.7041015625, 2.25, 0.3359375, 0.560546875, 0.5126953125, 0.697265625, 0.6333007812, -0.2575683594, 0.0892944336, 0.2142333984, -0.416015625, 0.2291259766, 0.2221679688, -0.1956787109, 0.0190734863, 1.33984375, -0.0595703125, 0.0120773315, -0.5034179688, -0.533203125, -1.126953125, -0.1823730469, 0.078918457, 0.6118164062, -0.693359375, -0.28515625, 0.60546875, 0.2551269531, 0.5078125, -0.2153320312, -0.611328125, -0.1771240234, 0.4067382812, 1.0205078125, 0.2563476562, -0.2336425781, 0.861328125, -0.4645996094, -0.0377807617, 0.4343261719, -0.0672607422, 0.4416503906, -0.4895019531, 0.8798828125, -0.7353515625, -1.0078125, -0.6958007812, 0.5302734375, -0.326171875, 0.1018066406, 0.6494140625, 0.6025390625, 0.5166015625, -0.1802978516, -0.0517272949, 0.0609436035, -0.0342712402, -0.2802734375, 0.2115478516, 1.2431640625, -1.1865234375, -2.13671875, 0.1078491211, -1.255859375, -0.5229492188, 0.4660644531, 0.5986328125, 0.3825683594, -0.6020507812, -0.2922363281, 0.6640625, -0.8217773438, -0.2326660156, 0.4709472656, 0.9013671875, 0.439453125, -0.1652832031, -0.1208496094, -0.794921875, -0.47265625, 0.29296875, -0.298828125, 0.0611572266, -0.1538085938, -0.44140625, -1.126953125, 0.19921875, 0.2580566406, 0.625, -0.2629394531, 0.5209960938, -0.2496337891, 0.4619140625, -0.638671875, -0.6264648438, -0.3974609375, 0.3474121094, 0.4396972656, 0.2741699219, 0.2692871094, 0.7724609375, 0.58203125, -0.1198730469, 0.4282226562, 0.369140625, 0.3193359375, -0.5166015625, -0.2012939453, -1.5341796875, 0.54296875, -0.0969238281, 1.0615234375, -0.7109375, 0.2941894531, 0.3820800781, 0.9453125, 0.0615539551, -0.0949707031, -0.9169921875, -1.5966796875, 0.0537414551, -0.1146240234, -0.24609375, -1.248046875, 1.0732421875, 0.1223754883, 1.22265625, 0.1450195312, 0.3046875, -0.9482421875, -0.8530273438, -0.4331054688, 0.2069091797, -0.5859375, -0.58984375, 0.3405761719, -0.1298828125, -0.7358398438, -0.5830078125, 0.2492675781, 0.3449707031, 0.2467041016, 0.1676025391, -0.7475585938, -1.20703125, -0.0115127563, -0.5732421875, 1.0771484375, -0.0546875, -1.544921875, 0.1008911133, -0.5693359375, 0.0141296387, 0.5927734375, -0.7661132812, 0.4094238281, 0.7475585938, 1.0234375, -0.5009765625, 1.4921875, 0.1550292969, 0.3889160156, 0.7265625, -1.0498046875, -0.935546875, -0.2468261719, -0.4086914062, -0.3688964844, 1.2314453125, 0.2056884766, 0.5932617188, 0.8212890625, 1.939453125, 0.1977539062, 0.8154296875, -1.181640625, -0.077331543, 0.943359375, -0.548828125, -1.01953125, -0.0651855469, -1.0830078125, -0.8051757812, -0.4289550781, -1.1201171875, -0.158203125, -0.08203125, -0.64453125, 0.1044921875, 0.2092285156, -0.1312255859, -1.0947265625, 0.1878662109, 1.3671875, 0.3466796875, -0.6733398438, -0.5590820312, 0.6689453125, 0.4011230469, 0.3627929688, 0.6684570312, -0.2580566406, -1.1123046875, 0.689453125, 0.4409179688, 0.1419677734, 0.2810058594, -1.3642578125, 0.3078613281, -0.1936035156, 0.8662109375, 1.287109375, 0.0359802246, -0.0406494141, -1.9541015625, 0.0722045898, -0.623046875, 1.46875, -0.6235351562, -0.2741699219, 0.271484375, -0.1177978516, 0.3515625, 0.1143798828, 2.513671875, 0.0488586426, 0.7114257812, 0.1158447266, -0.4904785156, 0.2077636719, 0.1674804688, 0.4802246094, 0.4797363281, -0.6328125, -0.2863769531, 0.783203125, -0.0039634705, -0.3901367188, -1.1728515625, 0.9638671875, 0.564453125, -0.298828125, 0.6791992188, 0.869140625, -0.4719238281, -1.232421875, -1.3095703125, 0.3774414062, 0.3227539062, 0.1116333008, -0.4460449219, 0.0192565918, -0.0516357422, -0.4982910156, -0.5083007812, -0.1010742188, 0.0942993164, -0.2319335938, -0.2270507812, -0.7788085938, 0.9189453125, -0.3254394531, 0.0667114258, -0.9038085938, 0.1042480469, 0.7016601562, -1, -0.0141220093, -0.2407226562, 0.3332519531, -0.0137557983, -0.1721191406, -1.1015625, -1.0078125, 0.37109375, -0.6606445312, -0.8198242188, 0.1640625, 0.5419921875, -0.0530090332, -0.0745849609, -0.125, 0.2092285156, 1.533203125, -0.4018554688, -0.5922851562, 0.1528320312, -0.2319335938, -0.8330078125, 0.2485351562, -0.0888671875, 0.1845703125, -0.2814941406, -1.3154296875, -0.3735351562, -0.5087890625, 0.1165771484, 0.322265625, 0.2495117188, -0.2734375, -0.498046875, 0.1035766602, 0.0338134766, -0.7138671875, 0.1892089844, -1.4599609375, 0.501953125, -0.0432434082, 0.8891601562, 0.2687988281, 0.4326171875, -0.1889648438, -0.1970214844, 0.5747070312, 0.5014648438, -0.4099121094, 0.1872558594, -0.5229492188, 0.0321960449, -0.4372558594, -1.134765625, -0.3779296875, 0.2453613281, 0.25, 0.0814819336, -0.7377929688, 0.630859375, -1.4189453125, -0.2260742188, -0.1105957031, -0.185546875, 0.3715820312, 0.1099243164, -0.0249023438, -0.5078125, 1.3544921875, -0.4704589844, -0.3203125, -0.0193634033, 0.2600097656, -0.5356445312, -0.5317382812, -0.5673828125, 0.2451171875, -0.2485351562, -1.0458984375, 0.58203125, 0.296875, -0.810546875, -0.2944335938, 0.73046875, 0.0637207031, 0.232421875, -0.0950317383, -0.3967285156, -0.8715820312, -1.015625, 1.0400390625, 0.3427734375, -0.3640136719, -0.1676025391, 0.1326904297, -0.76171875, -0.2963867188, -0.0400085449, -0.3479003906, -0.2211914062, -0.6284179688, 1.197265625, -0.7104492188, -0.4287109375, 0.919921875, 0.0369567871, 0.8525390625, -0.203125, 1.1591796875, 0.4875488281, -0.7407226562, -0.224609375, 0.1469726562, -0.1501464844, 0.3693847656, 0.2335205078, -0.3256835938, -0.0756835938, 0.3864746094, 0.87890625, -0.0493774414, -0.3474121094, 0.1047973633, 0.5239257812, -1.1337890625, 0.7744140625, -0.1396484375, 0.4104003906, 0.4216308594, -0.703125, 0.8881835938, -0.0427856445, -0.3918457031, -0.9135742188, -0.2729492188, 1.341796875, -1.0234375, -0.2741699219, -0.1208496094, 0.8486328125, 0.0101470947, -0.1198120117, 0.2878417969, 0.3330078125, -1.0078125, -0.2873535156, -0.1658935547, -0.8525390625, -0.2176513672, 0.9370117188, 0.0893554688, 0.5415039062, -0.2844238281, 0.3239746094, 0.4416503906, -0.1188964844, -0.2919921875, 0.1160888672, 0.0165863037, 0.5844726562, 0.0944824219, 0.54296875, 0.3588867188, 0.0873413086, -12.5234375, -0.8911132812, -0.361328125, -1.8447265625, -0.7670898438, -0.6591796875, -0.1547851562, -0.6630859375, -0.1846923828, -0.8227539062, 1.50390625, 0.7490234375, -0.4665527344, 0.3513183594, -0.0899047852, -0.0993041992, -0.0820922852, 0.0233001709, -0.2553710938, 1.0673828125, 0.1032104492, 0.1638183594, -1.283203125, -0.4575195312, -1.1728515625, -0.4091796875, -0.2666015625, -0.51171875, 0.4423828125, 0.0592651367, -0.0397033691, 0.2985839844, -1.3203125, 0.2744140625, 0.4558105469, 0.1405029297, -0.1186523438, -1.0126953125, 0.1508789062, 0.0366210938, 1.001953125, -0.1102294922, -0.2042236328, 0.8237304688, -0.9755859375, -0.0598144531, -0.1254882812, -0.4562988281, 0.6401367188, 0.6982421875, 0.1579589844, 1.376953125, -0.2827148438, -0.4721679688, -0.6264648438, 0.578125, 0.9252929688, 0.3522949219, -0.44140625, -0.2749023438, -1.615234375, 0.2868652344, -1.32421875, 0.3986816406, 0.375, 0.1345214844, -0.1009521484, -0.6923828125, 1.3388671875, -0.5708007812, -0.20703125, -1.572265625, 0.3859863281, 0.3996582031, 0.443359375, 0.7543945312, 0.9506835938, 0.0975341797, 0.365234375, 0.0064125061, -0.80078125, -0.2341308594 ]
During Week 22, mindless replicas of the Metal Men force Magnus to escape from his burned house before he is captured by what is revealed to be a separate group "Chang Tzu's Science Squad". This would be the second time Magnus has confronted Chang Tzu. A previous incarnation of the villain once managed to brainwash the Metal Men, but their loyalty to Magnus restored their rightful minds. This group is based on Oolong Island (said to be part of the territory of China) and has been responsible for the disappearing scientists (including Professor Morrow). The group is being financed by Intergang with the collusion, it is implied, of the Chinese government. The assembled scientists have been given unlimited budgets to invent various super weapons including, in particular, various types of robots. During Week 23, a giant robot, piloted by animals from Intergang, delivers Doc Magnus to Oolong Island. Magnus is assigned to design and construct a new Plutonium Man robot, but deliberately makes little progress, saying to Morrow that the original Plutonium Man was an expression of his pain and rage brought on by his mental illness and that the reason he takes his medication is to prevent himself from doing something like that again. Morrow reveals this to the Island's leaders and Magnus's medication is confiscated. Magnus then proceeds to work on Plutonium Man, saying this time he will "do it right". Though he is unstable due to his lack of medication, Magnus is not fully co-operating with Chang Tzu.
[ -0.4223632812, -0.2924804688, 0.4465332031, -0.1221923828, -0.6357421875, 1.0458984375, 0.0763549805, -0.2182617188, -0.921875, -0.7783203125, -0.3752441406, -0.0208435059, -0.3386230469, 1.140625, -1.16015625, 0.2856445312, 0.2174072266, -0.8549804688, -0.4887695312, 0.4619140625, -0.0753173828, -0.1119384766, -0.568359375, 0.1193847656, -1.30859375, 0.4440917969, 0.5244140625, -0.1065673828, -0.0104141235, -1.552734375, -0.1257324219, -0.4289550781, -2.318359375, -0.0975341797, -0.2001953125, -0.4787597656, 0.3337402344, -0.0148773193, 0.4304199219, -0.3894042969, -0.5034179688, -0.3930664062, 0.2124023438, -0.66015625, 1.2470703125, 0.1119384766, -0.1251220703, 0.4458007812, -0.2314453125, -0.1940917969, -1.1025390625, 0.6069335938, -0.1352539062, 0.3283691406, -0.0752563477, -0.4685058594, -0.4318847656, 0.1116333008, 0.2397460938, 0.5180664062, 0.2026367188, 0.408203125, -0.5756835938, -1.2412109375, -0.697265625, 0.2155761719, 0.3112792969, -0.4675292969, -0.1741943359, -0.2985839844, -0.4755859375, 0.2561035156, -0.3645019531, 0.8217773438, -0.455078125, -0.9858398438, -0.6962890625, 1.16015625, 0.0838012695, -1.28125, 0.3862304688, -0.9140625, -0.6728515625, -0.1861572266, -0.52734375, -1.49609375, 0.4038085938, -1.177734375, 0.8999023438, 0.796875, -0.1602783203, -0.5854492188, -0.3515625, 0.4501953125, 0.1759033203, -0.8276367188, -0.5522460938, -1.78515625, -1.15234375, 0.8188476562, -0.525390625, 0.1045532227, -0.7026367188, 0.2290039062, 0.552734375, 2.814453125, 0.0921630859, -0.5673828125, -0.5883789062, -0.21875, 0.1470947266, 0.1774902344, -0.1583251953, -0.2403564453, -0.583984375, 0.9389648438, -0.2448730469, -0.4965820312, -0.0492858887, 0.849609375, 0.1262207031, -0.1137084961, -0.0316772461, 0.107421875, 0.1994628906, 0.33203125, -0.2259521484, -0.0030632019, 0.3918457031, -0.0256347656, -0.0991210938, -0.0392150879, -0.3383789062, 0.2294921875, 0.10546875, -0.4916992188, -0.5029296875, 0.1411132812, 0.1994628906, -0.3012695312, -0.4345703125, -0.2124023438, 0.4890136719, 1.267578125, -0.0682373047, 0.2340087891, -0.5600585938, 0.619140625, -0.3984375, 0.546875, -0.7177734375, 0.4187011719, 0.1892089844, 0.4641113281, 0.3559570312, -0.4020996094, -0.4135742188, -0.0385437012, -0.2727050781, -0.251953125, -0.1447753906, -0.7504882812, -0.798828125, 0.59375, -0.5444335938, 0.2041015625, -0.1374511719, -0.0878295898, -0.1199951172, 0.2491455078, -0.0698242188, -0.2154541016, 0.5209960938, -0.1733398438, 0.5024414062, -0.828125, 0.0853881836, -1.158203125, 0.6733398438, -1.11328125, 0.6264648438, -1.947265625, 1.0498046875, -0.6557617188, -0.9833984375, -0.6518554688, 0.3791503906, -0.0407409668, -0.6669921875, -0.75390625, 0.2073974609, -1.1015625, -0.2320556641, -0.0800170898, 0.1635742188, -0.4362792969, 0.8793945312, 1.453125, -0.3146972656, 0.1878662109, -0.66796875, 0.0614929199, -0.3601074219, -0.4892578125, 0.2266845703, -1.8759765625, 0.8388671875, 0.8881835938, -0.2235107422, -0.1629638672, -1.2119140625, -0.6630859375, 0.1474609375, 0.4245605469, 0.1942138672, -0.515625, -0.0255889893, 0.4145507812, -0.0744018555, -0.3801269531, -0.7421875, -1.2568359375, -0.904296875, -1.095703125, -0.462890625, -0.4213867188, 0.1961669922, 1.0390625, 0.4721679688, 0.7451171875, -0.011100769, -0.216796875, 0.0555725098, -0.9741210938, 0.8896484375, -0.2459716797, -0.0391845703, -0.5014648438, -0.1473388672, -1.341796875, -0.3215332031, -1.5107421875, 0.5170898438, -0.7333984375, -0.2078857422, -0.7412109375, 0.0298461914, 0.0911254883, -0.3044433594, 0.1824951172, 0.0347595215, 0.6220703125, -0.8544921875, 0.306640625, -0.3210449219, -0.5688476562, -0.8427734375, -0.0017986298, 0.689453125, 0.5439453125, 0.063293457, 0.623046875, 1.353515625, -0.732421875, 0.2719726562, 0.3439941406, 0.1409912109, -1.2705078125, -0.4907226562, -0.0265045166, -0.5830078125, 0.9047851562, -0.1953125, -0.1658935547, -0.6430664062, 0.4157714844, 0.0332336426, 0.2322998047, 0.5693359375, 0.2741699219, 0.82421875, 0.5561523438, -0.6171875, 0.2556152344, 0.8627929688, -0.6259765625, -0.4377441406, -0.0914916992, -0.0745239258, -0.1962890625, -0.0581054688, 0.5073242188, 0.2435302734, 0.3110351562, -0.4699707031, 0.8735351562, -0.0457458496, -0.3454589844, 0.6069335938, 0.0142211914, -0.1494140625, 1.2412109375, 0.1617431641, -0.2717285156, 0.6870117188, 0.7153320312, -1.146484375, -0.3098144531, 0.0385742188, 0.9765625, -0.2241210938, -1.4931640625, 0.2551269531, -0.1273193359, 0.4428710938, -0.0647583008, 1.8671875, 0.1171264648, -0.3193359375, -0.2165527344, 0.2481689453, -1.0869140625, 0.5244140625, -1.1044921875, 0.3881835938, 0.2176513672, -0.4838867188, -0.62109375, 0.3940429688, 0.0237731934, 0.509765625, 0.077331543, 0.1518554688, 0.1823730469, 1.0078125, -0.1837158203, 0.9936523438, 0.8818359375, 0.1622314453, -0.5029296875, 0.8266601562, 0.2043457031, -0.1184082031, -0.2490234375, 0.22265625, -0.33203125, 0.3154296875, -0.88671875, -0.1270751953, 0.1337890625, -0.0465698242, 0.1889648438, -0.59765625, -0.6142578125, 0.3364257812, 0.1768798828, -0.1846923828, -0.4304199219, -0.3486328125, -0.2746582031, 0.306640625, 0.2685546875, -0.0656738281, 0.0007100105, -0.3510742188, -0.6518554688, 0.3559570312, 0.5810546875, 0.0096969604, -0.1319580078, 0.3173828125, 0.0624694824, -0.9477539062, 0.3522949219, 1.20703125, -0.9467773438, -0.9736328125, 0.0711669922, -0.0933227539, 0.54296875, 0.017791748, 0.0653076172, -0.3005371094, -1.2138671875, -0.7592773438, 1.205078125, 0.2651367188, 0.5014648438, -0.935546875, -0.72265625, -0.5107421875, 0.7421875, 0.173828125, 0.0511169434, -0.7426757812, -0.2502441406, 1.330078125, -1.4755859375, -0.9438476562, 0.1369628906, 0.1259765625, 0.1162109375, 0.6611328125, 0.8046875, 1.1279296875, -0.5834960938, 0.623046875, 1.2802734375, -0.2883300781, 0.3928222656, 0.1198730469, 0.5068359375, 0.2951660156, -0.5380859375, -0.1356201172, 0.744140625, 0.671875, -0.7529296875, 1.3486328125, 0.2810058594, -0.3012695312, -0.537109375, 0.5205078125, 0.2958984375, 0.3454589844, -0.1248779297, -0.5756835938, 0.0911254883, -0.6479492188, 0.1491699219, 1.2607421875, 0.994140625, 0.0998535156, 0.1831054688, 0.2103271484, -0.0147399902, 0.1651611328, -0.2471923828, 0.2783203125, 1.3291015625, 0.9287109375, 1.0009765625, -0.0280609131, -0.5712890625, 0.82421875, 0.73046875, 0.0044021606, 0.1934814453, 0.8608398438, -0.0606384277, -0.9931640625, -1.5146484375, 1.01171875, -0.2290039062, 0.5649414062, -0.9951171875, 0.4753417969, 0.3779296875, -0.1635742188, 0.1789550781, 0.0310974121, 0.591796875, 0.1260986328, -1.166015625, -0.1662597656, -1.45703125, 0.0659790039, 0.625, 0.1157226562, 0.0517883301, 0.7729492188, 0.3210449219, -0.40625, 0.0983886719, -0.76171875, 0.5517578125, 0.5571289062, 0.5424804688, -0.0223083496, 0.6625976562, -0.1561279297, 1.4248046875, 0.412109375, 0.591796875, 0.2073974609, -0.1205444336, -0.1607666016, 0.5366210938, -0.4001464844, 0.2110595703, 0.2485351562, -0.1911621094, -0.7553710938, 1.0185546875, -0.3559570312, 0.067565918, -0.2371826172, -0.2880859375, -0.4580078125, -0.8969726562, -0.5395507812, -0.3537597656, -0.5659179688, 0.3640136719, -0.3461914062, 0.947265625, -0.5029296875, -0.7890625, -0.2629394531, 0.0285186768, 0.1413574219, 0.572265625, 1.607421875, 0.3481445312, -0.0322265625, -0.1383056641, -0.0397338867, 0.8857421875, 0.073059082, 0.1469726562, 0.4575195312, -0.0410766602, 0.3596191406, 0.8862304688, -0.482421875, 0.8452148438, 1.216796875, -0.4487304688, 0.1418457031, 0.1193847656, -0.2868652344, -1.4541015625, -0.5180664062, 0.4956054688, 0.5166015625, -1.0947265625, -0.1379394531, 0.1175537109, 0.6875, -0.3771972656, 0.1981201172, -0.86328125, 0.0895385742, -0.3679199219, 1.3955078125, -0.0083236694, 0.3303222656, 1.4248046875, -0.2534179688, 0.2015380859, 0.7446289062, -0.263671875, 0.1428222656, 0.0794067383, 0.3669433594, -0.5908203125, -0.7661132812, -0.3796386719, 0.0411987305, -0.7768554688, -0.0531616211, 0.55078125, 0.4345703125, 1.0576171875, 0.3566894531, 0.4230957031, -0.4006347656, 0.2446289062, -0.6376953125, 0.4509277344, 0.4326171875, -1.08984375, -1.5029296875, 0.3994140625, -0.6625976562, -0.0251312256, 0.0546875, 0.5751953125, 1.0908203125, -0.3376464844, -0.4255371094, 0.4306640625, -0.4816894531, -0.291015625, 0.1940917969, 0.6450195312, 0.8999023438, -0.7846679688, -0.7099609375, -0.9912109375, -0.828125, 0.0204772949, 0.030166626, 1.0458984375, -0.000112474, 0.2397460938, -1.41796875, 0.6083984375, 0.0914306641, -0.0780029297, -0.1589355469, -0.1715087891, -0.5751953125, -0.1702880859, -0.5747070312, -0.8447265625, -0.0053825378, 0.4331054688, 0.0186309814, -0.1215209961, 0.8203125, 0.4643554688, 0.6669921875, -0.2041015625, 0.6240234375, 0.6303710938, 0.4655761719, -0.2973632812, 0.1405029297, -1.283203125, 0.4992675781, -0.1724853516, 0.671875, -0.724609375, 0.8413085938, 0.3115234375, 0.0579528809, 0.1712646484, 0.2485351562, -0.7314453125, -1.00390625, 0.4294433594, 0.0582580566, -0.46484375, -0.8515625, 0.8979492188, 0.6010742188, 0.8051757812, 0.2336425781, 1.1328125, -0.3576660156, -1.0751953125, -0.5395507812, -0.0282745361, 0.1817626953, -0.0651245117, 0.390625, 0.1762695312, -0.6982421875, -0.7177734375, 0.3674316406, 1.0166015625, 0.2919921875, 0.0228118896, -1.33203125, -0.83203125, -1.0029296875, 0.1040039062, 0.4506835938, 0.7495117188, -1.3017578125, 0.5786132812, -0.5249023438, -0.1154174805, 0.3405761719, -0.0073204041, 0.5766601562, 0.94140625, 0.6650390625, -0.1801757812, 1.7099609375, -0.4113769531, 0.6479492188, 0.7177734375, -0.5185546875, -0.537109375, -0.0586853027, -0.3747558594, -0.173828125, 0.5400390625, 0.103515625, -0.1877441406, 1.0771484375, 2.240234375, -0.104675293, -0.0310668945, -0.3977050781, 0.4802246094, 0.3723144531, -0.5576171875, -1.0361328125, -0.625, -0.9848632812, 0.1340332031, -0.1032104492, -0.4770507812, -0.4052734375, -0.7006835938, -1.3759765625, 0.7265625, -0.3393554688, -0.431640625, -0.3386230469, 0.6147460938, 0.0579833984, -0.1768798828, 0.783203125, -0.5180664062, 0.65234375, 0.1916503906, 0.2993164062, 0.9819335938, -0.1234741211, -0.541015625, 0.8510742188, 0.69140625, -0.1964111328, -0.1590576172, -2.146484375, 0.1271972656, -0.7094726562, 0.7392578125, 0.3813476562, 0.2646484375, 0.3686523438, -1.4599609375, 0.1744384766, -0.8061523438, 1.8056640625, -0.2342529297, 0.024810791, -0.1586914062, -0.7568359375, 0.7622070312, -0.3256835938, 1.8662109375, 0.6005859375, 0.1370849609, 0.2568359375, -0.4084472656, 0.55078125, -0.1936035156, 0.6420898438, 1.1376953125, -0.6684570312, -0.5375976562, 0.7709960938, -0.5014648438, 0.669921875, -1.7060546875, 0.1925048828, 0.1864013672, -0.2573242188, 1.314453125, 0.8862304688, 0.046875, -1.3701171875, -1.115234375, 0.4995117188, -0.2385253906, 0.4499511719, -0.46484375, 0.1068725586, -0.244140625, -0.1859130859, -0.298828125, 0.0607299805, 0.2265625, -1.0576171875, -0.1590576172, -0.4606933594, -0.0494689941, -0.3364257812, 0.453125, -0.5893554688, 0.4677734375, 0.6831054688, -1.263671875, 0.4406738281, -0.0078811646, 0.3723144531, 0.2834472656, -0.3520507812, -1.087890625, -0.4125976562, 0.7739257812, -0.673828125, -0.1906738281, 0.2270507812, 0.5390625, 0.6508789062, -0.7216796875, -0.7626953125, -0.1729736328, 0.583984375, -0.3005371094, -1.015625, -0.0344848633, 0.3308105469, -0.2091064453, -0.084777832, 0.4677734375, -0.6821289062, -0.3540039062, -1.240234375, -0.18359375, -0.7998046875, -0.1719970703, 0.3693847656, -0.0211181641, -0.7680664062, -1.11328125, 0.6791992188, -0.283203125, -0.1270751953, 0.0336303711, -1.431640625, -0.0308074951, 0.544921875, 0.6748046875, 0.3356933594, 0.0606994629, 0.48828125, -0.0219726562, 0.2915039062, 0.3474121094, -0.6469726562, -0.69921875, 0.1900634766, -0.7060546875, -0.3508300781, -1.033203125, -0.6381835938, 0.4548339844, 0.1248779297, -0.3205566406, -0.3977050781, 1.0107421875, -0.8139648438, -0.1134033203, -0.3503417969, 0.1973876953, 0.65234375, -0.4077148438, -0.2551269531, -0.6840820312, 1.404296875, -0.9951171875, -0.3256835938, -0.2462158203, 0.1683349609, -0.4157714844, -0.3630371094, -0.5141601562, 0.26953125, -0.7045898438, -0.3532714844, -0.4428710938, -0.1470947266, -0.9331054688, -0.9653320312, 1.2587890625, -0.1802978516, 0.4357910156, -0.0833129883, -0.2016601562, -0.4626464844, -1, 0.7021484375, -0.447265625, -0.8662109375, 0.8168945312, 0.3942871094, -0.4916992188, -0.640625, -0.1060791016, 0.5048828125, -0.0343017578, -0.4848632812, 1.255859375, 0.693359375, -0.3664550781, 0.84765625, 0.1364746094, 0.6943359375, 0.1752929688, 0.8681640625, 0.4965820312, 0.1452636719, 0.7119140625, -0.1085205078, 0.1252441406, 0.7944335938, 0.2858886719, -0.1778564453, -0.3872070312, 0.5991210938, 0.5693359375, 0.0919799805, -1.2041015625, -0.5869140625, 0.1591796875, -0.494140625, 0.6401367188, 1.0546875, -0.2983398438, 0.1324462891, -0.630859375, 0.71875, 0.3916015625, -0.051940918, -0.7211914062, -0.5356445312, 1.615234375, -1.7333984375, -0.548828125, 0.1058959961, 0.3693847656, 0.0361938477, -0.5258789062, 0.0156402588, 0.2009277344, -0.7963867188, -0.5009765625, -0.1573486328, -0.6928710938, 0.1998291016, 0.6376953125, -0.1558837891, 0.6362304688, 0.2609863281, -0.0187835693, 0.4296875, -0.4582519531, -0.1134033203, 0.36328125, 0.6884765625, 0.2551269531, -0.2159423828, 0.525390625, 0.9501953125, 0.2114257812, -12.78125, -1.064453125, 0.0494384766, -1.1552734375, -0.3510742188, -0.4816894531, -0.0836791992, -0.5229492188, -0.3515625, -0.91015625, 1.4052734375, -0.080871582, -0.3518066406, 0.8876953125, -0.7719726562, 0.0383911133, -1.1884765625, -0.7270507812, -0.2116699219, 0.3986816406, -0.1746826172, 0.337890625, -0.80078125, -1.4619140625, -0.2066650391, 0.0975952148, -0.0535888672, -0.556640625, 0.0276184082, 0.3479003906, 0.0146255493, 0.6860351562, -0.5688476562, 0.0904541016, 0.5625, 0.3149414062, -0.0475463867, -0.2578125, -0.2155761719, -0.4624023438, 1.0166015625, 0.3217773438, 0.66796875, 1.533203125, -0.578125, -0.2895507812, 0.0737915039, -0.0546264648, 0.5297851562, -0.0075302124, 0.4721679688, 1.291015625, 0.4758300781, 0.3715820312, -0.1534423828, 0.5078125, 1.1025390625, -0.2464599609, -0.5185546875, -0.0023288727, -0.8325195312, 1.11328125, -1.361328125, 0.0017032623, 0.1480712891, 0.5234375, -0.62109375, -0.7578125, 1.794921875, -0.548828125, -0.5512695312, -1.576171875, 0.0272827148, 0.4172363281, 0.1954345703, 1.16015625, 0.5063476562, -0.2083740234, 0.4321289062, 0.2990722656, -1.384765625, -0.2976074219 ]
Magnus goes about scavenging materials from various items (gold from a gold watch, lead from lead shielding, mercury from thermometers, and tin from cans of baked beans which he adopts as his sole diet - presumably in order to ensure the other scientists will not want to spend too much time with him, as well). This allows him to reconstruct his Metal Men, albeit only a few inches high. These new Metal Men are shown to help Magnus remain sane despite being off his pills, such as when they persuade him to deactivate the now completed Plutonium Man after he turns it on during a period of depression. Ooolong Island is attacked by the JSA seeking to rescue Black Adam, and Chang Tzu orders the Plutonium Man activated. Chang notes that he has been spying on Magnus and knows that several metals have entered the lab and not come back out. The Metal Men attack Chang Tzu, allowing Magnus to escape and switch off the Island's defenses. While he does this Morrow confronts Magnus and destroys Mercury, yet again. Magnus explains to Morrow why it's pointless to stop him from deactivating the shields as the JSA will get in eventually, and instead offers him the chance to teleport out, saying that Morrow was "the best teacher I ever knew" and that he tries "to over look the psychopathic super villain thing". Morrow accepts the offer. Magnus is then confronted by Chang Tzu whom he apparently kills with the aid of Lead and what he describes as a particle wave ray gun.
[ -0.8994140625, -0.0588989258, 1.2099609375, 0.0317382812, -0.2839355469, 0.9018554688, 0.2404785156, -0.1248779297, -1.369140625, -0.9458007812, 0.1677246094, 0.0176849365, -0.2344970703, 1.2373046875, -0.5649414062, 0.3864746094, 0.3857421875, -0.5200195312, 0.0116958618, 0.6118164062, 0.0651245117, -0.2795410156, -0.5712890625, -0.2269287109, -0.8715820312, 0.3420410156, 0.685546875, -0.0548095703, -0.73046875, -1.6162109375, 0.1768798828, -0.5844726562, -1.2998046875, -0.2038574219, -0.5830078125, -0.666015625, 0.2897949219, 0.0450744629, 0.2296142578, -0.4331054688, -0.7568359375, 0.1799316406, 0.2629394531, -0.7524414062, 1.296875, -0.0924682617, -0.0915527344, 0.3090820312, -0.3615722656, 0.0323791504, -1.5703125, 0.95703125, 0.0058517456, 0.3603515625, 0.0509338379, -0.3444824219, -0.6279296875, 0.27734375, 0.1326904297, 0.4177246094, 0.1130371094, 0.6962890625, -1.037109375, -1.3203125, -0.6723632812, 0.1728515625, 0.1982421875, 0.1086425781, -0.0431518555, -0.4465332031, -0.6723632812, 0.3876953125, -0.3149414062, 0.796875, -0.6259765625, -0.2749023438, -0.6040039062, 0.6831054688, 0.1081542969, -1.2626953125, 0.509765625, -0.9345703125, -0.67578125, -0.5024414062, -0.0910644531, -1.7216796875, 0.4223632812, -1.130859375, 0.9125976562, 1.123046875, 0.0633544922, -0.3708496094, -0.4343261719, 0.77734375, 0.37109375, -0.7255859375, -1.1611328125, -2.05859375, -1.390625, 0.6762695312, -0.9799804688, 0.1982421875, -0.5810546875, 0.3811035156, -0.0370483398, 2.46875, 0.3212890625, -0.2309570312, -0.3776855469, -0.3286132812, 0.0417175293, 0.1394042969, -0.2399902344, 0.392578125, -0.5087890625, 0.8374023438, -0.6220703125, -0.1252441406, -0.3010253906, 0.6088867188, 0.1925048828, -0.1370849609, -0.0825805664, 0.6254882812, 0.0625, 0.1217651367, -0.4008789062, -0.1983642578, 1.0029296875, 0.2983398438, -0.3500976562, 0.0160980225, -0.3862304688, 0.054107666, -0.412109375, -0.7446289062, -0.5190429688, 0.0523681641, 0.4619140625, 0.0570678711, -0.3251953125, -0.5561523438, 0.1156005859, 1.0322265625, -0.4204101562, 0.096496582, -0.3994140625, 0.4743652344, -0.0693969727, 1.1181640625, -0.8955078125, 0.89453125, 0.3120117188, -0.0081329346, 0.0575256348, -0.7866210938, -0.4211425781, -0.11328125, -0.0026130676, -0.0570373535, -0.055267334, -1.2119140625, -0.5063476562, 0.91015625, -0.6723632812, 0.0250701904, -0.4360351562, 0.0072593689, -0.2641601562, 0.2973632812, -0.5512695312, -0.4038085938, 0.375, -0.1893310547, 0.2807617188, -0.5659179688, 0.2438964844, -1.1240234375, 0.650390625, -0.9638671875, 0.53125, -2.048828125, 0.6508789062, -0.84765625, -0.9624023438, -0.8579101562, 0.1512451172, -0.1032104492, -0.6318359375, -0.3837890625, 0.107421875, -1.78125, -0.3977050781, -0.0835571289, -0.086730957, -0.421875, 1.0048828125, 1.431640625, -0.6508789062, -0.090637207, -0.50390625, 0.1508789062, 0.2086181641, -0.2091064453, 0.0570678711, -1.4208984375, 0.7963867188, 1.2734375, -0.630859375, -0.2512207031, -1.134765625, -0.1773681641, 0.2083740234, 0.0400695801, 0.1903076172, -0.0494995117, -0.0888061523, 0.3740234375, -0.0885620117, -0.3198242188, -0.5776367188, -0.908203125, -0.931640625, -1.306640625, -0.6079101562, -0.3937988281, 0.6625976562, 0.4985351562, 0.2170410156, 0.4621582031, -0.2275390625, -0.0625, -0.576171875, -0.4506835938, 0.9545898438, -0.4528808594, -0.2670898438, -0.4702148438, 0.0809936523, -1.6943359375, -0.3315429688, -1.12109375, 0.3635253906, -0.498046875, -0.1423339844, -0.3676757812, -0.1008300781, -0.1815185547, -0.2810058594, 0.259765625, 0.0388183594, 0.6533203125, -0.9399414062, 0.3237304688, 0.2797851562, -0.0793457031, -0.9057617188, 0.2043457031, 1.150390625, 0.3791503906, -0.0242919922, 0.5126953125, 1.443359375, -0.2274169922, 0.2127685547, 0.1959228516, 0.0740966797, -0.9213867188, -0.3000488281, -0.3383789062, -0.5834960938, 0.8120117188, 0.1475830078, -0.6254882812, -1.2724609375, 0.5034179688, -0.0222625732, -0.1584472656, 0.7836914062, 0.4599609375, 0.943359375, 0.3203125, 0.2502441406, -0.1385498047, 0.4340820312, -0.7197265625, -0.0283203125, -0.6372070312, -0.0148620605, -0.251953125, 0.0189361572, 0.7661132812, 0.0146331787, 0.025894165, -0.38671875, 0.9111328125, -0.1151123047, 0.0174407959, 0.5502929688, -0.4772949219, -0.3293457031, 1.30078125, 0.3955078125, 0.2437744141, 0.5131835938, 0.5229492188, -1.248046875, -0.3591308594, 0.2839355469, 1.2158203125, -0.3408203125, -2.271484375, -0.0151519775, 0.0541687012, 0.5693359375, 0.1416015625, 2.3828125, 0.4682617188, -0.548828125, -0.3510742188, 0.2885742188, -0.6166992188, 0.6904296875, -1.0830078125, 0.4069824219, -0.384765625, -0.896484375, -0.564453125, -0.2019042969, -0.0037841797, 0.3557128906, -0.1823730469, 0.0601196289, 0.3798828125, 1.0546875, 0.0993652344, 0.9409179688, 1.2548828125, -0.3403320312, -0.2512207031, 0.2922363281, 0.1424560547, 0.1237182617, -0.3898925781, 0.3962402344, -0.15625, 0.2685546875, -0.390625, 0.7397460938, 0.0528564453, 0.0495910645, -0.146484375, -0.6733398438, -0.7221679688, 0.5375976562, 0.4567871094, -0.2045898438, -0.4279785156, -0.4370117188, -0.1159667969, -0.1451416016, 0.4389648438, -0.2509765625, 0.2849121094, -0.5327148438, -0.60546875, 0.560546875, 0.5512695312, 0.646484375, 0.1020507812, 0.2387695312, -0.328125, -0.96484375, -0.0052223206, 0.9497070312, -0.6362304688, -0.5576171875, 0.3024902344, -0.0112991333, 0.4533691406, -0.0814819336, -0.2326660156, -0.3984375, -0.9028320312, -0.7006835938, 1.1552734375, -0.408203125, 0.599609375, -0.72265625, -0.490234375, -0.3913574219, 0.7861328125, 0.5805664062, 0.35546875, -0.7319335938, -0.4750976562, 1.087890625, -1.77734375, -0.4326171875, 0.3657226562, -0.0236053467, 0.3168945312, 0.2521972656, 0.6772460938, 0.6342773438, -1.0146484375, 0.4440917969, 1.1494140625, -0.1200561523, 0.4714355469, 0.2424316406, 0.8525390625, 0.5366210938, -0.380859375, 0.1138305664, 0.83203125, 0.8383789062, -0.751953125, 0.91015625, -0.2214355469, -0.4321289062, -0.4650878906, 0.6918945312, -0.0034141541, -0.0279846191, 0.1695556641, -0.6303710938, 0.0499267578, -0.9018554688, 0.2388916016, 1.259765625, 0.6118164062, -0.1624755859, -0.0218658447, 0.2512207031, -0.322265625, 0.703125, 0.1077270508, 0.7099609375, 1.099609375, 0.755859375, 0.755859375, -0.42578125, 0.0221710205, 0.7919921875, 1.1513671875, -0.2116699219, -0.0419616699, 0.8442382812, 0.0896606445, -1.8076171875, -1.6806640625, 1.40234375, -0.3698730469, 0.7250976562, -1.4033203125, 0.8725585938, 0.447265625, -0.1342773438, 0.2165527344, 0.2756347656, 0.2946777344, 0.000346899, -1.31640625, -0.2434082031, -0.9467773438, -0.042388916, 0.5625, -0.1044311523, 0.0672607422, 0.8798828125, 0.3923339844, -0.8237304688, 0.2172851562, -0.6245117188, 0.5493164062, 0.5087890625, 0.765625, -0.3776855469, 0.4309082031, 0.2653808594, 1.35546875, 0.3220214844, 0.830078125, 0.0807495117, -0.0377197266, 0.0089950562, 0.4584960938, -0.1106567383, -0.3354492188, 0.5537109375, 0.000808239, -0.291015625, 0.3935546875, 0.0281219482, 0.7270507812, -0.1787109375, -0.3217773438, -0.3422851562, -0.6098632812, -1.3310546875, -0.4846191406, -0.2333984375, 0.1501464844, -0.4274902344, 1.36328125, -0.384765625, -1.166015625, -0.2504882812, -0.0598449707, 0.3037109375, 0.5708007812, 1.564453125, 0.310546875, 0.1045532227, -0.0794677734, -0.5180664062, 0.7250976562, 0.1584472656, 0.3098144531, 0.2451171875, -0.2290039062, 0.1761474609, 1.0751953125, -0.5581054688, -0.2235107422, 0.9609375, -0.4462890625, 0.1507568359, -0.0354003906, -0.3427734375, -1.056640625, -0.4914550781, 0.4150390625, 0.3217773438, -1.3251953125, -0.900390625, 0.6044921875, 0.9389648438, -0.2127685547, 0.2980957031, -0.921875, -0.255859375, 0.0393676758, 1.1142578125, 0.6293945312, 0.2536621094, 1.369140625, -0.1145019531, -0.1381835938, 0.6767578125, -0.2810058594, 0.2479248047, -0.0541381836, 0.4475097656, -0.4760742188, -1.0615234375, -0.9096679688, 0.4118652344, -0.54296875, -0.0634155273, 0.7749023438, 1.107421875, 0.9350585938, 0.4602050781, -0.3486328125, -0.3913574219, 0.0613708496, -1.267578125, 0.5703125, 0.7260742188, -1.22265625, -1.34765625, 0.2878417969, -0.7338867188, -0.416015625, -0.0825805664, 0.4382324219, 0.9462890625, -0.4177246094, -0.0227050781, 0.529296875, -1.1259765625, 0.0323486328, 0.8325195312, 1.2529296875, 1.0244140625, -0.0477905273, -0.8168945312, -0.6474609375, -0.6142578125, 0.0670776367, -0.1429443359, 0.607421875, 0.0439758301, -0.294921875, -0.9248046875, 0.3720703125, -0.2438964844, 0.1287841797, -0.012008667, -0.1424560547, -0.4301757812, -0.3657226562, -0.0390625, -0.9038085938, -0.0060844421, 0.240234375, 0.1708984375, 0.1129150391, 0.955078125, 0.9716796875, 0.1279296875, -0.1034545898, 0.8032226562, 0.3295898438, 0.6772460938, -0.5678710938, 0.4377441406, -1.2509765625, 0.6157226562, 0.2104492188, 0.4221191406, -1.40234375, 0.6958007812, 0.1881103516, 0.4455566406, -0.2575683594, 0.3291015625, -0.6606445312, -0.7993164062, -0.1118774414, -0.0218963623, -0.1319580078, -0.9453125, 0.8393554688, 0.0925292969, 1.40625, 0.3054199219, 1.271484375, -0.0838623047, -0.787109375, -0.4150390625, -0.0372924805, 0.2105712891, -0.2602539062, 0.1373291016, -0.23828125, -0.830078125, -0.5498046875, 0.216796875, 0.6860351562, -0.1680908203, 0.0842895508, -1.4501953125, -1.10546875, -0.576171875, 0.0010957718, 0.564453125, 0.2252197266, -1.150390625, -0.0447998047, -0.5405273438, -0.0685424805, 0.6391601562, -0.3146972656, 0.5751953125, 1.267578125, 0.7216796875, -0.45703125, 1.927734375, -0.703125, 0.9350585938, 1.0439453125, -0.4343261719, -0.6508789062, 0.232421875, -0.2288818359, 0.3803710938, 0.458984375, -0.0177307129, -0.1695556641, 0.9931640625, 1.9677734375, 0.2203369141, 0.3994140625, -0.62109375, 0.3217773438, 0.2004394531, -0.9262695312, -0.9365234375, -0.5952148438, -1.3896484375, -0.5678710938, -0.3305664062, -0.6342773438, -0.2573242188, -0.7153320312, -1.060546875, 0.0047492981, 0.1189575195, -0.8647460938, -0.71484375, 0.2235107422, 0.2995605469, -0.2663574219, 0.3002929688, -0.5473632812, 0.6704101562, 0.2061767578, 0.6762695312, 0.951171875, -0.29296875, -0.736328125, 0.953125, 0.5825195312, -0.2954101562, 0.1813964844, -1.8125, 0.2509765625, -0.4057617188, 0.7680664062, 0.724609375, 0.0993652344, 0.15625, -1.609375, -0.1787109375, -0.7734375, 1.6689453125, -0.3205566406, -0.1499023438, 0.0426940918, -0.7607421875, 0.6674804688, -0.1392822266, 2.189453125, 0.328125, 0.3464355469, 0.4514160156, -0.1966552734, 0.3110351562, 0.0563049316, 0.9877929688, 1.154296875, -0.9150390625, -0.7094726562, 0.7758789062, -0.017288208, 0.2907714844, -1.14453125, 0.4704589844, 0.3039550781, -0.2939453125, 1.30859375, 0.4235839844, 0.012008667, -0.8916015625, -1.341796875, 0.3186035156, 0.1807861328, 0.3923339844, 0.0908203125, 0.013381958, -0.1784667969, -0.2161865234, -0.4831542969, 0.00730896, 0.2912597656, -0.8764648438, -0.1719970703, -0.8447265625, 0.2025146484, -0.408203125, 0.1766357422, -0.8129882812, 0.318359375, 0.783203125, -1.744140625, 0.1039428711, -0.3193359375, 0.8422851562, -0.0869750977, 0.2274169922, -0.9946289062, -0.3291015625, 0.6782226562, -0.3127441406, -0.3427734375, 0.2375488281, 0.3759765625, 0.6840820312, -0.8134765625, -0.4272460938, 0.0137405396, 0.984375, -0.9223632812, -0.7841796875, 0.0913085938, -0.1329345703, -0.5, 0.2362060547, 0.3291015625, -0.8344726562, -0.6264648438, -1.123046875, -0.2219238281, -0.4572753906, -0.2476806641, 0.7475585938, -0.0152816772, -0.8022460938, -0.783203125, 0.55078125, 0.0572814941, -0.2680664062, 0.3591308594, -1.4951171875, -0.1187744141, 0.4597167969, 0.578125, 0.1767578125, 0.063659668, 0.0389709473, -0.1187133789, 0.1511230469, -0.4013671875, -0.4482421875, -0.5859375, 0.1097412109, 0.0916748047, -0.5581054688, -0.9072265625, -0.6411132812, 0.3171386719, 0.1301269531, -0.5068359375, -0.6499023438, 0.6118164062, -1.236328125, -0.0012617111, -0.3596191406, 0.2152099609, 0.8725585938, -0.5341796875, -0.3022460938, -0.4348144531, 0.9873046875, -0.9633789062, -0.1098632812, -0.3078613281, 0.6044921875, -0.3830566406, -0.4833984375, -0.2418212891, 0.2086181641, -0.9096679688, -0.3815917969, -0.4396972656, 0.216796875, -0.8657226562, -0.5346679688, 0.9643554688, -0.0609130859, 0.3540039062, 0.1784667969, -0.6254882812, -0.3547363281, -0.5678710938, 0.6552734375, -0.5346679688, -0.6909179688, 0.734375, 0.2678222656, -1.0791015625, -0.5581054688, -0.106262207, 0.3271484375, 0.7817382812, -0.5751953125, 0.7534179688, 0.3188476562, -0.0968017578, 0.5029296875, -0.0903320312, 0.5395507812, -0.0865478516, 1.134765625, 0.2103271484, -0.3654785156, 0.0330810547, 0.0263061523, 0.2863769531, 0.3981933594, 0.5307617188, -0.3779296875, -0.3479003906, 0.8369140625, 0.1232299805, 0.3498535156, -0.7778320312, -0.2668457031, 0.2158203125, -0.515625, 0.6557617188, 0.8486328125, 0.0124816895, 0.0903320312, -0.2653808594, 1.0224609375, 0.6328125, -0.1707763672, -0.76953125, -0.67578125, 1.82421875, -1.48046875, -0.1398925781, 0.2414550781, -0.0814208984, 0.1993408203, 0.0927124023, 0.1619873047, 0.3950195312, -0.8442382812, -0.4924316406, -0.1547851562, -0.8076171875, 0.162109375, 0.7807617188, 0.0360717773, 0.6357421875, 0.3181152344, -0.2448730469, 0.1685791016, -0.2658691406, 0.1993408203, 0.1463623047, 0.2729492188, 0.6538085938, 0.1313476562, 0.7075195312, 1.103515625, 0.3012695312, -12.28125, -0.8076171875, -0.0674438477, -1.0205078125, -0.1468505859, -0.6665039062, 0.275390625, -0.68359375, -0.7045898438, -0.7939453125, 1.0185546875, -0.3999023438, -0.4455566406, 0.3115234375, -0.2291259766, -0.0994262695, -0.9731445312, -0.7177734375, -0.34375, 0.5522460938, 0.0175170898, 0.4946289062, -0.9653320312, -0.904296875, 0.3037109375, -0.265625, -0.0131454468, -0.3564453125, 0.4851074219, 0.3120117188, -0.2216796875, 0.2355957031, -0.8662109375, 0.3449707031, 0.4880371094, 0.3076171875, 0.4802246094, -0.6591796875, 0.0682983398, -0.4411621094, 0.8403320312, -0.0533447266, 0.7241210938, 1.5556640625, -0.5346679688, -0.1149902344, 0.0346984863, -0.4384765625, 0.8818359375, 0.4602050781, 0.4074707031, 1.416015625, 0.1906738281, -0.0085220337, -0.4272460938, 0.3122558594, 1.37890625, -0.0407104492, -0.4311523438, -0.037322998, -0.955078125, 0.9291992188, -1.2998046875, 0.1086425781, 0.1387939453, 0.5083007812, -0.5537109375, -1, 1.5390625, -0.4204101562, -0.4272460938, -1.5634765625, -0.0006337166, 0.5693359375, 0.525390625, 0.8510742188, 0.3159179688, -0.1437988281, 0.9833984375, 0.2147216797, -1.6494140625, -0.2946777344 ]
Magnus also indicates this shooting was a result of his irrationality, brought on by the lack of his medications. Magnus then surrenders to the JSA. With all charges against him dropped, due to being coerced into collaboration, Will Magnus returns to his home and laboratory. There, when Booster Gold visits him again, exactly one year after their last meeting, with a salvaged responsometer containing Skeets' "memself", asking him to somehow restore the robot destroyed by Mister Mind, Magnus agrees. He reveals to have in his possession a copy of Skeets' memories, and so he is able to rebuild him as a security droid 2.0, slightly more advanced, but oblivious of the events of the past years. Now sane again, he returns to working on his Metal Men. Superman/Batman In the Superman/Batman series Doc Magnus is shown working again with his Metal Men. He has even built a new one, the spunky and wisecracking gynoid Copper. Despite contrary advice from his fiancée he asks Bruce Wayne for a tryout of his Metal Men as security guards. The trial is successful, but the Metal Men fail on the field, due to mistrust by the human personnel and Brainiac's influence, leaving Doc Magnus the responsibility of saving the day. JLA Magnus has recently assisted the Justice League of America with the rebuilding of Red Tornado. After Red Tornado's first intended body is stolen by Amazo, he is called on again to provide Red Tornado with yet another new body, more powerful and advanced than the previous one.
[ -0.59375, -0.2122802734, 0.9526367188, 0.2731933594, -0.576171875, -0.1712646484, -0.2873535156, -0.4926757812, -1.3232421875, -0.1273193359, 0.7338867188, 0.0953979492, -0.6118164062, 0.6567382812, -0.2897949219, 0.9838867188, 0.4599609375, -0.482421875, -0.054107666, 0.6796875, -0.1776123047, -0.2159423828, -0.3937988281, -1.0068359375, -0.16796875, 1.40234375, 0.9565429688, -0.4555664062, -0.1140136719, -1.2568359375, 0.0545654297, 1.0478515625, -1.498046875, 0.1129150391, 0.4096679688, 0.2707519531, -0.0561828613, -0.2426757812, -0.1123046875, 0.34765625, -0.6220703125, -0.22265625, -0.2990722656, -0.0676269531, 0.3557128906, -0.3955078125, 0.5908203125, 0.3083496094, -0.609375, -0.5537109375, -1.158203125, 0.5541992188, 0.603515625, 0.7719726562, 0.1614990234, -0.5024414062, -0.0586547852, -0.2534179688, 0.5390625, 0.0704956055, -0.1253662109, 0.759765625, -0.7973632812, -0.9213867188, -0.8359375, -0.0033473969, 0.1286621094, 0.3569335938, -0.0357055664, -0.1028442383, -0.6416015625, 0.9409179688, 0.1483154297, 0.3203125, 0.2259521484, -0.8090820312, -0.5727539062, 0.8310546875, -0.0160675049, -1.041015625, -0.0504760742, -0.2113037109, -0.8735351562, 0.2265625, -0.6826171875, -1.6474609375, 0.3852539062, -0.939453125, -0.0293121338, 0.708984375, 0.4855957031, -0.1875, 0.5620117188, -0.4182128906, -0.0144348145, -0.7280273438, -1.0966796875, -1.0498046875, -0.51171875, -0.1546630859, -0.1171264648, -0.0608215332, 0.2381591797, -0.5263671875, 0.3957519531, 2.150390625, -0.220703125, -1.5751953125, 0.0782470703, -0.3520507812, 0.2644042969, 0.0568847656, 0.2239990234, 0.1647949219, -0.2415771484, 0.7744140625, -0.3862304688, -0.0483398438, -0.583984375, -0.0279998779, -0.2199707031, -0.4145507812, -0.0342407227, 0.2288818359, -0.1138305664, -0.4389648438, -0.5747070312, -0.2905273438, 0.0701904297, 0.9194335938, 0.0383911133, 0.1213989258, -0.7099609375, -0.876953125, 0.4299316406, -0.8286132812, -0.7143554688, 0.2744140625, -0.2580566406, -0.9580078125, -1.3505859375, -0.2038574219, 0.7299804688, 0.6411132812, -0.49609375, 0.2983398438, -0.5146484375, 1.0380859375, 0.0628051758, 0.8500976562, -1.419921875, 0.6147460938, -0.3967285156, -0.2583007812, 1.2568359375, -0.1673583984, -1.05078125, -0.1558837891, -0.2641601562, -0.091003418, -0.3854980469, -1.130859375, 0.3208007812, 0.859375, -1.0419921875, -0.6157226562, 0.1680908203, 0.6391601562, -0.13671875, -0.1343994141, -0.3754882812, -0.0756835938, 0.5708007812, -0.4926757812, 0.5405273438, -0.9868164062, 0.5942382812, -1.5234375, -0.2626953125, -0.9926757812, 0.6103515625, -2.75, 0.3374023438, -0.6547851562, 0.6997070312, -0.80859375, -0.087097168, 0.2094726562, -0.9868164062, -0.1369628906, -0.1636962891, -1.033203125, -0.0452880859, -1.267578125, 0.1854248047, -1.0673828125, -0.1778564453, 1.6025390625, -0.002658844, 0.2783203125, -1.0390625, -0.0495910645, -0.7275390625, -1.0048828125, 0.1600341797, -0.9658203125, 0.6323242188, 0.1101074219, -0.1939697266, -0.6313476562, -1.01953125, 0.4001464844, 0.4304199219, -0.2604980469, 0.1265869141, -0.6655273438, 0.2176513672, -0.3117675781, -0.1337890625, -0.0478210449, -0.0431213379, -0.8579101562, -1.0517578125, -0.4997558594, -1.228515625, -0.7607421875, 0.0953369141, -0.5380859375, -0.2553710938, 0.720703125, 0.82421875, -0.583984375, -0.5380859375, -0.9565429688, 0.4216308594, 0.4504394531, 0.1538085938, -1.0810546875, -0.55859375, -0.533203125, -0.2524414062, -1.923828125, 0.6748046875, -0.6762695312, 0.1369628906, -0.4213867188, -0.748046875, 0.6333007812, -0.1407470703, 0.39453125, 0.1313476562, -0.4484863281, -0.841796875, 0.2019042969, 0.5385742188, -0.0866699219, -0.0440368652, 0.53125, 1.2421875, 0.884765625, 0.5053710938, 0.638671875, 1.7197265625, -0.4367675781, 0.7836914062, 0.1589355469, 0.2512207031, -1.541015625, 0.0977783203, -0.8598632812, -0.3129882812, 0.0574035645, 0.5639648438, -0.7348632812, -1.2587890625, -0.5322265625, 0.7944335938, 0.4533691406, 1.146484375, 0.7265625, 0.8764648438, 1.201171875, -0.7133789062, 0.2746582031, 1.02734375, -0.5532226562, -0.2081298828, -0.3698730469, -0.2963867188, -0.1740722656, -0.1971435547, 0.0486755371, 0.2012939453, -0.4299316406, -0.4421386719, 0.0639038086, -0.4907226562, 0.7475585938, 0.8100585938, 0.3403320312, -0.3764648438, 0.728515625, 0.0531616211, 0.1652832031, 1.068359375, 0.5424804688, -0.5278320312, 0.35546875, -0.2805175781, 0.5590820312, 0.2242431641, -1.828125, 0.1536865234, -0.1618652344, -0.0599975586, 0.3022460938, 1.966796875, 0.169921875, -0.6108398438, -0.1884765625, 0.2186279297, -0.3881835938, 0.4260253906, -0.607421875, 1.2138671875, 0.1252441406, -0.6015625, -0.6762695312, -0.3315429688, 0.013343811, 0.0842285156, -0.3400878906, 0.1737060547, 1.3203125, 0.7866210938, 0.2298583984, 0.9106445312, 0.7094726562, -0.2563476562, 0.7470703125, -0.0146484375, -0.2243652344, 0.2310791016, 0.5380859375, 0.4206542969, -0.6772460938, -0.0014009476, -0.4929199219, 0.0191955566, -0.2156982422, -0.7368164062, 0.2543945312, 0.0981445312, 0.2152099609, 0.2924804688, 0.4899902344, -0.0085449219, -0.6684570312, -0.0518798828, 0.353515625, 0.7543945312, 0.2863769531, -0.142578125, 0.740234375, 0.2631835938, -0.908203125, 0.3024902344, 0.7119140625, 0.1872558594, 0.2127685547, -0.2269287109, -0.4135742188, -1.0673828125, 0.3039550781, -0.2097167969, -1.3486328125, -0.8979492188, -0.4035644531, 0.3156738281, 0.9609375, -1.640625, -0.9477539062, 0.0471191406, -0.4089355469, 0.3857421875, 0.9526367188, -0.9736328125, 0.1030883789, -1.3994140625, 0.4995117188, -0.4685058594, -0.1188354492, 1.1005859375, 0.0402832031, -0.7485351562, -0.2827148438, -0.1112670898, -1.0615234375, -0.1243286133, 0.0993041992, 0.6650390625, 0.5283203125, 0.7060546875, 0.734375, 0.4123535156, -0.9033203125, 0.1210327148, 2.05859375, 0.7797851562, -0.2705078125, -0.0940551758, 0.740234375, -0.2357177734, -0.0783081055, 0.220703125, -0.0838623047, 0.0881347656, -0.234375, 0.7939453125, 0.1998291016, 0.4260253906, 0.3481445312, 0.3100585938, -0.3874511719, 0.3291015625, 0.2041015625, -0.8745117188, -0.6118164062, 0.1585693359, 0.5844726562, 0.8139648438, 0.3359375, 0.0771484375, -0.0428771973, 0.5874023438, 0.1567382812, 1.1767578125, 0.1534423828, -0.3752441406, 0.6884765625, 0.3571777344, 0.3471679688, -1.0517578125, -0.2395019531, 1.685546875, 1.650390625, 0.3491210938, 0.5952148438, 1.2880859375, -0.2885742188, -1.93359375, -1.9365234375, 0.6479492188, -0.2331542969, 0.3288574219, -1.83203125, 0.84765625, 0.0232086182, 0.8134765625, 0.2932128906, -0.1544189453, 0.29296875, 0.3715820312, -0.5473632812, -0.2607421875, -0.8959960938, 0.3640136719, 0.7504882812, 0.4895019531, -1.0732421875, 0.6606445312, -0.6958007812, -0.1164550781, 0.5688476562, -0.9262695312, -0.1312255859, 0.1593017578, 0.5283203125, -0.9697265625, 0.4689941406, 0.0342407227, 0.8198242188, 0.896484375, 0.3996582031, -0.5659179688, -0.1198120117, 0.2854003906, 0.3425292969, 0.0298156738, -0.7543945312, 0.3125, 0.0033798218, -0.4816894531, 0.3999023438, -0.7075195312, 0.0270080566, -0.3410644531, -0.7646484375, -0.9458007812, -0.4172363281, -0.1702880859, -0.439453125, -0.2670898438, 0.0041656494, 0.2093505859, 0.5966796875, -0.2386474609, -0.9106445312, -0.2861328125, 0.5205078125, 0.1342773438, 0.3520507812, 1.146484375, 0.3947753906, 0.8505859375, 0.4677734375, 0.3806152344, 0.1215820312, 0.1381835938, 0.4584960938, 0.9345703125, -0.1971435547, -0.4892578125, 1.10546875, -0.1451416016, -0.5576171875, 1.1083984375, 0.0572509766, 0.37109375, -0.6547851562, -0.744140625, -0.3159179688, -0.1583251953, 0.2426757812, 0.0795288086, -0.6860351562, -0.4931640625, 0.2634277344, 0.8774414062, 0.3190917969, 0.6108398438, -0.9858398438, -0.4211425781, 0.7543945312, 0.7026367188, 0.798828125, 0.0703735352, 0.4152832031, -0.5942382812, -0.5444335938, 0.2403564453, -0.384765625, 0.2083740234, -0.1755371094, 0.4309082031, 0.0074577332, -0.9873046875, -0.1655273438, -0.0648803711, -0.3706054688, 0.2622070312, 1.0283203125, 0.9985351562, 1.0380859375, 0.1104125977, 0.1468505859, 0.0321044922, 0.6313476562, -0.2553710938, -0.3181152344, 0.9765625, -0.3173828125, -2.251953125, -0.3740234375, -0.0938110352, -0.2283935547, -0.4033203125, 0.6469726562, 0.87109375, 0.0469970703, -1.2744140625, 0.8334960938, -0.947265625, -0.2800292969, 0.6098632812, 0.728515625, 0.0073051453, -0.4885253906, 0.0179901123, -0.724609375, -0.3540039062, -0.365234375, -0.6801757812, 0.2263183594, -0.0237121582, -0.5888671875, -0.6845703125, -0.3037109375, 0.947265625, 0.7314453125, -0.3876953125, -0.1517333984, -0.2287597656, 0.3608398438, -0.6010742188, -0.4790039062, -0.4338378906, 0.3686523438, 0.0408935547, 0.2115478516, 0.5478515625, 0.4348144531, 0.5805664062, 0.1651611328, -0.0944213867, 1.2236328125, 0.4753417969, -0.3940429688, 0.0330505371, -0.7065429688, 0.2347412109, 0.5029296875, 1.1318359375, -1.044921875, 0.0015678406, 0.4072265625, 0.7827148438, -0.55078125, -0.5834960938, -0.0385131836, -1.353515625, 0.6171875, -0.0085983276, -0.4291992188, -0.8486328125, 0.1611328125, 0.1441650391, 0.8520507812, -0.0100402832, -0.4284667969, -0.9931640625, -1.2958984375, -0.7158203125, 0.5986328125, 0.6962890625, -0.4272460938, 0.5092773438, -0.9765625, -0.3845214844, -0.4536132812, 0.3627929688, 0.0552368164, -0.3117675781, -0.466796875, -0.6708984375, -0.3193359375, -0.0270843506, -0.4274902344, 0.48828125, 0.055267334, -0.6274414062, 0.1932373047, -0.7470703125, 0.00415802, 0.1711425781, -1.3779296875, 0.5795898438, 0.7661132812, 0.3884277344, -0.2946777344, 1.05859375, 0.2237548828, 0.7158203125, 0.8286132812, -0.7431640625, -0.6040039062, -0.2937011719, -0.1492919922, 0.2111816406, 0.4699707031, 0.1955566406, 0.2836914062, 0.9443359375, 1.427734375, 0.4189453125, 0.6796875, -0.3276367188, -0.7895507812, 0.7431640625, -0.9560546875, -0.6372070312, -0.8798828125, -0.7661132812, -0.1380615234, 0.2194824219, -1.5517578125, 0.5771484375, -0.6318359375, -0.4868164062, -0.0403747559, -0.1102905273, 0.70703125, -0.7631835938, -0.2927246094, 0.638671875, -0.0355529785, -0.2200927734, -0.0526123047, 1.3564453125, 0.8857421875, 0.1207275391, 0.9365234375, -0.1577148438, -0.4912109375, 0.9189453125, 0.5366210938, -0.93359375, 0.4086914062, -1.3408203125, -0.6337890625, -1.103515625, 0.4724121094, 0.720703125, 0.4267578125, -0.4377441406, -1.4375, -0.5185546875, -0.4838867188, 1.7392578125, -0.2546386719, 0.0992431641, 0.1649169922, -0.2186279297, 0.0935668945, 0.1710205078, 2.248046875, -0.1322021484, 0.806640625, -0.3728027344, 0.0899658203, -0.3442382812, 0.0028953552, 1.01953125, 0.6875, -0.830078125, -0.0231018066, 0.61328125, -0.1573486328, 0.8198242188, -0.8872070312, 0.8334960938, 0.2512207031, -0.1888427734, 1.134765625, -0.0631713867, -0.0165863037, -0.2736816406, -1.5244140625, 0.2951660156, 0.5727539062, -0.0673217773, -0.069152832, 0.2504882812, 0.0789794922, -0.3505859375, -0.4907226562, 0.2036132812, 0.775390625, 0.0446472168, 0.1418457031, -0.736328125, 0.0858764648, -0.8564453125, -0.736328125, -0.8344726562, 0.265625, 0.5791015625, -1.2587890625, 0.2401123047, -0.3991699219, -0.0262298584, -0.6572265625, 0.071472168, -0.9887695312, -0.6274414062, 0.0834960938, -0.4350585938, 0.2744140625, 0.3942871094, 0.8110351562, 0.5219726562, -0.0512390137, -0.0889282227, 0.8916015625, 0.1455078125, -0.4128417969, -0.1932373047, 0.2653808594, 0.4392089844, -0.1448974609, 0.1196899414, 0.1104736328, 0.0443115234, -0.5849609375, -1.318359375, -0.2644042969, -0.5444335938, -0.2081298828, 0.3239746094, -0.4313964844, -0.1026000977, -1.525390625, -0.1624755859, 0.48828125, -0.302734375, 0.1771240234, -1.0166015625, 0.4526367188, -0.2368164062, 0.7358398438, 0.599609375, -0.1284179688, 0.1944580078, -0.6411132812, 0.1975097656, -0.2543945312, -0.4758300781, -0.6098632812, -0.3037109375, 0.2944335938, -0.1652832031, -0.2182617188, -0.4143066406, 0.455078125, -0.1098022461, 0.1684570312, 0.1477050781, 0.0050964355, -1.0166015625, 0.2653808594, -0.2058105469, -0.2182617188, 0.9633789062, 0.0810546875, 0.1745605469, 0.646484375, 0.9580078125, -0.5649414062, -0.6840820312, -0.166015625, 0.7412109375, -0.1964111328, -0.345703125, -0.2966308594, -0.2126464844, -1.115234375, -0.7934570312, -0.275390625, 0.0964355469, -1.7138671875, -0.2822265625, 0.6171875, -0.1799316406, 0.5532226562, 0.8134765625, -0.599609375, -0.8227539062, -0.6850585938, 0.4611816406, 0.1843261719, -0.76953125, 0.4233398438, 0.0917358398, 0.0042304993, -0.0735473633, 0.0582885742, 0.6118164062, 0.5952148438, -0.6533203125, 0.5888671875, -0.3747558594, -0.4370117188, 1.4453125, -0.2152099609, 0.3537597656, -0.4519042969, 1.59375, -0.041229248, -0.4033203125, 0.1583251953, 0.650390625, 0.5991210938, 0.0747070312, 0.3569335938, -0.7177734375, -0.5776367188, 0.2312011719, 1.1103515625, -0.4182128906, 0.1834716797, -0.0391235352, 0.4799804688, -0.6547851562, 1.2421875, 0.2292480469, 0.705078125, 0.4821777344, -0.9501953125, 1.25390625, -0.1418457031, -0.1652832031, -0.3100585938, -0.0958251953, 1.193359375, -1.0029296875, -0.1433105469, 0.0532836914, 0.5161132812, 0.2398681641, -0.4067382812, 0.4858398438, 0.3720703125, -0.7529296875, -0.6157226562, -0.0884399414, -0.6748046875, 0.4670410156, 0.2438964844, -0.2469482422, 1.072265625, -0.4853515625, 0.2459716797, 0.646484375, -0.4802246094, 0.431640625, 0.3757324219, -0.3200683594, 0.3852539062, 0.0466003418, 1.013671875, 0.720703125, -0.2039794922, -12.078125, -0.90234375, 0.058013916, -1.625, 0.2756347656, -0.6015625, 0.0390014648, -1.1044921875, -0.1729736328, -0.3322753906, 1.4755859375, 0.5927734375, -0.9877929688, 0.5727539062, 0.0205688477, -0.1840820312, -0.8872070312, -0.4011230469, 0.6147460938, -0.0856933594, 0.166015625, 0.3767089844, -1.8505859375, -0.6215820312, -0.0819702148, -0.3579101562, -0.3388671875, -0.9404296875, 0.4111328125, 0.7119140625, -0.6547851562, -0.1657714844, -1.42578125, 0.5522460938, 0.0941162109, 0.4184570312, 0.3701171875, -0.798828125, -0.1088256836, -0.5004882812, 1.2041015625, 0.3361816406, 0.1931152344, 1.08203125, -0.8442382812, 0.1672363281, -0.0972290039, -1.330078125, 0.7182617188, 1.0888671875, -0.1405029297, 0.3703613281, -0.2095947266, 0.0389099121, -0.3999023438, 0.5151367188, 1.0810546875, 0.0597839355, -0.5576171875, -0.8471679688, -1.255859375, 0.7651367188, -1.2138671875, 0.681640625, 0.916015625, 0.3657226562, -0.2590332031, -0.912109375, 1.9990234375, -0.5571289062, 0.294921875, -0.9096679688, 0.4448242188, 0.3203125, 0.1898193359, 0.8583984375, 0.2253417969, 0.7451171875, 0.9399414062, 0.1354980469, -0.728515625, -0.791015625 ]
Despite his good intentions, the attempts comes to another downfall, and almost spells his death, when Amazo returns to claim the newer and stronger body for himself. Metal Men (2009) The Metal Men are later restored as a second feature in the revamped Doom Patrol (5th series), written by Keith Giffen. Now living in simple suburbia in Kanigher Street, the Metal Men seem to be affected by his currently, partly deranged, state of mind. Iron seems unaffected, Gold is now humorously self-obsessed and magniloquent, Platina is lovesick, Lead is dimwitted and prone to errors, Tin is always scared and affected by chronic self-esteem issues, and Mercury, once brilliant and humorous, has now developed the same bipolar disturbance affecting Will Magnus himself, and refuses to take medications. Copper, the newest and seventh member, is disturbingly ignored by her teammates, who often refuse to acknowledge her presence despite being side by side with her. The New 52 In The New 52 timeline, Will Magnus is first mentioned in the Forever Evil storyline. A rebuilt Cyborg heads out to find Will Magnus so that he can learn about his "Metal Men" project. Meeting with Will Magnus, Cyborg learns that he can not help him. Magnus tells him the history of the Metal Men project, how they were built to execute search and rescue missions that humans could not tackle. After he was able to get them online, the government went back on their word and chose to have the Metal Men become assassins.
[ -0.3283691406, -0.6201171875, 0.2443847656, 0.6469726562, -0.51953125, 0.2015380859, 0.0362243652, -0.2429199219, -1.9794921875, -0.220703125, -0.3598632812, 0.4196777344, -1.1357421875, 0.4382324219, 0.0765380859, 0.544921875, 0.6044921875, -0.66015625, -0.3010253906, 1.0712890625, 0.4328613281, -0.1826171875, -0.1533203125, -0.5532226562, -0.763671875, 0.1143798828, 0.986328125, -0.7319335938, -0.4360351562, -1.21484375, 0.1668701172, -0.1455078125, -0.9287109375, -0.0508117676, -0.0170440674, 0.2000732422, -0.4851074219, -0.054107666, -0.2514648438, 0.4475097656, -1.662109375, 0.4387207031, 0.1531982422, 0.0845336914, 0.5009765625, -0.396484375, 0.658203125, 0.0835571289, 0.3117675781, 0.3562011719, -1.3671875, 1.4169921875, 0.2243652344, -0.3395996094, 0.3940429688, -0.0854492188, -0.0396118164, -0.3881835938, 0.0519104004, -0.4448242188, -0.662109375, 0.0077590942, -0.7524414062, -0.5634765625, -0.849609375, -0.1909179688, 0.7504882812, 0.818359375, -0.0947265625, -0.1671142578, -0.544921875, 0.7373046875, -0.2294921875, 0.5903320312, -0.6254882812, -0.2446289062, -0.642578125, 0.2388916016, -0.1461181641, -1.185546875, -0.5859375, 0.0138092041, -0.0205535889, 1.2841796875, -0.111328125, -1.02734375, 0.0372009277, -1.0087890625, -0.0465698242, 1.1103515625, 0.6376953125, 0.2797851562, 0.0009784698, 0.3442382812, -0.2189941406, -0.7299804688, -1.0859375, -0.3239746094, -0.1773681641, 0.3581542969, -0.8291015625, -0.6372070312, 0.1734619141, 0.5815429688, -0.1285400391, 2.19921875, -0.6142578125, -1.3974609375, -0.4772949219, 0.2680664062, 0.4406738281, 0.4672851562, -0.0723876953, 0.7719726562, -0.8740234375, 0.6728515625, -0.3435058594, 0.15625, -0.4125976562, 0.5698242188, -0.0777587891, 0.2783203125, -0.4975585938, -0.4736328125, -0.48828125, 0.0291748047, -0.3522949219, 0.1647949219, 0.6279296875, 0.6020507812, 0.638671875, -0.1195068359, -0.5087890625, -0.2341308594, 1.1279296875, -0.51953125, -0.1061401367, 0.5849609375, 0.7592773438, -0.0491943359, -1.0732421875, -0.2220458984, 0.6708984375, 0.6840820312, -0.7934570312, 0.9052734375, 0.3513183594, 0.8818359375, -0.5805664062, 0.1564941406, -0.9584960938, 0.7998046875, -0.2175292969, 0.2120361328, 0.2253417969, -0.7690429688, -0.4833984375, 0.0444946289, -0.0638427734, -0.5048828125, -0.498046875, -0.90234375, 0.0817871094, 0.53515625, -1.1728515625, -1.119140625, 0.5034179688, 1.150390625, -0.7885742188, -0.0745239258, 0.0254669189, -0.2739257812, 0.5971679688, -0.0455627441, 1.0302734375, -0.6196289062, 0.2021484375, -1.3125, -0.740234375, -0.3439941406, -0.48828125, -2.05859375, 1.1005859375, -0.7739257812, -0.4421386719, -1.0048828125, -0.0704345703, -0.2888183594, 0.0459289551, 0.0660400391, -0.3481445312, -1.2861328125, 0.2072753906, -0.1844482422, -0.1595458984, -1.2900390625, -0.0450744629, 0.3903808594, 0.4265136719, -1.001953125, -0.6181640625, -0.2077636719, -0.5991210938, -1.017578125, -0.1602783203, -1.525390625, -0.3149414062, 0.4184570312, -0.0413208008, 0.4631347656, -0.8149414062, -0.1368408203, 0.3952636719, -0.4724121094, -0.30078125, 0.0441589355, 0.8657226562, 0.3830566406, -0.1480712891, -0.2604980469, -0.4680175781, -0.0738525391, -0.8208007812, -0.2548828125, -0.9814453125, 0.0226593018, 0.6088867188, -0.4499511719, -0.3830566406, 0.5551757812, 0.9350585938, -0.9282226562, -0.1260986328, 0.1977539062, 0.1656494141, 0.6640625, 0.0001688004, 0.1220703125, -0.1650390625, -0.5561523438, -0.6323242188, -0.6323242188, 0.85546875, -0.55078125, 0.2072753906, -0.4799804688, -0.4458007812, 0.732421875, -0.0013160706, 0.6440429688, -0.0791015625, 0.4880371094, -0.5317382812, 0.744140625, 0.0094070435, -0.2037353516, -0.7338867188, 0.4150390625, 1.1025390625, 0.1838378906, -0.4658203125, 0.9458007812, 2.09765625, -0.3999023438, 0.5498046875, 1.2890625, 0.0516967773, -0.7749023438, -0.0269775391, -1.5927734375, -0.4748535156, -0.3776855469, 0.8305664062, -0.9819335938, -0.2934570312, 0.3801269531, 0.3618164062, 0.3596191406, 0.5122070312, 0.53125, 0.478515625, 1.27734375, 0.1811523438, -0.6357421875, 0.890625, -0.83984375, -0.2115478516, 0.3305664062, -0.1728515625, -0.7231445312, -0.8232421875, -0.1629638672, 0.3063964844, -0.1189575195, -0.2854003906, 0.4697265625, -0.568359375, 1.232421875, 0.2839355469, -0.0147781372, -0.0121078491, 0.3703613281, 0.1242675781, 1.4384765625, 0.556640625, -0.4504394531, -0.6665039062, 0.1028442383, 0.4919433594, 0.3298339844, 0.4045410156, -1.4609375, 0.4272460938, -0.4006347656, -0.6948242188, -0.162109375, 1.39453125, -0.2639160156, -0.6435546875, -0.3757324219, 0.1296386719, -0.9331054688, 0.7348632812, -0.1279296875, 0.8955078125, -0.0587463379, -0.4919433594, 0.0320739746, -0.5698242188, 0.7836914062, 0.6254882812, 0.1622314453, 0.4555664062, 0.9301757812, 0.7436523438, -0.4702148438, 0.525390625, 0.4575195312, -0.3198242188, 0.7133789062, 0.0132141113, -0.1013793945, 0.3510742188, -0.2329101562, 0.1108398438, -0.265625, 0.0529174805, -1.1103515625, 1.3046875, 0.0002486706, -0.2379150391, 1.2744140625, -0.4143066406, 0.0777587891, 1.0361328125, -0.1616210938, 0.1259765625, -0.1567382812, -0.4836425781, 0.0073204041, 0.0487976074, 0.3293457031, -0.4418945312, 0.46875, 0.4387207031, -0.4602050781, 0.5600585938, 0.94140625, -0.0265197754, -0.5200195312, -0.2861328125, -0.3481445312, -0.5981445312, 0.4357910156, 1.0625, -1.1005859375, -0.0506286621, -0.3579101562, 0.5166015625, 0.3645019531, -0.1444091797, -0.7143554688, 0.0383300781, -0.5161132812, -0.3771972656, 0.8403320312, 0.4282226562, -0.3044433594, -1.2265625, -0.8305664062, -0.5502929688, 0.2731933594, 0.6533203125, -0.2907714844, -0.9418945312, -0.2438964844, 0.5366210938, -1.1416015625, -0.5688476562, 0.5185546875, 0.525390625, 0.6928710938, 0.0580749512, 0.4235839844, 0.6625976562, -0.9833984375, 0.3376464844, 1.6435546875, 0.7602539062, 0.37109375, -0.4284667969, 0.28515625, -0.032043457, 0.080078125, 0.3518066406, -0.0191497803, 0.5278320312, -0.6313476562, 0.4899902344, 0.4792480469, -0.5405273438, -0.0981445312, 0.5659179688, -0.0019817352, -0.1822509766, 0.2875976562, -1.2451171875, -1.1728515625, 0.1843261719, 0.5385742188, 0.2956542969, 1.1962890625, 0.3327636719, 0.75, 0.1597900391, -0.8779296875, 0.2080078125, 0.0145874023, -0.7250976562, 0.3369140625, 0.7006835938, 1.2158203125, -0.2487792969, 0.2457275391, 1.3037109375, 0.513671875, 0.4113769531, 0.609375, 0.7749023438, -0.3781738281, -1.826171875, -2.625, 1.1455078125, -0.6557617188, 0.41015625, -2.240234375, 0.2209472656, 0.1090698242, 0.912109375, 0.2111816406, -0.5688476562, 0.2580566406, -0.1861572266, -1.1171875, -0.51953125, -1.09375, 0.6616210938, 0.0721435547, -0.265625, -0.2496337891, 0.2454833984, 0.2600097656, -0.759765625, 0.8881835938, -0.4721679688, -0.2266845703, 0.1110839844, -0.1249389648, -0.9130859375, -0.6396484375, -0.0900878906, 0.0925292969, 0.5571289062, 1.3115234375, -0.109375, -0.517578125, 0.0361633301, 0.3581542969, 0.67578125, -0.0884399414, 0.38671875, -0.2473144531, 0.6752929688, -0.3688964844, -0.5151367188, -0.3557128906, 0.0222320557, -0.5595703125, -0.1712646484, -0.7495117188, -1.0400390625, -0.1990966797, 0.1087646484, -0.4011230469, -0.078918457, 0.6147460938, -0.287109375, -0.3190917969, -0.0247039795, 0.4831542969, -0.0182495117, 0.0819702148, 1.1376953125, 1.123046875, -0.085144043, 0.0512084961, 0.3852539062, 0.8549804688, -0.39453125, -0.052734375, 0.7509765625, -0.2053222656, 0.2144775391, -0.5786132812, -0.3115234375, -0.4028320312, 0.8608398438, 0.0625, 0.2814941406, -0.1787109375, -1.078125, -0.681640625, 0.1267089844, 0.5009765625, 0.4672851562, -0.25, -0.4020996094, -0.0559387207, 0.509765625, 0.833984375, 0.4714355469, -0.6635742188, -0.7841796875, 1.1806640625, 0.4763183594, 0.271484375, 0.2309570312, 0.619140625, -0.7255859375, -0.4555664062, 0.0153884888, 0.326171875, 0.513671875, 0.5209960938, 0.2922363281, -1.0361328125, -1.21875, -0.0204620361, 0.8212890625, -0.1690673828, 0.51171875, 0.8842773438, 0.6708984375, 1.2392578125, -0.1006469727, 0.16796875, -0.5166015625, -0.1150512695, -1.251953125, -0.0875244141, 0.8217773438, -0.6015625, -2.44921875, -0.1627197266, -1.2158203125, -0.9633789062, -0.408203125, 0.5297851562, 0.0439758301, 0.2418212891, 0.1435546875, 0.4443359375, -0.4028320312, -0.2316894531, -0.1156005859, 0.4123535156, -0.1663818359, -0.1937255859, 0.0085678101, -0.84765625, -0.3518066406, 0.1883544922, -0.3544921875, -0.0066413879, 0.2749023438, -0.2430419922, -0.9057617188, -0.2565917969, 0.4282226562, 0.6157226562, -0.1560058594, 0.3129882812, -0.0343017578, 0.1770019531, -0.6484375, -0.3930664062, -0.64453125, -0.607421875, -0.2087402344, 0.3774414062, 0.4560546875, 0.4619140625, 0.1335449219, 0.5224609375, 0.1715087891, 0.75390625, 0.8217773438, -0.5239257812, 0.1892089844, -1.7998046875, -0.0318603516, -0.1265869141, 1.0673828125, -0.0331420898, -0.0950927734, 0.6000976562, 0.4067382812, -0.6899414062, -1.185546875, -0.72265625, -0.2236328125, 0.6303710938, 0.2143554688, 0.1053466797, -1.390625, 0.5375976562, 0.2044677734, 0.5541992188, 0.6669921875, -0.1704101562, -0.055847168, -1.361328125, -1.029296875, -0.4584960938, 0.5893554688, -0.7294921875, 0.30078125, -0.3928222656, -0.771484375, -0.0527038574, 0.7026367188, 0.3361816406, 0.0993041992, -0.1226196289, -0.9291992188, -0.8276367188, -0.2280273438, -0.0298614502, 1.0341796875, -0.2462158203, -1.0458984375, -0.4484863281, -0.8046875, -0.3146972656, 0.2565917969, -0.7612304688, 1.24609375, 1.6298828125, 0.4318847656, -0.4165039062, 0.5180664062, 0.3254394531, 0.41796875, 0.599609375, -1.1611328125, -0.3205566406, -0.2309570312, 0.2770996094, -0.7998046875, 0.69921875, 0.7099609375, -0.1921386719, 0.6928710938, 1.51953125, 0.1221923828, 0.0476379395, -0.7250976562, -0.6162109375, 0.0872802734, -0.5590820312, -1.3759765625, 0.5244140625, -0.9106445312, -0.2247314453, 0.0823364258, -0.7016601562, 0.2276611328, -0.3203125, -0.365234375, 0.1716308594, -0.1730957031, 0.2208251953, -0.5283203125, 0.4770507812, 1.3076171875, -0.0176391602, -0.4499511719, -0.5419921875, 0.7280273438, 0.53515625, 0.1956787109, 0.3969726562, 0.2229003906, -0.2587890625, 1.2197265625, 0.970703125, -1.01953125, 0.7211914062, -0.8173828125, -0.7568359375, -0.9321289062, 0.5249023438, 0.55078125, 0.4772949219, 0.6171875, -1.6015625, -0.067199707, -0.3669433594, 1.6201171875, -0.1632080078, -0.2032470703, -0.4914550781, -0.3894042969, -0.2875976562, -0.1069946289, 1.0029296875, 0.0709838867, -0.0350646973, -0.6484375, 0.3742675781, 0.010848999, -0.5166015625, 1.23046875, 0.6215820312, -0.830078125, 0.5180664062, 0.685546875, 0.4772949219, -0.2885742188, -0.6762695312, 1.3779296875, 0.2763671875, -1.052734375, 0.8920898438, 0.5478515625, -0.68359375, -0.9907226562, -1.2099609375, 0.8696289062, 0.5083007812, 0.33984375, -0.5791015625, 0.1793212891, -0.030670166, -0.6015625, -0.30078125, 0.1422119141, 0.212890625, 0.07421875, -0.2357177734, -0.4228515625, 0.0402832031, 0.1981201172, -0.2209472656, -1.2900390625, -0.4272460938, 0.5864257812, -1.2314453125, 0.380859375, -0.7783203125, 0.2403564453, -0.0588989258, 0.88671875, -0.990234375, -0.25, 0.1519775391, -0.357421875, 0.0152206421, 0.1315917969, 0.3762207031, 0.2275390625, -0.0430908203, 0.0786743164, 0.4382324219, 1.12890625, -0.490234375, 0.31640625, 0.4807128906, -0.65625, -0.4047851562, 0.3295898438, 0.482421875, -0.3752441406, -0.8696289062, -0.734375, 0.1201171875, -0.4953613281, 0.0256195068, -0.0328063965, -0.0145263672, 0.0216522217, -1.103515625, 0.4345703125, 0.2604980469, -0.8129882812, -0.0405883789, -1.005859375, 0.4252929688, -0.1036376953, 0.0933227539, 0.619140625, 0.2653808594, -0.6352539062, 0.2937011719, 0.20703125, -0.5278320312, -1.013671875, -0.16796875, -0.2319335938, -0.8046875, -0.1765136719, 0.3840332031, -0.9013671875, 0.1027832031, -0.0639648438, 0.0370483398, -1.0078125, 0.008354187, -0.857421875, -0.2512207031, 0.0977172852, 0.0186004639, 0.1507568359, -0.697265625, 0.2990722656, 0.3884277344, 1.10546875, -0.2805175781, 0.0378112793, 0.2883300781, 0.7607421875, 0.0317687988, 0.2805175781, -0.3054199219, 0.3122558594, -1.4130859375, -1.65234375, -0.7143554688, 0.4995117188, -1.728515625, 0.3044433594, 0.5073242188, -0.5546875, 0.4479980469, 0.642578125, 0.1768798828, 0.2993164062, -0.8837890625, 0.7329101562, 0.86328125, -0.9365234375, 0.0375671387, -0.0292205811, -0.4155273438, 0.1513671875, -0.3278808594, 0.8081054688, 0.2413330078, 0.0023365021, 0.7290039062, -0.1961669922, -0.0864868164, 0.3054199219, -0.6889648438, 0.5546875, 0.916015625, 0.986328125, -0.0417785645, -0.5869140625, 0.369140625, -0.100769043, 0.630859375, 0.112487793, 0.1263427734, -0.2126464844, -0.3696289062, 0.85546875, 0.5966796875, 0.055847168, -0.2381591797, 0.5693359375, -0.1643066406, -0.8115234375, 0.8046875, 0.583984375, 1.2724609375, 0.1041259766, -0.8149414062, 0.7612304688, 0.2687988281, 0.1100463867, -0.2125244141, 0.0629272461, 1.00390625, -0.9990234375, 0.5961914062, -0.1591796875, 0.1092529297, 0.7661132812, 0.0453796387, 0.3232421875, 0.1246337891, -0.7036132812, -0.1036376953, -1.28125, -0.8344726562, -0.6235351562, 1.06640625, 0.2412109375, 0.5717773438, -0.3181152344, 0.1187744141, -0.7895507812, 0.1528320312, -0.1143798828, 0.5131835938, -0.3701171875, 0.9609375, 0.0422973633, 0.6743164062, 1.322265625, 0.5068359375, -12.15625, -1.1123046875, -0.2373046875, -1.658203125, -0.8051757812, -0.2086181641, 0.8408203125, -1.3798828125, 0.4169921875, -1.111328125, 1.4521484375, 0.0705566406, -0.5556640625, 1.5537109375, 0.2041015625, -0.4118652344, -0.75390625, -0.0724487305, 0.7763671875, -0.5717773438, 0.4914550781, -0.3679199219, -0.818359375, -0.7006835938, -0.55078125, -0.3471679688, -0.3735351562, -1.2744140625, 0.5200195312, -0.1926269531, -0.7065429688, 0.0072174072, -0.91015625, 0.734375, 0.2165527344, 0.5317382812, -0.541015625, -0.583984375, 0.0222930908, -0.4738769531, 1.3701171875, 0.474609375, -0.0271606445, 1.353515625, 0.0119247437, 1.224609375, -0.3295898438, -1.4755859375, 1.1611328125, 0.240234375, -0.0463256836, 0.5341796875, -0.1044921875, -0.0504455566, -0.8662109375, 0.8715820312, 1.1455078125, 0.0744628906, -0.6064453125, -0.1505126953, -0.9267578125, 1.4697265625, -1.3291015625, 0.3244628906, 1.2392578125, 0.1640625, -0.8798828125, -0.427734375, 0.1566162109, -0.4699707031, -0.4846191406, -0.95703125, -0.162109375, 0.71484375, 0.51953125, 0.2376708984, 0.5322265625, 0.1944580078, 0.9467773438, 0.3842773438, -1.18359375, -0.1407470703 ]
The Metal Men hid at Magnus' apartment where they help protect Magnus and the population from an experiment gone wrong, destroying themselves in the process. Seeing their responsometers that control them in Magnus' lab, Cyborg senses that their minds and hearts are still active encouraging Magus to activate them once more to help him. When the Conner Kent version of Superboy shows up asking for help, Superman gathers all the geniuses he knows, including, but not limited to, Mister Terrific, Batman, Ted Kord and Will Magnus. Examination of Conner leads the group to ponder evidence that the universe has been rebooted at least three times. Powers and abilities While human, Doc Magnus had no special abilities aside from his great intellect. His vast intelligence was responsible for the creation of the Metal Men, along with various other robots. While he was Veridium, Magnus was the most powerful of the Metal Men. He could store and channel heat and energy. Other versions In the Amalgam Comics universe, Will Magnus, jealous of his brother Erik for constantly outshining his scientific accomplishments with his Metamutant abilities, created the Sentinels to hunt down Metamutants. Will Magnus is featured in the Smallville Season 11 digital comic based on the TV series. In other media Television Dr. William Milton Magnus appears in the Batman: The Brave and the Bold animated series, voiced by Corey Burton. In the episode "Clash of the Metal Men", he and the title characters help Batman defeat Chemo before showing the Dark Knight how he created the Metal Men.
[ -0.2900390625, 0.0417480469, 1.072265625, 0.4213867188, -0.8852539062, 0.0384521484, -0.2045898438, -0.5698242188, -1.857421875, -0.5307617188, -0.1723632812, 0.1925048828, -0.8466796875, 0.1154174805, -0.0580444336, 0.462890625, 0.3586425781, 0.4609375, 0.298828125, 1.3134765625, 0.5458984375, -0.3364257812, -0.515625, -0.3947753906, -0.86328125, 1.0537109375, 0.1014404297, -0.83203125, -0.3786621094, -0.9916992188, 0.2990722656, 0.3264160156, -2.130859375, -0.193359375, -0.1329345703, -0.2829589844, -0.6010742188, -0.787109375, -0.2626953125, 0.6450195312, -0.8291015625, -0.0576782227, -0.4768066406, 0.0743408203, -0.2019042969, -0.3552246094, 0.4772949219, 0.2215576172, -0.3854980469, -0.0990600586, -0.4453125, 0.2218017578, 0.5180664062, 0.2551269531, 0.5053710938, 0.2211914062, 0.5791015625, -0.91015625, -0.5029296875, 0.0853881836, -0.4758300781, 0.8247070312, -0.9716796875, -1.1123046875, -0.4289550781, 0.4904785156, 0.7114257812, -0.4270019531, 0.2622070312, 0.2426757812, -0.90234375, 1.1591796875, 0.5297851562, -0.0494995117, -0.2722167969, -0.9287109375, -0.7670898438, 0.7221679688, 0.4797363281, -1.189453125, 0.1120605469, -0.80078125, -0.1533203125, 0.8540039062, -0.3271484375, -0.6420898438, -0.4990234375, -1.244140625, 0.1866455078, 1.505859375, 0.3225097656, 0.16796875, 0.44921875, 0.2678222656, 0.4265136719, -1.1494140625, -1.076171875, -1.564453125, -0.7368164062, 0.1585693359, -0.7231445312, -0.112121582, -0.2099609375, 0.3774414062, -0.028427124, 1.375, 0.4025878906, -1.525390625, -0.2200927734, -0.2805175781, 0.4233398438, 0.1307373047, -0.5366210938, 0.7260742188, 0.3811035156, 0.6625976562, -0.5698242188, -0.2056884766, 0.0844726562, 0.44140625, -0.2941894531, 0.092956543, -0.5473632812, 0.0345153809, 0.4470214844, -0.2039794922, -0.6025390625, -0.2700195312, -0.2415771484, 0.110534668, 0.1262207031, -0.059173584, -0.1904296875, -0.5791015625, 0.1756591797, -0.9204101562, -0.1654052734, -0.0747680664, 0.0530090332, -1.3740234375, -1.01171875, -0.7216796875, 0.5947265625, 0.9233398438, -0.2277832031, 0.6337890625, 0.0539855957, 1.4150390625, 0.6928710938, 1.1201171875, -1.6298828125, 0.8227539062, -0.2563476562, -0.546875, 0.0941162109, -0.7495117188, 0.5424804688, -0.5405273438, -0.4821777344, -0.833984375, -0.0956420898, -0.888671875, -0.32421875, 0.8134765625, -0.3210449219, -0.6586914062, 0.120300293, 0.4855957031, 0.0985107422, -0.0422058105, -0.0483093262, -0.0257415771, 0.6923828125, 0.0783081055, -0.2631835938, -0.068359375, 0.3532714844, -1.56640625, -0.4064941406, -1.5, 0.1671142578, -2.490234375, 0.6494140625, -1.080078125, -0.2749023438, -0.3469238281, 0.5063476562, 0.2712402344, -0.826171875, 0.1586914062, -1.0224609375, -0.1849365234, -0.466796875, -0.8237304688, 0.2313232422, -0.9956054688, 0.2783203125, 1.0595703125, -0.2697753906, 0.1684570312, -0.4384765625, 0.2548828125, -0.5283203125, -0.953125, -0.0756835938, -1.7998046875, 0.7055664062, 0.0353393555, 0.0227508545, -0.4060058594, -0.6416015625, 0.4616699219, 0.1502685547, -0.1506347656, -0.5185546875, 0.2471923828, 0.0372314453, 0.794921875, 0.2893066406, 0.28125, -0.2985839844, -1.0341796875, -1.3486328125, -0.7329101562, -1.572265625, -0.4548339844, 0.1616210938, -0.1954345703, -0.4699707031, 0.7734375, 0.60546875, -0.4892578125, -0.1921386719, -1.263671875, 0.4736328125, 0.1420898438, 0.1375732422, -0.6435546875, -0.8959960938, -0.54296875, -0.1759033203, -1.0634765625, 0.2095947266, -0.1209106445, -0.7875976562, -1.02734375, 0.3876953125, 0.5942382812, -0.081237793, 0.4985351562, 0.2061767578, -0.0470275879, -0.458984375, 0.1645507812, 0.4521484375, -0.4340820312, -0.2479248047, 0.623046875, 0.939453125, 0.5131835938, 0.0856933594, 0.517578125, 1.583984375, -0.951171875, 0.8408203125, 0.388671875, 0.1135864258, -0.994140625, -0.2130126953, -0.5405273438, -0.1518554688, 0.2900390625, 0.2666015625, -0.8676757812, -0.4013671875, -0.3706054688, 0.3833007812, -0.1120605469, 1.2998046875, 0.2907714844, 0.7377929688, 0.8032226562, 0.2958984375, 0.0347900391, 0.64453125, -0.5825195312, -0.4790039062, -0.4338378906, -0.2379150391, -0.3537597656, 0.6943359375, 0.3840332031, 0.4113769531, 0.3762207031, 0.98046875, 0.4729003906, -0.4255371094, 1.298828125, 0.4575195312, 0.1263427734, 0.2866210938, 0.9755859375, -0.1530761719, 0.8447265625, 0.5258789062, -0.1948242188, 0.0458374023, 0.6196289062, -0.1528320312, -0.1989746094, 0.4755859375, -2.294921875, 0.3820800781, -0.3852539062, -0.4555664062, 1.1162109375, 1.65234375, 0.2259521484, -0.1723632812, -0.0160827637, -0.5131835938, -0.8251953125, 0.591796875, -0.5146484375, 0.595703125, -0.1030883789, -0.75390625, -0.1517333984, -0.0616760254, 0.0583190918, 0.6811523438, -0.0842285156, 0.3093261719, 1.1787109375, 0.4487304688, -0.0977783203, 0.8466796875, 0.5278320312, -0.7509765625, 0.8432617188, 0.6899414062, -0.3125, 0.4382324219, 0.5346679688, 0.8295898438, 0.3967285156, -0.6025390625, -0.87890625, 1.34375, -0.2041015625, -0.7333984375, 0.0014562607, -0.2321777344, -0.0706787109, 0.5815429688, 0.2496337891, 0.07421875, -0.8940429688, -0.2412109375, 0.2802734375, 0.31640625, -0.2469482422, -0.3442382812, 0.7329101562, 0.0408630371, -0.392578125, 0.9892578125, 0.5024414062, 0.0109100342, -0.14453125, 0.4072265625, -0.4289550781, -1.4794921875, 0.5327148438, 0.95703125, -1.3427734375, -0.8046875, -0.6147460938, -0.0116882324, 0.8413085938, -0.2739257812, -0.1424560547, 0.0875854492, -0.9760742188, 0.7192382812, 0.541015625, -0.7114257812, 0.2744140625, -1.611328125, 0.0241241455, -0.0806884766, 0.3483886719, 0.822265625, 0.1066894531, -0.4792480469, -0.6875, 0.4157714844, -1.1650390625, -0.4982910156, 0.7524414062, 0.2429199219, -0.0692749023, 0.0885620117, 0.5219726562, 0.2746582031, -0.3310546875, 0.2198486328, 1.3359375, 0.33203125, -0.3974609375, -0.271484375, 0.0818481445, 0.5634765625, -0.1285400391, 0.4060058594, -0.26953125, 0.1311035156, 0.0000694394, 0.6459960938, -0.587890625, -0.4670410156, 0.1960449219, 0.3271484375, 0.4602050781, 0.6538085938, 0.2609863281, -0.8237304688, -1.05859375, 0.1851806641, -0.59765625, 0.6674804688, 0.5693359375, -0.1010131836, -0.1950683594, 0.52734375, 0.1391601562, 0.5073242188, 0.5649414062, -0.2595214844, 0.106262207, 0.7592773438, 1.150390625, -0.7309570312, 0.4228515625, 1.556640625, 0.16015625, 0.0444641113, -0.0412902832, 0.8051757812, -1.466796875, -1.6494140625, -2.2890625, 1.59765625, -0.0617675781, 0.4165039062, -1.41015625, 0.9008789062, 0.314453125, 0.4475097656, 0.423828125, -0.2232666016, 0.4113769531, -0.3854980469, -0.63671875, -0.3713378906, -0.91015625, 1.1328125, 1.328125, 0.1636962891, -0.9672851562, 1.669921875, -0.3103027344, -1.1240234375, 0.2915039062, -1.23046875, 0.0116043091, 0.5390625, 0.3454589844, -0.7084960938, 0.1018676758, 0.0662841797, 0.8173828125, 0.875, 0.7924804688, -0.6357421875, -0.026550293, 0.1788330078, 0.1973876953, -0.1575927734, -1.197265625, 0.388671875, -0.0292663574, -0.0759277344, -0.7431640625, -0.78125, -0.9111328125, -0.0751953125, -0.0273590088, -1.2451171875, -0.2180175781, -0.970703125, -0.8154296875, -0.2213134766, 0.1268310547, 0.1789550781, 0.7055664062, 0.4831542969, -0.6728515625, -0.0328979492, 0.880859375, -0.0500793457, 0.4116210938, 1.7353515625, 0.4965820312, 0.388671875, 0.2075195312, 0.4526367188, -0.0546875, -0.1623535156, -0.2414550781, 0.9897460938, 0.248046875, -0.2690429688, 0.2346191406, -0.1016845703, 0.0704956055, 1.65625, -0.2585449219, -0.0053329468, -1.57421875, -0.6494140625, -0.8442382812, -0.041809082, 0.4045410156, 0.7221679688, -0.6635742188, 0.1282958984, 0.4448242188, 0.794921875, 0.5239257812, 0.6000976562, -1.0673828125, -0.7290039062, 0.8828125, 0.6674804688, 0.0167999268, -0.2048339844, 1.3046875, -0.4206542969, 0.0977783203, 0.3012695312, -0.0588989258, 0.9487304688, -0.7197265625, 0.7114257812, -0.3374023438, -1.1494140625, -0.0710449219, -0.0524597168, -0.3295898438, -0.1846923828, 0.3161621094, 0.6967773438, 0.9038085938, 0.4831542969, 0.4077148438, 0.1047973633, -0.1529541016, -0.6137695312, 0.2314453125, 0.5541992188, -0.892578125, -2.095703125, -0.0748901367, -0.6025390625, -0.9965820312, -0.0991210938, -0.037689209, 0.705078125, 0.8251953125, -0.2059326172, 0.6840820312, -1.0771484375, -0.9443359375, 1.47265625, 0.7250976562, 0.72265625, -0.318359375, -0.4819335938, -0.6909179688, -0.0418395996, -0.4702148438, -0.7719726562, 0.1893310547, 0.5161132812, 0.0827636719, -1.251953125, -0.7719726562, 0.6928710938, 0.8779296875, -0.70703125, 0.1590576172, -0.4521484375, 0.486328125, -0.4448242188, -0.2404785156, -0.1032104492, 0.681640625, -0.6455078125, 0.37109375, -0.396484375, 0.3332519531, 0.3791503906, -0.2973632812, 0.1313476562, 1.16015625, 0.4206542969, -1.095703125, 0.3732910156, -0.3022460938, 0.3269042969, 0.1050415039, 1.19140625, -0.5483398438, 0.33203125, 0.5874023438, 0.685546875, -0.3413085938, -0.794921875, -0.6909179688, -1.2490234375, -0.3530273438, 0.4274902344, -0.2084960938, -1.69140625, 0.4875488281, 0.0736083984, 0.779296875, 0.6450195312, -0.3852539062, -0.564453125, -1.15625, -1.1494140625, 0.2242431641, 0.2288818359, -0.3940429688, 1.03515625, -0.3100585938, -0.966796875, -0.830078125, -0.0757446289, 0.4611816406, 0.0728759766, 0.646484375, -0.5346679688, -1.197265625, 0.4077148438, -0.3327636719, 0.8896484375, -0.2741699219, -0.5639648438, -0.263671875, 0.0348205566, 0.3137207031, 0.2670898438, -0.4104003906, 0.3940429688, 0.9267578125, -0.0927734375, -0.0273590088, 0.9887695312, 0.1173095703, 0.2053222656, 0.2170410156, -0.9267578125, 0.3637695312, 0.1845703125, -0.3225097656, -0.7763671875, 0.2609863281, 0.2425537109, 0.3122558594, 1.0703125, 1.056640625, -0.5390625, 0.5766601562, -0.66015625, -0.2854003906, 0.478515625, -0.5415039062, -0.697265625, -0.9008789062, -0.8994140625, 0.3041992188, 0.59375, -1.3291015625, -0.2670898438, -0.5786132812, -0.6733398438, 0.5258789062, 0.7216796875, 1.0517578125, -1.0263671875, 0.2247314453, 0.6513671875, -0.1485595703, -0.322265625, -0.2358398438, 0.9047851562, 1.0283203125, 0.5341796875, 0.7036132812, -0.2834472656, -0.6118164062, 1.52734375, 0.5380859375, -0.4150390625, 0.5747070312, -1.265625, 0.068359375, 0.2893066406, 0.1484375, 0.3610839844, 0.4338378906, 0.0403747559, -1.16015625, -0.5986328125, -0.1132202148, 1.1005859375, -0.2836914062, -0.0312042236, -0.1052856445, 0.0168304443, -0.40234375, 0.060760498, 1.58203125, 0.3205566406, 1.0595703125, 0.1628417969, 0.3024902344, 0.2280273438, -0.0057220459, 0.7104492188, 0.3374023438, -0.3701171875, -0.1932373047, 0.6264648438, 0.5991210938, -0.271484375, -1.546875, 0.3947753906, 0.6625976562, 0.1430664062, 1.474609375, 0.3315429688, 0.0318603516, -0.9819335938, -1.10546875, 0.3666992188, 0.3115234375, 0.2761230469, -0.3107910156, 0.2585449219, -0.1580810547, -0.4174804688, -0.5756835938, -0.146484375, -0.1136474609, -0.2548828125, 0.5053710938, -0.4289550781, 0.7104492188, -0.615234375, -0.8505859375, -1.080078125, 0.634765625, 1.00390625, -1.5771484375, 0.6596679688, -0.9565429688, -0.2302246094, -0.1204223633, -0.3601074219, -1.3974609375, -0.2709960938, 0.1987304688, -0.1931152344, 0.3791503906, 0.0856933594, 0.9814453125, 0.1829833984, -0.4072265625, 0.3063964844, 0.2697753906, 0.5561523438, -0.2058105469, -0.6840820312, 0.4223632812, 0.6567382812, -0.3334960938, 0.6967773438, 0.65625, -0.4975585938, -0.6420898438, -0.7563476562, 0.0278625488, -0.0200805664, -0.0680541992, 0.8637695312, -0.2469482422, 0.3447265625, -1.177734375, 0.0189056396, 0.8784179688, 0.0895385742, 0.2541503906, -0.9165039062, 0.3374023438, 0.642578125, 1.037109375, 0.5141601562, 0.3095703125, -0.3029785156, -0.0042304993, 0.9248046875, -0.1118164062, 0.2385253906, -0.5424804688, 0.1326904297, 0.0827636719, -0.7016601562, -0.3505859375, -1.1064453125, 1.0576171875, -0.7802734375, -0.0577392578, -0.4584960938, 0.3969726562, -1.404296875, -0.3820800781, 0.0498046875, -0.1068115234, -0.004486084, -0.0135345459, 0.5776367188, -0.2661132812, 1.384765625, -0.8388671875, 0.3115234375, -0.2995605469, 0.0604858398, 0.0519104004, -0.2766113281, -0.3837890625, 0.1240844727, -0.8505859375, -1.0205078125, -0.2648925781, 0.3051757812, -1.54296875, 0.0038852692, 0.693359375, -1.0556640625, 0.6845703125, 0.3286132812, -0.5502929688, -0.067565918, -0.29296875, 0.8129882812, 0.0609436035, -0.2230224609, 0.1844482422, 0.1217041016, -0.9741210938, -0.4348144531, -1.0595703125, 0.2045898438, -0.1192016602, -1.35546875, -0.0029411316, 0.4230957031, -1.115234375, 1.3984375, -0.2802734375, 0.822265625, 0.0066108704, 1.615234375, -0.1281738281, 0.1499023438, 0.6450195312, -0.3935546875, -0.0540466309, 0.7060546875, 0.3083496094, -0.6274414062, -0.6166992188, 0.3471679688, 0.740234375, 0.2189941406, 0.0484313965, -0.1138916016, 1.1591796875, -0.9526367188, 0.7705078125, 0.0864257812, 0.7924804688, 0.1496582031, -1.177734375, 0.6904296875, 0.4873046875, -0.1217651367, -0.0993652344, 0.0804443359, 2.158203125, -0.8818359375, -0.291015625, 0.755859375, 0.3015136719, 0.0307922363, 0.018661499, 0.3293457031, 0.0705566406, -1.0859375, -0.3088378906, -1.0458984375, -0.4345703125, 0.0741577148, 0.1021118164, 0.4597167969, 0.4755859375, 0.0817260742, 0.059967041, 0.5795898438, -1.275390625, -0.1502685547, 0.412109375, 0.1937255859, 0.2734375, 0.1994628906, 0.9326171875, 0.2729492188, 0.1761474609, -11.4453125, -0.6821289062, -0.8803710938, -1.6015625, -0.51171875, -0.8403320312, 0.4497070312, -0.56640625, 0.2712402344, -0.2924804688, 1.0517578125, 0.4526367188, -0.8515625, 0.779296875, 0.533203125, -0.0598754883, -0.3000488281, -0.1546630859, 0.1108398438, -0.1127929688, -0.3386230469, 0.0667114258, -0.9775390625, -0.9545898438, -0.6845703125, -0.3884277344, 0.3083496094, -0.9262695312, 0.091796875, -0.1513671875, -0.1832275391, 0.2707519531, -1.3193359375, -0.0997924805, -0.0442504883, 0.6381835938, -0.4831542969, -0.3208007812, 0.2495117188, -0.2093505859, 0.77734375, 0.3469238281, -0.9536132812, 0.9252929688, -0.1900634766, 0.084777832, 0.0164031982, -1.3447265625, 0.4401855469, 0.7216796875, 0.3830566406, 0.681640625, -0.2624511719, 0.1091918945, -1.03515625, 0.625, 0.6181640625, 0.2888183594, -0.4948730469, -1.0166015625, -1.8173828125, 0.4482421875, -1.1455078125, 0.494140625, 0.93359375, 0.0145797729, -0.2453613281, -0.3393554688, 0.7504882812, -0.4345703125, -0.3547363281, -1.3232421875, 0.0675048828, 1.439453125, 0.7836914062, 0.658203125, 0.3767089844, 0.1612548828, 1.0224609375, -0.0396118164, -1.63671875, -0.2028808594 ]
The Gas Gang later kidnap Dr. Magnus and take him to their base, where they reveal themselves as his assistants who were presumed killed in a lab explosion, only to be transformed into gaseous forms, before forcing him to build robotic bodies for them. Dr. Magnus complies just as Batman and the Metal Men arrive to save him. In the episode "The Super-Batman of Planet X", Dr. Magnus and the Metal Men help Batman defeat Kanjar Ro and a group of space pirates. In the episode "The Siege of Starro" [Pt. 2], Dr. Magnus fell under Starro's control and attempted to reprogram the Metal Men to serve the alien, but was stopped by Booster Gold and Skeets. Dr. Will Magnus appears in the Metal Men shorts of DC Nation Shorts, voiced again by Corey Burton. Dr. Will Magnus and his company are mentioned in Arrow episode "Spartan". Film Dr. Will Magnus appeared in the animated film Justice League: The New Frontier, voiced by Townsend Coleman. An alternate reality version of Will Magnus appeared in the animated film Justice League: Gods and Monsters, voiced by C. Thomas Howell. In his college years, he attempted to help Kirk Langstrom devise a serum to cure the latter's cancer, only to turn Langstrom into a pseudo-vampire. A year after this, Magnus accidentally beat his wife Tina to death after realizing she preferred Langstrom over him. This prompted Magnus to set out to try to end all human conflict, believing there was no hope in humanity if a rational man like himself could do something so violent.
[ -0.4799804688, -0.2078857422, 1.134765625, 0.9165039062, -0.650390625, 0.7880859375, 0.110534668, -0.2736816406, -2, -0.6557617188, 0.2125244141, 0.2604980469, -0.5991210938, 1.0791015625, -0.2517089844, 0.453125, 0.1293945312, -0.4926757812, 0.1224975586, 0.2009277344, 0.8403320312, 0.2213134766, -0.4567871094, -0.4013671875, -1.259765625, 0.9477539062, 0.70703125, -0.853515625, -0.8237304688, -1.494140625, 0.5283203125, 0.8154296875, -0.7646484375, -0.2875976562, -0.1765136719, -0.1130981445, -0.5458984375, 0.0448303223, -0.1030273438, 1.1083984375, -0.9243164062, 0.4919433594, 0.3146972656, 0.9375, 0.2370605469, -0.5302734375, 0.2648925781, 0.5649414062, 0.0570983887, 0.1801757812, -0.9765625, 0.0069999695, 0.708984375, -0.1569824219, -0.2158203125, 0.5419921875, -0.077331543, -0.7944335938, -0.0133972168, -0.1619873047, -0.4152832031, 0.7978515625, -1.216796875, -0.7631835938, -0.6455078125, -0.0530395508, 0.7524414062, -0.4313964844, 0.1607666016, 0.4946289062, -0.2065429688, 1.2373046875, 0.045715332, 0.640625, -1.125, -0.7109375, -0.94921875, 0.5493164062, -0.3034667969, -0.8217773438, -0.2117919922, -0.6303710938, 0.1212158203, 1.0849609375, -0.5634765625, -0.5302734375, 0.0617980957, -0.1539306641, 0.4204101562, 0.9594726562, 0.8618164062, -0.408203125, -0.1145629883, 0.4372558594, 0.6391601562, -0.5834960938, -0.9946289062, -1.0966796875, -0.6967773438, -0.1713867188, -0.3327636719, -0.26953125, 0.7705078125, -0.2573242188, -0.1016845703, 2.123046875, 0.3227539062, -0.6201171875, -0.8188476562, -0.31640625, 0.1171264648, -0.2546386719, 0.1553955078, 0.5278320312, 0.2413330078, 0.5703125, 0.0333862305, 0.032623291, -0.2308349609, 0.3596191406, -0.63671875, -0.0982666016, -0.6079101562, 0.9228515625, 0.30859375, -0.0065040588, -0.4870605469, -0.2817382812, 0.5009765625, 1.0185546875, 0.4301757812, -0.5170898438, -0.23828125, -0.1844482422, -0.2705078125, -0.3103027344, -0.0474853516, 0.4006347656, 0.4008789062, -1.0361328125, -0.822265625, -0.2629394531, 1.19140625, 0.7788085938, -0.1107788086, 0.5834960938, 0.1866455078, 1.1171875, -0.1619873047, 0.78125, -1.3681640625, 0.7153320312, -0.818359375, -0.859375, -0.1967773438, -0.3254394531, -0.2800292969, -0.818359375, -0.6870117188, -0.3637695312, -0.0953369141, -0.6323242188, -0.5048828125, 0.7373046875, -0.1322021484, 0.2497558594, 0.5234375, 0.9086914062, -0.0160217285, 0.0901489258, 0.5473632812, 0.3759765625, 0.1403808594, -0.7905273438, 0.0034275055, -0.7387695312, 0.3330078125, -1.4619140625, -0.3505859375, -0.6918945312, -0.4736328125, -2.234375, 0.9291992188, -1.2001953125, -0.0854492188, -0.3579101562, -0.1824951172, 0.650390625, -1.0703125, 0.4365234375, 0.576171875, -0.3991699219, -0.3894042969, -1.3798828125, 0.3015136719, -0.376953125, 0.4826660156, 1.0966796875, 0.0646362305, -0.302734375, -0.716796875, -0.1379394531, -0.4504394531, -0.71875, 0.2192382812, -1.77734375, 0.5278320312, -0.0787353516, -0.7470703125, -0.70703125, -1.056640625, -0.2026367188, 0.08203125, -0.0203857422, -0.1594238281, 0.0704956055, 0.073059082, 0.740234375, 0.3090820312, 0.345703125, -0.748046875, -0.3198242188, -0.6474609375, -0.3205566406, -0.9580078125, -0.4606933594, 0.4907226562, -0.1630859375, -0.7270507812, 0.1129150391, 0.8232421875, -0.3005371094, -0.75390625, -1.392578125, 0.6318359375, 0.3872070312, 0.0056838989, -0.1872558594, -1.201171875, -0.4489746094, -0.3796386719, -1.0986328125, 0.9262695312, 0.1970214844, -1.017578125, -0.7075195312, 0.1049194336, 0.162109375, 0.3637695312, 0.5483398438, 0.0381774902, 0.5771484375, -0.8540039062, 0.3112792969, 0.2103271484, -0.3959960938, -0.1915283203, -0.002040863, 1.3505859375, 0.7524414062, 0.626953125, 0.8125, 1.423828125, -1.189453125, 1.02734375, 0.00006181, -0.1118774414, -0.716796875, -0.525390625, -0.8520507812, 0.3190917969, -0.2854003906, -0.1719970703, -0.8271484375, -0.689453125, -0.1845703125, -0.0969238281, -1.09765625, 0.990234375, 0.564453125, 0.2408447266, 1.1474609375, -0.1701660156, -0.4619140625, 0.5087890625, -0.4426269531, 0.2440185547, -0.5502929688, -0.3679199219, -0.5380859375, 0.0783081055, 0.020324707, 0.2958984375, -0.6528320312, 0.7021484375, 0.4240722656, -0.2761230469, 1.1435546875, 0.6284179688, 0.1196289062, 0.0286102295, 0.6440429688, 0.1440429688, 1.2021484375, 0.91015625, 0.0521850586, -0.0927734375, 0.4055175781, -0.3371582031, 0.035369873, 1.0556640625, -2.00390625, 0.2958984375, -0.2454833984, -0.3195800781, 0.439453125, 1.853515625, 0.5078125, -0.259765625, -0.3171386719, -0.1115112305, -0.3806152344, 0.9404296875, -0.4187011719, 1.0224609375, -0.1838378906, -1.169921875, -0.3662109375, 0.1910400391, 0.6298828125, 1.0751953125, -0.0877075195, 0.0534973145, 0.6879882812, 0.7255859375, -0.0078811646, -0.0304718018, 0.8266601562, -0.798828125, 0.6508789062, 0.5478515625, 0.201171875, 0.3012695312, 0.2255859375, 0.650390625, -0.4995117188, -0.6928710938, -0.9116210938, 0.5380859375, -0.1022338867, -0.1865234375, 0.22265625, -0.52734375, 0.2819824219, 0.8740234375, 0.0372009277, -0.4875488281, -0.703125, -0.2734375, -0.4545898438, -0.0880737305, 0.1970214844, -0.6791992188, 0.6767578125, -0.3991699219, -0.6376953125, 0.99609375, 0.830078125, -0.4421386719, 0.2437744141, 0.0570373535, -0.5151367188, -1.6708984375, 0.6557617188, 0.4978027344, -0.7133789062, -0.7592773438, -0.1768798828, 0.5844726562, 0.4699707031, -1.015625, -0.4982910156, 0.0090713501, -0.5883789062, -0.0090866089, 0.5415039062, -1.3232421875, 0.5590820312, -1.73046875, 0.4291992188, -0.6108398438, 0.2332763672, 0.962890625, 0.0112838745, -0.7099609375, -0.6484375, -0.0596923828, -0.955078125, -0.4399414062, 0.9252929688, 0.3203125, -0.3449707031, -0.880859375, 0.3098144531, -0.4094238281, -0.6782226562, -0.0608520508, 1.0634765625, -0.0576782227, -0.7348632812, -0.1546630859, -0.4135742188, 0.1232299805, 0.4233398438, 0.9653320312, 0.0990600586, 0.3276367188, -0.7202148438, 0.4204101562, -0.4475097656, -0.5556640625, -0.3544921875, 0.4116210938, 0.611328125, 0.2271728516, 0.0022907257, -0.8618164062, -1.080078125, 0.1931152344, -0.30078125, 1.45703125, 0.2066650391, -0.2934570312, -0.2697753906, 0.359375, -0.2902832031, 1.2392578125, 0.2468261719, 0.0783691406, 0.3898925781, 0.2607421875, 0.654296875, -0.6489257812, 0.4919433594, 1.6962890625, 0.4191894531, 0.0952148438, 0.1623535156, 0.2354736328, -1.109375, -1.12890625, -2.396484375, 1.1826171875, 0.0657958984, -0.1351318359, -1.900390625, 0.6518554688, 0.3698730469, 0.2084960938, 0.283203125, -0.5043945312, 0.90625, 0.4365234375, -0.6108398438, -0.0661621094, -0.6181640625, 0.2297363281, 0.4973144531, 0.1887207031, -0.3930664062, 1.0986328125, -0.330078125, -0.7607421875, -0.1146850586, -0.4443359375, 0.3386230469, -0.7153320312, 0.0051345825, -0.6401367188, -0.0676269531, 0.8408203125, 0.4741210938, 1.2919921875, 0.6767578125, -0.2401123047, 0.4306640625, -0.3010253906, 0.4919433594, 0.1955566406, -0.1513671875, 0.0437011719, 0.2521972656, 0.6015625, 0.33203125, -0.3459472656, -0.0160217285, -0.0797119141, -0.5322265625, -0.2174072266, -0.9399414062, -0.8901367188, -0.8330078125, -0.1433105469, -0.0560913086, -0.2259521484, 0.2983398438, 0.0194244385, -1.1982421875, -0.2824707031, -0.2315673828, -0.4055175781, 0.6899414062, 1.9306640625, 1.251953125, 1.1669921875, -0.0703735352, 0.9799804688, 0.208984375, -0.4226074219, -0.0098114014, 0.3728027344, 0.0196838379, 0.0056228638, 1.2333984375, -0.1123657227, -0.1499023438, 1.5849609375, -0.5087890625, -0.2517089844, -0.2697753906, -0.3625488281, -0.900390625, -0.501953125, 1.064453125, 0.546875, -0.3813476562, 0.1182250977, 0.2939453125, 0.1453857422, 0.591796875, 0.3986816406, -1.349609375, -0.5693359375, 1.1357421875, 0.4025878906, 0.0872802734, -0.2880859375, 1.009765625, -0.5463867188, -0.4521484375, 0.5439453125, -0.345703125, 0.6225585938, -0.6650390625, 0.3588867188, -0.0509338379, -0.8188476562, 0.0700073242, 0.6499023438, -0.9897460938, 0.3193359375, 0.4541015625, 0.8041992188, 1.0439453125, -0.3195800781, 0.2072753906, -0.765625, 0.0353393555, -0.9296875, 0.2335205078, -0.0615234375, -0.6752929688, -1.681640625, -0.28125, -0.939453125, -1.46484375, -0.3720703125, 0.5454101562, 0.2590332031, 0.1358642578, -0.3015136719, 0.8017578125, -0.6611328125, -1.00390625, 0.3959960938, 0.6372070312, 0.390625, 0.0998535156, -0.4848632812, 0.0149154663, -0.0916137695, -0.7758789062, -0.4638671875, -0.2902832031, 0.8774414062, -0.0070419312, -1.109375, 0.0177307129, 0.2467041016, 0.6157226562, -0.4331054688, 0.3552246094, -0.3015136719, 0.1822509766, -0.576171875, -0.287109375, -0.2880859375, -0.033203125, 0.0639038086, -0.1274414062, 0.0225982666, 0.2990722656, 0.3713378906, 0.2176513672, 0.3276367188, 1.462890625, 0.8305664062, -0.6225585938, -0.0163574219, -0.6928710938, 0.1098022461, 0.8115234375, 1.525390625, 0.1088256836, 0.3266601562, -0.1116333008, 0.3767089844, -0.3308105469, -0.6098632812, -0.5229492188, -1.6259765625, -0.1457519531, -0.3039550781, -0.0526733398, -1.5390625, 0.3830566406, 0.4758300781, 0.8408203125, 0.6474609375, -0.2976074219, -0.5126953125, -1.65234375, -0.9697265625, -0.0084457397, 0.3935546875, -1.1201171875, 0.7094726562, -0.728515625, -0.2276611328, -0.583984375, 0.4145507812, 0.9916992188, 0.3503417969, -0.23046875, -1.103515625, -0.7177734375, 0.2902832031, 0.4951171875, 0.52734375, 0.6953125, -0.7333984375, -0.2507324219, 0.365234375, -0.1583251953, 1.1689453125, -0.7192382812, 0.7265625, 1.16015625, -0.0618896484, -0.3884277344, 1.0947265625, -0.2214355469, 0.2846679688, 0.47265625, -1.380859375, -0.2817382812, -0.4331054688, -0.1522216797, -0.5053710938, 0.1574707031, 0.2873535156, -0.1817626953, 1.103515625, 0.849609375, 0.6171875, 0.3413085938, -0.943359375, -0.4580078125, 0.5791015625, -0.962890625, -0.8627929688, -1.3740234375, -1.3525390625, -0.2097167969, -0.2683105469, -1.1689453125, 0.8681640625, -0.6645507812, -0.4328613281, 0.1854248047, 0.7299804688, 0.1396484375, -0.857421875, 0.1829833984, 0.6899414062, -0.3225097656, -0.3415527344, 0.2517089844, 0.6704101562, 0.1585693359, -0.2543945312, 0.2958984375, -0.3430175781, -0.8935546875, 1.392578125, 1.146484375, -0.1424560547, -0.0861816406, -1.6611328125, 0.388671875, 0.3986816406, 0.3481445312, 0.4985351562, 0.1834716797, 0.2734375, -1.884765625, -0.78515625, 0.2045898438, 1.310546875, -0.0924682617, -0.0998535156, -0.1867675781, 0.2319335938, -0.7553710938, -0.2393798828, 1.4755859375, 0.3923339844, 0.9716796875, -0.3137207031, 0.2619628906, -0.2673339844, -0.22265625, 0.4836425781, 1.3203125, -0.619140625, -0.0637207031, 0.705078125, 0.3793945312, 0.4196777344, -1.423828125, 1.1845703125, 0.7236328125, 0.0492248535, 1.1708984375, -0.0043830872, -0.7250976562, -0.68359375, -0.65625, 0.1064453125, 0.3562011719, -0.1026000977, -0.1162109375, 0.3737792969, -0.61328125, -0.5888671875, -0.3032226562, -0.2868652344, 0.0069961548, -0.5131835938, 0.4497070312, -0.453125, 1.7099609375, -0.412109375, -0.54296875, -0.73828125, 0.91015625, 0.4912109375, -0.8334960938, 0.7758789062, -0.8676757812, -0.6245117188, 0.123046875, -0.4155273438, -1.6455078125, -0.4948730469, 0.4814453125, 0.4030761719, 0.2095947266, -0.2685546875, 0.5053710938, 0.7700195312, -0.7124023438, -0.2856445312, 0.3994140625, 0.9165039062, -0.0050201416, -0.9604492188, -0.3229980469, 0.17578125, -0.3869628906, 0.1130371094, 1.02734375, -0.3405761719, -0.9809570312, -1.078125, -0.1224365234, -0.9145507812, 0.1967773438, 0.798828125, -0.123840332, 0.3837890625, -1.2197265625, -0.3725585938, 0.3955078125, -0.41015625, 0.3913574219, -0.7465820312, 0.4614257812, 0.0190734863, 0.3276367188, 0.2946777344, 0.5458984375, -0.412109375, -0.6010742188, 0.3286132812, -0.1115112305, -0.1613769531, -0.6518554688, -0.0589294434, -0.3410644531, -0.4497070312, -0.096862793, -0.80078125, 1.3232421875, -1, 0.075378418, -0.9892578125, 0.009475708, -1.4912109375, -0.3354492188, 0.1774902344, -0.1461181641, -0.2235107422, 0.0655517578, 0.2553710938, 0.2313232422, 1.6142578125, -0.4560546875, 0.021270752, -0.818359375, -0.106628418, 0.6396484375, -0.435546875, -0.3930664062, 0.0288085938, -0.2756347656, -1.212890625, -0.556640625, 0.4938964844, -0.8852539062, 0.0424499512, 0.2722167969, -0.515625, 0.7216796875, 0.9350585938, -0.5498046875, -0.008895874, -0.6264648438, 0.1389160156, 0.1788330078, -0.3203125, 0.3002929688, 0.0178070068, -1.1630859375, 0.3466796875, -0.3251953125, 0.1397705078, 0.6518554688, -0.6381835938, 1.400390625, -0.0123138428, -1.251953125, 0.9877929688, -0.048248291, 1.052734375, 0.0767822266, 1.5322265625, 0.1901855469, 0.0986938477, 0.462890625, 0.0419921875, 0.1807861328, 0.2734375, 0.6259765625, -0.4514160156, -0.1785888672, 0.6181640625, 0.8666992188, 0.1248779297, -0.1556396484, 0.0343017578, 0.91796875, 0.4045410156, 0.5766601562, 0.1708984375, 0.5375976562, 0.3283691406, -1.072265625, 0.8764648438, 0.3933105469, -0.79296875, 0.0183868408, -0.0568237305, 1.5517578125, -0.4892578125, -0.30859375, 0.4086914062, -0.515625, -0.0878295898, 1.0166015625, 0.2846679688, -0.3286132812, -0.8681640625, -0.203125, -0.1193847656, -0.9306640625, 0.2624511719, 0.0101699829, 0.0234680176, 0.88671875, 0.1638183594, -0.2094726562, 0.3908691406, -1.40234375, 0.4721679688, 1.041015625, -0.1999511719, -0.2027587891, -0.650390625, 1.1298828125, 0.3415527344, 0.7587890625, -11.46875, -0.2185058594, 0.0752563477, -1.5859375, -0.4284667969, -1.2451171875, 0.3979492188, -0.6123046875, -0.0816040039, -0.7587890625, 0.951171875, 0.2478027344, -0.8374023438, 1.318359375, 0.1988525391, 0.1381835938, -0.6928710938, 0.1123046875, 0.0395202637, -0.3103027344, -0.1706542969, 0.2663574219, -0.4555664062, -1.048828125, -0.3579101562, 0.0518493652, 0.1068115234, -0.7055664062, -0.1938476562, 0.004486084, -0.38671875, 0.3920898438, -1.658203125, 0.447265625, 0.6997070312, 0.892578125, -0.0686645508, -0.2705078125, -0.1911621094, -0.849609375, 1.197265625, -0.3054199219, -0.6982421875, 0.4594726562, -0.3112792969, -0.0132064819, -0.2573242188, -1.611328125, 0.3015136719, 0.3139648438, 0.45703125, 0.7807617188, 0.177734375, 0.052520752, -0.8525390625, 0.5908203125, 0.9243164062, 0.0944824219, -0.669921875, -1.20703125, -2.1328125, 0.6044921875, -0.63671875, 0.7451171875, 0.7177734375, 0.2232666016, 0.1705322266, -1.0576171875, 1.2216796875, 0.0141296387, -0.611328125, -0.8740234375, 0.2026367188, 1.125, 0.7719726562, 1.0400390625, 0.3195800781, 0.1015014648, 1.451171875, 0.0380554199, -1.1943359375, 0.0748291016 ]
By the present, his Metal Men framed his universe's Justice League for the deaths of various scientists and forced them out of their base so he can use Superman's ship and a series of miniature Boom Tubes to plant nanites in the minds of every human on Earth, connecting them to a collective consciousness. However, Lex Luthor discovered and revealed the truth to the Justice League and military, allowing them to destroy Magnus' equipment and Metal Men. With his plan foiled, a regretful Magnus commits suicide by disintegrating himself with a sphere composed of nanites. Dr. Will Magnus appears in DC Super Hero Girls: Intergalactic Games, voiced by Phil LaMarr. Video games Will Magnus appears in DC Universe Online, as a vendor in the Watchtower's Tech Wing. References External links Toonopedia's Metal Men entry Will Magnus in 52 week 14 Metal Men DC Comics superheroes DC Comics male superheroes Fictional scientists Comics characters introduced in 1962 Fictional characters with bipolar disorder Fictional suicides Characters created by Robert Kanigher Characters created by Ross Andru
[ -0.0398254395, -0.2924804688, 0.2341308594, 0.578125, -0.9116210938, 0.2016601562, 0.330078125, -0.5190429688, -1.9638671875, -0.5229492188, -0.7299804688, -0.0859375, -1.3291015625, 0.7470703125, -0.7153320312, 0.1374511719, 0.2666015625, -0.8735351562, 0.2607421875, 0.8540039062, 0.5537109375, 0.2778320312, -0.4279785156, -0.4875488281, -1.26171875, 0.9584960938, 0.7900390625, -0.4987792969, -0.0858764648, -1.42578125, -0.248046875, 0.0688476562, -1.2099609375, -0.6357421875, -0.2766113281, -0.3642578125, -0.0767211914, -0.0512390137, -0.4624023438, 1.0703125, -0.8637695312, 0.3796386719, -0.4106445312, 0.3334960938, 0.2805175781, -0.2712402344, -0.0678710938, 0.3674316406, 0.0958251953, -0.1241455078, -1.05859375, 0.5932617188, 0.7509765625, -0.0230255127, -0.4809570312, 0.2069091797, 0.2042236328, -1.421875, -0.5556640625, -0.6298828125, -0.9931640625, -0.1870117188, -1.005859375, -0.537109375, -0.1994628906, 0.1091308594, 0.2648925781, -0.1172485352, -0.4191894531, 0.87890625, -0.5634765625, 1.3525390625, -0.0688476562, 0.0583496094, -0.4465332031, -0.978515625, -0.65234375, -0.0990600586, -0.1188354492, -0.2971191406, 0.2907714844, -0.8129882812, -0.0534973145, 1.01953125, -0.8364257812, -1.4189453125, -0.1379394531, -0.5874023438, 0.1478271484, 0.7421875, 0.7709960938, 0.071472168, 0.0057258606, 0.5844726562, 0.9072265625, -0.8173828125, -1.2724609375, -0.70703125, -0.5590820312, 0.5893554688, -0.2259521484, -0.3701171875, 0.3244628906, 0.1674804688, 0.5844726562, 1.3720703125, -0.1784667969, -1.1123046875, -0.337890625, -0.0111160278, 0.0414428711, 0.287109375, -0.0763549805, 1.1279296875, -0.1387939453, 0.6430664062, -0.3293457031, 0.0276794434, -0.7700195312, -0.1044921875, -0.7216796875, 0.6889648438, 0.0132751465, 0.6293945312, 0.0115585327, 0.0491333008, -0.5375976562, -0.6860351562, 0.3249511719, 0.4189453125, 0.76953125, -0.6264648438, -0.7553710938, 0.0955810547, 0.4125976562, -0.9418945312, -0.1300048828, 0.3615722656, -0.392578125, -0.7290039062, -0.7509765625, -0.6235351562, 1.3662109375, 0.2340087891, -0.2724609375, 0.3266601562, 0.2196044922, 0.798828125, 0.4377441406, 0.4033203125, -1.376953125, 1.107421875, -0.1300048828, -0.7314453125, -0.2570800781, -0.0646972656, -0.1837158203, -1.1826171875, -0.6762695312, -0.9189453125, -0.1889648438, -1.123046875, -0.2814941406, -0.2126464844, -1.03125, -0.4448242188, -0.1695556641, 0.900390625, 0.3259277344, -0.082824707, 0.8203125, 0.0362243652, 0.5927734375, 0.0709838867, -0.2376708984, -0.6352539062, 0.3376464844, -0.9790039062, -0.4299316406, -0.60546875, -0.0030136108, -2.01953125, 0.6030273438, -1.216796875, -0.2639160156, -0.7451171875, -0.0189208984, 0.9921875, -0.4870605469, -0.2722167969, -0.1488037109, -0.70703125, -0.2990722656, 0.0908203125, 0.2817382812, -0.5004882812, 0.3623046875, 0.5126953125, 0.0360412598, -0.0905151367, -0.2377929688, 0.3327636719, -0.4538574219, -0.9301757812, 0.2269287109, -1.322265625, 0.814453125, 0.3039550781, -0.1938476562, -0.3178710938, -1.1884765625, -0.1486816406, 0.2102050781, -0.0336608887, -0.0966796875, -0.1987304688, 0.7270507812, 0.93359375, -0.3200683594, 0.1927490234, -0.66015625, -0.6669921875, -1.4775390625, -0.2673339844, -1.0166015625, -0.7114257812, 0.3132324219, -0.0601196289, -0.5888671875, 0.4724121094, 0.5795898438, -0.2922363281, -0.6264648438, -0.9877929688, 0.4291992188, 0.33984375, -0.3854980469, -0.1910400391, -0.9282226562, -0.8134765625, -0.1651611328, -0.1130981445, 0.1958007812, 0.2249755859, -0.4936523438, -0.2854003906, 0.4760742188, 0.1633300781, 0.2189941406, 0.7221679688, 0.4565429688, 0.5307617188, -0.5556640625, -0.1925048828, -0.0802612305, -0.6069335938, 0.007106781, -0.4360351562, 0.9521484375, 0.634765625, 0.0853271484, 0.5522460938, 1.4736328125, -0.8212890625, 1.396484375, 0.0497131348, -0.0330810547, -1.31640625, -0.1217041016, -0.5024414062, -0.390625, -0.3146972656, 0.421875, -0.4704589844, -0.4064941406, -0.3344726562, 0.3239746094, -0.1303710938, 0.9291992188, -0.1666259766, 0.8168945312, 1.0693359375, -0.44921875, -0.3334960938, 0.7446289062, -0.1031494141, 0.2971191406, -0.0926513672, -0.2729492188, 0.3049316406, -0.2978515625, -0.4497070312, -0.0723266602, 0.4653320312, 0.0619812012, -0.3344726562, 0.0714111328, 1.375, 0.5810546875, -0.2639160156, -0.0294036865, 0.4279785156, 0.0566101074, 0.5971679688, 1.02734375, -0.3435058594, -0.3391113281, 0.4807128906, 0.5087890625, 0.1680908203, 0.3403320312, -1.7529296875, 0.4372558594, -0.4887695312, -0.0218963623, 0.14453125, 1.822265625, 0.2027587891, 0.1579589844, -0.0292816162, 0.6616210938, -0.1258544922, 0.689453125, -0.1644287109, 1.34765625, 0.0240631104, -0.9375, 0.4272460938, -0.1296386719, 0.2685546875, 0.56640625, 0.0088119507, 0.2980957031, 1.0244140625, 0.5522460938, 0.0910644531, 0.4851074219, 0.3146972656, -0.5283203125, -0.0943603516, 0.5859375, -0.1435546875, 0.3500976562, -0.6342773438, 0.6469726562, 0.2868652344, -0.7426757812, -0.3081054688, 1.5419921875, -0.094909668, -0.2087402344, -0.0822753906, -1.177734375, 0.306640625, 0.8930664062, -0.1142578125, -0.3159179688, -0.9306640625, -0.2873535156, -0.5952148438, 0.0647583008, 0.1989746094, -0.2352294922, 0.7607421875, -0.404296875, -0.8115234375, 0.2880859375, 1.0126953125, -0.8823242188, -0.1211547852, 0.1899414062, -0.1779785156, -1.8603515625, 0.1351318359, 0.5190429688, -0.4318847656, -0.8212890625, -0.4780273438, 0.0824584961, 0.9028320312, -1.021484375, -0.6943359375, -0.0679321289, -0.44140625, -0.349609375, 0.6801757812, -1.7001953125, 0.3737792969, -2.017578125, -0.4699707031, -0.8583984375, 0.7602539062, 1.3330078125, -0.2398681641, -1.072265625, -0.5952148438, 0.5268554688, -0.4211425781, -0.2973632812, 1.552734375, 0.1407470703, 0.4775390625, -0.8823242188, 0.759765625, -0.1088867188, -0.2316894531, 0.513671875, 1.20703125, 0.0900268555, -0.5375976562, -0.2415771484, -0.0397644043, 0.4782714844, 0.3952636719, 0.5346679688, -0.0605163574, 0.19921875, -0.466796875, 0.3540039062, -0.3178710938, -0.703125, 0.0719604492, -0.0491638184, 0.0089950562, -0.2785644531, 0.3659667969, -0.6577148438, -0.9350585938, 0.5693359375, -0.1682128906, 1.470703125, 0.6401367188, -0.0492858887, 0.104675293, 0.3100585938, 0.4233398438, 1.091796875, 0.3349609375, -0.1849365234, 0.25390625, -0.0858764648, 0.2086181641, -0.5454101562, 0.4924316406, 1.2685546875, 1.3681640625, -0.2171630859, 0.1647949219, 0.5834960938, -0.4614257812, -1.427734375, -2.474609375, 1.1904296875, 0.5390625, -0.0863037109, -1.32421875, 0.8920898438, 0.4936523438, 0.9287109375, 0.8725585938, -0.6401367188, 0.626953125, -0.3608398438, -0.8432617188, -0.3803710938, -0.6274414062, -0.0049629211, 0.9384765625, -0.03515625, -1.271484375, 0.9682617188, -0.3330078125, -0.4038085938, 0.0297698975, -0.779296875, -0.3010253906, -0.3598632812, -0.2222900391, -0.4931640625, 0.3088378906, 0.658203125, 0.1176147461, 0.7451171875, 0.4553222656, -0.7895507812, -0.1064453125, 0.0324707031, 0.3491210938, -0.0645141602, -0.7392578125, 0.146484375, 0.3818359375, 0.607421875, -0.2084960938, -0.9155273438, 0.2814941406, -0.0790405273, -0.3786621094, -0.9692382812, -0.2210693359, -0.8530273438, -0.9194335938, 0.0969848633, -0.69921875, -0.1922607422, 0.2863769531, -0.0296630859, -0.6772460938, -0.19921875, -0.4035644531, 0.1800537109, 0.8178710938, 1.6337890625, 0.5522460938, 1.1259765625, 0.1058349609, 0.3835449219, 0.6396484375, -0.4033203125, 0.1227416992, 0.0993041992, -0.5161132812, 0.0796508789, 1.677734375, -0.1085205078, -0.4411621094, 1.328125, 0.0132522583, -0.2058105469, 0.0990600586, -0.8056640625, -0.5375976562, -0.6049804688, 0.8432617188, 0.6118164062, -0.1951904297, 0.1776123047, 0.3701171875, 0.8994140625, 0.3615722656, -0.0256195068, -0.6142578125, -0.1325683594, 1.1845703125, 0.6328125, -0.1726074219, -0.802734375, 0.1511230469, -0.5732421875, -0.1729736328, 0.0210266113, -0.2034912109, 0.3442382812, -0.0497436523, 1.201171875, -0.3400878906, -0.7119140625, -0.096862793, 1.0458984375, -0.57421875, 0.1774902344, 0.8598632812, 0.70703125, 1.1826171875, 0.501953125, 0.1676025391, -0.7778320312, 0.484375, -0.251953125, 0.2048339844, -0.1921386719, -0.87109375, -2.599609375, -0.2489013672, -0.658203125, -0.9448242188, -0.4541015625, 0.5224609375, 0.5556640625, 0.2729492188, 0.1021728516, 0.0501403809, -0.7934570312, -0.6020507812, 0.3459472656, 0.6645507812, -0.0296020508, 0.1024169922, -0.047088623, -0.1870117188, -0.3669433594, 0.0342102051, -0.7607421875, 0.5986328125, 0.8110351562, -0.3659667969, -1.1025390625, 0.2844238281, -0.1730957031, 0.2602539062, -0.4765625, 0.4760742188, -0.1867675781, 0.7919921875, -0.8071289062, -0.6166992188, -0.0445861816, 0.267578125, -0.3327636719, 0.0180206299, -0.3354492188, 0.3098144531, 0.3901367188, 0.7719726562, 0.1546630859, 1.7216796875, 0.8813476562, -0.814453125, 0.1352539062, -0.6279296875, 0.623046875, 0.6943359375, 1.0537109375, -0.4731445312, 0.349609375, 0.1654052734, 0.5107421875, 0.1429443359, -0.857421875, -0.6069335938, -0.8383789062, 0.2341308594, 0.1793212891, 0.4157714844, -1.5615234375, 0.5317382812, 0.5576171875, 0.8681640625, 0.1539306641, 0.5473632812, -0.1287841797, -0.7983398438, -0.5859375, -0.2039794922, -0.1244506836, -0.5190429688, 0.5004882812, -0.0948486328, -0.666015625, -0.4357910156, -0.3469238281, 0.2709960938, 0.314453125, -0.3425292969, -0.9692382812, -0.109375, -0.2225341797, 0.095703125, 1.0302734375, 0.110168457, -1.2900390625, -0.1173095703, -0.0489501953, -0.0018043518, 0.8950195312, -1.064453125, 0.9291992188, 0.6787109375, 0.3715820312, -0.3706054688, 1.3583984375, 0.3701171875, 0.6923828125, 0.912109375, -1.3251953125, -0.2827148438, -0.1934814453, -0.0054359436, -0.5209960938, 0.005821228, -0.1838378906, -0.0127410889, 0.7919921875, 1.3515625, 0.8754882812, 0.6030273438, -0.79296875, -0.203125, 0.2332763672, -0.5854492188, -0.6015625, -0.5844726562, -1.638671875, -0.728515625, -0.4055175781, -0.6572265625, 0.2236328125, -0.4565429688, -1.19921875, 0.3891601562, 0.1856689453, 0.3364257812, -0.9838867188, -0.1185913086, 0.48046875, -0.00573349, -0.4216308594, -0.0511779785, 1.0166015625, 0.2264404297, -0.3850097656, 0.7919921875, -0.3471679688, -0.2381591797, 0.2268066406, 0.9404296875, 0.6831054688, -0.2359619141, -1.49609375, -0.0046806335, -0.6845703125, 0.357421875, 0.4033203125, 0.3359375, 0.595703125, -1.958984375, -0.9418945312, -0.3835449219, 1.1337890625, -0.3549804688, -0.0368041992, -0.2094726562, -0.4201660156, 0.2452392578, -0.5268554688, 1.609375, 0.4323730469, -0.1712646484, -0.0287017822, 0.0207977295, 0.1599121094, -0.1483154297, 0.4157714844, 1.2890625, -0.8203125, 0.5463867188, 0.4711914062, 0.3779296875, 0.3366699219, -1.384765625, 1.5732421875, 0.638671875, 0.3959960938, 0.78125, 0.2810058594, -0.3334960938, -0.5512695312, -1.2060546875, 0.3278808594, 0.6875, 0.2281494141, -0.5717773438, 0.4533691406, -0.0785522461, -0.6015625, -0.6298828125, -0.3051757812, 0.1217041016, -0.52734375, 0.154296875, 0.0773925781, 1.2587890625, -0.7587890625, -0.1485595703, -0.9033203125, 0.0737915039, 0.7700195312, -0.5092773438, 0.0707397461, -0.7431640625, 0.0551452637, 0.0383605957, -0.9106445312, -1.4208984375, -0.4428710938, 0.8291015625, 0.1896972656, -0.1953125, -0.4672851562, 0.3977050781, -0.4594726562, 0.012260437, 0.0289154053, 0.4541015625, 1.3125, -0.1378173828, -0.2453613281, -0.0403137207, 0.2244873047, -0.1029663086, 0.0070381165, 0.1903076172, -0.658203125, -0.4716796875, -0.8891601562, -0.3076171875, -1.19921875, 0.2426757812, 0.4418945312, 0.0050621033, 0.1619873047, -0.5932617188, 0.2890625, 0.3608398438, -0.3566894531, -0.2065429688, -0.76953125, 0.4562988281, 0.1179199219, 0.8735351562, 0.6899414062, 1.24609375, -0.3525390625, -0.3076171875, 0.3537597656, -0.2995605469, -0.4245605469, 0.1002197266, -0.0019292831, -0.1201782227, -0.1413574219, -0.130859375, -0.5703125, 1.1513671875, -0.779296875, -0.5888671875, -0.251953125, 0.0817260742, -1.5068359375, -0.8784179688, 0.036895752, -0.6474609375, 0.298828125, -0.5405273438, -0.3898925781, -0.1469726562, 1.3291015625, -1.1796875, -0.0375671387, -0.1033935547, 0.1860351562, 0.6953125, -0.6806640625, -0.4809570312, 0.4772949219, -0.1439208984, -1.291015625, -0.2873535156, -0.2371826172, -1.501953125, 0.3193359375, 0.5126953125, -0.3681640625, 0.7065429688, 0.3723144531, -0.3210449219, -0.3666992188, -1.25390625, 0.9184570312, 0.6245117188, -0.4387207031, -0.2421875, 0.1038208008, -0.9604492188, -0.2336425781, -0.7124023438, 0.4206542969, 0.62109375, -0.5288085938, 1.6318359375, -0.2631835938, -0.626953125, 1.02734375, 0.1683349609, 0.6616210938, 0.1527099609, 1.8330078125, -0.1396484375, -0.4421386719, 0.2016601562, 0.1943359375, -0.0603637695, 0.3547363281, 0.7739257812, -0.62890625, -0.1781005859, 0.8129882812, 0.623046875, 0.0410766602, -0.2216796875, 0.3254394531, 0.2297363281, -0.2985839844, 0.2396240234, 0.5278320312, -0.1467285156, 0.2332763672, -0.4331054688, 0.8432617188, 0.6123046875, -0.4536132812, -0.1167602539, 0.0681762695, 1.7021484375, -0.9135742188, -0.255859375, -0.0631713867, 0.1475830078, 0.3833007812, 0.0206756592, 0.3090820312, -0.4338378906, -0.6293945312, 0.1754150391, 0.7763671875, -0.529296875, 0.1458740234, 0.6489257812, 0.5458984375, 1.0771484375, 0.5170898438, 0.3605957031, 0.8442382812, -0.9677734375, -0.2534179688, 0.6494140625, 0.3237304688, 0.978515625, 0.2047119141, 0.9677734375, 0.2055664062, 0.1860351562, -11.921875, -0.1955566406, 0.1098632812, -1.4697265625, 0.853515625, -0.9521484375, 0.2553710938, -1.2734375, -0.1650390625, -0.5478515625, 1.5830078125, 0.9931640625, -0.359375, 1.2451171875, 0.4877929688, -0.3117675781, -0.5166015625, -0.1376953125, 0.0508728027, 0.4672851562, -0.8432617188, -0.1458740234, -1.2041015625, -0.0288391113, -0.1762695312, -0.0776367188, -0.4025878906, -1.06640625, 0.2702636719, -0.0829467773, -0.3571777344, -0.1030273438, -1.44140625, 0.6640625, 0.4370117188, 0.201171875, 0.0417785645, 0.1502685547, 0.1605224609, -0.9482421875, 1.236328125, 0.2313232422, -0.595703125, 0.4162597656, -0.6787109375, 0.3759765625, 0.2261962891, -1.5087890625, 0.7744140625, 0.2137451172, 0.3972167969, 0.9169921875, -0.0313415527, -0.724609375, -0.744140625, 0.0095214844, 0.9848632812, -0.0079574585, -0.8046875, -0.4291992188, -1.4248046875, 0.5966796875, -1.0087890625, 0.6513671875, 1.337890625, 0.4162597656, -0.5415039062, -0.7495117188, 1.5654296875, -0.5751953125, -0.4157714844, -0.2939453125, -0.2280273438, 1.130859375, 0.8510742188, 0.6401367188, -0.2247314453, -0.5986328125, 1.46484375, -0.4826660156, -0.8657226562, -0.2342529297 ]
HSC Speedrunner III is a fast ferry operated by Aegean Speed Lines between Piraeus, Serifos, Sifnos and Milos. She was built in 1999 at Fincantieri, Riva Trigoso, Italy, for Sea Containers as HSC SuperSeaCat Three. Under that name she sailed on Sea Container's services around the British Isles, as well as with its subsidiaries Silja Line and SuperSeaCat on the Baltic Sea. There are many Speedrunner 3 as there is also the Superrunner Jet of Seajets History SuperSeaCat Three was the third mono-hulled fast ferry to be built for Sea Containers. She was initially set in traffic between Liverpool, England and Dublin, Ireland. In 2000 Dublin was switched to Douglas, Isle of Man. The following year SuperSeaCat Three started operating between Dover, England and Calais, France. Since the year 2000 Sea Containers had operated HSC SuperSeaCat Four between Helsinki and Tallinn, marketed as a part of their Silja Line brand. The route was highly profitable and in 2003 It was decided that SuperSeaCat Three should join her sister in that service. Due to the Baltic Sea freezing during winter, the service could not be operated between January and April each year, so the ship spent those month laid up. For the summer season of 2005 a third ship, HSC SuperSeaCat One was added to the service. In late 2005, Sea Containers decided to sell their flights, including the lucrative Silja Line. However, the company that bought Silja Line, Estonian ferry operator Tallink, already operated several fast ferries (as well as traditional ferries) between Helsinki and Tallinn.
[ -0.4577636719, 0.1549072266, 0.4201660156, -0.1513671875, 0.1909179688, 0.1427001953, -0.6606445312, 0.1893310547, 0.2498779297, -0.1517333984, -0.3989257812, 0.1143188477, 0.5698242188, 2.181640625, -0.2039794922, 0.3122558594, -0.943359375, 1.544921875, -0.3112792969, 0.3806152344, -0.3645019531, -0.0841674805, -0.0831298828, -0.3115234375, -0.3149414062, 0.2155761719, -0.2893066406, -0.8530273438, -1.408203125, -0.7421875, -0.2802734375, 0.2260742188, -1.173828125, 0.8413085938, -0.9345703125, -0.2661132812, -0.0278778076, 1.1845703125, 0.453125, -0.5893554688, 0.3498535156, -0.8754882812, 0.6215820312, -0.6245117188, 1.2265625, -0.4702148438, -1.056640625, -0.787109375, -1.28125, -0.2592773438, -0.0803222656, 0.4321289062, -0.5063476562, -0.6196289062, -0.4758300781, -0.5063476562, -0.6606445312, -0.0185546875, 0.3981933594, -0.5244140625, 0.3757324219, 0.3176269531, -0.869140625, -0.4260253906, -0.1584472656, -0.3754882812, 0.9770507812, 0.7578125, -0.1834716797, 0.3459472656, 0.1442871094, 1.17578125, -0.3540039062, -0.015296936, 1.1201171875, -0.2084960938, 0.2668457031, 1.7509765625, -0.0625, -0.8139648438, -0.2546386719, -0.3740234375, -0.6958007812, 0.0169525146, 0.5288085938, 0.4560546875, -1.25390625, 0.0926513672, -0.1647949219, 1.294921875, 0.1967773438, 0.2541503906, -0.943359375, -0.0147323608, 0.0426940918, 0.2512207031, -0.1314697266, -1.09375, 0.2888183594, 0.0422363281, 0.1932373047, -1.1337890625, 0.2171630859, -0.6372070312, -1.251953125, 1.4365234375, -1.119140625, -0.4819335938, -0.4956054688, -0.4406738281, -0.7104492188, 0.220703125, -0.1826171875, 0.6196289062, 0.050567627, -0.6103515625, -0.2895507812, -0.0598754883, -0.572265625, 1.15234375, 0.5107421875, -1.203125, 0.775390625, -0.8491210938, -0.283203125, -0.1016845703, -0.13671875, 0.4313964844, 0.6162109375, -0.2604980469, -0.369140625, -0.0645141602, -1.3515625, -0.8559570312, 0.4267578125, -0.9609375, -1.1015625, -0.0645751953, 0.8081054688, 0.0283508301, 0.5522460938, -0.7744140625, 0.2044677734, -0.3403320312, 0.8471679688, 0.578125, -0.2690429688, 0.4392089844, -1.013671875, 0.3989257812, 0.3381347656, -0.3630371094, -0.4106445312, 0.3193359375, 0.0350036621, -0.0043411255, 0.8408203125, -0.1244506836, 1.861328125, 0.1088867188, 0.1130371094, -0.0991821289, -0.6264648438, -0.6323242188, 0.1544189453, 1.171875, -0.5966796875, 0.3681640625, -1.08984375, 0.2150878906, -0.25390625, -0.1647949219, 1.0888671875, -1.37890625, 0.2082519531, 0.0349731445, -0.0368347168, -1.0849609375, 0.357421875, -0.5571289062, -0.4750976562, -0.1528320312, 0.8764648438, -0.1167602539, -0.1198730469, -0.84375, 0.798828125, -0.1233520508, -0.4343261719, 0.505859375, -0.5834960938, -0.5083007812, -1.6494140625, -0.91015625, 0.9072265625, -0.8481445312, -0.8041992188, 0.1694335938, 0.8793945312, -0.6459960938, -1.0283203125, 0.4904785156, -0.2546386719, -0.1313476562, 0.4848632812, 0.6518554688, 0.9721679688, 0.6904296875, 0.830078125, 0.1932373047, -0.1605224609, -0.982421875, 0.0664672852, 0.5688476562, 0.1390380859, -0.265625, -0.3366699219, 0.4309082031, 0.7006835938, -0.6557617188, 0.77734375, 0.1136474609, -0.0177001953, -1.1044921875, 0.2556152344, -1.15625, 0.408203125, 1.21875, -0.4572753906, 0.6938476562, 0.4963378906, 0.8115234375, -0.067565918, -0.3103027344, -0.26171875, -0.1665039062, 0.0169219971, -0.4248046875, 0.24609375, -0.6455078125, 0.0676269531, -0.58203125, -0.2802734375, -0.6176757812, -0.9453125, -0.1062011719, 0.0091094971, 0.3564453125, -0.3764648438, 0.6450195312, -0.8515625, 0.1091918945, -0.2376708984, -0.884765625, -0.0531311035, -0.8354492188, 0.2548828125, -0.2152099609, 0.4182128906, -0.5278320312, -0.2814941406, 0.353515625, 0.0626831055, -1.0546875, -0.7700195312, -0.2276611328, 0.5712890625, 0.3264160156, -0.0000584126, 0.0110778809, 0.1185302734, 1.3408203125, -0.3588867188, 0.2604980469, 0.1172485352, -0.4504394531, -0.8325195312, 0.4543457031, 0.3029785156, 0.7338867188, -0.7197265625, 0.8940429688, -0.1577148438, 0.6479492188, 0.0143814087, -0.3012695312, -0.2006835938, -0.4533691406, -0.0257873535, -0.3154296875, -0.1468505859, 0.8129882812, 0.61328125, 0.0672607422, 0.4057617188, 0.1455078125, 0.8344726562, 0.1782226562, 0.6962890625, -1.017578125, 0.0002112389, 1.08203125, -0.4187011719, -1.57421875, 0.5693359375, 0.4465332031, -0.2790527344, -0.9663085938, 0.6474609375, 0.4138183594, -0.4921875, -0.2658691406, -0.5698242188, 0.9458007812, -0.1938476562, -0.5966796875, 0.5659179688, 0.2003173828, -0.2985839844, 0.0000777841, 0.0375366211, 0.1596679688, 0.067565918, 0.634765625, -0.2783203125, 0.1084594727, 0.0749511719, -0.4682617188, 0.6889648438, -0.8471679688, 0.2888183594, -0.6240234375, 0.4428710938, 0.0120315552, 0.4997558594, -0.8740234375, -0.4006347656, 0.755859375, 0.2423095703, 0.0338745117, 0.0791625977, 0.3232421875, -0.2406005859, -0.0613098145, 0.6352539062, -0.6484375, 0.5947265625, -1.421875, -0.4528808594, 0.4072265625, -0.2200927734, 0.1041870117, -1.041015625, -0.5380859375, -1.1962890625, -0.2330322266, 0.2158203125, 0.2829589844, -0.83203125, 0.1826171875, 0.9970703125, 0.3999023438, 0.2983398438, -0.4169921875, 1.28125, -0.0703125, 1.2490234375, -0.5366210938, -0.0779418945, -1.0439453125, -1.15625, -0.3815917969, 0.765625, -0.0556640625, 0.5102539062, -0.275390625, -0.7397460938, 0.1315917969, -0.2248535156, 0.3078613281, 0.5581054688, 0.6440429688, 0.0200195312, 0.2846679688, 0.2171630859, 0.4685058594, 0.1492919922, -0.63671875, -0.7153320312, -1.248046875, -0.5712890625, 0.5688476562, 1.15234375, -0.5795898438, 0.0228118896, -0.1004638672, 0.4155273438, -0.4067382812, -0.6455078125, -0.642578125, -1.1884765625, -0.8369140625, -0.4970703125, 0.4904785156, 0.3647460938, 0.3100585938, 0.1778564453, -1.3134765625, -0.0269470215, 1.1328125, 0.4907226562, -0.0119934082, -0.0988769531, -0.2288818359, -1.2392578125, 0.0802001953, 0.1058349609, 0.3312988281, 0.6845703125, 0.2437744141, -0.7080078125, 0.5561523438, 0.3352050781, 0.3955078125, 0.5747070312, -0.1500244141, -0.022567749, 0.4697265625, 0.2028808594, 0.6772460938, -1.248046875, -0.1032104492, 0.7202148438, 0.0908813477, -0.0299530029, -0.2156982422, -0.0861206055, -1.0966796875, 0.2768554688, -0.3674316406, 0.91015625, -0.2590332031, 0.619140625, -0.7421875, 0.078125, 0.058013916, 1.2900390625, 0.48828125, 0.1194458008, -0.9140625, 0.9438476562, -1.748046875, -0.8125, -0.4543457031, 1.06640625, 0.0037136078, 0.0911865234, 1.14453125, 0.6337890625, 0.59375, 0.2413330078, -0.0667724609, -0.7641601562, -0.5517578125, 0.7124023438, 0.3659667969, -1.3173828125, -0.2110595703, -1.029296875, -0.8471679688, -0.2861328125, 0.734375, -0.0341796875, 0.8032226562, 0.2409667969, -0.0983886719, 0.1094360352, 0.4812011719, 0.1463623047, 0.6967773438, 0.4013671875, -0.0821533203, -0.0079727173, 0.4494628906, 1.1083984375, 0.3347167969, 0.6040039062, 0.5551757812, -0.0435791016, -0.6635742188, 0.5541992188, -0.6440429688, 0.3903808594, 0.7915039062, -0.0469665527, -0.5048828125, 0.412109375, -0.5576171875, 0.947265625, -0.3884277344, 0.1896972656, -0.94140625, -0.3583984375, -0.1655273438, -0.1001586914, -0.3806152344, 0.0185394287, -0.1790771484, -0.0803222656, 0.5922851562, 0.2412109375, -0.5063476562, 0.9223632812, 1.1845703125, 0.5483398438, -1.6376953125, 0.2293701172, -0.4719238281, 0.0647583008, 1.146484375, 0.0614929199, -0.0147857666, -1.083984375, 1.9970703125, -1.26953125, -1.1708984375, 0.423828125, -0.2042236328, -0.4680175781, -0.2329101562, -1.4296875, 0.0997314453, 0.2076416016, -0.1359863281, -0.2937011719, -0.6982421875, 0.302734375, 0.4621582031, -0.271484375, -0.0097351074, -0.8247070312, -0.2741699219, -0.9892578125, -0.4501953125, 0.3703613281, 0.7919921875, 0.5302734375, -1.255859375, -0.5166015625, -0.1286621094, 0.2080078125, 0.1884765625, -1.185546875, 0.5688476562, -0.044708252, -0.5678710938, -0.1647949219, 0.1483154297, 0.8374023438, -0.1201782227, -0.5083007812, 0.2399902344, -0.2312011719, 1.4111328125, 0.0559692383, 1.224609375, -0.80078125, -0.1479492188, -0.4602050781, -0.2534179688, 0.919921875, 0.4677734375, -0.6098632812, 0.966796875, 0.12890625, 0.3349609375, 0.5747070312, -0.1192016602, -1.103515625, 0.4450683594, 1.322265625, 0.396484375, -0.2425537109, -0.4575195312, -0.7749023438, 0.6293945312, 0.2990722656, -0.703125, -0.849609375, -0.5336914062, 0.0505371094, 0.3479003906, 0.0697631836, -0.0602416992, -0.6669921875, 1.158203125, -0.0923461914, 0.9697265625, 0.9907226562, -0.4313964844, -0.8125, -0.0640869141, 0.7861328125, 0.4411621094, 0.4118652344, -0.5419921875, 0.1123046875, 0.5791015625, -1.26953125, 0.494140625, 0.6918945312, -0.0022850037, 0.6889648438, -0.1457519531, -0.0941772461, -0.0399780273, 0.6254882812, -0.0958251953, 0.529296875, -0.7783203125, -0.4252929688, -0.1405029297, 0.0919799805, 0.720703125, -0.0101852417, -0.69140625, 0.5400390625, 0.3078613281, -0.0978393555, -0.3757324219, -0.0177307129, 1.408203125, -0.82421875, -0.2653808594, -0.2709960938, -0.2692871094, 0.244140625, -0.7763671875, -0.0171051025, 0.6176757812, 0.7485351562, -0.0868530273, 0.2255859375, -0.6020507812, 0.9165039062, -0.599609375, 0.1025390625, -0.5346679688, -0.4523925781, -0.0891723633, 0.0043182373, -0.65234375, -0.5219726562, -1.2333984375, 0.3039550781, 0.1007080078, -0.5952148438, 0.3930664062, -1.0380859375, -0.1257324219, 0.2502441406, 1.4150390625, -0.8647460938, 0.6860351562, 0.5629882812, -0.54296875, 1.021484375, -0.7495117188, -0.8671875, 0.0922851562, 0.7153320312, 0.5229492188, -0.1016845703, 0.0087890625, 0.8818359375, 0.7236328125, -0.767578125, -0.29296875, 1.0595703125, 0.8686523438, 0.6225585938, -0.3679199219, 1.0869140625, 0.3068847656, 0.7587890625, -0.6879882812, 0.2717285156, 0.7119140625, -1.8271484375, 0.0166625977, -0.3146972656, -0.3933105469, -0.6098632812, -0.1640625, -1.1982421875, -1.6123046875, 0.1788330078, 0.7373046875, 0.4780273438, -0.1915283203, -0.8168945312, -0.5830078125, -0.0781860352, 0.0575866699, -0.919921875, 0.0900878906, 0.4738769531, -0.1805419922, 0.3493652344, 0.8056640625, -0.2578125, 0.3322753906, 0.3415527344, 1.1767578125, 1.126953125, 0.58984375, 0.0971679688, -0.6821289062, -0.4716796875, -0.0015954971, -0.4792480469, 0.1249389648, -0.5478515625, 0.0386047363, -0.0933227539, 0.1164550781, -1.1484375, -0.2888183594, 0.1722412109, -1.318359375, 0.3217773438, 0.2507324219, -0.4711914062, 0.3911132812, -0.4362792969, 0.5874023438, -0.5375976562, -0.43359375, 1.4609375, 0.765625, -0.751953125, -0.0163421631, 0.6118164062, 0.5512695312, -0.7465820312, -0.1290283203, 1.0263671875, 0.0011043549, -0.1608886719, -0.9155273438, 1.3505859375, 0.3405761719, -0.095703125, -1.43359375, 0.0019950867, 0.1768798828, -0.1478271484, 0.646484375, -0.0080871582, 0.4025878906, -0.0855712891, -0.9428710938, 0.361328125, -0.5522460938, -0.5590820312, 0.2680664062, 1.0068359375, 0.6513671875, 0.3583984375, -0.8764648438, 0.845703125, -0.2543945312, 0.7153320312, 0.1389160156, 0.0097885132, -1.021484375, 0.3259277344, -0.9555664062, 0.2524414062, 0.0759277344, 0.054107666, -0.3542480469, -0.0955810547, -0.2741699219, -0.9794921875, 0.7651367188, 1.1064453125, 0.7377929688, -0.0836181641, -0.8422851562, 0.2985839844, -0.4541015625, 0.3813476562, 0.1223754883, -0.2120361328, -0.8500976562, -0.2878417969, 0.5263671875, 0.3488769531, -0.3176269531, 0.51953125, 0.9243164062, -0.6518554688, -0.2844238281, -0.3298339844, -0.5048828125, -0.2083740234, -0.7387695312, 0.7817382812, -0.2436523438, -0.2575683594, 0.0631103516, 0.4873046875, 0.8432617188, -0.5126953125, 0.1164550781, -0.716796875, 1.78125, -0.7827148438, 0.1536865234, 0.3193359375, -0.6865234375, 0.3525390625, -0.6254882812, 0.0441589355, -0.212890625, 0.2583007812, 0.4860839844, -0.0599975586, 0.2629394531, -0.3916015625, 0.8647460938, -0.7568359375, -0.4172363281, -0.2082519531, -0.0943603516, -0.375, 1.361328125, -0.6948242188, 0.6918945312, -1.09375, -0.6611328125, 0.189453125, -0.8803710938, 0.2076416016, -0.39453125, -0.6713867188, -0.2961425781, -0.8979492188, 0.525390625, 1.109375, 0.2917480469, -0.4350585938, -0.0600585938, -0.3542480469, -0.2114257812, 0.7104492188, -1.3232421875, 1.0546875, -0.2462158203, 1.126953125, 0.0115509033, 0.6137695312, -0.6469726562, -0.1763916016, -0.3857421875, -0.9912109375, -0.7514648438, -0.0518493652, 0.73046875, -0.4145507812, 0.2093505859, 0.693359375, 0.1176147461, -0.5258789062, -0.2763671875, 0.1442871094, -0.3259277344, -1.0986328125, 0.7431640625, -0.3356933594, 0.8779296875, 0.458984375, -1.431640625, -0.1951904297, -0.3271484375, 0.4921875, 0.2263183594, 0.0063095093, 1.123046875, 1.1787109375, 1.0029296875, -0.841796875, -0.6352539062, -0.0758666992, -0.2253417969, 0.5541992188, 0.3132324219, 0.4143066406, -0.6801757812, 1.3818359375, -0.6049804688, -1.205078125, -0.4008789062, -0.314453125, 0.6455078125, 0.2844238281, -0.5053710938, 0.0450134277, -1.1953125, -0.7333984375, -0.1520996094, 0.2668457031, -0.0591430664, -0.3310546875, -0.3686523438, 0.509765625, -0.2739257812, -0.7021484375, -0.0888671875, -0.1824951172, 0.9028320312, -0.0105819702, 0.9858398438, 0.7919921875, -0.0311737061, -0.7954101562, -0.042388916, 0.1512451172, -0.0233154297, 0.0560302734, 0.2998046875, 0.7905273438, -0.5068359375, 1.3662109375, 0.1348876953, -0.1682128906, -0.1058349609, 1.173828125, 0.748046875, 0.4377441406, -0.5825195312, -12.5390625, -0.2744140625, -0.6318359375, -0.2692871094, 0.1130981445, 0.5903320312, 0.0826416016, -1.5625, -0.1136474609, -0.1899414062, -0.3112792969, 0.8022460938, -1.134765625, -0.5415039062, -0.3967285156, -0.7250976562, -0.2489013672, -1.2900390625, -1.3056640625, 0.1381835938, 0.0835571289, 1.0205078125, -1.5322265625, -0.8237304688, 0.9267578125, 0.044128418, -0.802734375, -0.4440917969, -0.3166503906, -0.77734375, 0.5, -0.7841796875, -0.3227539062, 0.6079101562, 0.8447265625, -0.8110351562, 0.1434326172, -1.4541015625, 0.2364501953, 0.2924804688, 1.04296875, -1.138671875, 0.1459960938, 0.927734375, -0.7504882812, 0.1044311523, -1.3916015625, 0.1370849609, 0.8110351562, 0.7348632812, 0.85546875, -0.5112304688, 0.0219726562, -0.3591308594, -0.6665039062, -0.6674804688, 0.7192382812, -0.0520935059, -0.4028320312, 0.5922851562, 0.5795898438, 0.4069824219, -0.0464782715, 0.01222229, -0.5874023438, -0.5771484375, -0.4035644531, -1.25, 2.005859375, -0.5249023438, 0.6645507812, -0.9541015625, 1.224609375, -1.5439453125, 1.107421875, -0.2580566406, 0.0736694336, 0.2731933594, -0.2275390625, 0.0512390137, 0.3576660156, -0.0351867676 ]
As a result, they could not take over the SuperSeaCats as that would have given them a dominant market position on the route. Hence Sea Containers decided, despite its earlier decision, to continue operating SuperSeaCat Three and Four under the SuperSeaCat brand. On 12 October 2007 the SuperSeaCat Three collided with HSC Tallink AutoExpress 2 in Tallinn harbour. Due to strong winds the SuperSeaCat Three was assisted by a tug, but this was not enough to prevent the collision. No passengers were harmed, but the SuperSeaCat Three tore a meter-long hole on the side of the AutoExpress 2. In 2008, SuperSeaCat Three was sold to Greek company Aegean Speed Lines, along with her sister ship SuperSeaCat Four. Both ships remained in service between Helsinki and Tallinn. However, in 2009, the company decided to bring both ships to Greek service. The SuperSeaCat Three arrived on 17 June 2009, was renamed Speedrunner III and began service on 25 June 2009 on the Piraeus-Syros-Tinos-Mykonos line, which she also served in 2010 and 2011. In 2012 she was laid-up in Eleusis Bay due to her company's economic difficulties, but she returned to service the following year, operating on the Piraeus-Serifos-Sifnos-Milos line, where she also remained in 2014. In 2015 she was chartered to Moroccan company Navline, operating between Algeciras and Tanger. In 2016, she returned to Greece and was chartered to Levante Ferries of Ionian Group, operating in the Ionian Sea, on the Patras-Sami-Ithaca line.
[ -0.1815185547, 0.2279052734, -0.3403320312, 0.1693115234, -0.0977172852, 0.3198242188, -0.2626953125, 0.1182861328, 0.1597900391, -0.106262207, -0.3571777344, -0.2561035156, 0.4123535156, 1.6669921875, -0.0344238281, 0.7333984375, -1.2705078125, 1.4033203125, -0.3771972656, 0.3935546875, -0.2700195312, 0.4470214844, -0.1629638672, -0.4697265625, -0.7319335938, 0.5493164062, -0.3701171875, -1.0888671875, -1.06640625, -0.623046875, 0.0501403809, -0.0386047363, -1.1728515625, 0.6669921875, -0.8071289062, 0.4978027344, -0.1036376953, 0.7524414062, 0.6967773438, -0.0117111206, 0.5971679688, -0.7705078125, 0.6762695312, -0.408203125, 1.1064453125, -0.57421875, -0.8803710938, -0.4819335938, -0.9047851562, 0.2604980469, -0.34375, 0.7924804688, -0.1585693359, -1.1728515625, -0.52734375, -0.3745117188, -1.1201171875, -0.2568359375, 0.552734375, -0.6206054688, 0.0219268799, 0.0308074951, -0.5830078125, -0.2685546875, 0.3137207031, 0.1159057617, -0.2788085938, 0.951171875, -0.0751342773, 0.2464599609, 0.1975097656, 0.8188476562, -0.376953125, 0.1011352539, 1.01953125, 0.1143798828, -0.9125976562, 1.3447265625, 0.0227508545, 0.0321350098, 0.2517089844, -0.2120361328, -1.068359375, 0.2341308594, -0.0594787598, -0.0045585632, -1.1435546875, 0.1750488281, -0.3549804688, 0.8979492188, 0.2956542969, 0.3981933594, -1.0732421875, -0.28125, -0.0267333984, -0.2368164062, 0.2602539062, -0.76953125, -0.4702148438, 0.0885009766, 0.5942382812, -0.3891601562, 0.3703613281, -0.3256835938, -1.234375, 1.333984375, -0.7939453125, -0.515625, -0.4211425781, -0.4020996094, -0.1683349609, 0.2388916016, -0.3061523438, 0.3666992188, -0.0118103027, -0.71875, -0.6547851562, -0.5053710938, -0.5419921875, 0.8818359375, -0.0905151367, -1.0576171875, 0.7182617188, -0.3095703125, -0.0196838379, -0.0179748535, -0.0188598633, 0.6323242188, 0.1680908203, 0.2727050781, -0.416015625, 0.0222015381, -1.0908203125, -1.23828125, 1.2392578125, -0.986328125, -0.9360351562, -0.1015625, 0.7934570312, 0.0110549927, 0.3061523438, -0.1622314453, 0.4555664062, -0.310546875, -0.0481262207, 0.4489746094, -0.2741699219, 0.1138305664, -1.4599609375, 0.5112304688, 0.1186523438, -0.5346679688, -0.7099609375, -0.2139892578, 0.1351318359, 0.2763671875, 0.689453125, -0.4392089844, 1.388671875, 0.2709960938, -0.099609375, -0.0834960938, -0.5581054688, -0.6147460938, 0.0389404297, 0.7216796875, -0.5346679688, 0.4362792969, -1.197265625, 0.2186279297, -0.2095947266, -0.5146484375, 0.6147460938, -2.099609375, 0.2373046875, -0.7700195312, 0.0764160156, -1.3828125, 0.2293701172, -1.0087890625, -0.3991699219, 0.2912597656, 1.0185546875, -0.6923828125, 0.0944213867, -1.228515625, 1.0302734375, 0.2094726562, -0.3403320312, 0.2763671875, -0.5053710938, -0.6293945312, -1.6474609375, -0.4765625, 0.5419921875, -1.037109375, -1.3701171875, -0.3225097656, 0.7856445312, -0.873046875, -1.1298828125, 0.5053710938, -0.3618164062, -0.447265625, 0.2423095703, 0.6499023438, 0.6069335938, -0.0590209961, 0.3481445312, -0.54296875, -0.3430175781, -0.9838867188, 0.4299316406, 0.2895507812, 0.065612793, -0.0585021973, -0.110534668, -0.019744873, 0.8994140625, -0.646484375, 0.4353027344, 0.4694824219, -0.2415771484, -1.083984375, 0.6879882812, -0.0830688477, 0.9184570312, 0.640625, -0.44921875, -0.0520019531, 0.6889648438, 0.5610351562, 0.529296875, -0.7592773438, -0.5688476562, 0.2722167969, -0.0111083984, -0.1048583984, -0.0742797852, -0.501953125, 0.0448608398, -0.3149414062, 0.2452392578, -0.1484375, -0.4956054688, -0.1506347656, -0.2117919922, 0.4748535156, -0.0533752441, 0.86328125, -0.0284729004, 0.4172363281, -0.1380615234, -1.017578125, 0.326171875, -0.953125, 0.6899414062, -0.287109375, 0.9809570312, -0.3576660156, -0.60546875, 0.5395507812, 0.734375, -0.669921875, -0.3610839844, 0.1557617188, 0.60546875, -0.049987793, 0.3916015625, -0.0177307129, -0.2373046875, 1.033203125, -0.1018066406, 0.2052001953, -0.3037109375, -0.0389099121, -0.5620117188, -0.1496582031, 0.1235351562, 0.4831542969, -0.1098632812, 0.5063476562, -0.0654296875, 0.3273925781, 0.0678710938, -0.2946777344, -0.0715332031, -1.06640625, 0.0005598068, -0.6430664062, -1.3662109375, 0.3645019531, 0.7797851562, -0.1843261719, 0.2127685547, -0.3500976562, 1.1396484375, 0.7709960938, 0.546875, -0.9916992188, -0.5209960938, 1.0537109375, -1.3486328125, -0.8974609375, 1.193359375, 0.4545898438, -0.2365722656, -1.5107421875, 0.7641601562, 0.69140625, -0.8237304688, -0.2944335938, -0.8974609375, 0.8779296875, 0.0231628418, -0.2459716797, 0.6508789062, -0.0997924805, -0.2907714844, 0.4055175781, 0.0055847168, 0.0881958008, 0.4125976562, 0.4650878906, 0.3479003906, 0.0582275391, 0.2849121094, -0.822265625, 0.7827148438, -0.3557128906, 0.4841308594, -0.4453125, 0.58203125, 0.5712890625, 0.7172851562, -0.5278320312, -0.4291992188, 0.5502929688, 0.185546875, 0.1258544922, -0.2103271484, 0.0514221191, -0.546875, 0.4782714844, 0.6303710938, -1.2578125, 0.7768554688, -1.25, 0.1047973633, 0.2548828125, -0.0874023438, -0.3737792969, -0.5083007812, -0.525390625, -0.6044921875, -0.369140625, 0.5600585938, 0.3969726562, -1.1376953125, 0.7690429688, 1.1708984375, 0.7036132812, 0.0448913574, -0.3576660156, 1.259765625, -0.3635253906, 0.8168945312, 0.0309143066, 0.4826660156, -1.26953125, -0.4208984375, -0.591796875, 0.4787597656, 0.0297698975, 0.3828125, -0.0921630859, -0.7875976562, -0.2641601562, -0.4482421875, 0.62890625, -0.0057067871, 0.4321289062, 0.0118560791, -0.1602783203, 0.2902832031, 0.6645507812, 0.1561279297, -0.1950683594, -0.326171875, -0.82421875, -0.6235351562, 0.9555664062, 0.8544921875, -0.3093261719, 0.1311035156, -0.4716796875, 0.1982421875, -0.71875, -0.880859375, -0.7099609375, -0.7954101562, -0.9926757812, -0.1520996094, 0.845703125, 0.4558105469, 0.1771240234, 0.302734375, -1.0693359375, 0.4924316406, 0.9287109375, -0.1056518555, -0.3337402344, -0.0132217407, 0.6977539062, -0.8051757812, -0.0514526367, 0.2604980469, -0.1884765625, 0.7065429688, 0.2578125, -0.7431640625, 0.1678466797, 0.0093688965, 0.1848144531, 0.3908691406, 0.0199279785, -0.345703125, 0.451171875, 0.931640625, 0.7553710938, -0.8862304688, -0.0547180176, 0.0774536133, 0.3703613281, -0.0842895508, -0.5209960938, 0.3081054688, -0.9052734375, 0.1444091797, -0.330078125, 0.8359375, -0.2484130859, 0.185546875, -0.2476806641, -0.2275390625, -0.033416748, 0.7299804688, -0.086730957, -0.2159423828, -0.3115234375, 0.7705078125, -1.5380859375, -0.3811035156, -0.4916992188, 1.193359375, -0.3815917969, 0.798828125, 1.171875, 0.9135742188, 0.640625, -0.2810058594, 0.0820922852, -0.4831542969, -0.7255859375, 0.6479492188, 0.5375976562, -0.4184570312, -0.4616699219, -0.6767578125, -1.0166015625, -0.6494140625, 0.9619140625, -0.2888183594, 0.5991210938, 0.8256835938, -0.0801391602, 0.2690429688, 0.7807617188, -0.0050010681, 0.6821289062, 0.0407104492, 0.0401000977, -0.2631835938, 0.1447753906, 0.5908203125, 1.07421875, 0.3508300781, 0.634765625, -0.3779296875, -0.6391601562, 0.88671875, -0.6420898438, 0.4465332031, 0.7470703125, -0.0729980469, -0.5170898438, 0.2543945312, -0.576171875, 0.8090820312, -0.4196777344, 0.5952148438, -0.3286132812, -0.2237548828, 0.2233886719, -0.3439941406, -0.4921875, 0.2607421875, -0.4748535156, 0.0418701172, 0.6025390625, 0.8315429688, -0.4299316406, 0.6142578125, 1.5439453125, 0.4313964844, -1.2099609375, 0.4865722656, -0.1876220703, 0.1105957031, 1.2333984375, 0.0523986816, -0.4189453125, -1.3466796875, 1.8271484375, -1.3974609375, -0.5219726562, 0.1619873047, 0.2471923828, -0.0114898682, -0.5766601562, -1.341796875, 0.2164306641, -0.4301757812, 0.3620605469, -0.1313476562, -1.1279296875, -0.3525390625, -0.0339660645, 0.3359375, -0.2890625, -0.1128540039, -0.032409668, -0.5483398438, -0.6005859375, 0.7797851562, 0.962890625, 0.701171875, -1.474609375, -0.5395507812, -0.1444091797, 0.3081054688, 0.0561218262, -0.8315429688, 0.7114257812, 0.2607421875, -0.5668945312, -0.054901123, 0.0152664185, 0.6708984375, -0.1323242188, -0.7490234375, -0.1403808594, 0.2189941406, 0.8759765625, 0.2919921875, 0.6323242188, -0.5634765625, -0.0057830811, -0.998046875, 0.2332763672, 0.5483398438, -0.3940429688, -0.9443359375, 1.0419921875, 0.4035644531, 0.4450683594, -0.2817382812, 0.4077148438, -0.8081054688, -0.58984375, 0.8056640625, -0.1607666016, -0.0734863281, -0.1462402344, -0.4592285156, 1.1982421875, -0.1093139648, -1.224609375, -0.8256835938, -0.2502441406, 0.4387207031, 0.537109375, -0.3715820312, 0.5424804688, -0.7822265625, 0.8637695312, -0.7998046875, 0.6376953125, 0.4074707031, 0.0546875, -0.689453125, -0.2346191406, -0.4738769531, 0.6284179688, 0.0980834961, -0.46484375, -0.0125656128, 0.5434570312, -1.064453125, 0.2998046875, -0.1403808594, -0.2255859375, 0.5673828125, 0.3266601562, -0.2712402344, 0.4504394531, 0.1722412109, -0.6713867188, 0.0478210449, -0.5083007812, -0.6010742188, -0.6362304688, 0.3464355469, 0.3869628906, 0.0295562744, -0.7397460938, 0.8056640625, -0.0162200928, -0.3029785156, -0.8364257812, -0.1013183594, 1.3359375, -0.5385742188, -0.2235107422, -0.5053710938, -0.2059326172, 0.5092773438, -0.9970703125, -0.1848144531, 0.91796875, 0.53515625, -0.494140625, 0.6958007812, -0.2556152344, 1.154296875, -0.2442626953, 0.5532226562, -0.2202148438, -0.2954101562, -0.2138671875, 0.1645507812, -0.5, -0.693359375, -0.798828125, -0.1705322266, -0.018081665, -0.3044433594, 0.8154296875, -0.8129882812, 0.1965332031, 0.3693847656, 1.140625, -0.72265625, 0.3813476562, 0.9658203125, -0.7954101562, 0.71875, -0.2866210938, -0.54296875, 0.0864257812, 0.7583007812, 0.5463867188, 0.248046875, -0.2209472656, 0.6733398438, 0.7265625, -0.7412109375, -0.5239257812, 0.537109375, 1.4287109375, 0.5859375, -0.4235839844, 0.6772460938, 0.8544921875, 0.904296875, -0.5336914062, -0.063293457, 0.404296875, -1.4599609375, -0.0962524414, 0.2120361328, -0.1539306641, -0.4875488281, 0.1903076172, -0.9765625, -1.0615234375, 0.0696411133, 0.4699707031, 0.5180664062, -0.5004882812, -0.7421875, -0.6401367188, 0.1574707031, -0.0505371094, -0.779296875, -0.0042648315, -0.1958007812, -0.3142089844, 0.2927246094, 0.2844238281, -0.2624511719, 0.4658203125, -0.2413330078, 1.2080078125, 1.083984375, 0.8500976562, -0.5961914062, 0.055480957, -0.3637695312, -0.353515625, -0.2868652344, 1.017578125, -0.2175292969, 0.3334960938, -0.3139648438, 0.1875, -1.1240234375, -0.4365234375, 0.142578125, -1.005859375, 0.1492919922, 0.3413085938, -0.2849121094, 0.05078125, -0.8466796875, 0.6909179688, -0.2318115234, -0.0653686523, 0.7651367188, 0.2888183594, -0.861328125, -0.8291015625, 0.5200195312, 0.712890625, -0.9213867188, -0.0545959473, 0.8666992188, 0.2670898438, 0.0783691406, -0.767578125, 1.5732421875, 0.0927734375, -0.2420654297, -1.431640625, -0.3190917969, -0.2380371094, -0.2277832031, 0.1763916016, -0.0182800293, 0.2805175781, -0.3271484375, -0.419921875, 0.7104492188, -0.7592773438, -0.6337890625, 0.8974609375, 1.1708984375, 0.8754882812, 0.5380859375, -1.3310546875, 0.654296875, 0.3444824219, 0.2214355469, -0.3542480469, 0.1267089844, -1.56640625, 0.2739257812, -0.6508789062, 0.5405273438, 0.1702880859, -0.1007080078, -0.4831542969, 0.8491210938, -0.7202148438, -0.7387695312, 1.111328125, 0.7836914062, 0.2362060547, -0.2595214844, -0.4118652344, 0.7192382812, -0.0745239258, 0.2316894531, 0.6870117188, -0.5893554688, -1.0439453125, -0.2661132812, 0.29296875, 0.3918457031, 0.0122146606, 0.650390625, 0.5400390625, -0.3305664062, -0.2457275391, -0.533203125, -0.642578125, -0.296875, -0.6547851562, 0.7294921875, -0.8500976562, -0.5581054688, -0.3698730469, 0.3767089844, 0.8818359375, -0.6489257812, -0.1013183594, -0.5024414062, 1.9169921875, -1.005859375, -0.650390625, 0.3188476562, -0.3322753906, 0.1241455078, -0.8715820312, -0.5498046875, -0.34765625, -0.3461914062, 1.2890625, -0.3051757812, -0.0238647461, -0.2058105469, 0.8740234375, -1.240234375, -0.3188476562, -0.4262695312, -0.4799804688, -0.1726074219, 1.140625, -0.552734375, 0.2175292969, -0.318359375, -0.3991699219, 0.3354492188, -0.2375488281, 0.14453125, -0.6782226562, -0.7548828125, 0.4484863281, -0.7973632812, 0.3649902344, 0.751953125, 0.0687866211, -0.4194335938, 0.1026611328, -0.3046875, -0.0304260254, 1.0361328125, -0.7612304688, 0.84375, -0.4294433594, 0.6083984375, 0.0947875977, 0.8471679688, -0.2099609375, 0.1447753906, -0.1440429688, -0.3798828125, -0.7734375, -0.38671875, 1.154296875, -0.1036987305, 0.3579101562, 0.4262695312, 0.5927734375, -0.2385253906, 0.2348632812, -0.2346191406, 0.2113037109, -1.1181640625, 1.05859375, -1.080078125, 0.8559570312, 0.2600097656, -1.458984375, 0.4401855469, -0.3903808594, 0.7534179688, 0.0778198242, -0.0306091309, 0.703125, 0.9213867188, 0.73828125, -0.6186523438, -0.51953125, -0.517578125, 0.2469482422, 0.5439453125, -0.0358886719, 0.1817626953, -1.314453125, 1.76953125, -0.3859863281, -1.513671875, 0.4592285156, -0.3059082031, 0.4638671875, 0.3564453125, -0.4616699219, -0.0628662109, -1.2587890625, -0.4887695312, 0.2218017578, 0.2902832031, -0.26953125, -0.4636230469, 0.2841796875, 0.5610351562, -0.3376464844, -0.5795898438, 0.2839355469, -0.0556640625, 0.3178710938, 0.1027832031, 0.7294921875, 0.9404296875, -0.3229980469, -0.3591308594, 0.1427001953, 0.4169921875, -0.0477905273, -0.2915039062, 0.1036987305, -0.0343933105, -0.513671875, 1.185546875, 0.4982910156, -0.5639648438, -0.2507324219, 0.8896484375, 0.6704101562, 0.451171875, -0.4719238281, -13.296875, -0.326171875, -0.3708496094, -0.73828125, -0.1221923828, 0.8149414062, -0.1851806641, -1.4345703125, 0.0818481445, -0.6337890625, -0.1516113281, 0.2824707031, -1.6728515625, -0.6826171875, -0.4479980469, -0.0615844727, -0.1198120117, -1.2412109375, -0.5791015625, 0.3623046875, 0.3842773438, 0.5078125, -1.1064453125, -0.6362304688, 0.6508789062, 0.2814941406, -0.689453125, 0.2895507812, 0.1466064453, -0.7700195312, -0.1534423828, -1.087890625, -0.5639648438, 0.5092773438, 0.8627929688, -0.6904296875, -0.4084472656, -0.7094726562, 0.333984375, 0.4167480469, 1.03125, -0.94921875, 0.0696411133, 0.3649902344, -0.5483398438, 0.3178710938, -0.8061523438, 0.2409667969, 1.322265625, 1.0234375, 0.8291015625, 0.2634277344, -0.4018554688, 0.2697753906, -0.5922851562, -0.6005859375, 0.2078857422, -0.4790039062, -0.0026493073, 0.5771484375, 0.1478271484, 0.5620117188, 0.3940429688, 0.3728027344, -0.3544921875, -0.6865234375, -0.0855712891, -0.759765625, 1.552734375, -0.521484375, 0.3229980469, -0.4228515625, 1.3095703125, -1.0517578125, 0.1463623047, -0.1665039062, -0.0166320801, 0.0264282227, -0.9584960938, 0.6943359375, 0.5107421875, -0.3178710938 ]
In late 2016, following the sale of her fleetmate Speedrunner IV, she returned to Aegean Speed Lines, and is due to operate in the Cyclades again in 2017. References External links SuperSeaCat Three at Fakta om Fartyg (in Swedish) Ferries of Finland Ferries of Greece Ships of Estonia Ships built in Italy MDV 1200-class fast ferries Ships built by Fincantieri 1998 ships
[ -0.3579101562, 0.094543457, -0.0668334961, -0.0606689453, 0.0634155273, 0.453125, -0.2404785156, -0.0401306152, 0.5600585938, -0.0448303223, -0.587890625, -0.5229492188, 0.1782226562, 1.5771484375, 0.3295898438, 0.4538574219, -0.689453125, 0.5727539062, -0.0846557617, 0.5522460938, -0.1297607422, 0.3391113281, -0.375, 0.3134765625, -1.15234375, 0.84375, -0.1658935547, -1.435546875, -1.220703125, -0.4968261719, -0.5532226562, -0.4084472656, -0.9741210938, 0.9775390625, -1.1455078125, 0.3129882812, -0.3828125, 0.6826171875, 1.384765625, -0.0366210938, 0.2230224609, -0.3393554688, 0.9501953125, -1.2060546875, 1.6259765625, -0.3916015625, -0.6079101562, -0.2021484375, -1.8408203125, 0.4318847656, 0.2431640625, 0.5971679688, -0.1315917969, -0.5859375, 0.2023925781, -0.970703125, -0.7587890625, -0.6865234375, 0.9643554688, -0.6879882812, -0.0484924316, 0.2003173828, -0.5166015625, -0.7700195312, -0.0315551758, 0.2673339844, 0.453125, 0.5971679688, -0.6909179688, 1.1259765625, -0.0194854736, 0.525390625, 0.2983398438, 0.0235443115, 0.6572265625, -0.619140625, -0.1314697266, 0.9541015625, -0.2963867188, -0.9604492188, -0.74609375, -0.80859375, -0.9389648438, -0.1381835938, 0.1522216797, 0.3898925781, -0.76953125, 0.6967773438, -0.5249023438, 1.3134765625, -0.3100585938, -0.6142578125, -0.4499511719, -0.1041870117, 0.3693847656, 0.6606445312, -0.1993408203, -0.5932617188, -0.2990722656, -0.1745605469, 0.9731445312, -0.4958496094, 0.60546875, -0.2517089844, -1.0263671875, 1.4189453125, -1.3466796875, -0.1737060547, 0.1337890625, -0.7690429688, -0.1413574219, 0.7631835938, 0.6440429688, 1.412109375, -0.2392578125, -0.1099853516, -0.8754882812, -0.466796875, -0.3713378906, 0.6411132812, 0.4458007812, -1.2373046875, 0.7919921875, -0.6127929688, 0.7651367188, -0.0639038086, -0.2780761719, 0.6499023438, 0.2153320312, -0.447265625, -0.3046875, -0.2905273438, -1.0859375, -0.8198242188, 1.193359375, -0.8403320312, -0.8256835938, -0.0284881592, 1.05078125, 0.1899414062, 0.4211425781, -0.7016601562, 0.0725708008, -0.5263671875, 1.037109375, 0.0757446289, -0.2449951172, 0.0363464355, -1.681640625, 0.5561523438, 0.1094360352, 0.0982055664, -0.3327636719, -0.0941772461, 0.5073242188, 0.1750488281, 0.5551757812, 0.271484375, 1.5576171875, 0.5068359375, 0.4331054688, 0.2370605469, -0.8247070312, -1.1337890625, 0.0856933594, 1.3955078125, -0.7866210938, 0.5874023438, -1.01953125, 0.8676757812, -0.8955078125, -0.1614990234, 0.9018554688, -1.5009765625, -0.0454711914, -0.0991821289, 0.2298583984, -1.619140625, 0.0816040039, -1.1884765625, -0.1502685547, -0.3154296875, 0.3869628906, -0.1528320312, 0.60546875, -0.2709960938, 0.8100585938, -0.095703125, -0.4616699219, 0.3063964844, -0.4426269531, -0.8354492188, -1.2392578125, -0.4731445312, 0.822265625, -1.12109375, -1.03125, 0.1429443359, -0.0465087891, -0.4729003906, -1.12890625, 0.7099609375, 0.0953369141, -0.8466796875, 0.9638671875, 0.57421875, 1.037109375, 0.2478027344, 0.3483886719, -0.2038574219, -0.2019042969, -0.6645507812, 0.5439453125, 0.0566711426, 0.0601501465, 0.1479492188, -0.5517578125, -0.12890625, 0.5639648438, -0.1075439453, 0.3679199219, 0.3442382812, -0.0532531738, -1.1123046875, 1.5537109375, -1.2666015625, 0.8984375, 1.1787109375, -0.0765991211, 0.6401367188, 1.1435546875, 1.0322265625, 0.4130859375, -0.4714355469, -0.2778320312, 0.2736816406, 0.9633789062, -0.9985351562, -0.419921875, -0.3117675781, 0.3676757812, -0.1178588867, 0.2282714844, -0.302734375, 0.2010498047, -0.7026367188, 0.478515625, 0.2663574219, -0.1198120117, 0.8100585938, -0.3911132812, 0.5014648438, 0.1761474609, -0.8637695312, -0.4709472656, -0.7495117188, 0.4829101562, -0.3195800781, 0.3327636719, -0.306640625, 0.3015136719, 0.6142578125, 0.5537109375, -1.13671875, 0.001332283, -0.2319335938, -0.1997070312, 0.728515625, 0.7529296875, -0.1457519531, 0.2800292969, 1.0751953125, -0.677734375, 0.2241210938, -0.3737792969, -0.1053466797, -0.6040039062, 0.8671875, 0.4873046875, 0.6020507812, 0.5595703125, 0.3459472656, -0.0825805664, 0.4624023438, 0.0324401855, -0.2203369141, -0.0667724609, -0.1486816406, 0.0190124512, -0.2841796875, -1.1767578125, 0.2259521484, 0.623046875, 0.0158081055, -0.1419677734, -0.0343017578, 0.8427734375, 0.33984375, 0.7802734375, -1.001953125, -0.4624023438, 0.853515625, -0.5581054688, -0.7817382812, 0.712890625, 0.5698242188, 0.1115112305, -0.8618164062, 0.7143554688, 1.208984375, -0.6669921875, -0.0759887695, -0.591796875, 1.1689453125, -0.1900634766, -0.2849121094, -0.0060997009, 0.0321655273, -0.9116210938, 0.6572265625, 0.3857421875, 0.4260253906, 0.3703613281, 0.1896972656, -0.3920898438, 0.1611328125, 0.1071166992, -0.4797363281, 1.0341796875, -0.7954101562, -0.2790527344, -0.5405273438, 0.2912597656, 0.6455078125, 1.1025390625, 0.1508789062, -0.1658935547, -0.1489257812, 0.0769042969, 0.3989257812, -0.1535644531, -0.2573242188, -0.3173828125, 0.6059570312, 0.5556640625, -0.7724609375, 0.3979492188, -1.1259765625, -0.22265625, 0.2181396484, 0.8129882812, -0.0409851074, -0.6357421875, 0.2746582031, -1.080078125, 0.0295562744, 0.2634277344, 0.4990234375, -1.298828125, 0.5541992188, 1.0810546875, 0.5517578125, -0.1646728516, -0.2646484375, 1.029296875, -0.0144882202, 1.033203125, -0.3803710938, 0.197265625, -1.2919921875, -0.6206054688, -0.4855957031, 0.2543945312, 0.7133789062, 0.3127441406, -0.6079101562, -1.3916015625, -0.1348876953, -0.3142089844, 0.8974609375, 0.3356933594, 0.96484375, 0.1600341797, -0.259765625, 0.2541503906, 0.5185546875, 0.0240020752, -0.625, 0.2116699219, -0.5170898438, -0.705078125, 0.7236328125, 1.556640625, -0.9389648438, 0.6577148438, -0.6137695312, -0.0025901794, -0.7026367188, -1.0966796875, -0.7387695312, -1.208984375, -0.4672851562, -0.2980957031, 0.59375, 0.3996582031, -0.0616760254, 0.2810058594, -0.4096679688, 0.7119140625, 0.6787109375, 0.0883178711, -0.3029785156, 0.3742675781, 0.3337402344, -1.2353515625, 0.1064453125, 0.1955566406, 0.4428710938, 0.1013793945, -0.0138092041, -0.8344726562, 0.2099609375, 0.3188476562, 0.1127319336, 0.6264648438, -0.125, 0.0118331909, -0.1784667969, -0.0765991211, -0.112487793, -0.6245117188, 0.1195678711, 0.2200927734, 0.5932617188, 0.1192016602, 0.14453125, -0.2252197266, -1.173828125, 0.0283813477, 0.0551452637, 1.1416015625, 0.0346374512, 0.4995117188, -0.537109375, 0.1354980469, 0.1951904297, 1.107421875, -0.4228515625, -0.3781738281, -0.9663085938, 0.81640625, -1.0361328125, -0.3630371094, 0.2900390625, 1.1650390625, -0.6103515625, -0.1361083984, 0.7724609375, 1.466796875, 0.4614257812, 0.51953125, -0.1322021484, -0.66015625, -0.6625976562, 0.4614257812, -0.0092773438, -0.1098022461, -0.3776855469, -0.4045410156, -0.7524414062, -0.5239257812, 1.318359375, -0.3676757812, 0.1904296875, 0.6455078125, -0.1350097656, 0.4470214844, 0.1529541016, 0.2629394531, 0.033416748, 0.4614257812, -0.0530395508, 0.2829589844, 0.2790527344, 0.9599609375, 0.7299804688, 0.4382324219, 0.1161499023, -0.0933837891, -0.3029785156, 0.7719726562, 0.5419921875, 0.3459472656, 0.9721679688, 0.0952758789, 0.0526428223, 0.0947265625, -0.2086181641, 0.5439453125, -0.6328125, 0.0614929199, -0.849609375, 0.0181732178, 0.1110229492, -0.4497070312, -0.923828125, -0.84375, -0.3850097656, -0.5400390625, 0.5244140625, 0.94140625, 0.0064582825, 0.4645996094, 1.1396484375, 0.7114257812, -0.5541992188, 0.3525390625, 0.0129394531, 0.2109375, 0.2663574219, -0.4145507812, 0.0888061523, -0.783203125, 1.21875, -1.267578125, -0.560546875, 0.3837890625, -0.1331787109, -0.2585449219, -0.3854980469, -1.7099609375, -0.87890625, -0.0424194336, 0.0947875977, -0.3039550781, -0.7143554688, -0.1032714844, 0.5307617188, -0.3376464844, 0.0617675781, -0.6123046875, -0.2268066406, -0.2609863281, -0.1690673828, 0.4497070312, 0.1036376953, 0.1735839844, -1.1181640625, -0.5952148438, 0.0351257324, 0.1579589844, 0.1021118164, -0.9619140625, 0.8896484375, -0.3498535156, -0.0257263184, -0.0790405273, 0.4758300781, 0.6005859375, -0.2114257812, -0.5141601562, 0.1463623047, -0.34765625, 0.66015625, 0.0961914062, 1.5234375, -0.703125, 0.1665039062, -0.4465332031, -0.2427978516, -0.0329589844, -0.1302490234, 0.0609130859, 1.0732421875, -0.359375, -0.1098022461, 0.5625, 0.8374023438, -1.3857421875, -0.4528808594, 0.8422851562, 0.6079101562, -0.9760742188, -0.4113769531, -0.8271484375, 0.6020507812, 0.2841796875, -0.8295898438, -0.1745605469, -0.3723144531, 0.4399414062, 0.2041015625, -0.25, 0.8408203125, -0.8100585938, 0.658203125, -0.919921875, 1.0986328125, 0.3344726562, -0.4614257812, -1.0341796875, 0.0447692871, 0.8408203125, -0.1713867188, 0.455078125, -0.626953125, -0.1398925781, 0.89453125, -0.5908203125, 0.0845947266, 0.2734375, -0.3583984375, 0.560546875, -0.0953979492, 0.6005859375, 0.3251953125, -0.0824584961, 0.2044677734, -0.4406738281, -1.3916015625, -0.890625, -0.517578125, 0.0584106445, 0.4750976562, 0.0408325195, -0.9150390625, -0.5131835938, -0.0227661133, 0.4096679688, -0.6337890625, -0.1649169922, 1.138671875, -0.8583984375, -0.4438476562, 0.3012695312, 0.0433654785, 0.767578125, -0.0578918457, -0.1677246094, -0.1630859375, 0.529296875, -0.1751708984, 0.275390625, -0.658203125, 0.7846679688, -0.0399169922, 0.1807861328, -0.2587890625, -0.6025390625, -0.8784179688, 0.0555725098, -0.9458007812, 0.0670166016, -0.8354492188, 0.061920166, -0.5625, -0.2049560547, 0.3278808594, -0.7709960938, 0.0778808594, -0.5087890625, 1.0732421875, -0.4096679688, 0.271484375, 0.3117675781, -0.3747558594, 0.2626953125, -0.4719238281, -0.8510742188, -0.4631347656, 0.5234375, 0.4311523438, 0.1774902344, 0.1556396484, -0.0883789062, 0.0414428711, -0.8173828125, -0.2467041016, 0.294921875, 1.455078125, 0.3122558594, -0.6865234375, 0.4504394531, 0.5336914062, 0.0313415527, -0.5727539062, 0.3310546875, 0.5639648438, -0.8979492188, -0.373046875, -0.4396972656, 0.0760498047, -0.3044433594, 0.2095947266, -1.423828125, -0.7861328125, 0.1987304688, 0.8818359375, 0.3645019531, -0.2990722656, -0.4602050781, -0.6899414062, 0.5561523438, -0.4169921875, -0.6762695312, 0.3718261719, -0.1167602539, 0.1324462891, 0.298828125, 0.5034179688, -0.4223632812, 0.3000488281, 0.0800170898, 1.2529296875, 1.5400390625, 0.6767578125, -0.3215332031, -1.0009765625, -0.4665527344, 0.2353515625, -0.517578125, 1.3984375, -0.4194335938, -0.1572265625, -0.1166381836, 0.6987304688, -1.3291015625, -0.106262207, -0.2734375, -1.1748046875, 0.2873535156, 0.3168945312, 0.0733642578, 0.4743652344, -0.7768554688, 0.7265625, 0.1095581055, 0.2729492188, 0.8520507812, 0.3227539062, -0.6889648438, -0.865234375, 0.6494140625, 0.3786621094, -0.8305664062, -0.0642089844, 1.2958984375, 0.2083740234, 0.2810058594, -0.7719726562, 1.443359375, -0.3989257812, -0.0899658203, -1.55078125, -0.2359619141, -0.0208435059, 0.0707397461, -0.0317077637, -0.5708007812, 0.4548339844, -0.2629394531, -0.1263427734, 0.3718261719, -0.8774414062, -0.6655273438, 0.7456054688, 1.0810546875, 0.3156738281, 0.0920410156, -0.7475585938, 0.8657226562, -0.078125, 0.1036376953, 0.619140625, -0.25390625, -1.01953125, 0.5092773438, -0.365234375, 0.44921875, -0.4282226562, 0.3117675781, -0.2192382812, -0.3703613281, -0.1340332031, -0.6005859375, 0.6821289062, 0.9311523438, 0.30078125, 0.3508300781, -0.4548339844, 0.6079101562, 0.1512451172, 0.7182617188, 0.5766601562, -0.5317382812, -0.8051757812, -0.2526855469, -0.0354309082, 1.0634765625, 0.0054931641, 0.7944335938, 1.16015625, -0.8178710938, 0.0971679688, -0.8427734375, -0.7314453125, -0.2885742188, -0.8715820312, 0.677734375, -0.439453125, 0.3366699219, -0.2861328125, 0.3122558594, 0.6098632812, 0.2822265625, -1.099609375, -1.1767578125, 1.36328125, -0.8549804688, 0.462890625, 0.6420898438, -0.6186523438, 0.3354492188, -0.9091796875, -0.2316894531, -0.3237304688, 0.4743652344, 0.4921875, -0.0831298828, 0.4997558594, -0.8359375, 0.755859375, -1.2333984375, -0.2763671875, 0.0229797363, -0.2310791016, -0.640625, 0.8872070312, -0.6166992188, -0.0235443115, 0.2484130859, -0.57421875, 0.1234130859, -0.6259765625, 0.5263671875, -0.7729492188, -0.2966308594, -0.2023925781, -0.7734375, 0.1117553711, 0.3269042969, 0.1840820312, -0.4467773438, 0.7104492188, -0.2673339844, -0.3996582031, 0.0958251953, -1.19140625, 1.0126953125, -0.9453125, 0.1663818359, -0.1121826172, 0.0051383972, -0.6547851562, 0.2026367188, -0.732421875, -0.6303710938, -1.08984375, -0.5390625, 1.1962890625, 0.0307159424, 0.7143554688, 1.013671875, 0.5600585938, -0.0838623047, -0.4890136719, -0.0403442383, -0.4877929688, -1.20703125, 1.150390625, -1.01953125, 0.8178710938, 0.7456054688, -1.736328125, -0.0077095032, -0.7426757812, 0.8315429688, -0.2763671875, -0.1883544922, 0.6943359375, 1.1337890625, 0.3759765625, -0.6147460938, -0.5224609375, -0.9340820312, -0.2130126953, 0.0315551758, -0.3547363281, 0.1342773438, -0.0451660156, 1.212890625, -0.2340087891, -1.5400390625, -0.0887451172, -0.0555114746, 0.51953125, 0.2609863281, -1.376953125, -0.3081054688, -1.513671875, -0.0654907227, -0.0866088867, 0.2595214844, 0.4001464844, -0.400390625, -0.0717163086, 0.2436523438, -0.5874023438, -0.3833007812, -0.7060546875, -0.0108032227, 0.0762329102, 0.3291015625, 1.134765625, 0.0418701172, 0.2053222656, -0.2648925781, 1.2197265625, -0.1674804688, -0.1188354492, -0.1298828125, 0.4113769531, -0.2954101562, -1.166015625, 0.80859375, 0.67578125, 0.0914306641, -0.4467773438, 0.7348632812, 0.6499023438, -0.2919921875, -1.0537109375, -12.8125, 0.1123657227, -0.3217773438, -0.595703125, -0.7861328125, 0.0512695312, 0.0512390137, -1.876953125, 0.32421875, -0.6982421875, -0.4375, 0.7822265625, -0.9140625, -0.2370605469, -0.2658691406, -0.365234375, -0.533203125, -0.9326171875, -0.9946289062, 0.1195068359, 0.4833984375, 0.4934082031, -1.333984375, -1.1435546875, 0.654296875, -0.2049560547, -0.5380859375, 0.1416015625, 0.3696289062, -0.3264160156, 0.3713378906, -0.5322265625, 0.1148071289, 0.5112304688, 0.1625976562, -0.78515625, -0.3403320312, -0.927734375, -0.1871337891, 0.4458007812, 0.9091796875, -0.7783203125, 0.0071868896, 0.373046875, -1.185546875, 0.3408203125, -1.23828125, 0.9770507812, 1.1748046875, 0.2685546875, 0.7001953125, -1.0302734375, -0.4831542969, -0.0416870117, -0.6000976562, -0.5786132812, 0.548828125, 0.1071777344, -0.1330566406, 1.5009765625, 0.5375976562, 1.013671875, 0.2276611328, -0.0805664062, -0.8168945312, -0.8432617188, 0.0071258545, -1.55859375, 1.3017578125, -0.4758300781, 0.2592773438, -0.828125, 1.1533203125, -1.2099609375, 0.4216308594, 0.0938720703, -0.1083984375, -0.056640625, -0.2854003906, 0.3740234375, 0.2761230469, 0.1944580078 ]
Super Runner Jet is a fast ferry owned and operated by Seajets. She was built in 1999 at Fincantieri, Riva Trigoso, Italy, for Sea Containers, but entered service only in 2000 for Sea Container's subsidiary Silja Line. In 2006 she was transferred to another Sea Containers subsidiary, SuperSeaCat. In 2009 she began service with Aegean Speed Lines between Piraeus, Serifos, Sifnos, Milos, Kimolos, Folegandros and Sikinos, as well as Paros and Naxos. In 2016, she was sold to Golden Star Ferries and renamed it Super Runner. In June 2021 Golden Star Ferries sold to Seajets her ships Superferry II, Superspeed, Supercat and Super Runner. Seajets renamed it Super Runner Jet. History SuperSeaCat Four was the fourth and last mono-hulled fast ferry to be built for Sea Containers. Originally it was planned that she would be set in traffic between Brindisi, Italy and Çeşme, Turkey. The plan was abandoned however, and after delivery in May 1999 SuperSeaCat Four was laid up in La Spezia, Italy. In 1999 Sea Containers acquired the majority of shares in classic Finnish shipping company Silja Line. Silja were at the time operating traditional ferries on the highly lucrative route between Helsinki and Tallinn, the capitals of Finland and Estonia respectively, but had no fast ferries operating on the route. Sea Containers decided to set their extra SuperSeaCat on that route, and from 17 April 2000 onwards SuperSeaCat Four sailed on the route under Silja Line SuperSeaCat brand. Due to the Baltic Sea freezing during winter, the service could not be operated between January and April each year.
[ -0.0134506226, 0.52734375, -0.6572265625, 0.1909179688, 0.1112670898, 0.3227539062, -0.4084472656, 0.3657226562, 0.32421875, 0.0294952393, -0.3527832031, 0.1739501953, 1.0458984375, 1.142578125, 0.5756835938, 0.4106445312, -1.1708984375, 0.3251953125, -0.1901855469, -0.0199279785, -0.1092529297, 0.5283203125, -0.1550292969, -0.2685546875, -1.076171875, 0.494140625, -0.736328125, -0.7182617188, -0.96484375, -0.5424804688, -0.2166748047, -0.0476989746, -0.25390625, 1.193359375, -1.287109375, -0.302734375, 0.0094223022, 1.560546875, 0.8681640625, 0.0333862305, 0.7299804688, -0.4340820312, 1.1357421875, -0.1433105469, 0.6557617188, -0.0500793457, -0.7265625, -0.2095947266, -1.05859375, -0.1323242188, -0.5107421875, -0.006149292, -0.2037353516, -0.7436523438, -0.3767089844, -0.7109375, -0.3137207031, -0.2434082031, 0.013999939, -0.1201782227, 0.1330566406, 0.0060920715, -0.6162109375, -1.0283203125, 0.0162506104, 0.8159179688, -0.0488586426, 0.6982421875, -0.3171386719, 0.6103515625, 0.9951171875, 0.6826171875, -0.3415527344, 0.3371582031, 0.4299316406, -0.0087814331, 0.0040588379, 1.259765625, -0.1534423828, -0.7470703125, -0.3117675781, -0.4858398438, -0.7768554688, 0.1200561523, 0.46484375, 0.62109375, -0.9340820312, -0.1166992188, -0.5541992188, 1.53515625, -0.3039550781, -0.0735473633, -0.7280273438, -0.6416015625, 0.094909668, 0.6982421875, -0.1557617188, -0.8076171875, 0.5, -0.1237792969, 0.4267578125, -0.7104492188, 0.6884765625, -0.1641845703, -1.0244140625, 1.876953125, -0.9609375, -0.7568359375, -0.13671875, -0.8471679688, -0.4245605469, 0.4155273438, 0.1584472656, 0.8291015625, -0.0410461426, -0.5356445312, -0.4172363281, -0.4724121094, -0.7495117188, 1.6328125, -0.2098388672, -1.20703125, 0.7294921875, -1.2451171875, 0.3972167969, 0.0690917969, 0.1778564453, 0.1586914062, -0.052520752, -0.2651367188, -0.4270019531, -0.2175292969, -1.5087890625, -1.236328125, 0.7783203125, -0.5727539062, -0.89453125, 0.0594482422, 0.7846679688, -0.6591796875, -0.1402587891, -1.08203125, 0.0941162109, -0.9038085938, 0.7143554688, 0.9633789062, -0.3278808594, 0.5678710938, -1.3525390625, 0.6020507812, 0.5961914062, -0.3955078125, -0.7758789062, 0.114074707, 0.1276855469, -0.0018987656, 0.4724121094, -0.314453125, 1.83984375, 0.2495117188, 0.1774902344, 0.1531982422, -0.4411621094, -1.109375, 0.2247314453, 1.2255859375, -0.6499023438, -0.2602539062, -0.3400878906, 0.2355957031, -0.2404785156, 0.0381774902, 0.5888671875, -0.9677734375, -0.1904296875, -0.0812988281, 0.4685058594, -0.7724609375, 0.3071289062, -0.6909179688, -0.2109375, -0.8671875, 0.5517578125, -0.0101928711, -0.1199951172, -0.89453125, 0.9809570312, 0.0950317383, -0.6362304688, 0.2651367188, -0.2023925781, -0.4455566406, -1.640625, -1.236328125, 1.0595703125, -0.7368164062, -0.8120117188, 0.5302734375, 0.4328613281, -0.5634765625, -0.8193359375, 0.650390625, -0.4377441406, -0.3308105469, 0.2543945312, 0.771484375, 0.6528320312, -0.0260009766, 0.7592773438, 0.3073730469, -0.1916503906, -0.74609375, -0.0327453613, 0.9677734375, -0.2165527344, -0.2100830078, -0.12109375, -0.1544189453, 0.6831054688, -0.5766601562, 0.5122070312, 0.057434082, 0.7065429688, -0.9916992188, 1.28125, -1.5107421875, 0.6938476562, 0.4736328125, 0.0565185547, 0.521484375, 0.5185546875, 0.9848632812, -0.1616210938, -0.3559570312, -0.1112670898, -0.0999145508, 0.271484375, -0.2543945312, -0.7890625, -0.2883300781, -0.1358642578, -0.6962890625, -0.2377929688, -0.5825195312, -0.3974609375, -0.6586914062, 0.1108398438, 0.1649169922, -0.2595214844, 0.3881835938, -0.3637695312, 0.5258789062, 0.069152832, -1.5, -0.4060058594, -0.1662597656, 0.3796386719, -0.9106445312, 0.4296875, -0.4057617188, 0.1436767578, 0.4223632812, 0.4409179688, -1.1083984375, -0.6831054688, 0.2320556641, 0.7963867188, 0.4421386719, -0.0720825195, -0.2722167969, 0.3095703125, 0.95703125, -0.3686523438, -0.0571594238, -0.0630493164, -0.4233398438, -0.3857421875, 0.0628662109, 0.251953125, 0.5200195312, -0.2612304688, 0.4958496094, -0.2475585938, -0.1501464844, 0.3366699219, -0.0203094482, -0.21484375, -0.7495117188, 0.1135864258, -0.8081054688, -0.2409667969, 0.6655273438, -0.0077171326, 0.1286621094, -0.058380127, -0.0731811523, 0.3347167969, 0.6015625, 0.3049316406, -0.8344726562, -0.2548828125, 0.5209960938, -0.517578125, -0.8564453125, 0.884765625, 0.3505859375, 0.1966552734, -0.939453125, 0.5844726562, 0.2702636719, -0.90625, 0.1182861328, -0.7338867188, 1.4462890625, -0.4318847656, -0.5571289062, 0.37109375, 0.1444091797, -0.3891601562, 0.3723144531, 0.4069824219, 0.1076660156, 0.2424316406, 0.50390625, 0.4079589844, -0.2795410156, 0.6318359375, -0.3859863281, 1.205078125, -0.5419921875, 0.53125, -0.3654785156, 0.3872070312, 0.3762207031, 1.1904296875, -0.6953125, -0.6499023438, 0.2145996094, 0.9946289062, 0.4521484375, 0.4140625, 0.3764648438, -0.3107910156, 0.501953125, 0.2392578125, -1.1015625, 0.5014648438, -1.126953125, 0.1678466797, 0.2192382812, -0.0037326813, -0.3967285156, -1.1025390625, 0.0962524414, -0.9428710938, -0.2238769531, 0.4821777344, 0.0156173706, -0.9135742188, 0.7397460938, 0.5546875, 0.1569824219, -0.1604003906, -0.1646728516, 1.52734375, 0.029800415, 1.212890625, -0.55078125, -0.2272949219, -1.275390625, -0.6098632812, -0.5400390625, 0.6552734375, 0.0983886719, 0.6201171875, -0.34765625, -0.9365234375, -0.2407226562, -0.251953125, 0.5029296875, 0.4025878906, 0.5502929688, -0.3361816406, 0.0015411377, 0.2010498047, 0.763671875, 0.0463867188, -1.2880859375, -0.4995117188, -1.1298828125, -0.8735351562, 0.5004882812, 1.6494140625, -0.9213867188, -0.2946777344, -0.2154541016, -0.34765625, -0.2142333984, -0.2424316406, -0.9287109375, -1.1416015625, -0.8305664062, -1.0419921875, 0.13671875, 0.1665039062, -0.2446289062, 0.3874511719, -0.703125, 0.2854003906, 1.078125, 0.4584960938, 0.0892944336, 0.4482421875, 0.3149414062, -1.015625, 0.0482177734, 0.2398681641, 0.2069091797, -0.3469238281, -0.3269042969, -0.552734375, 0.5, 0.9365234375, 0.3427734375, -0.0520019531, 0.4018554688, -0.4860839844, 0.1079101562, 0.2780761719, 0.5747070312, -0.5620117188, -0.5805664062, 0.5297851562, -0.0437011719, -0.5048828125, 0.6469726562, -0.4841308594, -1.556640625, -0.3649902344, -0.3803710938, 0.640625, -0.5708007812, 0.4816894531, -0.9252929688, 0.1459960938, 0.2639160156, 1.5419921875, -0.4841308594, -0.08203125, -0.4133300781, 1.2421875, -1.7724609375, -0.5415039062, 0.3405761719, 1.123046875, 0.0299682617, 0.1436767578, 1.2265625, 0.4128417969, 0.3701171875, -0.0696411133, 0.3403320312, -0.2824707031, -0.2391357422, 0.5322265625, 0.6245117188, -0.5024414062, -0.6215820312, -0.3623046875, -1.2119140625, -0.0914916992, 0.4460449219, 0.2208251953, 0.544921875, 0.638671875, -0.3146972656, 0.2858886719, 0.57421875, -0.0296783447, 0.6606445312, 0.3356933594, 0.0062561035, -0.0871582031, 0.2379150391, 1.7275390625, 0.1778564453, 0.0932006836, 0.4638671875, -0.0457458496, -0.9975585938, 0.0990600586, -0.3134765625, 0.0059356689, 0.6069335938, 0.1022338867, -0.2722167969, 0.3833007812, -0.3037109375, 0.486328125, 0.1390380859, 0.0634765625, -0.7958984375, -0.3579101562, 0.443359375, 0.0920410156, -0.7690429688, -0.7255859375, -0.1616210938, -0.1086425781, 0.6059570312, 0.64453125, -0.8134765625, 1.0537109375, 0.9208984375, 0.1336669922, -0.6962890625, -0.1715087891, 0.1167602539, 0.3317871094, 0.6376953125, -0.34765625, 0.3173828125, -0.5869140625, 1.7529296875, -0.6298828125, -0.6728515625, -0.0534667969, -0.4721679688, 0.0126266479, 0.134765625, -1.8525390625, 0.3234863281, 0.474609375, -0.564453125, -0.0729980469, -0.3725585938, -0.4929199219, 0.822265625, -1.341796875, 0.1783447266, -0.732421875, 0.0363769531, -0.3391113281, -0.1276855469, 0.5078125, 0.712890625, 0.3188476562, -1.1875, -0.3764648438, -0.1173095703, 0.004940033, 0.1396484375, -0.9775390625, 0.98828125, -0.2272949219, -0.1324462891, -0.0665893555, 0.6723632812, 0.705078125, -0.4194335938, -0.2543945312, -0.2163085938, -0.38671875, 1.3115234375, 0.1047363281, 1.09375, -0.341796875, 0.251953125, -0.5131835938, -0.0263977051, 0.3210449219, 0.2231445312, -1.0673828125, 1.470703125, -0.1663818359, 0.4682617188, -0.1821289062, 0.1304931641, -0.5537109375, 0.091003418, 0.9243164062, 0.2939453125, -0.4731445312, -0.2644042969, -0.8759765625, 0.3852539062, -0.3432617188, -0.3937988281, -0.6357421875, 0.0001937151, 0.10546875, 0.1174316406, 0.2687988281, 0.2751464844, -0.0474853516, 0.974609375, -0.1895751953, 0.470703125, 0.4680175781, -0.6186523438, -0.9453125, -0.3210449219, 0.875, 0.4353027344, 0.0784301758, -0.7685546875, 0.3251953125, 0.0118103027, -0.9345703125, -0.2462158203, 0.466796875, 0.1889648438, 0.716796875, -0.7524414062, 0.3791503906, -0.1745605469, 0.5703125, -0.2291259766, 0.513671875, 0.1994628906, -0.748046875, -0.1442871094, -0.921875, 0.3452148438, 0.400390625, -0.671875, 0.3237304688, 0.2325439453, -0.1091308594, -0.3110351562, 0.0949707031, 1.7763671875, -1.095703125, -0.626953125, 0.0171051025, 0.0563659668, 0.6533203125, -1.11328125, 0.1818847656, 0.2797851562, 0.6845703125, -0.3354492188, 0.4470214844, -0.7250976562, 1.0966796875, -0.2775878906, 0.1915283203, -0.0917358398, -0.615234375, -0.7587890625, -0.0276031494, -1.00390625, -0.7158203125, -1.27734375, 0.6704101562, 0.2265625, -0.5615234375, -0.2341308594, -0.798828125, 0.4438476562, -0.1927490234, 1.5732421875, -0.8403320312, 0.2502441406, 0.2824707031, -0.7817382812, -0.1401367188, -0.7431640625, -0.7036132812, -0.0076675415, 0.9833984375, 0.7788085938, -0.3918457031, 0.2502441406, 0.6479492188, 0.6650390625, -0.9321289062, 0.2182617188, 0.615234375, 0.7915039062, 0.9829101562, -0.015296936, 0.6372070312, 0.34375, 0.552734375, -1.21875, 0.3247070312, 0.66015625, -1.701171875, 0.1280517578, -0.6865234375, -0.3842773438, -0.0582580566, 0.1925048828, -0.8295898438, -0.8784179688, 0.8271484375, 0.4060058594, -0.2897949219, 0.427734375, -1.2119140625, -0.4123535156, -0.0880126953, -0.1467285156, -0.9389648438, 0.0275421143, 0.7543945312, -0.1318359375, 0.4067382812, 0.2719726562, 0.017868042, 0.3342285156, -0.2113037109, 1.392578125, 1.494140625, 0.951171875, 0.2590332031, 0.1143798828, -0.6342773438, 0.2358398438, -1.080078125, 0.3603515625, -0.6103515625, -0.1888427734, -0.52734375, 0.1312255859, -1.1015625, -0.3994140625, 0.4611816406, -0.841796875, 0.2166748047, -0.1538085938, -0.3859863281, 0.6010742188, -1.029296875, 0.2236328125, -0.4909667969, -0.9750976562, 0.7905273438, 0.7709960938, -0.5405273438, -0.3876953125, 0.6552734375, 0.443359375, -0.6772460938, -0.1666259766, 1.1904296875, 0.1776123047, 0.9321289062, -0.4267578125, 1.1298828125, 0.4248046875, -0.4235839844, -1.185546875, -0.1600341797, 0.2080078125, -0.4714355469, 0.1823730469, -0.162109375, 0.2443847656, 0.0272521973, -0.4416503906, 0.7749023438, -1.015625, -1.052734375, 0.0891723633, 0.9213867188, 0.2145996094, 0.1197509766, -0.6303710938, 0.9790039062, -0.580078125, 0.4465332031, 0.4077148438, 0.0109176636, -0.7475585938, 0.3068847656, -0.794921875, 0.1036376953, -0.1013793945, 0.3630371094, -0.5063476562, -0.2983398438, -0.0420227051, -0.5014648438, 0.6494140625, 0.8491210938, 0.3759765625, -0.3557128906, -0.4243164062, 0.1794433594, -0.2049560547, 0.380859375, 0.2697753906, -0.1501464844, -0.5791015625, -0.0986328125, 0.4599609375, 0.4738769531, -0.2095947266, 0.54296875, 0.658203125, -1.0947265625, -0.2768554688, -0.45703125, -0.4760742188, -1.1025390625, -0.2054443359, 0.6845703125, -0.0522460938, -0.3415527344, -0.7084960938, 0.4177246094, 0.8383789062, 0.2651367188, -0.2445068359, -0.763671875, 1.2265625, -0.9047851562, -0.3737792969, 0.7578125, -0.5502929688, 0.7221679688, -0.7329101562, -0.2744140625, 0.1901855469, 0.830078125, 0.9638671875, 0.0587158203, 0.0065307617, -0.8666992188, 1.0712890625, -0.8134765625, -0.0246734619, -0.5654296875, -0.5532226562, -0.3815917969, 1.1591796875, -0.8115234375, 0.4663085938, -0.4157714844, -0.6313476562, 0.0496826172, 0.1379394531, 0.2436523438, -0.462890625, -0.8251953125, -0.0367431641, -0.0862426758, 0.4045410156, 0.7822265625, 0.7749023438, -0.0867919922, -0.0404052734, -0.2336425781, 0.4621582031, 0.2375488281, -1.3173828125, 1.01953125, -0.9028320312, 0.8637695312, 0.3195800781, 0.8623046875, -0.4555664062, -0.3671875, -0.4104003906, -0.55078125, -0.8876953125, -0.7822265625, 0.9448242188, -0.5795898438, 0.0213012695, 0.0751953125, 0.3586425781, -0.2239990234, -0.4404296875, 0.1387939453, -0.4221191406, -1.30859375, 1.3388671875, -0.0764770508, 0.3356933594, 0.6821289062, -0.9028320312, -0.3920898438, -0.8154296875, 0.2958984375, -0.3225097656, 0.3569335938, 1.2607421875, 1.0986328125, 0.5600585938, -0.1403808594, -1.0244140625, 0.4787597656, 0.2352294922, 0.6953125, 0.0522460938, 0.6513671875, -0.3684082031, 1.3251953125, -0.84765625, -0.9311523438, -0.2224121094, 0.3410644531, 0.4475097656, -0.0322265625, -0.958984375, -0.373046875, -0.849609375, -0.3894042969, 0.1087036133, -0.1034545898, 0.2780761719, -0.3527832031, -0.2268066406, 0.4641113281, -0.1881103516, -0.4921875, -0.1307373047, -0.1990966797, 0.3098144531, 0.7250976562, 1.15625, 1.072265625, -0.1313476562, -0.7734375, 0.90625, -0.1046142578, 0.1574707031, -0.0589599609, 0.65625, 0.5776367188, -0.7607421875, 1.0791015625, 0.6489257812, -0.2680664062, -0.1988525391, 0.6396484375, 0.544921875, 0.0283813477, -0.7026367188, -13.0078125, -0.2272949219, -1.2548828125, 0.2927246094, 0.1298828125, 0.4453125, -0.5063476562, -1.119140625, -0.0279846191, -0.2420654297, -0.0125961304, 0.2639160156, -0.7099609375, -0.1978759766, -0.8110351562, -0.6396484375, -0.3442382812, -0.9350585938, -0.4562988281, 0.3203125, 0.0274810791, 1.162109375, -1.2802734375, -0.7841796875, 0.2954101562, -0.0380554199, -1.4921875, 0.1618652344, -0.0234832764, -0.1468505859, 0.3054199219, -0.9306640625, -0.6684570312, 0.6372070312, 0.478515625, -0.2971191406, -0.572265625, -0.9775390625, 0.1292724609, 0.1040649414, 1.9658203125, -0.6577148438, 0.5239257812, 0.6342773438, -1.083984375, 0.5424804688, -1.185546875, 0.1085205078, 0.6459960938, 0.2724609375, 0.9169921875, -0.3833007812, 0.3977050781, -0.6181640625, -0.595703125, -0.8247070312, 0.5810546875, -0.2111816406, -0.1577148438, 0.3654785156, -0.1264648438, 1.095703125, -0.30859375, 0.2875976562, -1.1767578125, -0.6831054688, 0.181640625, -0.9536132812, 1.5087890625, -0.8344726562, 0.1661376953, -0.8071289062, 0.9301757812, -1.3134765625, 0.73046875, 0.318359375, -0.7094726562, 0.2418212891, -0.1060180664, 0.4125976562, 0.2253417969, -0.640625 ]
The ship spent those months laid up. In 2003 Sea Containers added a second SuperSeaCat to the route, HSC SuperSeaCat Three. For the summer season of 2005 a third ship, HSC SuperSeaCat One was added to the service. In late 2005 Sea Containers decided to sell all of their ferry operations, including the profitable Silja Line. Silja Line was sold to the Estonian ferry operator Tallink, who already operated several fast and conventional ferries between Helsinki and Tallinn. Taking over the SuperSeaCats would have given them a dominant market position on the route. Because of this the SuperSeaCats were branched off from Silja to form a separate company, SuperSeaCat. In 2008, SuperSeaCat Four was sold to Greek company Aegean Speed Lines, along with her sister ship SuperSeaCat Three. Both ships remained in service between Helsinki and Tallinn. However, in 2009, the company decided to bring both ships to Greek service. The SuperSeaCat Four arrived on June 17, 2009, was renamed Speedrunner IV and began service on her owner's main service: the Piraeus-Serifos-Sifnos-Milos-Kimolos-Folegandros line, which she also served in 2010 and 2011. In 2012, her service was only limited to Serifos, Sifnos and Milos, and in 2013 she was laid-up in Eleusis Bay due to her company's economic difficulties. She returned to service the following year, operating on the Piraeus-Paros-Naxos line for the summer. In 2015 she returned to service in Serifos, Sifnos and Milos, while in 2016 her service was extended to Kimolos, Folegandros and Sikinos. After the summer of 2016, the Speedrunner IV was sold to Greek company Golden Star Ferries.
[ -0.4206542969, 0.1674804688, -0.2120361328, 0.5004882812, -0.2521972656, 0.306640625, -0.4633789062, 0.3115234375, -0.1448974609, -0.2561035156, -0.4597167969, -0.2565917969, 0.6362304688, 1.2373046875, -0.0825805664, 0.8984375, -1.302734375, 0.9345703125, 0.0961914062, 0.3571777344, -0.599609375, 0.4304199219, -0.2192382812, -0.1312255859, 0.0711669922, 0.6435546875, -0.4016113281, -1.291015625, -1.1455078125, -0.8193359375, 0.2827148438, 0.0115966797, -0.3708496094, 0.939453125, -1.0126953125, 0.0729980469, -0.0532836914, 1.4248046875, 0.5034179688, -0.4943847656, 0.5668945312, -0.966796875, 0.9526367188, -0.2941894531, 1.2138671875, -0.2268066406, -0.9853515625, -0.6586914062, -0.8984375, 0.1297607422, -0.0400085449, 0.185546875, -0.3525390625, -1.1416015625, -0.62890625, -0.673828125, -0.6689453125, -0.6782226562, 0.6411132812, -0.1959228516, 0.4780273438, -0.1060791016, -0.3295898438, -0.6904296875, 0.0676269531, 0.4047851562, 0.4033203125, 0.92578125, 0.1452636719, 0.1971435547, 0.3303222656, 0.5263671875, -0.4392089844, 0.2124023438, 1.1611328125, -0.3166503906, -0.2985839844, 1.99609375, -0.0996704102, -0.3383789062, -0.0364379883, -0.6176757812, -0.6098632812, -0.1015014648, 0.23828125, 0.521484375, -1.3076171875, 0.0297393799, -0.5786132812, 1.26171875, 0.0791015625, 0.3349609375, -1.5625, -0.3840332031, 0.2374267578, 0.4152832031, -0.0065727234, -1.0439453125, -0.611328125, 0.0712890625, 0.2580566406, -0.3344726562, 0.3288574219, -0.4719238281, -0.9721679688, 1.9638671875, -1.2548828125, -0.4482421875, -0.6391601562, -0.4382324219, -0.0809326172, -0.0751953125, -0.0285491943, 0.4645996094, 0.3579101562, -0.7080078125, -0.6337890625, -0.7260742188, -0.5634765625, 1.08984375, 0.2491455078, -1.0966796875, 0.4194335938, -1.0283203125, -0.1640625, 0.3942871094, -0.1138305664, 0.9926757812, -0.0188903809, -0.6015625, -0.728515625, -0.0479125977, -1.634765625, -1.0869140625, 0.9887695312, -0.8544921875, -0.9916992188, 0.0470275879, 0.693359375, -0.59765625, 0.0061645508, -0.7211914062, 0.4416503906, -0.0805664062, 0.6918945312, 0.7749023438, 0.1437988281, 0.3764648438, -1.392578125, 0.1810302734, 0.3767089844, -0.3806152344, -0.0972900391, 0.2359619141, 0.0048027039, 0.0830688477, 0.4382324219, -0.0079498291, 1.447265625, 0.4028320312, -0.2241210938, 0.2985839844, -0.86328125, -0.4262695312, 0.2937011719, 0.884765625, -0.8354492188, 0.7734375, -0.9194335938, -0.0325622559, -0.88671875, -0.4741210938, 0.7807617188, -1.681640625, 0.1696777344, -0.1488037109, 0.55078125, -1.0810546875, 0.3510742188, -0.771484375, -0.8071289062, -0.1737060547, 0.9497070312, -0.4248046875, -0.0902709961, -0.9892578125, 0.6166992188, -0.1356201172, 0.1100463867, 0.2485351562, -0.7602539062, -0.7221679688, -1.904296875, -0.8618164062, 0.6376953125, -1.0849609375, -0.9047851562, 0.1441650391, 0.4968261719, -0.7958984375, -0.8212890625, 0.9228515625, -0.47265625, -0.3286132812, 0.1271972656, 0.5336914062, 0.7875976562, 0.2819824219, 0.576171875, 0.3813476562, -0.3312988281, -0.6977539062, 0.25, 0.0485229492, -0.1710205078, -0.0094070435, -0.0411071777, 0.100769043, 0.4172363281, -0.7465820312, 0.1444091797, 0.0572814941, 0.3244628906, -1.1630859375, 0.5249023438, -0.9501953125, 0.4506835938, 1.01171875, -0.5458984375, 0.6020507812, 0.5380859375, 0.6254882812, -0.1872558594, -0.8657226562, -0.2624511719, 0.3244628906, -0.2604980469, 0.1740722656, -0.2580566406, -0.7880859375, -0.0057983398, 0.044921875, 0.3759765625, -0.2517089844, -0.4152832031, -0.2481689453, 0.1335449219, 0.0633544922, -0.2983398438, 0.748046875, -0.1317138672, 0.1875, -0.7807617188, -1.208984375, -0.1208496094, -0.5971679688, 0.3972167969, -0.1147460938, 0.8271484375, -0.0919799805, -0.3127441406, 0.2788085938, 0.1217651367, -0.7573242188, -0.4755859375, 0.0520019531, 0.6772460938, 0.8920898438, 0.060760498, -0.0240325928, -0.380859375, 0.8999023438, 0.2746582031, 0.2364501953, -0.5, -0.1922607422, -0.4343261719, -0.505859375, -0.3208007812, 1.2978515625, -0.098815918, 0.3251953125, 0.1165161133, -0.0337219238, -0.1752929688, 0.0125198364, -0.1599121094, -1.0341796875, 0.1203613281, -0.2176513672, -0.919921875, 0.3569335938, 0.390625, 0.1840820312, -0.0983276367, -0.0703735352, 0.650390625, 0.6401367188, 0.3671875, -0.939453125, -0.5991210938, 0.87890625, -0.4174804688, -0.73828125, 0.9072265625, 0.1026611328, -0.1037597656, -1.3056640625, 0.6044921875, 0.2795410156, -0.6162109375, -0.4050292969, -0.5825195312, 1.10546875, 0.0163726807, -0.4143066406, 0.443359375, -0.2590332031, -0.3149414062, 0.1713867188, -0.1165161133, -0.1322021484, 0.2565917969, 0.7475585938, 0.1636962891, -0.3859863281, 0.2854003906, 0.0078010559, 1.1123046875, -0.4916992188, 0.2905273438, -0.251953125, 0.5180664062, 0.5620117188, 0.8544921875, -0.6450195312, -0.470703125, 1.18359375, 0.8125, 0.5375976562, 0.1890869141, 0.3161621094, -0.3215332031, 0.1784667969, 0.697265625, -1.1103515625, 0.5786132812, -1.4970703125, -0.0521850586, 0.3054199219, -0.4597167969, -0.4470214844, -0.9375, -0.3591308594, -0.9887695312, -0.6694335938, 0.3347167969, 0.110168457, -1.2197265625, 0.5336914062, 1.3408203125, 0.4279785156, -0.1166381836, -0.6513671875, 1.3115234375, -0.2447509766, 0.3781738281, -0.6176757812, 0.4946289062, -1.2138671875, -0.66015625, -0.576171875, 0.8090820312, 0.0776977539, 0.6645507812, -0.0364074707, -0.6860351562, 0.3527832031, 0.1801757812, 0.5400390625, 0.3974609375, 0.4509277344, 0.0281219482, 0.1644287109, 0.302734375, 0.9326171875, 0.0755004883, 0.4545898438, -0.677734375, -1.03515625, -0.3127441406, 0.4616699219, 1.4072265625, -0.6850585938, 0.0955200195, -0.0863647461, -0.096496582, -0.5966796875, -0.7197265625, -0.6342773438, -1.2607421875, -1.1796875, -0.8032226562, 0.953125, 0.4653320312, 0.0176391602, 0.0316772461, -1.33984375, 0.4365234375, 0.7875976562, 0.1198120117, -0.3100585938, -0.1234741211, 0.1596679688, -0.7788085938, -0.1188354492, 0.44140625, 0.2897949219, 0.3239746094, -0.1806640625, -0.4282226562, 0.2587890625, 0.3830566406, -0.3039550781, -0.0753173828, -0.2294921875, -0.0911254883, 0.1491699219, 0.3227539062, 0.736328125, -1.111328125, -0.515625, 0.3039550781, 0.0574035645, -0.5512695312, -0.3208007812, 0.0961914062, -1.1748046875, -0.1545410156, -0.2651367188, 0.8427734375, -0.51171875, 0.1904296875, -0.1155395508, -0.525390625, 0.2135009766, 0.828125, 0.4016113281, -0.0464477539, -0.7163085938, 0.7807617188, -2.103515625, -0.3352050781, -0.4970703125, 1.138671875, -0.121887207, 0.3618164062, 0.8090820312, 0.5874023438, 1.0439453125, 0.0110092163, 0.357421875, -0.4150390625, -0.5634765625, 0.1195068359, 0.5141601562, -0.5751953125, -0.2358398438, -0.837890625, -0.9765625, -1.03125, 0.5317382812, -0.0484313965, 0.3745117188, 0.9868164062, -0.2788085938, 0.4030761719, 0.4536132812, -0.0720214844, 0.8784179688, 0.0941772461, -0.1566162109, -0.0590820312, 0.4235839844, 1.4267578125, 0.8256835938, 0.6000976562, 0.4282226562, -0.0604858398, -0.8491210938, 0.8930664062, -0.1203613281, 0.587890625, 1.02734375, 0.2408447266, -0.6162109375, 0.4633789062, -0.4572753906, 0.8486328125, 0.0824584961, 0.2186279297, -0.857421875, -0.3374023438, 0.3481445312, 0.1778564453, -0.1755371094, -0.0631713867, 0.3083496094, -0.3178710938, 0.65625, 0.3229980469, -0.2829589844, 0.6010742188, 0.998046875, 0.810546875, -1.33984375, 0.2700195312, 0.0170593262, -0.1102294922, 0.7163085938, -0.2490234375, 0.5678710938, -0.8129882812, 1.6259765625, -1.353515625, -0.7758789062, 0.5590820312, -0.5405273438, 0.0707397461, -0.1177978516, -1.6787109375, 0.2059326172, 0.349609375, 0.071105957, -0.0089416504, -0.9428710938, -0.4575195312, 0.3713378906, -0.2912597656, 0.0328063965, -0.4714355469, -0.1017456055, -0.78125, -0.2658691406, 0.2578125, 0.958984375, 1.208984375, -1.2216796875, -0.5161132812, -0.0731201172, 0.4404296875, 0.3278808594, -0.8330078125, 1.17578125, 0.2670898438, -0.0781860352, -0.2841796875, -0.2048339844, 0.638671875, -0.7690429688, -0.5126953125, 0.0963745117, -0.1889648438, 1.0693359375, 0.4865722656, 0.5444335938, -0.513671875, 0.0332336426, -1.087890625, 0.2053222656, 0.6704101562, 0.2719726562, -0.9770507812, 0.9731445312, 0.0657348633, 0.3840332031, -0.2009277344, -0.096496582, -0.509765625, -0.1184082031, 0.7666015625, 0.0993652344, -0.1373291016, -0.7221679688, -0.1016845703, 1.048828125, -0.3347167969, -0.96484375, -0.7333984375, -0.482421875, 0.5380859375, 0.5942382812, -0.1676025391, 0.11328125, -0.951171875, 1.021484375, -0.3410644531, 0.7895507812, 0.8481445312, -0.2316894531, -0.4538574219, -0.3569335938, 0.3974609375, 0.5849609375, 0.0621948242, -0.4294433594, 0.2310791016, -0.0306549072, -1.080078125, -0.0445861816, 0.7465820312, 0.2883300781, 1.046875, -0.3127441406, 0.1232299805, 0.1328125, 0.2512207031, -0.6533203125, 0.0911254883, -0.2795410156, -1.24609375, -0.4184570312, -0.232421875, 0.6889648438, -0.0138092041, -0.8666992188, 0.7524414062, 0.0766601562, 0.1744384766, -0.537109375, -0.2052001953, 1.2822265625, -0.7397460938, -0.4267578125, 0.1746826172, -0.1971435547, 0.681640625, -0.884765625, -0.3173828125, 0.3569335938, 0.7192382812, -0.4855957031, 0.8491210938, -0.583984375, 0.8530273438, -0.5922851562, 0.2941894531, -0.1453857422, -0.201171875, -0.4436035156, 0.1610107422, -0.2998046875, -0.8178710938, -1.181640625, 0.4296875, 0.1291503906, -0.8647460938, 0.341796875, -0.9077148438, 0.1805419922, 0.2401123047, 1.2138671875, -1.2080078125, 0.46484375, 0.9365234375, -0.3857421875, 0.0537109375, -0.796875, -0.1553955078, -0.0229034424, 0.8349609375, 0.810546875, 0.1685791016, -0.0609130859, 0.2016601562, 1.0625, -0.6528320312, -0.2010498047, 0.7133789062, 1.134765625, 0.640625, -0.6181640625, 0.5581054688, 0.580078125, 1.1904296875, -0.2218017578, 0.0363769531, 0.4318847656, -1.5908203125, -0.0339050293, 0.1530761719, -0.4533691406, -0.4233398438, -0.3566894531, -1.2763671875, -1.0849609375, 0.2410888672, 0.2797851562, 0.1580810547, 0.2905273438, -1.0048828125, -0.7221679688, 0.0610656738, 0.0372314453, -0.8666992188, 0.1727294922, 0.2924804688, -0.4365234375, 0.4611816406, 0.4973144531, 0.1834716797, 0.697265625, 0.501953125, 1.513671875, 0.923828125, 1.2568359375, -0.1333007812, -0.0588989258, -0.275390625, -0.023147583, -0.5522460938, 0.724609375, -0.5009765625, -0.1181640625, -0.533203125, 0.0217590332, -1.095703125, -0.255859375, -0.0344848633, -0.603515625, 0.2133789062, -0.1597900391, -0.2844238281, -0.2719726562, -0.6293945312, 0.4086914062, -0.4812011719, -0.4248046875, 0.6918945312, 0.5556640625, -1.4013671875, -0.8227539062, 0.8764648438, 0.3725585938, -0.5927734375, -0.0769042969, 1.0751953125, 0.263671875, -0.1188964844, -0.8129882812, 1.8662109375, 0.3083496094, -0.2961425781, -1.2119140625, -0.5791015625, -0.1674804688, -0.5439453125, 0.2474365234, 0.2507324219, 0.4313964844, -0.5288085938, -0.49609375, 0.5869140625, -0.759765625, -0.59375, 0.3898925781, 1.20703125, 0.4846191406, 0.3989257812, -1.1640625, 0.9755859375, 0.2065429688, -0.1113891602, 0.0045471191, -0.0728149414, -1.3212890625, 0.4702148438, -0.6870117188, -0.171875, 0.3125, 0.7006835938, -0.4658203125, 0.2075195312, -0.5180664062, -0.8295898438, 1.34765625, 0.72265625, 0.4929199219, -0.2032470703, 0.0643920898, -0.010093689, -0.37890625, 0.3232421875, 0.7456054688, -0.3459472656, -0.8471679688, -0.2717285156, 0.4138183594, 0.7290039062, -0.0975952148, 0.6958007812, 1.169921875, -0.6333007812, -0.0686035156, 0.2120361328, -0.0544433594, -0.6352539062, -0.716796875, 0.447265625, -0.4919433594, -0.2170410156, -0.5903320312, 0.4006347656, 1.12890625, -0.7143554688, -0.1499023438, -0.373046875, 1.587890625, -0.8125, -0.7680664062, 0.2131347656, -0.6318359375, 0.4104003906, -0.8461914062, 0.2416992188, -0.2719726562, 0.3654785156, 0.8798828125, 0.0474853516, 0.2561035156, -0.1580810547, 0.8408203125, -0.583984375, -0.0875854492, -0.4423828125, 0.0003824234, -0.3125, 1.2783203125, -0.4572753906, 0.8203125, -0.2329101562, -0.0925292969, -0.0639648438, -0.3627929688, 0.2380371094, -0.8041992188, -0.8818359375, -0.2724609375, -0.9189453125, 0.6479492188, 0.6865234375, 0.1566162109, -0.1833496094, -0.0012426376, -0.3596191406, -0.0715942383, 1.0078125, -1.0166015625, 0.943359375, -0.6313476562, 0.2587890625, 0.000805378, 0.4118652344, -0.3041992188, 0.3779296875, -0.2463378906, -0.517578125, -0.9248046875, -0.5581054688, 1.3330078125, -0.4460449219, 0.380859375, 0.404296875, 0.3498535156, -0.72265625, 0.0521850586, 0.3737792969, -0.0864868164, -0.9404296875, 0.5678710938, -0.6459960938, 0.3930664062, 0.7377929688, -1.611328125, -0.2785644531, -0.9760742188, 0.4853515625, 0.0169677734, -0.1356201172, 1.23046875, 0.818359375, 0.6459960938, -0.4855957031, -0.8608398438, -0.2181396484, 0.0622558594, 0.6499023438, 0.1315917969, 0.3540039062, -0.9287109375, 0.9853515625, -0.5737304688, -1.0205078125, -0.236328125, -0.3806152344, 0.90625, 0.0471496582, -0.1314697266, -0.3898925781, -0.7275390625, -0.5053710938, -0.1976318359, 0.6948242188, 0.1130371094, 0.2819824219, -0.0469360352, 0.8764648438, -0.5375976562, -0.5405273438, -0.3291015625, -0.580078125, 0.2153320312, 0.3098144531, 0.6826171875, 0.4743652344, -0.1555175781, -1.1259765625, 0.0701904297, -0.3942871094, -0.0160827637, -0.1026611328, -0.0258789062, 0.2529296875, -0.6274414062, 1.484375, 0.6494140625, -0.5712890625, 0.2084960938, 0.689453125, 0.931640625, 0.4921875, -0.3317871094, -12.9921875, -0.2479248047, -0.4372558594, -0.2524414062, -0.2612304688, 0.6420898438, -0.427734375, -1.513671875, -0.0569152832, -0.0289306641, 0.28515625, 0.3168945312, -0.9545898438, -0.8251953125, -0.6079101562, -0.114440918, 0.030670166, -0.7197265625, -0.6689453125, 0.1544189453, 0.1705322266, 0.869140625, -1.41796875, -0.5083007812, 0.4748535156, 0.4328613281, -0.8989257812, 0.5263671875, 0.0532836914, -0.3244628906, -0.3923339844, -0.7133789062, -0.2423095703, 0.240234375, 0.1512451172, -0.5205078125, -0.2470703125, -0.9404296875, 0.5131835938, 0.0541992188, 1.03125, -0.9951171875, 0.4848632812, 0.7534179688, -0.7563476562, 0.3212890625, -0.9516601562, -0.0069465637, 1.0634765625, 0.9682617188, 0.765625, 0.081237793, 0.1361083984, 0.078125, -0.4890136719, -0.3720703125, 0.7651367188, -0.4682617188, -0.1846923828, 0.6049804688, 0.154296875, 0.4047851562, 0.0056419373, -0.0153656006, -0.8149414062, -0.677734375, 0.1153564453, -1.0986328125, 1.677734375, -0.4526367188, 0.5712890625, -0.3134765625, 1.0625, -1.0849609375, 0.4633789062, 0.2122802734, -0.7661132812, 0.306640625, -0.6967773438, 0.2668457031, 0.2303466797, 0.3740234375 ]
She is due to enter service with them in 2017, operating from Rafina to the Cyclades islands under her new name, Superrunner. In June 2021 Super Runner sold to Seajets and renamed it Super Runner Jet. Gallery References External links SuperSeaCat Four at Fakta om Fartyg (in Swedish) Ferries of Greece Ferries of Finland Ships of Estonia Ships built in Italy MDV 1200-class fast ferries Ships built by Fincantieri 1998 ships et:SuperSeaCat (laev)
[ -0.1782226562, 0.3017578125, -0.4814453125, -0.0281066895, 0.1794433594, 0.5078125, -0.7270507812, 0.26171875, 0.4538574219, 0.1267089844, -0.5551757812, 0.0189361572, 0.2553710938, 0.7998046875, 0.849609375, 0.5200195312, -1.1171875, 0.0532226562, -0.0603942871, 0.40234375, -0.0291595459, 0.9116210938, -0.2084960938, -0.0123977661, -1.2109375, 0.71875, -0.5932617188, -1.048828125, -1.1123046875, -0.4829101562, -0.3742675781, -0.294921875, -0.2330322266, 1.40234375, -1.501953125, 0.2692871094, -0.306640625, 0.7377929688, 1.521484375, -0.1147460938, 0.9135742188, -0.5888671875, 1.2177734375, -0.6044921875, 0.6552734375, 0.1290283203, -0.7778320312, -0.2529296875, -1.5234375, -0.0571899414, 0.0903320312, 0.1416015625, -0.2410888672, -0.65234375, -0.1647949219, -0.8901367188, -0.3815917969, -0.4721679688, 0.2829589844, -0.6010742188, -0.0434570312, 0.2291259766, -0.5297851562, -0.7958984375, -0.1499023438, 0.8115234375, 0.1511230469, 0.7143554688, -0.3642578125, 0.8422851562, 0.787109375, 0.38671875, -0.1263427734, 0.1785888672, 0.3146972656, -0.4150390625, -0.3071289062, 1.2021484375, -0.2329101562, -1.251953125, -0.943359375, -0.8129882812, -0.8969726562, -0.0923461914, 0.1790771484, 0.5708007812, -1.005859375, 0.5771484375, -0.4704589844, 1.5390625, -0.2492675781, -0.4318847656, -0.5810546875, -0.5751953125, 0.1661376953, 0.8671875, -0.2419433594, -0.568359375, -0.0332641602, -0.0632324219, 1.130859375, -0.392578125, 0.599609375, -0.0469055176, -1.2998046875, 1.482421875, -1.4755859375, -0.361328125, 0.118347168, -0.955078125, -0.1625976562, 0.6689453125, 0.7094726562, 1.0986328125, -0.1379394531, -0.53515625, -0.7299804688, -0.3845214844, -0.6850585938, 0.7641601562, 0.2321777344, -1.126953125, 0.4602050781, -0.798828125, 0.6176757812, 0.0563659668, -0.146484375, 0.470703125, 0.244140625, -0.0039749146, -0.3129882812, -0.2191162109, -1.3095703125, -1.0947265625, 1.224609375, -0.4072265625, -0.6870117188, 0.2768554688, 1.0986328125, -0.3283691406, 0.1204223633, -0.7944335938, 0.2626953125, -0.8408203125, 0.98828125, 0.5551757812, 0.0354614258, 0.4533691406, -1.37109375, 0.7431640625, 0.3449707031, -0.4213867188, -0.3498535156, -0.3559570312, 0.3540039062, 0.3159179688, 0.5659179688, 0.1976318359, 1.7255859375, 0.7490234375, 0.1306152344, 0.2093505859, -0.95703125, -1.27734375, 0.6264648438, 1.20703125, -0.720703125, 0.2490234375, -0.3515625, 0.6650390625, -0.267578125, 0.1918945312, 0.6171875, -1.4716796875, -0.265625, 0.1822509766, 0.73828125, -1.0693359375, -0.2155761719, -1.3408203125, -0.19140625, -0.62109375, 0.6005859375, -0.251953125, 0.7548828125, -0.3146972656, 0.9233398438, -0.1845703125, -0.6333007812, -0.2626953125, -0.3505859375, -0.6196289062, -1.24609375, -0.91015625, 0.9111328125, -1.0419921875, -1.033203125, 0.3449707031, 0.4445800781, -0.5502929688, -1.0361328125, 0.6840820312, -0.1979980469, -0.9868164062, 0.7124023438, 0.5004882812, 0.5795898438, 0.1931152344, 0.3881835938, -0.0198974609, -0.2829589844, -0.4467773438, 0.0986328125, 0.1468505859, 0.0179138184, 0.1389160156, -0.2856445312, -0.2868652344, 0.4255371094, -0.2963867188, -0.0129089355, 0.4919433594, 0.1213989258, -0.958984375, 1.171875, -1.619140625, 1.1142578125, 0.3840332031, 0.1508789062, 0.8188476562, 1.0625, 1.2353515625, -0.094909668, -0.3798828125, -0.33984375, 0.2216796875, 0.8032226562, -0.7661132812, -1.00390625, 0.1967773438, 0.5048828125, -0.2454833984, 0.1176147461, -0.4689941406, 0.3166503906, -1.0986328125, 0.5512695312, -0.1512451172, 0.1534423828, 0.412109375, -0.0974731445, 0.6303710938, 0.3395996094, -0.9125976562, -0.4899902344, -0.76171875, 0.79296875, -0.37890625, 0.2243652344, -0.4645996094, 0.5600585938, 0.6142578125, 0.4592285156, -1.3125, -0.341796875, -0.051574707, 0.1495361328, 0.8002929688, 0.619140625, -0.1547851562, 0.3208007812, 1.15234375, -0.7861328125, 0.0567321777, -0.3889160156, -0.2019042969, -0.3881835938, 0.5249023438, 0.0415649414, 0.4768066406, 0.2622070312, 0.3793945312, -0.400390625, -0.0501708984, 0.4038085938, -0.0391845703, -0.2805175781, -0.330078125, 0.0725097656, -0.7915039062, -0.6030273438, 0.2758789062, 0.0462341309, 0.1641845703, -0.1428222656, -0.2189941406, 0.5302734375, 0.576171875, 0.767578125, -0.8032226562, -0.7309570312, 0.6875, -0.623046875, -0.5205078125, 0.8764648438, 0.3864746094, -0.0056190491, -0.6313476562, 0.4328613281, 1.029296875, -0.9306640625, 0.1968994141, -0.5795898438, 1.46875, 0.1437988281, -0.505859375, -0.1823730469, 0.0178070068, -0.6391601562, 0.5458984375, 0.3930664062, 0.404296875, 0.5224609375, 0.1759033203, 0.1274414062, -0.1906738281, 0.49609375, -0.4914550781, 1.478515625, -0.7924804688, 0.0839233398, -0.3557128906, 0.2604980469, 0.66015625, 1.0595703125, -0.3801269531, -0.6059570312, -0.2727050781, 0.5478515625, 0.6953125, 0.2609863281, -0.1666259766, -0.7265625, 0.6274414062, 0.4477539062, -0.8081054688, 0.619140625, -1.3359375, 0.0177764893, 0.2685546875, 0.875, -0.0788574219, -0.8393554688, 0.0618591309, -1.0810546875, -0.1394042969, 0.3413085938, 0.33203125, -1.306640625, 0.8588867188, 0.935546875, 0.3991699219, -0.6142578125, -0.2077636719, 1.6748046875, -0.103515625, 1.173828125, -0.6079101562, 0.1962890625, -0.9340820312, -0.5366210938, -0.3647460938, 0.2590332031, 0.7578125, 0.3012695312, -0.4560546875, -1.390625, -0.1595458984, -0.3400878906, 0.5268554688, 0.5190429688, 0.8178710938, -0.0019569397, -0.088684082, -0.1069335938, 0.7416992188, -0.1350097656, -1.0947265625, 0.0739135742, -0.822265625, -1.130859375, 0.4255371094, 1.46484375, -0.8232421875, 0.4997558594, -0.4731445312, -0.1944580078, -0.3049316406, -0.6850585938, -1.306640625, -1.1357421875, -0.740234375, -0.6040039062, 0.294921875, 0.2912597656, -0.1431884766, 0.8740234375, -0.5615234375, 0.70703125, 0.7094726562, 0.3188476562, -0.3940429688, 0.9262695312, 0.70703125, -1.2353515625, 0.1534423828, 0.0651855469, 0.40234375, -0.3859863281, -0.2078857422, -0.8657226562, 0.0718994141, 0.4829101562, 0.3449707031, 0.4099121094, 0.0697021484, -0.3566894531, -0.0706176758, -0.0772705078, 0.0230712891, -0.4909667969, -0.7749023438, 0.544921875, 0.5400390625, -0.3527832031, 0.8198242188, -0.6098632812, -1.2822265625, -0.4431152344, 0.0429382324, 1.0537109375, -0.1864013672, 0.6748046875, -0.8559570312, 0.0527038574, -0.0347900391, 1.3125, -0.4680175781, -0.2427978516, -0.7358398438, 0.6176757812, -1.427734375, -0.6176757812, 0.1497802734, 1.1865234375, -0.1629638672, 0.010559082, 1.09375, 0.9282226562, 0.447265625, 0.4704589844, 0.2709960938, -0.556640625, -0.4948730469, 0.6005859375, 0.783203125, -0.1468505859, -0.5732421875, -0.3764648438, -0.9184570312, -0.3879394531, 0.8618164062, 0.008682251, -0.0269775391, 0.7822265625, -0.3859863281, 0.3347167969, 0.123046875, 0.0036678314, 0.2482910156, 0.1174316406, 0.0297088623, 0.0195159912, 0.4880371094, 1.3212890625, 0.5229492188, 0.1551513672, 0.1932373047, 0.0784912109, -0.9545898438, 0.1442871094, 0.3959960938, 0.1618652344, 0.4289550781, 0.1079101562, 0.1627197266, 0.1617431641, 0.0735473633, 0.4230957031, -0.0995483398, -0.0144119263, -0.90625, -0.1602783203, 0.1986083984, -0.513671875, -0.9809570312, -1.1044921875, -0.0362548828, -0.5561523438, 0.697265625, 0.775390625, -0.3603515625, 0.3388671875, 0.9624023438, 0.2084960938, -0.681640625, 0.1491699219, 0.1435546875, 0.3273925781, 0.3347167969, -0.693359375, 0.3371582031, -0.7631835938, 1.5595703125, -0.2413330078, -0.541015625, -0.0601806641, -0.5942382812, 0.2868652344, 0.1278076172, -2.384765625, -0.580078125, 0.3581542969, -0.3840332031, 0.1365966797, -0.5947265625, 0.0041160583, 0.8383789062, -0.9057617188, 0.505859375, -0.7797851562, -0.0383605957, 0.1340332031, 0.084777832, 0.5893554688, 0.2985839844, 0.0330810547, -0.8647460938, -0.6635742188, -0.0572814941, 0.0448608398, 0.328125, -0.904296875, 0.9228515625, -0.4304199219, -0.1278076172, 0.0978393555, 0.8129882812, 0.9370117188, -0.0138397217, -0.26953125, 0.1594238281, -0.2583007812, 0.8364257812, 0.0079421997, 1.6220703125, -0.1695556641, 0.1385498047, -0.2330322266, -0.2568359375, -0.0627441406, -0.0436096191, -0.5922851562, 1.513671875, -0.3737792969, -0.099609375, 0.2504882812, 0.2900390625, -1.0791015625, -0.4116210938, 0.7768554688, 0.2858886719, -0.98046875, -0.6943359375, -0.8139648438, 0.5234375, 0.1207885742, -0.9399414062, -0.1311035156, -0.2056884766, 0.3486328125, 0.2418212891, -0.138671875, 0.6372070312, -0.2900390625, 1.0224609375, -0.859375, 0.6889648438, 0.4572753906, -0.5522460938, -0.9052734375, -0.0674438477, 1, 0.0872192383, 0.3764648438, -0.666015625, 0.326171875, 0.5068359375, -0.7426757812, -0.3449707031, 0.306640625, -0.3857421875, 0.3486328125, -0.2490234375, 0.3840332031, 0.2399902344, 0.2978515625, 0.2199707031, -0.0824584961, -0.6157226562, -0.8706054688, -0.5629882812, -0.5537109375, 0.4221191406, 0.333984375, -0.8588867188, -0.2712402344, 0.2242431641, 0.032989502, -0.3449707031, -0.2709960938, 1.42578125, -0.8125, -0.4255371094, 0.6284179688, 0.2590332031, 0.857421875, -0.4548339844, 0.1442871094, -0.0602111816, 0.9038085938, 0.2780761719, 0.33984375, -0.90625, 0.611328125, -0.2043457031, 0.2235107422, -0.0005846024, -0.6328125, -0.763671875, -0.0091934204, -1.021484375, -0.1916503906, -0.7275390625, 0.5283203125, -0.2486572266, 0.0572814941, 0.28515625, -0.685546875, 0.1887207031, -0.4416503906, 1.4208984375, -0.4555664062, 0.020614624, 0.2602539062, -1.0654296875, -0.1765136719, -0.2271728516, -0.5014648438, -0.2469482422, 0.8549804688, 0.2763671875, 0.220703125, 0.0524597168, 0.1904296875, 0.1844482422, -0.78125, 0.1530761719, 0.4487304688, 1.396484375, 0.6333007812, -0.3823242188, 0.2702636719, 0.4609375, 0.0071640015, -0.7153320312, 0.4133300781, 0.1717529297, -1.0888671875, -0.2092285156, -0.9482421875, -0.1470947266, 0.2103271484, 0.3381347656, -1.34375, -0.91015625, 0.3728027344, 0.8564453125, 0.0044822693, 0.1151123047, -0.8974609375, -0.3654785156, 0.2269287109, -0.3142089844, -0.7670898438, -0.1580810547, 0.4294433594, -0.2360839844, 0.2653808594, 0.3547363281, -0.5571289062, 0.0538024902, -0.3544921875, 1.0341796875, 1.2470703125, 0.9599609375, -0.3542480469, -0.6528320312, -0.4367675781, 0.3732910156, -0.6889648438, 1.2275390625, -0.9106445312, -0.2668457031, -0.4467773438, 0.5961914062, -0.7133789062, -0.2937011719, -0.2568359375, -0.8325195312, 0.298828125, -0.3681640625, -0.1083984375, 0.6059570312, -1.28515625, 0.458984375, 0.2357177734, 0.1458740234, 0.43359375, 0.4267578125, -0.3461914062, -0.8579101562, 0.541015625, -0.1884765625, -0.6469726562, -0.11328125, 1.294921875, 0.2073974609, 0.9907226562, -0.7456054688, 1.0205078125, 0.1033325195, -0.31640625, -1.5830078125, -0.2756347656, 0.1165771484, -0.3854980469, 0.1682128906, -0.7236328125, 0.7109375, -0.3466796875, -0.2824707031, 0.6948242188, -0.9838867188, -1.0810546875, 0.7802734375, 0.8447265625, 0.0737304688, -0.050567627, -0.3969726562, 0.9184570312, -0.1185913086, 0.322265625, 0.603515625, -0.1346435547, -0.7749023438, 0.2875976562, -0.779296875, 0.4860839844, -0.3046875, 0.5463867188, -0.2626953125, -0.5043945312, -0.0646972656, -0.3803710938, 0.5659179688, 0.3583984375, 0.3500976562, -0.1634521484, -0.3337402344, 0.3073730469, 0.0789794922, 0.4599609375, 0.4016113281, -0.4968261719, -0.4462890625, -0.2819824219, 0.1721191406, 1.0654296875, -0.015083313, 0.98828125, 0.8291015625, -1.103515625, -0.0550842285, -0.4768066406, -0.0227508545, -0.6982421875, -0.7495117188, 0.8813476562, -0.1325683594, 0.380859375, -0.58203125, 0.2445068359, 0.572265625, 0.3735351562, -0.7270507812, -1.150390625, 1.533203125, -1.0703125, -0.1741943359, 0.84375, -0.7153320312, 0.6303710938, -0.8095703125, -0.1799316406, 0.1791992188, 1.0634765625, 0.5961914062, -0.1770019531, 0.3664550781, -1.1728515625, 1.1513671875, -0.9765625, 0.2041015625, -0.3544921875, 0.0247955322, -0.1796875, 1.263671875, -0.666015625, -0.013923645, -0.0067939758, -0.529296875, -0.0120620728, 0.3115234375, 0.4052734375, -1.0595703125, -0.4819335938, -0.0303497314, -0.1973876953, 0.2233886719, 0.3474121094, 0.4250488281, 0.0030326843, 0.6787109375, -0.34765625, 0.2553710938, -0.0323486328, -1.2216796875, 0.9560546875, -0.9814453125, 0.5737304688, 0.142578125, 0.3815917969, -0.755859375, -0.0154800415, -0.5776367188, -0.3151855469, -1.0009765625, -0.8930664062, 0.9599609375, 0.0592956543, 0.5200195312, 0.5810546875, 0.677734375, -0.0103149414, -0.6225585938, -0.1165161133, -0.71875, -1.4052734375, 1.4462890625, -0.7509765625, 0.1763916016, 0.455078125, -1.712890625, -0.2337646484, -0.9526367188, 0.7299804688, -0.4230957031, 0.1278076172, 0.9809570312, 1.462890625, 0.158203125, -0.3803710938, -0.7568359375, -0.6337890625, 0.1329345703, 0.3696289062, -0.25, 0.3078613281, 0.0814208984, 1.1123046875, -0.3852539062, -0.9296875, -0.4775390625, 0.28125, 0.2836914062, 0.4545898438, -1.5322265625, -0.6401367188, -1.50390625, 0.4848632812, 0.2355957031, -0.0250701904, 0.212890625, -0.4045410156, -0.1187133789, 0.3415527344, -0.54296875, -0.5483398438, -0.4323730469, -0.3625488281, 0.0020008087, 0.8579101562, 1.453125, 0.4260253906, 0.2308349609, 0.0745239258, 1.1572265625, -0.3146972656, -0.1166381836, -0.0450744629, 0.7626953125, 0.0520324707, -0.6889648438, 0.9458007812, 0.7202148438, 0.1674804688, -0.2271728516, 0.6796875, 0.6005859375, 0.0160217285, -1.130859375, -12.6640625, 0.2166748047, -0.83984375, -0.1657714844, -0.5458984375, 0.1208496094, -0.2368164062, -1.716796875, 0.2622070312, -0.6362304688, -0.61328125, 1.078125, -0.3649902344, -0.0446777344, -0.5131835938, -0.6787109375, -0.6870117188, -0.7900390625, -0.6313476562, 0.1427001953, 0.310546875, 0.6396484375, -1.287109375, -1.0654296875, -0.1101074219, -0.1798095703, -0.91796875, 0.3745117188, 0.3869628906, -0.4025878906, 0.3833007812, -0.5673828125, -0.6005859375, 0.3725585938, 0.0304718018, -0.5463867188, -0.8393554688, -1.0146484375, -0.3188476562, 0.1005859375, 1.4892578125, -0.9399414062, 0.2434082031, 0.40234375, -1.1904296875, 0.2164306641, -1.0947265625, 0.5649414062, 1.01171875, 0.0247497559, 0.5981445312, -0.7602539062, 0.1505126953, -0.240234375, -0.5571289062, -0.6860351562, 0.6611328125, 0.0211639404, -0.0390625, 0.986328125, 0.1142578125, 1.2958984375, 0.0190734863, 0.2204589844, -1.080078125, -0.7202148438, -0.0856323242, -1.091796875, 1.017578125, -0.8403320312, -0.0140457153, -0.79296875, 1.001953125, -1.24609375, 0.703125, 0.1845703125, -0.6787109375, -0.3229980469, -0.1634521484, 0.3815917969, 0.2138671875, -0.3400878906 ]
Asset-based community development (ABCD) is a methodology for the sustainable development of communities based on their strengths and potentials. It involves assessing the resources, skills, and experience available in a community; organizing the community around issues that move its members into action; and then determining and taking appropriate action. This method uses the community's own assets and resources as the basis for development; it empowers the people of the community by encouraging them to use what they already possess. The ABCD approach was developed by John L. McKnight and John P. Kretzmann at the Institute for Policy Research at Northwestern University in Evanston, Illinois. They co-authored a book in 1993, Building Communities from the Inside Out: A Path Toward Finding and Mobilizing A Community’s Assets, which outlined their asset-based approach to community development. The Community Development Program at Northwestern University’s Institute for Policy Research established the Asset-Based Community Development Institute based on three decades of research and community work by John P. Kretzmann and John L. McKnight. Principles Needs-based community development emphasizes local deficits and looks to outside agencies for resources. In contrast, asset-based community development focuses on honing and leveraging existing strengths within the community. Related to tenets of empowerment, it postulates that solutions to community problems already exist within a community’s assets. Principles that guide ABCD include: Everyone has gifts: Each person in a community has something to contribute. Relationships build a community: People must be connected in order for sustainable community development to take place. Citizens at the center: Citizens should be viewed as actors—not recipients—in development.
[ -0.3911132812, -0.4682617188, -0.3654785156, -0.2556152344, -0.9780273438, -0.5361328125, -0.8510742188, -0.8676757812, 0.0290374756, 0.1418457031, 1.3525390625, -0.1704101562, -0.8774414062, 0.1059570312, 0.2136230469, -0.7060546875, 0.096496582, 0.1239013672, 0.4619140625, -0.1856689453, -0.78125, -0.3276367188, 0.2431640625, -1.375, 0.0511474609, -0.5795898438, 0.3325195312, 0.5561523438, 0.5258789062, -0.28125, -0.1140136719, 0.3464355469, -1.4580078125, 0.791015625, 0.5693359375, -0.1231079102, -0.0312042236, -1.404296875, -0.7192382812, -0.2722167969, -0.2990722656, -0.3828125, -0.4016113281, -0.4206542969, -0.0006093979, 0.2624511719, 0.1220092773, -0.3657226562, -1.0458984375, -0.06640625, -1.3896484375, -0.2517089844, 0.8979492188, -0.2028808594, -0.1409912109, -0.7353515625, 0.0469970703, -0.5170898438, -0.2973632812, 0.126953125, -0.3728027344, 0.869140625, 0.4028320312, -0.7094726562, 0.7387695312, 0.9350585938, -0.2425537109, 1.1318359375, -0.2456054688, -0.2203369141, -0.7456054688, 0.0619812012, -0.3408203125, 0.5698242188, 0.5029296875, 0.8955078125, 0.5444335938, -0.0165557861, 0.1019287109, 0.7827148438, 0.3898925781, -0.2369384766, -0.4555664062, -0.2442626953, 0.1285400391, 0.533203125, 0.3103027344, -0.1920166016, -0.2585449219, 1.86328125, 0.7485351562, -0.5502929688, -0.1662597656, -0.7592773438, -0.5805664062, 1.142578125, -0.1249389648, 1.3330078125, 0.0755615234, 0.6850585938, -0.1861572266, -0.7827148438, -0.2580566406, 0.603515625, 0.416015625, -0.564453125, -0.1638183594, 0.275390625, 0.3212890625, -0.5668945312, 0.3200683594, -0.2185058594, -0.2209472656, -0.4077148438, -0.3420410156, 0.5361328125, 0.7275390625, -0.685546875, 0.0197906494, -0.4431152344, 0.2717285156, 0.669921875, 0.55859375, 0.2457275391, -0.2680664062, -0.3425292969, 0.2810058594, -0.1965332031, 0.3825683594, -0.0246582031, 0.9301757812, 0.1173095703, 0.0977783203, 0.0399475098, 0.2215576172, -0.1186523438, -0.970703125, 0.8315429688, 0.2105712891, 0.1403808594, -0.0364685059, 0.0910644531, 0.3837890625, 0.5688476562, -0.2351074219, -0.4604492188, -0.6557617188, 0.3298339844, -0.2885742188, 0.4018554688, -0.2839355469, -0.5463867188, -0.1990966797, 0.4914550781, 0.4250488281, -0.5737304688, -0.4428710938, 0.3898925781, -0.4389648438, -0.8823242188, -0.3635253906, -0.4729003906, -0.8505859375, 0.9248046875, -0.0892944336, 0.2866210938, -0.3359375, -0.0167999268, -0.3286132812, -0.1717529297, -1.087890625, -0.3212890625, 0.0722045898, 0.3364257812, 0.5693359375, 0.7646484375, 0.0620117188, 0.1005859375, 0.3664550781, 0.2370605469, 0.0684204102, -0.3310546875, 0.580078125, 0.0123062134, -0.1214599609, -0.5908203125, 0.0294494629, 0.2020263672, 0.1049804688, 0.3432617188, -0.53125, -0.353515625, -0.6254882812, -0.1021728516, -0.2305908203, -1.4462890625, 0.5366210938, -0.0150756836, 0.0492858887, -0.0592346191, -0.1267089844, -0.1801757812, -0.0700073242, -0.548828125, -0.0269165039, 0.4396972656, 0.271484375, 1.0556640625, 0.2481689453, -0.2692871094, 0.1647949219, 1.4287109375, 0.0133743286, 0.5532226562, 0.0338439941, -0.3198242188, 0.0553283691, -1.27734375, 0.4807128906, 0.0040245056, 0.5600585938, 0.455078125, -0.501953125, 0.3735351562, 0.8696289062, -0.5551757812, 0.2290039062, 0.544921875, 0.9350585938, -0.0234069824, 0.9174804688, -0.6118164062, -0.4523925781, 0.0928955078, 0.5698242188, -0.1716308594, 0.9794921875, 0.3596191406, -0.2409667969, -0.0501403809, -0.4748535156, 0.2169189453, -0.1402587891, 0.1834716797, 0.9428710938, 0.0422668457, -0.2836914062, -0.2351074219, -0.3901367188, 0.108581543, 0.0569763184, 0.2387695312, 0.1017456055, 1.048828125, -0.0977783203, -0.6264648438, -0.6899414062, -0.3974609375, -0.7177734375, -0.2282714844, -0.5678710938, 0.3571777344, 0.8774414062, -0.4587402344, -0.4836425781, -0.8266601562, 0.029510498, -0.1770019531, -0.130859375, -0.3073730469, 0.111328125, -0.5380859375, 0.498046875, -0.923828125, -0.736328125, 0.2419433594, 0.1325683594, 0.0310974121, 1.3935546875, 0.0997924805, 0.3603515625, 0.1540527344, 0.25390625, 0.2110595703, -0.4853515625, -0.46875, -0.6567382812, 0.9067382812, -0.4506835938, 0.6806640625, 1.0009765625, 0.5014648438, -0.2966308594, 0.7329101562, 1.0234375, -0.1925048828, 0.0099487305, -0.9116210938, -0.1878662109, -0.6225585938, 0.5419921875, 0.1630859375, 0.38671875, -0.4133300781, 0.6796875, 0.2489013672, 0.0341491699, 0.3256835938, -0.114074707, -0.3415527344, -0.010559082, -0.4985351562, 0.0578308105, 0.1970214844, -0.2600097656, -0.8251953125, -0.7114257812, 0.1020507812, -0.8208007812, -0.4489746094, 0.365234375, -1.087890625, -0.1635742188, 1.4443359375, -0.4487304688, 0.25, 0.6215820312, -0.2475585938, 1.205078125, -0.2484130859, 0.2802734375, -0.328125, -0.1604003906, -0.1641845703, -0.0918579102, -0.039642334, -0.2032470703, 0.0167694092, -0.4340820312, -0.51171875, -0.0776977539, 0.0678100586, -0.0358886719, -0.4208984375, 0.5942382812, 0.5395507812, -0.7153320312, -0.8061523438, -0.0411376953, -0.1760253906, 0.065612793, 0.5346679688, -0.0764160156, 0.5190429688, 0.2447509766, 0.1467285156, 0.4560546875, 0.65625, 0.458984375, 0.6752929688, 1.03515625, 0.5673828125, -1.859375, 0.5786132812, -1.1103515625, 0.3610839844, -0.7041015625, -0.1060180664, -0.1407470703, -1.3076171875, 0.9428710938, 0.1612548828, -0.462890625, 1.1337890625, -0.0220947266, -1.0888671875, -0.9541015625, -0.0516357422, 0.1722412109, -0.8203125, 0.5688476562, -0.2556152344, 0.3088378906, -1.2568359375, -0.3955078125, 0.0838012695, -0.8076171875, -0.62109375, -0.5063476562, 1.060546875, -0.7563476562, -0.6181640625, 0.1646728516, 0.7172851562, 0.34375, 0.9438476562, 1.068359375, 0.7446289062, 0.4055175781, -0.1156005859, 0.560546875, 0.2459716797, 0.6318359375, -0.298828125, 0.1800537109, -0.5825195312, -0.1666259766, 0.2340087891, -0.3518066406, -0.1726074219, -0.4440917969, -0.4992675781, -0.3330078125, -0.4074707031, 0.3854980469, -0.4423828125, 0.1785888672, -0.1983642578, 0.8178710938, -0.3527832031, -1.46875, -0.1104736328, 0.7216796875, -0.4855957031, -0.4057617188, 0.2144775391, -0.4790039062, 0.4616699219, -0.3059082031, 0.7465820312, 0.1379394531, -0.2976074219, -0.4443359375, -0.5883789062, -0.1096191406, 0.0239562988, -0.0624694824, -0.3999023438, 0.1605224609, 0.0315246582, 0.4091796875, 0.6127929688, 0.0317687988, 0.8232421875, 1.1396484375, -0.5170898438, 2.255859375, -0.4401855469, 0.6342773438, -0.2001953125, 0.3557128906, -0.6494140625, 0.7553710938, 0.2098388672, 0.8125, 0.4926757812, -0.0527954102, -0.7978515625, 0.3112792969, 0.4331054688, -0.0526123047, -0.0466918945, 0.1102905273, -0.2349853516, -0.6943359375, -1.685546875, -0.13671875, -0.146484375, -0.560546875, -1.130859375, -0.8198242188, 0.0956420898, 0.8979492188, -0.4187011719, 0.359375, 0.1726074219, 1.3037109375, -0.5053710938, -0.2861328125, -0.7709960938, -1.1474609375, 0.6000976562, 0.1192016602, 0.4306640625, 0.294921875, -0.453125, -0.0405578613, -0.5927734375, 0.5322265625, -0.90234375, 0.5034179688, -0.0185699463, -0.9458007812, -1.2216796875, -0.8447265625, -0.7680664062, 0.3503417969, 0.3403320312, 0.4753417969, -1.244140625, -1.244140625, 0.6948242188, 0.2739257812, -0.83984375, -0.4140625, 0.2861328125, 0.1403808594, -1.0009765625, 0.3981933594, 0.7827148438, 0.0456848145, -0.2585449219, 1.474609375, 0.4645996094, -0.751953125, -0.4770507812, -0.6030273438, -0.3212890625, 0.3310546875, -0.2685546875, 1.048828125, -0.283203125, 1.1689453125, -0.6899414062, -0.05078125, 0.9409179688, 0.4499511719, 0.0114898682, 0.3212890625, 0.408203125, 0.3527832031, 0.1788330078, 0.0403747559, -0.4987792969, -0.8369140625, -0.4074707031, -0.1446533203, 0.0731201172, 0.6254882812, -0.3083496094, 0.2154541016, -0.2005615234, 0.8979492188, 0.0697631836, 0.89453125, 0.4025878906, 0.098815918, 0.7534179688, -0.4079589844, 0.3693847656, 0.8071289062, 0.3850097656, -1.177734375, 0.9477539062, 0.1981201172, 0.3190917969, -0.4152832031, -0.2534179688, -0.3337402344, 0.0665283203, -0.0541992188, -0.533203125, -0.058380127, -0.3630371094, -0.5751953125, 1.140625, 0.5444335938, 0.8510742188, -0.630859375, -0.3081054688, 0.0673217773, 0.505859375, 0.4545898438, 0.3271484375, 0.671875, 0.0189361572, 0.2583007812, -0.1916503906, 1.0478515625, 0.2846679688, -0.3061523438, 0.26953125, -1.07421875, -0.2155761719, -0.3559570312, 0.1711425781, -0.2998046875, -0.0038356781, -0.0669555664, -1.2158203125, 0.30859375, -0.3681640625, -0.6342773438, 0.1910400391, -0.5327148438, 0.3386230469, -0.6489257812, 0.61328125, -0.2375488281, 0.1000976562, 0.0894775391, -0.0005202293, 0.2790527344, -0.0787963867, 0.4309082031, -0.4040527344, 0.0809936523, -0.35546875, 0.1705322266, 0.0264282227, -0.8217773438, -0.0006289482, 0.0702514648, 0.5, 0.4919433594, 0.0279541016, 0.671875, 0.8266601562, -0.5805664062, -0.3820800781, -0.60546875, 0.2995605469, 0.3552246094, -0.2763671875, -0.0163421631, -0.0278320312, -0.0765380859, 0.2025146484, -0.3374023438, -0.6274414062, 0.0876464844, -0.6254882812, 0.4360351562, -0.1876220703, -0.6943359375, 0.6508789062, -0.0231018066, 0.4475097656, 0.104675293, -0.560546875, 0.2191162109, 0.0086898804, -0.603515625, -0.7373046875, 0.7055664062, -0.2858886719, 0.1665039062, -1.017578125, -1.376953125, -0.5151367188, -0.0861206055, -0.7446289062, 0.9052734375, 0.0039634705, 0.1767578125, -0.6801757812, -0.1131591797, -0.5654296875, 0.66796875, 0.3525390625, -0.4975585938, 0.6674804688, -0.3715820312, 0.3974609375, 0.3432617188, 0.4975585938, -0.15234375, 0.3569335938, 0.1411132812, -0.2218017578, -0.3869628906, 0.55859375, 0.1734619141, 1.5634765625, 0.0761108398, -0.7846679688, 0.4753417969, 0.5600585938, -0.8037109375, 0.1832275391, -0.2846679688, -0.51953125, 0.5747070312, -0.3679199219, -0.7587890625, -0.9428710938, -1.294921875, -0.1810302734, 0.2646484375, -0.3315429688, -0.0855102539, -0.716796875, -1.0185546875, 0.2221679688, -0.0417785645, -0.1304931641, 0.1044311523, 0.9033203125, 0.1270751953, 0.4931640625, -0.048828125, 0.0342407227, -1.078125, -0.0720825195, -0.400390625, -0.2673339844, -0.2106933594, 0.5517578125, 0.5126953125, 0.841796875, -0.4294433594, 0.3681640625, -0.0213775635, 0.1979980469, -0.2668457031, 1.0400390625, 0.8500976562, -0.2927246094, 0.8203125, -0.3039550781, 0.3752441406, -0.2048339844, 0.1752929688, 0.0254058838, 0.3959960938, -1.7294921875, -0.4694824219, 0.4594726562, 0.1511230469, -0.3791503906, 0.1551513672, -0.7138671875, 0.2357177734, 0.181640625, 0.7954101562, -0.2761230469, 0.2290039062, -0.3012695312, 0.4592285156, -0.4929199219, 0.6840820312, 0.455078125, -0.3312988281, -0.5283203125, 0.5795898438, 0.3649902344, 1.2255859375, -0.84765625, -0.1606445312, 0.1220703125, -0.33984375, 0.3701171875, -0.3088378906, 0.1594238281, -0.0028648376, -0.8232421875, -0.2377929688, -0.5327148438, -0.5634765625, -0.2492675781, 0.4301757812, 0.07421875, -0.4123535156, -0.2546386719, -0.0068855286, 0.2565917969, 0.6591796875, 0.5537109375, 0.6801757812, -0.4536132812, 0.3312988281, -0.4948730469, 0.4572753906, -0.0703125, -0.4792480469, -0.154296875, 0.4113769531, -1.037109375, 0.6069335938, 0.1348876953, 0.0587158203, 0.1185302734, -0.1302490234, 1.0810546875, 0.2419433594, -0.3845214844, -0.0401916504, 0.2768554688, -0.6879882812, -0.1117553711, 0.0820922852, -0.9633789062, 0.5844726562, -0.26953125, -0.0242156982, 0.0936889648, 0.5078125, -0.4245605469, -0.703125, 0.5908203125, -0.1251220703, 0.2081298828, -0.697265625, -0.8486328125, 0.5810546875, -0.2239990234, 0.6176757812, 0.0592956543, -0.2491455078, 0.4523925781, -0.5620117188, -1.2431640625, 0.1190795898, 0.7001953125, -0.0909423828, -0.6420898438, -0.0087432861, -0.0820922852, -1.037109375, 0.6943359375, 0.1239624023, -0.728515625, -0.9536132812, -0.0656738281, 0.5561523438, -0.7241210938, -0.3930664062, 0.6137695312, -1.71875, -0.0225982666, 0.106628418, 0.349609375, 0.0719604492, 0.3833007812, 0.6103515625, -0.80078125, 0.1340332031, -0.8090820312, -0.2302246094, 0.3735351562, 0.31640625, -0.0326843262, 0.3627929688, 0.2131347656, -0.4086914062, 0.3198242188, 0.0943603516, 0.255859375, -0.2963867188, 0.4479980469, -0.0149536133, -0.646484375, 0.4304199219, 0.3740234375, 0.1312255859, -0.50390625, -1.1123046875, -0.3376464844, 0.3491210938, 0.7060546875, -0.3923339844, 0.9697265625, -1.109375, 0.1936035156, -0.697265625, -0.376953125, -0.4050292969, -0.0384216309, 0.4704589844, 0.9248046875, 0.1027832031, -0.6435546875, -0.1459960938, -0.587890625, -0.5620117188, -0.4204101562, -0.3168945312, 0.1268310547, -0.1770019531, 0.7041015625, 1.2509765625, 0.3840332031, -1.1953125, -0.13671875, 1.1728515625, 0.9663085938, 0.2941894531, 0.6723632812, -1.0166015625, -0.4758300781, -0.3703613281, 0.53515625, -0.3010253906, 1.12890625, -0.5502929688, -0.1004638672, -0.0327148438, -0.4235839844, -0.4064941406, 0.6533203125, 0.1535644531, -0.2482910156, 0.2580566406, 0.4514160156, -0.3369140625, 0.8642578125, -0.2976074219, -0.2543945312, 0.2106933594, 0.2915039062, 0.2430419922, 0.1910400391, -0.4079589844, -0.5747070312, -1.5517578125, 0.0735473633, 0.3820800781, 0.619140625, 0.4348144531, -1.296875, -1.1005859375, -0.4760742188, 0.2944335938, 0.3728027344, -0.2800292969, -0.4165039062, -0.6586914062, 0.3601074219, 0.3581542969, 0.2305908203, -0.0485229492, 0.2091064453, -0.2817382812, 0.3010253906, 0.0159301758, 0.2055664062, -0.3166503906, 0.7509765625, 0.8129882812, 0.4653320312, -0.8837890625, -0.978515625, -15.2734375, -0.6640625, -0.0287628174, -0.1076049805, -0.3090820312, -0.3583984375, -0.4848632812, -0.6469726562, 0.0000613928, 0.2727050781, -0.294921875, -0.2003173828, -0.2800292969, -0.1452636719, 0.4516601562, -0.7255859375, -0.451171875, -0.1396484375, 0.4792480469, -0.3229980469, 1.2412109375, 0.2963867188, 0.4643554688, 0.2241210938, 0.287109375, 0.4404296875, 0.9931640625, -1, -1.169921875, 0.3662109375, -0.3015136719, 0.5625, 0.1823730469, 0.7353515625, 0.9233398438, -0.3337402344, -0.2592773438, -0.1647949219, 0.0341796875, -0.6591796875, 0.7983398438, 0.1739501953, -0.5581054688, 0.9755859375, 0.1574707031, 0.0897827148, 0.1453857422, -0.4709472656, -0.1550292969, -0.4809570312, 0.0239868164, -0.1002197266, -0.3818359375, 0.6606445312, -0.4895019531, 0.0357971191, -0.8359375, 0.2563476562, 0.4775390625, 0.1242675781, 0.91015625, 0.890625, -0.6625976562, 0.1497802734, -0.6684570312, -0.509765625, 0.0194244385, -0.6259765625, 0.9750976562, -0.4543457031, 0.5888671875, -1.302734375, -1.0146484375, -0.77734375, -0.4770507812, -0.1517333984, -0.4484863281, -0.3056640625, -1.4677734375, -0.7172851562, -0.2451171875, 0.0590820312 ]
Leaders involve others: Community development is strongest when it involves a broad base of community action. People care: Challenge notions of "apathy" by listening to people's interests. Listen: Decisions should come from conversations where people are heard. Ask: Asking for ideas is more sustainable than giving solutions. Inside-out organization: Local community members are in control. Institutions serve the community: Institutional leaders should create opportunities for community-member involvement, then "step back." Tools The ABCD approach uses several tools to assess and mobilize communities. Capacity inventory Skills Information: lists the many skills that a person has gained at home, work, in the community, or elsewhere. Examples of these skills can include internet knowledge, hair-cutting, listening, wallpapering, carpentry, sewing, babysitting, etc. Community Skills: lists the community work in which a person has participated to determine future work they may be interested in. Enterprising Interests and Experience: lists past experience in business and determines interest in starting a business. Personal Information: lists minimum information for follow-up. Asset mapping There are five key assets in any given community: individuals, associations, institutions, physical assets, and connections. These assets are broken down into three categories: Gifts of individuals, Citizens’ Associations, and Local Institutions. Asset maps are used in lieu of needs maps which focus solely on negative aspects of communities. Asset maps, on the other hand, focus on community assets, abilities, skills, and strengths in order to build its future.
[ -0.2705078125, -0.6489257812, 0.5625, -0.01902771, -0.74609375, -0.4833984375, 0.0378112793, -0.81640625, 0.2310791016, 0.4294433594, 0.9477539062, -0.0273132324, -0.9233398438, -0.1348876953, 0.0331726074, -0.2369384766, 0.35546875, 0.1595458984, 0.3005371094, -0.1755371094, -0.4221191406, -0.3349609375, 0.2164306641, -2.138671875, 0.2800292969, -1.3173828125, 0.6845703125, 0.2583007812, 0.5078125, -0.5639648438, -0.0138549805, 0.2756347656, -0.9370117188, 1.0048828125, 0.6904296875, 0.0003039837, -0.3012695312, -2.109375, -1.1455078125, -0.3381347656, -0.0808105469, -1.1064453125, 0.3874511719, -0.1954345703, 0.9135742188, 0.4799804688, 0.2810058594, -0.2678222656, -1.310546875, 0.0255126953, -1.3935546875, -0.1170043945, 0.5893554688, -0.4833984375, 0.0986938477, -1.1650390625, -0.6372070312, -0.5639648438, 0.1473388672, 0.1414794922, -0.1596679688, 0.75, 0.2092285156, -0.466796875, 0.2093505859, 0.8330078125, -0.2673339844, 1.4365234375, 0.4377441406, 0.0512695312, -0.5400390625, 0.3032226562, -0.4797363281, 0.0336914062, 0.4145507812, 0.2358398438, 1.3828125, 0.042755127, -0.0099334717, 0.0067634583, -0.1123657227, -0.1223144531, -0.626953125, -0.3911132812, 0.6987304688, -0.3903808594, -0.1285400391, -0.5053710938, 0.3361816406, 1.7890625, 0.5825195312, 0.0401916504, -0.2626953125, -0.7412109375, -0.1165161133, 1.27734375, -0.2136230469, 1.140625, -0.4162597656, 0.5068359375, -0.0641479492, -0.2524414062, -0.68359375, 1.001953125, -0.3825683594, -0.0562744141, -0.0667724609, 0.7827148438, 0.5654296875, 0.0154495239, 0.6752929688, -0.2724609375, -0.1910400391, -0.2233886719, -0.6000976562, 0.1988525391, 0.4375, -0.736328125, -0.0346374512, -0.3481445312, 0.5561523438, 0.84375, 0.4035644531, 1.20703125, -0.3798828125, -0.4421386719, -0.3596191406, -0.7509765625, 1.0234375, 0.2457275391, 1.13671875, 0.4443359375, -0.0477600098, 0.64453125, 0.1436767578, -0.1318359375, -0.9301757812, 0.794921875, 0.890625, -0.2109375, 0.0307922363, 0.7485351562, 0.1666259766, 0.9614257812, 0.3793945312, -0.4475097656, -0.951171875, 0.0957641602, -0.0792236328, 0.29296875, -0.7421875, 0.4155273438, -0.1743164062, 0.37109375, -0.0781860352, -0.7163085938, -0.7006835938, -0.6684570312, -0.1417236328, -0.1131591797, -0.0313415527, -0.8388671875, -0.1029052734, 0.572265625, -0.3071289062, -0.1218261719, -0.6616210938, 0.2644042969, -0.5258789062, -0.6030273438, -0.8828125, 0.0451965332, -0.1000366211, -0.8872070312, -0.0596008301, 0.1579589844, -0.1115112305, -0.2854003906, -0.3811035156, 0.4343261719, 0.0703735352, -0.0501098633, 0.64453125, -0.2442626953, -0.8388671875, -0.9423828125, -0.2739257812, 0.3732910156, -0.40625, -0.2144775391, -0.1666259766, -0.8486328125, -0.607421875, 0.5551757812, -0.3952636719, -1.2509765625, 1.4375, -1.646484375, -0.2170410156, 0.4926757812, -0.912109375, -0.2517089844, 0.0306396484, -0.6264648438, -0.1455078125, 0.4853515625, -0.349609375, 1.4072265625, 0.4587402344, -0.3322753906, -0.3413085938, 1.1787109375, 0.1591796875, 0.51953125, 0.2026367188, -0.4655761719, 0.2504882812, -0.8271484375, 0.4997558594, 0.4611816406, 0.5375976562, 0.9111328125, -1.1318359375, 0.0281219482, 0.4948730469, -0.0001512766, 0.3857421875, 0.7241210938, 0.646484375, -0.4162597656, 0.341796875, 0.3684082031, 0.112487793, 0.8325195312, 0.7373046875, -0.4067382812, 0.5971679688, 2.087890625, -0.1960449219, 0.2780761719, -0.2366943359, -0.611328125, -0.096496582, 0.4169921875, 0.5180664062, -0.5649414062, -0.5537109375, -0.4606933594, -0.4453125, 0.2053222656, 0.0444030762, 0.1197509766, -0.2200927734, 0.9638671875, -0.1246948242, -0.2166748047, -0.5048828125, -0.6220703125, -1.080078125, -0.5346679688, -0.1546630859, 0.0288848877, 0.6376953125, -0.8217773438, -0.6645507812, -0.2117919922, -0.3234863281, -0.8515625, 0.6274414062, 0.2243652344, -0.0239562988, 0.1246337891, -0.2344970703, -0.6689453125, -0.5415039062, -0.0355224609, 0.1009521484, -0.9951171875, 1.3427734375, 0.2210693359, -0.0948486328, 0.2360839844, -0.2061767578, 0.0510864258, -1.0224609375, 0.1810302734, 0.1197509766, 1.1162109375, -0.2100830078, 1.1396484375, -0.3889160156, 0.611328125, 0.4553222656, -0.0607910156, 0.009765625, -0.0393676758, -0.19921875, -1.2001953125, 0.7094726562, -0.6064453125, -0.84375, -0.2196044922, 0.5439453125, -1.177734375, 0.9995117188, 0.2509765625, -0.2044677734, 0.118347168, 0.0532531738, -0.515625, 0.0299072266, -0.6689453125, 0.0444641113, 0.6225585938, -0.439453125, -0.810546875, -0.9995117188, 0.3371582031, -0.3898925781, -0.1108398438, 0.1973876953, -0.6831054688, -0.880859375, 0.6665039062, -0.3928222656, -0.1796875, -0.026473999, -0.5961914062, -0.2512207031, -1.046875, 0.3588867188, -0.87890625, -0.779296875, -0.4392089844, -0.150390625, -0.2424316406, 0.4816894531, 0.5424804688, -0.9189453125, -1.1962890625, -0.0671386719, -0.244140625, 0.0820922852, -0.6704101562, 0.5146484375, 0.5112304688, -0.7421875, -1.1279296875, -0.4643554688, -0.2061767578, 0.1567382812, 0.7016601562, -0.0073699951, 0.0529785156, -0.2061767578, 0.4594726562, -0.3215332031, 0.7294921875, 0.3879394531, 0.4194335938, 1.4814453125, 0.1417236328, -1.55859375, 0.8876953125, -1.1494140625, -0.2978515625, -0.546875, -0.4545898438, -0.3471679688, -0.7333984375, 0.279296875, 0.4714355469, -0.1968994141, 0.6826171875, 0.279296875, -0.3747558594, -0.8549804688, 0.4274902344, 0.2897949219, 0.1779785156, 0.7138671875, -0.2376708984, 0.7045898438, -0.3713378906, -0.5283203125, 0.0731811523, -0.5903320312, -1.26953125, -0.994140625, 0.4223632812, -0.607421875, -0.4458007812, 0.0466308594, 0.7841796875, 0.541015625, 0.9194335938, 1.0390625, 0.6079101562, 0.3647460938, -0.0673217773, 0.5791015625, 0.9360351562, 1.125, -0.3447265625, -0.7475585938, -0.484375, 0.33203125, 0.0232696533, 0.0104370117, -0.0120162964, -0.2934570312, -0.5747070312, -0.3205566406, -0.4699707031, 0.8041992188, -0.513671875, 0.7641601562, -0.7939453125, 1.1328125, -0.5297851562, -1.693359375, -0.5786132812, 1.212890625, -0.0782470703, -0.4897460938, 0.9643554688, -0.1837158203, 0.6435546875, 0.2673339844, 0.8315429688, -0.71484375, 0.814453125, -0.2587890625, -0.3173828125, -0.994140625, -0.3381347656, 0.5844726562, -0.1697998047, 0.1488037109, 0.3693847656, 0.72265625, 1.267578125, 0.0586547852, 0.2438964844, 0.4758300781, -0.3666992188, 1.361328125, -0.1622314453, 0.6264648438, -0.333984375, 0.1693115234, -0.9111328125, 1.0322265625, 0.4489746094, 1.0341796875, 0.8159179688, -0.5224609375, -0.4680175781, -0.63671875, -0.0932617188, -0.069152832, -0.1781005859, 0.9375, -0.5229492188, -0.018951416, -1.2900390625, -0.7431640625, 0.3112792969, -0.0673828125, 0.1813964844, -0.2291259766, 0.0189208984, 0.45703125, 0.0446472168, 1.3935546875, 0.4736328125, 1.2392578125, -0.1945800781, -0.7958984375, -0.0626831055, -0.8051757812, -0.2220458984, 0.1846923828, 0.1903076172, 0.91015625, -0.1335449219, -0.1557617188, -0.5224609375, -0.3649902344, -0.8208007812, 1.748046875, -0.5034179688, -0.2028808594, -0.4252929688, -1.029296875, -0.4204101562, -0.2746582031, 1.166015625, 1.53515625, -1.4931640625, -1.4189453125, 0.8413085938, -0.0537719727, -0.5849609375, -0.3442382812, 0.098815918, -0.3793945312, 0.2036132812, -0.0809326172, 0.4880371094, -0.6303710938, 0.2951660156, 1.294921875, 0.2834472656, -1.087890625, -0.5063476562, 0.2697753906, -0.3012695312, 0.7250976562, -0.671875, 0.6708984375, -0.2590332031, 0.7416992188, -0.0316162109, -1.2646484375, 1.2265625, 0.9809570312, 0.66796875, 1.1845703125, 0.7094726562, 1.189453125, -0.0631103516, -0.1878662109, 0.4575195312, -0.283203125, -0.089050293, -0.3359375, -0.1333007812, -0.1580810547, 0.2071533203, -0.0583190918, 0.54296875, 1.052734375, -0.1635742188, 0.7299804688, 0.9462890625, -0.2280273438, 0.2176513672, 0.3120117188, -0.64453125, 0.4106445312, 0.3679199219, -0.4165039062, 1.0517578125, -0.5239257812, -0.3046875, -0.7944335938, -0.642578125, -0.0098342896, -0.1607666016, -1.09375, -0.25, -0.0864868164, 0.279296875, -0.4641113281, -0.1566162109, -0.2456054688, 1.0419921875, -1.041015625, 0.611328125, -1.025390625, -0.3530273438, 1.3154296875, -0.822265625, 1.1806640625, 0.4311523438, 0.3415527344, 0.3408203125, 1.451171875, 1.0546875, -0.3566894531, 0.4216308594, -0.6030273438, -0.5170898438, 0.5634765625, 0.7973632812, 0.3898925781, 0.2341308594, 0.5244140625, -1.384765625, 0.4826660156, -0.4011230469, -0.6396484375, -0.6298828125, -0.5146484375, 0.8369140625, -0.583984375, 0.2474365234, -0.2543945312, -0.1285400391, 0.0649414062, -0.1077880859, 0.3610839844, 0.4587402344, -0.2590332031, -0.6489257812, -0.4597167969, -1.2119140625, 0.081237793, 0.4567871094, -0.513671875, -0.2344970703, 0.6201171875, 0.0986938477, 0.76171875, 1.2470703125, 0.4577636719, 0.90625, 0.2763671875, -0.0364685059, -0.72265625, 0.6811523438, 1.533203125, -0.4116210938, -1.0888671875, -0.3784179688, -0.0442810059, 0.1550292969, -0.97265625, -0.2048339844, -0.0305175781, -0.1306152344, 0.3937988281, -0.2534179688, -0.9375, 0.2905273438, -0.9775390625, 0.7319335938, 0.3884277344, -0.4091796875, 0.6611328125, 0.0232849121, -1.013671875, -1.1708984375, 0.412109375, 0.1940917969, 0.1871337891, -0.8129882812, -0.8193359375, -0.0162658691, 0.1651611328, -0.4533691406, 1.015625, -0.2770996094, 0.7006835938, -1.3642578125, 0.5571289062, -0.1075439453, 0.88671875, 0.2653808594, -1.0283203125, 0.5678710938, -0.435546875, 0.7973632812, -0.6826171875, 0.2351074219, -0.2944335938, 0.2390136719, -0.2211914062, -0.1086425781, -0.1595458984, 0.517578125, 0.6450195312, 1.3203125, -0.2529296875, -1.41796875, -0.1716308594, -0.4836425781, -0.7734375, 0.1034545898, -0.1655273438, -0.55859375, 0.5068359375, -0.341796875, -0.7329101562, -1.0185546875, -0.3388671875, -0.4223632812, -0.4650878906, -0.5161132812, -0.88671875, -0.4426269531, -0.58984375, 0.2092285156, 1.0810546875, -0.4660644531, 0.1441650391, 0.53515625, -0.7280273438, 0.2971191406, -0.0455627441, -0.0784301758, -0.6860351562, 0.3833007812, 0.0872802734, -0.4702148438, -0.9345703125, 0.9379882812, 0.4558105469, 0.8022460938, -0.22265625, 0.5048828125, 0.2561035156, -0.0629272461, -0.3918457031, 0.7622070312, -0.0884399414, -0.4006347656, 0.5170898438, -0.7275390625, -0.013885498, 0.5625, -0.0548400879, 0.1986083984, 1.072265625, -1.7353515625, -0.546875, 0.71484375, 0.2429199219, -0.005771637, 0.3923339844, -1.0634765625, 0.2619628906, -0.2182617188, 0.630859375, -0.47265625, 0.3466796875, -0.1414794922, 0.7456054688, -0.1734619141, 0.2105712891, 0.5625, -0.2687988281, -0.6669921875, 0.4968261719, 0.2270507812, 1.4921875, -0.6938476562, -1.4560546875, 0.1785888672, -0.439453125, 0.5258789062, -0.6826171875, 1.19921875, -0.2729492188, -0.8583984375, -0.2298583984, -1.26953125, -0.1161499023, -0.4287109375, 0.9331054688, -0.4985351562, -0.2790527344, -0.1190185547, -0.2447509766, -0.3464355469, 0.71875, 0.3393554688, 0.4968261719, -1.173828125, 0.1558837891, -1.126953125, 0.6010742188, 0.64453125, -0.8432617188, 0.042175293, 0.3952636719, -0.90625, 0.7412109375, -0.4284667969, 0.0904541016, 0.3649902344, 0.0900268555, 1.205078125, -0.1771240234, -0.0445861816, 0.4985351562, 0.21875, -0.4104003906, -0.1207885742, -0.1089477539, -0.7412109375, 0.5043945312, -0.6625976562, -0.58203125, -0.1729736328, 0.6157226562, 0.1461181641, -0.4694824219, 0.33984375, 0.3291015625, 1.0185546875, -0.0470275879, -0.8823242188, -0.4025878906, -0.2313232422, -0.0774536133, -0.4838867188, 0.076171875, 0.4926757812, -0.2431640625, -0.509765625, -0.1904296875, 0.1221313477, -0.6708984375, 0.0493164062, 0.0017271042, 0.689453125, -0.6997070312, 0.3537597656, 0.0068283081, -1.2744140625, -0.4406738281, 0.3088378906, 1.611328125, -1.0986328125, 0.2243652344, 0.2049560547, -2.001953125, 0.2983398438, 0.2958984375, 0.2109375, 0.4348144531, 0.693359375, 0.5185546875, 0.8745117188, 0.6704101562, -0.2105712891, -0.5258789062, 0.2744140625, 0.3666992188, 0.1527099609, 0.287109375, -0.2875976562, 0.071105957, -0.3576660156, 0.3823242188, 0.0700683594, -0.2478027344, 0.4108886719, -0.4780273438, -1.0087890625, -0.173828125, 0.4270019531, 1.5126953125, -0.8588867188, -0.9926757812, -0.1499023438, -0.1249389648, 0.0121994019, 0.224609375, 0.3579101562, -1.369140625, 0.2485351562, -0.134765625, -0.3999023438, -0.4069824219, -0.3811035156, 0.6796875, 0.5366210938, -0.0834350586, -0.8178710938, -0.4763183594, -0.6259765625, -0.4147949219, -0.7885742188, -0.0015058517, 0.5810546875, -0.6416015625, 0.6430664062, 0.7309570312, 0.9599609375, -1.4208984375, -1.798828125, -0.0899658203, 0.7236328125, 1.1689453125, 0.4812011719, -1.357421875, -0.5532226562, -0.1551513672, 0.4562988281, -0.0199127197, 0.587890625, -0.8413085938, -0.693359375, -0.2624511719, -0.5, -0.104309082, 0.8803710938, -0.1291503906, -0.5478515625, -0.4536132812, 0.5991210938, 0.3369140625, 0.6411132812, -0.8452148438, -0.8955078125, 0.1157226562, 0.6538085938, 0.3903808594, 0.4423828125, 0.6103515625, -0.884765625, -1.2861328125, 0.640625, 0.3876953125, 0.1832275391, 0.0921630859, -1.474609375, -0.7529296875, -0.4350585938, 0.0025596619, 0.3928222656, -1.33984375, -0.1822509766, 0.1107177734, -0.3073730469, 0.0666503906, 0.6474609375, 0.6293945312, 0.2491455078, -0.3928222656, 0.3845214844, 0.6884765625, 0.9047851562, 0.1381835938, 0.3520507812, 1.2333984375, 0.0983276367, 0.3115234375, -1.21875, -12.609375, -0.0257110596, -0.6333007812, -0.361328125, -0.2692871094, -0.8388671875, -0.4755859375, -1.0888671875, -0.4992675781, 0.4291992188, -0.2731933594, -0.1943359375, -1.306640625, 0.8266601562, 0.1132202148, -0.5346679688, -0.2225341797, -0.5, 0.2418212891, -1.32421875, 0.841796875, 0.0670166016, 0.4396972656, 0.3784179688, 1.076171875, 1.359375, 0.6728515625, -1.240234375, -0.6489257812, -0.1312255859, -0.0370178223, 0.5302734375, -0.0355834961, 0.9711914062, 0.6303710938, -0.4794921875, 0.3833007812, -0.64453125, -0.5087890625, -1.0693359375, -0.0556640625, 0.2883300781, -0.7045898438, 0.6459960938, 0.541015625, 0.3825683594, 0.086730957, 0.3901367188, -0.040222168, 0.521484375, -0.33203125, 0.1317138672, 0.1473388672, 0.6469726562, -1.0068359375, 0.220703125, 0.0411682129, 0.0631103516, 0.3205566406, 0.2578125, 0.8081054688, 1.375, -0.9682617188, 0.009765625, -0.6342773438, -0.2141113281, -0.2469482422, -0.810546875, 0.587890625, 0.2060546875, 0.642578125, -1.1025390625, -0.62890625, -0.2844238281, 0.1812744141, -0.5034179688, -0.0026054382, -0.5151367188, -1.9853515625, -0.3640136719, 0.3037109375, -0.0603942871 ]
Time banks Time banks are an example of using community assets to connect individuals' assets to one another. Neighbors and local organizations share skills with one another and earn and spend ‘TimeBank Hours’ or ‘credits’ in the process, allowing an hour of child care to equal an hour of home repair or tax preparation. Ethics Since ABCD relies on existing community assets to create change, it has been criticized for implying that disadvantaged communities have all the resources they need to solve community problems. According to the ABCD Institute, however, ABCD methodology recognizes that systemic injustice may require disadvantaged communities to seek assistance from outside the community. ABCD maintains that interventions from exterior sources will be most effective when a community’s assets are leveraged at full capacity. ABCD is described as a more sustainable model of community development than needs-based community development, because needs-based approaches may perpetuate community problems by emphasizing deficiencies and the necessity for reliance on outside assistance. By contrast, ABCD aims to build capacity within communities by expanding their social capital. By working with outside resources and simultaneously building trust within the community, more members can make use of a wider array of strengths. See also Allotment gardens Community Community advisory board Community-based participatory research (CBPR) Community development Community psychology Family support Neighborhoods Participatory rural appraisal (PRA) Praxis intervention Progress in Community Health Partnerships Southeast Asia Rural Social Leadership Institute (SERSOLIN) References Further reading Journal: Journal podcast (episode list): Community building Community development Urban planning Rural community development Sustainable communities
[ 0.2666015625, -0.3674316406, 0.2296142578, -0.0923461914, -1.236328125, -0.1225585938, 0.0599975586, -0.8862304688, 0.2641601562, 0.1662597656, 0.8842773438, 0.4582519531, -0.8061523438, 0.45703125, 0.5078125, -0.3447265625, 0.1220092773, 0.34765625, 0.87890625, -0.533203125, -0.7822265625, -0.7114257812, -0.1895751953, -2.021484375, 0.1822509766, -0.8901367188, 1.1943359375, 0.5458984375, 0.5546875, -0.3686523438, 0.0614318848, 0.3596191406, -1.2587890625, 0.513671875, 0.0433959961, -0.5522460938, 0.4064941406, -1.7294921875, -0.875, -0.5219726562, -0.2216796875, -0.3276367188, -0.5771484375, 0.5209960938, -0.1226196289, -0.2164306641, -0.1374511719, -0.7568359375, -1.43359375, -0.1710205078, -0.8310546875, 0.0592041016, 1.109375, -0.1016235352, 0.3996582031, -0.4775390625, 0.1274414062, -0.6069335938, 0.1677246094, -0.0196075439, -0.0709228516, 0.4008789062, 0.2374267578, -0.3022460938, 1.001953125, 0.4167480469, -0.7802734375, 1.1279296875, 0.7138671875, 0.2073974609, -0.3569335938, -0.3405761719, -0.5708007812, 0.7934570312, 0.177734375, 0.3395996094, 0.7119140625, -0.1776123047, -0.0911865234, 0.9946289062, 0.3825683594, -0.0530395508, -0.8530273438, -0.3830566406, 0.3232421875, 0.44921875, -0.2159423828, -0.1101074219, -0.2443847656, 0.9448242188, 0.693359375, -0.1378173828, -0.2137451172, -1.24609375, -0.3471679688, 0.7846679688, -0.3337402344, 0.2946777344, 0.1928710938, 0.2401123047, -0.3666992188, -0.8134765625, 0.1068115234, 0.810546875, 0.0315856934, -0.8203125, 1.05078125, 0.9267578125, 0.5629882812, -0.2023925781, 0.7788085938, 0.2379150391, -0.1732177734, 0.0530090332, -0.3425292969, 0.3386230469, 0.4533691406, -1.0673828125, 0.1236572266, -0.0484008789, 0.1920166016, 0.8862304688, 0.2125244141, 0.6899414062, -0.3630371094, -0.2646484375, 0.6450195312, -0.2200927734, 0.736328125, -0.7680664062, 0.875, 0.4077148438, 0.6157226562, 0.2319335938, 0.3806152344, -0.0003628731, -0.8095703125, 0.3876953125, 0.1885986328, -0.3134765625, 0.5849609375, 0.3959960938, 0.4118652344, 0.71484375, -0.8032226562, -0.3793945312, -0.5522460938, 0.4936523438, -0.1595458984, 0.9868164062, -0.6474609375, 0.0594177246, -0.6650390625, 0.4577636719, -0.1513671875, -0.4506835938, -0.0641479492, -0.0935668945, -0.3037109375, -0.4755859375, -0.0775146484, -1.18359375, -0.740234375, 0.1607666016, -0.4794921875, 0.1099853516, -0.1418457031, 0.4016113281, -0.2237548828, -0.2421875, -1.005859375, -0.2370605469, -0.4826660156, -0.1237182617, -0.0539550781, 0.3994140625, 0.0693969727, -0.1276855469, -0.2829589844, 0.7006835938, -0.3815917969, -0.1324462891, 1.228515625, -0.1024780273, -0.0348815918, -0.1555175781, -0.5112304688, 0.0568847656, 0.1590576172, 0.3212890625, -0.7182617188, -1.060546875, -0.4035644531, -0.1055297852, -0.8286132812, -1, 0.9609375, -0.80859375, 0.5361328125, -0.0769042969, -0.5903320312, -0.8955078125, -0.2600097656, 0.0723266602, 0.0618896484, 0.0077972412, 0.1680908203, 1.1162109375, -0.3850097656, 0.0289306641, 0.810546875, 1.83203125, -0.0778198242, -0.2822265625, -0.62890625, 0.0268096924, -0.5004882812, -0.62109375, 0.5170898438, 0.2744140625, 0.5844726562, 0.8530273438, -0.5888671875, 1.2138671875, 1.5048828125, -0.3801269531, -0.0726318359, 0.025970459, 0.4453125, 0.1927490234, 0.8588867188, -0.6118164062, 0.1254882812, -0.041015625, 0.0118713379, 0.0225067139, 0.7880859375, 0.8334960938, 0.5454101562, 0.7124023438, -0.4011230469, 0.5268554688, 0.3623046875, 0.556640625, 1.046875, 0.0399475098, -0.1561279297, -0.08984375, -0.3410644531, -0.2478027344, -0.016708374, 0.0325317383, 0.1009521484, 1.177734375, 0.0856323242, -0.0389099121, -0.3701171875, -0.2105712891, -0.625, -0.5087890625, -0.1123046875, 0.0771484375, 0.4721679688, -0.6499023438, -0.8872070312, -0.3591308594, 0.0737915039, -0.982421875, -0.1854248047, -0.0066604614, -0.0645751953, -0.6923828125, 0.6162109375, -1.7529296875, 0.029296875, -0.591796875, -0.4858398438, -0.0939331055, 1.9892578125, 0.5776367188, -0.0521240234, 0.7431640625, 0.5390625, 0.092590332, -0.6284179688, -0.1578369141, -0.0107192993, 0.7001953125, -0.3898925781, 0.6435546875, 0.7602539062, 0.3449707031, 0.0889282227, 0.2507324219, 0.6015625, 0.0921630859, -0.173828125, -1.3828125, 0.5991210938, 0.3735351562, -0.638671875, 0.11328125, 0.3352050781, -0.796875, 0.7895507812, 0.0435791016, -0.0755004883, 0.4157714844, -0.0097961426, -0.1104125977, -0.0217590332, -0.6625976562, -0.4289550781, -0.1209716797, -0.0810546875, -0.7163085938, -0.6079101562, 1.513671875, -0.7338867188, -0.8930664062, 0.4555664062, -1.1826171875, -0.5209960938, 1.0703125, -0.7602539062, 0.4594726562, 0.2486572266, -0.1514892578, -0.4831542969, -0.1473388672, 0.3017578125, 0.4645996094, -0.1412353516, -0.1805419922, -0.396484375, -0.8564453125, -0.23828125, 0.3090820312, -0.2010498047, -0.8896484375, 0.0896606445, -0.3420410156, 0.0708007812, -0.1188964844, 0.7690429688, 0.6665039062, -0.921875, -0.8100585938, -0.2062988281, -0.1184082031, -0.2424316406, 0.6811523438, 0.517578125, 1.009765625, 0.4741210938, -0.2810058594, 0.373046875, 0.5302734375, -0.2873535156, 0.2700195312, 1.5439453125, 0.0002319813, -2.333984375, 0.8442382812, -0.9853515625, -0.1572265625, -0.1727294922, -0.2548828125, -0.3430175781, -0.8701171875, 0.5454101562, -0.2687988281, -0.1822509766, 0.1806640625, -0.4934082031, -0.6118164062, -0.0844726562, 0.1898193359, 0.69140625, -0.5463867188, 0.3239746094, -0.9228515625, 0.595703125, -0.9477539062, -0.5678710938, 0.1798095703, -0.9096679688, -1.87890625, -0.548828125, 0.9750976562, -0.3720703125, -0.6826171875, 0.6669921875, -0.1455078125, 0.2604980469, 1.025390625, 1.265625, 0.1345214844, 0.2895507812, 0.3601074219, 0.4831542969, -0.3034667969, -0.4501953125, -0.375, 0.2504882812, -0.2497558594, -0.435546875, -0.2861328125, -0.3491210938, -0.0551452637, -0.3215332031, -0.3244628906, -0.052154541, -0.7255859375, 0.5693359375, -0.5219726562, 0.1037597656, -0.3740234375, 1.1611328125, 0.1181640625, -1.529296875, -0.1955566406, 0.7045898438, -0.2727050781, -0.1435546875, -0.1356201172, -0.4235839844, -0.032043457, 0.0103988647, 1.1005859375, -0.5283203125, 0.6850585938, -0.4462890625, -0.94921875, 0.0428771973, 0.1439208984, 0.0117034912, 0.16796875, 0.0501708984, 0.1767578125, 0.0596008301, 0.96875, -0.2966308594, 0.560546875, 0.1639404297, -0.3090820312, 2.078125, 0.2495117188, 0.0732421875, -0.607421875, 0.0668334961, -0.4592285156, -0.2451171875, 0.1804199219, 0.6645507812, 0.7021484375, -0.2890625, -0.4958496094, 0.16015625, 0.5581054688, -0.1353759766, 0.1141357422, -0.1281738281, -0.486328125, -0.3674316406, -1.5244140625, -1.2373046875, 0.5366210938, -0.2281494141, -0.3410644531, -1.220703125, 0.3671875, 0.6958007812, 0.4060058594, 0.0395202637, 0.8989257812, 0.95703125, -0.3981933594, -0.2915039062, -0.4069824219, -1.28515625, -0.0921020508, 0.2687988281, 0.2491455078, 0.2209472656, -0.1353759766, -0.0653686523, -0.6923828125, -0.31640625, -0.2919921875, 0.7124023438, -0.0849609375, -1.0849609375, 0.2110595703, -1.4462890625, 0.2222900391, 0.3579101562, 0.6440429688, 0.6391601562, -1.1748046875, -0.9194335938, 0.3684082031, 0.1892089844, -1.4970703125, -0.2258300781, 0.5610351562, 0.1307373047, -1.060546875, 0.1861572266, 0.4113769531, 0.0267791748, -0.728515625, 1.740234375, 0.529296875, -0.5024414062, -0.5454101562, -1.1875, -0.0783081055, 0.1806640625, -0.2161865234, 1.083984375, -0.1906738281, 0.4965820312, -0.2302246094, -0.396484375, 1.5087890625, 0.859375, 0.0083999634, 0.28515625, -0.1761474609, 0.2841796875, 0.2447509766, -0.2352294922, -0.3244628906, -0.2692871094, 0.0403747559, -0.5620117188, -0.853515625, -0.0402832031, 0.271484375, 0.1026000977, 0.3991699219, 0.560546875, 0.328125, 0.1805419922, 0.1590576172, 0.4560546875, 0.1976318359, -0.0279541016, 0.2944335938, 0.3566894531, 0.6748046875, -0.5415039062, 0.8461914062, 0.1436767578, -0.0383911133, -0.4963378906, -0.3461914062, -0.2338867188, -0.1595458984, -0.0158996582, -0.3247070312, -0.1401367188, 0.0484924316, 0.1662597656, 0.9736328125, 0.2176513672, 0.94921875, -0.3725585938, -0.3107910156, -0.564453125, -0.0726318359, 0.9633789062, -0.1053466797, 1.1357421875, -0.94140625, 0.1889648438, -0.611328125, 1.193359375, 0.7060546875, -0.0138015747, 0.3034667969, -0.9892578125, -0.599609375, 0.0776367188, 0.2583007812, -0.4851074219, 0.1511230469, 0.185546875, -1.380859375, -0.0914916992, -0.4453125, -1.349609375, -0.2873535156, -0.537109375, -0.1028442383, -0.3076171875, 0.1161499023, -0.1330566406, 0.6147460938, 0.0360412598, 0.2340087891, 0.4548339844, 0.1716308594, -0.124206543, -0.6391601562, -0.3740234375, -0.5522460938, -0.069152832, -0.2587890625, -0.0263671875, 0.4152832031, -0.0489501953, 0.2758789062, 0.3903808594, 0.4721679688, 1.1923828125, 0.9765625, 0.1196289062, -0.0424194336, -0.4050292969, 0.5463867188, 0.4599609375, -0.5239257812, -0.5190429688, 0.6313476562, 0.0629882812, 0.4758300781, -0.5361328125, -0.6821289062, -0.0818481445, 0.0914916992, 0.0469055176, -0.2570800781, -0.6748046875, -0.0842895508, -0.5380859375, 0.3112792969, 0.0252532959, -0.486328125, 0.1087036133, 0.0266418457, -0.5927734375, -0.7729492188, 0.2553710938, 0.4653320312, 0.2878417969, -1.216796875, -0.8627929688, -0.0112228394, 0.5053710938, -0.7255859375, 0.4172363281, 0.3493652344, 0.2692871094, -0.2880859375, 0.3322753906, -0.4838867188, 0.7065429688, -0.2249755859, -0.6206054688, 0.8798828125, -1.126953125, 0.1362304688, -0.5400390625, 0.0792236328, -0.1900634766, 0.6459960938, 0.29296875, -0.0315246582, -0.1287841797, 0.2034912109, 0.046295166, 2.037109375, 0.2751464844, -1.5478515625, 0.6416015625, 0.6967773438, -0.9384765625, 0.1931152344, -0.1611328125, -0.50390625, 0.7211914062, -0.2875976562, -0.3325195312, -0.3610839844, -0.484375, -0.007232666, -1.427734375, -0.2810058594, -1.2451171875, -1.4013671875, -1.1396484375, -0.1710205078, 0.6938476562, 0.0403137207, -0.0072593689, 1.04296875, -0.4313964844, 0.1639404297, -0.1153564453, -0.3081054688, -0.4555664062, 0.4475097656, -0.4533691406, -0.6923828125, -0.2196044922, 0.966796875, 0.7026367188, 0.5395507812, 0.1989746094, 0.2912597656, 0.2575683594, 0.3803710938, -0.6162109375, 0.611328125, 0.2639160156, -0.4650878906, 0.8837890625, -0.728515625, -0.3994140625, 0.0886230469, -0.0960693359, 0.5625, 0.9213867188, -3.03515625, 0.302734375, 0.1499023438, 0.5859375, -0.3151855469, 0.047668457, -0.3305664062, -0.0109710693, -0.5766601562, 0.8295898438, -0.2351074219, 0.3728027344, -0.4887695312, 0.4423828125, -0.3598632812, 0.8115234375, 0.9072265625, -0.5034179688, -0.53515625, 0.1594238281, 0.0700683594, 1.234375, -0.8227539062, -0.26171875, -0.1071166992, -0.2634277344, 0.2036132812, -0.4624023438, 0.6147460938, 0.1280517578, -0.5478515625, -0.0630493164, -0.9750976562, -0.765625, -0.3413085938, 0.6206054688, 0.0554504395, -0.0288696289, -0.1448974609, -0.3083496094, -0.72265625, 0.7763671875, 0.23828125, 0.9677734375, -0.7817382812, 0.9194335938, -0.6005859375, 0.11328125, 0.2084960938, -0.7758789062, -0.0209960938, 0.845703125, -0.3505859375, 0.9760742188, -0.4216308594, 0.0565795898, 0.1417236328, 0.0797729492, 1.103515625, 0.0755004883, -0.7182617188, 0.2780761719, 0.4760742188, 0.208984375, 0.85546875, 0.1854248047, -0.1106567383, 0.6870117188, -0.7099609375, -0.6357421875, -0.3771972656, 0.4741210938, -0.0780639648, 0.1945800781, 0.0969238281, -0.0697631836, 0.5634765625, -0.26953125, -0.0253448486, 0.4321289062, 0.3610839844, 0.8857421875, -0.1937255859, 0.0105895996, -0.1920166016, -0.4750976562, -1.0009765625, -0.1962890625, 1.2294921875, -0.4001464844, -0.5517578125, 0.4216308594, 0.1052246094, -1.4150390625, 0.4311523438, 0.1335449219, -0.8681640625, -0.3129882812, 0.2644042969, 0.8935546875, -1.4091796875, 0.0192108154, 0.8505859375, -1.34375, 0.1842041016, 0.837890625, 0.1809082031, 0.0169067383, -0.25390625, 0.1994628906, -0.1949462891, -0.3034667969, -0.2260742188, -0.51171875, -0.3366699219, 0.5922851562, 0.1684570312, 0.8046875, 0.2263183594, -0.5014648438, -0.4013671875, 0.3386230469, 0.2604980469, -0.2817382812, 0.2893066406, -0.0550231934, -0.8212890625, -0.0497436523, 0.6586914062, 0.9721679688, -0.9584960938, -1.1220703125, -0.1905517578, 0.1361083984, 0.4921875, -0.6723632812, 1.0224609375, -1.0576171875, 0.0838623047, -0.7866210938, -0.0330200195, -0.4916992188, -0.1243896484, 0.8857421875, -0.0220947266, 0.0966186523, -0.8422851562, -0.5439453125, -0.552734375, -1.0087890625, -0.6040039062, -0.2056884766, 0.1034545898, 0.2353515625, 0.4157714844, 1.11328125, 0.9174804688, -0.8271484375, -0.5659179688, -0.4633789062, 0.734375, 0.4455566406, 0.2556152344, -0.7890625, -1.0869140625, -0.5522460938, 0.671875, -0.388671875, 0.7763671875, -0.4880371094, -0.4106445312, 0.3247070312, -0.0513305664, -0.2360839844, 1.4990234375, 0.7153320312, -0.4125976562, -0.1171875, -0.4453125, -0.1335449219, 0.3759765625, -0.2666015625, 0.0731201172, 0.2253417969, 0.892578125, 0.2529296875, 0.13671875, 0.1501464844, -0.048248291, -1.3955078125, 0.2144775391, 0.3752441406, -0.0482177734, 0.2690429688, -0.5512695312, -0.791015625, -0.810546875, 0.8159179688, 0.4187011719, -0.2275390625, -0.4951171875, 0.1658935547, 0.8974609375, 0.2724609375, 0.8627929688, 0.0513000488, 0.3798828125, -0.0426025391, 0.2814941406, 0.2250976562, 0.6845703125, -0.0251617432, -0.2736816406, 0.53515625, 0.1087646484, -0.1807861328, -1.0361328125, -13.6484375, -1.095703125, 0.3161621094, 0.1525878906, 0.0316162109, -0.8798828125, -0.8071289062, -1.5595703125, -0.8491210938, 0.3088378906, -0.2587890625, -0.859375, -0.3603515625, 0.0048217773, 0.2423095703, -0.8032226562, 0.0641479492, 0.2866210938, 0.6528320312, -1.3515625, 1.005859375, 0.48046875, 1.1044921875, 0.2192382812, 0.3386230469, 1.208984375, 0.3244628906, -1.509765625, -0.4987792969, -0.0828857422, 0.2685546875, 0.6342773438, 0.314453125, 0.9853515625, 0.7377929688, -0.3176269531, 0.1103515625, -0.7241210938, -0.1263427734, -0.5986328125, 0.6845703125, 0.1805419922, -1.0380859375, 0.484375, -0.0713500977, 0.0913696289, -0.3657226562, 0.0718994141, -0.9155273438, -0.0861206055, -0.032989502, -0.4543457031, -0.4299316406, -0.3952636719, -0.3322753906, -0.0551452637, -0.5366210938, -0.236328125, 0.1879882812, 0.2216796875, 0.458984375, 0.728515625, -1.125, 0.5263671875, -0.6157226562, -0.1337890625, 0.1142578125, -0.0034503937, 0.7270507812, -0.2575683594, 0.5913085938, -0.7543945312, -1.0087890625, -0.87109375, 0.0148544312, -0.328125, -0.5239257812, 0.5654296875, -1.4775390625, -0.279296875, -0.4934082031, 0.2028808594 ]
A/S Westermoen Båtbyggeri og Mek Verksted was a shipyard located in Mandal, Norway, who specialized in high speed craft. Under the leadership of Toralf Westermoen in the 1950s, the yard has produced a long range of high speed boat types, such as: The Tjeld-class patrol boat, from 1957 The Storm-class patrol boat, from 1963 Jan Herman Linge, later famous as designer of many sailboats and other recreational vessel, served as head engineer from 1949 to 1956, and was responsible for the design of the Tjeld class. See also Westamarin Kværner Båtservice Defunct companies of Norway Shipbuilding companies of Norway Shipyards of Norway
[ 0.3908691406, 0.6079101562, 0.4697265625, -0.373046875, 0.0712280273, 0.0043792725, -0.3137207031, 0.2325439453, 0.2318115234, 0.0446166992, -0.4611816406, 0.0281524658, -0.2895507812, 1.27734375, 0.1315917969, -0.4992675781, -0.2260742188, -0.3037109375, 0.2025146484, -0.3371582031, 0.3686523438, 0.625, -0.1745605469, 0.052154541, -1.04296875, 0.9399414062, 0.073059082, -0.2395019531, -0.4130859375, -0.12890625, -0.3103027344, 0.2116699219, -1.255859375, 0.2661132812, -0.7036132812, -0.2200927734, -0.95703125, 0.2778320312, 0.1876220703, -0.2081298828, 0.6279296875, -0.294921875, 0.6728515625, -0.0880126953, 0.794921875, 0.5361328125, -0.7416992188, -0.1228027344, -1.5283203125, -0.8095703125, -1.0166015625, 0.73046875, -0.5703125, -0.024520874, 0.2449951172, -0.0294494629, 1.3603515625, -0.771484375, 0.6083984375, 0.5634765625, 0.2700195312, 0.4108886719, -0.2961425781, -0.5830078125, 0.1968994141, -0.2790527344, 0.4733886719, 1, 0.1667480469, -0.6411132812, -0.1639404297, 0.2122802734, -0.9077148438, -0.2507324219, -0.4409179688, -0.54296875, -0.763671875, 0.654296875, 0.3813476562, -0.5615234375, -1.703125, -0.2700195312, -0.3952636719, -0.7866210938, -0.0841674805, 0.1398925781, -0.0624389648, 0.2839355469, -0.8305664062, 0.1520996094, 0.5795898438, -0.357421875, -0.0715942383, -0.60546875, -0.2622070312, -0.658203125, 0.2878417969, -1.337890625, -0.4096679688, 0.5971679688, 1.060546875, -1.171875, 0.890625, 0.4602050781, -1.3330078125, 1.1845703125, -0.6137695312, -0.7768554688, -0.3732910156, -0.1231079102, 0.1715087891, 0.921875, 0.1072387695, 0.0384216309, -0.9829101562, 0.0272827148, -0.423828125, -0.0143661499, -0.8276367188, 0.4685058594, 0.4555664062, -0.55859375, 1.2724609375, -0.2257080078, 1.056640625, 0.0412597656, 0.0918579102, 0.5375976562, -0.0305175781, -0.9135742188, -0.3181152344, 0.5229492188, 0.0131607056, -0.2286376953, 0.1448974609, 0.2218017578, -0.6928710938, -0.291015625, -0.3698730469, -0.1577148438, 0.0836181641, 0.3962402344, 0.0516662598, -1.099609375, 0.2171630859, 0.1055297852, 0.5986328125, 0.8935546875, -1.6796875, 0.1301269531, 0.2692871094, 0.1701660156, -0.0236206055, 0.0010490417, 0.6381835938, -1.25, 0.3293457031, 0.0779418945, 0.4084472656, -0.8486328125, -0.0160980225, -0.6162109375, -0.7026367188, -0.9106445312, -0.4567871094, 1.1328125, -0.2985839844, 1.2294921875, -0.9711914062, -0.0330810547, -1.27734375, 0.1967773438, 1.0029296875, -1.6884765625, -0.7475585938, -0.1136474609, 0.5805664062, 0.3146972656, -0.7915039062, 0.0572814941, -0.2595214844, -0.8422851562, 0.1817626953, -0.1107177734, -0.7709960938, -1.361328125, 1.1103515625, -0.2275390625, -1.0537109375, 0.1591796875, -0.2330322266, -0.3640136719, 0.3742675781, -0.7099609375, -0.1480712891, -0.4230957031, -0.5673828125, -0.7421875, -0.3403320312, -0.654296875, -1.0068359375, -0.640625, 0.1765136719, 0.5473632812, 0.1860351562, 0.2475585938, 0.0206298828, -0.4787597656, 1.6494140625, -0.2252197266, 0.783203125, 0.1106567383, -0.042388916, 0.4526367188, -0.2315673828, 0.4052734375, 0.6171875, -0.7534179688, -0.0786743164, -1.353515625, -0.0206756592, -0.3488769531, -0.0205383301, -0.1575927734, 1.171875, -0.8212890625, -0.2883300781, -0.728515625, 0.0794677734, 0.6689453125, 0.0294647217, 1.0595703125, -0.9228515625, 0.6967773438, 0.1881103516, 0.1623535156, 0.4050292969, 0.2397460938, -0.3374023438, -0.4245605469, -0.0376586914, -0.5336914062, -0.2188720703, -2.029296875, -0.0005903244, -0.6879882812, 0.5126953125, -0.25, 0.1939697266, 0.4868164062, -0.0742797852, 0.310546875, 0.3947753906, -0.4362792969, -0.0281982422, -0.3359375, 0.48046875, -0.1763916016, 1.5048828125, -0.3159179688, 0.2388916016, 0.6186523438, -0.5654296875, -1.357421875, -0.5805664062, -0.5649414062, -0.5043945312, 1.0166015625, -0.0951538086, 0.0542297363, 0.48046875, -0.0146179199, -1.5244140625, 0.5107421875, -0.025100708, -0.2900390625, 0.0991821289, 0.3095703125, 0.2086181641, 0.1301269531, 0.8334960938, 0.5297851562, 0.0786743164, -0.0997924805, 0.3239746094, -0.4340820312, -0.626953125, 0.1221313477, -0.3742675781, -0.4680175781, 1.2041015625, -0.8569335938, -0.0747070312, -0.4826660156, 0.1326904297, -0.3391113281, 0.3837890625, -0.501953125, -0.0046882629, 0.4099121094, 0.5610351562, 0.5615234375, -0.6845703125, -1.265625, 0.294921875, 0.2280273438, 0.5791015625, 0.5166015625, -0.3486328125, 1.0517578125, -1.232421875, 0.0237121582, -0.2587890625, 0.3403320312, -0.1296386719, -0.2424316406, -0.3190917969, -0.576171875, -0.5498046875, 1.048828125, 0.3527832031, 0.3227539062, 0.8022460938, 1.1318359375, -0.3308105469, -0.1704101562, 0.1435546875, -0.69921875, 0.7514648438, -0.4118652344, -0.0084457397, -0.306640625, 1.1943359375, -0.0403137207, 0.6733398438, 0.3356933594, 0.2849121094, -0.3054199219, 0.9770507812, 0.873046875, 0.9580078125, 0.333984375, 0.3999023438, 0.7749023438, -0.1026611328, -0.0472106934, -0.7021484375, -0.6494140625, 0.1394042969, -0.0024414062, -0.0162200928, 0.8754882812, 0.4174804688, 0.4409179688, 0.1297607422, 0.4079589844, -0.396484375, -0.2963867188, 0.0765991211, 0.3283691406, 1.2861328125, 0.6650390625, -0.0004715919, -0.3684082031, 0.53515625, 0.2683105469, 1.09765625, -0.6674804688, -0.1561279297, -0.4343261719, -0.4724121094, 0.0109786987, -0.1184082031, 0.669921875, 0.4028320312, -0.7719726562, -0.8681640625, -0.3176269531, -0.3022460938, 0.6650390625, 0.5625, 0.1384277344, 0.1069335938, 0.3041992188, 0.2709960938, 0.236328125, -0.6938476562, -0.3969726562, -0.1166381836, -0.4663085938, -0.3439941406, 0.33203125, 1.2236328125, 0.1021728516, 0.5693359375, -0.7221679688, 0.4985351562, -0.6030273438, -0.5454101562, -0.4445800781, 0.79296875, -0.15234375, -0.7514648438, -0.3227539062, -0.3583984375, -1.041015625, 1.583984375, 0.5170898438, 0.5126953125, 0.1790771484, -0.4682617188, -1.0302734375, -0.0608520508, -0.8095703125, -0.4997558594, -0.0891113281, 0.2739257812, 0.3498535156, 0.4453125, -0.3022460938, -0.6123046875, -0.3764648438, 0.9497070312, 0.3693847656, 0.7451171875, 0.1077880859, 0.0675048828, -0.1690673828, -0.94140625, 0.2270507812, -0.85546875, -0.296875, -0.2155761719, -0.1583251953, -0.1291503906, -0.4548339844, -0.7260742188, -0.3562011719, 0.1711425781, -0.3239746094, 0.9399414062, 0.2003173828, -0.7416992188, -0.53125, 0.7055664062, 0.5517578125, 1.158203125, 0.0667114258, 0.7924804688, 0.2449951172, -0.1531982422, -0.1590576172, -0.4545898438, 1.40234375, 0.8349609375, -0.6499023438, -0.8198242188, -0.1632080078, 1.4072265625, 0.521484375, 0.9619140625, 0.0287628174, -0.6186523438, 0.6748046875, 2.216796875, -0.1228027344, 0.623046875, 0.2484130859, -1.2900390625, -1.15625, 0.4665527344, -0.533203125, -0.26171875, -0.2644042969, 0.728515625, 0.4089355469, 0.0222625732, 0.2521972656, 0.1479492188, 0.8330078125, 0.2604980469, -0.529296875, 1.23046875, 0.2475585938, 0.4587402344, 0.7583007812, -0.0127563477, 0.560546875, -0.0571899414, -0.0834960938, -0.0739135742, 0.9799804688, -1.44140625, -0.1717529297, -0.3503417969, -1.2255859375, -0.0489501953, -0.6889648438, -1.5302734375, -0.3837890625, -0.7783203125, -0.1962890625, 0.2954101562, 0.3818359375, 0.2817382812, -0.2470703125, -0.1077880859, 0.1510009766, -1.236328125, 0.3386230469, -0.1475830078, -0.085144043, 1.79296875, 0.638671875, 0.0335693359, -0.662109375, 0.4267578125, 0.3884277344, 1.240234375, 0.162109375, 0.5146484375, 0.9086914062, -0.857421875, 0.9936523438, -1.1220703125, -0.4809570312, -0.3979492188, -0.8608398438, -0.1025390625, -0.9111328125, -0.880859375, -0.1866455078, -0.4760742188, 0.6459960938, -0.9038085938, -0.4501953125, -0.1333007812, 0.3317871094, -0.83984375, 0.63671875, -0.978515625, 0.0899658203, 0.3122558594, -0.1384277344, 0.3515625, -0.0664672852, -0.4040527344, 0.0485839844, 0.2954101562, -1.080078125, 0.8159179688, 0.1506347656, -0.3996582031, 1.263671875, 0.29296875, 0.0693359375, -0.2687988281, -0.1611328125, -0.1096801758, -0.4125976562, -1.259765625, -0.0895385742, -0.1630859375, 0.7719726562, -1.0908203125, 0.4396972656, 0.439453125, 0.8090820312, -0.3562011719, -0.62109375, -0.3679199219, 0.2425537109, -0.7939453125, 1.4873046875, -0.1392822266, -0.6215820312, 0.8022460938, 0.2364501953, 1.16796875, -0.3659667969, 0.6015625, -0.2780761719, -1.529296875, -1.4169921875, -0.380859375, 0.42578125, 0.6533203125, -0.9331054688, -0.7255859375, -1.3173828125, -0.0962524414, -0.1857910156, 1.3193359375, 0.0787353516, 0.9282226562, 0.3425292969, -0.5205078125, 0.3588867188, -0.1025390625, 0.0363464355, 0.0178985596, -0.6440429688, 0.5668945312, 0.0887451172, 0.2004394531, 0.0740966797, 0.3337402344, 0.2609863281, 0.9086914062, 0.3713378906, 0.380859375, -0.3220214844, 1.150390625, -0.822265625, 0.3361816406, -0.1094970703, 1.0634765625, -0.7006835938, -0.85546875, -0.2270507812, 0.1427001953, -0.2600097656, -0.0109863281, -0.7163085938, 1.1083984375, -0.3452148438, -0.6323242188, -0.0746459961, 0.0020313263, -0.2493896484, 0.7114257812, -0.2971191406, -0.2336425781, 0.1767578125, -1.6162109375, 0.0847167969, -0.1417236328, -0.3430175781, 1.13671875, 0.0001370907, 0.3752441406, -0.8017578125, -0.5224609375, -0.5405273438, 0.4963378906, 0.2512207031, 0.5458984375, -0.2216796875, -0.375, -1.0234375, 0.3088378906, -0.7631835938, -0.1271972656, -0.8779296875, -0.1296386719, -0.6181640625, -0.0524902344, -0.9584960938, 0.2465820312, -0.1154174805, -0.8657226562, 0.7465820312, -0.447265625, -0.3264160156, 0.114074707, 0.0610656738, -0.1380615234, 0.2087402344, -0.2739257812, -0.9975585938, 0.6635742188, -0.3408203125, -0.548828125, 0.0786132812, -0.517578125, 1.14453125, -0.2485351562, -1.0498046875, 0.2476806641, 0.4436035156, 1.296875, -0.2583007812, 0.3388671875, 1.087890625, -0.4907226562, -0.3581542969, -0.5751953125, 0.4379882812, -0.7255859375, 0.1574707031, 0.1823730469, -0.55078125, -0.4643554688, 0.2493896484, -1.2392578125, -0.2700195312, 0.3427734375, 0.8291015625, 0.6826171875, -1.0458984375, 0.45703125, 0.1479492188, -1.49609375, 1.1591796875, -0.349609375, 0.5903320312, -1.0283203125, -0.6201171875, 0.4645996094, 0.7001953125, 0.994140625, 0.3767089844, 0.3161621094, 0.0484619141, 1.7470703125, 1.01171875, 0.5966796875, -0.4367675781, 0.0589599609, -0.8100585938, -0.576171875, -0.2114257812, 0.2507324219, 0.1412353516, -0.3103027344, 0.3259277344, 0.1038208008, 0.0623168945, 1.1494140625, 0.0104141235, 0.5444335938, -0.1077880859, 0.2136230469, -0.4545898438, -0.83984375, -0.6870117188, 0.0120315552, -0.3020019531, -0.0407104492, 0.9111328125, -1.4375, 0.0613708496, 0.7329101562, 0.9326171875, 0.3698730469, 0.2298583984, 1.5234375, -0.1982421875, 1.279296875, -1.466796875, -0.0130233765, -0.1232299805, -0.1165771484, -0.3493652344, -0.2043457031, -1.1640625, 0.7587890625, 0.70703125, -0.6845703125, 0.5571289062, -0.3813476562, -0.5590820312, 0.5830078125, 0.2478027344, 0.0343322754, 0.7915039062, -0.4958496094, 0.5498046875, 0.1045532227, 0.5634765625, 0.8696289062, -0.2448730469, -0.3117675781, 0.3337402344, 0.1873779297, 0.0452270508, -0.7236328125, -1.923828125, -1.259765625, -0.076965332, 0.697265625, -0.5004882812, -0.8139648438, 0.7377929688, -0.0901489258, 0.4870605469, 0.8452148438, 0.0480957031, -0.3859863281, -1.2412109375, 0.2126464844, -0.3383789062, -0.4558105469, 1.0849609375, 0.9052734375, -0.0199432373, -0.2741699219, -0.6860351562, 0.3935546875, -0.4221191406, -0.1551513672, 0.8950195312, -0.4890136719, -0.037109375, -0.4294433594, -0.7377929688, 0.3100585938, 0.3471679688, 0.9267578125, -0.0936889648, -0.2612304688, -0.3681640625, 0.2403564453, -0.1674804688, 0.057434082, -1.3818359375, -0.2358398438, 0.9365234375, -0.4040527344, 0.7421875, -0.2790527344, -0.2614746094, 0.2941894531, -0.4470214844, 0.6826171875, -0.173828125, 0.681640625, 0.1362304688, -1.1533203125, -0.7788085938, 0.3764648438, 0.623046875, -0.2205810547, -0.294921875, -0.3715820312, 0.8569335938, -0.8291015625, 1.2041015625, -0.6391601562, 0.435546875, 0.3383789062, 0.66796875, 0.388671875, -0.4577636719, 0.2873535156, -0.1979980469, -0.2788085938, 0.0992431641, 0.4553222656, -0.1776123047, 0.0216217041, 1.2783203125, 0.4125976562, 0.9243164062, 0.0962524414, -1.501953125, -0.3952636719, -1.576171875, -0.2722167969, -1.0595703125, 0.0974121094, -0.3505859375, 0.71484375, -0.1245727539, 0.0089569092, -0.9931640625, -0.8837890625, -1.205078125, -0.5068359375, 0.0266571045, 0.1572265625, 0.517578125, 1.646484375, -0.3525390625, -0.6586914062, -0.1903076172, -0.7797851562, -0.0401000977, -0.5166015625, 0.4985351562, -0.3395996094, 0.5229492188, 0.6147460938, -0.6293945312, 0.81640625, 0.1342773438, 0.587890625, -0.55078125, -0.6401367188, 0.0388793945, 0.5498046875, 0.3310546875, -0.4885253906, 0.3657226562, 0.2303466797, 0.2094726562, 0.359375, -0.515625, 1.0810546875, -0.8330078125, 0.3994140625, -0.1320800781, -0.548828125, -0.7763671875, 0.5024414062, -0.5126953125, -0.4953613281, -1.7314453125, -0.6259765625, 0.6840820312, 0.1572265625, 0.2983398438, -1.146484375, -0.6552734375, 0.1893310547, -0.4248046875, 0.6723632812, 0.2492675781, -0.4990234375, -1.18359375, -0.6889648438, -0.0834960938, 0.6938476562, 0.0035839081, 0.6943359375, 0.2961425781, -0.4997558594, 0.0698242188, 0.533203125, 0.2346191406, -0.291015625, 0.2573242188, 0.3718261719, -0.6958007812, 0.8139648438, 0.2385253906, 0.9067382812, -0.3637695312, -0.6538085938, 1.4755859375, -0.3740234375, 0.2252197266, -12.5703125, 0.5551757812, -0.5541992188, 0.1413574219, -0.93359375, -0.7749023438, -0.1617431641, -1.8076171875, -0.1159667969, -0.2418212891, -0.3703613281, 1.2734375, -0.8232421875, -0.4931640625, 0.2670898438, -0.1507568359, 0.1032104492, -1.2197265625, -0.1766357422, 0.6518554688, -0.2111816406, 0.478515625, -1.54296875, -1.8671875, -0.46875, -0.8247070312, 0.1654052734, 0.587890625, -0.3532714844, -0.0001747608, 0.3308105469, 0.0368041992, 0.8383789062, 0.4453125, -0.1234741211, -0.7758789062, -1.1005859375, -0.4973144531, -0.0372619629, -0.3979492188, 1.1083984375, 1.3837890625, -0.2651367188, 0.7827148438, -0.388671875, 0.6577148438, -0.6083984375, 0.4748535156, 0.2944335938, -0.1701660156, 0.7626953125, 0.8139648438, 0.3186035156, 0.0123825073, -0.1496582031, -0.6909179688, 0.73828125, -1.0654296875, -0.1893310547, 1.357421875, -0.1708984375, 0.0077896118, -0.0731811523, 1.0537109375, -0.2543945312, 0.2449951172, -0.012008667, -1.431640625, 1.28125, -0.021194458, 0.1500244141, -1.2119140625, 1.00390625, -0.326171875, 0.6616210938, -0.1346435547, 0.5366210938, -0.5756835938, -0.2570800781, 1.279296875, -0.451171875, 0.0390930176 ]
Arithmetic is an elementary branch of mathematics that is used by almost everyone for tasks ranging from simple day-to-day counting to advanced science and business calculations. Essence of arithmetic Elementary arithmetic Decimal arithmetic Decimal point Numeral Place value Face value History of arithmetic Arithmetic operations and related concepts Order of operations Addition Sum Additive inverse Subtraction Multiplication Multiplicative inverse Multiple Common multiple Division Quotient Quotition and partition Fraction Decimal fraction Proper fraction Improper fraction Vulgar fraction Ratio Common denominator Factoring Fundamental theorem of arithmetic Prime number Prime number theorem Distribution of primes Composite number Factor Common factor Euclid's algorithm for finding greatest common divisors Exponentiation (power) Exponent Square root Cube root Properties of operations Associative property Commutative property Distributive property Types of numbers Real number Rational number Integer Natural number Composite number Irrational number Odd number Even number Positive number Negative number Prime number List of prime numbers Highly composite number Perfect number Algebraic number Transcendental number Hypercomplex number Transfinite number Indefinite and fictitious numbers Elementary statistics Mean Weighted mean Median Mode Other basic concepts Combinations Percentage Permutations Proportion Rounding Scientific notation Modern arithmetic Outline of number theory Riemann zeta function L-functions Multiplicative functions Modular forms See also Elementary mathematics Table of mathematical symbols External links MathWorld article about arithmetic The New Student's Reference Work/Arithmetic (historical) Maximus Planudes' the Great Calculation an early western work on arithmetic at Convergence Arithmetic Arithmetic Arithmetic
[ -1.015625, -0.1500244141, -0.96484375, -0.7622070312, -0.1575927734, 0.1931152344, -0.1225585938, 0.2202148438, 0.2412109375, -0.3979492188, 1.458984375, 0.3142089844, -0.0582580566, 0.5854492188, -0.4436035156, -1.060546875, -0.4680175781, -0.1214599609, -0.4689941406, 0.0227050781, -0.5717773438, -0.958984375, 0.7485351562, -1.060546875, 2.068359375, -0.5302734375, -0.7211914062, 0.3352050781, 0.3857421875, 0.1810302734, -0.1107177734, 0.3037109375, 0.2182617188, -0.0208282471, -1.119140625, 0.6884765625, -0.5498046875, 0.1994628906, -0.1909179688, -0.1928710938, -0.7573242188, -0.3395996094, -0.4377441406, -0.4675292969, 0.1129760742, -0.3303222656, -0.5888671875, -0.7353515625, -0.0844726562, 0.7719726562, -0.5478515625, 0.603515625, -0.4597167969, -1.08203125, -0.0188598633, -1.0185546875, 0.578125, -1.4931640625, 0.4301757812, 0.0205078125, -1.6083984375, 0.0500183105, 0.3896484375, -0.8974609375, -0.4997558594, 1.126953125, -0.0129470825, -0.3186035156, -0.1384277344, 0.9926757812, 0.5673828125, 0.3708496094, -0.4028320312, -0.1818847656, 1.15234375, -0.1909179688, -0.5458984375, 0.1728515625, -0.0836791992, 0.7651367188, -0.8637695312, -0.544921875, -0.4423828125, -1.3955078125, -0.8549804688, -0.330078125, 0.7744140625, -0.2888183594, 0.2454833984, 0.5336914062, 0.3713378906, 0.2258300781, 0.5400390625, -0.069519043, 0.1604003906, 1.0712890625, -0.1832275391, -0.5727539062, -0.8041992188, -0.8056640625, 0.5327148438, -0.1643066406, -0.1318359375, 0.5009765625, 0.6015625, 0.9140625, -1.05078125, -1.1201171875, -0.44140625, -0.416015625, 0.0651855469, 0.2541503906, -1.1181640625, 0.6655273438, 1.4892578125, 0.4899902344, 0.2346191406, -0.3107910156, -0.5703125, 0.1623535156, 0.75, 0.8706054688, 0.3701171875, 0.3764648438, -0.345703125, -0.2082519531, -0.1784667969, 0.1823730469, -0.1048583984, 0.2419433594, -0.439453125, -0.4816894531, 0.0778808594, -0.0627441406, 0.8740234375, 0.6831054688, 0.0709228516, -0.2486572266, 0.8911132812, 0.6479492188, -0.1252441406, -0.9194335938, 0.4067382812, -0.089050293, -0.5102539062, -0.1917724609, -0.54296875, 0.0784912109, 0.0005064011, 0.6528320312, -0.7475585938, -0.0307617188, 0.3654785156, 0.1755371094, -0.9228515625, -0.2342529297, 0.3422851562, -0.1794433594, 0.4011230469, -0.4536132812, -1.05859375, -0.9194335938, 0.061706543, 1.734375, 0.380859375, 0.8540039062, 0.2005615234, -0.30078125, 0.720703125, 0.349609375, -0.6450195312, -0.0318603516, -0.7900390625, 0.7626953125, 0.6845703125, 0.2424316406, -0.4526367188, 0.1457519531, 0.2204589844, -0.4130859375, -0.0615234375, -0.3869628906, 0.3740234375, -0.3833007812, -0.0614013672, 0.5766601562, 0.2639160156, 0.5424804688, -0.2553710938, -0.6328125, -0.38671875, 0.8544921875, -0.2585449219, 0.2103271484, -0.1117553711, -0.7016601562, -0.0318603516, 0.1671142578, 0.8569335938, 0.716796875, 0.4819335938, 0.4099121094, 0.2741699219, -0.6943359375, 0.3366699219, 0.2761230469, 1.158203125, -0.0661621094, 0.5942382812, -0.4504394531, 0.4174804688, -0.93359375, 0.54296875, 0.5048828125, 0.580078125, -0.6928710938, 0.5434570312, -0.7314453125, 0.0230560303, 0.48828125, 0.3757324219, -0.1614990234, -0.0044174194, 0.2497558594, 0.1021728516, -0.7578125, 0.3471679688, 1.5009765625, -0.0562133789, 0.3696289062, -0.3657226562, 0.7495117188, -0.6845703125, -0.0296936035, -0.28125, -0.1473388672, -0.2482910156, 0.1987304688, -0.9921875, -0.9091796875, -0.1982421875, 0.61328125, 0.1391601562, -0.1390380859, 1.46875, 0.6513671875, -0.4262695312, 0.1361083984, 0.3625488281, 0.8022460938, -0.0947875977, 0.8598632812, 0.4426269531, 1.240234375, -1.0166015625, -0.3171386719, 0.1812744141, 0.9853515625, -0.2106933594, -0.5336914062, 0.0238342285, 0.3381347656, 1.15625, 0.1303710938, -0.0645141602, 0.7211914062, -0.87890625, -0.8442382812, 0.0044059753, -0.2934570312, 0.9067382812, 0.3896484375, -0.0642700195, -0.0943603516, 0.6118164062, 0.5546875, 0.2546386719, -1.005859375, 1.42578125, -0.0419311523, 0.2037353516, -0.2370605469, -0.0837402344, -0.4328613281, 0.2956542969, -0.1805419922, -0.4252929688, 0.2086181641, 0.0572509766, 0.2517089844, -0.6127929688, -0.3669433594, -0.0534057617, 0.7963867188, -0.3635253906, 0.6372070312, 0.3505859375, -0.2822265625, -0.3828125, -0.6655273438, 0.951171875, 1.955078125, -0.8935546875, -0.4697265625, -0.0051383972, 0.2257080078, -0.1978759766, -0.0552368164, -0.6958007812, 0.9521484375, 0.4304199219, -0.3325195312, -0.6943359375, 0.7978515625, -0.8671875, -0.64453125, -0.7978515625, -0.8745117188, 0.1295166016, -0.7651367188, 1.4658203125, -0.26953125, 0.5112304688, 0.7236328125, -0.1729736328, 1.5107421875, -1.349609375, -0.1146850586, -0.6982421875, 0.611328125, 0.2595214844, -0.1290283203, -0.1455078125, -0.2370605469, -0.7583007812, -0.0667724609, -0.1840820312, -1.2392578125, 0.0347900391, -1.1650390625, 0.7290039062, 0.0265655518, -0.2276611328, 0.3420410156, -0.048614502, 0.3327636719, -0.3981933594, 0.3176269531, 0.2846679688, -0.3481445312, 0.673828125, -1.4638671875, -0.9462890625, 0.0151977539, 0.3605957031, -0.0993041992, -0.4797363281, 0.5434570312, 0.6577148438, 0.3371582031, -0.0650634766, -0.3225097656, -1.58203125, -0.1424560547, -1.060546875, -0.1877441406, 0.2468261719, 0.3020019531, 0.7045898438, -0.3935546875, 0.9838867188, 0.0274200439, -0.6840820312, 0.7192382812, 0.2697753906, -0.7387695312, -0.5600585938, 0.5141601562, -0.2814941406, -0.0110092163, -0.2585449219, -0.089050293, -0.1682128906, -0.8754882812, -0.0385437012, -0.0819702148, -0.6782226562, -0.2493896484, -0.4020996094, 0.125, -0.0139312744, -0.049621582, 0.6025390625, 0.2294921875, -1.1337890625, 0.3464355469, 1.31640625, -0.9907226562, -0.1419677734, -0.4904785156, 0.0668334961, -0.9267578125, -0.2415771484, -0.0459594727, -0.0171661377, -0.2194824219, 0.6723632812, -0.1431884766, -0.5869140625, -1.0380859375, -0.3864746094, -0.3342285156, -0.1097412109, -0.7319335938, -1.373046875, -0.1696777344, -0.54296875, 0.4580078125, -0.7075195312, 0.7729492188, -0.4191894531, -0.4223632812, 0.6943359375, 0.2290039062, -0.1239013672, 0.7700195312, 0.3940429688, 0.4047851562, -0.287109375, 0.1333007812, 0.443359375, -0.0244293213, -0.064453125, -0.0495605469, -0.6865234375, -0.0317382812, -1.2705078125, -0.4514160156, -1.5615234375, 0.2387695312, 0.3322753906, -0.1416015625, -0.1385498047, 1.2490234375, -0.2807617188, 0.0772705078, -1.2294921875, 0.5161132812, -0.4650878906, 0.2941894531, 1.869140625, -0.6337890625, 0.5053710938, 0.1456298828, 0.4155273438, -0.3430175781, 0.2573242188, 0.0439758301, 0.011138916, -0.09765625, -0.2514648438, 0.0913085938, 0.0598144531, 0.8173828125, -1.23046875, -0.9584960938, -1.0478515625, 1.103515625, 0.5375976562, -0.8442382812, -0.1318359375, 1.1640625, -0.5170898438, 0.6489257812, 0.0376281738, -0.4204101562, 0.2524414062, -0.6997070312, 0.2524414062, -0.6127929688, 0.2429199219, 0.1512451172, 0.0342102051, 0.4116210938, 0.1520996094, -0.3908691406, -0.0914306641, -0.0933227539, 0.5502929688, 0.1929931641, -0.1196899414, 0.560546875, -0.7124023438, -0.1848144531, -1.0205078125, -0.6362304688, 0.2039794922, -1.130859375, 0.3098144531, -1, -0.5981445312, -0.3444824219, 0.5537109375, -1.1923828125, -0.1618652344, 0.0931396484, -0.1356201172, 0.013092041, 0.5908203125, 1.44140625, -0.3205566406, 0.552734375, -0.1128540039, 0.4790039062, -1.1787109375, 0.6040039062, -0.7001953125, -0.5791015625, 0.2329101562, -0.5263671875, -0.1276855469, 0.039276123, 1.5185546875, 0.810546875, 1.2119140625, 0.4001464844, -0.1345214844, -0.2081298828, -0.275390625, -2.142578125, 0.3032226562, 0.9516601562, 0.775390625, -0.6401367188, -1.5302734375, -0.8251953125, -0.0479125977, 0.564453125, -0.0712280273, -0.2768554688, -0.798828125, -0.3671875, -0.70703125, 0.0065383911, 0.7475585938, 0.80078125, -0.0910644531, 0.4675292969, -0.2722167969, -0.1507568359, -1.361328125, 1.1015625, -0.0336608887, -0.0881958008, -1.00390625, -0.4370117188, -0.5952148438, -0.6826171875, -0.0754394531, -0.6489257812, -0.3388671875, 0.4177246094, -0.6962890625, 0.7407226562, 0.2802734375, 0.7724609375, -0.1673583984, -0.0837402344, -0.1281738281, -0.0986328125, -0.64453125, 0.7416992188, 0.3356933594, -0.1971435547, -0.2763671875, -0.2412109375, 0.3156738281, 0.087890625, -0.6245117188, 0.1838378906, 0.6665039062, 0.2259521484, -0.2329101562, -1.447265625, 0.1834716797, 0.7944335938, 0.5698242188, -0.1719970703, -0.177734375, -0.1488037109, -0.2844238281, -0.68359375, 1.08984375, 0.568359375, -0.1975097656, -0.37890625, -1.166015625, 0.9970703125, -0.654296875, -0.5610351562, -0.1651611328, -0.2158203125, 0.0787353516, 0.0081634521, -0.3779296875, 0.0440673828, -0.5942382812, -0.2272949219, -0.2114257812, 0.5541992188, -1.1279296875, 0.6171875, -0.4816894531, 0.7026367188, 0.310546875, 0.8984375, 0.5053710938, -0.4392089844, -0.265625, -1.0859375, 0.1939697266, 0.0834960938, -0.1251220703, 0.2088623047, -0.1205444336, -0.7719726562, 0.1346435547, -0.1300048828, 0.982421875, -0.66796875, -0.3598632812, -1.5390625, 1.0322265625, -0.5190429688, -0.9033203125, 0.9052734375, -0.1547851562, 0.1784667969, 0.2685546875, 0.2575683594, -0.4418945312, -0.4111328125, -0.384765625, -1.0029296875, -0.298828125, -0.2388916016, -0.0205078125, -0.0622253418, -1.48828125, 1.666015625, -0.6494140625, 0.4985351562, 0.5620117188, 0.544921875, -0.4401855469, 0.201171875, -0.0827026367, -1.3037109375, 0.6958007812, 0.5205078125, 0.7446289062, 0.5034179688, -0.1893310547, -0.0464172363, -0.0770874023, 0.6958007812, 0.2504882812, -0.0626831055, 0.2139892578, -0.5009765625, 0.1848144531, -0.1978759766, 0.2641601562, 1.1220703125, 0.4260253906, -1.6640625, -0.5126953125, 0.3061523438, -1.21484375, -0.3771972656, 0.9301757812, 0.0747680664, 0.6645507812, -0.2088623047, -0.4868164062, -1.349609375, -0.2607421875, 0.6591796875, -0.1872558594, -0.1392822266, -0.4887695312, 0.3073730469, 0.1907958984, 0.7412109375, -0.1876220703, -1.595703125, -0.0563354492, 0.3186035156, 0.9990234375, 0.5151367188, -0.1151123047, -1.04296875, -1.08203125, -0.0862426758, -0.767578125, 0.2673339844, 0.2459716797, -0.4536132812, 0.7338867188, 0.0979003906, 0.2700195312, 0.2265625, -0.5849609375, 0.67578125, 0.4895019531, 0.3076171875, 1.181640625, 1.1142578125, -0.1489257812, -0.9741210938, -0.4829101562, 0.978515625, 1.09375, 0.1828613281, 0.2673339844, -0.3764648438, -0.8325195312, 0.1711425781, -0.107421875, 0.2375488281, -0.4404296875, -0.9545898438, -0.134765625, 0.0320739746, 0.1568603516, 0.1926269531, 0.720703125, -0.1937255859, 0.7514648438, -0.2680664062, -0.6401367188, 0.2683105469, -0.7133789062, 0.0678100586, 0.2819824219, -1.2177734375, 1.7021484375, 0.7192382812, -0.0924682617, -0.6743164062, -0.671875, 0.4187011719, -0.4562988281, -0.998046875, 0.353515625, -0.0798950195, 0.6108398438, -1.4658203125, 1.0283203125, 0.3349609375, 0.3620605469, -0.728515625, -0.041229248, -0.3344726562, 0.8681640625, -1.1865234375, 0.2113037109, 0.1560058594, -0.2269287109, -0.7333984375, -0.4899902344, 0.3735351562, -0.2600097656, 0.2727050781, -0.1547851562, 0.2531738281, 0.90234375, 0.0669555664, 0.3447265625, -0.8276367188, -0.1093139648, -0.4819335938, 0.9487304688, 0.0943603516, 0.0707397461, -0.2210693359, -0.2734375, 1.123046875, -0.7348632812, -0.5844726562, -0.0968017578, 0.4360351562, 0.7221679688, 0.6127929688, 0.2424316406, 0.2578125, 0.0747680664, -0.6650390625, 0.4411621094, 0.2429199219, 0.6684570312, 0.5952148438, -0.8969726562, -0.2211914062, -0.1899414062, -0.904296875, 1.35546875, -0.1878662109, -0.396484375, 0.5473632812, 0.2731933594, 0.4047851562, -0.712890625, 0.3508300781, 0.1602783203, -0.748046875, 0.7250976562, -0.0698242188, -0.012840271, 0.1545410156, 0.1513671875, -0.8510742188, 0.67578125, 0.4770507812, 0.8168945312, -0.2687988281, -0.7431640625, 0.1983642578, 0.595703125, 0.5366210938, -0.1159667969, -0.31640625, 0.615234375, -0.7158203125, -0.0130081177, -0.0297698975, -0.916015625, 0.2364501953, 0.771484375, 0.0028972626, -0.2098388672, -0.1944580078, 0.875, -0.439453125, 0.6870117188, 0.0021762848, 0.1926269531, -0.031463623, 0.4812011719, -1.1953125, 0.0364379883, -0.1613769531, -1.0556640625, -0.1553955078, 0.1309814453, -1.435546875, 0.4838867188, -0.0186004639, -0.3664550781, 0.2318115234, 0.314453125, 0.5561523438, -0.8032226562, 0.1087646484, 0.5151367188, -0.88671875, -1.3994140625, -0.5205078125, 0.2091064453, -0.3215332031, 0.0930786133, -0.8256835938, 2.017578125, 0.0246887207, -0.4240722656, 0.1669921875, 0.6831054688, -0.1749267578, 0.0519104004, 0.1455078125, 0.3251953125, -0.4885253906, 0.3508300781, -0.8442382812, 1.1015625, 0.2180175781, -0.556640625, -0.2109375, 0.75, -0.27734375, 0.0288543701, 0.0348815918, 0.4721679688, -0.1821289062, -0.2629394531, 0.3054199219, 0.4982910156, 0.0437927246, -0.7045898438, 0.2487792969, -0.431640625, -0.2036132812, 0.4230957031, 0.830078125, -0.2810058594, 0.1284179688, 0.015335083, -0.3837890625, 1.3408203125, -0.5522460938, -1.478515625, -0.7768554688, -1.015625, -0.7392578125, -0.7607421875, 0.3249511719, 0.2834472656, 0.5942382812, -0.376953125, -0.3659667969, -0.7817382812, -0.2927246094, 0.3168945312, -0.3537597656, -0.3388671875, -0.0610656738, -0.525390625, -0.6625976562, 1.62109375, 0.3942871094, 0.77734375, -0.2005615234, 0.1442871094, -0.2034912109, 0.1070556641, 0.7329101562, 0.4721679688, -0.1029052734, 0.0861206055, 0.3132324219, 0.4675292969, -0.99609375, -13.734375, -0.8881835938, 0.2824707031, -0.3544921875, -1.296875, 1.046875, 0.6020507812, -0.26953125, -0.1964111328, -0.4475097656, 0.310546875, 1.0185546875, -0.0891113281, 0.2653808594, 1.2431640625, -1.341796875, -0.23828125, -0.0588378906, -0.5473632812, 0.7060546875, -0.501953125, 0.3662109375, -0.6103515625, 0.357421875, -0.6728515625, 1.3037109375, 0.578125, -0.3640136719, -0.3107910156, 0.763671875, -0.0961914062, -0.2332763672, 0.0360107422, 0.7475585938, 0.0480041504, -0.94921875, -0.0879516602, -0.4453125, 1.2060546875, 0.2154541016, -1.0263671875, 0.6469726562, -0.8178710938, 0.7299804688, -0.3298339844, 0.6713867188, -0.3659667969, -0.2592773438, -0.1759033203, -0.1916503906, 0.865234375, 0.9873046875, 0.3669433594, -1.0205078125, -0.0665283203, -0.3898925781, -0.1746826172, -0.9365234375, 0.2778320312, 0.4892578125, -0.2136230469, 1.01953125, -0.384765625, -0.0660400391, 0.3510742188, -0.59375, 0.4069824219, 0.38671875, -0.3205566406, 0.034362793, 0.5092773438, -1.0068359375, 0.0936889648, 0.4440917969, 0.0186767578, 0.4868164062, 0.8129882812, -0.0110549927, -0.9228515625, 0.2724609375, -0.1574707031, 0.7719726562 ]
Algebra is one of the main branches of mathematics, covering the study of structure, relation and quantity. Algebra studies the effects of adding and multiplying numbers, variables, and polynomials, along with their factorization and determining their roots. In addition to working directly with numbers, algebra also covers symbols, variables, and set elements. Addition and multiplication are general operations, but their precise definitions lead to structures such as groups, rings, and fields. Branches Pre-algebra Elementary algebra Abstract algebra Linear algebra Universal algebra Algebraic equations An algebraic equation is an equation involving only algebraic expressions in the unknowns. These are further classified by degree. Linear equation – algebraic equation of degree one. Polynomial equation – equation in which a polynomial is set equal to another polynomial. Transcendental equation – equation involving a transcendental function of one of its variables. Functional equation – equation in which the unknowns are functions rather than simple quantities. Differential equation – equation involving derivatives. Integral equation – equation involving integrals. Diophantine equation – equation where the only solutions of interest of the unknowns are the integer ones. History History of algebra General algebra concepts Fundamental theorem of algebra – states that every non-constant single-variable polynomial with complex coefficients has at least one complex root. This includes polynomials with real coefficients, since every real number is a complex number with an imaginary part equal to zero.
[ -1.4814453125, -0.0539245605, -2.08984375, 0.3881835938, -0.0518493652, 0.732421875, 0.1025390625, 0.2463378906, 0.3071289062, -0.1446533203, 0.8393554688, -0.1491699219, 0.3168945312, -0.1195068359, 0.7294921875, -0.8388671875, -0.7939453125, -0.5375976562, -0.3737792969, -0.4165039062, 0.1130981445, -0.4919433594, 0.2338867188, -1.5087890625, 1.248046875, -0.0785522461, 0.2036132812, 0.1123046875, 0.23046875, -0.0233154297, 0.2263183594, 0.6567382812, 0.4931640625, 0.5668945312, -0.630859375, 0.3881835938, -0.1693115234, -0.85546875, 0.0667724609, 0.3513183594, -0.4301757812, 0.1882324219, -0.8896484375, -0.607421875, 0.1613769531, 0.0390930176, -0.5766601562, -0.2883300781, -0.8505859375, 0.8955078125, -0.3459472656, -0.4455566406, 0.0352783203, -0.7763671875, 0.0214080811, -0.8212890625, 0.302734375, -1.1015625, 1.0546875, 0.65234375, -0.740234375, -0.2795410156, 0.6303710938, -1.4970703125, -0.4870605469, 0.8530273438, -0.5249023438, 0.116027832, 0.484375, -0.2270507812, 0.2878417969, 0.4360351562, -0.9692382812, -0.2814941406, 0.2017822266, -0.0114974976, -0.0545959473, -0.3056640625, 0.1802978516, 0.7504882812, -0.6123046875, -0.3688964844, -0.43359375, -0.4714355469, -0.5654296875, -0.2878417969, 0.1810302734, -0.9833984375, 0.3896484375, 0.8134765625, -0.3752441406, -0.6162109375, -0.2238769531, -0.0503540039, -0.4777832031, 0.7622070312, 0.4609375, -0.2077636719, -0.3452148438, 0.0481872559, 0.2690429688, -0.4655761719, 0.7890625, 0.3449707031, 0.7890625, 1.447265625, -0.650390625, -1.1845703125, -0.4423828125, -0.75390625, -0.2220458984, -0.2027587891, -0.9072265625, 0.7055664062, -0.0048217773, 0.4213867188, 0.2971191406, 0.0474243164, -0.6225585938, 0.5366210938, -0.0748901367, 1.107421875, 0.43359375, -0.0679931641, -0.2434082031, -0.5380859375, -0.1903076172, -0.2336425781, -0.314453125, 0.9360351562, 0.0681152344, -0.72265625, -0.2563476562, -0.0624389648, 1.16015625, 0.0354309082, -0.6826171875, 1.05859375, 1.4619140625, 0.5571289062, -0.0178070068, -0.1331787109, 0.5517578125, -0.1505126953, -0.7470703125, 0.4826660156, -1.126953125, 0.3635253906, 0.0411682129, 0.8764648438, -0.1695556641, -0.5073242188, 0.6611328125, 0.3930664062, -0.8759765625, -0.3439941406, 0.5815429688, 0.3002929688, 0.3762207031, 0.3676757812, -0.5029296875, -0.916015625, 0.048614502, 0.6391601562, -0.2604980469, 1.3603515625, 0.3913574219, -0.4182128906, 0.2170410156, 0.1440429688, -0.8984375, 0.498046875, -0.1889648438, 0.2327880859, -0.1842041016, 0.1201171875, -0.050994873, 0.5356445312, 0.2037353516, 0.345703125, -0.8002929688, -1.041015625, 0.0423583984, -0.337890625, 0.5190429688, 0.6201171875, -0.2023925781, 0.4538574219, -0.2893066406, 0.0538330078, -0.2836914062, 0.455078125, -0.3564453125, -0.5668945312, 0.4724121094, -1.1220703125, -0.2272949219, 0.0952758789, 0.7294921875, 0.5571289062, 0.2130126953, -0.1021118164, 0.3659667969, -0.5615234375, 0.1881103516, 0.1654052734, 0.8803710938, -0.0327453613, -0.421875, -0.1370849609, 0.2758789062, -0.2299804688, -0.1322021484, 0.88671875, 1.01171875, -0.921875, -0.1926269531, -0.2169189453, -0.1123657227, -0.2409667969, 0.0841674805, 0.6450195312, -0.045135498, 1.40234375, 0.244140625, -0.9189453125, 0.4072265625, 1.22265625, -0.0972900391, -0.3354492188, -0.1794433594, 0.6655273438, 0.0117721558, 0.720703125, 0.1796875, 0.2861328125, 0.326171875, -0.6850585938, -0.9174804688, 0.2049560547, 0.2069091797, 0.26953125, -0.3405761719, -0.4682617188, 0.9565429688, -0.7587890625, 0.4331054688, -0.3132324219, -0.9057617188, 0.8950195312, -0.5068359375, 0.7241210938, 1.5419921875, 0.6328125, -0.2885742188, 0.1048583984, 0.142578125, 0.6274414062, -0.5541992188, -0.4797363281, -0.0848388672, 0.0936279297, 1.47265625, -0.9775390625, -0.0102615356, 0.6889648438, -0.9252929688, -0.0787353516, 0.5629882812, 1.1669921875, 0.724609375, -0.4426269531, -0.09375, 0.063293457, 0.1732177734, 0.3940429688, 0.5458984375, -0.8803710938, 0.9951171875, 0.1749267578, 0.6328125, 0.0830078125, -0.4543457031, -0.4658203125, 0.533203125, -0.2354736328, -0.8330078125, 0.53515625, 0.501953125, 0.1129760742, -0.3696289062, -0.2900390625, -0.1025390625, 0.0841674805, 0.2305908203, 0.767578125, 0.5107421875, -0.8491210938, -0.3972167969, -0.1665039062, 0.8857421875, 0.8315429688, -0.3754882812, 0.93359375, -0.0059356689, 0.4965820312, -0.4855957031, -0.0741577148, -0.1832275391, 0.4526367188, 0.1768798828, -0.4040527344, -0.3403320312, 1.1337890625, -0.9296875, -1.0673828125, -0.859375, -0.4318847656, 0.9448242188, -0.4401855469, 0.9008789062, -0.7802734375, 0.572265625, 0.6728515625, 0.0648193359, 0.9633789062, -0.1231079102, 0.4067382812, -0.5751953125, -0.2944335938, 0.1831054688, 0.3139648438, 0.3796386719, 0.0602111816, -0.3391113281, 0.0330505371, -1.1005859375, -0.9658203125, 0.59765625, 0.203125, 1.2548828125, -0.1100463867, -0.8828125, 0.1810302734, 0.1413574219, -1.0126953125, -1.3486328125, 0.0070724487, 0.314453125, -0.1938476562, 0.728515625, -0.4077148438, -0.4631347656, -0.0974731445, 0.7587890625, -0.2661132812, -1.212890625, 1.5205078125, 0.2641601562, -0.2626953125, 0.86328125, -0.1094360352, -1.212890625, 0.56640625, -1.166015625, -0.4067382812, 0.5190429688, 0.5620117188, 0.6704101562, -1.25390625, 0.7104492188, -0.8793945312, -0.9580078125, 0.1800537109, 1.080078125, -0.9516601562, -0.0422363281, 0.4641113281, -0.2127685547, 0.6127929688, 0.1905517578, -0.5629882812, -0.21484375, 0.4345703125, -0.8530273438, -0.244140625, 0.4421386719, 0.1619873047, -0.3698730469, -0.2419433594, -0.3784179688, -1.9951171875, 0.5288085938, 0.3879394531, -0.8120117188, 0.6010742188, 1.015625, -1.181640625, -0.5532226562, -0.1467285156, 0.7138671875, -0.5219726562, 0.3576660156, -0.2360839844, -0.4353027344, -0.447265625, 0.83203125, 0.1595458984, 0.0016384125, -1.4072265625, -0.1723632812, -0.3330078125, -0.1578369141, 0.6459960938, -0.5971679688, -0.3276367188, -0.2314453125, 0.4963378906, -0.5014648438, 0.1149291992, 0.2639160156, -0.58203125, 0.9111328125, 0.1782226562, -0.1466064453, 0.6123046875, -0.5883789062, -0.0044898987, -0.7290039062, 0.050567627, -0.0178985596, 0.9067382812, 0.5537109375, -0.4348144531, 0.3674316406, -0.6430664062, -0.98828125, -0.69140625, -0.8447265625, -0.2121582031, -0.2275390625, 0.1779785156, -0.0115280151, 0.9760742188, -0.3752441406, -1.1376953125, -0.8715820312, 0.0469665527, -0.3542480469, -0.6831054688, 1.06640625, -0.1492919922, 1.1435546875, 0.0958862305, 0.1563720703, 1.146484375, 0.2235107422, -0.2604980469, -0.1756591797, 0.650390625, -0.5537109375, -0.3103027344, 0.1745605469, 0.9321289062, -1.6376953125, -1.27734375, -1.056640625, 1.384765625, -0.3879394531, -0.6440429688, -1.099609375, 0.3627929688, -0.2761230469, 0.2509765625, -0.0572509766, -0.0635375977, -0.3720703125, -0.392578125, 0.7900390625, -2.00390625, 1.0126953125, 0.0314941406, 0.5131835938, 0.1381835938, 0.5986328125, -0.4221191406, -0.5268554688, -0.1011962891, 0.4663085938, -0.2624511719, 0.0437927246, 0.6025390625, -0.7416992188, -1.0849609375, -0.50390625, -0.8315429688, 0.2734375, -0.4721679688, 0.2045898438, -0.7197265625, 0.1937255859, 0.3530273438, 0.4033203125, -1.0126953125, -0.8471679688, 0.0554504395, -0.4682617188, 0.3513183594, -0.020614624, 0.302734375, -0.2312011719, 0.2658691406, -0.5366210938, 0.5244140625, -0.7309570312, -0.0936889648, -0.9404296875, -0.4443359375, 0.330078125, -0.7133789062, -1.037109375, -0.677734375, 0.4333496094, 0.1618652344, 0.4553222656, 0.5043945312, -0.5532226562, -0.2149658203, 0.4184570312, -0.8637695312, 0.4763183594, 0.9853515625, 1.0751953125, -0.1057128906, -0.931640625, -0.9682617188, -0.5634765625, 0.8247070312, -0.0382080078, 0.0000573397, 0.2464599609, -0.3522949219, -0.7470703125, 0.1577148438, -0.5454101562, 1.8779296875, 0.669921875, 0.416015625, 0.0407714844, 0.8974609375, -0.6728515625, 1.0517578125, -0.2946777344, 0.5244140625, -0.1274414062, -0.3034667969, -0.830078125, 0.3073730469, 0.7426757812, -0.4621582031, 0.41015625, -0.3986816406, -0.2561035156, 0.4226074219, -0.515625, 0.3237304688, 0.1405029297, -0.0782470703, -0.6616210938, 0.0805053711, -0.9951171875, 0.447265625, 0.8232421875, 0.97265625, 0.6381835938, 0.5625, -0.015914917, 0.0885620117, -0.4426269531, 0.4826660156, 0.640625, -0.1049804688, -0.490234375, -1.3115234375, -0.0123901367, 1.3134765625, -0.4855957031, -1.37109375, 0.2471923828, -0.2690429688, -0.0523376465, -0.5629882812, 1.3134765625, 0.0431518555, -0.1815185547, -0.0528869629, -0.615234375, 1.0009765625, -0.2454833984, -0.2137451172, 0.4455566406, -0.3063964844, -0.4445800781, -0.2856445312, -0.9311523438, 0.3271484375, -0.3393554688, -0.1242675781, 0.3173828125, 0.3813476562, -0.4653320312, 0.564453125, -0.0023288727, -0.0317687988, 0.4243164062, 0.6259765625, 0.5615234375, -0.1790771484, 0.1459960938, -0.1564941406, -0.798828125, 0.9106445312, -0.6918945312, -0.0171356201, 0.2272949219, -0.6240234375, -0.0830078125, -0.7607421875, 0.1151733398, -0.767578125, -0.2182617188, -0.4497070312, -0.1069946289, 0.4787597656, -0.9775390625, 0.6752929688, -0.4501953125, 0.2429199219, 0.1184082031, -0.5659179688, -0.6137695312, 0.4448242188, 0.1962890625, -0.8359375, -0.9916992188, -0.53515625, 0.2135009766, 0.2276611328, -0.7641601562, 0.1853027344, -0.76171875, -0.1989746094, 0.6166992188, -0.0528259277, -1.8291015625, 0.3000488281, 0.0985107422, -0.9677734375, 0.063659668, 1.14453125, 0.2827148438, -0.0145874023, -0.8579101562, 0.1015625, -0.6850585938, 0.9326171875, -0.0226898193, -0.4738769531, 0.4987792969, -0.4094238281, -1.353515625, -0.5263671875, -0.0193786621, 1.3349609375, 0.5043945312, -0.6704101562, -0.3684082031, -0.7666015625, -1.38671875, -0.1118164062, 1.1923828125, 0.0685424805, 0.6201171875, 0.4147949219, -0.1956787109, -1.4521484375, -0.5830078125, -0.037902832, -0.1431884766, 0.6352539062, -0.5068359375, 0.0262756348, 0.2934570312, 0.2565917969, -0.2094726562, -1.126953125, 0.0808105469, 0.0447692871, 2.037109375, 1.173828125, 0.1361083984, 0.1317138672, -0.8208007812, -0.5400390625, -0.587890625, 0.6372070312, 0.1467285156, 0.1885986328, 0.7734375, -0.3681640625, -0.2568359375, 0.0274810791, -0.0009870529, -0.4296875, -0.0759277344, 1.2578125, -0.2731933594, 1.1025390625, -0.2139892578, -0.7255859375, -0.2648925781, 1.35546875, 1.12890625, 0.1138916016, -0.0697631836, -0.1529541016, -0.7905273438, 0.0543518066, -0.1984863281, 0.2147216797, -0.7778320312, -0.611328125, 0.028137207, -0.5703125, 1.0927734375, 0.9580078125, 1.3154296875, -0.5502929688, -0.283203125, -0.2678222656, -0.2274169922, 0.0299835205, -0.5341796875, -0.0007719994, -0.0878295898, -0.2897949219, 0.9873046875, 1.1298828125, -0.673828125, -0.2902832031, -0.4797363281, 0.8540039062, 0.2927246094, -1.6591796875, -0.2214355469, -0.4216308594, 0.556640625, -0.7641601562, 0.2863769531, 0.1478271484, 0.76953125, -0.4108886719, -0.3583984375, -0.4348144531, 0.826171875, -0.2446289062, 0.0590209961, 0.3439941406, -0.1351318359, -0.2141113281, -1.076171875, 0.7436523438, -0.1860351562, 0.2131347656, -0.7329101562, 0.0503540039, 1.2470703125, 0.3371582031, 0.2462158203, -0.8325195312, -0.0678100586, 0.4802246094, 0.1750488281, 0.0505371094, -0.0302429199, -0.2186279297, 0.0079269409, 0.212890625, -0.3361816406, -0.9321289062, -0.2958984375, 0.0783081055, 0.7216796875, 0.4177246094, 0.2143554688, 0.1102294922, -0.1945800781, -0.7841796875, 0.5380859375, 0.9614257812, 0.7250976562, -0.092956543, -0.4145507812, -0.6704101562, -0.447265625, 0.2729492188, 0.6958007812, 0.4694824219, -1.189453125, -0.0480651855, 0.4665527344, 0.3103027344, -0.4377441406, -0.3637695312, 0.3947753906, -0.896484375, 1.048828125, -0.2502441406, -0.6616210938, -0.2807617188, -0.2186279297, -0.2340087891, -0.110534668, 0.9169921875, 0.8491210938, -0.5068359375, -0.3095703125, 0.8618164062, 0.1772460938, -0.4016113281, 0.4758300781, -0.1719970703, 0.490234375, 0.1862792969, 0.5712890625, 0.0393676758, -0.9609375, -0.1668701172, 0.4609375, -0.3918457031, -0.0416870117, -0.5649414062, 0.2993164062, -0.3742675781, 0.2854003906, 0.6240234375, 1.123046875, -0.25, -0.3093261719, -1.1884765625, -0.0453186035, -0.6533203125, -0.1680908203, 0.2381591797, 0.6303710938, -0.8837890625, 0.4104003906, 0.1282958984, -0.7622070312, 1.0751953125, 0.2039794922, 0.2385253906, -1.3447265625, -0.3466796875, 0.2717285156, -0.5927734375, -1.048828125, -0.5200195312, -0.1702880859, 0.2712402344, -0.0153198242, -0.0116271973, 0.7446289062, -0.361328125, -0.8837890625, -0.1995849609, -0.0913085938, -0.0922241211, 0.6450195312, 0.0379638672, 0.5693359375, -0.8969726562, 0.3259277344, 0.0977172852, 1.0869140625, 0.5639648438, 0.0146713257, -0.404296875, 0.1878662109, -1.0625, -0.2700195312, -0.6884765625, 0.7661132812, 0.2021484375, -0.3310546875, 0.7485351562, 0.1838378906, -0.146484375, -0.6723632812, 0.1489257812, -0.2873535156, -0.466796875, 0.5297851562, 0.7915039062, -0.3166503906, -0.6518554688, 0.5712890625, -0.0998535156, 0.900390625, -0.4951171875, -1.4814453125, -0.0938110352, -1.259765625, -0.3115234375, -0.5361328125, 0.7373046875, 0.1704101562, 0.5395507812, -0.58984375, 0.019241333, 0.1035766602, -0.5922851562, 0.7514648438, 1.1357421875, -0.1716308594, -0.0985107422, -1.13671875, -0.3869628906, 1.470703125, 2.029296875, 0.458984375, 0.4829101562, 0.0752563477, 0.3969726562, 0.5576171875, 0.8823242188, 0.8374023438, 0.0701904297, 0.5717773438, -0.1861572266, 0.4372558594, -0.8935546875, -13.78125, -0.6801757812, 0.0104141235, -0.7006835938, -2.126953125, 0.3562011719, 0.0863647461, -0.1497802734, -0.2236328125, -0.6987304688, -0.2043457031, 0.7807617188, -0.923828125, -0.6411132812, 0.7978515625, -1.08984375, -0.8115234375, 0.1402587891, -0.6357421875, 0.0948486328, -0.3291015625, 0.4455566406, -0.1861572266, -0.1876220703, -0.5537109375, 0.6928710938, 0.3684082031, -0.1959228516, -0.587890625, 0.625, 0.1539306641, -0.4079589844, 0.0850219727, 0.8842773438, -0.0716552734, 0.0507202148, 0.0353088379, 0.7109375, 0.1791992188, -0.7270507812, -0.2546386719, 0.91796875, -1.0146484375, -0.5258789062, -0.4404296875, 0.1763916016, -0.24609375, -0.7744140625, -0.4587402344, -0.4919433594, 0.7651367188, 1.220703125, 0.1995849609, -0.5615234375, -0.1123657227, 0.0650024414, -0.3266601562, -0.3413085938, -0.8149414062, 0.1372070312, 0.0287475586, 1.150390625, 0.0006546974, 0.0880737305, 0.5922851562, -0.6826171875, 0.4201660156, 0.0548706055, -1.6162109375, -0.4750976562, 0.4147949219, 0.0941162109, 0.4455566406, 0.4631347656, 0.630859375, -0.3168945312, 0.3286132812, 0.4165039062, -0.833984375, 0.673828125, -0.3454589844, 0.1832275391 ]
Equations – equality of two mathematical expressions Linear equation – an algebraic equation with a degree of one Quadratic equation – an algebraic equation with a degree of two Cubic equation – an algebraic equation with a degree of three Quartic equation – an algebraic equation with a degree of four Quintic equation – an algebraic equation with a degree of five Polynomial – an algebraic expression consisting of variables and coefficients Inequalities – a comparison between values Functions – mapping that associates a single output value with each input value Sequences – ordered list of elements either finite or infinite Systems of equations – finite set of equations Vectors – element of a vector space Matrix – two dimensional array of numbers Vector space – basic algebraic structure of linear algebra Field – algebraic structure with addition, multiplication and division Groups – algebraic structure with a single binary operation Rings – algebraic structure with addition and multiplication See also Table of mathematical symbols External links '4000 Years of Algebra', lecture by Robin Wilson, at Gresham College, 17 October 2007 (available for MP3 and MP4 download, as well as a text file). ExampleProblems.com Example problems and solutions from basic and abstract algebra. List Algebra Algebra Algebra
[ -1.158203125, 0.580078125, -1.3017578125, 0.5849609375, 0.025894165, 0.7153320312, 0.7412109375, 0.12890625, -0.1916503906, -0.1356201172, 0.3649902344, 0.0099182129, -0.2548828125, -0.2135009766, 0.8676757812, -0.3107910156, -0.3791503906, 0.2176513672, 0.4965820312, 0.0030956268, 0.52734375, -0.1629638672, 1.2001953125, -1.8837890625, 1.55859375, -0.1079101562, 0.3530273438, 0.2978515625, -0.1381835938, 0.061920166, 0.5927734375, 0.3527832031, -0.134765625, 0.6020507812, -1.2587890625, 0.0136184692, -0.7280273438, -1.2578125, -0.1434326172, 0.5146484375, -0.4030761719, -0.0370178223, -0.0994262695, -0.76953125, 0.0949707031, 0.3520507812, -1.0927734375, -0.693359375, -0.7524414062, 0.9794921875, -0.2227783203, -0.6005859375, 0.0355834961, -0.4868164062, 0.54296875, -0.8837890625, 0.5131835938, -0.6616210938, 1.1796875, 0.86328125, 0.2639160156, -0.1496582031, 0.5229492188, -1.3310546875, -0.4934082031, 1.33984375, -1.2333984375, -0.7143554688, 0.6328125, 0.5517578125, 0.1193847656, 0.3259277344, -1.169921875, -0.2414550781, -0.5473632812, -0.2388916016, 0.6274414062, -0.1567382812, -0.0334777832, 1.1201171875, -0.4299316406, 0.032989502, -0.33984375, -1.33984375, -0.0478210449, -0.7431640625, -0.2907714844, -0.513671875, 0.8540039062, 0.75, -0.1228027344, -0.7172851562, -0.7265625, -0.4887695312, 0.0990600586, 0.6787109375, -0.2927246094, -0.0120697021, -0.2517089844, -1.0283203125, 0.2095947266, -0.3049316406, 0.953125, -0.6577148438, 0.9194335938, 1.2998046875, -0.7250976562, -0.1911621094, -0.8754882812, 0.0596923828, 0.2668457031, -1.2109375, -0.4663085938, 1.6806640625, -0.5263671875, 0.1781005859, 0.3266601562, 0.3154296875, -0.2734375, 0.6879882812, -0.0848999023, 0.7749023438, 0.4331054688, 0.2739257812, -0.1687011719, 0.052734375, -0.6796875, -0.4333496094, 0.1557617188, 0.2008056641, 0.0192718506, -1.1083984375, 0.0666503906, -0.2302246094, 1.259765625, 0.0049362183, -0.7758789062, 1.2421875, 1.43359375, 0.3969726562, -0.36328125, 0.1436767578, 0.1749267578, -1.0927734375, -0.3298339844, 0.2080078125, -0.9399414062, 0.1943359375, 0.1533203125, 0.501953125, -1.0224609375, -0.71875, 1.015625, 0.4357910156, -0.5346679688, 0.2998046875, 0.7670898438, -0.2902832031, 0.3020019531, 0.8012695312, -0.0218963623, -1.064453125, -0.0755615234, 0.6264648438, -0.7919921875, 0.1392822266, 0.150390625, -0.1313476562, 0.8427734375, 0.4028320312, -0.8095703125, -0.1781005859, 0.1477050781, 0.2454833984, -0.3698730469, 0.8999023438, -1.0556640625, -0.0827636719, 0.1034545898, 0.484375, 0.2221679688, -1, -0.0206604004, 0.0102386475, 0.7060546875, 0.1668701172, 0.0104522705, -0.1815185547, -0.5834960938, -0.708984375, -0.9765625, 0.4074707031, -0.4453125, -0.755859375, -0.1625976562, -1.98046875, 0.0551452637, -0.3015136719, 0.3498535156, 0.6235351562, 0.40234375, 0.1909179688, -0.0953369141, -0.7915039062, -0.583984375, 0.3520507812, 0.1220703125, -0.7133789062, -0.6640625, -0.6025390625, 0.4152832031, -0.0164337158, 0.0129547119, 0.4201660156, 0.9340820312, -0.9311523438, 0.1052856445, -0.4035644531, 0.2468261719, 0.2045898438, 0.4848632812, -0.3911132812, 0.6528320312, 1.3671875, -0.4167480469, -0.6674804688, 0.4912109375, 2.201171875, 0.2135009766, 0.7807617188, -0.0334777832, 1.0693359375, -0.1726074219, 1.021484375, 0.7719726562, 0.603515625, -0.2430419922, -0.6694335938, -1.0146484375, 0.4375, 0.2398681641, -0.142578125, -0.3244628906, -0.0487976074, 1.2294921875, -0.6064453125, -0.0672607422, -0.9228515625, -0.8818359375, 0.7846679688, -1.0224609375, 0.6430664062, 0.318359375, 0.7749023438, 0.6904296875, 0.7094726562, 0.5859375, 0.1588134766, -0.4084472656, 0.0187072754, 0.0043945312, -0.2998046875, 0.4755859375, -1.046875, -0.4094238281, 0.908203125, -1.1318359375, 0.4453125, 0.626953125, 0.9204101562, 0.3991699219, 0.0968017578, -0.1677246094, -0.7470703125, -0.2124023438, 0.6381835938, 0.6118164062, -1.1748046875, 1.369140625, 0.326171875, 0.4252929688, 0.65625, -0.2932128906, -0.3986816406, 0.0228881836, 0.3806152344, 0.6118164062, 0.0939331055, 0.6713867188, 0.2570800781, -1.1142578125, -0.0977783203, 0.5463867188, -0.1145629883, 0.4606933594, 0.4365234375, 0.2561035156, -0.9379882812, -0.0390319824, -0.3039550781, 0.8125, 0.2315673828, 1.1767578125, 0.2563476562, 0.4956054688, -0.203125, -0.6997070312, -0.0739135742, -0.4548339844, 0.5361328125, -0.6000976562, -0.2607421875, 0.0473327637, 1.0244140625, -0.8696289062, -0.8203125, -0.947265625, -0.0780639648, 1.330078125, -0.0139007568, 0.4809570312, -0.5546875, 1.0107421875, 0.7001953125, 0.1911621094, 0.9516601562, -0.2059326172, -0.0938110352, -0.5747070312, -0.0288391113, 0.1590576172, -0.158203125, -0.4013671875, -0.1096801758, -0.2958984375, 0.2398681641, -0.6391601562, -0.8686523438, 0.5336914062, -0.0805664062, 0.8666992188, -0.6083984375, -0.4670410156, 0.0888671875, 0.0581970215, -0.3666992188, -1.7998046875, 0.1934814453, 0.1093139648, -0.0395202637, 0.8305664062, -0.18359375, -1.0029296875, 0.1977539062, 0.5170898438, 0.0165100098, -0.9731445312, 1.44921875, 0.1340332031, 0.0061073303, 0.3229980469, -0.3420410156, -1.474609375, 0.4377441406, -1.4267578125, 0.0419921875, 0.6157226562, -0.1083984375, 1.3583984375, -0.4111328125, 0.1662597656, 0.0382080078, -1.099609375, 0.7294921875, 0.890625, -0.8266601562, -0.6098632812, 0.7290039062, -0.416015625, 0.2880859375, -0.0724487305, -0.4736328125, -0.0880126953, 0.3837890625, -0.783203125, 0.1098022461, 0.541015625, 0.3286132812, -0.662109375, 0.580078125, 0.4074707031, -1.3115234375, 1.2451171875, 0.8530273438, -0.7260742188, 0.4340820312, 0.2805175781, -0.6801757812, 0.1531982422, -1.4873046875, 1.52734375, 0.106262207, -0.4592285156, 0.4702148438, -0.4309082031, 0.1779785156, 0.4787597656, 0.4211425781, 0.4931640625, -1.259765625, -0.3298339844, -0.7236328125, 0.2437744141, 0.8798828125, -0.4208984375, -0.2604980469, -0.7509765625, 0.7353515625, 0.1566162109, 0.3427734375, 0.3596191406, -0.5234375, 0.4379882812, 0.8911132812, 0.125, 0.509765625, -0.9360351562, 0.2237548828, -0.3620605469, -0.3576660156, -0.8334960938, 1.001953125, 0.6333007812, -0.6328125, 0.0133285522, -0.7045898438, -0.8598632812, -0.3205566406, -0.1363525391, 0.1494140625, -0.2802734375, 0.3459472656, 0.0541381836, 2.015625, -0.2709960938, -0.7133789062, -1.5087890625, -0.4255371094, -0.3095703125, -0.83203125, 0.4221191406, 0.6391601562, 0.9521484375, -0.1762695312, 0.0415649414, 1.2451171875, -0.646484375, 0.3520507812, 0.4255371094, 1.068359375, 0.14453125, -0.3444824219, -0.4714355469, 0.62109375, -1.19921875, -0.7431640625, -0.48046875, 1.203125, -0.3608398438, -0.2856445312, -0.9765625, 0.2548828125, -0.4104003906, 0.2775878906, 0.023147583, -0.3920898438, -0.1204223633, 0.2807617188, 0.0376281738, -2.291015625, 0.8896484375, 0.24609375, -0.5444335938, -0.3547363281, 0.0130996704, -0.5595703125, -0.4248046875, 0.3122558594, 0.8056640625, -0.4548339844, 0.1805419922, 0.8862304688, -0.9301757812, -0.6455078125, -0.5791015625, -0.6752929688, -0.7939453125, -0.3256835938, 0.8540039062, -0.3994140625, 0.0300292969, 0.4533691406, -0.3513183594, -1.03515625, -1.046875, 0.0301971436, -0.0897216797, -0.0176391602, 0.0539245605, -0.0453796387, -0.1745605469, 0.2644042969, -0.6958007812, 0.6044921875, -0.6694335938, 0.5639648438, -0.9916992188, -0.4055175781, 0.4885253906, -1.2255859375, -0.4265136719, -0.0646972656, 0.2248535156, 0.3896484375, 0.5478515625, 0.2086181641, -1.328125, -0.4091796875, 0.3908691406, -1.28515625, 0.80078125, 1.1669921875, 0.2042236328, 0.060760498, -0.3586425781, -1.26171875, 0.359375, 0.2220458984, 0.1251220703, 0.1516113281, 0.2310791016, -0.1184082031, 0.2178955078, 0.4975585938, -0.1604003906, 0.8920898438, 0.2834472656, 0.1988525391, 0.126953125, 0.3122558594, -0.7739257812, 1.591796875, 0.2578125, 0.7856445312, -0.3217773438, 0.0611572266, -1.48046875, 0.1734619141, -0.5249023438, -0.8857421875, 0.1983642578, -0.6049804688, -0.458984375, 0.4455566406, 0.6430664062, 1.4443359375, -0.1876220703, -0.2205810547, -0.0277404785, 0.1662597656, -0.7309570312, -0.1923828125, 1.4814453125, 0.8720703125, 1.015625, 1.1171875, -0.3220214844, 0.0974731445, -0.0873413086, -0.7177734375, 0.7465820312, -0.0371398926, 0.3449707031, -1.724609375, 0.3630371094, 0.8969726562, 0.2087402344, -0.7182617188, 0.2287597656, -0.7094726562, 0.1885986328, -0.4252929688, 1.1337890625, 0.1768798828, -0.6909179688, -0.1876220703, -0.9345703125, 0.6254882812, -0.1719970703, -0.1014404297, 0.1350097656, -0.6196289062, -0.798828125, -0.2678222656, -0.9399414062, 0.5, -0.3039550781, 0.8862304688, -0.5942382812, 1.130859375, -0.2739257812, -0.0140151978, 0.9458007812, -0.0848388672, 0.5942382812, 1.5302734375, 0.8823242188, -0.55859375, 0.2795410156, -0.7412109375, -0.2531738281, 0.9536132812, -0.986328125, -0.69921875, 0.6137695312, -0.6528320312, 0.078918457, -0.5756835938, -0.1759033203, -0.501953125, 0.7822265625, -0.3894042969, -0.0465087891, 0.6020507812, -1.05078125, 0.5834960938, -0.0326843262, 0.2413330078, 0.1788330078, 0.0409545898, -0.0466918945, 0.1929931641, 1.0146484375, -1.4873046875, -0.84375, -0.4765625, 0.0926513672, 0.5356445312, -0.5649414062, 0.6958007812, -0.7783203125, 0.0386962891, 0.4729003906, -0.6376953125, -1.6005859375, 0.2200927734, 0.6484375, -0.2944335938, 0.7587890625, 0.8642578125, -0.5751953125, 0.5561523438, -0.9809570312, 0.5405273438, -0.408203125, 0.7270507812, -0.3708496094, -0.1369628906, -0.2541503906, -0.3703613281, -1.2587890625, -0.3869628906, 0.8984375, 0.8046875, 0.0470275879, -1.6015625, 1.0927734375, -0.21875, -1.6728515625, -0.6225585938, 0.87109375, -0.3168945312, -0.0892333984, 0.7797851562, -0.3271484375, -1.763671875, -0.3369140625, -0.3312988281, 0.1192626953, -0.0350646973, -0.3557128906, 0.1188354492, 1.109375, 0.640625, -0.5932617188, -1.2294921875, -0.0218963623, 0.8051757812, 1.28125, 0.5893554688, -0.2521972656, 0.1461181641, -1.18359375, -0.7080078125, -0.36328125, 0.650390625, -0.0024814606, 0.1282958984, 0.5571289062, -0.9130859375, -1.3701171875, 0.5668945312, 0.2778320312, -0.84765625, -0.4270019531, 1.3486328125, -0.3620605469, 1.41015625, -0.1098632812, -0.6000976562, -1.107421875, 1.2548828125, 0.9970703125, 0.4184570312, -0.0197753906, -0.4204101562, -0.1729736328, 0.5068359375, -0.3781738281, -0.4389648438, -1.150390625, -0.1882324219, -0.5009765625, -0.7563476562, 1.54296875, 0.1179199219, 1.515625, 0.0784912109, -0.1668701172, -0.1297607422, -0.24609375, -0.4536132812, -0.7329101562, -0.5537109375, 0.4033203125, 0.085144043, 1.630859375, 0.5668945312, -0.021987915, 0.3374023438, -0.5219726562, 0.8686523438, -0.6201171875, -1.1298828125, -0.8056640625, -0.1923828125, 0.01902771, -0.9760742188, 0.0729370117, 0.0280761719, 0.7416992188, 0.1363525391, -0.1076660156, -0.1049194336, 1, -0.2009277344, -0.3327636719, 0.1390380859, -0.4064941406, -0.5961914062, -0.8842773438, 0.7446289062, -0.8784179688, -0.1453857422, -0.5014648438, -0.5068359375, 0.9194335938, -0.0093307495, -0.2795410156, -0.9838867188, 0.6713867188, 0.8115234375, 0.7309570312, -0.1433105469, -0.1774902344, -0.3381347656, 0.5600585938, 0.1853027344, -0.5317382812, -1.677734375, 0.4077148438, 0.3186035156, 0.51953125, 1.01953125, 0.5795898438, -0.3801269531, -0.1558837891, -0.9975585938, 1.0205078125, 0.4470214844, 0.626953125, -0.1929931641, -0.6552734375, -0.7421875, -0.4943847656, -0.2431640625, 0.6567382812, -0.4460449219, -0.4895019531, -0.1126708984, 0.0944824219, 0.1959228516, 0.1536865234, 0.3068847656, 0.5776367188, -0.1987304688, 1.041015625, 0.3713378906, 0.073059082, -0.4399414062, 0.5756835938, -1.244140625, 0.2092285156, 0.2141113281, 0.8779296875, -0.87109375, -0.9379882812, 0.0953369141, -0.1019897461, 0.2066650391, 0.984375, 0.1087646484, -0.0802001953, 0.0154266357, -0.2756347656, 0.1301269531, -0.4177246094, -0.2863769531, -0.0348815918, -0.1259765625, -0.7211914062, -0.5532226562, -0.3315429688, -0.3659667969, 0.3435058594, -0.0475463867, -0.1683349609, -0.3911132812, -0.0767822266, -1.51171875, -0.1246948242, -0.9624023438, -0.3454589844, 0.0106658936, 0.9682617188, -0.044921875, 0.4428710938, 0.2863769531, -0.5776367188, 0.4841308594, 0.4128417969, 0.5249023438, -0.0583496094, -0.2631835938, 0.650390625, -0.3530273438, -1.8642578125, -0.6435546875, -0.1325683594, 0.0766601562, 0.2084960938, -0.5375976562, 0.173828125, 0.3896484375, -0.1877441406, -0.1452636719, -0.2143554688, 0.4089355469, 0.4711914062, 0.548828125, -0.0953369141, -0.4270019531, 0.7739257812, -0.1940917969, 0.9951171875, 0.4208984375, 0.7299804688, -0.3984375, 0.2502441406, -0.900390625, -0.4689941406, -0.0505371094, 0.591796875, -0.123046875, -0.2060546875, 0.6806640625, 0.1795654297, -0.6572265625, -0.2271728516, 0.6098632812, -0.1199951172, -0.0151290894, 0.291015625, 1.0107421875, 0.2780761719, -0.4296875, 0.3291015625, -0.0545349121, 0.4521484375, -1.0146484375, -1.5302734375, -0.1149902344, -1.1611328125, -0.7553710938, -0.1284179688, 0.7192382812, 0.775390625, 0.3698730469, -0.23046875, -0.4133300781, 0.6328125, -0.3310546875, 0.71484375, -0.1013183594, 0.1633300781, 0.134765625, -0.8637695312, -0.0296325684, 0.556640625, 1.3974609375, 0.3413085938, -0.0844116211, 0.3151855469, -0.0369567871, 0.7592773438, 0.2609863281, 0.7192382812, 0.2629394531, 0.8564453125, -0.5073242188, 0.9975585938, -1.6630859375, -11.6640625, -0.927734375, -0.1680908203, -0.4421386719, -1.2099609375, 0.5131835938, -0.1916503906, -0.8237304688, -0.6635742188, -0.3828125, 0.2880859375, -0.1094970703, -0.603515625, 0.2341308594, 0.611328125, -1.796875, -0.4084472656, -0.6879882812, -0.828125, -0.5986328125, -1.2060546875, 0.3837890625, -1.125, -0.2922363281, 0.310546875, 1.0576171875, 0.2980957031, -0.2115478516, 0.4382324219, 0.2215576172, 0.8491210938, -0.8515625, -0.2456054688, 0.9228515625, -0.3093261719, 0.0895996094, -0.333984375, 0.8471679688, -0.0382995605, -1.5029296875, -0.9697265625, 0.6279296875, -2.03515625, -0.4260253906, -0.658203125, 0.1690673828, -1.328125, -0.5375976562, -0.5830078125, -0.9174804688, 1.4609375, 0.9306640625, -0.0560913086, -1.4384765625, -0.0793457031, -0.2717285156, -1.0205078125, -0.150390625, -0.7294921875, 0.4294433594, -0.0674438477, 1.3232421875, -0.2067871094, -0.025604248, 0.2517089844, -0.3698730469, -0.2687988281, -0.4611816406, -1.3251953125, -0.6875, 0.1790771484, -0.4987792969, 1.0869140625, 0.7221679688, 0.5952148438, -0.98828125, 0.4621582031, 0.2064208984, -1.2841796875, 0.8271484375, -0.1151123047, 0.7451171875 ]
Geometry is a branch of mathematics concerned with questions of shape, size, relative position of figures, and the properties of space. Geometry is one of the oldest mathematical sciences.
[ -1.6513671875, -0.5571289062, -1.59375, -0.3979492188, -0.4445800781, -0.7250976562, -0.0132751465, 0.8559570312, 0.8525390625, 0.3552246094, 0.1805419922, -0.4907226562, 0.3247070312, 0.6708984375, 0.2010498047, -0.1572265625, -0.3298339844, 0.18359375, -0.1423339844, -0.697265625, -0.5571289062, -0.0120315552, 0.1091918945, -0.60546875, 1.6142578125, 0.3898925781, 0.2275390625, 0.0938720703, 0.8930664062, 0.054107666, -0.2076416016, 0.0583190918, -0.1527099609, 0.544921875, -0.6875, 0.373046875, 0.6435546875, 0.28515625, 0.1892089844, 0.224609375, -1.06640625, -0.427734375, -0.7548828125, -0.9018554688, -0.916015625, -0.4523925781, -1.033203125, -0.4982910156, -0.8510742188, 0.8569335938, -1.169921875, 0.0274353027, -0.0188140869, -1.0947265625, -0.982421875, -0.5947265625, 0.1907958984, -1.39453125, 1.1572265625, 0.720703125, -0.4260253906, 0.0554504395, 0.5795898438, 0.0335083008, -0.3359375, 0.1844482422, 0.2858886719, -1.66015625, -0.4226074219, 0.2254638672, 0.4543457031, 0.0453491211, -1.17578125, -0.3850097656, 0.6323242188, -0.6157226562, -0.3046875, 0.4272460938, -0.4047851562, 0.3833007812, -0.9458007812, -1.01953125, -0.24609375, -1.1220703125, -0.2296142578, -0.16015625, 0.9663085938, -0.0085144043, -0.4462890625, -0.2113037109, -0.2355957031, 0.3239746094, -0.8759765625, -0.2038574219, -0.1663818359, 1.494140625, 0.3364257812, -0.4750976562, -0.3095703125, -0.4919433594, 0.447265625, 0.5249023438, -0.515625, -0.1563720703, 0.3557128906, 2.01171875, -1.0361328125, -0.875, -0.1573486328, 0.1721191406, 0.46484375, -0.3256835938, -1.2626953125, 1.08984375, 0.5131835938, -0.2379150391, 0.8701171875, 0.1317138672, -0.9721679688, -0.3647460938, 0.0129623413, 0.837890625, -0.4553222656, 0.2174072266, 0.4995117188, 0.380859375, -0.0894775391, -0.2614746094, -0.1809082031, -0.3762207031, 0.806640625, -0.1173095703, 0.271484375, -1.7529296875, 0.2788085938, 0.7001953125, -0.0078277588, -0.5595703125, 0.6669921875, 0.2080078125, -0.2619628906, -1.251953125, 0.583984375, -0.3928222656, -0.2868652344, -0.232421875, -0.0109481812, -0.0824584961, 0.0704956055, -0.3002929688, -0.5219726562, 0.1619873047, 0.1799316406, 0.2416992188, -0.4670410156, -0.2243652344, 0.0214080811, -0.3666992188, 0.2907714844, -0.9868164062, 0.12109375, -0.65234375, -0.6147460938, 1.3583984375, 0.3359375, 0.490234375, 0.4423828125, -0.7133789062, 0.2375488281, -0.0623474121, -0.623046875, -0.25, 0.9291992188, -0.9575195312, -0.0780029297, 0.5786132812, -0.54296875, 0.4877929688, 0.951171875, -0.1997070312, -0.0512084961, -0.6313476562, -0.2368164062, -0.6997070312, 0.1345214844, -0.4399414062, -0.1264648438, 0.2807617188, -0.7661132812, 0.1878662109, -1.224609375, 0.9809570312, -0.1516113281, -0.5502929688, -1.07421875, -0.7446289062, -1.4248046875, -0.5419921875, 0.2719726562, 0.2729492188, 0.4350585938, -0.3762207031, -0.5180664062, -0.8374023438, 0.1788330078, 0.1890869141, 0.6674804688, -0.6176757812, -0.3383789062, -0.5419921875, 0.0124816895, -0.8862304688, -0.2521972656, 0.3642578125, 1.314453125, -0.0845947266, 0.0569763184, -0.1879882812, 0.3264160156, 0.3232421875, 0.3586425781, -0.4064941406, -0.5004882812, 0.1961669922, -0.80078125, -0.0059547424, 0.3828125, -0.0566101074, -0.1197509766, -0.2758789062, 0.1885986328, -0.4379882812, 0.5107421875, -0.1560058594, -0.3452148438, 0.0441894531, 0.5927734375, -0.6206054688, -0.3295898438, -0.5024414062, 0.8354492188, -0.3659667969, -0.2761230469, 0.0697021484, 1.3564453125, -0.2902832031, -1.017578125, 0.662109375, -0.0054130554, 0.9458007812, -0.0996704102, 0.8520507812, 1.4375, 0.0128479004, -1.189453125, -0.41015625, 0.0678710938, 0.7333984375, -0.0094528198, -0.1968994141, -0.2369384766, -0.2678222656, 1.07421875, -0.0680541992, -0.2042236328, 0.4008789062, 0.0285949707, 0.0661621094, 0.650390625, 0.2885742188, 0.4562988281, 0.2976074219, -0.1979980469, 0.2592773438, 0.4406738281, -0.5200195312, 0.0327453613, -0.98046875, 0.3039550781, -0.9858398438, 0.0680541992, -0.0457458496, 0.310546875, -0.6650390625, 0.537109375, 0.23828125, 0.7905273438, 0.9482421875, -0.0859375, 0.0143051147, -0.6889648438, -0.0318603516, 0.5927734375, 1.1708984375, -0.7236328125, 0.1811523438, 0.306640625, -0.8637695312, 0.2301025391, -0.2875976562, 0.1089477539, 1.533203125, -0.4228515625, -0.6958007812, 0.1722412109, 1.0771484375, -0.537109375, -1.1259765625, -1.01171875, 0.5795898438, -0.0154495239, 0.6137695312, -0.55859375, 0.3000488281, -1.63671875, 0.1832275391, -1.0625, -0.4555664062, 0.2399902344, -1.0390625, 0.2978515625, 0.0200500488, -0.3972167969, 0.8627929688, -0.6518554688, 1.439453125, -0.0619506836, -0.2205810547, -1.263671875, -0.2844238281, 0.451171875, 0.6303710938, 0.5336914062, 0.7465820312, 0.0509033203, -0.4494628906, 0.26171875, -1.0908203125, 1.015625, -0.560546875, 0.1055908203, -0.2371826172, 0.3403320312, 0.287109375, 0.1613769531, -0.1649169922, -1.265625, -0.1025390625, 0.640625, -0.181640625, 0.2924804688, 0.061126709, -0.771484375, -0.0783691406, -0.3493652344, 0.0130233765, 0.2822265625, 1.12109375, 0.9907226562, 0.701171875, 0.3220214844, -0.896484375, -1.375, -0.724609375, -1.6279296875, 0.2147216797, -0.4770507812, 0.2651367188, 0.2509765625, -1.6787109375, 0.9145507812, -0.2568359375, -1.0908203125, -0.1800537109, -0.1368408203, -0.6459960938, -0.6879882812, 0.4128417969, 0.431640625, 0.2912597656, -0.3852539062, 0.4890136719, -0.3459472656, 0.2983398438, -0.8276367188, -0.0027503967, -0.7934570312, -0.0794067383, -0.7368164062, -0.2973632812, -0.3601074219, -0.2583007812, -0.0965576172, 0.8193359375, -0.9067382812, -0.1831054688, -0.3369140625, -0.5522460938, 1.0126953125, -1.2841796875, 1.4677734375, 0.0728149414, -1.6123046875, -0.0249938965, 0.2049560547, -0.2247314453, -1.265625, 0.0054512024, -0.6420898438, 0.0191497803, -0.1412353516, 0.1473388672, 0.3093261719, 0.2266845703, -1.787109375, -0.4270019531, 0.5366210938, -0.1431884766, -0.7978515625, 0.0885009766, 0.0645141602, -1.0673828125, 0.869140625, -0.0471496582, -0.2357177734, -0.2318115234, -1.1162109375, -0.0616149902, -0.228515625, -0.3896484375, -0.3161621094, 1.7158203125, 0.55859375, 0.1944580078, 0.2563476562, -1.517578125, -0.6123046875, 0.0484924316, -0.6279296875, 0.3884277344, 0.0174713135, 0.302734375, -0.1745605469, 1.5732421875, -0.0804443359, -0.0123901367, -0.3381347656, -0.7749023438, 0.2668457031, -0.0814819336, 0.748046875, -0.4760742188, -0.4306640625, -0.4802246094, 0.7456054688, 0.2634277344, -0.4304199219, -0.1220703125, 0.1058959961, 0.1977539062, -0.4721679688, 0.2109375, -0.3015136719, 0.6909179688, -1.32421875, -0.9375, -0.2658691406, 0.6528320312, 0.7836914062, 0.2626953125, -0.2980957031, 0.1785888672, 0.0793457031, 0.0317077637, -0.2993164062, 0.4643554688, 0.2298583984, -0.0616455078, 0.7026367188, 0.0932006836, -0.1784667969, 0.541015625, 0.51953125, -0.3928222656, 1.203125, -0.71875, -0.9233398438, -0.4814453125, 0.8999023438, -0.0287780762, 0.1573486328, -0.1701660156, -0.9829101562, -0.9565429688, -0.7138671875, 0.373046875, -0.501953125, -1.31640625, -0.8037109375, -0.2858886719, 0.0193023682, 0.3081054688, -0.7783203125, -0.8549804688, 0.87890625, 0.1751708984, -0.3156738281, -0.7998046875, 0.0190124512, 0.7807617188, -0.2763671875, 0.3149414062, -0.2214355469, 0.4982910156, -0.5893554688, -1.25390625, 0.1064453125, -0.0293731689, -0.1200561523, -0.6499023438, -0.1313476562, 0.2052001953, 0.837890625, 0.9853515625, 0.8740234375, 0.4565429688, -0.1625976562, 0.2646484375, -0.626953125, -1.1103515625, 0.0475158691, -0.1086425781, 0.6611328125, 0.4904785156, -0.3264160156, -0.3588867188, 0.2915039062, 1.3935546875, 0.5024414062, -0.0358276367, -0.3149414062, -0.5200195312, -0.640625, -0.681640625, 0.6552734375, 0.3740234375, 0.1083374023, 1.001953125, 0.0951538086, -0.4411621094, -1.7177734375, 0.7221679688, 0.0640869141, 0.6264648438, -0.4235839844, 0.31640625, -0.7509765625, -0.3364257812, 0.3884277344, 0.2149658203, -0.2099609375, -0.0037536621, -0.3720703125, -1.1865234375, 0.7265625, 0.0285186768, 0.4794921875, 0.0932617188, -0.59765625, 0.9799804688, 0.2205810547, 0.0184326172, 0.6591796875, -0.0629882812, -0.9130859375, 0.1672363281, 0.2729492188, -0.5258789062, -0.5439453125, -0.3425292969, -0.0838012695, -0.0770263672, -0.2379150391, -2.142578125, -0.5903320312, 0.1900634766, 0.3566894531, 0.2600097656, 0.3137207031, -0.4572753906, -0.0392150879, -0.6391601562, 0.7016601562, 1.40234375, 0.7456054688, -0.873046875, -0.8935546875, 1.1220703125, -0.4553222656, -0.5078125, -0.4821777344, -0.2653808594, 0.1291503906, 0.8251953125, -0.5717773438, 0.6430664062, -0.2054443359, -0.265625, -0.1141967773, 0.4765625, 0.3410644531, 0.5849609375, 0.21875, 0.3884277344, 0.4453125, 0.4653320312, 0.3879394531, -0.0559692383, -0.0063476562, -0.8325195312, -0.6533203125, 0.546875, 0.2756347656, 0.87109375, -0.4543457031, -0.23828125, 0.7666015625, 0.7158203125, 0.0802001953, -1.10546875, 0.4084472656, -0.5229492188, 0.3674316406, -0.7138671875, -0.326171875, 1.025390625, -0.0555114746, 1.052734375, 0.9399414062, 0.2248535156, 0.4379882812, 0.2993164062, -0.2924804688, -0.0338745117, -1.1494140625, 0.1774902344, -0.2230224609, 0.0261535645, -0.4470214844, 1.02734375, -0.0776367188, -0.1685791016, 0.4479980469, -0.5185546875, -0.3696289062, 0.1708984375, -0.7309570312, -0.7006835938, 0.8095703125, 0.525390625, -0.5073242188, 1.66796875, 0.0424194336, 0.117980957, -0.0623168945, -0.255859375, 0.1280517578, -0.994140625, 0.6318359375, -0.5327148438, -0.2442626953, -0.3952636719, 0.0803222656, 1.3701171875, 0.5053710938, -0.9873046875, -0.7338867188, 0.2966308594, -0.3129882812, -0.6357421875, 0.2215576172, 0.1042480469, 0.1663818359, 0.1938476562, 0.4597167969, -0.9047851562, -0.1273193359, 0.1625976562, 0.1215209961, -0.3688964844, -0.2239990234, 0.2578125, 0.9389648438, 1.6962890625, -0.6147460938, -0.5673828125, -0.8271484375, 0.2495117188, 0.5537109375, 0.4794921875, 0.5551757812, -0.6499023438, -0.8583984375, -0.4230957031, -0.1307373047, -0.2427978516, 0.5717773438, 0.2061767578, 0.3674316406, -0.4379882812, -0.689453125, 0.3955078125, 0.5756835938, 0.708984375, 0.7114257812, 0.1274414062, -0.0864868164, 0.7646484375, 1.0078125, -0.3347167969, -1.265625, 0.9833984375, 0.3798828125, 0.0895996094, 0.2775878906, 0.431640625, -0.310546875, 0.1177978516, -0.2419433594, 0.0596008301, -0.1259765625, -0.2333984375, 0.4362792969, -0.1346435547, 1.0595703125, 0.6982421875, 0.3356933594, -0.3044433594, 0.3376464844, 0.8413085938, -0.79296875, -0.3491210938, 0.4685058594, 0.5942382812, -0.2644042969, -0.5390625, 1.1689453125, -0.2658691406, 1.3486328125, 1.5771484375, -0.0876464844, 0.3586425781, -0.0809326172, -2.017578125, 0.2607421875, -0.357421875, 0.2092285156, 0.4536132812, -0.3977050781, -0.8129882812, 0.2171630859, -0.5727539062, 0.2342529297, -0.3850097656, 0.662109375, -1.0234375, 0.515625, 0.4916992188, -0.4538574219, -0.075378418, -0.2490234375, 0.6650390625, -0.0193634033, 0.095703125, -0.857421875, -0.6459960938, 0.8037109375, -0.3264160156, 0.3693847656, -0.4045410156, 0.0082321167, -0.1488037109, -0.2734375, 0.3337402344, -0.5844726562, -0.4428710938, 0.6577148438, 0.9819335938, -1.0966796875, -0.4890136719, 0.1098022461, 1.0927734375, 1.2685546875, 0.9536132812, -0.0373840332, 0.4167480469, 0.2517089844, 0.1358642578, 0.1848144531, -0.0903320312, 0.4729003906, 0.6357421875, 0.3308105469, -0.8422851562, 0.1116333008, -0.9150390625, 0.8178710938, -0.0780639648, 0.032989502, -0.026260376, 0.038482666, -0.024230957, -0.0841064453, 0.1337890625, 0.5551757812, -1.4013671875, 0.916015625, -0.0407104492, -0.1001586914, -0.6997070312, 0.1154785156, 0.1348876953, -0.1571044922, 0.8876953125, 0.9174804688, 0.3564453125, -0.3820800781, 0.3142089844, 0.2800292969, 0.0608825684, 0.0587158203, -0.283203125, 0.1767578125, -1.34765625, 0.1307373047, -0.1525878906, -0.9360351562, 1.142578125, 1.453125, 0.19140625, -0.4711914062, 0.2575683594, 0.396484375, 0.2130126953, 0.2416992188, 0.626953125, 0.7788085938, 0.0227966309, -0.3894042969, -0.140625, -0.5390625, -0.2315673828, -0.3442382812, -0.4533691406, 0.5551757812, 0.2098388672, 0.7099609375, -0.0591430664, 0.1051635742, 0.1001586914, 0.79296875, 0.0483398438, -0.5473632812, 0.5888671875, -0.3256835938, -0.6625976562, -0.8100585938, -0.212890625, -0.8974609375, 0.2646484375, 0.4045410156, -1.072265625, 1.26953125, 0.806640625, -0.5727539062, 0.8286132812, 0.236328125, 0.8955078125, -0.8251953125, -0.310546875, 0.0733032227, -0.53515625, 0.6259765625, -1.048828125, 1.4921875, -0.5126953125, -0.1762695312, 0.0505981445, -0.1639404297, -0.68359375, -2.5, 0.2868652344, 0.0695800781, 0.1560058594, -0.0908203125, 0.9467773438, 0.66015625, -0.2004394531, -0.3217773438, -0.0071792603, 0.0630493164, 0.0493774414, 0.0109481812, 0.4401855469, 0.9155273438, 0.2578125, 0.2758789062, 0.3347167969, 0.7475585938, 0.1181640625, -1.7666015625, -1.3974609375, -0.2458496094, -0.0656738281, -0.4572753906, -0.1291503906, 0.841796875, -0.7602539062, -0.4521484375, 0.2897949219, 0.2995605469, -0.0612487793, -0.1674804688, 0.4189453125, -0.1789550781, -0.2315673828, 0.018737793, -0.1707763672, 1.1865234375, 0.5029296875, 1.5048828125, -0.0077323914, -0.4797363281, 0.2386474609, 0.4956054688, 0.9799804688, 0.2788085938, 0.0577697754, -0.2680664062, 0.4487304688, -0.1916503906, -1.6337890625, -13.1171875, -0.6430664062, 0.220703125, -0.6103515625, 0.5981445312, 0.5278320312, 0.8510742188, -0.1739501953, -0.2114257812, -0.3032226562, 0.0253753662, 0.6811523438, -0.5043945312, -0.5703125, 0.2524414062, -1.01953125, -0.3176269531, -0.6704101562, -0.8330078125, -0.296875, 0.3510742188, -1.59765625, -0.1505126953, 0.7543945312, 0.9887695312, 1.109375, 0.685546875, -0.3916015625, -1.3212890625, 0.7836914062, -0.1346435547, -0.40625, 0.1263427734, 0.7021484375, -0.9829101562, -0.1486816406, 0.8715820312, -0.529296875, 0.4638671875, -0.6572265625, -0.8276367188, 0.3811035156, -0.3854980469, 0.096496582, -0.9453125, 0.5708007812, -0.1661376953, -0.41796875, 0.4738769531, 0.3049316406, 0.8549804688, 1.9716796875, 0.2462158203, -0.8720703125, 0.8500976562, -1.1748046875, -0.1676025391, -0.2807617188, -0.039642334, 0.2863769531, 0.3635253906, 1.4052734375, 1.1904296875, 0.1078491211, 0.859375, -0.9428710938, -0.650390625, 0.0949707031, -0.0902099609, -0.5278320312, 0.1577148438, -1.99609375, 0.337890625, 0.0273895264, -0.8510742188, -0.6787109375, 1.6708984375, 0.3156738281, 0.4526367188, 0.1276855469, -0.5659179688, 0.4721679688 ]